blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
2f3314d94b1512ac8ba6299dbca288c836f94d67
67650d44c0f699a1ed84929fa0d707c373b6f34d
/helloCpp/concurrency/AccountManager.cpp
a0ccadefd5072570c4defe2c1249e9b111a588bd
[]
no_license
SebLKMa/CodingForFun
1575e87c66103f013474da350b819c3c5bc61950
0f891ca2234fc795ff367bae3bf9d223dfbec008
refs/heads/master
2020-12-25T18:05:14.509841
2018-12-20T07:27:58
2018-12-20T07:27:58
68,350,257
0
0
null
null
null
null
UTF-8
C++
false
false
134
cpp
//#include "stdafx.h" #include "AccountManager.h" /* AccountManager::AccountManager() { } AccountManager::~AccountManager() { } */
[ "sebmalikkeung@gmail.com" ]
sebmalikkeung@gmail.com
08b764bdd3e3b185bb2ae1fa7712dda1952ec754
07fe910f4a2c7d14e67db40ab88a8c91d9406857
/game/t3/runtime/Runtime_Engine.h
c074a823adc95faabbbb54526781149b650276b4
[]
no_license
SEDS/GAME
e6d7f7a8bb034e421842007614d306b3a6321fde
3e4621298624b9189b5b6b43ff002306fde23f08
refs/heads/master
2021-03-12T23:27:39.115003
2015-09-22T15:05:33
2015-09-22T15:05:33
20,278,561
1
0
null
null
null
null
UTF-8
C++
false
false
7,877
h
// -*- C++ -*- //============================================================================= /** * @file T3_Runtime_Engine.h * * $Id$ * * @author James H. Hill */ //============================================================================= #ifndef _T3_RUNTIME_ENGINE_H_ #define _T3_RUNTIME_ENGINE_H_ #include "game/mga/utils/modelgen.h" #include "game/mga/Model.h" #include "ace/Null_Mutex.h" #include "ace/Singleton.h" #include "ace/SString.h" #include "ace/Hash_Map_Manager.h" #include "Runtime_export.h" #include "Event_Listener.h" #include "algorithm.h" namespace T3 { /** * @class create_failed * * Exception thrown when creating an element fails for unknown * reasons. */ class T3_RUNTIME_Export create_failed { public: create_failed (GAME::Mga::Object_in parent, const std::string & type) : parent_ (parent), type_ (type) { } GAME::Mga::Object parent (void) const { return this->parent_; } const std::string & type (void) const { return this->type_; } private: /// Parent for the creation. GAME::Mga::Object parent_; /// Target type to create. std::string type_; }; /** * @class bad_parent * * Exception thrown when the specified parent object is not * eligible l to be a parent (i.e., not a Model or Folder). */ class T3_RUNTIME_Export bad_parent { public: bad_parent (GAME::Mga::Object_in parent) : parent_ (parent) { } private: GAME::Mga::Object parent_; }; /** * @class invalid_type * * Exception thrown when the specified type is not valid. This * can occur when creating an child element, or setting the value * of an attribute. */ class T3_RUNTIME_Export invalid_type { public: invalid_type (GAME::Mga::Object_in parent, const std::string & type) : parent_ (parent), type_ (type) { } private: GAME::Mga::Object parent_; std::string type_; }; /** * @class invalid_attr * * Exception thrown when the specified type is not valid. This * can occur when creating an child element, or setting the value * of an attribute. */ class T3_RUNTIME_Export invalid_attr { public: invalid_attr (GAME::Mga::FCO_in fco, const std::string & attr) : fco_ (fco), attr_ (attr) { } private: GAME::Mga::FCO fco_; std::string attr_; }; } /** * @class T3_Runtime_Engine */ class T3_RUNTIME_Export T3_Runtime_Engine { public: typedef ACE_Hash_Map_Manager <ACE_CString, GAME::Mga::FCO, ACE_Null_Mutex> SYMBOL_TABLE; typedef ACE_Hash_Map_Manager <ACE_CString, bool, ACE_Null_Mutex> FLAG_TABLE; typedef ACE_Hash_Map_Manager <ACE_CString, std::string, ACE_Null_Mutex> STRING_TABLE; typedef ACE_Hash_Map_Manager <ACE_CString, int, ACE_Null_Mutex> INT_TABLE; typedef ACE_Hash_Map_Manager <ACE_CString, double, ACE_Null_Mutex> DOUBLE_TABLE; /// Default constructor. T3_Runtime_Engine (void); /// Destructor. ~T3_Runtime_Engine (void); GAME::Mga::Object create_element (GAME::Mga::Object_in parent, const std::string & type); template <typename Cond> GAME::Mga::Object create_element_if_not (GAME::Mga::Object_in parent, const std::string & type, Cond cond) { switch (parent->type ()) { case OBJTYPE_MODEL: return create_element_if_not (GAME::Mga::Model::_narrow (parent), type, cond); break; case OBJTYPE_FOLDER: // ignore for now throw T3::bad_parent (parent); break; default: throw T3::bad_parent (parent); } } template <typename Cond> GAME::Mga::Object create_element_if_not (GAME::Mga::Model_in parent, const std::string & type, Cond cond) { // Get the children of the specified type. std::vector <GAME::Mga::FCO> children; GAME::Mga::Object object; if (parent->children (type, children)) { std::vector <GAME::Mga::FCO>::const_iterator result; result = std::find_if (children.begin (), children.end (), cond); if (result != children.end ()) { object = *result; if (0 != this->listener_) this->listener_->handle_new_object (object); } } // Since we could not find the object, we need to create // a new one for the model. if (object.is_nil ()) object = this->create_element (parent, type); // Initialize the FCO. this->init_fco (GAME::Mga::FCO::_narrow (object)); return object; } GAME::Mga::Object create_element (GAME::Mga::Folder_in parent, const std::string & type); GAME::Mga::Object create_element (GAME::Mga::Model_in parent, const std::string & type); bool create_connection_to (const GAME::Mga::Object_in src, const std::string & dest, const std::string & type); /** * Set the value of an attribute for the active object. * * @param[in] name Name of the target attribute * @param[in] value Value of the target attribute */ void set_attribute (GAME::Mga::FCO_in fco, const std::string & name, const std::string & value); void set_attribute (GAME::Mga::FCO_in fco, const std::string & name, long value); void set_attribute (GAME::Mga::FCO_in fco, const std::string & name, bool value); void set_attribute (GAME::Mga::FCO_in fco, const std::string & name, double value); bool store_reference (const GAME::Mga::Object_in obj, const std::string & symbol); bool resolve (const GAME::Mga::Object_in obj, const std::string & symbol, GAME::Mga::FCO & fco); bool store_attribute (const std::string & name, bool value); bool store_attribute (const std::string & name, double value); bool store_attribute (const std::string & name, int value); bool store_attribute (const std::string & name, const std::string & value); bool store_predefined_reference (const GAME::Mga::Object_in obj, const char * pt); const SYMBOL_TABLE & symbols (void) const; SYMBOL_TABLE & symbols (void); void preprocess (GAME::Mga::Object_in parent, const std::string & include_file); bool create_unique_reference (GAME::Mga::Object_in parent, const std::string & symbol, const std::string & type); bool create_unique_reference (GAME::Mga::Object_in parent, const std::string & symbol, const std::string & type, GAME::Mga::FCO & ref_element); T3_Event_Listener * event_listener (void); void event_listener (T3_Event_Listener * listener); private: void preprocess_impl (GAME::Mga::Model_in model); void init_fco (GAME::Mga::FCO_in fco); void resolve_reference (GAME::Mga::FCO_in fco); /// Symbol table for the engine. SYMBOL_TABLE sym_table_; FLAG_TABLE stored_flags_; INT_TABLE stored_ints_; STRING_TABLE stored_strings_; DOUBLE_TABLE stored_doubles_; GAME::Mga::FCO stored_ref_; /// Event listener for the runtime engine. T3_Event_Listener * listener_; void get_scope (const GAME::Mga::Object_in obj, std::string & scope); }; #define T3_RUNTIME_ENGINE_SINGLETON \ ACE_Singleton <T3_Runtime_Engine, ACE_Null_Mutex>; T3_RUNTIME_SINGLETON_DECLARATION (T3_RUNTIME_ENGINE_SINGLETON); #define T3_RUNTIME_ENGINE \ ACE_Singleton <T3_Runtime_Engine, ACE_Null_Mutex>::instance () #include "Runtime_Engine.inl" #endif // !defined _T3_RUNTIME_ENGINE_H_
[ "hillj@cs.iupui.edu" ]
hillj@cs.iupui.edu
195dc15f0ac104f216e880dd22001d05a52e3d26
b1cca159764e0cedd802239af2fc95543c7e761c
/ext/libgecode3/vendor/gecode-3.7.3/gecode/iter/values-map.hpp
e999bb671c8f30306a321e2b80ccdb32ce397b75
[ "MIT", "Apache-2.0" ]
permissive
chef/dep-selector-libgecode
b6b878a1ed4a6c9c6045297e2bfec534cf1a1e8e
76d7245d981c8742dc539be18ec63ad3e9f4a16a
refs/heads/main
2023-09-02T19:15:43.797125
2021-08-24T17:02:02
2021-08-24T17:02:02
18,507,156
8
18
Apache-2.0
2023-08-22T21:15:31
2014-04-07T05:23:13
Ruby
UTF-8
C++
false
false
3,769
hpp
/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Christian Schulte <schulte@gecode.org> * * Copyright: * Christian Schulte, 2008 * * Last modified: * $Date: 2010-07-29 01:35:33 +1000 (Thu, 29 Jul 2010) $ by $Author: schulte $ * $Revision: 11294 $ * * This file is part of Gecode, the generic constraint * development environment: * http://www.gecode.org * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * */ namespace Gecode { namespace Iter { namespace Values { /** * \brief Value iterator for mapping values of a value iterator * * If \a strict is true, the values obtained by mapping must be * strictly increasing (that is, no duplicates). * * \ingroup FuncIterValues */ template<class I, class M, bool strict=false> class Map { protected: /// Input iterator I i; /// Mapping object M m; public: /// \name Constructors and initialization //@{ /// Default constructor Map(void); /// Initialize with values from \a i Map(I& i); /// Initialize with values from \a i and map \a m Map(I& i, const M& m); /// Initialize with values from \a i void init(I& i); /// Initialize with values from \a i and map \a m void init(I& i, const M& m); //@} /// \name Iteration control //@{ /// Test whether iterator is still at a value or done bool operator ()(void) const; /// Move iterator to next value (if possible) void operator ++(void); //@} /// \name Value access //@{ /// Return current value int val(void) const; //@} }; template<class I, class M, bool strict> forceinline Map<I,M,strict>::Map(void) {} template<class I, class M, bool strict> forceinline Map<I,M,strict>::Map(I& i0) : i(i0) {} template<class I, class M, bool strict> forceinline Map<I,M,strict>::Map(I& i0, const M& m0) : i(i0), m(m0) {} template<class I, class M, bool strict> forceinline void Map<I,M,strict>::init(I& i0) { i=i0; } template<class I, class M, bool strict> forceinline void Map<I,M,strict>::init(I& i0, const M& m0) { i=i0; m=m0; } template<class I, class M, bool strict> forceinline void Map<I,M,strict>::operator ++(void) { if (strict) { ++i; } else { int n=m.val(i.val()); do { ++i; } while (i() && (n == m.val(i.val()))); } } template<class I, class M, bool strict> forceinline bool Map<I,M,strict>::operator ()(void) const { return i(); } template<class I, class M, bool strict> forceinline int Map<I,M,strict>::val(void) const { return m.val(i.val()); } }}} // STATISTICS: iter-any
[ "dan@getchef.com" ]
dan@getchef.com
6754b285c9b4e8616961a99b8046e28ee3554c92
3c09d1c279c8578791dae535852c06e09efad4a1
/Projects/Safet Sunay/Bingo 12.10.2014/Bingo/src/BingoEfect.cpp
884f11cc619fe717fcc5a8aa63753ea4ef633471
[]
no_license
rosen90/GitHub
f00653f8a65cdffc479b70d2d7ca8f9e103d3eeb
851d210f2f6073d818e0984fa9daab96e833b066
refs/heads/master
2016-09-12T23:57:19.530896
2016-05-04T22:09:03
2016-05-04T22:09:03
58,085,509
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
3,710
cpp
/* * BingoEfect.cpp * * Created on: 9.10.2014 ã. * Author: sony */ #include "BingoEfect.h" SDL_Renderer* BingoEfect::renderer; int BingoEfect::cutColor; BingoEfect::BingoEfect() { renderer = NULL; efectTexture = NULL; degrees = 0; process = 0; cuttingColor.reverse = 0; cutColor = 0; cuttingColor.g = 0; cuttingColor.b = 0; cuttingColor.reverse = 0; } void BingoEfect::loadBingoEfects(string path) { SDL_Surface* tempSurface = IMG_Load(path.c_str()); if(tempSurface == NULL) { printf("Temporary button surface failed to load."); } else { //Color key image SDL_SetColorKey( tempSurface, SDL_TRUE, SDL_MapRGB( tempSurface->format, 0xFF, 0x00, 0x00 ) ); efectTexture = SDL_CreateTextureFromSurface(renderer, tempSurface); if(efectTexture == NULL) { printf("Button texture failed to load."); } else { m_Rect.w = 75; // tempSurface->w-25; m_Rect.h =75; // tempSurface->h-25; } SDL_FreeSurface( tempSurface ); } } void BingoEfect::fillEfects(string efectPath, int x, int y, vector<BingoEfect>& efectContainer, BingoEfect temp) { temp.loadBingoEfects(efectPath.c_str()); temp.setEfectRect(x, y); efectContainer.push_back(temp); } void BingoEfect::fillEfectsInVector(vector<BingoEfect>& efectContainer, BingoEfect obj) { fillEfects("LaFinEffect/1.png", 335, 0,efectContainer, obj); fillEfects("LaFinEffect/2.png", 410, 24,efectContainer, obj); fillEfects("LaFinEffect/3.png", 485, 0,efectContainer, obj); fillEfects("LaFinEffect/4.png", 560, 24,efectContainer, obj); fillEfects("LaFinEffect/5.png", 635, 0,efectContainer, obj); } void BingoEfect::makeEffect(int x, int degrees) { colorEffect(0); m_Rect.x = x; SDL_RenderCopyEx(renderer, efectTexture,NULL, &m_Rect, degrees, NULL, SDL_FLIP_NONE ); } void BingoEfect::setEfectRect(int x, int y) { m_Rect.x = x; m_Rect.y = y; } void BingoEfect::setEfectRectWH(int w, int h) { m_Rect.w = w; m_Rect.h = h; } void BingoEfect::setRenderer(SDL_Renderer* rend) { renderer = rend; } void BingoEfect::moveLaFinEffect(int x, int direction) { switch(process) { case 0: if(shrink()) { process++; } break; case 1: if(moveDown()) { process++; } break; case 2: if (chooseDirection(x, direction)) { process++; } break; case 3: if (moveWhileSpining(direction)) { process++; } break; case 4: colorEffect(10); break; default: break; } SDL_RenderCopyEx(renderer, efectTexture,NULL, &m_Rect, degrees, NULL, SDL_FLIP_NONE ); } bool BingoEfect::shrink() { m_Rect.w --; m_Rect.h --; return m_Rect.w == 40; } bool BingoEfect::moveDown() { m_Rect.y +=2; return m_Rect.y == 100; } bool BingoEfect::chooseDirection(int x, int direction) { m_Rect.x = m_Rect.x + (2*direction); degrees = degrees + (11*direction); return m_Rect.x == x; } bool BingoEfect::moveWhileSpining(int direction) { degrees = degrees + (4 * direction); if (degrees >= 360 || degrees <= -360) { degrees = 0; } return degrees == 0; } void BingoEfect::setColor( Uint8 red, Uint8 green, Uint8 blue ) { //Modulate texture SDL_SetTextureColorMod( efectTexture, red, green, blue ); } void BingoEfect::colorEffect(int speed) { if (cuttingColor.reverse == 0) { if (cutColor >= 120) { cuttingColor.reverse = 1; } cutColor += speed; } else { if (cutColor <= 5) { cuttingColor.reverse = 0; } cutColor -= speed; } setColor(100 + cutColor, 100 + cutColor, 100 + cutColor); } void BingoEfect::returnDefaultValuesEffect(int y) { m_Rect.w = 75; m_Rect.h = 75; m_Rect.y = y; process = 0; } BingoEfect::~BingoEfect() { // TODO Auto-generated destructor stub }
[ "karadinev@gmail.com" ]
karadinev@gmail.com
5548035a56e5c86b0e5d4b3d87939d1b601ad30a
031e4d530346aab54ba32e5ec0aeb8ab1a783be1
/Report 2/W41/0.14/U
a83e1d8494c4988a0ac6af22e1d7401ccc5c870d
[]
no_license
shyam97/modelling1
781ddcf6c16b6bd8f528b0f58bd19953f86716d9
68bd2ebc7960111b86bbff04af96003229618af7
refs/heads/master
2022-11-21T07:03:25.868074
2020-07-20T16:20:09
2020-07-20T16:20:09
262,878,324
0
0
null
null
null
null
UTF-8
C++
false
false
1,638,997
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 7 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volVectorField; location "0.14"; object U; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 -1 0 0 0 0]; internalField nonuniform List<vector> 70000 ( (0.553408 0.0169785 0) (0.251383 0.00340103 0) (0.16585 0.000319636 0) (0.13232 4.9586e-05 0) (0.117165 4.46262e-05 0) (0.107153 5.27991e-05 0) (0.099127 4.50094e-05 0) (0.0926271 3.59513e-05 0) (0.087326 2.99347e-05 0) (0.082899 2.58183e-05 0) (0.0791181 2.2679e-05 0) (0.0758356 2.01706e-05 0) (0.0729501 1.81337e-05 0) (0.0703872 1.64597e-05 0) (0.0680906 1.50682e-05 0) (0.0660164 1.39001e-05 0) (0.06413 1.29116e-05 0) (0.0624037 1.20698e-05 0) (0.0608149 1.13505e-05 0) (0.0593449 1.07344e-05 0) (0.0579781 1.02074e-05 0) (0.0567011 9.75791e-06 0) (0.0555026 9.37723e-06 0) (0.0543729 9.05838e-06 0) (0.0533034 8.79632e-06 0) (0.0522864 8.58696e-06 0) (0.0513151 8.42779e-06 0) (0.0503833 8.31772e-06 0) (0.0494853 8.25459e-06 0) (0.0486157 8.24216e-06 0) (0.0477695 8.27534e-06 0) (0.0469416 8.36669e-06 0) (0.0461274 8.50257e-06 0) (0.0453216 8.7133e-06 0) (0.04452 8.96353e-06 0) (0.0437163 9.31937e-06 0) (0.0429063 9.70344e-06 0) (0.0420831 1.02357e-05 0) (0.0412406 1.07971e-05 0) (0.0403741 1.15133e-05 0) (0.0394675 1.23834e-05 0) (0.0385329 1.31555e-05 0) (0.0375153 1.47678e-05 0) (0.0364944 1.49756e-05 0) (0.0352811 1.87148e-05 0) (0.0341861 1.61913e-05 0) (0.0325991 2.64267e-05 0) (0.0315281 1.41143e-05 0) (0.0292513 4.8112e-05 0) (0.02644 -0.00106265 0) (0.88486 0.0434951 0) (0.650097 0.020153 0) (0.493835 0.00661005 0) (0.4033 0.00276082 0) (0.354467 0.00155449 0) (0.323021 0.00113863 0) (0.298983 0.000916512 0) (0.279632 0.000752169 0) (0.263773 0.000629704 0) (0.250505 0.000539449 0) (0.239177 0.00047099 0) (0.229346 0.000417176 0) (0.220707 0.00037377 0) (0.213037 0.000338129 0) (0.206167 0.000308458 0) (0.199966 0.000283473 0) (0.19433 0.000262233 0) (0.189177 0.000244035 0) (0.18444 0.000228346 0) (0.180062 0.000214758 0) (0.175997 0.000202952 0) (0.172205 0.000192677 0) (0.168654 0.000183737 0) (0.165313 0.000175975 0) (0.162158 0.000169269 0) (0.159167 0.000163522 0) (0.156319 0.000158662 0) (0.153596 0.000154638 0) (0.150983 0.000151412 0) (0.148462 0.000148973 0) (0.146022 0.000147305 0) (0.143646 0.000146446 0) (0.141323 0.000146381 0) (0.139038 0.000147232 0) (0.136779 0.000148938 0) (0.13453 0.000151786 0) (0.132278 0.000155565 0) (0.130006 0.000160897 0) (0.127696 0.000167225 0) (0.125338 0.000175776 0) (0.122887 0.000185413 0) (0.120374 0.000198164 0) (0.117655 0.000212508 0) (0.114937 0.000230447 0) (0.111722 0.000252707 0) (0.10882 0.000275564 0) (0.104645 0.000316328 0) (0.101772 0.000325989 0) (0.0958365 0.000538851 0) (0.0907931 -0.00143617 0) (0.99121 0.049959 0) (0.890883 0.0305714 0) (0.762349 0.0146233 0) (0.656246 0.00798591 0) (0.584972 0.00489631 0) (0.535416 0.00349259 0) (0.497322 0.00275742 0) (0.466483 0.00226388 0) (0.440954 0.00190078 0) (0.419429 0.00162976 0) (0.400958 0.00142294 0) (0.384876 0.00126029 0) (0.370705 0.00112911 0) (0.358098 0.00102133 0) (0.346786 0.000931509 0) (0.336564 0.000855766 0) (0.327265 0.000791274 0) (0.318759 0.000735917 0) (0.310935 0.000688091 0) (0.303704 0.000646558 0) (0.296992 0.000610354 0) (0.290734 0.000578721 0) (0.284877 0.000551058 0) (0.279373 0.000526885 0) (0.274182 0.000505826 0) (0.269266 0.000487581 0) (0.264596 0.000471924 0) (0.26014 0.000458683 0) (0.255874 0.000447737 0) (0.251772 0.000439023 0) (0.247812 0.000432497 0) (0.243972 0.000428212 0) (0.240233 0.000426167 0) (0.23657 0.000426594 0) (0.232967 0.000429442 0) (0.229399 0.000435305 0) (0.225847 0.000443843 0) (0.222285 0.000456451 0) (0.218687 0.000471924 0) (0.215034 0.000493438 0) (0.211265 0.000517654 0) (0.20742 0.000551503 0) (0.203292 0.000587167 0) (0.199174 0.000638587 0) (0.194355 0.000690727 0) (0.189973 0.000766193 0) (0.183802 0.000853013 0) (0.179389 0.000924027 0) (0.17074 0.00129694 0) (0.164813 -0.000599714 0) (1.01554 0.0489582 0) (1.00647 0.0357371 0) (0.935777 0.02084 0) (0.851761 0.0135244 0) (0.781803 0.00922744 0) (0.726441 0.00681566 0) (0.681116 0.00542165 0) (0.643105 0.00448199 0) (0.61083 0.00378854 0) (0.583101 0.00326372 0) (0.558981 0.00285851 0) (0.537765 0.00253762 0) (0.518924 0.00227762 0) (0.502054 0.00206316 0) (0.486842 0.00188378 0) (0.473037 0.00173203 0) (0.460438 0.00160242 0) (0.448879 0.00149085 0) (0.438225 0.00139417 0) (0.428361 0.00130997 0) (0.419192 0.00123632 0) (0.410636 0.00117175 0) (0.402622 0.00111504 0) (0.39509 0.00106524 0) (0.387985 0.0010216 0) (0.381261 0.000983507 0) (0.374876 0.000950495 0) (0.368792 0.000922204 0) (0.362975 0.00089838 0) (0.357392 0.000878862 0) (0.352014 0.00086356 0) (0.346813 0.000852515 0) (0.341762 0.000845745 0) (0.336833 0.000843588 0) (0.332004 0.000846039 0) (0.327242 0.000854019 0) (0.322525 0.000867109 0) (0.317818 0.000887603 0) (0.313092 0.000913568 0) (0.308321 0.000950681 0) (0.303433 0.000992637 0) (0.29847 0.00105334 0) (0.293192 0.00111543 0) (0.287926 0.00121151 0) (0.281866 0.0013003 0) (0.276274 0.00144918 0) (0.268682 0.00159077 0) (0.262919 0.00176259 0) (0.252535 0.00226231 0) (0.245555 0.000832343 0) (1.01435 0.0461031 0) (1.04796 0.0373572 0) (1.02449 0.0242143 0) (0.974489 0.017594 0) (0.923128 0.013152 0) (0.876191 0.0102535 0) (0.833788 0.00839727 0) (0.795777 0.00707728 0) (0.761941 0.00606846 0) (0.731843 0.00528253 0) (0.704971 0.00466207 0) (0.680857 0.00416281 0) (0.659105 0.00375342 0) (0.639383 0.00341251 0) (0.621414 0.00312511 0) (0.604968 0.00288032 0) (0.589852 0.00267003 0) (0.575902 0.00248805 0) (0.562978 0.00232961 0) (0.550963 0.00219099 0) (0.539754 0.00206923 0) (0.529263 0.001962 0) (0.519413 0.0018674 0) (0.510137 0.00178392 0) (0.501374 0.00171035 0) (0.493071 0.00164572 0) (0.485181 0.00158927 0) (0.477661 0.00154041 0) (0.470471 0.00149871 0) (0.463574 0.00146387 0) (0.456937 0.00143575 0) (0.450526 0.00141436 0) (0.444312 0.00139973 0) (0.438261 0.00139229 0) (0.432348 0.00139212 0) (0.426536 0.00140045 0) (0.4208 0.00141684 0) (0.415101 0.00144452 0) (0.409406 0.00148085 0) (0.403683 0.00153423 0) (0.397859 0.00159518 0) (0.391965 0.00168534 0) (0.385765 0.00177691 0) (0.379563 0.00192307 0) (0.372577 0.00205457 0) (0.365989 0.00228579 0) (0.357468 0.00249442 0) (0.350508 0.00278445 0) (0.339269 0.00341366 0) (0.330824 0.00249648 0) (1.0094 0.0430533 0) (1.05562 0.0371149 0) (1.05861 0.0253609 0) (1.03616 0.0198077 0) (1.00686 0.0158523 0) (0.975664 0.0129966 0) (0.943917 0.0110316 0) (0.912798 0.00955306 0) (0.883169 0.00836518 0) (0.85542 0.00740014 0) (0.829633 0.00661265 0) (0.80575 0.00596251 0) (0.783651 0.00541851 0) (0.763195 0.00495804 0) (0.744238 0.00456456 0) (0.726639 0.0042256 0) (0.710266 0.00393156 0) (0.695001 0.00367495 0) (0.680736 0.00344986 0) (0.667373 0.0032516 0) (0.654825 0.00307639 0) (0.643015 0.00292117 0) (0.631873 0.00278348 0) (0.621336 0.00266129 0) (0.611346 0.00255299 0) (0.601853 0.00245724 0) (0.592809 0.00237302 0) (0.584171 0.0022995 0) (0.5759 0.00223611 0) (0.567957 0.00218241 0) (0.560309 0.00213819 0) (0.55292 0.00210342 0) (0.545759 0.00207818 0) (0.538793 0.00206299 0) (0.531993 0.00205801 0) (0.52532 0.00206479 0) (0.518751 0.00208295 0) (0.51224 0.00211656 0) (0.505758 0.00216249 0) (0.499264 0.00223165 0) (0.492693 0.00231188 0) (0.486056 0.00243185 0) (0.479148 0.00255499 0) (0.472207 0.00275217 0) (0.464563 0.00293237 0) (0.45718 0.00324569 0) (0.448115 0.00353624 0) (0.440142 0.00394352 0) (0.428651 0.00472653 0) (0.418827 0.00429699 0) (1.00635 0.040186 0) (1.05239 0.0361701 0) (1.066 0.0252882 0) (1.05942 0.0206194 0) (1.04668 0.0172895 0) (1.03049 0.0147283 0) (1.01141 0.0129071 0) (0.990504 0.0114885 0) (0.968842 0.0102965 0) (0.94716 0.00928522 0) (0.925906 0.00842889 0) (0.905347 0.00769956 0) (0.885634 0.00707305 0) (0.866839 0.00653083 0) (0.848983 0.00605866 0) (0.832055 0.00564529 0) (0.816022 0.00528168 0) (0.800842 0.0049605 0) (0.786466 0.00467577 0) (0.772843 0.00442261 0) (0.759921 0.00419699 0) (0.74765 0.00399557 0) (0.735982 0.00381561 0) (0.724871 0.00365484 0) (0.714274 0.00351139 0) (0.704149 0.00338373 0) (0.694459 0.00327067 0) (0.685167 0.00317124 0) (0.676238 0.00308475 0) (0.667638 0.00301072 0) (0.659337 0.0029489 0) (0.651302 0.00289926 0) (0.643504 0.00286195 0) (0.635911 0.00283757 0) (0.628495 0.00282647 0) (0.62122 0.00283045 0) (0.61406 0.00284928 0) (0.606973 0.0028878 0) (0.59993 0.00294263 0) (0.592885 0.00302675 0) (0.585786 0.00312626 0) (0.578621 0.00327525 0) (0.571228 0.00343155 0) (0.563763 0.003678 0) (0.555708 0.00391235 0) (0.547756 0.00430264 0) (0.538438 0.00468808 0) (0.529723 0.00520657 0) (0.518302 0.00615681 0) (0.507564 0.00619943 0) (1.00506 0.0375095 0) (1.04761 0.0350736 0) (1.06391 0.0247441 0) (1.06408 0.020656 0) (1.06052 0.0178359 0) (1.0545 0.0155804 0) (1.0456 0.0139778 0) (1.03423 0.0127275 0) (1.0211 0.0116491 0) (1.00682 0.0107034 0) (0.991864 0.00987679 0) (0.976577 0.00915185 0) (0.961232 0.00851208 0) (0.946025 0.00794471 0) (0.931097 0.00743978 0) (0.916541 0.00698912 0) (0.902416 0.00658589 0) (0.888758 0.00622429 0) (0.875583 0.00589942 0) (0.862894 0.00560709 0) (0.850686 0.00534377 0) (0.838945 0.00510642 0) (0.827655 0.00489248 0) (0.816796 0.0046998 0) (0.806345 0.00452658 0) (0.796281 0.00437132 0) (0.786579 0.00423285 0) (0.777215 0.00411021 0) (0.768166 0.00400276 0) (0.759406 0.00391003 0) (0.750913 0.00383184 0) (0.742661 0.00376824 0) (0.734625 0.00371952 0) (0.726778 0.0036864 0) (0.719098 0.00366944 0) (0.711549 0.00367074 0) (0.704113 0.00369029 0) (0.696745 0.0037336 0) (0.689425 0.00379734 0) (0.682103 0.00389602 0) (0.67474 0.00401514 0) (0.667303 0.0041921 0) (0.659679 0.00438292 0) (0.651944 0.00467597 0) (0.643728 0.00496855 0) (0.635477 0.00542972 0) (0.626152 0.00591756 0) (0.617035 0.00654413 0) (0.605886 0.0076582 0) (0.594766 0.00815406 0) (1.00451 0.0349743 0) (1.04358 0.0339957 0) (1.05988 0.0240965 0) (1.06213 0.0203714 0) (1.06235 0.0179076 0) (1.06159 0.0158691 0) (1.0589 0.0144431 0) (1.0542 0.0133615 0) (1.04781 0.0124283 0) (1.04003 0.0115973 0) (1.03115 0.0108577 0) (1.02143 0.0101959 0) (1.01109 0.00959942 0) (1.00034 0.00905906 0) (0.989347 0.00856825 0) (0.978237 0.00812175 0) (0.967119 0.00771511 0) (0.956073 0.0073445 0) (0.945162 0.00700659 0) (0.93443 0.00669844 0) (0.923909 0.00641748 0) (0.91362 0.00616144 0) (0.903577 0.00592836 0) (0.893786 0.00571652 0) (0.884249 0.0055245 0) (0.874961 0.00535108 0) (0.865919 0.00519532 0) (0.857113 0.00505646 0) (0.848532 0.00493406 0) (0.840165 0.00482779 0) (0.831997 0.00473769 0) (0.824013 0.00466395 0) (0.816197 0.00460707 0) (0.808528 0.00456799 0) (0.80099 0.00454755 0) (0.793554 0.00454812 0) (0.786206 0.0045701 0) (0.778907 0.00461947 0) (0.771642 0.00469332 0) (0.764362 0.00480711 0) (0.75704 0.0049468 0) (0.749634 0.00515122 0) (0.742063 0.00537785 0) (0.734353 0.00571509 0) (0.726245 0.00606827 0) (0.718002 0.00659529 0) (0.708918 0.00718725 0) (0.699769 0.00792165 0) (0.689097 0.00918663 0) (0.678081 0.0101016 0) (1.00412 0.0325445 0) (1.04025 0.0329443 0) (1.05612 0.0234652 0) (1.05877 0.0199917 0) (1.06008 0.0177849 0) (1.06138 0.0158799 0) (1.06165 0.0145575 0) (1.06062 0.0135937 0) (1.05841 0.012779 0) (1.05512 0.0120564 0) (1.05082 0.0114124 0) (1.04565 0.0108331 0) (1.03972 0.0103059 0) (1.03316 0.00982214 0) (1.0261 0.00937647 0) (1.01864 0.00896499 0) (1.01088 0.00858468 0) (1.00291 0.00823308 0) (0.994802 0.0079081 0) (0.986616 0.00760794 0) (0.9784 0.00733101 0) (0.970195 0.00707589 0) (0.962032 0.00684132 0) (0.953936 0.0066262 0) (0.945925 0.00642961 0) (0.938014 0.00625077 0) (0.93021 0.00608912 0) (0.922519 0.00594423 0) (0.914944 0.00581596 0) (0.907483 0.00570427 0) (0.900134 0.00560945 0) (0.89289 0.00553196 0) (0.885744 0.00547261 0) (0.878683 0.00543258 0) (0.871699 0.00541307 0) (0.864771 0.00541678 0) (0.857889 0.00544454 0) (0.851023 0.00550277 0) (0.844161 0.0055892 0) (0.837261 0.00571982 0) (0.830305 0.00588182 0) (0.823249 0.00611405 0) (0.816036 0.00637779 0) (0.808662 0.00675753 0) (0.800949 0.0071722 0) (0.793037 0.00776136 0) (0.784458 0.00845475 0) (0.775645 0.00929712 0) (0.765685 0.0106965 0) (0.75521 0.0119821 0) (1.00374 0.030211 0) (1.03725 0.0318974 0) (1.05278 0.0228652 0) (1.05553 0.0195944 0) (1.05699 0.0176008 0) (1.05884 0.015786 0) (1.06018 0.0145131 0) (1.06076 0.0136147 0) (1.06063 0.0128757 0) (1.05983 0.0122295 0) (1.05835 0.0116602 0) (1.0562 0.0111524 0) (1.05342 0.0106918 0) (1.05006 0.0102689 0) (1.04617 0.00987749 0) (1.04183 0.00951375 0) (1.03709 0.00917482 0) (1.03201 0.00885862 0) (1.02665 0.00856358 0) (1.02106 0.00828849 0) (1.01529 0.00803235 0) (1.00937 0.00779432 0) (1.00335 0.0075737 0) (0.997246 0.00736988 0) (0.991091 0.00718241 0) (0.984903 0.00701093 0) (0.978701 0.00685525 0) (0.972497 0.00671531 0) (0.966301 0.00659128 0) (0.960122 0.00648345 0) (0.953964 0.00639242 0) (0.947827 0.00631894 0) (0.941713 0.00626415 0) (0.935617 0.00622955 0) (0.929534 0.0062167 0) (0.923454 0.00622867 0) (0.91737 0.00626673 0) (0.91126 0.00633773 0) (0.905117 0.00644013 0) (0.898908 0.0065902 0) (0.892619 0.00677683 0) (0.886211 0.0070379 0) (0.879644 0.00734 0) (0.8729 0.00776118 0) (0.865856 0.00823691 0) (0.858577 0.00888535 0) (0.850762 0.00967446 0) (0.842622 0.0106233 0) (0.833615 0.0121391 0) (0.824061 0.0137377 0) (1.00337 0.0279762 0) (1.03441 0.0308424 0) (1.04967 0.0222903 0) (1.05257 0.0191945 0) (1.05399 0.0173983 0) (1.0559 0.0156631 0) (1.05751 0.0144137 0) (1.05862 0.0135478 0) (1.05931 0.0128512 0) (1.05962 0.0122502 0) (1.05955 0.011728 0) (1.05906 0.0112689 0) (1.05815 0.0108577 0) (1.05682 0.0104834 0) (1.05508 0.010139 0) (1.05296 0.00981981 0) (1.05049 0.00952253 0) (1.04768 0.0092448 0) (1.04457 0.00898496 0) (1.04119 0.0087418 0) (1.03757 0.00851448 0) (1.03374 0.00830235 0) (1.02973 0.00810497 0) (1.02557 0.00792199 0) (1.02126 0.00775322 0) (1.01684 0.00759857 0) (1.01232 0.00745814 0) (1.00772 0.0073321 0) (1.00305 0.00722091 0) (0.998316 0.00712512 0) (0.993529 0.00704561 0) (0.988695 0.00698341 0) (0.983818 0.00693996 0) (0.978899 0.00691706 0) (0.973937 0.00691662 0) (0.968927 0.00694207 0) (0.963866 0.00699511 0) (0.958741 0.007083 0) (0.953544 0.00720492 0) (0.948255 0.00737726 0) (0.94286 0.00759087 0) (0.93733 0.00788193 0) (0.931634 0.00822323 0) (0.925752 0.00868494 0) (0.919601 0.00921998 0) (0.913198 0.00992499 0) (0.906359 0.0108018 0) (0.899166 0.011853 0) (0.891316 0.0134658 0) (0.88298 0.0153157 0) (1.00301 0.0258437 0) (1.03169 0.0297753 0) (1.04668 0.0217366 0) (1.04977 0.0187919 0) (1.05117 0.0171843 0) (1.05304 0.0155333 0) (1.05469 0.0143008 0) (1.05591 0.0134526 0) (1.05684 0.0127806 0) (1.05755 0.0122051 0) (1.05804 0.0117092 0) (1.0583 0.0112787 0) (1.05831 0.0108981 0) (1.05806 0.010556 0) (1.05755 0.0102446 0) (1.05677 0.00995871 0) (1.05573 0.00969442 0) (1.05444 0.00944896 0) (1.0529 0.00922032 0) (1.05113 0.00900705 0) (1.04913 0.00880817 0) (1.04694 0.00862296 0) (1.04455 0.00845098 0) (1.04199 0.00829191 0) (1.03927 0.00814565 0) (1.0364 0.00801219 0) (1.03339 0.00789174 0) (1.03027 0.00778462 0) (1.02702 0.00769143 0) (1.02368 0.00761288 0) (1.02024 0.00755006 0) (1.0167 0.00750422 0) (1.01308 0.00747698 0) (1.00938 0.00747047 0) (1.00559 0.00748682 0) (1.00172 0.00752981 0) (0.997768 0.00760152 0) (0.993718 0.00770952 0) (0.989571 0.00785374 0) (0.98531 0.00805045 0) (0.980924 0.00829264 0) (0.976395 0.00861428 0) (0.971696 0.00899471 0) (0.966809 0.00949557 0) (0.96168 0.0100867 0) (0.956302 0.0108451 0) (0.950569 0.0117995 0) (0.944496 0.0129457 0) (0.937931 0.0146355 0) (0.930992 0.016675 0) (1.00268 0.0238161 0) (1.02909 0.0286945 0) (1.04377 0.0212038 0) (1.04708 0.0183863 0) (1.04848 0.0169571 0) (1.05032 0.0153994 0) (1.05196 0.0141854 0) (1.05319 0.0133503 0) (1.05415 0.0126963 0) (1.05496 0.0121373 0) (1.05563 0.0116567 0) (1.05616 0.0112422 0) (1.05654 0.0108791 0) (1.05677 0.0105559 0) (1.05684 0.0102648 0) (1.05674 0.0100003 0) (1.05648 0.00975821 0) (1.05606 0.0095355 0) (1.05546 0.00932988 0) (1.05469 0.00913967 0) (1.05375 0.0089637 0) (1.05266 0.00880111 0) (1.05141 0.00865134 0) (1.05 0.00851402 0) (1.04846 0.00838899 0) (1.04677 0.00827622 0) (1.04495 0.00817593 0) (1.043 0.00808847 0) (1.04094 0.00801447 0) (1.03875 0.00795474 0) (1.03646 0.00791043 0) (1.03406 0.00788295 0) (1.03155 0.00787406 0) (1.02895 0.00788607 0) (1.02624 0.00792131 0) (1.02343 0.00798385 0) (1.02052 0.00807602 0) (1.0175 0.00820567 0) (1.01437 0.00837341 0) (1.01112 0.00859519 0) (1.00773 0.00886619 0) (1.0042 0.00921782 0) (1.00051 0.00963592 0) (0.996637 0.0101736 0) (0.99255 0.010816 0) (0.988231 0.0116236 0) (0.983626 0.0126442 0) (0.978724 0.0138747 0) (0.973465 0.0156213 0) (0.967968 0.0177919 0) (1.00238 0.021895 0) (1.02662 0.0275992 0) (1.04095 0.0206916 0) (1.04448 0.0179794 0) (1.04589 0.0167155 0) (1.0477 0.0152599 0) (1.04934 0.0140688 0) (1.05056 0.0132459 0) (1.05152 0.0126083 0) (1.05233 0.0120633 0) (1.05303 0.0115937 0) (1.05362 0.0111894 0) (1.05412 0.0108369 0) (1.05451 0.0105249 0) (1.05481 0.0102458 0) (1.05501 0.00999402 0) (1.05511 0.00976553 0) (1.0551 0.00955717 0) (1.05499 0.00936657 0) (1.05476 0.00919196 0) (1.05442 0.00903203 0) (1.05397 0.00888585 0) (1.05341 0.00875277 0) (1.05274 0.00863236 0) (1.05195 0.00852439 0) (1.05105 0.00842879 0) (1.05005 0.00834573 0) (1.04894 0.00827554 0) (1.04772 0.00821885 0) (1.04639 0.00817647 0) (1.04497 0.0081496 0) (1.04344 0.0081397 0) (1.04181 0.0081486 0) (1.04008 0.00817877 0) (1.03825 0.00823264 0) (1.03632 0.00831448 0) (1.03428 0.00842684 0) (1.03214 0.00857772 0) (1.02989 0.00876837 0) (1.02751 0.00901424 0) (1.02501 0.00931269 0) (1.02238 0.00969234 0) (1.01959 0.0101451 0) (1.01664 0.0107164 0) (1.01351 0.0114037 0) (1.01018 0.0122551 0) (1.00662 0.0133296 0) (1.00282 0.0146309 0) (0.99878 0.0164148 0) (0.994639 0.0186634 0) (1.0021 0.0200815 0) (1.02429 0.0264913 0) (1.03821 0.0201977 0) (1.04195 0.0175731 0) (1.04339 0.0164594 0) (1.04516 0.0151135 0) (1.04681 0.0139505 0) (1.04803 0.0131399 0) (1.04897 0.0125186 0) (1.04977 0.0119875 0) (1.05046 0.011528 0) (1.05106 0.0111321 0) (1.05157 0.0107874 0) (1.05201 0.0104832 0) (1.05238 0.0102118 0) (1.05268 0.00996806 0) (1.05291 0.00974797 0) (1.05307 0.00954848 0) (1.05316 0.00936724 0) (1.05318 0.00920249 0) (1.05313 0.00905295 0) (1.05301 0.00891766 0) (1.05281 0.00879596 0) (1.05254 0.00868741 0) (1.05219 0.00859176 0) (1.05175 0.00850891 0) (1.05124 0.00843901 0) (1.05064 0.00838237 0) (1.04997 0.00833958 0) (1.0492 0.00831148 0) (1.04836 0.00829925 0) (1.04743 0.0083044 0) (1.04641 0.00832879 0) (1.0453 0.00837499 0) (1.04411 0.00844549 0) (1.04283 0.0085447 0) (1.04145 0.00867537 0) (1.03997 0.00884549 0) (1.0384 0.00905698 0) (1.03671 0.00932459 0) (1.03492 0.00964776 0) (1.033 0.0100524 0) (1.03095 0.0105357 0) (1.02877 0.0111361 0) (1.02643 0.0118612 0) (1.02392 0.0127501 0) (1.02125 0.0138663 0) (1.0184 0.0152233 0) (1.01541 0.0170262 0) (1.01244 0.0193071 0) (1.00185 0.0183757 0) (1.02209 0.0253748 0) (1.03558 0.0197184 0) (1.03951 0.0171692 0) (1.04097 0.0161895 0) (1.04272 0.0149593 0) (1.04436 0.01383 0) (1.04558 0.013032 0) (1.04652 0.0124272 0) (1.0473 0.0119107 0) (1.04798 0.0114616 0) (1.04857 0.0110737 0) (1.04907 0.0107362 0) (1.04951 0.0104385 0) (1.04988 0.0101734 0) (1.0502 0.00993559 0) (1.05047 0.00972145 0) (1.05068 0.00952799 0) (1.05085 0.00935296 0) (1.05097 0.00919468 0) (1.05103 0.0090519 0) (1.05105 0.00892376 0) (1.05102 0.00880962 0) (1.05093 0.00870908 0) (1.05079 0.00862192 0) (1.05059 0.00854805 0) (1.05034 0.00848762 0) (1.05003 0.00844095 0) (1.04965 0.00840863 0) (1.04922 0.00839149 0) (1.04871 0.00839073 0) (1.04814 0.0084079 0) (1.04751 0.00844486 0) (1.0468 0.00850428 0) (1.04602 0.00858867 0) (1.04516 0.00870256 0) (1.04422 0.00884884 0) (1.0432 0.00903544 0) (1.0421 0.00926491 0) (1.0409 0.00955121 0) (1.03961 0.0098957 0) (1.03822 0.0103216 0) (1.03672 0.0108307 0) (1.0351 0.0114558 0) (1.03336 0.0122114 0) (1.0315 0.0131309 0) (1.0295 0.0142774 0) (1.02741 0.0156747 0) (1.02524 0.0174804 0) (1.02319 0.0197564 0) (1.00162 0.0167775 0) (1.02003 0.024254 0) (1.03305 0.0192496 0) (1.03716 0.0167693 0) (1.03866 0.0159069 0) (1.04036 0.0147968 0) (1.042 0.013707 0) (1.04323 0.0129222 0) (1.04415 0.0123338 0) (1.04492 0.0118327 0) (1.04559 0.0113945 0) (1.04616 0.011015 0) (1.04666 0.0106847 0) (1.04708 0.0103934 0) (1.04745 0.010134 0) (1.04776 0.00990162 0) (1.04803 0.00969255 0) (1.04825 0.00950398 0) (1.04843 0.00933378 0) (1.04857 0.00918033 0) (1.04868 0.00904249 0) (1.04874 0.00891946 0) (1.04877 0.00881068 0) (1.04876 0.00871582 0) (1.0487 0.0086347 0) (1.04861 0.00856728 0) (1.04848 0.00851373 0) (1.0483 0.0084744 0) (1.04807 0.0084499 0) (1.0478 0.00844108 0) (1.04748 0.00844915 0) (1.0471 0.00847571 0) (1.04667 0.00852263 0) (1.04619 0.00859266 0) (1.04564 0.00868835 0) (1.04504 0.00881428 0) (1.04437 0.00897352 0) (1.04363 0.00917384 0) (1.04282 0.00941841 0) (1.04194 0.00972035 0) (1.04097 0.0100827 0) (1.03992 0.0105264 0) (1.03879 0.0110568 0) (1.03756 0.0117022 0) (1.03623 0.0124816 0) (1.03482 0.0134253 0) (1.03331 0.014592 0) (1.03176 0.0160152 0) (1.0302 0.0178103 0) (1.02883 0.0200529 0) (1.00142 0.015286 0) (1.0181 0.0231329 0) (1.03063 0.0187873 0) (1.0349 0.0163748 0) (1.03643 0.0156129 0) (1.0381 0.0146251 0) (1.03973 0.0135812 0) (1.04096 0.0128105 0) (1.04188 0.0122385 0) (1.04264 0.0117533 0) (1.04329 0.0113267 0) (1.04385 0.0109559 0) (1.04434 0.010633 0) (1.04475 0.0103483 0) (1.0451 0.0100948 0) (1.04541 0.00986768 0) (1.04566 0.00966349 0) (1.04588 0.00947951 0) (1.04606 0.00931368 0) (1.0462 0.00916448 0) (1.0463 0.00903084 0) (1.04637 0.00891203 0) (1.04642 0.0088076 0) (1.04643 0.00871727 0) (1.0464 0.00864092 0) (1.04635 0.00857857 0) (1.04625 0.00853043 0) (1.04613 0.00849688 0) (1.04596 0.00847854 0) (1.04576 0.00847634 0) (1.04552 0.00849147 0) (1.04523 0.00852559 0) (1.04491 0.00858062 0) (1.04453 0.00865932 0) (1.04411 0.00876434 0) (1.04364 0.00890025 0) (1.04311 0.00907033 0) (1.04253 0.00928215 0) (1.04188 0.00953945 0) (1.04118 0.00985453 0) (1.04041 0.010232 0) (1.03957 0.0106904 0) (1.03865 0.0112382 0) (1.03767 0.0119003 0) (1.03661 0.0126979 0) (1.03548 0.0136601 0) (1.0343 0.0148391 0) (1.03312 0.0162758 0) (1.03196 0.0180499 0) (1.03105 0.020239 0) (1.00124 0.0138998 0) (1.01631 0.0220157 0) (1.02831 0.0183278 0) (1.03273 0.0159869 0) (1.0343 0.0153092 0) (1.03593 0.014444 0) (1.03755 0.0134522 0) (1.03878 0.012697 0) (1.0397 0.0121411 0) (1.04044 0.0116724 0) (1.04109 0.0112581 0) (1.04164 0.0108964 0) (1.04211 0.0105811 0) (1.04251 0.0103032 0) (1.04285 0.0100558 0) (1.04314 0.00983408 0) (1.04339 0.00963486 0) (1.04359 0.00945548 0) (1.04376 0.00929397 0) (1.04389 0.00914889 0) (1.04399 0.00901925 0) (1.04406 0.0089044 0) (1.0441 0.00880396 0) (1.04411 0.00871772 0) (1.04409 0.00864562 0) (1.04404 0.00858775 0) (1.04396 0.00854433 0) (1.04385 0.00851581 0) (1.0437 0.00850282 0) (1.04352 0.00850632 0) (1.04331 0.00852754 0) (1.04306 0.00856819 0) (1.04278 0.0086302 0) (1.04245 0.00871641 0) (1.04208 0.00882951 0) (1.04167 0.00897409 0) (1.04121 0.00915359 0) (1.0407 0.00937538 0) (1.04015 0.00964375 0) (1.03954 0.0099702 0) (1.03887 0.0103605 0) (1.03814 0.0108318 0) (1.03735 0.011394 0) (1.03651 0.0120699 0) (1.03561 0.0128815 0) (1.03466 0.0138575 0) (1.03368 0.0150427 0) (1.03272 0.0164826 0) (1.03184 0.0182281 0) (1.03121 0.0203508 0) (1.00107 0.012617 0) (1.01465 0.0209062 0) (1.0261 0.0178677 0) (1.03064 0.0156066 0) (1.03227 0.0149975 0) (1.03385 0.0142528 0) (1.03545 0.0133195 0) (1.03669 0.0125817 0) (1.0376 0.0120416 0) (1.03834 0.0115898 0) (1.03897 0.0111886 0) (1.03951 0.0108364 0) (1.03997 0.010529 0) (1.04037 0.0102581 0) (1.0407 0.0100169 0) (1.04098 0.00980088 0) (1.04121 0.00960675 0) (1.04141 0.00943208 0) (1.04156 0.00927497 0) (1.04168 0.00913406 0) (1.04177 0.00900844 0) (1.04184 0.00889754 0) (1.04187 0.00880104 0) (1.04187 0.00871879 0) (1.04184 0.00865082 0) (1.04179 0.00859724 0) (1.04171 0.00855833 0) (1.04159 0.00853455 0) (1.04145 0.00852658 0) (1.04128 0.00853542 0) (1.04107 0.0085623 0) (1.04083 0.008609 0) (1.04056 0.00867747 0) (1.04025 0.0087706 0) (1.0399 0.00889113 0) (1.03952 0.00904364 0) (1.03909 0.00923177 0) (1.03861 0.00946265 0) (1.03809 0.00974105 0) (1.03753 0.0100778 0) (1.03691 0.0104796 0) (1.03624 0.0109622 0) (1.03552 0.0115368 0) (1.03476 0.0122246 0) (1.03394 0.0130471 0) (1.0331 0.0140332 0) (1.03224 0.0152202 0) (1.03143 0.0166555 0) (1.03071 0.0183673 0) (1.03026 0.0204166 0) (1.00093 0.0114348 0) (1.01312 0.0198086 0) (1.024 0.0174039 0) (1.02864 0.0152345 0) (1.03032 0.0146799 0) (1.03187 0.0140514 0) (1.03345 0.0131825 0) (1.03469 0.0124646 0) (1.0356 0.0119401 0) (1.03633 0.0115055 0) (1.03695 0.011118 0) (1.03748 0.0107758 0) (1.03793 0.0104766 0) (1.03831 0.010213 0) (1.03864 0.00997828 0) (1.03891 0.00976801 0) (1.03913 0.00957915 0) (1.03931 0.00940932 0) (1.03946 0.00925674 0) (1.03957 0.00912011 0) (1.03965 0.0089986 0) (1.03971 0.00889171 0) (1.03973 0.0087992 0) (1.03972 0.00872101 0) (1.03969 0.00865718 0) (1.03963 0.0086079 0) (1.03954 0.00857348 0) (1.03942 0.00855441 0) (1.03928 0.00855141 0) (1.0391 0.00856548 0) (1.03889 0.00859792 0) (1.03865 0.0086505 0) (1.03838 0.00872525 0) (1.03807 0.00882504 0) (1.03773 0.00895274 0) (1.03735 0.00911286 0) (1.03693 0.00930923 0) (1.03647 0.00954875 0) (1.03597 0.00983661 0) (1.03543 0.010183 0) (1.03483 0.0105955 0) (1.0342 0.0110885 0) (1.03351 0.0116741 0) (1.03279 0.0123724 0) (1.03203 0.0132037 0) (1.03125 0.014197 0) (1.03047 0.0153828 0) (1.02974 0.0168077 0) (1.02913 0.0184827 0) (1.02878 0.020456 0) (1.0008 0.0103501 0) (1.01172 0.018727 0) (1.02202 0.0169336 0) (1.02672 0.0148708 0) (1.02847 0.0143585 0) (1.02998 0.0138397 0) (1.03153 0.0130407 0) (1.03277 0.0123457 0) (1.03369 0.0118365 0) (1.03441 0.0114193 0) (1.03502 0.0110462 0) (1.03554 0.0107146 0) (1.03598 0.0104239 0) (1.03636 0.0101678 0) (1.03667 0.00993973 0) (1.03693 0.00973545 0) (1.03714 0.00955202 0) (1.03732 0.00938719 0) (1.03746 0.00923925 0) (1.03756 0.00910702 0) (1.03763 0.00898972 0) (1.03768 0.00888695 0) (1.03769 0.00879854 0) (1.03768 0.00872448 0) (1.03764 0.00866489 0) (1.03757 0.00861999 0) (1.03747 0.00859012 0) (1.03735 0.00857583 0) (1.0372 0.00857783 0) (1.03701 0.00859718 0) (1.0368 0.00863517 0) (1.03656 0.00869365 0) (1.03629 0.00877464 0) (1.03598 0.00888107 0) (1.03564 0.00901585 0) (1.03526 0.00918346 0) (1.03484 0.00938791 0) (1.03439 0.00963589 0) (1.03389 0.0099329 0) (1.03336 0.0102887 0) (1.03278 0.0107112 0) (1.03216 0.0112142 0) (1.0315 0.0118099 0) (1.03081 0.0125175 0) (1.03008 0.0133561 0) (1.02934 0.0143543 0) (1.02861 0.0155364 0) (1.02795 0.0169465 0) (1.0274 0.018583 0) (1.02712 0.0204807 0) (1.00069 0.0093589 0) (1.01044 0.0176656 0) (1.02015 0.0164547 0) (1.02489 0.0145155 0) (1.02671 0.0140351 0) (1.02818 0.0136178 0) (1.0297 0.0128935 0) (1.03095 0.0122248 0) (1.03186 0.011731 0) (1.03258 0.0113312 0) (1.03318 0.0109731 0) (1.03369 0.0106526 0) (1.03413 0.0103708 0) (1.03449 0.0101223 0) (1.03479 0.00990122 0) (1.03505 0.00970314 0) (1.03525 0.00952531 0) (1.03542 0.00936562 0) (1.03555 0.00922248 0) (1.03564 0.00909476 0) (1.03571 0.0089818 0) (1.03574 0.00888326 0) (1.03575 0.00879905 0) (1.03573 0.00872923 0) (1.03568 0.00867397 0) (1.03561 0.00863355 0) (1.0355 0.00860834 0) (1.03537 0.0085989 0) (1.03522 0.00860599 0) (1.03503 0.00863069 0) (1.03481 0.00867432 0) (1.03457 0.00873874 0) (1.03429 0.00882603 0) (1.03398 0.00893911 0) (1.03364 0.00908099 0) (1.03326 0.00925608 0) (1.03284 0.00946854 0) (1.03239 0.00972489 0) (1.0319 0.0100309 0) (1.03137 0.0103958 0) (1.03081 0.010828 0) (1.0302 0.0113405 0) (1.02956 0.0119455 0) (1.02888 0.0126617 0) (1.02818 0.0135064 0) (1.02748 0.0145075 0) (1.02679 0.0156841 0) (1.02618 0.0170763 0) (1.02568 0.0186734 0) (1.02544 0.0204977 0) (1.0006 0.00845704 0) (1.00928 0.0166284 0) (1.01839 0.0159653 0) (1.02315 0.0141683 0) (1.02504 0.0137118 0) (1.02648 0.0133863 0) (1.02797 0.0127401 0) (1.02921 0.0121018 0) (1.03012 0.0116235 0) (1.03083 0.011241 0) (1.03143 0.0108986 0) (1.03193 0.0105898 0) (1.03236 0.0103171 0) (1.03272 0.0100767 0) (1.03301 0.00986269 0) (1.03326 0.00967102 0) (1.03345 0.00949897 0) (1.03361 0.00934458 0) (1.03373 0.00920637 0) (1.03382 0.0090833 0) (1.03388 0.00897479 0) (1.03391 0.0088806 0) (1.03391 0.0088007 0) (1.03388 0.00873522 0) (1.03382 0.00868441 0) (1.03374 0.00864856 0) (1.03364 0.00862811 0) (1.0335 0.00862363 0) (1.03334 0.00863592 0) (1.03315 0.00866605 0) (1.03292 0.00871541 0) (1.03267 0.00878585 0) (1.03239 0.00887949 0) (1.03208 0.00899928 0) (1.03174 0.00914828 0) (1.03136 0.00933087 0) (1.03095 0.00955132 0) (1.0305 0.00981598 0) (1.03001 0.0101308 0) (1.02949 0.0105048 0) (1.02893 0.0109463 0) (1.02834 0.011468 0) (1.02771 0.0120817 0) (1.02705 0.0128055 0) (1.02638 0.0136552 0) (1.02571 0.0146574 0) (1.02506 0.015827 0) (1.02448 0.0171989 0) (1.02403 0.0187564 0) (1.02381 0.0205108 0) (1.00051 0.0076397 0) (1.00823 0.0156192 0) (1.01675 0.0154641 0) (1.02149 0.0138285 0) (1.02345 0.0133902 0) (1.02486 0.0131459 0) (1.02631 0.0125803 0) (1.02755 0.0119764 0) (1.02847 0.0115142 0) (1.02918 0.0111487 0) (1.02976 0.0108225 0) (1.03026 0.0105261 0) (1.03068 0.0102629 0) (1.03103 0.0100307 0) (1.03132 0.00982407 0) (1.03155 0.00963902 0) (1.03174 0.00947294 0) (1.0319 0.00932402 0) (1.03201 0.00919088 0) (1.03209 0.00907259 0) (1.03214 0.00896866 0) (1.03216 0.00887892 0) (1.03216 0.00880345 0) (1.03212 0.00874243 0) (1.03206 0.00869617 0) (1.03198 0.00866501 0) (1.03186 0.00864942 0) (1.03172 0.00865 0) (1.03156 0.00866757 0) (1.03136 0.00870324 0) (1.03114 0.0087584 0) (1.03088 0.00883493 0) (1.0306 0.00893501 0) (1.03029 0.00906156 0) (1.02994 0.00921772 0) (1.02956 0.00940781 0) (1.02915 0.00963622 0) (1.02871 0.00990915 0) (1.02823 0.0102327 0) (1.02771 0.0106155 0) (1.02716 0.011066 0) (1.02658 0.0115965 0) (1.02597 0.0122183 0) (1.02533 0.012949 0) (1.02468 0.0138027 0) (1.02404 0.0148044 0) (1.02342 0.0159654 0) (1.02289 0.0173154 0) (1.02247 0.0188336 0) (1.02227 0.020522 0) (1.00044 0.00690172 0) (1.00729 0.0146419 0) (1.01521 0.0149505 0) (1.01991 0.0134953 0) (1.02194 0.0130719 0) (1.02333 0.0128976 0) (1.02474 0.0124134 0) (1.02597 0.0118483 0) (1.0269 0.011403 0) (1.0276 0.0110543 0) (1.02818 0.0107446 0) (1.02867 0.0104612 0) (1.02908 0.010208 0) (1.02943 0.00998428 0) (1.02971 0.00978527 0) (1.02994 0.00960706 0) (1.03012 0.00944715 0) (1.03027 0.00930386 0) (1.03038 0.00917594 0) (1.03045 0.00906258 0) (1.0305 0.00896335 0) (1.03051 0.0088782 0) (1.0305 0.00880726 0) (1.03046 0.00875081 0) (1.03039 0.00870921 0) (1.0303 0.00868285 0) (1.03019 0.00867222 0) (1.03004 0.00867797 0) (1.02987 0.00870092 0) (1.02967 0.00874221 0) (1.02944 0.00880325 0) (1.02919 0.00888596 0) (1.0289 0.00899252 0) (1.02859 0.00912588 0) (1.02824 0.00928922 0) (1.02787 0.00948682 0) (1.02746 0.00972315 0) (1.02702 0.0100043 0) (1.02654 0.0103363 0) (1.02604 0.0107278 0) (1.0255 0.0111871 0) (1.02493 0.0117259 0) (1.02433 0.0123552 0) (1.02372 0.0130918 0) (1.02309 0.0139485 0) (1.02248 0.0149482 0) (1.0219 0.0160994 0) (1.0214 0.0174264 0) (1.02101 0.0189057 0) (1.02083 0.0205325 0) (1.00038 0.00623766 0) (1.00644 0.0136998 0) (1.01378 0.0144244 0) (1.01841 0.0131673 0) (1.02051 0.0127583 0) (1.02189 0.0126426 0) (1.02326 0.0122392 0) (1.02448 0.0117171 0) (1.0254 0.01129 0) (1.0261 0.0109578 0) (1.02668 0.010665 0) (1.02716 0.0103951 0) (1.02757 0.0101524 0) (1.02791 0.00993739 0) (1.02818 0.00974623 0) (1.02841 0.00957508 0) (1.02859 0.00942154 0) (1.02873 0.00928406 0) (1.02883 0.00916151 0) (1.0289 0.0090532 0) (1.02894 0.00895881 0) (1.02895 0.00887836 0) (1.02893 0.00881208 0) (1.02889 0.00876032 0) (1.02882 0.00872348 0) (1.02872 0.00870203 0) (1.0286 0.00869647 0) (1.02845 0.00870748 0) (1.02828 0.0087359 0) (1.02807 0.0087829 0) (1.02785 0.00884991 0) (1.02759 0.00893885 0) (1.0273 0.00905196 0) (1.02699 0.00919215 0) (1.02665 0.00936268 0) (1.02627 0.00956778 0) (1.02587 0.00981197 0) (1.02543 0.0101012 0) (1.02496 0.0104417 0) (1.02446 0.0108416 0) (1.02393 0.0113092 0) (1.02338 0.0118558 0) (1.0228 0.0124921 0) (1.02221 0.0132337 0) (1.02161 0.0140923 0) (1.02102 0.0150887 0) (1.02047 0.0162288 0) (1.02001 0.017532 0) (1.01965 0.0189734 0) (1.01949 0.0205429 0) (1.00032 0.00564185 0) (1.00569 0.0127963 0) (1.01247 0.0138869 0) (1.017 0.0128428 0) (1.01915 0.0124503 0) (1.02052 0.0123822 0) (1.02185 0.0120575 0) (1.02306 0.0115823 0) (1.02398 0.0111752 0) (1.02469 0.0108592 0) (1.02525 0.0105833 0) (1.02573 0.0103277 0) (1.02614 0.0100959 0) (1.02647 0.00988993 0) (1.02674 0.00970685 0) (1.02696 0.00954299 0) (1.02713 0.00939602 0) (1.02727 0.00926452 0) (1.02736 0.00914752 0) (1.02743 0.00904441 0) (1.02746 0.00895498 0) (1.02747 0.00887935 0) (1.02745 0.00881785 0) (1.0274 0.00877089 0) (1.02732 0.00873894 0) (1.02723 0.00872249 0) (1.0271 0.00872211 0) (1.02695 0.00873847 0) (1.02677 0.00877246 0) (1.02657 0.00882525 0) (1.02634 0.0088983 0) (1.02608 0.00899354 0) (1.0258 0.00911323 0) (1.02548 0.00926029 0) (1.02514 0.00943801 0) (1.02477 0.00965057 0) (1.02437 0.00990255 0) (1.02394 0.0101998 0) (1.02348 0.0105484 0) (1.02299 0.0109565 0) (1.02247 0.011432 0) (1.02193 0.011986 0) (1.02137 0.0126285 0) (1.0208 0.0133743 0) (1.02022 0.0142338 0) (1.01967 0.0152256 0) (1.01915 0.0163535 0) (1.01872 0.0176325 0) (1.01839 0.019037 0) (1.01824 0.0205535 0) (1.00028 0.00510859 0) (1.00502 0.0119338 0) (1.01125 0.0133402 0) (1.01566 0.0125195 0) (1.01787 0.0121484 0) (1.01923 0.012118 0) (1.02052 0.0118684 0) (1.02171 0.0114435 0) (1.02264 0.0110584 0) (1.02334 0.0107585 0) (1.02391 0.0104996 0) (1.02438 0.0102588 0) (1.02478 0.0100384 0) (1.0251 0.00984182 0) (1.02537 0.00966704 0) (1.02559 0.0095107 0) (1.02576 0.00937052 0) (1.02588 0.00924519 0) (1.02598 0.00913388 0) (1.02604 0.00903611 0) (1.02607 0.00895179 0) (1.02607 0.00888112 0) (1.02604 0.00882452 0) (1.02599 0.00878247 0) (1.02592 0.00875552 0) (1.02581 0.00874419 0) (1.02569 0.00874908 0) (1.02553 0.00877089 0) (1.02535 0.00881054 0) (1.02515 0.0088692 0) (1.02492 0.00894835 0) (1.02466 0.00904993 0) (1.02438 0.00917623 0) (1.02406 0.00933017 0) (1.02372 0.00951506 0) (1.02336 0.00973505 0) (1.02296 0.0099947 0) (1.02254 0.0102998 0) (1.02208 0.0106564 0) (1.02161 0.0110723 0) (1.0211 0.0115554 0) (1.02058 0.0121162 0) (1.02004 0.0127642 0) (1.01949 0.0135132 0) (1.01894 0.0143726 0) (1.01841 0.0153586 0) (1.01793 0.0164735 0) (1.01753 0.0177281 0) (1.01722 0.019097 0) (1.01708 0.0205646 0) (1.00024 0.00463224 0) (1.00442 0.0111145 0) (1.01014 0.0127877 0) (1.01441 0.0121949 0) (1.01666 0.0118524 0) (1.01802 0.0118515 0) (1.01927 0.011672 0) (1.02043 0.0113002 0) (1.02136 0.0109395 0) (1.02207 0.0106559 0) (1.02263 0.0104138 0) (1.0231 0.0101882 0) (1.02349 0.0099798 0) (1.02381 0.00979295 0) (1.02408 0.00962673 0) (1.02429 0.00947813 0) (1.02445 0.00934495 0) (1.02458 0.00922598 0) (1.02467 0.00912053 0) (1.02472 0.00902826 0) (1.02475 0.00894918 0) (1.02475 0.00888359 0) (1.02472 0.008832 0) (1.02467 0.00879499 0) (1.02459 0.00877314 0) (1.02448 0.00876704 0) (1.02435 0.0087773 0) (1.0242 0.00880466 0) (1.02402 0.00885004 0) (1.02381 0.00891464 0) (1.02358 0.00899995 0) (1.02332 0.00910792 0) (1.02304 0.00924086 0) (1.02273 0.00940168 0) (1.02239 0.0095937 0) (1.02203 0.00982104 0) (1.02164 0.0100883 0) (1.02122 0.010401 0) (1.02078 0.0107653 0) (1.02032 0.0111887 0) (1.01983 0.0116789 0) (1.01932 0.012246 0) (1.0188 0.0128988 0) (1.01827 0.0136501 0) (1.01775 0.0145083 0) (1.01725 0.0154875 0) (1.0168 0.0165885 0) (1.01642 0.0178188 0) (1.01615 0.0191535 0) (1.01602 0.0205761 0) (1.00021 0.00420725 0) (1.0039 0.0103398 0) (1.00912 0.0122327 0) (1.01323 0.0118671 0) (1.0155 0.0115619 0) (1.01687 0.0115841 0) (1.01809 0.0114689 0) (1.01923 0.0111519 0) (1.02015 0.0108184 0) (1.02086 0.0105513 0) (1.02142 0.0103259 0) (1.02188 0.0101159 0) (1.02227 0.00991999 0) (1.02259 0.00974324 0) (1.02285 0.00958581 0) (1.02306 0.00944518 0) (1.02322 0.00931922 0) (1.02334 0.00920681 0) (1.02343 0.00910739 0) (1.02348 0.00902076 0) (1.02351 0.00894706 0) (1.0235 0.00888669 0) (1.02347 0.00884024 0) (1.02342 0.00880838 0) (1.02333 0.00879175 0) (1.02323 0.00879097 0) (1.0231 0.00880671 0) (1.02294 0.0088397 0) (1.02276 0.0088909 0) (1.02255 0.0089615 0) (1.02232 0.00905302 0) (1.02207 0.00916741 0) (1.02179 0.009307 0) (1.02148 0.00947468 0) (1.02115 0.00967378 0) (1.02079 0.00990837 0) (1.02041 0.010183 0) (1.02 0.0105032 0) (1.01957 0.0108749 0) (1.01911 0.0113055 0) (1.01864 0.0118024 0) (1.01815 0.012375 0) (1.01764 0.0130318 0) (1.01714 0.0137846 0) (1.01665 0.0146407 0) (1.01618 0.015612 0) (1.01576 0.0166984 0) (1.01541 0.0179046 0) (1.01516 0.0192065 0) (1.01504 0.0205878 0) (1.00018 0.00382829 0) (1.00343 0.00961075 0) (1.00819 0.0116786 0) (1.01212 0.0115344 0) (1.01442 0.0112764 0) (1.01579 0.0113171 0) (1.01697 0.0112597 0) (1.01809 0.0109984 0) (1.01901 0.0106947 0) (1.01972 0.0104447 0) (1.02027 0.0102358 0) (1.02073 0.0100417 0) (1.02112 0.00985884 0) (1.02144 0.00969258 0) (1.02169 0.00954421 0) (1.0219 0.00941177 0) (1.02206 0.00929324 0) (1.02218 0.00918758 0) (1.02226 0.00909437 0) (1.02231 0.00901355 0) (1.02233 0.00894536 0) (1.02233 0.00889034 0) (1.02229 0.00884916 0) (1.02224 0.00882257 0) (1.02215 0.00881126 0) (1.02205 0.00881591 0) (1.02191 0.00883721 0) (1.02176 0.00887592 0) (1.02158 0.008933 0) (1.02137 0.00900967 0) (1.02114 0.00910744 0) (1.02089 0.00922827 0) (1.02061 0.0093745 0) (1.02031 0.00954901 0) (1.01998 0.00975512 0) (1.01963 0.00999686 0) (1.01925 0.0102787 0) (1.01885 0.0106062 0) (1.01843 0.010985 0) (1.01799 0.0114224 0) (1.01753 0.0119253 0) (1.01706 0.0125029 0) (1.01658 0.013163 0) (1.0161 0.0139162 0) (1.01563 0.0147692 0) (1.01519 0.0157319 0) (1.0148 0.0168032 0) (1.01448 0.0179856 0) (1.01425 0.0192562 0) (1.01414 0.0205994 0) (1.00016 0.00349036 0) (1.00303 0.00892767 0) (1.00735 0.0111286 0) (1.01109 0.0111959 0) (1.01339 0.0109952 0) (1.01477 0.0110518 0) (1.01592 0.0110451 0) (1.01701 0.0108395 0) (1.01792 0.0105682 0) (1.01863 0.0103362 0) (1.01919 0.0101437 0) (1.01964 0.0099655 0) (1.02003 0.00979622 0) (1.02034 0.00964087 0) (1.0206 0.00950184 0) (1.0208 0.00937781 0) (1.02096 0.00926693 0) (1.02107 0.00916822 0) (1.02115 0.00908139 0) (1.0212 0.00900652 0) (1.02122 0.008944 0) (1.02122 0.00889445 0) (1.02118 0.00885867 0) (1.02112 0.00883746 0) (1.02104 0.00883158 0) (1.02093 0.00884177 0) (1.0208 0.00886872 0) (1.02064 0.00891323 0) (1.02046 0.00897626 0) (1.02026 0.00905904 0) (1.02003 0.0091631 0) (1.01978 0.00929038 0) (1.0195 0.00944323 0) (1.0192 0.00962451 0) (1.01888 0.00983754 0) (1.01854 0.0100863 0) (1.01817 0.0103752 0) (1.01778 0.0107097 0) (1.01737 0.0110953 0) (1.01694 0.0115389 0) (1.0165 0.0120474 0) (1.01605 0.0126293 0) (1.01559 0.0132918 0) (1.01514 0.0140447 0) (1.0147 0.0148936 0) (1.01429 0.0158469 0) (1.01392 0.0169025 0) (1.01363 0.0180615 0) (1.01343 0.0193023 0) (1.01333 0.0206105 0) (1.00014 0.00318879 0) (1.00267 0.00829028 0) (1.00659 0.0105859 0) (1.01013 0.0108512 0) (1.01241 0.0107173 0) (1.01381 0.0107889 0) (1.01493 0.0108263 0) (1.01599 0.0106751 0) (1.0169 0.0104387 0) (1.0176 0.0102258 0) (1.01816 0.0100494 0) (1.01861 0.00988729 0) (1.01899 0.00973201 0) (1.0193 0.00958801 0) (1.01956 0.0094586 0) (1.01976 0.0093432 0) (1.01991 0.00924018 0) (1.02003 0.00914863 0) (1.02011 0.00906836 0) (1.02016 0.00899961 0) (1.02018 0.00894289 0) (1.02017 0.00889896 0) (1.02013 0.00886869 0) (1.02007 0.00885297 0) (1.01999 0.00885264 0) (1.01988 0.00886845 0) (1.01975 0.00890114 0) (1.01959 0.00895153 0) (1.01941 0.00902057 0) (1.01921 0.0091095 0) (1.01899 0.00921986 0) (1.01874 0.00935359 0) (1.01847 0.00951302 0) (1.01817 0.00970101 0) (1.01786 0.00992085 0) (1.01752 0.0101765 0) (1.01716 0.0104722 0) (1.01678 0.0108134 0) (1.01639 0.0112054 0) (1.01597 0.0116548 0) (1.01555 0.0121683 0) (1.01511 0.0127537 0) (1.01468 0.0134179 0) (1.01425 0.0141696 0) (1.01384 0.0150135 0) (1.01346 0.0159566 0) (1.01312 0.0169963 0) (1.01286 0.0181323 0) (1.01267 0.0193446 0) (1.01259 0.0206205 0) (1.00012 0.00291933 0) (1.00236 0.00769772 0) (1.0059 0.0100535 0) (1.00924 0.0105003 0) (1.0115 0.0104417 0) (1.0129 0.0105291 0) (1.014 0.0106042 0) (1.01503 0.0105053 0) (1.01592 0.0103056 0) (1.01663 0.0101133 0) (1.01718 0.00995305 0) (1.01763 0.009807 0) (1.01801 0.00966609 0) (1.01832 0.00953389 0) (1.01857 0.00941442 0) (1.01877 0.00930787 0) (1.01893 0.00921292 0) (1.01904 0.00912872 0) (1.01912 0.0090552 0) (1.01917 0.00899272 0) (1.01918 0.00894195 0) (1.01917 0.00890376 0) (1.01914 0.00887913 0) (1.01908 0.00886902 0) (1.019 0.00887433 0) (1.01889 0.00889586 0) (1.01876 0.00893438 0) (1.0186 0.0089907 0) (1.01842 0.0090658 0) (1.01823 0.00916092 0) (1.018 0.00927759 0) (1.01776 0.00941774 0) (1.01749 0.00958372 0) (1.0172 0.00977833 0) (1.0169 0.0100048 0) (1.01657 0.0102671 0) (1.01622 0.0105695 0) (1.01585 0.010917 0) (1.01547 0.011315 0) (1.01507 0.0117698 0) (1.01466 0.0122876 0) (1.01425 0.0128759 0) (1.01384 0.0135409 0) (1.01343 0.0142904 0) (1.01305 0.0151285 0) (1.0127 0.0160609 0) (1.01239 0.0170842 0) (1.01215 0.0181978 0) (1.01199 0.0193828 0) (1.01191 0.0206286 0) (1.00011 0.00267813 0) (1.00208 0.00714861 0) (1.00528 0.00953413 0) (1.00842 0.0101442 0) (1.01063 0.0101674 0) (1.01204 0.0102728 0) (1.01312 0.01038 0) (1.01412 0.0103304 0) (1.015 0.0101689 0) (1.01571 0.00999867 0) (1.01626 0.00985472 0) (1.01671 0.00972462 0) (1.01708 0.00959837 0) (1.01739 0.00947841 0) (1.01764 0.00936919 0) (1.01784 0.00927172 0) (1.01799 0.00918505 0) (1.01811 0.00910841 0) (1.01818 0.00904181 0) (1.01823 0.00898577 0) (1.01825 0.00894109 0) (1.01824 0.00890877 0) (1.0182 0.00888989 0) (1.01814 0.00888551 0) (1.01806 0.00889656 0) (1.01795 0.0089239 0) (1.01782 0.00896831 0) (1.01767 0.00903063 0) (1.0175 0.00911184 0) (1.0173 0.00921316 0) (1.01708 0.00933614 0) (1.01684 0.00948269 0) (1.01658 0.00965514 0) (1.0163 0.00985626 0) (1.016 0.0100893 0) (1.01568 0.010358 0) (1.01534 0.0106667 0) (1.01498 0.0110202 0) (1.01461 0.0114238 0) (1.01423 0.0118834 0) (1.01384 0.012405 0) (1.01345 0.0129954 0) (1.01306 0.0136604 0) (1.01268 0.0144069 0) (1.01232 0.0152383 0) (1.012 0.0161593 0) (1.01172 0.0171661 0) (1.01151 0.0182576 0) (1.01137 0.0194165 0) (1.01131 0.0206341 0) (1.00009 0.00246179 0) (1.00184 0.00664105 0) (1.00473 0.00903027 0) (1.00766 0.00978377 0) (1.00982 0.00989334 0) (1.01123 0.01002 0) (1.01229 0.0101546 0) (1.01326 0.0101509 0) (1.01413 0.0100283 0) (1.01483 0.00988173 0) (1.01538 0.00975443 0) (1.01583 0.00964015 0) (1.0162 0.00952876 0) (1.01651 0.00942145 0) (1.01676 0.00932283 0) (1.01695 0.00923469 0) (1.01711 0.00915648 0) (1.01722 0.00908759 0) (1.0173 0.00902811 0) (1.01734 0.00897866 0) (1.01736 0.00894022 0) (1.01735 0.0089139 0) (1.01732 0.0089009 0) (1.01726 0.00890234 0) (1.01717 0.00891923 0) (1.01707 0.00895246 0) (1.01694 0.00900284 0) (1.01679 0.00907121 0) (1.01662 0.00915855 0) (1.01643 0.00926609 0) (1.01621 0.00939536 0) (1.01598 0.00954826 0) (1.01572 0.00972709 0) (1.01545 0.0099346 0) (1.01515 0.010174 0) (1.01484 0.0104489 0) (1.01452 0.0107636 0) (1.01417 0.0111228 0) (1.01382 0.0115314 0) (1.01346 0.0119953 0) (1.01308 0.0125199 0) (1.01271 0.0131117 0) (1.01235 0.0137759 0) (1.01199 0.0145186 0) (1.01166 0.0153426 0) (1.01137 0.0162515 0) (1.01112 0.0172416 0) (1.01093 0.0183114 0) (1.01081 0.0194451 0) (1.01077 0.020636 0) (1.00008 0.00226731 0) (1.00163 0.00617281 0) (1.00423 0.00854392 0) (1.00696 0.00942077 0) (1.00906 0.0096188 0) (1.01046 0.00977059 0) (1.01151 0.00992902 0) (1.01246 0.00996712 0) (1.0133 0.00988376 0) (1.014 0.00976232 0) (1.01455 0.00965218 0) (1.01499 0.00955363 0) (1.01536 0.00945722 0) (1.01567 0.00936293 0) (1.01592 0.00927526 0) (1.01611 0.00919668 0) (1.01627 0.00912714 0) (1.01638 0.00906619 0) (1.01646 0.00901399 0) (1.0165 0.00897131 0) (1.01652 0.00893924 0) (1.01651 0.00891906 0) (1.01648 0.00891204 0) (1.01642 0.00891941 0) (1.01634 0.00894223 0) (1.01623 0.00898143 0) (1.01611 0.00903784 0) (1.01596 0.00911229 0) (1.01579 0.00920579 0) (1.0156 0.00931955 0) (1.01539 0.00945507 0) (1.01517 0.00961426 0) (1.01492 0.00979937 0) (1.01465 0.0100131 0) (1.01437 0.0102586 0) (1.01407 0.0105396 0) (1.01375 0.0108599 0) (1.01342 0.0112243 0) (1.01308 0.0116376 0) (1.01273 0.0121051 0) (1.01238 0.0126321 0) (1.01203 0.0132245 0) (1.01169 0.0138871 0) (1.01136 0.0146251 0) (1.01106 0.0154408 0) (1.01079 0.0163373 0) (1.01057 0.0173104 0) (1.01041 0.0183588 0) (1.01031 0.0194682 0) (1.01029 0.0206335 0) (1.00007 0.00209208 0) (1.00145 0.00574158 0) (1.00379 0.00807676 0) (1.00632 0.00905714 0) (1.00834 0.00934317 0) (1.00973 0.00952411 0) (1.01078 0.00970396 0) (1.01169 0.0097799 0) (1.01252 0.00973518 0) (1.01321 0.00964029 0) (1.01376 0.00954797 0) (1.0142 0.00946508 0) (1.01457 0.0093837 0) (1.01487 0.00930275 0) (1.01512 0.00922638 0) (1.01532 0.00915761 0) (1.01547 0.00909695 0) (1.01558 0.00904412 0) (1.01566 0.00899938 0) (1.0157 0.00896362 0) (1.01572 0.00893807 0) (1.01571 0.00892414 0) (1.01568 0.00892322 0) (1.01563 0.00893662 0) (1.01555 0.00896546 0) (1.01545 0.00901069 0) (1.01532 0.00907318 0) (1.01518 0.00915376 0) (1.01501 0.00925343 0) (1.01483 0.00937338 0) (1.01463 0.00951512 0) (1.0144 0.0096805 0) (1.01416 0.00987177 0) (1.0139 0.0100916 0) (1.01363 0.010343 0) (1.01334 0.0106296 0) (1.01304 0.0109553 0) (1.01272 0.0113245 0) (1.0124 0.0117418 0) (1.01207 0.0122123 0) (1.01174 0.012741 0) (1.01141 0.0133333 0) (1.01109 0.0139934 0) (1.01079 0.014726 0) (1.01051 0.0155328 0) (1.01027 0.0164162 0) (1.01008 0.0173722 0) (1.00994 0.0183993 0) (1.00987 0.0194849 0) (1.00986 0.0206255 0) (1.00007 0.00193379 0) (1.00129 0.0053449 0) (1.00339 0.00763004 0) (1.00573 0.00869495 0) (1.00767 0.00906617 0) (1.00905 0.00928017 0) (1.01008 0.00948005 0) (1.01097 0.0095899 0) (1.01177 0.00958274 0) (1.01246 0.00951548 0) (1.01301 0.00944177 0) (1.01345 0.00937456 0) (1.01381 0.0093082 0) (1.01411 0.00924083 0) (1.01436 0.00917611 0) (1.01456 0.00911742 0) (1.01471 0.00906582 0) (1.01482 0.00902129 0) (1.0149 0.00898419 0) (1.01495 0.0089555 0) (1.01497 0.00893661 0) (1.01496 0.00892904 0) (1.01493 0.00893433 0) (1.01487 0.00895385 0) (1.0148 0.00898879 0) (1.0147 0.00904012 0) (1.01458 0.00910873 0) (1.01444 0.00919546 0) (1.01428 0.00930129 0) (1.0141 0.00942741 0) (1.0139 0.0095753 0) (1.01368 0.00974678 0) (1.01345 0.00994406 0) (1.0132 0.0101698 0) (1.01294 0.0104269 0) (1.01266 0.0107188 0) (1.01237 0.0110494 0) (1.01207 0.0114229 0) (1.01176 0.0118438 0) (1.01145 0.0123167 0) (1.01114 0.0128464 0) (1.01083 0.0134377 0) (1.01054 0.0140945 0) (1.01026 0.0148208 0) (1.01001 0.0156179 0) (1.0098 0.0164878 0) (1.00963 0.0174264 0) (1.00952 0.0184325 0) (1.00947 0.0194947 0) (1.00948 0.0206111 0) (1.00006 0.00179051 0) (1.00114 0.00498029 0) (1.00304 0.00720463 0) (1.0052 0.0083362 0) (1.00705 0.00878785 0) (1.0084 0.00903828 0) (1.00942 0.00925772 0) (1.01029 0.00939789 0) (1.01107 0.00942666 0) (1.01174 0.00938778 0) (1.01229 0.00933352 0) (1.01273 0.00928211 0) (1.01309 0.00923072 0) (1.01339 0.00917713 0) (1.01364 0.00912437 0) (1.01383 0.00907603 0) (1.01399 0.00903368 0) (1.0141 0.00899762 0) (1.01418 0.00896832 0) (1.01423 0.00894686 0) (1.01425 0.00893475 0) (1.01424 0.00893368 0) (1.01421 0.00894528 0) (1.01416 0.008971 0) (1.01409 0.0090121 0) (1.01399 0.00906959 0) (1.01388 0.00914436 0) (1.01374 0.00923725 0) (1.01359 0.00934924 0) (1.01341 0.00948148 0) (1.01322 0.00963543 0) (1.01301 0.00981289 0) (1.01278 0.010016 0) (1.01254 0.0102474 0) (1.01229 0.0105099 0) (1.01202 0.0108068 0) (1.01175 0.011142 0) (1.01146 0.0115193 0) (1.01117 0.0119431 0) (1.01088 0.0124177 0) (1.01059 0.0129477 0) (1.0103 0.0135372 0) (1.01003 0.0141899 0) (1.00978 0.0149092 0) (1.00956 0.015696 0) (1.00938 0.0165518 0) (1.00924 0.0174727 0) (1.00915 0.0184578 0) (1.00912 0.0194968 0) (1.00915 0.0205891 0) (1.00005 0.00166053 0) (1.00102 0.00464525 0) (1.00272 0.00680098 0) (1.00471 0.00798278 0) (1.00647 0.00850857 0) (1.00779 0.00879799 0) (1.0088 0.00903723 0) (1.00964 0.00920457 0) (1.0104 0.0092673 0) (1.01106 0.00925714 0) (1.01161 0.00922316 0) (1.01205 0.00918777 0) (1.01241 0.00915129 0) (1.0127 0.0091116 0) (1.01295 0.00907107 0) (1.01315 0.00903336 0) (1.0133 0.00900046 0) (1.01341 0.00897303 0) (1.01349 0.00895169 0) (1.01354 0.0089376 0) (1.01357 0.00893241 0) (1.01356 0.00893794 0) (1.01354 0.00895594 0) (1.01349 0.00898795 0) (1.01342 0.00903528 0) (1.01332 0.00909897 0) (1.01321 0.00917992 0) (1.01308 0.00927897 0) (1.01293 0.00939708 0) (1.01276 0.00953538 0) (1.01258 0.00969531 0) (1.01237 0.00987861 0) (1.01216 0.0100874 0) (1.01193 0.0103241 0) (1.01168 0.0105917 0) (1.01143 0.0108933 0) (1.01117 0.0112325 0) (1.0109 0.0116132 0) (1.01062 0.0120393 0) (1.01035 0.0125151 0) (1.01008 0.0130445 0) (1.00982 0.0136315 0) (1.00957 0.0142792 0) (1.00935 0.0149907 0) (1.00915 0.0157664 0) (1.009 0.0166076 0) (1.00888 0.0175107 0) (1.00882 0.0184747 0) (1.00881 0.0194905 0) (1.00887 0.0205585 0) (1.00005 0.0015424 0) (1.00091 0.00433736 0) (1.00244 0.00641921 0) (1.00426 0.00763641 0) (1.00593 0.00822898 0) (1.00722 0.00855895 0) (1.00821 0.00881872 0) (1.00903 0.00901062 0) (1.00977 0.00910506 0) (1.01042 0.00912358 0) (1.01096 0.00911063 0) (1.0114 0.00909156 0) (1.01175 0.00906995 0) (1.01205 0.00904422 0) (1.01229 0.00901617 0) (1.01249 0.00898933 0) (1.01264 0.00896609 0) (1.01276 0.00894745 0) (1.01284 0.0089342 0) (1.01289 0.00892763 0) (1.01292 0.00892948 0) (1.01292 0.00894172 0) (1.01289 0.00896621 0) (1.01284 0.00900458 0) (1.01278 0.00905819 0) (1.01269 0.00912812 0) (1.01258 0.00921526 0) (1.01245 0.00932046 0) (1.01231 0.00944464 0) (1.01215 0.00958893 0) (1.01197 0.00975471 0) (1.01178 0.00994369 0) (1.01157 0.0101579 0) (1.01135 0.0103998 0) (1.01112 0.0106722 0) (1.01087 0.010978 0) (1.01063 0.0113208 0) (1.01037 0.0117043 0) (1.01012 0.0121321 0) (1.00986 0.0126082 0) (1.00961 0.0131363 0) (1.00938 0.01372 0) (1.00915 0.014362 0) (1.00896 0.0150648 0) (1.00879 0.0158289 0) (1.00865 0.016655 0) (1.00857 0.0175397 0) (1.00853 0.0184824 0) (1.00855 0.0194749 0) (1.00863 0.0205184 0) (1.00004 0.00143484 0) (1.00081 0.00405434 0) (1.00219 0.00605913 0) (1.00386 0.00729861 0) (1.00543 0.00794994 0) (1.00668 0.00832095 0) (1.00765 0.00860219 0) (1.00846 0.00881661 0) (1.00918 0.00894044 0) (1.00981 0.00898719 0) (1.01034 0.00899589 0) (1.01077 0.0089935 0) (1.01113 0.00898674 0) (1.01143 0.00897499 0) (1.01167 0.00895959 0) (1.01187 0.00894388 0) (1.01202 0.00893049 0) (1.01214 0.0089208 0) (1.01222 0.00891579 0) (1.01227 0.00891685 0) (1.0123 0.00892587 0) (1.0123 0.00894491 0) (1.01228 0.00897597 0) (1.01223 0.00902076 0) (1.01217 0.0090807 0) (1.01209 0.00915688 0) (1.01198 0.00925022 0) (1.01186 0.00936153 0) (1.01172 0.00949174 0) (1.01157 0.00964191 0) (1.0114 0.00981341 0) (1.01121 0.0100079 0) (1.01101 0.0102273 0) (1.0108 0.0104741 0) (1.01058 0.0107508 0) (1.01036 0.0110605 0) (1.01012 0.0114065 0) (1.00989 0.0117921 0) (1.00965 0.012221 0) (1.00941 0.0126968 0) (1.00919 0.0132228 0) (1.00897 0.0138024 0) (1.00877 0.0144378 0) (1.0086 0.0151313 0) (1.00846 0.015883 0) (1.00835 0.0166934 0) (1.00829 0.0175594 0) (1.00828 0.0184805 0) (1.00832 0.0194493 0) (1.00842 0.0204677 0) (1.00004 0.00133677 0) (1.00072 0.00379404 0) (1.00197 0.00572027 0) (1.00349 0.00697067 0) (1.00496 0.00767243 0) (1.00617 0.00808392 0) (1.00712 0.00838761 0) (1.00791 0.00862301 0) (1.00861 0.00877394 0) (1.00923 0.00884814 0) (1.00975 0.00887889 0) (1.01018 0.00889358 0) (1.01054 0.00890171 0) (1.01083 0.00890392 0) (1.01107 0.00890132 0) (1.01127 0.00889694 0) (1.01142 0.0088936 0) (1.01154 0.008893 0) (1.01162 0.00889635 0) (1.01168 0.00890518 0) (1.01171 0.00892146 0) (1.01171 0.0089474 0) (1.01169 0.0089851 0) (1.01165 0.00903637 0) (1.01159 0.00910266 0) (1.01151 0.00918512 0) (1.01142 0.00928463 0) (1.0113 0.00940202 0) (1.01117 0.00953817 0) (1.01102 0.00969412 0) (1.01086 0.00987118 0) (1.01068 0.010071 0) (1.01049 0.0102954 0) (1.01029 0.0105467 0) (1.01009 0.0108274 0) (1.00987 0.0111405 0) (1.00965 0.011489 0) (1.00943 0.0118763 0) (1.00921 0.0123056 0) (1.009 0.0127803 0) (1.00879 0.0133036 0) (1.0086 0.0138782 0) (1.00843 0.0145063 0) (1.00828 0.0151896 0) (1.00816 0.0159282 0) (1.00808 0.0167224 0) (1.00804 0.0175692 0) (1.00806 0.0184683 0) (1.00812 0.019413 0) (1.00825 0.0204056 0) (1.00003 0.00124722 0) (1.00065 0.00355448 0) (1.00177 0.00540199 0) (1.00316 0.00665363 0) (1.00454 0.00739755 0) (1.0057 0.00784797 0) (1.00663 0.00817489 0) (1.0074 0.00843022 0) (1.00807 0.00860608 0) (1.00868 0.00870667 0) (1.00919 0.00875967 0) (1.00962 0.00879181 0) (1.00997 0.0088149 0) (1.01026 0.00883103 0) (1.0105 0.0088413 0) (1.0107 0.00884845 0) (1.01085 0.00885535 0) (1.01097 0.00886398 0) (1.01106 0.00887582 0) (1.01112 0.00889251 0) (1.01115 0.00891616 0) (1.01115 0.00894907 0) (1.01114 0.00899347 0) (1.0111 0.00905126 0) (1.01105 0.00912393 0) (1.01097 0.00921265 0) (1.01088 0.00931831 0) (1.01077 0.00944172 0) (1.01064 0.00958372 0) (1.0105 0.00974532 0) (1.01035 0.00992777 0) (1.01018 0.0101326 0) (1.01 0.0103617 0) (1.00982 0.0106172 0) (1.00962 0.0109016 0) (1.00942 0.0112176 0) (1.00922 0.0115682 0) (1.00901 0.0119564 0) (1.00881 0.0123855 0) (1.00862 0.0128584 0) (1.00843 0.013378 0) (1.00826 0.0139469 0) (1.00811 0.0145669 0) (1.00799 0.0152393 0) (1.0079 0.0159641 0) (1.00784 0.0167415 0) (1.00783 0.0175686 0) (1.00787 0.0184452 0) (1.00796 0.0193652 0) (1.00811 0.0203311 0) (1.00003 0.00116535 0) (1.00058 0.00333385 0) (1.00159 0.00510351 0) (1.00286 0.0063483 0) (1.00414 0.00712638 0) (1.00525 0.00761333 0) (1.00616 0.00796398 0) (1.00691 0.0082385 0) (1.00757 0.00843735 0) (1.00815 0.00856309 0) (1.00866 0.00863827 0) (1.00908 0.00868819 0) (1.00943 0.00872634 0) (1.00972 0.00875635 0) (1.00996 0.00877955 0) (1.01015 0.00879837 0) (1.01031 0.00881567 0) (1.01043 0.00883368 0) (1.01052 0.0088541 0) (1.01058 0.00887875 0) (1.01061 0.00890984 0) (1.01062 0.00894981 0) (1.01061 0.00900096 0) (1.01058 0.00906529 0) (1.01053 0.00914436 0) (1.01046 0.00923932 0) (1.01037 0.00935109 0) (1.01027 0.00948044 0) (1.01015 0.00962818 0) (1.01001 0.00979527 0) (1.00987 0.00998291 0) (1.00971 0.0101926 0) (1.00954 0.0104261 0) (1.00937 0.0106854 0) (1.00919 0.010973 0) (1.009 0.0112914 0) (1.00881 0.0116435 0) (1.00863 0.0120321 0) (1.00844 0.0124602 0) (1.00827 0.0129306 0) (1.00811 0.0134458 0) (1.00796 0.0140082 0) (1.00783 0.0146192 0) (1.00773 0.01528 0) (1.00766 0.0159904 0) (1.00764 0.0167503 0) (1.00765 0.0175571 0) (1.00771 0.0184107 0) (1.00782 0.0193053 0) (1.008 0.0202436 0) (1.00003 0.0010904 0) (1.00052 0.00313049 0) (1.00143 0.00482391 0) (1.00259 0.00605525 0) (1.00378 0.00685997 0) (1.00484 0.00738038 0) (1.00571 0.00775485 0) (1.00645 0.00804807 0) (1.00709 0.00826823 0) (1.00765 0.00841773 0) (1.00815 0.00851481 0) (1.00857 0.00858274 0) (1.00891 0.00863608 0) (1.0092 0.00867994 0) (1.00944 0.00871605 0) (1.00963 0.00874665 0) (1.00979 0.0087745 0) (1.00991 0.008802 0) (1.01 0.00883111 0) (1.01006 0.0088638 0) (1.0101 0.00890241 0) (1.01011 0.00894948 0) (1.0101 0.00900743 0) (1.01008 0.00907832 0) (1.01003 0.00916377 0) (1.00997 0.00926496 0) (1.00988 0.00938277 0) (1.00979 0.00951797 0) (1.00968 0.00967132 0) (1.00955 0.00984374 0) (1.00942 0.0100363 0) (1.00927 0.0102506 0) (1.00911 0.0104881 0) (1.00895 0.0107509 0) (1.00878 0.0110412 0) (1.00861 0.0113616 0) (1.00844 0.0117146 0) (1.00827 0.0121029 0) (1.0081 0.0125293 0) (1.00795 0.0129965 0) (1.00781 0.0135065 0) (1.00768 0.0140616 0) (1.00758 0.0146628 0) (1.0075 0.0153113 0) (1.00746 0.0160064 0) (1.00746 0.0167483 0) (1.00749 0.0175343 0) (1.00758 0.0183641 0) (1.00771 0.0192327 0) (1.00791 0.0201424 0) (1.00002 0.00102171 0) (1.00047 0.00294291 0) (1.00128 0.00456224 0) (1.00234 0.00577482 0) (1.00345 0.00659928 0) (1.00445 0.00714963 0) (1.0053 0.00754753 0) (1.00601 0.0078591 0) (1.00663 0.00809911 0) (1.00718 0.00827096 0) (1.00767 0.00838945 0) (1.00808 0.00847549 0) (1.00842 0.00854414 0) (1.00871 0.00860182 0) (1.00894 0.00865081 0) (1.00914 0.00869325 0) (1.00929 0.00873178 0) (1.00942 0.0087689 0) (1.00951 0.00880677 0) (1.00957 0.00884757 0) (1.00961 0.00889376 0) (1.00963 0.00894797 0) (1.00962 0.00901273 0) (1.0096 0.00909019 0) (1.00956 0.009182 0) (1.0095 0.00928936 0) (1.00942 0.00941315 0) (1.00933 0.00955409 0) (1.00923 0.0097129 0) (1.00912 0.00989044 0) (1.00899 0.0100878 0) (1.00885 0.0103063 0) (1.00871 0.0105475 0) (1.00856 0.0108134 0) (1.0084 0.011106 0) (1.00824 0.0114277 0) (1.00809 0.011781 0) (1.00794 0.0121684 0) (1.00779 0.0125925 0) (1.00766 0.0130556 0) (1.00753 0.0135597 0) (1.00743 0.0141066 0) (1.00735 0.0146973 0) (1.0073 0.0153326 0) (1.00728 0.016012 0) (1.0073 0.0167351 0) (1.00736 0.0174996 0) (1.00747 0.0183051 0) (1.00763 0.0191468 0) (1.00785 0.0200269 0) (1.00002 0.000958683 0) (1.00042 0.00276975 0) (1.00116 0.00431751 0) (1.00212 0.00550719 0) (1.00315 0.00634513 0) (1.00409 0.00692162 0) (1.00491 0.00734215 0) (1.0056 0.00767172 0) (1.0062 0.00793036 0) (1.00674 0.00812316 0) (1.00721 0.00826237 0) (1.00761 0.00836651 0) (1.00795 0.00845057 0) (1.00823 0.00852204 0) (1.00847 0.00858387 0) (1.00866 0.00863817 0) (1.00882 0.00868746 0) (1.00894 0.00873428 0) (1.00904 0.00878099 0) (1.0091 0.00882995 0) (1.00914 0.00888375 0) (1.00916 0.00894514 0) (1.00916 0.00901673 0) (1.00915 0.00910074 0) (1.00911 0.00919888 0) (1.00906 0.00931235 0) (1.00899 0.00944202 0) (1.00891 0.00958856 0) (1.00881 0.00975267 0) (1.0087 0.00993513 0) (1.00859 0.010137 0) (1.00846 0.0103594 0) (1.00833 0.010604 0) (1.00819 0.0108725 0) (1.00805 0.0111669 0) (1.00791 0.0114894 0) (1.00777 0.0118424 0) (1.00763 0.0122283 0) (1.0075 0.0126492 0) (1.00739 0.0131075 0) (1.00729 0.0136049 0) (1.00721 0.0141429 0) (1.00715 0.0147223 0) (1.00712 0.0153438 0) (1.00713 0.0160066 0) (1.00717 0.0167103 0) (1.00725 0.0174526 0) (1.00738 0.0182332 0) (1.00756 0.0190473 0) (1.0078 0.0198968 0) (1.00002 0.000900795 0) (1.00038 0.0026098 0) (1.00104 0.00408875 0) (1.00192 0.00525236 0) (1.00287 0.00609822 0) (1.00376 0.00669696 0) (1.00454 0.00713889 0) (1.00521 0.00748605 0) (1.00579 0.00776227 0) (1.00631 0.0079747 0) (1.00677 0.00813382 0) (1.00717 0.00825589 0) (1.0075 0.00835539 0) (1.00778 0.00844064 0) (1.00801 0.00851523 0) (1.00821 0.00858138 0) (1.00836 0.00864148 0) (1.00849 0.00869808 0) (1.00859 0.00875369 0) (1.00865 0.00881085 0) (1.0087 0.00887229 0) (1.00872 0.00894086 0) (1.00873 0.00901927 0) (1.00871 0.00910981 0) (1.00868 0.00921422 0) (1.00864 0.00933372 0) (1.00857 0.00946915 0) (1.0085 0.00962116 0) (1.00841 0.00979037 0) (1.00831 0.00997751 0) (1.00821 0.0101835 0) (1.00809 0.0104096 0) (1.00797 0.0106571 0) (1.00784 0.0109278 0) (1.00772 0.0112235 0) (1.00759 0.0115463 0) (1.00747 0.0118984 0) (1.00735 0.0122819 0) (1.00724 0.0126991 0) (1.00715 0.0131518 0) (1.00707 0.0136417 0) (1.00701 0.01417 0) (1.00697 0.0147374 0) (1.00697 0.0153443 0) (1.00699 0.0159898 0) (1.00706 0.0166735 0) (1.00716 0.0173931 0) (1.00732 0.0181479 0) (1.00752 0.0189336 0) (1.00778 0.0197517 0) (1.00002 0.000847569 0) (1.00034 0.00246194 0) (1.00094 0.00387498 0) (1.00174 0.00501023 0) (1.00261 0.00585914 0) (1.00345 0.00647625 0) (1.00419 0.00693802 0) (1.00484 0.00730222 0) (1.0054 0.00759512 0) (1.00591 0.00782592 0) (1.00635 0.00800406 0) (1.00674 0.00814374 0) (1.00707 0.00825867 0) (1.00735 0.00835766 0) (1.00758 0.00844493 0) (1.00777 0.00852289 0) (1.00793 0.00859381 0) (1.00806 0.00866024 0) (1.00815 0.00872479 0) (1.00823 0.00879017 0) (1.00827 0.00885925 0) (1.0083 0.008935 0) (1.00831 0.0090202 0) (1.0083 0.00911722 0) (1.00828 0.00922783 0) (1.00824 0.00935326 0) (1.00818 0.00949432 0) (1.00811 0.00965162 0) (1.00803 0.00982572 0) (1.00795 0.0100173 0) (1.00785 0.0102272 0) (1.00774 0.0104565 0) (1.00763 0.0107066 0) (1.00752 0.010979 0) (1.00741 0.0112754 0) (1.0073 0.0115979 0) (1.00719 0.0119485 0) (1.00709 0.0123291 0) (1.007 0.0127417 0) (1.00693 0.0131881 0) (1.00687 0.0136697 0) (1.00683 0.0141876 0) (1.00682 0.0147423 0) (1.00683 0.0153338 0) (1.00688 0.0159614 0) (1.00697 0.0166244 0) (1.00709 0.0173205 0) (1.00727 0.0180491 0) (1.00749 0.0188057 0) (1.00777 0.0195915 0) (1.00002 0.000798579 0) (1.0003 0.00232517 0) (1.00085 0.0036753 0) (1.00157 0.00478056 0) (1.00238 0.00562834 0) (1.00316 0.00626006 0) (1.00387 0.00673984 0) (1.00449 0.00712037 0) (1.00504 0.00742914 0) (1.00553 0.00767715 0) (1.00596 0.00787336 0) (1.00634 0.00803021 0) (1.00666 0.00816047 0) (1.00694 0.00827314 0) (1.00717 0.00837301 0) (1.00736 0.00846269 0) (1.00752 0.00854442 0) (1.00764 0.00862069 0) (1.00774 0.00869419 0) (1.00782 0.00876779 0) (1.00787 0.0088445 0) (1.0079 0.0089274 0) (1.00791 0.00901936 0) (1.00791 0.00912279 0) (1.00789 0.00923951 0) (1.00786 0.00937075 0) (1.00781 0.00951729 0) (1.00775 0.00967969 0) (1.00768 0.00985847 0) (1.0076 0.0100542 0) (1.00751 0.0102677 0) (1.00742 0.0104999 0) (1.00732 0.0107521 0) (1.00722 0.0110257 0) (1.00713 0.0113224 0) (1.00703 0.0116439 0) (1.00694 0.0119923 0) (1.00686 0.0123693 0) (1.00679 0.0127766 0) (1.00673 0.013216 0) (1.00669 0.0136886 0) (1.00667 0.0141953 0) (1.00668 0.0147364 0) (1.00672 0.0153119 0) (1.00679 0.015921 0) (1.00689 0.0165627 0) (1.00704 0.0172348 0) (1.00724 0.0179364 0) (1.00748 0.0186633 0) (1.00778 0.019416 0) (1.00001 0.000753444 0) (1.00027 0.00219857 0) (1.00076 0.00348881 0) (1.00142 0.00456305 0) (1.00217 0.00540612 0) (1.0029 0.00604894 0) (1.00357 0.0065447 0) (1.00417 0.00694069 0) (1.0047 0.00726452 0) (1.00517 0.00752869 0) (1.00559 0.007742 0) (1.00596 0.00791548 0) (1.00627 0.00806087 0) (1.00654 0.00818714 0) (1.00677 0.00829949 0) (1.00696 0.00840078 0) (1.00712 0.00849326 0) (1.00725 0.00857936 0) (1.00735 0.00866182 0) (1.00743 0.00874362 0) (1.00748 0.00882793 0) (1.00752 0.00891792 0) (1.00753 0.00901657 0) (1.00754 0.00912634 0) (1.00752 0.00924906 0) (1.0075 0.00938597 0) (1.00745 0.00953781 0) (1.0074 0.00970511 0) (1.00734 0.0098883 0) (1.00727 0.0100879 0) (1.0072 0.0103046 0) (1.00711 0.0105393 0) (1.00703 0.0107932 0) (1.00694 0.0110675 0) (1.00686 0.0113639 0) (1.00678 0.0116839 0) (1.00671 0.0120294 0) (1.00664 0.0124021 0) (1.00659 0.0128035 0) (1.00655 0.0132351 0) (1.00653 0.0136979 0) (1.00653 0.0141927 0) (1.00656 0.0147196 0) (1.00662 0.0152785 0) (1.00671 0.0158683 0) (1.00684 0.0164881 0) (1.007 0.0171356 0) (1.00722 0.0178097 0) (1.00748 0.0185064 0) (1.00779 0.0192255 0) (1.00001 0.000711818 0) (1.00025 0.00208131 0) (1.00069 0.00331465 0) (1.00129 0.00435733 0) (1.00197 0.00519272 0) (1.00266 0.00584335 0) (1.00329 0.00635296 0) (1.00386 0.00676337 0) (1.00437 0.00710147 0) (1.00482 0.00738081 0) (1.00523 0.00761026 0) (1.00559 0.00779974 0) (1.0059 0.00795997 0) (1.00617 0.0080997 0) (1.00639 0.0082244 0) (1.00658 0.00833718 0) (1.00674 0.00844033 0) (1.00687 0.0085362 0) (1.00697 0.00862758 0) (1.00705 0.00871755 0) (1.00711 0.0088094 0) (1.00715 0.00890642 0) (1.00717 0.00901168 0) (1.00718 0.00912767 0) (1.00717 0.00925626 0) (1.00715 0.00939868 0) (1.00712 0.00955564 0) (1.00708 0.0097276 0) (1.00702 0.00991494 0) (1.00696 0.0101181 0) (1.0069 0.0103376 0) (1.00683 0.0105744 0) (1.00676 0.0108295 0) (1.00669 0.0111041 0) (1.00662 0.0113995 0) (1.00655 0.0117175 0) (1.00649 0.0120595 0) (1.00645 0.0124271 0) (1.00641 0.0128219 0) (1.00639 0.013245 0) (1.00639 0.0136974 0) (1.00641 0.0141796 0) (1.00646 0.0146916 0) (1.00654 0.0152331 0) (1.00665 0.0158031 0) (1.00679 0.0164005 0) (1.00698 0.0170229 0) (1.00721 0.0176691 0) (1.00749 0.0183349 0) (1.00782 0.0190201 0) (1.00001 0.000673394 0) (1.00022 0.00197264 0) (1.00062 0.00315202 0) (1.00117 0.00416297 0) (1.00179 0.00498822 0) (1.00243 0.0056437 0) (1.00303 0.00616499 0) (1.00358 0.00658862 0) (1.00406 0.00694017 0) (1.0045 0.00723376 0) (1.0049 0.00747839 0) (1.00524 0.00768318 0) (1.00555 0.00785789 0) (1.00581 0.00801088 0) (1.00603 0.00814778 0) (1.00622 0.00827191 0) (1.00638 0.00838558 0) (1.00651 0.00849116 0) (1.00661 0.00859139 0) (1.0067 0.00868946 0) (1.00676 0.00878878 0) (1.0068 0.00889275 0) (1.00683 0.0090045 0) (1.00684 0.00912659 0) (1.00684 0.0092609 0) (1.00683 0.00940865 0) (1.0068 0.00957051 0) (1.00677 0.00974689 0) (1.00673 0.00993808 0) (1.00668 0.0101444 0) (1.00662 0.0103665 0) (1.00656 0.0106049 0) (1.0065 0.0108607 0) (1.00645 0.011135 0) (1.00639 0.011429 0) (1.00634 0.0117442 0) (1.0063 0.0120821 0) (1.00627 0.0124441 0) (1.00625 0.0128315 0) (1.00625 0.0132454 0) (1.00627 0.0136866 0) (1.00631 0.0141555 0) (1.00638 0.014652 0) (1.00647 0.0151757 0) (1.0066 0.0157253 0) (1.00677 0.0162997 0) (1.00697 0.0168966 0) (1.00722 0.0175144 0) (1.00751 0.0181492 0) (1.00785 0.0188001 0) (1.00001 0.000637893 0) (1.0002 0.00187186 0) (1.00056 0.00300014 0) (1.00106 0.00397953 0) (1.00163 0.00479266 0) (1.00222 0.0054503 0) (1.00279 0.00598113 0) (1.00331 0.0064167 0) (1.00378 0.00678081 0) (1.0042 0.00708775 0) (1.00458 0.00734666 0) (1.00492 0.00756603 0) (1.00521 0.00775475 0) (1.00547 0.00792076 0) (1.00569 0.00806967 0) (1.00588 0.00820496 0) (1.00604 0.00832902 0) (1.00617 0.00844417 0) (1.00627 0.00855317 0) (1.00636 0.00865925 0) (1.00642 0.00876593 0) (1.00647 0.00887673 0) (1.0065 0.00899485 0) (1.00652 0.00912289 0) (1.00653 0.00926275 0) (1.00652 0.00941562 0) (1.0065 0.00958215 0) (1.00648 0.00976267 0) (1.00644 0.00995741 0) (1.0064 0.0101666 0) (1.00636 0.0103908 0) (1.00631 0.0106304 0) (1.00627 0.0108865 0) (1.00622 0.0111599 0) (1.00618 0.0114519 0) (1.00615 0.0117637 0) (1.00612 0.0120968 0) (1.00611 0.0124525 0) (1.00611 0.0128319 0) (1.00612 0.0132359 0) (1.00616 0.0136653 0) (1.00622 0.0141203 0) (1.0063 0.0146007 0) (1.00642 0.0151059 0) (1.00657 0.0156347 0) (1.00675 0.0161858 0) (1.00697 0.0167567 0) (1.00723 0.0173459 0) (1.00753 0.0179494 0) (1.00789 0.0185659 0) (1.00001 0.000605062 0) (1.00018 0.00177835 0) (1.00051 0.00285831 0) (1.00096 0.00380653 0) (1.00149 0.00460598 0) (1.00203 0.00526341 0) (1.00256 0.00580172 0) (1.00306 0.00624785 0) (1.0035 0.00662358 0) (1.00391 0.00694299 0) (1.00428 0.00721528 0) (1.0046 0.00744847 0) (1.00489 0.0076507 0) (1.00515 0.0078294 0) (1.00536 0.00799009 0) (1.00555 0.00813635 0) (1.00571 0.00827061 0) (1.00584 0.0083952 0) (1.00595 0.00851284 0) (1.00603 0.00862681 0) (1.0061 0.00874074 0) (1.00616 0.00885822 0) (1.00619 0.00898255 0) (1.00622 0.00911637 0) (1.00623 0.00926158 0) (1.00623 0.00941935 0) (1.00622 0.00959029 0) (1.0062 0.00977467 0) (1.00618 0.00997262 0) (1.00615 0.0101843 0) (1.00612 0.0104101 0) (1.00608 0.0106506 0) (1.00605 0.0109063 0) (1.00602 0.0111784 0) (1.00599 0.0114678 0) (1.00597 0.0117757 0) (1.00596 0.0121034 0) (1.00596 0.0124521 0) (1.00598 0.0128228 0) (1.00601 0.0132163 0) (1.00607 0.0136333 0) (1.00614 0.0140738 0) (1.00625 0.0145375 0) (1.00638 0.0150237 0) (1.00654 0.0155313 0) (1.00674 0.0160586 0) (1.00697 0.0166034 0) (1.00725 0.0171637 0) (1.00757 0.0177358 0) (1.00793 0.0183181 0) (1.00001 0.000574676 0) (1.00016 0.00169153 0) (1.00046 0.00272584 0) (1.00087 0.00364348 0) (1.00135 0.00442805 0) (1.00186 0.00508321 0) (1.00236 0.00562702 0) (1.00282 0.0060823 0) (1.00325 0.00646866 0) (1.00364 0.00679967 0) (1.00399 0.00708448 0) (1.00431 0.00733072 0) (1.00459 0.00754589 0) (1.00484 0.0077369 0) (1.00505 0.00790911 0) (1.00524 0.0080661 0) (1.00539 0.00821035 0) (1.00553 0.00834418 0) (1.00564 0.0084703 0) (1.00573 0.00859202 0) (1.0058 0.00871304 0) (1.00586 0.00883705 0) (1.0059 0.00896741 0) (1.00593 0.00910682 0) (1.00595 0.00925716 0) (1.00595 0.00941959 0) (1.00595 0.00959466 0) (1.00595 0.00978258 0) (1.00593 0.00998339 0) (1.00591 0.0101972 0) (1.00589 0.0104243 0) (1.00587 0.010665 0) (1.00585 0.01092 0) (1.00583 0.0111901 0) (1.00582 0.0114763 0) (1.00581 0.0117797 0) (1.00582 0.0121014 0) (1.00583 0.0124424 0) (1.00587 0.0128038 0) (1.00592 0.0131863 0) (1.00599 0.0135902 0) (1.00608 0.0140156 0) (1.0062 0.0144622 0) (1.00635 0.0149291 0) (1.00653 0.015415 0) (1.00674 0.0159183 0) (1.00699 0.0164367 0) (1.00728 0.0169681 0) (1.0076 0.017509 0) (1.00798 0.0180573 0) (1.00001 0.000546527 0) (1.00015 0.00161087 0) (1.00041 0.00260209 0) (1.00079 0.0034899 0) (1.00123 0.00425869 0) (1.0017 0.00490981 0) (1.00216 0.0054573 0) (1.0026 0.0059203 0) (1.00301 0.00631626 0) (1.00338 0.00665799 0) (1.00372 0.00695445 0) (1.00403 0.00721296 0) (1.00431 0.00744046 0) (1.00455 0.00764335 0) (1.00476 0.00782676 0) (1.00494 0.00799421 0) (1.0051 0.00814822 0) (1.00523 0.00829107 0) (1.00534 0.00842548 0) (1.00543 0.00855477 0) (1.00551 0.0086827 0) (1.00557 0.00881306 0) (1.00562 0.00894925 0) (1.00565 0.00909401 0) (1.00568 0.00924924 0) (1.00569 0.00941606 0) (1.0057 0.00959497 0) (1.0057 0.0097861 0) (1.0057 0.00998942 0) (1.00569 0.0102049 0) (1.00568 0.0104328 0) (1.00567 0.0106734 0) (1.00566 0.0109271 0) (1.00565 0.0111948 0) (1.00566 0.0114772 0) (1.00567 0.0117755 0) (1.00569 0.0120905 0) (1.00572 0.0124233 0) (1.00577 0.0127748 0) (1.00583 0.0131456 0) (1.00592 0.0135359 0) (1.00603 0.0139458 0) (1.00617 0.0143747 0) (1.00633 0.0148219 0) (1.00652 0.0152858 0) (1.00675 0.0157649 0) (1.00701 0.0162569 0) (1.00731 0.0167595 0) (1.00764 0.0172693 0) (1.00802 0.017784 0) (1.00001 0.00052043 0) (1.00013 0.00153589 0) (1.00038 0.00248648 0) (1.00071 0.0033453 0) (1.00112 0.0040977 0) (1.00155 0.00474325 0) (1.00199 0.00529273 0) (1.0024 0.00576205 0) (1.00279 0.00616654 0) (1.00315 0.0065181 0) (1.00347 0.00682538 0) (1.00377 0.00709537 0) (1.00403 0.00733455 0) (1.00427 0.00754884 0) (1.00448 0.00774308 0) (1.00466 0.0079207 0) (1.00481 0.00808419 0) (1.00495 0.00823582 0) (1.00506 0.0083783 0) (1.00516 0.00851495 0) (1.00524 0.00864959 0) (1.0053 0.00878607 0) (1.00535 0.00892787 0) (1.0054 0.00907774 0) (1.00543 0.0092376 0) (1.00545 0.00940851 0) (1.00547 0.00959094 0) (1.00547 0.00978493 0) (1.00548 0.00999038 0) (1.00548 0.0102072 0) (1.00548 0.0104354 0) (1.00548 0.0106753 0) (1.00549 0.0109273 0) (1.0055 0.0111919 0) (1.00551 0.0114701 0) (1.00553 0.0117626 0) (1.00557 0.0120704 0) (1.00562 0.0123945 0) (1.00568 0.0127355 0) (1.00576 0.013094 0) (1.00587 0.0134702 0) (1.00599 0.0138641 0) (1.00614 0.0142751 0) (1.00632 0.0147022 0) (1.00652 0.015144 0) (1.00676 0.0155988 0) (1.00703 0.0160644 0) (1.00734 0.0165384 0) (1.00768 0.0170174 0) (1.00807 0.0174991 0) (1.00001 0.000496214 0) (1.00012 0.00146614 0) (1.00034 0.00237843 0) (1.00065 0.00320922 0) (1.00102 0.00394481 0) (1.00142 0.00458353 0) (1.00182 0.00513348 0) (1.00221 0.00560775 0) (1.00258 0.00601968 0) (1.00292 0.00638016 0) (1.00324 0.00669741 0) (1.00352 0.00697812 0) (1.00378 0.0072283 0) (1.00401 0.00745347 0) (1.00421 0.00765813 0) (1.00439 0.00784558 0) (1.00454 0.00801825 0) (1.00468 0.00817839 0) (1.00479 0.00832867 0) (1.00489 0.00847245 0) (1.00498 0.00861356 0) (1.00505 0.00875592 0) (1.0051 0.00890306 0) (1.00515 0.00905778 0) (1.00519 0.00922197 0) (1.00522 0.00939668 0) (1.00524 0.00958229 0) (1.00526 0.00977878 0) (1.00528 0.00998595 0) (1.00529 0.0102036 0) (1.0053 0.0104318 0) (1.00531 0.0106705 0) (1.00533 0.0109202 0) (1.00535 0.0111813 0) (1.00538 0.0114546 0) (1.00542 0.0117408 0) (1.00547 0.0120409 0) (1.00553 0.0123556 0) (1.00561 0.0126856 0) (1.0057 0.0130314 0) (1.00582 0.0133931 0) (1.00596 0.0137706 0) (1.00612 0.0141632 0) (1.00631 0.01457 0) (1.00653 0.0149896 0) (1.00678 0.0154202 0) (1.00706 0.0158594 0) (1.00737 0.0163051 0) (1.00772 0.0167539 0) (1.00811 0.0172033 0) (1.00001 0.000473726 0) (1.00011 0.00140122 0) (1.00031 0.00227742 0) (1.00059 0.00308116 0) (1.00093 0.00379975 0) (1.0013 0.00443059 0) (1.00167 0.00497963 0) (1.00204 0.00545755 0) (1.00239 0.00587583 0) (1.00271 0.00624432 0) (1.00301 0.00657072 0) (1.00329 0.00686135 0) (1.00354 0.00712186 0) (1.00376 0.00735733 0) (1.00396 0.00757196 0) (1.00414 0.00776886 0) (1.00429 0.00795038 0) (1.00442 0.00811871 0) (1.00454 0.00827651 0) (1.00464 0.00842714 0) (1.00473 0.00857445 0) (1.0048 0.00872243 0) (1.00487 0.00887465 0) (1.00492 0.00903392 0) (1.00497 0.00920213 0) (1.005 0.0093803 0) (1.00503 0.00956874 0) (1.00506 0.00976734 0) (1.00509 0.00997583 0) (1.00511 0.0101939 0) (1.00513 0.0104215 0) (1.00516 0.0106586 0) (1.00518 0.0109055 0) (1.00522 0.0111626 0) (1.00526 0.0114305 0) (1.00531 0.0117099 0) (1.00537 0.0120017 0) (1.00545 0.0123065 0) (1.00554 0.012625 0) (1.00565 0.0129576 0) (1.00578 0.0133044 0) (1.00594 0.0136651 0) (1.00611 0.0140393 0) (1.00631 0.0144257 0) (1.00654 0.0148229 0) (1.0068 0.0152293 0) (1.00709 0.0156425 0) (1.00741 0.0160602 0) (1.00776 0.0164794 0) (1.00816 0.0168973 0) (1 0.000452823 0) (1.0001 0.00134075 0) (1.00028 0.00218296 0) (1.00053 0.00296068 0) (1.00084 0.0036622 0) (1.00118 0.00428432 0) (1.00153 0.00483123 0) (1.00188 0.00531157 0) (1.00221 0.00573515 0) (1.00252 0.00611072 0) (1.0028 0.00644542 0) (1.00307 0.00674519 0) (1.00331 0.00701532 0) (1.00353 0.00726051 0) (1.00372 0.00748462 0) (1.0039 0.00769056 0) (1.00405 0.00788055 0) (1.00418 0.00805674 0) (1.0043 0.00822175 0) (1.00441 0.00837891 0) (1.0045 0.00853214 0) (1.00458 0.00868543 0) (1.00464 0.00884242 0) (1.0047 0.00900593 0) (1.00476 0.00917783 0) (1.0048 0.0093591 0) (1.00484 0.00954999 0) (1.00488 0.00975032 0) (1.00491 0.00995971 0) (1.00494 0.0101778 0) (1.00498 0.0104044 0) (1.00501 0.0106393 0) (1.00505 0.0108829 0) (1.0051 0.0111354 0) (1.00515 0.0113974 0) (1.00522 0.0116695 0) (1.00529 0.0119525 0) (1.00538 0.012247 0) (1.00549 0.0125535 0) (1.00561 0.0128726 0) (1.00576 0.0132041 0) (1.00592 0.0135479 0) (1.00611 0.0139033 0) (1.00632 0.0142692 0) (1.00656 0.0146442 0) (1.00682 0.0150266 0) (1.00712 0.0154141 0) (1.00745 0.0158044 0) (1.0078 0.0161946 0) (1.0082 0.016582 0) (1 0.000433378 0) (1.00009 0.00128439 0) (1.00025 0.00209458 0) (1.00049 0.00284733 0) (1.00077 0.00353186 0) (1.00108 0.00414457 0) (1.00141 0.00468828 0) (1.00173 0.00516991 0) (1.00204 0.00559773 0) (1.00233 0.00597946 0) (1.00261 0.00632163 0) (1.00286 0.00662977 0) (1.0031 0.00690881 0) (1.00331 0.00716309 0) (1.0035 0.00739615 0) (1.00367 0.00761068 0) (1.00382 0.00780874 0) (1.00396 0.00799242 0) (1.00408 0.00816428 0) (1.00418 0.00832765 0) (1.00428 0.00848646 0) (1.00436 0.00864475 0) (1.00443 0.00880618 0) (1.0045 0.00897358 0) (1.00456 0.00914883 0) (1.00461 0.00933284 0) (1.00466 0.00952579 0) (1.0047 0.00972744 0) (1.00475 0.0099373 0) (1.00479 0.0101549 0) (1.00483 0.01038 0) (1.00488 0.0106124 0) (1.00493 0.0108521 0) (1.00499 0.0110996 0) (1.00506 0.0113552 0) (1.00513 0.0116195 0) (1.00522 0.0118932 0) (1.00533 0.0121769 0) (1.00544 0.0124711 0) (1.00558 0.0127762 0) (1.00573 0.0130922 0) (1.00591 0.0134189 0) (1.00611 0.0137554 0) (1.00633 0.0141009 0) (1.00658 0.0144538 0) (1.00685 0.0148124 0) (1.00715 0.0151747 0) (1.00748 0.0155382 0) (1.00784 0.0159002 0) (1.00823 0.0162582 0) (1 0.000415271 0) (1.00008 0.00123181 0) (1.00023 0.00201185 0) (1.00044 0.00274066 0) (1.0007 0.00340837 0) (1.00099 0.00401116 0) (1.00129 0.00455075 0) (1.00159 0.00503261 0) (1.00188 0.00546366 0) (1.00216 0.00585065 0) (1.00243 0.00619945 0) (1.00267 0.00651518 0) (1.0029 0.00680241 0) (1.0031 0.00706513 0) (1.00329 0.00730659 0) (1.00346 0.00752922 0) (1.00361 0.00773493 0) (1.00374 0.00792569 0) (1.00387 0.00810402 0) (1.00397 0.00827324 0) (1.00407 0.00843728 0) (1.00416 0.00860022 0) (1.00424 0.00876573 0) (1.00431 0.00893667 0) (1.00437 0.00911488 0) (1.00443 0.00930124 0) (1.00449 0.00949586 0) (1.00454 0.0096984 0) (1.00459 0.0099083 0) (1.00465 0.010125 0) (1.0047 0.0103481 0) (1.00476 0.0105774 0) (1.00482 0.0108129 0) (1.00489 0.0110548 0) (1.00497 0.0113035 0) (1.00506 0.0115596 0) (1.00516 0.0118236 0) (1.00528 0.0120961 0) (1.00541 0.0123777 0) (1.00555 0.0126686 0) (1.00572 0.0129689 0) (1.00591 0.0132782 0) (1.00611 0.0135959 0) (1.00634 0.013921 0) (1.0066 0.014252 0) (1.00688 0.0145873 0) (1.00718 0.0149248 0) (1.00751 0.0152622 0) (1.00787 0.015597 0) (1.00826 0.0159267 0) (1 0.000398394 0) (1.00007 0.00118272 0) (1.00021 0.00193437 0) (1.0004 0.00264027 0) (1.00064 0.00329141 0) (1.0009 0.00388389 0) (1.00118 0.00441856 0) (1.00146 0.00489968 0) (1.00174 0.00533301 0) (1.00201 0.00572435 0) (1.00226 0.00607895 0) (1.00249 0.00640149 0) (1.00271 0.00669618 0) (1.00291 0.00696669 0) (1.00309 0.00721597 0) (1.00326 0.00744618 0) (1.00341 0.00765907 0) (1.00354 0.00785648 0) (1.00367 0.00804088 0) (1.00378 0.00821556 0) (1.00388 0.00838446 0) (1.00397 0.00855167 0) (1.00405 0.00872089 0) (1.00413 0.00889498 0) (1.0042 0.00907577 0) (1.00427 0.00926407 0) (1.00433 0.00945994 0) (1.00439 0.00966294 0) (1.00446 0.00987244 0) (1.00452 0.0100878 0) (1.00458 0.0103085 0) (1.00465 0.0105343 0) (1.00472 0.010765 0) (1.00481 0.0110009 0) (1.0049 0.0112423 0) (1.005 0.0114897 0) (1.00511 0.0117436 0) (1.00524 0.0120046 0) (1.00538 0.0122732 0) (1.00553 0.0125497 0) (1.00571 0.0128341 0) (1.00591 0.013126 0) (1.00612 0.013425 0) (1.00636 0.0137298 0) (1.00662 0.0140393 0) (1.0069 0.0143516 0) (1.00721 0.014665 0) (1.00755 0.0149771 0) (1.0079 0.0152857 0) (1.00829 0.0155882 0) (1 0.000382647 0) (1.00007 0.00113685 0) (1.00019 0.00186174 0) (1.00037 0.00254573 0) (1.00058 0.00318063 0) (1.00083 0.00376251 0) (1.00109 0.00429158 0) (1.00135 0.0047711 0) (1.00161 0.00520579 0) (1.00186 0.00560061 0) (1.0021 0.0059602 0) (1.00232 0.00628877 0) (1.00253 0.0065902 0) (1.00273 0.00686782 0) (1.00291 0.0071243 0) (1.00307 0.00736155 0) (1.00322 0.00758113 0) (1.00335 0.00778474 0) (1.00348 0.00797477 0) (1.00359 0.0081545 0) (1.0037 0.00832784 0) (1.00379 0.00849892 0) (1.00388 0.00867145 0) (1.00396 0.00884829 0) (1.00404 0.00903124 0) (1.00412 0.00922108 0) (1.00419 0.00941777 0) (1.00426 0.0096208 0) (1.00433 0.00982945 0) (1.0044 0.010043 0) (1.00447 0.0102608 0) (1.00455 0.0104826 0) (1.00464 0.0107082 0) (1.00473 0.0109376 0) (1.00483 0.0111713 0) (1.00494 0.0114096 0) (1.00506 0.0116531 0) (1.0052 0.0119023 0) (1.00535 0.0121577 0) (1.00552 0.0124196 0) (1.00571 0.012688 0) (1.00591 0.0129627 0) (1.00613 0.0132429 0) (1.00638 0.0135278 0) (1.00664 0.0138161 0) (1.00693 0.014106 0) (1.00724 0.0143959 0) (1.00757 0.0146836 0) (1.00793 0.014967 0) (1.00831 0.0152434 0) (1 0.000367936 0) (1.00006 0.00109393 0) (1.00017 0.0017936 0) (1.00033 0.00245667 0) (1.00053 0.00307568 0) (1.00076 0.00364678 0) (1.001 0.00416968 0) (1.00124 0.0046468 0) (1.00149 0.005082 0) (1.00172 0.00547946 0) (1.00195 0.00584322 0) (1.00217 0.00617705 0) (1.00237 0.00648448 0) (1.00256 0.00676854 0) (1.00273 0.0070316 0) (1.00289 0.00727532 0) (1.00304 0.00750106 0) (1.00318 0.00771039 0) (1.0033 0.0079056 0) (1.00342 0.00808992 0) (1.00353 0.00826728 0) (1.00363 0.0084418 0) (1.00372 0.00861723 0) (1.00381 0.0087964 0) (1.00389 0.00898109 0) (1.00397 0.00917203 0) (1.00405 0.00936911 0) (1.00413 0.00957173 0) (1.00421 0.00977909 0) (1.00429 0.00999037 0) (1.00438 0.0102049 0) (1.00446 0.0104223 0) (1.00456 0.0106422 0) (1.00466 0.0108649 0) (1.00477 0.0110904 0) (1.00489 0.0113193 0) (1.00503 0.011552 0) (1.00517 0.0117892 0) (1.00533 0.0120312 0) (1.00551 0.0122784 0) (1.00571 0.0125309 0) (1.00592 0.0127883 0) (1.00615 0.0130501 0) (1.0064 0.0133153 0) (1.00666 0.0135828 0) (1.00696 0.013851 0) (1.00727 0.0141181 0) (1.0076 0.0143823 0) (1.00795 0.0146415 0) (1.00833 0.0148932 0) (1 0.000354175 0) (1.00006 0.00105373 0) (1.00016 0.00172961 0) (1.0003 0.00237269 0) (1.00049 0.00297621 0) (1.00069 0.00353642 0) (1.00092 0.00405266 0) (1.00115 0.00452669 0) (1.00137 0.0049616 0) (1.0016 0.00536088 0) (1.00182 0.00572802 0) (1.00202 0.00606636 0) (1.00222 0.00637906 0) (1.0024 0.00666886 0) (1.00257 0.00693785 0) (1.00273 0.00718746 0) (1.00288 0.00741882 0) (1.00301 0.00763335 0) (1.00314 0.00783325 0) (1.00326 0.0080217 0) (1.00337 0.00820263 0) (1.00347 0.00838016 0) (1.00357 0.00855804 0) (1.00366 0.00873911 0) (1.00376 0.00892511 0) (1.00384 0.0091167 0) (1.00393 0.00931373 0) (1.00402 0.0095155 0) (1.0041 0.00972113 0) (1.00419 0.00992971 0) (1.00429 0.0101405 0) (1.00439 0.010353 0) (1.00449 0.010567 0) (1.0046 0.0107824 0) (1.00472 0.0109995 0) (1.00485 0.0112187 0) (1.005 0.0114404 0) (1.00515 0.0116654 0) (1.00532 0.0118939 0) (1.00551 0.0121264 0) (1.00571 0.0123629 0) (1.00593 0.0126032 0) (1.00616 0.0128468 0) (1.00641 0.0130927 0) (1.00669 0.01334 0) (1.00698 0.013587 0) (1.00729 0.0138323 0) (1.00762 0.0140738 0) (1.00797 0.0143099 0) (1.00834 0.0145382 0) (1 0.000341286 0) (1.00005 0.00101603 0) (1.00014 0.00166944 0) (1.00028 0.00229344 0) (1.00044 0.00288187 0) (1.00064 0.00343114 0) (1.00084 0.00394033 0) (1.00106 0.00441063 0) (1.00127 0.00484451 0) (1.00148 0.00524485 0) (1.00169 0.00561459 0) (1.00189 0.00595667 0) (1.00208 0.00627392 0) (1.00226 0.00656877 0) (1.00242 0.00684305 0) (1.00258 0.00709793 0) (1.00273 0.00733434 0) (1.00286 0.00755354 0) (1.00299 0.00775763 0) (1.00311 0.00794973 0) (1.00322 0.00813375 0) (1.00333 0.00831383 0) (1.00343 0.00849371 0) (1.00353 0.00867622 0) (1.00363 0.00886307 0) (1.00372 0.00905488 0) (1.00382 0.00925141 0) (1.00391 0.0094519 0) (1.00401 0.00965535 0) (1.00411 0.00986081 0) (1.00421 0.0100675 0) (1.00432 0.0102747 0) (1.00443 0.0104823 0) (1.00455 0.0106902 0) (1.00468 0.0108985 0) (1.00482 0.0111077 0) (1.00497 0.0113183 0) (1.00514 0.0115309 0) (1.00531 0.0117458 0) (1.00551 0.0119636 0) (1.00571 0.0121843 0) (1.00594 0.0124077 0) (1.00618 0.0126334 0) (1.00643 0.0128605 0) (1.00671 0.0130881 0) (1.007 0.0133147 0) (1.00731 0.0135388 0) (1.00764 0.0137588 0) (1.00798 0.0139729 0) (1.00835 0.014179 0) (1 0.000329192 0) (1.00005 0.000980611 0) (1.00013 0.00161279 0) (1.00025 0.00221855 0) (1.00041 0.00279231 0) (1.00058 0.00333065 0) (1.00078 0.00383245 0) (1.00098 0.00429848 0) (1.00118 0.00473065 0) (1.00138 0.00513129 0) (1.00158 0.00550288 0) (1.00177 0.00584796 0) (1.00195 0.00616903 0) (1.00212 0.00646824 0) (1.00228 0.00674714 0) (1.00244 0.00700668 0) (1.00258 0.00724756 0) (1.00272 0.00747087 0) (1.00285 0.00767862 0) (1.00297 0.00787387 0) (1.00309 0.0080605 0) (1.0032 0.00824265 0) (1.00331 0.00842406 0) (1.00341 0.00860755 0) (1.00351 0.0087948 0) (1.00361 0.00898637 0) (1.00372 0.00918196 0) (1.00382 0.00938072 0) (1.00392 0.00958158 0) (1.00403 0.0097835 0) (1.00414 0.0099856 0) (1.00425 0.0101873 0) (1.00438 0.0103881 0) (1.00451 0.0105881 0) (1.00464 0.0107874 0) (1.00479 0.0109865 0) (1.00495 0.0111857 0) (1.00512 0.0113858 0) (1.00531 0.0115872 0) (1.00551 0.0117903 0) (1.00572 0.0119954 0) (1.00595 0.0122022 0) (1.00619 0.0124104 0) (1.00645 0.0126192 0) (1.00673 0.0128277 0) (1.00702 0.0130345 0) (1.00733 0.0132385 0) (1.00765 0.0134378 0) (1.00799 0.0136311 0) (1.00835 0.0138163 0) (1 0.000317825 0) (1.00004 0.000947285 0) (1.00012 0.00155936 0) (1.00023 0.00214769 0) (1.00037 0.0027072 0) (1.00054 0.00323465 0) (1.00072 0.00372879 0) (1.0009 0.00419004 0) (1.00109 0.00461986 0) (1.00128 0.00502011 0) (1.00147 0.00539283 0) (1.00165 0.00574018 0) (1.00183 0.00606436 0) (1.002 0.00636723 0) (1.00216 0.00665009 0) (1.00231 0.00691364 0) (1.00245 0.00715839 0) (1.00259 0.00738525 0) (1.00272 0.00759612 0) (1.00284 0.00779399 0) (1.00296 0.00798273 0) (1.00308 0.00816645 0) (1.00319 0.00834891 0) (1.0033 0.00853292 0) (1.00341 0.00872011 0) (1.00352 0.00891099 0) (1.00362 0.00910519 0) (1.00373 0.00930178 0) (1.00384 0.00949963 0) (1.00396 0.00969761 0) (1.00408 0.00989479 0) (1.0042 0.0100905 0) (1.00433 0.0102843 0) (1.00447 0.0104762 0) (1.00461 0.0106663 0) (1.00477 0.0108549 0) (1.00494 0.0110428 0) (1.00512 0.0112303 0) (1.00531 0.0114182 0) (1.00551 0.0116069 0) (1.00573 0.0117965 0) (1.00596 0.011987 0) (1.00621 0.0121781 0) (1.00647 0.0123691 0) (1.00674 0.0125592 0) (1.00703 0.0127472 0) (1.00734 0.0129318 0) (1.00766 0.0131115 0) (1.008 0.0132851 0) (1.00835 0.0134505 0) (1 0.000307119 0) (1.00004 0.000915863 0) (1.00011 0.00150888 0) (1.00021 0.00208052 0) (1.00034 0.00262619 0) (1.0005 0.00314282 0) (1.00066 0.00362907 0) (1.00084 0.0040851 0) (1.00101 0.00451199 0) (1.0012 0.00491119 0) (1.00137 0.00528433 0) (1.00155 0.00563325 0) (1.00172 0.00595982 0) (1.00188 0.00626566 0) (1.00204 0.0065518 0) (1.00219 0.00681873 0) (1.00233 0.00706674 0) (1.00247 0.00729658 0) (1.0026 0.00751001 0) (1.00273 0.00770997 0) (1.00285 0.00790029 0) (1.00297 0.0080851 0) (1.00308 0.00826812 0) (1.0032 0.00845216 0) (1.00331 0.00863882 0) (1.00343 0.00882855 0) (1.00354 0.00902092 0) (1.00366 0.00921493 0) (1.00377 0.00940936 0) (1.00389 0.00960302 0) (1.00402 0.00979492 0) (1.00415 0.00998434 0) (1.00429 0.0101709 0) (1.00444 0.0103544 0) (1.00459 0.010535 0) (1.00475 0.0107132 0) (1.00493 0.0108896 0) (1.00511 0.0110646 0) (1.00531 0.0112391 0) (1.00552 0.0114134 0) (1.00574 0.0115879 0) (1.00597 0.0117625 0) (1.00622 0.011937 0) (1.00648 0.0121108 0) (1.00676 0.0122832 0) (1.00705 0.0124531 0) (1.00735 0.0126193 0) (1.00767 0.0127804 0) (1.008 0.0129354 0) (1.00834 0.0130823 0) (1 0.000297012 0) (1.00004 0.00088617 0) (1.0001 0.00146109 0) (1.0002 0.00201673 0) (1.00032 0.00254894 0) (1.00046 0.00305483 0) (1.00061 0.00353301 0) (1.00078 0.00398344 0) (1.00094 0.00440686 0) (1.00112 0.00480437 0) (1.00129 0.00517727 0) (1.00145 0.00552705 0) (1.00162 0.00585532 0) (1.00178 0.00616344 0) (1.00193 0.00645221 0) (1.00208 0.00672187 0) (1.00222 0.00697251 0) (1.00236 0.00720473 0) (1.00249 0.00742017 0) (1.00262 0.00762168 0) (1.00274 0.00781306 0) (1.00287 0.00799843 0) (1.00299 0.00818152 0) (1.00311 0.00836512 0) (1.00323 0.00855078 0) (1.00334 0.00873892 0) (1.00346 0.00892902 0) (1.00359 0.00912002 0) (1.00371 0.00931064 0) (1.00384 0.00949963 0) (1.00397 0.00968592 0) (1.00411 0.00986877 0) (1.00426 0.0100477 0) (1.00441 0.0102227 0) (1.00457 0.0103938 0) (1.00474 0.0105614 0) (1.00492 0.0107263 0) (1.00511 0.0108889 0) (1.00531 0.0110501 0) (1.00552 0.0112103 0) (1.00575 0.01137 0) (1.00598 0.0115291 0) (1.00623 0.0116876 0) (1.0065 0.0118448 0) (1.00677 0.0120002 0) (1.00706 0.0121528 0) (1.00736 0.0123015 0) (1.00767 0.0124451 0) (1.00799 0.0125825 0) (1.00832 0.0127121 0) (1 0.000287447 0) (1.00003 0.00085804 0) (1.00009 0.00141572 0) (1.00018 0.00195601 0) (1.00029 0.00247514 0) (1.00042 0.00297037 0) (1.00057 0.00344033 0) (1.00072 0.0038848 0) (1.00088 0.00430425 0) (1.00104 0.00469949 0) (1.00121 0.00507149 0) (1.00137 0.00542146 0) (1.00153 0.00575075 0) (1.00168 0.00606047 0) (1.00183 0.00635119 0) (1.00198 0.00662293 0) (1.00212 0.00687559 0) (1.00226 0.0071096 0) (1.00239 0.00732646 0) (1.00252 0.00752896 0) (1.00265 0.00772088 0) (1.00277 0.00790631 0) (1.0029 0.00808897 0) (1.00302 0.00827164 0) (1.00315 0.00845584 0) (1.00327 0.00864193 0) (1.0034 0.00882935 0) (1.00353 0.00901695 0) (1.00366 0.00920339 0) (1.00379 0.00938735 0) (1.00393 0.00956774 0) (1.00408 0.00974376 0) (1.00423 0.00991495 0) (1.00439 0.0100812 0) (1.00455 0.0102426 0) (1.00473 0.0103997 0) (1.00491 0.0105531 0) (1.00511 0.0107034 0) (1.00531 0.0108515 0) (1.00553 0.010998 0) (1.00576 0.0111432 0) (1.006 0.0112873 0) (1.00625 0.0114302 0) (1.00651 0.0115716 0) (1.00678 0.0117107 0) (1.00706 0.0118468 0) (1.00736 0.011979 0) (1.00766 0.012106 0) (1.00798 0.012227 0) (1.00831 0.0123404 0) (1 0.000278368 0) (1.00003 0.000831316 0) (1.00009 0.00137255 0) (1.00017 0.00189807 0) (1.00027 0.00240444 0) (1.00039 0.00288912 0) (1.00053 0.00335073 0) (1.00067 0.0037889 0) (1.00082 0.00420392 0) (1.00098 0.00459633 0) (1.00114 0.00496681 0) (1.00129 0.00531633 0) (1.00145 0.00564596 0) (1.0016 0.00595661 0) (1.00174 0.00624861 0) (1.00189 0.0065218 0) (1.00203 0.00677585 0) (1.00217 0.00701104 0) (1.0023 0.00722875 0) (1.00243 0.0074317 0) (1.00256 0.00762361 0) (1.00269 0.00780858 0) (1.00282 0.00799032 0) (1.00295 0.00817158 0) (1.00308 0.00835387 0) (1.00321 0.00853748 0) (1.00334 0.00872179 0) (1.00347 0.00890561 0) (1.00361 0.00908751 0) (1.00375 0.00926613 0) (1.0039 0.00944035 0) (1.00405 0.00960931 0) (1.00421 0.00977255 0) (1.00437 0.00992994 0) (1.00454 0.0100817 0) (1.00472 0.0102282 0) (1.00491 0.0103702 0) (1.00511 0.0105084 0) (1.00532 0.0106437 0) (1.00554 0.0107766 0) (1.00577 0.0109078 0) (1.00601 0.0110374 0) (1.00626 0.0111654 0) (1.00652 0.0112915 0) (1.00679 0.0114152 0) (1.00707 0.0115357 0) (1.00736 0.0116523 0) (1.00766 0.0117637 0) (1.00796 0.0118693 0) (1.00828 0.0119675 0) (1 0.000269723 0) (1.00003 0.000805848 0) (1.00008 0.00133132 0) (1.00016 0.0018426 0) (1.00025 0.00233653 0) (1.00037 0.00281075 0) (1.00049 0.00326388 0) (1.00063 0.00369547 0) (1.00077 0.00410563 0) (1.00092 0.00449467 0) (1.00107 0.00486305 0) (1.00122 0.00521147 0) (1.00137 0.0055408 0) (1.00152 0.00585171 0) (1.00166 0.00614435 0) (1.00181 0.00641833 0) (1.00195 0.00667315 0) (1.00209 0.00690892 0) (1.00222 0.00712691 0) (1.00235 0.00732975 0) (1.00249 0.00752113 0) (1.00262 0.00770513 0) (1.00275 0.00788545 0) (1.00288 0.00806483 0) (1.00302 0.00824474 0) (1.00315 0.00842545 0) (1.00329 0.00860626 0) (1.00343 0.00878592 0) (1.00357 0.00896295 0) (1.00372 0.00913595 0) (1.00387 0.00930374 0) (1.00403 0.00946545 0) (1.00419 0.00962061 0) (1.00436 0.00976908 0) (1.00454 0.00991107 0) (1.00472 0.0100471 0) (1.00491 0.0101778 0) (1.00512 0.0103041 0) (1.00533 0.0104268 0) (1.00555 0.0105467 0) (1.00578 0.0106643 0) (1.00602 0.0107799 0) (1.00626 0.0108936 0) (1.00652 0.0110051 0) (1.00679 0.0111142 0) (1.00707 0.0112199 0) (1.00735 0.0113217 0) (1.00764 0.0114185 0) (1.00795 0.0115097 0) (1.00825 0.0115939 0) (1 0.000261464 0) (1.00003 0.000781492 0) (1.00007 0.00129184 0) (1.00015 0.00178933 0) (1.00024 0.0022711 0) (1.00034 0.00273493 0) (1.00046 0.00317947 0) (1.00059 0.0036042 0) (1.00073 0.0040091 0) (1.00087 0.00439428 0) (1.00101 0.00475997 0) (1.00116 0.00510668 0) (1.0013 0.00543506 0) (1.00145 0.00574559 0) (1.00159 0.00603822 0) (1.00173 0.00631236 0) (1.00187 0.00656734 0) (1.00201 0.00680309 0) (1.00215 0.00702078 0) (1.00228 0.00722295 0) (1.00242 0.00741327 0) (1.00255 0.00759579 0) (1.00269 0.00777422 0) (1.00283 0.00795125 0) (1.00296 0.00812836 0) (1.0031 0.00830574 0) (1.00324 0.00848267 0) (1.00339 0.00865783 0) (1.00354 0.00882969 0) (1.00369 0.0089968 0) (1.00385 0.00915794 0) (1.00401 0.00931224 0) (1.00418 0.00945921 0) (1.00435 0.00959872 0) (1.00453 0.009731 0) (1.00472 0.0098566 0) (1.00492 0.00997626 0) (1.00512 0.0100909 0) (1.00533 0.0102014 0) (1.00555 0.0103085 0) (1.00578 0.010413 0) (1.00602 0.0105152 0) (1.00627 0.0106152 0) (1.00653 0.0107129 0) (1.00679 0.010808 0) (1.00706 0.0108998 0) (1.00734 0.0109878 0) (1.00763 0.0110709 0) (1.00792 0.0111487 0) (1.00822 0.0112198 0) (1 0.000253541 0) (1.00002 0.000758112 0) (1.00007 0.00125387 0) (1.00014 0.00173799 0) (1.00022 0.00220784 0) (1.00032 0.00266134 0) (1.00043 0.00309718 0) (1.00056 0.0035148 0) (1.00069 0.00391405 0) (1.00082 0.00429487 0) (1.00096 0.00465734 0) (1.0011 0.00500175 0) (1.00124 0.00532856 0) (1.00139 0.00563807 0) (1.00153 0.00593005 0) (1.00167 0.00620372 0) (1.00181 0.00645824 0) (1.00195 0.00669339 0) (1.00208 0.00691021 0) (1.00222 0.00711118 0) (1.00236 0.00729991 0) (1.0025 0.00748046 0) (1.00264 0.0076565 0) (1.00278 0.00783075 0) (1.00292 0.00800462 0) (1.00306 0.00817829 0) (1.00321 0.00835097 0) (1.00336 0.0085213 0) (1.00351 0.0086877 0) (1.00367 0.00884868 0) (1.00383 0.00900299 0) (1.00399 0.00914976 0) (1.00417 0.00928847 0) (1.00434 0.00941901 0) (1.00453 0.00954166 0) (1.00472 0.00965697 0) (1.00492 0.00976576 0) (1.00513 0.00986897 0) (1.00534 0.00996758 0) (1.00556 0.0100625 0) (1.00579 0.0101543 0) (1.00603 0.0102437 0) (1.00628 0.0103307 0) (1.00653 0.0104153 0) (1.00679 0.0104972 0) (1.00706 0.0105759 0) (1.00733 0.0106509 0) (1.00761 0.0107213 0) (1.0079 0.0107867 0) (1.00819 0.0108457 0) (1 0.000245911 0) (1.00002 0.000735576 0) (1.00007 0.00121722 0) (1.00013 0.00168831 0) (1.00021 0.00214644 0) (1.0003 0.00258965 0) (1.00041 0.00301668 0) (1.00053 0.00342693 0) (1.00065 0.00382016 0) (1.00078 0.00419618 0) (1.00092 0.00455489 0) (1.00105 0.00489642 0) (1.00119 0.00522106 0) (1.00133 0.00552893 0) (1.00147 0.00581964 0) (1.00161 0.00609223 0) (1.00175 0.00634568 0) (1.00189 0.00657964 0) (1.00203 0.00679503 0) (1.00217 0.00699426 0) (1.00231 0.0071809 0) (1.00245 0.00735899 0) (1.00259 0.00753219 0) (1.00273 0.00770321 0) (1.00288 0.00787344 0) (1.00303 0.00804301 0) (1.00318 0.0082111 0) (1.00333 0.0083763 0) (1.00349 0.00853699 0) (1.00365 0.00869163 0) (1.00381 0.00883897 0) (1.00398 0.00897809 0) (1.00416 0.00910851 0) (1.00434 0.00923013 0) (1.00453 0.00934323 0) (1.00472 0.00944844 0) (1.00492 0.0095466 0) (1.00513 0.00963871 0) (1.00535 0.00972583 0) (1.00557 0.00980889 0) (1.0058 0.00988869 0) (1.00604 0.00996576 0) (1.00628 0.0100404 0) (1.00653 0.0101126 0) (1.00678 0.0101821 0) (1.00705 0.0102486 0) (1.00731 0.0103115 0) (1.00759 0.0103701 0) (1.00787 0.0104239 0) (1.00815 0.0104718 0) (1 0.00023853 0) (1.00002 0.000713759 0) (1.00006 0.00118169 0) (1.00012 0.00164004 0) (1.0002 0.00208661 0) (1.00029 0.00251955 0) (1.00039 0.00293765 0) (1.0005 0.00334028 0) (1.00062 0.00372713 0) (1.00074 0.0040979 0) (1.00087 0.00445234 0) (1.00101 0.00479043 0) (1.00114 0.00511231 0) (1.00128 0.00541794 0) (1.00142 0.00570677 0) (1.00156 0.00597767 0) (1.0017 0.00622947 0) (1.00184 0.00646167 0) (1.00198 0.00667509 0) (1.00212 0.00687205 0) (1.00226 0.00705611 0) (1.0024 0.00723126 0) (1.00255 0.00740118 0) (1.0027 0.00756855 0) (1.00284 0.00773474 0) (1.003 0.00789986 0) (1.00315 0.00806305 0) (1.00331 0.00822284 0) (1.00347 0.00837758 0) (1.00363 0.00852571 0) (1.0038 0.00866594 0) (1.00398 0.00879737 0) (1.00416 0.0089195 0) (1.00434 0.00903225 0) (1.00453 0.00913595 0) (1.00473 0.00923124 0) (1.00493 0.00931905 0) (1.00514 0.00940041 0) (1.00535 0.00947645 0) (1.00558 0.00954818 0) (1.0058 0.00961645 0) (1.00604 0.00968187 0) (1.00628 0.0097448 0) (1.00653 0.0098053 0) (1.00678 0.00986325 0) (1.00703 0.00991825 0) (1.0073 0.00996991 0) (1.00756 0.0100175 0) (1.00783 0.0100606 0) (1.00811 0.0100983 0) (1 0.000231357 0) (1.00002 0.000692539 0) (1.00006 0.00114708 0) (1.00011 0.00159292 0) (1.00019 0.00202805 0) (1.00027 0.00245072 0) (1.00037 0.00285974 0) (1.00048 0.00325451 0) (1.00059 0.00363464 0) (1.00071 0.00399973 0) (1.00084 0.0043494 0) (1.00097 0.00468351 0) (1.0011 0.00500205 0) (1.00124 0.00530486 0) (1.00138 0.00559121 0) (1.00152 0.00585983 0) (1.00166 0.0061094 0) (1.0018 0.00633929 0) (1.00194 0.00655019 0) (1.00208 0.00674439 0) (1.00222 0.00692537 0) (1.00237 0.00709713 0) (1.00252 0.00726334 0) (1.00267 0.00742666 0) (1.00282 0.00758845 0) (1.00297 0.00774879 0) (1.00313 0.00790677 0) (1.00329 0.0080609 0) (1.00346 0.0082095 0) (1.00362 0.00835097 0) (1.0038 0.008484 0) (1.00397 0.0086077 0) (1.00416 0.00872157 0) (1.00434 0.00882557 0) (1.00454 0.00892003 0) (1.00473 0.00900565 0) (1.00494 0.0090834 0) (1.00515 0.00915439 0) (1.00536 0.00921979 0) (1.00558 0.00928067 0) (1.00581 0.00933797 0) (1.00604 0.00939236 0) (1.00628 0.00944425 0) (1.00652 0.00949377 0) (1.00677 0.00954088 0) (1.00702 0.0095852 0) (1.00728 0.00962643 0) (1.00754 0.00966389 0) (1.0078 0.00969725 0) (1.00806 0.00972555 0) (1 0.000224352 0) (1.00002 0.0006718 0) (1.00006 0.00111321 0) (1.00011 0.00154672 0) (1.00018 0.00197047 0) (1.00026 0.00238283 0) (1.00035 0.00278264 0) (1.00046 0.00316929 0) (1.00057 0.00354235 0) (1.00069 0.00390133 0) (1.00081 0.00424576 0) (1.00094 0.00457536 0) (1.00107 0.00489001 0) (1.0012 0.00518941 0) (1.00134 0.0054727 0) (1.00148 0.00573848 0) (1.00162 0.00598526 0) (1.00176 0.00621228 0) (1.0019 0.00642016 0) (1.00205 0.0066111 0) (1.00219 0.00678855 0) (1.00234 0.00695649 0) (1.00249 0.00711858 0) (1.00264 0.00727747 0) (1.0028 0.00743451 0) (1.00295 0.00758976 0) (1.00312 0.00774227 0) (1.00328 0.00789052 0) (1.00345 0.00803279 0) (1.00362 0.00816748 0) (1.00379 0.00829326 0) (1.00397 0.00840923 0) (1.00416 0.00851491 0) (1.00435 0.00861027 0) (1.00454 0.00869569 0) (1.00474 0.00877191 0) (1.00494 0.00883993 0) (1.00515 0.00890094 0) (1.00537 0.00895615 0) (1.00559 0.00900671 0) (1.00581 0.00905362 0) (1.00604 0.00909758 0) (1.00628 0.00913911 0) (1.00651 0.00917837 0) (1.00676 0.00921536 0) (1.007 0.00924979 0) (1.00725 0.00928138 0) (1.0075 0.00930951 0) (1.00776 0.0093339 0) (1.00802 0.00935365 0) (1 0.000217476 0) (1.00002 0.000651429 0) (1.00005 0.00107989 0) (1.0001 0.00150119 0) (1.00017 0.00191361 0) (1.00025 0.00231558 0) (1.00034 0.00270601 0) (1.00044 0.00308428 0) (1.00055 0.00344992 0) (1.00066 0.00380238 0) (1.00078 0.00414109 0) (1.00091 0.00446567 0) (1.00104 0.00477589 0) (1.00117 0.00507133 0) (1.00131 0.005351 0) (1.00145 0.00561335 0) (1.00159 0.0058568 0) (1.00173 0.00608044 0) (1.00187 0.0062848 0) (1.00202 0.00647201 0) (1.00217 0.00664548 0) (1.00232 0.00680919 0) (1.00247 0.00696677 0) (1.00262 0.00712089 0) (1.00278 0.00727286 0) (1.00294 0.00742273 0) (1.00311 0.00756953 0) (1.00327 0.0077117 0) (1.00344 0.00784751 0) (1.00362 0.00797532 0) (1.00379 0.00809382 0) (1.00398 0.0082021 0) (1.00416 0.00829968 0) (1.00435 0.00838657 0) (1.00455 0.00846318 0) (1.00475 0.00853028 0) (1.00495 0.00858893 0) (1.00516 0.00864036 0) (1.00538 0.00868586 0) (1.00559 0.00872663 0) (1.00582 0.00876371 0) (1.00604 0.00879788 0) (1.00627 0.0088297 0) (1.00651 0.00885939 0) (1.00674 0.008887 0) (1.00698 0.00891228 0) (1.00723 0.00893501 0) (1.00747 0.0089546 0) (1.00772 0.00897081 0) (1.00797 0.00898279 0) (1 0.000210692 0) (1.00002 0.000631317 0) (1.00005 0.00104696 0) (1.0001 0.00145611 0) (1.00016 0.00185717 0) (1.00024 0.00224865 0) (1.00033 0.00262951 0) (1.00042 0.00299913 0) (1.00053 0.003357 0) (1.00064 0.00370253 0) (1.00076 0.00403506 0) (1.00089 0.00435412 0) (1.00101 0.00465938 0) (1.00115 0.00495031 0) (1.00128 0.0052258 0) (1.00142 0.00548421 0) (1.00156 0.00572379 0) (1.0017 0.00594354 0) (1.00185 0.0061439 0) (1.002 0.00632693 0) (1.00215 0.00649601 0) (1.0023 0.0066551 0) (1.00245 0.00680782 0) (1.00261 0.00695683 0) (1.00277 0.00710344 0) (1.00293 0.00724768 0) (1.0031 0.00738854 0) (1.00327 0.00752447 0) (1.00344 0.0076537 0) (1.00362 0.00777458 0) (1.0038 0.00788579 0) (1.00398 0.00798643 0) (1.00417 0.00807605 0) (1.00436 0.00815465 0) (1.00456 0.0082227 0) (1.00476 0.00828099 0) (1.00496 0.00833065 0) (1.00517 0.00837295 0) (1.00538 0.00840922 0) (1.0056 0.00844072 0) (1.00582 0.00846856 0) (1.00604 0.00849356 0) (1.00627 0.00851633 0) (1.0065 0.00853714 0) (1.00673 0.00855609 0) (1.00696 0.00857296 0) (1.0072 0.00858756 0) (1.00744 0.00859937 0) (1.00768 0.00860815 0) (1.00792 0.00861311 0) (1 0.000203965 0) (1.00002 0.000611358 0) (1.00005 0.00101425 0) (1.0001 0.00141125 0) (1.00016 0.00180089 0) (1.00023 0.00218175 0) (1.00032 0.00255283 0) (1.00041 0.0029135 0) (1.00052 0.00326326 0) (1.00063 0.00360144 0) (1.00074 0.00392734 0) (1.00087 0.00424038 0) (1.00099 0.00454015 0) (1.00113 0.00482604 0) (1.00126 0.00509683 0) (1.0014 0.00535075 0) (1.00154 0.00558596 0) (1.00168 0.00580135 0) (1.00183 0.00599725 0) (1.00198 0.00617568 0) (1.00213 0.00633997 0) (1.00228 0.00649407 0) (1.00244 0.0066416 0) (1.0026 0.0067852 0) (1.00276 0.00692619 0) (1.00293 0.00706456 0) (1.0031 0.00719931 0) (1.00327 0.00732886 0) (1.00344 0.00745141 0) (1.00362 0.00756533 0) (1.0038 0.00766929 0) (1.00399 0.00776237 0) (1.00418 0.00784417 0) (1.00437 0.0079147 0) (1.00457 0.00797446 0) (1.00477 0.00802428 0) (1.00497 0.00806534 0) (1.00518 0.00809894 0) (1.00539 0.00812648 0) (1.0056 0.00814926 0) (1.00582 0.00816844 0) (1.00604 0.00818489 0) (1.00626 0.00819926 0) (1.00649 0.00821186 0) (1.00671 0.00822284 0) (1.00694 0.008232 0) (1.00717 0.00823921 0) (1.0074 0.00824396 0) (1.00764 0.00824603 0) (1.00787 0.0082447 0) (1 0.000197259 0) (1.00002 0.000591451 0) (1.00005 0.000981579 0) (1.00009 0.00136639 0) (1.00015 0.0017445 0) (1.00023 0.00211457 0) (1.00031 0.00247562 0) (1.0004 0.00282705 0) (1.0005 0.00316833 0) (1.00061 0.00349876 0) (1.00073 0.00381755 0) (1.00085 0.00412409 0) (1.00098 0.00441788 0) (1.00111 0.00469821 0) (1.00124 0.00496377 0) (1.00138 0.0052127 0) (1.00152 0.00544305 0) (1.00167 0.0056536 0) (1.00182 0.00584461 0) (1.00197 0.00601803 0) (1.00212 0.00617718 0) (1.00228 0.00632595 0) (1.00243 0.00646798 0) (1.0026 0.0066059 0) (1.00276 0.00674103 0) (1.00293 0.00687334 0) (1.0031 0.00700182 0) (1.00327 0.00712486 0) (1.00345 0.00724069 0) (1.00363 0.00734764 0) (1.00381 0.0074444 0) (1.004 0.00753005 0) (1.00419 0.0076042 0) (1.00438 0.00766691 0) (1.00458 0.00771867 0) (1.00478 0.00776038 0) (1.00498 0.00779324 0) (1.00519 0.0078186 0) (1.00539 0.00783792 0) (1.00561 0.00785252 0) (1.00582 0.00786362 0) (1.00604 0.00787213 0) (1.00625 0.00787874 0) (1.00647 0.0078838 0) (1.0067 0.00788747 0) (1.00692 0.00788963 0) (1.00714 0.00789012 0) (1.00737 0.0078885 0) (1.0076 0.00788456 0) (1.00782 0.00787761 0) (1 0.000190541 0) (1.00002 0.000571495 0) (1.00005 0.0009488 0) (1.00009 0.00132132 0) (1.00015 0.00168775 0) (1.00022 0.00204681 0) (1.0003 0.00239757 0) (1.00039 0.00273943 0) (1.00049 0.00307186 0) (1.0006 0.0033941 0) (1.00072 0.00370535 0) (1.00084 0.00400491 0) (1.00096 0.00429221 0) (1.0011 0.00456647 0) (1.00123 0.00482631 0) (1.00137 0.00506975 0) (1.00151 0.00529476 0) (1.00166 0.00550003 0) (1.00181 0.00568574 0) (1.00196 0.00585378 0) (1.00211 0.00600743 0) (1.00227 0.00615057 0) (1.00243 0.00628683 0) (1.0026 0.00641883 0) (1.00276 0.00654788 0) (1.00293 0.00667395 0) (1.00311 0.00679603 0) (1.00328 0.0069125 0) (1.00346 0.00702157 0) (1.00364 0.00712158 0) (1.00382 0.0072112 0) (1.00401 0.00728956 0) (1.0042 0.00735626 0) (1.0044 0.00741139 0) (1.00459 0.00745547 0) (1.00479 0.00748944 0) (1.00499 0.00751452 0) (1.0052 0.00753212 0) (1.0054 0.00754371 0) (1.00561 0.0075507 0) (1.00582 0.0075543 0) (1.00603 0.00755548 0) (1.00625 0.00755495 0) (1.00646 0.00755311 0) (1.00668 0.00755014 0) (1.0069 0.00754594 0) (1.00712 0.0075404 0) (1.00733 0.00753308 0) (1.00755 0.00752379 0) (1.00777 0.00751187 0) (1 0.000183778 0) (1.00002 0.000551392 0) (1.00005 0.000915749 0) (1.00009 0.00127581 0) (1.00015 0.00163036 0) (1.00022 0.00197817 0) (1.0003 0.00231834 0) (1.00039 0.00265029 0) (1.00049 0.00297347 0) (1.00059 0.00328712 0) (1.00071 0.00359036 0) (1.00083 0.00388245 0) (1.00096 0.00416277 0) (1.00109 0.00443047 0) (1.00122 0.00468409 0) (1.00136 0.00492157 0) (1.00151 0.00514079 0) (1.00165 0.00534036 0) (1.0018 0.00552038 0) (1.00196 0.00568269 0) (1.00211 0.00583053 0) (1.00227 0.00596776 0) (1.00244 0.00609798 0) (1.0026 0.00622385 0) (1.00277 0.00634664 0) (1.00294 0.00646635 0) (1.00311 0.00658193 0) (1.00329 0.00669178 0) (1.00347 0.00679408 0) (1.00365 0.00688719 0) (1.00384 0.00696978 0) (1.00403 0.007041 0) (1.00422 0.00710046 0) (1.00441 0.00714827 0) (1.00461 0.00718501 0) (1.0048 0.00721162 0) (1.005 0.00722936 0) (1.00521 0.00723968 0) (1.00541 0.00724408 0) (1.00562 0.00724398 0) (1.00582 0.00724066 0) (1.00603 0.00723512 0) (1.00624 0.00722808 0) (1.00645 0.00721996 0) (1.00666 0.00721099 0) (1.00688 0.00720108 0) (1.00709 0.00719013 0) (1.0073 0.00717774 0) (1.00751 0.00716372 0) (1.00772 0.00714745 0) (1 0.000176936 0) (1.00002 0.000531046 0) (1.00005 0.000882272 0) (1.00009 0.00122967 0) (1.00015 0.00157209 0) (1.00021 0.00190836 0) (1.00029 0.00223761 0) (1.00038 0.00255929 0) (1.00048 0.00287282 0) (1.00059 0.00317742 0) (1.0007 0.00347219 0) (1.00082 0.00375634 0) (1.00095 0.0040292 0) (1.00108 0.00428985 0) (1.00122 0.00453676 0) (1.00136 0.00476782 0) (1.0015 0.00498081 0) (1.00165 0.00517427 0) (1.0018 0.00534824 0) (1.00196 0.0055045 0) (1.00212 0.00564623 0) (1.00228 0.00577729 0) (1.00244 0.00590128 0) (1.00261 0.00602082 0) (1.00278 0.00613722 0) (1.00295 0.00625044 0) (1.00313 0.00635945 0) (1.00331 0.00646264 0) (1.00349 0.00655819 0) (1.00367 0.00664447 0) (1.00385 0.00672016 0) (1.00404 0.00678442 0) (1.00423 0.00683688 0) (1.00443 0.00687769 0) (1.00462 0.00690742 0) (1.00482 0.00692706 0) (1.00502 0.0069379 0) (1.00522 0.00694142 0) (1.00542 0.00693914 0) (1.00562 0.00693253 0) (1.00583 0.00692286 0) (1.00603 0.00691117 0) (1.00624 0.00689822 0) (1.00644 0.00688444 0) (1.00665 0.00687007 0) (1.00686 0.00685507 0) (1.00706 0.00683933 0) (1.00727 0.00682247 0) (1.00747 0.00680432 0) (1.00768 0.00678428 0) (1 0.000169985 0) (1.00002 0.000510362 0) (1.00004 0.000848214 0) (1.00009 0.00118268 0) (1.00014 0.00151267 0) (1.00021 0.00183707 0) (1.00029 0.00215505 0) (1.00038 0.00246605 0) (1.00048 0.0027695 0) (1.00058 0.00306462 0) (1.0007 0.00335046 0) (1.00082 0.00362619 0) (1.00095 0.00389109 0) (1.00108 0.00414421 0) (1.00122 0.00438395 0) (1.00136 0.00460814 0) (1.0015 0.00481448 0) (1.00165 0.00500145 0) (1.00181 0.00516903 0) (1.00196 0.00531892 0) (1.00212 0.00545429 0) (1.00229 0.00557896 0) (1.00245 0.00569652 0) (1.00262 0.00580959 0) (1.00279 0.00591946 0) (1.00297 0.0060261 0) (1.00314 0.00612849 0) (1.00332 0.00622501 0) (1.0035 0.00631386 0) (1.00369 0.00639341 0) (1.00387 0.00646236 0) (1.00406 0.00651986 0) (1.00425 0.00656559 0) (1.00444 0.00659969 0) (1.00464 0.00662278 0) (1.00483 0.00663586 0) (1.00503 0.00664024 0) (1.00523 0.00663744 0) (1.00543 0.00662899 0) (1.00563 0.00661638 0) (1.00583 0.00660093 0) (1.00603 0.00658368 0) (1.00623 0.0065654 0) (1.00643 0.00654656 0) (1.00664 0.0065274 0) (1.00684 0.0065079 0) (1.00704 0.00648795 0) (1.00724 0.00646722 0) (1.00744 0.00644549 0) (1.00763 0.00642223 0) (1 0.000162891 0) (1.00002 0.000489244 0) (1.00004 0.000813418 0) (1.00009 0.00113462 0) (1.00014 0.00145185 0) (1.00021 0.00176401 0) (1.00029 0.00207031 0) (1.00038 0.00237021 0) (1.00048 0.00266315 0) (1.00058 0.00294832 0) (1.0007 0.00322474 0) (1.00082 0.00349157 0) (1.00095 0.00374804 0) (1.00108 0.00399315 0) (1.00122 0.00422526 0) (1.00136 0.00444213 0) (1.00151 0.00464142 0) (1.00166 0.00482154 0) (1.00181 0.00498239 0) (1.00197 0.00512565 0) (1.00213 0.00525442 0) (1.0023 0.00537251 0) (1.00247 0.00548348 0) (1.00264 0.00558995 0) (1.00281 0.0056932 0) (1.00298 0.0057932 0) (1.00316 0.00588895 0) (1.00334 0.00597882 0) (1.00352 0.00606104 0) (1.00371 0.00613398 0) (1.0039 0.00619635 0) (1.00408 0.00624733 0) (1.00427 0.00628661 0) (1.00447 0.00631434 0) (1.00466 0.00633116 0) (1.00485 0.00633809 0) (1.00505 0.00633648 0) (1.00524 0.00632783 0) (1.00544 0.00631372 0) (1.00564 0.00629566 0) (1.00583 0.00627496 0) (1.00603 0.0062527 0) (1.00623 0.00622967 0) (1.00643 0.00620632 0) (1.00662 0.00618294 0) (1.00682 0.0061595 0) (1.00702 0.00613591 0) (1.00721 0.00611184 0) (1.0074 0.00608708 0) (1.00759 0.00606113 0) (1 0.000155623 0) (1.00002 0.000467596 0) (1.00004 0.000777728 0) (1.00009 0.0010853 0) (1.00014 0.00138936 0) (1.00021 0.00168887 0) (1.00029 0.00198306 0) (1.00038 0.00227141 0) (1.00048 0.00255336 0) (1.00058 0.00282809 0) (1.0007 0.00309462 0) (1.00082 0.00335205 0) (1.00095 0.0035996 0) (1.00108 0.00383623 0) (1.00122 0.00406025 0) (1.00137 0.00426939 0) (1.00152 0.00446123 0) (1.00167 0.00463415 0) (1.00183 0.00478797 0) (1.00199 0.00492434 0) (1.00215 0.00504631 0) (1.00231 0.00515765 0) (1.00248 0.0052619 0) (1.00266 0.00536166 0) (1.00283 0.00545822 0) (1.00301 0.00555156 0) (1.00318 0.00564067 0) (1.00337 0.00572394 0) (1.00355 0.00579962 0) (1.00373 0.00586609 0) (1.00392 0.00592208 0) (1.00411 0.00596678 0) (1.0043 0.00599989 0) (1.00449 0.00602159 0) (1.00468 0.00603252 0) (1.00487 0.00603373 0) (1.00507 0.00602657 0) (1.00526 0.00601257 0) (1.00545 0.00599332 0) (1.00565 0.00597032 0) (1.00584 0.00594493 0) (1.00604 0.0059182 0) (1.00623 0.00589095 0) (1.00642 0.00586366 0) (1.00661 0.00583659 0) (1.00681 0.00580975 0) (1.007 0.00578304 0) (1.00719 0.00575615 0) (1.00737 0.00572887 0) (1.00756 0.00570071 0) (1 0.000148146 0) (1.00002 0.00044532 0) (1.00004 0.000740983 0) (1.00009 0.00103448 0) (1.00014 0.00132493 0) (1.00021 0.00161133 0) (1.00029 0.00189293 0) (1.00038 0.00216925 0) (1.00048 0.00243972 0) (1.00058 0.00270351 0) (1.0007 0.00295963 0) (1.00082 0.00320717 0) (1.00095 0.00344531 0) (1.00109 0.00367298 0) (1.00123 0.00388847 0) (1.00138 0.00408944 0) (1.00153 0.00427347 0) (1.00168 0.00443884 0) (1.00184 0.00458537 0) (1.002 0.00471461 0) (1.00217 0.00482959 0) (1.00233 0.00493404 0) (1.0025 0.00503146 0) (1.00268 0.00512444 0) (1.00285 0.00521427 0) (1.00303 0.00530094 0) (1.00321 0.00538343 0) (1.00339 0.00546019 0) (1.00358 0.00552944 0) (1.00376 0.00558961 0) (1.00395 0.00563943 0) (1.00414 0.00567811 0) (1.00433 0.00570536 0) (1.00452 0.00572138 0) (1.00471 0.00572682 0) (1.0049 0.00572274 0) (1.00509 0.00571049 0) (1.00528 0.00569162 0) (1.00547 0.00566772 0) (1.00566 0.00564032 0) (1.00585 0.00561075 0) (1.00604 0.00558011 0) (1.00623 0.00554918 0) (1.00642 0.00551848 0) (1.00661 0.00548826 0) (1.0068 0.00545853 0) (1.00698 0.00542921 0) (1.00717 0.0054 0) (1.00735 0.00537067 0) (1.00753 0.00534075 0) (1 0.000140428 0) (1.00002 0.000422314 0) (1.00004 0.000703017 0) (1.00009 0.000981952 0) (1.00014 0.00125827 0) (1.00021 0.00153105 0) (1.00029 0.00179955 0) (1.00038 0.00206331 0) (1.00048 0.00232177 0) (1.00059 0.0025741 0) (1.00071 0.0028193 0) (1.00083 0.00305643 0) (1.00096 0.00328467 0) (1.0011 0.0035029 0) (1.00124 0.0037094 0) (1.00139 0.00390181 0) (1.00154 0.00407764 0) (1.0017 0.00423516 0) (1.00186 0.00437412 0) (1.00202 0.00449603 0) (1.00219 0.00460387 0) (1.00236 0.0047013 0) (1.00253 0.00479181 0) (1.0027 0.00487796 0) (1.00288 0.00496105 0) (1.00306 0.00504106 0) (1.00324 0.00511701 0) (1.00342 0.00518734 0) (1.00361 0.00525032 0) (1.00379 0.00530436 0) (1.00398 0.00534824 0) (1.00417 0.00538118 0) (1.00436 0.00540289 0) (1.00455 0.00541359 0) (1.00473 0.00541393 0) (1.00492 0.00540499 0) (1.00511 0.00538812 0) (1.0053 0.00536486 0) (1.00549 0.00533683 0) (1.00568 0.00530553 0) (1.00587 0.00527231 0) (1.00606 0.00523826 0) (1.00624 0.00520419 0) (1.00643 0.00517058 0) (1.00661 0.00513772 0) (1.00679 0.0051056 0) (1.00697 0.00507415 0) (1.00715 0.00504307 0) (1.00733 0.00501214 0) (1.0075 0.0049809 0) (1 0.00013243 0) (1.00002 0.00039847 0) (1.00004 0.000663652 0) (1.00009 0.000927457 0) (1.00014 0.0011891 0) (1.00021 0.00144768 0) (1.00029 0.00170252 0) (1.00038 0.00195315 0) (1.00048 0.00219904 0) (1.00059 0.00243935 0) (1.00071 0.00267308 0) (1.00084 0.00289929 0) (1.00097 0.00311711 0) (1.00111 0.00332543 0) (1.00125 0.0035225 0) (1.0014 0.00370593 0) (1.00156 0.00387321 0) (1.00172 0.00402257 0) (1.00188 0.00415372 0) (1.00205 0.00426811 0) (1.00221 0.00436866 0) (1.00239 0.00445898 0) (1.00256 0.00454253 0) (1.00274 0.00462184 0) (1.00291 0.0046982 0) (1.00309 0.0047716 0) (1.00328 0.00484109 0) (1.00346 0.00490511 0) (1.00364 0.00496197 0) (1.00383 0.0050101 0) (1.00402 0.00504828 0) (1.0042 0.00507577 0) (1.00439 0.00509227 0) (1.00458 0.00509801 0) (1.00477 0.00509367 0) (1.00496 0.0050803 0) (1.00514 0.00505927 0) (1.00533 0.00503212 0) (1.00552 0.00500045 0) (1.0057 0.00496576 0) (1.00589 0.00492941 0) (1.00607 0.00489247 0) (1.00625 0.00485575 0) (1.00644 0.00481974 0) (1.00662 0.00478471 0) (1.00679 0.00475068 0) (1.00697 0.00471756 0) (1.00714 0.00468506 0) (1.00732 0.00465294 0) (1.00749 0.00462079 0) (1 0.000124115 0) (1.00002 0.000373668 0) (1.00005 0.000622694 0) (1.00009 0.000870737 0) (1.00015 0.00111706 0) (1.00022 0.00136083 0) (1.0003 0.00160139 0) (1.00039 0.00183829 0) (1.00049 0.00207101 0) (1.0006 0.00229872 0) (1.00072 0.00252041 0) (1.00085 0.00273515 0) (1.00098 0.00294204 0) (1.00112 0.00313997 0) (1.00127 0.00332715 0) (1.00142 0.00350119 0) (1.00158 0.00365957 0) (1.00174 0.00380048 0) (1.00191 0.00392359 0) (1.00207 0.00403029 0) (1.00224 0.00412344 0) (1.00242 0.00420658 0) (1.00259 0.00428314 0) (1.00277 0.00435561 0) (1.00295 0.00442527 0) (1.00313 0.00449215 0) (1.00332 0.00455527 0) (1.0035 0.00461314 0) (1.00368 0.00466406 0) (1.00387 0.00470649 0) (1.00406 0.00473925 0) (1.00425 0.00476158 0) (1.00443 0.00477322 0) (1.00462 0.0047744 0) (1.00481 0.00476578 0) (1.00499 0.00474843 0) (1.00518 0.00472371 0) (1.00537 0.00469315 0) (1.00555 0.00465833 0) (1.00573 0.00462076 0) (1.00591 0.00458178 0) (1.0061 0.00454245 0) (1.00627 0.00450357 0) (1.00645 0.00446564 0) (1.00663 0.00442892 0) (1.0068 0.00439342 0) (1.00697 0.00435905 0) (1.00714 0.00432555 0) (1.00731 0.00429265 0) (1.00748 0.00425995 0) (1 0.000115438 0) (1.00002 0.000347781 0) (1.00005 0.000579932 0) (1.00009 0.0008115 0) (1.00015 0.00104181 0) (1.00022 0.00127008 0) (1.0003 0.00149567 0) (1.00039 0.00171818 0) (1.0005 0.00193708 0) (1.00061 0.00215157 0) (1.00073 0.00236064 0) (1.00086 0.00256333 0) (1.001 0.00275876 0) (1.00114 0.00294579 0) (1.00129 0.00312263 0) (1.00145 0.00328689 0) (1.00161 0.00343602 0) (1.00177 0.00356821 0) (1.00194 0.00368307 0) (1.00211 0.00378193 0) (1.00228 0.00386757 0) (1.00246 0.0039435 0) (1.00263 0.00401306 0) (1.00281 0.00407873 0) (1.00299 0.00414177 0) (1.00318 0.00420221 0) (1.00336 0.00425911 0) (1.00355 0.00431099 0) (1.00373 0.00435617 0) (1.00392 0.00439316 0) (1.00411 0.00442077 0) (1.00429 0.00443827 0) (1.00448 0.0044454 0) (1.00467 0.0044424 0) (1.00485 0.00442993 0) (1.00504 0.00440906 0) (1.00522 0.00438111 0) (1.00541 0.00434763 0) (1.00559 0.00431016 0) (1.00577 0.00427021 0) (1.00595 0.00422909 0) (1.00613 0.00418786 0) (1.0063 0.00414731 0) (1.00648 0.00410792 0) (1.00665 0.00406995 0) (1.00682 0.00403342 0) (1.00699 0.00399823 0) (1.00715 0.00396412 0) (1.00732 0.00393081 0) (1.00748 0.00389793 0) (0.0509476 0.00689803 0) (0.0755111 0.017896 0) (0.111871 0.0252508 0) (0.144193 0.0286389 0) (0.168753 0.0245434 0) (0.180076 0.0162002 0) (0.178946 0.00800679 0) (0.169852 0.00216544 0) (0.157808 -0.00210592 0) (0.145316 -0.00657577 0) (0.132525 -0.0127744 0) (0.118596 -0.0211387 0) (0.10273 -0.03111 0) (0.0847095 -0.0414408 0) (0.0654855 -0.0501594 0) (0.0511989 -0.0538294 0) (0.0532933 -0.0480697 0) (0.0766718 -0.0298342 0) (0.113836 5.34827e-05 0) (0.15504 0.0389359 0) (0.19377 0.0844977 0) (0.22493 0.134861 0) (0.244312 0.188405 0) (0.248744 0.24353 0) (0.236331 0.298177 0) (0.205413 0.348426 0) (0.1611 0.379634 0) (0.149602 0.360279 0) (0.196209 0.278246 0) (0.269765 0.158195 0) (0.359456 0.0314072 0) (0.454711 -0.0748364 0) (0.541982 -0.143229 0) (0.614878 -0.172161 0) (0.670046 -0.1717 0) (0.703969 -0.155149 0) (0.725899 -0.130032 0) (0.744486 -0.100399 0) (0.748218 -0.074433 0) (0.725542 -0.0600714 0) (0.685854 -0.056758 0) (0.650041 -0.0570396 0) (0.630955 -0.0538033 0) (0.628242 -0.043201 0) (0.637738 -0.0222385 0) (0.657927 0.0117324 0) (0.687226 0.0566347 0) (0.721639 0.103247 0) (0.75611 0.141361 0) (0.786045 0.170356 0) (0.8088 0.200821 0) (0.824909 0.240704 0) (0.837177 0.283729 0) (0.848793 0.322215 0) (0.86381 0.364405 0) (0.887037 0.420919 0) (0.918932 0.48129 0) (0.953074 0.521645 0) (0.982221 0.52493 0) (1.00335 0.482329 0) (1.01562 0.389184 0) (1.01875 0.25067 0) (1.01096 0.0856458 0) (0.98957 -0.0857835 0) (0.956983 -0.251276 0) (0.919688 -0.392474 0) (0.88256 -0.481519 0) (0.848915 -0.508781 0) (0.821122 -0.495007 0) (0.800884 -0.467309 0) (0.789713 -0.43786 0) (0.787521 -0.406086 0) (0.792833 -0.369787 0) (0.803921 -0.330443 0) (0.818929 -0.292275 0) (0.836155 -0.259542 0) (0.854346 -0.234978 0) (0.871795 -0.219745 0) (0.886272 -0.213854 0) (0.89487 -0.21614 0) (0.895192 -0.223999 0) (0.885143 -0.233633 0) (0.865689 -0.241358 0) (0.838898 -0.244653 0) (0.808476 -0.242674 0) (0.775665 -0.234023 0) (0.743945 -0.218938 0) (0.711195 -0.196086 0) (0.685456 -0.167244 0) (0.65709 -0.13315 0) (0.637716 -0.0974658 0) (0.615604 -0.0537078 0) (0.600704 -0.0186227 0) (0.565653 0.0313513 0) (0.575359 0.08051 0) (0.536161 0.159875 0) (0.547451 0.185999 0) (0.430481 0.299852 0) (0.528711 0.334093 0) (0.330157 0.742984 0) (0.0942328 0.00437124 0) (0.106741 0.0135756 0) (0.133964 0.0202064 0) (0.161484 0.0241558 0) (0.184536 0.02172 0) (0.196726 0.0153282 0) (0.197811 0.00862516 0) (0.191507 0.00356792 0) (0.182216 -0.00039896 0) (0.172115 -0.00476537 0) (0.161291 -0.0107938 0) (0.148992 -0.0188916 0) (0.1346 -0.0285334 0) (0.118053 -0.0385256 0) (0.0992823 -0.0472673 0) (0.0809895 -0.0522292 0) (0.0731457 -0.0493289 0) (0.0862619 -0.0341322 0) (0.117804 -0.00593845 0) (0.156648 0.0326876 0) (0.194447 0.0789829 0) (0.225453 0.130848 0) (0.245097 0.186502 0) (0.250006 0.24414 0) (0.238126 0.301551 0) (0.207423 0.35406 0) (0.16894 0.383087 0) (0.174106 0.356472 0) (0.229152 0.268561 0) (0.30636 0.145439 0) (0.398168 0.0167431 0) (0.493465 -0.0894568 0) (0.578207 -0.155949 0) (0.646254 -0.182213 0) (0.697811 -0.178624 0) (0.729416 -0.159302 0) (0.746757 -0.132979 0) (0.762457 -0.102274 0) (0.769997 -0.0733128 0) (0.753256 -0.055283 0) (0.714288 -0.0504419 0) (0.672731 -0.0520808 0) (0.645735 -0.0515172 0) (0.636592 -0.0433311 0) (0.641292 -0.0242788 0) (0.657723 0.00803165 0) (0.684819 0.0516624 0) (0.718905 0.0977217 0) (0.754437 0.136126 0) (0.786129 0.166046 0) (0.810806 0.197598 0) (0.828707 0.238306 0) (0.842518 0.281742 0) (0.855337 0.320072 0) (0.871346 0.361288 0) (0.895876 0.41632 0) (0.929881 0.475732 0) (0.96702 0.516265 0) (0.999762 0.520551 0) (1.0245 0.479343 0) (1.03987 0.387831 0) (1.04537 0.251114 0) (1.03912 0.088076 0) (1.01856 -0.0813431 0) (0.98612 -0.245499 0) (0.947969 -0.386453 0) (0.908626 -0.475942 0) (0.871685 -0.503868 0) (0.840484 -0.490985 0) (0.817413 -0.464566 0) (0.804041 -0.436611 0) (0.800041 -0.406201 0) (0.803605 -0.370972 0) (0.81288 -0.332397 0) (0.826128 -0.294714 0) (0.841608 -0.262223 0) (0.857951 -0.237667 0) (0.873552 -0.222137 0) (0.886445 -0.215556 0) (0.893885 -0.216739 0) (0.893566 -0.223166 0) (0.883535 -0.231287 0) (0.864765 -0.237756 0) (0.839096 -0.240203 0) (0.809933 -0.237764 0) (0.778069 -0.228964 0) (0.747302 -0.213908 0) (0.714988 -0.19143 0) (0.689695 -0.163057 0) (0.661866 -0.129268 0) (0.64274 -0.094345 0) (0.620656 -0.0506119 0) (0.608555 -0.0151084 0) (0.572005 0.0340694 0) (0.583672 0.0816437 0) (0.544491 0.163539 0) (0.568361 0.19111 0) (0.442593 0.306437 0) (0.577867 0.333426 0) (0.40787 0.765638 0) (0.157081 0.00408371 0) (0.157207 0.0111743 0) (0.172092 0.0165153 0) (0.19102 0.020323 0) (0.209618 0.0190194 0) (0.220961 0.0142489 0) (0.223418 0.00887643 0) (0.219478 0.00456401 0) (0.212693 0.000926251 0) (0.204852 -0.00325707 0) (0.195921 -0.00903271 0) (0.185056 -0.0167817 0) (0.171524 -0.0260491 0) (0.155439 -0.035666 0) (0.13697 -0.0441163 0) (0.116637 -0.0495764 0) (0.100614 -0.0489091 0) (0.101727 -0.0370745 0) (0.124858 -0.0113279 0) (0.160031 0.0265718 0) (0.196414 0.073413 0) (0.227013 0.126715 0) (0.246831 0.18448 0) (0.252283 0.244676 0) (0.240976 0.30493 0) (0.21098 0.3592 0) (0.182024 0.384642 0) (0.203512 0.350603 0) (0.26545 0.257739 0) (0.346105 0.131832 0) (0.439435 0.0014193 0) (0.53404 -0.104336 0) (0.615941 -0.168418 0) (0.678579 -0.191778 0) (0.725156 -0.185217 0) (0.754375 -0.163037 0) (0.767865 -0.135348 0) (0.779389 -0.104153 0) (0.788982 -0.0729489 0) (0.778883 -0.0510591 0) (0.743224 -0.0437041 0) (0.69792 -0.0459119 0) (0.663208 -0.0479458 0) (0.646943 -0.0424936 0) (0.646337 -0.0256453 0) (0.65861 0.00474461 0) (0.682943 0.0467875 0) (0.716176 0.091997 0) (0.752461 0.13051 0) (0.785811 0.161301 0) (0.812444 0.193964 0) (0.832243 0.235551 0) (0.847713 0.279461 0) (0.861819 0.317682 0) (0.878838 0.357886 0) (0.904604 0.411299 0) (0.940613 0.469581 0) (0.980671 0.51017 0) (1.01699 0.515435 0) (1.04534 0.475708 0) (1.06384 0.385989 0) (1.07174 0.251257 0) (1.06708 0.0903962 0) (1.04741 -0.0768275 0) (1.0152 -0.239475 0) (0.976299 -0.37999 0) (0.934782 -0.469741 0) (0.894558 -0.498246 0) (0.85996 -0.486317 0) (0.834087 -0.46132 0) (0.818547 -0.434994 0) (0.812745 -0.406027 0) (0.814563 -0.371899 0) (0.821998 -0.334111 0) (0.833421 -0.296934 0) (0.847138 -0.26469 0) (0.861676 -0.240135 0) (0.875467 -0.224317 0) (0.88677 -0.21708 0) (0.893031 -0.217206 0) (0.892064 -0.222258 0) (0.882069 -0.228929 0) (0.863997 -0.234192 0) (0.839417 -0.235807 0) (0.811475 -0.232882 0) (0.780526 -0.223902 0) (0.750699 -0.20884 0) (0.718888 -0.186703 0) (0.694023 -0.158825 0) (0.666756 -0.125332 0) (0.648029 -0.0911507 0) (0.625687 -0.0476273 0) (0.616564 -0.0116418 0) (0.57872 0.0369018 0) (0.5923 0.0825836 0) (0.552279 0.166453 0) (0.589868 0.195864 0) (0.455136 0.311416 0) (0.618934 0.328235 0) (0.477477 0.760888 0) (0.23388 0.00504381 0) (0.226024 0.0107108 0) (0.229381 0.0147072 0) (0.237844 0.0177782 0) (0.249147 0.0169273 0) (0.257237 0.0132484 0) (0.259392 0.00891161 0) (0.256677 0.00523505 0) (0.251595 0.00191015 0) (0.245453 -0.00202879 0) (0.238048 -0.00747754 0) (0.228385 -0.0147633 0) (0.215388 -0.0235213 0) (0.198839 -0.0326927 0) (0.179461 -0.0407426 0) (0.157648 -0.0461347 0) (0.135837 -0.046822 0) (0.124882 -0.0382087 0) (0.1365 -0.0156594 0) (0.165815 0.0207993 0) (0.199999 0.0678637 0) (0.229908 0.122488 0) (0.249806 0.182334 0) (0.255839 0.245127 0) (0.245042 0.30825 0) (0.216995 0.363426 0) (0.201297 0.383948 0) (0.23739 0.342746 0) (0.305216 0.245793 0) (0.389058 0.117405 0) (0.483371 -0.0144172 0) (0.576328 -0.119346 0) (0.654735 -0.180552 0) (0.711703 -0.20069 0) (0.752149 -0.191323 0) (0.778408 -0.166384 0) (0.788954 -0.137106 0) (0.795752 -0.105784 0) (0.805351 -0.0732377 0) (0.801687 -0.0476647 0) (0.771611 -0.0369271 0) (0.725059 -0.0387009 0) (0.68346 -0.0430027 0) (0.659569 -0.0405313 0) (0.653086 -0.026217 0) (0.660811 0.00198019 0) (0.681827 0.0421174 0) (0.713589 0.0861462 0) (0.750208 0.124539 0) (0.785046 0.156107 0) (0.813646 0.189886 0) (0.83545 0.2324 0) (0.852707 0.276853 0) (0.868192 0.315018 0) (0.886239 0.354192 0) (0.913161 0.405856 0) (0.951041 0.462828 0) (0.993921 0.503331 0) (1.03379 0.509541 0) (1.06576 0.471381 0) (1.08743 0.383619 0) (1.09773 0.251061 0) (1.09471 0.092566 0) (1.07599 -0.0722881 0) (1.04409 -0.233241 0) (1.00454 -0.373102 0) (0.960938 -0.462905 0) (0.917473 -0.491897 0) (0.879505 -0.480986 0) (0.850877 -0.457558 0) (0.833217 -0.432995 0) (0.825624 -0.40555 0) (0.825693 -0.372552 0) (0.831269 -0.335566 0) (0.840814 -0.298916 0) (0.852736 -0.266932 0) (0.865505 -0.242376 0) (0.877545 -0.226279 0) (0.887278 -0.218418 0) (0.892345 -0.217534 0) (0.890716 -0.221272 0) (0.880756 -0.226563 0) (0.863376 -0.230667 0) (0.839836 -0.231467 0) (0.813073 -0.228027 0) (0.783014 -0.218838 0) (0.754114 -0.203744 0) (0.722889 -0.181909 0) (0.698451 -0.154551 0) (0.671744 -0.121359 0) (0.653599 -0.0878729 0) (0.630728 -0.0447577 0) (0.624673 -0.00825295 0) (0.585807 0.0398004 0) (0.601307 0.0834501 0) (0.559524 0.168454 0) (0.611407 0.200283 0) (0.469261 0.314942 0) (0.649001 0.319237 0) (0.53961 0.745076 0) (0.318412 0.00656309 0) (0.307449 0.0115388 0) (0.303404 0.0146377 0) (0.303023 0.0168316 0) (0.30619 0.01591 0) (0.309089 0.0127386 0) (0.308981 0.00902937 0) (0.305855 0.00578985 0) (0.301194 0.00271929 0) (0.295764 -0.000981604 0) (0.289151 -0.006066 0) (0.28021 -0.0127983 0) (0.267541 -0.0208655 0) (0.250181 -0.0293956 0) (0.228629 -0.0369673 0) (0.204326 -0.0420371 0) (0.178331 -0.0432511 0) (0.156963 -0.037208 0) (0.154761 -0.0183595 0) (0.175068 0.0157194 0) (0.205645 0.0624622 0) (0.234439 0.118207 0) (0.254303 0.180072 0) (0.260854 0.2455 0) (0.250492 0.311367 0) (0.226775 0.366229 0) (0.226983 0.380753 0) (0.275514 0.333025 0) (0.348536 0.232768 0) (0.435347 0.102218 0) (0.530192 -0.0306344 0) (0.620395 -0.13431 0) (0.694233 -0.19222 0) (0.745285 -0.20879 0) (0.778829 -0.196743 0) (0.80121 -0.169323 0) (0.809589 -0.138277 0) (0.811872 -0.106953 0) (0.819528 -0.0739773 0) (0.821214 -0.0452742 0) (0.798385 -0.0305288 0) (0.753359 -0.0307298 0) (0.706389 -0.0366756 0) (0.674713 -0.0372897 0) (0.661759 -0.0258581 0) (0.664538 -0.000146066 0) (0.681724 0.0377731 0) (0.711338 0.0802661 0) (0.747747 0.118255 0) (0.783808 0.15046 0) (0.814349 0.185333 0) (0.83826 0.228814 0) (0.857437 0.273876 0) (0.874411 0.312054 0) (0.893517 0.350196 0) (0.921519 0.399994 0) (0.96112 0.455466 0) (1.0067 0.495729 0) (1.05006 0.502841 0) (1.08565 0.466335 0) (1.11049 0.380693 0) (1.12324 0.250499 0) (1.1219 0.094572 0) (1.10417 -0.0677189 0) (1.07265 -0.226784 0) (1.03256 -0.36577 0) (0.986953 -0.455403 0) (0.940298 -0.48478 0) (0.899017 -0.474956 0) (0.867715 -0.453257 0) (0.848008 -0.430597 0) (0.838652 -0.404753 0) (0.83697 -0.37291 0) (0.840679 -0.336737 0) (0.848305 -0.300633 0) (0.858394 -0.26893 0) (0.869421 -0.244382 0) (0.87978 -0.228016 0) (0.887984 -0.219558 0) (0.891857 -0.217711 0) (0.889558 -0.220202 0) (0.87962 -0.224187 0) (0.862903 -0.227181 0) (0.840339 -0.227181 0) (0.814698 -0.223199 0) (0.785519 -0.213774 0) (0.757532 -0.198628 0) (0.72698 -0.177057 0) (0.702991 -0.150235 0) (0.676817 -0.117367 0) (0.659461 -0.084504 0) (0.635828 -0.0419941 0) (0.63282 -0.00497691 0) (0.593267 0.0427271 0) (0.610725 0.0843401 0) (0.566347 0.169475 0) (0.632216 0.204223 0) (0.486202 0.317521 0) (0.668326 0.307763 0) (0.593474 0.725063 0) (0.406449 0.00825384 0) (0.395029 0.0129285 0) (0.387721 0.015644 0) (0.382259 0.0172183 0) (0.379167 0.0160852 0) (0.376769 0.0130318 0) (0.373257 0.00956476 0) (0.368312 0.00651483 0) (0.362744 0.00357476 0) (0.35688 5.83622e-05 0) (0.350105 -0.00467096 0) (0.341141 -0.0108182 0) (0.328418 -0.01806 0) (0.310362 -0.0256677 0) (0.286339 -0.0325253 0) (0.258068 -0.0371729 0) (0.227769 -0.0383976 0) (0.198236 -0.0340262 0) (0.181757 -0.0188728 0) (0.189499 0.0118555 0) (0.214082 0.0574377 0) (0.240966 0.113937 0) (0.260576 0.177717 0) (0.267437 0.245802 0) (0.257849 0.313997 0) (0.24182 0.367078 0) (0.258852 0.374937 0) (0.317776 0.321589 0) (0.395442 0.218704 0) (0.485019 0.0863146 0) (0.579879 -0.0470852 0) (0.666218 -0.148986 0) (0.734143 -0.203242 0) (0.778879 -0.215942 0) (0.805168 -0.201285 0) (0.822647 -0.171792 0) (0.829277 -0.138935 0) (0.827867 -0.107516 0) (0.832086 -0.0748974 0) (0.837334 -0.0439338 0) (0.82258 -0.0249098 0) (0.781834 -0.0223821 0) (0.731658 -0.0290575 0) (0.692545 -0.0326444 0) (0.672582 -0.0244211 0) (0.669992 -0.00151279 0) (0.682897 0.0338852 0) (0.70967 0.0744779 0) (0.745203 0.111729 0) (0.7821 0.144372 0) (0.81449 0.180276 0) (0.840594 0.224746 0) (0.861833 0.270488 0) (0.880418 0.30876 0) (0.900632 0.34589 0) (0.929639 0.393717 0) (0.970793 0.447497 0) (1.01892 0.487346 0) (1.06568 0.495301 0) (1.10487 0.46053 0) (1.13288 0.377176 0) (1.14811 0.249544 0) (1.1485 0.0963879 0) (1.1318 -0.0631391 0) (1.10076 -0.220123 0) (1.06023 -0.357996 0) (1.01269 -0.447216 0) (0.962913 -0.476868 0) (0.918409 -0.468207 0) (0.884543 -0.448406 0) (0.862887 -0.42779 0) (0.851808 -0.40362 0) (0.848375 -0.372956 0) (0.850208 -0.337602 0) (0.855891 -0.302063 0) (0.864114 -0.270666 0) (0.873413 -0.246146 0) (0.882158 -0.229523 0) (0.88889 -0.220492 0) (0.891591 -0.217728 0) (0.888621 -0.219041 0) (0.87868 -0.221797 0) (0.862577 -0.223731 0) (0.840912 -0.222944 0) (0.816329 -0.2184 0) (0.788028 -0.208713 0) (0.760943 -0.193501 0) (0.731153 -0.17216 0) (0.707658 -0.145876 0) (0.681968 -0.113374 0) (0.665613 -0.0810415 0) (0.641052 -0.0393211 0) (0.64094 -0.00184997 0) (0.601101 0.0456387 0) (0.62054 0.0853298 0) (0.573007 0.169553 0) (0.651448 0.20739 0) (0.506959 0.31981 0) (0.678625 0.294859 0) (0.637888 0.700499 0) (0.49537 0.00999961 0) (0.484325 0.0144804 0) (0.476034 0.0170969 0) (0.468678 0.0183556 0) (0.462325 0.0171346 0) (0.45631 0.0141079 0) (0.449768 0.0106785 0) (0.4426 0.00762939 0) (0.435388 0.00470132 0) (0.428259 0.00128576 0) (0.420507 -0.00313602 0) (0.410783 -0.00870965 0) (0.397439 -0.015086 0) (0.378754 -0.0215557 0) (0.35303 -0.0273001 0) (0.320525 -0.0312773 0) (0.284691 -0.0322906 0) (0.248268 -0.0287919 0) (0.218968 -0.0168235 0) (0.211404 0.0098707 0) (0.226584 0.0531839 0) (0.250022 0.109817 0) (0.268875 0.175325 0) (0.275806 0.245984 0) (0.268221 0.315706 0) (0.263338 0.365508 0) (0.296519 0.366522 0) (0.364084 0.308577 0) (0.445915 0.203621 0) (0.537856 0.0697302 0) (0.63205 -0.0636238 0) (0.713547 -0.163111 0) (0.774192 -0.213386 0) (0.811993 -0.222018 0) (0.831014 -0.204779 0) (0.842719 -0.173683 0) (0.847575 -0.139168 0) (0.843629 -0.107427 0) (0.843636 -0.075704 0) (0.850252 -0.0435515 0) (0.843434 -0.0204044 0) (0.809387 -0.0141169 0) (0.75867 -0.0203628 0) (0.713105 -0.0265272 0) (0.685778 -0.0217567 0) (0.677358 -0.00199235 0) (0.685589 0.0305881 0) (0.708867 0.0689234 0) (0.742765 0.105061 0) (0.779969 0.137875 0) (0.814021 0.174692 0) (0.842372 0.22015 0) (0.865816 0.266641 0) (0.886151 0.305102 0) (0.907538 0.341258 0) (0.937479 0.387026 0) (0.980001 0.438921 0) (1.03049 0.478166 0) (1.08053 0.486889 0) (1.12327 0.453926 0) (1.15446 0.373032 0) (1.1722 0.248168 0) (1.17437 0.0979958 0) (1.15874 -0.0585618 0) (1.12826 -0.213267 0) (1.08739 -0.349776 0) (1.03799 -0.438321 0) (0.985178 -0.468133 0) (0.937573 -0.460721 0) (0.901292 -0.442997 0) (0.877809 -0.424567 0) (0.865064 -0.402135 0) (0.859883 -0.372668 0) (0.859835 -0.338139 0) (0.863561 -0.303181 0) (0.869897 -0.272122 0) (0.877475 -0.247656 0) (0.884661 -0.230797 0) (0.889985 -0.221215 0) (0.891554 -0.217578 0) (0.887925 -0.217784 0) (0.877953 -0.219388 0) (0.862399 -0.220307 0) (0.841549 -0.21875 0) (0.817954 -0.213629 0) (0.790539 -0.203658 0) (0.764343 -0.188376 0) (0.735398 -0.167232 0) (0.712466 -0.141477 0) (0.687196 -0.109397 0) (0.672035 -0.0774911 0) (0.646483 -0.0367163 0) (0.648969 0.0011 0) (0.60932 0.0484836 0) (0.630677 0.0864734 0) (0.579904 0.168815 0) (0.668269 0.209421 0) (0.532034 0.322275 0) (0.682261 0.28188 0) (0.671927 0.669415 0) (0.58295 0.0117708 0) (0.572511 0.0160604 0) (0.564137 0.0186698 0) (0.556486 0.0197807 0) (0.549101 0.0186067 0) (0.541494 0.0156743 0) (0.533248 0.0122638 0) (0.524492 0.00915707 0) (0.515781 0.00618316 0) (0.507233 0.00282741 0) (0.498172 -0.00134351 0) (0.487305 -0.00636305 0) (0.472955 -0.0118846 0) (0.453466 -0.0171626 0) (0.427006 -0.0214507 0) (0.391872 -0.024239 0) (0.350242 -0.0247674 0) (0.306759 -0.0216459 0) (0.266759 -0.0119795 0) (0.243159 0.0104507 0) (0.245146 0.0502903 0) (0.262575 0.106111 0) (0.279669 0.172977 0) (0.286646 0.24588 0) (0.283218 0.31596 0) (0.291977 0.361188 0) (0.339611 0.355645 0) (0.414338 0.294098 0) (0.49978 0.187542 0) (0.593402 0.0525328 0) (0.686125 -0.0800983 0) (0.761918 -0.176428 0) (0.81407 -0.22239 0) (0.844154 -0.226889 0) (0.856099 -0.207098 0) (0.861503 -0.174865 0) (0.864174 -0.139045 0) (0.85887 -0.106729 0) (0.8547 -0.0761314 0) (0.860474 -0.0439053 0) (0.860486 -0.0172327 0) (0.834912 -0.00642982 0) (0.786584 -0.0109351 0) (0.736242 -0.0189539 0) (0.70154 -0.0177257 0) (0.686817 -0.00145046 0) (0.690012 0.0280157 0) (0.709223 0.0637577 0) (0.740684 0.0983833 0) (0.777523 0.131029 0) (0.812923 0.168575 0) (0.843516 0.214982 0) (0.8693 0.262284 0) (0.891537 0.301039 0) (0.914184 0.336284 0) (0.944995 0.379928 0) (0.988689 0.429747 0) (1.04131 0.468181 0) (1.09448 0.477573 0) (1.14071 0.446486 0) (1.17505 0.368219 0) (1.19534 0.246333 0) (1.19933 0.0993786 0) (1.18482 -0.0540008 0) (1.15499 -0.206228 0) (1.11386 -0.341107 0) (1.06268 -0.428699 0) (1.00694 -0.458551 0) (0.956403 -0.452487 0) (0.917892 -0.43703 0) (0.892732 -0.420923 0) (0.878391 -0.400285 0) (0.871469 -0.372026 0) (0.869533 -0.338325 0) (0.871301 -0.303964 0) (0.875744 -0.273276 0) (0.881605 -0.248902 0) (0.887275 -0.231831 0) (0.891251 -0.221725 0) (0.891743 -0.217257 0) (0.887479 -0.216423 0) (0.877448 -0.21695 0) (0.862367 -0.216901 0) (0.842249 -0.21459 0) (0.819566 -0.208887 0) (0.793054 -0.198616 0) (0.767736 -0.183263 0) (0.739709 -0.162293 0) (0.717424 -0.13704 0) (0.692512 -0.105453 0) (0.678684 -0.0738674 0) (0.652216 -0.0341511 0) (0.656839 0.00385394 0) (0.617942 0.0512079 0) (0.640991 0.087792 0) (0.587552 0.167461 0) (0.681956 0.209954 0) (0.561243 0.324992 0) (0.682169 0.270307 0) (0.695655 0.631536 0) (0.6669 0.0135343 0) (0.657239 0.0176166 0) (0.64921 0.0202344 0) (0.641893 0.0212686 0) (0.634574 0.0201988 0) (0.626716 0.0174304 0) (0.618007 0.0140931 0) (0.608632 0.0109605 0) (0.599105 0.00795738 0) (0.589553 0.00467327 0) (0.579396 0.00076016 0) (0.567463 -0.00373237 0) (0.55218 -0.0084103 0) (0.531873 -0.0125354 0) (0.505119 -0.0152817 0) (0.469662 -0.0163481 0) (0.424491 -0.0157768 0) (0.373999 -0.0126426 0) (0.324672 -0.0044345 0) (0.28637 0.0140765 0) (0.272326 0.0494848 0) (0.280316 0.10325 0) (0.294054 0.170765 0) (0.301347 0.245197 0) (0.304527 0.314244 0) (0.327856 0.353983 0) (0.387795 0.342504 0) (0.468384 0.278255 0) (0.55667 0.170543 0) (0.65119 0.0348371 0) (0.741535 -0.0963311 0) (0.81073 -0.18868 0) (0.853388 -0.229978 0) (0.87493 -0.230416 0) (0.880071 -0.20816 0) (0.879092 -0.175204 0) (0.878945 -0.138597 0) (0.873198 -0.105539 0) (0.865622 -0.0759905 0) (0.868721 -0.0446744 0) (0.873636 -0.0154584 0) (0.857408 0.000204582 0) (0.814364 -0.00123624 0) (0.761571 -0.0100646 0) (0.719989 -0.0122104 0) (0.698548 0.000260652 0) (0.696342 0.0263019 0) (0.711016 0.0591411 0) (0.739259 0.0918526 0) (0.774943 0.123929 0) (0.811226 0.161938 0) (0.843962 0.209202 0) (0.872194 0.257359 0) (0.896495 0.296525 0) (0.920509 0.330947 0) (0.95214 0.372429 0) (0.9968 0.419989 0) (1.0513 0.457391 0) (1.10739 0.467333 0) (1.15701 0.438172 0) (1.19448 0.362702 0) (1.21736 0.243998 0) (1.22321 0.100503 0) (1.20987 -0.0494781 0) (1.18078 -0.199021 0) (1.13947 -0.331986 0) (1.08658 -0.418331 0) (1.02805 -0.448108 0) (0.97478 -0.443504 0) (0.934272 -0.430513 0) (0.907609 -0.416861 0) (0.891755 -0.398057 0) (0.883103 -0.371009 0) (0.879276 -0.338138 0) (0.879093 -0.304392 0) (0.881649 -0.274109 0) (0.885803 -0.24987 0) (0.889988 -0.232621 0) (0.892674 -0.222018 0) (0.892145 -0.216765 0) (0.887279 -0.214953 0) (0.877163 -0.214473 0) (0.862477 -0.2135 0) (0.843018 -0.210455 0) (0.821174 -0.204174 0) (0.795584 -0.193593 0) (0.771133 -0.178172 0) (0.744078 -0.157362 0) (0.722531 -0.132568 0) (0.697936 -0.101552 0) (0.685497 -0.0701939 0) (0.658355 -0.0315938 0) (0.664486 0.00639517 0) (0.627004 0.0537603 0) (0.651271 0.0892594 0) (0.596521 0.165757 0) (0.692022 0.208705 0) (0.593569 0.327618 0) (0.682044 0.261555 0) (0.709614 0.588398 0) (0.744931 0.0152439 0) (0.736229 0.0191021 0) (0.728869 0.0217197 0) (0.722213 0.022717 0) (0.715461 0.0217656 0) (0.708029 0.0191957 0) (0.699614 0.0159845 0) (0.690364 0.0128804 0) (0.680702 0.00990115 0) (0.670745 0.00672759 0) (0.659982 0.00311729 0) (0.647364 -0.000853455 0) (0.631536 -0.00469506 0) (0.610872 -0.00769206 0) (0.584051 -0.00901067 0) (0.549646 -0.00818157 0) (0.504753 -0.00571814 0) (0.449856 -0.0017262 0) (0.392161 0.00560104 0) (0.34136 0.0208926 0) (0.310644 0.0514619 0) (0.305676 0.101809 0) (0.313965 0.168807 0) (0.321931 0.243602 0) (0.333507 0.310184 0) (0.37076 0.343942 0) (0.440784 0.327316 0) (0.525901 0.261181 0) (0.616132 0.152741 0) (0.710886 0.016807 0) (0.797789 -0.112091 0) (0.859296 -0.199595 0) (0.891658 -0.235876 0) (0.903941 -0.23246 0) (0.90255 -0.207931 0) (0.895548 -0.174589 0) (0.891939 -0.137809 0) (0.886227 -0.104015 0) (0.876506 -0.0752012 0) (0.875803 -0.0454957 0) (0.883177 -0.014974 0) (0.876117 0.00540232 0) (0.840865 0.00819774 0) (0.788446 -0.000133138 0) (0.741123 -0.00516879 0) (0.712731 0.00328607 0) (0.704729 0.0255822 0) (0.71448 0.0552313 0) (0.738809 0.0856462 0) (0.772477 0.116707 0) (0.80902 0.154825 0) (0.843677 0.202784 0) (0.874411 0.251811 0) (0.900937 0.291505 0) (0.926447 0.325222 0) (0.958865 0.364537 0) (1.00428 0.40967 0) (1.06037 0.445807 0) (1.11914 0.456154 0) (1.17201 0.428951 0) (1.21256 0.356438 0) (1.23807 0.241141 0) (1.24582 0.101318 0) (1.2337 -0.045031 0) (1.20542 -0.191663 0) (1.164 -0.32241 0) (1.10948 -0.407203 0) (1.04833 -0.436795 0) (0.992588 -0.433782 0) (0.950359 -0.423462 0) (0.922394 -0.412386 0) (0.905119 -0.395441 0) (0.894756 -0.369596 0) (0.889036 -0.337556 0) (0.886914 -0.304445 0) (0.887606 -0.274605 0) (0.890069 -0.250545 0) (0.892795 -0.233157 0) (0.894239 -0.222093 0) (0.89275 -0.216099 0) (0.887315 -0.213372 0) (0.877094 -0.211947 0) (0.86273 -0.210095 0) (0.84387 -0.206336 0) (0.822792 -0.199492 0) (0.798145 -0.188596 0) (0.77455 -0.173114 0) (0.748504 -0.152458 0) (0.727778 -0.128071 0) (0.703502 -0.0976985 0) (0.692392 -0.0665044 0) (0.665001 -0.0290122 0) (0.671855 0.00871504 0) (0.636547 0.0561013 0) (0.661269 0.0907969 0) (0.607324 0.164001 0) (0.698357 0.205561 0) (0.627246 0.329414 0) (0.685713 0.256787 0) (0.715956 0.542719 0) (0.814932 0.0168465 0) (0.807357 0.0204674 0) (0.800932 0.023064 0) (0.795186 0.0240542 0) (0.7893 0.0232268 0) (0.782661 0.0208719 0) (0.774957 0.0178271 0) (0.766284 0.0148041 0) (0.756972 0.0119005 0) (0.747106 0.00888925 0) (0.736239 0.0056124 0) (0.72343 0.00219945 0) (0.707508 -0.000821572 0) (0.687129 -0.00271882 0) (0.660855 -0.002688 0) (0.627858 -0.000115501 0) (0.586012 0.0046871 0) (0.531786 0.010576 0) (0.46858 0.0179272 0) (0.407393 0.0307913 0) (0.361608 0.0566669 0) (0.341483 0.10242 0) (0.341856 0.16729 0) (0.3505 0.240867 0) (0.370986 0.303654 0) (0.420362 0.331277 0) (0.498255 0.310343 0) (0.586366 0.243081 0) (0.677742 0.134215 0) (0.772216 -0.00140283 0) (0.854376 -0.127085 0) (0.906852 -0.208873 0) (0.928293 -0.239829 0) (0.930859 -0.232887 0) (0.923181 -0.206421 0) (0.910875 -0.172959 0) (0.903358 -0.136621 0) (0.89767 -0.102311 0) (0.887228 -0.0738007 0) (0.882476 -0.0460252 0) (0.889757 -0.0155142 0) (0.890621 0.00891265 0) (0.864944 0.0167948 0) (0.815964 0.0104339 0) (0.764743 0.0033404 0) (0.729518 0.00775612 0) (0.715319 0.025998 0) (0.719803 0.0521802 0) (0.739638 0.0799496 0) (0.770429 0.109527 0) (0.806468 0.147318 0) (0.842668 0.195723 0) (0.875874 0.245588 0) (0.90477 0.285922 0) (0.93192 0.319075 0) (0.96512 0.356261 0) (1.01108 0.398821 0) (1.06844 0.433449 0) (1.12959 0.444036 0) (1.18552 0.418795 0) (1.2291 0.349389 0) (1.25726 0.237716 0) (1.26693 0.101857 0) (1.25611 -0.0406481 0) (1.22873 -0.184165 0) (1.18724 -0.312374 0) (1.13117 -0.395302 0) (1.06759 -0.424614 0) (1.00971 -0.423346 0) (0.966085 -0.415906 0) (0.937041 -0.40751 0) (0.918445 -0.392427 0) (0.906392 -0.367764 0) (0.898781 -0.336555 0) (0.894741 -0.304103 0) (0.893601 -0.274746 0) (0.8944 -0.250913 0) (0.895694 -0.233432 0) (0.895939 -0.221946 0) (0.893544 -0.215261 0) (0.887575 -0.211674 0) (0.877238 -0.209364 0) (0.863131 -0.206674 0) (0.844823 -0.202226 0) (0.824448 -0.19484 0) (0.800757 -0.183632 0) (0.778005 -0.168094 0) (0.752987 -0.147599 0) (0.73314 -0.123561 0) (0.70925 -0.0938902 0) (0.699278 -0.062841 0) (0.672235 -0.0263768 0) (0.678916 0.0108136 0) (0.646608 0.058207 0) (0.670744 0.0922808 0) (0.620294 0.16247 0) (0.701352 0.20068 0) (0.659959 0.329473 0) (0.696118 0.256299 0) (0.718078 0.497642 0) (0.875195 0.0182885 0) (0.868873 0.0216655 0) (0.863573 0.0242135 0) (0.858923 0.0252167 0) (0.854113 0.0245193 0) (0.848506 0.02239 0) (0.841775 0.0195461 0) (0.833964 0.0166518 0) (0.825329 0.0138731 0) (0.815921 0.0110677 0) (0.805354 0.00815242 0) (0.792817 0.00531968 0) (0.777261 0.00309288 0) (0.757663 0.00224674 0) (0.732787 0.00357114 0) (0.70161 0.00765545 0) (0.663459 0.0145945 0) (0.614425 0.0230946 0) (0.551694 0.0319194 0) (0.483396 0.0434797 0) (0.425067 0.0651748 0) (0.390048 0.105615 0) (0.380341 0.166539 0) (0.388564 0.23699 0) (0.416987 0.294782 0) (0.476155 0.316315 0) (0.559698 0.291907 0) (0.649105 0.224145 0) (0.74109 0.115146 0) (0.83478 -0.0195453 0) (0.910627 -0.140932 0) (0.952552 -0.216183 0) (0.962635 -0.241616 0) (0.9554 -0.231587 0) (0.941692 -0.203672 0) (0.925018 -0.170314 0) (0.913497 -0.13495 0) (0.907406 -0.100546 0) (0.897493 -0.0719288 0) (0.889308 -0.0459957 0) (0.894278 -0.0166821 0) (0.900904 0.0106671 0) (0.885603 0.0240124 0) (0.843014 0.0210863 0) (0.79038 0.0131256 0) (0.748987 0.013764 0) (0.728266 0.027698 0) (0.727135 0.0501359 0) (0.742015 0.0749472 0) (0.769131 0.102577 0) (0.803804 0.139535 0) (0.840998 0.188043 0) (0.876531 0.238647 0) (0.907903 0.279715 0) (0.936846 0.312471 0) (0.97085 0.347605 0) (1.01716 0.387478 0) (1.07543 0.420355 0) (1.13864 0.43099 0) (1.19736 0.40769 0) (1.2439 0.341517 0) (1.27472 0.23367 0) (1.28632 0.102095 0) (1.27687 -0.0363606 0) (1.25047 -0.176542 0) (1.20893 -0.301875 0) (1.15142 -0.382624 0) (1.08567 -0.411583 0) (1.02602 -0.412235 0) (0.981383 -0.407884 0) (0.951503 -0.402249 0) (0.93169 -0.389007 0) (0.917972 -0.365493 0) (0.908479 -0.335115 0) (0.902548 -0.303349 0) (0.899619 -0.274518 0) (0.898792 -0.250962 0) (0.898683 -0.233436 0) (0.897772 -0.221575 0) (0.89452 -0.214248 0) (0.888047 -0.209857 0) (0.87759 -0.206713 0) (0.863689 -0.20323 0) (0.845904 -0.198119 0) (0.826173 -0.190221 0) (0.803443 -0.178708 0) (0.781515 -0.163121 0) (0.757531 -0.142798 0) (0.73858 -0.119056 0) (0.715222 -0.0901179 0) (0.706061 -0.0592508 0) (0.680101 -0.0236664 0) (0.685675 0.0126998 0) (0.657187 0.0600688 0) (0.679528 0.0935644 0) (0.635431 0.161349 0) (0.702069 0.194501 0) (0.689213 0.32703 0) (0.714027 0.259519 0) (0.720427 0.456208 0) (0.924657 0.0195243 0) (0.919645 0.0226576 0) (0.915566 0.0251285 0) (0.912107 0.0261543 0) (0.90849 0.0255922 0) (0.904059 0.0236961 0) (0.898467 0.0210821 0) (0.891711 0.0183608 0) (0.883978 0.015751 0) (0.875307 0.0131898 0) (0.865359 0.0106572 0) (0.853461 0.00839312 0) (0.83872 0.00692969 0) (0.820289 0.00705363 0) (0.797377 0.00955802 0) (0.768862 0.0149804 0) (0.73434 0.0235933 0) (0.692072 0.0347529 0) (0.636263 0.046378 0) (0.567346 0.0583339 0) (0.499879 0.07676 0) (0.45186 0.111626 0) (0.431515 0.167011 0) (0.437334 0.232306 0) (0.47129 0.283902 0) (0.537722 0.299436 0) (0.624508 0.272369 0) (0.713442 0.204548 0) (0.805785 0.0956175 0) (0.897961 -0.037368 0) (0.965642 -0.153186 0) (0.995478 -0.221178 0) (0.994005 -0.241075 0) (0.977332 -0.228498 0) (0.957929 -0.199755 0) (0.937888 -0.166721 0) (0.922678 -0.13271 0) (0.91552 -0.0987708 0) (0.906936 -0.0697952 0) (0.896593 -0.0452684 0) (0.897764 -0.0180173 0) (0.907376 0.0108158 0) (0.902103 0.0294225 0) (0.868408 0.0311994 0) (0.817323 0.0238423 0) (0.771088 0.0213217 0) (0.743735 0.030829 0) (0.736616 0.0492479 0) (0.746159 0.0708162 0) (0.768916 0.0960612 0) (0.801319 0.131637 0) (0.838801 0.179806 0) (0.87637 0.230965 0) (0.910254 0.272824 0) (0.94114 0.305365 0) (0.975995 0.338572 0) (1.02246 0.375684 0) (1.0813 0.40657 0) (1.14615 0.417045 0) (1.20735 0.395628 0) (1.25673 0.332785 0) (1.29022 0.228981 0) (1.30378 0.101908 0) (1.2958 -0.0322516 0) (1.27039 -0.168817 0) (1.22882 -0.290909 0) (1.16999 -0.369173 0) (1.10239 -0.397734 0) (1.04142 -0.40051 0) (0.996194 -0.39945 0) (0.965738 -0.396626 0) (0.944808 -0.385173 0) (0.929453 -0.362761 0) (0.918096 -0.333213 0) (0.910307 -0.302167 0) (0.905642 -0.273908 0) (0.903237 -0.25068 0) (0.901763 -0.23316 0) (0.899735 -0.220975 0) (0.895671 -0.213059 0) (0.888723 -0.207919 0) (0.878151 -0.203989 0) (0.864418 -0.199757 0) (0.847137 -0.19401 0) (0.828002 -0.185632 0) (0.806221 -0.173829 0) (0.785097 -0.158198 0) (0.762146 -0.138064 0) (0.744056 -0.114581 0) (0.721454 -0.0863674 0) (0.712672 -0.05578 0) (0.688578 -0.0208744 0) (0.692196 0.0143924 0) (0.668217 0.0616883 0) (0.687605 0.0945119 0) (0.652294 0.160676 0) (0.702182 0.187681 0) (0.712944 0.321417 0) (0.737825 0.265265 0) (0.727561 0.42081 0) (0.96308 0.0205245 0) (0.959348 0.0234206 0) (0.956479 0.0257885 0) (0.954202 0.0268375 0) (0.951785 0.0264135 0) (0.948569 0.0247539 0) (0.944184 0.0223917 0) (0.938583 0.0198818 0) (0.931895 0.0174792 0) (0.92415 0.0151924 0) (0.915067 0.0130567 0) (0.904082 0.0113454 0) (0.890501 0.0106045 0) (0.873615 0.011593 0) (0.852939 0.0151321 0) (0.827756 0.0217748 0) (0.797276 0.0317302 0) (0.761257 0.0449352 0) (0.715592 0.0597672 0) (0.654322 0.0740257 0) (0.584294 0.0908794 0) (0.525935 0.12038 0) (0.49553 0.169039 0) (0.497539 0.227373 0) (0.534421 0.271553 0) (0.605269 0.281161 0) (0.691981 0.252185 0) (0.77868 0.184535 0) (0.871508 0.0756221 0) (0.960975 -0.0545486 0) (1.01829 -0.163335 0) (1.03467 -0.22352 0) (1.02176 -0.238118 0) (0.996485 -0.223625 0) (0.971873 -0.19476 0) (0.949392 -0.162299 0) (0.931187 -0.129847 0) (0.922283 -0.0969594 0) (0.915228 -0.0676216 0) (0.904312 -0.0438667 0) (0.901187 -0.0190741 0) (0.910849 0.00970334 0) (0.914077 0.0327666 0) (0.89097 0.0401238 0) (0.844593 0.0349872 0) (0.795561 0.0303219 0) (0.761871 0.0355161 0) (0.748406 0.0496732 0) (0.752255 0.0677269 0) (0.77009 0.0901883 0) (0.799347 0.123816 0) (0.836279 0.171116 0) (0.875428 0.222546 0) (0.911758 0.265198 0) (0.944714 0.297708 0) (0.980493 0.32916 0) (1.02696 0.363483 0) (1.08599 0.392156 0) (1.15206 0.402248 0) (1.21532 0.382616 0) (1.26736 0.323154 0) (1.3035 0.223619 0) (1.31908 0.101319 0) (1.31265 -0.0282881 0) (1.28818 -0.160973 0) (1.2466 -0.279476 0) (1.18667 -0.354967 0) (1.11758 -0.383121 0) (1.05582 -0.388249 0) (1.01047 -0.390668 0) (0.979704 -0.390664 0) (0.957753 -0.380918 0) (0.940789 -0.359547 0) (0.927592 -0.33083 0) (0.917992 -0.300542 0) (0.911651 -0.272907 0) (0.907729 -0.250058 0) (0.904935 -0.232597 0) (0.901831 -0.220142 0) (0.896993 -0.211693 0) (0.889593 -0.205858 0) (0.878919 -0.201188 0) (0.865331 -0.19625 0) (0.848539 -0.189897 0) (0.829965 -0.181074 0) (0.809108 -0.168999 0) (0.788763 -0.15333 0) (0.766843 -0.133398 0) (0.749527 -0.11016 0) (0.727958 -0.0826231 0) (0.719081 -0.0524667 0) (0.697568 -0.0180152 0) (0.698618 0.0159239 0) (0.679531 0.0630669 0) (0.695163 0.0950386 0) (0.670021 0.160294 0) (0.703653 0.181036 0) (0.730089 0.312263 0) (0.764027 0.271865 0) (0.74264 0.392718 0) (0.991085 0.0212814 0) (0.988516 0.0239511 0) (0.986744 0.0261959 0) (0.985539 0.027262 0) (0.984223 0.0269747 0) (0.98215 0.0255503 0) (0.978935 0.0234533 0) (0.974489 0.0211836 0) (0.968896 0.0190188 0) (0.962173 0.0170274 0) (0.954101 0.0152942 0) (0.94422 0.0141151 0) (0.932002 0.014041 0) (0.916938 0.0158029 0) (0.898675 0.0202006 0) (0.876992 0.0278596 0) (0.85116 0.0389482 0) (0.82089 0.0535527 0) (0.784934 0.0709905 0) (0.736794 0.088626 0) (0.673873 0.106251 0) (0.610946 0.131594 0) (0.571238 0.172807 0) (0.568276 0.222599 0) (0.606087 0.25829 0) (0.677826 0.262227 0) (0.760407 0.232013 0) (0.844354 0.164138 0) (0.938259 0.0552136 0) (1.02278 -0.0705599 0) (1.06717 -0.170802 0) (1.06914 -0.222924 0) (1.04537 -0.232761 0) (1.01278 -0.217058 0) (0.983645 -0.188796 0) (0.959474 -0.157207 0) (0.93922 -0.126351 0) (0.928099 -0.095025 0) (0.922177 -0.0655888 0) (0.912176 -0.0419548 0) (0.905296 -0.0194674 0) (0.912439 0.00785474 0) (0.921623 0.0340218 0) (0.909681 0.0472642 0) (0.871 0.0459184 0) (0.821873 0.0404977 0) (0.782739 0.0418267 0) (0.762693 0.0515738 0) (0.760481 0.0658486 0) (0.772929 0.0851639 0) (0.798239 0.116288 0) (0.833702 0.162122 0) (0.873808 0.21343 0) (0.912387 0.256799 0) (0.947491 0.28945 0) (0.984279 0.319362 0) (1.03061 0.350922 0) (1.08948 0.377186 0) (1.15629 0.386668 0) (1.22114 0.368695 0) (1.27554 0.312588 0) (1.31425 0.217551 0) (1.33201 0.100334 0) (1.32713 -0.0244792 0) (1.30346 -0.153014 0) (1.26201 -0.267601 0) (1.20124 -0.340044 0) (1.13109 -0.367821 0) (1.06913 -0.375556 0) (1.02418 -0.381616 0) (0.993364 -0.384391 0) (0.970474 -0.376232 0) (0.951928 -0.355832 0) (0.936928 -0.327946 0) (0.925573 -0.298462 0) (0.917626 -0.271505 0) (0.912256 -0.249089 0) (0.908197 -0.231741 0) (0.90406 -0.219072 0) (0.898484 -0.210145 0) (0.890652 -0.203671 0) (0.879888 -0.198307 0) (0.866433 -0.192709 0) (0.85012 -0.18578 0) (0.832082 -0.176544 0) (0.812113 -0.164219 0) (0.792523 -0.148519 0) (0.771632 -0.1288 0) (0.754968 -0.10582 0) (0.734719 -0.0788735 0) (0.725321 -0.0493319 0) (0.706882 -0.0151293 0) (0.705156 0.0173427 0) (0.690868 0.0641919 0) (0.702582 0.0951478 0) (0.687517 0.15986 0) (0.708156 0.175378 0) (0.740991 0.299744 0) (0.788445 0.277363 0) (0.766056 0.37171 0) (1.01002 0.0218094 0) (1.00842 0.024267 0) (1.00756 0.0263757 0) (1.00724 0.027449 0) (1.00684 0.0272927 0) (1.00575 0.026097 0) (1.00357 0.0242693 0) (1.00018 0.0222584 0) (0.995636 0.0203523 0) (0.989935 0.0186678 0) (0.982914 0.0173325 0) (0.974218 0.0166571 0) (0.963447 0.0171809 0) (0.950296 0.0196128 0) (0.934549 0.0247131 0) (0.916232 0.0331359 0) (0.895156 0.045124 0) (0.870723 0.0607127 0) (0.842852 0.0797818 0) (0.808321 0.100484 0) (0.76042 0.120697 0) (0.703009 0.144283 0) (0.657896 0.178475 0) (0.648713 0.218452 0) (0.684461 0.244789 0) (0.752358 0.24355 0) (0.828177 0.21224 0) (0.911455 0.143234 0) (1.00618 0.0345018 0) (1.08177 -0.0846238 0) (1.11062 -0.174997 0) (1.09799 -0.219213 0) (1.06451 -0.225144 0) (1.02623 -0.208977 0) (0.993481 -0.181985 0) (0.968149 -0.151612 0) (0.946856 -0.122275 0) (0.933421 -0.0928401 0) (0.927799 -0.0637877 0) (0.91974 -0.0397848 0) (0.910483 -0.01905 0) (0.913385 0.00584801 0) (0.925325 0.0334251 0) (0.923828 0.0521708 0) (0.895247 0.0559089 0) (0.849179 0.0513981 0) (0.806235 0.0497215 0) (0.779686 0.0551014 0) (0.77104 0.0653567 0) (0.777679 0.0811898 0) (0.79834 0.109287 0) (0.83139 0.153012 0) (0.871682 0.2037 0) (0.91216 0.247615 0) (0.949409 0.280543 0) (0.987291 0.309165 0) (1.0334 0.338047 0) (1.09179 0.361742 0) (1.15879 0.370396 0) (1.22474 0.353915 0) (1.28107 0.30112 0) (1.32212 0.210714 0) (1.34225 0.0988394 0) (1.33869 -0.0208598 0) (1.31581 -0.144966 0) (1.27481 -0.255331 0) (1.21351 -0.324459 0) (1.1428 -0.351937 0) (1.08132 -0.362559 0) (1.0373 -0.372383 0) (1.00668 -0.377835 0) (0.982918 -0.371106 0) (0.962817 -0.351594 0) (0.946063 -0.324547 0) (0.933024 -0.295916 0) (0.923548 -0.269697 0) (0.916806 -0.247769 0) (0.911546 -0.230586 0) (0.906423 -0.217759 0) (0.900142 -0.208414 0) (0.891894 -0.201357 0) (0.881049 -0.195344 0) (0.867725 -0.189131 0) (0.851876 -0.181657 0) (0.834367 -0.172041 0) (0.815239 -0.159489 0) (0.796383 -0.14377 0) (0.776522 -0.124261 0) (0.760376 -0.101584 0) (0.741679 -0.075118 0) (0.731496 -0.0463721 0) (0.716261 -0.0122856 0) (0.712073 0.0187117 0) (0.701916 0.065026 0) (0.710312 0.0949275 0) (0.70377 0.158937 0) (0.716469 0.171264 0) (0.747425 0.2847 0) (0.807534 0.279987 0) (0.795051 0.356117 0) (1.02167 0.022141 0) (1.02082 0.0244025 0) (1.02065 0.0263698 0) (1.02097 0.0274392 0) (1.02126 0.0274048 0) (1.02093 0.0264271 0) (1.01959 0.0248649 0) (1.0171 0.0231206 0) (1.01347 0.021484 0) (1.0087 0.0201092 0) (1.00268 0.019157 0) (0.995137 0.0189476 0) (0.985787 0.0199989 0) (0.97448 0.0229897 0) (0.961179 0.0286488 0) (0.946007 0.0376032 0) (0.929259 0.050186 0) (0.910599 0.0664552 0) (0.889786 0.0863878 0) (0.866426 0.10898 0) (0.835646 0.132047 0) (0.793346 0.156272 0) (0.752136 0.185469 0) (0.739111 0.215615 0) (0.769277 0.232321 0) (0.828412 0.226143 0) (0.897861 0.192772 0) (0.98265 0.121697 0) (1.07425 0.0148441 0) (1.13548 -0.0956243 0) (1.14688 -0.175432 0) (1.12052 -0.212408 0) (1.07912 -0.215541 0) (1.03699 -0.199649 0) (1.00169 -0.174457 0) (0.975516 -0.145666 0) (0.954062 -0.11773 0) (0.938651 -0.0902803 0) (0.932329 -0.0621943 0) (0.926518 -0.0376482 0) (0.916702 -0.0178504 0) (0.914854 0.0042428 0) (0.926241 0.0314603 0) (0.933145 0.0546253 0) (0.916075 0.0642275 0) (0.87633 0.062389 0) (0.831988 0.0590008 0) (0.799551 0.0603628 0) (0.78418 0.0664354 0) (0.784587 0.0784692 0) (0.799983 0.103049 0) (0.829707 0.144011 0) (0.869293 0.193487 0) (0.911154 0.237664 0) (0.950446 0.270953 0) (0.989462 0.298553 0) (1.03529 0.324896 0) (1.09292 0.345921 0) (1.15955 0.353538 0) (1.22611 0.338355 0) (1.28379 0.288812 0) (1.32698 0.203053 0) (1.34921 0.0967921 0) (1.34663 -0.0174397 0) (1.32496 -0.136924 0) (1.2849 -0.242741 0) (1.22334 -0.308287 0) (1.15262 -0.3356 0) (1.09237 -0.34941 0) (1.04983 -0.363067 0) (1.01963 -0.371021 0) (0.99503 -0.365526 0) (0.973398 -0.346816 0) (0.954952 -0.320619 0) (0.940315 -0.2929 0) (0.929399 -0.267481 0) (0.921369 -0.246095 0) (0.914976 -0.22913 0) (0.908919 -0.216201 0) (0.901965 -0.206494 0) (0.893316 -0.198912 0) (0.882395 -0.192299 0) (0.869205 -0.185515 0) (0.853797 -0.177532 0) (0.836821 -0.167565 0) (0.818486 -0.15481 0) (0.800349 -0.139087 0) (0.781514 -0.119777 0) (0.765782 -0.0974629 0) (0.748746 -0.071372 0) (0.737762 -0.0435564 0) (0.725428 -0.00957501 0) (0.719603 0.0200998 0) (0.712423 0.0655234 0) (0.718696 0.0944994 0) (0.718184 0.157178 0) (0.728158 0.168778 0) (0.752145 0.268501 0) (0.819496 0.278655 0) (0.82467 0.343394 0) (1.02794 0.0223186 0) (1.02763 0.0244013 0) (1.02792 0.0262287 0) (1.02866 0.0272842 0) (1.02939 0.0273606 0) (1.02958 0.0265874 0) (1.02885 0.0252809 0) (1.02706 0.0238024 0) (1.02417 0.0224371 0) (1.0202 0.0213662 0) (1.01505 0.0207754 0) (1.00854 0.0209887 0) (1.0005 0.0224981 0) (0.990861 0.0259414 0) (0.979762 0.0320183 0) (0.967435 0.0413109 0) (0.954395 0.054181 0) (0.940853 0.0708008 0) (0.926471 0.0911 0) (0.911821 0.114399 0) (0.895509 0.139271 0) (0.871906 0.165077 0) (0.844613 0.19172 0) (0.835494 0.213906 0) (0.860323 0.221982 0) (0.909304 0.210618 0) (0.97432 0.173513 0) (1.05813 0.100203 0) (1.13854 -0.00214108 0) (1.18056 -0.102514 0) (1.17437 -0.171882 0) (1.13648 -0.202795 0) (1.08948 -0.204353 0) (1.04531 -0.189399 0) (1.0086 -0.166351 0) (0.981762 -0.139479 0) (0.960731 -0.112858 0) (0.944043 -0.0872686 0) (0.936178 -0.0606856 0) (0.932173 -0.0357859 0) (0.923537 -0.0160378 0) (0.917678 0.00348788 0) (0.925745 0.0288064 0) (0.937922 0.054714 0) (0.932435 0.0702455 0) (0.901944 0.0726905 0) (0.859278 0.0692592 0) (0.822314 0.0673662 0) (0.800191 0.0692651 0) (0.793932 0.0772146 0) (0.803492 0.0978196 0) (0.82903 0.135368 0) (0.866946 0.182968 0) (0.909528 0.227007 0) (0.950616 0.260664 0) (0.990746 0.28751 0) (1.03632 0.311505 0) (1.09288 0.329823 0) (1.15867 0.336211 0) (1.22519 0.322143 0) (1.28369 0.275699 0) (1.32886 0.194593 0) (1.35251 0.0943132 0) (1.35085 -0.0142432 0) (1.33106 -0.129011 0) (1.29221 -0.229896 0) (1.23058 -0.291606 0) (1.16049 -0.318973 0) (1.10233 -0.336288 0) (1.0618 -0.353769 0) (1.03218 -0.363967 0) (1.00675 -0.359474 0) (0.983611 -0.34148 0) (0.963552 -0.316155 0) (0.947421 -0.28941 0) (0.935163 -0.264855 0) (0.925931 -0.244068 0) (0.918479 -0.227371 0) (0.911541 -0.214394 0) (0.90395 -0.204381 0) (0.894916 -0.196333 0) (0.883918 -0.18917 0) (0.870868 -0.181861 0) (0.855876 -0.173407 0) (0.839441 -0.163116 0) (0.821853 -0.150182 0) (0.804425 -0.134475 0) (0.786599 -0.115348 0) (0.771238 -0.0934575 0) (0.755809 -0.0676701 0) (0.744291 -0.0408303 0) (0.734162 -0.00709172 0) (0.727855 0.0215554 0) (0.722308 0.0656569 0) (0.727791 0.0939621 0) (0.730769 0.15444 0) (0.741785 0.16753 0) (0.757942 0.252656 0) (0.824875 0.273303 0) (0.849682 0.330979 0) (1.03059 0.0223866 0) (1.03061 0.0243084 0) (1.03117 0.0260027 0) (1.03212 0.0270372 0) (1.03309 0.0272124 0) (1.03359 0.0266289 0) (1.03327 0.0255644 0) (1.03196 0.0243447 0) (1.02963 0.0232457 0) (1.02628 0.0224668 0) (1.02185 0.022212 0) (1.01622 0.0228027 0) (1.0093 0.0247035 0) (1.00111 0.0285046 0) (0.991885 0.0348679 0) (0.981998 0.0443323 0) (0.972046 0.0572389 0) (0.962628 0.073862 0) (0.953792 0.0941265 0) (0.946193 0.117314 0) (0.940419 0.142623 0) (0.933116 0.169358 0) (0.92418 0.1947 0) (0.92669 0.211587 0) (0.95108 0.213214 0) (0.993825 0.196549 0) (1.0552 0.154825 0) (1.13078 0.0805539 0) (1.19278 -0.0152328 0) (1.21395 -0.104712 0) (1.19222 -0.164575 0) (1.14623 -0.190938 0) (1.09617 -0.192057 0) (1.05152 -0.178565 0) (1.01449 -0.157811 0) (0.987133 -0.13311 0) (0.966745 -0.107813 0) (0.949659 -0.0838025 0) (0.939844 -0.0590616 0) (0.936614 -0.0343182 0) (0.930323 -0.0139981 0) (0.922187 0.00374542 0) (0.925311 0.0262034 0) (0.939046 0.0528521 0) (0.94369 0.0735542 0) (0.924544 0.0814548 0) (0.886994 0.0798639 0) (0.847736 0.0759539 0) (0.819344 0.0739877 0) (0.806064 0.0776504 0) (0.809211 0.0938525 0) (0.829742 0.127357 0) (0.865004 0.172362 0) (0.907522 0.21575 0) (0.949981 0.249694 0) (0.991152 0.276019 0) (1.03647 0.297905 0) (1.09173 0.313546 0) (1.15625 0.318555 0) (1.22195 0.305423 0) (1.28084 0.261814 0) (1.32767 0.185454 0) (1.35223 0.0915223 0) (1.35171 -0.0113545 0) (1.33425 -0.121325 0) (1.29666 -0.21683 0) (1.23513 -0.274509 0) (1.16644 -0.302264 0) (1.11126 -0.323398 0) (1.07325 -0.344587 0) (1.04428 -0.356681 0) (1.01801 -0.352929 0) (0.993396 -0.33557 0) (0.97182 -0.311152 0) (0.954316 -0.285449 0) (0.940825 -0.261824 0) (0.930482 -0.241688 0) (0.922045 -0.22531 0) (0.914283 -0.212338 0) (0.906091 -0.202074 0) (0.896694 -0.193616 0) (0.885615 -0.185955 0) (0.872712 -0.178165 0) (0.858106 -0.169282 0) (0.842221 -0.158694 0) (0.82534 -0.145607 0) (0.808611 -0.129938 0) (0.791763 -0.110979 0) (0.776804 -0.089555 0) (0.762774 -0.0640597 0) (0.751201 -0.0381363 0) (0.742385 -0.00489562 0) (0.736724 0.0230829 0) (0.731741 0.0654495 0) (0.73732 0.093353 0) (0.742065 0.150793 0) (0.755624 0.166847 0) (0.766542 0.238319 0) (0.826282 0.264848 0) (0.866718 0.317156 0) (1.03101 0.0223839 0) (1.03122 0.0241624 0) (1.03189 0.0257345 0) (1.03291 0.0267441 0) (1.03395 0.0270069 0) (1.03459 0.0265981 0) (1.0345 0.0257606 0) (1.03351 0.0247886 0) (1.03157 0.0239466 0) (1.02869 0.0234446 0) (1.02482 0.0234987 0) (1.01991 0.0244229 0) (1.01391 0.0266526 0) (1.00692 0.0307301 0) (0.999236 0.0372668 0) (0.991341 0.0467594 0) (0.983884 0.0595151 0) (0.977621 0.0758405 0) (0.973142 0.0956846 0) (0.971191 0.118241 0) (0.972761 0.142948 0) (0.977125 0.169276 0) (0.984545 0.193203 0) (1.00087 0.206754 0) (1.02998 0.204154 0) (1.07187 0.182915 0) (1.1283 0.137558 0) (1.18988 0.0646943 0) (1.2317 -0.0233008 0) (1.23404 -0.102299 0) (1.20082 -0.1543 0) (1.15071 -0.177582 0) (1.09995 -0.179138 0) (1.05599 -0.167457 0) (1.01956 -0.14898 0) (0.991899 -0.12658 0) (0.972043 -0.102717 0) (0.95537 -0.0799654 0) (0.943772 -0.0571291 0) (0.940056 -0.0332043 0) (0.936379 -0.0121124 0) (0.928144 0.00491472 0) (0.926213 0.0243142 0) (0.93793 0.0497518 0) (0.949799 0.0740774 0) (0.94276 0.0878869 0) (0.913662 0.0899752 0) (0.875179 0.0857352 0) (0.84179 0.0806438 0) (0.821392 0.0800031 0) (0.817526 0.0914226 0) (0.832239 0.12027 0) (0.86388 0.161923 0) (0.905431 0.204053 0) (0.948684 0.238092 0) (0.990734 0.26408 0) (1.03574 0.284122 0) (1.0896 0.297173 0) (1.1524 0.300747 0) (1.21651 0.288322 0) (1.27541 0.247254 0) (1.3234 0.175765 0) (1.34836 0.0883545 0) (1.34926 -0.00895395 0) (1.33451 -0.113964 0) (1.29808 -0.203569 0) (1.2369 -0.257129 0) (1.17057 -0.285732 0) (1.11934 -0.310961 0) (1.08422 -0.335608 0) (1.05591 -0.349155 0) (1.02873 -0.345864 0) (1.00269 -0.329076 0) (0.979715 -0.305613 0) (0.960973 -0.281025 0) (0.946371 -0.258392 0) (0.935011 -0.23896 0) (0.925664 -0.222948 0) (0.917135 -0.210031 0) (0.908382 -0.19957 0) (0.898646 -0.190756 0) (0.887486 -0.182652 0) (0.874737 -0.174425 0) (0.86049 -0.165158 0) (0.845151 -0.154302 0) (0.828947 -0.141086 0) (0.812909 -0.125476 0) (0.796988 -0.106683 0) (0.782526 -0.0857359 0) (0.76959 -0.0605885 0) (0.758507 -0.0354322 0) (0.750208 -0.00302835 0) (0.745885 0.0246143 0) (0.741092 0.0649869 0) (0.746834 0.0926472 0) (0.752763 0.146456 0) (0.768472 0.166042 0) (0.777961 0.225953 0) (0.827153 0.254755 0) (0.875627 0.301578 0) (1.0302 0.0223407 0) (1.03049 0.0239932 0) (1.03119 0.0254563 0) (1.03217 0.02644 0) (1.03318 0.0267805 0) (1.03383 0.0265324 0) (1.03384 0.0259065 0) (1.03304 0.0251694 0) (1.03137 0.0245726 0) (1.02883 0.0243309 0) (1.02539 0.0246669 0) (1.02105 0.0258837 0) (1.0158 0.0283869 0) (1.0098 0.0326711 0) (1.00336 0.0392894 0) (0.997041 0.048694 0) (0.991529 0.0611588 0) (0.987636 0.0769614 0) (0.986325 0.0960542 0) (0.988537 0.117621 0) (0.995171 0.141081 0) (1.00707 0.165846 0) (1.02571 0.187716 0) (1.05297 0.198798 0) (1.08845 0.193461 0) (1.1316 0.169242 0) (1.18181 0.122544 0) (1.22916 0.0531634 0) (1.25322 -0.0265966 0) (1.24133 -0.0961993 0) (1.20188 -0.142125 0) (1.15121 -0.163498 0) (1.10158 -0.166015 0) (1.05908 -0.156315 0) (1.02391 -0.140001 0) (0.996297 -0.119886 0) (0.976672 -0.0976365 0) (0.960917 -0.0759034 0) (0.948224 -0.0547627 0) (0.942983 -0.0322478 0) (0.941236 -0.0106643 0) (0.934823 0.00663703 0) (0.929211 0.0235521 0) (0.936304 0.046308 0) (0.951452 0.0721485 0) (0.955582 0.0913971 0) (0.937567 0.0986213 0) (0.903509 0.0960402 0) (0.86739 0.0890879 0) (0.840327 0.0844632 0) (0.828913 0.0908298 0) (0.836967 0.114422 0) (0.864011 0.151941 0) (0.903613 0.192127 0) (0.946966 0.225955 0) (0.989572 0.251716 0) (1.03419 0.270173 0) (1.08667 0.280788 0) (1.14726 0.282968 0) (1.20906 0.270989 0) (1.26764 0.232151 0) (1.31612 0.165612 0) (1.34094 0.0847901 0) (1.34366 -0.007146 0) (1.33193 -0.106964 0) (1.29643 -0.190121 0) (1.23594 -0.239642 0) (1.17309 -0.269687 0) (1.12677 -0.299206 0) (1.0948 -0.326892 0) (1.06702 -0.341361 0) (1.03884 -0.338249 0) (1.01143 -0.321991 0) (0.987201 -0.299549 0) (0.967372 -0.276152 0) (0.951786 -0.25457 0) (0.939507 -0.235888 0) (0.929326 -0.220286 0) (0.920089 -0.207473 0) (0.910814 -0.196869 0) (0.900768 -0.187753 0) (0.88953 -0.179261 0) (0.87694 -0.170641 0) (0.863034 -0.161036 0) (0.848225 -0.14994 0) (0.83268 -0.136622 0) (0.817314 -0.12109 0) (0.802264 -0.102476 0) (0.788414 -0.0819818 0) (0.776278 -0.0572905 0) (0.766086 -0.0327149 0) (0.757895 -0.00143992 0) (0.754927 0.026034 0) (0.750725 0.0643812 0) (0.756043 0.0918039 0) (0.76324 0.141664 0) (0.780052 0.164642 0) (0.790894 0.215372 0) (0.830042 0.244356 0) (0.879147 0.285102 0) (1.02879 0.0222781 0) (1.02912 0.0238204 0) (1.02977 0.0251885 0) (1.03067 0.0261481 0) (1.03158 0.0265581 0) (1.03218 0.0264575 0) (1.03221 0.026029 0) (1.03151 0.0255135 0) (1.03002 0.025149 0) (1.02772 0.0251508 0) (1.02463 0.0257429 0) (1.02074 0.0272155 0) (1.01612 0.0299436 0) (1.01092 0.0343753 0) (1.00549 0.0410031 0) (1.00042 0.0502315 0) (0.996399 0.0623003 0) (0.99427 0.0774263 0) (0.995152 0.0955368 0) (1.00014 0.115853 0) (1.01012 0.137681 0) (1.0265 0.160228 0) (1.05134 0.179531 0) (1.08498 0.188348 0) (1.12486 0.181238 0) (1.16835 0.155759 0) (1.21268 0.109756 0) (1.24805 0.0451436 0) (1.2586 -0.0262587 0) (1.23871 -0.0878179 0) (1.19774 -0.12911 0) (1.14895 -0.149343 0) (1.10172 -0.153001 0) (1.06111 -0.145306 0) (1.02759 -0.131012 0) (1.00048 -0.113035 0) (0.980798 -0.0925663 0) (0.966026 -0.0717836 0) (0.953189 -0.051949 0) (0.945993 -0.0311773 0) (0.944823 -0.00975663 0) (0.941261 0.00840688 0) (0.934333 0.0239639 0) (0.935857 0.0434101 0) (0.950084 0.068511 0) (0.962645 0.0917633 0) (0.956988 0.104838 0) (0.931082 0.105923 0) (0.895516 0.0988947 0) (0.863142 0.0911063 0) (0.84395 0.0923833 0) (0.844465 0.110167 0) (0.86586 0.142747 0) (0.902482 0.180224 0) (0.945135 0.213429 0) (0.987797 0.238986 0) (1.03196 0.256063 0) (1.08311 0.264477 0) (1.14095 0.265393 0) (1.19993 0.253583 0) (1.25788 0.21663 0) (1.30597 0.15514 0) (1.33019 0.0808354 0) (1.33532 -0.00606276 0) (1.32668 -0.100339 0) (1.29167 -0.176494 0) (1.23238 -0.222294 0) (1.17437 -0.254495 0) (1.13381 -0.288349 0) (1.10502 -0.31846 0) (1.07751 -0.333248 0) (1.04825 -0.330052 0) (1.01956 -0.314319 0) (0.994245 -0.292979 0) (0.973494 -0.270848 0) (0.957056 -0.250371 0) (0.943958 -0.23248 0) (0.93302 -0.21733 0) (0.923133 -0.204667 0) (0.913377 -0.193971 0) (0.903052 -0.184605 0) (0.891745 -0.17578 0) (0.879313 -0.166811 0) (0.865741 -0.156912 0) (0.851434 -0.145611 0) (0.83654 -0.132216 0) (0.821823 -0.116778 0) (0.807586 -0.098374 0) (0.794442 -0.078284 0) (0.782912 -0.0541735 0) (0.77375 -0.0300277 0) (0.765733 -2.84524e-05 0) (0.763552 0.0272296 0) (0.760724 0.063701 0) (0.765058 0.090833 0) (0.773399 0.136584 0) (0.79072 0.162431 0) (0.803887 0.206095 0) (0.835602 0.234363 0) (0.880888 0.269007 0) (1.02716 0.0222086 0) (1.02747 0.0236551 0) (1.02806 0.024942 0) (1.02885 0.0258811 0) (1.02964 0.026354 0) (1.03016 0.0263893 0) (1.03017 0.0261444 0) (1.02952 0.0258373 0) (1.02815 0.025692 0) (1.02605 0.0259205 0) (1.02324 0.0267445 0) (1.01974 0.0284396 0) (1.01563 0.0313504 0) (1.01111 0.0358794 0) (1.00653 0.0424602 0) (1.00245 0.051448 0) (0.999589 0.0630448 0) (0.998774 0.0773978 0) (1.00114 0.0943917 0) (1.00784 0.113288 0) (1.0198 0.133276 0) (1.03851 0.153351 0) (1.06594 0.16989 0) (1.10196 0.176547 0) (1.14308 0.168301 0) (1.18528 0.142788 0) (1.22402 0.098924 0) (1.24997 0.0400384 0) (1.25262 -0.023511 0) (1.23002 -0.0784023 0) (1.19047 -0.116089 0) (1.14493 -0.135563 0) (1.10083 -0.14031 0) (1.06238 -0.134529 0) (1.03063 -0.122129 0) (1.00447 -0.106062 0) (0.984655 -0.0874514 0) (0.970536 -0.0677295 0) (0.95839 -0.0488072 0) (0.949582 -0.0297437 0) (0.94752 -0.00925164 0) (0.946611 0.00976018 0) (0.940858 0.0252123 0) (0.937789 0.0417051 0) (0.947698 0.0642166 0) (0.964482 0.0892678 0) (0.970526 0.107865 0) (0.955853 0.114241 0) (0.924898 0.109288 0) (0.889754 0.0997777 0) (0.863234 0.0963511 0) (0.855391 0.107911 0) (0.86998 0.134724 0) (0.902531 0.168644 0) (0.943525 0.200718 0) (0.985589 0.22597 0) (1.02929 0.241796 0) (1.07913 0.248336 0) (1.13368 0.24821 0) (1.18957 0.236217 0) (1.2466 0.200862 0) (1.2932 0.144587 0) (1.31657 0.0764494 0) (1.32484 -0.00584741 0) (1.31895 -0.0940291 0) (1.28378 -0.162695 0) (1.22654 -0.20542 0) (1.17491 -0.240568 0) (1.14079 -0.278566 0) (1.11491 -0.310276 0) (1.08731 -0.324736 0) (1.05686 -0.321243 0) (1.02703 -0.306074 0) (1.00082 -0.285931 0) (0.979324 -0.265139 0) (0.962168 -0.245809 0) (0.948352 -0.228745 0) (0.936736 -0.214083 0) (0.92626 -0.201613 0) (0.916064 -0.190877 0) (0.905489 -0.181312 0) (0.894127 -0.172207 0) (0.881851 -0.162936 0) (0.868614 -0.152785 0) (0.854776 -0.141316 0) (0.840525 -0.127871 0) (0.826436 -0.112538 0) (0.812954 -0.0943851 0) (0.800566 -0.0746497 0) (0.789582 -0.0512177 0) (0.781325 -0.0274372 0) (0.773872 0.0012876 0) (0.771762 0.0281425 0) (0.770795 0.0629155 0) (0.774287 0.0898015 0) (0.782997 0.131342 0) (0.800756 0.159325 0) (0.81622 0.1977 0) (0.843097 0.224911 0) (0.883208 0.254164 0) (1.02549 0.0221396 0) (1.02577 0.0235031 0) (1.02629 0.0247218 0) (1.02697 0.0256446 0) (1.02763 0.0261752 0) (1.02805 0.0263356 0) (1.02802 0.0262616 0) (1.0274 0.0261497 0) (1.02613 0.0262101 0) (1.02419 0.0266485 0) (1.02163 0.0276814 0) (1.01847 0.0295684 0) (1.01482 0.0326244 0) (1.0109 0.0372083 0) (1.00704 0.0436973 0) (1.00379 0.0523975 0) (1.00185 0.0634708 0) (1.00203 0.0769966 0) (1.0054 0.0928109 0) (1.01309 0.110203 0) (1.02605 0.128277 0) (1.04561 0.145862 0) (1.07342 0.159701 0) (1.10905 0.164374 0) (1.14892 0.155403 0) (1.18839 0.130678 0) (1.22193 0.0900051 0) (1.24164 0.036943 0) (1.24049 -0.0196982 0) (1.21812 -0.0689155 0) (1.18154 -0.103564 0) (1.13984 -0.122415 0) (1.09922 -0.128089 0) (1.06311 -0.124041 0) (1.03306 -0.11343 0) (1.0082 -0.0990441 0) (0.988452 -0.082226 0) (0.974484 -0.063776 0) (0.963408 -0.0455397 0) (0.953938 -0.0278298 0) (0.950035 -0.00883257 0) (0.950479 0.0104467 0) (0.947572 0.0266911 0) (0.942398 0.0413857 0) (0.946428 0.0603888 0) (0.962655 0.0847453 0) (0.97754 0.107377 0) (0.975646 0.119822 0) (0.95353 0.119126 0) (0.919447 0.109962 0) (0.887196 0.102858 0) (0.870557 0.10808 0) (0.877115 0.128313 0) (0.904328 0.157758 0) (0.942458 0.188101 0) (0.983207 0.212773 0) (1.02648 0.227376 0) (1.07487 0.232474 0) (1.12564 0.231547 0) (1.17857 0.218978 0) (1.23427 0.185099 0) (1.27806 0.134178 0) (1.30082 0.0715142 0) (1.31296 -0.0065659 0) (1.30879 -0.0878391 0) (1.27279 -0.148767 0) (1.21896 -0.189478 0) (1.17538 -0.22834 0) (1.14799 -0.269956 0) (1.12443 -0.30223 0) (1.09627 -0.315728 0) (1.06458 -0.311802 0) (1.03378 -0.297284 0) (1.00691 -0.278442 0) (0.98485 -0.259051 0) (0.96711 -0.240905 0) (0.952678 -0.224694 0) (0.94046 -0.210553 0) (0.929458 -0.198317 0) (0.918866 -0.187589 0) (0.90807 -0.177875 0) (0.89667 -0.168543 0) (0.884545 -0.159018 0) (0.871646 -0.148654 0) (0.858251 -0.137054 0) (0.844624 -0.123589 0) (0.831157 -0.108372 0) (0.818374 -0.0905111 0) (0.806742 -0.0710978 0) (0.796345 -0.0483894 0) (0.788745 -0.025006 0) (0.782242 0.00255971 0) (0.779824 0.028809 0) (0.78048 0.0619249 0) (0.784003 0.0887484 0) (0.79214 0.126123 0) (0.810021 0.15528 0) (0.827752 0.189874 0) (0.851669 0.215933 0) (0.886763 0.240802 0) (1.02386 0.0220748 0) (1.02411 0.0233667 0) (1.02456 0.0245286 0) (1.02513 0.02544 0) (1.02568 0.026024 0) (1.026 0.0262995 0) (1.02593 0.026384 0) (1.02533 0.0264543 0) (1.02414 0.0267064 0) (1.02236 0.0273381 0) (1.02002 0.0285577 0) (1.01718 0.0306083 0) (1.01396 0.0337755 0) (1.01057 0.0383771 0) (1.00735 0.044738 0) (1.00482 0.0531159 0) (1.00365 0.0636326 0) (1.0046 0.0763058 0) (1.00866 0.0909249 0) (1.0169 0.106796 0) (1.0302 0.122976 0) (1.04969 0.138184 0) (1.0766 0.149534 0) (1.11034 0.152446 0) (1.14751 0.143079 0) (1.18341 0.119649 0) (1.21247 0.0824249 0) (1.22815 0.0348388 0) (1.22552 -0.0156224 0) (1.20487 -0.0598591 0) (1.17192 -0.0918002 0) (1.13419 -0.110036 0) (1.09709 -0.116432 0) (1.06346 -0.113874 0) (1.03501 -0.104951 0) (1.01154 -0.0920773 0) (0.992273 -0.0768636 0) (0.978104 -0.0598626 0) (0.967887 -0.0423403 0) (0.95883 -0.02551 0) (0.953106 -0.00813924 0) (0.953129 0.0105409 0) (0.953242 0.0277653 0) (0.948932 0.0421138 0) (0.947901 0.0578858 0) (0.959574 0.0794625 0) (0.978579 0.103706 0) (0.988658 0.121752 0) (0.978798 0.126993 0) (0.950559 0.120661 0) (0.915746 0.111712 0) (0.890867 0.111051 0) (0.888282 0.124049 0) (0.908525 0.148062 0) (0.942278 0.175918 0) (0.981053 0.199494 0) (1.02393 0.212846 0) (1.07039 0.217049 0) (1.11714 0.215462 0) (1.16771 0.201906 0) (1.22125 0.169692 0) (1.26103 0.124038 0) (1.28414 0.0658391 0) (1.30036 -0.00810947 0) (1.29602 -0.0814439 0) (1.25886 -0.134874 0) (1.21054 -0.175084 0) (1.1766 -0.218217 0) (1.15565 -0.262488 0) (1.13346 -0.294134 0) (1.10423 -0.306112 0) (1.07132 -0.301725 0) (1.03979 -0.287995 0) (1.0125 -0.27056 0) (0.990062 -0.25262 0) (0.971872 -0.235678 0) (0.956922 -0.220339 0) (0.944181 -0.206747 0) (0.932716 -0.194782 0) (0.921772 -0.18411 0) (0.910785 -0.174296 0) (0.899366 -0.164786 0) (0.88739 -0.155056 0) (0.874827 -0.144521 0) (0.861863 -0.132825 0) (0.848824 -0.119374 0) (0.835986 -0.104279 0) (0.823849 -0.0867483 0) (0.812943 -0.0676508 0) (0.803209 -0.0456615 0) (0.796051 -0.0227611 0) (0.790633 0.0037589 0) (0.788052 0.0293206 0) (0.789533 0.0606599 0) (0.794001 0.0875857 0) (0.80134 0.121183 0) (0.818357 0.150358 0) (0.838229 0.182282 0) (0.86086 0.207356 0) (0.891563 0.22885 0) (1.02232 0.0220159 0) (1.02254 0.0232461 0) (1.02292 0.0243614 0) (1.02339 0.0252658 0) (1.02383 0.0258997 0) (1.02407 0.026281 0) (1.02396 0.0265119 0) (1.02338 0.0267512 0) (1.02228 0.0271808 0) (1.02065 0.0279887 0) (1.01853 0.0293736 0) (1.01599 0.0315608 0) (1.01317 0.0348081 0) (1.01027 0.0393946 0) (1.00763 0.0455967 0) (1.00575 0.0536259 0) (1.00523 0.0635659 0) (1.0068 0.0753804 0) (1.01136 0.0888164 0) (1.01987 0.103198 0) (1.03311 0.117556 0) (1.05202 0.130575 0) (1.0774 0.139703 0) (1.10856 0.141118 0) (1.14241 0.131576 0) (1.17451 0.109639 0) (1.19974 0.0758044 0) (1.21274 0.0332657 0) (1.20981 -0.0116803 0) (1.19142 -0.0514785 0) (1.16219 -0.0809071 0) (1.12831 -0.0984639 0) (1.09456 -0.105391 0) (1.06348 -0.104063 0) (1.0366 -0.0966919 0) (1.01441 -0.0852434 0) (0.996022 -0.0714081 0) (0.981691 -0.0558802 0) (0.97175 -0.0392943 0) (0.963714 -0.0230195 0) (0.95712 -0.00695474 0) (0.955419 0.0104155 0) (0.957171 0.0280503 0) (0.955824 0.0431414 0) (0.952601 0.0569853 0) (0.957945 0.0748063 0) (0.975565 0.0979037 0) (0.994109 0.119711 0) (0.997985 0.131481 0) (0.980378 0.130395 0) (0.947709 0.122178 0) (0.916951 0.116947 0) (0.904895 0.122532 0) (0.91615 0.140221 0) (0.943486 0.164588 0) (0.979552 0.186247 0) (1.02177 0.198322 0) (1.06556 0.2022 0) (1.10871 0.199892 0) (1.15774 0.185114 0) (1.20772 0.155032 0) (1.2429 0.114167 0) (1.26792 0.0591109 0) (1.28718 -0.0101719 0) (1.28011 -0.0744618 0) (1.24253 -0.121435 0) (1.20265 -0.163011 0) (1.17946 -0.210485 0) (1.16384 -0.25595 0) (1.14174 -0.285717 0) (1.111 -0.295783 0) (1.07701 -0.291038 0) (1.04505 -0.27827 0) (1.0176 -0.262339 0) (0.994958 -0.245881 0) (0.976442 -0.230151 0) (0.961072 -0.215695 0) (0.947885 -0.202674 0) (0.93602 -0.191015 0) (0.924773 -0.180442 0) (0.913624 -0.170579 0) (0.902207 -0.160938 0) (0.890381 -0.151052 0) (0.878147 -0.140386 0) (0.865611 -0.128628 0) (0.853119 -0.115227 0) (0.840913 -0.100264 0) (0.829389 -0.0830892 0) (0.819153 -0.0643278 0) (0.810139 -0.043024 0) (0.803338 -0.0206916 0) (0.798852 0.00482916 0) (0.796557 0.0297448 0) (0.798103 0.0591654 0) (0.803728 0.0861182 0) (0.810987 0.116696 0) (0.826124 0.144852 0) (0.847204 0.174585 0) (0.870099 0.19899 0) (0.897637 0.218161 0) (1.02087 0.0219636 0) (1.02105 0.0231407 0) (1.02137 0.0242182 0) (1.02176 0.0251196 0) (1.02211 0.0258003 0) (1.02228 0.0262785 0) (1.02214 0.0266438 0) (1.02159 0.0270388 0) (1.02057 0.0276313 0) (1.01909 0.0285983 0) (1.01719 0.030127 0) (1.01494 0.0324251 0) (1.0125 0.0357235 0) (1.01006 0.0402651 0) (1.00796 0.0462819 0) (1.00665 0.0539426 0) (1.00671 0.0632944 0) (1.0088 0.0742562 0) (1.01372 0.0865401 0) (1.02232 0.0994886 0) (1.03529 0.112133 0) (1.05333 0.123173 0) (1.07694 0.130361 0) (1.10533 0.130531 0) (1.13574 0.12098 0) (1.16418 0.100582 0) (1.18615 0.0699609 0) (1.19721 0.0319954 0) (1.19448 -0.00804258 0) (1.17838 -0.0438491 0) (1.15266 -0.0709059 0) (1.12237 -0.0876958 0) (1.09175 -0.0949794 0) (1.06317 -0.0946509 0) (1.03795 -0.0886494 0) (1.01688 -0.0785762 0) (0.999514 -0.0659565 0) (0.985392 -0.0517606 0) (0.975256 -0.0363386 0) (0.968083 -0.0206139 0) (0.961824 -0.00533958 0) (0.958339 0.0105458 0) (0.959664 0.0276281 0) (0.961406 0.0436403 0) (0.95948 0.0572138 0) (0.959816 0.071821 0) (0.971659 0.0916064 0) (0.992859 0.114229 0) (1.0089 0.131567 0) (1.00543 0.13743 0) (0.980685 0.132863 0) (0.948639 0.125316 0) (0.928135 0.124256 0) (0.928382 0.135137 0) (0.9472 0.154724 0) (0.979721 0.173276 0) (1.02004 0.18404 0) (1.06005 0.187961 0) (1.10083 0.18457 0) (1.14868 0.168785 0) (1.19314 0.141451 0) (1.22463 0.104221 0) (1.25321 0.0512229 0) (1.27266 -0.0120214 0) (1.26049 -0.0666392 0) (1.22516 -0.1093 0) (1.19719 -0.154118 0) (1.18471 -0.205176 0) (1.17233 -0.249902 0) (1.1489 -0.276657 0) (1.11638 -0.284672 0) (1.0816 -0.279804 0) (1.04957 -0.268194 0) (1.02221 -0.253841 0) (0.999534 -0.238872 0) (0.980812 -0.224347 0) (0.965116 -0.210777 0) (0.95156 -0.198347 0) (0.939357 -0.187024 0) (0.927856 -0.176592 0) (0.916577 -0.166726 0) (0.905182 -0.157001 0) (0.893515 -0.147005 0) (0.881596 -0.136251 0) (0.869491 -0.124463 0) (0.857507 -0.111148 0) (0.845922 -0.0963335 0) (0.835 -0.0795262 0) (0.825367 -0.0611392 0) (0.817087 -0.0404845 0) (0.810677 -0.0187674 0) (0.80683 0.00572998 0) (0.805205 0.0300735 0) (0.806561 0.0575813 0) (0.812784 0.0841892 0) (0.820893 0.1126 0) (0.834067 0.139205 0) (0.85467 0.16667 0) (0.878455 0.190487 0) (0.904579 0.208394 0) (1.01951 0.0219179 0) (1.01967 0.0230497 0) (1.01994 0.0240965 0) (1.02025 0.0249985 0) (1.02053 0.0257231 0) (1.02064 0.0262896 0) (1.02048 0.0267776 0) (1.01996 0.0273147 0) (1.01902 0.028055 0) (1.01769 0.0291636 0) (1.01601 0.0308152 0) (1.01405 0.0331995 0) (1.01196 0.0365219 0) (1.00996 0.0409916 0) (1.00836 0.0468002 0) (1.00757 0.054077 0) (1.00813 0.0628357 0) (1.01065 0.0729589 0) (1.01584 0.0841329 0) (1.02441 0.0957184 0) (1.03698 0.106774 0) (1.05403 0.116044 0) (1.07581 0.121565 0) (1.10149 0.120718 0) (1.12863 0.111286 0) (1.15371 0.0924091 0) (1.17285 0.0647638 0) (1.18238 0.0308803 0) (1.18 -0.00478981 0) (1.16601 -0.0369701 0) (1.14345 -0.0617697 0) (1.11649 -0.0777058 0) (1.08875 -0.0851886 0) (1.06255 -0.0856703 0) (1.03906 -0.0808394 0) (1.01906 -0.0720673 0) (1.00263 -0.0605971 0) (0.989107 -0.0475357 0) (0.978768 -0.0333362 0) (0.971846 -0.0183937 0) (0.966513 -0.00358045 0) (0.962295 0.0111879 0) (0.961911 0.0270019 0) (0.964982 0.0431905 0) (0.966312 0.057542 0) (0.965316 0.0706558 0) (0.970419 0.0865435 0) (0.988044 0.106873 0) (1.01081 0.127125 0) (1.02187 0.140065 0) (1.01097 0.141699 0) (0.984382 0.135021 0) (0.958298 0.129452 0) (0.946668 0.133605 0) (0.955605 0.146862 0) (0.982879 0.161098 0) (1.01848 0.170634 0) (1.05432 0.174353 0) (1.09469 0.169284 0) (1.13994 0.153357 0) (1.17743 0.12913 0) (1.20837 0.0937337 0) (1.24035 0.0427333 0) (1.25484 -0.012529 0) (1.23726 -0.0582331 0) (1.20953 -0.0998602 0) (1.19638 -0.149116 0) (1.19256 -0.20185 0) (1.18047 -0.243675 0) (1.15445 -0.26664 0) (1.12021 -0.272781 0) (1.0851 -0.268132 0) (1.05338 -0.257864 0) (1.02635 -0.245128 0) (1.00379 -0.23163 0) (0.984973 -0.218291 0) (0.969042 -0.205603 0) (0.955193 -0.193777 0) (0.942715 -0.182819 0) (0.93101 -0.172565 0) (0.919633 -0.162741 0) (0.908279 -0.152978 0) (0.896782 -0.142917 0) (0.885165 -0.132118 0) (0.873491 -0.120331 0) (0.861991 -0.107136 0) (0.850994 -0.092495 0) (0.840682 -0.0760556 0) (0.831593 -0.0580841 0) (0.824004 -0.0380614 0) (0.818087 -0.016964 0) (0.814627 0.00646583 0) (0.813754 0.0302406 0) (0.815166 0.0560397 0) (0.821223 0.0818126 0) (0.830453 0.108631 0) (0.842614 0.133736 0) (0.86137 0.158766 0) (0.88528 0.181619 0) (0.911296 0.198963 0) (1.01826 0.0218787 0) (1.01839 0.0229717 0) (1.01861 0.023994 0) (1.01886 0.0248992 0) (1.01908 0.0256649 0) (1.01914 0.0263116 0) (1.01897 0.0269106 0) (1.01848 0.0275763 0) (1.01764 0.0284489 0) (1.01646 0.0296815 0) (1.01499 0.0314352 0) (1.01331 0.0338821 0) (1.01157 0.0372032 0) (1.00997 0.0415766 0) (1.00882 0.0471573 0) (1.00851 0.0540386 0) (1.00951 0.0622051 0) (1.01239 0.0715101 0) (1.01775 0.0816225 0) (1.02623 0.091926 0) (1.0383 0.10152 0) (1.05432 0.109222 0) (1.07431 0.113323 0) (1.09744 0.111665 0) (1.12157 0.102454 0) (1.14363 0.0850286 0) (1.16031 0.0600976 0) (1.16857 0.0298854 0) (1.16652 -0.00187034 0) (1.15441 -0.0307603 0) (1.13465 -0.0534345 0) (1.11069 -0.0684608 0) (1.08565 -0.076 0) (1.06167 -0.0771373 0) (1.03991 -0.0732975 0) (1.02103 -0.0657049 0) (1.00541 -0.0553624 0) (0.992626 -0.043305 0) (0.982427 -0.0302128 0) (0.975326 -0.0162646 0) (0.970646 -0.00194253 0) (0.96683 0.0122036 0) (0.965038 0.026694 0) (0.967366 0.0420683 0) (0.971209 0.0570767 0) (0.972286 0.0703854 0) (0.973707 0.0835849 0) (0.984472 0.09992 0) (1.0062 0.119562 0) (1.02719 0.137335 0) (1.03312 0.14613 0) (1.01967 0.143976 0) (0.994641 0.13756 0) (0.973972 0.135996 0) (0.971866 0.141792 0) (0.989409 0.150897 0) (1.01693 0.158649 0) (1.04987 0.160878 0) (1.0899 0.154172 0) (1.12945 0.139575 0) (1.16188 0.117514 0) (1.19544 0.0822509 0) (1.22566 0.0351109 0) (1.2307 -0.0107883 0) (1.21316 -0.050751 0) (1.20035 -0.0949681 0) (1.20197 -0.14805 0) (1.20221 -0.199453 0) (1.18722 -0.236473 0) (1.15792 -0.25546 0) (1.12244 -0.260214 0) (1.08758 -0.256172 0) (1.05654 -0.247384 0) (1.03004 -0.236261 0) (1.00773 -0.224193 0) (0.988916 -0.212007 0) (0.972837 -0.200191 0) (0.958772 -0.188978 0) (0.946081 -0.17841 0) (0.934222 -0.168369 0) (0.922782 -0.15863 0) (0.911487 -0.148873 0) (0.900173 -0.138788 0) (0.888849 -0.127989 0) (0.877596 -0.116234 0) (0.866573 -0.103186 0) (0.856117 -0.0887528 0) (0.846417 -0.0726793 0) (0.83785 -0.0551539 0) (0.83086 -0.0357698 0) (0.825525 -0.0152782 0) (0.82235 0.00707653 0) (0.822034 0.0301785 0) (0.823889 0.0545724 0) (0.829419 0.0791602 0) (0.839216 0.104544 0) (0.851475 0.128459 0) (0.868237 0.151224 0) (0.89085 0.172533 0) (0.916763 0.189378 0) (1.01709 0.0218456 0) (1.0172 0.0229053 0) (1.01738 0.0239082 0) (1.01759 0.0248186 0) (1.01775 0.0256225 0) (1.01778 0.0263415 0) (1.01761 0.02704 0) (1.01716 0.0278204 0) (1.01642 0.02881 0) (1.01539 0.0301488 0) (1.01412 0.0319845 0) (1.01271 0.0344715 0) (1.01129 0.0377678 0) (1.01008 0.042023 0) (1.00935 0.047359 0) (1.00946 0.0538374 0) (1.01085 0.061417 0) (1.01401 0.0699292 0) (1.01949 0.0790334 0) (1.02779 0.0881399 0) (1.03932 0.0964013 0) (1.05428 0.102722 0) (1.07258 0.105626 0) (1.09336 0.103335 0) (1.11475 0.0944151 0) (1.13413 0.0783735 0) (1.14866 0.055917 0) (1.15582 0.0289825 0) (1.15407 0.000723862 0) (1.14358 -0.0251887 0) (1.12628 -0.0458547 0) (1.10503 -0.0599307 0) (1.08248 -0.0673981 0) (1.06058 -0.0690518 0) (1.04049 -0.0660568 0) (1.02281 -0.0595022 0) (1.00795 -0.0502426 0) (0.995848 -0.0391486 0) (0.986098 -0.0270095 0) (0.978854 -0.0140813 0) (0.974263 -0.000471247 0) (0.971193 0.0132515 0) (0.969165 0.0268287 0) (0.970002 0.0409398 0) (0.97411 0.0557201 0) (0.978026 0.0697286 0) (0.980104 0.0821231 0) (0.985568 0.0950585 0) (1.00075 0.111559 0) (1.02344 0.130218 0) (1.04255 0.144418 0) (1.0464 0.149032 0) (1.03234 0.146042 0) (1.01152 0.141817 0) (0.999679 0.14113 0) (1.003 0.1445 0) (1.01957 0.148331 0) (1.04791 0.14745 0) (1.08278 0.140064 0) (1.11517 0.127058 0) (1.14685 0.105039 0) (1.18116 0.0704406 0) (1.20333 0.0301222 0) (1.20304 -0.00795414 0) (1.19702 -0.0473846 0) (1.20291 -0.0958023 0) (1.21349 -0.149603 0) (1.21155 -0.196393 0) (1.19131 -0.227604 0) (1.15901 -0.243128 0) (1.12316 -0.247186 0) (1.08916 -0.244101 0) (1.05911 -0.236856 0) (1.0333 -0.227296 0) (1.01135 -0.216595 0) (0.992635 -0.205522 0) (0.976492 -0.194561 0) (0.962284 -0.183966 0) (0.949442 -0.17381 0) (0.937478 -0.164014 0) (0.926011 -0.154398 0) (0.914794 -0.144691 0) (0.903675 -0.134623 0) (0.892643 -0.123862 0) (0.881793 -0.112177 0) (0.871244 -0.0992966 0) (0.861292 -0.0851067 0) (0.85218 -0.0694042 0) (0.844144 -0.0523388 0) (0.837657 -0.0336128 0) (0.832919 -0.0137279 0) (0.830079 0.00760778 0) (0.830035 0.0298756 0) (0.832501 0.0531075 0) (0.837694 0.0764293 0) (0.847238 0.100282 0) (0.859975 0.123174 0) (0.875607 0.144187 0) (0.896093 0.16364 0) (0.920909 0.179595 0) (1.01602 0.0218178 0) (1.01611 0.0228493 0) (1.01626 0.0238367 0) (1.01643 0.0247537 0) (1.01655 0.0255926 0) (1.01656 0.0263762 0) (1.01639 0.0271629 0) (1.01599 0.0280444 0) (1.01535 0.0291353 0) (1.01446 0.0305629 0) (1.01339 0.032461 0) (1.01224 0.034967 0) (1.01114 0.038217 0) (1.01028 0.0423343 0) (1.00992 0.0474121 0) (1.01041 0.0534834 0) (1.01213 0.060486 0) (1.01552 0.0682349 0) (1.02104 0.0763878 0) (1.02912 0.0843849 0) (1.04007 0.0914391 0) (1.05399 0.0965527 0) (1.07068 0.0984524 0) (1.08932 0.0956858 0) (1.10825 0.0871081 0) (1.12524 0.0723836 0) (1.13789 0.052163 0) (1.14408 0.0281608 0) (1.14258 0.00305079 0) (1.13349 -0.0201698 0) (1.11836 -0.0389571 0) (1.09953 -0.0520716 0) (1.07928 -0.0593664 0) (1.05935 -0.0614091 0) (1.04084 -0.0591356 0) (1.02437 -0.0534902 0) (1.01032 -0.0452318 0) (0.998815 -0.0350878 0) (0.989592 -0.023812 0) (0.982477 -0.0117992 0) (0.977734 0.000948314 0) (0.97508 0.0141289 0) (0.973572 0.0271586 0) (0.973544 0.0402229 0) (0.976438 0.054048 0) (0.981632 0.0681004 0) (0.986412 0.0807431 0) (0.990733 0.092201 0) (0.999506 0.105366 0) (1.01727 0.121614 0) (1.04057 0.137479 0) (1.05824 0.147815 0) (1.06131 0.150661 0) (1.0516 0.148242 0) (1.03839 0.144914 0) (1.03101 0.143228 0) (1.03604 0.141419 0) (1.0539 0.136618 0) (1.07769 0.128334 0) (1.10377 0.114889 0) (1.13495 0.0920289 0) (1.16506 0.0604572 0) (1.18151 0.026572 0) (1.18802 -0.00858205 0) (1.19964 -0.050578 0) (1.21733 -0.100797 0) (1.22688 -0.151046 0) (1.21766 -0.191083 0) (1.19181 -0.216818 0) (1.15777 -0.229934 0) (1.12261 -0.233998 0) (1.09 -0.232093 0) (1.06115 -0.226366 0) (1.03616 -0.21828 0) (1.01466 -0.208869 0) (0.996124 -0.198861 0) (0.979996 -0.188734 0) (0.965719 -0.178758 0) (0.952786 -0.169031 0) (0.940764 -0.159509 0) (0.929308 -0.150053 0) (0.918189 -0.140436 0) (0.907275 -0.130424 0) (0.896538 -0.11974 0) (0.886072 -0.108162 0) (0.875992 -0.0954699 0) (0.866521 -0.0815525 0) (0.857951 -0.066237 0) (0.85046 -0.0496358 0) (0.844421 -0.031579 0) (0.840204 -0.0123345 0) (0.837806 0.00807732 0) (0.837868 0.0293852 0) (0.840784 0.051544 0) (0.846063 0.073711 0) (0.85493 0.0959755 0) (0.867694 0.117725 0) (0.883073 0.137495 0) (0.901707 0.155257 0) (0.924534 0.169962 0) (1.01504 0.0217947 0) (1.01512 0.0228018 0) (1.01524 0.023777 0) (1.01537 0.0247011 0) (1.01546 0.0255719 0) (1.01546 0.0264125 0) (1.01531 0.0272764 0) (1.01496 0.0282453 0) (1.01441 0.0294221 0) (1.01367 0.0309215 0) (1.0128 0.0328633 0) (1.01189 0.0353682 0) (1.01108 0.0385523 0) (1.01054 0.0425151 0) (1.01053 0.0473239 0) (1.01135 0.0529878 0) (1.01334 0.0594268 0) (1.0169 0.0664458 0) (1.02241 0.0737066 0) (1.03023 0.0806824 0) (1.04057 0.0866513 0) (1.05347 0.0907141 0) (1.06865 0.0917826 0) (1.08534 0.0886717 0) (1.10208 0.0804815 0) (1.11695 0.0669868 0) (1.12795 0.0487991 0) (1.13332 0.0274304 0) (1.132 0.00510079 0) (1.1241 -0.0156605 0) (1.11088 -0.0326911 0) (1.09422 -0.0448454 0) (1.07608 -0.0518883 0) (1.05799 -0.054206 0) (1.04099 -0.0525413 0) (1.02571 -0.0476967 0) (1.01252 -0.0403456 0) (1.0016 -0.031115 0) (0.992855 -0.0206705 0) (0.986054 -0.00947267 0) (0.981282 0.00240777 0) (0.978675 0.0148713 0) (0.977639 0.0274314 0) (0.977589 0.0398417 0) (0.979398 0.0525877 0) (0.984212 0.0658403 0) (0.990802 0.0785636 0) (0.996721 0.0899805 0) (1.00299 0.101295 0) (1.01471 0.114304 0) (1.03441 0.128539 0) (1.05708 0.14103 0) (1.07425 0.148699 0) (1.08063 0.150826 0) (1.07709 0.149233 0) (1.07083 0.145483 0) (1.07017 0.139409 0) (1.07713 0.13108 0) (1.09012 0.120321 0) (1.11081 0.104323 0) (1.1382 0.0807842 0) (1.16323 0.0521484 0) (1.18094 0.0211254 0) (1.19809 -0.0146084 0) (1.21908 -0.0580438 0) (1.23555 -0.105867 0) (1.236 -0.149583 0) (1.21827 -0.182855 0) (1.18867 -0.204507 0) (1.15468 -0.216386 0) (1.12113 -0.220954 0) (1.09024 -0.220287 0) (1.06274 -0.215978 0) (1.03863 -0.209252 0) (1.01765 -0.201047 0) (0.999378 -0.192051 0) (0.983342 -0.182734 0) (0.969065 -0.173373 0) (0.956101 -0.164088 0) (0.944069 -0.154866 0) (0.932659 -0.145602 0) (0.92166 -0.136114 0) (0.91096 -0.126197 0) (0.900522 -0.115622 0) (0.890427 -0.104188 0) (0.880798 -0.0917091 0) (0.871802 -0.0780863 0) (0.863724 -0.0631788 0) (0.856768 -0.0470501 0) (0.851173 -0.0296523 0) (0.847367 -0.0111017 0) (0.845451 0.00846517 0) (0.845647 0.0287833 0) (0.848701 0.0498388 0) (0.854289 0.0709678 0) (0.86263 0.0917735 0) (0.874763 0.112158 0) (0.890034 0.130885 0) (0.907633 0.147376 0) (0.928429 0.160831 0) (1.01414 0.0217752 0) (1.01421 0.0227614 0) (1.01431 0.0237267 0) (1.01442 0.024658 0) (1.01449 0.0255571 0) (1.01449 0.0264474 0) (1.01436 0.0273775 0) (1.01407 0.0284206 0) (1.01361 0.0296683 0) (1.01302 0.0312227 0) (1.01233 0.0331902 0) (1.01165 0.0356757 0) (1.01111 0.0387763 0) (1.01087 0.0425704 0) (1.01117 0.0471028 0) (1.01227 0.0523622 0) (1.01449 0.0582545 0) (1.01816 0.0645799 0) (1.02361 0.0710092 0) (1.03112 0.0770513 0) (1.04085 0.0820505 0) (1.05276 0.0852065 0) (1.06654 0.0855936 0) (1.08144 0.0822511 0) (1.09622 0.0744751 0) (1.10924 0.0621324 0) (1.11879 0.0458013 0) (1.12342 0.0267641 0) (1.12226 0.00692307 0) (1.11541 -0.0116086 0) (1.10384 -0.0270052 0) (1.08913 -0.0382133 0) (1.0729 -0.0449431 0) (1.05653 -0.0474392 0) (1.04098 -0.0462796 0) (1.02685 -0.0421391 0) (1.01453 -0.0356079 0) (1.00422 -0.0272327 0) (0.995928 -0.0175972 0) (0.989485 -0.00716621 0) (0.984864 0.00390721 0) (0.982211 0.0155924 0) (0.981308 0.0275967 0) (0.981542 0.039524 0) (0.98307 0.0514035 0) (0.987086 0.0635328 0) (0.993781 0.0757165 0) (1.00122 0.0873014 0) (1.00811 0.0981665 0) (1.0167 0.109053 0) (1.03082 0.120537 0) (1.05117 0.131889 0) (1.07371 0.141292 0) (1.09199 0.147272 0) (1.1023 0.149177 0) (1.10679 0.146518 0) (1.10986 0.139488 0) (1.11425 0.1292 0) (1.12353 0.115417 0) (1.14094 0.0963014 0) (1.16328 0.071835 0) (1.18421 0.044157 0) (1.20323 0.0132889 0) (1.22328 -0.0229664 0) (1.24092 -0.0648453 0) (1.24701 -0.107307 0) (1.23673 -0.144172 0) (1.21326 -0.172307 0) (1.1828 -0.191521 0) (1.15042 -0.203011 0) (1.11903 -0.208283 0) (1.09002 -0.20877 0) (1.0639 -0.205736 0) (1.04073 -0.200247 0) (1.02034 -0.193159 0) (1.0024 -0.18512 0) (0.986522 -0.176583 0) (0.972311 -0.167831 0) (0.959375 -0.158998 0) (0.947378 -0.150097 0) (0.93605 -0.141056 0) (0.925196 -0.13173 0) (0.914717 -0.121946 0) (0.904583 -0.111513 0) (0.894849 -0.100257 0) (0.885649 -0.0880169 0) (0.877121 -0.0747069 0) (0.869503 -0.0602253 0) (0.863039 -0.0445881 0) (0.857904 -0.027826 0) (0.854438 -0.0100096 0) (0.852931 0.00873818 0) (0.853383 0.0281133 0) (0.856377 0.0480311 0) (0.862141 0.0681258 0) (0.870331 0.0877056 0) (0.881592 0.106657 0) (0.8963 0.124252 0) (0.913342 0.139769 0) (0.932695 0.152245 0) (1.01333 0.0217584 0) (1.01338 0.0227264 0) (1.01347 0.0236834 0) (1.01356 0.0246213 0) (1.01363 0.025545 0) (1.01363 0.0264775 0) (1.01352 0.0274635 0) (1.01329 0.0285678 0) (1.01294 0.0298715 0) (1.01248 0.031465 0) (1.01197 0.0334414 0) (1.01151 0.0358905 0) (1.01121 0.0388923 0) (1.01124 0.0425062 0) (1.01181 0.0467575 0) (1.01315 0.0516184 0) (1.01555 0.0569843 0) (1.01929 0.0626548 0) (1.02464 0.0683136 0) (1.03182 0.073508 0) (1.04093 0.0776463 0) (1.05189 0.0800262 0) (1.06436 0.079862 0) (1.07766 0.0763809 0) (1.09069 0.0690385 0) (1.10206 0.0577747 0) (1.11034 0.0431183 0) (1.11434 0.0261725 0) (1.11332 0.00856287 0) (1.10735 -0.0079627 0) (1.09724 -0.0218459 0) (1.08426 -0.0321351 0) (1.06978 -0.038508 0) (1.055 -0.0411012 0) (1.04082 -0.0403553 0) (1.02782 -0.0368293 0) (1.01636 -0.0310382 0) (1.00668 -0.0234572 0) (0.998847 -0.0145989 0) (0.992761 -0.00490972 0) (0.988368 0.00541161 0) (0.98573 0.0163438 0) (0.984795 0.027711 0) (0.98524 0.0391154 0) (0.98696 0.050301 0) (0.990548 0.0614231 0) (0.996535 0.0727309 0) (1.00421 0.0840621 0) (1.01217 0.0948974 0) (1.02049 0.104921 0) (1.03142 0.114287 0) (1.04749 0.123278 0) (1.06849 0.131796 0) (1.09083 0.139034 0) (1.11063 0.143309 0) (1.12627 0.142807 0) (1.13786 0.137041 0) (1.14763 0.126364 0) (1.15998 0.110459 0) (1.17678 0.089211 0) (1.19508 0.0641721 0) (1.21232 0.0366147 0) (1.22902 0.00561572 0) (1.24386 -0.0295987 0) (1.25127 -0.0676117 0) (1.24638 -0.104235 0) (1.22955 -0.135874 0) (1.20454 -0.160791 0) (1.17554 -0.178709 0) (1.14559 -0.190169 0) (1.11653 -0.196104 0) (1.0894 -0.197587 0) (1.06466 -0.195672 0) (1.04247 -0.191295 0) (1.02272 -0.185235 0) (1.00518 -0.178094 0) (0.989532 -0.170307 0) (0.975449 -0.162151 0) (0.962597 -0.153776 0) (0.950681 -0.145216 0) (0.939466 -0.136425 0) (0.928781 -0.127293 0) (0.918534 -0.117676 0) (0.908703 -0.107417 0) (0.89933 -0.0963685 0) (0.890536 -0.0843943 0) (0.88246 -0.0714161 0) (0.875287 -0.0573706 0) (0.869264 -0.0422491 0) (0.864581 -0.0261063 0) (0.861447 -0.00903087 0) (0.860228 0.00888445 0) (0.860987 0.027369 0) (0.863945 0.0461889 0) (0.869604 0.0651795 0) (0.87779 0.0836887 0) (0.888414 0.10135 0) (0.902148 0.117702 0) (0.918495 0.132272 0) (0.936889 0.144009 0) (1.01259 0.0217431 0) (1.01264 0.0226948 0) (1.01272 0.0236446 0) (1.0128 0.024588 0) (1.01286 0.0255323 0) (1.01287 0.0265 0) (1.0128 0.0275315 0) (1.01263 0.0286845 0) (1.01237 0.0300302 0) (1.01205 0.0316475 0) (1.01171 0.033617 0) (1.01145 0.0360145 0) (1.01138 0.0389043 0) (1.01165 0.042329 0) (1.01245 0.0462977 0) (1.014 0.0507687 0) (1.01653 0.0556312 0) (1.0203 0.0606872 0) (1.02551 0.0656369 0) (1.03234 0.0700661 0) (1.04083 0.0734466 0) (1.05088 0.0751665 0) (1.06214 0.0745646 0) (1.07398 0.0710213 0) (1.08546 0.0641239 0) (1.09538 0.053864 0) (1.10256 0.0407221 0) (1.10599 0.0256591 0) (1.10509 0.0100135 0) (1.0999 -0.00469578 0) (1.09107 -0.0171742 0) (1.07962 -0.0265758 0) (1.06673 -0.0325604 0) (1.05344 -0.0351829 0) (1.04055 -0.0347704 0) (1.02862 -0.0317771 0) (1.01801 -0.0266505 0) (1.00898 -0.0198053 0) (1.00162 -0.0116882 0) (0.995891 -0.00271784 0) (0.991738 0.00689719 0) (0.989181 0.0171152 0) (0.988235 0.0278085 0) (0.98879 0.0386045 0) (0.990733 0.0491458 0) (0.994207 0.0594627 0) (0.999521 0.0699141 0) (1.00662 0.0806563 0) (1.01486 0.0912388 0) (1.02379 0.100849 0) (1.03415 0.109005 0) (1.04759 0.116032 0) (1.06519 0.122718 0) (1.08622 0.129159 0) (1.10859 0.133924 0) (1.1297 0.134864 0) (1.14799 0.130494 0) (1.16451 0.120063 0) (1.18145 0.103434 0) (1.19878 0.0817955 0) (1.2148 0.0570837 0) (1.22896 0.0300513 0) (1.24086 0.000183958 0) (1.24789 -0.0324984 0) (1.24679 -0.0662254 0) (1.23643 -0.0983569 0) (1.21812 -0.126579 0) (1.19442 -0.149475 0) (1.16789 -0.166548 0) (1.14053 -0.177995 0) (1.11374 -0.184449 0) (1.08842 -0.186758 0) (1.06506 -0.18581 0) (1.04387 -0.182426 0) (1.0248 -0.177305 0) (1.00772 -0.171003 0) (0.992368 -0.163929 0) (0.978471 -0.156357 0) (0.965754 -0.148441 0) (0.953964 -0.140237 0) (0.942896 -0.13172 0) (0.932403 -0.12281 0) (0.922399 -0.113393 0) (0.912871 -0.103338 0) (0.903855 -0.0925236 0) (0.895451 -0.0808404 0) (0.887802 -0.0682155 0) (0.881064 -0.0546125 0) (0.875446 -0.0400248 0) (0.87117 -0.0245011 0) (0.868385 -0.00814994 0) (0.867379 0.008922 0) (0.868374 0.0265268 0) (0.871406 0.0443387 0) (0.876823 0.0621979 0) (0.884845 0.0796519 0) (0.895116 0.0962166 0) (0.907898 0.11138 0) (0.923218 0.124925 0) (0.940669 0.135959 0) (1.01192 0.0217281 0) (1.01197 0.022665 0) (1.01205 0.0236079 0) (1.01213 0.0245554 0) (1.01219 0.0255162 0) (1.01222 0.0265119 0) (1.01218 0.0275792 0) (1.01208 0.0287688 0) (1.01191 0.0301428 0) (1.01171 0.0317696 0) (1.01154 0.0337178 0) (1.01146 0.0360502 0) (1.01159 0.0388169 0) (1.01208 0.042046 0) (1.01308 0.045733 0) (1.01479 0.0498259 0) (1.01742 0.0542099 0) (1.02117 0.0586927 0) (1.02622 0.062994 0) (1.03268 0.0667371 0) (1.04057 0.0694555 0) (1.04976 0.070619 0) (1.05991 0.0696776 0) (1.07044 0.0661349 0) (1.08053 0.0596848 0) (1.08918 0.0503586 0) (1.0954 0.0385866 0) (1.09834 0.0252034 0) (1.09754 0.0113464 0) (1.09302 -0.00173828 0) (1.08531 -0.0129404 0) (1.07523 -0.0214993 0) (1.06378 -0.0270778 0) (1.05185 -0.0296744 0) (1.04017 -0.0295243 0) (1.02927 -0.0269912 0) (1.0195 -0.0224577 0) (1.01111 -0.0162896 0) (1.00423 -0.00887487 0) (0.998872 -0.000589566 0) (0.994972 0.00835072 0) (0.992539 0.017881 0) (0.991639 0.0278851 0) (0.992266 0.0380225 0) (0.994317 0.0479271 0) (0.997731 0.0575718 0) (1.00259 0.0672959 0) (1.00903 0.0773455 0) (1.017 0.0873698 0) (1.02632 0.0964547 0) (1.03703 0.103823 0) (1.04963 0.109601 0) (1.06482 0.11473 0) (1.08301 0.119794 0) (1.10361 0.12395 0) (1.125 0.125175 0) (1.14588 0.121371 0) (1.16608 0.111268 0) (1.18544 0.095007 0) (1.20285 0.0742077 0) (1.21735 0.0506264 0) (1.22874 0.024974 0) (1.23638 -0.00282707 0) (1.23869 -0.0325649 0) (1.23426 -0.0628489 0) (1.22292 -0.0917939 0) (1.20569 -0.11755 0) (1.18423 -0.138858 0) (1.16028 -0.155164 0) (1.13537 -0.166501 0) (1.11071 -0.173319 0) (1.08713 -0.176295 0) (1.06513 -0.176173 0) (1.04494 -0.173667 0) (1.02661 -0.169398 0) (1.01003 -0.163873 0) (0.995026 -0.157475 0) (0.981371 -0.150469 0) (0.968838 -0.143013 0) (0.957215 -0.135175 0) (0.946326 -0.126953 0) (0.936045 -0.118291 0) (0.926299 -0.109101 0) (0.917074 -0.0992793 0) (0.908408 -0.0887256 0) (0.900386 -0.0773543 0) (0.893137 -0.0651044 0) (0.886815 -0.0519522 0) (0.881585 -0.0379054 0) (0.877663 -0.02301 0) (0.875215 -0.00736716 0) (0.874418 0.00887929 0) (0.875537 0.02559 0) (0.87867 0.04246 0) (0.883899 0.0592477 0) (0.891555 0.0756172 0) (0.90149 0.0911736 0) (0.913575 0.105311 0) (0.9278 0.11785 0) (0.944109 0.128124 0) (1.01132 0.0217121 0) (1.01138 0.0226352 0) (1.01145 0.0235711 0) (1.01153 0.0245207 0) (1.01161 0.0254937 0) (1.01166 0.0265105 0) (1.01166 0.0276041 0) (1.01162 0.0288188 0) (1.01155 0.0302085 0) (1.01147 0.0318314 0) (1.01144 0.0337452 0) (1.01153 0.0360007 0) (1.01185 0.0386353 0) (1.01252 0.0416649 0) (1.01369 0.0450738 0) (1.01553 0.0488023 0) (1.01822 0.0527346 0) (1.02192 0.0566864 0) (1.02678 0.0603981 0) (1.03287 0.0635306 0) (1.04018 0.0656743 0) (1.04855 0.0663749 0) (1.05767 0.0651764 0) (1.06702 0.0616856 0) (1.07589 0.0556807 0) (1.08343 0.0472175 0) (1.0888 0.0366875 0) (1.09133 0.0248055 0) (1.09062 0.0125353 0) (1.08668 0.000919108 0) (1.07994 -0.00911169 0) (1.07108 -0.0168709 0) (1.06093 -0.0220353 0) (1.05026 -0.024562 0) (1.03972 -0.024613 0) (1.0298 -0.0224755 0) (1.02084 -0.0184718 0) (1.01309 -0.0129237 0) (1.0067 -0.00616958 0) (1.0017 0.00146515 0) (0.998064 0.00975688 0) (0.995794 0.0186203 0) (0.994977 0.0279331 0) (0.995653 0.0373963 0) (0.997722 0.0466773 0) (1.00104 0.055723 0) (1.0056 0.064808 0) (1.01159 0.0741484 0) (1.01922 0.0834303 0) (1.02855 0.0917967 0) (1.03944 0.0984617 0) (1.05172 0.103445 0) (1.06553 0.107574 0) (1.08128 0.111526 0) (1.09917 0.114771 0) (1.11883 0.115493 0) (1.13949 0.111565 0) (1.16019 0.101752 0) (1.17953 0.0863775 0) (1.19608 0.0669705 0) (1.20914 0.0450458 0) (1.21859 0.0212339 0) (1.22404 -0.00443516 0) (1.22462 -0.031611 0) (1.21964 -0.059137 0) (1.20907 -0.0854864 0) (1.19359 -0.109148 0) (1.17439 -0.129017 0) (1.15282 -0.144539 0) (1.13016 -0.155662 0) (1.10749 -0.162706 0) (1.08556 -0.166205 0) (1.06488 -0.16678 0) (1.04572 -0.165042 0) (1.02814 -0.161541 0) (1.01211 -0.156732 0) (0.997505 -0.150971 0) (0.984142 -0.14451 0) (0.97184 -0.137509 0) (0.960423 -0.130046 0) (0.949744 -0.122137 0) (0.939696 -0.113745 0) (0.930218 -0.104808 0) (0.921299 -0.0952455 0) (0.912976 -0.0849772 0) (0.905325 -0.0739368 0) (0.898459 -0.0620797 0) (0.892523 -0.0493902 0) (0.887667 -0.0358859 0) (0.884067 -0.0216224 0) (0.881907 -0.00668586 0) (0.881331 0.00876682 0) (0.882523 0.0245888 0) (0.885676 0.0405345 0) (0.890799 0.0563367 0) (0.898056 0.0716529 0) (0.907506 0.0862043 0) (0.919012 0.099427 0) (0.93232 0.111082 0) (0.947451 0.120606 0) (1.01079 0.0216937 0) (1.01085 0.0226035 0) (1.01093 0.0235318 0) (1.01102 0.0244813 0) (1.01111 0.0254621 0) (1.01118 0.0264933 0) (1.01123 0.0276041 0) (1.01125 0.0288332 0) (1.01127 0.0302267 0) (1.0113 0.0318335 0) (1.0114 0.0337012 0) (1.01165 0.0358697 0) (1.01213 0.0383655 0) (1.01296 0.0411939 0) (1.01427 0.0443304 0) (1.01621 0.0477103 0) (1.01893 0.0512188 0) (1.02255 0.0546819 0) (1.0272 0.0578609 0) (1.03291 0.0604537 0) (1.03965 0.0621028 0) (1.04727 0.0624229 0) (1.05545 0.0610375 0) (1.06374 0.0576397 0) (1.07153 0.0520707 0) (1.07809 0.044406 0) (1.08274 0.0349986 0) (1.0849 0.0244596 0) (1.08426 0.0135947 0) (1.08083 0.00329944 0) (1.07495 -0.00565534 0) (1.06718 -0.0126622 0) (1.0582 -0.0174126 0) (1.04868 -0.0198346 0) (1.0392 -0.020034 0) (1.03021 -0.0182334 0) (1.02204 -0.0147025 0) (1.01492 -0.00972139 0) (1.00901 -0.00358332 0) (1.00438 0.0034276 0) (1.00102 0.011099 0) (0.998936 0.0193171 0) (0.99822 0.0279509 0) (0.998923 0.0367453 0) (1.00096 0.0454191 0) (1.00417 0.0539026 0) (1.00852 0.0623841 0) (1.01422 0.0710038 0) (1.02158 0.0794659 0) (1.03071 0.0870311 0) (1.04138 0.0930266 0) (1.05318 0.0974484 0) (1.06594 0.100956 0) (1.07999 0.1041 0) (1.09586 0.10641 0) (1.11375 0.10631 0) (1.1331 0.101985 0) (1.15261 0.0924709 0) (1.17058 0.0781631 0) (1.18567 0.0603033 0) (1.19734 0.0400881 0) (1.20553 0.0180686 0) (1.20998 -0.00560281 0) (1.21012 -0.0304837 0) (1.20546 -0.055591 0) (1.19597 -0.0796587 0) (1.18217 -0.10142 0) (1.16499 -0.119915 0) (1.14555 -0.134624 0) (1.12494 -0.145446 0) (1.10411 -0.152597 0) (1.08375 -0.156494 0) (1.06436 -0.157647 0) (1.04621 -0.156575 0) (1.02942 -0.153759 0) (1.01398 -0.149606 0) (0.999807 -0.144442 0) (0.986781 -0.138504 0) (0.974751 -0.13195 0) (0.963577 -0.124867 0) (0.953136 -0.117283 0) (0.94334 -0.109183 0) (0.934142 -0.100521 0) (0.925532 -0.0912407 0) (0.917545 -0.0812803 0) (0.910254 -0.0705898 0) (0.903756 -0.0591387 0) (0.89818 -0.0469239 0) (0.893672 -0.0339653 0) (0.890379 -0.020328 0) (0.888461 -0.00609811 0) (0.888079 0.00858106 0) (0.88935 0.0235479 0) (0.892447 0.0385787 0) (0.897443 0.0534436 0) (0.904377 0.0677877 0) (0.913275 0.0813585 0) (0.924137 0.0936967 0) (0.93666 0.104566 0) (0.950752 0.113426 0) (1.01032 0.0216716 0) (1.01038 0.022568 0) (1.01047 0.0234879 0) (1.01057 0.0244348 0) (1.01068 0.025419 0) (1.01078 0.026458 0) (1.01087 0.0275775 0) (1.01096 0.028811 0) (1.01106 0.0301971 0) (1.0112 0.0317768 0) (1.01143 0.033588 0) (1.01181 0.0356613 0) (1.01243 0.0380135 0) (1.0134 0.0406412 0) (1.01482 0.0435132 0) (1.01683 0.0465619 0) (1.01954 0.0496756 0) (1.02306 0.0526913 0) (1.02749 0.0553926 0) (1.03282 0.0575114 0) (1.03903 0.0587391 0) (1.04593 0.0587503 0) (1.05326 0.0572383 0) (1.06061 0.0539636 0) (1.06743 0.0488187 0) (1.07314 0.0418921 0) (1.07716 0.0334977 0) (1.07901 0.0241554 0) (1.07844 0.0145524 0) (1.07545 0.00543955 0) (1.07033 -0.00253423 0) (1.06352 -0.00884003 0) (1.0556 -0.0131841 0) (1.04713 -0.0154764 0) (1.03864 -0.015781 0) (1.03053 -0.0142671 0) (1.0231 -0.0111561 0) (1.0166 -0.00669027 0) (1.01118 -0.00112376 0) (1.00691 0.0052943 0) (1.00383 0.0123663 0) (1.00195 0.0199607 0) (1.00134 0.0279383 0) (1.00206 0.0360817 0) (1.00404 0.0441603 0) (1.00715 0.0520927 0) (1.01136 0.0599791 0) (1.01687 0.0678765 0) (1.02397 0.0755129 0) (1.03274 0.082289 0) (1.04291 0.0876754 0) (1.05403 0.0916552 0) (1.06589 0.0947009 0) (1.07881 0.0971566 0) (1.09336 0.0985578 0) (1.1098 0.0976126 0) (1.12754 0.0929095 0) (1.14526 0.0837718 0) (1.16142 0.0705426 0) (1.17493 0.0541666 0) (1.18537 0.0355579 0) (1.19265 0.0152275 0) (1.19651 -0.00657502 0) (1.1965 -0.029372 0) (1.19225 -0.0523018 0) (1.18375 -0.0742958 0) (1.17142 -0.0942962 0) (1.15602 -0.111478 0) (1.13848 -0.125365 0) (1.11974 -0.13582 0) (1.10061 -0.14298 0) (1.08174 -0.147165 0) (1.06359 -0.148788 0) (1.04645 -0.148287 0) (1.03045 -0.146077 0) (1.01563 -0.142521 0) (1.00193 -0.137911 0) (0.989284 -0.132472 0) (0.977565 -0.126356 0) (0.966666 -0.119655 0) (0.95649 -0.112408 0) (0.946967 -0.104614 0) (0.938058 -0.0962485 0) (0.92976 -0.0872702 0) (0.922104 -0.077637 0) (0.915158 -0.0673137 0) (0.909013 -0.0562812 0) (0.903779 -0.0445481 0) (0.899588 -0.0321406 0) (0.896582 -0.0191228 0) (0.894884 -0.00559008 0) (0.894648 0.00832586 0) (0.895993 0.0224723 0) (0.899023 0.0366224 0) (0.903827 0.0505729 0) (0.910459 0.0640071 0) (0.918857 0.0766694 0) (0.929026 0.0881515 0) (0.940756 0.0982726 0) (0.953917 0.106535 0) (1.00991 0.0216443 0) (1.00998 0.0225272 0) (1.01008 0.0234373 0) (1.01019 0.024379 0) (1.01032 0.0253621 0) (1.01045 0.0264025 0) (1.01059 0.0275228 0) (1.01074 0.0287512 0) (1.01092 0.0301202 0) (1.01115 0.0316627 0) (1.01149 0.0334088 0) (1.012 0.0353804 0) (1.01274 0.0375861 0) (1.01382 0.0400155 0) (1.01532 0.0426326 0) (1.01737 0.0453688 0) (1.02005 0.0481168 0) (1.02346 0.0507259 0) (1.02765 0.0530013 0) (1.03262 0.0547072 0) (1.03831 0.0555792 0) (1.04456 0.0553445 0) (1.05112 0.053755 0) (1.05761 0.0506268 0) (1.06359 0.0458921 0) (1.06856 0.0396444 0) (1.07203 0.032162 0) (1.07362 0.0238936 0) (1.07312 0.0154155 0) (1.07051 0.00735778 0) (1.06605 0.000289321 0) (1.0601 -0.00537202 0) (1.05313 -0.00932679 0) (1.04563 -0.0114734 0) (1.03805 -0.0118473 0) (1.03076 -0.0105748 0) (1.02405 -0.00783597 0) (1.01814 -0.00383833 0) (1.01319 0.00119824 0) (1.0093 0.00705534 0) (1.00649 0.0135505 0) (1.00481 0.0205438 0) (1.00432 0.0278926 0) (1.00506 0.0354087 0) (1.00698 0.042901 0) (1.01 0.0502797 0) (1.01411 0.0575716 0) (1.01945 0.064765 0) (1.02625 0.0716157 0) (1.03455 0.077658 0) (1.04411 0.0824888 0) (1.05453 0.0860694 0) (1.06565 0.0886869 0) (1.07774 0.0904987 0) (1.09128 0.0910735 0) (1.10638 0.0894051 0) (1.12243 0.0844558 0) (1.13828 0.0757479 0) (1.15267 0.0635338 0) (1.16474 0.0485112 0) (1.17412 0.0313909 0) (1.18062 0.0126362 0) (1.18399 -0.00742645 0) (1.18387 -0.0283044 0) (1.17999 -0.0492434 0) (1.17235 -0.069342 0) (1.16129 -0.0877134 0) (1.14746 -0.103649 0) (1.13162 -0.116714 0) (1.11457 -0.126752 0) (1.09702 -0.13384 0) (1.07956 -0.138217 0) (1.06261 -0.140214 0) (1.04646 -0.140196 0) (1.03126 -0.138518 0) (1.01707 -0.1355 0) (1.00389 -0.131404 0) (0.991649 -0.126438 0) (0.980275 -0.120747 0) (0.969682 -0.114426 0) (0.959796 -0.107523 0) (0.950561 -0.100051 0) (0.941951 -0.0919974 0) (0.933967 -0.0833396 0) (0.926639 -0.0740501 0) (0.920027 -0.0641087 0) (0.914216 -0.0535064 0) (0.909307 -0.0422598 0) (0.90541 -0.030405 0) (0.902659 -0.0180039 0) (0.901166 -0.00515092 0) (0.901048 0.00801679 0) (0.902429 0.0213631 0) (0.905396 0.0346757 0) (0.909989 0.0477501 0) (0.916281 0.0603084 0) (0.924215 0.072127 0) (0.933737 0.0828171 0) (0.944663 0.0922236 0) (0.956907 0.0999147 0) (1.00955 0.0216105 0) (1.00963 0.0224792 0) (1.00974 0.023378 0) (1.00988 0.0243116 0) (1.01003 0.0252893 0) (1.01019 0.0263252 0) (1.01037 0.0274387 0) (1.01058 0.0286537 0) (1.01083 0.0299964 0) (1.01116 0.0314933 0) (1.01159 0.033167 0) (1.0122 0.0350319 0) (1.01305 0.0370901 0) (1.01421 0.0393254 0) (1.01578 0.0416987 0) (1.01784 0.0441419 0) (1.02048 0.0465535 0) (1.02375 0.0487954 0) (1.0277 0.0506937 0) (1.03232 0.052043 0) (1.03752 0.0526177 0) (1.04317 0.0521917 0) (1.04902 0.0505657 0) (1.05476 0.0476007 0) (1.06 0.0432587 0) (1.06432 0.0376342 0) (1.06731 0.030975 0) (1.06868 0.0236659 0) (1.06824 0.0161907 0) (1.06599 0.00907484 0) (1.0621 0.00281456 0) (1.0569 -0.00224007 0) (1.05079 -0.0058191 0) (1.04417 -0.00780996 0) (1.03743 -0.00822351 0) (1.03091 -0.00715316 0) (1.02488 -0.00474421 0) (1.01955 -0.00117159 0) (1.01506 0.0033745 0) (1.01153 0.00870306 0) (1.009 0.0146459 0) (1.00753 0.0210619 0) (1.00715 0.0278098 0) (1.00792 0.0347233 0) (1.00979 0.0416389 0) (1.01273 0.0484602 0) (1.01672 0.0551612 0) (1.02188 0.0616825 0) (1.02836 0.0678075 0) (1.03617 0.0731784 0) (1.04509 0.0774857 0) (1.05485 0.0806645 0) (1.06533 0.0828512 0) (1.07672 0.0840737 0) (1.08931 0.0839522 0) (1.10308 0.0817302 0) (1.1175 0.0766584 0) (1.1316 0.0683876 0) (1.1444 0.0570955 0) (1.1552 0.0432888 0) (1.16361 0.0275376 0) (1.16941 0.0102626 0) (1.17235 -0.00816801 0) (1.17213 -0.027272 0) (1.16857 -0.0463888 0) (1.16167 -0.0647532 0) (1.15174 -0.0816176 0) (1.13929 -0.0963735 0) (1.12498 -0.108628 0) (1.10946 -0.118214 0) (1.09337 -0.125163 0) (1.07723 -0.129649 0) (1.06143 -0.131933 0) (1.04625 -0.132318 0) (1.03186 -0.131103 0) (1.01833 -0.128566 0) (1.00567 -0.124943 0) (0.993875 -0.120423 0) (0.982875 -0.115143 0) (0.972616 -0.109199 0) (0.963041 -0.102644 0) (0.954112 -0.0955028 0) (0.945809 -0.0877761 0) (0.93814 -0.079454 0) (0.931134 -0.0705229 0) (0.924848 -0.0609751 0) (0.919355 -0.0508125 0) (0.91475 -0.040057 0) (0.911129 -0.0287523 0) (0.908605 -0.016964 0) (0.90729 -0.00477769 0) (0.907278 0.00766644 0) (0.908664 0.020234 0) (0.911545 0.03274 0) (0.915938 0.0449888 0) (0.921875 0.0567128 0) (0.92933 0.0677265 0) (0.938249 0.0776843 0) (0.948422 0.0864335 0) (0.959774 0.0935854 0) (1.00923 0.0215689 0) (1.00933 0.0224226 0) (1.00946 0.0233083 0) (1.00961 0.0242309 0) (1.00979 0.0251989 0) (1.00999 0.0262246 0) (1.01021 0.0273246 0) (1.01048 0.0285183 0) (1.01079 0.029827 0) (1.0112 0.0312709 0) (1.01172 0.0328663 0) (1.01242 0.0346213 0) (1.01335 0.0365324 0) (1.01458 0.0385795 0) (1.01619 0.0407213 0) (1.01825 0.0428917 0) (1.02082 0.0449957 0) (1.02395 0.0469082 0) (1.02766 0.0484751 0) (1.03192 0.0495186 0) (1.03667 0.0498482 0) (1.04176 0.0492777 0) (1.04698 0.0476485 0) (1.05205 0.0448579 0) (1.05664 0.0408889 0) (1.06039 0.0358367 0) (1.06299 0.0299192 0) (1.06416 0.0234646 0) (1.06378 0.0168824 0) (1.06183 0.0106119 0) (1.05846 0.00506478 0) (1.05394 0.000576626 0) (1.04859 -0.00264017 0) (1.04276 -0.00447013 0) (1.0368 -0.00490103 0) (1.031 -0.00399979 0) (1.02561 -0.00188217 0) (1.02082 0.00130571 0) (1.01679 0.00539884 0) (1.01362 0.0102309 0) (1.01136 0.0156476 0) (1.01009 0.0215113 0) (1.00983 0.0276855 0) (1.01062 0.0340206 0) (1.01246 0.0403719 0) (1.01531 0.0466378 0) (1.01918 0.0527578 0) (1.02414 0.0586438 0) (1.03029 0.0641039 0) (1.0376 0.0688581 0) (1.04594 0.0726619 0) (1.05508 0.0754279 0) (1.06494 0.0771878 0) (1.07562 0.0778909 0) (1.08727 0.0772136 0) (1.09978 0.0745935 0) (1.11269 0.0694876 0) (1.12523 0.0616395 0) (1.13662 0.0511745 0) (1.14627 0.0384724 0) (1.1538 0.0239806 0) (1.15895 0.00809264 0) (1.16149 -0.00880498 0) (1.16119 -0.026267 0) (1.15791 -0.0437138 0) (1.15167 -0.0604901 0) (1.14273 -0.0759615 0) (1.13151 -0.0896043 0) (1.11856 -0.101065 0) (1.10444 -0.110176 0) (1.0897 -0.116933 0) (1.0748 -0.121457 0) (1.0601 -0.123953 0) (1.04586 -0.124666 0) (1.03226 -0.12385 0) (1.0194 -0.121742 0) (1.0073 -0.118551 0) (0.995963 -0.114448 0) (0.985364 -0.109564 0) (0.97546 -0.10399 0) (0.966216 -0.0977857 0) (0.957606 -0.0909827 0) (0.949619 -0.0835932 0) (0.942266 -0.0756191 0) (0.935578 -0.0670584 0) (0.929606 -0.0579138 0) (0.924417 -0.0481974 0) (0.920096 -0.0379364 0) (0.916731 -0.0271785 0) (0.914417 -0.0159938 0) (0.913251 -0.00446737 0) (0.913324 0.00727807 0) (0.914705 0.0190998 0) (0.917472 0.0308259 0) (0.921657 0.0422889 0) (0.927257 0.0532329 0) (0.934229 0.0634837 0) (0.942549 0.0727468 0) (0.952018 0.0808901 0) (0.962538 0.0875504 0) (1.00897 0.0215181 0) (1.00908 0.0223556 0) (1.00923 0.0232265 0) (1.0094 0.0241352 0) (1.0096 0.0250894 0) (1.00983 0.0260997 0) (1.0101 0.0271799 0) (1.01042 0.0283455 0) (1.0108 0.0296133 0) (1.01127 0.0309982 0) (1.01187 0.0325108 0) (1.01264 0.0341543 0) (1.01364 0.0359204 0) (1.01492 0.0377861 0) (1.01655 0.0397097 0) (1.01858 0.0416278 0) (1.02107 0.0434525 0) (1.02405 0.0450714 0) (1.02752 0.0463491 0) (1.03146 0.0471331 0) (1.03578 0.0472635 0) (1.04036 0.0465881 0) (1.04501 0.0449825 0) (1.04948 0.0423723 0) (1.0535 0.0387568 0) (1.05677 0.0342281 0) (1.05902 0.0289771 0) (1.06003 0.0232855 0) (1.0597 0.017497 0) (1.05802 0.0119829 0) (1.05512 0.00708975 0) (1.05119 0.00310756 0) (1.04653 0.000228768 0) (1.04142 -0.00143788 0) (1.03617 -0.00186918 0) (1.03104 -0.00110845 0) (1.02625 0.000752322 0) (1.02198 0.00359091 0) (1.01838 0.00726669 0) (1.01555 0.0116337 0) (1.01357 0.0165515 0) (1.01248 0.0218889 0) (1.01234 0.0275162 0) (1.01317 0.0332967 0) (1.01497 0.039099 0) (1.01773 0.0448185 0) (1.02147 0.0503736 0) (1.02621 0.0556608 0) (1.03203 0.0605096 0) (1.03888 0.064694 0) (1.04666 0.0680137 0) (1.05521 0.0703659 0) (1.06445 0.0717173 0) (1.07441 0.0719741 0) (1.08513 0.0708638 0) (1.09647 0.0679687 0) (1.10802 0.0628923 0) (1.11918 0.0554537 0) (1.12931 0.0457356 0) (1.1379 0.0340407 0) (1.14461 0.0207218 0) (1.14916 0.00613239 0) (1.15134 -0.00933723 0) (1.15097 -0.0252856 0) (1.14794 -0.0412016 0) (1.14228 -0.0565213 0) (1.13421 -0.0707042 0) (1.12409 -0.0832993 0) (1.11237 -0.0939904 0) (1.09952 -0.102611 0) (1.08602 -0.109133 0) (1.07228 -0.113637 0) (1.05862 -0.116278 0) (1.04531 -0.117254 0) (1.03249 -0.116775 0) (1.0203 -0.115045 0) (1.00877 -0.112247 0) (0.997915 -0.108534 0) (0.987736 -0.104027 0) (0.978209 -0.098816 0) (0.969313 -0.0929613 0) (0.961033 -0.0865014 0) (0.953368 -0.0794573 0) (0.946332 -0.0718405 0) (0.939957 -0.0636595 0) (0.934289 -0.0549261 0) (0.929392 -0.0456593 0) (0.925337 -0.0358945 0) (0.922206 -0.0256787 0) (0.920082 -0.0150867 0) (0.919045 -0.00420399 0) (0.919182 0.00685933 0) (0.920545 0.0179665 0) (0.923188 0.0289478 0) (0.927144 0.0396571 0) (0.932416 0.0498673 0) (0.938932 0.0594091 0) (0.946659 0.0680162 0) (0.955442 0.0755875 0) (0.965182 0.0817947 0) (1.00874 0.0214569 0) (1.00887 0.0222771 0) (1.00904 0.0231311 0) (1.00923 0.024023 0) (1.00946 0.0249596 0) (1.00972 0.0259497 0) (1.01003 0.0270044 0) (1.01039 0.0281361 0) (1.01083 0.0293573 0) (1.01136 0.0306783 0) (1.01203 0.0321051 0) (1.01286 0.0336365 0) (1.01391 0.0352609 0) (1.01523 0.0369534 0) (1.01686 0.0386728 0) (1.01885 0.0403589 0) (1.02125 0.0419317 0) (1.02406 0.0432907 0) (1.0273 0.0443182 0) (1.03092 0.044884 0) (1.03485 0.0448551 0) (1.03897 0.0441086 0) (1.04311 0.0425476 0) (1.04706 0.0401203 0) (1.05057 0.0368375 0) (1.05342 0.0327863 0) (1.05537 0.0281347 0) (1.05626 0.0231226 0) (1.05598 0.0180407 0) (1.05454 0.0132002 0) (1.05204 0.00889552 0) (1.04865 0.00537308 0) (1.0446 0.00280794 0) (1.04015 0.00130137 0) (1.03555 0.000883342 0) (1.03103 0.00152711 0) (1.02679 0.00316089 0) (1.02302 0.00568333 0) (1.01983 0.00897501 0) (1.01734 0.0129078 0) (1.01562 0.0173545 0) (1.01472 0.0221924 0) (1.01468 0.0272991 0) (1.01555 0.032549 0) (1.01732 0.0378206 0) (1.01999 0.0430085 0) (1.02358 0.0480192 0) (1.0281 0.0527431 0) (1.03359 0.0570269 0) (1.04 0.0606831 0) (1.04725 0.0635417 0) (1.05522 0.065492 0) (1.06384 0.066463 0) (1.07308 0.0663404 0) (1.0829 0.0648987 0) (1.09316 0.0618222 0) (1.1035 0.0568267 0) (1.11342 0.0497833 0) (1.12242 0.0407554 0) (1.13005 0.0299803 0) (1.13599 0.017748 0) (1.13999 0.00439578 0) (1.14185 -0.00976811 0) (1.14142 -0.0243278 0) (1.13861 -0.0388387 0) (1.13347 -0.0528204 0) (1.12618 -0.0658112 0) (1.11703 -0.0774215 0) (1.10641 -0.0873689 0) (1.09472 -0.095493 0) (1.08237 -0.101748 0) (1.06971 -0.106182 0) (1.05704 -0.108911 0) (1.04461 -0.11009 0) (1.03257 -0.109894 0) (1.02104 -0.108495 0) (1.01009 -0.106052 0) (0.999733 -0.102701 0) (0.989991 -0.0985527 0) (0.980857 -0.0936937 0) (0.972322 -0.0881854 0) (0.964382 -0.0820705 0) (0.957044 -0.0753769 0) (0.950326 -0.0681243 0) (0.944258 -0.0603294 0) (0.938886 -0.0520121 0) (0.934265 -0.0431978 0) (0.930462 -0.0339265 0) (0.927546 -0.0242484 0) (0.925592 -0.0142376 0) (0.924668 -0.00397632 0) (0.924846 0.00642391 0) (0.926176 0.0168418 0) (0.928694 0.0271162 0) (0.932415 0.0371079 0) (0.937351 0.0466199 0) (0.943431 0.0555006 0) (0.9506 0.0634998 0) (0.958717 0.070533 0) (0.967706 0.0763137 0) (1.00856 0.0213842 0) (1.0087 0.0221858 0) (1.00889 0.0230209 0) (1.0091 0.0238933 0) (1.00936 0.0248086 0) (1.00965 0.0257741 0) (1.01 0.0267985 0) (1.01041 0.0278912 0) (1.01089 0.029061 0) (1.01148 0.0303144 0) (1.01219 0.0316535 0) (1.01308 0.0330738 0) (1.01416 0.034561 0) (1.01549 0.0360894 0) (1.01711 0.0376188 0) (1.01905 0.0390932 0) (1.02135 0.0404401 0) (1.024 0.0415707 0) (1.02702 0.0423833 0) (1.03034 0.0427678 0) (1.03391 0.0426145 0) (1.0376 0.0418246 0) (1.04128 0.0403244 0) (1.04477 0.0380793 0) (1.04785 0.0351079 0) (1.05034 0.0314918 0) (1.05203 0.0273779 0) (1.05281 0.0229711 0) (1.05259 0.0185166 0) (1.05136 0.0142757 0) (1.04922 0.0104975 0) (1.0463 0.00739295 0) (1.0428 0.00511714 0) (1.03894 0.00376345 0) (1.03493 0.00336782 0) (1.03097 0.00391405 0) (1.02726 0.00534721 0) (1.02395 0.007584 0) (1.02115 0.0105226 0) (1.01898 0.0140509 0) (1.01751 0.0180546 0) (1.01678 0.0224198 0) (1.01686 0.0270324 0) (1.01776 0.0317764 0) (1.0195 0.0365381 0) (1.02208 0.0412134 0) (1.02551 0.0457037 0) (1.02981 0.0498985 0) (1.03496 0.0536587 0) (1.04096 0.0568252 0) (1.04771 0.0592492 0) (1.05512 0.0608184 0) (1.06311 0.0614423 0) (1.07163 0.0610016 0) (1.08061 0.0593083 0) (1.08987 0.0561255 0) (1.09911 0.0512515 0) (1.10793 0.0445899 0) (1.11591 0.0362041 0) (1.12267 0.0262718 0) (1.12791 0.0150441 0) (1.1314 0.00282039 0) (1.13296 -0.0101151 0) (1.13247 -0.023388 0) (1.12987 -0.0366078 0) (1.12519 -0.0493604 0) (1.11859 -0.0612488 0) (1.11032 -0.0719355 0) (1.10069 -0.0811688 0) (1.09005 -0.0887962 0) (1.07875 -0.0947603 0) (1.0671 -0.099084 0) (1.05538 -0.101851 0) (1.04379 -0.103182 0) (1.03251 -0.10322 0) (1.02164 -0.102108 0) (1.01126 -0.0999829 0) (1.00142 -0.0969657 0) (0.992128 -0.0931574 0) (0.983399 -0.0886389 0) (0.975236 -0.0834716 0) (0.967645 -0.077701 0) (0.960638 -0.0713605 0) (0.954236 -0.0644762 0) (0.948471 -0.0570716 0) (0.943384 -0.0491727 0) (0.939028 -0.0408113 0) (0.93546 -0.0320297 0) (0.932743 -0.0228823 0) (0.930942 -0.0134391 0) (0.930115 -0.0037831 0) (0.930319 0.00597756 0) (0.931599 0.0157323 0) (0.933984 0.0253335 0) (0.937475 0.0346484 0) (0.942074 0.043499 0) (0.947725 0.051757 0) (0.954367 0.0591936 0) (0.961857 0.0657296 0) (0.970129 0.0711115 0) (1.0084 0.0212989 0) (1.00857 0.0220805 0) (1.00877 0.0228948 0) (1.00901 0.023745 0) (1.00929 0.0246358 0) (1.00962 0.0255728 0) (1.01 0.0265627 0) (1.01044 0.0276121 0) (1.01097 0.0287268 0) (1.0116 0.0299101 0) (1.01236 0.0311609 0) (1.01328 0.032472 0) (1.01439 0.0338275 0) (1.01572 0.0352014 0) (1.01731 0.0365554 0) (1.01919 0.0378378 0) (1.02138 0.0389835 0) (1.02388 0.0399148 0) (1.02667 0.0405445 0) (1.02971 0.0407803 0) (1.03295 0.0405322 0) (1.03626 0.0397221 0) (1.03954 0.0382945 0) (1.04261 0.0362283 0) (1.04532 0.0335472 0) (1.04749 0.0303265 0) (1.04898 0.0266946 0) (1.04966 0.0228261 0) (1.04949 0.0189279 0) (1.04846 0.0152196 0) (1.04663 0.0119115 0) (1.04414 0.00918413 0) (1.04113 0.00717338 0) (1.0378 0.00596522 0) (1.03432 0.00559689 0) (1.03089 0.00606147 0) (1.02766 0.00731702 0) (1.02477 0.00929522 0) (1.02235 0.0119095 0) (1.02048 0.0150622 0) (1.01924 0.0186506 0) (1.01869 0.0225703 0) (1.01886 0.0267155 0) (1.0198 0.0309787 0) (1.02151 0.0352535 0) (1.02399 0.0394386 0) (1.02726 0.0434346 0) (1.03132 0.0471333 0) (1.03617 0.0504083 0) (1.04175 0.0531214 0) (1.04802 0.0551402 0) (1.05488 0.0563549 0) (1.06226 0.0566675 0) (1.07009 0.0559626 0) (1.07826 0.0540839 0) (1.08661 0.0508554 0) (1.09486 0.0461276 0) (1.1027 0.0398414 0) (1.10975 0.0320502 0) (1.11572 0.0228966 0) (1.12032 0.0126022 0) (1.12335 0.00141112 0) (1.12464 -0.0103796 0) (1.12411 -0.0224657 0) (1.12169 -0.0345007 0) (1.11742 -0.046123 0) (1.11143 -0.0569913 0) (1.10394 -0.0668124 0) (1.09521 -0.0753625 0) (1.08552 -0.0824979 0) (1.07519 -0.0881542 0) (1.06448 -0.0923354 0) (1.05365 -0.0950983 0) (1.04287 -0.0965363 0) (1.03232 -0.0967626 0) (1.02211 -0.0958971 0) (1.01231 -0.0940564 0) (1.00298 -0.0913461 0) (0.994146 -0.0878577 0) (0.985831 -0.0836667 0) (0.978049 -0.078833 0) (0.970812 -0.073404 0) (0.964138 -0.0674165 0) (0.958051 -0.0609019 0) (0.952583 -0.053889 0) (0.947773 -0.0464091 0) (0.943669 -0.0384981 0) (0.940323 -0.0302014 0) (0.93779 -0.0215742 0) (0.936124 -0.0126866 0) (0.935377 -0.0036189 0) (0.935596 0.00552687 0) (0.936815 0.0146474 0) (0.93906 0.0236077 0) (0.942323 0.0322841 0) (0.946596 0.040513 0) (0.951827 0.0481837 0) (0.957964 0.0550946 0) (0.964864 0.0611724 0) (0.972462 0.0661871 0) (1.00828 0.0212002 0) (1.00847 0.0219603 0) (1.00869 0.0227519 0) (1.00895 0.0235775 0) (1.00925 0.0244408 0) (1.00961 0.025346 0) (1.01002 0.0262977 0) (1.0105 0.0273005 0) (1.01106 0.0283574 0) (1.01173 0.0294691 0) (1.01252 0.030632 0) (1.01346 0.0318368 0) (1.01458 0.0330668 0) (1.01591 0.0342964 0) (1.01747 0.0354893 0) (1.01928 0.0365987 0) (1.02135 0.0375665 0) (1.02369 0.0383253 0) (1.02627 0.0388009 0) (1.02906 0.0389164 0) (1.03198 0.0385989 0) (1.03496 0.0377872 0) (1.03787 0.0364405 0) (1.04058 0.0345479 0) (1.04297 0.0321361 0) (1.04487 0.029274 0) (1.04618 0.0260734 0) (1.04679 0.022683 0) (1.04667 0.0192774 0) (1.04581 0.0160411 0) (1.04427 0.0131516 0) (1.04215 0.0107628 0) (1.03958 0.00899333 0) (1.03672 0.00792107 0) (1.03374 0.00758302 0) (1.03077 0.00797872 0) (1.02799 0.00907654 0) (1.0255 0.0108206 0) (1.02342 0.0131375 0) (1.02183 0.015942 0) (1.02082 0.0191425 0) (1.02042 0.0226439 0) (1.02069 0.0263484 0) (1.02166 0.0301567 0) (1.02333 0.0339693 0) (1.02572 0.0376889 0) (1.02883 0.0412181 0) (1.03266 0.0444533 0) (1.03719 0.0472796 0) (1.04239 0.049574 0) (1.04819 0.0512189 0) (1.05453 0.0521089 0) (1.06131 0.0521467 0) (1.06847 0.0512246 0) (1.07588 0.0492162 0) (1.08338 0.0459861 0) (1.09075 0.0414282 0) (1.09769 0.0355076 0) (1.10392 0.0282685 0) (1.10916 0.0198406 0) (1.11319 0.0104065 0) (1.11579 0.00018896 0) (1.11685 -0.0105586 0) (1.11627 -0.0215565 0) (1.11402 -0.032503 0) (1.11012 -0.0430862 0) (1.10468 -0.0530114 0) (1.09789 -0.0620232 0) (1.08996 -0.0699225 0) (1.08115 -0.0765753 0) (1.07171 -0.0819135 0) (1.06188 -0.0859266 0) (1.05187 -0.088651 0) (1.04187 -0.090156 0) (1.03203 -0.0905314 0) (1.02246 -0.0898755 0) (1.01323 -0.0882869 0) (1.00442 -0.0858574 0) (0.996046 -0.0826689 0) (0.988152 -0.0787912 0) (0.980755 -0.0742823 0) (0.973876 -0.0691896 0) (0.967536 -0.0635529 0) (0.961761 -0.057407 0) (0.956585 -0.050785 0) (0.952043 -0.0437219 0) (0.94818 -0.0362572 0) (0.945042 -0.0284385 0) (0.942677 -0.0203208 0) (0.941133 -0.0119742 0) (0.940453 -0.00347458 0) (0.940675 0.00508065 0) (0.941827 0.0135952 0) (0.943925 0.0219453 0) (0.946961 0.0300182 0) (0.950919 0.037664 0) (0.955746 0.0447844 0) (0.961396 0.0512027 0) (0.96774 0.0568556 0) (0.974707 0.0615334 0) (1.00819 0.0210872 0) (1.00839 0.0218245 0) (1.00864 0.0225916 0) (1.00892 0.0233904 0) (1.00924 0.0242236 0) (1.00962 0.025094 0) (1.01006 0.0260048 0) (1.01057 0.0269584 0) (1.01116 0.0279557 0) (1.01186 0.0289952 0) (1.01267 0.0300714 0) (1.01363 0.0311738 0) (1.01475 0.0322852 0) (1.01606 0.0333807 0) (1.01757 0.0344269 0) (1.01931 0.0353813 0) (1.02127 0.0361929 0) (1.02345 0.0368035 0) (1.02584 0.0371505 0) (1.02838 0.0371705 0) (1.03102 0.0368049 0) (1.03369 0.0360063 0) (1.03628 0.0347459 0) (1.03869 0.0330201 0) (1.04078 0.030857 0) (1.04246 0.0283193 0) (1.04362 0.0255039 0) (1.04418 0.0225376 0) (1.0441 0.0195675 0) (1.0434 0.0167486 0) (1.04211 0.0142306 0) (1.04032 0.0121444 0) (1.03815 0.0105929 0) (1.03571 0.0096458 0) (1.03316 0.00933886 0) (1.03063 0.00967582 0) (1.02825 0.0106331 0) (1.02613 0.0121651 0) (1.02437 0.0142095 0) (1.02305 0.0166922 0) (1.02224 0.0195316 0) (1.02199 0.0226414 0) (1.02235 0.0259322 0) (1.02334 0.0293121 0) (1.02498 0.0326884 0) (1.02727 0.0359687 0) (1.03022 0.0390598 0) (1.03381 0.0418638 0) (1.03804 0.0442756 0) (1.04286 0.0461859 0) (1.04822 0.0474884 0) (1.05405 0.0480853 0) (1.06026 0.0478837 0) (1.06678 0.0467875 0) (1.07348 0.0446921 0) (1.08021 0.0414958 0) (1.08676 0.0371261 0) (1.09291 0.0315594 0) (1.09839 0.0248422 0) (1.10299 0.0170877 0) (1.10648 0.00844729 0) (1.10871 -0.000879597 0) (1.10956 -0.0106603 0) (1.10894 -0.0206577 0) (1.10683 -0.0306058 0) (1.10326 -0.0402342 0) (1.09832 -0.0492876 0) (1.09216 -0.0575434 0) (1.08496 -0.0648247 0) (1.07694 -0.0710075 0) (1.06831 -0.0760222 0) (1.05929 -0.0798482 0) (1.05007 -0.0825055 0) (1.04081 -0.084044 0) (1.03165 -0.0845335 0) (1.0227 -0.0840537 0) (1.01404 -0.0826873 0) (1.00574 -0.0805135 0) (0.99783 -0.077605 0) (0.990359 -0.0740258 0) (0.983351 -0.0698311 0) (0.976831 -0.065068 0) (0.970824 -0.0597775 0) (0.965358 -0.053997 0) (0.960466 -0.0477626 0) (0.956184 -0.0411122 0) (0.952551 -0.0340876 0) (0.949609 -0.0267379 0) (0.9474 -0.0191181 0) (0.945965 -0.011296 0) (0.945339 -0.00334365 0) (0.945553 0.00464521 0) (0.946631 0.0125814 0) (0.948582 0.020352 0) (0.951393 0.0278551 0) (0.955047 0.0349542 0) (0.959489 0.0415607 0) (0.964676 0.0475188 0) (0.970491 0.0527761 0) (0.976867 0.0571432 0) (1.00813 0.0209593 0) (1.00835 0.0216725 0) (1.00861 0.0224135 0) (1.00891 0.0231835 0) (1.00925 0.0239844 0) (1.00966 0.0248178 0) (1.01012 0.0256854 0) (1.01065 0.0265879 0) (1.01127 0.0275246 0) (1.01198 0.0284922 0) (1.01281 0.0294839 0) (1.01377 0.0304882 0) (1.01489 0.0314882 0) (1.01617 0.0324602 0) (1.01763 0.0333735 0) (1.01929 0.03419 0) (1.02114 0.0348654 0) (1.02317 0.0353498 0) (1.02537 0.0355907 0) (1.02769 0.0355365 0) (1.03008 0.0351404 0) (1.03247 0.0343665 0) (1.03478 0.0331951 0) (1.03691 0.0316282 0) (1.03876 0.0296939 0) (1.04024 0.0274487 0) (1.04127 0.0249769 0) (1.04179 0.0223861 0) (1.04176 0.0198002 0) (1.0412 0.0173496 0) (1.04014 0.0151601 0) (1.03864 0.013343 0) (1.03682 0.011987 0) (1.03477 0.0111539 0) (1.03261 0.0108772 0) (1.03047 0.0111634 0) (1.02845 0.0119949 0) (1.02667 0.0133346 0) (1.0252 0.0151296 0) (1.02413 0.0173155 0) (1.02351 0.0198198 0) (1.0234 0.0225647 0) (1.02384 0.0254686 0) (1.02484 0.028447 0) (1.02644 0.0314138 0) (1.02863 0.0342823 0) (1.03142 0.0369645 0) (1.03479 0.0393689 0) (1.03872 0.0413998 0) (1.04318 0.0429592 0) (1.04811 0.0439515 0) (1.05345 0.0442866 0) (1.05912 0.0438798 0) (1.06503 0.0426463 0) (1.07107 0.0405005 0) (1.07709 0.0373666 0) (1.08291 0.0331927 0) (1.08834 0.0279712 0) (1.09315 0.0217493 0) (1.09716 0.0146174 0) (1.10018 0.00671833 0) (1.10208 -0.00178619 0) (1.10273 -0.0106869 0) (1.10208 -0.0197678 0) (1.10011 -0.0288004 0) (1.09683 -0.0375512 0) (1.09233 -0.0457993 0) (1.08673 -0.0533502 0) (1.08019 -0.0600465 0) (1.07289 -0.0657745 0) (1.06502 -0.070465 0) (1.05675 -0.0740902 0) (1.04826 -0.0766574 0) (1.0397 -0.0782009 0) (1.0312 -0.078774 0) (1.02285 -0.0784404 0) (1.01474 -0.0772687 0) (1.00694 -0.0753267 0) (0.999501 -0.0726786 0) (0.992452 -0.0693825 0) (0.985833 -0.0654903 0) (0.97967 -0.0610481 0) (0.973994 -0.0560974 0) (0.968833 -0.0506769 0) (0.96422 -0.0448248 0) (0.960189 -0.038581 0) (0.956775 -0.0319884 0) (0.954017 -0.0250967 0) (0.951951 -0.0179613 0) (0.950614 -0.0106464 0) (0.950033 -0.0032263 0) (0.950233 0.00422294 0) (0.951232 0.0116116 0) (0.953034 0.018834 0) (0.955626 0.0257994 0) (0.958985 0.0323855 0) (0.963061 0.0385123 0) (0.967809 0.0440413 0) (0.973124 0.0489304 0) (0.978945 0.0530099 0) (1.00808 0.020816 0) (1.00832 0.021504 0) (1.0086 0.0222174 0) (1.00892 0.0229569 0) (1.00928 0.0237236 0) (1.0097 0.0245181 0) (1.01019 0.0253409 0) (1.01074 0.0261913 0) (1.01137 0.0270671 0) (1.0121 0.0279639 0) (1.01294 0.0288738 0) (1.0139 0.0297852 0) (1.01499 0.0306814 0) (1.01624 0.0315402 0) (1.01765 0.0323337 0) (1.01922 0.0330285 0) (1.02096 0.0335858 0) (1.02285 0.0339637 0) (1.02487 0.0341184 0) (1.02699 0.034008 0) (1.02915 0.0335959 0) (1.0313 0.0328553 0) (1.03335 0.0317736 0) (1.03525 0.0303567 0) (1.03689 0.028632 0) (1.03821 0.0266502 0) (1.03913 0.024484 0) (1.03962 0.022225 0) (1.03964 0.0199775 0) (1.0392 0.0178509 0) (1.03834 0.015951 0) (1.03711 0.014372 0) (1.03559 0.01319 0) (1.03388 0.0124594 0) (1.03208 0.0122109 0) (1.03029 0.0124524 0) (1.0286 0.013171 0) (1.02712 0.0143362 0) (1.02592 0.0159031 0) (1.02507 0.0178159 0) (1.02463 0.0200103 0) (1.02465 0.0224165 0) (1.02515 0.0249603 0) (1.02617 0.0275641 0) (1.02773 0.0301488 0) (1.02982 0.0326336 0) (1.03244 0.0349364 0) (1.03559 0.0369725 0) (1.03923 0.038655 0) (1.04335 0.0398958 0) (1.04787 0.0406091 0) (1.05275 0.0407139 0) (1.05791 0.0401336 0) (1.06325 0.0387946 0) (1.06867 0.0366287 0) (1.07404 0.0335783 0) (1.07919 0.0296083 0) (1.08397 0.0247217 0) (1.08819 0.0189601 0) (1.09167 0.0124066 0) (1.09427 0.00518745 0) (1.09585 -0.00255657 0) (1.09633 -0.0106442 0) (1.09566 -0.0188845 0) (1.09381 -0.0270782 0) (1.0908 -0.0350232 0) (1.08669 -0.0425278 0) (1.08161 -0.0494222 0) (1.07566 -0.0555668 0) (1.06902 -0.0608573 0) (1.06183 -0.0652264 0) (1.05426 -0.0686418 0) (1.04646 -0.0711012 0) (1.03856 -0.0726263 0) (1.03068 -0.0732566 0) (1.02292 -0.0730426 0) (1.01535 -0.0720404 0) (1.00805 -0.0703078 0) (1.00106 -0.0679009 0) (0.994431 -0.0648721 0) (0.988197 -0.0612699 0) (0.98239 -0.0571386 0) (0.977041 -0.0525193 0) (0.97218 -0.0474516 0) (0.967839 -0.0419745 0) (0.964049 -0.036129 0) (0.960846 -0.0299586 0) (0.958261 -0.0235133 0) (0.956329 -0.0168464 0) (0.955076 -0.0100207 0) (0.954531 -0.00310736 0) (0.954714 0.00382384 0) (0.955631 0.0106898 0) (0.957285 0.0173934 0) (0.959662 0.0238527 0) (0.96274 0.029958 0) (0.966467 0.0356374 0) (0.970801 0.0407676 0) (0.975648 0.0453144 0) (0.98095 0.0491271 0) (1.00806 0.020657 0) (1.00831 0.0213186 0) (1.0086 0.0220031 0) (1.00894 0.0227108 0) (1.00932 0.0234419 0) (1.00976 0.0241962 0) (1.01026 0.0249731 0) (1.01083 0.0257709 0) (1.01148 0.0265864 0) (1.01221 0.0274141 0) (1.01305 0.0282457 0) (1.014 0.0290694 0) (1.01507 0.0298694 0) (1.01628 0.0306252 0) (1.01763 0.0313117 0) (1.01912 0.0318995 0) (1.02075 0.0323554 0) (1.0225 0.0326441 0) (1.02436 0.0327296 0) (1.02629 0.0325783 0) (1.02824 0.0321619 0) (1.03017 0.0314608 0) (1.03201 0.0304678 0) (1.0337 0.0291915 0) (1.03516 0.0276581 0) (1.03634 0.0259125 0) (1.03718 0.0240177 0) (1.03764 0.0220512 0) (1.0377 0.020101 0) (1.03738 0.0182587 0) (1.03669 0.016613 0) (1.0357 0.0152436 0) (1.03445 0.0142156 0) (1.03305 0.0135761 0) (1.03156 0.0133528 0) (1.03008 0.0135541 0) (1.0287 0.0141708 0) (1.0275 0.0151775 0) (1.02654 0.0165363 0) (1.02589 0.0181984 0) (1.02561 0.0201073 0) (1.02574 0.0222003 0) (1.0263 0.0244102 0) (1.02733 0.0266667 0) (1.02884 0.0288968 0) (1.03082 0.0310262 0) (1.03329 0.032979 0) (1.03622 0.0346776 0) (1.03959 0.0360431 0) (1.04337 0.0369967 0) (1.04751 0.0374617 0) (1.05195 0.0373658 0) (1.05662 0.0366412 0) (1.06143 0.0352256 0) (1.06628 0.0330636 0) (1.07105 0.0301124 0) (1.07561 0.0263509 0) (1.0798 0.0217851 0) (1.08348 0.0164559 0) (1.08649 0.0104418 0) (1.08871 0.00384278 0) (1.09002 -0.00320126 0) (1.09035 -0.01054 0) (1.08966 -0.0180092 0) (1.08791 -0.0254338 0) (1.08514 -0.0326385 0) (1.0814 -0.0394571 0) (1.07677 -0.0457411 0) (1.07137 -0.0513665 0) (1.06532 -0.0562383 0) (1.05876 -0.0602922 0) (1.05184 -0.0634927 0) (1.04468 -0.0658308 0) (1.0374 -0.0673183 0) (1.03011 -0.0679835 0) (1.02291 -0.0678655 0) (1.01587 -0.0670101 0) (1.00905 -0.0654659 0) (1.00251 -0.0632816 0) (0.996296 -0.0605043 0) (0.990444 -0.0571787 0) (0.984988 -0.0533471 0) (0.97996 -0.0490495 0) (0.975392 -0.0443255 0) (0.971315 -0.0392143 0) (0.96776 -0.033757 0) (0.964757 -0.0279978 0) (0.962336 -0.0219849 0) (0.960526 -0.015771 0) (0.959352 -0.00941633 0) (0.958836 -0.00298218 0) (0.958993 0.00345421 0) (0.959827 0.00982213 0) (0.961337 0.0160354 0) (0.963508 0.0220185 0) (0.966316 0.027673 0) (0.969714 0.0329349 0) (0.973659 0.0376942 0) (0.978067 0.0419229 0) (0.982884 0.0454879 0) (1.00805 0.0204821 0) (1.00832 0.0211163 0) (1.00863 0.021771 0) (1.00898 0.0224458 0) (1.00938 0.0231402 0) (1.00983 0.0238535 0) (1.01034 0.0245841 0) (1.01092 0.0253294 0) (1.01157 0.0260855 0) (1.01231 0.0268464 0) (1.01314 0.0276035 0) (1.01408 0.0283452 0) (1.01512 0.0290566 0) (1.01629 0.0297192 0) (1.01758 0.0303105 0) (1.01898 0.030805 0) (1.02051 0.0311744 0) (1.02213 0.0313893 0) (1.02384 0.0314204 0) (1.02559 0.0312409 0) (1.02736 0.0308292 0) (1.0291 0.0301716 0) (1.03075 0.0292651 0) (1.03226 0.0281197 0) (1.03356 0.02676 0) (1.03462 0.0252258 0) (1.03539 0.0235713 0) (1.03584 0.0218622 0) (1.03594 0.0201725 0) (1.03572 0.0185787 0) (1.03519 0.0171555 0) (1.0344 0.0159697 0) (1.0334 0.0150766 0) (1.03226 0.014517 0) (1.03106 0.0143154 0) (1.02986 0.0144802 0) (1.02875 0.0150044 0) (1.02779 0.0158672 0) (1.02705 0.017036 0) (1.02659 0.0184687 0) (1.02645 0.0201154 0) (1.02668 0.02192 0) (1.02729 0.0238222 0) (1.02832 0.0257581 0) (1.02977 0.0276612 0) (1.03166 0.0294635 0) (1.03397 0.0310954 0) (1.03669 0.0324865 0) (1.0398 0.0335655 0) (1.04326 0.034262 0) (1.04704 0.034508 0) (1.05106 0.0342396 0) (1.05527 0.0333975 0) (1.05958 0.0319298 0) (1.06391 0.0297918 0) (1.06814 0.0269522 0) (1.07216 0.023398 0) (1.07582 0.0191402 0) (1.07902 0.01422 0) (1.08161 0.0087038 0) (1.08349 0.00268729 0) (1.08456 -0.00371458 0) (1.08476 -0.0103705 0) (1.08405 -0.0171355 0) (1.0824 -0.0238572 0) (1.07985 -0.0303837 0) (1.07643 -0.0365708 0) (1.07221 -0.0422886 0) (1.0673 -0.0474273 0) (1.06179 -0.0519006 0) (1.05582 -0.0556477 0) (1.04949 -0.058632 0) (1.04293 -0.0608393 0) (1.03624 -0.0622741 0) (1.02951 -0.0629553 0) (1.02284 -0.062913 0) (1.01631 -0.0621839 0) (1.00996 -0.0608085 0) (1.00386 -0.058829 0) (0.998049 -0.0562873 0) (0.992571 -0.0532245 0) (0.987459 -0.0496803 0) (0.982747 -0.0456935 0) (0.978466 -0.0413024 0) (0.974645 -0.0365464 0) (0.971315 -0.0314661 0) (0.968503 -0.0261048 0) (0.966238 -0.02051 0) (0.964543 -0.0147321 0) (0.96344 -0.00882851 0) (0.962946 -0.00285782 0) (0.963074 0.00311001 0) (0.963824 0.00900913 0) (0.965195 0.0147607 0) (0.967167 0.0202967 0) (0.969719 0.0255292 0) (0.972806 0.0304016 0) (0.976388 0.0348161 0) (0.980386 0.0387496 0) (0.984754 0.0420844 0) (1.00806 0.0202912 0) (1.00834 0.0208974 0) (1.00866 0.0215214 0) (1.00903 0.0221625 0) (1.00944 0.0228196 0) (1.0099 0.0234914 0) (1.01042 0.0241756 0) (1.01101 0.0248692 0) (1.01166 0.0255675 0) (1.0124 0.0262643 0) (1.01322 0.0269509 0) (1.01413 0.0276165 0) (1.01515 0.0282469 0) (1.01627 0.0288256 0) (1.01749 0.0293328 0) (1.01882 0.0297464 0) (1.02024 0.0300427 0) (1.02174 0.0301971 0) (1.02331 0.0301861 0) (1.02491 0.0299888 0) (1.02651 0.0295889 0) (1.02808 0.0289773 0) (1.02956 0.0281539 0) (1.03091 0.0271295 0) (1.03209 0.0259269 0) (1.03305 0.0245812 0) (1.03376 0.0231389 0) (1.03419 0.0216557 0) (1.03434 0.0201935 0) (1.03421 0.0188165 0) (1.03383 0.0175869 0) (1.03322 0.0165609 0) (1.03243 0.0157854 0) (1.03153 0.015295 0) (1.03057 0.0151114 0) (1.02962 0.0152422 0) (1.02875 0.0156822 0) (1.02801 0.0164142 0) (1.02747 0.0174101 0) (1.02717 0.0186335 0) (1.02716 0.0200402 0) (1.02747 0.0215805 0) (1.02812 0.0232004 0) (1.02914 0.024842 0) (1.03054 0.0264453 0) (1.03233 0.0279484 0) (1.03448 0.0292882 0) (1.037 0.0304008 0) (1.03986 0.0312226 0) (1.04303 0.0316909 0) (1.04645 0.0317458 0) (1.05009 0.031331 0) (1.05387 0.0303962 0) (1.05773 0.0288972 0) (1.06157 0.0267989 0) (1.06531 0.0240788 0) (1.06883 0.0207307 0) (1.07203 0.0167707 0) (1.07479 0.0122344 0) (1.07701 0.00718096 0) (1.07859 0.00169625 0) (1.07945 -0.00411978 0) (1.07953 -0.0101504 0) (1.07881 -0.0162704 0) (1.07726 -0.0223482 0) (1.0749 -0.0282522 0) (1.07177 -0.0338574 0) (1.06793 -0.0390501 0) (1.06346 -0.0437332 0) (1.05845 -0.0478287 0) (1.053 -0.0512795 0) (1.04723 -0.0540489 0) (1.04122 -0.0561194 0) (1.03507 -0.0574895 0) (1.02889 -0.0581714 0) (1.02273 -0.0581872 0) (1.01667 -0.0575659 0) (1.01078 -0.0563414 0) (1.00511 -0.0545498 0) (0.999692 -0.0522283 0) (0.99458 -0.049414 0) (0.989804 -0.0461442 0) (0.9854 -0.0424558 0) (0.981397 -0.0383861 0) (0.977825 -0.0339731 0) (0.974711 -0.0292569 0) (0.972082 -0.0242796 0) (0.969963 -0.0190869 0) (0.968375 -0.0137272 0) (0.967336 -0.00825491 0) (0.966861 -0.00272537 0) (0.966958 0.0027978 0) (0.967627 0.00825348 0) (0.968862 0.0135704 0) (0.970645 0.0186873 0) (0.972956 0.0235254 0) (0.975751 0.0280345 0) (0.978993 0.0321282 0) (0.98261 0.0357874 0) (0.986561 0.038908 0) (1.00808 0.0200845 0) (1.00837 0.020662 0) (1.00871 0.0212548 0) (1.00908 0.0218617 0) (1.0095 0.0224812 0) (1.00997 0.0231115 0) (1.0105 0.0237498 0) (1.01109 0.0243927 0) (1.01174 0.0250352 0) (1.01247 0.025671 0) (1.01328 0.0262916 0) (1.01417 0.0268867 0) (1.01515 0.0274436 0) (1.01622 0.0279472 0) (1.01738 0.0283804 0) (1.01862 0.0287244 0) (1.01995 0.0289592 0) (1.02134 0.0290648 0) (1.02278 0.0290223 0) (1.02424 0.0288155 0) (1.02569 0.0284326 0) (1.02711 0.0278678 0) (1.02845 0.0271233 0) (1.02967 0.0262101 0) (1.03073 0.0251491 0) (1.03161 0.0239709 0) (1.03227 0.0227155 0) (1.0327 0.0214298 0) (1.03289 0.0201658 0) (1.03284 0.018977 0) (1.03257 0.0179153 0) (1.03212 0.0170278 0) (1.03153 0.0163537 0) (1.03083 0.0159226 0) (1.03009 0.0157529 0) (1.02936 0.0158518 0) (1.0287 0.016215 0) (1.02816 0.016828 0) (1.02779 0.0176669 0) (1.02764 0.0186997 0) (1.02773 0.0198877 0) (1.02811 0.021187 0) (1.0288 0.0225491 0) (1.02981 0.0239224 0) (1.03116 0.0252525 0) (1.03284 0.0264837 0) (1.03485 0.0275592 0) (1.03717 0.0284217 0) (1.03979 0.0290144 0) (1.04267 0.0292819 0) (1.04577 0.0291716 0) (1.04905 0.0286349 0) (1.05244 0.0276288 0) (1.05587 0.0261166 0) (1.05927 0.0240712 0) (1.06256 0.0214766 0) (1.06564 0.0183317 0) (1.06842 0.0146527 0) (1.07079 0.0104745 0) (1.07267 0.00585549 0) (1.07399 0.00086233 0) (1.07466 -0.00441688 0) (1.07465 -0.00987572 0) (1.07392 -0.0154067 0) (1.07245 -0.0208965 0) (1.07027 -0.0262313 0) (1.0674 -0.0313021 0) (1.0639 -0.0360098 0) (1.05983 -0.0402683 0) (1.05528 -0.0440074 0) (1.05032 -0.0471741 0) (1.04505 -0.0497325 0) (1.03956 -0.051663 0) (1.03393 -0.05296 0) (1.02824 -0.05363 0) (1.02257 -0.0536888 0) (1.01698 -0.0531593 0) (1.01152 -0.0520692 0) (1.00626 -0.0504494 0) (1.00123 -0.0483327 0) (0.99647 -0.0457527 0) (0.992022 -0.0427437 0) (0.987917 -0.0393407 0) (0.984183 -0.0355793 0) (0.980851 -0.0314961 0) (0.977945 -0.02713 0) (0.975491 -0.0225215 0) (0.973511 -0.0177142 0) (0.972022 -0.0127548 0) (0.971043 -0.00769327 0) (0.970582 -0.00258171 0) (0.970647 0.00252077 0) (0.971236 0.00755824 0) (0.972342 0.0124665 0) (0.973948 0.0171904 0) (0.976031 0.0216596 0) (0.978553 0.02583 0) (0.981479 0.029625 0) (0.984743 0.0330288 0) (0.98831 0.0359497 0) (1.00811 0.0198622 0) (1.00841 0.0204107 0) (1.00876 0.0209719 0) (1.00914 0.0215444 0) (1.00957 0.0221263 0) (1.01004 0.0227154 0) (1.01057 0.0233088 0) (1.01116 0.0239025 0) (1.01181 0.0244916 0) (1.01253 0.0250696 0) (1.01331 0.0256287 0) (1.01418 0.0261591 0) (1.01512 0.0266494 0) (1.01614 0.0270863 0) (1.01724 0.0274549 0) (1.01841 0.0277393 0) (1.01964 0.0279229 0) (1.02093 0.0279894 0) (1.02225 0.027924 0) (1.02359 0.0277144 0) (1.02491 0.027352 0) (1.02619 0.026834 0) (1.0274 0.0261636 0) (1.02851 0.0253519 0) (1.02948 0.0244178 0) (1.03029 0.023388 0) (1.03091 0.0222966 0) (1.03134 0.0211831 0) (1.03156 0.0200911 0) (1.03158 0.0190651 0) (1.03143 0.0181484 0) (1.03112 0.0173799 0) (1.03069 0.0167927 0) (1.03017 0.0164115 0) (1.02963 0.0162521 0) (1.02909 0.0163206 0) (1.02862 0.0166135 0) (1.02825 0.0171185 0) (1.02803 0.0178149 0) (1.028 0.0186749 0) (1.02819 0.0196646 0) (1.02863 0.0207451 0) (1.02934 0.0218733 0) (1.03033 0.023003 0) (1.03162 0.0240859 0) (1.0332 0.0250718 0) (1.03506 0.02591 0) (1.0372 0.0265493 0) (1.03959 0.0269396 0) (1.04221 0.0270321 0) (1.04501 0.0267811 0) (1.04794 0.0261448 0) (1.05097 0.0250865 0) (1.05401 0.0235767 0) (1.05702 0.0215943 0) (1.0599 0.0191285 0) (1.06258 0.0161814 0) (1.06498 0.0127697 0) (1.06701 0.00892735 0) (1.0686 0.00470536 0) (1.06968 0.000162979 0) (1.07019 -0.00462084 0) (1.07009 -0.00955626 0) (1.06935 -0.0145496 0) (1.06797 -0.0195025 0) (1.06595 -0.0243161 0) (1.06332 -0.0288961 0) (1.06013 -0.0331557 0) (1.05643 -0.0370191 0) (1.05228 -0.0404231 0) (1.04777 -0.0433189 0) (1.04297 -0.0456722 0) (1.03796 -0.0474619 0) (1.03281 -0.0486798 0) (1.02759 -0.0493279 0) (1.02238 -0.0494172 0) (1.01722 -0.0489652 0) (1.01219 -0.0479946 0) (1.00732 -0.0465316 0) (1.00266 -0.0446049 0) (0.998244 -0.0422448 0) (0.994113 -0.0394827 0) (0.990296 -0.0363514 0) (0.986823 -0.0328844 0) (0.983722 -0.029117 0) (0.981016 -0.025086 0) (0.978728 -0.0208301 0) (0.976879 -0.0163913 0) (0.975485 -0.0118125 0) (0.97456 -0.00714131 0) (0.974112 -0.00242641 0) (0.974145 0.00227829 0) (0.974657 0.00692238 0) (0.975641 0.0114474 0) (0.977078 0.0158035 0) (0.978949 0.0199283 0) (0.981217 0.0237829 0) (0.98385 0.0272997 0) (0.986789 0.0304657 0) (0.990001 0.0331999 0) (1.00815 0.0196246 0) (1.00846 0.0201439 0) (1.00881 0.0206735 0) (1.0092 0.0212117 0) (1.00963 0.0217563 0) (1.01011 0.022305 0) (1.01064 0.0228546 0) (1.01122 0.0234009 0) (1.01187 0.0239391 0) (1.01257 0.024463 0) (1.01334 0.024965 0) (1.01417 0.0254363 0) (1.01507 0.0258667 0) (1.01604 0.0262444 0) (1.01708 0.0265569 0) (1.01818 0.0267906 0) (1.01933 0.0269319 0) (1.02052 0.0269678 0) (1.02173 0.0268866 0) (1.02295 0.0266791 0) (1.02416 0.0263397 0) (1.02533 0.0258671 0) (1.02643 0.0252658 0) (1.02743 0.0245463 0) (1.02832 0.0237254 0) (1.02907 0.0228265 0) (1.02966 0.0218785 0) (1.03009 0.0209147 0) (1.03035 0.0199714 0) (1.03044 0.0190857 0) (1.03038 0.0182933 0) (1.03019 0.0176266 0) (1.0299 0.0171131 0) (1.02955 0.0167734 0) (1.02917 0.0166207 0) (1.0288 0.0166601 0) (1.02849 0.0168887 0) (1.02827 0.0172956 0) (1.02818 0.0178632 0) (1.02825 0.0185671 0) (1.02852 0.0193776 0) (1.02901 0.0202605 0) (1.02973 0.0211776 0) (1.03071 0.022088 0) (1.03193 0.0229485 0) (1.03341 0.0237147 0) (1.03514 0.0243413 0) (1.0371 0.0247833 0) (1.03928 0.0249964 0) (1.04165 0.0249382 0) (1.04416 0.024569 0) (1.04679 0.023853 0) (1.04947 0.02276 0) (1.05217 0.0212657 0) (1.0548 0.0193538 0) (1.05732 0.0170177 0) (1.05965 0.0142628 0) (1.06171 0.011106 0) (1.06344 0.00757712 0) (1.06477 0.00371865 0) (1.06564 -0.000409476 0) (1.06601 -0.00473848 0) (1.06584 -0.00919546 0) (1.0651 -0.0136981 0) (1.06379 -0.0181607 0) (1.06192 -0.022498 0) (1.05951 -0.026628 0) (1.0566 -0.0304749 0) (1.05323 -0.0339718 0) (1.04946 -0.0370623 0) (1.04536 -0.0397016 0) (1.04099 -0.0418571 0) (1.03642 -0.0435076 0) (1.03171 -0.0446427 0) (1.02694 -0.0452614 0) (1.02216 -0.0453707 0) (1.01742 -0.0449839 0) (1.01279 -0.0441192 0) (1.00829 -0.042799 0) (1.00399 -0.0410481 0) (0.999904 -0.0388936 0) (0.996077 -0.0363643 0) (0.992539 -0.0334904 0) (0.989317 -0.0303035 0) (0.986437 -0.0268368 0) (0.983922 -0.0231252 0) (0.981793 -0.0192055 0) (0.980069 -0.0151168 0) (0.978764 -0.0108996 0) (0.977889 -0.00659878 0) (0.977451 -0.00225753 0) (0.977454 0.00207251 0) (0.977894 0.00634639 0) (0.978763 0.010512 0) (0.980043 0.0145244 0) (0.981716 0.0183279 0) (0.983748 0.0218883 0) (0.986111 0.0251458 0) (0.98875 0.0280898 0) (0.991638 0.0306489 0) (1.00819 0.0193724 0) (1.00851 0.0198625 0) (1.00887 0.0203605 0) (1.00926 0.0208647 0) (1.0097 0.0213727 0) (1.01018 0.021882 0) (1.0107 0.0223891 0) (1.01128 0.0228902 0) (1.01191 0.0233803 0) (1.0126 0.0238535 0) (1.01334 0.024303 0) (1.01414 0.0247206 0) (1.01501 0.0250973 0) (1.01593 0.025423 0) (1.01691 0.0256868 0) (1.01793 0.0258776 0) (1.019 0.0259843 0) (1.0201 0.0259965 0) (1.02122 0.0259052 0) (1.02234 0.0257036 0) (1.02345 0.0253883 0) (1.02451 0.0249594 0) (1.02551 0.0244218 0) (1.02644 0.0237853 0) (1.02726 0.0230651 0) (1.02796 0.0222812 0) (1.02853 0.0214581 0) (1.02895 0.0206239 0) (1.02924 0.0198087 0) (1.02939 0.0190432 0) (1.02941 0.018357 0) (1.02933 0.0177768 0) (1.02916 0.0173252 0) (1.02895 0.0170194 0) (1.02871 0.0168702 0) (1.02849 0.0168817 0) (1.02831 0.0170512 0) (1.02822 0.0173694 0) (1.02825 0.0178208 0) (1.02841 0.0183842 0) (1.02875 0.0190337 0) (1.02927 0.0197392 0) (1.03 0.020467 0) (1.03095 0.0211811 0) (1.03211 0.0218432 0) (1.0335 0.022414 0) (1.03509 0.0228538 0) (1.03689 0.0231228 0) (1.03886 0.0231824 0) (1.041 0.0229958 0) (1.04325 0.0225289 0) (1.04559 0.0217518 0) (1.04797 0.0206388 0) (1.05034 0.0191708 0) (1.05265 0.0173358 0) (1.05483 0.0151302 0) (1.05684 0.01256 0) (1.0586 0.00964208 0) (1.06006 0.00640542 0) (1.06117 0.00288914 0) (1.06186 -0.000856581 0) (1.0621 -0.00477284 0) (1.06187 -0.00879484 0) (1.06114 -0.0128512 0) (1.0599 -0.0168678 0) (1.05817 -0.0207708 0) (1.05596 -0.0244892 0) (1.0533 -0.0279569 0) (1.05023 -0.031115 0) (1.04681 -0.033913 0) (1.04308 -0.0363105 0) (1.0391 -0.0382768 0) (1.03494 -0.0397911 0) (1.03065 -0.0408418 0) (1.02629 -0.0414257 0) (1.02192 -0.0415464 0) (1.01758 -0.041214 0) (1.01332 -0.0404432 0) (1.00919 -0.0392526 0) (1.00522 -0.0376639 0) (1.00145 -0.0357011 0) (0.997917 -0.0333904 0) (0.994646 -0.0307594 0) (0.991664 -0.0278378 0) (0.988996 -0.0246563 0) (0.986664 -0.0212479 0) (0.984686 -0.017647 0) (0.983081 -0.0138902 0) (0.981859 -0.0100158 0) (0.981032 -0.00606428 0) (0.980605 -0.00207827 0) (0.980578 0.00190102 0) (0.98095 0.00582971 0) (0.981712 0.00965935 0) (0.982847 0.0133506 0) (0.984337 0.0168543 0) (0.986152 0.0201403 0) (0.988265 0.0231559 0) (0.99063 0.0258923 0) (0.99322 0.0282868 0) (1.00824 0.0191061 0) (1.00856 0.0195671 0) (1.00893 0.020034 0) (1.00932 0.0205047 0) (1.00976 0.0209769 0) (1.01024 0.021448 0) (1.01076 0.0219145 0) (1.01132 0.0223725 0) (1.01194 0.0228174 0) (1.01261 0.0232436 0) (1.01333 0.0236448 0) (1.0141 0.0240139 0) (1.01492 0.0243427 0) (1.0158 0.0246227 0) (1.01672 0.0248447 0) (1.01768 0.0249994 0) (1.01868 0.025078 0) (1.0197 0.0250721 0) (1.02073 0.0249751 0) (1.02176 0.0247822 0) (1.02277 0.0244913 0) (1.02374 0.0241037 0) (1.02466 0.0236243 0) (1.02551 0.0230623 0) (1.02627 0.022431 0) (1.02693 0.0217476 0) (1.02748 0.021033 0) (1.02791 0.0203105 0) (1.02822 0.0196051 0) (1.02842 0.0189422 0) (1.02852 0.0183461 0) (1.02853 0.0178388 0) (1.02847 0.0174388 0) (1.02837 0.0171601 0) (1.02826 0.0170115 0) (1.02816 0.0169963 0) (1.0281 0.0171118 0) (1.02812 0.0173498 0) (1.02824 0.0176969 0) (1.02848 0.0181345 0) (1.02887 0.0186401 0) (1.02942 0.0191873 0) (1.03015 0.0197465 0) (1.03107 0.0202861 0) (1.03217 0.0207725 0) (1.03346 0.0211711 0) (1.03493 0.0214472 0) (1.03656 0.0215661 0) (1.03835 0.0214942 0) (1.04027 0.0212 0) (1.04228 0.0206545 0) (1.04435 0.0198321 0) (1.04645 0.0187123 0) (1.04853 0.0172797 0) (1.05054 0.0155256 0) (1.05244 0.0134487 0) (1.05416 0.0110566 0) (1.05566 0.00836518 0) (1.05688 0.00540112 0) (1.05778 0.00219783 0) (1.05832 -0.00119958 0) (1.05846 -0.00473908 0) (1.05818 -0.00836419 0) (1.05745 -0.0120136 0) (1.05628 -0.0156236 0) (1.05468 -0.0191303 0) (1.05265 -0.0224722 0) (1.05022 -0.0255918 0) (1.04743 -0.0284371 0) (1.04432 -0.0309635 0) (1.04093 -0.0331343 0) (1.03732 -0.0349211 0) (1.03354 -0.0363036 0) (1.02963 -0.0372699 0) (1.02566 -0.037815 0) (1.02166 -0.0379405 0) (1.01769 -0.0376534 0) (1.01379 -0.0369656 0) (1.01 -0.0358926 0) (1.00636 -0.0344531 0) (1.00289 -0.0326684 0) (0.999636 -0.0305622 0) (0.996619 -0.0281596 0) (0.993867 -0.0254879 0) (0.991401 -0.0225759 0) (0.989243 -0.019454 0) (0.98741 -0.0161545 0) (0.985916 -0.0127112 0) (0.984774 -0.00915975 0) (0.983991 -0.00553734 0) (0.983573 -0.0018817 0) (0.983523 0.00176738 0) (0.983832 0.00537107 0) (0.984494 0.00888632 0) (0.985494 0.0122779 0) (0.986816 0.0155021 0) (0.988431 0.0185322 0) (0.990317 0.0213221 0) (0.99243 0.0238642 0) (0.99475 0.0261035 0) (1.00829 0.0188264 0) (1.00862 0.0192586 0) (1.00898 0.0196948 0) (1.00938 0.0201329 0) (1.00982 0.0205704 0) (1.01029 0.0210047 0) (1.0108 0.0214324 0) (1.01136 0.0218497 0) (1.01196 0.0222523 0) (1.01261 0.0226351 0) (1.0133 0.0229923 0) (1.01404 0.0233175 0) (1.01482 0.0236039 0) (1.01565 0.0238439 0) (1.01652 0.0240299 0) (1.01742 0.0241545 0) (1.01835 0.0242104 0) (1.01929 0.0241912 0) (1.02024 0.0240919 0) (1.02119 0.0239093 0) (1.02212 0.0236425 0) (1.02302 0.0232933 0) (1.02387 0.0228667 0) (1.02465 0.0223711 0) (1.02536 0.021818 0) (1.02599 0.0212222 0) (1.02652 0.0206012 0) (1.02696 0.0199746 0) (1.02729 0.0193629 0) (1.02753 0.0187871 0) (1.02769 0.018267 0) (1.02778 0.0178207 0) (1.02781 0.0174631 0) (1.02781 0.0172057 0) (1.02781 0.0170554 0) (1.02781 0.0170146 0) (1.02786 0.0170808 0) (1.02797 0.0172467 0) (1.02816 0.0175005 0) (1.02847 0.0178262 0) (1.0289 0.0182039 0) (1.02947 0.0186107 0) (1.03019 0.0190208 0) (1.03107 0.0194065 0) (1.03211 0.0197386 0) (1.0333 0.0199869 0) (1.03465 0.020121 0) (1.03614 0.0201111 0) (1.03776 0.0199283 0) (1.03947 0.0195454 0) (1.04126 0.018938 0) (1.0431 0.0180851 0) (1.04494 0.0169697 0) (1.04676 0.0155797 0) (1.0485 0.0139094 0) (1.05013 0.0119591 0) (1.0516 0.00973654 0) (1.05286 0.00725777 0) (1.05388 0.00454583 0) (1.05461 0.00163254 0) (1.05501 -0.00144399 0) (1.05506 -0.00463877 0) (1.05474 -0.00790256 0) (1.05402 -0.0111824 0) (1.05292 -0.0144233 0) (1.05143 -0.0175698 0) (1.04957 -0.0205687 0) (1.04735 -0.0233699 0) (1.04481 -0.0259278 0) (1.04199 -0.028203 0) (1.03891 -0.0301623 0) (1.03564 -0.0317796 0) (1.0322 -0.033036 0) (1.02865 -0.0339192 0) (1.02504 -0.0344233 0) (1.0214 -0.0345482 0) (1.01778 -0.0342987 0) (1.01421 -0.0336842 0) (1.01074 -0.0327176 0) (1.0074 -0.0314152 0) (1.00422 -0.0297956 0) (1.00124 -0.0278798 0) (0.998461 -0.0256911 0) (0.995927 -0.0232542 0) (0.993655 -0.0205955 0) (0.991662 -0.0177435 0) (0.989965 -0.0147277 0) (0.988579 -0.0115794 0) (0.987512 -0.00833105 0) (0.986774 -0.0050171 0) (0.986366 -0.00167218 0) (0.98629 0.00166755 0) (0.986542 0.00496769 0) (0.987113 0.00818983 0) (0.98799 0.0113022 0) (0.989158 0.014266 0) (0.990591 0.0170577 0) (0.992269 0.0196367 0) (0.994153 0.0219966 0) (0.996226 0.0240891 0) (1.00834 0.018534 0) (1.00867 0.018938 0) (1.00904 0.0193443 0) (1.00943 0.0197506 0) (1.00987 0.0201546 0) (1.01033 0.0205537 0) (1.01084 0.0209445 0) (1.01138 0.0213237 0) (1.01197 0.021687 0) (1.01259 0.0220298 0) (1.01326 0.0223469 0) (1.01396 0.0226328 0) (1.01471 0.0228815 0) (1.01549 0.0230867 0) (1.01631 0.023242 0) (1.01715 0.0233414 0) (1.01802 0.0233791 0) (1.01889 0.0233502 0) (1.01978 0.0232512 0) (1.02065 0.0230799 0) (1.02151 0.0228363 0) (1.02234 0.0225225 0) (1.02312 0.0221434 0) (1.02386 0.0217065 0) (1.02453 0.0212217 0) (1.02512 0.0207018 0) (1.02564 0.0201614 0) (1.02608 0.0196166 0) (1.02643 0.0190845 0) (1.02671 0.0185822 0) (1.02692 0.0181259 0) (1.02707 0.0177302 0) (1.02719 0.0174072 0) (1.02727 0.017166 0) (1.02735 0.0170121 0) (1.02745 0.016947 0) (1.02758 0.0169684 0) (1.02776 0.0170698 0) (1.02802 0.0172406 0) (1.02837 0.0174671 0) (1.02883 0.0177319 0) (1.02941 0.0180152 0) (1.03012 0.0182945 0) (1.03096 0.0185457 0) (1.03194 0.0187435 0) (1.03305 0.0188618 0) (1.03428 0.0188743 0) (1.03563 0.0187553 0) (1.03708 0.0184801 0) (1.03861 0.0180258 0) (1.0402 0.017372 0) (1.04182 0.0165011 0) (1.04343 0.0153995 0) (1.04501 0.0140583 0) (1.04652 0.0124732 0) (1.04791 0.0106464 0) (1.04916 0.00858593 0) (1.05022 0.00630627 0) (1.05105 0.00382863 0) (1.05163 0.00118064 0) (1.05192 -0.00160274 0) (1.05189 -0.00448372 0) (1.05154 -0.00741925 0) (1.05084 -0.0103634 0) (1.0498 -0.0132686 0) (1.04842 -0.0160874 0) (1.0467 -0.0187736 0) (1.04468 -0.0212837 0) (1.04237 -0.0235779 0) (1.03981 -0.0256212 0) (1.03702 -0.027384 0) (1.03405 -0.0288426 0) (1.03094 -0.0299792 0) (1.02772 -0.0307818 0) (1.02444 -0.0312439 0) (1.02113 -0.0313641 0) (1.01783 -0.0311457 0) (1.01458 -0.030596 0) (1.01142 -0.0297257 0) (1.00837 -0.0285487 0) (1.00546 -0.0270815 0) (1.00272 -0.0253428 0) (1.00018 -0.0233535 0) (0.997849 -0.0211362 0) (0.995759 -0.018715 0) (0.993923 -0.016116 0) (0.992356 -0.0133661 0) (0.991071 -0.0104943 0) (0.990077 -0.00753077 0) (0.989378 -0.00450517 0) (0.988981 -0.00145086 0) (0.988887 0.00160089 0) (0.989088 0.00461845 0) (0.989576 0.00756725 0) (0.99034 0.0104193 0) (0.991367 0.0131404 0) (0.992634 0.0157096 0) (0.994123 0.0180913 0) (0.9958 0.0202801 0) (0.997649 0.0222334 0) (1.00839 0.0182298 0) (1.00872 0.0186063 0) (1.00909 0.0189834 0) (1.00948 0.0193591 0) (1.00991 0.019731 0) (1.01037 0.0200965 0) (1.01087 0.0204526 0) (1.0114 0.020796 0) (1.01196 0.0211228 0) (1.01256 0.021429 0) (1.0132 0.0217098 0) (1.01388 0.0219606 0) (1.01459 0.022176 0) (1.01533 0.0223508 0) (1.01609 0.0224799 0) (1.01688 0.0225583 0) (1.01769 0.0225816 0) (1.01851 0.022546 0) (1.01932 0.0224489 0) (1.02014 0.0222893 0) (1.02093 0.0220676 0) (1.0217 0.0217861 0) (1.02243 0.0214493 0) (1.02312 0.0210639 0) (1.02375 0.0206386 0) (1.02432 0.0201841 0) (1.02482 0.0197126 0) (1.02526 0.0192374 0) (1.02564 0.0187726 0) (1.02595 0.018332 0) (1.0262 0.0179288 0) (1.02641 0.0175747 0) (1.02658 0.0172795 0) (1.02674 0.0170503 0) (1.02689 0.0168914 0) (1.02706 0.0168035 0) (1.02726 0.0167844 0) (1.02751 0.0168282 0) (1.02782 0.0169258 0) (1.02821 0.017065 0) (1.02869 0.017231 0) (1.02927 0.0174064 0) (1.02996 0.0175719 0) (1.03076 0.0177066 0) (1.03167 0.0177888 0) (1.0327 0.0177959 0) (1.03383 0.0177055 0) (1.03505 0.0174955 0) (1.03635 0.0171451 0) (1.03771 0.0166351 0) (1.03911 0.0159482 0) (1.04053 0.0150704 0) (1.04194 0.0139907 0) (1.0433 0.0127026 0) (1.0446 0.0112038 0) (1.04579 0.00949675 0) (1.04684 0.00758985 0) (1.04772 0.00549668 0) (1.04839 0.00323647 0) (1.04884 0.000833986 0) (1.04903 -0.00168251 0) (1.04894 -0.00427777 0) (1.04856 -0.00691491 0) (1.04788 -0.00955455 0) (1.0469 -0.0121557 0) (1.04562 -0.0146775 0) (1.04405 -0.0170798 0) (1.0422 -0.0193248 0) (1.04011 -0.0213779 0) (1.03778 -0.0232083 0) (1.03526 -0.0247896 0) (1.03257 -0.0261003 0) (1.02975 -0.0271241 0) (1.02684 -0.0278493 0) (1.02386 -0.0282694 0) (1.02086 -0.0283821 0) (1.01786 -0.0281893 0) (1.01491 -0.0276969 0) (1.01203 -0.0269136 0) (1.00925 -0.0258513 0) (1.00659 -0.0245245 0) (1.00409 -0.0229498 0) (1.00177 -0.0211458 0) (0.999634 -0.019133 0) (0.997717 -0.0169335 0) (0.99603 -0.0145707 0) (0.994587 -0.0120696 0) (0.993398 -0.00945632 0) (0.992472 -0.00675743 0) (0.991816 -0.00400276 0) (0.991431 -0.00121817 0) (0.991317 0.00156481 0) (0.991471 0.0043186 0) (0.991885 0.00701308 0) (0.992548 0.0096232 0) (0.993448 0.0121184 0) (0.994565 0.0144804 0) (0.995883 0.0166777 0) (0.997372 0.0187056 0) (0.999019 0.0205267 0) (1.00844 0.0179146 0) (1.00877 0.0182643 0) (1.00913 0.0186133 0) (1.00953 0.0189595 0) (1.00995 0.0193007 0) (1.0104 0.0196345 0) (1.01088 0.019958 0) (1.0114 0.020268 0) (1.01195 0.0205613 0) (1.01253 0.0208339 0) (1.01314 0.021082 0) (1.01378 0.0213013 0) (1.01445 0.0214874 0) (1.01515 0.0216359 0) (1.01587 0.0217426 0) (1.01661 0.0218036 0) (1.01737 0.0218153 0) (1.01813 0.0217752 0) (1.01889 0.0216813 0) (1.01964 0.0215332 0) (1.02038 0.0213317 0) (1.0211 0.0210792 0) (1.02178 0.0207799 0) (1.02243 0.0204396 0) (1.02303 0.0200657 0) (1.02357 0.0196672 0) (1.02407 0.0192543 0) (1.02451 0.018838 0) (1.0249 0.0184297 0) (1.02523 0.0180407 0) (1.02552 0.0176814 0) (1.02578 0.0173614 0) (1.026 0.0170883 0) (1.02622 0.0168676 0) (1.02643 0.0167026 0) (1.02666 0.0165935 0) (1.02691 0.0165381 0) (1.02721 0.016531 0) (1.02756 0.0165643 0) (1.02797 0.0166274 0) (1.02846 0.0167075 0) (1.02904 0.0167896 0) (1.02971 0.016857 0) (1.03047 0.016892 0) (1.03132 0.0168758 0) (1.03227 0.0167891 0) (1.03329 0.0166129 0) (1.03439 0.0163284 0) (1.03556 0.0159182 0) (1.03676 0.0153662 0) (1.038 0.0146583 0) (1.03924 0.0137832 0) (1.04046 0.0127323 0) (1.04164 0.0115007 0) (1.04275 0.0100876 0) (1.04375 0.0084962 0) (1.04463 0.00673465 0) (1.04535 0.00481532 0) (1.04589 0.00275577 0) (1.04623 0.000577676 0) (1.04633 -0.00169427 0) (1.04619 -0.00402968 0) (1.0458 -0.00639626 0) (1.04514 -0.00876005 0) (1.04422 -0.0110858 0) (1.04303 -0.0133383 0) (1.04159 -0.0154829 0) (1.03991 -0.0174869 0) (1.038 -0.0193202 0) (1.03589 -0.0209555 0) (1.03361 -0.0223697 0) (1.03118 -0.0235434 0) (1.02863 -0.0244616 0) (1.026 -0.0251134 0) (1.0233 -0.0254923 0) (1.02059 -0.0255955 0) (1.01787 -0.025424 0) (1.0152 -0.0249821 0) (1.01258 -0.0242774 0) (1.01005 -0.0233198 0) (1.00764 -0.022122 0) (1.00536 -0.0206986 0) (1.00324 -0.0190663 0) (1.00129 -0.0172434 0) (0.999535 -0.01525 0) (0.997988 -0.0131071 0) (0.996661 -0.0108375 0) (0.995564 -0.0084649 0) (0.994704 -0.00601332 0) (0.994086 -0.00350914 0) (0.993714 -0.000977352 0) (0.993587 0.00155623 0) (0.993701 0.00406587 0) (0.994048 0.00652426 0) (0.99462 0.00890944 0) (0.995406 0.0111944 0) (0.996387 0.0133631 0) (0.997551 0.0153876 0) (0.99887 0.017264 0) (1.00033 0.0189594 0) (1.00848 0.0175894 0) (1.00882 0.0179131 0) (1.00918 0.018235 0) (1.00956 0.0185531 0) (1.00998 0.0188652 0) (1.01042 0.019169 0) (1.01089 0.0194619 0) (1.01139 0.0197411 0) (1.01192 0.0200034 0) (1.01248 0.0202456 0) (1.01306 0.0204641 0) (1.01367 0.0206553 0) (1.01431 0.0208155 0) (1.01497 0.0209412 0) (1.01565 0.0210288 0) (1.01634 0.0210752 0) (1.01705 0.0210779 0) (1.01776 0.0210347 0) (1.01847 0.0209447 0) (1.01917 0.0208076 0) (1.01986 0.0206246 0) (1.02053 0.0203981 0) (1.02117 0.0201316 0) (1.02178 0.0198303 0) (1.02235 0.0195006 0) (1.02288 0.0191499 0) (1.02337 0.0187866 0) (1.02381 0.0184198 0) (1.0242 0.0180587 0) (1.02456 0.0177124 0) (1.02488 0.0173893 0) (1.02517 0.0170969 0) (1.02544 0.0168411 0) (1.0257 0.0166263 0) (1.02596 0.0164546 0) (1.02624 0.016326 0) (1.02653 0.0162383 0) (1.02686 0.0161866 0) (1.02724 0.016164 0) (1.02768 0.0161613 0) (1.02817 0.0161675 0) (1.02874 0.0161697 0) (1.02938 0.0161537 0) (1.0301 0.0161042 0) (1.03089 0.0160053 0) (1.03176 0.0158407 0) (1.03269 0.0155942 0) (1.03368 0.0152502 0) (1.03472 0.0147941 0) (1.03579 0.0142125 0) (1.03687 0.0134941 0) (1.03795 0.0126296 0) (1.03901 0.0116128 0) (1.04002 0.0104402 0) (1.04096 0.00911187 0) (1.04181 0.00763175 0) (1.04253 0.00600707 0) (1.04312 0.00424963 0) (1.04354 0.00237458 0) (1.04378 0.000401314 0) (1.04382 -0.00164728 0) (1.04364 -0.00374586 0) (1.04324 -0.00586696 0) (1.0426 -0.00798101 0) (1.04173 -0.0100577 0) (1.04063 -0.0120666 0) (1.03931 -0.0139779 0) (1.03778 -0.0157634 0) (1.03605 -0.0173967 0) (1.03414 -0.0188542 0) (1.03208 -0.0201152 0) (1.02988 -0.0211626 0) (1.02758 -0.0219827 0) (1.0252 -0.0225656 0) (1.02277 -0.0229048 0) (1.02032 -0.0229973 0) (1.01787 -0.0228434 0) (1.01544 -0.0224464 0) (1.01307 -0.0218125 0) (1.01078 -0.0209503 0) (1.00859 -0.0198706 0) (1.00652 -0.0185865 0) (1.00459 -0.0171127 0) (1.00282 -0.0154656 0) (1.00122 -0.013663 0) (0.999801 -0.0117243 0) (0.998584 -0.00966938 0) (0.997574 -0.00751994 0) (0.996777 -0.00529827 0) (0.996198 -0.00302608 0) (0.99584 -0.000726776 0) (0.995702 0.00157477 0) (0.99578 0.00385682 0) (0.996068 0.0060958 0) (0.996559 0.00827198 0) (0.997243 0.0103614 0) (0.998103 0.0123497 0) (0.999128 0.0142125 0) (1.00029 0.0159462 0) (1.00159 0.0175218 0) (1.00852 0.0172549 0) (1.00886 0.0175537 0) (1.00921 0.0178496 0) (1.00959 0.0181409 0) (1.01 0.0184255 0) (1.01043 0.0187012 0) (1.01089 0.0189656 0) (1.01137 0.0192162 0) (1.01188 0.0194502 0) (1.01242 0.0196646 0) (1.01297 0.0198565 0) (1.01356 0.0200227 0) (1.01416 0.0201601 0) (1.01479 0.0202659 0) (1.01543 0.0203372 0) (1.01608 0.0203715 0) (1.01674 0.0203668 0) (1.0174 0.0203219 0) (1.01807 0.0202359 0) (1.01872 0.0201092 0) (1.01937 0.0199428 0) (1.02 0.019739 0) (1.0206 0.019501 0) (1.02118 0.0192334 0) (1.02173 0.0189413 0) (1.02224 0.0186311 0) (1.02271 0.0183097 0) (1.02315 0.0179843 0) (1.02355 0.0176625 0) (1.02393 0.0173514 0) (1.02427 0.0170579 0) (1.02459 0.0167876 0) (1.02489 0.0165454 0) (1.02519 0.0163342 0) (1.02549 0.0161557 0) (1.0258 0.0160095 0) (1.02613 0.0158933 0) (1.02648 0.015803 0) (1.02688 0.0157323 0) (1.02733 0.0156733 0) (1.02782 0.0156167 0) (1.02838 0.0155513 0) (1.02899 0.0154651 0) (1.02966 0.0153451 0) (1.0304 0.0151779 0) (1.03119 0.0149498 0) (1.03204 0.0146471 0) (1.03292 0.0142569 0) (1.03385 0.0137671 0) (1.03479 0.0131668 0) (1.03573 0.0124468 0) (1.03667 0.0116 0) (1.03758 0.0106216 0) (1.03844 0.00950944 0) (1.03924 0.00826433 0) (1.03995 0.00689025 0) (1.04054 0.00539445 0) (1.04101 0.00378777 0) (1.04134 0.00208377 0) (1.04149 0.000299385 0) (1.04147 -0.00154652 0) (1.04127 -0.0034309 0) (1.04086 -0.00533006 0) (1.04025 -0.00721866 0) (1.03943 -0.00907061 0) (1.03842 -0.0108598 0) (1.03721 -0.0125605 0) (1.03581 -0.0141483 0) (1.03424 -0.0156004 0) (1.03252 -0.0168961 0) (1.03065 -0.0180174 0) (1.02868 -0.018949 0) (1.0266 -0.0196787 0) (1.02446 -0.0201974 0) (1.02227 -0.0204988 0) (1.02006 -0.02058 0) (1.01784 -0.0204408 0) (1.01566 -0.0200837 0) (1.01352 -0.0195137 0) (1.01144 -0.0187382 0) (1.00946 -0.0177667 0) (1.00759 -0.0166104 0) (1.00583 -0.0152823 0) (1.00422 -0.0137973 0) (1.00277 -0.012171 0) (1.00148 -0.0104208 0) (1.00036 -0.00856473 0) (0.999434 -0.00662182 0) (0.998698 -0.00461192 0) (0.998157 -0.00255577 0) (0.997813 -0.00047343 0) (0.997667 0.00161355 0) (0.997715 0.00368593 0) (0.997952 0.00572221 0) (0.998371 0.00770482 0) (0.998964 0.00961262 0) (0.999715 0.011433 0) (1.00062 0.0131445 0) (1.00165 0.0147437 0) (1.0028 0.0162051 0) (1.00856 0.0169122 0) (1.00889 0.017187 0) (1.00924 0.0174582 0) (1.00962 0.0177241 0) (1.01001 0.0179827 0) (1.01043 0.0182321 0) (1.01088 0.0184701 0) (1.01134 0.0186943 0) (1.01183 0.0189023 0) (1.01235 0.0190916 0) (1.01288 0.0192595 0) (1.01344 0.0194034 0) (1.01401 0.0195208 0) (1.0146 0.0196092 0) (1.0152 0.0196664 0) (1.01581 0.0196905 0) (1.01643 0.01968 0) (1.01706 0.0196339 0) (1.01768 0.019552 0) (1.0183 0.0194346 0) (1.0189 0.019283 0) (1.01949 0.019099 0) (1.02006 0.0188857 0) (1.02061 0.0186468 0) (1.02114 0.0183867 0) (1.02163 0.0181106 0) (1.0221 0.0178241 0) (1.02253 0.0175332 0) (1.02294 0.0172439 0) (1.02332 0.0169618 0) (1.02368 0.0166922 0) (1.02402 0.0164398 0) (1.02435 0.0162079 0) (1.02468 0.0159989 0) (1.025 0.0158138 0) (1.02534 0.0156519 0) (1.02569 0.0155111 0) (1.02607 0.0153875 0) (1.02648 0.015276 0) (1.02693 0.0151695 0) (1.02742 0.0150601 0) (1.02795 0.0149383 0) (1.02853 0.0147941 0) (1.02917 0.0146163 0) (1.02985 0.0143938 0) (1.03057 0.014115 0) (1.03133 0.0137688 0) (1.03213 0.0133443 0) (1.03294 0.0128316 0) (1.03377 0.012222 0) (1.0346 0.0115082 0) (1.03541 0.0106847 0) (1.03619 0.00974798 0) (1.03692 0.00869703 0) (1.03759 0.00753322 0) (1.03817 0.00626049 0) (1.03866 0.00488591 0) (1.03903 0.00341853 0) (1.03927 0.0018715 0) (1.03936 0.000258426 0) (1.03929 -0.00140268 0) (1.03906 -0.00309274 0) (1.03866 -0.00479116 0) (1.03807 -0.00647619 0) (1.03731 -0.00812545 0) (1.03637 -0.00971646 0) (1.03526 -0.0112272 0) (1.03399 -0.0126365 0) (1.03257 -0.0139247 0) (1.03101 -0.0150739 0) (1.02933 -0.0160682 0) (1.02755 -0.0168942 0) (1.02569 -0.017541 0) (1.02376 -0.0180002 0) (1.02179 -0.0182662 0) (1.0198 -0.0183361 0) (1.01781 -0.0182093 0) (1.01584 -0.0178876 0) (1.01391 -0.0173753 0) (1.01204 -0.0166786 0) (1.01025 -0.0158056 0) (1.00856 -0.0147663 0) (1.00697 -0.0135721 0) (1.00551 -0.0122359 0) (1.00419 -0.0107719 0) (1.00302 -0.00919531 0) (1.002 -0.00752245 0) (1.00115 -0.00577031 0) (1.00047 -0.0039565 0) (0.999967 -0.00209914 0) (0.99964 -0.000216891 0) (0.999489 0.00167318 0) (0.999512 0.00355165 0) (0.999705 0.00540009 0) (1.00006 0.0072031 0) (1.00057 0.00894207 0) (1.00123 0.0106059 0) (1.00202 0.0121755 0) (1.00293 0.0136479 0) (1.00395 0.0150005 0) (1.00859 0.016562 0) (1.00892 0.016814 0) (1.00926 0.0170617 0) (1.00963 0.0173036 0) (1.01002 0.0175379 0) (1.01043 0.0177627 0) (1.01086 0.0179761 0) (1.01131 0.018176 0) (1.01178 0.0183603 0) (1.01227 0.0185268 0) (1.01278 0.0186731 0) (1.01331 0.0187972 0) (1.01385 0.0188968 0) (1.01441 0.01897 0) (1.01498 0.0190151 0) (1.01555 0.0190305 0) (1.01614 0.0190152 0) (1.01672 0.0189685 0) (1.01731 0.0188904 0) (1.01789 0.0187814 0) (1.01846 0.0186425 0) (1.01902 0.0184757 0) (1.01956 0.0182834 0) (1.02008 0.0180688 0) (1.02058 0.0178356 0) (1.02106 0.0175881 0) (1.02152 0.0173308 0) (1.02195 0.0170685 0) (1.02236 0.0168058 0) (1.02275 0.0165474 0) (1.02312 0.0162974 0) (1.02348 0.0160591 0) (1.02382 0.0158352 0) (1.02417 0.0156274 0) (1.02451 0.015436 0) (1.02487 0.0152605 0) (1.02524 0.0150987 0) (1.02563 0.0149472 0) (1.02604 0.0148014 0) (1.02648 0.0146555 0) (1.02696 0.0145025 0) (1.02748 0.0143346 0) (1.02803 0.0141432 0) (1.02862 0.013919 0) (1.02924 0.0136528 0) (1.0299 0.013335 0) (1.03059 0.0129563 0) (1.0313 0.0125079 0) (1.03202 0.0119818 0) (1.03275 0.011371 0) (1.03346 0.0106699 0) (1.03416 0.00987424 0) (1.03483 0.00898178 0) (1.03545 0.0079921 0) (1.036 0.00690702 0) (1.03648 0.00573061 0) (1.03687 0.00446897 0) (1.03716 0.00313106 0) (1.03733 0.00172767 0) (1.03736 0.00027157 0) (1.03726 -0.0012213 0) (1.03701 -0.0027352 0) (1.03661 -0.00425246 0) (1.03606 -0.00575419 0) (1.03535 -0.00722115 0) (1.03448 -0.00863405 0) (1.03347 -0.00997395 0) (1.03231 -0.0112227 0) (1.03103 -0.0123633 0) (1.02962 -0.0133801 0) (1.02811 -0.0142595 0) (1.02651 -0.0149896 0) (1.02484 -0.0155608 0) (1.02311 -0.0159656 0) (1.02134 -0.0161989 0) (1.01955 -0.0162577 0) (1.01776 -0.0161414 0) (1.01599 -0.0158514 0) (1.01426 -0.0153911 0) (1.01258 -0.0147659 0) (1.01097 -0.0139827 0) (1.00944 -0.0130502 0) (1.00801 -0.0119784 0) (1.00669 -0.0107787 0) (1.00549 -0.00946356 0) (1.00443 -0.0080465 0) (1.0035 -0.00654189 0) (1.00273 -0.00496511 0) (1.0021 -0.00333123 0) (1.00164 -0.0016575 0) (1.00133 4.10751e-05 0) (1.00117 0.00174866 0) (1.00118 0.00344796 0) (1.00133 0.00512285 0) (1.00163 0.00675977 0) (1.00207 0.00834223 0) (1.00264 0.00986035 0) (1.00333 0.0112973 0) (1.00413 0.0126503 0) (1.00504 0.0138994 0) (1.00862 0.0162053 0) (1.00894 0.0164355 0) (1.00928 0.016661 0) (1.00964 0.0168803 0) (1.01002 0.0170917 0) (1.01041 0.0172937 0) (1.01083 0.0174844 0) (1.01126 0.0176621 0) (1.01172 0.0178247 0) (1.01218 0.0179705 0) (1.01267 0.0180974 0) (1.01317 0.0182037 0) (1.01369 0.0182876 0) (1.01422 0.0183475 0) (1.01475 0.0183819 0) (1.0153 0.0183899 0) (1.01585 0.0183705 0) (1.0164 0.0183234 0) (1.01695 0.0182487 0) (1.0175 0.0181469 0) (1.01803 0.0180191 0) (1.01856 0.0178669 0) (1.01908 0.0176924 0) (1.01958 0.0174983 0) (1.02006 0.0172877 0) (1.02053 0.0170639 0) (1.02097 0.0168308 0) (1.0214 0.016592 0) (1.02181 0.0163513 0) (1.0222 0.0161122 0) (1.02258 0.0158779 0) (1.02294 0.015651 0) (1.0233 0.0154333 0) (1.02366 0.015226 0) (1.02402 0.0150292 0) (1.02438 0.0148421 0) (1.02476 0.0146628 0) (1.02515 0.0144882 0) (1.02557 0.0143143 0) (1.026 0.0141362 0) (1.02647 0.013948 0) (1.02696 0.0137431 0) (1.02748 0.0135143 0) (1.02803 0.013254 0) (1.0286 0.0129544 0) (1.0292 0.0126077 0) (1.02982 0.0122064 0) (1.03045 0.0117432 0) (1.03109 0.0112118 0) (1.03172 0.0106068 0) (1.03234 0.00992368 0) (1.03294 0.00915956 0) (1.03351 0.00831294 0) (1.03403 0.00738405 0) (1.03449 0.00637484 0) (1.03488 0.00528948 0) (1.03518 0.00413387 0) (1.0354 0.00291565 0) (1.03551 0.00164433 0) (1.0355 0.000331993 0) (1.03537 -0.00100899 0) (1.03511 -0.00236426 0) (1.03472 -0.00371836 0) (1.0342 -0.00505524 0) (1.03354 -0.00635843 0) (1.03274 -0.00761142 0) (1.03182 -0.00879798 0) (1.03077 -0.00990252 0) (1.02961 -0.0109104 0) (1.02834 -0.0118082 0) (1.02698 -0.012584 0) (1.02554 -0.0132274 0) (1.02404 -0.0137301 0) (1.02249 -0.0140853 0) (1.02091 -0.0142885 0) (1.01931 -0.0143369 0) (1.01771 -0.0142297 0) (1.01612 -0.0139681 0) (1.01457 -0.0135548 0) (1.01306 -0.0129943 0) (1.01161 -0.0122927 0) (1.01024 -0.0114575 0) (1.00895 -0.0104974 0) (1.00776 -0.00942238 0) (1.00668 -0.00824342 0) (1.00572 -0.00697249 0) (1.00488 -0.00562215 0) (1.00418 -0.00420585 0) (1.0036 -0.00273737 0) (1.00317 -0.00123144 0) (1.00288 0.000299228 0) (1.00273 0.0018381 0) (1.00271 0.0033724 0) (1.00284 0.00488731 0) (1.00309 0.0063707 0) (1.00347 0.00780802 0) (1.00396 0.0091905 0) (1.00457 0.0105033 0) (1.00527 0.0117437 0) (1.00607 0.0128942 0) (1.00864 0.0158427 0) (1.00896 0.0160523 0) (1.00929 0.0162568 0) (1.00964 0.0164549 0) (1.01001 0.0166451 0) (1.01039 0.0168259 0) (1.01079 0.0169956 0) (1.01121 0.0171528 0) (1.01164 0.0172957 0) (1.01209 0.0174227 0) (1.01256 0.0175322 0) (1.01304 0.0176226 0) (1.01352 0.0176925 0) (1.01402 0.0177406 0) (1.01453 0.0177657 0) (1.01505 0.0177671 0) (1.01557 0.0177442 0) (1.01609 0.0176968 0) (1.0166 0.017625 0) (1.01712 0.0175293 0) (1.01763 0.0174109 0) (1.01813 0.0172709 0) (1.01862 0.0171114 0) (1.0191 0.0169344 0) (1.01957 0.0167426 0) (1.02002 0.0165386 0) (1.02045 0.0163253 0) (1.02087 0.0161059 0) (1.02127 0.0158832 0) (1.02167 0.0156598 0) (1.02205 0.0154383 0) (1.02242 0.0152205 0) (1.02278 0.0150078 0) (1.02315 0.0148008 0) (1.02351 0.0145995 0) (1.02389 0.014403 0) (1.02427 0.0142094 0) (1.02466 0.0140162 0) (1.02507 0.0138199 0) (1.02549 0.0136162 0) (1.02594 0.0134003 0) (1.0264 0.0131666 0) (1.02689 0.0129092 0) (1.0274 0.0126218 0) (1.02793 0.0122979 0) (1.02847 0.0119313 0) (1.02902 0.0115158 0) (1.02958 0.0110457 0) (1.03014 0.010516 0) (1.0307 0.00992235 0) (1.03123 0.00926165 0) (1.03175 0.00853177 0) (1.03222 0.00773197 0) (1.03266 0.00686292 0) (1.03304 0.00592689 0) (1.03335 0.00492751 0) (1.03359 0.00387027 0) (1.03374 0.00276246 0) (1.03381 0.0016126 0) (1.03376 0.000430881 0) (1.03361 -0.000772831 0) (1.03335 -0.00198483 0) (1.03298 -0.003192 0) (1.03248 -0.00438081 0) (1.03187 -0.00553715 0) (1.03113 -0.00664687 0) (1.03029 -0.00769611 0) (1.02934 -0.0086715 0) (1.02829 -0.00956049 0) (1.02716 -0.0103515 0) (1.02594 -0.0110343 0) (1.02465 -0.0115998 0) (1.02331 -0.0120407 0) (1.02192 -0.0123511 0) (1.02051 -0.012527 0) (1.01908 -0.0125658 0) (1.01765 -0.0124667 0) (1.01623 -0.0122305 0) (1.01484 -0.0118596 0) (1.01349 -0.0113578 0) (1.01219 -0.0107302 0) (1.01096 -0.00998342 0) (1.00981 -0.009125 0) (1.00874 -0.00816364 0) (1.00777 -0.00710896 0) (1.0069 -0.0059714 0) (1.00614 -0.00476211 0) (1.0055 -0.00349263 0) (1.00498 -0.00217541 0) (1.00458 -0.000822621 0) (1.0043 0.000552817 0) (1.00415 0.00193745 0) (1.00413 0.00331991 0) (1.00422 0.00468737 0) (1.00444 0.00602901 0) (1.00476 0.00733196 0) (1.00519 0.00858842 0) (1.00572 0.00978528 0) (1.00634 0.0109199 0) (1.00704 0.0119768 0) (1.00866 0.0154752 0) (1.00897 0.0156653 0) (1.0093 0.0158501 0) (1.00964 0.0160283 0) (1.00999 0.0161987 0) (1.01036 0.0163598 0) (1.01075 0.0165102 0) (1.01115 0.0166487 0) (1.01157 0.0167736 0) (1.012 0.0168836 0) (1.01244 0.0169773 0) (1.01289 0.0170534 0) (1.01336 0.0171108 0) (1.01383 0.0171483 0) (1.01431 0.0171653 0) (1.0148 0.0171609 0) (1.01529 0.0171348 0) (1.01578 0.0170869 0) (1.01627 0.0170174 0) (1.01676 0.0169269 0) (1.01724 0.0168162 0) (1.01772 0.0166866 0) (1.01819 0.0165395 0) (1.01865 0.0163767 0) (1.01909 0.0162004 0) (1.01953 0.0160126 0) (1.01995 0.0158158 0) (1.02036 0.0156123 0) (1.02076 0.0154043 0) (1.02115 0.0151938 0) (1.02153 0.0149828 0) (1.0219 0.0147725 0) (1.02227 0.0145638 0) (1.02264 0.0143573 0) (1.02301 0.0141525 0) (1.02338 0.0139486 0) (1.02375 0.0137439 0) (1.02414 0.0135363 0) (1.02454 0.0133226 0) (1.02495 0.0130994 0) (1.02538 0.0128624 0) (1.02582 0.0126073 0) (1.02627 0.0123289 0) (1.02674 0.0120223 0) (1.02723 0.0116821 0) (1.02772 0.0113033 0) (1.02821 0.010881 0) (1.02871 0.0104106 0) (1.0292 0.00988838 0) (1.02968 0.00931099 0) (1.03015 0.00867617 0) (1.03058 0.00798251 0) (1.03099 0.00722985 0) (1.03135 0.00641918 0) (1.03166 0.00555287 0) (1.0319 0.00463453 0) (1.03209 0.0036692 0) (1.03219 0.00266314 0) (1.03221 0.00162377 0) (1.03214 0.000559442 0) (1.03198 -0.000518827 0) (1.03172 -0.00160108 0) (1.03136 -0.0026762 0) (1.03089 -0.0037323 0) (1.03032 -0.00475724 0) (1.02966 -0.00573893 0) (1.02889 -0.00666551 0) (1.02803 -0.00752557 0) (1.02709 -0.00830836 0) (1.02607 -0.00900396 0) (1.02497 -0.0096035 0) (1.02382 -0.0100993 0) (1.02262 -0.0104848 0) (1.02139 -0.0107551 0) (1.02012 -0.0109064 0) (1.01885 -0.0109365 0) (1.01757 -0.0108447 0) (1.01631 -0.0106315 0) (1.01507 -0.0102989 0) (1.01387 -0.0098501 0) (1.01271 -0.00928962 0) (1.01161 -0.00862303 0) (1.01058 -0.00785692 0) (1.00962 -0.00699886 0) (1.00875 -0.00605726 0) (1.00797 -0.0050412 0) (1.00728 -0.00396038 0) (1.0067 -0.00282517 0) (1.00623 -0.00164597 0) (1.00586 -0.000434567 0) (1.00561 0.000799302 0) (1.00546 0.00204328 0) (1.00543 0.00328699 0) (1.0055 0.00451919 0) (1.00568 0.00573033 0) (1.00596 0.00690912 0) (1.00633 0.00804862 0) (1.00679 0.00913722 0) (1.00733 0.0101724 0) (1.00796 0.0111405 0) (1.00867 0.0151034 0) (1.00898 0.0152751 0) (1.00929 0.0154414 0) (1.00962 0.0156011 0) (1.00997 0.015753 0) (1.01033 0.0158959 0) (1.0107 0.0160286 0) (1.01109 0.0161498 0) (1.01148 0.0162583 0) (1.0119 0.0163529 0) (1.01232 0.0164323 0) (1.01275 0.0164956 0) (1.01319 0.0165418 0) (1.01364 0.0165699 0) (1.0141 0.0165794 0) (1.01456 0.0165698 0) (1.01502 0.0165407 0) (1.01549 0.0164923 0) (1.01595 0.0164246 0) (1.01641 0.0163383 0) (1.01687 0.016234 0) (1.01733 0.0161128 0) (1.01777 0.015976 0) (1.01821 0.0158249 0) (1.01864 0.0156614 0) (1.01906 0.015487 0) (1.01947 0.0153037 0) (1.01987 0.0151132 0) (1.02026 0.0149173 0) (1.02065 0.0147175 0) (1.02102 0.0145151 0) (1.02139 0.0143111 0) (1.02176 0.0141062 0) (1.02213 0.0139003 0) (1.02249 0.0136932 0) (1.02286 0.013484 0) (1.02323 0.0132713 0) (1.02361 0.0130529 0) (1.024 0.0128265 0) (1.02439 0.012589 0) (1.0248 0.012337 0) (1.02521 0.0120668 0) (1.02564 0.0117742 0) (1.02607 0.0114553 0) (1.02651 0.0111057 0) (1.02695 0.0107213 0) (1.02739 0.0102984 0) (1.02783 0.00983349 0) (1.02827 0.00932349 0) (1.02868 0.0087661 0) (1.02908 0.00815969 0) (1.02945 0.00750356 0) (1.02979 0.00679792 0) (1.03009 0.00604405 0) (1.03034 0.00524418 0) (1.03053 0.0044019 0) (1.03067 0.00352164 0) (1.03073 0.00260887 0) (1.03072 0.00167041 0) (1.03064 0.000713828 0) (1.03047 -0.000252048 0) (1.03021 -0.00121789 0) (1.02986 -0.00217443 0) (1.02943 -0.00311164 0) (1.02891 -0.0040191 0) (1.02829 -0.00488649 0) (1.0276 -0.00570371 0) (1.02683 -0.006461 0) (1.02598 -0.00714918 0) (1.02506 -0.00775977 0) (1.02408 -0.00828516 0) (1.02306 -0.00871873 0) (1.02199 -0.00905492 0) (1.02089 -0.00928933 0) (1.01977 -0.00941878 0) (1.01863 -0.00944129 0) (1.0175 -0.00935611 0) (1.01637 -0.00916371 0) (1.01527 -0.00886573 0) (1.0142 -0.00846494 0) (1.01317 -0.00796514 0) (1.01219 -0.00737117 0) (1.01127 -0.0066887 0) (1.01041 -0.00592435 0) (1.00963 -0.00508529 0) (1.00893 -0.00417961 0) (1.00832 -0.00321576 0) (1.00779 -0.00220256 0) (1.00736 -0.00114996 0) (1.00703 -6.62376e-05 0) (1.0068 0.00103885 0) (1.00666 0.00215394 0) (1.00662 0.00327037 0) (1.00667 0.0043783 0) (1.00682 0.00546931 0) (1.00706 0.00653342 0) (1.00738 0.00756449 0) (1.00778 0.00855222 0) (1.00826 0.00949422 0) (1.00881 0.0103784 0) (1.00868 0.014728 0) (1.00897 0.0148824 0) (1.00928 0.0150314 0) (1.0096 0.0151738 0) (1.00994 0.0153086 0) (1.01028 0.0154347 0) (1.01064 0.015551 0) (1.01101 0.0156565 0) (1.0114 0.01575 0) (1.01179 0.0158306 0) (1.01219 0.0158971 0) (1.0126 0.0159488 0) (1.01302 0.0159848 0) (1.01345 0.0160044 0) (1.01388 0.0160072 0) (1.01432 0.0159928 0) (1.01476 0.015961 0) (1.0152 0.0159117 0) (1.01564 0.0158454 0) (1.01608 0.0157623 0) (1.01651 0.0156632 0) (1.01695 0.0155489 0) (1.01737 0.0154205 0) (1.01779 0.0152791 0) (1.01821 0.015126 0) (1.01861 0.0149626 0) (1.01901 0.0147904 0) (1.0194 0.0146108 0) (1.01978 0.0144249 0) (1.02016 0.014234 0) (1.02053 0.014039 0) (1.02089 0.0138406 0) (1.02126 0.013639 0) (1.02162 0.0134344 0) (1.02197 0.0132263 0) (1.02233 0.0130138 0) (1.0227 0.0127956 0) (1.02306 0.0125701 0) (1.02344 0.012335 0) (1.02381 0.012088 0) (1.0242 0.0118262 0) (1.02459 0.0115465 0) (1.02498 0.0112456 0) (1.02538 0.0109202 0) (1.02578 0.0105671 0) (1.02618 0.0101829 0) (1.02657 0.0097646 0) (1.02696 0.00930964 0) (1.02734 0.00881576 0) (1.0277 0.00828132 0) (1.02804 0.00770527 0) (1.02836 0.00708738 0) (1.02864 0.00642816 0) (1.02889 0.00572897 0) (1.02909 0.00499217 0) (1.02924 0.00422088 0) (1.02933 0.00341923 0) (1.02937 0.00259243 0) (1.02933 0.00174634 0) (1.02923 0.000887933 0) (1.02906 2.40033e-05 0) (1.02881 -0.00083786 0) (1.02848 -0.00168857 0) (1.02808 -0.00251967 0) (1.0276 -0.00332246 0) (1.02704 -0.00408815 0) (1.02641 -0.00480812 0) (1.02572 -0.00547409 0) (1.02496 -0.00607825 0) (1.02414 -0.00661336 0) (1.02327 -0.00707295 0) (1.02235 -0.00745133 0) (1.0214 -0.00774374 0) (1.02042 -0.00794641 0) (1.01943 -0.00805657 0) (1.01842 -0.0080725 0) (1.01741 -0.00799354 0) (1.01642 -0.00782003 0) (1.01544 -0.00755339 0) (1.01449 -0.00719594 0) (1.01357 -0.00675096 0) (1.0127 -0.0062226 0) (1.01188 -0.00561577 0) (1.01112 -0.00493613 0) (1.01043 -0.00419005 0) (1.0098 -0.00338431 0) (1.00925 -0.00252624 0) (1.00878 -0.00162414 0) (1.00839 -0.000685693 0) (1.00809 0.000281983 0) (1.00788 0.00126896 0) (1.00775 0.00226626 0) (1.0077 0.00326636 0) (1.00774 0.00426045 0) (1.00787 0.00524113 0) (1.00807 0.0061996 0) (1.00835 0.00713037 0) (1.0087 0.0080243 0) (1.00912 0.00887913 0) (1.0096 0.0096841 0) (1.00868 0.0143496 0) (1.00897 0.0144879 0) (1.00927 0.0146206 0) (1.00958 0.0147469 0) (1.0099 0.0148659 0) (1.01024 0.0149765 0) (1.01058 0.0150778 0) (1.01094 0.0151688 0) (1.0113 0.0152487 0) (1.01168 0.0153164 0) (1.01206 0.0153713 0) (1.01246 0.0154124 0) (1.01285 0.0154392 0) (1.01326 0.0154512 0) (1.01367 0.0154478 0) (1.01408 0.015429 0) (1.0145 0.0153944 0) (1.01492 0.0153442 0) (1.01534 0.0152787 0) (1.01575 0.0151981 0) (1.01617 0.0151032 0) (1.01658 0.0149944 0) (1.01699 0.0148728 0) (1.01739 0.0147393 0) (1.01779 0.0145949 0) (1.01818 0.0144406 0) (1.01856 0.0142776 0) (1.01894 0.0141069 0) (1.01931 0.0139295 0) (1.01968 0.0137462 0) (1.02004 0.0135577 0) (1.0204 0.0133643 0) (1.02075 0.0131663 0) (1.0211 0.0129636 0) (1.02145 0.0127556 0) (1.02181 0.0125417 0) (1.02216 0.0123206 0) (1.02251 0.012091 0) (1.02287 0.011851 0) (1.02322 0.0115986 0) (1.02358 0.0113315 0) (1.02395 0.0110471 0) (1.02431 0.010743 0) (1.02468 0.0104163 0) (1.02504 0.0100645 0) (1.0254 0.00968511 0) (1.02575 0.0092758 0) (1.0261 0.00883458 0) (1.02643 0.00835988 0) (1.02674 0.00785058 0) (1.02704 0.00730614 0) (1.0273 0.00672661 0) (1.02754 0.00611276 0) (1.02774 0.00546608 0) (1.0279 0.00478878 0) (1.02801 0.00408389 0) (1.02807 0.00335531 0) (1.02808 0.00260739 0) (1.02804 0.00184532 0) (1.02793 0.00107513 0) (1.02775 0.000302759 0) (1.02751 -0.000465507 0) (1.02721 -0.00122132 0) (1.02683 -0.00195768 0) (1.02639 -0.0026673 0) (1.02589 -0.00334262 0) (1.02532 -0.00397631 0) (1.0247 -0.00456136 0) (1.02402 -0.00509112 0) (1.02328 -0.00555946 0) (1.02251 -0.00596086 0) (1.0217 -0.00629048 0) (1.02086 -0.00654428 0) (1.01999 -0.00671901 0) (1.01911 -0.00681232 0) (1.01822 -0.00682273 0) (1.01733 -0.00674963 0) (1.01644 -0.00659336 0) (1.01558 -0.00635507 0) (1.01474 -0.00603678 0) (1.01393 -0.00564129 0) (1.01316 -0.0051721 0) (1.01243 -0.00463356 0) (1.01176 -0.00403036 0) (1.01114 -0.00336814 0) (1.01058 -0.00265277 0) (1.01009 -0.00189041 0) (1.00967 -0.0010885 0) (1.00932 -0.000253103 0) (1.00905 0.00060863 0) (1.00885 0.00148805 0) (1.00873 0.00237827 0) (1.00869 0.00327233 0) (1.00872 0.00416232 0) (1.00882 0.00504181 0) (1.00899 0.00590307 0) (1.00924 0.00674117 0) (1.00954 0.007548 0) (1.00991 0.00832143 0) (1.01034 0.00905191 0) (1.00867 0.0139688 0) (1.00895 0.0140919 0) (1.00924 0.0142096 0) (1.00955 0.014321 0) (1.00986 0.0144253 0) (1.01018 0.0145216 0) (1.01051 0.0146091 0) (1.01086 0.0146869 0) (1.01121 0.0147542 0) (1.01157 0.0148103 0) (1.01193 0.0148545 0) (1.01231 0.0148861 0) (1.01269 0.0149045 0) (1.01307 0.0149095 0) (1.01346 0.0149005 0) (1.01385 0.0148774 0) (1.01425 0.0148402 0) (1.01465 0.014789 0) (1.01504 0.0147238 0) (1.01544 0.0146451 0) (1.01583 0.0145534 0) (1.01623 0.0144491 0) (1.01662 0.0143331 0) (1.017 0.014206 0) (1.01738 0.0140687 0) (1.01776 0.013922 0) (1.01813 0.0137667 0) (1.01849 0.0136036 0) (1.01885 0.0134334 0) (1.01921 0.0132568 0) (1.01956 0.0130741 0) (1.01991 0.0128856 0) (1.02025 0.0126914 0) (1.02059 0.0124912 0) (1.02093 0.0122847 0) (1.02127 0.0120711 0) (1.02161 0.0118495 0) (1.02195 0.0116185 0) (1.02229 0.0113768 0) (1.02263 0.0111226 0) (1.02296 0.0108541 0) (1.0233 0.0105693 0) (1.02364 0.0102661 0) (1.02397 0.00994235 0) (1.0243 0.00959608 0) (1.02463 0.00922535 0) (1.02494 0.00882844 0) (1.02525 0.00840392 0) (1.02554 0.0079507 0) (1.02581 0.0074681 0) (1.02606 0.00695592 0) (1.02629 0.00641451 0) (1.02648 0.00584478 0) (1.02664 0.00524825 0) (1.02677 0.00462708 0) (1.02685 0.00398407 0) (1.02689 0.00332256 0) (1.02688 0.00264664 0) (1.02682 0.00196065 0) (1.02671 0.00126972 0) (1.02654 0.000579706 0) (1.02631 -0.000103871 0) (1.02603 -0.000775053 0) (1.02568 -0.00142706 0) (1.02528 -0.00205378 0) (1.02483 -0.00264891 0) (1.02432 -0.00320619 0) (1.02376 -0.00371966 0) (1.02315 -0.0041837 0) (1.0225 -0.00459311 0) (1.02181 -0.00494322 0) (1.02109 -0.00522994 0) (1.02035 -0.00544982 0) (1.01958 -0.00560013 0) (1.0188 -0.00567885 0) (1.01802 -0.00568474 0) (1.01723 -0.00561728 0) (1.01646 -0.00547675 0) (1.01569 -0.00526414 0) (1.01495 -0.00498118 0) (1.01424 -0.00463029 0) (1.01355 -0.00421446 0) (1.01291 -0.00373737 0) (1.01232 -0.00320324 0) (1.01177 -0.00261655 0) (1.01128 -0.00198261 0) (1.01084 -0.00130686 0) (1.01047 -0.00059512 0) (1.01016 0.000146865 0) (1.00991 0.000912236 0) (1.00973 0.00169445 0) (1.00962 0.00248749 0) (1.00958 0.00328494 0) (1.0096 0.00407992 0) (1.00969 0.00486683 0) (1.00984 0.00563885 0) (1.01005 0.00639157 0) (1.01032 0.00711778 0) (1.01064 0.00781547 0) (1.01101 0.00847615 0) (1.00866 0.0135862 0) (1.00893 0.0136951 0) (1.00922 0.0137987 0) (1.00951 0.0138963 0) (1.00981 0.013987 0) (1.01012 0.0140701 0) (1.01044 0.0141449 0) (1.01077 0.0142106 0) (1.01111 0.0142666 0) (1.01145 0.0143121 0) (1.0118 0.0143465 0) (1.01215 0.0143694 0) (1.01252 0.0143802 0) (1.01288 0.0143787 0) (1.01325 0.0143645 0) (1.01363 0.0143375 0) (1.014 0.0142978 0) (1.01438 0.0142452 0) (1.01476 0.0141801 0) (1.01513 0.0141028 0) (1.01551 0.0140135 0) (1.01588 0.0139129 0) (1.01626 0.0138014 0) (1.01662 0.0136796 0) (1.01699 0.0135482 0) (1.01735 0.0134078 0) (1.01771 0.0132591 0) (1.01806 0.0131026 0) (1.01841 0.0129388 0) (1.01875 0.0127682 0) (1.01909 0.012591 0) (1.01942 0.0124073 0) (1.01976 0.0122172 0) (1.02009 0.0120204 0) (1.02041 0.0118165 0) (1.02074 0.0116049 0) (1.02106 0.0113847 0) (1.02139 0.0111549 0) (1.02171 0.0109142 0) (1.02203 0.0106614 0) (1.02234 0.0103949 0) (1.02266 0.0101131 0) (1.02297 0.00981436 0) (1.02327 0.00949708 0) (1.02357 0.00915967 0) (1.02386 0.00880071 0) (1.02415 0.00841896 0) (1.02441 0.00801339 0) (1.02467 0.00758332 0) (1.0249 0.0071284 0) (1.02512 0.0066487 0) (1.02531 0.00614475 0) (1.02547 0.00561758 0) (1.0256 0.00506868 0) (1.0257 0.00450012 0) (1.02576 0.00391443 0) (1.02578 0.00331469 0) (1.02576 0.00270444 0) (1.02569 0.00208772 0) (1.02558 0.00146905 0) (1.02542 0.000853317 0) (1.0252 0.000245203 0) (1.02494 -0.00035069 0) (1.02463 -0.000927955 0) (1.02426 -0.00148124 0) (1.02385 -0.00200545 0) (1.02339 -0.00249528 0) (1.0229 -0.00294565 0) (1.02236 -0.00335184 0) (1.02178 -0.00370945 0) (1.02117 -0.00401455 0) (1.02053 -0.00426368 0) (1.01988 -0.00445394 0) (1.0192 -0.00458303 0) (1.01852 -0.00464925 0) (1.01783 -0.00465156 0) (1.01714 -0.00458954 0) (1.01645 -0.00446343 0) (1.01578 -0.00427412 0) (1.01513 -0.00402304 0) (1.0145 -0.00371228 0) (1.0139 -0.00334445 0) (1.01334 -0.00292261 0) (1.01281 -0.00245049 0) (1.01233 -0.00193189 0) (1.01189 -0.00137137 0) (1.01151 -0.000774008 0) (1.01118 -0.000143845 0) (1.0109 0.000514107 0) (1.01068 0.00119263 0) (1.01052 0.00188715 0) (1.01042 0.00259208 0) (1.01038 0.0033018 0) (1.0104 0.00401034 0) (1.01047 0.00471278 0) (1.0106 0.00540306 0) (1.01078 0.00607728 0) (1.01102 0.00672902 0) (1.0113 0.0073564 0) (1.01163 0.00795188 0) (1.00864 0.0132021 0) (1.00891 0.0132979 0) (1.00918 0.0133885 0) (1.00947 0.0134732 0) (1.00976 0.0135514 0) (1.01006 0.0136224 0) (1.01036 0.0136856 0) (1.01068 0.0137402 0) (1.011 0.0137857 0) (1.01133 0.0138214 0) (1.01166 0.013847 0) (1.012 0.0138619 0) (1.01235 0.0138658 0) (1.0127 0.0138583 0) (1.01305 0.0138394 0) (1.0134 0.0138087 0) (1.01376 0.0137664 0) (1.01412 0.0137125 0) (1.01448 0.0136472 0) (1.01484 0.0135708 0) (1.01519 0.0134835 0) (1.01555 0.0133857 0) (1.0159 0.0132779 0) (1.01626 0.0131606 0) (1.01661 0.0130342 0) (1.01695 0.0128993 0) (1.01729 0.0127562 0) (1.01763 0.0126055 0) (1.01797 0.0124475 0) (1.0183 0.0122825 0) (1.01862 0.0121106 0) (1.01895 0.011932 0) (1.01927 0.0117464 0) (1.01958 0.0115538 0) (1.0199 0.0113536 0) (1.02021 0.0111454 0) (1.02052 0.0109285 0) (1.02082 0.0107019 0) (1.02112 0.0104648 0) (1.02142 0.0102159 0) (1.02172 0.0099542 0) (1.02201 0.0096783 0) (1.0223 0.00938697 0) (1.02258 0.00907897 0) (1.02285 0.00875313 0) (1.02311 0.00840837 0) (1.02336 0.00804383 0) (1.0236 0.00765883 0) (1.02382 0.00725299 0) (1.02403 0.0068262 0) (1.02421 0.00637877 0) (1.02437 0.00591133 0) (1.02451 0.00542494 0) (1.02462 0.00492112 0) (1.02469 0.00440173 0) (1.02474 0.00386916 0) (1.02474 0.00332613 0) (1.02471 0.00277588 0) (1.02464 0.00222205 0) (1.02453 0.00166808 0) (1.02437 0.00111835 0) (1.02417 0.00057744 0) (1.02393 4.93971e-05 0) (1.02365 -0.000461418 0) (1.02332 -0.000949738 0) (1.02295 -0.00141121 0) (1.02255 -0.00184154 0) (1.0221 -0.0022364 0) (1.02162 -0.00259176 0) (1.02111 -0.00290396 0) (1.02058 -0.00316967 0) (1.02002 -0.00338599 0) (1.01944 -0.00355051 0) (1.01885 -0.00366128 0) (1.01824 -0.0037169 0) (1.01764 -0.0037165 0) (1.01703 -0.00365976 0) (1.01643 -0.0035469 0) (1.01585 -0.00337868 0) (1.01528 -0.00315637 0) (1.01472 -0.00288171 0) (1.0142 -0.00255699 0) (1.0137 -0.00218482 0) (1.01324 -0.00176824 0) (1.01282 -0.0013108 0) (1.01244 -0.000816291 0) (1.0121 -0.000288863 0) (1.01181 0.000268483 0) (1.01156 0.000849824 0) (1.01137 0.00145026 0) (1.01123 0.00206556 0) (1.01114 0.00269066 0) (1.0111 0.00332077 0) (1.01111 0.00395073 0) (1.01117 0.00457617 0) (1.01129 0.00519174 0) (1.01145 0.00579395 0) (1.01165 0.00637712 0) (1.0119 0.00693946 0) (1.01219 0.00747427 0) (1.00862 0.0128172 0) (1.00888 0.0129007 0) (1.00915 0.0129792 0) (1.00942 0.013052 0) (1.0097 0.0131187 0) (1.00999 0.0131786 0) (1.01028 0.013231 0) (1.01058 0.0132754 0) (1.01089 0.0133114 0) (1.01121 0.0133383 0) (1.01153 0.0133558 0) (1.01185 0.0133634 0) (1.01218 0.0133609 0) (1.01251 0.013348 0) (1.01284 0.0133246 0) (1.01318 0.0132905 0) (1.01352 0.0132458 0) (1.01386 0.0131905 0) (1.0142 0.0131248 0) (1.01455 0.0130489 0) (1.01489 0.0129631 0) (1.01523 0.0128677 0) (1.01556 0.012763 0) (1.0159 0.0126495 0) (1.01623 0.0125274 0) (1.01656 0.0123972 0) (1.01689 0.0122593 0) (1.01721 0.0121139 0) (1.01753 0.0119613 0) (1.01785 0.0118017 0) (1.01816 0.0116351 0) (1.01847 0.0114616 0) (1.01878 0.0112811 0) (1.01908 0.0110934 0) (1.01938 0.010898 0) (1.01968 0.0106946 0) (1.01997 0.0104825 0) (1.02026 0.010261 0) (1.02055 0.0100294 0) (1.02083 0.00978673 0) (1.0211 0.00953207 0) (1.02137 0.00926445 0) (1.02163 0.00898288 0) (1.02189 0.00868643 0) (1.02214 0.00837422 0) (1.02237 0.0080455 0) (1.0226 0.00769966 0) (1.02281 0.00733632 0) (1.02301 0.00695531 0) (1.02318 0.00655674 0) (1.02334 0.006141 0) (1.02348 0.00570885 0) (1.02359 0.00526134 0) (1.02368 0.00479991 0) (1.02374 0.00432637 0) (1.02377 0.00384285 0) (1.02377 0.00335187 0) (1.02373 0.00285619 0) (1.02366 0.00235881 0) (1.02355 0.00186322 0) (1.02341 0.00137297 0) (1.02322 0.00089189 0) (1.023 0.000423902 0) (1.02275 -2.76366e-05 0) (1.02245 -0.000458687 0) (1.02212 -0.000864968 0) (1.02176 -0.0012429 0) (1.02137 -0.00158898 0) (1.02095 -0.00189982 0) (1.0205 -0.00217229 0) (1.02003 -0.00240364 0) (1.01954 -0.00259145 0) (1.01903 -0.00273368 0) (1.01851 -0.00282874 0) (1.01798 -0.00287546 0) (1.01746 -0.00287314 0) (1.01693 -0.00282151 0) (1.0164 -0.00272084 0) (1.01589 -0.00257175 0) (1.01539 -0.00237534 0) (1.01491 -0.00213314 0) (1.01445 -0.00184708 0) (1.01402 -0.00151941 0) (1.01362 -0.00115264 0) (1.01325 -0.000750023 0) (1.01291 -0.000314698 0) (1.01262 0.000151013 0) (1.01236 0.000642168 0) (1.01215 0.0011545 0) (1.01198 0.00168468 0) (1.01185 0.00222855 0) (1.01177 0.0027816 0) (1.01174 0.00333977 0) (1.01175 0.00389852 0) (1.0118 0.00445399 0) (1.0119 0.00500146 0) (1.01204 0.00553783 0) (1.01222 0.00605803 0) (1.01244 0.00656041 0) (1.0127 0.00703899 0) (1.00859 0.0124317 0) (1.00885 0.0125038 0) (1.0091 0.0125711 0) (1.00937 0.012633 0) (1.00964 0.0126891 0) (1.00991 0.0127387 0) (1.0102 0.0127813 0) (1.01049 0.0128165 0) (1.01078 0.0128437 0) (1.01108 0.0128625 0) (1.01139 0.0128726 0) (1.0117 0.0128736 0) (1.01201 0.0128653 0) (1.01232 0.0128474 0) (1.01264 0.0128198 0) (1.01296 0.0127826 0) (1.01329 0.0127355 0) (1.01361 0.0126789 0) (1.01394 0.0126127 0) (1.01426 0.0125371 0) (1.01458 0.0124525 0) (1.01491 0.0123591 0) (1.01523 0.012257 0) (1.01555 0.0121468 0) (1.01587 0.0120286 0) (1.01618 0.0119027 0) (1.0165 0.0117694 0) (1.01681 0.011629 0) (1.01711 0.0114816 0) (1.01741 0.0113273 0) (1.01771 0.0111661 0) (1.01801 0.0109981 0) (1.0183 0.0108232 0) (1.01859 0.010641 0) (1.01888 0.0104513 0) (1.01916 0.0102538 0) (1.01943 0.0100479 0) (1.01971 0.00983309 0) (1.01997 0.00960868 0) (1.02023 0.009374 0) (1.02049 0.00912829 0) (1.02074 0.00887082 0) (1.02098 0.00860084 0) (1.02122 0.00831765 0) (1.02144 0.00802062 0) (1.02165 0.00770923 0) (1.02186 0.0073831 0) (1.02205 0.00704205 0) (1.02222 0.00668606 0) (1.02237 0.00631538 0) (1.02251 0.0059305 0) (1.02263 0.00553221 0) (1.02273 0.00512158 0) (1.0228 0.00469997 0) (1.02284 0.00426903 0) (1.02286 0.0038307 0) (1.02285 0.00338723 0) (1.02281 0.0029411 0) (1.02274 0.00249507 0) (1.02264 0.00205208 0) (1.02251 0.00161515 0) (1.02234 0.00118743 0) (1.02214 0.000772354 0) (1.02191 0.000373265 0) (1.02165 -6.95003e-06 0) (1.02136 -0.000364851 0) (1.02104 -0.000696998 0) (1.0207 -0.00100036 0) (1.02032 -0.00127229 0) (1.01993 -0.00151019 0) (1.01952 -0.00171171 0) (1.01909 -0.00187483 0) (1.01865 -0.00199789 0) (1.01819 -0.00207956 0) (1.01774 -0.0021189 0) (1.01728 -0.00211536 0) (1.01682 -0.00206873 0) (1.01636 -0.00197923 0) (1.01592 -0.00184746 0) (1.01548 -0.00167444 0) (1.01506 -0.0014614 0) (1.01467 -0.00120993 0) (1.01429 -0.000922047 0) (1.01394 -0.000600285 0) (1.01362 -0.000246634 0) (1.01333 0.000136692 0) (1.01307 0.00054616 0) (1.01285 0.000977725 0) (1.01266 0.00142883 0) (1.01252 0.00189601 0) (1.01241 0.0023756 0) (1.01234 0.00286381 0) (1.01231 0.0033571 0) (1.01232 0.00385146 0) (1.01236 0.00434352 0) (1.01245 0.0048291 0) (1.01257 0.00530543 0) (1.01273 0.00576802 0) (1.01293 0.00621531 0) (1.01316 0.00664199 0) (1.00856 0.0120461 0) (1.00881 0.0121076 0) (1.00906 0.0121646 0) (1.00931 0.0122164 0) (1.00957 0.0122627 0) (1.00984 0.0123029 0) (1.01011 0.0123365 0) (1.01039 0.0123632 0) (1.01067 0.0123825 0) (1.01096 0.0123939 0) (1.01125 0.0123973 0) (1.01154 0.0123923 0) (1.01184 0.0123786 0) (1.01214 0.0123562 0) (1.01244 0.0123248 0) (1.01275 0.0122846 0) (1.01306 0.0122354 0) (1.01336 0.0121774 0) (1.01367 0.0121107 0) (1.01398 0.0120354 0) (1.01429 0.0119518 0) (1.0146 0.01186 0) (1.0149 0.0117604 0) (1.01521 0.0116531 0) (1.01551 0.0115384 0) (1.01581 0.0114165 0) (1.01611 0.0112877 0) (1.01641 0.011152 0) (1.0167 0.0110096 0) (1.01699 0.0108607 0) (1.01727 0.0107051 0) (1.01755 0.0105429 0) (1.01783 0.0103739 0) (1.01811 0.010198 0) (1.01838 0.0100149 0) (1.01864 0.00982426 0) (1.0189 0.0096257 0) (1.01916 0.00941876 0) (1.01941 0.00920293 0) (1.01965 0.00897766 0) (1.01989 0.00874237 0) (1.02012 0.0084965 0) (1.02034 0.00823949 0) (1.02056 0.00797082 0) (1.02076 0.00769006 0) (1.02096 0.00739686 0) (1.02114 0.00709102 0) (1.02131 0.00677247 0) (1.02146 0.00644134 0) (1.0216 0.00609796 0) (1.02172 0.00574289 0) (1.02182 0.00537691 0) (1.0219 0.00500107 0) (1.02196 0.00461662 0) (1.022 0.00422511 0) (1.02201 0.00382835 0) (1.022 0.0034283 0) (1.02196 0.00302717 0) (1.02189 0.00262733 0) (1.0218 0.0022313 0) (1.02168 0.00184175 0) (1.02153 0.00146152 0) (1.02135 0.00109344 0) (1.02115 0.000740329 0) (1.02091 0.000405021 0) (1.02066 9.00534e-05 0) (1.02038 -0.000201835 0) (1.02007 -0.000468035 0) (1.01975 -0.000706065 0) (1.01941 -0.000913832 0) (1.01905 -0.00108946 0) (1.01867 -0.00123127 0) (1.01829 -0.00133788 0) (1.0179 -0.0014082 0) (1.0175 -0.00144147 0) (1.0171 -0.00143726 0) (1.0167 -0.00139549 0) (1.01631 -0.00131638 0) (1.01592 -0.00120034 0) (1.01555 -0.00104817 0) (1.01519 -0.000861159 0) (1.01484 -0.000640904 0) (1.01452 -0.000388793 0) (1.01421 -0.000106408 0) (1.01394 0.000204137 0) (1.01369 0.00054037 0) (1.01346 0.000898967 0) (1.01327 0.00127779 0) (1.01311 0.00167407 0) (1.01298 0.00208468 0) (1.01289 0.0025066 0) (1.01283 0.00293656 0) (1.0128 0.00337142 0) (1.01281 0.00380769 0) (1.01286 0.00424241 0) (1.01293 0.00467188 0) (1.01304 0.00509363 0) (1.01319 0.00550366 0) (1.01336 0.00590053 0) (1.01356 0.00627951 0) (1.00853 0.0116606 0) (1.00876 0.0117124 0) (1.009 0.0117598 0) (1.00925 0.0118024 0) (1.0095 0.0118397 0) (1.00976 0.0118713 0) (1.01002 0.0118968 0) (1.01028 0.0119157 0) (1.01055 0.0119277 0) (1.01083 0.0119325 0) (1.01111 0.0119297 0) (1.01139 0.0119192 0) (1.01167 0.0119007 0) (1.01196 0.0118741 0) (1.01225 0.0118393 0) (1.01254 0.0117963 0) (1.01283 0.0117452 0) (1.01312 0.011686 0) (1.01342 0.0116187 0) (1.01371 0.0115437 0) (1.014 0.0114609 0) (1.01429 0.0113707 0) (1.01459 0.0112733 0) (1.01488 0.0111688 0) (1.01516 0.0110574 0) (1.01545 0.0109393 0) (1.01573 0.0108148 0) (1.01601 0.0106838 0) (1.01629 0.0105465 0) (1.01657 0.010403 0) (1.01684 0.0102532 0) (1.01711 0.0100971 0) (1.01737 0.00993455 0) (1.01763 0.00976546 0) (1.01788 0.00958958 0) (1.01813 0.00940665 0) (1.01838 0.00921635 0) (1.01862 0.0090183 0) (1.01885 0.00881212 0) (1.01908 0.00859736 0) (1.0193 0.0083736 0) (1.01952 0.00814039 0) (1.01972 0.00789733 0) (1.01992 0.00764404 0) (1.02011 0.00738023 0) (1.02028 0.00710569 0) (1.02045 0.00682032 0) (1.0206 0.00652418 0) (1.02073 0.00621746 0) (1.02086 0.00590056 0) (1.02096 0.00557404 0) (1.02105 0.00523868 0) (1.02112 0.00489549 0) (1.02117 0.00454566 0) (1.0212 0.0041906 0) (1.02121 0.00383189 0) (1.0212 0.00347132 0) (1.02116 0.00311084 0) (1.0211 0.00275255 0) (1.02102 0.00239868 0) (1.02091 0.00205158 0) (1.02077 0.00171363 0) (1.02062 0.00138718 0) (1.02044 0.00107466 0) (1.02023 0.000778536 0) (1.02001 0.000501178 0) (1.01976 0.000244695 0) (1.0195 1.10996e-05 0) (1.01922 -0.000197496 0) (1.01892 -0.000379258 0) (1.01861 -0.000532543 0) (1.01828 -0.000656024 0) (1.01795 -0.000748601 0) (1.01761 -0.000809401 0) (1.01727 -0.000837793 0) (1.01693 -0.000833398 0) (1.01658 -0.000796156 0) (1.01624 -0.000726496 0) (1.01591 -0.000624842 0) (1.01559 -0.000491822 0) (1.01528 -0.000328324 0) (1.01498 -0.000135356 0) (1.0147 8.55747e-05 0) (1.01444 0.000332966 0) (1.01421 0.000604551 0) (1.01399 0.000898012 0) (1.0138 0.0012118 0) (1.01363 0.00154355 0) (1.0135 0.00189076 0) (1.01339 0.00225086 0) (1.01331 0.00262121 0) (1.01326 0.00299896 0) (1.01324 0.00338139 0) (1.01325 0.00376544 0) (1.01329 0.00414849 0) (1.01336 0.00452727 0) (1.01346 0.00489959 0) (1.01358 0.00526186 0) (1.01374 0.00561278 0) (1.01392 0.00594811 0) (1.00849 0.0112756 0) (1.00872 0.0113184 0) (1.00895 0.0113571 0) (1.00919 0.0113912 0) (1.00943 0.0114203 0) (1.00967 0.011444 0) (1.00992 0.011462 0) (1.01018 0.0114738 0) (1.01044 0.0114793 0) (1.0107 0.011478 0) (1.01096 0.0114697 0) (1.01123 0.0114542 0) (1.0115 0.0114313 0) (1.01178 0.011401 0) (1.01205 0.0113631 0) (1.01233 0.0113177 0) (1.01261 0.0112648 0) (1.01288 0.0112045 0) (1.01316 0.0111368 0) (1.01344 0.011062 0) (1.01372 0.0109801 0) (1.014 0.0108914 0) (1.01428 0.0107961 0) (1.01455 0.0106943 0) (1.01482 0.0105861 0) (1.0151 0.0104718 0) (1.01536 0.0103515 0) (1.01563 0.0102252 0) (1.0159 0.010093 0) (1.01616 0.00995505 0) (1.01641 0.00981122 0) (1.01667 0.00966152 0) (1.01692 0.00950584 0) (1.01716 0.00934405 0) (1.0174 0.00917597 0) (1.01764 0.0090014 0) (1.01787 0.00882008 0) (1.01809 0.00863171 0) (1.01831 0.00843597 0) (1.01853 0.00823255 0) (1.01873 0.0080211 0) (1.01893 0.00780129 0) (1.01912 0.00757281 0) (1.0193 0.00733541 0) (1.01947 0.00708889 0) (1.01963 0.00683314 0) (1.01978 0.00656815 0) (1.01992 0.00629403 0) (1.02004 0.00601103 0) (1.02015 0.00571957 0) (1.02025 0.00542024 0) (1.02032 0.00511378 0) (1.02039 0.00480113 0) (1.02043 0.00448339 0) (1.02046 0.00416184 0) (1.02046 0.00383792 0) (1.02045 0.00351325 0) (1.02042 0.00318956 0) (1.02036 0.0028687 0) (1.02029 0.00255261 0) (1.02019 0.00224328 0) (1.02007 0.00194275 0) (1.01994 0.00165311 0) (1.01978 0.00137645 0) (1.0196 0.00111481 0) (1.01941 0.000870116 0) (1.0192 0.000644311 0) (1.01897 0.000439173 0) (1.01872 0.000256223 0) (1.01847 9.70318e-05 0) (1.0182 -3.70532e-05 0) (1.01792 -0.000144908 0) (1.01763 -0.000225599 0) (1.01734 -0.000278421 0) (1.01705 -0.000302927 0) (1.01675 -0.000298917 0) (1.01646 -0.000266365 0) (1.01617 -0.000205255 0) (1.01588 -0.000116153 0) (1.01561 1.87989e-07 0) (1.01534 0.000143106 0) (1.01509 0.000311759 0) (1.01485 0.00050458 0) (1.01463 0.000719895 0) (1.01443 0.000956467 0) (1.01425 0.00121272 0) (1.01408 0.00148675 0) (1.01394 0.00177658 0) (1.01383 0.00208016 0) (1.01374 0.00239526 0) (1.01367 0.00271959 0) (1.01363 0.00305069 0) (1.01362 0.00338618 0) (1.01363 0.00372338 0) (1.01367 0.00405999 0) (1.01373 0.00439311 0) (1.01382 0.00472078 0) (1.01393 0.00503982 0) (1.01407 0.00534901 0) (1.01423 0.00564458 0) (1.00844 0.0108914 0) (1.00866 0.010926 0) (1.00889 0.0109566 0) (1.00912 0.0109829 0) (1.00935 0.0110045 0) (1.00959 0.011021 0) (1.00983 0.0110322 0) (1.01007 0.0110377 0) (1.01032 0.0110372 0) (1.01057 0.0110304 0) (1.01082 0.0110171 0) (1.01108 0.0109971 0) (1.01134 0.0109703 0) (1.0116 0.0109367 0) (1.01186 0.0108961 0) (1.01212 0.0108485 0) (1.01239 0.0107941 0) (1.01265 0.0107328 0) (1.01292 0.0106649 0) (1.01318 0.0105904 0) (1.01344 0.0105094 0) (1.01371 0.0104223 0) (1.01397 0.010329 0) (1.01423 0.0102299 0) (1.01449 0.0101249 0) (1.01475 0.0100144 0) (1.01501 0.00989826 0) (1.01526 0.00977672 0) (1.01551 0.00964979 0) (1.01575 0.00951751 0) (1.016 0.00937986 0) (1.01624 0.00923682 0) (1.01647 0.0090883 0) (1.01671 0.0089342 0) (1.01693 0.00877438 0) (1.01715 0.00860867 0) (1.01737 0.00843686 0) (1.01758 0.00825873 0) (1.01779 0.00807402 0) (1.01799 0.00788247 0) (1.01818 0.00768383 0) (1.01836 0.00747785 0) (1.01854 0.0072643 0) (1.0187 0.00704301 0) (1.01886 0.00681383 0) (1.01901 0.00657674 0) (1.01914 0.00633177 0) (1.01927 0.00607908 0) (1.01938 0.00581895 0) (1.01948 0.00555179 0) (1.01956 0.00527818 0) (1.01964 0.00499882 0) (1.01969 0.00471458 0) (1.01973 0.00442648 0) (1.01975 0.00413571 0) (1.01976 0.00384356 0) (1.01975 0.00355147 0) (1.01972 0.00326096 0) (1.01968 0.00297366 0) (1.01961 0.00269125 0) (1.01953 0.00241549 0) (1.01943 0.00214816 0) (1.01931 0.00189105 0) (1.01917 0.00164593 0) (1.01902 0.00141451 0) (1.01885 0.00119848 0) (1.01867 0.0009994 0) (1.01847 0.00081881 0) (1.01826 0.000658111 0) (1.01804 0.000518513 0) (1.01781 0.000401033 0) (1.01758 0.000306631 0) (1.01733 0.000236084 0) (1.01709 0.000189942 0) (1.01683 0.000168548 0) (1.01658 0.000172049 0) (1.01633 0.000200432 0) (1.01609 0.00025371 0) (1.01585 0.000331432 0) (1.01561 0.000432924 0) (1.01539 0.000557338 0) (1.01517 0.0007036 0) (1.01497 0.000870893 0) (1.01478 0.00105819 0) (1.01461 0.00126413 0) (1.01446 0.00148721 0) (1.01432 0.00172589 0) (1.0142 0.00197853 0) (1.01411 0.00224335 0) (1.01403 0.00251842 0) (1.01398 0.00280178 0) (1.01395 0.0030913 0) (1.01394 0.0033849 0) (1.01395 0.00368022 0) (1.01399 0.00397525 0) (1.01405 0.0042674 0) (1.01413 0.00455493 0) (1.01423 0.00483498 0) (1.01435 0.00510645 0) (1.01449 0.00536597 0) (1.0084 0.0105082 0) (1.00861 0.0105352 0) (1.00883 0.0105584 0) (1.00905 0.0105776 0) (1.00927 0.0105924 0) (1.0095 0.0106025 0) (1.00973 0.0106075 0) (1.00996 0.0106072 0) (1.0102 0.0106013 0) (1.01044 0.0105896 0) (1.01068 0.0105719 0) (1.01093 0.0105479 0) (1.01117 0.0105177 0) (1.01142 0.010481 0) (1.01167 0.010438 0) (1.01192 0.0103886 0) (1.01217 0.0103329 0) (1.01242 0.010271 0) (1.01267 0.0102029 0) (1.01292 0.0101288 0) (1.01317 0.0100489 0) (1.01343 0.00996337 0) (1.01367 0.00987228 0) (1.01392 0.00977582 0) (1.01417 0.00967413 0) (1.01441 0.00956734 0) (1.01465 0.00945553 0) (1.01489 0.00933881 0) (1.01513 0.00921721 0) (1.01536 0.00909076 0) (1.01559 0.00895947 0) (1.01582 0.0088233 0) (1.01604 0.00868221 0) (1.01626 0.0085361 0) (1.01648 0.00838486 0) (1.01668 0.00822836 0) (1.01689 0.00806644 0) (1.01709 0.00789891 0) (1.01728 0.00772557 0) (1.01746 0.00754622 0) (1.01764 0.00736066 0) (1.01781 0.0071687 0) (1.01797 0.00697017 0) (1.01813 0.00676494 0) (1.01827 0.00655293 0) (1.01841 0.00633414 0) (1.01853 0.00610864 0) (1.01865 0.0058766 0) (1.01875 0.00563832 0) (1.01884 0.00539419 0) (1.01892 0.00514477 0) (1.01899 0.00489071 0) (1.01904 0.00463284 0) (1.01908 0.00437208 0) (1.0191 0.00410949 0) (1.01911 0.00384624 0) (1.0191 0.00358362 0) (1.01908 0.00332296 0) (1.01904 0.00306572 0) (1.01898 0.00281339 0) (1.01891 0.00256751 0) (1.01883 0.00232959 0) (1.01873 0.00210118 0) (1.01861 0.00188379 0) (1.01848 0.0016789 0) (1.01834 0.00148795 0) (1.01818 0.00131227 0) (1.01802 0.00115312 0) (1.01784 0.00101165 0) (1.01765 0.000888845 0) (1.01746 0.000785649 0) (1.01726 0.000702797 0) (1.01705 0.000640861 0) (1.01684 0.000600277 0) (1.01663 0.000581345 0) (1.01642 0.000584216 0) (1.0162 0.000608854 0) (1.016 0.000654839 0) (1.01579 0.000721837 0) (1.0156 0.00080941 0) (1.01541 0.000916949 0) (1.01523 0.00104375 0) (1.01506 0.00118895 0) (1.0149 0.00135147 0) (1.01476 0.00153018 0) (1.01463 0.00172391 0) (1.01451 0.00193135 0) (1.01442 0.00215107 0) (1.01434 0.00238154 0) (1.01428 0.00262112 0) (1.01424 0.00286813 0) (1.01421 0.0031207 0) (1.01421 0.00337702 0) (1.01423 0.00363503 0) (1.01426 0.00389293 0) (1.01432 0.00414844 0) (1.01439 0.00439999 0) (1.01448 0.00464502 0) (1.01459 0.00488255 0) (1.01472 0.00510953 0) (1.00835 0.0101263 0) (1.00855 0.0101463 0) (1.00876 0.0101629 0) (1.00897 0.0101756 0) (1.00919 0.0101842 0) (1.00941 0.0101884 0) (1.00963 0.0101879 0) (1.00985 0.0101824 0) (1.01008 0.0101717 0) (1.01031 0.0101556 0) (1.01054 0.0101339 0) (1.01077 0.0101064 0) (1.01101 0.0100731 0) (1.01124 0.010034 0) (1.01148 0.00998889 0) (1.01172 0.00993796 0) (1.01196 0.00988123 0) (1.0122 0.00981881 0) (1.01243 0.0097508 0) (1.01267 0.00967736 0) (1.01291 0.00959862 0) (1.01315 0.00951476 0) (1.01339 0.00942591 0) (1.01362 0.00933224 0) (1.01385 0.00923387 0) (1.01408 0.00913092 0) (1.01431 0.0090235 0) (1.01454 0.00891167 0) (1.01476 0.0087955 0) (1.01498 0.00867501 0) (1.0152 0.00855021 0) (1.01542 0.00842109 0) (1.01563 0.0082876 0) (1.01583 0.00814968 0) (1.01603 0.00800725 0) (1.01623 0.00786018 0) (1.01642 0.00770835 0) (1.01661 0.00755162 0) (1.01678 0.00738982 0) (1.01696 0.0072228 0) (1.01712 0.00705038 0) (1.01728 0.00687243 0) (1.01743 0.00668879 0) (1.01758 0.00649939 0) (1.01771 0.00630416 0) (1.01784 0.00610313 0) (1.01795 0.00589639 0) (1.01806 0.0056841 0) (1.01816 0.00546656 0) (1.01824 0.00524416 0) (1.01831 0.00501738 0) (1.01837 0.00478686 0) (1.01842 0.00455334 0) (1.01846 0.00431766 0) (1.01848 0.00408078 0) (1.01849 0.00384375 0) (1.01849 0.00360773 0) (1.01847 0.00337394 0) (1.01844 0.00314363 0) (1.0184 0.00291813 0) (1.01834 0.00269875 0) (1.01827 0.00248684 0) (1.01819 0.00228372 0) (1.01809 0.00209071 0) (1.01798 0.00190907 0) (1.01786 0.00174 0) (1.01773 0.00158464 0) (1.01759 0.00144404 0) (1.01744 0.00131917 0) (1.01728 0.00121087 0) (1.01712 0.00111987 0) (1.01695 0.00104678 0) (1.01678 0.000992069 0) (1.0166 0.000956069 0) (1.01643 0.000938974 0) (1.01625 0.000940823 0) (1.01607 0.000961503 0) (1.0159 0.0010008 0) (1.01573 0.00105845 0) (1.01556 0.00113405 0) (1.01541 0.00122702 0) (1.01526 0.00133664 0) (1.01512 0.00146214 0) (1.01499 0.00160271 0) (1.01487 0.00175744 0) (1.01476 0.00192529 0) (1.01467 0.00210513 0) (1.01459 0.00229576 0) (1.01453 0.00249589 0) (1.01448 0.0027041 0) (1.01445 0.00291894 0) (1.01443 0.00313878 0) (1.01444 0.00336205 0) (1.01445 0.00358692 0) (1.01449 0.00381181 0) (1.01454 0.00403468 0) (1.01461 0.00425413 0) (1.01469 0.00446786 0) (1.01479 0.00467497 0) (1.01491 0.00487274 0) (1.0083 0.00974571 0) (1.00849 0.00975947 0) (1.0087 0.00976993 0) (1.0089 0.00977684 0) (1.00911 0.00977989 0) (1.00932 0.00977881 0) (1.00953 0.00977334 0) (1.00974 0.00976323 0) (1.00996 0.00974827 0) (1.01018 0.00972826 0) (1.0104 0.00970305 0) (1.01062 0.00967252 0) (1.01085 0.0096366 0) (1.01107 0.00959526 0) (1.0113 0.00954849 0) (1.01152 0.00949634 0) (1.01175 0.00943888 0) (1.01198 0.00937623 0) (1.0122 0.00930851 0) (1.01243 0.00923586 0) (1.01265 0.00915844 0) (1.01288 0.00907642 0) (1.0131 0.00898993 0) (1.01333 0.00889915 0) (1.01355 0.00880419 0) (1.01377 0.00870517 0) (1.01398 0.00860221 0) (1.0142 0.00849537 0) (1.01441 0.00838471 0) (1.01462 0.00827027 0) (1.01482 0.00815207 0) (1.01502 0.0080301 0) (1.01522 0.00790433 0) (1.01542 0.00777472 0) (1.0156 0.00764118 0) (1.01579 0.00750364 0) (1.01597 0.00736199 0) (1.01614 0.00721611 0) (1.01631 0.00706586 0) (1.01647 0.00691111 0) (1.01663 0.00675172 0) (1.01678 0.00658757 0) (1.01692 0.00641854 0) (1.01705 0.00624455 0) (1.01718 0.00606558 0) (1.0173 0.00588163 0) (1.0174 0.00569281 0) (1.0175 0.00549929 0) (1.01759 0.00530131 0) (1.01767 0.00509926 0) (1.01774 0.00489358 0) (1.0178 0.00468485 0) (1.01785 0.00447373 0) (1.01788 0.00426102 0) (1.01791 0.00404756 0) (1.01792 0.00383432 0) (1.01792 0.00362233 0) (1.01791 0.00341265 0) (1.01789 0.00320641 0) (1.01786 0.00300477 0) (1.01781 0.00280889 0) (1.01775 0.00261995 0) (1.01768 0.0024391 0) (1.01761 0.00226748 0) (1.01752 0.00210615 0) (1.01742 0.00195616 0) (1.01731 0.00181847 0) (1.01719 0.00169397 0) (1.01707 0.00158345 0) (1.01694 0.00148762 0) (1.01681 0.00140707 0) (1.01667 0.00134229 0) (1.01652 0.00129364 0) (1.01638 0.00126137 0) (1.01623 0.0012456 0) (1.01608 0.00124636 0) (1.01594 0.00126356 0) (1.01579 0.00129701 0) (1.01565 0.00134639 0) (1.01552 0.00141128 0) (1.01539 0.00149117 0) (1.01527 0.00158552 0) (1.01515 0.00169369 0) (1.01505 0.00181498 0) (1.01495 0.00194859 0) (1.01486 0.00209364 0) (1.01479 0.0022492 0) (1.01473 0.00241423 0) (1.01468 0.00258764 0) (1.01464 0.00276821 0) (1.01462 0.00295467 0) (1.01461 0.00314562 0) (1.01462 0.00333968 0) (1.01464 0.00353523 0) (1.01468 0.00373087 0) (1.01472 0.00392478 0) (1.01479 0.0041157 0) (1.01487 0.00430157 0) (1.01496 0.00448156 0) (1.01506 0.00465322 0) (1.00824 0.00936676 0) (1.00843 0.00937481 0) (1.00863 0.00937979 0) (1.00882 0.00938144 0) (1.00902 0.0093795 0) (1.00923 0.00937371 0) (1.00943 0.00936382 0) (1.00963 0.00934962 0) (1.00984 0.00933089 0) (1.01005 0.00930748 0) (1.01026 0.00927925 0) (1.01047 0.00924609 0) (1.01069 0.00920795 0) (1.0109 0.00916481 0) (1.01111 0.00911668 0) (1.01133 0.00906362 0) (1.01155 0.00900572 0) (1.01176 0.00894309 0) (1.01198 0.00887587 0) (1.01219 0.00880422 0) (1.01241 0.00872829 0) (1.01262 0.00864825 0) (1.01283 0.00856426 0) (1.01304 0.00847647 0) (1.01325 0.00838502 0) (1.01346 0.00829002 0) (1.01366 0.00819159 0) (1.01387 0.00808981 0) (1.01406 0.00798473 0) (1.01426 0.00787641 0) (1.01446 0.00776486 0) (1.01465 0.00765008 0) (1.01483 0.00753207 0) (1.01501 0.00741078 0) (1.01519 0.00728616 0) (1.01537 0.00715814 0) (1.01554 0.00702662 0) (1.0157 0.0068915 0) (1.01586 0.00675268 0) (1.01601 0.00661001 0) (1.01615 0.0064634 0) (1.01629 0.00631271 0) (1.01643 0.00615785 0) (1.01655 0.00599874 0) (1.01667 0.00583537 0) (1.01678 0.00566773 0) (1.01688 0.00549593 0) (1.01698 0.0053201 0) (1.01706 0.00514048 0) (1.01714 0.00495741 0) (1.0172 0.00477129 0) (1.01726 0.00458266 0) (1.01731 0.00439212 0) (1.01734 0.00420037 0) (1.01737 0.0040082 0) (1.01739 0.00381645 0) (1.01739 0.00362606 0) (1.01739 0.00343798 0) (1.01738 0.00325321 0) (1.01735 0.00307279 0) (1.01732 0.00289775 0) (1.01727 0.0027291 0) (1.01722 0.00256787 0) (1.01716 0.00241501 0) (1.01708 0.00227147 0) (1.01701 0.00213814 0) (1.01692 0.00201582 0) (1.01682 0.00190527 0) (1.01672 0.00180715 0) (1.01662 0.00172205 0) (1.01651 0.00165045 0) (1.01639 0.00159274 0) (1.01628 0.00154921 0) (1.01616 0.00152003 0) (1.01604 0.0015053 0) (1.01592 0.00150499 0) (1.0158 0.00151901 0) (1.01568 0.00154712 0) (1.01557 0.00158904 0) (1.01546 0.0016444 0) (1.01535 0.00171281 0) (1.01526 0.00179378 0) (1.01516 0.00188674 0) (1.01508 0.00199109 0) (1.015 0.00210616 0) (1.01494 0.00223121 0) (1.01488 0.00236546 0) (1.01483 0.00250803 0) (1.0148 0.00265798 0) (1.01477 0.00281427 0) (1.01476 0.0029758 0) (1.01476 0.00314134 0) (1.01477 0.00330968 0) (1.01479 0.00347939 0) (1.01483 0.00364922 0) (1.01487 0.00381755 0) (1.01493 0.00398323 0) (1.015 0.00414441 0) (1.01509 0.00430033 0) (1.01518 0.00444878 0) (1.00819 0.00898953 0) (1.00837 0.00899243 0) (1.00856 0.00899248 0) (1.00875 0.00898944 0) (1.00894 0.00898305 0) (1.00913 0.00897308 0) (1.00933 0.0089593 0) (1.00952 0.0089415 0) (1.00972 0.0089195 0) (1.00992 0.00889316 0) (1.01012 0.00886234 0) (1.01033 0.00882697 0) (1.01053 0.008787 0) (1.01073 0.00874242 0) (1.01094 0.00869327 0) (1.01114 0.00863961 0) (1.01135 0.00858154 0) (1.01155 0.00851919 0) (1.01176 0.00845271 0) (1.01196 0.00838225 0) (1.01216 0.00830799 0) (1.01237 0.00823009 0) (1.01257 0.00814872 0) (1.01277 0.00806404 0) (1.01296 0.00797618 0) (1.01316 0.00788529 0) (1.01335 0.00779145 0) (1.01354 0.00769477 0) (1.01373 0.00759531 0) (1.01392 0.00749312 0) (1.0141 0.00738822 0) (1.01428 0.00728064 0) (1.01446 0.00717035 0) (1.01463 0.00705734 0) (1.0148 0.00694156 0) (1.01496 0.00682294 0) (1.01512 0.00670141 0) (1.01527 0.00657687 0) (1.01542 0.00644922 0) (1.01557 0.00631834 0) (1.0157 0.00618411 0) (1.01583 0.00604644 0) (1.01596 0.00590521 0) (1.01608 0.00576035 0) (1.01619 0.00561183 0) (1.01629 0.00545966 0) (1.01639 0.00530388 0) (1.01648 0.00514465 0) (1.01656 0.00498216 0) (1.01663 0.00481671 0) (1.0167 0.00464867 0) (1.01675 0.00447851 0) (1.0168 0.00430678 0) (1.01684 0.00413412 0) (1.01687 0.00396124 0) (1.01689 0.00378889 0) (1.0169 0.00361792 0) (1.0169 0.00344919 0) (1.0169 0.00328359 0) (1.01688 0.00312204 0) (1.01686 0.00296544 0) (1.01683 0.00281471 0) (1.01679 0.00267072 0) (1.01674 0.00253432 0) (1.01668 0.00240633 0) (1.01662 0.00228751 0) (1.01655 0.00217855 0) (1.01648 0.00208009 0) (1.0164 0.0019927 0) (1.01632 0.00191684 0) (1.01623 0.00185293 0) (1.01614 0.00180126 0) (1.01604 0.00176206 0) (1.01595 0.00173546 0) (1.01585 0.0017215 0) (1.01576 0.00172012 0) (1.01566 0.0017312 0) (1.01557 0.00175454 0) (1.01548 0.00178989 0) (1.01539 0.00183692 0) (1.01531 0.00189526 0) (1.01523 0.00196448 0) (1.01516 0.00204411 0) (1.01509 0.00213364 0) (1.01503 0.0022325 0) (1.01498 0.00234008 0) (1.01494 0.00245571 0) (1.01491 0.00257863 0) (1.01488 0.00270807 0) (1.01487 0.00284311 0) (1.01486 0.00298281 0) (1.01486 0.00312609 0) (1.01488 0.00327188 0) (1.01491 0.00341891 0) (1.01494 0.00356607 0) (1.01499 0.0037119 0) (1.01504 0.00385535 0) (1.01511 0.00399477 0) (1.01519 0.00412945 0) (1.01527 0.00425738 0) (1.00813 0.00861411 0) (1.00831 0.00861242 0) (1.00849 0.00860807 0) (1.00867 0.00860086 0) (1.00886 0.00859054 0) (1.00904 0.00857689 0) (1.00923 0.0085597 0) (1.00942 0.00853879 0) (1.00961 0.00851398 0) (1.0098 0.00848514 0) (1.00999 0.00845216 0) (1.01018 0.00841498 0) (1.01038 0.00837355 0) (1.01057 0.00832789 0) (1.01076 0.00827804 0) (1.01096 0.00822408 0) (1.01115 0.00816612 0) (1.01135 0.0081043 0) (1.01154 0.00803877 0) (1.01174 0.0079697 0) (1.01193 0.00789727 0) (1.01212 0.00782166 0) (1.01231 0.00774304 0) (1.0125 0.00766157 0) (1.01269 0.0075774 0) (1.01287 0.00749066 0) (1.01306 0.00740146 0) (1.01324 0.00730991 0) (1.01342 0.00721606 0) (1.01359 0.00711998 0) (1.01376 0.0070217 0) (1.01393 0.00692124 0) (1.0141 0.00681859 0) (1.01426 0.00671373 0) (1.01442 0.00660663 0) (1.01457 0.00649723 0) (1.01472 0.00638545 0) (1.01487 0.0062712 0) (1.01501 0.00615439 0) (1.01515 0.00603489 0) (1.01528 0.0059126 0) (1.0154 0.0057874 0) (1.01552 0.00565918 0) (1.01563 0.00552786 0) (1.01574 0.0053934 0) (1.01583 0.00525577 0) (1.01593 0.00511503 0) (1.01601 0.00497128 0) (1.01609 0.0048247 0) (1.01616 0.00467554 0) (1.01623 0.00452414 0) (1.01628 0.00437091 0) (1.01633 0.00421635 0) (1.01637 0.00406103 0) (1.0164 0.00390559 0) (1.01643 0.00375073 0) (1.01644 0.00359719 0) (1.01645 0.00344576 0) (1.01645 0.00329723 0) (1.01645 0.00315243 0) (1.01643 0.00301216 0) (1.01641 0.00287723 0) (1.01639 0.00274842 0) (1.01635 0.00262647 0) (1.01631 0.00251209 0) (1.01627 0.00240593 0) (1.01621 0.00230861 0) (1.01616 0.00222066 0) (1.0161 0.00214255 0) (1.01603 0.00207468 0) (1.01596 0.00201738 0) (1.01589 0.00197089 0) (1.01582 0.00193537 0) (1.01574 0.00191091 0) (1.01567 0.00189751 0) (1.01559 0.0018951 0) (1.01552 0.00190357 0) (1.01545 0.00192272 0) (1.01538 0.0019523 0) (1.01531 0.00199202 0) (1.01525 0.00204155 0) (1.01519 0.00210052 0) (1.01513 0.00216854 0) (1.01508 0.00224515 0) (1.01504 0.0023299 0) (1.015 0.00242226 0) (1.01498 0.00252167 0) (1.01495 0.00262749 0) (1.01494 0.00273905 0) (1.01493 0.00285558 0) (1.01493 0.00297624 0) (1.01494 0.0031001 0) (1.01496 0.0032262 0) (1.01499 0.00335342 0) (1.01503 0.00348076 0) (1.01507 0.00360688 0) (1.01513 0.00373087 0) (1.01519 0.00385119 0) (1.01526 0.00396722 0) (1.01534 0.00407712 0) (1.00807 0.00824058 0) (1.00825 0.00823479 0) (1.00842 0.00822655 0) (1.00859 0.00821566 0) (1.00877 0.0082019 0) (1.00895 0.00818506 0) (1.00913 0.00816495 0) (1.00931 0.00814137 0) (1.00949 0.00811419 0) (1.00967 0.00808327 0) (1.00986 0.00804853 0) (1.01004 0.00800991 0) (1.01023 0.00796738 0) (1.01041 0.00792098 0) (1.0106 0.00787074 0) (1.01078 0.00781677 0) (1.01097 0.00775918 0) (1.01115 0.00769812 0) (1.01134 0.00763376 0) (1.01152 0.00756627 0) (1.0117 0.00749584 0) (1.01188 0.00742265 0) (1.01206 0.00734689 0) (1.01224 0.00726872 0) (1.01242 0.00718829 0) (1.0126 0.00710575 0) (1.01277 0.00702121 0) (1.01294 0.00693477 0) (1.01311 0.00684651 0) (1.01328 0.00675648 0) (1.01344 0.00666473 0) (1.0136 0.00657127 0) (1.01376 0.00647611 0) (1.01391 0.00637923 0) (1.01406 0.00628059 0) (1.01421 0.00618014 0) (1.01435 0.0060778 0) (1.01449 0.00597349 0) (1.01462 0.0058671 0) (1.01475 0.00575852 0) (1.01487 0.00564762 0) (1.01499 0.00553429 0) (1.0151 0.0054184 0) (1.01521 0.00529987 0) (1.01531 0.00517862 0) (1.0154 0.00505462 0) (1.01549 0.0049279 0) (1.01557 0.00479853 0) (1.01565 0.00466666 0) (1.01572 0.0045325 0) (1.01578 0.00439635 0) (1.01584 0.00425858 0) (1.01589 0.00411964 0) (1.01593 0.00398003 0) (1.01597 0.00384035 0) (1.016 0.00370121 0) (1.01602 0.0035633 0) (1.01603 0.00342732 0) (1.01604 0.003294 0) (1.01605 0.00316406 0) (1.01604 0.00303825 0) (1.01603 0.00291727 0) (1.01601 0.00280181 0) (1.01599 0.00269254 0) (1.01596 0.00259008 0) (1.01593 0.002495 0) (1.0159 0.00240782 0) (1.01585 0.002329 0) (1.01581 0.00225895 0) (1.01576 0.00219799 0) (1.01571 0.00214639 0) (1.01566 0.00210435 0) (1.0156 0.00207198 0) (1.01555 0.00204933 0) (1.01549 0.00203638 0) (1.01544 0.00203306 0) (1.01538 0.00203923 0) (1.01533 0.0020547 0) (1.01527 0.00207925 0) (1.01522 0.0021126 0) (1.01518 0.00215448 0) (1.01513 0.00220456 0) (1.0151 0.0022625 0) (1.01506 0.00232792 0) (1.01503 0.00240043 0) (1.01501 0.00247959 0) (1.01499 0.00256494 0) (1.01498 0.00265594 0) (1.01497 0.002752 0) (1.01497 0.00285245 0) (1.01498 0.00295659 0) (1.015 0.00306358 0) (1.01502 0.00317258 0) (1.01505 0.00328257 0) (1.01509 0.00339265 0) (1.01513 0.00350162 0) (1.01518 0.00360864 0) (1.01524 0.00371231 0) (1.01531 0.00381205 0) (1.01538 0.00390618 0) (1.00802 0.00786895 0) (1.00818 0.00785955 0) (1.00835 0.00784791 0) (1.00852 0.00783382 0) (1.00869 0.00781708 0) (1.00886 0.0077975 0) (1.00903 0.00777488 0) (1.00921 0.00774908 0) (1.00938 0.00771993 0) (1.00955 0.00768733 0) (1.00973 0.00765121 0) (1.00991 0.00761151 0) (1.01008 0.00756822 0) (1.01026 0.00752138 0) (1.01043 0.00747106 0) (1.01061 0.00741734 0) (1.01079 0.00736037 0) (1.01096 0.0073003 0) (1.01114 0.0072373 0) (1.01131 0.00717156 0) (1.01149 0.00710328 0) (1.01166 0.00703264 0) (1.01183 0.00695983 0) (1.012 0.00688504 0) (1.01217 0.0068084 0) (1.01233 0.00673008 0) (1.0125 0.00665018 0) (1.01266 0.00656882 0) (1.01282 0.00648607 0) (1.01298 0.006402 0) (1.01313 0.00631664 0) (1.01328 0.00623003 0) (1.01343 0.00614216 0) (1.01358 0.00605301 0) (1.01372 0.00596256 0) (1.01386 0.00587074 0) (1.01399 0.00577749 0) (1.01412 0.0056827 0) (1.01425 0.00558627 0) (1.01437 0.00548807 0) (1.01449 0.00538798 0) (1.0146 0.00528587 0) (1.01471 0.00518159 0) (1.01481 0.00507505 0) (1.01491 0.00496616 0) (1.015 0.00485486 0) (1.01508 0.00474115 0) (1.01517 0.00462507 0) (1.01524 0.00450675 0) (1.01531 0.00438636 0) (1.01537 0.00426416 0) (1.01543 0.00414047 0) (1.01548 0.0040157 0) (1.01553 0.00389032 0) (1.01556 0.00376483 0) (1.0156 0.00363983 0) (1.01562 0.00351592 0) (1.01565 0.00339374 0) (1.01566 0.00327396 0) (1.01567 0.00315723 0) (1.01568 0.00304421 0) (1.01567 0.00293555 0) (1.01567 0.00283186 0) (1.01566 0.00273373 0) (1.01564 0.00264172 0) (1.01562 0.00255633 0) (1.0156 0.002478 0) (1.01557 0.00240715 0) (1.01554 0.0023441 0) (1.01551 0.00228915 0) (1.01547 0.0022425 0) (1.01544 0.00220431 0) (1.0154 0.00217466 0) (1.01536 0.00215357 0) (1.01532 0.002141 0) (1.01528 0.00213688 0) (1.01524 0.00214105 0) (1.0152 0.00215334 0) (1.01517 0.00217354 0) (1.01513 0.0022014 0) (1.0151 0.00223668 0) (1.01507 0.00227908 0) (1.01505 0.00232832 0) (1.01502 0.00238409 0) (1.01501 0.00244604 0) (1.01499 0.00251383 0) (1.01498 0.00258705 0) (1.01498 0.00266524 0) (1.01498 0.00274792 0) (1.01499 0.00283451 0) (1.01501 0.00292438 0) (1.01503 0.00301679 0) (1.01505 0.00311099 0) (1.01508 0.00320608 0) (1.01512 0.00330123 0) (1.01517 0.00339534 0) (1.01522 0.00348766 0) (1.01527 0.00357687 0) (1.01534 0.00366248 0) (1.01541 0.00374292 0) (1.00796 0.00749922 0) (1.00812 0.00748667 0) (1.00828 0.00747207 0) (1.00845 0.00745522 0) (1.00861 0.00743595 0) (1.00877 0.00741405 0) (1.00894 0.00738936 0) (1.0091 0.00736171 0) (1.00927 0.00733099 0) (1.00944 0.00729709 0) (1.00961 0.00725994 0) (1.00977 0.00721949 0) (1.00994 0.00717577 0) (1.01011 0.00712879 0) (1.01028 0.00707865 0) (1.01045 0.00702544 0) (1.01061 0.00696932 0) (1.01078 0.00691044 0) (1.01095 0.00684899 0) (1.01111 0.00678516 0) (1.01128 0.00671915 0) (1.01144 0.00665116 0) (1.0116 0.00658139 0) (1.01177 0.00651001 0) (1.01192 0.00643719 0) (1.01208 0.00636307 0) (1.01224 0.00628778 0) (1.01239 0.00621143 0) (1.01254 0.0061341 0) (1.01269 0.00605585 0) (1.01284 0.00597673 0) (1.01298 0.00589675 0) (1.01312 0.00581593 0) (1.01326 0.00573425 0) (1.0134 0.00565166 0) (1.01353 0.00556812 0) (1.01366 0.00548353 0) (1.01378 0.0053978 0) (1.0139 0.00531082 0) (1.01402 0.00522245 0) (1.01413 0.00513255 0) (1.01424 0.00504098 0) (1.01434 0.00494758 0) (1.01444 0.00485224 0) (1.01453 0.00475484 0) (1.01462 0.00465531 0) (1.0147 0.00455361 0) (1.01478 0.00444978 0) (1.01486 0.0043439 0) (1.01493 0.0042361 0) (1.01499 0.00412662 0) (1.01505 0.00401574 0) (1.0151 0.00390381 0) (1.01515 0.00379126 0) (1.01519 0.00367857 0) (1.01523 0.00356625 0) (1.01526 0.00345486 0) (1.01529 0.003345 0) (1.01531 0.00323726 0) (1.01532 0.00313225 0) (1.01534 0.00303056 0) (1.01534 0.00293278 0) (1.01535 0.00283947 0) (1.01535 0.00275115 0) (1.01534 0.00266832 0) (1.01533 0.00259141 0) (1.01532 0.00252084 0) (1.01531 0.00245695 0) (1.01529 0.00240003 0) (1.01527 0.00235032 0) (1.01525 0.002308 0) (1.01523 0.00227317 0) (1.0152 0.0022459 0) (1.01518 0.00222619 0) (1.01515 0.00221399 0) (1.01513 0.0022092 0) (1.0151 0.00221168 0) (1.01508 0.00222126 0) (1.01505 0.00223774 0) (1.01503 0.00226091 0) (1.01501 0.00229053 0) (1.015 0.00232636 0) (1.01498 0.00236815 0) (1.01497 0.00241563 0) (1.01497 0.00246854 0) (1.01496 0.00252657 0) (1.01496 0.00258937 0) (1.01497 0.00265659 0) (1.01498 0.00272778 0) (1.01499 0.00280245 0) (1.01501 0.00288005 0) (1.01504 0.00295993 0) (1.01507 0.00304142 0) (1.0151 0.00312368 0) (1.01514 0.00320598 0) (1.01518 0.0032873 0) (1.01523 0.00336694 0) (1.01529 0.00344371 0) (1.01535 0.00351712 0) (1.01541 0.00358576 0) (1.00791 0.00713133 0) (1.00806 0.00711606 0) (1.00822 0.00709892 0) (1.00837 0.00707974 0) (1.00853 0.00705834 0) (1.00869 0.00703452 0) (1.00885 0.00700814 0) (1.00901 0.00697904 0) (1.00917 0.0069471 0) (1.00933 0.00691224 0) (1.00949 0.00687439 0) (1.00965 0.00683352 0) (1.00981 0.00678964 0) (1.00997 0.00674281 0) (1.01013 0.00669311 0) (1.01029 0.00664065 0) (1.01045 0.00658558 0) (1.01061 0.00652808 0) (1.01077 0.00646834 0) (1.01092 0.00640656 0) (1.01108 0.00634294 0) (1.01124 0.00627769 0) (1.01139 0.006211 0) (1.01154 0.00614307 0) (1.01169 0.00607406 0) (1.01184 0.00600412 0) (1.01199 0.00593337 0) (1.01214 0.00586193 0) (1.01228 0.00578989 0) (1.01242 0.0057173 0) (1.01256 0.00564421 0) (1.0127 0.00557065 0) (1.01283 0.0054966 0) (1.01297 0.00542207 0) (1.01309 0.00534699 0) (1.01322 0.00527132 0) (1.01334 0.00519496 0) (1.01346 0.0051178 0) (1.01357 0.00503973 0) (1.01369 0.0049606 0) (1.01379 0.00488025 0) (1.0139 0.00479853 0) (1.014 0.00471527 0) (1.01409 0.00463032 0) (1.01418 0.00454357 0) (1.01427 0.0044549 0) (1.01435 0.00436428 0) (1.01443 0.00427168 0) (1.0145 0.00417717 0) (1.01457 0.00408087 0) (1.01463 0.00398295 0) (1.01469 0.00388368 0) (1.01475 0.00378336 0) (1.0148 0.00368239 0) (1.01484 0.00358119 0) (1.01488 0.00348025 0) (1.01492 0.00338008 0) (1.01495 0.00328121 0) (1.01498 0.0031842 0) (1.015 0.0030896 0) (1.01502 0.00299797 0) (1.01504 0.00290982 0) (1.01505 0.00282567 0) (1.01506 0.002746 0) (1.01506 0.00267125 0) (1.01507 0.00260182 0) (1.01506 0.00253806 0) (1.01506 0.00248029 0) (1.01506 0.00242875 0) (1.01505 0.00238364 0) (1.01504 0.00234511 0) (1.01503 0.00231325 0) (1.01502 0.0022881 0) (1.015 0.00226964 0) (1.01499 0.00225781 0) (1.01498 0.00225251 0) (1.01496 0.00225359 0) (1.01495 0.00226089 0) (1.01494 0.00227424 0) (1.01493 0.00229342 0) (1.01492 0.00231824 0) (1.01492 0.00234848 0) (1.01492 0.00238394 0) (1.01492 0.00242438 0) (1.01492 0.00246958 0) (1.01492 0.00251928 0) (1.01493 0.00257321 0) (1.01494 0.00263106 0) (1.01496 0.00269244 0) (1.01498 0.00275694 0) (1.015 0.00282407 0) (1.01503 0.00289324 0) (1.01506 0.00296386 0) (1.0151 0.00303515 0) (1.01514 0.00310645 0) (1.01518 0.00317683 0) (1.01523 0.00324562 0) (1.01529 0.00331173 0) (1.01534 0.0033747 0) (1.0154 0.00343322 0) (1.00785 0.00676519 0) (1.008 0.0067476 0) (1.00815 0.00672833 0) (1.0083 0.00670721 0) (1.00846 0.00668405 0) (1.00861 0.0066587 0) (1.00876 0.00663099 0) (1.00891 0.00660078 0) (1.00907 0.00656798 0) (1.00922 0.00653248 0) (1.00937 0.00649423 0) (1.00953 0.00645322 0) (1.00968 0.00640947 0) (1.00983 0.00636304 0) (1.00999 0.006314 0) (1.01014 0.0062625 0) (1.01029 0.00620868 0) (1.01044 0.00615273 0) (1.01059 0.00609484 0) (1.01074 0.00603521 0) (1.01089 0.00597407 0) (1.01104 0.00591161 0) (1.01119 0.00584805 0) (1.01133 0.00578357 0) (1.01148 0.00571835 0) (1.01162 0.00565252 0) (1.01176 0.00558623 0) (1.0119 0.00551959 0) (1.01204 0.00545268 0) (1.01217 0.00538556 0) (1.0123 0.00531828 0) (1.01244 0.00525086 0) (1.01256 0.0051833 0) (1.01269 0.00511557 0) (1.01281 0.00504763 0) (1.01293 0.00497941 0) (1.01305 0.00491081 0) (1.01316 0.00484172 0) (1.01327 0.00477201 0) (1.01338 0.00470151 0) (1.01348 0.00463007 0) (1.01358 0.00455751 0) (1.01368 0.00448365 0) (1.01377 0.00440832 0) (1.01386 0.00433139 0) (1.01394 0.00425272 0) (1.01402 0.00417224 0) (1.0141 0.00408992 0) (1.01417 0.00400579 0) (1.01424 0.00391994 0) (1.01431 0.00383252 0) (1.01437 0.00374376 0) (1.01442 0.00365393 0) (1.01447 0.00356339 0) (1.01452 0.00347253 0) (1.01457 0.00338179 0) (1.01461 0.00329164 0) (1.01465 0.00320259 0) (1.01468 0.00311514 0) (1.01471 0.0030298 0) (1.01473 0.00294709 0) (1.01476 0.00286748 0) (1.01478 0.00279144 0) (1.01479 0.00271942 0) (1.01481 0.00265181 0) (1.01482 0.00258897 0) (1.01482 0.00253122 0) (1.01483 0.00247884 0) (1.01483 0.00243205 0) (1.01484 0.00239101 0) (1.01484 0.00235586 0) (1.01484 0.00232665 0) (1.01484 0.00230341 0) (1.01484 0.00228612 0) (1.01483 0.00227469 0) (1.01483 0.00226903 0) (1.01483 0.002269 0) (1.01483 0.00227444 0) (1.01483 0.00228518 0) (1.01483 0.00230104 0) (1.01483 0.00232183 0) (1.01484 0.00234737 0) (1.01484 0.00237748 0) (1.01485 0.00241197 0) (1.01486 0.00245065 0) (1.01487 0.00249331 0) (1.01489 0.00253973 0) (1.01491 0.00258963 0) (1.01493 0.00264271 0) (1.01495 0.00269858 0) (1.01498 0.00275681 0) (1.01501 0.00281689 0) (1.01504 0.00287827 0) (1.01508 0.00294025 0) (1.01512 0.00300221 0) (1.01517 0.00306328 0) (1.01522 0.00312285 0) (1.01527 0.0031799 0) (1.01533 0.003234 0) (1.01538 0.00328391 0) (1.00781 0.00640063 0) (1.00795 0.00638111 0) (1.00809 0.00636009 0) (1.00824 0.00633738 0) (1.00838 0.00631284 0) (1.00853 0.00628629 0) (1.00868 0.00625759 0) (1.00882 0.00622661 0) (1.00897 0.00619323 0) (1.00912 0.00615739 0) (1.00927 0.00611904 0) (1.00941 0.00607816 0) (1.00956 0.00603479 0) (1.00971 0.00598897 0) (1.00985 0.00594082 0) (1.01 0.00589047 0) (1.01014 0.00583807 0) (1.01029 0.00578381 0) (1.01043 0.00572789 0) (1.01058 0.00567052 0) (1.01072 0.00561193 0) (1.01086 0.00555232 0) (1.011 0.00549189 0) (1.01114 0.00543085 0) (1.01128 0.00536936 0) (1.01141 0.00530759 0) (1.01155 0.00524565 0) (1.01168 0.00518366 0) (1.01181 0.0051217 0) (1.01194 0.00505985 0) (1.01206 0.00499813 0) (1.01219 0.00493658 0) (1.01231 0.00487517 0) (1.01243 0.00481389 0) (1.01255 0.00475268 0) (1.01266 0.00469148 0) (1.01277 0.00463016 0) (1.01288 0.00456863 0) (1.01299 0.00450671 0) (1.01309 0.00444426 0) (1.01319 0.00438109 0) (1.01329 0.00431701 0) (1.01338 0.00425183 0) (1.01347 0.00418536 0) (1.01356 0.00411744 0) (1.01364 0.00404793 0) (1.01372 0.00397673 0) (1.0138 0.00390379 0) (1.01387 0.00382911 0) (1.01394 0.00375275 0) (1.014 0.00367484 0) (1.01406 0.00359558 0) (1.01412 0.00351522 0) (1.01418 0.00343406 0) (1.01423 0.00335249 0) (1.01428 0.0032709 0) (1.01432 0.00318973 0) (1.01436 0.00310944 0) (1.0144 0.00303052 0) (1.01444 0.00295343 0) (1.01447 0.00287865 0) (1.0145 0.00280663 0) (1.01452 0.00273779 0) (1.01455 0.00267255 0) (1.01457 0.00261126 0) (1.01458 0.00255426 0) (1.0146 0.00250185 0) (1.01462 0.00245425 0) (1.01463 0.00241168 0) (1.01464 0.00237428 0) (1.01465 0.00234214 0) (1.01466 0.00231534 0) (1.01467 0.00229386 0) (1.01468 0.00227768 0) (1.01468 0.00226671 0) (1.01469 0.00226086 0) (1.0147 0.00225999 0) (1.01471 0.00226394 0) (1.01472 0.00227256 0) (1.01473 0.00228568 0) (1.01474 0.00230313 0) (1.01475 0.00232476 0) (1.01476 0.00235041 0) (1.01478 0.00237992 0) (1.01479 0.00241314 0) (1.01481 0.00244989 0) (1.01484 0.00249 0) (1.01486 0.00253322 0) (1.01489 0.0025793 0) (1.01491 0.0026279 0) (1.01495 0.00267865 0) (1.01498 0.00273106 0) (1.01502 0.00278465 0) (1.01506 0.00283878 0) (1.0151 0.00289285 0) (1.01515 0.00294607 0) (1.01519 0.00299786 0) (1.01524 0.00304726 0) (1.0153 0.00309388 0) (1.01536 0.00313654 0) (1.00776 0.00603745 0) (1.0079 0.00601636 0) (1.00804 0.00599394 0) (1.00818 0.00597001 0) (1.00832 0.00594441 0) (1.00846 0.005917 0) (1.0086 0.00588762 0) (1.00874 0.00585616 0) (1.00888 0.00582251 0) (1.00902 0.0057866 0) (1.00917 0.0057484 0) (1.00931 0.0057079 0) (1.00945 0.00566512 0) (1.00959 0.00562014 0) (1.00973 0.00557306 0) (1.00987 0.00552402 0) (1.01001 0.00547319 0) (1.01014 0.00542074 0) (1.01028 0.00536689 0) (1.01042 0.00531186 0) (1.01056 0.00525586 0) (1.01069 0.00519911 0) (1.01082 0.00514183 0) (1.01096 0.00508419 0) (1.01109 0.00502638 0) (1.01122 0.00496855 0) (1.01134 0.00491083 0) (1.01147 0.00485333 0) (1.0116 0.00479615 0) (1.01172 0.00473933 0) (1.01184 0.00468291 0) (1.01196 0.00462692 0) (1.01207 0.00457134 0) (1.01219 0.00451615 0) (1.0123 0.00446127 0) (1.01241 0.00440664 0) (1.01252 0.00435213 0) (1.01262 0.00429763 0) (1.01273 0.00424296 0) (1.01283 0.00418796 0) (1.01292 0.00413244 0) (1.01302 0.00407618 0) (1.01311 0.00401898 0) (1.01319 0.00396064 0) (1.01328 0.00390098 0) (1.01336 0.00383984 0) (1.01344 0.0037771 0) (1.01352 0.00371269 0) (1.01359 0.00364658 0) (1.01366 0.00357883 0) (1.01373 0.00350953 0) (1.01379 0.00343884 0) (1.01385 0.003367 0) (1.01391 0.0032943 0) (1.01396 0.00322107 0) (1.01401 0.00314768 0) (1.01406 0.00307456 0) (1.0141 0.00300212 0) (1.01415 0.00293082 0) (1.01419 0.00286109 0) (1.01422 0.00279339 0) (1.01426 0.00272812 0) (1.01429 0.0026657 0) (1.01432 0.00260649 0) (1.01435 0.00255083 0) (1.01437 0.00249904 0) (1.0144 0.00245138 0) (1.01442 0.00240806 0) (1.01444 0.00236927 0) (1.01446 0.00233513 0) (1.01448 0.00230574 0) (1.01449 0.00228113 0) (1.01451 0.00226129 0) (1.01453 0.0022462 0) (1.01454 0.00223576 0) (1.01456 0.00222988 0) (1.01457 0.00222841 0) (1.01459 0.00223122 0) (1.01461 0.00223815 0) (1.01462 0.00224906 0) (1.01464 0.00226379 0) (1.01466 0.00228221 0) (1.01468 0.00230418 0) (1.0147 0.00232957 0) (1.01473 0.00235826 0) (1.01475 0.0023901 0) (1.01478 0.00242495 0) (1.01481 0.00246261 0) (1.01484 0.00250285 0) (1.01487 0.00254538 0) (1.0149 0.00258986 0) (1.01494 0.00263587 0) (1.01498 0.00268294 0) (1.01502 0.00273049 0) (1.01507 0.00277796 0) (1.01511 0.00282461 0) (1.01516 0.00286989 0) (1.01521 0.0029129 0) (1.01527 0.00295326 0) (1.01532 0.00298987 0) (1.00772 0.00567537 0) (1.00785 0.00565305 0) (1.00799 0.00562956 0) (1.00812 0.00560472 0) (1.00826 0.00557839 0) (1.00839 0.00555041 0) (1.00853 0.00552065 0) (1.00867 0.005489 0) (1.0088 0.00545535 0) (1.00894 0.00541963 0) (1.00907 0.00538182 0) (1.00921 0.00534192 0) (1.00934 0.00529995 0) (1.00948 0.00525599 0) (1.00961 0.00521015 0) (1.00975 0.00516257 0) (1.00988 0.00511342 0) (1.01001 0.0050629 0) (1.01014 0.0050112 0) (1.01027 0.00495856 0) (1.0104 0.00490519 0) (1.01053 0.00485131 0) (1.01066 0.00479713 0) (1.01079 0.00474285 0) (1.01091 0.00468863 0) (1.01104 0.00463464 0) (1.01116 0.004581 0) (1.01128 0.00452783 0) (1.0114 0.0044752 0) (1.01152 0.00442318 0) (1.01163 0.0043718 0) (1.01175 0.00432107 0) (1.01186 0.00427098 0) (1.01197 0.00422149 0) (1.01208 0.00417254 0) (1.01218 0.00412403 0) (1.01229 0.00407586 0) (1.01239 0.00402788 0) (1.01249 0.00397992 0) (1.01258 0.0039318 0) (1.01268 0.00388331 0) (1.01277 0.00383423 0) (1.01286 0.00378435 0) (1.01294 0.00373345 0) (1.01303 0.00368133 0) (1.01311 0.00362781 0) (1.01319 0.00357277 0) (1.01326 0.0035161 0) (1.01334 0.00345778 0) (1.01341 0.00339781 0) (1.01347 0.00333628 0) (1.01354 0.00327334 0) (1.0136 0.0032092 0) (1.01366 0.0031441 0) (1.01371 0.00307837 0) (1.01377 0.00301235 0) (1.01382 0.00294644 0) (1.01387 0.00288103 0) (1.01391 0.00281655 0) (1.01396 0.00275342 0) (1.014 0.00269203 0) (1.01404 0.00263281 0) (1.01408 0.00257611 0) (1.01411 0.0025223 0) (1.01414 0.00247168 0) (1.01418 0.00242455 0) (1.01421 0.00238114 0) (1.01424 0.00234167 0) (1.01426 0.00230629 0) (1.01429 0.00227512 0) (1.01431 0.00224824 0) (1.01434 0.00222566 0) (1.01436 0.0022074 0) (1.01439 0.00219339 0) (1.01441 0.00218355 0) (1.01443 0.00217778 0) (1.01445 0.00217596 0) (1.01448 0.00217794 0) (1.0145 0.00218359 0) (1.01453 0.00219276 0) (1.01455 0.00220532 0) (1.01458 0.00222114 0) (1.0146 0.00224012 0) (1.01463 0.00226215 0) (1.01466 0.00228713 0) (1.01469 0.00231493 0) (1.01472 0.00234545 0) (1.01475 0.00237851 0) (1.01479 0.00241392 0) (1.01482 0.00245143 0) (1.01486 0.00249072 0) (1.0149 0.00253142 0) (1.01494 0.00257308 0) (1.01498 0.00261517 0) (1.01503 0.00265717 0) (1.01508 0.00269836 0) (1.01512 0.00273825 0) (1.01517 0.00277596 0) (1.01523 0.00281114 0) (1.01528 0.00284274 0) (1.00768 0.00531413 0) (1.00781 0.00529089 0) (1.00794 0.00526662 0) (1.00807 0.00524116 0) (1.00821 0.00521438 0) (1.00834 0.00518611 0) (1.00847 0.00515624 0) (1.0086 0.00512464 0) (1.00873 0.00509122 0) (1.00886 0.00505593 0) (1.00899 0.00501873 0) (1.00912 0.00497962 0) (1.00925 0.00493864 0) (1.00938 0.00489588 0) (1.00951 0.00485143 0) (1.00964 0.00480545 0) (1.00976 0.0047581 0) (1.00989 0.00470959 0) (1.01002 0.00466012 0) (1.01014 0.00460991 0) (1.01027 0.00455918 0) (1.01039 0.00450817 0) (1.01051 0.00445706 0) (1.01063 0.00440607 0) (1.01075 0.00435535 0) (1.01087 0.00430508 0) (1.01099 0.00425537 0) (1.01111 0.00420634 0) (1.01122 0.00415806 0) (1.01133 0.00411059 0) (1.01145 0.00406397 0) (1.01156 0.00401819 0) (1.01166 0.00397325 0) (1.01177 0.0039291 0) (1.01187 0.00388567 0) (1.01198 0.00384286 0) (1.01208 0.00380055 0) (1.01217 0.0037586 0) (1.01227 0.00371682 0) (1.01236 0.00367502 0) (1.01246 0.00363298 0) (1.01254 0.00359048 0) (1.01263 0.00354729 0) (1.01272 0.00350317 0) (1.0128 0.00345791 0) (1.01288 0.00341133 0) (1.01296 0.00336327 0) (1.01303 0.00331363 0) (1.01311 0.00326234 0) (1.01318 0.00320942 0) (1.01324 0.00315491 0) (1.01331 0.00309896 0) (1.01337 0.00304174 0) (1.01343 0.00298349 0) (1.01349 0.00292451 0) (1.01355 0.00286512 0) (1.0136 0.00280569 0) (1.01365 0.0027466 0) (1.0137 0.00268824 0) (1.01375 0.00263102 0) (1.0138 0.00257532 0) (1.01384 0.00252151 0) (1.01388 0.00246996 0) (1.01392 0.00242099 0) (1.01396 0.00237491 0) (1.014 0.00233198 0) (1.01403 0.00229242 0) (1.01407 0.00225644 0) (1.0141 0.00222416 0) (1.01413 0.00219571 0) (1.01417 0.00217115 0) (1.0142 0.00215049 0) (1.01423 0.00213373 0) (1.01426 0.00212081 0) (1.01428 0.00211165 0) (1.01431 0.00210615 0) (1.01434 0.00210418 0) (1.01437 0.00210562 0) (1.0144 0.00211033 0) (1.01443 0.00211817 0) (1.01446 0.00212904 0) (1.01449 0.00214282 0) (1.01452 0.00215941 0) (1.01456 0.00217874 0) (1.01459 0.00220071 0) (1.01462 0.00222524 0) (1.01466 0.00225223 0) (1.01469 0.00228153 0) (1.01473 0.00231299 0) (1.01477 0.00234638 0) (1.01481 0.00238142 0) (1.01485 0.00241774 0) (1.0149 0.00245497 0) (1.01494 0.00249257 0) (1.01499 0.00253007 0) (1.01504 0.00256679 0) (1.01508 0.00260225 0) (1.01513 0.00263561 0) (1.01519 0.00266656 0) (1.01524 0.00269408 0) (1.00765 0.00495335 0) (1.00778 0.00492948 0) (1.00791 0.00490472 0) (1.00803 0.00487893 0) (1.00816 0.00485195 0) (1.00829 0.00482365 0) (1.00841 0.0047939 0) (1.00854 0.00476259 0) (1.00866 0.00472963 0) (1.00879 0.00469497 0) (1.00892 0.00465857 0) (1.00904 0.00462044 0) (1.00917 0.00458062 0) (1.00929 0.00453919 0) (1.00942 0.00449627 0) (1.00954 0.00445199 0) (1.00966 0.00440654 0) (1.00978 0.00436011 0) (1.0099 0.00431291 0) (1.01002 0.00426516 0) (1.01014 0.00421709 0) (1.01026 0.00416891 0) (1.01038 0.00412083 0) (1.0105 0.00407305 0) (1.01061 0.00402574 0) (1.01073 0.00397906 0) (1.01084 0.00393312 0) (1.01095 0.00388804 0) (1.01106 0.0038439 0) (1.01117 0.00380074 0) (1.01128 0.00375859 0) (1.01138 0.00371747 0) (1.01149 0.00367734 0) (1.01159 0.00363816 0) (1.01169 0.00359985 0) (1.01179 0.00356232 0) (1.01189 0.00352543 0) (1.01198 0.00348903 0) (1.01207 0.00345292 0) (1.01217 0.00341692 0) (1.01226 0.00338079 0) (1.01234 0.00334429 0) (1.01243 0.00330718 0) (1.01251 0.00326923 0) (1.01259 0.00323021 0) (1.01267 0.00318992 0) (1.01275 0.00314819 0) (1.01283 0.00310491 0) (1.0129 0.00305999 0) (1.01297 0.00301343 0) (1.01304 0.00296527 0) (1.01311 0.00291562 0) (1.01317 0.00286465 0) (1.01323 0.00281258 0) (1.01329 0.00275968 0) (1.01335 0.00270627 0) (1.01341 0.00265268 0) (1.01346 0.00259927 0) (1.01352 0.00254643 0) (1.01357 0.00249453 0) (1.01362 0.00244395 0) (1.01366 0.00239503 0) (1.01371 0.00234812 0) (1.01375 0.00230353 0) (1.0138 0.00226155 0) (1.01384 0.00222243 0) (1.01388 0.00218637 0) (1.01392 0.00215356 0) (1.01396 0.00212414 0) (1.01399 0.00209821 0) (1.01403 0.00207581 0) (1.01407 0.00205697 0) (1.0141 0.00204167 0) (1.01414 0.00202986 0) (1.01417 0.00202145 0) (1.0142 0.00201635 0) (1.01424 0.00201444 0) (1.01427 0.00201558 0) (1.01431 0.00201966 0) (1.01434 0.00202655 0) (1.01438 0.00203615 0) (1.01441 0.00204835 0) (1.01445 0.00206309 0) (1.01448 0.00208028 0) (1.01452 0.00209987 0) (1.01456 0.00212178 0) (1.0146 0.00214594 0) (1.01464 0.00217222 0) (1.01468 0.00220048 0) (1.01472 0.00223053 0) (1.01476 0.00226211 0) (1.01481 0.00229489 0) (1.01485 0.0023285 0) (1.0149 0.00236246 0) (1.01495 0.0023963 0) (1.01499 0.00242938 0) (1.01504 0.00246125 0) (1.0151 0.00249111 0) (1.01515 0.00251864 0) (1.0152 0.00254288 0) (1.00763 0.00459264 0) (1.00775 0.0045684 0) (1.00788 0.00454342 0) (1.008 0.00451754 0) (1.00812 0.00449062 0) (1.00824 0.00446252 0) (1.00837 0.00443311 0) (1.00849 0.0044023 0) (1.00861 0.00437 0) (1.00873 0.00433615 0) (1.00885 0.00430072 0) (1.00897 0.00426373 0) (1.00909 0.00422521 0) (1.00921 0.00418526 0) (1.00933 0.00414397 0) (1.00945 0.0041015 0) (1.00957 0.00405803 0) (1.00969 0.00401374 0) (1.00981 0.00396885 0) (1.00992 0.00392358 0) (1.01004 0.00387815 0) (1.01015 0.00383278 0) (1.01026 0.00378768 0) (1.01038 0.00374304 0) (1.01049 0.00369903 0) (1.0106 0.0036558 0) (1.01071 0.00361348 0) (1.01081 0.00357216 0) (1.01092 0.00353193 0) (1.01102 0.00349284 0) (1.01113 0.0034549 0) (1.01123 0.00341813 0) (1.01133 0.00338248 0) (1.01143 0.00334792 0) (1.01153 0.00331436 0) (1.01162 0.0032817 0) (1.01172 0.00324979 0) (1.01181 0.00321848 0) (1.0119 0.00318758 0) (1.01199 0.00315686 0) (1.01208 0.00312611 0) (1.01217 0.00309508 0) (1.01225 0.00306351 0) (1.01233 0.00303116 0) (1.01241 0.00299779 0) (1.01249 0.0029632 0) (1.01257 0.0029272 0) (1.01264 0.00288966 0) (1.01272 0.0028505 0) (1.01279 0.00280969 0) (1.01286 0.00276726 0) (1.01292 0.00272331 0) (1.01299 0.00267798 0) (1.01305 0.00263149 0) (1.01312 0.00258409 0) (1.01318 0.00253607 0) (1.01324 0.00248775 0) (1.01329 0.00243949 0) (1.01335 0.00239163 0) (1.0134 0.00234455 0) (1.01345 0.0022986 0) (1.01351 0.00225411 0) (1.01355 0.00221142 0) (1.0136 0.00217081 0) (1.01365 0.00213256 0) (1.0137 0.00209691 0) (1.01374 0.00206406 0) (1.01378 0.00203418 0) (1.01383 0.0020074 0) (1.01387 0.00198381 0) (1.01391 0.00196346 0) (1.01395 0.00194636 0) (1.01399 0.0019325 0) (1.01403 0.00192182 0) (1.01407 0.00191423 0) (1.01411 0.00190965 0) (1.01415 0.00190796 0) (1.01418 0.00190903 0) (1.01422 0.00191275 0) (1.01426 0.00191901 0) (1.0143 0.0019277 0) (1.01434 0.00193874 0) (1.01438 0.00195207 0) (1.01442 0.00196763 0) (1.01446 0.00198536 0) (1.0145 0.00200521 0) (1.01454 0.00202713 0) (1.01459 0.00205101 0) (1.01463 0.00207672 0) (1.01467 0.0021041 0) (1.01472 0.00213291 0) (1.01476 0.00216284 0) (1.01481 0.00219355 0) (1.01486 0.00222457 0) (1.01491 0.00225547 0) (1.01496 0.00228565 0) (1.01501 0.00231464 0) (1.01506 0.0023417 0) (1.01511 0.00236652 0) (1.01516 0.00238817 0) (1.00762 0.00423152 0) (1.00774 0.00420718 0) (1.00786 0.00418221 0) (1.00798 0.00415647 0) (1.00809 0.00412983 0) (1.00821 0.00410214 0) (1.00833 0.00407329 0) (1.00845 0.00404318 0) (1.00857 0.00401171 0) (1.00869 0.00397884 0) (1.0088 0.00394455 0) (1.00892 0.00390884 0) (1.00904 0.00387175 0) (1.00915 0.00383338 0) (1.00927 0.00379383 0) (1.00938 0.00375325 0) (1.0095 0.00371181 0) (1.00961 0.00366971 0) (1.00972 0.00362716 0) (1.00983 0.00358437 0) (1.00994 0.00354157 0) (1.01005 0.00349898 0) (1.01016 0.00345679 0) (1.01027 0.0034152 0) (1.01038 0.00337438 0) (1.01048 0.00333447 0) (1.01059 0.0032956 0) (1.01069 0.00325787 0) (1.0108 0.00322135 0) (1.0109 0.00318608 0) (1.011 0.00315209 0) (1.0111 0.00311938 0) (1.01119 0.00308791 0) (1.01129 0.00305763 0) (1.01139 0.00302845 0) (1.01148 0.00300026 0) (1.01157 0.00297293 0) (1.01166 0.00294629 0) (1.01175 0.00292013 0) (1.01184 0.00289424 0) (1.01193 0.00286839 0) (1.01201 0.00284232 0) (1.01209 0.00281578 0) (1.01217 0.0027885 0) (1.01225 0.00276025 0) (1.01233 0.00273081 0) (1.01241 0.00269999 0) (1.01248 0.00266765 0) (1.01256 0.00263369 0) (1.01263 0.00259808 0) (1.0127 0.00256083 0) (1.01277 0.00252203 0) (1.01283 0.00248181 0) (1.0129 0.00244037 0) (1.01296 0.00239794 0) (1.01303 0.00235481 0) (1.01309 0.00231128 0) (1.01315 0.00226768 0) (1.0132 0.00222435 0) (1.01326 0.00218165 0) (1.01331 0.00213991 0) (1.01337 0.00209946 0) (1.01342 0.00206061 0) (1.01347 0.00202364 0) (1.01352 0.00198882 0) (1.01357 0.00195636 0) (1.01362 0.00192647 0) (1.01367 0.00189931 0) (1.01371 0.00187499 0) (1.01376 0.0018536 0) (1.0138 0.0018352 0) (1.01385 0.00181978 0) (1.01389 0.00180734 0) (1.01393 0.0017978 0) (1.01398 0.00179111 0) (1.01402 0.00178716 0) (1.01406 0.00178583 0) (1.01411 0.00178702 0) (1.01415 0.00179062 0) (1.01419 0.00179651 0) (1.01423 0.00180461 0) (1.01428 0.00181484 0) (1.01432 0.00182715 0) (1.01436 0.00184148 0) (1.01441 0.00185781 0) (1.01445 0.00187609 0) (1.01449 0.00189627 0) (1.01454 0.00191827 0) (1.01459 0.00194199 0) (1.01463 0.00196727 0) (1.01468 0.00199389 0) (1.01473 0.00202156 0) (1.01478 0.00204996 0) (1.01482 0.00207866 0) (1.01487 0.00210724 0) (1.01492 0.00213511 0) (1.01498 0.00216184 0) (1.01503 0.00218671 0) (1.01508 0.00220941 0) (1.01513 0.00222906 0) (1.00762 0.0038695 0) (1.00773 0.00384529 0) (1.00785 0.00382057 0) (1.00796 0.00379519 0) (1.00808 0.00376904 0) (1.00819 0.00374196 0) (1.00831 0.00371385 0) (1.00842 0.00368461 0) (1.00854 0.00365415 0) (1.00865 0.00362242 0) (1.00877 0.0035894 0) (1.00888 0.0035551 0) (1.00899 0.00351956 0) (1.0091 0.00348288 0) (1.00921 0.00344515 0) (1.00933 0.00340653 0) (1.00944 0.00336718 0) (1.00955 0.00332731 0) (1.00965 0.00328711 0) (1.00976 0.00324681 0) (1.00987 0.00320662 0) (1.00998 0.00316676 0) (1.01008 0.00312742 0) (1.01019 0.0030888 0) (1.01029 0.00305105 0) (1.01039 0.00301434 0) (1.01049 0.00297876 0) (1.01059 0.00294443 0) (1.01069 0.00291141 0) (1.01079 0.00287974 0) (1.01089 0.00284944 0) (1.01099 0.00282051 0) (1.01108 0.00279292 0) (1.01117 0.00276659 0) (1.01127 0.00274145 0) (1.01136 0.00271738 0) (1.01145 0.00269424 0) (1.01154 0.00267185 0) (1.01162 0.00265002 0) (1.01171 0.00262852 0) (1.0118 0.00260712 0) (1.01188 0.00258554 0) (1.01196 0.00256354 0) (1.01204 0.00254086 0) (1.01212 0.00251724 0) (1.0122 0.00249245 0) (1.01227 0.00246632 0) (1.01235 0.00243867 0) (1.01242 0.00240942 0) (1.0125 0.00237851 0) (1.01257 0.00234596 0) (1.01263 0.00231182 0) (1.0127 0.00227624 0) (1.01277 0.00223938 0) (1.01283 0.00220147 0) (1.0129 0.00216278 0) (1.01296 0.0021236 0) (1.01302 0.00208426 0) (1.01308 0.00204507 0) (1.01314 0.00200637 0) (1.0132 0.00196849 0) (1.01325 0.00193174 0) (1.01331 0.00189641 0) (1.01336 0.0018628 0) (1.01341 0.00183113 0) (1.01347 0.00180163 0) (1.01352 0.00177449 0) (1.01357 0.00174987 0) (1.01362 0.00172786 0) (1.01367 0.00170857 0) (1.01371 0.00169202 0) (1.01376 0.00167824 0) (1.01381 0.00166719 0) (1.01386 0.00165883 0) (1.0139 0.00165308 0) (1.01395 0.00164985 0) (1.01399 0.00164902 0) (1.01404 0.0016505 0) (1.01409 0.00165416 0) (1.01413 0.00165992 0) (1.01418 0.00166769 0) (1.01422 0.00167741 0) (1.01427 0.00168902 0) (1.01431 0.00170249 0) (1.01436 0.00171779 0) (1.01441 0.0017349 0) (1.01445 0.00175377 0) (1.0145 0.00177435 0) (1.01455 0.00179653 0) (1.0146 0.00182017 0) (1.01465 0.00184509 0) (1.0147 0.001871 0) (1.01475 0.00189761 0) (1.0148 0.0019245 0) (1.01485 0.00195126 0) (1.0149 0.00197734 0) (1.01495 0.00200232 0) (1.015 0.0020255 0) (1.01506 0.00204658 0) (1.01511 0.00206472 0) (-0.000705236 0.000417748 0) (0.000247555 -0.000765664 0) (0.00437569 -0.00188798 0) (0.00987145 -0.00233795 0) (0.0156219 -0.00219239 0) (0.020833 -0.00172235 0) (0.0251295 -0.00113098 0) (0.0284054 -0.000527667 0) (0.0306691 3.56658e-05 0) (0.0319865 0.00053408 0) (0.0324573 0.000957223 0) (0.0321825 0.00128907 0) (0.0313101 0.00151311 0) (0.0299934 0.00161893 0) (0.0284063 0.00159339 0) (0.0267549 0.00142145 0) (0.025263 0.00108424 0) (0.0241844 0.000555569 0) (0.0238312 -0.000181795 0) (0.024537 -0.00114395 0) (0.0266131 -0.00230834 0) (0.030207 -0.00354924 0) (0.0354979 -0.00457051 0) (0.042002 -0.00497541 0) (0.0487181 -0.00469448 0) (0.055045 -0.00409514 0) (0.0599991 -0.00234961 0) (0.0617548 0.000788477 0) (0.0587738 0.0048009 0) (0.0510369 0.00877189 0) (0.0393464 0.0122801 0) (0.0243494 0.0144739 0) (0.00746884 0.0136633 0) (-0.0084049 0.00943678 0) (-0.0217246 0.00315159 0) (-0.0333618 -0.00206061 0) (-0.0446514 -0.00282884 0) (-0.0569262 0.000798323 0) (-0.0711714 0.00430196 0) (-0.0847258 0.00406499 0) (-0.0942166 0.00156227 0) (-0.0991126 -0.00147193 0) (-0.100878 -0.00527803 0) (-0.104007 -0.0101996 0) (-0.116637 -0.0148472 0) (-0.14655 -0.0104148 0) (-0.196837 0.0191723 0) (-0.269275 0.0669793 0) (-0.35338 0.0807172 0) (-0.415211 0.0441425 0) (-0.44436 0.0162696 0) (-0.466646 0.0185286 0) (-0.489322 0.0180974 0) (-0.501528 0.0076901 0) (-0.502219 0.000786873 0) (-0.495053 -0.00249413 0) (-0.481383 -0.00672498 0) (-0.460711 -0.0112377 0) (-0.433997 -0.0150238 0) (-0.401983 -0.0184104 0) (-0.364984 -0.0215293 0) (-0.323493 -0.0244889 0) (-0.277626 -0.0274057 0) (-0.227451 -0.0303221 0) (-0.17286 -0.0332851 0) (-0.113758 -0.0362206 0) (-0.0503582 -0.0389045 0) (0.0175123 -0.0408558 0) (0.089643 -0.0437689 0) (0.164672 -0.0461115 0) (0.241056 -0.0471096 0) (0.317584 -0.0469217 0) (0.392659 -0.0457475 0) (0.464879 -0.0427897 0) (0.531232 -0.0373932 0) (0.588241 -0.0294938 0) (0.631783 -0.0164125 0) (0.654611 0.000792793 0) (0.654031 0.0211384 0) (0.619811 0.0504776 0) (0.542903 0.0742225 0) (0.439426 0.109313 0) (0.268319 0.125259 0) (0.103604 0.0519843 0) (0.0203506 -0.00531915 0) (-0.0187385 -0.0067423 0) (-0.0288804 -0.00402136 0) (-0.0333033 -0.00269065 0) (-0.0359455 -0.00209532 0) (-0.0381982 -0.0019488 0) (-0.0396712 -0.00206597 0) (-0.0399088 -0.00232049 0) (-0.0385505 -0.00267973 0) (-0.0355448 -0.00320149 0) (-0.0309817 -0.0037717 0) (-0.0250243 -0.00411878 0) (-0.0182512 -0.00405457 0) (-0.0120896 -0.00378739 0) (-0.00722086 -0.00421128 0) (-0.0028169 -0.00440548 0) (-0.000684011 0.000208255 0) (0.00169458 -0.00559982 0) (0.00781782 -0.0102901 0) (0.0151317 -0.0120755 0) (0.0225175 -0.0117442 0) (0.0292928 -0.0103071 0) (0.0351601 -0.00842152 0) (0.040051 -0.0064314 0) (0.0439722 -0.00450188 0) (0.0469697 -0.00271453 0) (0.0491037 -0.00111557 0) (0.0504865 0.000256606 0) (0.0511789 0.00135574 0) (0.0513024 0.00214033 0) (0.0510062 0.00257133 0) (0.0504748 0.00259404 0) (0.0499275 0.00216063 0) (0.0495971 0.00119862 0) (0.0497224 -0.000347535 0) (0.050621 -0.0025081 0) (0.0526081 -0.00509228 0) (0.0557491 -0.00797461 0) (0.0603871 -0.0108342 0) (0.0661409 -0.0123895 0) (0.0724192 -0.0118348 0) (0.0780994 -0.0101212 0) (0.0822106 -0.00594882 0) (0.0836369 0.00115126 0) (0.0810824 0.00912974 0) (0.0743345 0.0161188 0) (0.0639384 0.0218072 0) (0.0500434 0.0264142 0) (0.0323461 0.0287061 0) (0.0101598 0.0289922 0) (-0.0163894 0.0301243 0) (-0.0470165 0.0326196 0) (-0.0803119 0.0342571 0) (-0.112176 0.0348314 0) (-0.141111 0.0327237 0) (-0.167359 0.0263504 0) (-0.190582 0.0174004 0) (-0.213128 0.00938423 0) (-0.241801 0.00976487 0) (-0.284522 0.0297603 0) (-0.345334 0.072374 0) (-0.416986 0.117152 0) (-0.473539 0.135077 0) (-0.497982 0.123169 0) (-0.509221 0.0935149 0) (-0.529067 0.0627227 0) (-0.555864 0.0487119 0) (-0.576273 0.0412262 0) (-0.583959 0.0258239 0) (-0.584426 0.00769011 0) (-0.580143 -0.0078591 0) (-0.569024 -0.0223093 0) (-0.55044 -0.0358894 0) (-0.526313 -0.0479082 0) (-0.497008 -0.0586943 0) (-0.462881 -0.0685468 0) (-0.424593 -0.0775623 0) (-0.382454 -0.0860274 0) (-0.336702 -0.0942972 0) (-0.287226 -0.102694 0) (-0.23389 -0.111415 0) (-0.176394 -0.120477 0) (-0.114419 -0.129577 0) (-0.0478744 -0.137906 0) (0.0229898 -0.144989 0) (0.0962798 -0.1499 0) (0.170366 -0.151392 0) (0.244451 -0.150176 0) (0.317531 -0.146207 0) (0.388434 -0.138592 0) (0.457373 -0.125175 0) (0.518296 -0.102865 0) (0.570919 -0.0692192 0) (0.60539 -0.0251707 0) (0.619921 0.0267583 0) (0.619341 0.0891169 0) (0.588745 0.150126 0) (0.543629 0.214102 0) (0.46289 0.269539 0) (0.347853 0.256073 0) (0.218057 0.168163 0) (0.111101 0.0714086 0) (0.0571644 0.0221017 0) (0.0293388 0.0100674 0) (0.011888 0.00827131 0) (-0.000719636 0.00685669 0) (-0.0103639 0.00441338 0) (-0.0173226 0.00106298 0) (-0.0216903 -0.00277055 0) (-0.0234662 -0.00646767 0) (-0.0224629 -0.00976268 0) (-0.0187847 -0.0123247 0) (-0.0129265 -0.0128678 0) (-0.00677728 -0.0103457 0) (-0.0030673 -0.00778819 0) (-0.00194679 -0.00829913 0) (-0.00044435 -0.000840926 0) (0.00325463 -0.0115225 0) (0.0100152 -0.0189982 0) (0.0171721 -0.0213159 0) (0.0239774 -0.0203617 0) (0.0300691 -0.0178959 0) (0.0353437 -0.0148862 0) (0.0398014 -0.0117807 0) (0.0434499 -0.00877776 0) (0.046301 -0.00598473 0) (0.0483893 -0.00346805 0) (0.0497456 -0.00128361 0) (0.0504622 0.000498071 0) (0.0506573 0.0018165 0) (0.0504562 0.00260159 0) (0.0499913 0.002766 0) (0.0494285 0.00223165 0) (0.048976 0.000888698 0) (0.0488624 -0.00139441 0) (0.0494072 -0.00466243 0) (0.0508855 -0.00857334 0) (0.0535042 -0.0130442 0) (0.0574685 -0.017729 0) (0.0621382 -0.020721 0) (0.0664515 -0.0207558 0) (0.0675574 -0.0181313 0) (0.0645415 -0.0106389 0) (0.0587583 0.00194481 0) (0.0499494 0.0162944 0) (0.0379292 0.0297592 0) (0.0230796 0.0422608 0) (0.00502404 0.0534097 0) (-0.0162086 0.0620533 0) (-0.0413115 0.0680869 0) (-0.0694403 0.0726084 0) (-0.098881 0.0753498 0) (-0.129628 0.0762423 0) (-0.160881 0.0757442 0) (-0.192236 0.0720592 0) (-0.224353 0.0646481 0) (-0.258855 0.0582432 0) (-0.300676 0.0622893 0) (-0.356026 0.0850514 0) (-0.420358 0.120403 0) (-0.474824 0.147874 0) (-0.508122 0.154408 0) (-0.524623 0.144576 0) (-0.534004 0.13009 0) (-0.54917 0.115025 0) (-0.575194 0.0990223 0) (-0.599901 0.0818817 0) (-0.612144 0.0580901 0) (-0.615888 0.0296021 0) (-0.615432 0.00413324 0) (-0.608177 -0.0184938 0) (-0.593102 -0.0409464 0) (-0.57208 -0.0619796 0) (-0.546231 -0.0806051 0) (-0.515932 -0.0972868 0) (-0.481971 -0.112253 0) (-0.445186 -0.125663 0) (-0.405895 -0.138137 0) (-0.364083 -0.150437 0) (-0.319811 -0.16304 0) (-0.272975 -0.176321 0) (-0.223071 -0.190569 0) (-0.169385 -0.205427 0) (-0.111488 -0.219494 0) (-0.0498662 -0.230654 0) (0.0139194 -0.237549 0) (0.0784724 -0.239379 0) (0.142348 -0.237433 0) (0.205209 -0.232599 0) (0.267789 -0.224304 0) (0.329873 -0.207152 0) (0.388839 -0.175197 0) (0.43926 -0.125487 0) (0.475439 -0.0592404 0) (0.493834 0.0165077 0) (0.49905 0.100096 0) (0.48453 0.182299 0) (0.461538 0.263912 0) (0.433871 0.343722 0) (0.379786 0.367028 0) (0.291711 0.302144 0) (0.201016 0.192239 0) (0.131009 0.101942 0) (0.0827862 0.0552662 0) (0.0521387 0.0364342 0) (0.0312487 0.0266812 0) (0.0160252 0.0190727 0) (0.00460706 0.0121026 0) (-0.0041183 0.00527101 0) (-0.0105642 -0.00201692 0) (-0.0144637 -0.00961608 0) (-0.0153542 -0.0162179 0) (-0.0128231 -0.0194933 0) (-0.00785505 -0.0162703 0) (-0.00364083 -0.0102741 0) (-0.00224973 -0.0107701 0) (-2.32093e-05 -0.00321722 0) (0.00493249 -0.0186011 0) (0.0118295 -0.0276906 0) (0.0183927 -0.0297065 0) (0.024313 -0.0278616 0) (0.0295181 -0.0244299 0) (0.0340186 -0.0204754 0) (0.0377897 -0.0164259 0) (0.0407759 -0.0124673 0) (0.0429217 -0.00871511 0) (0.0441995 -0.00525779 0) (0.0446538 -0.00219995 0) (0.0443724 0.00034106 0) (0.0434669 0.00228498 0) (0.0420341 0.00352841 0) (0.0402236 0.00395013 0) (0.0381987 0.0034445 0) (0.0361247 0.00186478 0) (0.0342324 -0.00094146 0) (0.0328539 -0.00509544 0) (0.0324095 -0.0102419 0) (0.0328208 -0.0167065 0) (0.0317073 -0.0229159 0) (0.026912 -0.0239147 0) (0.0192384 -0.0174184 0) (0.00858786 -0.00656444 0) (-0.00266694 0.00630035 0) (-0.0121153 0.0208332 0) (-0.0197912 0.0353624 0) (-0.0275748 0.0494426 0) (-0.036989 0.0631514 0) (-0.049538 0.0761454 0) (-0.0660748 0.0876482 0) (-0.0869242 0.0969667 0) (-0.111232 0.104347 0) (-0.137702 0.109475 0) (-0.166007 0.112681 0) (-0.196025 0.114336 0) (-0.228462 0.113221 0) (-0.265053 0.110458 0) (-0.308 0.113038 0) (-0.359479 0.129232 0) (-0.417097 0.157016 0) (-0.469663 0.180278 0) (-0.503669 0.183802 0) (-0.519129 0.170425 0) (-0.53179 0.157503 0) (-0.553728 0.153519 0) (-0.582169 0.146968 0) (-0.606479 0.125396 0) (-0.620415 0.09331 0) (-0.627752 0.0607324 0) (-0.632231 0.0303735 0) (-0.629649 -0.000856275 0) (-0.617036 -0.0342948 0) (-0.597419 -0.0660619 0) (-0.573199 -0.0933595 0) (-0.544553 -0.117253 0) (-0.512497 -0.13845 0) (-0.478647 -0.156558 0) (-0.443616 -0.172285 0) (-0.407329 -0.187044 0) (-0.369957 -0.201557 0) (-0.331903 -0.216219 0) (-0.293158 -0.231956 0) (-0.253048 -0.249733 0) (-0.210525 -0.269262 0) (-0.164654 -0.28836 0) (-0.115357 -0.303574 0) (-0.0638923 -0.311904 0) (-0.0119576 -0.313169 0) (0.0387932 -0.310105 0) (0.0873866 -0.30585 0) (0.135915 -0.299329 0) (0.185221 -0.282635 0) (0.23344 -0.243668 0) (0.274893 -0.177596 0) (0.305621 -0.0917259 0) (0.324878 0.00459358 0) (0.33501 0.104645 0) (0.331956 0.198307 0) (0.321068 0.286498 0) (0.312785 0.375761 0) (0.295966 0.420179 0) (0.252914 0.378226 0) (0.200454 0.27582 0) (0.150368 0.174036 0) (0.107725 0.108032 0) (0.0764967 0.0725265 0) (0.0541154 0.0520085 0) (0.0370936 0.0377465 0) (0.0233321 0.0262577 0) (0.01205 0.0161032 0) (0.0030303 0.00642559 0) (-0.00413674 -0.00365993 0) (-0.00933603 -0.0143001 0) (-0.0113026 -0.0223432 0) (-0.00938772 -0.0217141 0) (-0.00533956 -0.0146182 0) (-0.00267746 -0.0154605 0) (0.000521339 -0.00679485 0) (0.00637371 -0.0262383 0) (0.0130264 -0.03572 0) (0.0189026 -0.0368815 0) (0.0240629 -0.0341206 0) (0.028613 -0.0298763 0) (0.0325188 -0.0251008 0) (0.0356474 -0.0201313 0) (0.0378319 -0.01512 0) (0.0389488 -0.0102187 0) (0.0389803 -0.005603 0) (0.0379902 -0.00146103 0) (0.036071 0.00202158 0) (0.0333019 0.00476318 0) (0.0297572 0.00663792 0) (0.0255279 0.0075589 0) (0.0207621 0.00736535 0) (0.0157051 0.0058889 0) (0.0106927 0.00269668 0) (0.00566892 -0.00256211 0) (-0.000183866 -0.00864651 0) (-0.00798976 -0.011938 0) (-0.0198004 -0.00998041 0) (-0.033732 -0.00478921 0) (-0.0451351 0.00161666 0) (-0.0521614 0.00799353 0) (-0.0544655 0.0145267 0) (-0.0535034 0.0241295 0) (-0.0518433 0.0373133 0) (-0.051827 0.0538469 0) (-0.055823 0.0729808 0) (-0.065527 0.0928735 0) (-0.0815916 0.111136 0) (-0.103729 0.12589 0) (-0.130198 0.136581 0) (-0.158805 0.143713 0) (-0.188469 0.148858 0) (-0.219121 0.153377 0) (-0.252304 0.157173 0) (-0.290737 0.161788 0) (-0.336057 0.172838 0) (-0.386767 0.193799 0) (-0.436228 0.215529 0) (-0.474598 0.221289 0) (-0.497907 0.20808 0) (-0.515418 0.192978 0) (-0.539892 0.190189 0) (-0.570352 0.19026 0) (-0.596352 0.174944 0) (-0.614174 0.143408 0) (-0.627934 0.108428 0) (-0.638702 0.0736325 0) (-0.640875 0.0325743 0) (-0.631391 -0.0141478 0) (-0.613894 -0.0579304 0) (-0.591217 -0.0948148 0) (-0.563127 -0.127182 0) (-0.531109 -0.155608 0) (-0.497794 -0.178797 0) (-0.464398 -0.197455 0) (-0.43106 -0.21376 0) (-0.397777 -0.229028 0) (-0.364849 -0.243456 0) (-0.332753 -0.257607 0) (-0.301781 -0.273175 0) (-0.271713 -0.291986 0) (-0.241492 -0.314259 0) (-0.209458 -0.337394 0) (-0.174569 -0.356258 0) (-0.137225 -0.365893 0) (-0.0989596 -0.365275 0) (-0.0624795 -0.358886 0) (-0.030164 -0.352517 0) (-0.00125785 -0.346263 0) (0.0266563 -0.329337 0) (0.0562153 -0.284168 0) (0.0849746 -0.209411 0) (0.109638 -0.115137 0) (0.129252 -0.00954247 0) (0.144792 0.0984504 0) (0.153018 0.199291 0) (0.154668 0.293767 0) (0.158913 0.384958 0) (0.163123 0.435647 0) (0.156086 0.405981 0) (0.143026 0.315105 0) (0.124279 0.217697 0) (0.102069 0.146844 0) (0.0826712 0.102645 0) (0.066997 0.0751491 0) (0.0534939 0.0566857 0) (0.040793 0.0426117 0) (0.0285248 0.0301179 0) (0.0172603 0.0179329 0) (0.00760594 0.00567038 0) (-0.000417154 -0.00732863 0) (-0.00626491 -0.0195829 0) (-0.00820404 -0.0238212 0) (-0.00574307 -0.0186404 0) (-0.00266759 -0.0206219 0) (0.0011213 -0.0114801 0) (0.0074831 -0.0340385 0) (0.0136964 -0.0430426 0) (0.0189562 -0.0432239 0) (0.0235417 -0.0397136 0) (0.0275352 -0.0347672 0) (0.0307597 -0.0290963 0) (0.0329221 -0.0229388 0) (0.0338155 -0.0165261 0) (0.0333569 -0.0101365 0) (0.0315507 -0.00406866 0) (0.0284748 0.00141523 0) (0.0241616 0.00614525 0) (0.0187587 0.0100908 0) (0.0123948 0.0131034 0) (0.00495189 0.0149989 0) (-0.00328404 0.015497 0) (-0.0123151 0.0141699 0) (-0.0221963 0.0113358 0) (-0.0331353 0.00819426 0) (-0.046091 0.0063888 0) (-0.060169 0.00647635 0) (-0.0724766 0.00705753 0) (-0.0800407 0.00675333 0) (-0.081109 0.00567423 0) (-0.0759857 0.00557427 0) (-0.0666342 0.0090534 0) (-0.0555221 0.0179511 0) (-0.0452447 0.033028 0) (-0.0383838 0.054181 0) (-0.0375528 0.0801765 0) (-0.0447883 0.108498 0) (-0.0612745 0.135556 0) (-0.0871055 0.157735 0) (-0.120318 0.172906 0) (-0.156999 0.181666 0) (-0.193654 0.187274 0) (-0.228924 0.193388 0) (-0.264341 0.201703 0) (-0.303239 0.213125 0) (-0.347094 0.229595 0) (-0.39292 0.249653 0) (-0.434032 0.261927 0) (-0.464693 0.254459 0) (-0.486912 0.234539 0) (-0.510864 0.22394 0) (-0.542098 0.227202 0) (-0.573502 0.223908 0) (-0.597331 0.199845 0) (-0.61559 0.163147 0) (-0.63111 0.123396 0) (-0.639278 0.0768908 0) (-0.636519 0.0220072 0) (-0.625794 -0.0325258 0) (-0.608499 -0.0815162 0) (-0.582827 -0.126361 0) (-0.550903 -0.165367 0) (-0.516645 -0.195935 0) (-0.481936 -0.219072 0) (-0.448165 -0.237233 0) (-0.416222 -0.252668 0) (-0.385858 -0.266793 0) (-0.356669 -0.279791 0) (-0.328911 -0.291875 0) (-0.303508 -0.30471 0) (-0.281228 -0.32117 0) (-0.261552 -0.343187 0) (-0.242538 -0.368797 0) (-0.221993 -0.39134 0) (-0.198713 -0.403023 0) (-0.173177 -0.400694 0) (-0.148659 -0.388633 0) (-0.13024 -0.375339 0) (-0.120928 -0.365095 0) (-0.116819 -0.348737 0) (-0.108956 -0.307195 0) (-0.0952929 -0.233982 0) (-0.0790895 -0.13864 0) (-0.0614466 -0.0310623 0) (-0.0446512 0.0802961 0) (-0.0297459 0.18657 0) (-0.0191914 0.287509 0) (-0.00608226 0.379554 0) (0.016233 0.425646 0) (0.0450322 0.394075 0) (0.0675831 0.313551 0) (0.0790492 0.227848 0) (0.0799926 0.161857 0) (0.076458 0.117478 0) (0.0708072 0.0891028 0) (0.0634302 0.0706506 0) (0.0540913 0.057198 0) (0.042909 0.0450419 0) (0.0307621 0.0320743 0) (0.0190277 0.018007 0) (0.00875581 0.00286621 0) (0.000382385 -0.0127144 0) (-0.00488618 -0.0223432 0) (-0.00486738 -0.0213603 0) (-0.00234767 -0.0255124 0) (0.00170572 -0.0170241 0) (0.00821308 -0.0416669 0) (0.0138261 -0.0496412 0) (0.0184106 -0.0488256 0) (0.0222934 -0.044569 0) (0.0254195 -0.0386972 0) (0.0274352 -0.0316931 0) (0.0280527 -0.0239004 0) (0.0271338 -0.0156923 0) (0.0246177 -0.00748171 0) (0.0205339 0.000360968 0) (0.0149897 0.00753328 0) (0.00801078 0.0137706 0) (-0.00030469 0.0190144 0) (-0.00994218 0.0232715 0) (-0.0212835 0.0264281 0) (-0.0342026 0.0284981 0) (-0.0483919 0.0290586 0) (-0.0631052 0.0279631 0) (-0.0776398 0.0257259 0) (-0.0913578 0.0231912 0) (-0.102252 0.019857 0) (-0.107457 0.0139957 0) (-0.105308 0.00547938 0) (-0.0962694 -0.00361918 0) (-0.0825771 -0.0102502 0) (-0.067345 -0.0111171 0) (-0.0528381 -0.00348887 0) (-0.0401635 0.0140013 0) (-0.030911 0.0412731 0) (-0.0272177 0.07676 0) (-0.0309915 0.11714 0) (-0.0440317 0.157695 0) (-0.0678048 0.1926 0) (-0.102233 0.216654 0) (-0.144056 0.228537 0) (-0.187661 0.232844 0) (-0.228775 0.237039 0) (-0.267158 0.246303 0) (-0.305789 0.261532 0) (-0.34666 0.280449 0) (-0.387331 0.29713 0) (-0.422595 0.3008 0) (-0.450221 0.285771 0) (-0.474551 0.26551 0) (-0.502624 0.259742 0) (-0.534922 0.264073 0) (-0.564758 0.255256 0) (-0.588323 0.224873 0) (-0.607691 0.183323 0) (-0.62268 0.136019 0) (-0.630186 0.0798376 0) (-0.630151 0.0171865 0) (-0.622087 -0.0463955 0) (-0.602931 -0.108412 0) (-0.574326 -0.163467 0) (-0.540712 -0.206753 0) (-0.503916 -0.239049 0) (-0.46658 -0.261824 0) (-0.432276 -0.277006 0) (-0.402 -0.288879 0) (-0.374712 -0.300533 0) (-0.349265 -0.311695 0) (-0.325437 -0.321103 0) (-0.304181 -0.329537 0) (-0.286921 -0.34068 0) (-0.274362 -0.358736 0) (-0.265412 -0.383751 0) (-0.257339 -0.408931 0) (-0.247312 -0.424055 0) (-0.233775 -0.42261 0) (-0.21839 -0.405593 0) (-0.207307 -0.381288 0) (-0.208716 -0.360072 0) (-0.223613 -0.340938 0) (-0.239351 -0.304997 0) (-0.245245 -0.238937 0) (-0.242631 -0.148951 0) (-0.233182 -0.0441583 0) (-0.219861 0.06696 0) (-0.202951 0.175373 0) (-0.182257 0.274414 0) (-0.14924 0.351694 0) (-0.0997897 0.378383 0) (-0.0435353 0.343446 0) (0.0050032 0.276014 0) (0.0373492 0.20762 0) (0.0553271 0.15368 0) (0.0640202 0.116417 0) (0.0665927 0.0927291 0) (0.0648125 0.0780057 0) (0.0593643 0.0678013 0) (0.0506444 0.0583104 0) (0.0394473 0.0466806 0) (0.027217 0.032134 0) (0.0156858 0.0153506 0) (0.00596432 -0.00302875 0) (-0.00127217 -0.0174994 0) (-0.00351642 -0.0217353 0) (-0.00207009 -0.0292119 0) (0.00221181 -0.023155 0) (0.00841128 -0.048778 0) (0.0131176 -0.0552839 0) (0.0167251 -0.0533865 0) (0.0195172 -0.0481476 0) (0.0212671 -0.0409639 0) (0.0216454 -0.0322846 0) (0.0203993 -0.022583 0) (0.0174321 -0.0124 0) (0.0127514 -0.00217359 0) (0.00637022 0.00749164 0) (-0.00178184 0.0163768 0) (-0.011742 0.0243119 0) (-0.0237855 0.0314679 0) (-0.0381447 0.038225 0) (-0.0546179 0.0441412 0) (-0.0718524 0.0478686 0) (-0.0883281 0.0482261 0) (-0.103376 0.0457372 0) (-0.116941 0.0416537 0) (-0.127774 0.0355551 0) (-0.133316 0.025535 0) (-0.132046 0.0109219 0) (-0.125 -0.00620744 0) (-0.115702 -0.0214557 0) (-0.107627 -0.0295622 0) (-0.100654 -0.0273833 0) (-0.0917676 -0.014819 0) (-0.0797121 0.00749833 0) (-0.0666529 0.039459 0) (-0.0565777 0.0805465 0) (-0.0531478 0.128367 0) (-0.0583792 0.178444 0) (-0.0738093 0.225003 0) (-0.100942 0.260632 0) (-0.139004 0.279508 0) (-0.182967 0.284138 0) (-0.226221 0.284836 0) (-0.265706 0.291461 0) (-0.302818 0.306721 0) (-0.339776 0.325525 0) (-0.375626 0.338307 0) (-0.406919 0.335557 0) (-0.433204 0.316963 0) (-0.458842 0.298597 0) (-0.487815 0.296022 0) (-0.518619 0.29928 0) (-0.546613 0.285537 0) (-0.570091 0.250108 0) (-0.590111 0.203572 0) (-0.605835 0.149688 0) (-0.615495 0.0857656 0) (-0.617163 0.0127708 0) (-0.607767 -0.0647478 0) (-0.587354 -0.138892 0) (-0.559109 -0.201607 0) (-0.524434 -0.250906 0) (-0.485367 -0.286135 0) (-0.447044 -0.306213 0) (-0.413271 -0.315514 0) (-0.384872 -0.321848 0) (-0.361013 -0.329654 0) (-0.340155 -0.338376 0) (-0.321249 -0.345458 0) (-0.304417 -0.350087 0) (-0.291001 -0.355309 0) (-0.282815 -0.366855 0) (-0.280183 -0.387834 0) (-0.280988 -0.413133 0) (-0.281901 -0.43169 0) (-0.279595 -0.434622 0) (-0.272222 -0.418178 0) (-0.262686 -0.385075 0) (-0.261085 -0.346468 0) (-0.278892 -0.313994 0) (-0.310138 -0.280005 0) (-0.334639 -0.224098 0) (-0.346147 -0.144214 0) (-0.346165 -0.0499003 0) (-0.334832 0.0507117 0) (-0.312113 0.148157 0) (-0.275874 0.230652 0) (-0.222836 0.284443 0) (-0.156685 0.296131 0) (-0.0890411 0.26674 0) (-0.0316437 0.21762 0) (0.00820971 0.16959 0) (0.0330757 0.131676 0) (0.0476712 0.105267 0) (0.055023 0.0890234 0) (0.057198 0.0798354 0) (0.0551872 0.074168 0) (0.0493309 0.0685163 0) (0.0402207 0.0596115 0) (0.029105 0.0459032 0) (0.0178293 0.0282227 0) (0.00813223 0.00758735 0) (0.000488407 -0.0109269 0) (-0.00282433 -0.0204196 0) (-0.00206973 -0.0320259 0) (0.00254926 -0.0294142 0) (0.00784744 -0.0548152 0) (0.0112424 -0.0595174 0) (0.013482 -0.0564174 0) (0.0147718 -0.0500058 0) (0.0147829 -0.0412888 0) (0.0131359 -0.0307204 0) (0.00960328 -0.0189722 0) (0.00428586 -0.00667116 0) (-0.0030017 0.00558576 0) (-0.0124721 0.0174162 0) (-0.0240809 0.0286684 0) (-0.038231 0.0394945 0) (-0.0550226 0.0500204 0) (-0.0735638 0.0594075 0) (-0.0921145 0.0657888 0) (-0.109005 0.0677743 0) (-0.123902 0.0658047 0) (-0.137338 0.06134 0) (-0.148869 0.0543023 0) (-0.156525 0.0426406 0) (-0.159073 0.0251892 0) (-0.158415 0.00441276 0) (-0.159004 -0.0136512 0) (-0.16325 -0.0235652 0) (-0.166004 -0.0267796 0) (-0.158761 -0.0290564 0) (-0.141196 -0.0286304 0) (-0.120881 -0.0157243 0) (-0.103714 0.0158393 0) (-0.092109 0.0643573 0) (-0.0869684 0.123661 0) (-0.0888116 0.186502 0) (-0.0984284 0.245929 0) (-0.117347 0.294756 0) (-0.147161 0.32462 0) (-0.185695 0.333647 0) (-0.226331 0.332416 0) (-0.263858 0.335218 0) (-0.297818 0.348023 0) (-0.330021 0.36508 0) (-0.360884 0.37446 0) (-0.388721 0.367457 0) (-0.413569 0.347449 0) (-0.438591 0.331025 0) (-0.465777 0.329829 0) (-0.493524 0.331406 0) (-0.519145 0.314259 0) (-0.541555 0.275133 0) (-0.560461 0.223954 0) (-0.574863 0.16399 0) (-0.583327 0.0920482 0) (-0.583319 0.00815433 0) (-0.573386 -0.0813123 0) (-0.554957 -0.165935 0) (-0.52856 -0.238533 0) (-0.494708 -0.29545 0) (-0.457253 -0.33248 0) (-0.421072 -0.349042 0) (-0.389396 -0.351974 0) (-0.363769 -0.3512 0) (-0.343696 -0.353187 0) (-0.327545 -0.35831 0) (-0.313985 -0.363178 0) (-0.302347 -0.365139 0) (-0.29331 -0.365526 0) (-0.288767 -0.370354 0) (-0.289916 -0.385298 0) (-0.295895 -0.40761 0) (-0.304185 -0.427117 0) (-0.311498 -0.435195 0) (-0.313716 -0.426286 0) (-0.307531 -0.3955 0) (-0.296283 -0.345526 0) (-0.294902 -0.291965 0) (-0.315708 -0.247388 0) (-0.345372 -0.19965 0) (-0.36416 -0.133824 0) (-0.368545 -0.0555607 0) (-0.357712 0.0264143 0) (-0.330957 0.103622 0) (-0.288369 0.165363 0) (-0.230737 0.202159 0) (-0.165235 0.208145 0) (-0.102423 0.189787 0) (-0.0508947 0.159927 0) (-0.0134098 0.130111 0) (0.0117091 0.106251 0) (0.0276614 0.0901786 0) (0.0372586 0.0813651 0) (0.041817 0.0779564 0) (0.0422606 0.0770757 0) (0.0389687 0.0756309 0) (0.0322163 0.0699408 0) (0.0232712 0.0577532 0) (0.0137289 0.0397621 0) (0.00556252 0.0173424 0) (-0.000965902 -0.00443498 0) (-0.00374284 -0.0187889 0) (-0.00249409 -0.0348551 0) (0.0026019 -0.0351351 0) (0.0063357 -0.0591317 0) (0.00797504 -0.0618722 0) (0.00843185 -0.0575496 0) (0.00770813 -0.0497581 0) (0.00521006 -0.0391678 0) (0.000577004 -0.0264015 0) (-0.00622332 -0.0123194 0) (-0.0151217 0.00234559 0) (-0.0261057 0.0171084 0) (-0.039202 0.0318129 0) (-0.0546881 0.0463278 0) (-0.0723614 0.0602894 0) (-0.0911691 0.0725445 0) (-0.109359 0.0812986 0) (-0.125532 0.0851888 0) (-0.139597 0.0845651 0) (-0.152531 0.080953 0) (-0.164669 0.0747467 0) (-0.174843 0.0641812 0) (-0.182115 0.0478324 0) (-0.188301 0.0281328 0) (-0.197598 0.0111432 0) (-0.211171 -0.000323987 0) (-0.220889 -0.0136082 0) (-0.21556 -0.0360429 0) (-0.197586 -0.0573669 0) (-0.178914 -0.0592388 0) (-0.163641 -0.0364973 0) (-0.150188 0.00518734 0) (-0.139487 0.0596426 0) (-0.133285 0.123061 0) (-0.132151 0.19162 0) (-0.136552 0.259327 0) (-0.147716 0.318313 0) (-0.167566 0.359121 0) (-0.196865 0.375288 0) (-0.230958 0.374569 0) (-0.263463 0.374182 0) (-0.292396 0.383799 0) (-0.319017 0.398536 0) (-0.344441 0.405503 0) (-0.368365 0.396188 0) (-0.390825 0.375771 0) (-0.413321 0.36049 0) (-0.436529 0.359273 0) (-0.459487 0.359087 0) (-0.480977 0.339677 0) (-0.499793 0.297398 0) (-0.514801 0.241396 0) (-0.525062 0.1751 0) (-0.529474 0.095358 0) (-0.526664 0.00248159 0) (-0.516685 -0.0959058 0) (-0.500361 -0.189464 0) (-0.477331 -0.271008 0) (-0.448452 -0.334579 0) (-0.416666 -0.373724 0) (-0.386079 -0.387552 0) (-0.360032 -0.384185 0) (-0.339597 -0.375988 0) (-0.323942 -0.371715 0) (-0.312155 -0.372387 0) (-0.30344 -0.374349 0) (-0.296784 -0.373947 0) (-0.292361 -0.370756 0) (-0.291556 -0.370166 0) (-0.295558 -0.379252 0) (-0.304368 -0.39715 0) (-0.316414 -0.41476 0) (-0.329565 -0.424603 0) (-0.34129 -0.423459 0) (-0.345803 -0.404873 0) (-0.336651 -0.361124 0) (-0.317624 -0.29647 0) (-0.307106 -0.230428 0) (-0.316223 -0.175912 0) (-0.329934 -0.121736 0) (-0.333174 -0.0599426 0) (-0.322311 0.00347711 0) (-0.296907 0.0608852 0) (-0.257751 0.105244 0) (-0.207915 0.130895 0) (-0.154868 0.136559 0) (-0.105825 0.128159 0) (-0.0656651 0.112335 0) (-0.0350227 0.0957801 0) (-0.0128244 0.0824454 0) (0.00253282 0.0746932 0) (0.0127041 0.0723592 0) (0.0187554 0.0741953 0) (0.0211425 0.0776978 0) (0.0202736 0.0801363 0) (0.0161256 0.0774202 0) (0.00997936 0.0666911 0) (0.00335662 0.0484853 0) (-0.0019222 0.0245069 0) (-0.00602167 7.82428e-05 0) (-0.00661933 -0.0187512 0) (-0.0033092 -0.0390696 0) (0.00227374 -0.039538 0) (0.0037802 -0.0610928 0) (0.00320265 -0.0618239 0) (0.00124486 -0.0560703 0) (-0.00250177 -0.0462857 0) (-0.00887838 -0.0330319 0) (-0.0178596 -0.0174974 0) (-0.0290089 -0.000861348 0) (-0.0418133 0.0161687 0) (-0.0560929 0.0333849 0) (-0.0719916 0.0506569 0) (-0.0892118 0.0672775 0) (-0.106862 0.0819322 0) (-0.123559 0.0929417 0) (-0.138213 0.0990755 0) (-0.150907 0.100522 0) (-0.162799 0.0987527 0) (-0.174835 0.0946693 0) (-0.18668 0.0871687 0) (-0.197658 0.0746493 0) (-0.208927 0.0584127 0) (-0.22378 0.0431625 0) (-0.243105 0.0306386 0) (-0.259256 0.0128722 0) (-0.261443 -0.0184025 0) (-0.251534 -0.0538878 0) (-0.241556 -0.0736515 0) (-0.233595 -0.0714747 0) (-0.221742 -0.0514445 0) (-0.207083 -0.0121499 0) (-0.194705 0.0468613 0) (-0.18674 0.118045 0) (-0.18289 0.193089 0) (-0.182647 0.266673 0) (-0.186843 0.332688 0) (-0.19702 0.382034 0) (-0.215118 0.406114 0) (-0.239797 0.408058 0) (-0.264963 0.405672 0) (-0.287117 0.412411 0) (-0.307168 0.425082 0) (-0.326606 0.430672 0) (-0.345806 0.420593 0) (-0.364646 0.400246 0) (-0.383052 0.385002 0) (-0.40057 0.382442 0) (-0.416907 0.38024 0) (-0.431949 0.358977 0) (-0.444777 0.313828 0) (-0.45399 0.252995 0) (-0.458544 0.180469 0) (-0.457959 0.094276 0) (-0.452296 -0.00450814 0) (-0.442308 -0.108743 0) (-0.427945 -0.208649 0) (-0.408601 -0.296607 0) (-0.385845 -0.364786 0) (-0.362339 -0.405265 0) (-0.341262 -0.416346 0) (-0.324662 -0.407511 0) (-0.31209 -0.393743 0) (-0.302367 -0.384612 0) (-0.295595 -0.381148 0) (-0.29147 -0.380126 0) (-0.289144 -0.377435 0) (-0.288886 -0.371236 0) (-0.291522 -0.366331 0) (-0.297906 -0.370491 0) (-0.30864 -0.384263 0) (-0.322588 -0.39947 0) (-0.337499 -0.408373 0) (-0.352752 -0.409468 0) (-0.366902 -0.401644 0) (-0.371237 -0.375937 0) (-0.356126 -0.323245 0) (-0.326171 -0.249511 0) (-0.301152 -0.176238 0) (-0.291035 -0.116295 0) (-0.286069 -0.064204 0) (-0.275709 -0.0151933 0) (-0.254848 0.0281839 0) (-0.223635 0.0612776 0) (-0.186494 0.0807029 0) (-0.148041 0.0873001 0) (-0.112976 0.0852297 0) (-0.0834749 0.0777324 0) (-0.0600021 0.06932 0) (-0.0417817 0.0629473 0) (-0.0278403 0.0605023 0) (-0.017181 0.0627072 0) (-0.00960845 0.0686252 0) (-0.00542023 0.0758542 0) (-0.0041866 0.0816824 0) (-0.00566481 0.0816602 0) (-0.00870134 0.0720069 0) (-0.0117112 0.0533386 0) (-0.0133399 0.0279044 0) (-0.0141313 0.00126434 0) (-0.0111157 -0.0220979 0) (-0.00423846 -0.0458842 0) (0.00153979 -0.0418609 0) (0.000252253 -0.0601324 0) (-0.00303389 -0.0587681 0) (-0.0082867 -0.0508684 0) (-0.0162633 -0.0380118 0) (-0.0275057 -0.0214035 0) (-0.0411354 -0.00321397 0) (-0.0559179 0.0151661 0) (-0.0712254 0.0335187 0) (-0.0870965 0.0520517 0) (-0.10331 0.0702283 0) (-0.119279 0.0867112 0) (-0.134087 0.0998598 0) (-0.146983 0.108456 0) (-0.158084 0.112474 0) (-0.168506 0.113164 0) (-0.179497 0.111814 0) (-0.191388 0.108155 0) (-0.203787 0.100712 0) (-0.21711 0.0894073 0) (-0.233434 0.0771484 0) (-0.25421 0.0660734 0) (-0.275524 0.0506157 0) (-0.288539 0.020499 0) (-0.290115 -0.0227337 0) (-0.288169 -0.0607019 0) (-0.287835 -0.0796584 0) (-0.284438 -0.0815399 0) (-0.27626 -0.0652698 0) (-0.266229 -0.0246222 0) (-0.255612 0.0374951 0) (-0.245501 0.11143 0) (-0.237384 0.189626 0) (-0.23181 0.267085 0) (-0.229252 0.337942 0) (-0.230722 0.393392 0) (-0.237679 0.424456 0) (-0.251139 0.430968 0) (-0.267486 0.428186 0) (-0.28197 0.432644 0) (-0.294542 0.443935 0) (-0.307247 0.44924 0) (-0.320899 0.439536 0) (-0.335004 0.419466 0) (-0.348202 0.403076 0) (-0.358912 0.397722 0) (-0.366969 0.392906 0) (-0.373485 0.370026 0) (-0.378568 0.322731 0) (-0.380956 0.257643 0) (-0.37954 0.179673 0) (-0.374395 0.0888247 0) (-0.366853 -0.0131956 0) (-0.357217 -0.120442 0) (-0.344638 -0.224229 0) (-0.329294 -0.315987 0) (-0.313054 -0.385733 0) (-0.298858 -0.424613 0) (-0.289293 -0.43187 0) (-0.284166 -0.418849 0) (-0.280894 -0.401949 0) (-0.278387 -0.389974 0) (-0.277487 -0.383803 0) (-0.27814 -0.380806 0) (-0.28005 -0.376356 0) (-0.283684 -0.367823 0) (-0.289208 -0.359724 0) (-0.297219 -0.359658 0) (-0.309178 -0.369305 0) (-0.324927 -0.382591 0) (-0.34144 -0.391376 0) (-0.35657 -0.391846 0) (-0.372151 -0.386004 0) (-0.387186 -0.37359 0) (-0.38989 -0.344129 0) (-0.369151 -0.288478 0) (-0.330144 -0.213633 0) (-0.290881 -0.139427 0) (-0.26136 -0.0784199 0) (-0.239626 -0.0315086 0) (-0.220274 0.00383841 0) (-0.198495 0.0293699 0) (-0.174144 0.045654 0) (-0.149333 0.0529624 0) (-0.125831 0.054327 0) (-0.105055 0.0518497 0) (-0.087509 0.0485571 0) (-0.0723956 0.0464037 0) (-0.0589376 0.0471626 0) (-0.0472287 0.0521436 0) (-0.0383983 0.0613703 0) (-0.0331071 0.0720827 0) (-0.0305764 0.0807834 0) (-0.0299576 0.0827373 0) (-0.0300369 0.0734817 0) (-0.0293475 0.0538546 0) (-0.027196 0.0269925 0) (-0.0242409 -0.00180081 0) (-0.0162898 -0.0304246 0) (-0.00448467 -0.0559285 0) (0.000472408 -0.0413942 0) (-0.00401528 -0.0558682 0) (-0.0104822 -0.0520258 0) (-0.0196371 -0.0410353 0) (-0.0322066 -0.0244293 0) (-0.047778 -0.00490822 0) (-0.0644514 0.0146148 0) (-0.080918 0.0332336 0) (-0.0968784 0.0516095 0) (-0.112275 0.0699648 0) (-0.126854 0.0873736 0) (-0.140097 0.102247 0) (-0.151536 0.113212 0) (-0.161267 0.119915 0) (-0.170219 0.123259 0) (-0.179675 0.12464 0) (-0.190399 0.124546 0) (-0.202366 0.122025 0) (-0.215591 0.116144 0) (-0.231123 0.108049 0) (-0.250506 0.100088 0) (-0.273061 0.0903234 0) (-0.293686 0.0692867 0) (-0.30672 0.0297659 0) (-0.314051 -0.0186098 0) (-0.321877 -0.0564583 0) (-0.329059 -0.0776078 0) (-0.331558 -0.0850952 0) (-0.329825 -0.0733198 0) (-0.324156 -0.0352638 0) (-0.314171 0.0258169 0) (-0.302153 0.10077 0) (-0.290658 0.180826 0) (-0.280191 0.260466 0) (-0.271002 0.334321 0) (-0.264429 0.39369 0) (-0.261541 0.429886 0) (-0.263611 0.441722 0) (-0.269902 0.440928 0) (-0.276381 0.444069 0) (-0.281255 0.454391 0) (-0.28651 0.460442 0) (-0.293765 0.452131 0) (-0.302282 0.432463 0) (-0.309742 0.413926 0) (-0.313526 0.404092 0) (-0.312947 0.395372 0) (-0.309965 0.37115 0) (-0.306187 0.32327 0) (-0.301299 0.255949 0) (-0.294426 0.174692 0) (-0.285722 0.0813832 0) (-0.276755 -0.0218819 0) (-0.267588 -0.129754 0) (-0.257171 -0.234931 0) (-0.246321 -0.327761 0) (-0.237574 -0.396368 0) (-0.233927 -0.431159 0) (-0.236724 -0.43342 0) (-0.243227 -0.417664 0) (-0.249006 -0.400248 0) (-0.253706 -0.387551 0) (-0.258547 -0.380272 0) (-0.263796 -0.376285 0) (-0.269898 -0.370654 0) (-0.277295 -0.360802 0) (-0.285449 -0.351127 0) (-0.294512 -0.348069 0) (-0.306411 -0.353343 0) (-0.322625 -0.363718 0) (-0.341161 -0.373314 0) (-0.357652 -0.375608 0) (-0.371253 -0.368768 0) (-0.386057 -0.357611 0) (-0.400861 -0.342545 0) (-0.402326 -0.312444 0) (-0.379632 -0.259444 0) (-0.337473 -0.190752 0) (-0.290161 -0.121789 0) (-0.247476 -0.0630219 0) (-0.213066 -0.0188118 0) (-0.186532 0.010026 0) (-0.165586 0.0263576 0) (-0.148582 0.0340936 0) (-0.13406 0.0362468 0) (-0.121015 0.035037 0) (-0.108666 0.0326636 0) (-0.0962452 0.0308349 0) (-0.083976 0.0323518 0) (-0.073059 0.0399323 0) (-0.0648621 0.0532605 0) (-0.0598635 0.0675734 0) (-0.0568346 0.0785529 0) (-0.0544829 0.0812004 0) (-0.0516403 0.0712028 0) (-0.0474713 0.0500922 0) (-0.0418926 0.0217681 0) (-0.034797 -0.00989264 0) (-0.0202527 -0.0451627 0) (-0.00260475 -0.0685247 0) (-0.000776609 -0.0377863 0) (-0.00855545 -0.0480372 0) (-0.0183042 -0.0413242 0) (-0.0312331 -0.0267479 0) (-0.0474819 -0.00669342 0) (-0.0656206 0.0144856 0) (-0.0834511 0.033685 0) (-0.0999189 0.0512424 0) (-0.114946 0.0684851 0) (-0.128694 0.0855578 0) (-0.141014 0.101288 0) (-0.151625 0.114139 0) (-0.160551 0.123284 0) (-0.168448 0.129124 0) (-0.176452 0.132908 0) (-0.185544 0.135631 0) (-0.196077 0.137091 0) (-0.208052 0.136248 0) (-0.221901 0.132887 0) (-0.238764 0.128537 0) (-0.259449 0.123991 0) (-0.28257 0.114175 0) (-0.304222 0.08866 0) (-0.32171 0.0441374 0) (-0.33703 -0.00586422 0) (-0.351797 -0.0446491 0) (-0.363291 -0.0694952 0) (-0.370714 -0.0815742 0) (-0.375124 -0.0744258 0) (-0.37436 -0.0420429 0) (-0.366433 0.0141591 0) (-0.353368 0.0874412 0) (-0.338996 0.167755 0) (-0.324571 0.247693 0) (-0.309304 0.322658 0) (-0.294729 0.384508 0) (-0.283272 0.424021 0) (-0.275611 0.440177 0) (-0.271823 0.442921 0) (-0.269873 0.446539 0) (-0.267264 0.456235 0) (-0.264836 0.463467 0) (-0.264943 0.457527 0) (-0.26739 0.438754 0) (-0.26926 0.417737 0) (-0.267028 0.402288 0) (-0.259209 0.38808 0) (-0.247712 0.361828 0) (-0.235395 0.314407 0) (-0.223476 0.247189 0) (-0.211839 0.165203 0) (-0.200571 0.0715724 0) (-0.190526 -0.0311469 0) (-0.181529 -0.138039 0) (-0.173079 -0.242216 0) (-0.166973 -0.332878 0) (-0.166508 -0.396784 0) (-0.174349 -0.424794 0) (-0.189654 -0.421753 0) (-0.206296 -0.405722 0) (-0.219662 -0.390207 0) (-0.230682 -0.378582 0) (-0.240452 -0.371608 0) (-0.249675 -0.367321 0) (-0.259464 -0.360846 0) (-0.270134 -0.350434 0) (-0.280675 -0.340601 0) (-0.290863 -0.336314 0) (-0.302431 -0.338154 0) (-0.317557 -0.344464 0) (-0.336269 -0.353066 0) (-0.355095 -0.358625 0) (-0.369712 -0.354704 0) (-0.380838 -0.341919 0) (-0.393934 -0.327274 0) (-0.407663 -0.31078 0) (-0.409053 -0.281856 0) (-0.388519 -0.234677 0) (-0.349581 -0.175855 0) (-0.302426 -0.116507 0) (-0.255508 -0.0643157 0) (-0.214419 -0.0236989 0) (-0.18146 0.00330222 0) (-0.156664 0.0180202 0) (-0.138569 0.0235921 0) (-0.124869 0.0235681 0) (-0.113775 0.0210374 0) (-0.104507 0.0189441 0) (-0.0971812 0.0212669 0) (-0.0919293 0.0312831 0) (-0.0877465 0.0475045 0) (-0.0844463 0.0639556 0) (-0.0813891 0.075414 0) (-0.0772499 0.0770666 0) (-0.0714725 0.065425 0) (-0.0641806 0.0426125 0) (-0.0555119 0.0124554 0) (-0.0430974 -0.0243499 0) (-0.0196503 -0.0674357 0) (0.00175779 -0.0805477 0) (-0.00203156 -0.0310495 0) (-0.0128399 -0.0368484 0) (-0.0255024 -0.0271478 0) (-0.0413437 -0.0091285 0) (-0.0597646 0.0134026 0) (-0.0788366 0.034578 0) (-0.0963688 0.0521385 0) (-0.111623 0.0677411 0) (-0.125012 0.0832287 0) (-0.136905 0.098606 0) (-0.14728 0.112502 0) (-0.156055 0.123582 0) (-0.163549 0.131571 0) (-0.170599 0.137323 0) (-0.178192 0.142034 0) (-0.186965 0.146208 0) (-0.197104 0.149285 0) (-0.208782 0.150466 0) (-0.222647 0.150071 0) (-0.239697 0.1495 0) (-0.260392 0.148097 0) (-0.283793 0.139013 0) (-0.307768 0.111897 0) (-0.330966 0.0654704 0) (-0.353524 0.0137121 0) (-0.373692 -0.0285897 0) (-0.388946 -0.0578559 0) (-0.400253 -0.0733032 0) (-0.408622 -0.070419 0) (-0.411905 -0.0450058 0) (-0.407426 0.00363712 0) (-0.395059 0.07223 0) (-0.378188 0.151108 0) (-0.360304 0.22976 0) (-0.340741 0.303226 0) (-0.318968 0.366223 0) (-0.299087 0.409028 0) (-0.283716 0.428697 0) (-0.27199 0.434713 0) (-0.262206 0.439929 0) (-0.252452 0.449634 0) (-0.242676 0.458003 0) (-0.235212 0.455156 0) (-0.23115 0.438431 0) (-0.227869 0.415433 0) (-0.221182 0.394176 0) (-0.20864 0.373498 0) (-0.191399 0.343986 0) (-0.172697 0.296983 0) (-0.155033 0.231427 0) (-0.139222 0.150959 0) (-0.125381 0.0590142 0) (-0.113696 -0.0414276 0) (-0.104078 -0.14592 0) (-0.0974092 -0.246538 0) (-0.0969651 -0.331272 0) (-0.106058 -0.386552 0) (-0.126019 -0.405588 0) (-0.152127 -0.399003 0) (-0.175711 -0.385619 0) (-0.194726 -0.373542 0) (-0.210702 -0.364253 0) (-0.224425 -0.358722 0) (-0.236971 -0.354752 0) (-0.249757 -0.347865 0) (-0.262841 -0.337568 0) (-0.274979 -0.328478 0) (-0.286003 -0.324127 0) (-0.297582 -0.323948 0) (-0.311567 -0.326784 0) (-0.328689 -0.332669 0) (-0.347829 -0.33927 0) (-0.365202 -0.340239 0) (-0.376996 -0.330735 0) (-0.385251 -0.313892 0) (-0.396141 -0.297137 0) (-0.40836 -0.280015 0) (-0.410511 -0.253368 0) (-0.394502 -0.212933 0) (-0.362441 -0.164154 0) (-0.320957 -0.115051 0) (-0.276648 -0.0714126 0) (-0.234849 -0.0368202 0) (-0.198859 -0.0129315 0) (-0.169899 0.000988503 0) (-0.148039 0.00735814 0) (-0.132387 0.00977124 0) (-0.122297 0.0119635 0) (-0.117151 0.0174991 0) (-0.115003 0.028901 0) (-0.112676 0.0451227 0) (-0.109138 0.0611191 0) (-0.104089 0.0710332 0) (-0.0965991 0.0701204 0) (-0.0873405 0.0562787 0) (-0.0772695 0.0319746 0) (-0.0648645 -0.0017066 0) (-0.0443338 -0.0478422 0) (-0.0126053 -0.0961468 0) (0.00519724 -0.087517 0) (-0.00311319 -0.021569 0) (-0.0164205 -0.0229043 0) (-0.0312974 -0.0104575 0) (-0.0488211 0.010406 0) (-0.0681277 0.0340421 0) (-0.0870046 0.0539122 0) (-0.103294 0.0689936 0) (-0.116884 0.0822378 0) (-0.128607 0.0958858 0) (-0.138992 0.109652 0) (-0.148063 0.12195 0) (-0.1558 0.131679 0) (-0.162598 0.139007 0) (-0.169236 0.145006 0) (-0.176468 0.150673 0) (-0.184711 0.156147 0) (-0.194128 0.160763 0) (-0.205007 0.164036 0) (-0.218012 0.16661 0) (-0.233934 0.169628 0) (-0.253186 0.171549 0) (-0.275728 0.16483 0) (-0.301152 0.139199 0) (-0.328685 0.0933087 0) (-0.356818 0.039846 0) (-0.382403 -0.00690378 0) (-0.402661 -0.0414364 0) (-0.417774 -0.0613584 0) (-0.42849 -0.0629932 0) (-0.434273 -0.0439347 0) (-0.433527 -0.00380864 0) (-0.423879 0.0565074 0) (-0.405729 0.131159 0) (-0.38405 0.208114 0) (-0.361678 0.278511 0) (-0.336346 0.339479 0) (-0.309513 0.385164 0) (-0.286566 0.409826 0) (-0.268513 0.419247 0) (-0.252685 0.425735 0) (-0.236809 0.43541 0) (-0.220499 0.444542 0) (-0.205675 0.44476 0) (-0.194453 0.4315 0) (-0.185767 0.408383 0) (-0.17565 0.382416 0) (-0.160714 0.355259 0) (-0.140823 0.321488 0) (-0.118589 0.274129 0) (-0.096943 0.210594 0) (-0.0775304 0.132784 0) (-0.0608782 0.0437903 0) (-0.0472768 -0.0532471 0) (-0.0374486 -0.153461 0) (-0.0341848 -0.246777 0) (-0.0415463 -0.321106 0) (-0.0617743 -0.364408 0) (-0.0929195 -0.375028 0) (-0.125655 -0.36903 0) (-0.153005 -0.360449 0) (-0.175712 -0.352493 0) (-0.194999 -0.346246 0) (-0.211512 -0.342721 0) (-0.226612 -0.339415 0) (-0.24169 -0.332625 0) (-0.256338 -0.323233 0) (-0.269204 -0.315655 0) (-0.280454 -0.311815 0) (-0.291874 -0.310349 0) (-0.304972 -0.310752 0) (-0.320282 -0.314044 0) (-0.337762 -0.319527 0) (-0.355892 -0.323265 0) (-0.370685 -0.319678 0) (-0.379019 -0.305907 0) (-0.384019 -0.286177 0) (-0.392142 -0.267786 0) (-0.402518 -0.250565 0) (-0.405769 -0.227063 0) (-0.395021 -0.193837 0) (-0.371046 -0.154805 0) (-0.337982 -0.115706 0) (-0.300559 -0.0808066 0) (-0.263346 -0.0526984 0) (-0.229867 -0.0320844 0) (-0.202089 -0.0178603 0) (-0.180809 -0.00753239 0) (-0.165995 0.00181934 0) (-0.156234 0.0128277 0) (-0.149203 0.02668 0) (-0.141979 0.0422702 0) (-0.133012 0.0557463 0) (-0.12191 0.0622348 0) (-0.109048 0.0584841 0) (-0.0960843 0.0436188 0) (-0.0828595 0.0177491 0) (-0.0645627 -0.0233215 0) (-0.0349957 -0.0807904 0) (-0.00583439 -0.123364 0) (0.00382995 -0.0889547 0) (-0.00392524 -0.0100419 0) (-0.0190335 -0.00702301 0) (-0.0351818 0.00771468 0) (-0.0534854 0.0304901 0) (-0.0727999 0.0540739 0) (-0.0907082 0.0717836 0) (-0.105424 0.0839782 0) (-0.117394 0.0948847 0) (-0.127766 0.106941 0) (-0.137145 0.119399 0) (-0.145488 0.130414 0) (-0.152707 0.1391 0) (-0.159142 0.145974 0) (-0.165433 0.152217 0) (-0.172149 0.158636 0) (-0.179599 0.165134 0) (-0.187946 0.171057 0) (-0.197485 0.176176 0) (-0.208762 0.181309 0) (-0.222334 0.187412 0) (-0.238621 0.1927 0) (-0.258444 0.18975 0) (-0.283042 0.168193 0) (-0.312536 0.125158 0) (-0.344658 0.0710687 0) (-0.375356 0.020037 0) (-0.401117 -0.0202598 0) (-0.420774 -0.0461857 0) (-0.434231 -0.0534625 0) (-0.44166 -0.0401783 0) (-0.44334 -0.00758024 0) (-0.437683 0.0427863 0) (-0.421958 0.108958 0) (-0.397817 0.182771 0) (-0.371381 0.251845 0) (-0.34448 0.309596 0) (-0.315401 0.354495 0) (-0.287034 0.383514 0) (-0.26309 0.39779 0) (-0.242342 0.406029 0) (-0.221747 0.415233 0) (-0.200136 0.424258 0) (-0.178857 0.426676 0) (-0.160297 0.417253 0) (-0.145064 0.396319 0) (-0.130683 0.368347 0) (-0.113709 0.336271 0) (-0.0926616 0.298165 0) (-0.0688389 0.249537 0) (-0.0448468 0.18754 0) (-0.0228377 0.112597 0) (-0.00421086 0.0269573 0) (0.00928377 -0.0653361 0) (0.0159235 -0.1575 0) (0.0122422 -0.239581 0) (-0.00551321 -0.300161 0) (-0.0368771 -0.331115 0) (-0.0746134 -0.338004 0) (-0.109148 -0.336197 0) (-0.137903 -0.332986 0) (-0.162635 -0.329077 0) (-0.183842 -0.326075 0) (-0.20206 -0.324707 0) (-0.218913 -0.322187 0) (-0.235519 -0.31599 0) (-0.250887 -0.308271 0) (-0.263792 -0.302778 0) (-0.274928 -0.299833 0) (-0.285994 -0.297628 0) (-0.298038 -0.296317 0) (-0.311574 -0.297539 0) (-0.326957 -0.301253 0) (-0.343839 -0.305239 0) (-0.360192 -0.30598 0) (-0.372012 -0.29909 0) (-0.376682 -0.282501 0) (-0.37769 -0.260537 0) (-0.381629 -0.240282 0) (-0.388802 -0.222535 0) (-0.392198 -0.201873 0) (-0.385997 -0.175311 0) (-0.369716 -0.145056 0) (-0.345739 -0.114766 0) (-0.317382 -0.087262 0) (-0.288101 -0.0640113 0) (-0.260565 -0.0449138 0) (-0.236284 -0.0288306 0) (-0.21561 -0.0141587 0) (-0.197781 0.000513727 0) (-0.181411 0.0155471 0) (-0.164688 0.0299069 0) (-0.146747 0.040913 0) (-0.128094 0.0455424 0) (-0.109804 0.0416125 0) (-0.0929153 0.0273058 0) (-0.0752236 -0.00183157 0) (-0.0508622 -0.0522639 0) (-0.0210833 -0.112465 0) (-0.00801903 -0.139069 0) (-0.00132687 -0.0905588 0) (-0.00442162 0.00282544 0) (-0.0205399 0.0099976 0) (-0.0373129 0.0263494 0) (-0.055678 0.0501419 0) (-0.0743492 0.0729235 0) (-0.0909906 0.0880198 0) (-0.104193 0.0972694 0) (-0.114844 0.106082 0) (-0.124264 0.116903 0) (-0.133047 0.128377 0) (-0.141022 0.138354 0) (-0.147973 0.146131 0) (-0.154132 0.152536 0) (-0.160003 0.158839 0) (-0.166036 0.165709 0) (-0.172488 0.17289 0) (-0.179497 0.179752 0) (-0.187291 0.186233 0) (-0.196238 0.193204 0) (-0.206627 0.201531 0) (-0.218742 0.209714 0) (-0.233842 0.211233 0) (-0.254543 0.19592 0) (-0.282511 0.158634 0) (-0.315952 0.106439 0) (-0.350389 0.0525406 0) (-0.381651 0.00646086 0) (-0.406935 -0.0264655 0) (-0.424767 -0.0412915 0) (-0.434898 -0.0347358 0) (-0.438227 -0.00835102 0) (-0.43566 0.0336754 0) (-0.425139 0.0888433 0) (-0.40383 0.154354 0) (-0.374669 0.221493 0) (-0.344118 0.279246 0) (-0.314159 0.323005 0) (-0.284549 0.353129 0) (-0.257269 0.371154 0) (-0.23289 0.381781 0) (-0.209085 0.390627 0) (-0.183936 0.398646 0) (-0.157888 0.401818 0) (-0.133028 0.395316 0) (-0.110911 0.377437 0) (-0.090836 0.350066 0) (-0.0704505 0.315673 0) (-0.0479337 0.274404 0) (-0.0234588 0.224345 0) (0.00106357 0.163234 0) (0.0228402 0.0912556 0) (0.0395559 0.0108118 0) (0.0491622 -0.0735912 0) (0.0491869 -0.15443 0) (0.0362993 -0.223082 0) (0.00845986 -0.269782 0) (-0.0292823 -0.292384 0) (-0.0673006 -0.300442 0) (-0.100464 -0.303831 0) (-0.129227 -0.304971 0) (-0.154756 -0.304545 0) (-0.176752 -0.304768 0) (-0.195863 -0.30553 0) (-0.213882 -0.303871 0) (-0.231266 -0.298847 0) (-0.246541 -0.293499 0) (-0.258965 -0.290321 0) (-0.269796 -0.288305 0) (-0.280454 -0.28587 0) (-0.291351 -0.283719 0) (-0.302896 -0.283465 0) (-0.315852 -0.285343 0) (-0.330394 -0.288084 0) (-0.345835 -0.289895 0) (-0.360211 -0.288292 0) (-0.369642 -0.279671 0) (-0.371297 -0.262119 0) (-0.368014 -0.239216 0) (-0.366081 -0.217398 0) (-0.367428 -0.198696 0) (-0.367915 -0.179947 0) (-0.363039 -0.158678 0) (-0.35143 -0.135618 0) (-0.333968 -0.112629 0) (-0.312468 -0.0911489 0) (-0.288906 -0.0717971 0) (-0.264726 -0.0543405 0) (-0.24058 -0.0381231 0) (-0.216488 -0.0225634 0) (-0.192125 -0.0075903 0) (-0.167267 0.00610345 0) (-0.142147 0.0167893 0) (-0.117513 0.0222691 0) (-0.0942729 0.0202187 0) (-0.0727205 0.00653372 0) (-0.05102 -0.0261832 0) (-0.0270161 -0.0791981 0) (-0.011045 -0.128146 0) (-0.0131466 -0.144442 0) (-0.00608161 -0.0982425 0) (-0.00468513 0.0163492 0) (-0.0212452 0.0273294 0) (-0.0380171 0.0446773 0) (-0.0558551 0.0688817 0) (-0.0735256 0.0904062 0) (-0.0888987 0.102759 0) (-0.100871 0.109197 0) (-0.110564 0.116208 0) (-0.119342 0.126122 0) (-0.127762 0.13688 0) (-0.135525 0.145969 0) (-0.142294 0.152851 0) (-0.148179 0.158656 0) (-0.153566 0.164765 0) (-0.158831 0.171758 0) (-0.164194 0.179254 0) (-0.169751 0.186622 0) (-0.175639 0.193878 0) (-0.182056 0.201841 0) (-0.189035 0.211292 0) (-0.196566 0.221257 0) (-0.205753 0.226751 0) (-0.21985 0.218663 0) (-0.242238 0.189849 0) (-0.27288 0.143082 0) (-0.30789 0.0892393 0) (-0.34253 0.0388644 0) (-0.373371 -0.000751102 0) (-0.397644 -0.0239507 0) (-0.413288 -0.0262084 0) (-0.420095 -0.00709871 0) (-0.419815 0.0286153 0) (-0.413645 0.0750722 0) (-0.399166 0.129403 0) (-0.374092 0.188703 0) (-0.342062 0.245343 0) (-0.309237 0.290882 0) (-0.278252 0.322674 0) (-0.249579 0.342855 0) (-0.223269 0.355215 0) (-0.197827 0.363728 0) (-0.171205 0.370095 0) (-0.142876 0.372442 0) (-0.114153 0.367138 0) (-0.086805 0.351689 0) (-0.0614699 0.326079 0) (-0.0373476 0.291713 0) (-0.013214 0.249464 0) (0.0106483 0.199083 0) (0.0327707 0.13982 0) (0.0509403 0.0721865 0) (0.0627553 -0.000947275 0) (0.0658764 -0.0747515 0) (0.0581106 -0.143257 0) (0.0376434 -0.198621 0) (0.00523031 -0.235036 0) (-0.0321349 -0.254426 0) (-0.0669684 -0.265497 0) (-0.0980273 -0.272793 0) (-0.12631 -0.277038 0) (-0.151556 -0.279959 0) (-0.17329 -0.283342 0) (-0.192714 -0.285887 0) (-0.211393 -0.285159 0) (-0.228771 -0.281976 0) (-0.243281 -0.279469 0) (-0.255014 -0.278514 0) (-0.265503 -0.277326 0) (-0.275632 -0.275036 0) (-0.285405 -0.272811 0) (-0.295167 -0.271892 0) (-0.305736 -0.272469 0) (-0.317488 -0.273845 0) (-0.330123 -0.274786 0) (-0.343239 -0.274161 0) (-0.355568 -0.270645 0) (-0.363549 -0.261627 0) (-0.36374 -0.245095 0) (-0.357374 -0.223259 0) (-0.349463 -0.201303 0) (-0.34303 -0.182051 0) (-0.336853 -0.164465 0) (-0.328374 -0.146931 0) (-0.316169 -0.129261 0) (-0.300021 -0.111938 0) (-0.280413 -0.0953567 0) (-0.258056 -0.0796085 0) (-0.233489 -0.0645068 0) (-0.206985 -0.0499128 0) (-0.178709 -0.0359594 0) (-0.149006 -0.0231872 0) (-0.118657 -0.0126166 0) (-0.088702 -0.00605021 0) (-0.0602018 -0.00615084 0) (-0.0343302 -0.0178342 0) (-0.0124017 -0.0485465 0) (0.00304481 -0.0926682 0) (0.00155855 -0.126855 0) (-0.00743016 -0.144334 0) (-0.0072258 -0.109355 0) (-0.00469363 0.0298626 0) (-0.0211914 0.0443576 0) (-0.0375229 0.0622603 0) (-0.0544778 0.0864415 0) (-0.0710251 0.106547 0) (-0.0852997 0.11625 0) (-0.0963777 0.120093 0) (-0.105413 0.125552 0) (-0.11373 0.134792 0) (-0.121861 0.14502 0) (-0.129437 0.153318 0) (-0.13603 0.159272 0) (-0.141644 0.164315 0) (-0.146554 0.169972 0) (-0.151071 0.176772 0) (-0.155388 0.184228 0) (-0.159559 0.191678 0) (-0.163641 0.199148 0) (-0.167711 0.207337 0) (-0.17163 0.216858 0) (-0.175088 0.227183 0) (-0.17863 0.235028 0) (-0.18515 0.233251 0) (-0.199023 0.213979 0) (-0.222459 0.175946 0) (-0.2536 0.12642 0) (-0.288169 0.0753932 0) (-0.322024 0.0312466 0) (-0.351943 0.000674965 0) (-0.374899 -0.0111399 0) (-0.388589 -0.00170023 0) (-0.393104 0.0264635 0) (-0.390466 0.0666667 0) (-0.381623 0.112678 0) (-0.364643 0.161736 0) (-0.338415 0.211379 0) (-0.306473 0.256023 0) (-0.273909 0.290328 0) (-0.243348 0.313396 0) (-0.215178 0.327716 0) (-0.188423 0.336376 0) (-0.161334 0.341223 0) (-0.132761 0.341865 0) (-0.10305 0.336155 0) (-0.0735715 0.32187 0) (-0.0455786 0.298094 0) (-0.0195106 0.265284 0) (0.00470277 0.224338 0) (0.026465 0.175823 0) (0.0446464 0.120356 0) (0.0576778 0.0590337 0) (0.0640805 -0.00552168 0) (0.0619585 -0.0691173 0) (0.049348 -0.126233 0) (0.0255212 -0.170787 0) (-0.00673283 -0.200708 0) (-0.0406388 -0.219536 0) (-0.0720851 -0.233183 0) (-0.101335 -0.243098 0) (-0.128356 -0.250241 0) (-0.152187 -0.256595 0) (-0.173041 -0.26259 0) (-0.192536 -0.266299 0) (-0.211299 -0.266754 0) (-0.227884 -0.266093 0) (-0.241207 -0.266519 0) (-0.252237 -0.267378 0) (-0.262363 -0.266979 0) (-0.271746 -0.265302 0) (-0.280203 -0.26351 0) (-0.288262 -0.262375 0) (-0.296755 -0.262161 0) (-0.306114 -0.262753 0) (-0.316056 -0.263188 0) (-0.325994 -0.26204 0) (-0.335954 -0.258802 0) (-0.345751 -0.253555 0) (-0.352786 -0.244964 0) (-0.353295 -0.231085 0) (-0.346518 -0.212613 0) (-0.335274 -0.192935 0) (-0.32241 -0.174775 0) (-0.308623 -0.15855 0) (-0.293295 -0.143637 0) (-0.275758 -0.129637 0) (-0.255618 -0.116357 0) (-0.232693 -0.103615 0) (-0.206946 -0.091236 0) (-0.178418 -0.0791103 0) (-0.147237 -0.0673083 0) (-0.113828 -0.0561712 0) (-0.0791567 -0.0463702 0) (-0.0443774 -0.0391125 0) (-0.0111216 -0.0362098 0) (0.0170086 -0.0421451 0) (0.0347183 -0.0625744 0) (0.0396757 -0.0917653 0) (0.0265864 -0.115821 0) (0.0107216 -0.134837 0) (-0.00365938 -0.113167 0) (-0.00449633 0.0429914 0) (-0.0205355 0.0607682 0) (-0.0361296 0.0788396 0) (-0.0519939 0.102707 0) (-0.0674038 0.121451 0) (-0.0807921 0.128759 0) (-0.0912692 0.130247 0) (-0.0998526 0.134305 0) (-0.107774 0.142988 0) (-0.115595 0.152803 0) (-0.122943 0.160384 0) (-0.12934 0.165398 0) (-0.134701 0.169551 0) (-0.139199 0.174531 0) (-0.143082 0.180863 0) (-0.146521 0.187972 0) (-0.149533 0.195143 0) (-0.152117 0.202378 0) (-0.154285 0.210229 0) (-0.155841 0.219073 0) (-0.156322 0.228575 0) (-0.155701 0.236817 0) (-0.155839 0.238974 0) (-0.160921 0.228017 0) (-0.174779 0.200024 0) (-0.198028 0.158405 0) (-0.22815 0.111103 0) (-0.261335 0.0664108 0) (-0.293893 0.031429 0) (-0.322404 0.0119025 0) (-0.343712 0.0113734 0) (-0.355799 0.0297911 0) (-0.358896 0.0625155 0) (-0.354797 0.102331 0) (-0.344277 0.143946 0) (-0.326436 0.185245 0) (-0.301461 0.224225 0) (-0.272242 0.257379 0) (-0.242199 0.28211 0) (-0.213159 0.298514 0) (-0.185321 0.308214 0) (-0.157864 0.312625 0) (-0.129817 0.312029 0) (-0.100964 0.305491 0) (-0.0720614 0.291589 0) (-0.0443054 0.269385 0) (-0.0186991 0.238878 0) (0.00419736 0.200714 0) (0.0235109 0.15582 0) (0.03837 0.105308 0) (0.0478791 0.0506193 0) (0.0508517 -0.00568987 0) (0.0455554 -0.0599655 0) (0.0301546 -0.106828 0) (0.0053508 -0.142902 0) (-0.0243213 -0.16889 0) (-0.0538981 -0.188429 0) (-0.0820772 -0.203917 0) (-0.108862 -0.215878 0) (-0.133469 -0.225769 0) (-0.155379 -0.23486 0) (-0.175528 -0.242415 0) (-0.195059 -0.246962 0) (-0.21328 -0.249235 0) (-0.228525 -0.251601 0) (-0.240676 -0.254671 0) (-0.251142 -0.25689 0) (-0.260732 -0.257366 0) (-0.269147 -0.2568 0) (-0.276257 -0.255936 0) (-0.282594 -0.254959 0) (-0.288902 -0.254165 0) (-0.295812 -0.253999 0) (-0.303523 -0.254263 0) (-0.311324 -0.253623 0) (-0.31816 -0.250496 0) (-0.32417 -0.24478 0) (-0.330306 -0.23772 0) (-0.335646 -0.229553 0) (-0.337039 -0.218986 0) (-0.332265 -0.205588 0) (-0.321682 -0.190796 0) (-0.306766 -0.176365 0) (-0.288557 -0.163132 0) (-0.267464 -0.151184 0) (-0.243587 -0.140341 0) (-0.216884 -0.130314 0) (-0.187259 -0.1208 0) (-0.154634 -0.111561 0) (-0.119018 -0.102447 0) (-0.0807398 -0.0933984 0) (-0.0408252 -0.0844464 0) (-0.000544442 -0.075755 0) (0.0369144 -0.0680171 0) (0.0669369 -0.0641289 0) (0.0817298 -0.0684941 0) (0.0789824 -0.0814835 0) (0.0579292 -0.0961362 0) (0.0324829 -0.112871 0) (0.00367707 -0.101688 0) (-0.00415526 0.0553938 0) (-0.0194385 0.0762739 0) (-0.0341026 0.094232 0) (-0.0487545 0.117639 0) (-0.0630474 0.135246 0) (-0.0757392 0.140519 0) (-0.0858416 0.139867 0) (-0.0940904 0.142564 0) (-0.101593 0.150708 0) (-0.109025 0.160186 0) (-0.116093 0.167134 0) (-0.122276 0.171232 0) (-0.127409 0.174426 0) (-0.131579 0.178574 0) (-0.134985 0.184238 0) (-0.137792 0.190772 0) (-0.139988 0.197394 0) (-0.141513 0.204073 0) (-0.142346 0.211244 0) (-0.142335 0.219041 0) (-0.141033 0.227094 0) (-0.138094 0.234312 0) (-0.13433 0.237833 0) (-0.132775 0.232513 0) (-0.137657 0.21363 0) (-0.151565 0.181415 0) (-0.174076 0.141084 0) (-0.202656 0.0997262 0) (-0.233946 0.0642259 0) (-0.264478 0.0403875 0) (-0.290853 0.0322894 0) (-0.310124 0.0412691 0) (-0.320673 0.0648136 0) (-0.322706 0.097218 0) (-0.317435 0.132639 0) (-0.305738 0.167681 0) (-0.2881 0.200702 0) (-0.265682 0.229867 0) (-0.240445 0.253184 0) (-0.214123 0.269789 0) (-0.187611 0.280037 0) (-0.161066 0.28456 0) (-0.134267 0.283577 0) (-0.107132 0.276714 0) (-0.0800965 0.263236 0) (-0.0540509 0.242539 0) (-0.0300027 0.214541 0) (-0.00868905 0.179731 0) (0.00895593 0.138892 0) (0.02199 0.0934669 0) (0.0294453 0.0452203 0) (0.0297888 -0.0030792 0) (0.0215858 -0.04802 0) (0.00463377 -0.086065 0) (-0.0184719 -0.116604 0) (-0.0437469 -0.141107 0) (-0.0690806 -0.161329 0) (-0.0940657 -0.177807 0) (-0.118083 -0.191425 0) (-0.140273 -0.203501 0) (-0.160788 -0.214249 0) (-0.180624 -0.22258 0) (-0.199799 -0.228277 0) (-0.216773 -0.233117 0) (-0.230504 -0.238544 0) (-0.241815 -0.243701 0) (-0.25185 -0.247101 0) (-0.260626 -0.248772 0) (-0.267828 -0.249589 0) (-0.273683 -0.249874 0) (-0.278604 -0.249547 0) (-0.282931 -0.248767 0) (-0.287187 -0.247946 0) (-0.292056 -0.247437 0) (-0.297738 -0.247045 0) (-0.303241 -0.245512 0) (-0.306966 -0.241139 0) (-0.308626 -0.233662 0) (-0.309724 -0.224823 0) (-0.311233 -0.216344 0) (-0.311791 -0.208264 0) (-0.309055 -0.199906 0) (-0.301642 -0.191227 0) (-0.289297 -0.182676 0) (-0.272246 -0.174646 0) (-0.250798 -0.167303 0) (-0.225204 -0.160631 0) (-0.195616 -0.154474 0) (-0.162098 -0.148581 0) (-0.124709 -0.142652 0) (-0.0836576 -0.136268 0) (-0.0396569 -0.128743 0) (0.00618945 -0.118839 0) (0.0504987 -0.106008 0) (0.088072 -0.0888057 0) (0.108488 -0.0725523 0) (0.105874 -0.066157 0) (0.0818214 -0.0687964 0) (0.0493968 -0.0807332 0) (0.0109484 -0.0760082 0) (-0.0037149 0.066821 0) (-0.0180253 0.0906769 0) (-0.0316425 0.108336 0) (-0.045009 0.131234 0) (-0.058199 0.148042 0) (-0.0703398 0.151711 0) (-0.0802406 0.149091 0) (-0.0882228 0.15035 0) (-0.095221 0.157891 0) (-0.102135 0.167108 0) (-0.108864 0.173541 0) (-0.114842 0.176785 0) (-0.119787 0.178999 0) (-0.123705 0.182233 0) (-0.126777 0.187125 0) (-0.129199 0.192973 0) (-0.13096 0.19889 0) (-0.131919 0.204809 0) (-0.132011 0.211119 0) (-0.131166 0.217782 0) (-0.129083 0.224282 0) (-0.125357 0.229881 0) (-0.120158 0.23302 0) (-0.115174 0.230482 0) (-0.113838 0.218279 0) (-0.119582 0.194861 0) (-0.133773 0.162836 0) (-0.155454 0.127469 0) (-0.182253 0.0947161 0) (-0.211144 0.0700348 0) (-0.238913 0.0576058 0) (-0.262449 0.0594483 0) (-0.279236 0.0744031 0) (-0.287861 0.0983978 0) (-0.288264 0.126618 0) (-0.281439 0.155735 0) (-0.268821 0.183887 0) (-0.251914 0.209324 0) (-0.23214 0.230196 0) (-0.210572 0.245412 0) (-0.187819 0.254895 0) (-0.164196 0.258934 0) (-0.139915 0.257604 0) (-0.115229 0.250661 0) (-0.0906002 0.237697 0) (-0.0667697 0.218381 0) (-0.0446534 0.192708 0) (-0.0251844 0.161134 0) (-0.00939255 0.124464 0) (0.00156454 0.0842833 0) (0.00639461 0.0426438 0) (0.00380978 0.00216434 0) (-0.00628075 -0.0347146 0) (-0.0223653 -0.0668104 0) (-0.0420892 -0.0943081 0) (-0.0633992 -0.117889 0) (-0.0854708 -0.137889 0) (-0.107647 -0.154826 0) (-0.129008 -0.169707 0) (-0.14917 -0.183123 0) (-0.168704 -0.194567 0) (-0.187986 -0.203509 0) (-0.205967 -0.210993 0) (-0.22117 -0.21871 0) (-0.23361 -0.226657 0) (-0.244419 -0.233348 0) (-0.253966 -0.238082 0) (-0.261782 -0.241394 0) (-0.267794 -0.243741 0) (-0.272457 -0.245132 0) (-0.276115 -0.245652 0) (-0.278908 -0.245505 0) (-0.281061 -0.244801 0) (-0.283032 -0.243671 0) (-0.285456 -0.242421 0) (-0.28865 -0.241184 0) (-0.29174 -0.239164 0) (-0.292776 -0.234745 0) (-0.290568 -0.227133 0) (-0.286086 -0.217613 0) (-0.281343 -0.208535 0) (-0.277188 -0.201372 0) (-0.272711 -0.196204 0) (-0.266318 -0.192498 0) (-0.256735 -0.189739 0) (-0.24326 -0.18759 0) (-0.225626 -0.185867 0) (-0.203743 -0.184462 0) (-0.177551 -0.183253 0) (-0.146952 -0.181986 0) (-0.111851 -0.180072 0) (-0.0722536 -0.176242 0) (-0.0284558 -0.168147 0) (0.017825 -0.153654 0) (0.0621919 -0.125373 0) (0.0953125 -0.0862511 0) (0.102749 -0.055596 0) (0.0852634 -0.0417754 0) (0.0544988 -0.045128 0) (0.0142764 -0.0427014 0) (-0.00320833 0.0771194 0) (-0.016388 0.103863 0) (-0.0288939 0.121111 0) (-0.0409291 0.143501 0) (-0.0530014 0.159916 0) (-0.0646882 0.162468 0) (-0.0745393 0.158025 0) (-0.082338 0.157655 0) (-0.0887422 0.164427 0) (-0.0949421 0.173473 0) (-0.101228 0.179595 0) (-0.107025 0.182099 0) (-0.111859 0.183336 0) (-0.115609 0.185611 0) (-0.118447 0.189709 0) (-0.120659 0.194884 0) (-0.122305 0.200079 0) (-0.123166 0.205148 0) (-0.123072 0.210516 0) (-0.122009 0.216103 0) (-0.119876 0.22124 0) (-0.116379 0.225259 0) (-0.111429 0.227305 0) (-0.105806 0.225544 0) (-0.10168 0.217278 0) (-0.102104 0.200633 0) (-0.109378 0.176414 0) (-0.123989 0.147995 0) (-0.14479 0.120002 0) (-0.169561 0.0971498 0) (-0.195607 0.0833698 0) (-0.220072 0.0808851 0) (-0.240162 0.0892479 0) (-0.253578 0.105497 0) (-0.259125 0.126036 0) (-0.25703 0.148475 0) (-0.248621 0.171479 0) (-0.235665 0.193415 0) (-0.219785 0.212097 0) (-0.202099 0.225844 0) (-0.183124 0.234136 0) (-0.163037 0.237162 0) (-0.142017 0.235099 0) (-0.120404 0.22786 0) (-0.0987407 0.215227 0) (-0.0777806 0.197061 0) (-0.0584634 0.173495 0) (-0.04185 0.145072 0) (-0.029089 0.112788 0) (-0.0213293 0.0781678 0) (-0.0195184 0.0430494 0) (-0.0240161 0.00926032 0) (-0.0340429 -0.0219368 0) (-0.0480258 -0.0502756 0) (-0.0646484 -0.0755972 0) (-0.0829996 -0.0979005 0) (-0.102357 -0.117405 0) (-0.121862 -0.134711 0) (-0.140904 -0.150376 0) (-0.159618 -0.164267 0) (-0.178355 -0.175919 0) (-0.196503 -0.185862 0) (-0.212601 -0.195643 0) (-0.226027 -0.205918 0) (-0.23758 -0.215613 0) (-0.247934 -0.22359 0) (-0.256766 -0.229935 0) (-0.263702 -0.235086 0) (-0.268924 -0.239009 0) (-0.272711 -0.241622 0) (-0.275209 -0.243141 0) (-0.276615 -0.243831 0) (-0.277172 -0.24379 0) (-0.277069 -0.242975 0) (-0.276554 -0.241367 0) (-0.276134 -0.239214 0) (-0.276339 -0.236975 0) (-0.27682 -0.23461 0) (-0.275847 -0.231075 0) (-0.271492 -0.225235 0) (-0.263411 -0.217335 0) (-0.253079 -0.20912 0) (-0.242372 -0.202557 0) (-0.232147 -0.198679 0) (-0.222004 -0.197418 0) (-0.210973 -0.198114 0) (-0.19818 -0.200034 0) (-0.18304 -0.202664 0) (-0.165137 -0.20574 0) (-0.144105 -0.20907 0) (-0.119515 -0.212147 0) (-0.0908975 -0.213582 0) (-0.0579883 -0.210448 0) (-0.0199153 -0.197794 0) (0.0196149 -0.167456 0) (0.0583794 -0.110167 0) (0.0747313 -0.0559697 0) (0.0678421 -0.0231758 0) (0.0465669 -0.0140197 0) (0.0128728 -0.00976875 0) (-0.00266075 0.0861954 0) (-0.0145928 0.115769 0) (-0.0259584 0.132546 0) (-0.0366331 0.154441 0) (-0.0475279 0.170901 0) (-0.0588035 0.172897 0) (-0.0687601 0.166793 0) (-0.0765398 0.164508 0) (-0.0823462 0.170193 0) (-0.0876063 0.179119 0) (-0.093232 0.185242 0) (-0.0988246 0.187236 0) (-0.103653 0.187536 0) (-0.107366 0.188801 0) (-0.110067 0.192098 0) (-0.112151 0.196703 0) (-0.113858 0.201309 0) (-0.114969 0.205565 0) (-0.11515 0.209976 0) (-0.114356 0.214583 0) (-0.112661 0.218646 0) (-0.109963 0.221425 0) (-0.106145 0.222374 0) (-0.10154 0.220487 0) (-0.0973357 0.214125 0) (-0.0956153 0.201887 0) (-0.0986165 0.183814 0) (-0.107644 0.161843 0) (-0.122598 0.139249 0) (-0.142259 0.11979 0) (-0.164716 0.106874 0) (-0.187577 0.102521 0) (-0.208099 0.106457 0) (-0.223633 0.116413 0) (-0.23242 0.1299 0) (-0.234156 0.145652 0) (-0.229762 0.163142 0) (-0.220639 0.181129 0) (-0.208173 0.197346 0) (-0.193524 0.209608 0) (-0.177461 0.216821 0) (-0.160358 0.218897 0) (-0.142444 0.216081 0) (-0.124059 0.208503 0) (-0.105747 0.196175 0) (-0.0882617 0.179159 0) (-0.0725235 0.157748 0) (-0.0595426 0.132571 0) (-0.0503074 0.104605 0) (-0.045613 0.0751046 0) (-0.0458456 0.0453575 0) (-0.0508249 0.0164409 0) (-0.0597682 -0.0109223 0) (-0.0717196 -0.0364369 0) (-0.0860018 -0.0597188 0) (-0.101943 -0.0807248 0) (-0.118797 -0.0997146 0) (-0.135947 -0.117046 0) (-0.153272 -0.132735 0) (-0.170957 -0.146486 0) (-0.188617 -0.158551 0) (-0.204969 -0.170147 0) (-0.219019 -0.182255 0) (-0.231103 -0.194368 0) (-0.242004 -0.205283 0) (-0.251681 -0.214623 0) (-0.259672 -0.222685 0) (-0.265974 -0.229499 0) (-0.270795 -0.234898 0) (-0.274112 -0.238938 0) (-0.275865 -0.241786 0) (-0.276192 -0.243545 0) (-0.275363 -0.244323 0) (-0.273634 -0.244229 0) (-0.271158 -0.243247 0) (-0.268026 -0.241268 0) (-0.264514 -0.238392 0) (-0.2612 -0.235182 0) (-0.258377 -0.232258 0) (-0.255223 -0.229502 0) (-0.250004 -0.226093 0) (-0.241451 -0.221541 0) (-0.22973 -0.216435 0) (-0.216128 -0.212096 0) (-0.201981 -0.209702 0) (-0.187904 -0.209697 0) (-0.173801 -0.21182 0) (-0.159297 -0.215494 0) (-0.143979 -0.220237 0) (-0.127423 -0.225765 0) (-0.109164 -0.231704 0) (-0.0886574 -0.236898 0) (-0.0652403 -0.238287 0) (-0.0379857 -0.22961 0) (-0.00849033 -0.202538 0) (0.0260328 -0.136296 0) (0.0465158 -0.0616569 0) (0.0445155 -0.0141285 0) (0.0332741 0.00763391 0) (0.00907033 0.0153221 0) (-0.00209177 0.0939958 0) (-0.012686 0.126365 0) (-0.0229044 0.142654 0) (-0.0322076 0.164037 0) (-0.041808 0.180975 0) (-0.0526372 0.183082 0) (-0.0628504 0.175577 0) (-0.0708893 0.171055 0) (-0.0762839 0.175136 0) (-0.0804612 0.183828 0) (-0.0851006 0.190323 0) (-0.0903223 0.192213 0) (-0.0952123 0.191729 0) (-0.0990629 0.191939 0) (-0.10178 0.194372 0) (-0.103784 0.198498 0) (-0.105569 0.20275 0) (-0.107082 0.206382 0) (-0.107848 0.209899 0) (-0.107671 0.213615 0) (-0.106715 0.216867 0) (-0.105079 0.218804 0) (-0.102724 0.218959 0) (-0.0998052 0.216769 0) (-0.0969636 0.211264 0) (-0.0954218 0.201595 0) (-0.0967763 0.18776 0) (-0.102397 0.170926 0) (-0.11286 0.153319 0) (-0.127833 0.137774 0) (-0.146202 0.126975 0) (-0.166098 0.12239 0) (-0.185003 0.123553 0) (-0.200286 0.128662 0) (-0.210138 0.136269 0) (-0.214172 0.146207 0) (-0.213064 0.158649 0) (-0.207709 0.172639 0) (-0.198891 0.18596 0) (-0.18742 0.196294 0) (-0.174131 0.202258 0) (-0.159694 0.203489 0) (-0.144586 0.200153 0) (-0.129252 0.19249 0) (-0.114239 0.180691 0) (-0.100234 0.164988 0) (-0.0880223 0.145769 0) (-0.0783992 0.123645 0) (-0.0720472 0.099419 0) (-0.0693995 0.0739944 0) (-0.0705446 0.048232 0) (-0.0752547 0.0228619 0) (-0.0831288 -0.00152852 0) (-0.0935486 -0.0246124 0) (-0.105937 -0.0460879 0) (-0.119788 -0.065962 0) (-0.134559 -0.0843545 0) (-0.150014 -0.101242 0) (-0.166162 -0.116434 0) (-0.182684 -0.130085 0) (-0.198543 -0.143123 0) (-0.21266 -0.156595 0) (-0.224959 -0.170472 0) (-0.236105 -0.183751 0) (-0.246299 -0.195761 0) (-0.255137 -0.206552 0) (-0.262448 -0.216145 0) (-0.268388 -0.224341 0) (-0.272948 -0.231134 0) (-0.275964 -0.236695 0) (-0.277367 -0.241085 0) (-0.277178 -0.244257 0) (-0.275483 -0.246199 0) (-0.272486 -0.246981 0) (-0.268477 -0.246731 0) (-0.263674 -0.24555 0) (-0.258112 -0.243427 0) (-0.251797 -0.240385 0) (-0.245028 -0.236798 0) (-0.23832 -0.233411 0) (-0.231789 -0.230782 0) (-0.224728 -0.22883 0) (-0.216084 -0.227137 0) (-0.205315 -0.2256 0) (-0.192723 -0.224641 0) (-0.179068 -0.224899 0) (-0.164984 -0.226788 0) (-0.150729 -0.230323 0) (-0.136276 -0.235264 0) (-0.121423 -0.241351 0) (-0.105815 -0.248276 0) (-0.0889275 -0.255102 0) (-0.0701661 -0.25906 0) (-0.0489313 -0.253893 0) (-0.0241968 -0.228101 0) (0.00160512 -0.162031 0) (0.0280123 -0.0693992 0) (0.0253329 -0.010244 0) (0.0205818 0.019898 0) (0.00516022 0.0307016 0) (-0.00151883 0.100497 0) (-0.0107026 0.13564 0) (-0.0197778 0.15146 0) (-0.0277262 0.172253 0) (-0.0358567 0.190046 0) (-0.0460861 0.19305 0) (-0.0566533 0.184598 0) (-0.0653097 0.177601 0) (-0.0707235 0.17939 0) (-0.0739217 0.187422 0) (-0.0772477 0.194554 0) (-0.0817491 0.196919 0) (-0.086632 0.19601 0) (-0.0907704 0.195204 0) (-0.0937182 0.196654 0) (-0.0957474 0.200276 0) (-0.0975495 0.204394 0) (-0.0994133 0.207712 0) (-0.100872 0.210512 0) (-0.101512 0.213428 0) (-0.101451 0.21606 0) (-0.100945 0.217492 0) (-0.100069 0.217206 0) (-0.098929 0.214851 0) (-0.0978981 0.209829 0) (-0.0976545 0.201652 0) (-0.0991484 0.190488 0) (-0.103415 0.177288 0) (-0.111222 0.163696 0) (-0.122774 0.151796 0) (-0.137523 0.143459 0) (-0.154044 0.139402 0) (-0.170163 0.13881 0) (-0.183609 0.14028 0) (-0.192941 0.143347 0) (-0.197968 0.148782 0) (-0.199192 0.157201 0) (-0.197008 0.167693 0) (-0.191613 0.178064 0) (-0.183395 0.186114 0) (-0.173048 0.190511 0) (-0.161348 0.190816 0) (-0.148968 0.187094 0) (-0.136482 0.179565 0) (-0.124454 0.16848 0) (-0.113482 0.154134 0) (-0.104183 0.13693 0) (-0.0971302 0.117394 0) (-0.0927648 0.096149 0) (-0.0913353 0.073852 0) (-0.0928772 0.0511326 0) (-0.0972606 0.0285519 0) (-0.104249 0.00658579 0) (-0.113391 -0.0144375 0) (-0.124211 -0.0343809 0) (-0.136388 -0.0531547 0) (-0.149676 -0.0706522 0) (-0.163959 -0.0867252 0) (-0.178906 -0.101478 0) (-0.193664 -0.115591 0) (-0.207222 -0.129999 0) (-0.219267 -0.144986 0) (-0.230272 -0.159903 0) (-0.240577 -0.174017 0) (-0.249919 -0.187141 0) (-0.25802 -0.199227 0) (-0.264927 -0.210042 0) (-0.270623 -0.219474 0) (-0.274913 -0.227661 0) (-0.27767 -0.234712 0) (-0.278874 -0.240616 0) (-0.278497 -0.245327 0) (-0.276509 -0.248777 0) (-0.272951 -0.250882 0) (-0.267981 -0.251622 0) (-0.26188 -0.251135 0) (-0.254956 -0.249693 0) (-0.247355 -0.247562 0) (-0.239018 -0.244893 0) (-0.229904 -0.241865 0) (-0.22024 -0.238892 0) (-0.210384 -0.236527 0) (-0.200455 -0.235134 0) (-0.190206 -0.234751 0) (-0.179312 -0.235289 0) (-0.167703 -0.236765 0) (-0.155599 -0.239334 0) (-0.143292 -0.243159 0) (-0.130948 -0.248306 0) (-0.118548 -0.254763 0) (-0.105847 -0.262423 0) (-0.0923362 -0.270608 0) (-0.0773078 -0.276753 0) (-0.0595678 -0.274133 0) (-0.037322 -0.249888 0) (-0.0171035 -0.187841 0) (0.0157193 -0.0808405 0) (0.012211 -0.00743966 0) (0.0102692 0.0263175 0) (0.00229655 0.0393015 0) (-0.000958392 0.1057 0) (-0.00867364 0.143595 0) (-0.0166108 0.159005 0) (-0.0232656 0.179045 0) (-0.0297144 0.197937 0) (-0.0390241 0.202725 0) (-0.0499151 0.194052 0) (-0.0595251 0.18458 0) (-0.0655897 0.183351 0) (-0.0682835 0.18992 0) (-0.0701796 0.197618 0) (-0.0734905 0.201073 0) (-0.078086 0.20035 0) (-0.0825462 0.198752 0) (-0.0859385 0.199126 0) (-0.0881931 0.20208 0) (-0.0899943 0.206139 0) (-0.092033 0.209477 0) (-0.0940921 0.211856 0) (-0.0955865 0.214105 0) (-0.0964594 0.216245 0) (-0.0970366 0.217413 0) (-0.0975078 0.216977 0) (-0.0979706 0.214662 0) (-0.098685 0.210061 0) (-0.100055 0.202859 0) (-0.102583 0.193366 0) (-0.106896 0.182569 0) (-0.113629 0.17189 0) (-0.123118 0.162889 0) (-0.135067 0.156668 0) (-0.148369 0.15319 0) (-0.161307 0.151348 0) (-0.172238 0.150173 0) (-0.180337 0.150054 0) (-0.185667 0.152388 0) (-0.188475 0.157889 0) (-0.188648 0.165528 0) (-0.185974 0.173175 0) (-0.180594 0.178896 0) (-0.173059 0.181591 0) (-0.164093 0.180882 0) (-0.154396 0.176774 0) (-0.144577 0.169422 0) (-0.135188 0.159045 0) (-0.126749 0.145927 0) (-0.119752 0.13043 0) (-0.114616 0.112992 0) (-0.111657 0.0941043 0) (-0.111052 0.0742722 0) (-0.112845 0.0539849 0) (-0.11696 0.0336842 0) (-0.123236 0.0137426 0) (-0.131347 -0.00556967 0) (-0.140978 -0.024148 0) (-0.151995 -0.0417255 0) (-0.164219 -0.0581706 0) (-0.17729 -0.0735567 0) (-0.190492 -0.088379 0) (-0.202952 -0.103395 0) (-0.214267 -0.119001 0) (-0.224722 -0.134862 0) (-0.234699 -0.150369 0) (-0.244106 -0.165226 0) (-0.252654 -0.179322 0) (-0.260265 -0.192403 0) (-0.266883 -0.204257 0) (-0.272288 -0.214918 0) (-0.276288 -0.224482 0) (-0.278822 -0.23295 0) (-0.279846 -0.240294 0) (-0.279308 -0.246479 0) (-0.277196 -0.251427 0) (-0.273538 -0.255025 0) (-0.268383 -0.257169 0) (-0.26183 -0.257825 0) (-0.254082 -0.257133 0) (-0.245445 -0.255462 0) (-0.236211 -0.253307 0) (-0.226498 -0.251075 0) (-0.216255 -0.248978 0) (-0.205445 -0.247154 0) (-0.194191 -0.245817 0) (-0.182716 -0.245238 0) (-0.171194 -0.245635 0) (-0.159698 -0.247113 0) (-0.148275 -0.249713 0) (-0.137016 -0.253475 0) (-0.126025 -0.258482 0) (-0.115336 -0.26488 0) (-0.104813 -0.272827 0) (-0.0940501 -0.282022 0) (-0.0822591 -0.290245 0) (-0.0680599 -0.290763 0) (-0.0498379 -0.270463 0) (-0.0302518 -0.211803 0) (0.00219089 -0.0962537 0) (0.00421835 -0.00538079 0) (0.00176797 0.0288247 0) (0.000663707 0.0426954 0) (-0.000426683 0.10963 0) (-0.00663228 0.150241 0) (-0.0134284 0.165347 0) (-0.018906 0.18439 0) (-0.023499 0.204383 0) (-0.0313593 0.211862 0) (-0.0423285 0.20401 0) (-0.0530771 0.192447 0) (-0.0604702 0.18766 0) (-0.0635007 0.191686 0) (-0.064289 0.199337 0) (-0.0660174 0.204271 0) (-0.0698222 0.204534 0) (-0.0744374 0.202642 0) (-0.078398 0.201983 0) (-0.081128 0.204042 0) (-0.0830395 0.207908 0) (-0.0850911 0.211486 0) (-0.0875218 0.213806 0) (-0.0897602 0.215599 0) (-0.0915104 0.217349 0) (-0.0930539 0.218407 0) (-0.094673 0.218032 0) (-0.0964765 0.215933 0) (-0.0986652 0.211811 0) (-0.101533 0.2054 0) (-0.105343 0.197053 0) (-0.110389 0.187829 0) (-0.117024 0.179094 0) (-0.125443 0.172053 0) (-0.135363 0.1672 0) (-0.145913 0.163939 0) (-0.155911 0.161075 0) (-0.164467 0.158121 0) (-0.171383 0.156075 0) (-0.176846 0.156536 0) (-0.180738 0.160011 0) (-0.18254 0.165334 0) (-0.18185 0.170573 0) (-0.178733 0.17415 0) (-0.173644 0.175225 0) (-0.167194 0.17351 0) (-0.159998 0.168984 0) (-0.152615 0.161738 0) (-0.145543 0.151941 0) (-0.13924 0.139833 0) (-0.134109 0.125722 0) (-0.130487 0.109969 0) (-0.128622 0.0929658 0) (-0.128667 0.0751111 0) (-0.130669 0.0567893 0) (-0.134583 0.0383465 0) (-0.140309 0.0200853 0) (-0.147717 0.00226876 0) (-0.156574 -0.0149395 0) (-0.166686 -0.0313284 0) (-0.177747 -0.0469561 0) (-0.189106 -0.0621768 0) (-0.200052 -0.0775431 0) (-0.210199 -0.0934223 0) (-0.219719 -0.109685 0) (-0.228969 -0.125911 0) (-0.237998 -0.141816 0) (-0.246583 -0.157274 0) (-0.254566 -0.172073 0) (-0.261827 -0.185956 0) (-0.268115 -0.198828 0) (-0.273181 -0.210703 0) (-0.276915 -0.221566 0) (-0.279244 -0.231392 0) (-0.280072 -0.240161 0) (-0.279331 -0.247796 0) (-0.277019 -0.25416 0) (-0.273199 -0.259113 0) (-0.267981 -0.262565 0) (-0.261488 -0.264497 0) (-0.253828 -0.264983 0) (-0.245106 -0.264221 0) (-0.235492 -0.262577 0) (-0.225238 -0.260549 0) (-0.214595 -0.258635 0) (-0.203706 -0.257172 0) (-0.192604 -0.256307 0) (-0.181303 -0.256096 0) (-0.169887 -0.256609 0) (-0.15851 -0.257954 0) (-0.147338 -0.260254 0) (-0.136495 -0.263628 0) (-0.126059 -0.268215 0) (-0.116045 -0.274241 0) (-0.106367 -0.282001 0) (-0.0967634 -0.29146 0) (-0.0867379 -0.300865 0) (-0.0753986 -0.304115 0) (-0.060965 -0.287928 0) (-0.0417006 -0.231476 0) (-0.013571 -0.113629 0) (0.000998718 -0.00593693 0) (-0.00531058 0.0289878 0) (0.000255506 0.0420737 0) (6.3447e-05 0.112332 0) (-0.00461542 0.155593 0) (-0.010256 0.170563 0) (-0.0147098 0.188328 0) (-0.0174418 0.209076 0) (-0.0231378 0.220005 0) (-0.0336063 0.214321 0) (-0.0454104 0.20152 0) (-0.0546478 0.193062 0) (-0.0590485 0.193459 0) (-0.0596019 0.19989 0) (-0.0597445 0.206131 0) (-0.0621528 0.208155 0) (-0.0664886 0.206755 0) (-0.0709669 0.205357 0) (-0.0743858 0.206362 0) (-0.0766462 0.209737 0) (-0.0786861 0.213557 0) (-0.081244 0.21614 0) (-0.0840132 0.217762 0) (-0.0865111 0.219239 0) (-0.0888696 0.220285 0) (-0.0914199 0.22011 0) (-0.09429 0.218349 0) (-0.0976296 0.214773 0) (-0.101692 0.209122 0) (-0.106642 0.201687 0) (-0.112548 0.193525 0) (-0.119473 0.18597 0) (-0.127369 0.179991 0) (-0.135875 0.17569 0) (-0.144328 0.172211 0) (-0.152091 0.168507 0) (-0.158969 0.164542 0) (-0.165193 0.161592 0) (-0.17086 0.161057 0) (-0.175504 0.16309 0) (-0.178417 0.1665 0) (-0.179192 0.169672 0) (-0.177882 0.171389 0) (-0.174849 0.17103 0) (-0.170584 0.168381 0) (-0.16559 0.163411 0) (-0.160341 0.156175 0) (-0.15527 0.146796 0) (-0.150772 0.135471 0) (-0.147191 0.122454 0) (-0.144813 0.10804 0) (-0.14385 0.0925454 0) (-0.144442 0.0762876 0) (-0.146652 0.0595748 0) (-0.150482 0.0426932 0) (-0.155901 0.0259035 0) (-0.162814 0.00943874 0) (-0.170968 -0.00653801 0) (-0.180003 -0.0220922 0) (-0.189413 -0.0374423 0) (-0.19861 -0.0529619 0) (-0.207296 -0.0689058 0) (-0.215583 -0.085224 0) (-0.223786 -0.101649 0) (-0.232044 -0.11797 0) (-0.24024 -0.134104 0) (-0.248199 -0.149935 0) (-0.255748 -0.165256 0) (-0.262618 -0.179903 0) (-0.268518 -0.193782 0) (-0.27327 -0.206797 0) (-0.276765 -0.218882 0) (-0.278881 -0.23003 0) (-0.279506 -0.240206 0) (-0.278574 -0.249287 0) (-0.276063 -0.257076 0) (-0.272016 -0.26336 0) (-0.266562 -0.267981 0) (-0.259916 -0.270912 0) (-0.252318 -0.2723 0) (-0.243952 -0.272433 0) (-0.234898 -0.271661 0) (-0.225164 -0.270338 0) (-0.214798 -0.268816 0) (-0.203939 -0.267439 0) (-0.192788 -0.26651 0) (-0.181528 -0.266235 0) (-0.170293 -0.266711 0) (-0.159192 -0.267979 0) (-0.148343 -0.270085 0) (-0.137862 -0.273142 0) (-0.127831 -0.277355 0) (-0.118257 -0.283035 0) (-0.10907 -0.290565 0) (-0.100121 -0.300053 0) (-0.09118 -0.310123 0) (-0.0816458 -0.315353 0) (-0.0696768 -0.302832 0) (-0.0518645 -0.250683 0) (-0.0277727 -0.137537 0) (0.00191062 -0.0111497 0) (-0.00935932 0.0286798 0) (0.000441134 0.0387158 0) (0.000508816 0.113879 0) (-0.0026579 0.159662 0) (-0.0071354 0.174735 0) (-0.0106967 0.191008 0) (-0.0118376 0.211785 0) (-0.0146943 0.226453 0) (-0.0236302 0.224506 0) (-0.0360046 0.211839 0) (-0.0472476 0.200195 0) (-0.0539477 0.19624 0) (-0.0555689 0.199951 0) (-0.0547982 0.20654 0) (-0.0554235 0.210688 0) (-0.0587974 0.210751 0) (-0.0634783 0.209238 0) (-0.0676661 0.209237 0) (-0.0705677 0.211789 0) (-0.072759 0.215623 0) (-0.075309 0.218638 0) (-0.0783752 0.220392 0) (-0.0814518 0.221752 0) (-0.0844681 0.222854 0) (-0.0877447 0.222965 0) (-0.0914343 0.221611 0) (-0.0956277 0.21861 0) (-0.100543 0.213711 0) (-0.106318 0.207078 0) (-0.112896 0.199669 0) (-0.120122 0.192748 0) (-0.127739 0.187136 0) (-0.135327 0.182762 0) (-0.142432 0.178792 0) (-0.148893 0.174486 0) (-0.154991 0.170139 0) (-0.161087 0.166957 0) (-0.167058 0.165906 0) (-0.172256 0.166831 0) (-0.175998 0.168652 0) (-0.177944 0.170094 0) (-0.178118 0.170236 0) (-0.176796 0.16863 0) (-0.174369 0.16513 0) (-0.171242 0.159706 0) (-0.167806 0.152391 0) (-0.164428 0.14328 0) (-0.161446 0.132535 0) (-0.159159 0.120364 0) (-0.157816 0.107009 0) (-0.157614 0.0927253 0) (-0.158698 0.0777752 0) (-0.161154 0.0624142 0) (-0.165006 0.0468799 0) (-0.170203 0.0313741 0) (-0.17656 0.0160249 0) (-0.18371 0.000815477 0) (-0.191181 -0.014449 0) (-0.198573 -0.0299498 0) (-0.205683 -0.0458231 0) (-0.212608 -0.0620068 0) (-0.219611 -0.0783166 0) (-0.226861 -0.0946071 0) (-0.234325 -0.110851 0) (-0.241857 -0.127041 0) (-0.249272 -0.143101 0) (-0.256312 -0.158903 0) (-0.262684 -0.174297 0) (-0.268168 -0.189102 0) (-0.27261 -0.203168 0) (-0.275854 -0.216434 0) (-0.277752 -0.228877 0) (-0.2782 -0.240423 0) (-0.277119 -0.250917 0) (-0.274466 -0.260123 0) (-0.270259 -0.267762 0) (-0.264607 -0.273588 0) (-0.257727 -0.277483 0) (-0.249926 -0.279553 0) (-0.241531 -0.280149 0) (-0.232785 -0.279785 0) (-0.223765 -0.278966 0) (-0.214392 -0.278057 0) (-0.204545 -0.277267 0) (-0.194185 -0.276726 0) (-0.183407 -0.276563 0) (-0.172401 -0.276917 0) (-0.161389 -0.277913 0) (-0.150571 -0.279664 0) (-0.140099 -0.282312 0) (-0.130075 -0.286082 0) (-0.120542 -0.291327 0) (-0.111501 -0.298486 0) (-0.102952 -0.307775 0) (-0.0948581 -0.318093 0) (-0.086717 -0.324629 0) (-0.0765095 -0.315567 0) (-0.0605917 -0.270268 0) (-0.0393215 -0.166438 0) (0.00124583 -0.0219117 0) (-0.0100554 0.0288907 0) (-6.61085e-05 0.0342162 0) (0.000892832 0.114334 0) (-0.00079896 0.162518 0) (-0.0041212 0.177928 0) (-0.00684312 0.192674 0) (-0.00689661 0.212516 0) (-0.00669947 0.230401 0) (-0.0126999 0.233673 0) (-0.0245773 0.223011 0) (-0.0374622 0.209367 0) (-0.0469718 0.201017 0) (-0.0510276 0.200659 0) (-0.0507243 0.205944 0) (-0.0498509 0.211732 0) (-0.0515849 0.214066 0) (-0.0558378 0.213398 0) (-0.0606335 0.212778 0) (-0.0644076 0.214308 0) (-0.0670617 0.217779 0) (-0.0696581 0.221174 0) (-0.0728591 0.223298 0) (-0.0763504 0.224724 0) (-0.0798865 0.225941 0) (-0.0837186 0.226388 0) (-0.0880281 0.225477 0) (-0.0928459 0.223032 0) (-0.0983273 0.218839 0) (-0.104608 0.212928 0) (-0.111586 0.206079 0) (-0.118987 0.199451 0) (-0.126443 0.193783 0) (-0.133539 0.189006 0) (-0.140032 0.184502 0) (-0.146093 0.17988 0) (-0.152189 0.175565 0) (-0.158562 0.172458 0) (-0.164903 0.17107 0) (-0.170582 0.171087 0) (-0.175045 0.171597 0) (-0.177987 0.171592 0) (-0.179396 0.170388 0) (-0.179497 0.167693 0) (-0.178604 0.163419 0) (-0.177042 0.15754 0) (-0.175125 0.150078 0) (-0.173161 0.141111 0) (-0.171438 0.130772 0) (-0.170224 0.119239 0) (-0.169752 0.106714 0) (-0.17022 0.0934177 0) (-0.171769 0.0795654 0) (-0.174462 0.06535 0) (-0.178255 0.0509185 0) (-0.182981 0.0363488 0) (-0.188357 0.0216301 0) (-0.194035 0.00667143 0) (-0.199721 -0.0086314 0) (-0.205336 -0.0242984 0) (-0.210982 -0.0402252 0) (-0.216856 -0.0562531 0) (-0.223097 -0.0722729 0) (-0.229694 -0.0882866 0) (-0.236526 -0.104365 0) (-0.24342 -0.120561 0) (-0.250159 -0.136852 0) (-0.2565 -0.153128 0) (-0.262241 -0.169188 0) (-0.267215 -0.18481 0) (-0.271249 -0.199847 0) (-0.274174 -0.214229 0) (-0.275858 -0.227899 0) (-0.276195 -0.240759 0) (-0.275079 -0.252631 0) (-0.272423 -0.263238 0) (-0.268198 -0.272228 0) (-0.262479 -0.279266 0) (-0.255465 -0.284145 0) (-0.247488 -0.286904 0) (-0.238935 -0.287886 0) (-0.230148 -0.28768 0) (-0.221325 -0.286941 0) (-0.212477 -0.286196 0) (-0.203482 -0.285737 0) (-0.194178 -0.285655 0) (-0.184463 -0.285946 0) (-0.174342 -0.286603 0) (-0.163936 -0.287674 0) (-0.15344 -0.289274 0) (-0.143058 -0.291604 0) (-0.132956 -0.294958 0) (-0.12324 -0.299728 0) (-0.114011 -0.306361 0) (-0.105429 -0.315081 0) (-0.0976775 -0.324965 0) (-0.0905458 -0.331882 0) (-0.0823616 -0.325446 0) (-0.0693868 -0.286585 0) (-0.0499975 -0.1914 0) (-0.00743302 -0.0384798 0) (-0.00853341 0.0286551 0) (-0.00237615 0.0293735 0) (0.00117022 0.113818 0) (0.000902704 0.1642 0) (-0.00124553 0.18019 0) (-0.0031226 0.193587 0) (-0.0025969 0.211608 0) (0.000118454 0.231391 0) (-0.00175706 0.240536 0) (-0.0114109 0.234047 0) (-0.0248541 0.220329 0) (-0.0370143 0.20842 0) (-0.044452 0.203319 0) (-0.0463371 0.205454 0) (-0.045188 0.211399 0) (-0.0451267 0.216109 0) (-0.0481523 0.217341 0) (-0.0530647 0.216904 0) (-0.0577447 0.217519 0) (-0.0612081 0.220258 0) (-0.0640953 0.223772 0) (-0.0674132 0.226358 0) (-0.0712094 0.228022 0) (-0.0751695 0.229415 0) (-0.0794379 0.230224 0) (-0.0842246 0.22977 0) (-0.0895181 0.227834 0) (-0.0953853 0.224262 0) (-0.10195 0.218982 0) (-0.109122 0.212572 0) (-0.116598 0.206063 0) (-0.123995 0.200166 0) (-0.130974 0.194929 0) (-0.137474 0.19003 0) (-0.143817 0.18535 0) (-0.150398 0.181248 0) (-0.157249 0.178253 0) (-0.164015 0.176564 0) (-0.170204 0.175821 0) (-0.175352 0.175228 0) (-0.179157 0.173979 0) (-0.181611 0.171608 0) (-0.182913 0.167958 0) (-0.183313 0.162978 0) (-0.183055 0.156642 0) (-0.182394 0.148968 0) (-0.181592 0.140028 0) (-0.180915 0.12995 0) (-0.180613 0.118899 0) (-0.180906 0.107052 0) (-0.18195 0.0945761 0) (-0.183816 0.0816065 0) (-0.186462 0.0682329 0) (-0.189749 0.0544944 0) (-0.193491 0.0403836 0) (-0.197515 0.025874 0) (-0.201717 0.0109649 0) (-0.2061 -0.00428996 0) (-0.210758 -0.0198064 0) (-0.215805 -0.0354238 0) (-0.221294 -0.0510629 0) (-0.227161 -0.0667273 0) (-0.233261 -0.0825036 0) (-0.239421 -0.0985046 0) (-0.245474 -0.114804 0) (-0.251262 -0.13138 0) (-0.256658 -0.148088 0) (-0.261547 -0.164712 0) (-0.265783 -0.181045 0) (-0.269203 -0.196945 0) (-0.271671 -0.212312 0) (-0.27308 -0.227066 0) (-0.273326 -0.241109 0) (-0.272292 -0.254268 0) (-0.269843 -0.266241 0) (-0.265868 -0.27661 0) (-0.260346 -0.284924 0) (-0.253409 -0.29084 0) (-0.245371 -0.294296 0) (-0.236678 -0.29562 0) (-0.227775 -0.29549 0) (-0.218958 -0.294709 0) (-0.210306 -0.293942 0) (-0.201724 -0.293565 0) (-0.193041 -0.293689 0) (-0.184104 -0.29428 0) (-0.174826 -0.295266 0) (-0.165206 -0.296604 0) (-0.155332 -0.298332 0) (-0.145356 -0.300616 0) (-0.135451 -0.30377 0) (-0.125762 -0.308219 0) (-0.116434 -0.314396 0) (-0.107684 -0.322442 0) (-0.0998269 -0.33147 0) (-0.09303 -0.338041 0) (-0.0864068 -0.333575 0) (-0.0767036 -0.300941 0) (-0.0590056 -0.21407 0) (-0.0193267 -0.0599153 0) (-0.00491367 0.0258373 0) (-0.00632194 0.0241906 0) (0.00131629 0.112531 0) (0.00238878 0.164698 0) (0.00147494 0.181526 0) (0.000454205 0.19393 0) (0.00131729 0.209682 0) (0.00544932 0.22954 0) (0.00782608 0.243876 0) (0.00233336 0.243452 0) (-0.00975447 0.2321 0) (-0.0235262 0.21841 0) (-0.0344586 0.208931 0) (-0.039945 0.206592 0) (-0.0404309 0.210599 0) (-0.0394289 0.216668 0) (-0.040725 0.22042 0) (-0.0449885 0.221259 0) (-0.05029 0.221505 0) (-0.0547895 0.223342 0) (-0.0583222 0.226607 0) (-0.0619053 0.229564 0) (-0.0659908 0.231575 0) (-0.0703397 0.233196 0) (-0.0749882 0.234373 0) (-0.0801693 0.234384 0) (-0.0858657 0.232907 0) (-0.092047 0.229852 0) (-0.0988061 0.225103 0) (-0.106088 0.219055 0) (-0.113627 0.212612 0) (-0.121092 0.206495 0) (-0.128266 0.200923 0) (-0.135213 0.195846 0) (-0.142228 0.19127 0) (-0.149491 0.187377 0) (-0.156894 0.184417 0) (-0.164165 0.182438 0) (-0.170927 0.181035 0) (-0.176723 0.179465 0) (-0.181284 0.177112 0) (-0.184645 0.17372 0) (-0.186978 0.16922 0) (-0.188457 0.163571 0) (-0.189278 0.156757 0) (-0.189662 0.148812 0) (-0.189855 0.13983 0) (-0.190098 0.129937 0) (-0.190586 0.119264 0) (-0.191446 0.107922 0) (-0.192717 0.0959907 0) (-0.194375 0.0835251 0) (-0.196365 0.0705611 0) (-0.198654 0.0571245 0) (-0.201268 0.0432398 0) (-0.204282 0.0289522 0) (-0.207798 0.0143328 0) (-0.211915 -0.000537759 0) (-0.216625 -0.0155722 0) (-0.221818 -0.0307436 0) (-0.227329 -0.0460526 0) (-0.232925 -0.0615545 0) (-0.238401 -0.0773384 0) (-0.243617 -0.0934891 0) (-0.248499 -0.110039 0) (-0.253026 -0.126929 0) (-0.257185 -0.144012 0) (-0.26092 -0.161103 0) (-0.264129 -0.178027 0) (-0.266697 -0.194629 0) (-0.268525 -0.21079 0) (-0.269526 -0.226422 0) (-0.269608 -0.241438 0) (-0.268655 -0.255689 0) (-0.266503 -0.26889 0) (-0.262966 -0.280595 0) (-0.257913 -0.29025 0) (-0.251362 -0.297351 0) (-0.243535 -0.301662 0) (-0.234859 -0.303411 0) (-0.22585 -0.303312 0) (-0.216939 -0.302344 0) (-0.208329 -0.301379 0) (-0.199985 -0.300938 0) (-0.191727 -0.301165 0) (-0.183355 -0.301986 0) (-0.174718 -0.303256 0) (-0.165753 -0.304864 0) (-0.156482 -0.306787 0) (-0.147004 -0.309145 0) (-0.137465 -0.312243 0) (-0.128009 -0.316514 0) (-0.118775 -0.322354 0) (-0.109966 -0.329785 0) (-0.101943 -0.33788 0) (-0.0950998 -0.343725 0) (-0.0890451 -0.340434 0) (-0.0809563 -0.313375 0) (-0.0645581 -0.236656 0) (-0.028668 -0.0889666 0) (0.000720374 0.0197298 0) (-0.0101773 0.0192285 0) (0.0013608 0.11064 0) (0.00362778 0.164083 0) (0.0039982 0.181912 0) (0.00388864 0.193769 0) (0.00503657 0.207332 0) (0.00954522 0.225602 0) (0.0151824 0.243189 0) (0.0148588 0.24951 0) (0.0063723 0.243025 0) (-0.00697047 0.230076 0) (-0.02042 0.217725 0) (-0.0299849 0.210702 0) (-0.0339353 0.2109 0) (-0.0338292 0.216327 0) (-0.0337836 0.222192 0) (-0.0367053 0.225258 0) (-0.0420129 0.226094 0) (-0.047512 0.22724 0) (-0.0520195 0.229936 0) (-0.0561414 0.233028 0) (-0.0606116 0.23539 0) (-0.0653847 0.237265 0) (-0.0704242 0.238794 0) (-0.0759764 0.239269 0) (-0.0820625 0.238217 0) (-0.0885716 0.235583 0) (-0.0955441 0.231271 0) (-0.102964 0.225537 0) (-0.110632 0.219177 0) (-0.118316 0.212953 0) (-0.125923 0.207252 0) (-0.133565 0.202194 0) (-0.141383 0.19777 0) (-0.14935 0.193996 0) (-0.157346 0.191 0) (-0.165212 0.188744 0) (-0.172568 0.18672 0) (-0.178954 0.184233 0) (-0.184187 0.180886 0) (-0.188348 0.176584 0) (-0.191562 0.171299 0) (-0.193968 0.165005 0) (-0.195746 0.15772 0) (-0.197095 0.149505 0) (-0.198198 0.140443 0) (-0.19917 0.13061 0) (-0.200055 0.120064 0) (-0.200863 0.108859 0) (-0.201625 0.0970598 0) (-0.202448 0.0847455 0) (-0.203518 0.0719988 0) (-0.205071 0.0588913 0) (-0.207341 0.0454744 0) (-0.210488 0.0317785 0) (-0.214556 0.0178086 0) (-0.219427 0.003552 0) (-0.224852 -0.0109959 0) (-0.230479 -0.025924 0) (-0.235958 -0.041241 0) (-0.241028 -0.0569619 0) (-0.245539 -0.0730917 0) (-0.249468 -0.0896273 0) (-0.252879 -0.106538 0) (-0.255869 -0.12375 0) (-0.258506 -0.141152 0) (-0.260804 -0.158606 0) (-0.262732 -0.175959 0) (-0.264233 -0.193064 0) (-0.265241 -0.2098 0) (-0.265685 -0.226077 0) (-0.265483 -0.241826 0) (-0.264516 -0.256935 0) (-0.262602 -0.271162 0) (-0.259503 -0.284067 0) (-0.254994 -0.295026 0) (-0.24898 -0.30338 0) (-0.241578 -0.308703 0) (-0.233142 -0.311063 0) (-0.224194 -0.311129 0) (-0.215245 -0.309984 0) (-0.20662 -0.308707 0) (-0.19838 -0.308015 0) (-0.190392 -0.308165 0) (-0.182447 -0.309093 0) (-0.174364 -0.310603 0) (-0.166023 -0.3125 0) (-0.157391 -0.314676 0) (-0.148522 -0.317191 0) (-0.13953 -0.320327 0) (-0.13053 -0.324524 0) (-0.121605 -0.330141 0) (-0.112895 -0.337087 0) (-0.104739 -0.344345 0) (-0.0976062 -0.349333 0) (-0.0913486 -0.346463 0) (-0.08351 -0.323562 0) (-0.0679367 -0.25722 0) (-0.0373534 -0.123125 0) (0.00391614 0.0111426 0) (-0.0125866 0.0150536 0) (0.00133322 0.108302 0) (0.00463162 0.162423 0) (0.00630398 0.181345 0) (0.00717543 0.193082 0) (0.00869955 0.204911 0) (0.0129661 0.220715 0) (0.0202358 0.239056 0) (0.0247346 0.251106 0) (0.0214362 0.251112 0) (0.0109451 0.241661 0) (-0.00294831 0.228891 0) (-0.015775 0.218328 0) (-0.0240758 0.213905 0) (-0.0269536 0.216496 0) (-0.0270577 0.222877 0) (-0.0285822 0.228354 0) (-0.0331673 0.230853 0) (-0.0392993 0.231968 0) (-0.0449472 0.234008 0) (-0.0499158 0.236943 0) (-0.0549585 0.239554 0) (-0.0602597 0.241664 0) (-0.065764 0.243502 0) (-0.0717194 0.244428 0) (-0.0782248 0.243786 0) (-0.0851269 0.241502 0) (-0.0924 0.237544 0) (-0.100053 0.232094 0) (-0.107966 0.225869 0) (-0.116017 0.219687 0) (-0.124219 0.214059 0) (-0.132643 0.209142 0) (-0.141237 0.204838 0) (-0.14987 0.2011 0) (-0.15851 0.198043 0) (-0.167015 0.1955 0) (-0.174925 0.192833 0) (-0.181833 0.189461 0) (-0.18769 0.185213 0) (-0.192596 0.180094 0) (-0.196652 0.174092 0) (-0.199983 0.167214 0) (-0.202715 0.15949 0) (-0.204906 0.150945 0) (-0.206536 0.141595 0) (-0.207552 0.131464 0) (-0.207974 0.120622 0) (-0.207974 0.109201 0) (-0.207888 0.0973662 0) (-0.208142 0.0852798 0) (-0.209153 0.0730492 0) (-0.211233 0.0607037 0) (-0.214533 0.0481922 0) (-0.219015 0.0354023 0) (-0.224444 0.022192 0) (-0.230431 0.0084279 0) (-0.236533 -0.00600172 0) (-0.242279 -0.0211478 0) (-0.247307 -0.0369431 0) (-0.251445 -0.0532829 0) (-0.25467 -0.0700447 0) (-0.257084 -0.0871349 0) (-0.258845 -0.104485 0) (-0.260119 -0.122033 0) (-0.261043 -0.139703 0) (-0.261711 -0.157399 0) (-0.262169 -0.175004 0) (-0.262418 -0.192398 0) (-0.262428 -0.209472 0) (-0.262148 -0.226149 0) (-0.261502 -0.242384 0) (-0.260369 -0.258114 0) (-0.258558 -0.273153 0) (-0.255801 -0.287095 0) (-0.251803 -0.299275 0) (-0.246351 -0.308895 0) (-0.239434 -0.315321 0) (-0.231312 -0.318422 0) (-0.22249 -0.31877 0) (-0.213555 -0.317509 0) (-0.204951 -0.315911 0) (-0.196831 -0.314903 0) (-0.189093 -0.314869 0) (-0.181523 -0.315775 0) (-0.173925 -0.317398 0) (-0.166175 -0.319489 0) (-0.158227 -0.321874 0) (-0.15012 -0.324549 0) (-0.141945 -0.327764 0) (-0.133765 -0.331974 0) (-0.125558 -0.337544 0) (-0.117285 -0.344297 0) (-0.109066 -0.351089 0) (-0.101198 -0.355447 0) (-0.0936933 -0.352664 0) (-0.0850024 -0.332752 0) (-0.0705477 -0.275397 0) (-0.0454337 -0.154478 0) (0.00198493 -2.73738e-05 0) (-0.0122713 0.010947 0) (0.00125737 0.105647 0) (0.00542479 0.159806 0) (0.00838837 0.179805 0) (0.0103197 0.191784 0) (0.0123897 0.202496 0) (0.0163123 0.215789 0) (0.0237156 0.232893 0) (0.0314473 0.248368 0) (0.0336351 0.254881 0) (0.027947 0.251049 0) (0.0161084 0.240653 0) (0.00201211 0.22884 0) (-0.0101018 0.220459 0) (-0.017268 0.218861 0) (-0.0195912 0.223545 0) (-0.0206824 0.230444 0) (-0.0241483 0.235254 0) (-0.0303149 0.237301 0) (-0.037017 0.238955 0) (-0.043072 0.241522 0) (-0.0489165 0.244207 0) (-0.0549016 0.246484 0) (-0.0609948 0.248559 0) (-0.0674334 0.249896 0) (-0.0744168 0.249661 0) (-0.0817992 0.247684 0) (-0.0894869 0.244017 0) (-0.0974957 0.238829 0) (-0.105781 0.232799 0) (-0.114332 0.226803 0) (-0.123218 0.221393 0) (-0.132403 0.216655 0) (-0.141686 0.212416 0) (-0.150967 0.208683 0) (-0.16029 0.20556 0) (-0.169409 0.202674 0) (-0.177806 0.199312 0) (-0.18523 0.195107 0) (-0.191758 0.190072 0) (-0.197486 0.184247 0) (-0.20247 0.177622 0) (-0.206716 0.170181 0) (-0.21012 0.161882 0) (-0.212496 0.152677 0) (-0.213733 0.142588 0) (-0.213942 0.131753 0) (-0.213517 0.12043 0) (-0.213041 0.10891 0) (-0.213116 0.0974287 0) (-0.214221 0.0860998 0) (-0.216649 0.0749035 0) (-0.22049 0.063702 0) (-0.22564 0.0522696 0) (-0.231796 0.0403271 0) (-0.238497 0.0275957 0) (-0.245202 0.0138609 0) (-0.251416 -0.000980169 0) (-0.256708 -0.0168259 0) (-0.260833 -0.0334983 0) (-0.263754 -0.0507357 0) (-0.265551 -0.0683103 0) (-0.266386 -0.0860724 0) (-0.266455 -0.103936 0) (-0.265964 -0.121846 0) (-0.265108 -0.139749 0) (-0.264049 -0.157588 0) (-0.2629 -0.175289 0) (-0.261723 -0.192772 0) (-0.260532 -0.209959 0) (-0.259302 -0.2268 0) (-0.257973 -0.243281 0) (-0.256436 -0.259389 0) (-0.254513 -0.275001 0) (-0.251942 -0.289766 0) (-0.24839 -0.303025 0) (-0.243533 -0.313886 0) (-0.237196 -0.321511 0) (-0.229475 -0.325518 0) (-0.220796 -0.326289 0) (-0.211805 -0.324953 0) (-0.203112 -0.322965 0) (-0.195036 -0.32152 0) (-0.187556 -0.321192 0) (-0.180443 -0.321999 0) (-0.173446 -0.323666 0) (-0.166406 -0.325868 0) (-0.15928 -0.328357 0) (-0.152132 -0.331075 0) (-0.145073 -0.334272 0) (-0.138128 -0.338477 0) (-0.131118 -0.344155 0) (-0.123696 -0.351144 0) (-0.11553 -0.358176 0) (-0.106484 -0.362616 0) (-0.0966433 -0.359994 0) (-0.0857861 -0.34201 0) (-0.0717838 -0.291825 0) (-0.0508126 -0.182472 0) (-0.00283596 -0.0159193 0) (-0.00722111 0.00646812 0) (0.00115696 0.102781 0) (0.00604085 0.156337 0) (0.0102596 0.177289 0) (0.0133306 0.189767 0) (0.0161485 0.199954 0) (0.0199742 0.211257 0) (0.0267082 0.226154 0) (0.0356779 0.24252 0) (0.0422036 0.25404 0) (0.042068 0.256574 0) (0.0344071 0.250891 0) (0.0215048 0.240575 0) (0.00739022 0.230212 0) (-0.00391729 0.224505 0) (-0.0100984 0.22574 0) (-0.0125091 0.232163 0) (-0.0152288 0.238979 0) (-0.0208811 0.242845 0) (-0.0283067 0.244739 0) (-0.0355453 0.246925 0) (-0.0424021 0.249508 0) (-0.0492491 0.251848 0) (-0.0560865 0.254058 0) (-0.0631249 0.255739 0) (-0.0706642 0.255902 0) (-0.0786165 0.254213 0) (-0.0868321 0.250789 0) (-0.0953168 0.245845 0) (-0.104098 0.240066 0) (-0.113253 0.234363 0) (-0.122848 0.229243 0) (-0.132722 0.22466 0) (-0.142623 0.220451 0) (-0.152564 0.216738 0) (-0.162576 0.213525 0) (-0.172254 0.210209 0) (-0.181141 0.206144 0) (-0.189203 0.201222 0) (-0.196569 0.19555 0) (-0.203226 0.189116 0) (-0.209033 0.181833 0) (-0.213706 0.173579 0) (-0.216918 0.164254 0) (-0.218562 0.153911 0) (-0.21893 0.14282 0) (-0.21867 0.131403 0) (-0.218547 0.120078 0) (-0.21919 0.109113 0) (-0.220992 0.098584 0) (-0.224142 0.0884172 0) (-0.228678 0.0784234 0) (-0.234489 0.0683121 0) (-0.241295 0.0577142 0) (-0.248648 0.0462247 0) (-0.255983 0.0334828 0) (-0.262744 0.0192718 0) (-0.268472 0.00359483 0) (-0.272884 -0.0132948 0) (-0.275886 -0.0310729 0) (-0.277508 -0.0493557 0) (-0.277879 -0.0678534 0) (-0.277178 -0.0863816 0) (-0.275609 -0.104835 0) (-0.273402 -0.12315 0) (-0.270785 -0.141288 0) (-0.267964 -0.15922 0) (-0.265108 -0.176915 0) (-0.262335 -0.194338 0) (-0.259712 -0.211454 0) (-0.257254 -0.22825 0) (-0.254934 -0.244751 0) (-0.252686 -0.260986 0) (-0.250379 -0.276896 0) (-0.247784 -0.292206 0) (-0.244562 -0.30631 0) (-0.240305 -0.318291 0) (-0.234661 -0.327156 0) (-0.227519 -0.332254 0) (-0.219139 -0.333684 0) (-0.210135 -0.332432 0) (-0.20125 -0.330047 0) (-0.193026 -0.328 0) (-0.185629 -0.327149 0) (-0.178909 -0.32765 0) (-0.172595 -0.329218 0) (-0.166469 -0.331426 0) (-0.160451 -0.333913 0) (-0.154612 -0.336536 0) (-0.149079 -0.339567 0) (-0.143829 -0.343702 0) (-0.138463 -0.349667 0) (-0.13217 -0.357477 0) (-0.123979 -0.36576 0) (-0.113261 -0.371425 0) (-0.100323 -0.369536 0) (-0.0863145 -0.352636 0) (-0.0714574 -0.307349 0) (-0.0527164 -0.208676 0) (-0.00739947 -0.0377759 0) (0.00374268 0.00313642 0) (0.00105234 0.0997802 0) (0.00652437 0.152118 0) (0.0119405 0.173811 0) (0.0162192 0.186924 0) (0.0199887 0.197053 0) (0.0241021 0.207103 0) (0.0301324 0.219776 0) (0.0388629 0.235223 0) (0.047754 0.249466 0) (0.0524338 0.257627 0) (0.0499792 0.257892 0) (0.0404243 0.251507 0) (0.0266368 0.241767 0) (0.0127055 0.233407 0) (0.00235008 0.230671 0) (-0.00312417 0.234705 0) (-0.00631506 0.242228 0) (-0.0113233 0.248237 0) (-0.0190183 0.251168 0) (-0.027375 0.253216 0) (-0.0353868 0.255591 0) (-0.043261 0.257884 0) (-0.051008 0.260111 0) (-0.0587838 0.262037 0) (-0.0669697 0.262572 0) (-0.0755745 0.261161 0) (-0.0844159 0.257944 0) (-0.0934811 0.25323 0) (-0.10286 0.247743 0) (-0.112688 0.242393 0) (-0.122976 0.237563 0) (-0.133461 0.233093 0) (-0.143959 0.228921 0) (-0.154597 0.22526 0) (-0.165285 0.221904 0) (-0.175517 0.218101 0) (-0.185029 0.213418 0) (-0.193935 0.207945 0) (-0.202218 0.201716 0) (-0.20958 0.194558 0) (-0.215572 0.186254 0) (-0.219775 0.17667 0) (-0.222147 0.165925 0) (-0.223207 0.154462 0) (-0.223829 0.142879 0) (-0.224822 0.131667 0) (-0.226661 0.12105 0) (-0.229529 0.111041 0) (-0.233508 0.101556 0) (-0.238667 0.092449 0) (-0.245002 0.0834526 0) (-0.25233 0.0741507 0) (-0.260257 0.0640217 0) (-0.268236 0.0525451 0) (-0.275664 0.0393361 0) (-0.282017 0.0242561 0) (-0.286944 0.00745794 0) (-0.290307 -0.010684 0) (-0.292104 -0.0296832 0) (-0.292422 -0.0490946 0) (-0.291405 -0.0685915 0) (-0.28923 -0.0879616 0) (-0.286102 -0.107075 0) (-0.282254 -0.125856 0) (-0.277923 -0.144267 0) (-0.273341 -0.162298 0) (-0.268711 -0.179952 0) (-0.2642 -0.197234 0) (-0.259929 -0.214153 0) (-0.25597 -0.230737 0) (-0.252358 -0.247046 0) (-0.24909 -0.263147 0) (-0.24611 -0.279048 0) (-0.243253 -0.294568 0) (-0.240196 -0.309206 0) (-0.23647 -0.322093 0) (-0.231567 -0.332146 0) (-0.225159 -0.338461 0) (-0.217291 -0.340801 0) (-0.208459 -0.339887 0) (-0.199444 -0.337234 0) (-0.190979 -0.334525 0) (-0.18347 -0.332931 0) (-0.176946 -0.332836 0) (-0.171211 -0.334019 0) (-0.166047 -0.335989 0) (-0.161339 -0.338257 0) (-0.157128 -0.340577 0) (-0.153516 -0.343258 0) (-0.150369 -0.347283 0) (-0.146964 -0.353835 0) (-0.141892 -0.363274 0) (-0.133469 -0.374077 0) (-0.120702 -0.382297 0) (-0.104359 -0.381903 0) (-0.086837 -0.365598 0) (-0.0699768 -0.322887 0) (-0.0508803 -0.232529 0) (-0.0110082 -0.0650946 0) (0.0167504 0.00385847 0) (0.000961205 0.0966879 0) (0.00692933 0.147245 0) (0.0134741 0.169399 0) (0.0190082 0.183168 0) (0.023912 0.19355 0) (0.0287127 0.203027 0) (0.0344965 0.214028 0) (0.0424395 0.227834 0) (0.0518478 0.242728 0) (0.0595558 0.254784 0) (0.0619058 0.26087 0) (0.0569011 0.259925 0) (0.0455447 0.253259 0) (0.0311046 0.244534 0) (0.0176567 0.238686 0) (0.00837294 0.239257 0) (0.00313742 0.24572 0) (-0.00179569 0.253342 0) (-0.0094072 0.257972 0) (-0.0186751 0.260353 0) (-0.0279032 0.262545 0) (-0.036932 0.264703 0) (-0.0457412 0.26683 0) (-0.054397 0.268875 0) (-0.0633268 0.269732 0) (-0.0726564 0.268585 0) (-0.0822014 0.265546 0) (-0.0919312 0.261049 0) (-0.101988 0.255877 0) (-0.112522 0.250889 0) (-0.123461 0.246304 0) (-0.134513 0.241916 0) (-0.145643 0.23783 0) (-0.157024 0.234246 0) (-0.168395 0.230697 0) (-0.179276 0.226434 0) (-0.189605 0.221278 0) (-0.199405 0.215316 0) (-0.208298 0.208344 0) (-0.215678 0.200024 0) (-0.221078 0.190194 0) (-0.224549 0.179062 0) (-0.226827 0.167248 0) (-0.228943 0.155505 0) (-0.231616 0.144317 0) (-0.235016 0.133799 0) (-0.239066 0.123902 0) (-0.243812 0.114628 0) (-0.249481 0.105979 0) (-0.256267 0.0977866 0) (-0.264135 0.0896287 0) (-0.272749 0.0808825 0) (-0.281539 0.0708567 0) (-0.289836 0.0589656 0) (-0.297028 0.0448795 0) (-0.302693 0.0285985 0) (-0.30663 0.0104455 0) (-0.30883 -0.00905733 0) (-0.309366 -0.0293392 0) (-0.308365 -0.0499253 0) (-0.305973 -0.0704679 0) (-0.302358 -0.0907322 0) (-0.29772 -0.110565 0) (-0.292281 -0.129874 0) (-0.286275 -0.14862 0) (-0.279941 -0.166797 0) (-0.273504 -0.184429 0) (-0.267168 -0.201549 0) (-0.261106 -0.218202 0) (-0.255457 -0.234448 0) (-0.250329 -0.250375 0) (-0.245796 -0.266087 0) (-0.241882 -0.281659 0) (-0.238503 -0.297029 0) (-0.23538 -0.311842 0) (-0.232019 -0.325345 0) (-0.227799 -0.336441 0) (-0.22219 -0.344014 0) (-0.215006 -0.347468 0) (-0.206556 -0.34717 0) (-0.19757 -0.344471 0) (-0.188904 -0.341159 0) (-0.181184 -0.33869 0) (-0.17466 -0.337723 0) (-0.169302 -0.338178 0) (-0.16497 -0.339559 0) (-0.161561 -0.341281 0) (-0.159075 -0.343009 0) (-0.157527 -0.345136 0) (-0.156592 -0.349058 0) (-0.155139 -0.356616 0) (-0.151128 -0.368629 0) (-0.142306 -0.383265 0) (-0.127636 -0.395282 0) (-0.108432 -0.397116 0) (-0.0876765 -0.381191 0) (-0.0680236 -0.339029 0) (-0.0471036 -0.254031 0) (-0.0154914 -0.097347 0) (0.0258858 0.00827451 0) (0.000899622 0.093517 0) (0.00731761 0.141793 0) (0.0149261 0.16409 0) (0.0217405 0.178438 0) (0.0279376 0.189232 0) (0.0337942 0.198616 0) (0.0399417 0.208672 0) (0.0473047 0.221005 0) (0.0561653 0.235387 0) (0.0649443 0.249458 0) (0.0705718 0.260147 0) (0.0700447 0.264926 0) (0.0624445 0.263004 0) (0.0495269 0.256277 0) (0.0347798 0.249154 0) (0.0221649 0.246437 0) (0.0138365 0.250428 0) (0.00787841 0.258419 0) (0.00032194 0.264932 0) (-0.00959254 0.268227 0) (-0.0200293 0.270397 0) (-0.0302963 0.272383 0) (-0.0402901 0.274312 0) (-0.0499603 0.276338 0) (-0.0597306 0.277436 0) (-0.0698464 0.276528 0) (-0.0801537 0.273643 0) (-0.0906111 0.269346 0) (-0.101396 0.264488 0) (-0.11264 0.25983 0) (-0.124188 0.25543 0) (-0.135813 0.251133 0) (-0.147655 0.247209 0) (-0.159834 0.243717 0) (-0.171939 0.239961 0) (-0.183597 0.235317 0) (-0.194775 0.229733 0) (-0.205147 0.223069 0) (-0.213993 0.214888 0) (-0.220785 0.204962 0) (-0.225659 0.19358 0) (-0.229523 0.181528 0) (-0.23351 0.169672 0) (-0.238168 0.158437 0) (-0.243299 0.147772 0) (-0.248556 0.137582 0) (-0.25403 0.128033 0) (-0.260198 0.119382 0) (-0.267513 0.111629 0) (-0.276089 0.104379 0) (-0.285625 0.0969199 0) (-0.295505 0.0883984 0) (-0.304964 0.0780226 0) (-0.313281 0.0652437 0) (-0.319938 0.0498729 0) (-0.324674 0.0321108 0) (-0.327457 0.0124556 0) (-0.3284 -0.0084717 0) (-0.327631 -0.0300641 0) (-0.325292 -0.0518444 0) (-0.32152 -0.0734577 0) (-0.316476 -0.0946509 0) (-0.310342 -0.11525 0) (-0.303329 -0.135148 0) (-0.295663 -0.154293 0) (-0.287583 -0.17268 0) (-0.27933 -0.190335 0) (-0.271142 -0.207306 0) (-0.263235 -0.223658 0) (-0.255807 -0.239476 0) (-0.249034 -0.254868 0) (-0.243062 -0.269974 0) (-0.237989 -0.284932 0) (-0.233809 -0.299807 0) (-0.230325 -0.314425 0) (-0.227074 -0.328201 0) (-0.223379 -0.3401 0) (-0.21854 -0.348864 0) (-0.212131 -0.353554 0) (-0.20423 -0.354125 0) (-0.195449 -0.351643 0) (-0.186689 -0.347882 0) (-0.178752 -0.344518 0) (-0.172097 -0.342486 0) (-0.166879 -0.341889 0) (-0.163104 -0.34229 0) (-0.16074 -0.343078 0) (-0.159764 -0.343893 0) (-0.160059 -0.345289 0) (-0.161042 -0.349201 0) (-0.161165 -0.358254 0) (-0.157899 -0.373708 0) (-0.148764 -0.393166 0) (-0.133037 -0.409788 0) (-0.112329 -0.41447 0) (-0.089081 -0.399172 0) (-0.0661302 -0.35614 0) (-0.0433456 -0.273507 0) (-0.0205946 -0.129374 0) (0.0287656 0.0130219 0) (0.000884009 0.0902486 0) (0.00775713 0.135814 0) (0.0163847 0.157918 0) (0.0244972 0.172692 0) (0.0321315 0.183919 0) (0.0393573 0.193494 0) (0.0464017 0.203257 0) (0.0537385 0.214748 0) (0.0618774 0.228433 0) (0.070393 0.243211 0) (0.0774438 0.256872 0) (0.0802426 0.266573 0) (0.0766268 0.27 0) (0.0666145 0.267068 0) (0.0524117 0.260791 0) (0.0377555 0.256048 0) (0.0261814 0.257103 0) (0.0181099 0.264088 0) (0.0101094 0.272027 0) (-0.000282289 0.276713 0) (-0.0118673 0.279135 0) (-0.0234223 0.280972 0) (-0.0346857 0.282628 0) (-0.0454845 0.284498 0) (-0.0561846 0.285731 0) (-0.067138 0.28502 0) (-0.0782483 0.282262 0) (-0.0894758 0.278145 0) (-0.101015 0.273576 0) (-0.11295 0.269188 0) (-0.125086 0.264928 0) (-0.137343 0.26078 0) (-0.149998 0.257105 0) (-0.163027 0.253712 0) (-0.175917 0.24975 0) (-0.188359 0.244735 0) (-0.200109 0.238529 0) (-0.210465 0.230715 0) (-0.218789 0.220942 0) (-0.22524 0.209524 0) (-0.230849 0.197387 0) (-0.236836 0.185498 0) (-0.243604 0.174209 0) (-0.250573 0.16326 0) (-0.257118 0.152485 0) (-0.263388 0.142256 0) (-0.270152 0.133162 0) (-0.278138 0.125447 0) (-0.287613 0.118792 0) (-0.29831 0.112424 0) (-0.309555 0.105338 0) (-0.320484 0.0965373 0) (-0.33025 0.0852513 0) (-0.338215 0.0710904 0) (-0.344039 0.0540925 0) (-0.347669 0.0346672 0) (-0.349234 0.0134359 0) (-0.348915 -0.00893524 0) (-0.346857 -0.0318447 0) (-0.3432 -0.0548316 0) (-0.338066 -0.0775365 0) (-0.331603 -0.0996915 0) (-0.323982 -0.121104 0) (-0.315397 -0.141648 0) (-0.306071 -0.161256 0) (-0.296246 -0.17991 0) (-0.28618 -0.197633 0) (-0.276137 -0.214475 0) (-0.266372 -0.230512 0) (-0.257127 -0.245842 0) (-0.248626 -0.260593 0) (-0.24107 -0.274932 0) (-0.234619 -0.289056 0) (-0.229348 -0.303142 0) (-0.225168 -0.317204 0) (-0.221714 -0.330872 0) (-0.218321 -0.343248 0) (-0.214171 -0.353037 0) (-0.208585 -0.358996 0) (-0.201367 -0.360638 0) (-0.192939 -0.358635 0) (-0.184193 -0.354625 0) (-0.176075 -0.350434 0) (-0.169223 -0.347259 0) (-0.163949 -0.345393 0) (-0.160397 -0.344492 0) (-0.158634 -0.343986 0) (-0.158642 -0.343593 0) (-0.160181 -0.344135 0) (-0.162426 -0.34817 0) (-0.163528 -0.35912 0) (-0.160754 -0.378532 0) (-0.151813 -0.40317 0) (-0.136444 -0.424601 0) (-0.11591 -0.432721 0) (-0.0909487 -0.418982 0) (-0.0645919 -0.374532 0) (-0.0407909 -0.291817 0) (-0.024657 -0.15801 0) (0.0249654 0.0155328 0) (0.000934874 0.0868286 0) (0.00832178 0.129322 0) (0.0179591 0.150904 0) (0.0274074 0.165893 0) (0.0366132 0.177462 0) (0.0454388 0.187387 0) (0.0537721 0.197345 0) (0.0617058 0.208709 0) (0.0695851 0.222109 0) (0.077462 0.237114 0) (0.0845702 0.252419 0) (0.0890846 0.265704 0) (0.0886404 0.274087 0) (0.0819215 0.275878 0) (0.0695692 0.272282 0) (0.0543454 0.267285 0) (0.0401367 0.265951 0) (0.0292967 0.271018 0) (0.0200692 0.279489 0) (0.0091253 0.285721 0) (-0.00352607 0.288732 0) (-0.0164007 0.290486 0) (-0.0289885 0.291826 0) (-0.0409997 0.293411 0) (-0.0527058 0.294652 0) (-0.0645361 0.294077 0) (-0.0764747 0.291414 0) (-0.0884947 0.287448 0) (-0.100788 0.283126 0) (-0.113389 0.278942 0) (-0.126125 0.274817 0) (-0.139111 0.270916 0) (-0.152668 0.267564 0) (-0.166562 0.264245 0) (-0.180197 0.260027 0) (-0.193204 0.254473 0) (-0.205034 0.247253 0) (-0.214966 0.237941 0) (-0.223048 0.226746 0) (-0.230378 0.214695 0) (-0.238292 0.202883 0) (-0.247156 0.191626 0) (-0.256077 0.180436 0) (-0.264091 0.168985 0) (-0.271335 0.157805 0) (-0.278854 0.147871 0) (-0.287656 0.139758 0) (-0.298163 0.133301 0) (-0.310158 0.127723 0) (-0.322942 0.121899 0) (-0.335565 0.114637 0) (-0.347063 0.10494 0) (-0.35667 0.0921988 0) (-0.363945 0.0762682 0) (-0.368783 0.0574295 0) (-0.37131 0.0362577 0) (-0.371739 0.0134392 0) (-0.370264 -0.0103735 0) (-0.367013 -0.0346104 0) (-0.362116 -0.0588247 0) (-0.355678 -0.0826542 0) (-0.347836 -0.105815 0) (-0.338747 -0.128096 0) (-0.3286 -0.149347 0) (-0.317615 -0.169481 0) (-0.306043 -0.188459 0) (-0.294158 -0.206292 0) (-0.282247 -0.223028 0) (-0.270597 -0.238747 0) (-0.259483 -0.253559 0) (-0.249162 -0.267607 0) (-0.239872 -0.28108 0) (-0.231825 -0.294215 0) (-0.225174 -0.307277 0) (-0.219949 -0.320442 0) (-0.215941 -0.333587 0) (-0.212574 -0.346037 0) (-0.208976 -0.356565 0) (-0.204244 -0.363738 0) (-0.197848 -0.366609 0) (-0.189941 -0.365357 0) (-0.181323 -0.361338 0) (-0.17305 -0.356438 0) (-0.165945 -0.352119 0) (-0.160457 -0.348889 0) (-0.156812 -0.346506 0) (-0.155145 -0.344484 0) (-0.155456 -0.342703 0) (-0.157432 -0.342335 0) (-0.160109 -0.346581 0) (-0.16158 -0.359559 0) (-0.159255 -0.382884 0) (-0.151291 -0.412363 0) (-0.13772 -0.438403 0) (-0.118536 -0.450814 0) (-0.0920794 -0.440139 0) (-0.062701 -0.39383 0) (-0.0396485 -0.308001 0) (-0.0269851 -0.180191 0) (0.0149486 0.0134966 0) (0.00107283 0.0831707 0) (0.00909166 0.122286 0) (0.0197825 0.14304 0) (0.0306359 0.157998 0) (0.0415368 0.169769 0) (0.0521371 0.180108 0) (0.0621064 0.190568 0) (0.0712816 0.202369 0) (0.0796903 0.216074 0) (0.0873519 0.231479 0) (0.0940266 0.24782 0) (0.0988788 0.263496 0) (0.100168 0.275877 0) (0.0960954 0.282443 0) (0.08599 0.282721 0) (0.0712762 0.279214 0) (0.0553513 0.276707 0) (0.0416366 0.279661 0) (0.0304034 0.287729 0) (0.0185692 0.295273 0) (0.00487939 0.299166 0) (-0.00933501 0.300918 0) (-0.0232787 0.301925 0) (-0.0365574 0.303111 0) (-0.0493252 0.304223 0) (-0.0620586 0.303707 0) (-0.0748351 0.301097 0) (-0.0876504 0.297246 0) (-0.100681 0.293114 0) (-0.113924 0.289083 0) (-0.127303 0.285137 0) (-0.141125 0.281598 0) (-0.155624 0.278593 0) (-0.170309 0.275257 0) (-0.184498 0.27061 0) (-0.197682 0.264198 0) (-0.209213 0.25564 0) (-0.218917 0.244968 0) (-0.227825 0.233182 0) (-0.23744 0.221564 0) (-0.248259 0.210502 0) (-0.259222 0.199301 0) (-0.268967 0.187331 0) (-0.277458 0.175131 0) (-0.285937 0.164053 0) (-0.295696 0.1551 0) (-0.307314 0.148366 0) (-0.320648 0.143161 0) (-0.335014 0.138308 0) (-0.349421 0.132451 0) (-0.362824 0.124368 0) (-0.374342 0.113204 0) (-0.383419 0.0985986 0) (-0.389866 0.0806745 0) (-0.393771 0.0599191 0) (-0.395357 0.0370045 0) (-0.394849 0.0126134 0) (-0.392404 -0.0126489 0) (-0.388118 -0.0382409 0) (-0.382104 -0.0637245 0) (-0.374454 -0.088732 0) (-0.365293 -0.112963 0) (-0.354771 -0.136181 0) (-0.343078 -0.158213 0) (-0.330438 -0.178942 0) (-0.317111 -0.198307 0) (-0.303386 -0.2163 0) (-0.28957 -0.232962 0) (-0.275976 -0.248376 0) (-0.262908 -0.262662 0) (-0.250655 -0.27598 0) (-0.239484 -0.288531 0) (-0.229644 -0.300577 0) (-0.221358 -0.312435 0) (-0.214766 -0.324408 0) (-0.209829 -0.336608 0) (-0.206145 -0.348661 0) (-0.20287 -0.35953 0) (-0.198944 -0.367731 0) (-0.193501 -0.371913 0) (-0.186321 -0.371684 0) (-0.177996 -0.367958 0) (-0.16962 -0.362548 0) (-0.162204 -0.357153 0) (-0.156345 -0.352553 0) (-0.152323 -0.348649 0) (-0.150285 -0.345053 0) (-0.150234 -0.341843 0) (-0.151864 -0.340563 0) (-0.154237 -0.344995 0) (-0.155653 -0.359761 0) (-0.153984 -0.386385 0) (-0.147821 -0.419911 0) (-0.136991 -0.450418 0) (-0.119215 -0.468548 0) (-0.0904784 -0.462696 0) (-0.0585826 -0.413749 0) (-0.0384955 -0.322156 0) (-0.0275526 -0.195824 0) (0.00260584 0.00583771 0) (0.00132138 0.0791443 0) (0.0101473 0.114632 0) (0.0219929 0.13429 0) (0.0343584 0.148946 0) (0.0470957 0.160769 0) (0.059713 0.17146 0) (0.0717709 0.182533 0) (0.0828798 0.195115 0) (0.0926817 0.209669 0) (0.100914 0.226005 0) (0.107383 0.243503 0) (0.111823 0.261008 0) (0.113374 0.276453 0) (0.110585 0.287267 0) (0.102158 0.291861 0) (0.0882894 0.291158 0) (0.0713955 0.288901 0) (0.0550726 0.290192 0) (0.0412747 0.297186 0) (0.028044 0.305529 0) (0.0132289 0.310416 0) (-0.00234249 0.312273 0) (-0.0176528 0.312928 0) (-0.0322264 0.313608 0) (-0.0460874 0.314453 0) (-0.0597345 0.313902 0) (-0.0733423 0.311295 0) (-0.0869364 0.307512 0) (-0.100671 0.303513 0) (-0.114545 0.299615 0) (-0.128634 0.295932 0) (-0.143366 0.292848 0) (-0.158756 0.290133 0) (-0.174044 0.286585 0) (-0.188472 0.28123 0) (-0.201488 0.273666 0) (-0.212775 0.263824 0) (-0.223092 0.252515 0) (-0.234077 0.241189 0) (-0.246566 0.23049 0) (-0.25956 0.219626 0) (-0.271309 0.20754 0) (-0.281371 0.194517 0) (-0.291036 0.182169 0) (-0.301878 0.172002 0) (-0.314662 0.164485 0) (-0.329331 0.159131 0) (-0.345252 0.154816 0) (-0.361436 0.150096 0) (-0.376799 0.143549 0) (-0.390387 0.13406 0) (-0.401536 0.121013 0) (-0.409953 0.104331 0) (-0.415665 0.0843718 0) (-0.418865 0.0617384 0) (-0.419777 0.0371156 0) (-0.418586 0.0111518 0) (-0.415394 -0.0155913 0) (-0.410252 -0.042593 0) (-0.403257 -0.0694164 0) (-0.394486 -0.0956828 0) (-0.38406 -0.12107 0) (-0.372133 -0.145315 0) (-0.358902 -0.168212 0) (-0.344602 -0.189616 0) (-0.329505 -0.20944 0) (-0.313913 -0.227657 0) (-0.298148 -0.244294 0) (-0.282544 -0.259433 0) (-0.267435 -0.273203 0) (-0.25314 -0.285778 0) (-0.239958 -0.297375 0) (-0.228171 -0.308269 0) (-0.218045 -0.318798 0) (-0.209813 -0.329347 0) (-0.203582 -0.340219 0) (-0.199173 -0.351375 0) (-0.195887 -0.362095 0) (-0.192599 -0.370985 0) (-0.188158 -0.376438 0) (-0.181911 -0.37746 0) (-0.174102 -0.374378 0) (-0.165739 -0.368747 0) (-0.157989 -0.362435 0) (-0.151627 -0.356546 0) (-0.146992 -0.35119 0) (-0.14421 -0.346097 0) (-0.14328 -0.341526 0) (-0.143971 -0.339338 0) (-0.145566 -0.343755 0) (-0.146789 -0.359718 0) (-0.146143 -0.38863 0) (-0.142559 -0.42528 0) (-0.134931 -0.460612 0) (-0.117902 -0.48665 0) (-0.0857661 -0.487215 0) (-0.051342 -0.433709 0) (-0.0346894 -0.333565 0) (-0.0254445 -0.206089 0) (-0.0087478 -0.00667706 0) (0.00170893 0.0745879 0) (0.0115636 0.10624 0) (0.024711 0.124573 0) (0.0387555 0.138649 0) (0.0535615 0.150291 0) (0.0686088 0.161123 0) (0.0833356 0.172766 0) (0.0970286 0.186334 0) (0.108926 0.202219 0) (0.118439 0.220154 0) (0.1252 0.239406 0) (0.12909 0.258887 0) (0.129892 0.276941 0) (0.126889 0.291355 0) (0.118926 0.300119 0) (0.10548 0.302916 0) (0.0879111 0.302133 0) (0.0693385 0.302573 0) (0.0527017 0.308209 0) (0.0375356 0.316733 0) (0.0214033 0.322508 0) (0.00445135 0.324551 0) (-0.012231 0.324819 0) (-0.0280962 0.324895 0) (-0.04305 0.325334 0) (-0.0576021 0.324641 0) (-0.072017 0.321979 0) (-0.0863546 0.318212 0) (-0.100753 0.314296 0) (-0.115257 0.31055 0) (-0.13012 0.307233 0) (-0.145768 0.304633 0) (-0.161889 0.302039 0) (-0.177493 0.297999 0) (-0.191849 0.291662 0) (-0.204624 0.282911 0) (-0.216234 0.272334 0) (-0.228244 0.261387 0) (-0.24197 0.251139 0) (-0.256795 0.240955 0) (-0.270715 0.229333 0) (-0.282672 0.215982 0) (-0.293734 0.202501 0) (-0.305739 0.190909 0) (-0.319701 0.182174 0) (-0.335668 0.176117 0) (-0.353088 0.171791 0) (-0.37101 0.16778 0) (-0.388339 0.162535 0) (-0.404079 0.154716 0) (-0.417483 0.143419 0) (-0.428158 0.128297 0) (-0.43605 0.109517 0) (-0.44131 0.087582 0) (-0.444135 0.0631361 0) (-0.444686 0.0368251 0) (-0.443075 0.00925824 0) (-0.439344 -0.0190321 0) (-0.433496 -0.0475337 0) (-0.425616 -0.0758027 0) (-0.415775 -0.103441 0) (-0.404098 -0.130095 0) (-0.390759 -0.155469 0) (-0.375974 -0.179325 0) (-0.359998 -0.201488 0) (-0.34312 -0.221848 0) (-0.325651 -0.240357 0) (-0.307924 -0.257029 0) (-0.290285 -0.271939 0) (-0.273088 -0.285218 0) (-0.25668 -0.297053 0) (-0.241394 -0.307677 0) (-0.227543 -0.317376 0) (-0.215426 -0.3265 0) (-0.205328 -0.335467 0) (-0.197475 -0.344713 0) (-0.191901 -0.354491 0) (-0.188167 -0.364504 0) (-0.18522 -0.37361 0) (-0.181708 -0.380125 0) (-0.176554 -0.382528 0) (-0.169517 -0.380447 0) (-0.161362 -0.374974 0) (-0.153326 -0.368001 0) (-0.146385 -0.360979 0) (-0.140978 -0.354314 0) (-0.137213 -0.347886 0) (-0.13509 -0.342079 0) (-0.134512 -0.338948 0) (-0.135137 -0.342969 0) (-0.136282 -0.359257 0) (-0.137117 -0.389214 0) (-0.136811 -0.428127 0) (-0.132761 -0.469168 0) (-0.116254 -0.505811 0) (-0.0812104 -0.514204 0) (-0.0443033 -0.45412 0) (-0.0267725 -0.342364 0) (-0.021141 -0.213805 0) (-0.0135016 -0.0206811 0) (0.00225499 0.0693192 0) (0.0133871 0.0969759 0) (0.0280225 0.113774 0) (0.0439954 0.126949 0) (0.0612481 0.138014 0) (0.0792276 0.14869 0) (0.0971127 0.160836 0) (0.113774 0.175599 0) (0.128102 0.193293 0) (0.139258 0.213505 0) (0.146702 0.235279 0) (0.150242 0.25734 0) (0.149924 0.278121 0) (0.145662 0.29576 0) (0.136883 0.308303 0) (0.122992 0.314745 0) (0.104588 0.316229 0) (0.0840208 0.316676 0) (0.0645073 0.32101 0) (0.0469696 0.329147 0) (0.0292688 0.335524 0) (0.0108994 0.337745 0) (-0.00714398 0.337557 0) (-0.0242656 0.336938 0) (-0.0402808 0.336837 0) (-0.055707 0.335892 0) (-0.0708843 0.333107 0) (-0.0859122 0.329304 0) (-0.100928 0.325439 0) (-0.116069 0.321895 0) (-0.131737 0.319031 0) (-0.148216 0.316846 0) (-0.164809 0.314109 0) (-0.180425 0.309283 0) (-0.194548 0.301852 0) (-0.207381 0.292266 0) (-0.220172 0.281829 0) (-0.234619 0.272008 0) (-0.250831 0.262691 0) (-0.26687 0.252127 0) (-0.280978 0.239194 0) (-0.293633 0.225042 0) (-0.306816 0.212063 0) (-0.321896 0.201845 0) (-0.339075 0.194617 0) (-0.357898 0.189711 0) (-0.377488 0.185867 0) (-0.396763 0.181528 0) (-0.414701 0.175194 0) (-0.430497 0.165703 0) (-0.44367 0.152401 0) (-0.454071 0.135191 0) (-0.461784 0.1144 0) (-0.466973 0.0905878 0) (-0.469772 0.0643702 0) (-0.470241 0.03634 0) (-0.468408 0.00708995 0) (-0.464257 -0.0228427 0) (-0.457756 -0.0529826 0) (-0.448989 -0.082843 0) (-0.438039 -0.111994 0) (-0.42506 -0.14004 0) (-0.410258 -0.166649 0) (-0.393884 -0.191552 0) (-0.37622 -0.214548 0) (-0.357574 -0.235507 0) (-0.338268 -0.254368 0) (-0.318635 -0.271133 0) (-0.299022 -0.285866 0) (-0.279781 -0.298697 0) (-0.261274 -0.309815 0) (-0.243858 -0.319467 0) (-0.22788 -0.327954 0) (-0.213669 -0.335633 0) (-0.201543 -0.342932 0) (-0.191805 -0.350352 0) (-0.184654 -0.358358 0) (-0.179961 -0.367081 0) (-0.176918 -0.375816 0) (-0.174118 -0.382992 0) (-0.170113 -0.386753 0) (-0.164106 -0.385979 0) (-0.156428 -0.381102 0) (-0.148252 -0.373826 0) (-0.140744 -0.365902 0) (-0.134499 -0.358118 0) (-0.129652 -0.350544 0) (-0.126216 -0.343632 0) (-0.124263 -0.339471 0) (-0.123913 -0.342578 0) (-0.125167 -0.358135 0) (-0.127875 -0.387775 0) (-0.131326 -0.428134 0) (-0.131306 -0.475852 0) (-0.116418 -0.525277 0) (-0.0820794 -0.542557 0) (-0.0448972 -0.477263 0) (-0.0168637 -0.350533 0) (-0.0171801 -0.219443 0) (-0.0106606 -0.0330139 0) (0.00297671 0.0631397 0) (0.0156219 0.086686 0) (0.0319521 0.101724 0) (0.050161 0.113584 0) (0.0702617 0.123601 0) (0.0914917 0.133888 0) (0.112633 0.146592 0) (0.132182 0.162856 0) (0.148828 0.18285 0) (0.161607 0.205948 0) (0.169884 0.230942 0) (0.173351 0.256288 0) (0.172052 0.280281 0) (0.166197 0.301172 0) (0.155802 0.317195 0) (0.140644 0.327122 0) (0.121025 0.331225 0) (0.098583 0.332368 0) (0.076318 0.33566 0) (0.0561623 0.342975 0) (0.0366575 0.34955 0) (0.0168248 0.351834 0) (-0.00253932 0.351099 0) (-0.0208388 0.349685 0) (-0.0378552 0.348912 0) (-0.0540973 0.347602 0) (-0.0699712 0.344626 0) (-0.0856199 0.340737 0) (-0.101203 0.336916 0) (-0.11698 0.333642 0) (-0.13343 0.331265 0) (-0.150555 0.329321 0) (-0.167315 0.326127 0) (-0.182713 0.320314 0) (-0.196692 0.31196 0) (-0.210173 0.302224 0) (-0.224896 0.292767 0) (-0.24184 0.284245 0) (-0.25964 0.275139 0) (-0.275995 0.263472 0) (-0.290447 0.249437 0) (-0.304786 0.235418 0) (-0.320833 0.223682 0) (-0.339066 0.214998 0) (-0.359131 0.209036 0) (-0.380268 0.204802 0) (-0.40143 0.200857 0) (-0.421577 0.195656 0) (-0.439862 0.187849 0) (-0.455715 0.176489 0) (-0.468891 0.161166 0) (-0.479399 0.141963 0) (-0.487347 0.119278 0) (-0.492828 0.0936491 0) (-0.495859 0.0656452 0) (-0.496372 0.0358171 0) (-0.494312 0.00473001 0) (-0.48966 -0.0270181 0) (-0.482389 -0.0589845 0) (-0.472583 -0.090615 0) (-0.460379 -0.121424 0) (-0.445978 -0.150976 0) (-0.429639 -0.178901 0) (-0.411652 -0.204905 0) (-0.392334 -0.228771 0) (-0.372009 -0.25036 0) (-0.351001 -0.269604 0) (-0.329635 -0.286501 0) (-0.308236 -0.301108 0) (-0.287137 -0.313548 0) (-0.266686 -0.324002 0) (-0.247244 -0.332719 0) (-0.22918 -0.340008 0) (-0.212858 -0.346238 0) (-0.198629 -0.351842 0) (-0.186835 -0.357336 0) (-0.17779 -0.363304 0) (-0.171632 -0.370209 0) (-0.167937 -0.377909 0) (-0.165458 -0.385179 0) (-0.162501 -0.390059 0) (-0.157724 -0.390778 0) (-0.150847 -0.386943 0) (-0.142779 -0.379808 0) (-0.134815 -0.371288 0) (-0.127771 -0.362602 0) (-0.121863 -0.354077 0) (-0.117138 -0.34618 0) (-0.11383 -0.340874 0) (-0.112523 -0.342496 0) (-0.113908 -0.35622 0) (-0.118476 -0.384182 0) (-0.12559 -0.425148 0) (-0.129812 -0.479896 0) (-0.118683 -0.542309 0) (-0.090917 -0.568947 0) (-0.0578653 -0.505696 0) (-0.0110515 -0.362091 0) (-0.0158172 -0.222087 0) (-0.00732893 -0.0419434 0) (0.00386196 0.0558632 0) (0.0182031 0.0752335 0) (0.0364226 0.0882621 0) (0.0571219 0.0983375 0) (0.0802233 0.106924 0) (0.104558 0.116807 0) (0.128527 0.130309 0) (0.150428 0.148449 0) (0.168924 0.171175 0) (0.183043 0.197622 0) (0.19211 0.226345 0) (0.195732 0.255549 0) (0.193838 0.283303 0) (0.186657 0.307752 0) (0.174536 0.32721 0) (0.157718 0.340431 0) (0.136596 0.347223 0) (0.112366 0.349513 0) (0.0875946 0.352094 0) (0.0647972 0.358318 0) (0.0433443 0.36465 0) (0.0220378 0.366776 0) (0.00143174 0.365384 0) (-0.0179332 0.363058 0) (-0.0358527 0.361488 0) (-0.0528215 0.359706 0) (-0.0693042 0.356468 0) (-0.0854885 0.352454 0) (-0.101583 0.348692 0) (-0.117975 0.345755 0) (-0.135114 0.343821 0) (-0.152626 0.341859 0) (-0.169265 0.337921 0) (-0.184372 0.331119 0) (-0.198537 0.322308 0) (-0.213313 0.313222 0) (-0.230292 0.305215 0) (-0.249161 0.297574 0) (-0.267587 0.287874 0) (-0.28402 0.274972 0) (-0.299545 0.260609 0) (-0.316337 0.247583 0) (-0.335373 0.237388 0) (-0.356437 0.230086 0) (-0.378897 0.225003 0) (-0.401801 0.220936 0) (-0.424094 0.216403 0) (-0.44489 0.209982 0) (-0.463544 0.200511 0) (-0.479699 0.187263 0) (-0.493259 0.170013 0) (-0.504258 0.148929 0) (-0.512723 0.124404 0) (-0.518613 0.0969202 0) (-0.52182 0.0670041 0) (-0.522198 0.0352045 0) (-0.519625 0.00207262 0) (-0.514131 -0.0317744 0) (-0.505776 -0.0657681 0) (-0.494652 -0.0993213 0) (-0.480979 -0.13189 0) (-0.465021 -0.163003 0) (-0.447093 -0.192264 0) (-0.427531 -0.219363 0) (-0.406682 -0.244078 0) (-0.384883 -0.266273 0) (-0.362455 -0.285888 0) (-0.339695 -0.302926 0) (-0.316888 -0.317444 0) (-0.294318 -0.329555 0) (-0.272284 -0.339427 0) (-0.251118 -0.347292 0) (-0.23119 -0.353451 0) (-0.212889 -0.358278 0) (-0.196607 -0.362212 0) (-0.182722 -0.365771 0) (-0.171611 -0.369575 0) (-0.16359 -0.374291 0) (-0.15865 -0.38029 0) (-0.155933 -0.386949 0) (-0.153735 -0.392475 0) (-0.150247 -0.394675 0) (-0.144494 -0.392261 0) (-0.136874 -0.385771 0) (-0.128668 -0.377035 0) (-0.120946 -0.367691 0) (-0.114083 -0.358406 0) (-0.108174 -0.349647 0) (-0.103569 -0.343114 0) (-0.101211 -0.34276 0) (-0.102404 -0.353697 0) (-0.108138 -0.378814 0) (-0.117954 -0.419497 0) (-0.125976 -0.480439 0) (-0.120555 -0.553556 0) (-0.104278 -0.589995 0) (-0.0782005 -0.538007 0) (-0.0159614 -0.380853 0) (-0.0167124 -0.223839 0) (-0.00743402 -0.0498936 0) (0.00489579 0.0473379 0) (0.0210204 0.0625477 0) (0.0412193 0.0733094 0) (0.0644076 0.0812139 0) (0.0902072 0.0882639 0) (0.11701 0.0979737 0) (0.142983 0.112613 0) (0.166452 0.132953 0) (0.186183 0.158694 0) (0.201254 0.188758 0) (0.210975 0.2215 0) (0.214888 0.25492 0) (0.212808 0.286859 0) (0.204844 0.315246 0) (0.19141 0.338303 0) (0.173063 0.354767 0) (0.150445 0.364228 0) (0.124605 0.367932 0) (0.0976885 0.370128 0) (0.0724491 0.375143 0) (0.0490517 0.380823 0) (0.0263315 0.38251 0) (0.0046135 0.380309 0) (-0.0156664 0.376946 0) (-0.034349 0.37447 0) (-0.0519246 0.37212 0) (-0.0689061 0.368558 0) (-0.0855274 0.364393 0) (-0.102069 0.360723 0) (-0.119021 0.35816 0) (-0.136682 0.356543 0) (-0.154288 0.354265 0) (-0.170601 0.34941 0) (-0.185527 0.341858 0) (-0.200343 0.333251 0) (-0.21687 0.325465 0) (-0.235904 0.31887 0) (-0.255841 0.311393 0) (-0.274307 0.300637 0) (-0.291167 0.28696 0) (-0.308505 0.27317 0) (-0.327989 0.261621 0) (-0.349717 0.252926 0) (-0.373151 0.246719 0) (-0.397507 0.24211 0) (-0.421753 0.237783 0) (-0.444952 0.232337 0) (-0.466392 0.224514 0) (-0.485594 0.213338 0) (-0.50233 0.198262 0) (-0.516524 0.17916 0) (-0.528119 0.156204 0) (-0.537005 0.129743 0) (-0.543007 0.100218 0) (-0.54594 0.0681464 0) (-0.545669 0.0341093 0) (-0.542131 -0.00128784 0) (-0.535394 -0.0374231 0) (-0.5256 -0.0735643 0) (-0.512919 -0.109099 0) (-0.497623 -0.143446 0) (-0.480031 -0.176101 0) (-0.460509 -0.20665 0) (-0.439443 -0.234774 0) (-0.417221 -0.260257 0) (-0.394205 -0.282979 0) (-0.37072 -0.302902 0) (-0.347035 -0.320049 0) (-0.323378 -0.334491 0) (-0.299946 -0.346337 0) (-0.276946 -0.355736 0) (-0.254627 -0.362885 0) (-0.233309 -0.368051 0) (-0.213383 -0.371593 0) (-0.19528 -0.373949 0) (-0.179431 -0.375641 0) (-0.166256 -0.377286 0) (-0.156179 -0.379636 0) (-0.149497 -0.383405 0) (-0.145896 -0.388682 0) (-0.143964 -0.39418 0) (-0.141627 -0.397583 0) (-0.137233 -0.396818 0) (-0.130453 -0.391476 0) (-0.122316 -0.382982 0) (-0.114105 -0.373265 0) (-0.10644 -0.363413 0) (-0.099484 -0.353942 0) (-0.0936234 -0.346204 0) (-0.0899747 -0.343612 0) (-0.0903039 -0.351151 0) (-0.0958813 -0.372644 0) (-0.106657 -0.412108 0) (-0.117164 -0.477161 0) (-0.11795 -0.557429 0) (-0.114308 -0.604371 0) (-0.0954267 -0.568183 0) (-0.0333608 -0.407605 0) (-0.0179532 -0.228295 0) (-0.00887532 -0.059677 0) (0.00602649 0.0375271 0) (0.0238831 0.0486544 0) (0.0459647 0.0569642 0) (0.0713061 0.062503 0) (0.099079 0.0682282 0) (0.127401 0.07813 0) (0.154432 0.0942082 0) (0.178686 0.116939 0) (0.199069 0.145811 0) (0.214705 0.179579 0) (0.224896 0.216446 0) (0.229141 0.254237 0) (0.227169 0.290596 0) (0.218944 0.323219 0) (0.204798 0.350124 0) (0.185398 0.369921 0) (0.161605 0.382067 0) (0.134497 0.387356 0) (0.105915 0.389463 0) (0.0786319 0.393276 0) (0.0534705 0.397979 0) (0.0294901 0.398926 0) (0.00685205 0.395737 0) (-0.0141444 0.391215 0) (-0.0334105 0.387744 0) (-0.0514443 0.384744 0) (-0.0687941 0.380806 0) (-0.085741 0.376483 0) (-0.102652 0.372946 0) (-0.120066 0.370753 0) (-0.138023 0.369254 0) (-0.155445 0.366386 0) (-0.17135 0.360615 0) (-0.186353 0.352768 0) (-0.202264 0.345047 0) (-0.220651 0.338871 0) (-0.241152 0.333243 0) (-0.261384 0.325272 0) (-0.279802 0.3135 0) (-0.297665 0.299825 0) (-0.317195 0.287281 0) (-0.339152 0.277327 0) (-0.363111 0.269935 0) (-0.388441 0.264518 0) (-0.41425 0.26003 0) (-0.439549 0.255153 0) (-0.463554 0.248625 0) (-0.485676 0.239338 0) (-0.505521 0.22647 0) (-0.522872 0.209584 0) (-0.537566 0.188582 0) (-0.549417 0.16361 0) (-0.558213 0.134991 0) (-0.563751 0.10318 0) (-0.565889 0.0687256 0) (-0.564574 0.0322494 0) (-0.55983 -0.00555477 0) (-0.551756 -0.0439832 0) (-0.540503 -0.0822917 0) (-0.526282 -0.119808 0) (-0.509382 -0.155921 0) (-0.490156 -0.190087 0) (-0.469014 -0.221865 0) (-0.446409 -0.250924 0) (-0.422799 -0.277054 0) (-0.398617 -0.300165 0) (-0.374236 -0.32026 0) (-0.349943 -0.33741 0) (-0.32593 -0.351726 0) (-0.302303 -0.363336 0) (-0.279127 -0.372374 0) (-0.256484 -0.378991 0) (-0.234552 -0.383387 0) (-0.213641 -0.385861 0) (-0.194189 -0.386823 0) (-0.176699 -0.386796 0) (-0.161662 -0.3864 0) (-0.149558 -0.386384 0) (-0.140867 -0.387639 0) (-0.135785 -0.390836 0) (-0.133476 -0.395491 0) (-0.131932 -0.399548 0) (-0.128959 -0.400418 0) (-0.123395 -0.396651 0) (-0.115718 -0.388915 0) (-0.107277 -0.379173 0) (-0.0989908 -0.36897 0) (-0.0911386 -0.358978 0) (-0.0840581 -0.350202 0) (-0.07883 -0.345437 0) (-0.077449 -0.349431 0) (-0.0813047 -0.367012 0) (-0.0909449 -0.404377 0) (-0.101899 -0.470838 0) (-0.107652 -0.5549 0) (-0.114347 -0.611753 0) (-0.10313 -0.590265 0) (-0.0557221 -0.43959 0) (-0.0165607 -0.238118 0) (-0.0113617 -0.0701997 0) (0.00716475 0.0264501 0) (0.026552 0.0337173 0) (0.0501809 0.0395223 0) (0.0770133 0.0427479 0) (0.105823 0.0475717 0) (0.134693 0.0579953 0) (0.16195 0.0756827 0) (0.186343 0.100853 0) (0.206891 0.132841 0) (0.222738 0.170283 0) (0.233178 0.211251 0) (0.237695 0.253419 0) (0.235958 0.294269 0) (0.227818 0.331288 0) (0.213491 0.362238 0) (0.19363 0.385512 0) (0.169179 0.400412 0) (0.141302 0.407421 0) (0.111641 0.409703 0) (0.082865 0.412422 0) (0.0562897 0.415928 0) (0.0313097 0.415855 0) (0.00800969 0.411495 0) (-0.0134565 0.405704 0) (-0.0330891 0.401172 0) (-0.051407 0.397466 0) (-0.0689764 0.393118 0) (-0.086127 0.388645 0) (-0.103312 0.38528 0) (-0.121044 0.383397 0) (-0.139041 0.381778 0) (-0.156057 0.378132 0) (-0.171601 0.371643 0) (-0.187013 0.364082 0) (-0.204297 0.357776 0) (-0.224296 0.353137 0) (-0.245535 0.347852 0) (-0.265594 0.339032 0) (-0.284222 0.3267 0) (-0.303538 0.31379 0) (-0.325203 0.30282 0) (-0.349178 0.294359 0) (-0.374878 0.288042 0) (-0.401633 0.283145 0) (-0.428498 0.278518 0) (-0.454598 0.272922 0) (-0.479256 0.265223 0) (-0.501923 0.254432 0) (-0.52221 0.239834 0) (-0.539835 0.221051 0) (-0.554556 0.197996 0) (-0.566153 0.170823 0) (-0.574445 0.139874 0) (-0.579314 0.105647 0) (-0.580711 0.0687404 0) (-0.578617 0.0298114 0) (-0.573036 -0.0103996 0) (-0.564023 -0.0511293 0) (-0.551671 -0.0916494 0) (-0.536169 -0.13122 0) (-0.517801 -0.169167 0) (-0.496941 -0.204889 0) (-0.474058 -0.237897 0) (-0.449683 -0.267833 0) (-0.424376 -0.294491 0) (-0.398682 -0.317809 0) (-0.373086 -0.337849 0) (-0.347973 -0.354762 0) (-0.323595 -0.368745 0) (-0.300044 -0.379997 0) (-0.277272 -0.388683 0) (-0.255148 -0.394921 0) (-0.233578 -0.39882 0) (-0.21263 -0.400556 0) (-0.192616 -0.400437 0) (-0.174056 -0.398949 0) (-0.157551 -0.396721 0) (-0.143674 -0.394497 0) (-0.132991 -0.393199 0) (-0.12603 -0.393851 0) (-0.122674 -0.39683 0) (-0.121369 -0.400774 0) (-0.119655 -0.40297 0) (-0.115573 -0.40103 0) (-0.108791 -0.394576 0) (-0.100454 -0.385236 0) (-0.0917626 -0.374938 0) (-0.0831855 -0.364663 0) (-0.0749692 -0.355165 0) (-0.0679812 -0.348606 0) (-0.0641674 -0.349371 0) (-0.06498 -0.363199 0) (-0.0716669 -0.397764 0) (-0.0810101 -0.463158 0) (-0.0898517 -0.548174 0) (-0.103425 -0.611814 0) (-0.100442 -0.602913 0) (-0.0719959 -0.47382 0) (-0.0109771 -0.253926 0) (-0.0138311 -0.0804086 0) (0.00824188 0.0142446 0) (0.0287863 0.0180498 0) (0.053397 0.0214344 0) (0.0809108 0.0226596 0) (0.109826 0.0269933 0) (0.138385 0.0381643 0) (0.165221 0.0575014 0) (0.189255 0.0850495 0) (0.209555 0.120056 0) (0.225277 0.161067 0) (0.235703 0.206033 0) (0.240323 0.252494 0) (0.238782 0.297789 0) (0.230917 0.339217 0) (0.216798 0.374279 0) (0.197022 0.401125 0) (0.1725 0.418852 0) (0.144445 0.427695 0) (0.114356 0.430391 0) (0.08474 0.43219 0) (0.0572362 0.434391 0) (0.0316216 0.433067 0) (0.00798159 0.427376 0) (-0.0136672 0.420231 0) (-0.0334177 0.414605 0) (-0.051825 0.41016 0) (-0.0694512 0.405389 0) (-0.0866745 0.400795 0) (-0.104018 0.397627 0) (-0.121885 0.395944 0) (-0.139662 0.393967 0) (-0.156132 0.389485 0) (-0.17147 0.382643 0) (-0.187596 0.375957 0) (-0.20629 0.371333 0) (-0.227404 0.367857 0) (-0.248728 0.362347 0) (-0.268482 0.352695 0) (-0.287678 0.34045 0) (-0.308586 0.328842 0) (-0.332015 0.31949 0) (-0.35748 0.312337 0) (-0.384423 0.306885 0) (-0.412116 0.302277 0) (-0.43963 0.297329 0) (-0.466198 0.290903 0) (-0.491178 0.28196 0) (-0.514021 0.269594 0) (-0.534334 0.253179 0) (-0.551834 0.232392 0) (-0.566328 0.20719 0) (-0.577688 0.177769 0) (-0.585822 0.144506 0) (-0.590644 0.107906 0) (-0.592066 0.068577 0) (-0.58996 0.0272103 0) (-0.584201 -0.0154612 0) (-0.574744 -0.0586569 0) (-0.561639 -0.101572 0) (-0.545049 -0.143393 0) (-0.525273 -0.183347 0) (-0.502731 -0.220757 0) (-0.477955 -0.255069 0) (-0.451558 -0.285887 0) (-0.424196 -0.312995 0) (-0.39652 -0.336355 0) (-0.369135 -0.356084 0) (-0.34256 -0.372421 0) (-0.317188 -0.385679 0) (-0.293242 -0.396194 0) (-0.270729 -0.404252 0) (-0.249435 -0.41003 0) (-0.228987 -0.413589 0) (-0.209046 -0.41494 0) (-0.189544 -0.414184 0) (-0.170806 -0.41165 0) (-0.153472 -0.40792 0) (-0.138272 -0.403761 0) (-0.125871 -0.400085 0) (-0.116953 -0.398037 0) (-0.112007 -0.398659 0) (-0.110271 -0.401605 0) (-0.109421 -0.404525 0) (-0.106896 -0.404403 0) (-0.10142 -0.399679 0) (-0.093597 -0.391236 0) (-0.0847726 -0.381162 0) (-0.0756833 -0.370871 0) (-0.0665178 -0.361058 0) (-0.0578279 -0.353325 0) (-0.0512565 -0.351516 0) (-0.0483307 -0.362031 0) (-0.0510822 -0.393273 0) (-0.0576245 -0.455639 0) (-0.0683925 -0.538943 0) (-0.0860577 -0.605557 0) (-0.09027 -0.608797 0) (-0.0784015 -0.508059 0) (-0.00355499 -0.273843 0) (-0.0145511 -0.0886147 0) (0.00917459 0.00103136 0) (0.0303678 0.0019275 0) (0.0552941 0.00308658 0) (0.0826132 0.00268384 0) (0.1108 0.00693683 0) (0.138405 0.0190957 0) (0.16433 0.0399933 0) (0.187579 0.0698027 0) (0.207249 0.1077 0) (0.222482 0.152161 0) (0.232546 0.201005 0) (0.236998 0.251601 0) (0.235539 0.301151 0) (0.228073 0.346839 0) (0.214491 0.385972 0) (0.195241 0.416386 0) (0.171219 0.436968 0) (0.143589 0.447726 0) (0.113736 0.451045 0) (0.0839717 0.45214 0) (0.0561127 0.453024 0) (0.0303102 0.45029 0) (0.00670396 0.443142 0) (-0.0148078 0.434601 0) (-0.0344053 0.427882 0) (-0.052694 0.422698 0) (-0.0702049 0.417515 0) (-0.0873631 0.412838 0) (-0.104728 0.409871 0) (-0.122521 0.408241 0) (-0.139842 0.405711 0) (-0.155721 0.400482 0) (-0.171066 0.393766 0) (-0.188101 0.388434 0) (-0.208002 0.385469 0) (-0.229633 0.382637 0) (-0.250595 0.376542 0) (-0.27014 0.366373 0) (-0.290152 0.354832 0) (-0.312474 0.344777 0) (-0.337147 0.336917 0) (-0.363572 0.33088 0) (-0.391239 0.326096 0) (-0.419355 0.321581 0) (-0.447059 0.316174 0) (-0.473663 0.308826 0) (-0.498546 0.298561 0) (-0.521224 0.284565 0) (-0.541403 0.266314 0) (-0.558926 0.243567 0) (-0.573714 0.216338 0) (-0.585666 0.184832 0) (-0.594605 0.149392 0) (-0.600269 0.110469 0) (-0.602368 0.0686428 0) (-0.600643 0.0246536 0) (-0.594908 -0.0207279 0) (-0.585078 -0.0666726 0) (-0.571208 -0.112231 0) (-0.553479 -0.156518 0) (-0.532228 -0.198662 0) (-0.507934 -0.237902 0) (-0.481198 -0.273616 0) (-0.452714 -0.305362 0) (-0.423218 -0.33291 0) (-0.393438 -0.356236 0) (-0.364046 -0.375503 0) (-0.335627 -0.391015 0) (-0.308668 -0.403179 0) (-0.283541 -0.412466 0) (-0.260467 -0.41934 0) (-0.239421 -0.424177 0) (-0.220047 -0.42716 0) (-0.201702 -0.428242 0) (-0.183759 -0.427269 0) (-0.165993 -0.424241 0) (-0.148779 -0.419515 0) (-0.132927 -0.413821 0) (-0.119294 -0.408097 0) (-0.108665 -0.403483 0) (-0.10187 -0.401376 0) (-0.0990525 -0.40247 0) (-0.0984934 -0.405293 0) (-0.0973639 -0.406668 0) (-0.0934887 -0.403947 0) (-0.0866328 -0.396914 0) (-0.0780235 -0.387448 0) (-0.0686934 -0.37742 0) (-0.0588891 -0.367708 0) (-0.0488315 -0.359503 0) (-0.0397397 -0.355968 0) (-0.0331085 -0.363702 0) (-0.0319399 -0.391214 0) (-0.0355197 -0.448937 0) (-0.047924 -0.528005 0) (-0.0679328 -0.595145 0) (-0.0782674 -0.610052 0) (-0.0794104 -0.538244 0) (-0.000134431 -0.296999 0) (-0.0128642 -0.0939295 0) (0.00988447 -0.012799 0) (0.0311224 -0.0141422 0) (0.0556346 -0.0149586 0) (0.0820447 -0.0166041 0) (0.108947 -0.0121692 0) (0.134995 0.000949302 0) (0.159501 0.0234212 0) (0.181596 0.0553784 0) (0.200235 0.0960489 0) (0.214548 0.143848 0) (0.223893 0.196384 0) (0.227945 0.250859 0) (0.226479 0.30436 0) (0.21942 0.354007 0) (0.206689 0.397077 0) (0.188352 0.430977 0) (0.165299 0.454382 0) (0.138645 0.467094 0) (0.109664 0.471199 0) (0.0804315 0.47182 0) (0.0528229 0.471451 0) (0.0273308 0.467224 0) (0.00416578 0.458534 0) (-0.0168693 0.44861 0) (-0.036036 0.440837 0) (-0.0539912 0.434948 0) (-0.0712118 0.429387 0) (-0.0881625 0.424676 0) (-0.105395 0.421889 0) (-0.12289 0.420148 0) (-0.139566 0.416946 0) (-0.154891 0.411202 0) (-0.170456 0.405118 0) (-0.188442 0.401434 0) (-0.209171 0.399866 0) (-0.230759 0.397165 0) (-0.251132 0.390384 0) (-0.270644 0.380162 0) (-0.291512 0.369769 0) (-0.314849 0.361281 0) (-0.340213 0.354719 0) (-0.36708 0.349612 0) (-0.394936 0.345302 0) (-0.422964 0.340714 0) (-0.450414 0.334742 0) (-0.476691 0.326411 0) (-0.501292 0.314827 0) (-0.523927 0.299306 0) (-0.544478 0.279432 0) (-0.562866 0.255009 0) (-0.578913 0.226009 0) (-0.592274 0.192546 0) (-0.602503 0.154888 0) (-0.609146 0.113476 0) (-0.611814 0.0689278 0) (-0.610246 0.0220438 0) (-0.604315 -0.0262919 0) (-0.593938 -0.0751581 0) (-0.579157 -0.123549 0) (-0.560189 -0.170468 0) (-0.537396 -0.214959 0) (-0.511309 -0.256159 0) (-0.482598 -0.293366 0) (-0.452042 -0.326087 0) (-0.420475 -0.354076 0) (-0.388715 -0.377339 0) (-0.357501 -0.39609 0) (-0.327441 -0.410703 0) (-0.298999 -0.42165 0) (-0.272527 -0.429461 0) (-0.248319 -0.434703 0) (-0.226604 -0.437953 0) (-0.207402 -0.439688 0) (-0.190271 -0.440091 0) (-0.17429 -0.438954 0) (-0.158516 -0.435908 0) (-0.142604 -0.430836 0) (-0.127054 -0.424182 0) (-0.112873 -0.416871 0) (-0.101029 -0.410052 0) (-0.0924994 -0.405202 0) (-0.0881345 -0.403805 0) (-0.0872127 -0.405615 0) (-0.0870896 -0.407871 0) (-0.0849159 -0.40716 0) (-0.0794582 -0.40198 0) (-0.0714844 -0.39356 0) (-0.0622487 -0.384077 0) (-0.0522102 -0.374816 0) (-0.0413347 -0.366764 0) (-0.030485 -0.362359 0) (-0.0207428 -0.367831 0) (-0.0164046 -0.391346 0) (-0.0173051 -0.443121 0) (-0.0312195 -0.515835 0) (-0.0517663 -0.582184 0) (-0.0683453 -0.606602 0) (-0.0784466 -0.560554 0) (-0.00694463 -0.323007 0) (-0.00818408 -0.0980769 0) (0.010296 -0.0267002 0) (0.0309535 -0.0295645 0) (0.0544009 -0.0320706 0) (0.0792294 -0.0345603 0) (0.104284 -0.0298687 0) (0.128434 -0.0159398 0) (0.151182 0.00811073 0) (0.17164 0.0420381 0) (0.188802 0.0853838 0) (0.201862 0.136332 0) (0.210307 0.192288 0) (0.213841 0.250328 0) (0.212307 0.307439 0) (0.205534 0.360674 0) (0.193764 0.407365 0) (0.176707 0.444668 0) (0.154972 0.470786 0) (0.129778 0.485431 0) (0.102225 0.490438 0) (0.0741496 0.490801 0) (0.0473803 0.489294 0) (0.0227143 0.483553 0) (0.000410236 0.473294 0) (-0.0198025 0.462054 0) (-0.0382675 0.453308 0) (-0.0556758 0.446783 0) (-0.0724344 0.4409 0) (-0.0890333 0.436208 0) (-0.105964 0.433556 0) (-0.122943 0.431546 0) (-0.138842 0.427651 0) (-0.153714 0.421732 0) (-0.169661 0.41674 0) (-0.188476 0.414779 0) (-0.209569 0.414204 0) (-0.230673 0.411237 0) (-0.250403 0.403888 0) (-0.270013 0.394081 0) (-0.29156 0.385059 0) (-0.315413 0.378 0) (-0.340948 0.37253 0) (-0.367762 0.368172 0) (-0.395311 0.36416 0) (-0.422832 0.359378 0) (-0.449758 0.352813 0) (-0.475676 0.343582 0) (-0.500328 0.330911 0) (-0.523628 0.314224 0) (-0.545455 0.29311 0) (-0.565479 0.267266 0) (-0.583134 0.236528 0) (-0.597784 0.200942 0) (-0.608897 0.16082 0) (-0.616091 0.116713 0) (-0.619044 0.0693212 0) (-0.6175 0.0194558 0) (-0.611301 -0.0319467 0) (-0.60034 -0.0839019 0) (-0.584638 -0.135326 0) (-0.564419 -0.185088 0) (-0.540085 -0.232108 0) (-0.512211 -0.27541 0) (-0.481526 -0.314198 0) (-0.448884 -0.347918 0) (-0.415215 -0.376305 0) (-0.381452 -0.399398 0) (-0.348454 -0.417497 0) (-0.316925 -0.43109 0) (-0.287359 -0.440763 0) (-0.260026 -0.447108 0) (-0.235045 -0.450688 0) (-0.212528 -0.452085 0) (-0.19271 -0.451948 0) (-0.17573 -0.450868 0) (-0.161096 -0.449013 0) (-0.147589 -0.445962 0) (-0.133982 -0.441082 0) (-0.119902 -0.434188 0) (-0.106086 -0.425913 0) (-0.0937156 -0.417406 0) (-0.083892 -0.410123 0) (-0.0778495 -0.405949 0) (-0.0759678 -0.405897 0) (-0.0763023 -0.408206 0) (-0.0756994 -0.409206 0) (-0.0719603 -0.406155 0) (-0.0650778 -0.399224 0) (-0.0563241 -0.390573 0) (-0.0464875 -0.382005 0) (-0.0354491 -0.374551 0) (-0.0238672 -0.370015 0) (-0.0119689 -0.373729 0) (-0.00555485 -0.393209 0) (-0.00396893 -0.438189 0) (-0.0187264 -0.503367 0) (-0.0375932 -0.567449 0) (-0.0608031 -0.598611 0) (-0.0744045 -0.572891 0) (-0.0246381 -0.350772 0) (-0.000952031 -0.103821 0) (0.0103918 -0.0403176 0) (0.0298633 -0.0439778 0) (0.051665 -0.0478994 0) (0.0743683 -0.050926 0) (0.0971577 -0.045884 0) (0.119083 -0.0311926 0) (0.139649 -0.00590711 0) (0.158014 0.0300022 0) (0.173448 0.075864 0) (0.185108 0.129691 0) (0.192548 0.188769 0) (0.195482 0.250051 0) (0.193817 0.310441 0) (0.187281 0.366882 0) (0.176349 0.416748 0) (0.160793 0.457261 0) (0.140704 0.485951 0) (0.11733 0.50244 0) (0.0916722 0.508415 0) (0.0652926 0.508708 0) (0.0399066 0.506204 0) (0.0165676 0.498997 0) (-0.00446187 0.487156 0) (-0.0235206 0.47474 0) (-0.0410322 0.465146 0) (-0.0576898 0.458082 0) (-0.0738241 0.451957 0) (-0.0899272 0.447333 0) (-0.106379 0.44475 0) (-0.122641 0.442343 0) (-0.137698 0.437841 0) (-0.152244 0.43215 0) (-0.168649 0.428598 0) (-0.188045 0.428241 0) (-0.209033 0.428209 0) (-0.229358 0.424741 0) (-0.248482 0.417081 0) (-0.268209 0.408056 0) (-0.290107 0.40043 0) (-0.31397 0.394592 0) (-0.339215 0.390021 0) (-0.365543 0.38625 0) (-0.392404 0.382409 0) (-0.41922 0.377424 0) (-0.445691 0.370412 0) (-0.471675 0.360598 0) (-0.497119 0.347285 0) (-0.521868 0.329849 0) (-0.545405 0.307693 0) (-0.566917 0.280346 0) (-0.585605 0.247626 0) (-0.600936 0.209718 0) (-0.612598 0.167082 0) (-0.620292 0.120293 0) (-0.623606 0.0699874 0) (-0.622113 0.0169668 0) (-0.61556 -0.0377418 0) (-0.603838 -0.0930977 0) (-0.587037 -0.147805 0) (-0.565463 -0.200607 0) (-0.539585 -0.250298 0) (-0.510026 -0.295803 0) (-0.477542 -0.336237 0) (-0.443016 -0.370974 0) (-0.407419 -0.399719 0) (-0.371746 -0.422527 0) (-0.336942 -0.43977 0) (-0.303828 -0.452064 0) (-0.273047 -0.460171 0) (-0.245002 -0.464865 0) (-0.219778 -0.466816 0) (-0.197187 -0.466532 0) (-0.177067 -0.464494 0) (-0.159659 -0.461396 0) (-0.145267 -0.457949 0) (-0.133308 -0.454256 0) (-0.122248 -0.449598 0) (-0.110646 -0.443084 0) (-0.0982977 -0.434604 0) (-0.0862605 -0.425068 0) (-0.0758139 -0.415894 0) (-0.0683485 -0.40905 0) (-0.0651214 -0.406527 0) (-0.0653109 -0.407982 0) (-0.0659376 -0.410108 0) (-0.0640528 -0.409218 0) (-0.0586875 -0.404158 0) (-0.0508314 -0.396634 0) (-0.0416116 -0.3889 0) (-0.0310448 -0.382275 0) (-0.0197132 -0.378148 0) (-0.00684907 -0.380572 0) (0.000500652 -0.396362 0) (0.00438689 -0.434238 0) (-0.00999823 -0.49189 0) (-0.0257934 -0.551999 0) (-0.0541481 -0.587558 0) (-0.065932 -0.574597 0) (-0.0435181 -0.378755 0) (0.00773213 -0.112719 0) (0.0101829 -0.0532454 0) (0.0279141 -0.0570271 0) (0.0475807 -0.062115 0) (0.0677114 -0.0654304 0) (0.0878612 -0.0600217 0) (0.107152 -0.0446851 0) (0.125283 -0.0183235 0) (0.141362 0.0194563 0) (0.154826 0.0675736 0) (0.164941 0.123997 0) (0.171239 0.185885 0) (0.1735 0.250073 0) (0.171655 0.3134 0) (0.16542 0.372673 0) (0.155224 0.425277 0) (0.141219 0.468592 0) (0.123048 0.499719 0) (0.101756 0.517897 0) (0.0783747 0.52486 0) (0.0541366 0.525225 0) (0.0306353 0.521865 0) (0.00904588 0.51326 0) (-0.0103152 0.499915 0) (-0.0278905 0.486496 0) (-0.0442389 0.476218 0) (-0.0599609 0.468738 0) (-0.0753229 0.462464 0) (-0.0907891 0.457951 0) (-0.106586 0.455363 0) (-0.121961 0.452478 0) (-0.136164 0.447552 0) (-0.150516 0.442506 0) (-0.167356 0.440594 0) (-0.186998 0.441574 0) (-0.207473 0.441673 0) (-0.226855 0.43763 0) (-0.245426 0.429963 0) (-0.265162 0.42194 0) (-0.287008 0.415597 0) (-0.310429 0.41076 0) (-0.335008 0.406927 0) (-0.36052 0.403625 0) (-0.386515 0.39994 0) (-0.412719 0.394921 0) (-0.439153 0.387821 0) (-0.465875 0.377908 0) (-0.492733 0.364374 0) (-0.519085 0.346334 0) (-0.54386 0.32297 0) (-0.566076 0.293846 0) (-0.585238 0.25903 0) (-0.601173 0.218892 0) (-0.613581 0.17383 0) (-0.621862 0.124245 0) (-0.625265 0.0707059 0) (-0.623202 0.0141308 0) (-0.615582 -0.0442256 0) (-0.602516 -0.103166 0) (-0.584203 -0.161245 0) (-0.561093 -0.217099 0) (-0.533711 -0.269453 0) (-0.502698 -0.317153 0) (-0.4688 -0.359234 0) (-0.432889 -0.395001 0) (-0.395936 -0.424113 0) (-0.358951 -0.446627 0) (-0.32288 -0.462968 0) (-0.288529 -0.473833 0) (-0.256569 -0.480099 0) (-0.227561 -0.482726 0) (-0.201884 -0.482661 0) (-0.179541 -0.48063 0) (-0.160011 -0.476995 0) (-0.142788 -0.472053 0) (-0.12821 -0.466553 0) (-0.116713 -0.461313 0) (-0.107502 -0.456242 0) (-0.0986971 -0.450235 0) (-0.0888277 -0.442247 0) (-0.0781225 -0.432458 0) (-0.0678773 -0.422091 0) (-0.0595593 -0.413022 0) (-0.0549324 -0.407788 0) (-0.0544474 -0.407559 0) (-0.0558209 -0.410025 0) (-0.0557128 -0.411048 0) (-0.0521855 -0.408104 0) (-0.0456363 -0.401998 0) (-0.0374035 -0.395183 0) (-0.027829 -0.389435 0) (-0.0175277 -0.386012 0) (-0.00492469 -0.387536 0) (0.00236555 -0.400372 0) (0.00793719 -0.431464 0) (-0.00486178 -0.482123 0) (-0.0175846 -0.537344 0) (-0.0473199 -0.575615 0) (-0.053413 -0.570412 0) (-0.0507703 -0.405737 0) (0.0159382 -0.123266 0) (0.00969916 -0.0651384 0) (0.0252117 -0.068441 0) (0.0423461 -0.0744699 0) (0.0595445 -0.0778855 0) (0.0767517 -0.0721148 0) (0.0931122 -0.0561952 0) (0.108531 -0.0287619 0) (0.122147 0.0105065 0) (0.133488 0.0605983 0) (0.141889 0.119332 0) (0.146921 0.183687 0) (0.148463 0.250413 0) (0.146424 0.316299 0) (0.14057 0.378039 0) (0.131145 0.432978 0) (0.118657 0.478627 0) (0.102558 0.511962 0) (0.0836027 0.531661 0) (0.062779 0.539564 0) (0.0410368 0.540109 0) (0.0198478 0.536021 0) (0.000384437 0.526041 0) (-0.0169542 0.511431 0) (-0.0327783 0.497181 0) (-0.0477797 0.486419 0) (-0.0624071 0.478662 0) (-0.0768646 0.472343 0) (-0.0915586 0.467972 0) (-0.10653 0.465301 0) (-0.120887 0.461922 0) (-0.134277 0.456835 0) (-0.148535 0.45281 0) (-0.165693 0.452583 0) (-0.18522 0.454549 0) (-0.204861 0.454452 0) (-0.223231 0.449888 0) (-0.241265 0.442493 0) (-0.260801 0.435543 0) (-0.282187 0.430294 0) (-0.304801 0.426265 0) (-0.328432 0.423061 0) (-0.352952 0.420204 0) (-0.378133 0.416821 0) (-0.404075 0.412126 0) (-0.431037 0.405429 0) (-0.458988 0.395837 0) (-0.487269 0.382201 0) (-0.514599 0.363332 0) (-0.539743 0.338459 0) (-0.562181 0.307508 0) (-0.58193 0.270797 0) (-0.598735 0.228545 0) (-0.611715 0.180831 0) (-0.619773 0.127974 0) (-0.622107 0.0708006 0) (-0.6184 0.010445 0) (-0.608939 -0.0517011 0) (-0.594062 -0.114156 0) (-0.574057 -0.17549 0) (-0.549431 -0.234265 0) (-0.520724 -0.289162 0) (-0.488558 -0.338968 0) (-0.453645 -0.382638 0) (-0.416818 -0.419393 0) (-0.379047 -0.448835 0) (-0.341385 -0.471027 0) (-0.304819 -0.486476 0) (-0.270129 -0.495986 0) (-0.237847 -0.500498 0) (-0.208359 -0.500997 0) (-0.182078 -0.498531 0) (-0.159478 -0.494191 0) (-0.140607 -0.488769 0) (-0.124516 -0.482371 0) (-0.110471 -0.475106 0) (-0.0990365 -0.467867 0) (-0.090628 -0.461471 0) (-0.0840657 -0.455439 0) (-0.0771472 -0.448234 0) (-0.0687431 -0.438942 0) (-0.0596164 -0.428178 0) (-0.051218 -0.41757 0) (-0.0454937 -0.409785 0) (-0.0440031 -0.407271 0) (-0.0455967 -0.409217 0) (-0.0469995 -0.411648 0) (-0.0454667 -0.41087 0) (-0.0405841 -0.406437 0) (-0.0336589 -0.400613 0) (-0.0254486 -0.395671 0) (-0.016715 -0.393016 0) (-0.00543585 -0.393987 0) (0.00102648 -0.404591 0) (0.00724382 -0.429936 0) (-0.00333065 -0.474117 0) (-0.0134513 -0.524778 0) (-0.0407664 -0.564993 0) (-0.0393128 -0.567325 0) (-0.0449548 -0.430238 0) (0.0212962 -0.13226 0) (0.00898507 -0.0757155 0) (0.0218903 -0.0780199 0) (0.0361839 -0.0847814 0) (0.0501699 -0.088157 0) (0.0641833 -0.0820417 0) (0.0773771 -0.0656099 0) (0.0898898 -0.037308 0) (0.100878 0.00323325 0) (0.109921 0.0550245 0) (0.116486 0.115744 0) (0.120175 0.182184 0) (0.120974 0.251056 0) (0.118754 0.319103 0) (0.113336 0.382943 0) (0.104787 0.439831 0) (0.0937911 0.487397 0) (0.0798576 0.522566 0) (0.0634461 0.543631 0) (0.0453762 0.552379 0) (0.0264194 0.553172 0) (0.00785248 0.548447 0) (-0.0091273 0.537166 0) (-0.0241419 0.521543 0) (-0.0380379 0.506685 0) (-0.0515348 0.495662 0) (-0.0649399 0.48778 0) (-0.0783781 0.481522 0) (-0.0921723 0.477312 0) (-0.106163 0.474493 0) (-0.119418 0.47067 0) (-0.132065 0.465736 0) (-0.146288 0.463034 0) (-0.163571 0.4644 0) (-0.182633 0.466976 0) (-0.201215 0.466462 0) (-0.218555 0.461505 0) (-0.236013 0.454588 0) (-0.255078 0.448664 0) (-0.275642 0.444304 0) (-0.297177 0.440944 0) (-0.31969 0.438336 0) (-0.343202 0.436024 0) (-0.367811 0.433253 0) (-0.393939 0.429353 0) (-0.421834 0.423488 0) (-0.450995 0.414354 0) (-0.480064 0.40038 0) (-0.507486 0.380346 0) (-0.532545 0.353921 0) (-0.555405 0.321403 0) (-0.575983 0.282931 0) (-0.593172 0.238246 0) (-0.605387 0.187268 0) (-0.611673 0.130694 0) (-0.61187 0.0697394 0) (-0.606048 0.00569115 0) (-0.594609 -0.0601681 0) (-0.577954 -0.126021 0) (-0.556446 -0.190456 0) (-0.530548 -0.251998 0) (-0.500791 -0.309284 0) (-0.46778 -0.361061 0) (-0.432194 -0.40622 0) (-0.394816 -0.443889 0) (-0.356577 -0.473575 0) (-0.318554 -0.495312 0) (-0.28183 -0.509703 0) (-0.247299 -0.517738 0) (-0.215523 -0.520551 0) (-0.186685 -0.519191 0) (-0.160764 -0.514573 0) (-0.137972 -0.507679 0) (-0.119064 -0.499803 0) (-0.104073 -0.491718 0) (-0.0915254 -0.483152 0) (-0.0807954 -0.474198 0) (-0.0727077 -0.465954 0) (-0.0674184 -0.459021 0) (-0.0631511 -0.452279 0) (-0.0576637 -0.443942 0) (-0.0505519 -0.433568 0) (-0.0429441 -0.422247 0) (-0.0367178 -0.412417 0) (-0.0341732 -0.407359 0) (-0.0355215 -0.407987 0) (-0.0380422 -0.411134 0) (-0.0384775 -0.41235 0) (-0.0355267 -0.40977 0) (-0.030178 -0.405021 0) (-0.0235728 -0.400758 0) (-0.0167167 -0.398774 0) (-0.00748422 -0.39946 0) (-0.00244157 -0.408369 0) (0.0032818 -0.429178 0) (-0.00511429 -0.467895 0) (-0.0127041 -0.51469 0) (-0.0359597 -0.557126 0) (-0.0276174 -0.567578 0) (-0.0368107 -0.450421 0) (0.0226465 -0.138199 0) (0.00809358 -0.0847682 0) (0.0180976 -0.0856349 0) (0.0293229 -0.0929306 0) (0.0398913 -0.096159 0) (0.0505172 -0.0897216 0) (0.0603822 -0.0728921 0) (0.069846 -0.0439209 0) (0.078022 -0.00239197 0) (0.0846398 0.0508765 0) (0.0893104 0.11325 0) (0.0916186 0.181385 0) (0.0916735 0.251986 0) (0.0892865 0.321786 0) (0.0843424 0.38733 0) (0.0767875 0.445822 0) (0.0673002 0.494909 0) (0.0555821 0.531486 0) (0.0418422 0.553716 0) (0.0266826 0.563216 0) (0.0107179 0.5643 0) (-0.00498294 0.55895 0) (-0.0191805 0.546544 0) (-0.0316543 0.530122 0) (-0.0434979 0.514939 0) (-0.055379 0.503887 0) (-0.0674661 0.496038 0) (-0.0797888 0.489943 0) (-0.092566 0.4859 0) (-0.105443 0.482888 0) (-0.117557 0.478741 0) (-0.12955 0.474295 0) (-0.14374 0.473118 0) (-0.160908 0.475874 0) (-0.1792 0.478708 0) (-0.196579 0.477656 0) (-0.212887 0.472467 0) (-0.229671 0.466142 0) (-0.247979 0.46112 0) (-0.267428 0.457464 0) (-0.287706 0.454705 0) (-0.309039 0.452751 0) (-0.331664 0.451217 0) (-0.356023 0.449475 0) (-0.382677 0.44681 0) (-0.411525 0.441972 0) (-0.441356 0.433101 0) (-0.47035 0.418412 0) (-0.497343 0.397095 0) (-0.52246 0.369379 0) (-0.545928 0.335482 0) (-0.56664 0.294918 0) (-0.582568 0.247123 0) (-0.592486 0.192467 0) (-0.596252 0.13208 0) (-0.593977 0.0672886 0) (-0.586036 -0.000430812 0) (-0.572758 -0.0696928 0) (-0.5545 -0.13874 0) (-0.531752 -0.206078 0) (-0.504903 -0.270209 0) (-0.474418 -0.329718 0) (-0.440873 -0.383307 0) (-0.404943 -0.429826 0) (-0.367394 -0.468333 0) (-0.32911 -0.498223 0) (-0.291119 -0.519445 0) (-0.254502 -0.532634 0) (-0.220241 -0.538931 0) (-0.189069 -0.539741 0) (-0.16133 -0.536418 0) (-0.136876 -0.529998 0) (-0.1152 -0.521081 0) (-0.0963974 -0.510602 0) (-0.0817211 -0.50012 0) (-0.0707418 -0.490118 0) (-0.0616555 -0.479967 0) (-0.0543111 -0.470034 0) (-0.0496728 -0.461557 0) (-0.0472549 -0.454532 0) (-0.0446934 -0.447105 0) (-0.040274 -0.437716 0) (-0.0343171 -0.426527 0) (-0.0283676 -0.415409 0) (-0.025022 -0.407923 0) (-0.0258124 -0.406617 0) (-0.0290097 -0.409713 0) (-0.0312273 -0.412539 0) (-0.0303456 -0.411872 0) (-0.0267841 -0.408296 0) (-0.021931 -0.404592 0) (-0.0170713 -0.403087 0) (-0.0102944 -0.403617 0) (-0.00698905 -0.41126 0) (-0.00278692 -0.428627 0) (-0.00939786 -0.463249 0) (-0.014442 -0.506902 0) (-0.0334708 -0.552368 0) (-0.0191963 -0.569275 0) (-0.0332337 -0.464841 0) (0.0204019 -0.142567 0) (0.00708217 -0.092161 0) (0.0139851 -0.0912179 0) (0.0219922 -0.0988532 0) (0.0290024 -0.101846 0) (0.0361276 -0.0951209 0) (0.0425383 -0.0780164 0) (0.0487785 -0.0485395 0) (0.0540621 -0.0062842 0) (0.058251 0.0481546 0) (0.0609507 0.11182 0) (0.061871 0.181248 0) (0.0611953 0.253155 0) (0.0586465 0.32429 0) (0.0542169 0.391166 0) (0.0477448 0.450902 0) (0.0398052 0.501118 0) (0.0303219 0.538698 0) (0.019336 0.561868 0) (0.00723576 0.572091 0) (-0.0056382 0.573411 0) (-0.0182752 0.567425 0) (-0.0294559 0.554082 0) (-0.039269 0.537113 0) (-0.0489858 0.521912 0) (-0.0591889 0.511062 0) (-0.069892 0.503402 0) (-0.081022 0.49756 0) (-0.0926775 0.49368 0) (-0.104337 0.490462 0) (-0.115314 0.486169 0) (-0.126743 0.482536 0) (-0.140847 0.482974 0) (-0.157641 0.486849 0) (-0.174916 0.489637 0) (-0.191012 0.488012 0) (-0.206279 0.48274 0) (-0.222247 0.477036 0) (-0.239527 0.472757 0) (-0.257647 0.469672 0) (-0.276572 0.467519 0) (-0.296752 0.466375 0) (-0.31868 0.465946 0) (-0.343059 0.465657 0) (-0.370321 0.464499 0) (-0.399738 0.460593 0) (-0.429459 0.451606 0) (-0.45774 0.435963 0) (-0.484272 0.41355 0) (-0.509601 0.384804 0) (-0.533028 0.349291 0) (-0.552229 0.305923 0) (-0.565488 0.2545 0) (-0.572671 0.196067 0) (-0.573785 0.131878 0) (-0.569015 0.0633893 0) (-0.558885 -0.00783093 0) (-0.543798 -0.080151 0) (-0.524162 -0.152053 0) (-0.500426 -0.222013 0) (-0.472939 -0.28853 0) (-0.442073 -0.350124 0) (-0.408304 -0.405405 0) (-0.37229 -0.453157 0) (-0.334829 -0.49239 0) (-0.296835 -0.522417 0) (-0.259316 -0.543109 0) (-0.2233 -0.555098 0) (-0.189721 -0.559612 0) (-0.159297 -0.558218 0) (-0.132535 -0.552546 0) (-0.109583 -0.544045 0) (-0.0900552 -0.533522 0) (-0.0727847 -0.521133 0) (-0.0583776 -0.508043 0) (-0.0482536 -0.49594 0) (-0.0411118 -0.484662 0) (-0.0353413 -0.473546 0) (-0.0314611 -0.463449 0) (-0.030172 -0.455424 0) (-0.030018 -0.448409 0) (-0.0285515 -0.440223 0) (-0.0249522 -0.429886 0) (-0.0201144 -0.418352 0) (-0.0164766 -0.408901 0) (-0.0166118 -0.405321 0) (-0.0200763 -0.407627 0) (-0.0237784 -0.411524 0) (-0.0249655 -0.41269 0) (-0.0233348 -0.410371 0) (-0.020318 -0.407153 0) (-0.0174564 -0.405899 0) (-0.0133153 -0.406297 0) (-0.0118904 -0.412896 0) (-0.00983273 -0.428021 0) (-0.0151278 -0.45979 0) (-0.0181333 -0.501388 0) (-0.0321456 -0.550826 0) (-0.0115548 -0.571152 0) (-0.0298773 -0.473549 0) (0.0149584 -0.147234 0) (0.00600903 -0.0978258 0) (0.00970061 -0.0947495 0) (0.0144128 -0.102528 0) (0.0177979 -0.105212 0) (0.0213629 -0.0982379 0) (0.024246 -0.0809533 0) (0.0271673 -0.0511409 0) (0.029485 -0.00835615 0) (0.0312264 0.0468302 0) (0.0319692 0.11141 0) (0.0315142 0.181715 0) (0.0301259 0.254503 0) (0.0274516 0.32658 0) (0.0235414 0.394443 0) (0.0182059 0.455037 0) (0.0118518 0.506009 0) (0.00463949 0.544342 0) (-0.00347414 0.568191 0) (-0.0124837 0.57899 0) (-0.0222465 0.580403 0) (-0.0316375 0.573825 0) (-0.039652 0.559716 0) (-0.0467608 0.542509 0) (-0.0543386 0.527605 0) (-0.0628461 0.517179 0) (-0.0721265 0.509853 0) (-0.0820046 0.504339 0) (-0.0924491 0.500611 0) (-0.102819 0.497212 0) (-0.112703 0.492998 0) (-0.123645 0.490463 0) (-0.137562 0.492504 0) (-0.153728 0.497193 0) (-0.169799 0.499698 0) (-0.184575 0.497521 0) (-0.198771 0.492282 0) (-0.213757 0.487158 0) (-0.229777 0.483462 0) (-0.246425 0.480874 0) (-0.26397 0.479409 0) (-0.283078 0.479305 0) (-0.304491 0.480344 0) (-0.32901 0.481837 0) (-0.356664 0.482226 0) (-0.386021 0.478941 0) (-0.414923 0.469491 0) (-0.442227 0.452915 0) (-0.468395 0.429688 0) (-0.493524 0.399844 0) (-0.515509 0.362054 0) (-0.531861 0.315221 0) (-0.542166 0.260081 0) (-0.546557 0.197912 0) (-0.544909 0.130041 0) (-0.537733 0.0581316 0) (-0.525631 -0.016186 0) (-0.509026 -0.0913128 0) (-0.488283 -0.165776 0) (-0.463797 -0.238092 0) (-0.435893 -0.306777 0) (-0.404888 -0.370318 0) (-0.371161 -0.42722 0) (-0.335277 -0.476127 0) (-0.298041 -0.515962 0) (-0.260441 -0.545982 0) (-0.223541 -0.56601 0) (-0.188388 -0.576712 0) (-0.155898 -0.579439 0) (-0.126687 -0.575886 0) (-0.101192 -0.567814 0) (-0.0795404 -0.556818 0) (-0.0619118 -0.544326 0) (-0.0473098 -0.530585 0) (-0.0343909 -0.51554 0) (-0.0247729 -0.50096 0) (-0.0191301 -0.488085 0) (-0.0154471 -0.47609 0) (-0.0129254 -0.464744 0) (-0.0125407 -0.455383 0) (-0.0141194 -0.448117 0) (-0.0154116 -0.440933 0) (-0.014582 -0.43189 0) (-0.0116101 -0.420779 0) (-0.00835353 -0.410085 0) (-0.00796949 -0.404225 0) (-0.0113923 -0.405117 0) (-0.0162228 -0.409463 0) (-0.0193552 -0.412236 0) (-0.0197236 -0.411227 0) (-0.0185797 -0.408463 0) (-0.017674 -0.407242 0) (-0.0161665 -0.407475 0) (-0.0167166 -0.413103 0) (-0.0171143 -0.427084 0) (-0.0215211 -0.45717 0) (-0.0234145 -0.498301 0) (-0.03067 -0.553122 0) (-0.00420558 -0.574463 0) (-0.0216258 -0.477469 0) (0.00647366 -0.152479 0) (0.00492995 -0.101761 0) (0.0053865 -0.0962512 0) (0.00679522 -0.103979 0) (0.00656642 -0.106277 0) (0.00654411 -0.0991009 0) (0.00587709 -0.0816724 0) (0.00544226 -0.0517554 0) (0.00475705 -0.00870859 0) (0.00406217 0.0468164 0) (0.00289764 0.111894 0) (0.00109465 0.182695 0) (-0.00097788 0.256061 0) (-0.00372252 0.3287 0) (-0.00712787 0.397169 0) (-0.0113054 0.458288 0) (-0.0159416 0.50966 0) (-0.0208368 0.548416 0) (-0.0261485 0.57262 0) (-0.0321068 0.583811 0) (-0.0386692 0.585257 0) (-0.0446809 0.578121 0) (-0.049484 0.563456 0) (-0.0539197 0.546351 0) (-0.059408 0.53205 0) (-0.0662403 0.522252 0) (-0.0740838 0.515387 0) (-0.0826675 0.510256 0) (-0.0918299 0.506672 0) (-0.100878 0.503156 0) (-0.109738 0.499276 0) (-0.120246 0.498066 0) (-0.133838 0.501602 0) (-0.149145 0.506799 0) (-0.163888 0.508852 0) (-0.177327 0.506177 0) (-0.1904 0.501041 0) (-0.204231 0.496408 0) (-0.218809 0.493159 0) (-0.233906 0.491057 0) (-0.250085 0.490422 0) (-0.268215 0.491631 0) (-0.289221 0.494465 0) (-0.313805 0.497909 0) (-0.341417 0.499677 0) (-0.370038 0.496637 0) (-0.397649 0.48654 0) (-0.423928 0.469221 0) (-0.449571 0.445293 0) (-0.473506 0.41388 0) (-0.492739 0.373045 0) (-0.50588 0.322576 0) (-0.513303 0.263822 0) (-0.514813 0.198017 0) (-0.510622 0.126732 0) (-0.501422 0.0517247 0) (-0.48775 -0.0253896 0) (-0.469937 -0.103078 0) (-0.448317 -0.179892 0) (-0.423223 -0.254348 0) (-0.394993 -0.324976 0) (-0.363948 -0.39027 0) (-0.330423 -0.448678 0) (-0.294876 -0.498688 0) (-0.25805 -0.539053 0) (-0.22098 -0.56895 0) (-0.184797 -0.588176 0) (-0.150572 -0.597436 0) (-0.119255 -0.598239 0) (-0.0914277 -0.592437 0) (-0.0675082 -0.582004 0) (-0.0475542 -0.568523 0) (-0.0314526 -0.553599 0) (-0.0193425 -0.538269 0) (-0.00922671 -0.522028 0) (-0.000812409 -0.505367 0) (0.00383988 -0.490431 0) (0.00551111 -0.477388 0) (0.00608319 -0.465236 0) (0.00530686 -0.454628 0) (0.00245885 -0.446597 0) (-0.00111695 -0.439945 0) (-0.00311791 -0.43228 0) (-0.00256233 -0.422256 0) (-0.000414275 -0.411155 0) (0.000153253 -0.403357 0) (-0.00305439 -0.402397 0) (-0.00865853 -0.406546 0) (-0.013521 -0.410584 0) (-0.0158751 -0.41088 0) (-0.016597 -0.408556 0) (-0.0175922 -0.407189 0) (-0.0186214 -0.407176 0) (-0.0212227 -0.41189 0) (-0.0241648 -0.425543 0) (-0.0281985 -0.454972 0) (-0.0299398 -0.497808 0) (-0.028793 -0.559477 0) (0.000432692 -0.580406 0) (-0.0099535 -0.4768 0) (-0.00500741 -0.157881 0) (0.00390096 -0.104027 0) (0.00117629 -0.0957916 0) (-0.000659012 -0.103258 0) (-0.00443668 -0.105166 0) (-0.00800431 -0.0977925 0) (-0.0122063 -0.0802906 0) (-0.0159974 -0.0504452 0) (-0.0196751 -0.00743866 0) (-0.0228164 0.0481174 0) (-0.0257957 0.113339 0) (-0.0288408 0.184291 0) (-0.0315631 0.257887 0) (-0.0343568 0.330693 0) (-0.0372413 0.399334 0) (-0.0402333 0.460629 0) (-0.0431039 0.512045 0) (-0.0456784 0.550763 0) (-0.0482338 0.57509 0) (-0.0511675 0.586598 0) (-0.0544681 0.588012 0) (-0.0570618 0.58033 0) (-0.0586917 0.56537 0) (-0.0605639 0.548718 0) (-0.0640641 0.535309 0) (-0.0692725 0.526314 0) (-0.0756865 0.520013 0) (-0.0829484 0.515302 0) (-0.0907784 0.511858 0) (-0.0985061 0.508332 0) (-0.106434 0.505049 0) (-0.116531 0.505314 0) (-0.129638 0.510169 0) (-0.143891 0.51559 0) (-0.157226 0.517082 0) (-0.16932 0.513973 0) (-0.1812 0.508961 0) (-0.193713 0.504709 0) (-0.206718 0.501809 0) (-0.220231 0.500236 0) (-0.235079 0.500611 0) (-0.252298 0.503404 0) (-0.272897 0.508273 0) (-0.297296 0.513666 0) (-0.324325 0.516517 0) (-0.351637 0.513396 0) (-0.377701 0.502643 0) (-0.402897 0.484765 0) (-0.427479 0.459948 0) (-0.449074 0.426264 0) (-0.464959 0.381991 0) (-0.475041 0.328027 0) (-0.479607 0.265773 0) (-0.478431 0.196566 0) (-0.472162 0.12221 0) (-0.461304 0.0443992 0) (-0.446327 -0.0352733 0) (-0.427472 -0.115325 0) (-0.405096 -0.194293 0) (-0.37949 -0.270698 0) (-0.351004 -0.343071 0) (-0.319974 -0.40991 0) (-0.28673 -0.469654 0) (-0.251658 -0.520672 0) (-0.215418 -0.561504 0) (-0.179068 -0.591197 0) (-0.143806 -0.609539 0) (-0.110694 -0.617285 0) (-0.0806534 -0.616076 0) (-0.0542496 -0.607896 0) (-0.0317785 -0.59489 0) (-0.013724 -0.578972 0) (0.000499955 -0.561617 0) (0.0106932 -0.544227 0) (0.017728 -0.526913 0) (0.0237112 -0.50895 0) (0.0272764 -0.491945 0) (0.0273435 -0.477446 0) (0.0257144 -0.464638 0) (0.0233231 -0.453117 0) (0.0192996 -0.444125 0) (0.0139381 -0.437495 0) (0.00934174 -0.431009 0) (0.0072109 -0.422466 0) (0.00758842 -0.411766 0) (0.00785928 -0.402588 0) (0.00490181 -0.399616 0) (-0.00116753 -0.402976 0) (-0.00749152 -0.407841 0) (-0.0117413 -0.409379 0) (-0.0142781 -0.407494 0) (-0.0170999 -0.405833 0) (-0.0205125 -0.405443 0) (-0.0252434 -0.409301 0) (-0.0306503 -0.423161 0) (-0.0349791 -0.452854 0) (-0.0372648 -0.499891 0) (-0.0268944 -0.568809 0) (-0.000428547 -0.58881 0) (0.00225409 -0.471793 0) (-0.019171 -0.163525 0) (0.00297119 -0.104736 0) (-0.00280001 -0.093432 0) (-0.00780361 -0.100489 0) (-0.0150084 -0.102032 0) (-0.0220118 -0.0944126 0) (-0.0296614 -0.0769407 0) (-0.0367566 -0.0472729 0) (-0.0433827 -0.00463294 0) (-0.0489023 0.0507049 0) (-0.0536304 0.11577 0) (-0.0578653 0.186536 0) (-0.0612263 0.259933 0) (-0.0640185 0.332541 0) (-0.0663398 0.40095 0) (-0.0681103 0.462027 0) (-0.0691874 0.513113 0) (-0.0694405 0.551487 0) (-0.0692855 0.575775 0) (-0.0692393 0.587461 0) (-0.0692742 0.588701 0) (-0.068474 0.580528 0) (-0.0670552 0.565569 0) (-0.0665452 0.549722 0) (-0.0681987 0.537464 0) (-0.0718583 0.529412 0) (-0.0768662 0.523752 0) (-0.0827922 0.519478 0) (-0.0892633 0.516183 0) (-0.0957086 0.512788 0) (-0.102801 0.510356 0) (-0.112477 0.512166 0) (-0.124932 0.518119 0) (-0.137979 0.523514 0) (-0.149863 0.524385 0) (-0.160602 0.520899 0) (-0.171204 0.515993 0) (-0.182264 0.512007 0) (-0.193611 0.509396 0) (-0.205536 0.508437 0) (-0.219085 0.510018 0) (-0.235408 0.514628 0) (-0.255483 0.521652 0) (-0.27933 0.528853 0) (-0.305234 0.532451 0) (-0.330816 0.529036 0) (-0.355197 0.51771 0) (-0.379098 0.499319 0) (-0.401848 0.473175 0) (-0.420319 0.436625 0) (-0.432852 0.388944 0) (-0.440087 0.331669 0) (-0.441906 0.266098 0) (-0.438457 0.193813 0) (-0.430469 0.116705 0) (-0.418157 0.0363364 0) (-0.402033 -0.0456884 0) (-0.382291 -0.127911 0) (-0.359293 -0.208858 0) (-0.333306 -0.287053 0) (-0.30466 -0.361006 0) (-0.273713 -0.429212 0) (-0.240814 -0.490113 0) (-0.206302 -0.542018 0) (-0.170773 -0.583245 0) (-0.13529 -0.612641 0) (-0.101112 -0.629995 0) (-0.0692844 -0.63614 0) (-0.040634 -0.63283 0) (-0.0157894 -0.622278 0) (0.00517722 -0.606626 0) (0.0216425 -0.58815 0) (0.0337145 -0.568411 0) (0.0420091 -0.548737 0) (0.046453 -0.529978 0) (0.0492507 -0.511198 0) (0.0509798 -0.492607 0) (0.0496807 -0.476411 0) (0.0459609 -0.462792 0) (0.0415653 -0.450692 0) (0.0361846 -0.440828 0) (0.0293551 -0.433853 0) (0.0225376 -0.428186 0) (0.0177362 -0.421226 0) (0.0158896 -0.41159 0) (0.0153125 -0.401708 0) (0.0124698 -0.39684 0) (0.00618727 -0.398953 0) (-0.00130097 -0.404158 0) (-0.00729715 -0.406799 0) (-0.0115527 -0.40536 0) (-0.0160867 -0.403282 0) (-0.0216794 -0.402344 0) (-0.0285903 -0.405407 0) (-0.0362832 -0.419715 0) (-0.0417101 -0.450591 0) (-0.0449872 -0.504082 0) (-0.0263432 -0.579334 0) (-0.00816853 -0.600124 0) (0.0145047 -0.463028 0) (-0.0347185 -0.169912 0) (0.00221504 -0.104021 0) (-0.00645116 -0.0893017 0) (-0.0145255 -0.0958219 0) (-0.0249518 -0.0969786 0) (-0.0352197 -0.0890844 0) (-0.046171 -0.0716816 0) (-0.0564805 -0.0423238 0) (-0.0659638 -0.000221065 0) (-0.073786 0.0544997 0) (-0.0802127 0.119059 0) (-0.0855732 0.189304 0) (-0.089569 0.262114 0) (-0.0923045 0.334173 0) (-0.094002 0.402002 0) (-0.094512 0.462494 0) (-0.0937728 0.512924 0) (-0.0917314 0.550721 0) (-0.0889346 0.574783 0) (-0.0859584 0.586458 0) (-0.0827607 0.587381 0) (-0.0786545 0.578839 0) (-0.0744051 0.564206 0) (-0.0717498 0.549507 0) (-0.0717266 0.53861 0) (-0.0739272 0.531601 0) (-0.0775637 0.526628 0) (-0.0821532 0.522797 0) (-0.0872648 0.51968 0) (-0.0924955 0.516583 0) (-0.0988464 0.515226 0) (-0.108064 0.518577 0) (-0.119705 0.525378 0) (-0.131431 0.530541 0) (-0.141846 0.530768 0) (-0.151214 0.526943 0) (-0.160457 0.522095 0) (-0.169955 0.518269 0) (-0.179595 0.515926 0) (-0.189943 0.515691 0) (-0.202206 0.51866 0) (-0.217582 0.525251 0) (-0.236921 0.534438 0) (-0.259799 0.543214 0) (-0.284104 0.547251 0) (-0.307673 0.543434 0) (-0.330254 0.531625 0) (-0.352493 0.512592 0) (-0.372679 0.484587 0) (-0.387722 0.444924 0) (-0.397166 0.394039 0) (-0.401725 0.333652 0) (-0.401051 0.265025 0) (-0.395719 0.189996 0) (-0.386204 0.110379 0) (-0.372608 0.027661 0) (-0.355502 -0.0565331 0) (-0.335045 -0.140758 0) (-0.311572 -0.22353 0) (-0.285325 -0.303363 0) (-0.256613 -0.378744 0) (-0.225811 -0.448152 0) (-0.193311 -0.510041 0) (-0.15944 -0.56271 0) (-0.124744 -0.604267 0) (-0.0902839 -0.633273 0) (-0.0573443 -0.649499 0) (-0.0269302 -0.653934 0) (0.000258172 -0.648427 0) (0.023575 -0.635509 0) (0.0428175 -0.617366 0) (0.0578038 -0.596209 0) (0.0680487 -0.573912 0) (0.0742346 -0.551867 0) (0.0764485 -0.531277 0) (0.0760324 -0.5117 0) (0.0750531 -0.492166 0) (0.0721966 -0.474384 0) (0.0666241 -0.459733 0) (0.0600567 -0.447211 0) (0.0530412 -0.436716 0) (0.0448459 -0.429235 0) (0.0361714 -0.424005 0) (0.0289107 -0.418493 0) (0.024616 -0.410361 0) (0.0226792 -0.400515 0) (0.0196994 -0.394063 0) (0.0133604 -0.394641 0) (0.00501656 -0.399722 0) (-0.00252737 -0.403247 0) (-0.00836407 -0.402262 0) (-0.014443 -0.399669 0) (-0.021954 -0.397992 0) (-0.0310028 -0.400292 0) (-0.0407689 -0.415049 0) (-0.0481852 -0.447912 0) (-0.0529216 -0.509111 0) (-0.0300606 -0.589739 0) (-0.0220616 -0.614837 0) (0.0254625 -0.452417 0) (-0.047671 -0.177108 0) (0.00162916 -0.102055 0) (-0.00970508 -0.083575 0) (-0.0206842 -0.0893837 0) (-0.0341093 -0.0901453 0) (-0.0474184 -0.0819683 0) (-0.0614479 -0.0646191 0) (-0.0747605 -0.0356799 0) (-0.0870363 0.00569632 0) (-0.0971508 0.059434 0) (-0.105188 0.123127 0) (-0.111565 0.192545 0) (-0.116168 0.264414 0) (-0.118827 0.335554 0) (-0.119842 0.402466 0) (-0.119058 0.462033 0) (-0.11649 0.511512 0) (-0.112189 0.548515 0) (-0.106842 0.572177 0) (-0.101016 0.583643 0) (-0.0946337 0.584163 0) (-0.0874038 0.575422 0) (-0.0806231 0.561471 0) (-0.0760992 0.548229 0) (-0.0745842 0.538851 0) (-0.0754222 0.532943 0) (-0.0777322 0.528676 0) (-0.080999 0.525284 0) (-0.0847753 0.522392 0) (-0.0888825 0.519781 0) (-0.0945747 0.519678 0) (-0.103271 0.524495 0) (-0.11395 0.53189 0) (-0.124279 0.536659 0) (-0.133221 0.536238 0) (-0.141201 0.532096 0) (-0.149009 0.527239 0) (-0.156864 0.523482 0) (-0.164777 0.521417 0) (-0.173563 0.52202 0) (-0.184522 0.526524 0) (-0.19884 0.535182 0) (-0.217168 0.546444 0) (-0.238661 0.556524 0) (-0.260991 0.560752 0) (-0.282359 0.556497 0) (-0.30299 0.544243 0) (-0.323121 0.524306 0) (-0.340261 0.494011 0) (-0.351923 0.451277 0) (-0.358579 0.397433 0) (-0.360626 0.334154 0) (-0.357781 0.262774 0) (-0.350836 0.185281 0) (-0.339934 0.103356 0) (-0.325238 0.0184903 0) (-0.307291 -0.0677135 0) (-0.286265 -0.153775 0) (-0.262442 -0.238215 0) (-0.236051 -0.319548 0) (-0.207378 -0.396226 0) (-0.176805 -0.466699 0) (-0.144767 -0.529431 0) (-0.111607 -0.582735 0) (-0.0778314 -0.624522 0) (-0.0445209 -0.652981 0) (-0.0129817 -0.667926 0) (0.0158785 -0.670504 0) (0.0414246 -0.662935 0) (0.0632223 -0.647683 0) (0.0809153 -0.627063 0) (0.0943576 -0.603197 0) (0.10303 -0.578202 0) (0.107164 -0.553683 0) (0.107222 -0.530995 0) (0.103889 -0.510375 0) (0.0996882 -0.490313 0) (0.0947542 -0.471342 0) (0.0874498 -0.45554 0) (0.0787289 -0.442598 0) (0.0698403 -0.43173 0) (0.0602363 -0.423762 0) (0.049965 -0.41868 0) (0.0405453 -0.414361 0) (0.033793 -0.407934 0) (0.030098 -0.398794 0) (0.0266694 -0.391234 0) (0.0203326 -0.390157 0) (0.0114173 -0.394709 0) (0.00258037 -0.398868 0) (-0.00466632 -0.398325 0) (-0.0120643 -0.39516 0) (-0.02116 -0.392552 0) (-0.0321633 -0.394066 0) (-0.0437872 -0.409065 0) (-0.0540458 -0.444296 0) (-0.0611726 -0.513092 0) (-0.0406533 -0.599207 0) (-0.0392734 -0.633188 0) (0.0306197 -0.444523 0) (-0.0498458 -0.183992 0) (0.00121984 -0.0990582 0) (-0.0124992 -0.0763939 0) (-0.026179 -0.0813571 0) (-0.0423471 -0.0817099 0) (-0.0584326 -0.0732373 0) (-0.0752683 -0.0559483 0) (-0.0913414 -0.0274937 0) (-0.106251 0.0129497 0) (-0.118614 0.0654339 0) (-0.128233 0.127892 0) (-0.135492 0.19619 0) (-0.140593 0.266812 0) (-0.143167 0.336664 0) (-0.143455 0.402321 0) (-0.141359 0.460638 0) (-0.136972 0.508904 0) (-0.1305 0.544937 0) (-0.122725 0.568062 0) (-0.114123 0.579098 0) (-0.104658 0.579189 0) (-0.0945924 0.570481 0) (-0.0856409 0.557581 0) (-0.0795486 0.546052 0) (-0.0767286 0.538289 0) (-0.0763022 0.533499 0) (-0.0773364 0.529935 0) (-0.0793047 0.526975 0) (-0.0817968 0.524377 0) (-0.0848888 0.522444 0) (-0.0899871 0.523722 0) (-0.0980815 0.529872 0) (-0.107675 0.537618 0) (-0.11656 0.541868 0) (-0.124035 0.540811 0) (-0.130608 0.536352 0) (-0.136916 0.531405 0) (-0.143073 0.527646 0) (-0.149259 0.52589 0) (-0.156492 0.527437 0) (-0.166098 0.533576 0) (-0.179196 0.544307 0) (-0.196213 0.557484 0) (-0.215948 0.568604 0) (-0.236021 0.572841 0) (-0.255055 0.568146 0) (-0.27355 0.555414 0) (-0.291162 0.534263 0) (-0.305045 0.501464 0) (-0.313561 0.455843 0) (-0.317685 0.399296 0) (-0.31741 0.333361 0) (-0.312702 0.259519 0) (-0.304305 0.179786 0) (-0.292148 0.0957299 0) (-0.276528 0.00896185 0) (-0.257876 -0.079125 0) (-0.236416 -0.166864 0) (-0.21237 -0.25283 0) (-0.185955 -0.335544 0) (-0.157439 -0.413413 0) (-0.127204 -0.484854 0) (-0.0957173 -0.548298 0) (-0.0633427 -0.602067 0) (-0.0305402 -0.643901 0) (0.00152415 -0.67159 0) (0.0315284 -0.685138 0) (0.0586835 -0.68591 0) (0.0824638 -0.676358 0) (0.102698 -0.65886 0) (0.119026 -0.63577 0) (0.13105 -0.609225 0) (0.138263 -0.581443 0) (0.140536 -0.554299 0) (0.138471 -0.529286 0) (0.13251 -0.50726 0) (0.124944 -0.486803 0) (0.117351 -0.46714 0) (0.108218 -0.450266 0) (0.0974476 -0.436842 0) (0.0865378 -0.425804 0) (0.075413 -0.417491 0) (0.0636977 -0.412392 0) (0.0524191 -0.408983 0) (0.0433648 -0.404264 0) (0.0376673 -0.396356 0) (0.0334528 -0.388267 0) (0.0271042 -0.385598 0) (0.0178638 -0.389275 0) (0.00801344 -0.393814 0) (-0.00042879 -0.393705 0) (-0.00886298 -0.389952 0) (-0.0191332 -0.386251 0) (-0.0317304 -0.386884 0) (-0.0449498 -0.401702 0) (-0.0587624 -0.438969 0) (-0.069549 -0.513907 0) (-0.0581485 -0.607284 0) (-0.0569134 -0.654758 0) (0.0236342 -0.445663 0) (-0.033274 -0.188591 0) (0.000988361 -0.0952511 0) (-0.0147934 -0.0679524 0) (-0.0309448 -0.0719281 0) (-0.0495552 -0.0718634 0) (-0.068139 -0.0630908 0) (-0.0874924 -0.0458924 0) (-0.105991 -0.0179213 0) (-0.123271 0.0214746 0) (-0.137815 0.072446 0) (-0.149036 0.133289 0) (-0.157096 0.200142 0) (-0.162507 0.269256 0) (-0.164936 0.337494 0) (-0.164459 0.401567 0) (-0.16107 0.458342 0) (-0.154946 0.505185 0) (-0.14646 0.540118 0) (-0.136345 0.562504 0) (-0.125014 0.572937 0) (-0.112684 0.572638 0) (-0.100157 0.564263 0) (-0.0894391 0.552762 0) (-0.0820828 0.543135 0) (-0.0781338 0.537026 0) (-0.0765378 0.533332 0) (-0.07635 0.530446 0) (-0.0770587 0.527913 0) (-0.0783417 0.525703 0) (-0.0805348 0.524632 0) (-0.0850823 0.527356 0) (-0.0924848 0.534666 0) (-0.100893 0.542536 0) (-0.108314 0.546181 0) (-0.114335 0.544502 0) (-0.119483 0.539709 0) (-0.124235 0.534587 0) (-0.128663 0.530775 0) (-0.13314 0.52937 0) (-0.138819 0.531944 0) (-0.146993 0.539759 0) (-0.158681 0.552502 0) (-0.174086 0.567396 0) (-0.191751 0.579317 0) (-0.209367 0.583442 0) (-0.225963 0.578314 0) (-0.242118 0.565012 0) (-0.256922 0.542378 0) (-0.267544 0.507054 0) (-0.273211 0.458793 0) (-0.275008 0.399791 0) (-0.272622 0.331443 0) (-0.266305 0.255399 0) (-0.256575 0.173617 0) (-0.243276 0.0875833 0) (-0.226916 -0.00098982 0) (-0.207737 -0.0906988 0) (-0.185945 -0.179959 0) (-0.161795 -0.267319 0) (-0.135465 -0.35131 0) (-0.107221 -0.430259 0) (-0.0774347 -0.502578 0) (-0.0465641 -0.566592 0) (-0.0150437 -0.620672 0) (0.0167122 -0.662163 0) (0.0473973 -0.689053 0) (0.0756203 -0.701197 0) (0.100939 -0.700234 0) (0.123038 -0.688687 0) (0.141755 -0.669061 0) (0.15678 -0.643628 0) (0.167591 -0.614422 0) (0.173517 -0.583731 0) (0.174101 -0.553791 0) (0.169953 -0.526265 0) (0.161561 -0.50247 0) (0.150728 -0.481515 0) (0.140021 -0.461591 0) (0.128781 -0.443916 0) (0.116042 -0.429976 0) (0.103066 -0.418896 0) (0.0902977 -0.410434 0) (0.0772043 -0.405275 0) (0.0643196 -0.40253 0) (0.0532056 -0.399394 0) (0.0454275 -0.393072 0) (0.0401221 -0.385057 0) (0.033678 -0.381022 0) (0.0243206 -0.383586 0) (0.0137437 -0.388248 0) (0.00435068 -0.388574 0) (-0.00479107 -0.384276 0) (-0.0157428 -0.37938 0) (-0.0293892 -0.378975 0) (-0.0438002 -0.393006 0) (-0.0613619 -0.431174 0) (-0.0768794 -0.509813 0) (-0.0790373 -0.613717 0) (-0.0744854 -0.67565 0) (-0.00097972 -0.461595 0) (-0.00116158 -0.190017 0) (0.000926001 -0.0908541 0) (-0.0165582 -0.0584159 0) (-0.0349236 -0.0612728 0) (-0.055679 -0.0608045 0) (-0.0764302 -0.0517313 0) (-0.0979611 -0.0346222 0) (-0.118574 -0.00722185 0) (-0.137895 0.0311215 0) (-0.154411 0.0804142 0) (-0.167252 0.139292 0) (-0.176156 0.204322 0) (-0.181733 0.271668 0) (-0.183911 0.338027 0) (-0.182647 0.400233 0) (-0.178022 0.455228 0) (-0.170286 0.500479 0) (-0.159871 0.534142 0) (-0.147447 0.555559 0) (-0.13352 0.565307 0) (-0.118645 0.564741 0) (-0.104102 0.557041 0) (-0.0920425 0.547241 0) (-0.0837086 0.539629 0) (-0.078788 0.535152 0) (-0.0761117 0.532502 0) (-0.0747601 0.530258 0) (-0.0742645 0.528156 0) (-0.0744324 0.526441 0) (-0.0758419 0.526395 0) (-0.079859 0.530573 0) (-0.0864777 0.538841 0) (-0.0936278 0.546637 0) (-0.0995842 0.549618 0) (-0.10417 0.547331 0) (-0.10787 0.542164 0) (-0.111021 0.536788 0) (-0.113718 0.532893 0) (-0.116513 0.531882 0) (-0.120624 0.53553 0) (-0.12727 0.54501 0) (-0.137345 0.559649 0) (-0.150862 0.576048 0) (-0.166209 0.588571 0) (-0.181233 0.592508 0) (-0.195303 0.586942 0) (-0.208931 0.572949 0) (-0.220777 0.548665 0) (-0.228272 0.510923 0) (-0.23137 0.460287 0) (-0.231014 0.39907 0) (-0.226731 0.328551 0) (-0.218999 0.25053 0) (-0.208062 0.166869 0) (-0.193825 0.0790415 0) (-0.176811 -0.0112201 0) (-0.157204 -0.102357 0) (-0.135237 -0.193005 0) (-0.111103 -0.281633 0) (-0.0849625 -0.366809 0) (-0.0571012 -0.446703 0) (-0.0278727 -0.519715 0) (0.00230409 -0.584182 0) (0.0329966 -0.638415 0) (0.0635199 -0.679473 0) (0.0925186 -0.705413 0) (0.118901 -0.716068 0) (0.142343 -0.713365 0) (0.162769 -0.699979 0) (0.180091 -0.678379 0) (0.193958 -0.65071 0) (0.203714 -0.6189 0) (0.20855 -0.5852 0) (0.207653 -0.552245 0) (0.201469 -0.522025 0) (0.190745 -0.49615 0) (0.176846 -0.474432 0) (0.162768 -0.454521 0) (0.149052 -0.436433 0) (0.134344 -0.422038 0) (0.119326 -0.410993 0) (0.104823 -0.402587 0) (0.0903631 -0.397422 0) (0.0760629 -0.395172 0) (0.0631583 -0.39343 0) (0.05336 -0.388883 0) (0.0467333 -0.381498 0) (0.0400608 -0.376449 0) (0.0307437 -0.377786 0) (0.0197258 -0.382339 0) (0.00964258 -0.383116 0) (0.000140515 -0.378391 0) (-0.0109336 -0.372283 0) (-0.0249203 -0.370685 0) (-0.0398582 -0.383265 0) (-0.0603576 -0.420594 0) (-0.0807509 -0.500488 0) (-0.0969688 -0.617065 0) (-0.0919166 -0.690457 0) (-0.0408953 -0.494458 0) (0.0307012 -0.191027 0) (0.00103177 -0.0860887 0) (-0.0177819 -0.0479792 0) (-0.0381252 -0.0496135 0) (-0.0606863 -0.0487442 0) (-0.0832523 -0.0393556 0) (-0.106634 -0.0223207 0) (-0.128988 0.00455516 0) (-0.149984 0.0417103 0) (-0.168174 0.0892298 0) (-0.182514 0.145898 0) (-0.192367 0.208718 0) (-0.198121 0.273988 0) (-0.199985 0.338237 0) (-0.197935 0.398351 0) (-0.192121 0.451366 0) (-0.182813 0.494841 0) (-0.170479 0.527024 0) (-0.155846 0.547348 0) (-0.139568 0.556393 0) (-0.122555 0.555773 0) (-0.106494 0.549096 0) (-0.0935088 0.541228 0) (-0.0844492 0.535666 0) (-0.0786927 0.532747 0) (-0.0750185 0.531066 0) (-0.0725639 0.52942 0) (-0.0709332 0.527766 0) (-0.0700968 0.526666 0) (-0.0708309 0.527776 0) (-0.0743168 0.53336 0) (-0.0800659 0.542371 0) (-0.0859114 0.549923 0) (-0.0904194 0.552206 0) (-0.0935845 0.549313 0) (-0.0958126 0.543722 0) (-0.0973375 0.538024 0) (-0.0983224 0.534033 0) (-0.0994659 0.533449 0) (-0.101987 0.538181 0) (-0.106995 0.549262 0) (-0.115261 0.56564 0) (-0.12665 0.583335 0) (-0.139494 0.596306 0) (-0.151838 0.600013 0) (-0.163311 0.593999 0) (-0.174271 0.579198 0) (-0.183126 0.553208 0) (-0.187698 0.513225 0) (-0.18847 0.460477 0) (-0.186115 0.39727 0) (-0.180138 0.32481 0) (-0.171146 0.245012 0) (-0.159135 0.15964 0) (-0.14412 0.0702154 0) (-0.126579 -0.0215053 0) (-0.106687 -0.11402 0) (-0.0846496 -0.205953 0) (-0.0606529 -0.295712 0) (-0.03479 -0.38195 0) (-0.00736985 -0.462665 0) (0.0211803 -0.536155 0) (0.0505579 -0.601042 0) (0.0802619 -0.655276 0) (0.109396 -0.695866 0) (0.136598 -0.720594 0) (0.161008 -0.729694 0) (0.18256 -0.725353 0) (0.201399 -0.710301 0) (0.217447 -0.686904 0) (0.230295 -0.657131 0) (0.239165 -0.622777 0) (0.2431 -0.585998 0) (0.240966 -0.549774 0) (0.232857 -0.516625 0) (0.219819 -0.488412 0) (0.203043 -0.465612 0) (0.185527 -0.445811 0) (0.168983 -0.427723 0) (0.152206 -0.413052 0) (0.135196 -0.402114 0) (0.118915 -0.393948 0) (0.10308 -0.388898 0) (0.0875007 -0.387053 0) (0.073061 -0.386508 0) (0.0613995 -0.383786 0) (0.053313 -0.377504 0) (0.0462578 -0.371877 0) (0.0370835 -0.371992 0) (0.0258924 -0.376247 0) (0.015378 -0.377513 0) (0.00585151 -0.372586 0) (-0.00476928 -0.365322 0) (-0.0182969 -0.362492 0) (-0.0327614 -0.373119 0) (-0.0542627 -0.407839 0) (-0.0781155 -0.48716 0) (-0.105349 -0.614833 0) (-0.105257 -0.697101 0) (-0.0839064 -0.538811 0) (0.0494035 -0.195831 0) (0.00125304 -0.0811543 0) (-0.0184949 -0.0368385 0) (-0.0405486 -0.0371414 0) (-0.0645548 -0.0359053 0) (-0.0885818 -0.0262105 0) (-0.113383 -0.0092511 0) (-0.137174 0.0171482 0) (-0.15959 0.0530192 0) (-0.179051 0.0987085 0) (-0.194576 0.153049 0) (-0.205345 0.21336 0) (-0.211374 0.27622 0) (-0.212938 0.338113 0) (-0.21012 0.395922 0) (-0.203122 0.446764 0) (-0.19226 0.488275 0) (-0.178109 0.518851 0) (-0.161471 0.538024 0) (-0.143179 0.546433 0) (-0.124515 0.546036 0) (-0.10745 0.540699 0) (-0.093916 0.534909 0) (-0.0843389 0.531355 0) (-0.077859 0.529882 0) (-0.0732623 0.529076 0) (-0.0697685 0.527985 0) (-0.0670857 0.526812 0) (-0.0653676 0.526448 0) (-0.0655208 0.528809 0) (-0.0684584 0.535703 0) (-0.0732644 0.54524 0) (-0.0777817 0.552408 0) (-0.0808678 0.553972 0) (-0.0826208 0.550463 0) (-0.0833564 0.544393 0) (-0.0832496 0.538321 0) (-0.0825597 0.534229 0) (-0.0820827 0.534089 0) (-0.0829858 0.539877 0) (-0.0862512 0.552456 0) (-0.0925253 0.570394 0) (-0.101589 0.589192 0) (-0.111799 0.602494 0) (-0.121413 0.605951 0) (-0.130237 0.599467 0) (-0.138447 0.583772 0) (-0.14436 0.55611 0) (-0.14624 0.514107 0) (-0.144884 0.459497 0) (-0.140677 0.394515 0) (-0.133192 0.320345 0) (-0.12307 0.238949 0) (-0.11013 0.152023 0) (-0.0944857 0.061173 0) (-0.0765404 -0.0318711 0) (-0.0564971 -0.125631 0) (-0.0344868 -0.218727 0) (-0.0107236 -0.309527 0) (0.014764 -0.396556 0) (0.0416885 -0.47806 0) (0.0694102 -0.552026 0) (0.0978154 -0.617172 0) (0.126451 -0.671274 0) (0.154036 -0.711115 0) (0.179234 -0.73453 0) (0.2016 -0.742106 0) (0.221324 -0.73626 0) (0.238677 -0.719732 0) (0.253568 -0.694722 0) (0.265492 -0.662986 0) (0.273612 -0.626165 0) (0.276846 -0.586261 0) (0.27375 -0.546509 0) (0.263917 -0.510133 0) (0.248579 -0.47934 0) (0.229058 -0.455145 0) (0.208158 -0.435411 0) (0.188522 -0.41769 0) (0.169513 -0.403021 0) (0.150551 -0.392286 0) (0.132494 -0.384528 0) (0.115276 -0.379746 0) (0.0985143 -0.378289 0) (0.0827613 -0.378774 0) (0.0694497 -0.37783 0) (0.0598605 -0.373012 0) (0.0522678 -0.367284 0) (0.0432847 -0.3663 0) (0.0321568 -0.370119 0) (0.0214393 -0.371922 0) (0.012196 -0.367097 0) (0.00255058 -0.358882 0) (-0.00976454 -0.354948 0) (-0.0225724 -0.363502 0) (-0.0424978 -0.394474 0) (-0.067105 -0.471775 0) (-0.100461 -0.60548 0) (-0.108397 -0.697046 0) (-0.117747 -0.585148 0) (0.0542142 -0.20809 0) (0.00151756 -0.0762325 0) (-0.0187029 -0.0251342 0) (-0.0422412 -0.0240645 0) (-0.0673384 -0.0224985 0) (-0.0924617 -0.0125047 0) (-0.11829 0.00440364 0) (-0.143122 0.0301587 0) (-0.166608 0.0648307 0) (-0.187045 0.108648 0) (-0.203419 0.160604 0) (-0.21487 0.218234 0) (-0.221165 0.278397 0) (-0.22246 0.337674 0) (-0.21891 0.392963 0) (-0.210782 0.441445 0) (-0.198494 0.480866 0) (-0.182721 0.509774 0) (-0.164354 0.527784 0) (-0.144471 0.535709 0) (-0.124694 0.535835 0) (-0.107121 0.532096 0) (-0.0933522 0.528441 0) (-0.0834189 0.526786 0) (-0.0763061 0.526617 0) (-0.0708556 0.526587 0) (-0.0663919 0.526012 0) (-0.0627539 0.525364 0) (-0.0602797 0.525855 0) (-0.0599297 0.529519 0) (-0.0622902 0.537589 0) (-0.0660955 0.547444 0) (-0.0692812 0.554114 0) (-0.0709738 0.554944 0) (-0.0713181 0.550798 0) (-0.070548 0.544196 0) (-0.0688272 0.537709 0) (-0.06651 0.533523 0) (-0.0644412 0.533824 0) (-0.0636987 0.540608 0) (-0.0651248 0.554542 0) (-0.0692558 0.573846 0) (-0.0758391 0.593573 0) (-0.0833283 0.60713 0) (-0.0901946 0.610336 0) (-0.0963421 0.603364 0) (-0.101776 0.586735 0) (-0.104854 0.557502 0) (-0.104264 0.51371 0) (-0.100947 0.457469 0) (-0.0950211 0.390909 0) (-0.0861904 0.315232 0) (-0.0750646 0.232407 0) (-0.0613421 0.1441 0) (-0.0452045 0.0519943 0) (-0.0269782 -0.0422558 0) (-0.00689445 -0.137129 0) (0.0149779 -0.231188 0) (0.0384819 -0.322985 0) (0.0634808 -0.410744 0) (0.0896664 -0.492824 0) (0.116492 -0.567229 0) (0.143883 -0.632543 0) (0.171254 -0.686324 0) (0.197055 -0.725183 0) (0.22011 -0.747191 0) (0.24044 -0.753315 0) (0.258429 -0.746139 0) (0.274344 -0.728343 0) (0.288122 -0.7019 0) (0.299162 -0.668336 0) (0.306593 -0.629159 0) (0.309318 -0.586144 0) (0.305596 -0.542626 0) (0.294362 -0.502654 0) (0.276815 -0.469009 0) (0.254635 -0.44313 0) (0.230471 -0.423326 0) (0.20759 -0.406256 0) (0.186168 -0.391927 0) (0.165269 -0.381547 0) (0.145469 -0.374351 0) (0.126879 -0.370005 0) (0.109009 -0.368977 0) (0.0921272 -0.370369 0) (0.0773976 -0.3711 0) (0.0663479 -0.367991 0) (0.0580828 -0.362637 0) (0.0492878 -0.360775 0) (0.0384194 -0.364077 0) (0.0276953 -0.366468 0) (0.0189448 -0.3621 0) (0.0106719 -0.353291 0) (0.000180948 -0.348557 0) (-0.0100025 -0.355384 0) (-0.0260293 -0.382413 0) (-0.0483356 -0.456209 0) (-0.0836066 -0.589947 0) (-0.100316 -0.690943 0) (-0.137833 -0.625955 0) (0.0499104 -0.2287 0) (0.00169108 -0.0714561 0) (-0.018475 -0.013077 0) (-0.043271 -0.01059 0) (-0.0690483 -0.0086993 0) (-0.0949122 0.00158421 0) (-0.121434 0.0183975 0) (-0.146946 0.0434899 0) (-0.171085 0.0769582 0) (-0.19218 0.118874 0) (-0.209122 0.16839 0) (-0.220986 0.22324 0) (-0.227414 0.280519 0) (-0.22843 0.336958 0) (-0.224205 0.389532 0) (-0.215068 0.435512 0) (-0.201534 0.472763 0) (-0.184378 0.499962 0) (-0.164636 0.516869 0) (-0.143658 0.524522 0) (-0.123317 0.525461 0) (-0.105668 0.523498 0) (-0.0919066 0.521939 0) (-0.0817337 0.522025 0) (-0.0740595 0.523 0) (-0.0678189 0.523647 0) (-0.0624608 0.523562 0) (-0.0579759 0.523497 0) (-0.0548692 0.524949 0) (-0.0540751 0.529922 0) (-0.0558238 0.539007 0) (-0.0585871 0.548986 0) (-0.0604526 0.555068 0) (-0.0607776 0.555145 0) (-0.0597144 0.550333 0) (-0.0574366 0.543152 0) (-0.0541346 0.536232 0) (-0.0502446 0.531954 0) (-0.0466153 0.532669 0) (-0.04421 0.540351 0) (-0.0437208 0.555482 0) (-0.0455833 0.575963 0) (-0.0495719 0.596471 0) (-0.054292 0.610226 0) (-0.0584163 0.61319 0) (-0.0618853 0.60572 0) (-0.0645642 0.588159 0) (-0.0649441 0.557498 0) (-0.0620911 0.512153 0) (-0.0569552 0.454505 0) (-0.0494478 0.386562 0) (-0.0394224 0.309628 0) (-0.0274046 0.225521 0) (-0.0130202 0.135957 0) (0.00348327 0.042694 0) (0.0218665 -0.0525848 0) (0.0419339 -0.148457 0) (0.0635642 -0.243386 0) (0.0866221 -0.335968 0) (0.111044 -0.424471 0) (0.136413 -0.506987 0) (0.162217 -0.581692 0) (0.188463 -0.647082 0) (0.214357 -0.70034 0) (0.238172 -0.737985 0) (0.258982 -0.758553 0) (0.277308 -0.763388 0) (0.293654 -0.755061 0) (0.308109 -0.736155 0) (0.320678 -0.708446 0) (0.330775 -0.673202 0) (0.337501 -0.631824 0) (0.339867 -0.585808 0) (0.335921 -0.538354 0) (0.323774 -0.494361 0) (0.304261 -0.457511 0) (0.279521 -0.429668 0) (0.252243 -0.409607 0) (0.226076 -0.393379 0) (0.202082 -0.379752 0) (0.179238 -0.369931 0) (0.15775 -0.363451 0) (0.137818 -0.359714 0) (0.118907 -0.359195 0) (0.101049 -0.361419 0) (0.0851276 -0.363701 0) (0.0727247 -0.362442 0) (0.0636873 -0.357897 0) (0.0550344 -0.355455 0) (0.0445715 -0.358215 0) (0.0339967 -0.361239 0) (0.025837 -0.357725 0) (0.0191541 -0.348737 0) (0.0108648 -0.343622 0) (0.00372376 -0.349424 0) (-0.00711455 -0.373103 0) (-0.024866 -0.441726 0) (-0.0596335 -0.570601 0) (-0.0862123 -0.677576 0) (-0.14681 -0.660319 0) (0.035386 -0.257232 0) (0.00160673 -0.0668906 0) (-0.0178665 -0.000919004 0) (-0.0436971 0.00310181 0) (-0.0697582 0.00531756 0) (-0.0960645 0.0157954 0) (-0.122933 0.0324428 0) (-0.148738 0.056919 0) (-0.173143 0.0892041 0) (-0.194547 0.129226 0) (-0.211782 0.176266 0) (-0.223834 0.228261 0) (-0.230243 0.282536 0) (-0.230942 0.335987 0) (-0.226096 0.385708 0) (-0.21608 0.429083 0) (-0.201501 0.464107 0) (-0.183259 0.489612 0) (-0.162569 0.505546 0) (-0.141023 0.513173 0) (-0.120629 0.515172 0) (-0.103251 0.515063 0) (-0.0896644 0.515486 0) (-0.0793296 0.51712 0) (-0.0711499 0.519075 0) (-0.06418 0.520306 0) (-0.0580098 0.520697 0) (-0.0527944 0.521285 0) (-0.0491712 0.523782 0) (-0.0479743 0.530031 0) (-0.0490753 0.539952 0) (-0.0507713 0.549877 0) (-0.0513378 0.555297 0) (-0.0503166 0.5546 0) (-0.047845 0.549089 0) (-0.0440692 0.541294 0) (-0.0392377 0.533931 0) (-0.0338368 0.529562 0) (-0.0286782 0.530647 0) (-0.0245968 0.539121 0) (-0.022135 0.555272 0) (-0.0216493 0.576729 0) (-0.0229712 0.597887 0) (-0.0249037 0.611812 0) (-0.0263104 0.614557 0) (-0.0271258 0.6066 0) (-0.0271075 0.588154 0) (-0.0249419 0.556224 0) (-0.0200041 0.509553 0) (-0.0131849 0.450698 0) (-0.00419916 0.381551 0) (0.0069033 0.303409 0) (0.0196893 0.218248 0) (0.0346056 0.127629 0) (0.0513639 0.0333722 0) (0.0698186 -0.0627971 0) (0.0897186 -0.159504 0) (0.110996 -0.255239 0) (0.133538 -0.348523 0) (0.157281 -0.437628 0) (0.181672 -0.520474 0) (0.206349 -0.595384 0) (0.231345 -0.660712 0) (0.25549 -0.71321 0) (0.277103 -0.749474 0) (0.295668 -0.768648 0) (0.312047 -0.772377 0) (0.326753 -0.763034 0) (0.339586 -0.743117 0) (0.3507 -0.714298 0) (0.359714 -0.677551 0) (0.365646 -0.634183 0) (0.367717 -0.585405 0) (0.363971 -0.533978 0) (0.35157 -0.485525 0) (0.330555 -0.445003 0) (0.303444 -0.414875 0) (0.273228 -0.394341 0) (0.243829 -0.379058 0) (0.217162 -0.366481 0) (0.192358 -0.357471 0) (0.169247 -0.351875 0) (0.148028 -0.348917 0) (0.128144 -0.34901 0) (0.109435 -0.352034 0) (0.0925315 -0.355745 0) (0.0789255 -0.356388 0) (0.0690586 -0.353028 0) (0.0604701 -0.350353 0) (0.050505 -0.352602 0) (0.0401929 -0.356278 0) (0.032617 -0.354003 0) (0.0275466 -0.345306 0) (0.0215907 -0.340184 0) (0.0172818 -0.345764 0) (0.0117058 -0.366873 0) (-0.00069936 -0.428937 0) (-0.0333535 -0.548991 0) (-0.0720953 -0.657052 0) (-0.147742 -0.684092 0) (-2.77205e-05 -0.294506 0) (0.00114346 -0.0625288 0) (-0.0169617 0.0111218 0) (-0.0435759 0.0167976 0) (-0.0695619 0.0193459 0) (-0.0960353 0.0299229 0) (-0.122907 0.0464151 0) (-0.148665 0.0702528 0) (-0.172976 0.101374 0) (-0.194336 0.139532 0) (-0.211563 0.184104 0) (-0.223584 0.233206 0) (-0.229834 0.284401 0) (-0.230175 0.334768 0) (-0.22476 0.381547 0) (-0.214012 0.42226 0) (-0.198632 0.455056 0) (-0.17966 0.478951 0) (-0.158488 0.494092 0) (-0.136891 0.501938 0) (-0.116875 0.505171 0) (-0.100014 0.506903 0) (-0.086703 0.509133 0) (-0.0762534 0.512105 0) (-0.0676124 0.51488 0) (-0.0599729 0.516612 0) (-0.05308 0.517481 0) (-0.0472544 0.518795 0) (-0.043219 0.522398 0) (-0.0416443 0.529852 0) (-0.042065 0.540422 0) (-0.0426828 0.550134 0) (-0.0419753 0.554827 0) (-0.0396235 0.55333 0) (-0.0357468 0.547089 0) (-0.0305002 0.538655 0) (-0.0241938 0.530854 0) (-0.0173426 0.526395 0) (-0.0106932 0.527784 0) (-0.00494303 0.536905 0) (-0.00048874 0.55387 0) (0.00239414 0.576171 0) (0.0037803 0.597865 0) (0.00462809 0.611935 0) (0.00590159 0.614476 0) (0.00769389 0.606065 0) (0.0103199 0.586808 0) (0.0148795 0.553767 0) (0.0217534 0.505994 0) (0.0301465 0.446144 0) (0.0404239 0.376018 0) (0.0524897 0.296827 0) (0.0660094 0.210752 0) (0.0813302 0.119233 0) (0.0982511 0.0241559 0) (0.116638 -0.0728087 0) (0.136286 -0.170271 0) (0.157124 -0.26671 0) (0.17904 -0.360602 0) (0.201966 -0.450166 0) (0.225238 -0.533228 0) (0.248725 -0.608252 0) (0.272309 -0.673331 0) (0.294381 -0.724836 0) (0.313643 -0.759645 0) (0.330064 -0.777523 0) (0.344497 -0.780296 0) (0.357393 -0.770003 0) (0.36832 -0.749099 0) (0.377637 -0.719338 0) (0.385401 -0.681317 0) (0.390438 -0.636211 0) (0.392138 -0.585044 0) (0.388916 -0.529809 0) (0.377029 -0.476515 0) (0.355222 -0.431737 0) (0.326094 -0.39891 0) (0.293167 -0.377646 0) (0.260673 -0.363335 0) (0.231305 -0.35212 0) (0.204535 -0.344204 0) (0.179877 -0.339673 0) (0.157443 -0.337662 0) (0.136664 -0.338482 0) (0.117217 -0.342311 0) (0.0995133 -0.347343 0) (0.0848774 -0.349876 0) (0.0741685 -0.347999 0) (0.0655483 -0.345457 0) (0.0561195 -0.347277 0) (0.0461509 -0.351591 0) (0.0390643 -0.350881 0) (0.035451 -0.342971 0) (0.0317562 -0.338112 0) (0.0297477 -0.344129 0) (0.0284702 -0.363462 0) (0.0210931 -0.417922 0) (-0.00763581 -0.525831 0) (-0.0583899 -0.629721 0) (-0.139389 -0.683113 0) (-0.0640292 -0.343115 0) (0.000269647 -0.0583285 0) (-0.0158392 0.0228323 0) (-0.0429698 0.0303514 0) (-0.0685408 0.0332188 0) (-0.094935 0.0438372 0) (-0.121506 0.0601559 0) (-0.146929 0.0833206 0) (-0.170824 0.113289 0) (-0.191815 0.149623 0) (-0.208734 0.191769 0) (-0.220495 0.237989 0) (-0.226448 0.286075 0) (-0.226397 0.333315 0) (-0.220482 0.377116 0) (-0.209176 0.415168 0) (-0.19328 0.445796 0) (-0.173965 0.468215 0) (-0.152779 0.48277 0) (-0.131587 0.491046 0) (-0.112274 0.495604 0) (-0.0960794 0.499081 0) (-0.0830919 0.502906 0) (-0.0725514 0.507003 0) (-0.0634852 0.510448 0) (-0.0552369 0.512614 0) (-0.0477176 0.51398 0) (-0.0414012 0.516091 0) (-0.0370428 0.520832 0) (-0.0351023 0.529389 0) (-0.0348155 0.540419 0) (-0.0343559 0.549777 0) (-0.0324001 0.553684 0) (-0.0287298 0.551357 0) (-0.0234575 0.544356 0) (-0.0167729 0.535279 0) (-0.00905787 0.527054 0) (-0.000828536 0.522481 0) (0.00726642 0.524127 0) (0.014668 0.533727 0) (0.0211332 0.55134 0) (0.0264159 0.574311 0) (0.0304807 0.596422 0) (0.0340865 0.610624 0) (0.0380023 0.613005 0) (0.0423434 0.604189 0) (0.0474596 0.584206 0) (0.0542645 0.550227 0) (0.0629474 0.501575 0) (0.0728115 0.440895 0) (0.0842538 0.369918 0) (0.0971637 0.289977 0) (0.111312 0.203099 0) (0.126956 0.110822 0) (0.143947 0.0150277 0) (0.162172 -0.0826169 0) (0.181487 -0.180731 0) (0.201766 -0.277744 0) (0.222957 -0.372137 0) (0.244927 -0.462022 0) (0.266937 -0.545206 0) (0.289162 -0.620253 0) (0.311128 -0.684829 0) (0.330826 -0.735121 0) (0.347671 -0.768527 0) (0.362085 -0.785227 0) (0.37445 -0.787084 0) (0.385163 -0.775828 0) (0.393871 -0.753938 0) (0.401112 -0.723441 0) (0.407536 -0.684442 0) (0.411652 -0.637845 0) (0.412743 -0.584732 0) (0.410076 -0.526105 0) (0.399399 -0.46776 0) (0.377692 -0.418072 0) (0.347109 -0.381997 0) (0.311789 -0.359677 0) (0.276415 -0.346293 0) (0.244396 -0.3367 0) (0.215682 -0.330173 0) (0.189561 -0.326903 0) (0.166006 -0.326003 0) (0.144418 -0.327671 0) (0.124337 -0.332331 0) (0.105993 -0.338601 0) (0.0905066 -0.342966 0) (0.0789852 -0.342787 0) (0.0702326 -0.34074 0) (0.0613299 -0.342259 0) (0.0517599 -0.347158 0) (0.045016 -0.348255 0) (0.0425642 -0.341602 0) (0.0409048 -0.337176 0) (0.0405418 -0.344014 0) (0.0423078 -0.362497 0) (0.0391808 -0.409289 0) (0.01613 -0.502651 0) (-0.0388056 -0.596995 0) (-0.116358 -0.655439 0) (-0.1257 -0.407611 0) (-0.000957159 -0.0542621 0) (-0.0145646 0.0340114 0) (-0.041914 0.0436363 0) (-0.0667869 0.0468156 0) (-0.0928899 0.0574043 0) (-0.118896 0.0735298 0) (-0.143745 0.0959792 0) (-0.166954 0.1248 0) (-0.187302 0.159353 0) (-0.203644 0.199132 0) (-0.214932 0.242522 0) (-0.220457 0.287525 0) (-0.219988 0.331651 0) (-0.213659 0.372497 0) (-0.201992 0.407946 0) (-0.185879 0.436518 0) (-0.166612 0.457633 0) (-0.145836 0.471806 0) (-0.12541 0.480667 0) (-0.107011 0.486557 0) (-0.0915492 0.491622 0) (-0.0788931 0.496814 0) (-0.0682692 0.501831 0) (-0.0588091 0.50581 0) (-0.0500161 0.508364 0) (-0.0419715 0.510257 0) (-0.0352787 0.51323 0) (-0.0306697 0.519111 0) (-0.0283654 0.528645 0) (-0.0273508 0.539952 0) (-0.0258228 0.548829 0) (-0.0226422 0.551893 0) (-0.0176639 0.548702 0) (-0.0110125 0.540925 0) (-0.00293987 0.531202 0) (0.00611307 0.522565 0) (0.0156656 0.517897 0) (0.0251487 0.519733 0) (0.0341623 0.52966 0) (0.0426141 0.547723 0) (0.0502526 0.571117 0) (0.0569579 0.59356 0) (0.06328 0.607923 0) (0.0697845 0.610216 0) (0.0765993 0.601043 0) (0.0840819 0.580419 0) (0.0929937 0.545695 0) (0.103373 0.496378 0) (0.114606 0.435032 0) (0.127114 0.363361 0) (0.140775 0.282835 0) (0.155447 0.195325 0) (0.171317 0.102439 0) (0.1883 0.00602708 0) (0.206291 -0.0921685 0) (0.22517 -0.190819 0) (0.24477 -0.288293 0) (0.265145 -0.383077 0) (0.285988 -0.473133 0) (0.306616 -0.556364 0) (0.327494 -0.631325 0) (0.347564 -0.695098 0) (0.364673 -0.74402 0) (0.379144 -0.776179 0) (0.39162 -0.791768 0) (0.401628 -0.792587 0) (0.409659 -0.780334 0) (0.41598 -0.757527 0) (0.421156 -0.726563 0) (0.426342 -0.686936 0) (0.429663 -0.63901 0) (0.429781 -0.584324 0) (0.427218 -0.522949 0) (0.418083 -0.459652 0) (0.397384 -0.404438 0) (0.366088 -0.364434 0) (0.328812 -0.340635 0) (0.290847 -0.328054 0) (0.256311 -0.32028 0) (0.225717 -0.315431 0) (0.198233 -0.313629 0) (0.173663 -0.314002 0) (0.151366 -0.316636 0) (0.130753 -0.322168 0) (0.111907 -0.329612 0) (0.0957442 -0.33573 0) (0.0834746 -0.337382 0) (0.0744978 -0.336167 0) (0.0660704 -0.337545 0) (0.0569345 -0.342947 0) (0.0503754 -0.34598 0) (0.0486995 -0.341005 0) (0.0487577 -0.337119 0) (0.0494582 -0.344803 0) (0.0527793 -0.363362 0) (0.0532158 -0.403758 0) (0.0368187 -0.482991 0) (-0.00969264 -0.565426 0) (-0.0739605 -0.622007 0) (-0.119388 -0.4762 0) (-0.00241544 -0.0502843 0) (-0.0131767 0.0445076 0) (-0.0404392 0.0565284 0) (-0.064391 0.0600139 0) (-0.0900248 0.070515 0) (-0.115244 0.0864278 0) (-0.139335 0.108117 0) (-0.161646 0.135786 0) (-0.181133 0.168601 0) (-0.196682 0.206085 0) (-0.207316 0.246729 0) (-0.212308 0.288723 0) (-0.211412 0.329804 0) (-0.204766 0.367774 0) (-0.192942 0.400731 0) (-0.17691 0.4274 0) (-0.158043 0.447401 0) (-0.138021 0.461371 0) (-0.118607 0.470906 0) (-0.101228 0.478064 0) (-0.0865059 0.484526 0) (-0.0741616 0.490853 0) (-0.0634516 0.496599 0) (-0.0536275 0.500997 0) (-0.0443579 0.503909 0) (-0.035891 0.506371 0) (-0.0289273 0.51026 0) (-0.0241235 0.517255 0) (-0.0214506 0.527624 0) (-0.0196938 0.539032 0) (-0.0171114 0.547311 0) (-0.0127275 0.549477 0) (-0.00645283 0.545391 0) (0.00154616 0.536822 0) (0.0109544 0.526473 0) (0.0212931 0.517467 0) (0.0320954 0.512722 0) (0.0428934 0.514645 0) (0.053455 0.524757 0) (0.063824 0.543018 0) (0.0737552 0.566628 0) (0.0830527 0.589327 0) (0.0920307 0.603889 0) (0.101055 0.606173 0) (0.110254 0.596704 0) (0.119981 0.575543 0) (0.130874 0.540267 0) (0.142847 0.490487 0) (0.155357 0.428636 0) (0.168836 0.356443 0) (0.183169 0.275457 0) (0.198276 0.187472 0) (0.214278 0.094129 0) (0.23118 -0.00271771 0) (0.248857 -0.101408 0) (0.267189 -0.200486 0) (0.285999 -0.298312 0) (0.305459 -0.393364 0) (0.324995 -0.483441 0) (0.344173 -0.566663 0) (0.363551 -0.641381 0) (0.381376 -0.704048 0) (0.395845 -0.751549 0) (0.408069 -0.782646 0) (0.41847 -0.797073 0) (0.425696 -0.796602 0) (0.430644 -0.783401 0) (0.434763 -0.759938 0) (0.438364 -0.728831 0) (0.442648 -0.688918 0) (0.445463 -0.639663 0) (0.444238 -0.583515 0) (0.440789 -0.52014 0) (0.432868 -0.452397 0) (0.413826 -0.391259 0) (0.382635 -0.346582 0) (0.343954 -0.320766 0) (0.303765 -0.30878 0) (0.266923 -0.302953 0) (0.234562 -0.300047 0) (0.205835 -0.299921 0) (0.180372 -0.301723 0) (0.157475 -0.305436 0) (0.136433 -0.311886 0) (0.117207 -0.320462 0) (0.10053 -0.328239 0) (0.0876031 -0.331788 0) (0.0783294 -0.331693 0) (0.0702961 -0.33312 0) (0.0616149 -0.338927 0) (0.0551055 -0.343902 0) (0.0537827 -0.340964 0) (0.0551884 -0.3377 0) (0.0565373 -0.345946 0) (0.0599881 -0.36527 0) (0.0626846 -0.400894 0) (0.0520788 -0.46925 0) (0.018746 -0.54168 0) (-0.0289358 -0.599917 0) (-0.0496949 -0.516668 0) (-0.00397863 -0.046364 0) (-0.0116846 0.0541424 0) (-0.0385609 0.0689263 0) (-0.0614404 0.0727184 0) (-0.0864592 0.0830864 0) (-0.110714 0.0987681 0) (-0.133915 0.119653 0) (-0.155171 0.146162 0) (-0.173646 0.17728 0) (-0.188243 0.21255 0) (-0.198092 0.250556 0) (-0.202477 0.289651 0) (-0.201165 0.327804 0) (-0.194309 0.363027 0) (-0.182526 0.393649 0) (-0.166839 0.418597 0) (-0.148662 0.437669 0) (-0.129638 0.451575 0) (-0.111374 0.461812 0) (-0.0950379 0.470123 0) (-0.0810156 0.477771 0) (-0.0689468 0.485012 0) (-0.0581428 0.491315 0) (-0.0479856 0.496039 0) (-0.0383115 0.499299 0) (-0.029525 0.502378 0) (-0.0223829 0.507223 0) (-0.0174241 0.515277 0) (-0.014373 0.526328 0) (-0.0118661 0.53767 0) (-0.00824622 0.545246 0) (-0.00267706 0.54646 0) (0.00487612 0.541446 0) (0.0141884 0.532088 0) (0.0248784 0.521165 0) (0.0364388 0.511828 0) (0.048412 0.506979 0) (0.0604438 0.508912 0) (0.072462 0.519046 0) (0.0846496 0.537288 0) (0.0967923 0.560929 0) (0.108609 0.583798 0) (0.120167 0.598583 0) (0.131634 0.600943 0) (0.143122 0.591257 0) (0.154973 0.56967 0) (0.167729 0.534023 0) (0.181203 0.483969 0) (0.194908 0.421777 0) (0.209264 0.349221 0) (0.224193 0.267911 0) (0.239657 0.179589 0) (0.255735 0.0859255 0) (0.27245 -0.0112265 0) (0.289715 -0.110308 0) (0.307406 -0.209685 0) (0.325332 -0.307758 0) (0.343764 -0.40294 0) (0.361823 -0.492904 0) (0.37953 -0.576059 0) (0.397155 -0.650302 0) (0.412379 -0.711628 0) (0.424337 -0.757781 0) (0.434423 -0.787921 0) (0.442342 -0.800986 0) (0.446377 -0.798973 0) (0.448225 -0.78509 0) (0.450799 -0.761495 0) (0.453794 -0.730571 0) (0.457672 -0.690606 0) (0.460322 -0.639826 0) (0.457559 -0.581912 0) (0.451899 -0.517156 0) (0.444063 -0.445888 0) (0.426781 -0.378831 0) (0.396413 -0.328809 0) (0.356946 -0.300358 0) (0.31497 -0.288669 0) (0.276105 -0.28484 0) (0.242142 -0.284106 0) (0.212316 -0.285857 0) (0.186099 -0.289236 0) (0.162721 -0.294132 0) (0.141356 -0.301545 0) (0.12186 -0.311223 0) (0.104815 -0.320567 0) (0.0913393 -0.326019 0) (0.0817219 -0.327277 0) (0.0739831 -0.328957 0) (0.0657625 -0.33507 0) (0.0592136 -0.341879 0) (0.0578387 -0.341253 0) (0.06018 -0.338722 0) (0.0619705 -0.347039 0) (0.064479 -0.367348 0) (0.0675611 -0.399654 0) (0.0606064 -0.459448 0) (0.0333606 -0.52398 0) (-0.00747484 -0.588037 0) (-0.00660041 -0.524628 0) (-0.00554035 -0.0424945 0) (-0.0100979 0.0627726 0) (-0.0362846 0.0807512 0) (-0.0580167 0.0848617 0) (-0.0823047 0.09506 0) (-0.10546 0.110494 0) (-0.127687 0.130539 0) (-0.147785 0.155875 0) (-0.165152 0.18534 0) (-0.178704 0.218476 0) (-0.187689 0.253971 0) (-0.191432 0.290308 0) (-0.189736 0.325689 0) (-0.182778 0.358335 0) (-0.17121 0.386805 0) (-0.156085 0.410225 0) (-0.138805 0.428536 0) (-0.120922 0.442475 0) (-0.103852 0.453387 0) (-0.0885194 0.462704 0) (-0.0751324 0.471326 0) (-0.0632935 0.479276 0) (-0.0523862 0.485988 0) (-0.04193 0.490968 0) (-0.0319272 0.494583 0) (-0.0229186 0.498329 0) (-0.0156766 0.504147 0) (-0.0105885 0.513188 0) (-0.00714661 0.524761 0) (-0.00388515 0.535883 0) (0.000755185 0.542655 0) (0.00748843 0.542861 0) (0.0162974 0.5369 0) (0.0268877 0.526775 0) (0.0387998 0.51532 0) (0.0515036 0.505683 0) (0.064567 0.500708 0) (0.0777462 0.502585 0) (0.0911167 0.512589 0) (0.105001 0.530631 0) (0.119242 0.554122 0) (0.133475 0.577058 0) (0.147528 0.592077 0) (0.161355 0.594605 0) (0.175033 0.584789 0) (0.188893 0.562885 0) (0.2034 0.527025 0) (0.218287 0.47687 0) (0.233111 0.414502 0) (0.248262 0.341735 0) (0.26371 0.260233 0) (0.279449 0.171711 0) (0.295531 0.0778529 0) (0.311981 -0.019521 0) (0.328764 -0.118829 0) (0.345691 -0.218371 0) (0.362667 -0.316593 0) (0.37992 -0.411749 0) (0.396374 -0.501496 0) (0.41261 -0.584493 0) (0.428131 -0.657956 0) (0.440496 -0.717835 0) (0.450188 -0.762812 0) (0.458095 -0.79191 0) (0.462922 -0.803314 0) (0.463601 -0.799713 0) (0.462937 -0.785718 0) (0.465003 -0.762744 0) (0.468579 -0.732235 0) (0.472509 -0.692229 0) (0.475176 -0.639592 0) (0.470989 -0.57918 0) (0.461945 -0.513266 0) (0.452456 -0.439652 0) (0.436331 -0.367218 0) (0.407207 -0.311426 0) (0.367559 -0.27971 0) (0.324283 -0.267946 0) (0.283739 -0.266089 0) (0.248391 -0.267712 0) (0.217638 -0.271523 0) (0.190818 -0.276613 0) (0.167088 -0.282785 0) (0.14551 -0.291203 0) (0.125847 -0.301962 0) (0.108562 -0.312784 0) (0.0946553 -0.3201 0) (0.0846767 -0.322883 0) (0.0771265 -0.325023 0) (0.0693571 -0.331361 0) (0.0627348 -0.3398 0) (0.0609657 -0.341656 0) (0.0638109 -0.340033 0) (0.0660096 -0.347871 0) (0.0670879 -0.36888 0) (0.0689545 -0.399013 0) (0.0642185 -0.450771 0) (0.0376482 -0.507646 0) (0.000347367 -0.576085 0) (-0.0134025 -0.526062 0) (-0.00701256 -0.0387117 0) (-0.00842966 0.0703055 0) (-0.0336184 0.0919472 0) (-0.0541959 0.0964029 0) (-0.0776646 0.1064 0) (-0.0996278 0.121571 0) (-0.120832 0.14075 0) (-0.139718 0.164902 0) (-0.155933 0.192759 0) (-0.168401 0.223846 0) (-0.176491 0.256964 0) (-0.179597 0.290706 0) (-0.177565 0.323497 0) (-0.170607 0.353761 0) (-0.159397 0.380282 0) (-0.144988 0.402362 0) (-0.128729 0.420054 0) (-0.112041 0.434076 0) (-0.0961376 0.4456 0) (-0.0817313 0.45576 0) (-0.0689005 0.465154 0) (-0.0572429 0.473631 0) (-0.0462249 0.480626 0) (-0.0355083 0.485814 0) (-0.025254 0.489806 0) (-0.0161136 0.494263 0) (-0.00883344 0.501059 0) (-0.00362774 0.51099 0) (0.000218657 0.522927 0) (0.00423323 0.533685 0) (0.00987522 0.539553 0) (0.0177559 0.538704 0) (0.0277925 0.531793 0) (0.0396113 0.520925 0) (0.0526782 0.508972 0) (0.0664477 0.499062 0) (0.0805205 0.493965 0) (0.0947553 0.495725 0) (0.109365 0.505475 0) (0.124799 0.523144 0) (0.140992 0.546308 0) (0.157512 0.5692 0) (0.173964 0.584452 0) (0.190065 0.587231 0) (0.205834 0.577387 0) (0.221589 0.555276 0) (0.237739 0.519336 0) (0.253957 0.469235 0) (0.269833 0.406854 0) (0.285706 0.334024 0) (0.301597 0.25246 0) (0.317534 0.163871 0) (0.333547 0.0699478 0) (0.349657 -0.0275184 0) (0.365889 -0.126927 0) (0.381933 -0.226509 0) (0.397915 -0.324774 0) (0.413798 -0.419738 0) (0.428593 -0.50921 0) (0.443305 -0.59189 0) (0.456317 -0.664232 0) (0.465776 -0.722723 0) (0.47343 -0.766695 0) (0.478865 -0.79444 0) (0.48001 -0.803931 0) (0.477616 -0.799096 0) (0.475618 -0.785831 0) (0.478282 -0.764289 0) (0.483389 -0.734233 0) (0.487584 -0.69391 0) (0.490082 -0.639073 0) (0.48486 -0.575209 0) (0.471967 -0.507791 0) (0.45903 -0.432963 0) (0.442837 -0.356203 0) (0.414961 -0.294617 0) (0.375629 -0.259103 0) (0.331553 -0.246853 0) (0.28972 -0.246872 0) (0.253256 -0.250981 0) (0.221774 -0.257011 0) (0.194516 -0.263931 0) (0.170569 -0.271459 0) (0.148891 -0.280911 0) (0.129157 -0.292734 0) (0.111748 -0.304952 0) (0.0975287 -0.314065 0) (0.0872003 -0.318483 0) (0.0797375 -0.321284 0) (0.072394 -0.327793 0) (0.0657142 -0.337592 0) (0.0633057 -0.341984 0) (0.0662223 -0.341517 0) (0.0688745 -0.348436 0) (0.0686176 -0.369501 0) (0.0685204 -0.398398 0) (0.0651388 -0.443041 0) (0.042245 -0.493197 0) (0.0128215 -0.560255 0) (-0.0153573 -0.529814 0) (-0.00833187 -0.0350502 0) (-0.00670611 0.0766618 0) (-0.0305742 0.102474 0) (-0.0500481 0.107324 0) (-0.0726339 0.117088 0) (-0.0933468 0.131982 0) (-0.113512 0.150284 0) (-0.13117 0.173242 0) (-0.146227 0.199541 0) (-0.15762 0.228667 0) (-0.164827 0.259548 0) (-0.167329 0.290869 0) (-0.165018 0.321267 0) (-0.158151 0.349357 0) (-0.147403 0.374132 0) (-0.133804 0.395046 0) (-0.118615 0.412231 0) (-0.103107 0.426353 0) (-0.0882954 0.438401 0) (-0.0747162 0.449239 0) (-0.0623573 0.459217 0) (-0.0508337 0.468061 0) (-0.0397023 0.475241 0) (-0.0287677 0.480609 0) (-0.0183384 0.485009 0) (-0.00914509 0.490218 0) (-0.00187325 0.49797 0) (0.00344777 0.508688 0) (0.00771549 0.520832 0) (0.012479 0.531083 0) (0.0191045 0.535963 0) (0.0281135 0.534021 0) (0.0393394 0.526158 0) (0.0523261 0.514572 0) (0.066476 0.502163 0) (0.0812365 0.492018 0) (0.0962371 0.486808 0) (0.111433 0.488405 0) (0.127158 0.497794 0) (0.143979 0.514927 0) (0.161949 0.537591 0) (0.180601 0.560314 0) (0.199336 0.575783 0) (0.217623 0.578886 0) (0.235388 0.569125 0) (0.252928 0.546924 0) (0.270615 0.511022 0) (0.288087 0.461114 0) (0.30495 0.398875 0) (0.321483 0.326131 0) (0.33775 0.244637 0) (0.353808 0.156104 0) (0.369682 0.0622433 0) (0.385383 -0.0351949 0) (0.400986 -0.13457 0) (0.416051 -0.234074 0) (0.430991 -0.33226 0) (0.445292 -0.426869 0) (0.458453 -0.516034 0) (0.471453 -0.598151 0) (0.481597 -0.669083 0) (0.488352 -0.726377 0) (0.49402 -0.769391 0) (0.496467 -0.795319 0) (0.493653 -0.802887 0) (0.488977 -0.797637 0) (0.487109 -0.78605 0) (0.491153 -0.766561 0) (0.498079 -0.736758 0) (0.502414 -0.695566 0) (0.50414 -0.638309 0) (0.498295 -0.570178 0) (0.482071 -0.500396 0) (0.464546 -0.425079 0) (0.446807 -0.345348 0) (0.419768 -0.278407 0) (0.381068 -0.238769 0) (0.336666 -0.225631 0) (0.293967 -0.227378 0) (0.256692 -0.234048 0) (0.224708 -0.242423 0) (0.197191 -0.251268 0) (0.173168 -0.260214 0) (0.151503 -0.270723 0) (0.131792 -0.28359 0) (0.114359 -0.297132 0) (0.0999431 -0.307954 0) (0.0893017 -0.314059 0) (0.0818394 -0.317701 0) (0.0748816 -0.324365 0) (0.0681945 -0.335223 0) (0.0650137 -0.342082 0) (0.0675906 -0.343066 0) (0.0707063 -0.348847 0) (0.069558 -0.369207 0) (0.067397 -0.397448 0) (0.064139 -0.437209 0) (0.0476534 -0.482255 0) (0.0239298 -0.546825 0) (0.00166064 -0.526806 0) (-0.00946507 -0.0315306 0) (-0.00495895 0.0818151 0) (-0.0271751 0.112303 0) (-0.0456371 0.117628 0) (-0.0672991 0.127124 0) (-0.0867345 0.141725 0) (-0.105863 0.159153 0) (-0.122312 0.180912 0) (-0.136231 0.205709 0) (-0.146594 0.232964 0) (-0.152957 0.261749 0) (-0.154909 0.290829 0) (-0.152383 0.319034 0) (-0.145678 0.34516 0) (-0.135458 0.368381 0) (-0.122709 0.388284 0) (-0.108581 0.405043 0) (-0.0941884 0.419256 0) (-0.0803659 0.431727 0) (-0.0675055 0.443086 0) (-0.0555355 0.453479 0) (-0.0441029 0.462555 0) (-0.0328606 0.469843 0) (-0.0217549 0.475384 0) (-0.0112237 0.480229 0) (-0.00204415 0.486217 0) (0.00519155 0.49489 0) (0.0106362 0.506284 0) (0.0153372 0.518477 0) (0.0208465 0.52809 0) (0.0284389 0.53191 0) (0.0385482 0.528845 0) (0.0509135 0.520027 0) (0.0650016 0.507755 0) (0.0801625 0.494939 0) (0.0958369 0.484606 0) (0.111682 0.479294 0) (0.127742 0.480693 0) (0.144452 0.48963 0) (0.162485 0.506085 0) (0.182035 0.528079 0) (0.202636 0.550498 0) (0.22352 0.566144 0) (0.243901 0.569635 0) (0.263571 0.560071 0) (0.282792 0.537895 0) (0.301913 0.502144 0) (0.320564 0.452556 0) (0.338354 0.390608 0) (0.355493 0.318094 0) (0.372074 0.2368 0) (0.388185 0.148449 0) (0.403849 0.0547714 0) (0.419085 -0.0425279 0) (0.433962 -0.141725 0) (0.447988 -0.241045 0) (0.4618 -0.338998 0) (0.474337 -0.433117 0) (0.485934 -0.521939 0) (0.496872 -0.603166 0) (0.503949 -0.672541 0) (0.50836 -0.72888 0) (0.511818 -0.770763 0) (0.510699 -0.794437 0) (0.504186 -0.800458 0) (0.498366 -0.795966 0) (0.497908 -0.78687 0) (0.503546 -0.769645 0) (0.511793 -0.739707 0) (0.515886 -0.696936 0) (0.516005 -0.637189 0) (0.509622 -0.564448 0) (0.491319 -0.491244 0) (0.469193 -0.415534 0) (0.448691 -0.334148 0) (0.421816 -0.262679 0) (0.383864 -0.218867 0) (0.339553 -0.204511 0) (0.296419 -0.207802 0) (0.258676 -0.217056 0) (0.226437 -0.227864 0) (0.198851 -0.238706 0) (0.174897 -0.249113 0) (0.153359 -0.260686 0) (0.133761 -0.274574 0) (0.116394 -0.289373 0) (0.101889 -0.301808 0) (0.0909919 -0.309606 0) (0.0834638 -0.31424 0) (0.0768395 -0.321075 0) (0.0702126 -0.332696 0) (0.0662347 -0.341841 0) (0.0681148 -0.344566 0) (0.0715949 -0.349236 0) (0.0701094 -0.368192 0) (0.0661035 -0.395873 0) (0.0619175 -0.432834 0) (0.0494341 -0.473301 0) (0.0263749 -0.537079 0) (0.00854796 -0.517801 0) (-0.010396 -0.028173 0) (-0.00320449 0.0857509 0) (-0.0234593 0.121419 0) (-0.0410221 0.127329 0) (-0.0617397 0.136518 0) (-0.079895 0.150805 0) (-0.0980008 0.167384 0) (-0.113286 0.18794 0) (-0.126105 0.211295 0) (-0.135502 0.236773 0) (-0.14108 0.263602 0) (-0.142548 0.29062 0) (-0.139865 0.316829 0) (-0.133376 0.341191 0) (-0.123716 0.363036 0) (-0.111813 0.382058 0) (-0.0986944 0.398448 0) (-0.0853236 0.412723 0) (-0.0723738 0.425513 0) (-0.0601235 0.437245 0) (-0.0484644 0.447908 0) (-0.0370863 0.457104 0) (-0.025743 0.464447 0) (-0.0145137 0.470168 0) (-0.00394824 0.475495 0) (0.0051659 0.482285 0) (0.0123534 0.491829 0) (0.0179362 0.503765 0) (0.023083 0.515864 0) (0.0293347 0.524726 0) (0.0378754 0.52742 0) (0.0490457 0.523205 0) (0.0624918 0.51344 0) (0.0776108 0.500521 0) (0.0937079 0.487354 0) (0.110214 0.476876 0) (0.126818 0.471477 0) (0.143645 0.472651 0) (0.161208 0.481068 0) (0.180274 0.496724 0) (0.201189 0.517889 0) (0.223534 0.539853 0) (0.24641 0.555614 0) (0.268784 0.559542 0) (0.290273 0.550289 0) (0.311079 0.528255 0) (0.331536 0.492757 0) (0.35129 0.4436 0) (0.369949 0.382084 0) (0.387648 0.309943 0) (0.404489 0.22898 0) (0.420598 0.140934 0) (0.435974 0.0475607 0) (0.450702 -0.0494752 0) (0.464735 -0.148352 0) (0.47771 -0.247399 0) (0.49024 -0.344942 0) (0.500924 -0.43848 0) (0.510985 -0.526863 0) (0.519404 -0.606842 0) (0.523454 -0.674707 0) (0.525855 -0.730256 0) (0.526624 -0.770628 0) (0.521547 -0.791836 0) (0.51214 -0.797103 0) (0.506362 -0.79464 0) (0.508008 -0.788514 0) (0.514934 -0.773291 0) (0.52347 -0.742749 0) (0.526845 -0.697693 0) (0.524633 -0.635444 0) (0.517278 -0.558335 0) (0.498199 -0.480885 0) (0.472518 -0.404303 0) (0.448719 -0.322212 0) (0.421319 -0.247237 0) (0.384069 -0.199481 0) (0.340191 -0.183695 0) (0.29705 -0.188341 0) (0.259197 -0.200155 0) (0.226972 -0.213444 0) (0.199515 -0.226323 0) (0.175775 -0.238215 0) (0.154477 -0.250848 0) (0.135081 -0.265728 0) (0.117859 -0.281721 0) (0.103365 -0.295671 0) (0.0922827 -0.305127 0) (0.084647 -0.310871 0) (0.0782966 -0.317926 0) (0.0717987 -0.330037 0) (0.067087 -0.341196 0) (0.0680011 -0.345897 0) (0.0716378 -0.349698 0) (0.0703109 -0.366707 0) (0.0648839 -0.393619 0) (0.0596105 -0.428745 0) (0.0479027 -0.464863 0) (0.0264199 -0.52663 0) (0.00372353 -0.51036 0) (-0.0111049 -0.0250292 0) (-0.00148654 0.0883979 0) (-0.0194644 0.129799 0) (-0.0362591 0.13645 0) (-0.0560261 0.145292 0) (-0.0729213 0.159238 0) (-0.090018 0.175009 0) (-0.104209 0.194364 0) (-0.115974 0.216339 0) (-0.124482 0.24014 0) (-0.129341 0.265146 0) (-0.130392 0.290274 0) (-0.127605 0.314674 0) (-0.121367 0.337458 0) (-0.11227 0.358086 0) (-0.101176 0.376335 0) (-0.0889892 0.392393 0) (-0.0765301 0.406689 0) (-0.0643338 0.419696 0) (-0.0525897 0.431669 0) (-0.0411713 0.442476 0) (-0.0298199 0.451703 0) (-0.0183892 0.459068 0) (-0.00708738 0.464987 0) (0.00345658 0.470833 0) (0.0124701 0.478436 0) (0.019605 0.488778 0) (0.0253491 0.501125 0) (0.0309573 0.512996 0) (0.0379459 0.521007 0) (0.0474097 0.52252 0) (0.0595911 0.517135 0) (0.0740532 0.506439 0) (0.0901278 0.49292 0) (0.10708 0.479455 0) (0.124331 0.468874 0) (0.141608 0.463404 0) (0.159104 0.46434 0) (0.177392 0.472192 0) (0.197312 0.486955 0) (0.219366 0.507143 0) (0.243228 0.528496 0) (0.267917 0.544282 0) (0.292172 0.548672 0) (0.315395 0.539836 0) (0.3377 0.518063 0) (0.3594 0.482916 0) (0.380179 0.434287 0) (0.399648 0.37333 0) (0.417865 0.301701 0) (0.434923 0.221203 0) (0.450982 0.133582 0) (0.466003 0.0406345 0) (0.480182 -0.0560122 0) (0.493246 -0.154438 0) (0.505192 -0.253115 0) (0.516219 -0.350049 0) (0.525081 -0.442969 0) (0.533506 -0.530716 0) (0.538978 -0.60914 0) (0.540268 -0.675705 0) (0.540781 -0.730454 0) (0.538275 -0.768834 0) (0.529226 -0.787738 0) (0.518067 -0.793353 0) (0.513279 -0.793995 0) (0.517032 -0.790927 0) (0.524659 -0.777077 0) (0.532375 -0.745475 0) (0.534563 -0.697588 0) (0.529681 -0.632751 0) (0.520553 -0.551915 0) (0.501404 -0.469954 0) (0.473699 -0.391755 0) (0.446852 -0.309384 0) (0.418451 -0.231896 0) (0.381779 -0.180643 0) (0.338601 -0.163355 0) (0.295859 -0.169189 0) (0.25827 -0.183499 0) (0.226338 -0.199275 0) (0.199212 -0.2142 0) (0.175832 -0.227577 0) (0.154883 -0.241251 0) (0.135772 -0.257086 0) (0.11877 -0.274214 0) (0.104374 -0.289582 0) (0.0931866 -0.300634 0) (0.0854267 -0.307569 0) (0.0792892 -0.314912 0) (0.0729782 -0.327291 0) (0.0676566 -0.340132 0) (0.0674414 -0.346948 0) (0.0709614 -0.35027 0) (0.0701234 -0.365009 0) (0.0638362 -0.390871 0) (0.0577132 -0.424499 0) (0.0461839 -0.457265 0) (0.0285366 -0.515922 0) (0.00430656 -0.503688 0) (-0.0115355 -0.0221359 0) (0.000106322 0.0897631 0) (-0.0152498 0.137458 0) (-0.0314023 0.145014 0) (-0.0502222 0.153476 0) (-0.0658959 0.167042 0) (-0.0819904 0.182062 0) (-0.0951701 0.200228 0) (-0.105934 0.220881 0) (-0.113631 0.243107 0) (-0.117842 0.266418 0) (-0.118537 0.289823 0) (-0.11569 0.312584 0) (-0.109718 0.333961 0) (-0.101165 0.353509 0) (-0.0908243 0.371071 0) (-0.0794762 0.386816 0) (-0.0678135 0.401088 0) (-0.0562545 0.414216 0) (-0.044921 0.426312 0) (-0.0336825 0.437158 0) (-0.0223375 0.446349 0) (-0.0108407 0.453723 0) (0.000489037 0.459861 0) (0.0109652 0.466271 0) (0.0198537 0.474668 0) (0.0269461 0.485726 0) (0.0328802 0.498361 0) (0.0389662 0.509879 0) (0.0466824 0.516952 0) (0.0570363 0.517237 0) (0.0701704 0.510672 0) (0.0855768 0.499073 0) (0.102524 0.485001 0) (0.120241 0.471289 0) (0.138148 0.460648 0) (0.156011 0.455126 0) (0.174083 0.45582 0) (0.192971 0.463082 0) (0.213574 0.476882 0) (0.236539 0.495967 0) (0.261676 0.516547 0) (0.287973 0.532243 0) (0.31398 0.537091 0) (0.338851 0.528768 0) (0.362576 0.507375 0) (0.385433 0.472675 0) (0.407158 0.42466 0) (0.427374 0.364374 0) (0.446069 0.293391 0) (0.463304 0.213486 0) (0.479276 0.126428 0) (0.493887 0.0340037 0) (0.507466 -0.0621263 0) (0.519464 -0.159977 0) (0.530386 -0.258157 0) (0.539675 -0.354296 0) (0.546843 -0.446582 0) (0.553359 -0.533392 0) (0.555632 -0.610086 0) (0.554557 -0.675634 0) (0.553007 -0.729366 0) (0.546729 -0.765335 0) (0.534131 -0.782517 0) (0.52239 -0.789684 0) (0.519164 -0.794125 0) (0.524521 -0.793866 0) (0.532204 -0.780598 0) (0.538253 -0.747528 0) (0.538794 -0.696506 0) (0.531327 -0.628879 0) (0.519679 -0.545023 0) (0.500372 -0.458881 0) (0.47197 -0.378433 0) (0.442869 -0.295759 0) (0.413322 -0.216542 0) (0.377111 -0.162358 0) (0.334842 -0.143633 0) (0.29288 -0.150523 0) (0.255927 -0.167239 0) (0.224573 -0.185467 0) (0.197981 -0.202414 0) (0.175103 -0.217254 0) (0.154608 -0.231935 0) (0.135864 -0.248681 0) (0.119147 -0.266886 0) (0.104927 -0.283582 0) (0.0937172 -0.296148 0) (0.0858395 -0.304317 0) (0.0798587 -0.312029 0) (0.0737748 -0.324506 0) (0.0679999 -0.33867 0) (0.0665998 -0.347628 0) (0.0697118 -0.350928 0) (0.0694921 -0.363309 0) (0.0629128 -0.387827 0) (0.0559743 -0.420285 0) (0.0453135 -0.450693 0) (0.0297683 -0.507039 0) (0.00860024 -0.495048 0) (-0.0116353 -0.019536 0) (0.00150137 0.0899355 0) (-0.0108798 0.144421 0) (-0.0265088 0.153023 0) (-0.0443772 0.161106 0) (-0.0588939 0.174236 0) (-0.073978 0.188576 0) (-0.0862368 0.205577 0) (-0.0960569 0.224961 0) (-0.103015 0.24572 0) (-0.106648 0.267456 0) (-0.107039 0.289291 0) (-0.104166 0.310571 0) (-0.0984604 0.33069 0) (-0.0904197 0.349274 0) (-0.0807604 0.366219 0) (-0.0701519 0.381658 0) (-0.0591715 0.395858 0) (-0.0481414 0.409018 0) (-0.0371327 0.421136 0) (-0.0260235 0.431936 0) (-0.0146726 0.441045 0) (-0.00313432 0.448424 0) (0.00818357 0.454818 0) (0.018555 0.461815 0) (0.0273069 0.470975 0) (0.0343814 0.482665 0) (0.0405373 0.49547 0) (0.0471149 0.506522 0) (0.0555456 0.512579 0) (0.0667482 0.511602 0) (0.0807697 0.50386 0) (0.0970398 0.491388 0) (0.114768 0.476811 0) (0.133155 0.462904 0) (0.151624 0.452244 0) (0.169987 0.44669 0) (0.188541 0.447147 0) (0.207914 0.453811 0) (0.229042 0.466606 0) (0.252696 0.484484 0) (0.278852 0.504133 0) (0.306533 0.5196 0) (0.33414 0.524868 0) (0.360568 0.517133 0) (0.385641 0.496237 0) (0.409581 0.462083 0) (0.432172 0.414764 0) (0.453066 0.355248 0) (0.472192 0.285032 0) (0.489574 0.205844 0) (0.505411 0.119477 0) (0.519576 0.0276973 0) (0.532476 -0.0677571 0) (0.543383 -0.16495 0) (0.553221 -0.262484 0) (0.560601 -0.357685 0) (0.566212 -0.449297 0) (0.570413 -0.534805 0) (0.569496 -0.609771 0) (0.566424 -0.674536 0) (0.562396 -0.72687 0) (0.552113 -0.76022 0) (0.536734 -0.776599 0) (0.525355 -0.786428 0) (0.5239 -0.79495 0) (0.530146 -0.797021 0) (0.537237 -0.783558 0) (0.541111 -0.748658 0) (0.539547 -0.694433 0) (0.529791 -0.623791 0) (0.515326 -0.537418 0) (0.495303 -0.447799 0) (0.466941 -0.364826 0) (0.436531 -0.281589 0) (0.405991 -0.201163 0) (0.370189 -0.144631 0) (0.329007 -0.124648 0) (0.288176 -0.132509 0) (0.252222 -0.151519 0) (0.221729 -0.172126 0) (0.195872 -0.191038 0) (0.173632 -0.207294 0) (0.153688 -0.222937 0) (0.135387 -0.240542 0) (0.119016 -0.259767 0) (0.105041 -0.277704 0) (0.0938891 -0.291692 0) (0.0859199 -0.301106 0) (0.0800494 -0.309267 0) (0.0742134 -0.321727 0) (0.0681497 -0.33686 0) (0.0656032 -0.34788 0) (0.0680445 -0.351608 0) (0.0684006 -0.361745 0) (0.0619884 -0.384612 0) (0.0542353 -0.416194 0) (0.0443982 -0.444567 0) (0.028831 -0.498989 0) (0.00835188 -0.486023 0) (-0.0113649 -0.0172571 0) (0.002631 0.0890584 0) (-0.00642418 0.150584 0) (-0.0216237 0.16049 0) (-0.0385254 0.168235 0) (-0.0519819 0.180842 0) (-0.0660306 0.19458 0) (-0.0774551 0.210459 0) (-0.0863951 0.22862 0) (-0.0926779 0.248016 0) (-0.0957996 0.26829 0) (-0.0959266 0.288696 0) (-0.0930524 0.308638 0) (-0.0876006 0.327629 0) (-0.0800288 0.345349 0) (-0.0709732 0.361727 0) (-0.0610049 0.376862 0) (-0.0505981 0.39094 0) (-0.0399979 0.404053 0) (-0.0292397 0.416109 0) (-0.0182184 0.426797 0) (-0.00685893 0.435793 0) (0.0046981 0.443186 0) (0.0159674 0.449875 0) (0.0262053 0.457466 0) (0.034827 0.46735 0) (0.0419174 0.479582 0) (0.0483275 0.492443 0) (0.0554078 0.502931 0) (0.0645345 0.507911 0) (0.0765366 0.505648 0) (0.0913734 0.496744 0) (0.108417 0.483435 0) (0.126826 0.468401 0) (0.145781 0.454352 0) (0.164714 0.443711 0) (0.183489 0.438144 0) (0.202434 0.438371 0) (0.222188 0.444444 0) (0.243698 0.456215 0) (0.267835 0.472811 0) (0.294755 0.491381 0) (0.323572 0.506462 0) (0.352605 0.512078 0) (0.380487 0.504984 0) (0.40684 0.484691 0) (0.431797 0.451185 0) (0.455182 0.404641 0) (0.476682 0.345983 0) (0.496184 0.276646 0) (0.513683 0.198296 0) (0.52933 0.112746 0) (0.543059 0.0217269 0) (0.555149 -0.0729026 0) (0.565018 -0.169367 0) (0.573615 -0.266057 0) (0.579043 -0.360234 0) (0.58314 -0.451052 0) (0.584599 -0.534917 0) (0.580751 -0.608323 0) (0.575894 -0.672403 0) (0.568899 -0.722867 0) (0.554697 -0.753721 0) (0.537444 -0.770364 0) (0.527099 -0.783775 0) (0.52732 -0.7963 0) (0.533709 -0.800068 0) (0.539534 -0.785744 0) (0.540951 -0.748697 0) (0.536882 -0.691368 0) (0.525078 -0.617604 0) (0.508012 -0.528975 0) (0.486778 -0.436648 0) (0.45865 -0.351237 0) (0.427709 -0.26716 0) (0.396503 -0.18582 0) (0.361145 -0.127486 0) (0.321215 -0.106499 0) (0.281838 -0.115296 0) (0.247231 -0.136477 0) (0.217872 -0.159353 0) (0.192939 -0.18014 0) (0.171466 -0.197742 0) (0.152164 -0.214288 0) (0.134374 -0.232693 0) (0.118407 -0.252879 0) (0.104736 -0.271979 0) (0.0937185 -0.287292 0) (0.0856992 -0.297933 0) (0.0799058 -0.306617 0) (0.0743222 -0.318993 0) (0.0681222 -0.334767 0) (0.0645408 -0.347677 0) (0.0661079 -0.352224 0) (0.066889 -0.360386 0) (0.0609405 -0.381345 0) (0.0526431 -0.41211 0) (0.0429622 -0.438598 0) (0.0278626 -0.490633 0) (0.0064502 -0.478121 0) (-0.0107101 -0.0153123 0) (0.00340424 0.0872744 0) (-0.00199735 0.155802 0) (-0.0167671 0.167458 0) (-0.0327037 0.174923 0) (-0.0452226 0.186877 0) (-0.0581915 0.200097 0) (-0.0688525 0.214916 0) (-0.076984 0.231894 0) (-0.0826391 0.250031 0) (-0.0853143 0.268949 0) (-0.0852063 0.288054 0) (-0.0823472 0.306783 0) (-0.0771271 0.324759 0) (-0.0699753 0.341697 0) (-0.0614432 0.357549 0) (-0.0520191 0.372372 0) (-0.0420851 0.386283 0) (-0.031827 0.399282 0) (-0.0212555 0.411205 0) (-0.010293 0.421731 0) (0.0010742 0.430598 0) (0.0126265 0.438029 0) (0.0238132 0.445036 0) (0.0339024 0.453221 0) (0.0424142 0.463783 0) (0.0495594 0.476464 0) (0.0562561 0.489275 0) (0.0638468 0.499112 0) (0.0736456 0.502969 0) (0.0863902 0.499415 0) (0.101962 0.48937 0) (0.119679 0.475264 0) (0.138661 0.459825 0) (0.158075 0.445683 0) (0.177374 0.435096 0) (0.196469 0.429531 0) (0.215718 0.42954 0) (0.235759 0.435036 0) (0.257527 0.445789 0) (0.281961 0.461054 0) (0.309398 0.478418 0) (0.339094 0.492946 0) (0.369349 0.498805 0) (0.398566 0.49237 0) (0.426125 0.472777 0) (0.452044 0.440015 0) (0.476162 0.394332 0) (0.498199 0.336615 0) (0.518014 0.268254 0) (0.535598 0.190854 0) (0.550991 0.106249 0) (0.564295 0.0160919 0) (0.57545 -0.0775732 0) (0.584396 -0.173219 0) (0.5915 -0.26884 0) (0.595067 -0.36196 0) (0.597537 -0.451781 0) (0.595948 -0.533756 0) (0.589596 -0.605878 0) (0.582967 -0.669183 0) (0.572609 -0.717333 0) (0.554803 -0.746119 0) (0.536592 -0.764151 0) (0.527712 -0.781789 0) (0.529236 -0.797951 0) (0.535034 -0.802682 0) (0.538928 -0.786964 0) (0.537718 -0.74754 0) (0.530904 -0.687279 0) (0.517111 -0.610483 0) (0.497915 -0.519746 0) (0.47534 -0.425354 0) (0.447398 -0.337806 0) (0.41644 -0.252711 0) (0.38493 -0.170619 0) (0.350119 -0.110963 0) (0.311606 -0.0892753 0) (0.273981 -0.0990148 0) (0.241045 -0.122235 0) (0.213079 -0.147239 0) (0.189248 -0.169779 0) (0.168658 -0.188637 0) (0.150079 -0.206016 0) (0.132864 -0.225157 0) (0.11735 -0.246244 0) (0.104036 -0.266434 0) (0.0932232 -0.282977 0) (0.0852056 -0.294802 0) (0.0794708 -0.304068 0) (0.0741327 -0.316334 0) (0.0679253 -0.332465 0) (0.063467 -0.347029 0) (0.0640311 -0.352693 0) (0.0650338 -0.359237 0) (0.0596905 -0.378167 0) (0.0512577 -0.40798 0) (0.0413844 -0.43293 0) (0.0275706 -0.482641 0) (0.00691686 -0.470485 0) (-0.00969797 -0.0136991 0) (0.00377631 0.0846912 0) (0.00224355 0.160037 0) (-0.0119641 0.173975 0) (-0.0269547 0.181203 0) (-0.0386702 0.192364 0) (-0.050501 0.205142 0) (-0.060442 0.218989 0) (-0.0678458 0.234818 0) (-0.0729053 0.251794 0) (-0.0751939 0.269456 0) (-0.07487 0.287371 0) (-0.0720343 0.305004 0) (-0.0670175 0.322059 0) (-0.0602335 0.338283 0) (-0.052146 0.353638 0) (-0.0431759 0.368141 0) (-0.0336238 0.381842 0) (-0.0236312 0.394667 0) (-0.0131953 0.406403 0) (-0.00226991 0.416731 0) (0.00909941 0.425471 0) (0.02062 0.43296 0) (0.0316981 0.440305 0) (0.0416378 0.449078 0) (0.0500697 0.460261 0) (0.0573113 0.473296 0) (0.0643254 0.48596 0) (0.0724306 0.495077 0) (0.0828714 0.497781 0) (0.0962948 0.492942 0) (0.112513 0.481787 0) (0.130795 0.466929 0) (0.150235 0.451139 0) (0.169994 0.43695 0) (0.189556 0.426445 0) (0.208882 0.420895 0) (0.228349 0.420695 0) (0.248593 0.425634 0) (0.270516 0.435393 0) (0.295088 0.44931 0) (0.322811 0.465364 0) (0.353121 0.479171 0) (0.384374 0.485141 0) (0.414783 0.479351 0) (0.443466 0.460532 0) (0.470291 0.428606 0) (0.495091 0.383869 0) (0.517609 0.327176 0) (0.537672 0.25988 0) (0.555302 0.183546 0) (0.570383 0.0999809 0) (0.583256 0.0108391 0) (0.593404 -0.0817508 0) (0.601502 -0.176477 0) (0.606837 -0.270817 0) (0.608731 -0.36288 0) (0.609324 -0.451431 0) (0.60462 -0.531412 0) (0.59623 -0.602548 0) (0.587675 -0.664792 0) (0.57366 -0.710329 0) (0.552738 -0.737719 0) (0.534461 -0.758238 0) (0.527231 -0.780423 0) (0.529439 -0.79962 0) (0.533944 -0.804556 0) (0.535357 -0.78705 0) (0.531424 -0.745144 0) (0.521832 -0.682142 0) (0.505999 -0.602555 0) (0.485089 -0.509885 0) (0.461346 -0.413923 0) (0.433554 -0.324596 0) (0.402877 -0.238408 0) (0.371384 -0.155668 0) (0.337263 -0.0951152 0) (0.300337 -0.0730582 0) (0.264742 -0.0837805 0) (0.233774 -0.108903 0) (0.207434 -0.135863 0) (0.184866 -0.160008 0) (0.165263 -0.180012 0) (0.147478 -0.198142 0) (0.130894 -0.217952 0) (0.115881 -0.239878 0) (0.102968 -0.26109 0) (0.0924227 -0.278771 0) (0.0844644 -0.291723 0) (0.0787842 -0.301615 0) (0.0736788 -0.313771 0) (0.0675651 -0.330024 0) (0.0624083 -0.345969 0) (0.0619158 -0.352945 0) (0.0629241 -0.358267 0) (0.0582113 -0.375177 0) (0.0499364 -0.403881 0) (0.0400102 -0.427566 0) (0.0269755 -0.475445 0) (0.00758966 -0.462618 0) (-0.00839897 -0.0124156 0) (0.00382593 0.0814286 0) (0.00615877 0.163215 0) (-0.00726356 0.180103 0) (-0.0213207 0.18709 0) (-0.0323645 0.197331 0) (-0.0430003 0.209722 0) (-0.052227 0.222709 0) (-0.0589894 0.237424 0) (-0.0634735 0.253327 0) (-0.0654262 0.269831 0) (-0.0648999 0.286655 0) (-0.0620871 0.303291 0) (-0.0572427 0.319506 0) (-0.0507724 0.335075 0) (-0.0430552 0.349953 0) (-0.034456 0.364124 0) (-0.0252057 0.377578 0) (-0.0154139 0.390182 0) (-0.0050738 0.401687 0) (0.00582877 0.411798 0) (0.0171885 0.420415 0) (0.0286515 0.427983 0) (0.0396048 0.435686 0) (0.0494055 0.445028 0) (0.0577936 0.456766 0) (0.0651745 0.470063 0) (0.0725344 0.482495 0) (0.0811538 0.490839 0) (0.0922003 0.492376 0) (0.106233 0.48627 0) (0.123001 0.474046 0) (0.141733 0.458489 0) (0.161507 0.442398 0) (0.181494 0.428204 0) (0.201216 0.417802 0) (0.220681 0.412274 0) (0.240287 0.411873 0) (0.260656 0.416279 0) (0.282648 0.425079 0) (0.307228 0.437658 0) (0.335032 0.45233 0) (0.365701 0.46526 0) (0.397706 0.471185 0) (0.429139 0.465987 0) (0.458849 0.447996 0) (0.486522 0.416986 0) (0.511957 0.373278 0) (0.534908 0.317697 0) (0.555168 0.251548 0) (0.572789 0.176391 0) (0.587542 0.0939576 0) (0.599912 0.00594383 0) (0.60908 -0.0854683 0) (0.616269 -0.179109 0) (0.619649 -0.271999 0) (0.620083 -0.363011 0) (0.618506 -0.449977 0) (0.610857 -0.528014 0) (0.600814 -0.598383 0) (0.590024 -0.65917 0) (0.572186 -0.701962 0) (0.548878 -0.728861 0) (0.531285 -0.752824 0) (0.525603 -0.779519 0) (0.527744 -0.800999 0) (0.530337 -0.805455 0) (0.52894 -0.785923 0) (0.522238 -0.741544 0) (0.510002 -0.675979 0) (0.492105 -0.593895 0) (0.469727 -0.499544 0) (0.445065 -0.402418 0) (0.41745 -0.31165 0) (0.387236 -0.224364 0) (0.356014 -0.141066 0) (0.322743 -0.0800038 0) (0.287581 -0.0579219 0) (0.254272 -0.0696916 0) (0.225541 -0.0965723 0) (0.201034 -0.125293 0) (0.179866 -0.15087 0) (0.161339 -0.171892 0) (0.144409 -0.190686 0) (0.128505 -0.211092 0) (0.114034 -0.233796 0) (0.101561 -0.255967 0) (0.0913381 -0.274699 0) (0.0834987 -0.28871 0) (0.077882 -0.29925 0) (0.0729954 -0.311317 0) (0.0670496 -0.327506 0) (0.0613728 -0.344545 0) (0.0598347 -0.352933 0) (0.0606478 -0.357421 0) (0.0565206 -0.372414 0) (0.048544 -0.399915 0) (0.0387911 -0.422362 0) (0.0259246 -0.468541 0) (0.00684861 -0.455117 0) (-0.00690482 -0.0114656 0) (0.00366394 0.0776626 0) (0.00963398 0.165332 0) (-0.00269902 0.185763 0) (-0.0158377 0.192595 0) (-0.0263291 0.201815 0) (-0.0357321 0.213836 0) (-0.0442075 0.226097 0) (-0.050412 0.239744 0) (-0.054336 0.254649 0) (-0.0559888 0.27009 0) (-0.0552718 0.285907 0) (-0.0524726 0.301637 0) (-0.0477701 0.317079 0) (-0.041559 0.332039 0) (-0.034144 0.346455 0) (-0.0258408 0.360283 0) (-0.0168236 0.373458 0) (-0.00717958 0.385802 0) (0.00309478 0.397049 0) (0.0139795 0.406932 0) (0.0253141 0.415435 0) (0.0366981 0.423105 0) (0.047519 0.431177 0) (0.0571994 0.441057 0) (0.0655843 0.453278 0) (0.0731477 0.466751 0) (0.0808784 0.478879 0) (0.0900069 0.486411 0) (0.101616 0.486782 0) (0.116183 0.479443 0) (0.133397 0.466199 0) (0.152457 0.449999 0) (0.17244 0.433658 0) (0.192537 0.419495 0) (0.212315 0.409212 0) (0.231829 0.403709 0) (0.251497 0.403109 0) (0.271922 0.407002 0) (0.29391 0.414889 0) (0.318396 0.426163 0) (0.346108 0.439413 0) (0.376895 0.451329 0) (0.409398 0.457044 0) (0.441659 0.452353 0) (0.472282 0.435213 0) (0.500734 0.405187 0) (0.526755 0.36258 0) (0.550099 0.3082 0) (0.570524 0.24328 0) (0.588066 0.169405 0) (0.602502 0.088199 0) (0.614241 0.00150384 0) (0.622571 -0.0887218 0) (0.628609 -0.181065 0) (0.630041 -0.272434 0) (0.629185 -0.362358 0) (0.625181 -0.447421 0) (0.614891 -0.523701 0) (0.603439 -0.593402 0) (0.590018 -0.652255 0) (0.568441 -0.692431 0) (0.543597 -0.719868 0) (0.527209 -0.747992 0) (0.522705 -0.77885 0) (0.52403 -0.801798 0) (0.524223 -0.805239 0) (0.51988 -0.783567 0) (0.510407 -0.736815 0) (0.495725 -0.668864 0) (0.475868 -0.584566 0) (0.452183 -0.488828 0) (0.426795 -0.390904 0) (0.399389 -0.298999 0) (0.36974 -0.210654 0) (0.338992 -0.126894 0) (0.306737 -0.0656893 0) (0.27352 -0.0439348 0) (0.242738 -0.0568308 0) (0.216476 -0.0853187 0) (0.193975 -0.115582 0) (0.174323 -0.142398 0) (0.156944 -0.164297 0) (0.140918 -0.183659 0) (0.125736 -0.204589 0) (0.111844 -0.228008 0) (0.0998458 -0.251078 0) (0.0899919 -0.270782 0) (0.08233 -0.285777 0) (0.0767964 -0.296974 0) (0.072117 -0.30898 0) (0.0663904 -0.324965 0) (0.0603579 -0.342818 0) (0.0578346 -0.352629 0) (0.0582836 -0.356643 0) (0.0546599 -0.369878 0) (0.0470575 -0.396134 0) (0.0375587 -0.417306 0) (0.0249785 -0.461714 0) (0.006177 -0.448182 0) (-0.00532203 -0.010852 0) (0.0032505 0.0735822 0) (0.0125457 0.166485 0) (0.00164019 0.190818 0) (-0.0104904 0.197716 0) (-0.020568 0.205857 0) (-0.0287394 0.217478 0) (-0.0363858 0.229162 0) (-0.0421002 0.241807 0) (-0.0454821 0.255773 0) (-0.0468536 0.270243 0) (-0.0459576 0.285128 0) (-0.0431549 0.300031 0) (-0.0385651 0.314757 0) (-0.0325604 0.329146 0) (-0.0253867 0.343112 0) (-0.0173134 0.356586 0) (-0.00847224 0.369455 0) (0.00106609 0.381512 0) (0.0112945 0.39248 0) (0.0221589 0.402133 0) (0.0334516 0.410539 0) (0.0447402 0.418334 0) (0.0554281 0.426773 0) (0.0650138 0.437151 0) (0.0734386 0.449781 0) (0.0812259 0.463349 0) (0.0893487 0.475112 0) (0.0989754 0.481811 0) (0.1111 0.481033 0) (0.126121 0.472505 0) (0.143672 0.458301 0) (0.162935 0.441516 0) (0.182998 0.424974 0) (0.203086 0.410871 0) (0.222821 0.400717 0) (0.242299 0.395234 0) (0.261954 0.394433 0) (0.282369 0.397833 0) (0.304293 0.404854 0) (0.328608 0.414875 0) (0.35609 0.426696 0) (0.386778 0.437488 0) (0.419524 0.442828 0) (0.452397 0.438529 0) (0.483795 0.42223 0) (0.512949 0.393242 0) (0.539497 0.351798 0) (0.563183 0.298696 0) (0.583761 0.235094 0) (0.601149 0.162594 0) (0.615331 0.0827148 0) (0.626275 -0.00249471 0) (0.633859 -0.091513 0) (0.638483 -0.182325 0) (0.638195 -0.2722 0) (0.636113 -0.360904 0) (0.629464 -0.443809 0) (0.616926 -0.51861 0) (0.604163 -0.587579 0) (0.58774 -0.64404 0) (0.562733 -0.681984 0) (0.537222 -0.711022 0) (0.522302 -0.743718 0) (0.518414 -0.778153 0) (0.518257 -0.801782 0) (0.515679 -0.803817 0) (0.508347 -0.77999 0) (0.496157 -0.731029 0) (0.479215 -0.660906 0) (0.457622 -0.574664 0) (0.432826 -0.477827 0) (0.406871 -0.379424 0) (0.379663 -0.286652 0) (0.350614 -0.197326 0) (0.320497 -0.113226 0) (0.289431 -0.0522327 0) (0.258347 -0.0311592 0) (0.230313 -0.0452648 0) (0.206719 -0.0751987 0) (0.18636 -0.106767 0) (0.16831 -0.134613 0) (0.152137 -0.157239 0) (0.137053 -0.177071 0) (0.122627 -0.198451 0) (0.109346 -0.222523 0) (0.0978527 -0.246435 0) (0.0884076 -0.26704 0) (0.0809788 -0.282942 0) (0.0755557 -0.294788 0) (0.0710764 -0.306765 0) (0.065603 -0.322443 0) (0.0593575 -0.340847 0) (0.0559415 -0.352025 0) (0.055896 -0.355879 0) (0.0526734 -0.367554 0) (0.045499 -0.392547 0) (0.0362455 -0.412473 0) (0.0241884 -0.455218 0) (0.00619579 -0.441507 0) (-0.00375405 -0.0104684 0) (0.0022693 0.0693747 0) (0.0147985 0.166671 0) (0.00565029 0.19523 0) (-0.0052788 0.202436 0) (-0.0150567 0.209511 0) (-0.0220656 0.220643 0) (-0.02877 0.231899 0) (-0.0340346 0.243635 0) (-0.0368998 0.256709 0) (-0.0379903 0.270299 0) (-0.0369273 0.284318 0) (-0.0340982 0.298461 0) (-0.0295939 0.312521 0) (-0.0237454 0.326371 0) (-0.0167601 0.339896 0) (-0.00885999 0.353006 0) (-0.000148842 0.36555 0) (0.00931494 0.377298 0) (0.0195081 0.387976 0) (0.0303449 0.397405 0) (0.0415791 0.405732 0) (0.0527597 0.413668 0) (0.0633205 0.422465 0) (0.0728423 0.433291 0) (0.0813511 0.446256 0) (0.0894007 0.459846 0) (0.0979323 0.471197 0) (0.108041 0.477056 0) (0.120629 0.475159 0) (0.136021 0.465499 0) (0.153796 0.450403 0) (0.173135 0.433097 0) (0.193152 0.416397 0) (0.21312 0.402377 0) (0.232715 0.392354 0) (0.252075 0.386882 0) (0.271646 0.385875 0) (0.29199 0.388796 0) (0.313796 0.394997 0) (0.337883 0.403828 0) (0.365028 0.414242 0) (0.395435 0.423834 0) (0.42818 0.428644 0) (0.461431 0.424602 0) (0.493444 0.409102 0) (0.523207 0.381188 0) (0.550223 0.340964 0) (0.574184 0.289199 0) (0.594895 0.227005 0) (0.612072 0.155953 0) (0.625989 0.0775164 0) (0.636077 -0.00617124 0) (0.642959 -0.0938382 0) (0.645978 -0.182901 0) (0.644323 -0.271373 0) (0.640909 -0.358618 0) (0.631477 -0.43922 0) (0.617168 -0.512864 0) (0.603045 -0.580868 0) (0.583324 -0.63457 0) (0.555402 -0.670907 0) (0.530024 -0.702532 0) (0.516572 -0.739888 0) (0.512636 -0.777162 0) (0.510429 -0.800767 0) (0.504842 -0.801148 0) (0.49453 -0.775236 0) (0.479734 -0.724263 0) (0.46069 -0.652213 0) (0.437608 -0.56431 0) (0.411951 -0.466641 0) (0.385597 -0.368008 0) (0.358554 -0.274595 0) (0.330073 -0.184401 0) (0.300707 -0.100124 0) (0.271011 -0.0396955 0) (0.242259 -0.0196522 0) (0.217177 -0.035045 0) (0.196407 -0.0662504 0) (0.178288 -0.0988717 0) (0.161902 -0.127527 0) (0.146972 -0.150725 0) (0.13286 -0.170926 0) (0.119219 -0.192683 0) (0.106577 -0.217347 0) (0.0956129 -0.242048 0) (0.0866096 -0.263488 0) (0.0794647 -0.280221 0) (0.074185 -0.292694 0) (0.069904 -0.304673 0) (0.0647055 -0.319973 0) (0.0583664 -0.33869 0) (0.0541669 -0.351128 0) (0.0535347 -0.355082 0) (0.0506015 -0.365425 0) (0.0438801 -0.389154 0) (0.0348734 -0.407869 0) (0.0232788 -0.449119 0) (0.00605155 -0.435045 0) (-0.0023105 -0.0100893 0) (0.000372791 0.0651928 0) (0.016345 0.165838 0) (0.00924934 0.198878 0) (-0.000239804 0.206776 0) (-0.00974379 0.21284 0) (-0.0157486 0.223339 0) (-0.0213786 0.234292 0) (-0.0261909 0.245248 0) (-0.0285773 0.257467 0) (-0.0293688 0.270259 0) (-0.0281513 0.283474 0) (-0.0252685 0.296916 0) (-0.0208249 0.310354 0) (-0.0150865 0.323689 0) (-0.00824412 0.336781 0) (-0.000469933 0.349522 0) (0.00814613 0.361726 0) (0.0175566 0.373152 0) (0.027718 0.383537 0) (0.0385165 0.392753 0) (0.0496759 0.40102 0) (0.0607402 0.409107 0) (0.0711859 0.418241 0) (0.0806782 0.429461 0) (0.0893139 0.442688 0) (0.0976601 0.456235 0) (0.106612 0.46714 0) (0.117181 0.472166 0) (0.13018 0.469194 0) (0.145855 0.458472 0) (0.16374 0.442559 0) (0.183031 0.424793 0) (0.202881 0.407978 0) (0.222622 0.394055 0) (0.241991 0.384157 0) (0.261159 0.378683 0) (0.280577 0.37746 0) (0.300791 0.379912 0) (0.322431 0.385336 0) (0.346244 0.393047 0) (0.372977 0.4021 0) (0.402952 0.41045 0) (0.435475 0.414595 0) (0.468866 0.410666 0) (0.501308 0.395892 0) (0.531568 0.36906 0) (0.558989 0.330108 0) (0.583163 0.279732 0) (0.603951 0.219028 0) (0.620909 0.149487 0) (0.634476 0.0726147 0) (0.643749 -0.0094889 0) (0.649894 -0.0956495 0) (0.651276 -0.182849 0) (0.648596 -0.270006 0) (0.643571 -0.355466 0) (0.631403 -0.43377 0) (0.615822 -0.506556 0) (0.600136 -0.573215 0) (0.576952 -0.623949 0) (0.546807 -0.659496 0) (0.522208 -0.694529 0) (0.509985 -0.736324 0) (0.505309 -0.775628 0) (0.5006 -0.798629 0) (0.49189 -0.79723 0) (0.478652 -0.769373 0) (0.461404 -0.716604 0) (0.440424 -0.642884 0) (0.416068 -0.553619 0) (0.389789 -0.455372 0) (0.363209 -0.35669 0) (0.336305 -0.262801 0) (0.308326 -0.171884 0) (0.279804 -0.0876427 0) (0.251669 -0.0281407 0) (0.225456 -0.00946455 0) (0.20351 -0.0262069 0) (0.185679 -0.058493 0) (0.169857 -0.091903 0) (0.155168 -0.121144 0) (0.141505 -0.144755 0) (0.128384 -0.165225 0) (0.115549 -0.187289 0) (0.10357 -0.212485 0) (0.0931573 -0.237921 0) (0.0846229 -0.260138 0) (0.0778073 -0.27763 0) (0.0727066 -0.2907 0) (0.0686275 -0.302707 0) (0.0637181 -0.31758 0) (0.0573824 -0.336399 0) (0.0525134 -0.349954 0) (0.0512363 -0.354213 0) (0.0484809 -0.363464 0) (0.0422054 -0.385954 0) (0.0334757 -0.403461 0) (0.0222466 -0.443282 0) (0.00556109 -0.428965 0) (-0.00107065 -0.00946342 0) (-0.00242 0.0611371 0) (0.0171428 0.163856 0) (0.0124226 0.201629 0) (0.00460419 0.21071 0) (-0.00458177 0.215919 0) (-0.00981068 0.225582 0) (-0.0142478 0.236312 0) (-0.0185416 0.246654 0) (-0.0205052 0.258054 0) (-0.0209616 0.270123 0) (-0.0196014 0.282595 0) (-0.016636 0.295383 0) (-0.0122294 0.30824 0) (-0.0065609 0.321082 0) (0.000177396 0.33375 0) (0.00786272 0.346117 0) (0.0164096 0.357971 0) (0.0257793 0.36907 0) (0.0359068 0.379167 0) (0.0466533 0.388183 0) (0.0577228 0.396406 0) (0.0686672 0.404645 0) (0.0790152 0.414089 0) (0.0885135 0.425646 0) (0.0973166 0.439064 0) (0.105989 0.45251 0) (0.115369 0.462947 0) (0.126372 0.46716 0) (0.139725 0.463171 0) (0.155594 0.451465 0) (0.17348 0.434816 0) (0.192604 0.416655 0) (0.212174 0.399758 0) (0.231594 0.385941 0) (0.250658 0.376158 0) (0.269566 0.370664 0) (0.288769 0.369213 0) (0.308797 0.371202 0) (0.330225 0.375886 0) (0.353727 0.382546 0) (0.379992 0.390303 0) (0.409421 0.397403 0) (0.441529 0.400777 0) (0.474825 0.396814 0) (0.507493 0.382672 0) (0.538115 0.356901 0) (0.565865 0.319262 0) (0.590207 0.27032 0) (0.610991 0.211184 0) (0.62776 0.143211 0) (0.640858 0.0680215 0) (0.649434 -0.0124663 0) (0.654747 -0.0969412 0) (0.654594 -0.182268 0) (0.651105 -0.268111 0) (0.64412 -0.351429 0) (0.629486 -0.427611 0) (0.613063 -0.499744 0) (0.595492 -0.564573 0) (0.568868 -0.612343 0) (0.537291 -0.648031 0) (0.51391 -0.687049 0) (0.502481 -0.732806 0) (0.49642 -0.773338 0) (0.488882 -0.795297 0) (0.477029 -0.792091 0) (0.460951 -0.762476 0) (0.441404 -0.708143 0) (0.418679 -0.633015 0) (0.393252 -0.542691 0) (0.366544 -0.444107 0) (0.33988 -0.3455 0) (0.313104 -0.251245 0) (0.285566 -0.159772 0) (0.257969 -0.0758318 0) (0.231595 -0.017632 0) (0.208139 -0.000620382 0) (0.189489 -0.0187693 0) (0.174666 -0.0519272 0) (0.161158 -0.0858538 0) (0.148174 -0.115455 0) (0.135787 -0.139323 0) (0.123667 -0.159966 0) (0.111654 -0.182269 0) (0.100359 -0.207938 0) (0.0905163 -0.234059 0) (0.0824724 -0.256999 0) (0.076026 -0.275182 0) (0.071141 -0.288812 0) (0.0672717 -0.300866 0) (0.0626613 -0.315282 0) (0.056407 -0.334019 0) (0.050979 -0.348526 0) (0.0490271 -0.353243 0) (0.0463453 -0.36164 0) (0.0404815 -0.382947 0) (0.0320569 -0.399246 0) (0.0212342 -0.437693 0) (0.0051872 -0.423275 0) (-7.71164e-05 -0.00842754 0) (-0.00561005 0.0572896 0) (0.0172011 0.160593 0) (0.0151916 0.203432 0) (0.00923031 0.214188 0) (0.000487302 0.218756 0) (-0.00423889 0.227405 0) (-0.00743686 0.237929 0) (-0.0110624 0.247848 0) (-0.0126707 0.258478 0) (-0.0127493 0.269886 0) (-0.0112489 0.281678 0) (-0.00817754 0.293853 0) (-0.00378141 0.306167 0) (0.00184867 0.318534 0) (0.00851632 0.330787 0) (0.0161399 0.342776 0) (0.0246362 0.354279 0) (0.0339698 0.36505 0) (0.0440565 0.374867 0) (0.0547361 0.383698 0) (0.065703 0.39189 0) (0.0765284 0.400277 0) (0.0867995 0.409998 0) (0.0963392 0.421831 0) (0.105346 0.435371 0) (0.11437 0.448668 0) (0.124178 0.458627 0) (0.13559 0.462059 0) (0.14924 0.457121 0) (0.165214 0.444521 0) (0.182994 0.42722 0) (0.201841 0.408724 0) (0.221031 0.391775 0) (0.240047 0.378064 0) (0.258737 0.36838 0) (0.277326 0.362846 0) (0.296259 0.361154 0) (0.316047 0.362682 0) (0.337219 0.36666 0) (0.360375 0.372337 0) (0.386136 0.378874 0) (0.414935 0.384744 0) (0.446466 0.387271 0) (0.47945 0.383141 0) (0.512128 0.369518 0) (0.542957 0.34476 0) (0.570934 0.308452 0) (0.595416 0.260991 0) (0.616106 0.203482 0) (0.632728 0.13714 0) (0.645252 0.0637429 0) (0.653274 -0.0151186 0) (0.657613 -0.0977302 0) (0.656129 -0.181242 0) (0.651881 -0.265657 0) (0.642632 -0.346531 0) (0.626006 -0.420914 0) (0.609025 -0.492443 0) (0.589194 -0.554918 0) (0.559357 -0.599963 0) (0.527163 -0.63675 0) (0.505206 -0.680049 0) (0.494006 -0.729104 0) (0.485997 -0.770126 0) (0.47543 -0.790748 0) (0.460475 -0.785784 0) (0.441668 -0.754621 0) (0.419955 -0.698973 0) (0.39568 -0.622704 0) (0.369378 -0.53161 0) (0.342392 -0.43291 0) (0.31574 -0.33446 0) (0.289088 -0.239911 0) (0.26196 -0.148068 0) (0.235388 -0.0647488 0) (0.210996 -0.00820985 0) (0.190508 0.00681992 0) (0.175276 -0.0127361 0) (0.163493 -0.0465356 0) (0.152277 -0.0807035 0) (0.140981 -0.110446 0) (0.129865 -0.134422 0) (0.11875 -0.155144 0) (0.107572 -0.177622 0) (0.0969773 -0.203707 0) (0.0877199 -0.230464 0) (0.0801836 -0.25408 0) (0.0741401 -0.27289 0) (0.0695069 -0.287037 0) (0.0658592 -0.299153 0) (0.0615557 -0.313093 0) (0.0554458 -0.331589 0) (0.049561 -0.346869 0) (0.0469252 -0.352149 0) (0.0442228 -0.35992 0) (0.0387165 -0.380121 0) (0.0305991 -0.395243 0) (0.0202453 -0.432416 0) (0.00496379 -0.417894 0) (0.000666867 -0.00699196 0) (-0.00849878 0.0537779 0) (0.0166454 0.156072 0) (0.0176291 0.204251 0) (0.0136048 0.21716 0) (0.00548081 0.22134 0) (0.00104347 0.228877 0) (-0.00101383 0.239117 0) (-0.00375148 0.24881 0) (-0.00504842 0.258751 0) (-0.0047254 0.269541 0) (-0.00306414 0.280719 0) (0.000123718 0.292316 0) (0.00454109 0.304122 0) (0.0101543 0.316031 0) (0.0167804 0.327879 0) (0.0243608 0.339493 0) (0.0328184 0.350646 0) (0.0421141 0.361094 0) (0.0521497 0.370641 0) (0.0627475 0.379303 0) (0.0736022 0.387471 0) (0.0843133 0.395997 0) (0.09453 0.405956 0) (0.104145 0.418001 0) (0.113388 0.4316 0) (0.122783 0.444707 0) (0.133018 0.454188 0) (0.144808 0.456883 0) (0.158698 0.451074 0) (0.174692 0.437677 0) (0.192267 0.419811 0) (0.210738 0.401038 0) (0.229462 0.384061 0) (0.248003 0.37045 0) (0.266264 0.360843 0) (0.284485 0.355249 0) (0.3031 0.353302 0) (0.322599 0.354371 0) (0.343472 0.35767 0) (0.366249 0.362426 0) (0.391476 0.367824 0) (0.419585 0.372507 0) (0.450412 0.374144 0) (0.482889 0.36973 0) (0.515364 0.356509 0) (0.546228 0.332697 0) (0.574303 0.297706 0) (0.598886 0.251769 0) (0.619417 0.195927 0) (0.635906 0.131287 0) (0.647798 0.0597424 0) (0.655373 -0.0174428 0) (0.658595 -0.0980273 0) (0.656048 -0.179828 0) (0.650936 -0.262596 0) (0.639268 -0.340852 0) (0.621253 -0.413845 0) (0.603805 -0.484629 0) (0.581354 -0.544266 0) (0.548732 -0.587053 0) (0.516682 -0.625837 0) (0.496116 -0.673415 0) (0.484524 -0.724992 0) (0.474119 -0.765879 0) (0.460428 -0.784993 0) (0.442447 -0.778375 0) (0.421027 -0.745883 0) (0.397272 -0.689174 0) (0.371615 -0.612042 0) (0.344622 -0.520453 0) (0.317477 -0.421821 0) (0.290887 -0.32358 0) (0.264362 -0.228792 0) (0.237659 -0.136793 0) (0.212252 -0.0544511 0) (0.190063 -1.04969e-06 0) (0.172749 0.0127814 0) (0.161044 -0.0081002 0) (0.152272 -0.0422839 0) (0.143289 -0.0764197 0) (0.133643 -0.106094 0) (0.123784 -0.130037 0) (0.113671 -0.150751 0) (0.103337 -0.173346 0) (0.0934571 -0.199793 0) (0.0847976 -0.227137 0) (0.0777813 -0.251384 0) (0.0721692 -0.270764 0) (0.0678223 -0.285384 0) (0.0644101 -0.297569 0) (0.0604208 -0.311023 0) (0.0545069 -0.329141 0) (0.0482578 -0.345011 0) (0.0449442 -0.350917 0) (0.0421365 -0.358271 0) (0.036919 -0.377456 0) (0.0290889 -0.391449 0) (0.0192137 -0.427453 0) (0.00465814 -0.412826 0) (0.00117455 -0.00525687 0) (-0.0105816 0.050718 0) (0.0155982 0.150441 0) (0.0197826 0.204063 0) (0.0177006 0.219544 0) (0.0104061 0.223693 0) (0.00613522 0.230097 0) (0.00497391 0.239869 0) (0.00335165 0.24949 0) (0.00240043 0.25888 0) (0.00310824 0.269081 0) (0.00497825 0.279711 0) (0.00828218 0.290766 0) (0.0127532 0.302095 0) (0.0183656 0.313563 0) (0.0249732 0.325018 0) (0.0325223 0.336263 0) (0.0409467 0.34707 0) (0.0501984 0.357202 0) (0.0601706 0.366494 0) (0.0706728 0.375 0) (0.0814086 0.383151 0) (0.0920129 0.391797 0) (0.102198 0.401949 0) (0.111919 0.414146 0) (0.121426 0.427745 0) (0.131208 0.440628 0) (0.141862 0.449641 0) (0.154002 0.451652 0) (0.168075 0.445061 0) (0.18401 0.430968 0) (0.201289 0.412624 0) (0.219299 0.393627 0) (0.237484 0.376639 0) (0.255495 0.363116 0) (0.273283 0.353562 0) (0.291097 0.347886 0) (0.309354 0.345671 0) (0.328522 0.346281 0) (0.349055 0.348926 0) (0.371419 0.35282 0) (0.396089 0.35716 0) (0.423467 0.360716 0) (0.453493 0.361449 0) (0.485296 0.356659 0) (0.517362 0.343722 0) (0.548084 0.320776 0) (0.576114 0.28706 0) (0.600718 0.242675 0) (0.621065 0.18852 0) (0.637369 0.125666 0) (0.648648 0.0559962 0) (0.655823 -0.0194303 0) (0.657827 -0.0978941 0) (0.654502 -0.178077 0) (0.648297 -0.258892 0) (0.634257 -0.334527 0) (0.615495 -0.406542 0) (0.597467 -0.476247 0) (0.572124 -0.532678 0) (0.53732 -0.573871 0) (0.506045 -0.615402 0) (0.486624 -0.666984 0) (0.47403 -0.720276 0) (0.460901 -0.76053 0) (0.444071 -0.778066 0) (0.423164 -0.76993 0) (0.399244 -0.736329 0) (0.373562 -0.678818 0) (0.346662 -0.601103 0) (0.319119 -0.509279 0) (0.2919 -0.410867 0) (0.265395 -0.312859 0) (0.239015 -0.217894 0) (0.212809 -0.125986 0) (0.188727 -0.0450003 0) (0.168997 0.00691943 0) (0.155079 0.0172772 0) (0.146952 -0.00482686 0) (0.141103 -0.0391206 0) (0.134259 -0.0729596 0) (0.12621 -0.102374 0) (0.117583 -0.126153 0) (0.108465 -0.14678 0) (0.0989804 -0.169436 0) (0.0898288 -0.196193 0) (0.0817779 -0.224076 0) (0.0752905 -0.248915 0) (0.0701329 -0.268813 0) (0.0661045 -0.28386 0) (0.062943 -0.296117 0) (0.0592751 -0.309082 0) (0.0536008 -0.326702 0) (0.0470702 -0.342976 0) (0.0430953 -0.349536 0) (0.0401057 -0.356662 0) (0.0350983 -0.374928 0) (0.0275289 -0.387855 0) (0.0181393 -0.422776 0) (0.00427997 -0.408106 0) (0.00145332 -0.00335396 0) (-0.0117232 0.0481107 0) (0.014028 0.143955 0) (0.0216311 0.202932 0) (0.0214813 0.221292 0) (0.0152526 0.225806 0) (0.011129 0.231146 0) (0.0105332 0.240218 0) (0.0101689 0.249834 0) (0.00970743 0.25886 0) (0.0107561 0.268504 0) (0.0128911 0.278645 0) (0.0163134 0.289196 0) (0.0208644 0.300075 0) (0.0264905 0.311125 0) (0.033095 0.322196 0) (0.0406199 0.333081 0) (0.0490111 0.343551 0) (0.05821 0.353379 0) (0.0681052 0.362429 0) (0.0784998 0.370791 0) (0.0891124 0.378924 0) (0.0996195 0.38767 0) (0.109796 0.397968 0) (0.11965 0.410256 0) (0.129443 0.423799 0) (0.139621 0.436434 0) (0.150686 0.444997 0) (0.163148 0.446383 0) (0.17735 0.439107 0) (0.193152 0.424424 0) (0.210059 0.405687 0) (0.227535 0.386516 0) (0.245125 0.369525 0) (0.262564 0.356074 0) (0.279845 0.346548 0) (0.297222 0.340766 0) (0.315091 0.338272 0) (0.333893 0.338425 0) (0.354048 0.34044 0) (0.375968 0.343524 0) (0.400057 0.346884 0) (0.426678 0.349384 0) (0.455833 0.349223 0) (0.486828 0.343993 0) (0.518298 0.331231 0) (0.548691 0.309064 0) (0.576536 0.276562 0) (0.601028 0.233735 0) (0.621195 0.181266 0) (0.637212 0.120281 0) (0.647955 0.0524806 0) (0.654677 -0.021064 0) (0.655464 -0.0973818 0) (0.651609 -0.175989 0) (0.644027 -0.254527 0) (0.627885 -0.327726 0) (0.608956 -0.399094 0) (0.590057 -0.46723 0) (0.561698 -0.520268 0) (0.525435 -0.560667 0) (0.495383 -0.605481 0) (0.476699 -0.66057 0) (0.462553 -0.7148 0) (0.446487 -0.754054 0) (0.42656 -0.77002 0) (0.402845 -0.76052 0) (0.376531 -0.726025 0) (0.349024 -0.667966 0) (0.320987 -0.589944 0) (0.292988 -0.49813 0) (0.265742 -0.400058 0) (0.23933 -0.302299 0) (0.213137 -0.207242 0) (0.187554 -0.115705 0) (0.165019 -0.0364806 0) (0.14801 0.0125582 0) (0.137679 0.0203279 0) (0.133129 -0.00286084 0) (0.13007 -0.0369796 0) (0.125243 -0.0702721 0) (0.118724 -0.0992523 0) (0.111299 -0.122752 0) (0.103167 -0.143221 0) (0.094535 -0.165889 0) (0.0861222 -0.192904 0) (0.0786887 -0.221279 0) (0.0727357 -0.246672 0) (0.0680508 -0.267044 0) (0.0643705 -0.282472 0) (0.0614754 -0.294798 0) (0.0581357 -0.307276 0) (0.0527392 -0.324294 0) (0.0460018 -0.340791 0) (0.0413897 -0.348001 0) (0.0381476 -0.355059 0) (0.0332629 -0.372512 0) (0.0259267 -0.384454 0) (0.017059 -0.418392 0) (0.00394015 -0.403729 0) (0.00149249 -0.00138572 0) (-0.0120933 0.0459564 0) (0.01195 0.137 0) (0.0231189 0.200959 0) (0.0248818 0.222336 0) (0.0199811 0.227633 0) (0.016097 0.232082 0) (0.0157317 0.240229 0) (0.0166101 0.249795 0) (0.0168717 0.258662 0) (0.0182355 0.267814 0) (0.0206756 0.277508 0) (0.0242332 0.287602 0) (0.0288797 0.298057 0) (0.0345345 0.308709 0) (0.0411442 0.31941 0) (0.0486484 0.329946 0) (0.0570019 0.34009 0) (0.0661376 0.349629 0) (0.0759421 0.358451 0) (0.0862187 0.366678 0) (0.0967065 0.37479 0) (0.107127 0.383608 0) (0.117316 0.394004 0) (0.127325 0.406323 0) (0.137422 0.419762 0) (0.148002 0.432129 0) (0.159467 0.440264 0) (0.172223 0.441095 0) (0.186505 0.433234 0) (0.20211 0.418069 0) (0.21858 0.399022 0) (0.235466 0.37972 0) (0.252417 0.362732 0) (0.269252 0.34933 0) (0.286005 0.339804 0) (0.302924 0.333895 0) (0.320384 0.331111 0) (0.338791 0.330813 0) (0.358537 0.332219 0) (0.379983 0.334543 0) (0.403473 0.336997 0) (0.429318 0.338517 0) (0.457554 0.337493 0) (0.487633 0.331784 0) (0.518348 0.319102 0) (0.548222 0.297622 0) (0.575757 0.266267 0) (0.599969 0.224975 0) (0.61996 0.174189 0) (0.635554 0.115131 0) (0.645882 0.0491761 0) (0.652026 -0.0223357 0) (0.65171 -0.0965588 0) (0.647473 -0.173556 0) (0.638239 -0.249534 0) (0.620474 -0.320642 0) (0.601807 -0.391538 0) (0.58162 -0.457517 0) (0.550312 -0.507195 0) (0.513364 -0.54766 0) (0.484769 -0.596043 0) (0.466313 -0.653978 0) (0.450152 -0.708447 0) (0.431038 -0.746458 0) (0.408098 -0.760918 0) (0.3817 -0.750211 0) (0.353088 -0.715028 0) (0.323838 -0.656668 0) (0.294744 -0.578607 0) (0.266338 -0.487025 0) (0.239075 -0.389395 0) (0.212765 -0.291905 0) (0.186835 -0.196877 0) (0.162053 -0.106016 0) (0.141338 -0.0289964 0) (0.127315 0.0168311 0) (0.120723 0.0219428 0) (0.119689 -0.00213032 0) (0.11924 -0.0357817 0) (0.116286 -0.0683004 0) (0.111221 -0.096697 0) (0.104965 -0.119817 0) (0.0978063 -0.140063 0) (0.0900297 -0.162698 0) (0.0823658 -0.189924 0) (0.0755572 -0.218744 0) (0.0701411 -0.244655 0) (0.0659425 -0.265461 0) (0.0626375 -0.281224 0) (0.0600239 -0.293613 0) (0.0570186 -0.305611 0) (0.0519343 -0.321938 0) (0.0450588 -0.338478 0) (0.0398395 -0.346306 0) (0.0362784 -0.353432 0) (0.0314207 -0.370182 0) (0.0242876 -0.381246 0) (0.0159847 -0.414315 0) (0.00362301 -0.399674 0) (0.00129851 0.000577319 0) (-0.0120107 0.0442717 0) (0.00963678 0.129818 0) (0.0241792 0.198106 0) (0.0278465 0.222587 0) (0.0245471 0.22912 0) (0.0210772 0.232939 0) (0.0206835 0.239995 0) (0.0226066 0.249355 0) (0.0238489 0.258237 0) (0.0255701 0.267009 0) (0.0283284 0.276293 0) (0.0320536 0.285978 0) (0.0368032 0.296035 0) (0.0425007 0.306313 0) (0.049119 0.316659 0) (0.0566025 0.32686 0) (0.0649109 0.336691 0) (0.0739723 0.345954 0) (0.0836726 0.354561 0) (0.0938227 0.362661 0) (0.104186 0.370743 0) (0.11453 0.379604 0) (0.124749 0.390049 0) (0.134931 0.402343 0) (0.145344 0.415631 0) (0.156326 0.427717 0) (0.168181 0.435454 0) (0.181206 0.435802 0) (0.195523 0.427462 0) (0.21088 0.411922 0) (0.22686 0.392645 0) (0.243113 0.37325 0) (0.259396 0.356264 0) (0.275608 0.342889 0) (0.291818 0.333333 0) (0.308267 0.327275 0) (0.325303 0.324194 0) (0.343297 0.323449 0) (0.362608 0.32427 0) (0.383554 0.325878 0) (0.406427 0.327497 0) (0.431485 0.328114 0) (0.458774 0.326273 0) (0.487856 0.320068 0) (0.51769 0.307395 0) (0.546862 0.286506 0) (0.57396 0.256233 0) (0.59773 0.216423 0) (0.617508 0.167319 0) (0.63256 0.110212 0) (0.642583 0.0460916 0) (0.64798 -0.0232632 0) (0.646786 -0.0955058 0) (0.64218 -0.170755 0) (0.631111 -0.243986 0) (0.612349 -0.313456 0) (0.594157 -0.38385 0) (0.572213 -0.447071 0) (0.53823 -0.493655 0) (0.501346 -0.535025 0) (0.474228 -0.586998 0) (0.455449 -0.647029 0) (0.436919 -0.701146 0) (0.41473 -0.737774 0) (0.388883 -0.750828 0) (0.359931 -0.739069 0) (0.329113 -0.703385 0) (0.29818 -0.644964 0) (0.268078 -0.567115 0) (0.239274 -0.47597 0) (0.211981 -0.378873 0) (0.185791 -0.281692 0) (0.160239 -0.186853 0) (0.136488 -0.0970179 0) (0.117896 -0.0226317 0) (0.107138 0.0196976 0) (0.104382 0.0221536 0) (0.106724 -0.00254764 0) (0.108663 -0.0354386 0) (0.107424 -0.0669846 0) (0.103733 -0.0946736 0) (0.0986111 -0.117327 0) (0.092412 -0.137296 0) (0.0854924 -0.159858 0) (0.0785866 -0.187249 0) (0.07241 -0.216465 0) (0.0675308 -0.242862 0) (0.0638277 -0.264068 0) (0.0609223 -0.280123 0) (0.0586049 -0.292566 0) (0.055939 -0.304092 0) (0.0511984 -0.31965 0) (0.0442499 -0.33606 0) (0.0384586 -0.344451 0) (0.0345149 -0.351749 0) (0.0295817 -0.367909 0) (0.0226177 -0.378228 0) (0.0149136 -0.41054 0) (0.00328026 -0.395939 0) (0.000915204 0.0025314 0) (-0.0117844 0.0430303 0) (0.00734901 0.122532 0) (0.0247404 0.19435 0) (0.0303461 0.222021 0) (0.0289049 0.230201 0) (0.0260701 0.233713 0) (0.0255257 0.239616 0) (0.0281455 0.248533 0) (0.0305564 0.257523 0) (0.0327731 0.266075 0) (0.0358503 0.274994 0) (0.0397795 0.284317 0) (0.04464 0.294006 0) (0.0503905 0.303934 0) (0.0570179 0.313942 0) (0.0644778 0.323823 0) (0.0727318 0.333356 0) (0.0817072 0.342358 0) (0.0912911 0.350763 0) (0.101307 0.35874 0) (0.111547 0.36678 0) (0.121825 0.375652 0) (0.132088 0.386097 0) (0.142456 0.398312 0) (0.153192 0.411409 0) (0.164573 0.423204 0) (0.176806 0.430576 0) (0.190077 0.430518 0) (0.204393 0.421807 0) (0.21946 0.405997 0) (0.234913 0.386566 0) (0.250504 0.367111 0) (0.2661 0.350123 0) (0.281676 0.336748 0) (0.297336 0.327133 0) (0.313309 0.320904 0) (0.329913 0.317519 0) (0.347483 0.316337 0) (0.366342 0.316597 0) (0.386769 0.317532 0) (0.409011 0.31838 0) (0.433277 0.318172 0) (0.459605 0.31557 0) (0.487634 0.30887 0) (0.516487 0.296159 0) (0.544803 0.275766 0) (0.57132 0.246514 0) (0.594528 0.208111 0) (0.613993 0.160693 0) (0.628433 0.105512 0) (0.6382 0.0432413 0) (0.642701 -0.0238644 0) (0.640907 -0.0942546 0) (0.635804 -0.167542 0) (0.622876 -0.238002 0) (0.603809 -0.306324 0) (0.586058 -0.375965 0) (0.561924 -0.435894 0) (0.525728 -0.479868 0) (0.489569 -0.52288 0) (0.463751 -0.578215 0) (0.444107 -0.639567 0) (0.422966 -0.692862 0) (0.397736 -0.728051 0) (0.369107 -0.739822 0) (0.337733 -0.727157 0) (0.304802 -0.691141 0) (0.272232 -0.632881 0) (0.241136 -0.555482 0) (0.211917 -0.46496 0) (0.184567 -0.368485 0) (0.158534 -0.271684 0) (0.133518 -0.177244 0) (0.111077 -0.0888231 0) (0.0949269 -0.0174609 0) (0.0876798 0.0211418 0) (0.0887941 0.0210161 0) (0.0943056 -0.00400481 0) (0.0983733 -0.0358541 0) (0.0986838 -0.0662634 0) (0.0962871 -0.0931478 0) (0.0922625 -0.115264 0) (0.0870103 -0.13491 0) (0.0809491 -0.157364 0) (0.0748105 -0.184875 0) (0.0692727 -0.214439 0) (0.0649286 -0.24129 0) (0.0617261 -0.262866 0) (0.059242 -0.279173 0) (0.0572349 -0.291655 0) (0.0549113 -0.302724 0) (0.0505431 -0.317447 0) (0.0435851 -0.333558 0) (0.0372629 -0.342434 0) (0.0328755 -0.34998 0) (0.0277603 -0.365667 0) (0.0209308 -0.375394 0) (0.0138567 -0.40706 0) (0.00292715 -0.392522 0) (0.000379968 0.0045162 0) (-0.0116239 0.0422016 0) (0.00484996 0.115307 0) (0.0247187 0.189806 0) (0.0323261 0.220643 0) (0.0329869 0.230795 0) (0.0310398 0.234358 0) (0.0303852 0.239181 0) (0.0332908 0.247395 0) (0.0368968 0.256467 0) (0.0398267 0.264978 0) (0.043248 0.273607 0) (0.0474102 0.282611 0) (0.0523948 0.291968 0) (0.0582051 0.301569 0) (0.0648403 0.311259 0) (0.0722714 0.320837 0) (0.0804605 0.330088 0) (0.0893382 0.338844 0) (0.0987947 0.347058 0) (0.108671 0.354913 0) (0.118788 0.362898 0) (0.129009 0.371748 0) (0.139326 0.382144 0) (0.149888 0.39423 0) (0.160948 0.407098 0) (0.172722 0.418596 0) (0.185322 0.425637 0) (0.198819 0.425252 0) (0.213107 0.416278 0) (0.227855 0.400303 0) (0.242756 0.38079 0) (0.257668 0.361304 0) (0.272567 0.344306 0) (0.287504 0.330905 0) (0.302611 0.3212 0) (0.318107 0.31478 0) (0.334276 0.311085 0) (0.351415 0.309475 0) (0.369813 0.309199 0) (0.38971 0.309504 0) (0.411314 0.309642 0) (0.434785 0.308682 0) (0.460151 0.305384 0) (0.487092 0.298205 0) (0.514886 0.285428 0) (0.542238 0.26545 0) (0.568004 0.237156 0) (0.59058 0.200076 0) (0.609573 0.154348 0) (0.623395 0.101021 0) (0.63287 0.0406557 0) (0.636391 -0.0241838 0) (0.634269 -0.0928409 0) (0.628439 -0.163908 0) (0.613825 -0.231743 0) (0.595104 -0.299347 0) (0.577519 -0.367782 0) (0.550875 -0.424034 0) (0.513083 -0.466053 0) (0.478157 -0.511279 0) (0.453307 -0.569542 0) (0.432313 -0.631471 0) (0.408419 -0.683593 0) (0.380231 -0.717349 0) (0.348953 -0.727972 0) (0.315293 -0.714537 0) (0.280346 -0.678336 0) (0.246177 -0.620439 0) (0.21408 -0.543708 0) (0.184407 -0.453981 0) (0.156976 -0.358227 0) (0.131165 -0.261921 0) (0.106887 -0.168147 0) (0.0860558 -0.081532 0) (0.0726733 -0.0135586 0) (0.0691422 0.0211507 0) (0.074083 0.0186148 0) (0.082478 -0.0063797 0) (0.0883905 -0.0369294 0) (0.0900842 -0.0660773 0) (0.0889049 -0.0920869 0) (0.0859432 -0.11361 0) (0.0816253 -0.132894 0) (0.0764241 -0.15521 0) (0.0710621 -0.182799 0) (0.0661703 -0.212661 0) (0.0623584 -0.239932 0) (0.0596573 -0.261855 0) (0.0576138 -0.278376 0) (0.0559305 -0.290882 0) (0.0539496 -0.301508 0) (0.0499792 -0.315344 0) (0.0430755 -0.330996 0) (0.0362702 -0.340258 0) (0.0313813 -0.348096 0) (0.0259775 -0.363427 0) (0.019248 -0.372741 0) (0.0128359 -0.403871 0) (0.00258772 -0.389411 0) (-0.000266675 0.00657856 0) (-0.011642 0.0418456 0) (0.00149678 0.108275 0) (0.0240801 0.184553 0) (0.0337232 0.218439 0) (0.0367026 0.230811 0) (0.0359147 0.234796 0) (0.0353453 0.238749 0) (0.0381811 0.246045 0) (0.0427973 0.255042 0) (0.0466712 0.263664 0) (0.0505261 0.272121 0) (0.0549443 0.280854 0) (0.0600706 0.289916 0) (0.0659463 0.299219 0) (0.0725869 0.308612 0) (0.0799819 0.317904 0) (0.0880954 0.326891 0) (0.0968636 0.335416 0) (0.106183 0.343448 0) (0.115914 0.351181 0) (0.12591 0.359094 0) (0.136079 0.367888 0) (0.146457 0.37819 0) (0.157214 0.390097 0) (0.168594 0.402703 0) (0.180751 0.413899 0) (0.193708 0.420645 0) (0.207416 0.420012 0) (0.221658 0.410881 0) (0.236071 0.394842 0) (0.250409 0.375314 0) (0.264635 0.355825 0) (0.278835 0.338809 0) (0.293133 0.325352 0) (0.307689 0.315528 0) (0.322708 0.308898 0) (0.338443 0.304888 0) (0.355152 0.30286 0) (0.373085 0.302074 0) (0.392449 0.301789 0) (0.413412 0.301276 0) (0.436094 0.299634 0) (0.460502 0.295707 0) (0.48635 0.288079 0) (0.513015 0.275221 0) (0.539344 0.255601 0) (0.564185 0.228194 0) (0.586087 0.192357 0) (0.604418 0.148305 0) (0.617672 0.0967444 0) (0.626725 0.0383622 0) (0.62928 -0.0242794 0) (0.627035 -0.0912602 0) (0.620199 -0.159853 0) (0.604267 -0.225378 0) (0.586409 -0.292563 0) (0.568527 -0.359195 0) (0.539223 -0.411589 0) (0.500551 -0.452419 0) (0.467184 -0.500219 0) (0.442862 -0.560818 0) (0.420113 -0.622653 0) (0.393415 -0.673364 0) (0.362382 -0.705739 0) (0.328594 -0.715349 0) (0.29279 -0.701272 0) (0.255934 -0.665011 0) (0.220204 -0.607654 0) (0.187089 -0.531788 0) (0.156918 -0.443021 0) (0.129395 -0.348106 0) (0.103903 -0.252455 0) (0.0805923 -0.159664 0) (0.0616924 -0.0752657 0) (0.0513715 -0.0109947 0) (0.0516951 0.0197392 0) (0.0603369 0.0150654 0) (0.0712634 -0.00953667 0) (0.078721 -0.0385645 0) (0.0816383 -0.0663693 0) (0.0816056 -0.09146 0) (0.0796742 -0.112347 0) (0.0762788 -0.13124 0) (0.0719399 -0.153391 0) (0.0673643 -0.181017 0) (0.0631269 -0.211127 0) (0.0598439 -0.238785 0) (0.0576413 -0.261035 0) (0.0560546 -0.277735 0) (0.054709 -0.290246 0) (0.0530681 -0.300446 0) (0.0495167 -0.313354 0) (0.0427322 -0.328397 0) (0.0354994 -0.337926 0) (0.0300566 -0.346069 0) (0.0242611 -0.361164 0) (0.0175961 -0.370263 0) (0.0118706 -0.400966 0) (0.0022574 -0.386587 0) (-0.000963284 0.00876729 0) (-0.0118331 0.0421111 0) (-0.00296779 0.101501 0) (0.0228215 0.17847 0) (0.0345519 0.215397 0) (0.0399829 0.23017 0) (0.0406073 0.234925 0) (0.0404282 0.238326 0) (0.0429976 0.244598 0) (0.0482537 0.253274 0) (0.0532153 0.262076 0) (0.0576696 0.27051 0) (0.062382 0.279039 0) (0.0676679 0.287848 0) (0.073616 0.296882 0) (0.0802596 0.306002 0) (0.0876098 0.315029 0) (0.095637 0.323767 0) (0.104284 0.332075 0) (0.113458 0.339933 0) (0.123039 0.347541 0) (0.132913 0.355365 0) (0.143033 0.364069 0) (0.153473 0.374233 0) (0.164423 0.385917 0) (0.176114 0.39823 0) (0.188642 0.409121 0) (0.201944 0.415606 0) (0.215854 0.414802 0) (0.230042 0.405618 0) (0.244118 0.389612 0) (0.257893 0.370136 0) (0.271437 0.350668 0) (0.284941 0.333624 0) (0.298605 0.320085 0) (0.312612 0.310112 0) (0.327157 0.303253 0) (0.342459 0.298923 0) (0.35874 0.296488 0) (0.376212 0.295216 0) (0.395044 0.294382 0) (0.415371 0.293272 0) (0.437277 0.291015 0) (0.46074 0.286525 0) (0.485506 0.278493 0) (0.510993 0.265545 0) (0.536263 0.24625 0) (0.560041 0.219653 0) (0.581223 0.184999 0) (0.598711 0.142578 0) (0.611467 0.0927014 0) (0.619902 0.036374 0) (0.621615 -0.0242044 0) (0.619329 -0.0894825 0) (0.611235 -0.155419 0) (0.594519 -0.21908 0) (0.577821 -0.285947 0) (0.559067 -0.350109 0) (0.527162 -0.398698 0) (0.488354 -0.439143 0) (0.456671 -0.489642 0) (0.432383 -0.551892 0) (0.40757 -0.613063 0) (0.378088 -0.662218 0) (0.344348 -0.69329 0) (0.308193 -0.702027 0) (0.270397 -0.687424 0) (0.231753 -0.651206 0) (0.194509 -0.59454 0) (0.160361 -0.519718 0) (0.129659 -0.43207 0) (0.102056 -0.338135 0) (0.0770088 -0.243354 0) (0.0549154 -0.151901 0) (0.0382615 -0.0701147 0) (0.0312703 -0.00984287 0) (0.0355063 0.0169624 0) (0.0476081 0.0105191 0) (0.0606546 -0.0133307 0) (0.0693577 -0.0406639 0) (0.0733541 -0.0670876 0) (0.074405 -0.0912388 0) (0.073474 -0.111459 0) (0.0709908 -0.129936 0) (0.0675175 -0.151902 0) (0.0637387 -0.179526 0) (0.0601658 -0.209832 0) (0.057409 -0.237841 0) (0.0556981 -0.260403 0) (0.0545814 -0.277253 0) (0.0535876 -0.289745 0) (0.0522816 -0.299539 0) (0.0491648 -0.311491 0) (0.0425653 -0.325783 0) (0.0349696 -0.335444 0) (0.0289298 -0.343875 0) (0.0226471 -0.358854 0) (0.0160075 -0.367953 0) (0.0109776 -0.398332 0) (0.00193241 -0.384033 0) (-0.00162638 0.0111059 0) (-0.0120775 0.0431051 0) (-0.00790765 0.0950599 0) (0.0209063 0.171392 0) (0.0348672 0.211527 0) (0.042788 0.228818 0) (0.0450327 0.234643 0) (0.0455942 0.237869 0) (0.0479113 0.243156 0) (0.0533577 0.251241 0) (0.0593688 0.260167 0) (0.0646277 0.268729 0) (0.0697204 0.277155 0) (0.0751871 0.285759 0) (0.0812155 0.294558 0) (0.0878617 0.303431 0) (0.095158 0.312212 0) (0.103088 0.32072 0) (0.111604 0.328824 0) (0.120623 0.336515 0) (0.130049 0.343993 0) (0.139801 0.35171 0) (0.149871 0.360292 0) (0.160369 0.370275 0) (0.171504 0.381695 0) (0.183491 0.393686 0) (0.196375 0.404269 0) (0.210014 0.410526 0) (0.224119 0.409626 0) (0.238256 0.400487 0) (0.252004 0.384607 0) (0.26523 0.365246 0) (0.278103 0.345822 0) (0.290922 0.328743 0) (0.303957 0.315094 0) (0.317418 0.304946 0) (0.331491 0.297838 0) (0.346363 0.293184 0) (0.36222 0.290351 0) (0.379236 0.288619 0) (0.397545 0.287274 0) (0.417246 0.285618 0) (0.438395 0.282811 0) (0.46093 0.27782 0) (0.48464 0.269438 0) (0.508932 0.2564 0) (0.5331 0.237416 0) (0.555745 0.211552 0) (0.576128 0.178039 0) (0.592649 0.137172 0) (0.604949 0.088921 0) (0.612553 0.0346912 0) (0.613631 -0.0240002 0) (0.611243 -0.0874695 0) (0.601741 -0.150686 0) (0.584865 -0.212992 0) (0.569363 -0.279415 0) (0.549139 -0.340459 0) (0.514908 -0.385537 0) (0.476669 -0.426359 0) (0.446601 -0.479451 0) (0.421846 -0.542631 0) (0.39476 -0.602682 0) (0.362572 -0.650212 0) (0.326277 -0.680079 0) (0.287901 -0.688078 0) (0.248273 -0.673062 0) (0.207989 -0.636969 0) (0.169298 -0.581116 0) (0.134113 -0.507499 0) (0.102868 -0.421129 0) (0.0752278 -0.328346 0) (0.0507734 -0.23469 0) (0.0301622 -0.144971 0) (0.016043 -0.0661498 0) (0.012595 -0.0100197 0) (0.0207227 0.0129251 0) (0.0359098 0.00513219 0) (0.0506247 -0.0176198 0) (0.0602866 -0.043139 0) (0.0652362 -0.0681865 0) (0.0673168 -0.0913979 0) (0.0673588 -0.11093 0) (0.0657793 -0.128976 0) (0.0631758 -0.150738 0) (0.0602054 -0.178323 0) (0.0573091 -0.208772 0) (0.0550775 -0.237095 0) (0.0538485 -0.259956 0) (0.053211 -0.276929 0) (0.0525842 -0.289378 0) (0.0516051 -0.298785 0) (0.0489316 -0.309767 0) (0.0425837 -0.323179 0) (0.0346993 -0.332822 0) (0.0280325 -0.341496 0) (0.0211796 -0.356472 0) (0.0145205 -0.3658 0) (0.0101747 -0.395946 0) (0.0016225 -0.381728 0) (-0.00217984 0.0135788 0) (-0.0122353 0.0447546 0) (-0.0122414 0.0891228 0) (0.0184574 0.16335 0) (0.0346596 0.206849 0) (0.0450475 0.226715 0) (0.0490985 0.233863 0) (0.0507488 0.237294 0) (0.0530286 0.241776 0) (0.0582877 0.249061 0) (0.0650935 0.257937 0) (0.0713158 0.266721 0) (0.076938 0.275178 0) (0.0826289 0.283644 0) (0.0887459 0.292245 0) (0.0953963 0.3009 0) (0.102631 0.309457 0) (0.110453 0.317751 0) (0.118827 0.325663 0) (0.127683 0.333193 0) (0.136949 0.340537 0) (0.146575 0.348129 0) (0.156593 0.356558 0) (0.16714 0.366321 0) (0.178446 0.377438 0) (0.19071 0.38908 0) (0.203934 0.399349 0) (0.217897 0.405407 0) (0.232198 0.40448 0) (0.246296 0.395479 0) (0.25974 0.379815 0) (0.27244 0.360631 0) (0.284663 0.341278 0) (0.29681 0.324155 0) (0.309224 0.310374 0) (0.322142 0.300023 0) (0.335745 0.292649 0) (0.350188 0.287666 0) (0.365624 0.284444 0) (0.382192 0.282274 0) (0.399988 0.280455 0) (0.419079 0.278301 0) (0.439492 0.275005 0) (0.461129 0.269573 0) (0.483803 0.260897 0) (0.506931 0.247783 0) (0.529938 0.229105 0) (0.551449 0.203905 0) (0.570912 0.171507 0) (0.586429 0.132088 0) (0.598246 0.0854404 0) (0.604845 0.0332988 0) (0.605531 -0.0236881 0) (0.60285 -0.0851809 0) (0.591942 -0.145764 0) (0.575533 -0.207211 0) (0.561 -0.272844 0) (0.538774 -0.330226 0) (0.502687 -0.372298 0) (0.465621 -0.414148 0) (0.436931 -0.469521 0) (0.411241 -0.532926 0) (0.381766 -0.591517 0) (0.346994 -0.637413 0) (0.308305 -0.666179 0) (0.267859 -0.673576 0) (0.226566 -0.658257 0) (0.184815 -0.622355 0) (0.144776 -0.567407 0) (0.108582 -0.495139 0) (0.0768111 -0.410209 0) (0.0492058 -0.318774 0) (0.0255062 -0.226553 0) (0.00663576 -0.139003 0) (-0.00465991 -0.063565 0) (-0.00445765 -0.011382 0) (0.00739249 0.00779827 0) (0.0252125 -0.0009259 0) (0.0411265 -0.0222587 0) (0.0514864 -0.0459105 0) (0.0572869 -0.0696266 0) (0.0603526 -0.0919144 0) (0.0613427 -0.110748 0) (0.0606601 -0.128351 0) (0.0589321 -0.149896 0) (0.0567826 -0.177407 0) (0.0545777 -0.207944 0) (0.0528735 -0.23654 0) (0.0521141 -0.259688 0) (0.0519601 -0.276766 0) (0.0517165 -0.289144 0) (0.051055 -0.298179 0) (0.0488251 -0.308191 0) (0.0427939 -0.320611 0) (0.034705 -0.330075 0) (0.027399 -0.338917 0) (0.0199097 -0.353999 0) (0.0131775 -0.363789 0) (0.00948008 -0.393786 0) (0.00133619 -0.379644 0) (-0.0025924 0.016148 0) (-0.012263 0.0468557 0) (-0.0152715 0.0838165 0) (0.0159087 0.154649 0) (0.0339634 0.20146 0) (0.0466798 0.223814 0) (0.0527115 0.23251 0) (0.0557639 0.236487 0) (0.0583608 0.240452 0) (0.0632581 0.24686 0) (0.0704461 0.255438 0) (0.0776434 0.26444 0) (0.0839809 0.273065 0) (0.0899865 0.281491 0) (0.0962092 0.289941 0) (0.102866 0.298409 0) (0.110035 0.306766 0) (0.117739 0.314863 0) (0.12596 0.322595 0) (0.134646 0.329968 0) (0.143745 0.337173 0) (0.153241 0.344621 0) (0.163197 0.352868 0) (0.173782 0.362375 0) (0.185239 0.373154 0) (0.197757 0.384421 0) (0.2113 0.39437 0) (0.225577 0.400255 0) (0.240077 0.399361 0) (0.254158 0.390585 0) (0.267332 0.375222 0) (0.279544 0.356277 0) (0.291145 0.337021 0) (0.302638 0.319852 0) (0.314439 0.305917 0) (0.326819 0.295338 0) (0.339951 0.287681 0) (0.353965 0.282363 0) (0.368982 0.27876 0) (0.385107 0.276174 0) (0.402402 0.273913 0) (0.4209 0.271307 0) (0.4406 0.267578 0) (0.461381 0.261766 0) (0.483034 0.252847 0) (0.505058 0.239686 0) (0.526848 0.22131 0) (0.547271 0.196724 0) (0.565667 0.165417 0) (0.580226 0.127329 0) (0.591448 0.0822946 0) (0.596962 0.0321646 0) (0.597473 -0.0232653 0) (0.594217 -0.0825895 0) (0.582084 -0.140785 0) (0.566681 -0.201774 0) (0.552654 -0.266087 0) (0.528041 -0.319439 0) (0.49072 -0.359176 0) (0.455281 -0.402541 0) (0.427601 -0.459715 0) (0.400572 -0.5227 0) (0.368676 -0.579599 0) (0.33147 -0.623895 0) (0.290556 -0.651667 0) (0.248194 -0.658595 0) (0.205413 -0.643084 0) (0.162397 -0.607429 0) (0.121149 -0.553451 0) (0.0840062 -0.482657 0) (0.051765 -0.399333 0) (0.0242912 -0.309476 0) (0.00150785 -0.219112 0) (-0.0154006 -0.133977 0) (-0.0235516 -0.062226 0) (-0.0196789 -0.0141686 0) (-0.00449481 0.0017686 0) (0.0154403 -0.00744064 0) (0.0321015 -0.0271154 0) (0.042932 -0.0489124 0) (0.0495078 -0.0713761 0) (0.0535225 -0.0927685 0) (0.0554379 -0.110898 0) (0.0556473 -0.128055 0) (0.054802 -0.149371 0) (0.053487 -0.176775 0) (0.0519912 -0.207347 0) (0.0508207 -0.23617 0) (0.0505172 -0.259594 0) (0.0508453 -0.276762 0) (0.0510018 -0.28904 0) (0.050648 -0.297716 0) (0.0488527 -0.306773 0) (0.0431996 -0.318106 0) (0.0349997 -0.327221 0) (0.0270649 -0.336133 0) (0.0188926 -0.351417 0) (0.0120229 -0.361896 0) (0.00890987 -0.391819 0) (0.00107707 -0.377752 0) (-0.00286842 0.0187896 0) (-0.0122653 0.0491915 0) (-0.017076 0.079112 0) (0.0134881 0.145693 0) (0.0329342 0.195587 0) (0.0476653 0.220103 0) (0.0558142 0.230532 0) (0.0605107 0.235328 0) (0.0638285 0.239118 0) (0.0684451 0.244732 0) (0.0755877 0.252778 0) (0.0835646 0.261873 0) (0.0907642 0.270765 0) (0.0972323 0.279275 0) (0.103606 0.287642 0) (0.110274 0.295958 0) (0.117374 0.30414 0) (0.124952 0.312058 0) (0.133011 0.319622 0) (0.141518 0.326842 0) (0.150444 0.333901 0) (0.159801 0.341189 0) (0.169686 0.349227 0) (0.180291 0.358445 0) (0.191875 0.368852 0) (0.204619 0.379719 0) (0.218456 0.389339 0) (0.233036 0.39507 0) (0.247742 0.394264 0) (0.261836 0.385789 0) (0.274788 0.370808 0) (0.286559 0.352164 0) (0.297576 0.333036 0) (0.308437 0.315821 0) (0.319635 0.301715 0) (0.331478 0.290887 0) (0.344138 0.28293 0) (0.357721 0.277272 0) (0.372319 0.273294 0) (0.388005 0.27031 0) (0.404809 0.267639 0) (0.422734 0.264623 0) (0.441742 0.26051 0) (0.461713 0.254378 0) (0.482367 0.245262 0) (0.503348 0.232097 0) (0.523899 0.214014 0) (0.543284 0.19002 0) (0.560484 0.159767 0) (0.574181 0.122901 0) (0.584623 0.0795092 0) (0.589092 0.0312462 0) (0.589563 -0.0227094 0) (0.585423 -0.0796954 0) (0.572416 -0.135887 0) (0.558381 -0.196658 0) (0.544235 -0.259003 0) (0.517048 -0.308181 0) (0.479213 -0.346354 0) (0.445666 -0.391516 0) (0.41854 -0.449893 0) (0.389851 -0.511901 0) (0.355572 -0.566975 0) (0.316105 -0.609735 0) (0.273143 -0.636615 0) (0.22902 -0.643206 0) (0.184932 -0.627624 0) (0.140878 -0.592267 0) (0.0986078 -0.539298 0) (0.0606258 -0.470091 0) (0.0280028 -0.388532 0) (0.000760105 -0.300549 0) (-0.0208819 -0.212314 0) (-0.0355768 -0.129913 0) (-0.0405294 -0.0619718 0) (-0.0330245 -0.0183338 0) (-0.0148724 -0.00504853 0) (0.00648379 -0.0142429 0) (0.0234665 -0.0320731 0) (0.0345982 -0.0520924 0) (0.0419007 -0.0734097 0) (0.046835 -0.0939421 0) (0.0496543 -0.11137 0) (0.0507525 -0.12808 0) (0.050799 -0.149161 0) (0.0503335 -0.176428 0) (0.0495673 -0.206979 0) (0.0489424 -0.23598 0) (0.0490814 -0.259666 0) (0.049884 -0.276916 0) (0.050457 -0.289064 0) (0.0504021 -0.29739 0) (0.0490226 -0.305517 0) (0.0438016 -0.315688 0) (0.0355923 -0.324285 0) (0.0270638 -0.333148 0) (0.0181845 -0.348709 0) (0.0111006 -0.360092 0) (0.00847717 -0.39001 0) (0.000850524 -0.37602 0) (-0.00303676 0.0214931 0) (-0.0124087 0.0516372 0) (-0.0182862 0.0749942 0) (0.0104276 0.13677 0) (0.0315058 0.189413 0) (0.0479449 0.21565 0) (0.0583489 0.227912 0) (0.0648705 0.233713 0) (0.0692896 0.237664 0) (0.0739257 0.242706 0) (0.0807409 0.250083 0) (0.0891263 0.259065 0) (0.0972004 0.268232 0) (0.104305 0.276955 0) (0.110927 0.285335 0) (0.117624 0.293545 0) (0.124654 0.301579 0) (0.132101 0.309338 0) (0.139988 0.316745 0) (0.148308 0.323815 0) (0.157052 0.330723 0) (0.166261 0.337836 0) (0.17606 0.34564 0) (0.186665 0.354539 0) (0.198347 0.364544 0) (0.211284 0.374987 0) (0.225389 0.384266 0) (0.240257 0.389856 0) (0.255179 0.389181 0) (0.269323 0.381076 0) (0.282108 0.36655 0) (0.293499 0.34827 0) (0.30398 0.329307 0) (0.314236 0.312051 0) (0.324842 0.29776 0) (0.336149 0.286664 0) (0.348334 0.278392 0) (0.361482 0.272388 0) (0.37566 0.268041 0) (0.390909 0.264675 0) (0.40723 0.261622 0) (0.424598 0.258234 0) (0.442937 0.253782 0) (0.462134 0.247389 0) (0.481837 0.238115 0) (0.501806 0.224994 0) (0.521157 0.207197 0) (0.539517 0.183796 0) (0.555457 0.154544 0) (0.568383 0.118822 0) (0.577835 0.0770951 0) (0.581412 0.0305005 0) (0.581856 -0.021983 0) (0.576566 -0.0765285 0) (0.563161 -0.13119 0) (0.55063 -0.19178 0) (0.535658 -0.251472 0) (0.505941 -0.296577 0) (0.468334 -0.333985 0) (0.436748 -0.381007 0) (0.409679 -0.439926 0) (0.379102 -0.50051 0) (0.342536 -0.553705 0) (0.300993 -0.595011 0) (0.256164 -0.621098 0) (0.210437 -0.627483 0) (0.165224 -0.611959 0) (0.120383 -0.576953 0) (0.0773249 -0.525014 0) (0.0386636 -0.457486 0) (0.0057752 -0.377852 0) (-0.0210635 -0.292025 0) (-0.0413702 -0.206105 0) (-0.0536742 -0.126883 0) (-0.0554005 -0.062903 0) (-0.044489 -0.023482 0) (-0.0238538 -0.0125252 0) (-0.00177521 -0.021171 0) (0.0151519 -0.0370321 0) (0.0264624 -0.0554139 0) (0.0344691 -0.0757085 0) (0.0402976 -0.0954193 0) (0.0439997 -0.112151 0) (0.0459856 -0.128421 0) (0.0469349 -0.149263 0) (0.0473354 -0.176366 0) (0.0473222 -0.206843 0) (0.0472608 -0.235966 0) (0.0478314 -0.259896 0) (0.0490939 -0.277226 0) (0.050098 -0.289215 0) (0.0503355 -0.297192 0) (0.0493433 -0.304424 0) (0.0445978 -0.313383 0) (0.0364857 -0.321296 0) (0.027425 -0.329974 0) (0.0178383 -0.345861 0) (0.010452 -0.358343 0) (0.00819272 -0.388316 0) (0.000663955 -0.374413 0) (-0.00312275 0.0242577 0) (-0.0127973 0.0541928 0) (-0.0195128 0.0716458 0) (0.00542402 0.128068 0) (0.0292483 0.18284 0) (0.0473479 0.210508 0) (0.0602068 0.224624 0) (0.0687314 0.231555 0) (0.0745797 0.235966 0) (0.079657 0.240743 0) (0.0861115 0.247462 0) (0.0944832 0.256111 0) (0.10325 0.265457 0) (0.111117 0.274481 0) (0.118135 0.282992 0) (0.124916 0.291164 0) (0.13188 0.299083 0) (0.139192 0.306703 0) (0.146901 0.313964 0) (0.155024 0.320888 0) (0.163577 0.327641 0) (0.172627 0.334563 0) (0.182322 0.342112 0) (0.192902 0.350665 0) (0.204649 0.360241 0) (0.217742 0.370236 0) (0.232083 0.37916 0) (0.247223 0.384615 0) (0.262371 0.384105 0) (0.276607 0.376425 0) (0.289291 0.362424 0) (0.300373 0.344571 0) (0.310375 0.325813 0) (0.32006 0.30853 0) (0.330088 0.294046 0) (0.340861 0.282665 0) (0.352567 0.274065 0) (0.365277 0.26771 0) (0.37903 0.262998 0) (0.393841 0.259265 0) (0.409682 0.255852 0) (0.426505 0.252129 0) (0.444204 0.247377 0) (0.462646 0.240772 0) (0.481468 0.231385 0) (0.500428 0.218354 0) (0.51867 0.200838 0) (0.535972 0.17805 0) (0.55068 0.149726 0) (0.562874 0.11511 0) (0.571153 0.0750419 0) (0.574072 0.0298994 0) (0.574371 -0.0210331 0) (0.567767 -0.0731463 0) (0.554503 -0.126784 0) (0.543357 -0.187012 0) (0.526864 -0.243412 0) (0.494891 -0.284787 0) (0.45821 -0.322178 0) (0.428461 -0.37091 0) (0.400955 -0.429705 0) (0.368357 -0.488531 0) (0.329642 -0.539857 0) (0.286215 -0.579802 0) (0.239704 -0.605188 0) (0.192534 -0.611495 0) (0.146371 -0.596171 0) (0.101004 -0.561582 0) (0.0574428 -0.510688 0) (0.0183142 -0.444864 0) (-0.0146734 -0.367387 0) (-0.0409187 -0.283909 0) (-0.0597024 -0.200641 0) (-0.0695074 -0.12486 0) (-0.0680399 -0.0649986 0) (-0.0541002 -0.0295245 0) (-0.0316544 -0.0203606 0) (-0.00946592 -0.0280216 0) (0.00708385 -0.0419286 0) (0.0185097 -0.058856 0) (0.0272193 -0.0782585 0) (0.0339161 -0.0971846 0) (0.0384794 -0.113231 0) (0.0413541 -0.129073 0) (0.0432199 -0.149675 0) (0.0445044 -0.176589 0) (0.0452698 -0.206941 0) (0.0457969 -0.236126 0) (0.0467928 -0.260277 0) (0.0484943 -0.277687 0) (0.0499401 -0.289492 0) (0.0504664 -0.297112 0) (0.0498245 -0.303493 0) (0.045583 -0.311213 0) (0.0376765 -0.318287 0) (0.0281703 -0.326629 0) (0.0178993 -0.342862 0) (0.010114 -0.356606 0) (0.00806533 -0.386691 0) (0.000523604 -0.372895 0) (-0.00313905 0.0270962 0) (-0.0134006 0.0569234 0) (-0.020992 0.069353 0) (-0.00177334 0.119696 0) (0.0261516 0.175501 0) (0.0458911 0.204645 0) (0.0613054 0.220597 0) (0.0719997 0.228774 0) (0.0795472 0.233903 0) (0.0855022 0.238743 0) (0.0918124 0.244964 0) (0.0998582 0.253136 0) (0.108965 0.262481 0) (0.117587 0.271814 0) (0.125163 0.280572 0) (0.132132 0.288801 0) (0.139056 0.29665 0) (0.146231 0.304153 0) (0.153757 0.311281 0) (0.161675 0.318063 0) (0.170028 0.324655 0) (0.178904 0.331375 0) (0.188476 0.33865 0) (0.199002 0.346835 0) (0.210778 0.355958 0) (0.223987 0.36548 0) (0.238527 0.374032 0) (0.253918 0.379349 0) (0.2693 0.379025 0) (0.283673 0.371816 0) (0.296328 0.358401 0) (0.307184 0.341037 0) (0.316776 0.322532 0) (0.325934 0.305244 0) (0.335401 0.290565 0) (0.345642 0.278886 0) (0.356865 0.269946 0) (0.36913 0.263235 0) (0.382453 0.258161 0) (0.396825 0.254074 0) (0.412189 0.250324 0) (0.428473 0.246295 0) (0.445557 0.241283 0) (0.463256 0.234506 0) (0.481268 0.225053 0) (0.499218 0.212146 0) (0.516466 0.19492 0) (0.532646 0.172766 0) (0.546235 0.14529 0) (0.557653 0.111784 0) (0.56467 0.0733166 0) (0.567183 0.0294307 0) (0.5671 -0.0198125 0) (0.559169 -0.0696337 0) (0.54657 -0.122716 0) (0.536444 -0.182198 0) (0.517831 -0.234791 0) (0.484083 -0.272989 0) (0.448917 -0.311 0) (0.420707 -0.361102 0) (0.392312 -0.419141 0) (0.357649 -0.475989 0) (0.316956 -0.525507 0) (0.271839 -0.564185 0) (0.223836 -0.588955 0) (0.175385 -0.595308 0) (0.128437 -0.58034 0) (0.0828041 -0.546253 0) (0.0390744 -0.496409 0) (-0.00026949 -0.432309 0) (-0.0331464 -0.357219 0) (-0.0585831 -0.276254 0) (-0.0756923 -0.195961 0) (-0.0829685 -0.123827 0) (-0.0784524 -0.0681342 0) (-0.0619217 -0.036265 0) (-0.0384672 -0.0282988 0) (-0.0167524 -0.0346485 0) (-0.000805742 -0.0467119 0) (0.0107375 -0.06241 0) (0.0201596 -0.0810488 0) (0.0276948 -0.0992229 0) (0.0330964 -0.114601 0) (0.0368631 -0.130033 0) (0.0396621 -0.150396 0) (0.0418503 -0.177098 0) (0.043422 -0.207276 0) (0.0445696 -0.23646 0) (0.045992 -0.260799 0) (0.0481063 -0.278294 0) (0.0499976 -0.289893 0) (0.0508131 -0.29714 0) (0.0504771 -0.302717 0) (0.0467502 -0.309197 0) (0.039154 -0.315295 0) (0.029311 -0.323142 0) (0.0184014 -0.339704 0) (0.0101167 -0.354836 0) (0.00810213 -0.385084 0) (0.000434382 -0.371431 0) (-0.00308858 0.0300114 0) (-0.0140685 0.0598895 0) (-0.0225556 0.0682803 0) (-0.00980609 0.111669 0) (0.0229462 0.16707 0) (0.0439041 0.198119 0) (0.06164 0.215797 0) (0.0745941 0.225318 0) (0.0840616 0.231373 0) (0.0912789 0.236578 0) (0.0978293 0.242568 0) (0.105465 0.25025 0) (0.114505 0.259398 0) (0.123688 0.268949 0) (0.131922 0.278029 0) (0.139228 0.286424 0) (0.146179 0.294273 0) (0.153225 0.301687 0) (0.160564 0.308695 0) (0.168271 0.31534 0) (0.176412 0.321769 0) (0.185099 0.328277 0) (0.194527 0.335262 0) (0.204969 0.343059 0) (0.216733 0.351707 0) (0.230012 0.360735 0) (0.244709 0.368893 0) (0.260327 0.374063 0) (0.27595 0.373935 0) (0.290502 0.367229 0) (0.303206 0.354452 0) (0.313927 0.337638 0) (0.323192 0.319438 0) (0.331878 0.302176 0) (0.340807 0.287309 0) (0.35052 0.275324 0) (0.361255 0.266032 0) (0.373069 0.25896 0) (0.385957 0.253529 0) (0.399884 0.249099 0) (0.414773 0.245032 0) (0.430521 0.240721 0) (0.447009 0.235486 0) (0.463985 0.228568 0) (0.481232 0.219097 0) (0.498199 0.206339 0) (0.514542 0.189428 0) (0.529551 0.167918 0) (0.542178 0.141219 0) (0.552703 0.108859 0) (0.558495 0.0718721 0) (0.560809 0.029099 0) (0.560036 -0.0182929 0) (0.550927 -0.0660936 0) (0.539421 -0.118984 0) (0.529747 -0.177173 0) (0.508584 -0.22563 0) (0.473701 -0.261363 0) (0.440475 -0.300459 0) (0.413373 -0.351446 0) (0.383705 -0.408174 0) (0.347016 -0.462928 0) (0.304534 -0.510728 0) (0.257921 -0.548237 0) (0.208618 -0.572468 0) (0.159051 -0.578984 0) (0.111469 -0.56454 0) (0.0658188 -0.531068 0) (0.0222728 -0.482224 0) (-0.016967 -0.420029 0) (-0.0494885 -0.347359 0) (-0.0739026 -0.269127 0) (-0.0892314 -0.192059 0) (-0.0940303 -0.12374 0) (-0.0867338 -0.0721365 0) (-0.0681732 -0.04343 0) (-0.0445289 -0.0361222 0) (-0.0237768 -0.040959 0) (-0.00856677 -0.0513365 0) (0.00315062 -0.0660811 0) (0.0133 -0.0840691 0) (0.0216351 -0.101518 0) (0.0278508 -0.11625 0) (0.0325152 -0.131297 0) (0.0362678 -0.151425 0) (0.0393819 -0.177896 0) (0.0417888 -0.207854 0) (0.0435955 -0.236971 0) (0.0454557 -0.261456 0) (0.0479534 -0.279037 0) (0.0502848 -0.290414 0) (0.051393 -0.297267 0) (0.0513138 -0.302085 0) (0.0480907 -0.307348 0) (0.0409004 -0.312357 0) (0.0308463 -0.319546 0) (0.0193636 -0.336385 0) (0.0104822 -0.352983 0) (0.00830842 -0.383443 0) (0.00040035 -0.369983 0) (-0.00296971 0.0329804 0) (-0.0146275 0.063102 0) (-0.0239061 0.0683221 0) (-0.016923 0.104046 0) (0.01967 0.157642 0) (0.0415116 0.191206 0) (0.0611769 0.210286 0) (0.0764277 0.221173 0) (0.0880013 0.228294 0) (0.0967978 0.234119 0) (0.104035 0.240189 0) (0.111427 0.24751 0) (0.120092 0.256326 0) (0.129489 0.265933 0) (0.138341 0.275329 0) (0.146129 0.283992 0) (0.153222 0.29193 0) (0.160176 0.299301 0) (0.167328 0.306207 0) (0.174817 0.312721 0) (0.182737 0.318986 0) (0.191221 0.325274 0) (0.200479 0.331956 0) (0.210804 0.339348 0) (0.222515 0.347503 0) (0.235815 0.356015 0) (0.250623 0.363756 0) (0.266436 0.368762 0) (0.2823 0.368827 0) (0.297074 0.362643 0) (0.309905 0.350546 0) (0.32059 0.33434 0) (0.329623 0.316502 0) (0.337904 0.299307 0) (0.34633 0.284266 0) (0.355521 0.271973 0) (0.365763 0.262322 0) (0.37712 0.254884 0) (0.389568 0.249097 0) (0.403046 0.244335 0) (0.41746 0.23997 0) (0.432675 0.2354 0) (0.448574 0.229975 0) (0.46486 0.222944 0) (0.481352 0.213499 0) (0.4974 0.200905 0) (0.512879 0.184345 0) (0.526723 0.163472 0) (0.538534 0.137503 0) (0.548015 0.106331 0) (0.552744 0.0706574 0) (0.554959 0.0289289 0) (0.553176 -0.0164663 0) (0.543193 -0.0626269 0) (0.533047 -0.115529 0) (0.523118 -0.171782 0) (0.499194 -0.216004 0) (0.463915 -0.250075 0) (0.43285 -0.290519 0) (0.406335 -0.341805 0) (0.375104 -0.396773 0) (0.336493 -0.449406 0) (0.292426 -0.495597 0) (0.244506 -0.532032 0) (0.194096 -0.555796 0) (0.143584 -0.56258 0) (0.0955 -0.548841 0) (0.0500689 -0.516128 0) (0.00703121 -0.468268 0) (-0.0317342 -0.408095 0) (-0.0636009 -0.337851 0) (-0.0868228 -0.262557 0) (-0.100302 -0.188922 0) (-0.102739 -0.124512 0) (-0.0930221 -0.076846 0) (-0.0731512 -0.0507896 0) (-0.0501051 -0.0435853 0) (-0.0306781 -0.0468785 0) (-0.0162197 -0.055803 0) (-0.00423769 -0.0698761 0) (0.00665177 -0.0873098 0) (0.0157352 -0.104053 0) (0.0227394 -0.118169 0) (0.0283109 -0.132863 0) (0.0330416 -0.152763 0) (0.0371065 -0.178984 0) (0.0403787 -0.208681 0) (0.0428891 -0.237664 0) (0.0452101 -0.262242 0) (0.0480611 -0.279907 0) (0.0508153 -0.291053 0) (0.0522201 -0.297481 0) (0.0523478 -0.301582 0) (0.0495959 -0.305674 0) (0.0428909 -0.309508 0) (0.0327615 -0.315879 0) (0.0207888 -0.332903 0) (0.0112232 -0.350999 0) (0.00868785 -0.381718 0) (0.00042438 -0.368512 0) (-0.00278127 0.03596 0) (-0.0149708 0.0665276 0) (-0.0249276 0.0692275 0) (-0.0223707 0.097112 0) (0.0147054 0.147677 0) (0.0384857 0.184068 0) (0.0598618 0.20412 0) (0.0774321 0.216335 0) (0.0912529 0.224602 0) (0.101883 0.23125 0) (0.110234 0.237704 0) (0.117739 0.244901 0) (0.125933 0.25337 0) (0.135155 0.262858 0) (0.144411 0.272477 0) (0.152748 0.281462 0) (0.16013 0.289589 0) (0.167074 0.296984 0) (0.174055 0.303815 0) (0.181322 0.310206 0) (0.189011 0.316306 0) (0.197275 0.32237 0) (0.206341 0.32874 0) (0.216515 0.335715 0) (0.228127 0.343362 0) (0.241396 0.351338 0) (0.256264 0.358637 0) (0.272234 0.363454 0) (0.288332 0.363696 0) (0.303365 0.358039 0) (0.3164 0.346652 0) (0.327153 0.331107 0) (0.33606 0.313692 0) (0.344019 0.296614 0) (0.351988 0.281426 0) (0.360671 0.268829 0) (0.370418 0.258813 0) (0.381308 0.251004 0) (0.393312 0.244865 0) (0.406337 0.23978 0) (0.420275 0.235134 0) (0.434965 0.230326 0) (0.450271 0.224737 0) (0.465905 0.217621 0) (0.481635 0.208238 0) (0.496853 0.195821 0) (0.511454 0.179656 0) (0.524215 0.15939 0) (0.53529 0.134141 0) (0.543606 0.10418 0) (0.54752 0.0696208 0) (0.549603 0.0289673 0) (0.546541 -0.0143434 0) (0.536102 -0.0593213 0) (0.527376 -0.112249 0) (0.516428 -0.165898 0) (0.489775 -0.20603 0) (0.45486 -0.239261 0) (0.425957 -0.281097 0) (0.399474 -0.332055 0) (0.366487 -0.384931 0) (0.326116 -0.435489 0) (0.28067 -0.480189 0) (0.231627 -0.515639 0) (0.180302 -0.539005 0) (0.129021 -0.54615 0) (0.0805537 -0.533299 0) (0.0355311 -0.501498 0) (-0.00667367 -0.454785 0) (-0.0445917 -0.396512 0) (-0.0754802 -0.328802 0) (-0.0973602 -0.256598 0) (-0.108982 -0.186532 0) (-0.109217 -0.126034 0) (-0.09758 -0.0820749 0) (-0.0772473 -0.0580858 0) (-0.0554424 -0.0505444 0) (-0.0375578 -0.0523434 0) (-0.02376 -0.0601477 0) (-0.0114019 -0.0737893 0) (0.000221485 -0.0907737 0) (0.00998958 -0.106809 0) (0.017756 -0.120349 0) (0.0242476 -0.134732 0) (0.0299861 -0.154411 0) (0.0350303 -0.180365 0) (0.0391994 -0.209765 0) (0.0424627 -0.238548 0) (0.0452795 -0.263153 0) (0.0484558 -0.280892 0) (0.0516015 -0.291803 0) (0.0533058 -0.297773 0) (0.0535936 -0.301191 0) (0.051258 -0.304176 0) (0.0450958 -0.306783 0) (0.0350291 -0.312182 0) (0.0226625 -0.329266 0) (0.0123406 -0.348841 0) (0.00924246 -0.37986 0) (0.000508554 -0.366979 0) (-0.00252308 0.0388987 0) (-0.0150553 0.0701221 0) (-0.0256683 0.0707947 0) (-0.0265144 0.0913154 0) (0.0065358 0.137589 0) (0.0348707 0.176375 0) (0.0577901 0.197315 0) (0.077591 0.210807 0) (0.0937228 0.22025 0) (0.106383 0.227879 0) (0.116206 0.23498 0) (0.124269 0.242345 0) (0.132145 0.250585 0) (0.140906 0.259836 0) (0.150221 0.269526 0) (0.159031 0.27881 0) (0.166823 0.287208 0) (0.173882 0.294712 0) (0.180744 0.301513 0) (0.187792 0.307795 0) (0.195241 0.313733 0) (0.20327 0.319569 0) (0.21212 0.325622 0) (0.222108 0.332172 0) (0.233576 0.339299 0) (0.24676 0.346721 0) (0.26163 0.353552 0) (0.277714 0.358147 0) (0.29403 0.358542 0) (0.309348 0.353401 0) (0.322661 0.342741 0) (0.333587 0.327901 0) (0.342483 0.310972 0) (0.35022 0.294069 0) (0.357794 0.278773 0) (0.365993 0.265884 0) (0.375243 0.255504 0) (0.38566 0.24732 0) (0.397211 0.240829 0) (0.409785 0.23543 0) (0.423242 0.230516 0) (0.437419 0.225493 0) (0.452131 0.21976 0) (0.467141 0.21259 0) (0.482108 0.203291 0) (0.496577 0.191071 0) (0.510266 0.175338 0) (0.522081 0.155638 0) (0.532417 0.131136 0) (0.539525 0.102363 0) (0.542897 0.0687343 0) (0.544682 0.0292656 0) (0.540177 -0.011977 0) (0.529763 -0.056248 0) (0.522289 -0.109009 0) (0.509579 -0.159438 0) (0.480474 -0.195857 0) (0.446626 -0.229015 0) (0.419673 -0.272074 0) (0.392674 -0.322088 0) (0.357846 -0.372666 0) (0.315915 -0.42125 0) (0.269298 -0.464575 0) (0.219308 -0.499126 0) (0.167256 -0.522159 0) (0.11539 -0.529745 0) (0.0666534 -0.51795 0) (0.022148 -0.487212 0) (-0.0189422 -0.441893 0) (-0.0556381 -0.385386 0) (-0.0852343 -0.320278 0) (-0.105621 -0.251262 0) (-0.115426 -0.184841 0) (-0.113692 -0.12817 0) (-0.100786 -0.0875092 0) (-0.0808523 -0.0650353 0) (-0.0607518 -0.0568946 0) (-0.0444641 -0.0573639 0) (-0.0311523 -0.0644232 0) (-0.0183145 -0.0778236 0) (-0.00599381 -0.0944435 0) (0.00439314 -0.109769 0) (0.012891 -0.122784 0) (0.0203206 -0.136903 0) (0.0271019 -0.156373 0) (0.033159 -0.182043 0) (0.0382591 -0.211112 0) (0.0423271 -0.239633 0) (0.0456844 -0.264189 0) (0.0491637 -0.281978 0) (0.052657 -0.292656 0) (0.0546609 -0.298135 0) (0.0550664 -0.300891 0) (0.053072 -0.302847 0) (0.0474817 -0.304207 0) (0.0376096 -0.308495 0) (0.0249541 -0.325482 0) (0.0138238 -0.346467 0) (0.00997196 -0.377823 0) (0.000654052 -0.365344 0) (-0.0021949 0.0417427 0) (-0.0148653 0.073843 0) (-0.0261339 0.0729186 0) (-0.0298056 0.0871067 0) (-0.00408749 0.127591 0) (0.0306728 0.167551 0) (0.0551665 0.189973 0) (0.0769427 0.204626 0) (0.0953429 0.215224 0) (0.110172 0.22394 0) (0.121743 0.231896 0) (0.130804 0.239721 0) (0.13871 0.247953 0) (0.146935 0.256965 0) (0.155944 0.266567 0) (0.164991 0.27605 0) (0.173224 0.28475 0) (0.180535 0.292449 0) (0.187373 0.299285 0) (0.194231 0.305486 0) (0.201435 0.311269 0) (0.209214 0.316877 0) (0.217825 0.322609 0) (0.227594 0.328729 0) (0.238871 0.335328 0) (0.251914 0.342181 0) (0.266727 0.348516 0) (0.28287 0.352855 0) (0.29938 0.353364 0) (0.314999 0.348715 0) (0.328653 0.338784 0) (0.339857 0.324687 0) (0.348865 0.308302 0) (0.356492 0.29164 0) (0.363752 0.276286 0) (0.371506 0.263131 0) (0.380265 0.25239 0) (0.390204 0.243829 0) (0.401291 0.236987 0) (0.413414 0.231281 0) (0.426389 0.226112 0) (0.440061 0.220896 0) (0.454185 0.215036 0) (0.468585 0.20784 0) (0.482808 0.19864 0) (0.496576 0.186643 0) (0.509341 0.17136 0) (0.520358 0.152193 0) (0.529883 0.128487 0) (0.53585 0.100827 0) (0.538905 0.0679909 0) (0.54012 0.0298702 0) (0.534156 -0.00943667 0) (0.524244 -0.0534339 0) (0.517628 -0.105649 0) (0.502522 -0.152364 0) (0.471455 -0.185654 0) (0.439247 -0.21938 0) (0.413844 -0.263313 0) (0.38584 -0.311825 0) (0.349181 -0.360018 0) (0.305917 -0.406765 0) (0.258333 -0.448823 0) (0.207565 -0.482556 0) (0.154967 -0.505321 0) (0.102706 -0.51342 0) (0.053822 -0.502828 0) (0.00986539 -0.473378 0) (-0.029923 -0.429579 0) (-0.0650343 -0.374855 0) (-0.0930557 -0.312336 0) (-0.111813 -0.246543 0) (-0.119872 -0.183759 0) (-0.116542 -0.130746 0) (-0.103102 -0.0929164 0) (-0.0842969 -0.0714432 0) (-0.0661996 -0.062577 0) (-0.0513976 -0.0620044 0) (-0.0383327 -0.0686866 0) (-0.024943 -0.0819969 0) (-0.0120048 -0.0982549 0) (-0.00106917 -0.112926 0) (0.00813299 -0.125466 0) (0.0165229 -0.139378 0) (0.0243877 -0.158652 0) (0.031498 -0.184023 0) (0.0375673 -0.212732 0) (0.0424909 -0.24093 0) (0.0464407 -0.265352 0) (0.0502115 -0.283152 0) (0.0539986 -0.2936 0) (0.0562939 -0.298559 0) (0.0567812 -0.30066 0) (0.0550363 -0.301671 0) (0.050014 -0.3018 0) (0.0404542 -0.304856 0) (0.0276186 -0.321567 0) (0.0156501 -0.343847 0) (0.0108727 -0.375566 0) (0.000860738 -0.363571 0) (-0.00179715 0.0444383 0) (-0.0143896 0.0776397 0) (-0.0262245 0.0755307 0) (-0.0322541 0.0846212 0) (-0.0146159 0.117984 0) (0.0247408 0.15742 0) (0.0520457 0.182168 0) (0.0756122 0.197861 0) (0.0960999 0.209539 0) (0.113149 0.219392 0) (0.126667 0.228356 0) (0.137099 0.236895 0) (0.14548 0.245396 0) (0.153336 0.254286 0) (0.161792 0.263707 0) (0.170735 0.273241 0) (0.179296 0.2822 0) (0.186954 0.290155 0) (0.193896 0.297103 0) (0.20063 0.303269 0) (0.207599 0.308913 0) (0.215116 0.314297 0) (0.223466 0.319709 0) (0.232982 0.325398 0) (0.244024 0.331465 0) (0.256869 0.337735 0) (0.27156 0.34355 0) (0.287704 0.347592 0) (0.30437 0.348167 0) (0.320292 0.343973 0) (0.334339 0.334757 0) (0.345918 0.321427 0) (0.355165 0.305644 0) (0.36281 0.28929 0) (0.369855 0.27394 0) (0.377221 0.260556 0) (0.385507 0.249467 0) (0.394962 0.240531 0) (0.405579 0.233336 0) (0.417245 0.227329 0) (0.429742 0.221917 0) (0.442913 0.216524 0) (0.456467 0.210557 0) (0.47026 0.20336 0) (0.483775 0.194269 0) (0.496855 0.182524 0) (0.508727 0.167693 0) (0.519052 0.14904 0) (0.527678 0.126181 0) (0.532666 0.0995187 0) (0.535523 0.0674004 0) (0.535851 0.0308199 0) (0.528571 -0.00679936 0) (0.519559 -0.0508654 0) (0.51322 -0.102006 0) (0.495261 -0.144696 0) (0.462887 -0.175586 0) (0.432698 -0.210346 0) (0.408303 -0.254664 0) (0.37889 -0.301212 0) (0.340498 -0.34704 0) (0.296144 -0.392108 0) (0.247791 -0.432997 0) (0.196405 -0.465987 0) (0.14343 -0.488552 0) (0.0909696 -0.49722 0) (0.0420547 -0.487947 0) (-0.00135746 -0.460084 0) (-0.0397487 -0.417857 0) (-0.0730105 -0.365 0) (-0.0992201 -0.305042 0) (-0.116245 -0.242448 0) (-0.122688 -0.1832 0) (-0.118261 -0.133562 0) (-0.104999 -0.0980726 0) (-0.0878613 -0.0771942 0) (-0.0718636 -0.0676089 0) (-0.0582968 -0.0663506 0) (-0.0452206 -0.0729876 0) (-0.0312578 -0.0863259 0) (-0.0178312 -0.102167 0) (-0.00642559 -0.116234 0) (0.0034706 -0.12839 0) (0.0128451 -0.142162 0) (0.0218403 -0.161255 0) (0.030053 -0.186311 0) (0.0371347 -0.214632 0) (0.0429607 -0.242452 0) (0.0475593 -0.266646 0) (0.0516249 -0.284402 0) (0.0556453 -0.294624 0) (0.0582115 -0.299034 0) (0.0587514 -0.300475 0) (0.0571532 -0.300627 0) (0.05266 -0.299572 0) (0.043508 -0.301299 0) (0.0306003 -0.317538 0) (0.0177864 -0.340956 0) (0.0119372 -0.373052 0) (0.00112686 -0.361626 0) (-0.00133265 0.0469318 0) (-0.0136218 0.081447 0) (-0.0258243 0.0785356 0) (-0.0336796 0.083647 0) (-0.0229518 0.109429 0) (0.0156406 0.146365 0) (0.0480136 0.173623 0) (0.0737753 0.190556 0) (0.0961088 0.203261 0) (0.115262 0.214226 0) (0.130835 0.224292 0) (0.142921 0.233747 0) (0.15222 0.242793 0) (0.160064 0.251774 0) (0.167933 0.261026 0) (0.176443 0.270473 0) (0.185078 0.279584 0) (0.193072 0.287801 0) (0.200241 0.294932 0) (0.206956 0.301126 0) (0.213731 0.306661 0) (0.220982 0.311832 0) (0.229051 0.316927 0) (0.238285 0.322189 0) (0.249049 0.327723 0) (0.261641 0.333403 0) (0.276144 0.338672 0) (0.292223 0.342374 0) (0.308994 0.342961 0) (0.325208 0.339169 0) (0.339682 0.330643 0) (0.351724 0.318087 0) (0.361334 0.302954 0) (0.369134 0.286981 0) (0.376085 0.271703 0) (0.383141 0.258141 0) (0.390988 0.246728 0) (0.39996 0.237423 0) (0.4101 0.229875 0) (0.421296 0.223571 0) (0.433326 0.217924 0) (0.445992 0.212371 0) (0.459002 0.206314 0) (0.472189 0.199136 0) (0.485038 0.190166 0) (0.497425 0.1787 0) (0.508472 0.164308 0) (0.518149 0.146177 0) (0.525825 0.124191 0) (0.53004 0.0983903 0) (0.532687 0.0670095 0) (0.531836 0.0321159 0) (0.52353 -0.00417322 0) (0.515675 -0.0484941 0) (0.508899 -0.097933 0) (0.48785 -0.136498 0) (0.454917 -0.165805 0) (0.426892 -0.20185 0) (0.402877 -0.245982 0) (0.371765 -0.290227 0) (0.331808 -0.333802 0) (0.286612 -0.377355 0) (0.237681 -0.417155 0) (0.18583 -0.449471 0) (0.132634 -0.471909 0) (0.0801697 -0.481187 0) (0.0313425 -0.473292 0) (-0.0115655 -0.447295 0) (-0.0485632 -0.406775 0) (-0.0798367 -0.355863 0) (-0.104069 -0.298422 0) (-0.119327 -0.238936 0) (-0.124369 -0.183035 0) (-0.119384 -0.136403 0) (-0.10691 -0.102783 0) (-0.0917398 -0.0822254 0) (-0.0777225 -0.0720617 0) (-0.0650465 -0.0705017 0) (-0.0517365 -0.0773617 0) (-0.0372477 -0.0907783 0) (-0.0234859 -0.106166 0) (-0.0117014 -0.119667 0) (-0.00111999 -0.131542 0) (0.00927514 -0.14526 0) (0.0194551 -0.164191 0) (0.0288299 -0.188915 0) (0.036972 -0.21682 0) (0.0437411 -0.24421 0) (0.0490472 -0.26808 0) (0.0534275 -0.285716 0) (0.0576181 -0.295709 0) (0.0604195 -0.299552 0) (0.0609873 -0.300314 0) (0.0594285 -0.299685 0) (0.0553907 -0.297524 0) (0.0467139 -0.297853 0) (0.0338359 -0.313416 0) (0.020191 -0.337782 0) (0.0131533 -0.370252 0) (0.00144903 -0.359479 0) (-0.000807708 0.049172 0) (-0.0125674 0.0851897 0) (-0.024883 0.0818038 0) (-0.0340181 0.0838371 0) (-0.0285773 0.102606 0) (0.00403477 0.135057 0) (0.0419917 0.163813 0) (0.0713247 0.182627 0) (0.0956022 0.196472 0) (0.116587 0.208482 0) (0.134158 0.219673 0) (0.148075 0.230182 0) (0.158668 0.240012 0) (0.166946 0.249345 0) (0.174426 0.258551 0) (0.18231 0.267842 0) (0.190693 0.276963 0) (0.198876 0.285382 0) (0.206332 0.292734 0) (0.213153 0.299026 0) (0.219813 0.304502 0) (0.226819 0.309481 0) (0.234593 0.314269 0) (0.243516 0.319109 0) (0.253963 0.324116 0) (0.266248 0.3292 0) (0.280497 0.333903 0) (0.296437 0.337221 0) (0.313254 0.33776 0) (0.329729 0.334307 0) (0.344648 0.326425 0) (0.357223 0.314638 0) (0.367314 0.300193 0) (0.375412 0.284668 0) (0.382406 0.269539 0) (0.389255 0.255863 0) (0.396719 0.244162 0) (0.40522 0.234501 0) (0.414881 0.226604 0) (0.42559 0.220003 0) (0.437161 0.214128 0) (0.449313 0.208428 0) (0.461812 0.202298 0) (0.474391 0.195156 0) (0.486617 0.186321 0) (0.49831 0.175152 0) (0.508606 0.161185 0) (0.517632 0.143598 0) (0.524371 0.12248 0) (0.528 0.0974168 0) (0.530305 0.0668665 0) (0.528059 0.0337366 0) (0.519133 -0.00163382 0) (0.512506 -0.0462186 0) (0.504518 -0.0933037 0) (0.480395 -0.127879 0) (0.447659 -0.156426 0) (0.421694 -0.193786 0) (0.397406 -0.237135 0) (0.364425 -0.278874 0) (0.323127 -0.320376 0) (0.277332 -0.362575 0) (0.228007 -0.401353 0) (0.175838 -0.433058 0) (0.12256 -0.455445 0) (0.070287 -0.465363 0) (0.0216711 -0.458871 0) (-0.0207722 -0.434985 0) (-0.0564609 -0.396349 0) (-0.0857587 -0.34746 0) (-0.107961 -0.292484 0) (-0.121507 -0.235953 0) (-0.125431 -0.183126 0) (-0.120366 -0.139093 0) (-0.109126 -0.106925 0) (-0.0959976 -0.0865539 0) (-0.0836679 -0.0760506 0) (-0.0714987 -0.0745497 0) (-0.0578069 -0.081819 0) (-0.0429273 -0.0952849 0) (-0.0290102 -0.110211 0) (-0.0169217 -0.123228 0) (-0.00565612 -0.134925 0) (0.00579738 -0.148677 0) (0.0172267 -0.167471 0) (0.0278335 -0.191846 0) (0.0370883 -0.219302 0) (0.0448364 -0.246212 0) (0.0509082 -0.269662 0) (0.0556379 -0.287088 0) (0.0599391 -0.296839 0) (0.0629219 -0.300101 0) (0.0634959 -0.300158 0) (0.0618715 -0.298813 0) (0.0581834 -0.295644 0) (0.0500158 -0.294539 0) (0.0372588 -0.309222 0) (0.0228157 -0.334317 0) (0.0145051 -0.367143 0) (0.00182238 -0.357103 0) (-0.000232081 0.0511128 0) (-0.0112442 0.0887928 0) (-0.0234117 0.085201 0) (-0.0333239 0.0848619 0) (-0.0317194 0.0977925 0) (-0.00728314 0.124353 0) (0.03299 0.152623 0) (0.067444 0.173751 0) (0.0946326 0.189164 0) (0.117351 0.202251 0) (0.13667 0.214521 0) (0.152425 0.226141 0) (0.164574 0.236934 0) (0.173727 0.246878 0) (0.181193 0.256247 0) (0.188472 0.26541 0) (0.19632 0.274426 0) (0.204428 0.282932 0) (0.212121 0.290489 0) (0.219148 0.296933 0) (0.225805 0.302413 0) (0.232618 0.307239 0) (0.240099 0.311738 0) (0.248689 0.316167 0) (0.258783 0.320653 0) (0.270711 0.325142 0) (0.28464 0.329262 0) (0.300366 0.332155 0) (0.317158 0.332579 0) (0.333846 0.329392 0) (0.349205 0.322098 0) (0.362363 0.311055 0) (0.373042 0.297322 0) (0.381581 0.282306 0) (0.388767 0.267407 0) (0.395537 0.253688 0) (0.402699 0.241752 0) (0.410762 0.231758 0) (0.419942 0.223521 0) (0.430156 0.216623 0) (0.441259 0.210528 0) (0.452897 0.204687 0) (0.464907 0.198499 0) (0.476879 0.19141 0) (0.488524 0.18272 0) (0.49953 0.171864 0) (0.509135 0.15831 0) (0.517494 0.141293 0) (0.523365 0.121009 0) (0.52652 0.096598 0) (0.528281 0.0670163 0) (0.524555 0.0356362 0) (0.51547 0.000763079 0) (0.509921 -0.0439147 0) (0.499971 -0.0880362 0) (0.473036 -0.118977 0) (0.441174 -0.147521 0) (0.416931 -0.186016 0) (0.391752 -0.228017 0) (0.356852 -0.267182 0) (0.314467 -0.306843 0) (0.26831 -0.347836 0) (0.218767 -0.385642 0) (0.166419 -0.416789 0) (0.113189 -0.439207 0) (0.0612851 -0.449798 0) (0.0130151 -0.444772 0) (-0.0289701 -0.42306 0) (-0.0634978 -0.386521 0) (-0.0909781 -0.339757 0) (-0.111225 -0.287194 0) (-0.123201 -0.233419 0) (-0.126312 -0.183353 0) (-0.12155 -0.14152 0) (-0.111778 -0.110482 0) (-0.100565 -0.0902648 0) (-0.0895084 -0.0797115 0) (-0.0774913 -0.078568 0) (-0.0633887 -0.0863402 0) (-0.0483369 -0.0997964 0) (-0.0344522 -0.114253 0) (-0.0221182 -0.12689 0) (-0.0101575 -0.138558 0) (0.00239875 -0.152415 0) (0.0151487 -0.171107 0) (0.0270656 -0.195117 0) (0.0374899 -0.222086 0) (0.0462518 -0.248467 0) (0.0531437 -0.271405 0) (0.0582688 -0.288513 0) (0.06263 -0.297992 0) (0.0657225 -0.300668 0) (0.0662806 -0.299986 0) (0.0644934 -0.297976 0) (0.061023 -0.293913 0) (0.0533624 -0.29137 0) (0.040803 -0.304979 0) (0.0256094 -0.330567 0) (0.0159729 -0.363712 0) (0.00224084 -0.354476 0) (0.000381076 0.0527149 0) (-0.00967923 0.092187 0) (-0.021452 0.0886062 0) (-0.0316914 0.0864339 0) (-0.0326451 0.094776 0) (-0.0156713 0.11508 0) (0.0217466 0.140751 0) (0.0609034 0.163542 0) (0.0926182 0.181088 0) (0.11771 0.195577 0) (0.138568 0.208915 0) (0.155955 0.221621 0) (0.169749 0.233474 0) (0.180133 0.244241 0) (0.188034 0.254019 0) (0.194946 0.263188 0) (0.202132 0.272053 0) (0.209867 0.280519 0) (0.217619 0.288206 0) (0.224874 0.294818 0) (0.231641 0.300363 0) (0.238353 0.30509 0) (0.245573 0.309332 0) (0.253818 0.313368 0) (0.263527 0.317346 0) (0.275053 0.321244 0) (0.288599 0.324769 0) (0.304035 0.327197 0) (0.32072 0.32744 0) (0.337559 0.324439 0) (0.353332 0.31766 0) (0.367098 0.307323 0) (0.378449 0.294306 0) (0.387565 0.279852 0) (0.395104 0.26526 0) (0.401943 0.251581 0) (0.408911 0.239473 0) (0.416598 0.229185 0) (0.425303 0.220624 0) (0.435026 0.213431 0) (0.445634 0.20712 0) (0.456767 0.201141 0) (0.46829 0.194911 0) (0.479664 0.187885 0) (0.490768 0.17935 0) (0.501094 0.168819 0) (0.510052 0.155672 0) (0.517744 0.139244 0) (0.522824 0.119749 0) (0.525533 0.0959524 0) (0.526543 0.0674939 0) (0.521389 0.037736 0) (0.512594 0.00296602 0) (0.507761 -0.0414401 0) (0.495202 -0.0820927 0) (0.465934 -0.109943 0) (0.435459 -0.139107 0) (0.412409 -0.178382 0) (0.385804 -0.218548 0) (0.349042 -0.255199 0) (0.305841 -0.29328 0) (0.259542 -0.333199 0) (0.209956 -0.370069 0) (0.157566 -0.400705 0) (0.104495 -0.423234 0) (0.0531019 -0.434543 0) (0.00534886 -0.431021 0) (-0.0361443 -0.411459 0) (-0.0697035 -0.377222 0) (-0.0956137 -0.332686 0) (-0.114105 -0.282484 0) (-0.124724 -0.231248 0) (-0.127308 -0.183612 0) (-0.123113 -0.143605 0) (-0.114842 -0.113477 0) (-0.105247 -0.0934769 0) (-0.0950053 -0.0831643 0) (-0.0828851 -0.0826093 0) (-0.0684845 -0.0908748 0) (-0.0535336 -0.104247 0) (-0.0398544 -0.118258 0) (-0.027325 -0.130646 0) (-0.0146446 -0.142448 0) (-0.000930746 -0.156478 0) (0.0132119 -0.175115 0) (0.0265224 -0.198741 0) (0.038181 -0.225179 0) (0.0479954 -0.250983 0) (0.0557536 -0.27332 0) (0.0613268 -0.289992 0) (0.0657102 -0.299149 0) (0.0688264 -0.301236 0) (0.0693405 -0.299782 0) (0.0673056 -0.297135 0) (0.0639026 -0.292302 0) (0.0567099 -0.28835 0) (0.0444067 -0.300707 0) (0.0285206 -0.32654 0) (0.017535 -0.35995 0) (0.0026975 -0.351582 0) (0.00101417 0.0539479 0) (-0.00790478 0.0953112 0) (-0.0190566 0.0919155 0) (-0.0292339 0.0883009 0) (-0.0316541 0.0930796 0) (-0.020107 0.107712 0) (0.0110073 0.12932 0) (0.0514489 0.152066 0) (0.0883622 0.171831 0) (0.117297 0.188304 0) (0.140052 0.202927 0) (0.158811 0.216684 0) (0.174119 0.229598 0) (0.185923 0.241327 0) (0.194681 0.251747 0) (0.201618 0.261124 0) (0.208222 0.269888 0) (0.21536 0.278221 0) (0.222911 0.285924 0) (0.230304 0.29267 0) (0.23725 0.298318 0) (0.243971 0.303007 0) (0.250999 0.307041 0) (0.258913 0.310714 0) (0.268215 0.314201 0) (0.279298 0.317519 0) (0.292404 0.32044 0) (0.307474 0.32237 0) (0.323966 0.322366 0) (0.340876 0.319464 0) (0.357013 0.313118 0) (0.371387 0.303431 0) (0.383471 0.291118 0) (0.393283 0.277264 0) (0.401333 0.26305 0) (0.408408 0.249496 0) (0.415319 0.237294 0) (0.422722 0.226765 0) (0.430983 0.217905 0) (0.440224 0.210427 0) (0.450305 0.203903 0) (0.46095 0.197785 0) (0.471957 0.191527 0) (0.482759 0.184568 0) (0.49335 0.176202 0) (0.502993 0.166008 0) (0.511347 0.15326 0) (0.518392 0.137432 0) (0.522727 0.118686 0) (0.524959 0.0955087 0) (0.525055 0.0682999 0) (0.518651 0.0399518 0) (0.51052 0.00499303 0) (0.505858 -0.0386396 0) (0.490212 -0.0754836 0) (0.459244 -0.100926 0) (0.430452 -0.131148 0) (0.407931 -0.170722 0) (0.379487 -0.208685 0) (0.341006 -0.24299 0) (0.297257 -0.279761 0) (0.251022 -0.318722 0) (0.201563 -0.35468 0) (0.149267 -0.38484 0) (0.0964578 -0.407556 0) (0.0456875 -0.419637 0) (-0.00137056 -0.41761 0) (-0.0422874 -0.400194 0) (-0.0750443 -0.368368 0) (-0.0996882 -0.326154 0) (-0.116718 -0.278263 0) (-0.126243 -0.229348 0) (-0.128544 -0.183824 0) (-0.125048 -0.145336 0) (-0.118142 -0.115987 0) (-0.10976 -0.0963323 0) (-0.0999264 -0.0865105 0) (-0.0875979 -0.0866717 0) (-0.0731409 -0.0953469 0) (-0.0585947 -0.108554 0) (-0.0452694 -0.122198 0) (-0.0325731 -0.134509 0) (-0.0191336 -0.146598 0) (-0.00420025 -0.160875 0) (0.011405 -0.17951 0) (0.0261949 -0.202732 0) (0.0391644 -0.228589 0) (0.0500768 -0.253765 0) (0.0587377 -0.275419 0) (0.0648118 -0.291525 0) (0.0691941 -0.300291 0) (0.072239 -0.301787 0) (0.0726713 -0.299529 0) (0.0703183 -0.296258 0) (0.0668229 -0.290775 0) (0.0600238 -0.285475 0) (0.0480148 -0.296424 0) (0.0315004 -0.322251 0) (0.0191681 -0.355858 0) (0.00318492 -0.348408 0) (0.00164302 0.0547907 0) (-0.00595643 0.0981112 0) (-0.0162783 0.0950422 0) (-0.0260691 0.0902555 0) (-0.0290968 0.0921944 0) (-0.0209208 0.102167 0) (0.00358537 0.119247 0) (0.0409726 0.140136 0) (0.081095 0.161208 0) (0.115089 0.180057 0) (0.140943 0.196478 0) (0.161197 0.211409 0) (0.177762 0.225341 0) (0.190957 0.23807 0) (0.200866 0.249306 0) (0.208266 0.259119 0) (0.214566 0.267921 0) (0.221049 0.276102 0) (0.228141 0.283712 0) (0.235476 0.290508 0) (0.242582 0.296257 0) (0.249406 0.300961 0) (0.256339 0.304846 0) (0.263971 0.3082 0) (0.272865 0.311224 0) (0.283473 0.313975 0) (0.296087 0.316293 0) (0.310718 0.317696 0) (0.326929 0.317382 0) (0.343817 0.314493 0) (0.360248 0.308487 0) (0.3752 0.299381 0) (0.388047 0.28774 0) (0.398654 0.274502 0) (0.407364 0.26073 0) (0.414848 0.247386 0) (0.421867 0.235172 0) (0.429105 0.22447 0) (0.436992 0.215352 0) (0.44577 0.20761 0) (0.455307 0.200877 0) (0.465468 0.19462 0) (0.475914 0.188346 0) (0.486183 0.181448 0) (0.496255 0.173267 0) (0.505214 0.163417 0) (0.513015 0.151056 0) (0.519425 0.135846 0) (0.523018 0.11782 0) (0.524739 0.0952879 0) (0.523828 0.0694137 0) (0.516442 0.0421998 0) (0.509211 0.00689372 0) (0.504043 -0.0353782 0) (0.485058 -0.0682665 0) (0.453102 -0.0920508 0) (0.426031 -0.12356 0) (0.403321 -0.162887 0) (0.372759 -0.19841 0) (0.332764 -0.230623 0) (0.288717 -0.266354 0) (0.242733 -0.304457 0) (0.193572 -0.339518 0) (0.141511 -0.369227 0) (0.0890585 -0.392197 0) (0.0389938 -0.405112 0) (-0.00720001 -0.404586 0) (-0.0474044 -0.389255 0) (-0.0794606 -0.359883 0) (-0.103136 -0.320055 0) (-0.119041 -0.274427 0) (-0.127756 -0.22764 0) (-0.129965 -0.183945 0) (-0.127179 -0.146746 0) (-0.121379 -0.118121 0) (-0.113787 -0.0989665 0) (-0.104072 -0.089816 0) (-0.0916086 -0.0907058 0) (-0.0774429 -0.0996647 0) (-0.0636009 -0.112658 0) (-0.0507484 -0.126046 0) (-0.0378898 -0.138485 0) (-0.0236308 -0.15099 0) (-0.00741719 -0.165638 0) (0.00971264 -0.184309 0) (0.0260721 -0.207108 0) (0.0404425 -0.23233 0) (0.0525059 -0.25682 0) (0.0620953 -0.277709 0) (0.0687174 -0.293117 0) (0.07309 -0.301401 0) (0.0759651 -0.3023 0) (0.0762652 -0.299214 0) (0.0735385 -0.29531 0) (0.0697912 -0.289292 0) (0.06328 -0.282732 0) (0.0515809 -0.292145 0) (0.0345044 -0.317721 0) (0.0208496 -0.351443 0) (0.00369558 -0.344948 0) (0.0022349 0.055232 0) (-0.00387161 0.100539 0) (-0.0131641 0.0979143 0) (-0.0222927 0.0921437 0) (-0.0252992 0.0917122 0) (-0.0188828 0.0979568 0) (0.000658648 0.110908 0) (0.0326184 0.128896 0) (0.0718847 0.149693 0) (0.110105 0.170523 0) (0.14046 0.18927 0) (0.163084 0.205777 0) (0.180856 0.220773 0) (0.195237 0.234471 0) (0.20639 0.246609 0) (0.214625 0.257055 0) (0.221017 0.266088 0) (0.226985 0.274186 0) (0.23346 0.281636 0) (0.240493 0.288378 0) (0.247636 0.29418 0) (0.254595 0.298923 0) (0.261536 0.302719 0) (0.268966 0.30581 0) (0.277483 0.308413 0) (0.287603 0.310622 0) (0.299682 0.312342 0) (0.313806 0.313195 0) (0.329647 0.312516 0) (0.346414 0.309553 0) (0.363047 0.303789 0) (0.378522 0.295178 0) (0.392128 0.284162 0) (0.403596 0.271539 0) (0.413098 0.258254 0) (0.421162 0.245197 0) (0.428471 0.233061 0) (0.435694 0.222267 0) (0.443319 0.212945 0) (0.451669 0.204974 0) (0.460678 0.198038 0) (0.470339 0.19165 0) (0.480183 0.185362 0) (0.489957 0.178517 0) (0.499466 0.170546 0) (0.507752 0.161034 0) (0.515054 0.149048 0) (0.520808 0.134482 0) (0.523642 0.117152 0) (0.524855 0.0952965 0) (0.522907 0.0707949 0) (0.514854 0.0444079 0) (0.508585 0.00874843 0) (0.502177 -0.0315402 0) (0.479844 -0.0605348 0) (0.447597 -0.0834104 0) (0.422036 -0.11622 0) (0.398432 -0.154748 0) (0.365612 -0.187735 0) (0.324341 -0.218171 0) (0.280217 -0.253119 0) (0.234654 -0.290452 0) (0.185962 -0.324625 0) (0.134286 -0.353898 0) (0.0822854 -0.377174 0) (0.0329808 -0.390994 0) (-0.0122128 -0.39198 0) (-0.0515335 -0.378658 0) (-0.0828973 -0.351714 0) (-0.105838 -0.314292 0) (-0.120935 -0.270877 0) (-0.129104 -0.226054 0) (-0.131354 -0.183966 0) (-0.129197 -0.147895 0) (-0.124192 -0.11999 0) (-0.117037 -0.101479 0) (-0.107326 -0.0930922 0) (-0.0949736 -0.0946308 0) (-0.0815086 -0.10373 0) (-0.0686295 -0.116504 0) (-0.0563295 -0.129796 0) (-0.0432846 -0.142558 0) (-0.0281479 -0.155637 0) (-0.0105972 -0.170791 0) (0.00812766 -0.189524 0) (0.0261456 -0.211886 0) (0.042017 -0.236414 0) (0.0552921 -0.260151 0) (0.0658267 -0.280196 0) (0.0730319 -0.294773 0) (0.0773979 -0.302463 0) (0.0800082 -0.302753 0) (0.0801121 -0.298822 0) (0.0769688 -0.294265 0) (0.0728194 -0.28781 0) (0.066465 -0.280101 0) (0.0550686 -0.28788 0) (0.0374944 -0.312969 0) (0.0225578 -0.346714 0) (0.00422221 -0.341201 0) (0.00275 0.0552724 0) (-0.00169107 0.102551 0) (-0.00975264 0.100469 0) (-0.0179665 0.0938525 0) (-0.0204892 0.091348 0) (-0.0147013 0.0945237 0) (0.00185796 0.104102 0) (0.0286188 0.119114 0) (0.0636219 0.138322 0) (0.102672 0.159896 0) (0.137621 0.180958 0) (0.163955 0.199583 0) (0.183467 0.215918 0) (0.198887 0.23058 0) (0.211174 0.243617 0) (0.220458 0.254824 0) (0.227346 0.26429 0) (0.233102 0.272445 0) (0.238971 0.279742 0) (0.245495 0.286343 0) (0.252473 0.292115 0) (0.259509 0.296881 0) (0.266523 0.30063 0) (0.273851 0.303522 0) (0.282057 0.305756 0) (0.291705 0.30746 0) (0.303222 0.308596 0) (0.316783 0.308887 0) (0.332167 0.307793 0) (0.348709 0.304672 0) (0.365438 0.299051 0) (0.381352 0.290841 0) (0.395684 0.280385 0) (0.40804 0.268355 0) (0.418437 0.255583 0) (0.42724 0.242881 0) (0.435028 0.230909 0) (0.44241 0.220108 0) (0.449921 0.210653 0) (0.457912 0.202502 0) (0.466447 0.195381 0) (0.475582 0.18888 0) (0.484808 0.182574 0) (0.4941 0.175777 0) (0.502977 0.168039 0) (0.510625 0.158843 0) (0.517464 0.147229 0) (0.522496 0.133346 0) (0.524569 0.116675 0) (0.525325 0.095525 0) (0.522351 0.0723906 0) (0.513952 0.0465316 0) (0.508516 0.0106745 0) (0.500159 -0.0270474 0) (0.474704 -0.0524074 0) (0.442765 -0.0750521 0) (0.418286 -0.108981 0) (0.393159 -0.146205 0) (0.358063 -0.176693 0) (0.31576 -0.205701 0) (0.271743 -0.240108 0) (0.226752 -0.276752 0) (0.178708 -0.310046 0) (0.127581 -0.338884 0) (0.0761327 -0.362503 0) (0.0276239 -0.377299 0) (-0.0164725 -0.379824 0) (-0.0547331 -0.368434 0) (-0.0853245 -0.343834 0) (-0.107658 -0.30879 0) (-0.122196 -0.267529 0) (-0.130033 -0.224537 0) (-0.132392 -0.183895 0) (-0.130728 -0.148855 0) (-0.12624 -0.121698 0) (-0.119307 -0.10392 0) (-0.109673 -0.0962968 0) (-0.0978118 -0.0983352 0) (-0.0854531 -0.107453 0) (-0.073744 -0.12005 0) (-0.0620387 -0.133455 0) (-0.04877 -0.146736 0) (-0.0326967 -0.16057 0) (-0.0137426 -0.176329 0) (0.00664552 -0.19516 0) (0.0264122 -0.217085 0) (0.0438902 -0.24086 0) (0.0584437 -0.263764 0) (0.0699326 -0.28288 0) (0.0777396 -0.296495 0) (0.0821082 -0.303467 0) (0.0843677 -0.303123 0) (0.0841998 -0.298339 0) (0.080607 -0.293098 0) (0.0759218 -0.286286 0) (0.069575 -0.277556 0) (0.0584517 -0.283636 0) (0.0404393 -0.30802 0) (0.0242735 -0.341687 0) (0.0047581 -0.337169 0) (0.00314793 0.054928 0) (0.000535999 0.104104 0) (-0.00607756 0.102644 0) (-0.0131271 0.0952906 0) (-0.0147764 0.0909065 0) (-0.00883007 0.0914372 0) (0.00627236 0.0983622 0) (0.0293297 0.110882 0) (0.0591221 0.128081 0) (0.0950095 0.149003 0) (0.132211 0.171509 0) (0.162963 0.192509 0) (0.185318 0.210657 0) (0.202016 0.226438 0) (0.21527 0.24035 0) (0.225616 0.252361 0) (0.233307 0.262417 0) (0.239233 0.270808 0) (0.244684 0.278036 0) (0.25061 0.284456 0) (0.257209 0.29011 0) (0.264176 0.294845 0) (0.271255 0.298559 0) (0.278565 0.301305 0) (0.286552 0.303235 0) (0.295779 0.304482 0) (0.306737 0.305062 0) (0.319691 0.304787 0) (0.334541 0.303237 0) (0.350751 0.299883 0) (0.36746 0.294305 0) (0.383709 0.286396 0) (0.398698 0.27642 0) (0.411934 0.264943 0) (0.423291 0.252689 0) (0.432967 0.240391 0) (0.441413 0.228663 0) (0.449148 0.217944 0) (0.45672 0.208439 0) (0.464468 0.200168 0) (0.47262 0.192897 0) (0.481213 0.186309 0) (0.489845 0.179977 0) (0.498632 0.173235 0) (0.506809 0.165747 0) (0.513876 0.156832 0) (0.520251 0.145608 0) (0.524467 0.132443 0) (0.525826 0.116373 0) (0.5262 0.0959557 0) (0.522223 0.0741484 0) (0.513765 0.0485583 0) (0.508852 0.0127954 0) (0.49794 -0.0218645 0) (0.469784 -0.0440125 0) (0.438583 -0.0669756 0) (0.414603 -0.10169 0) (0.387443 -0.137192 0) (0.350151 -0.16533 0) (0.307042 -0.193271 0) (0.263274 -0.22736 0) (0.218989 -0.263398 0) (0.171777 -0.295826 0) (0.121381 -0.324219 0) (0.070601 -0.348199 0) (0.0229142 -0.364037 0) (-0.0200292 -0.368137 0) (-0.0570741 -0.358616 0) (-0.0867533 -0.33625 0) (-0.108492 -0.303507 0) (-0.122616 -0.264326 0) (-0.130257 -0.22306 0) (-0.132739 -0.18375 0) (-0.131427 -0.149691 0) (-0.12726 -0.12331 0) (-0.120499 -0.106288 0) (-0.111192 -0.0993415 0) (-0.100275 -0.101698 0) (-0.0893886 -0.11075 0) (-0.0789989 -0.123278 0) (-0.067889 -0.137015 0) (-0.0543403 -0.151046 0) (-0.037269 -0.165814 0) (-0.0168463 -0.182247 0) (0.00527417 -0.201237 0) (0.0268777 -0.222724 0) (0.0460676 -0.245683 0) (0.0619689 -0.267662 0) (0.0744139 -0.285759 0) (0.0828204 -0.298285 0) (0.0872 -0.304402 0) (0.0890372 -0.303389 0) (0.0885141 -0.297752 0) (0.0844455 -0.29179 0) (0.0791129 -0.284682 0) (0.0726146 -0.275068 0) (0.0617138 -0.279415 0) (0.0433152 -0.302895 0) (0.0259804 -0.336379 0) (0.00529735 -0.332857 0) (0.00338971 0.0542257 0) (0.00274931 0.10515 0) (-0.00218288 0.104383 0) (-0.00779882 0.0963725 0) (-0.00819294 0.0902316 0) (-0.00145865 0.0884638 0) (0.0131842 0.0932199 0) (0.0339656 0.103864 0) (0.0594486 0.119378 0) (0.0900694 0.138892 0) (0.125565 0.161468 0) (0.159585 0.184383 0) (0.185782 0.204742 0) (0.204529 0.221998 0) (0.218782 0.236847 0) (0.230073 0.249648 0) (0.238705 0.260381 0) (0.245155 0.269178 0) (0.2505 0.276475 0) (0.255902 0.282746 0) (0.261974 0.288221 0) (0.268677 0.29285 0) (0.27573 0.296503 0) (0.283051 0.299136 0) (0.29091 0.300822 0) (0.2998 0.301673 0) (0.310236 0.301737 0) (0.32257 0.300905 0) (0.336824 0.298872 0) (0.352604 0.295215 0) (0.369168 0.289585 0) (0.385629 0.281873 0) (0.401179 0.272287 0) (0.415248 0.261304 0) (0.427585 0.249555 0) (0.438234 0.237689 0) (0.447497 0.226272 0) (0.455784 0.215718 0) (0.463605 0.206255 0) (0.471276 0.197933 0) (0.479161 0.190567 0) (0.48724 0.183928 0) (0.495336 0.177567 0) (0.503572 0.170902 0) (0.511015 0.163664 0) (0.51756 0.154991 0) (0.523419 0.144196 0) (0.526739 0.131769 0) (0.527515 0.116219 0) (0.527555 0.0965726 0) (0.522584 0.0760258 0) (0.514282 0.050507 0) (0.509436 0.0152393 0) (0.495522 -0.0159974 0) (0.46522 -0.0354724 0) (0.434976 -0.059137 0) (0.410831 -0.0941999 0) (0.381272 -0.127674 0) (0.341926 -0.153698 0) (0.298203 -0.180928 0) (0.254779 -0.214908 0) (0.211316 -0.250429 0) (0.165128 -0.282012 0) (0.115671 -0.309942 0) (0.0656937 -0.334281 0) (0.0188615 -0.351224 0) (-0.0229085 -0.356917 0) (-0.0586269 -0.349237 0) (-0.0872321 -0.328986 0) (-0.108289 -0.298433 0) (-0.122031 -0.261244 0) (-0.12953 -0.221612 0) (-0.132113 -0.183558 0) (-0.131043 -0.150447 0) (-0.127113 -0.124848 0) (-0.120636 -0.108536 0) (-0.112027 -0.102111 0) (-0.102521 -0.104611 0) (-0.0934016 -0.113566 0) (-0.0844203 -0.126186 0) (-0.0738821 -0.140479 0) (-0.0599984 -0.1555 0) (-0.0418474 -0.171359 0) (-0.0198815 -0.188566 0) (0.0040387 -0.207774 0) (0.0275666 -0.22882 0) (0.048562 -0.2509 0) (0.0658762 -0.271848 0) (0.079269 -0.288826 0) (0.0882459 -0.300141 0) (0.0926399 -0.305263 0) (0.094002 -0.303531 0) (0.0930387 -0.297047 0) (0.0884722 -0.290328 0) (0.0824053 -0.28296 0) (0.0755949 -0.272604 0) (0.0648476 -0.275216 0) (0.0461057 -0.297614 0) (0.0276656 -0.330809 0) (0.00583501 -0.328276 0) (0.00343808 0.0532053 0) (0.00488208 0.105633 0) (0.00185634 0.105644 0) (-0.00201425 0.0970163 0) (-0.000728341 0.0891937 0) (0.00737069 0.0854336 0) (0.0222241 0.0883494 0) (0.0416791 0.0976639 0) (0.064085 0.112072 0) (0.0896377 0.13024 0) (0.120226 0.151791 0) (0.154352 0.175456 0) (0.184245 0.197943 0) (0.206034 0.217095 0) (0.221724 0.233108 0) (0.233889 0.246709 0) (0.24344 0.258137 0) (0.250652 0.26746 0) (0.256242 0.274984 0) (0.261338 0.281199 0) (0.266863 0.286485 0) (0.273133 0.290943 0) (0.280002 0.294483 0) (0.287289 0.297002 0) (0.295074 0.29849 0) (0.303718 0.299006 0) (0.313706 0.298607 0) (0.325444 0.297244 0) (0.339068 0.294713 0) (0.354333 0.2907 0) (0.370633 0.284928 0) (0.38717 0.27731 0) (0.403157 0.268016 0) (0.417977 0.257455 0) (0.431271 0.246174 0) (0.442948 0.234748 0) (0.45315 0.223691 0) (0.462176 0.213377 0) (0.470438 0.204044 0) (0.478236 0.195751 0) (0.485995 0.188362 0) (0.493649 0.181714 0) (0.501296 0.175337 0) (0.508937 0.168782 0) (0.515657 0.161781 0) (0.521726 0.153319 0) (0.526979 0.143008 0) (0.529368 0.131307 0) (0.529752 0.116181 0) (0.529445 0.0973669 0) (0.523471 0.0779954 0) (0.515451 0.052426 0) (0.510117 0.0181184 0) (0.492955 -0.00949318 0) (0.461122 -0.0268902 0) (0.431832 -0.0514562 0) (0.40685 -0.0863819 0) (0.374668 -0.117644 0) (0.333446 -0.14185 0) (0.289251 -0.168707 0) (0.246223 -0.202772 0) (0.203676 -0.237881 0) (0.158715 -0.268654 0) (0.110431 -0.296096 0) (0.061415 -0.32077 0) (0.0154836 -0.33886 0) (-0.025116 -0.346166 0) (-0.0594449 -0.340321 0) (-0.0868291 -0.322079 0) (-0.10706 -0.293586 0) (-0.120356 -0.25828 0) (-0.127693 -0.2202 0) (-0.130331 -0.18334 0) (-0.129444 -0.151144 0) (-0.125785 -0.126289 0) (-0.119837 -0.110576 0) (-0.112365 -0.104484 0) (-0.104687 -0.106987 0) (-0.0975488 -0.115867 0) (-0.0900117 -0.128774 0) (-0.0799983 -0.143876 0) (-0.0657039 -0.16012 0) (-0.0463904 -0.177205 0) (-0.0228044 -0.195303 0) (0.00299783 -0.214778 0) (0.0285238 -0.235387 0) (0.0513969 -0.256521 0) (0.0701709 -0.27632 0) (0.0844844 -0.292068 0) (0.0939747 -0.302055 0) (0.098381 -0.306045 0) (0.0992369 -0.303534 0) (0.0977546 -0.296214 0) (0.0926704 -0.288703 0) (0.0858082 -0.281091 0) (0.0785317 -0.270129 0) (0.0678538 -0.271033 0) (0.0488011 -0.292198 0) (0.0293195 -0.324995 0) (0.00636717 -0.323434 0) (0.00325526 0.0519203 0) (0.00687002 0.105517 0) (0.0059491 0.10635 0) (0.00415977 0.0971281 0) (0.00760719 0.0877032 0) (0.0176418 0.0821428 0) (0.0332327 0.083585 0) (0.0519482 0.0920199 0) (0.0720829 0.105832 0) (0.0937005 0.123146 0) (0.118473 0.143338 0) (0.149015 0.166442 0) (0.180671 0.190282 0) (0.205992 0.211512 0) (0.223905 0.229044 0) (0.237119 0.243558 0) (0.247509 0.255678 0) (0.255571 0.265586 0) (0.261703 0.273475 0) (0.2668 0.279766 0) (0.271899 0.284912 0) (0.277652 0.289166 0) (0.284169 0.292535 0) (0.291306 0.294913 0) (0.299009 0.29622 0) (0.307477 0.296454 0) (0.317105 0.29565 0) (0.328307 0.293795 0) (0.341308 0.290769 0) (0.356002 0.286359 0) (0.37193 0.280369 0) (0.388407 0.272746 0) (0.40469 0.263645 0) (0.420147 0.25342 0) (0.434331 0.242556 0) (0.447041 0.231557 0) (0.458263 0.220884 0) (0.46818 0.210873 0) (0.477067 0.201752 0) (0.485212 0.193569 0) (0.493005 0.186241 0) (0.500388 0.179632 0) (0.50769 0.173274 0) (0.514725 0.16687 0) (0.520788 0.160081 0) (0.526405 0.151822 0) (0.530948 0.142056 0) (0.532433 0.131023 0) (0.532623 0.116233 0) (0.531865 0.0983435 0) (0.524885 0.0800452 0) (0.517178 0.0543841 0) (0.510771 0.0215224 0) (0.490327 -0.00243276 0) (0.457557 -0.0183414 0) (0.42902 -0.0438291 0) (0.402588 -0.078134 0) (0.367684 -0.107113 0) (0.324765 -0.129832 0) (0.28019 -0.156624 0) (0.237561 -0.190963 0) (0.196002 -0.225786 0) (0.15248 -0.255805 0) (0.105633 -0.282731 0) (0.0577721 -0.307694 0) (0.0128161 -0.32694 0) (-0.0266247 -0.33588 0) (-0.0595501 -0.331877 0) (-0.0856082 -0.315562 0) (-0.104858 -0.288998 0) (-0.117587 -0.255457 0) (-0.124687 -0.218839 0) (-0.12733 -0.183109 0) (-0.126626 -0.151775 0) (-0.123371 -0.12758 0) (-0.11828 -0.112308 0) (-0.112384 -0.106351 0) (-0.106872 -0.108756 0) (-0.101851 -0.117643 0) (-0.0957479 -0.131049 0) (-0.0861895 -0.147228 0) (-0.0713904 -0.164921 0) (-0.0508193 -0.183391 0) (-0.0255225 -0.202463 0) (0.00224258 -0.222252 0) (0.0298193 -0.242429 0) (0.0546028 -0.262551 0) (0.0748456 -0.281072 0) (0.0900247 -0.295465 0) (0.099949 -0.304015 0) (0.104362 -0.306746 0) (0.104705 -0.303387 0) (0.102639 -0.295241 0) (0.0970203 -0.28691 0) (0.0893266 -0.27905 0) (0.0814431 -0.267611 0) (0.0707394 -0.266857 0) (0.0513973 -0.286662 0) (0.0309358 -0.318958 0) (0.006891 -0.318346 0) (0.00281407 0.0504379 0) (0.00863054 0.104787 0) (0.0100053 0.106418 0) (0.0106463 0.0966052 0) (0.0167701 0.0856347 0) (0.0292639 0.0784452 0) (0.0460247 0.0788001 0) (0.0644023 0.0867787 0) (0.0827338 0.100401 0) (0.101288 0.117364 0) (0.121089 0.136488 0) (0.1458 0.158221 0) (0.175973 0.182171 0) (0.204076 0.205138 0) (0.224945 0.224492 0) (0.239712 0.240166 0) (0.250959 0.253019 0) (0.259845 0.263522 0) (0.266702 0.271869 0) (0.272109 0.278371 0) (0.277019 0.283476 0) (0.282293 0.287542 0) (0.288343 0.290699 0) (0.295182 0.292892 0) (0.302725 0.294012 0) (0.311034 0.293996 0) (0.32038 0.292839 0) (0.331128 0.290539 0) (0.343551 0.287037 0) (0.357658 0.282208 0) (0.373137 0.27594 0) (0.389429 0.268222 0) (0.405862 0.259213 0) (0.421814 0.249236 0) (0.436785 0.238719 0) (0.45048 0.228117 0) (0.462751 0.217833 0) (0.473665 0.208167 0) (0.483339 0.199324 0) (0.49204 0.191332 0) (0.500046 0.184152 0) (0.50736 0.17764 0) (0.514435 0.171358 0) (0.520911 0.165148 0) (0.526423 0.158548 0) (0.531593 0.150507 0) (0.535339 0.14134 0) (0.536014 0.13088 0) (0.53616 0.116368 0) (0.534756 0.0995196 0) (0.526794 0.0821744 0) (0.519337 0.0564621 0) (0.511305 0.0255069 0) (0.487747 0.00509209 0) (0.454552 -0.00986763 0) (0.426413 -0.0361412 0) (0.398015 -0.0693836 0) (0.360392 -0.0961116 0) (0.315938 -0.11768 0) (0.271019 -0.144686 0) (0.22875 -0.179482 0) (0.188223 -0.214173 0) (0.146352 -0.243523 0) (0.101243 -0.269905 0) (0.0547712 -0.295086 0) (0.010896 -0.315462 0) (-0.027395 -0.326053 0) (-0.0589352 -0.323908 0) (-0.0836115 -0.309459 0) (-0.10175 -0.284702 0) (-0.113776 -0.252803 0) (-0.120545 -0.217546 0) (-0.123153 -0.182868 0) (-0.122682 -0.152311 0) (-0.120032 -0.128648 0) (-0.116154 -0.113632 0) (-0.112227 -0.107627 0) (-0.109128 -0.109878 0) (-0.106285 -0.118898 0) (-0.101562 -0.133032 0) (-0.0923599 -0.150557 0) (-0.0769397 -0.16992 0) (-0.0549954 -0.189933 0) (-0.0278885 -0.210085 0) (0.00190264 -0.230191 0) (0.0315398 -0.249941 0) (0.0582037 -0.268978 0) (0.0798637 -0.286083 0) (0.0958222 -0.298992 0) (0.106092 -0.306007 0) (0.110508 -0.307368 0) (0.110356 -0.303087 0) (0.107665 -0.294123 0) (0.1015 -0.284948 0) (0.0929608 -0.27682 0) (0.084348 -0.265019 0) (0.0735161 -0.262677 0) (0.0538957 -0.28102 0) (0.0325113 -0.312716 0) (0.00740464 -0.313024 0) (0.00210381 0.0488372 0) (0.0100782 0.103437 0) (0.0139292 0.10579 0) (0.0173531 0.0953437 0) (0.0266814 0.0828383 0) (0.0420437 0.0742396 0) (0.0602454 0.0738967 0) (0.0785421 0.0818318 0) (0.0954747 0.0956264 0) (0.111429 0.112606 0) (0.127468 0.13116 0) (0.146216 0.151423 0) (0.17183 0.17432 0) (0.200548 0.198119 0) (0.224454 0.219296 0) (0.241454 0.236433 0) (0.253807 0.250158 0) (0.263482 0.261268 0) (0.271121 0.270112 0) (0.27708 0.276936 0) (0.282086 0.28212 0) (0.287041 0.286063 0) (0.292603 0.289005 0) (0.299017 0.290975 0) (0.306279 0.291881 0) (0.314385 0.291622 0) (0.323484 0.29015 0) (0.333857 0.287451 0) (0.345773 0.283502 0) (0.359319 0.278251 0) (0.374312 0.27166 0) (0.390321 0.263773 0) (0.406769 0.254765 0) (0.423065 0.244942 0) (0.438691 0.234698 0) (0.45328 0.224442 0) (0.466576 0.214533 0) (0.478533 0.205233 0) (0.489119 0.196718 0) (0.498552 0.18899 0) (0.506954 0.182041 0) (0.514421 0.175688 0) (0.521399 0.169558 0) (0.527429 0.163583 0) (0.532523 0.15716 0) (0.537247 0.149381 0) (0.540145 0.140849 0) (0.54016 0.13084 0) (0.540333 0.116602 0) (0.538027 0.100919 0) (0.529145 0.0843884 0) (0.521789 0.0587416 0) (0.511676 0.0300973 0) (0.48533 0.0129788 0) (0.452092 -0.00149666 0) (0.423901 -0.0282856 0) (0.393145 -0.0600876 0) (0.352874 -0.0846731 0) (0.307015 -0.105418 0) (0.261737 -0.132883 0) (0.219744 -0.168318 0) (0.18026 -0.203067 0) (0.140251 -0.231868 0) (0.0972143 -0.257684 0) (0.0524165 -0.282991 0) (0.00976515 -0.304428 0) (-0.0273749 -0.316675 0) (-0.0575697 -0.316405 0) (-0.0808528 -0.303777 0) (-0.097795 -0.280724 0) (-0.109003 -0.250343 0) (-0.115355 -0.216336 0) (-0.117908 -0.182611 0) (-0.11776 -0.152712 0) (-0.115949 -0.129419 0) (-0.11363 -0.114456 0) (-0.111989 -0.108249 0) (-0.111453 -0.110336 0) (-0.110769 -0.119648 0) (-0.107313 -0.134766 0) (-0.098329 -0.153897 0) (-0.0821559 -0.17514 0) (-0.0587338 -0.196855 0) (-0.0297223 -0.218156 0) (0.00212894 -0.23861 0) (0.0337601 -0.2579 0) (0.0621883 -0.275772 0) (0.0851418 -0.291323 0) (0.101771 -0.302618 0) (0.112305 -0.308018 0) (0.116727 -0.307918 0) (0.11613 -0.302637 0) (0.112799 -0.292857 0) (0.106084 -0.28282 0) (0.0967069 -0.27439 0) (0.0872644 -0.262324 0) (0.0761992 -0.258482 0) (0.0563014 -0.275284 0) (0.0340454 -0.306285 0) (0.0079072 -0.307481 0) (0.00113706 0.0472053 0) (0.0111402 0.101473 0) (0.0176081 0.104411 0) (0.0241752 0.093232 0) (0.0372222 0.0792069 0) (0.0556752 0.0694651 0) (0.0753409 0.0688305 0) (0.0936294 0.0770945 0) (0.109558 0.0913893 0) (0.123371 0.108659 0) (0.136479 0.12706 0) (0.150445 0.146228 0) (0.169971 0.167457 0) (0.196378 0.1909 0) (0.222314 0.213432 0) (0.242028 0.232222 0) (0.255968 0.24705 0) (0.266511 0.258828 0) (0.274916 0.268182 0) (0.281565 0.275398 0) (0.286931 0.280776 0) (0.291804 0.284693 0) (0.296968 0.287457 0) (0.302901 0.289191 0) (0.309762 0.289854 0) (0.317573 0.289341 0) (0.326406 0.287571 0) (0.336449 0.284508 0) (0.34793 0.280144 0) (0.360969 0.274478 0) (0.375482 0.267539 0) (0.391152 0.259426 0) (0.407506 0.250338 0) (0.424003 0.240583 0) (0.44014 0.230531 0) (0.455495 0.220561 0) (0.469747 0.210992 0) (0.482733 0.202061 0) (0.494304 0.193902 0) (0.504596 0.1865 0) (0.513567 0.179852 0) (0.521401 0.173726 0) (0.528423 0.167832 0) (0.534175 0.162134 0) (0.538995 0.155896 0) (0.543282 0.148443 0) (0.545334 0.140557 0) (0.544874 0.130874 0) (0.545046 0.116963 0) (0.541568 0.102561 0) (0.531872 0.0866984 0) (0.524404 0.0612947 0) (0.51188 0.0352806 0) (0.483173 0.0211259 0) (0.450127 0.00682237 0) (0.421406 -0.020155 0) (0.388023 -0.0502268 0) (0.345217 -0.0728346 0) (0.29804 -0.0930585 0) (0.252344 -0.121194 0) (0.210505 -0.157451 0) (0.172033 -0.192485 0) (0.134083 -0.220901 0) (0.0934828 -0.246145 0) (0.0507038 -0.271459 0) (0.00946778 -0.293851 0) (-0.0265026 -0.307737 0) (-0.0554086 -0.309351 0) (-0.0773234 -0.298515 0) (-0.0930323 -0.277077 0) (-0.103348 -0.248095 0) (-0.109222 -0.215218 0) (-0.111729 -0.18232 0) (-0.112022 -0.152934 0) (-0.111293 -0.129823 0) (-0.110837 -0.11471 0) (-0.111702 -0.108184 0) (-0.11377 -0.110144 0) (-0.115131 -0.119933 0) (-0.112762 -0.136293 0) (-0.103825 -0.157291 0) (-0.086778 -0.180613 0) (-0.0617981 -0.204172 0) (-0.0308506 -0.226665 0) (0.00301557 -0.247483 0) (0.0364959 -0.266258 0) (0.0664708 -0.28288 0) (0.0905313 -0.296749 0) (0.107718 -0.306316 0) (0.11846 -0.310039 0) (0.122912 -0.308406 0) (0.121952 -0.302049 0) (0.118005 -0.291448 0) (0.110747 -0.280533 0) (0.100557 -0.271754 0) (0.0902082 -0.259504 0) (0.0788059 -0.254256 0) (0.0586224 -0.269463 0) (0.0355398 -0.299682 0) (0.00839859 -0.30173 0) (-4.36098e-05 0.0456304 0) (0.0117609 0.0989178 0) (0.0209249 0.102241 0) (0.0310116 0.0901707 0) (0.0482468 0.0746727 0) (0.0697396 0.0641318 0) (0.0905866 0.0636277 0) (0.108742 0.072523 0) (0.12395 0.0875552 0) (0.136306 0.10535 0) (0.147086 0.123887 0) (0.157654 0.142461 0) (0.171365 0.162033 0) (0.192975 0.184107 0) (0.218889 0.207091 0) (0.241175 0.227432 0) (0.257248 0.243602 0) (0.268924 0.25619 0) (0.278095 0.266077 0) (0.285473 0.273716 0) (0.291392 0.279377 0) (0.296439 0.283376 0) (0.301386 0.286036 0) (0.306878 0.287553 0) (0.313265 0.287958 0) (0.320675 0.287172 0) (0.329176 0.285103 0) (0.338889 0.281695 0) (0.349982 0.276941 0) (0.362576 0.270875 0) (0.376642 0.263577 0) (0.391958 0.255194 0) (0.408146 0.245963 0) (0.424729 0.236198 0) (0.441238 0.22626 0) (0.457217 0.21651 0) (0.472318 0.207236 0) (0.486269 0.198656 0) (0.498841 0.190863 0) (0.510059 0.18383 0) (0.519744 0.17754 0) (0.528125 0.171709 0) (0.535338 0.166135 0) (0.54101 0.160752 0) (0.545701 0.154729 0) (0.54958 0.147682 0) (0.55084 0.140432 0) (0.550101 0.130963 0) (0.550147 0.117495 0) (0.54527 0.104461 0) (0.534899 0.0891176 0) (0.527064 0.0641785 0) (0.511952 0.0410165 0) (0.48137 0.0294471 0) (0.448593 0.0151363 0) (0.418872 -0.0116654 0) (0.382717 -0.0398029 0) (0.337506 -0.0606306 0) (0.289058 -0.0806037 0) (0.242847 -0.109589 0) (0.201005 -0.146852 0) (0.163469 -0.182434 0) (0.127741 -0.210683 0) (0.089964 -0.235372 0) (0.0496139 -0.260557 0) (0.0100493 -0.283755 0) (-0.0247034 -0.299228 0) (-0.0523931 -0.302725 0) (-0.0729996 -0.293659 0) (-0.0874833 -0.273763 0) (-0.0968763 -0.246068 0) (-0.102252 -0.21419 0) (-0.104751 -0.181975 0) (-0.105621 -0.152928 0) (-0.106199 -0.129798 0) (-0.107837 -0.114351 0) (-0.111312 -0.107428 0) (-0.115897 -0.109344 0) (-0.119087 -0.119814 0) (-0.117574 -0.137671 0) (-0.10852 -0.160768 0) (-0.0905308 -0.186363 0) (-0.0640003 -0.211877 0) (-0.0311853 -0.23562 0) (0.00455 -0.256733 0) (0.0396319 -0.274943 0) (0.0708613 -0.29023 0) (0.0958123 -0.302313 0) (0.113465 -0.310063 0) (0.124399 -0.31207 0) (0.128944 -0.308854 0) (0.12774 -0.301344 0) (0.12324 -0.289905 0) (0.115464 -0.278097 0) (0.104501 -0.268914 0) (0.093193 -0.256538 0) (0.0813542 -0.249988 0) (0.0608693 -0.263562 0) (0.0369979 -0.292921 0) (0.0088794 -0.295782 0) (-0.00136457 0.0441961 0) (0.0119015 0.0958176 0) (0.0237681 0.0992424 0) (0.0378425 0.0860752 0) (0.0595883 0.0692213 0) (0.0836989 0.0583367 0) (0.105147 0.0583842 0) (0.122895 0.0681244 0) (0.137501 0.0839907 0) (0.149181 0.102481 0) (0.158407 0.121375 0) (0.166672 0.139787 0) (0.175928 0.158121 0) (0.191639 0.178321 0) (0.215044 0.200685 0) (0.238884 0.222082 0) (0.257399 0.239707 0) (0.270632 0.253306 0) (0.280676 0.263796 0) (0.288777 0.271874 0) (0.295351 0.277871 0) (0.30079 0.282048 0) (0.305745 0.284697 0) (0.310923 0.286051 0) (0.316842 0.286208 0) (0.323778 0.285137 0) (0.331864 0.282758 0) (0.341202 0.279008 0) (0.351917 0.273879 0) (0.364107 0.267425 0) (0.377769 0.259762 0) (0.392745 0.251083 0) (0.408734 0.241658 0) (0.425324 0.231818 0) (0.442084 0.221926 0) (0.458554 0.212329 0) (0.474378 0.203298 0) (0.489191 0.195038 0) (0.502728 0.187602 0) (0.514883 0.180965 0) (0.525379 0.175069 0) (0.534437 0.169598 0) (0.541985 0.164419 0) (0.547777 0.159392 0) (0.552474 0.153635 0) (0.555997 0.147077 0) (0.556573 0.140432 0) (0.555734 0.131103 0) (0.555457 0.11824 0) (0.549037 0.106618 0) (0.538148 0.091657 0) (0.529681 0.0674319 0) (0.511952 0.0472448 0) (0.479975 0.0378712 0) (0.447419 0.0234548 0) (0.416291 -0.00277772 0) (0.377311 -0.0288345 0) (0.32982 -0.0480908 0) (0.280112 -0.0680458 0) (0.233263 -0.098028 0) (0.191235 -0.136479 0) (0.154503 -0.17291 0) (0.121105 -0.201267 0) (0.0865467 -0.225459 0) (0.0491021 -0.250367 0) (0.0115465 -0.274181 0) (-0.0218902 -0.291138 0) (-0.0484437 -0.296497 0) (-0.0678427 -0.289185 0) (-0.0811557 -0.270769 0) (-0.0896427 -0.244254 0) (-0.0945375 -0.213242 0) (-0.0970935 -0.18155 0) (-0.098678 -0.152652 0) (-0.100748 -0.129301 0) (-0.104609 -0.113366 0) (-0.11065 -0.106016 0) (-0.117526 -0.108006 0) (-0.122247 -0.119371 0) (-0.121362 -0.138956 0) (-0.112106 -0.164344 0) (-0.0932161 -0.192375 0) (-0.065271 -0.219939 0) (-0.030777 -0.244942 0) (0.0065732 -0.266307 0) (0.0429271 -0.283864 0) (0.075087 -0.297746 0) (0.100718 -0.307973 0) (0.118784 -0.313849 0) (0.129953 -0.314122 0) (0.134697 -0.30929 0) (0.133408 -0.300556 0) (0.128457 -0.288248 0) (0.120209 -0.275528 0) (0.108525 -0.265877 0) (0.0962294 -0.253413 0) (0.0838624 -0.245663 0) (0.0630538 -0.257586 0) (0.0384245 -0.286013 0) (0.00935078 -0.289651 0) (-0.002728 0.0429758 0) (0.0115296 0.0922441 0) (0.0260867 0.095367 0) (0.0448031 0.0808627 0) (0.0710056 0.0629237 0) (0.0968935 0.0522659 0) (0.118169 0.0532464 0) (0.135172 0.0639408 0) (0.149183 0.0805944 0) (0.160815 0.0998266 0) (0.169533 0.119271 0) (0.176424 0.137848 0) (0.182815 0.155501 0) (0.193037 0.17388 0) (0.211899 0.194733 0) (0.235513 0.216362 0) (0.256249 0.235299 0) (0.271468 0.250096 0) (0.282638 0.261324 0) (0.291486 0.269872 0) (0.29874 0.276231 0) (0.304718 0.280656 0) (0.309902 0.283387 0) (0.314953 0.284655 0) (0.320491 0.284601 0) (0.326942 0.28325 0) (0.334547 0.280553 0) (0.343448 0.276456 0) (0.353759 0.270954 0) (0.365558 0.264114 0) (0.378847 0.256084 0) (0.393508 0.247089 0) (0.409289 0.237433 0) (0.425841 0.227466 0) (0.442762 0.217559 0) (0.459609 0.208055 0) (0.476027 0.199216 0) (0.491583 0.191235 0) (0.506009 0.184137 0) (0.519061 0.177901 0) (0.530414 0.172421 0) (0.540224 0.167363 0) (0.548232 0.162641 0) (0.55432 0.15801 0) (0.559145 0.152585 0) (0.562382 0.146601 0) (0.562421 0.140518 0) (0.561628 0.131298 0) (0.560793 0.119235 0) (0.552791 0.109019 0) (0.541544 0.094325 0) (0.532196 0.0710748 0) (0.511959 0.0538882 0) (0.479014 0.0463385 0) (0.446535 0.0318705 0) (0.413681 0.00654798 0) (0.371899 -0.0173512 0) (0.322239 -0.0352388 0) (0.271249 -0.0553702 0) (0.223624 -0.086469 0) (0.181211 -0.126282 0) (0.145092 -0.163892 0) (0.114054 -0.192697 0) (0.0830879 -0.216505 0) (0.0490851 -0.24099 0) (0.0139732 -0.26519 0) (-0.0179703 -0.283455 0) (-0.0434518 -0.290635 0) (-0.0617849 -0.28506 0) (-0.074036 -0.268074 0) (-0.0816812 -0.24264 0) (-0.0861499 -0.212357 0) (-0.0888438 -0.181018 0) (-0.0912633 -0.152075 0) (-0.0949359 -0.128314 0) (-0.101012 -0.111778 0) (-0.109416 -0.104019 0) (-0.118241 -0.106226 0) (-0.124189 -0.11868 0) (-0.123795 -0.140174 0) (-0.114392 -0.168012 0) (-0.0947815 -0.198594 0) (-0.0656668 -0.228286 0) (-0.0297774 -0.254541 0) (0.00887351 -0.276117 0) (0.0461523 -0.292928 0) (0.0789111 -0.305354 0) (0.105023 -0.313698 0) (0.123478 -0.31768 0) (0.134965 -0.316221 0) (0.140055 -0.309757 0) (0.138873 -0.299725 0) (0.133611 -0.286501 0) (0.124955 -0.272843 0) (0.112617 -0.262652 0) (0.0993253 -0.250118 0) (0.0863476 -0.241269 0) (0.0651883 -0.251537 0) (0.0398252 -0.27897 0) (0.00981432 -0.283344 0) (-0.00402334 0.0420311 0) (0.0106257 0.0882789 0) (0.028054 0.0905387 0) (0.0521203 0.0744918 0) (0.0820908 0.0559708 0) (0.108583 0.0461719 0) (0.128902 0.0483728 0) (0.144866 0.0600188 0) (0.15828 0.0773073 0) (0.170204 0.0971755 0) (0.17949 0.117302 0) (0.18601 0.136318 0) (0.190919 0.153811 0) (0.197029 0.170809 0) (0.210449 0.189699 0) (0.231769 0.210619 0) (0.253826 0.230413 0) (0.271244 0.246478 0) (0.283901 0.258614 0) (0.293609 0.267706 0) (0.301543 0.274446 0) (0.30813 0.279161 0) (0.313715 0.282052 0) (0.318843 0.283318 0) (0.32415 0.283115 0) (0.330174 0.281512 0) (0.337282 0.278499 0) (0.345698 0.274048 0) (0.355562 0.268168 0) (0.366956 0.26094 0) (0.379883 0.252533 0) (0.394247 0.243207 0) (0.409826 0.23329 0) (0.426318 0.223154 0) (0.443338 0.213185 0) (0.460476 0.20372 0) (0.477368 0.195023 0) (0.493548 0.187279 0) (0.50876 0.180492 0) (0.522633 0.17465 0) (0.534836 0.169593 0) (0.545419 0.164987 0) (0.553986 0.160769 0) (0.560502 0.156572 0) (0.565559 0.151553 0) (0.568591 0.146221 0) (0.568269 0.140649 0) (0.567618 0.131561 0) (0.56599 0.120506 0) (0.556478 0.111635 0) (0.54502 0.0971278 0) (0.534584 0.075104 0) (0.512049 0.0608676 0) (0.4785 0.0548193 0) (0.445891 0.0404384 0) (0.411071 0.0163676 0) (0.366571 -0.00539192 0) (0.314834 -0.022093 0) (0.262519 -0.0425584 0) (0.213976 -0.0748678 0) (0.170978 -0.116206 0) (0.135227 -0.155341 0) (0.106468 -0.185 0) (0.0794115 -0.208604 0) (0.0494274 -0.232542 0) (0.0173003 -0.256866 0) (-0.0128642 -0.276191 0) (-0.0372837 -0.285103 0) (-0.0547129 -0.281239 0) (-0.0660676 -0.265639 0) (-0.0729874 -0.241199 0) (-0.0771176 -0.211511 0) (-0.0800342 -0.180355 0) (-0.0833644 -0.151181 0) (-0.0886413 -0.126851 0) (-0.0967673 -0.10965 0) (-0.107192 -0.101542 0) (-0.117596 -0.104102 0) (-0.124569 -0.117789 0) (-0.124708 -0.141314 0) (-0.115374 -0.171718 0) (-0.0953048 -0.204949 0) (-0.0652652 -0.236838 0) (-0.0282163 -0.264353 0) (0.0114661 -0.286051 0) (0.049339 -0.302043 0) (0.0823457 -0.312985 0) (0.108691 -0.319458 0) (0.127467 -0.321563 0) (0.139345 -0.318398 0) (0.144932 -0.310301 0) (0.144065 -0.298899 0) (0.13866 -0.284697 0) (0.129681 -0.270064 0) (0.116762 -0.259254 0) (0.102486 -0.246647 0) (0.0888261 -0.236796 0) (0.0672856 -0.245416 0) (0.0412063 -0.271798 0) (0.0102719 -0.276872 0) (-0.00513798 0.0414023 0) (0.00928109 0.0839698 0) (0.0302047 0.0846474 0) (0.0598901 0.0670409 0) (0.092232 0.0486766 0) (0.118065 0.0403205 0) (0.136837 0.0438893 0) (0.151601 0.0563833 0) (0.164461 0.0741018 0) (0.176756 0.0943814 0) (0.187387 0.115203 0) (0.194647 0.134895 0) (0.199219 0.152663 0) (0.202887 0.168888 0) (0.211214 0.185856 0) (0.228533 0.205274 0) (0.250435 0.225213 0) (0.269836 0.242406 0) (0.284326 0.255601 0) (0.295124 0.265357 0) (0.30377 0.272515 0) (0.31098 0.277543 0) (0.317071 0.28065 0) (0.322456 0.281992 0) (0.32771 0.281713 0) (0.333428 0.279903 0) (0.340084 0.276595 0) (0.348003 0.271793 0) (0.35739 0.265527 0) (0.368355 0.257901 0) (0.380915 0.249107 0) (0.394987 0.239431 0) (0.410371 0.229228 0) (0.426792 0.218891 0) (0.443871 0.208819 0) (0.461237 0.199348 0) (0.478499 0.190754 0) (0.495198 0.183203 0) (0.511081 0.176697 0) (0.525674 0.171231 0) (0.538678 0.166593 0) (0.550012 0.162465 0) (0.559194 0.158782 0) (0.566221 0.155054 0) (0.571594 0.150518 0) (0.574502 0.145899 0) (0.574005 0.140791 0) (0.573538 0.131912 0) (0.570918 0.122058 0) (0.560071 0.114428 0) (0.548519 0.100066 0) (0.536847 0.0795004 0) (0.512298 0.0681035 0) (0.478419 0.0633047 0) (0.445458 0.0491844 0) (0.408519 0.0266784 0) (0.361411 0.00701986 0) (0.307678 -0.00867295 0) (0.253978 -0.0295899 0) (0.204384 -0.0631829 0) (0.160616 -0.106187 0) (0.124944 -0.147196 0) (0.0982461 -0.178174 0) (0.0753125 -0.201845 0) (0.0499335 -0.225154 0) (0.021429 -0.2493 0) (-0.006541 -0.269406 0) (-0.0298051 -0.279867 0) (-0.046467 -0.277672 0) (-0.0571276 -0.263418 0) (-0.0634875 -0.239892 0) (-0.0673933 -0.210678 0) (-0.0706041 -0.179546 0) (-0.0748523 -0.149978 0) (-0.0816095 -0.124965 0) (-0.0914819 -0.107081 0) (-0.103526 -0.0986931 0) (-0.115225 -0.101699 0) (-0.123234 -0.116694 0) (-0.124185 -0.142322 0) (-0.11528 -0.175381 0) (-0.0950118 -0.211372 0) (-0.0641283 -0.24554 0) (-0.0259017 -0.274348 0) (0.0147637 -0.296014 0) (0.0529965 -0.311121 0) (0.0858501 -0.320552 0) (0.112028 -0.325199 0) (0.130895 -0.325488 0) (0.143121 -0.320675 0) (0.1493 -0.310963 0) (0.148936 -0.298125 0) (0.143567 -0.282871 0) (0.134366 -0.267216 0) (0.12095 -0.2557 0) (0.105716 -0.243 0) (0.0913128 -0.232233 0) (0.0693583 -0.239224 0) (0.0425746 -0.264506 0) (0.0107257 -0.270242 0) (-0.00596413 0.0410818 0) (0.00788155 0.0792827 0) (0.0332802 0.0776124 0) (0.0678291 0.0587753 0) (0.100706 0.0414229 0) (0.124839 0.0349242 0) (0.141806 0.0398563 0) (0.155374 0.0530262 0) (0.167768 0.0709656 0) (0.18035 0.0913801 0) (0.192636 0.112767 0) (0.201649 0.133305 0) (0.206905 0.151707 0) (0.209649 0.16777 0) (0.21411 0.183225 0) (0.226593 0.200706 0) (0.246637 0.219978 0) (0.26728 0.237913 0) (0.283765 0.252218 0) (0.295959 0.262787 0) (0.305428 0.270436 0) (0.313261 0.275798 0) (0.319899 0.279153 0) (0.325667 0.280634 0) (0.331042 0.28035 0) (0.336607 0.278396 0) (0.342908 0.274828 0) (0.350371 0.269687 0) (0.359282 0.263035 0) (0.369806 0.255001 0) (0.381991 0.245804 0) (0.39577 0.23576 0) (0.410965 0.225246 0) (0.427307 0.214681 0) (0.444423 0.204472 0) (0.461971 0.194961 0) (0.479519 0.186435 0) (0.496646 0.179039 0) (0.513084 0.172785 0) (0.528288 0.167671 0) (0.542009 0.163439 0) (0.554039 0.1598 0) (0.563847 0.15667 0) (0.571421 0.153442 0) (0.577168 0.14946 0) (0.580025 0.145603 0) (0.579534 0.14092 0) (0.579241 0.132366 0) (0.575491 0.123879 0) (0.563559 0.117356 0) (0.552 0.103136 0) (0.539009 0.084232 0) (0.51277 0.0755223 0) (0.478751 0.0717885 0) (0.44522 0.0581529 0) (0.406087 0.0374331 0) (0.3565 0.019863 0) (0.300835 0.00498361 0) (0.245689 -0.0164529 0) (0.19493 -0.0513791 0) (0.150239 -0.0961664 0) (0.114336 -0.139375 0) (0.0893299 -0.172184 0) (0.0705687 -0.196293 0) (0.0503471 -0.218959 0) (0.0261766 -0.242618 0) (0.000948314 -0.263185 0) (-0.0209262 -0.274923 0) (-0.0368745 -0.274303 0) (-0.04703 -0.261357 0) (-0.053019 -0.238677 0) (-0.0568281 -0.209832 0) (-0.0603767 -0.17859 0) (-0.0654712 -0.148501 0) (-0.0734753 -0.122734 0) (-0.0847213 -0.104178 0) (-0.0980473 -0.0955574 0) (-0.110979 -0.0990308 0) (-0.120336 -0.115326 0) (-0.122656 -0.143085 0) (-0.114679 -0.178912 0) (-0.0944234 -0.217831 0) (-0.0625455 -0.254406 0) (-0.0227018 -0.284537 0) (0.0193487 -0.306011 0) (0.0579912 -0.320086 0) (0.0903242 -0.327937 0) (0.115731 -0.330814 0) (0.134182 -0.329393 0) (0.146484 -0.323037 0) (0.153209 -0.311768 0) (0.153474 -0.297448 0) (0.14831 -0.281059 0) (0.138994 -0.264325 0) (0.125168 -0.252011 0) (0.109016 -0.239178 0) (0.0938209 -0.227573 0) (0.0714183 -0.232959 0) (0.0439368 -0.257099 0) (0.0111779 -0.26346 0) (-0.00640525 0.0409781 0) (0.00716571 0.0741069 0) (0.0377193 0.0695004 0) (0.0752348 0.0501378 0) (0.106886 0.0345615 0) (0.12874 0.0300913 0) (0.143983 0.0362591 0) (0.156506 0.049913 0) (0.168531 0.0678954 0) (0.181248 0.0881837 0) (0.195045 0.109878 0) (0.20649 0.131319 0) (0.213373 0.150647 0) (0.216416 0.167077 0) (0.218583 0.181624 0) (0.226402 0.197148 0) (0.243126 0.215048 0) (0.26382 0.233131 0) (0.282124 0.248432 0) (0.295999 0.25994 0) (0.306497 0.26819 0) (0.314986 0.273927 0) (0.32217 0.277552 0) (0.328386 0.279213 0) (0.334016 0.278988 0) (0.339587 0.276951 0) (0.345667 0.273171 0) (0.352759 0.267716 0) (0.361238 0.260684 0) (0.371337 0.252236 0) (0.383153 0.242624 0) (0.396646 0.232191 0) (0.411658 0.221344 0) (0.427919 0.210525 0) (0.445066 0.200151 0) (0.46276 0.190573 0) (0.48053 0.182085 0) (0.498014 0.174813 0) (0.514892 0.168788 0) (0.530597 0.164001 0) (0.544934 0.160156 0) (0.557581 0.157007 0) (0.567979 0.154437 0) (0.576092 0.15173 0) (0.582245 0.148366 0) (0.585113 0.145302 0) (0.584788 0.141017 0) (0.584614 0.132938 0) (0.579668 0.125942 0) (0.566951 0.120369 0) (0.55544 0.106332 0) (0.541113 0.0892553 0) (0.513518 0.0830612 0) (0.479471 0.0802745 0) (0.445174 0.0673665 0) (0.403847 0.048617 0) (0.351909 0.0330899 0) (0.294366 0.0189282 0) (0.237727 -0.00319332 0) (0.18571 -0.0394317 0) (0.13999 -0.0860878 0) (0.103558 -0.131779 0) (0.0797302 -0.166952 0) (0.0649659 -0.191981 0) (0.0503513 -0.214085 0) (0.0312639 -0.236974 0) (0.00944334 -0.257628 0) (-0.0106596 -0.270317 0) (-0.0258135 -0.271098 0) (-0.0355734 -0.2594 0) (-0.0413536 -0.237514 0) (-0.0451798 -0.208954 0) (-0.049074 -0.177499 0) (-0.0548791 -0.146805 0) (-0.0638448 -0.120253 0) (-0.0761345 -0.101033 0) (-0.0906047 -0.092164 0) (-0.105051 -0.0960316 0) (-0.116443 -0.11354 0) (-0.12097 -0.143441 0) (-0.114559 -0.182204 0) (-0.0945467 -0.224318 0) (-0.0614177 -0.263534 0) (-0.0191843 -0.294999 0) (0.0252552 -0.316211 0) (0.0649884 -0.328933 0) (0.0967642 -0.335012 0) (0.120742 -0.336132 0) (0.137987 -0.333142 0) (0.14979 -0.325414 0) (0.156803 -0.312706 0) (0.157711 -0.296895 0) (0.152881 -0.279293 0) (0.143558 -0.261416 0) (0.129409 -0.248205 0) (0.112389 -0.235185 0) (0.0963623 -0.222809 0) (0.0734773 -0.22662 0) (0.0452996 -0.24958 0) (0.0116308 -0.25653 0) (-0.00638766 0.0409043 0) (0.0079262 0.0683218 0) (0.0432132 0.0606104 0) (0.0812455 0.0416317 0) (0.110451 0.0283216 0) (0.129956 0.0258161 0) (0.143806 0.0330282 0) (0.15553 0.0469986 0) (0.167255 0.0648942 0) (0.179956 0.0848576 0) (0.194802 0.106534 0) (0.208881 0.128778 0) (0.218185 0.149246 0) (0.222486 0.166472 0) (0.223862 0.180754 0) (0.227973 0.194647 0) (0.240546 0.210735 0) (0.259894 0.228282 0) (0.279432 0.244268 0) (0.295125 0.256762 0) (0.306912 0.265743 0) (0.316162 0.271926 0) (0.323888 0.275846 0) (0.330564 0.277713 0) (0.33653 0.277593 0) (0.342237 0.27553 0) (0.348238 0.27159 0) (0.355078 0.265857 0) (0.363206 0.258461 0) (0.372932 0.249599 0) (0.384413 0.239559 0) (0.397644 0.22872 0) (0.412493 0.217519 0) (0.428682 0.206423 0) (0.445867 0.19586 0) (0.463684 0.186196 0) (0.481638 0.177722 0) (0.499421 0.170548 0) (0.516634 0.164735 0) (0.532737 0.160249 0) (0.547581 0.156773 0) (0.560748 0.154107 0) (0.571659 0.152097 0) (0.580277 0.149923 0) (0.586837 0.147229 0) (0.589757 0.144971 0) (0.589722 0.141075 0) (0.589581 0.133638 0) (0.583458 0.128207 0) (0.57027 0.123423 0) (0.558833 0.109642 0) (0.543209 0.0945222 0) (0.514579 0.0906674 0) (0.480553 0.0887713 0) (0.445335 0.0768353 0) (0.401866 0.0602104 0) (0.347723 0.0466503 0) (0.288319 0.0331513 0) (0.230149 0.0103162 0) (0.176842 -0.0273222 0) (0.130032 -0.0759088 0) (0.0928288 -0.124301 0) (0.0695577 -0.162357 0) (0.0583357 -0.188891 0) (0.0495931 -0.210642 0) (0.0363224 -0.232518 0) (0.018664 -0.252843 0) (0.000848241 -0.266151 0) (-0.0132807 -0.268079 0) (-0.0226229 -0.257513 0) (-0.0282715 -0.236365 0) (-0.0321766 -0.208038 0) (-0.0363861 -0.176298 0) (-0.0427411 -0.144953 0) (-0.0524193 -0.117597 0) (-0.0655902 -0.0976841 0) (-0.0813929 -0.0884592 0) (-0.0980483 -0.0925388 0) (-0.112502 -0.111113 0) (-0.120211 -0.143192 0) (-0.115986 -0.185146 0) (-0.0964813 -0.230834 0) (-0.0620196 -0.273059 0) (-0.0167656 -0.305998 0) (0.031408 -0.326893 0) (0.0737394 -0.337821 0) (0.105692 -0.341731 0) (0.127918 -0.340969 0) (0.143071 -0.336537 0) (0.153525 -0.327667 0) (0.160312 -0.313719 0) (0.161721 -0.296467 0) (0.157294 -0.277599 0) (0.148052 -0.258513 0) (0.133667 -0.244305 0) (0.115835 -0.231029 0) (0.0989476 -0.217936 0) (0.0755459 -0.220205 0) (0.0466695 -0.241953 0) (0.0120868 -0.249458 0) (-0.00587599 0.0406088 0) (0.010475 0.0618988 0) (0.0488073 0.0514252 0) (0.0852107 0.0336647 0) (0.111458 0.0227752 0) (0.128933 0.0220105 0) (0.141842 0.0300671 0) (0.153057 0.0442353 0) (0.164517 0.0619681 0) (0.177079 0.0814862 0) (0.192387 0.102822 0) (0.208805 0.125616 0) (0.221054 0.147326 0) (0.227377 0.165684 0) (0.229187 0.180277 0) (0.230938 0.193075 0) (0.239319 0.207252 0) (0.256055 0.223636 0) (0.275877 0.239828 0) (0.29326 0.253226 0) (0.30658 0.26305 0) (0.316771 0.269781 0) (0.325071 0.274038 0) (0.332189 0.276132 0) (0.338516 0.276146 0) (0.344447 0.274104 0) (0.35049 0.270051 0) (0.357203 0.264079 0) (0.365088 0.256341 0) (0.374527 0.247071 0) (0.385734 0.236598 0) (0.398755 0.225337 0) (0.413479 0.213764 0) (0.429629 0.202372 0) (0.446877 0.1916 0) (0.464809 0.181835 0) (0.482936 0.173356 0) (0.500976 0.166265 0) (0.518438 0.160652 0) (0.534854 0.156443 0) (0.550096 0.153317 0) (0.563673 0.151127 0) (0.574989 0.149669 0) (0.584059 0.148029 0) (0.590993 0.146048 0) (0.593988 0.144597 0) (0.594327 0.141093 0) (0.594113 0.134467 0) (0.586904 0.130625 0) (0.573551 0.126476 0) (0.562189 0.113053 0) (0.545354 0.0999833 0) (0.515975 0.0982975 0) (0.481975 0.09729 0) (0.445727 0.0865609 0) (0.400209 0.0721728 0) (0.343997 0.060533 0) (0.282785 0.0475964 0) (0.223035 0.0240829 0) (0.168403 -0.0150487 0) (0.120528 -0.0656047 0) (0.0824098 -0.116835 0) (0.059046 -0.158235 0) (0.0506072 -0.186943 0) (0.0477222 -0.208705 0) (0.0409185 -0.229415 0) (0.0282307 -0.248959 0) (0.013311 -0.262509 0) (0.000568348 -0.265325 0) (-0.00818892 -0.25572 0) (-0.0136625 -0.235211 0) (-0.0176257 -0.20708 0) (-0.022083 -0.175023 0) (-0.0288526 -0.142996 0) (-0.0391209 -0.114801 0) (-0.0532793 -0.0940958 0) (-0.0709795 -0.0842949 0) (-0.0908567 -0.0883094 0) (-0.109471 -0.107799 0) (-0.120992 -0.142193 0) (-0.119114 -0.187683 0) (-0.100201 -0.237379 0) (-0.0646961 -0.283033 0) (-0.0166248 -0.317801 0) (0.0360615 -0.33842 0) (0.0828696 -0.347134 0) (0.116712 -0.348249 0) (0.137658 -0.345226 0) (0.150091 -0.339361 0) (0.158221 -0.329604 0) (0.164034 -0.314701 0) (0.165623 -0.29614 0) (0.161578 -0.275986 0) (0.152482 -0.255636 0) (0.137938 -0.24033 0) (0.119354 -0.226717 0) (0.101586 -0.21295 0) (0.077634 -0.213711 0) (0.0480529 -0.234219 0) (0.0125481 -0.242246 0) (-0.00487828 0.0398475 0) (0.0143552 0.0549642 0) (0.0534551 0.0424471 0) (0.0869025 0.0264592 0) (0.11026 0.0178682 0) (0.126235 0.0185477 0) (0.138674 0.0272729 0) (0.149657 0.0415799 0) (0.160861 0.0591259 0) (0.173183 0.0781511 0) (0.188422 0.098884 0) (0.206512 0.121867 0) (0.221855 0.144774 0) (0.230785 0.164507 0) (0.233948 0.179886 0) (0.234717 0.192196 0) (0.239548 0.204671 0) (0.252843 0.219455 0) (0.271805 0.235286 0) (0.290423 0.249348 0) (0.305396 0.260065 0) (0.316757 0.267462 0) (0.325728 0.272127 0) (0.333279 0.274474 0) (0.339948 0.274643 0) (0.346134 0.272653 0) (0.352303 0.268527 0) (0.358999 0.262351 0) (0.366755 0.254297 0) (0.376008 0.24463 0) (0.387031 0.233721 0) (0.399918 0.222028 0) (0.414581 0.210067 0) (0.430752 0.198359 0) (0.448107 0.187365 0) (0.466176 0.177489 0) (0.484497 0.16899 0) (0.502768 0.161977 0) (0.520419 0.156557 0) (0.537085 0.152607 0) (0.552626 0.149817 0) (0.566497 0.148099 0) (0.578098 0.147178 0) (0.587558 0.146064 0) (0.594798 0.144828 0) (0.59787 0.14417 0) (0.598618 0.141078 0) (0.598222 0.13542 0) (0.59008 0.133143 0) (0.576834 0.129493 0) (0.56553 0.116549 0) (0.547602 0.10559 0) (0.517722 0.10592 0) (0.483721 0.105839 0) (0.446382 0.096538 0) (0.39894 0.0844631 0) (0.340793 0.0747121 0) (0.277804 0.0622769 0) (0.216456 0.0379867 0) (0.160506 -0.00262949 0) (0.111629 -0.0551723 0) (0.0725746 -0.109297 0) (0.0485519 -0.154393 0) (0.0418674 -0.185983 0) (0.0444473 -0.208291 0) (0.0445899 -0.227814 0) (0.0376961 -0.246147 0) (0.026352 -0.259473 0) (0.0154206 -0.262894 0) (0.00753139 -0.254087 0) (0.00240012 -0.234114 0) (-0.00151804 -0.206067 0) (-0.00613061 -0.173695 0) (-0.0132443 -0.140962 0) (-0.024169 -0.111842 0) (-0.0397158 -0.0901499 0) (-0.0601552 -0.0794572 0) (-0.0842691 -0.083118 0) (-0.10758 -0.103498 0) (-0.122566 -0.14049 0) (-0.122271 -0.189909 0) (-0.10357 -0.24395 0) (-0.0675426 -0.293329 0) (-0.0180084 -0.330357 0) (0.0382996 -0.351035 0) (0.090617 -0.357353 0) (0.128557 -0.354951 0) (0.149688 -0.348985 0) (0.159409 -0.341463 0) (0.16436 -0.331011 0) (0.168298 -0.315499 0) (0.16957 -0.295853 0) (0.165784 -0.27445 0) (0.156859 -0.252798 0) (0.142223 -0.236299 0) (0.122948 -0.22226 0) (0.104286 -0.207848 0) (0.079751 -0.207137 0) (0.0494557 -0.22638 0) (0.0130172 -0.234895 0) (-0.00345282 0.0384677 0) (0.0186055 0.0477589 0) (0.0564954 0.0340483 0) (0.086478 0.0200644 0) (0.107356 0.0134782 0) (0.122419 0.0152943 0) (0.134796 0.0245551 0) (0.145769 0.0389989 0) (0.156713 0.0563772 0) (0.16871 0.0749166 0) (0.183505 0.0948725 0) (0.202444 0.117648 0) (0.220625 0.141552 0) (0.232549 0.162802 0) (0.237724 0.179332 0) (0.238694 0.19173 0) (0.241035 0.202925 0) (0.250659 0.215936 0) (0.267663 0.230859 0) (0.286759 0.245208 0) (0.303295 0.256763 0) (0.316035 0.26493 0) (0.325841 0.270099 0) (0.333856 0.272745 0) (0.340835 0.273088 0) (0.34726 0.271169 0) (0.353587 0.266998 0) (0.36034 0.260649 0) (0.368063 0.252301 0) (0.377232 0.242249 0) (0.388171 0.230904 0) (0.401021 0.218769 0) (0.415709 0.206408 0) (0.431987 0.19437 0) (0.449516 0.183144 0) (0.467779 0.173149 0) (0.486346 0.164623 0) (0.504848 0.157694 0) (0.522668 0.152464 0) (0.53955 0.148759 0) (0.555307 0.1463 0) (0.569359 0.145051 0) (0.581127 0.144647 0) (0.590911 0.144049 0) (0.598359 0.143583 0) (0.60149 0.143693 0) (0.60264 0.141042 0) (0.601965 0.136487 0) (0.59308 0.135708 0) (0.580164 0.132447 0) (0.568888 0.120116 0) (0.550002 0.111296 0) (0.519822 0.11351 0) (0.485782 0.114425 0) (0.447334 0.106747 0) (0.398112 0.0970473 0) (0.338165 0.0891458 0) (0.273435 0.0771798 0) (0.210481 0.0520715 0) (0.153236 0.00992348 0) (0.103455 -0.0446283 0) (0.0635654 -0.101634 0) (0.038519 -0.150637 0) (0.0324156 -0.185782 0) (0.0395967 -0.209338 0) (0.0469081 -0.227797 0) (0.0465844 -0.244567 0) (0.0395708 -0.25717 0) (0.0308937 -0.260841 0) (0.0241636 -0.252651 0) (0.0196442 -0.23311 0) (0.0159408 -0.205062 0) (0.0112491 -0.172319 0) (0.00377814 -0.138824 0) (-0.00805088 -0.108651 0) (-0.0255915 -0.08568 0) (-0.0496037 -0.0737536 0) (-0.0784161 -0.0769013 0) (-0.105755 -0.0983946 0) (-0.122657 -0.138392 0) (-0.122448 -0.192087 0) (-0.103239 -0.250546 0) (-0.0670406 -0.303668 0) (-0.0178507 -0.343198 0) (0.0393668 -0.364519 0) (0.0961098 -0.36876 0) (0.139695 -0.362334 0) (0.163131 -0.352538 0) (0.170983 -0.342821 0) (0.172286 -0.331701 0) (0.173428 -0.315939 0) (0.173738 -0.295516 0) (0.169978 -0.27297 0) (0.161202 -0.250007 0) (0.146524 -0.232228 0) (0.126619 -0.217667 0) (0.107054 -0.20263 0) (0.0819053 -0.200481 0) (0.0508837 -0.218435 0) (0.013496 -0.227406 0) (-0.00172219 0.0364468 0) (0.0223159 0.0405535 0) (0.0577551 0.026422 0) (0.0843076 0.0144189 0) (0.103249 0.00946393 0) (0.117936 0.0121325 0) (0.130555 0.0218477 0) (0.141659 0.0364698 0) (0.152342 0.0537309 0) (0.163945 0.0718235 0) (0.1781 0.0909201 0) (0.197123 0.113118 0) (0.217557 0.137698 0) (0.232618 0.160486 0) (0.240265 0.178432 0) (0.242336 0.191404 0) (0.243374 0.201843 0) (0.249675 0.21317 0) (0.263915 0.226767 0) (0.282546 0.240941 0) (0.300287 0.253157 0) (0.314515 0.262144 0) (0.325356 0.267926 0) (0.333929 0.270943 0) (0.341207 0.271492 0) (0.347827 0.269659 0) (0.354294 0.265458 0) (0.361128 0.258955 0) (0.368879 0.250331 0) (0.378047 0.239902 0) (0.388996 0.228121 0) (0.401906 0.215538 0) (0.41672 0.202764 0) (0.43321 0.190384 0) (0.451003 0.178921 0) (0.469551 0.168801 0) (0.488447 0.160246 0) (0.507213 0.153412 0) (0.525232 0.148374 0) (0.542328 0.14491 0) (0.558248 0.142788 0) (0.57238 0.142011 0) (0.584221 0.142099 0) (0.59426 0.142004 0) (0.601794 0.142328 0) (0.604953 0.143173 0) (0.60646 0.140998 0) (0.605428 0.13765 0) (0.59601 0.138273 0) (0.583589 0.13532 0) (0.572298 0.123739 0) (0.552595 0.117064 0) (0.522274 0.121053 0) (0.488151 0.123051 0) (0.448616 0.117159 0) (0.397775 0.109888 0) (0.336158 0.103808 0) (0.269734 0.0922874 0) (0.20518 0.0663337 0) (0.146664 0.0225981 0) (0.0960789 -0.0340054 0) (0.0555493 -0.0938384 0) (0.0293971 -0.146799 0) (0.0227766 -0.186055 0) (0.0332167 -0.211693 0) (0.0474933 -0.229434 0) (0.0544276 -0.244369 0) (0.0525625 -0.255729 0) (0.0466279 -0.259253 0) (0.0413005 -0.251467 0) (0.0376285 -0.232236 0) (0.0343455 -0.204144 0) (0.0296511 -0.170915 0) (0.0217033 -0.136515 0) (0.00861563 -0.10508 0) (-0.0115032 -0.0805572 0) (-0.0394905 -0.0671374 0) (-0.0723872 -0.0698807 0) (-0.101846 -0.0929052 0) (-0.118474 -0.136356 0) (-0.117166 -0.194428 0) (-0.0970847 -0.257163 0) (-0.0606627 -0.313774 0) (-0.0127491 -0.355663 0) (0.0423223 -0.378159 0) (0.100193 -0.381155 0) (0.149137 -0.370758 0) (0.176846 -0.356309 0) (0.184383 -0.343575 0) (0.182142 -0.331563 0) (0.179708 -0.315839 0) (0.178312 -0.295013 0) (0.174239 -0.271503 0) (0.165536 -0.24726 0) (0.150848 -0.228129 0) (0.130368 -0.212948 0) (0.109899 -0.197293 0) (0.0841047 -0.193738 0) (0.0523423 -0.210385 0) (0.013987 -0.219779 0) (0.000132484 0.0338689 0) (0.0249772 0.0335852 0) (0.0573892 0.0196207 0) (0.0808111 0.00941196 0) (0.0983625 0.00569191 0) (0.11309 0.00897444 0) (0.126135 0.0191117 0) (0.13743 0.0339809 0) (0.147865 0.0511932 0) (0.159033 0.0688907 0) (0.172492 0.0871187 0) (0.191034 0.108447 0) (0.212962 0.133305 0) (0.231032 0.157528 0) (0.24145 0.177063 0) (0.245257 0.190993 0) (0.246084 0.201203 0) (0.249826 0.211141 0) (0.260938 0.22319 0) (0.278157 0.236724 0) (0.296491 0.249307 0) (0.312136 0.259084 0) (0.324194 0.265574 0) (0.333478 0.269055 0) (0.341089 0.269859 0) (0.347865 0.268132 0) (0.354421 0.263914 0) (0.361313 0.257267 0) (0.369104 0.248374 0) (0.378316 0.237573 0) (0.389344 0.225351 0) (0.402397 0.212311 0) (0.417434 0.19911 0) (0.434243 0.186376 0) (0.452402 0.17467 0) (0.471356 0.164419 0) (0.490687 0.155843 0) (0.509793 0.149119 0) (0.528093 0.14428 0) (0.545445 0.141064 0) (0.56151 0.139296 0) (0.575654 0.138998 0) (0.587514 0.139552 0) (0.597738 0.139956 0) (0.605222 0.141085 0) (0.608372 0.142623 0) (0.61016 0.140961 0) (0.608718 0.138892 0) (0.598975 0.140798 0) (0.587152 0.138103 0) (0.575798 0.127405 0) (0.555415 0.12286 0) (0.52507 0.128536 0) (0.490829 0.131715 0) (0.450263 0.127746 0) (0.397972 0.122944 0) (0.334814 0.118669 0) (0.266756 0.107586 0) (0.20062 0.080764 0) (0.140847 0.0353675 0) (0.0895299 -0.0233429 0) (0.0485891 -0.0859457 0) (0.0215371 -0.142778 0) (0.0136357 -0.186496 0) (0.0256725 -0.215088 0) (0.046099 -0.232729 0) (0.0607785 -0.245695 0) (0.0649369 -0.255292 0) (0.062326 -0.258198 0) (0.058604 -0.250581 0) (0.0559098 -0.231548 0) (0.0532046 -0.203316 0) (0.0485712 -0.169496 0) (0.0400041 -0.134004 0) (0.0253033 -0.100995 0) (0.00232654 -0.0747145 0) (-0.0292183 -0.0597951 0) (-0.0644782 -0.0625149 0) (-0.0936366 -0.0875405 0) (-0.108649 -0.134616 0) (-0.106224 -0.196902 0) (-0.0855681 -0.263766 0) (-0.0487339 -0.323605 0) (-0.00153662 -0.367372 0) (0.0500596 -0.391128 0) (0.105098 -0.393855 0) (0.15694 -0.380223 0) (0.189841 -0.360697 0) (0.198919 -0.344003 0) (0.19385 -0.330584 0) (0.187345 -0.315045 0) (0.183474 -0.294215 0) (0.178654 -0.269995 0) (0.169891 -0.244547 0) (0.1552 -0.224014 0) (0.134198 -0.208113 0) (0.112825 -0.191839 0) (0.0863565 -0.186908 0) (0.0538365 -0.202228 0) (0.0144921 -0.212013 0) (0.00191348 0.030874 0) (0.0264706 0.0270296 0) (0.0556825 0.0136169 0) (0.0763622 0.00492598 0) (0.092996 0.00205363 0) (0.108028 0.0057664 0) (0.121562 0.0163328 0) (0.133045 0.031528 0) (0.143261 0.0487633 0) (0.154 0.0661188 0) (0.166808 0.0835154 0) (0.184551 0.103784 0) (0.207202 0.128508 0) (0.227918 0.153949 0) (0.241251 0.175154 0) (0.247215 0.190324 0) (0.248711 0.200777 0) (0.250854 0.209739 0) (0.25895 0.220232 0) (0.273994 0.232743 0) (0.292137 0.245323 0) (0.308905 0.255758 0) (0.32227 0.263009 0) (0.332444 0.267056 0) (0.340486 0.268187 0) (0.347413 0.266601 0) (0.354001 0.262377 0) (0.360893 0.25559 0) (0.368692 0.24643 0) (0.377945 0.235252 0) (0.389081 0.22258 0) (0.402327 0.209068 0) (0.417665 0.195424 0) (0.434882 0.182322 0) (0.45351 0.170365 0) (0.473001 0.159976 0) (0.492885 0.151389 0) (0.512444 0.144794 0) (0.531157 0.140161 0) (0.548852 0.137213 0) (0.565092 0.13583 0) (0.579233 0.136022 0) (0.591106 0.137017 0) (0.601452 0.137927 0) (0.608755 0.139874 0) (0.611855 0.142057 0) (0.613836 0.140945 0) (0.611954 0.140192 0) (0.602075 0.143252 0) (0.590891 0.140794 0) (0.579419 0.131103 0) (0.558486 0.128656 0) (0.528202 0.135952 0) (0.493816 0.140408 0) (0.452306 0.138477 0) (0.39874 0.136167 0) (0.334174 0.133705 0) (0.264554 0.123069 0) (0.196863 0.0953466 0) (0.135837 0.048224 0) (0.0838073 -0.0126744 0) (0.0426428 -0.0780202 0) (0.0150983 -0.138554 0) (0.00568584 -0.186839 0) (0.0176449 -0.219164 0) (0.0427742 -0.237529 0) (0.0652386 -0.248664 0) (0.0763036 -0.256018 0) (0.0777531 -0.257762 0) (0.0758697 -0.25001 0) (0.074175 -0.231058 0) (0.0721015 -0.202581 0) (0.0675578 -0.168028 0) (0.0582814 -0.131256 0) (0.0418115 -0.0964059 0) (0.0162197 -0.0681803 0) (-0.0176043 -0.052143 0) (-0.0529873 -0.0552802 0) (-0.0802435 -0.08262 0) (-0.0938675 -0.133088 0) (-0.091012 -0.19939 0) (-0.0703787 -0.27033 0) (-0.0333148 -0.333329 0) (0.0142603 -0.378469 0) (0.0634493 -0.402998 0) (0.113206 -0.406018 0) (0.164156 -0.390332 0) (0.201596 -0.365924 0) (0.213825 -0.34444 0) (0.207135 -0.328864 0) (0.19645 -0.31345 0) (0.189393 -0.292987 0) (0.183317 -0.268371 0) (0.174303 -0.241848 0) (0.159591 -0.219887 0) (0.138112 -0.203172 0) (0.115839 -0.186268 0) (0.0886675 -0.179988 0) (0.0553713 -0.193963 0) (0.0150134 -0.204106 0) (0.00346013 0.0276178 0) (0.0268909 0.020999 0) (0.0529245 0.00835105 0) (0.0712489 0.000846943 0) (0.0873163 -0.00152716 0) (0.102751 0.0024915 0) (0.116742 0.0135164 0) (0.12837 0.0291106 0) (0.138423 0.0464315 0) (0.148793 0.0634933 0) (0.161061 0.0801192 0) (0.177908 0.0992326 0) (0.200632 0.123452 0) (0.223467 0.149808 0) (0.239698 0.172673 0) (0.248088 0.189281 0) (0.250899 0.20036 0) (0.252401 0.208798 0) (0.257979 0.217911 0) (0.270412 0.229158 0) (0.287545 0.241351 0) (0.304925 0.252217 0) (0.31953 0.260213 0) (0.330745 0.264912 0) (0.339364 0.26646 0) (0.346491 0.265069 0) (0.35308 0.260862 0) (0.359906 0.25394 0) (0.367649 0.244508 0) (0.376902 0.232942 0) (0.388129 0.219805 0) (0.401581 0.2058 0) (0.41726 0.191691 0) (0.434941 0.178205 0) (0.454122 0.165981 0) (0.474265 0.155446 0) (0.494813 0.146858 0) (0.514966 0.140404 0) (0.534256 0.13599 0) (0.552418 0.133338 0) (0.568921 0.132379 0) (0.58311 0.133076 0) (0.595049 0.134498 0) (0.605468 0.135938 0) (0.612482 0.138712 0) (0.615504 0.141491 0) (0.617584 0.140962 0) (0.615254 0.14153 0) (0.605394 0.145615 0) (0.594834 0.1434 0) (0.583191 0.134825 0) (0.56182 0.134432 0) (0.531657 0.143295 0) (0.497115 0.149119 0) (0.45477 0.149319 0) (0.400108 0.149514 0) (0.334273 0.148892 0) (0.263175 0.138717 0) (0.193977 0.110073 0) (0.131693 0.061164 0) (0.0789027 -0.00201977 0) (0.0375972 -0.0701324 0) (0.0100156 -0.134197 0) (-0.000574414 -0.18692 0) (0.010048 -0.223516 0) (0.0379124 -0.243577 0) (0.0675598 -0.253307 0) (0.0862707 -0.258072 0) (0.0926911 -0.258056 0) (0.0930195 -0.249777 0) (0.0923017 -0.230753 0) (0.0908167 -0.201934 0) (0.0863677 -0.166502 0) (0.0763978 -0.128259 0) (0.0583463 -0.0914214 0) (0.0309271 -0.0612231 0) (-0.00338392 -0.0445834 0) (-0.0370211 -0.0484973 0) (-0.0622805 -0.0780838 0) (-0.0751282 -0.13166 0) (-0.0722161 -0.201841 0) (-0.0520329 -0.276837 0) (-0.0155093 -0.343007 0) (0.0324621 -0.389372 0) (0.0812307 -0.413905 0) (0.125837 -0.417044 0) (0.17233 -0.400434 0) (0.212161 -0.371956 0) (0.228433 -0.345197 0) (0.221576 -0.326589 0) (0.207028 -0.311007 0) (0.19621 -0.291203 0) (0.188322 -0.26655 0) (0.178809 -0.239135 0) (0.164033 -0.215751 0) (0.142113 -0.198132 0) (0.118946 -0.18058 0) (0.091044 -0.172976 0) (0.0569512 -0.185588 0) (0.0155531 -0.196057 0) (0.00467834 0.0242492 0) (0.0263997 0.0155567 0) (0.0493563 0.0037605 0) (0.0656641 -0.00290754 0) (0.0813687 -0.0050788 0) (0.0971477 -0.000844936 0) (0.111495 0.0106791 0) (0.12322 0.0267281 0) (0.133195 0.0441782 0) (0.143314 0.0609866 0) (0.155193 0.0769114 0) (0.171216 0.094855 0) (0.193552 0.118273 0) (0.217906 0.145193 0) (0.236872 0.169622 0) (0.247837 0.18779 0) (0.2524 0.19979 0) (0.254095 0.208132 0) (0.257884 0.216167 0) (0.267651 0.226078 0) (0.283073 0.237547 0) (0.3004 0.248554 0) (0.315982 0.257196 0) (0.328301 0.262595 0) (0.337653 0.264652 0) (0.345086 0.263529 0) (0.351693 0.259376 0) (0.358409 0.252331 0) (0.366026 0.242623 0) (0.375213 0.230655 0) (0.386484 0.21703 0) (0.400117 0.202508 0) (0.416138 0.187906 0) (0.434301 0.174013 0) (0.454085 0.161502 0) (0.474957 0.150808 0) (0.496253 0.142223 0) (0.517135 0.135914 0) (0.537168 0.131732 0) (0.55595 0.129412 0) (0.57285 0.128923 0) (0.58721 0.130143 0) (0.599329 0.131991 0) (0.6098 0.134003 0) (0.616461 0.137611 0) (0.619398 0.140937 0) (0.621491 0.14102 0) (0.618723 0.142892 0) (0.608997 0.147879 0) (0.599002 0.145931 0) (0.587134 0.138565 0) (0.565425 0.140169 0) (0.535422 0.15056 0) (0.500732 0.157834 0) (0.457676 0.160231 0) (0.4021 0.16295 0) (0.335142 0.164193 0) (0.262669 0.154501 0) (0.192036 0.124934 0) (0.128488 0.0741844 0) (0.0748369 0.00862358 0) (0.0333298 -0.0623346 0) (0.00604839 -0.129824 0) (-0.00500029 -0.186736 0) (0.00381657 -0.227742 0) (0.0322749 -0.250495 0) (0.0677557 -0.259548 0) (0.0944787 -0.261607 0) (0.106887 -0.259226 0) (0.110032 -0.249921 0) (0.110339 -0.230616 0) (0.109355 -0.201357 0) (0.105013 -0.164923 0) (0.0945153 -0.125069 0) (0.0754214 -0.0862214 0) (0.0473752 -0.0542894 0) (0.0142979 -0.0372854 0) (-0.0167591 -0.0423361 0) (-0.0404464 -0.073849 0) (-0.0525572 -0.130333 0) (-0.0493367 -0.204279 0) (-0.0296415 -0.283129 0) (0.00544239 -0.352383 0) (0.0523348 -0.400252 0) (0.101482 -0.424252 0) (0.142851 -0.426774 0) (0.182868 -0.409871 0) (0.222069 -0.378511 0) (0.242296 -0.346485 0) (0.236686 -0.324001 0) (0.218974 -0.307741 0) (0.20403 -0.28876 0) (0.193766 -0.264442 0) (0.183452 -0.23637 0) (0.168536 -0.211603 0) (0.146204 -0.193 0) (0.122151 -0.174777 0) (0.093492 -0.165869 0) (0.0585807 -0.177101 0) (0.0161131 -0.187861 0) (0.00553691 0.0209008 0) (0.0251575 0.0107326 0) (0.0451649 -0.000240515 0) (0.0597143 -0.00638431 0) (0.0750936 -0.00859403 0) (0.0910314 -0.00421213 0) (0.105608 0.00784224 0) (0.117405 0.0243743 0) (0.127415 0.041974 0) (0.137453 0.058562 0) (0.149122 0.0738551 0) (0.164491 0.0906712 0) (0.186183 0.113082 0) (0.211475 0.140209 0) (0.232888 0.166029 0) (0.246475 0.185813 0) (0.253075 0.198949 0) (0.255613 0.207563 0) (0.258416 0.214882 0) (0.265803 0.223543 0) (0.279054 0.234056 0) (0.295617 0.24489 0) (0.311728 0.254004 0) (0.325063 0.260093 0) (0.335264 0.262734 0) (0.343138 0.261961 0) (0.349835 0.257918 0) (0.35644 0.250773 0) (0.363886 0.240789 0) (0.372947 0.228405 0) (0.384202 0.214269 0) (0.397972 0.199198 0) (0.414307 0.184073 0) (0.432939 0.169746 0) (0.453341 0.156921 0) (0.474969 0.146053 0) (0.497051 0.137467 0) (0.518766 0.131297 0) (0.539675 0.127354 0) (0.559222 0.125401 0) (0.576684 0.125426 0) (0.591396 0.127188 0) (0.603861 0.12948 0) (0.614406 0.132125 0) (0.620711 0.136574 0) (0.623584 0.140404 0) (0.625625 0.141126 0) (0.622444 0.144264 0) (0.612926 0.150043 0) (0.603401 0.148404 0) (0.59126 0.142316 0) (0.569299 0.145855 0) (0.539483 0.157741 0) (0.504668 0.166536 0) (0.461042 0.171178 0) (0.404734 0.176436 0) (0.336807 0.179569 0) (0.263086 0.170394 0) (0.191118 0.139914 0) (0.126319 0.0872958 0) (0.07168 0.0192821 0) (0.0297784 -0.0546411 0) (0.00289113 -0.125551 0) (-0.00781225 -0.186365 0) (-0.000390043 -0.231632 0) (0.0268982 -0.25783 0) (0.066179 -0.267173 0) (0.100664 -0.266721 0) (0.120033 -0.261451 0) (0.126856 -0.250528 0) (0.128425 -0.230642 0) (0.127898 -0.20084 0) (0.123718 -0.163322 0) (0.113013 -0.121802 0) (0.0936641 -0.0810505 0) (0.0663101 -0.0477113 0) (0.0356088 -0.0304301 0) (0.00714478 -0.0366581 0) (-0.0149369 -0.0700264 0) (-0.0258195 -0.129231 0) (-0.0219328 -0.206726 0) (-0.00263391 -0.289019 0) (0.0306296 -0.361153 0) (0.0746685 -0.410864 0) (0.123087 -0.434299 0) (0.163125 -0.435387 0) (0.196578 -0.418181 0) (0.232128 -0.385155 0) (0.255236 -0.348369 0) (0.251982 -0.321347 0) (0.232087 -0.303741 0) (0.212912 -0.285582 0) (0.199735 -0.261956 0) (0.188276 -0.233509 0) (0.173116 -0.207438 0) (0.150391 -0.187783 0) (0.125459 -0.168859 0) (0.0960172 -0.158665 0) (0.0602642 -0.1685 0) (0.0166954 -0.179516 0) (0.0060461 0.0176849 0) (0.0232968 0.00653547 0) (0.040485 -0.0037016 0) (0.0534356 -0.00960933 0) (0.0683627 -0.0120436 0) (0.0841854 -0.00756248 0) (0.09887 0.00502442 0) (0.110757 0.0220358 0) (0.120944 0.0397825 0) (0.131107 0.0561763 0) (0.142762 0.0709047 0) (0.157699 0.0866718 0) (0.178666 0.107958 0) (0.204395 0.134962 0) (0.227886 0.161944 0) (0.244053 0.183338 0) (0.252857 0.19776 0) (0.256708 0.206941 0) (0.259278 0.213913 0) (0.264812 0.221527 0) (0.275737 0.23098 0) (0.290905 0.241362 0) (0.306964 0.250718 0) (0.321056 0.257421 0) (0.332118 0.260685 0) (0.340558 0.260339 0) (0.347453 0.256472 0) (0.353997 0.249265 0) (0.361269 0.239015 0) (0.370169 0.226204 0) (0.381364 0.211533 0) (0.395234 0.195883 0) (0.41185 0.180203 0) (0.430924 0.165411 0) (0.451937 0.152241 0) (0.474305 0.141181 0) (0.49717 0.132582 0) (0.519766 0.126535 0) (0.541616 0.122833 0) (0.562036 0.121274 0) (0.580214 0.121848 0) (0.595492 0.124169 0) (0.608499 0.126939 0) (0.619184 0.130294 0) (0.625201 0.135591 0) (0.628072 0.139892 0) (0.630024 0.14128 0) (0.626469 0.145637 0) (0.617196 0.152115 0) (0.608026 0.150834 0) (0.595573 0.146076 0) (0.573433 0.151479 0) (0.543826 0.164834 0) (0.508926 0.175204 0) (0.464879 0.182121 0) (0.408023 0.18993 0) (0.339288 0.194985 0) (0.264474 0.186368 0) (0.191306 0.154994 0) (0.125302 0.100505 0) (0.0695572 0.0299918 0) (0.0269906 -0.0470226 0) (0.000332592 -0.121443 0) (-0.00947657 -0.185945 0) (-0.00242415 -0.235191 0) (0.0228677 -0.265156 0) (0.063554 -0.275829 0) (0.104758 -0.273411 0) (0.131785 -0.264915 0) (0.143347 -0.251734 0) (0.146683 -0.230867 0) (0.146699 -0.200391 0) (0.142812 -0.161757 0) (0.132338 -0.118607 0) (0.113608 -0.0761429 0) (0.0880745 -0.0416845 0) (0.0602762 -0.0242423 0) (0.0343015 -0.031338 0) (0.0142884 -0.066599 0) (0.00509134 -0.128528 0) (0.00963979 -0.209122 0) (0.028425 -0.294491 0) (0.0599536 -0.369221 0) (0.100353 -0.420806 0) (0.146029 -0.443998 0) (0.185387 -0.44316 0) (0.21353 -0.425167 0) (0.24317 -0.39141 0) (0.267333 -0.350768 0) (0.267051 -0.318848 0) (0.246099 -0.299146 0) (0.222862 -0.281636 0) (0.206311 -0.259006 0) (0.193326 -0.230501 0) (0.177786 -0.203243 0) (0.154676 -0.182486 0) (0.128875 -0.162829 0) (0.0986252 -0.151362 0) (0.0620059 -0.159782 0) (0.0173021 -0.171018 0) (0.00623649 0.0146943 0) (0.0209323 0.00296552 0) (0.0354072 -0.00664235 0) (0.0467996 -0.0125759 0) (0.0610119 -0.015371 0) (0.0764041 -0.0108515 0) (0.0911081 0.00223589 0) (0.103153 0.01969 0) (0.11368 0.0375626 0) (0.124194 0.0537833 0) (0.13604 0.0680113 0) (0.150779 0.0828279 0) (0.171075 0.102948 0) (0.196856 0.129552 0) (0.222018 0.157432 0) (0.240647 0.180374 0) (0.251739 0.196177 0) (0.25722 0.20615 0) (0.260186 0.213107 0) (0.264511 0.219952 0) (0.273249 0.228372 0) (0.286578 0.238095 0) (0.301963 0.247447 0) (0.316395 0.254627 0) (0.328189 0.258502 0) (0.337249 0.258641 0) (0.344453 0.255017 0) (0.351021 0.247795 0) (0.35816 0.237299 0) (0.366905 0.224056 0) (0.378029 0.20883 0) (0.391985 0.19257 0) (0.408867 0.176303 0) (0.428375 0.161015 0) (0.449992 0.147472 0) (0.473069 0.136204 0) (0.496689 0.127573 0) (0.52016 0.121627 0) (0.542945 0.118162 0) (0.564275 0.117012 0) (0.583276 0.118153 0) (0.599318 0.121042 0) (0.613063 0.124338 0) (0.623993 0.128489 0) (0.629857 0.134641 0) (0.632829 0.139393 0) (0.634691 0.141478 0) (0.630818 0.147004 0) (0.621798 0.154108 0) (0.612862 0.153241 0) (0.600069 0.149841 0) (0.577814 0.157032 0) (0.548437 0.171831 0) (0.513507 0.183816 0) (0.469194 0.193023 0) (0.411972 0.203391 0) (0.342603 0.210406 0) (0.266875 0.202388 0) (0.192676 0.170149 0) (0.125556 0.113818 0) (0.0686263 0.0407929 0) (0.0251232 -0.0394149 0) (-0.00165874 -0.117504 0) (-0.0104603 -0.185658 0) (-0.00263862 -0.238514 0) (0.0209706 -0.272177 0) (0.0609021 -0.285067 0) (0.106982 -0.281538 0) (0.141838 -0.269767 0) (0.159254 -0.253718 0) (0.165141 -0.231376 0) (0.165981 -0.20005 0) (0.162613 -0.160304 0) (0.152865 -0.115636 0) (0.135561 -0.0716817 0) (0.112607 -0.0363216 0) (0.0878538 -0.0187726 0) (0.0645689 -0.0265625 0) (0.0470995 -0.0635511 0) (0.0396933 -0.128039 0) (0.044719 -0.211412 0) (0.0626928 -0.299625 0) (0.092487 -0.376647 0) (0.12944 -0.429839 0) (0.170777 -0.453116 0) (0.208767 -0.450282 0) (0.233213 -0.430849 0) (0.255846 -0.396868 0) (0.278865 -0.353481 0) (0.281587 -0.316659 0) (0.260701 -0.294129 0) (0.233831 -0.276928 0) (0.213561 -0.255518 0) (0.198649 -0.227292 0) (0.182563 -0.199006 0) (0.159064 -0.177112 0) (0.132404 -0.156688 0) (0.101321 -0.143958 0) (0.06381 -0.150944 0) (0.0179353 -0.162362 0) (0.00614599 0.012004 0) (0.0181558 1.02411e-05 0) (0.0299865 -0.00909582 0) (0.0397433 -0.0152515 0) (0.0528781 -0.0185065 0) (0.0675285 -0.0140372 0) (0.0822064 -0.000544776 0) (0.0945176 0.017308 0) (0.105561 0.0352715 0) (0.116658 0.0513361 0) (0.128905 0.0651271 0) (0.143671 0.0791004 0) (0.163432 0.0980738 0) (0.189009 0.12406 0) (0.215435 0.152562 0) (0.236346 0.176944 0) (0.249748 0.194177 0) (0.257056 0.205107 0) (0.260902 0.212332 0) (0.264668 0.218707 0) (0.271588 0.226227 0) (0.282879 0.235184 0) (0.297035 0.244309 0) (0.311285 0.251788 0) (0.323531 0.256211 0) (0.333154 0.256858 0) (0.340726 0.253533 0) (0.347404 0.246346 0) (0.354477 0.235629 0) (0.363107 0.221956 0) (0.374184 0.206157 0) (0.388245 0.189258 0) (0.405411 0.172375 0) (0.425375 0.156559 0) (0.447617 0.14262 0) (0.471392 0.131131 0) (0.495756 0.122451 0) (0.520073 0.116587 0) (0.543732 0.11335 0) (0.565936 0.112609 0) (0.585794 0.114318 0) (0.602739 0.117771 0) (0.617376 0.121645 0) (0.628671 0.12668 0) (0.63457 0.133693 0) (0.637782 0.138892 0) (0.639593 0.14171 0) (0.635472 0.148358 0) (0.626697 0.156036 0) (0.617879 0.155637 0) (0.604734 0.153605 0) (0.582426 0.162507 0) (0.553301 0.178724 0) (0.518409 0.19235 0) (0.473987 0.203848 0) (0.416582 0.216781 0) (0.346763 0.225792 0) (0.270322 0.21841 0) (0.195298 0.185344 0) (0.127184 0.127223 0) (0.0690344 0.0517172 0) (0.0243836 -0.0317425 0) (-0.00292591 -0.113679 0) (-0.0110149 -0.185616 0) (-0.00165847 -0.241801 0) (0.0214396 -0.278792 0) (0.0593297 -0.294429 0) (0.107892 -0.290819 0) (0.150006 -0.276079 0) (0.174241 -0.256679 0) (0.183695 -0.2323 0) (0.185858 -0.199887 0) (0.183333 -0.15905 0) (0.174802 -0.113016 0) (0.159572 -0.067788 0) (0.139604 -0.0316763 0) (0.117995 -0.0140272 0) (0.0977802 -0.0224841 0) (0.0831153 -0.0610032 0) (0.0774601 -0.12763 0) (0.0829089 -0.213576 0) (0.0998225 -0.30439 0) (0.127507 -0.383471 0) (0.161331 -0.437913 0) (0.197667 -0.461411 0) (0.232901 -0.456805 0) (0.25485 -0.435372 0) (0.270498 -0.401245 0) (0.290225 -0.356232 0) (0.295412 -0.314862 0) (0.275578 -0.288875 0) (0.245722 -0.271505 0) (0.221531 -0.25143 0) (0.204294 -0.223823 0) (0.187465 -0.194705 0) (0.16356 -0.171663 0) (0.136049 -0.150438 0) (0.104111 -0.136451 0) (0.0656808 -0.141983 0) (0.0185971 -0.153544 0) (0.00581144 0.0096736 0) (0.0150422 -0.00233326 0) (0.0242538 -0.0110669 0) (0.0321899 -0.0175837 0) (0.0438324 -0.0213772 0) (0.0574646 -0.0170868 0) (0.0721156 -0.00332529 0) (0.0848367 0.014859 0) (0.0965663 0.0328675 0) (0.10847 0.0487899 0) (0.121324 0.0622078 0) (0.136326 0.0754468 0) (0.155728 0.0933343 0) (0.180964 0.118551 0) (0.20828 0.147407 0) (0.231248 0.173079 0) (0.246937 0.191754 0) (0.256187 0.20376 0) (0.261256 0.211476 0) (0.265041 0.21767 0) (0.270645 0.224492 0) (0.279951 0.232681 0) (0.292478 0.24141 0) (0.306002 0.249001 0) (0.318293 0.253865 0) (0.328288 0.255003 0) (0.336195 0.252011 0) (0.343025 0.2449 0) (0.350089 0.233991 0) (0.358654 0.219893 0) (0.369727 0.203504 0) (0.383933 0.18594 0) (0.401425 0.16841 0) (0.421906 0.152038 0) (0.444829 0.137683 0) (0.469341 0.125966 0) (0.494491 0.117223 0) (0.519648 0.11143 0) (0.544116 0.108417 0) (0.567121 0.108078 0) (0.587798 0.110336 0) (0.605701 0.114337 0) (0.621307 0.118839 0) (0.633072 0.124831 0) (0.639215 0.132709 0) (0.64283 0.138366 0) (0.644665 0.141962 0) (0.640383 0.149695 0) (0.631839 0.157914 0) (0.623041 0.158036 0) (0.609549 0.157364 0) (0.587247 0.167895 0) (0.558401 0.185505 0) (0.523628 0.200782 0) (0.479257 0.214559 0) (0.421852 0.230059 0) (0.351773 0.241098 0) (0.274844 0.234387 0) (0.199219 0.200546 0) (0.130246 0.140719 0) (0.0708737 0.0627871 0) (0.024947 -0.0239425 0) (-0.00320674 -0.109874 0) (-0.0110903 -0.185821 0) (-6.27695e-05 -0.245248 0) (0.0239365 -0.285094 0) (0.059723 -0.303559 0) (0.108347 -0.300853 0) (0.156323 -0.283803 0) (0.187953 -0.2608 0) (0.202106 -0.233813 0) (0.206308 -0.200003 0) (0.205043 -0.15808 0) (0.19818 -0.110846 0) (0.18548 -0.0645338 0) (0.168702 -0.0277751 0) (0.150438 -0.0100438 0) (0.133643 -0.0191107 0) (0.12185 -0.0589332 0) (0.11804 -0.127404 0) (0.124077 -0.215619 0) (0.139783 -0.308725 0) (0.16476 -0.389657 0) (0.195352 -0.445041 0) (0.22668 -0.468711 0) (0.257752 -0.462673 0) (0.277673 -0.438909 0) (0.287137 -0.404404 0) (0.301832 -0.358723 0) (0.308473 -0.313456 0) (0.290435 -0.28356 0) (0.25839 -0.265449 0) (0.230248 -0.246703 0) (0.210307 -0.220038 0) (0.19251 -0.19032 0) (0.168168 -0.16614 0) (0.139816 -0.14408 0) (0.106999 -0.12884 0) (0.0676227 -0.132896 0) (0.0192897 -0.144557 0) (0.00527046 0.00775003 0) (0.0116538 -0.00406183 0) (0.0182226 -0.0125448 0) (0.0240725 -0.0195075 0) (0.0338045 -0.0239164 0) (0.046203 -0.0199781 0) (0.0608565 -0.00610703 0) (0.0741421 0.0123113 0) (0.0867143 0.0303129 0) (0.0996296 0.0461038 0) (0.113283 0.0592133 0) (0.128706 0.0718259 0) (0.147939 0.088716 0) (0.172791 0.113073 0) (0.200683 0.142037 0) (0.225453 0.168823 0) (0.243368 0.188916 0) (0.25462 0.202079 0) (0.261138 0.210457 0) (0.265411 0.216723 0) (0.270241 0.223084 0) (0.277821 0.23059 0) (0.288522 0.238835 0) (0.300846 0.24637 0) (0.312709 0.25154 0) (0.322761 0.253113 0) (0.330857 0.250459 0) (0.3378 0.243453 0) (0.344864 0.232374 0) (0.35339 0.217856 0) (0.36449 0.200862 0) (0.378878 0.182605 0) (0.396746 0.164396 0) (0.417816 0.147435 0) (0.4415 0.132648 0) (0.466841 0.120694 0) (0.492888 0.111881 0) (0.518948 0.106162 0) (0.544224 0.10338 0) (0.567974 0.103438 0) (0.589403 0.106217 0) (0.608238 0.110739 0) (0.624799 0.115908 0) (0.637095 0.122913 0) (0.643678 0.13165 0) (0.647857 0.137788 0) (0.649817 0.142213 0) (0.645477 0.151004 0) (0.637155 0.159751 0) (0.628304 0.160443 0) (0.614492 0.161109 0) (0.592255 0.173189 0) (0.563725 0.192163 0) (0.529158 0.209087 0) (0.484996 0.225124 0) (0.427772 0.243187 0) (0.357634 0.256281 0) (0.280454 0.250272 0) (0.204465 0.215711 0) (0.134753 0.154273 0) (0.0741506 0.0740082 0) (0.0268828 -0.0159838 0) (-0.00227552 -0.106002 0) (-0.0104066 -0.1862 0) (0.00187876 -0.248957 0) (0.0277835 -0.291296 0) (0.0624819 -0.312281 0) (0.10936 -0.311194 0) (0.161101 -0.292755 0) (0.200095 -0.26621 0) (0.220035 -0.236107 0) (0.227172 -0.200524 0) (0.227672 -0.157479 0) (0.222874 -0.109191 0) (0.213001 -0.0619553 0) (0.199571 -0.0246394 0) (0.184916 -0.0068547 0) (0.171737 -0.0164471 0) (0.162879 -0.0573557 0) (0.161143 -0.127417 0) (0.167898 -0.217539 0) (0.182332 -0.312553 0) (0.204117 -0.395106 0) (0.231006 -0.451224 0) (0.257523 -0.474923 0) (0.283395 -0.467776 0) (0.301081 -0.441608 0) (0.305503 -0.406328 0) (0.314045 -0.360679 0) (0.320823 -0.312371 0) (0.305016 -0.278338 0) (0.27166 -0.258872 0) (0.239713 -0.241322 0) (0.216733 -0.215882 0) (0.197719 -0.185824 0) (0.172893 -0.160542 0) (0.143709 -0.137616 0) (0.109992 -0.121121 0) (0.0696402 -0.12368 0) (0.0200155 -0.135397 0) (0.00455767 0.00626854 0) (0.00804449 -0.00518184 0) (0.011903 -0.0135091 0) (0.0153543 -0.020953 0) (0.0227964 -0.0260679 0) (0.0338113 -0.022702 0) (0.0485121 -0.00892019 0) (0.0625165 0.00963465 0) (0.0760588 0.0275765 0) (0.0901624 0.0432427 0) (0.104789 0.0561092 0) (0.120795 0.0682007 0) (0.140037 0.0841974 0) (0.164534 0.107653 0) (0.192752 0.136513 0) (0.21906 0.164218 0) (0.239108 0.185675 0) (0.252388 0.200048 0) (0.260499 0.20922 0) (0.26561 0.215768 0) (0.270173 0.221904 0) (0.276414 0.228875 0) (0.285306 0.236626 0) (0.296096 0.243983 0) (0.307065 0.249325 0) (0.316777 0.251251 0) (0.324804 0.248909 0) (0.331722 0.242017 0) (0.338724 0.23078 0) (0.347183 0.21584 0) (0.358303 0.198225 0) (0.37288 0.179244 0) (0.391153 0.160319 0) (0.412871 0.142734 0) (0.437389 0.127495 0) (0.463675 0.115292 0) (0.490779 0.106403 0) (0.517883 0.100772 0) (0.544067 0.0982413 0) (0.568598 0.0987031 0) (0.590746 0.101978 0) (0.610453 0.106994 0) (0.627872 0.11286 0) (0.640699 0.120907 0) (0.647875 0.130483 0) (0.652758 0.137131 0) (0.65495 0.142441 0) (0.650664 0.152278 0) (0.642565 0.161554 0) (0.633619 0.162861 0) (0.619534 0.164831 0) (0.597428 0.17838 0) (0.569255 0.198685 0) (0.53499 0.217242 0) (0.491193 0.235507 0) (0.434329 0.256128 0) (0.364338 0.271295 0) (0.287155 0.266016 0) (0.211028 0.230793 0) (0.140666 0.167852 0) (0.0787989 0.0853805 0) (0.0301409 -0.00785439 0) (-4.13094e-05 -0.102014 0) (-0.00863774 -0.186651 0) (0.00427208 -0.252922 0) (0.0323197 -0.29762 0) (0.0674382 -0.320613 0) (0.111862 -0.321442 0) (0.164943 -0.302624 0) (0.210514 -0.272947 0) (0.237096 -0.239368 0) (0.248175 -0.201598 0) (0.251033 -0.15733 0) (0.248651 -0.1081 0) (0.241819 -0.0600769 0) (0.231909 -0.0222874 0) (0.221095 -0.004471 0) (0.21161 -0.0144997 0) (0.20583 -0.0562969 0) (0.206333 -0.127694 0) (0.213788 -0.219351 0) (0.226933 -0.315844 0) (0.245304 -0.399732 0) (0.267934 -0.456442 0) (0.289762 -0.480004 0) (0.309868 -0.471996 0) (0.324674 -0.443564 0) (0.325174 -0.407089 0) (0.327114 -0.361883 0) (0.332594 -0.311485 0) (0.319123 -0.273327 0) (0.285336 -0.251903 0) (0.249898 -0.235294 0) (0.223611 -0.211304 0) (0.203114 -0.181188 0) (0.177741 -0.154865 0) (0.147732 -0.131048 0) (0.113094 -0.113294 0) (0.0717381 -0.114331 0) (0.0207769 -0.126058 0) (0.00370564 0.00525344 0) (0.00426376 -0.00569338 0) (0.00531213 -0.0139322 0) (0.00604227 -0.021856 0) (0.0108834 -0.0277836 0) (0.0204232 -0.025263 0) (0.0352155 -0.0117899 0) (0.0500837 0.00680402 0) (0.0646862 0.0246359 0) (0.0801183 0.0401786 0) (0.0958653 0.0528673 0) (0.11259 0.0645394 0) (0.132 0.0797536 0) (0.156211 0.102307 0) (0.184577 0.130888 0) (0.212163 0.159311 0) (0.234223 0.182052 0) (0.249536 0.197665 0) (0.259327 0.207728 0) (0.265522 0.214726 0) (0.270247 0.220855 0) (0.275591 0.227473 0) (0.282863 0.23479 0) (0.291959 0.241907 0) (0.301653 0.247306 0) (0.31061 0.249489 0) (0.318235 0.247413 0) (0.3249 0.240622 0) (0.331694 0.229226 0) (0.339995 0.213856 0) (0.351077 0.195596 0) (0.36581 0.175858 0) (0.384483 0.156174 0) (0.406867 0.137927 0) (0.432253 0.122207 0) (0.459578 0.10973 0) (0.487889 0.100755 0) (0.516211 0.0952283 0) (0.543504 0.0929775 0) (0.568973 0.093865 0) (0.591914 0.0976294 0) (0.612458 0.103127 0) (0.630607 0.109713 0) (0.643912 0.118804 0) (0.651768 0.129186 0) (0.657447 0.136375 0) (0.659973 0.142624 0) (0.655851 0.153504 0) (0.647988 0.163326 0) (0.638939 0.165285 0) (0.624646 0.168517 0) (0.602741 0.183457 0) (0.574976 0.205059 0) (0.541112 0.225223 0) (0.497835 0.24568 0) (0.441507 0.268843 0) (0.371872 0.286095 0) (0.294937 0.281571 0) (0.218874 0.245762 0) (0.147905 0.181472 0) (0.0846912 0.096908 0) (0.0345834 0.000438595 0) (0.00343198 -0.0979123 0) (-0.00558218 -0.187053 0) (0.00745966 -0.257086 0) (0.0371915 -0.304209 0) (0.0740121 -0.328716 0) (0.116454 -0.331331 0) (0.168663 -0.313016 0) (0.21927 -0.280931 0) (0.252916 -0.243752 0) (0.268965 -0.20338 0) (0.274858 -0.157719 0) (0.275228 -0.107611 0) (0.271621 -0.058928 0) (0.265416 -0.0207601 0) (0.258586 -0.00291579 0) (0.252842 -0.0132712 0) (0.250299 -0.0557736 0) (0.253054 -0.128241 0) (0.261088 -0.221057 0) (0.272932 -0.318605 0) (0.287899 -0.403492 0) (0.305836 -0.460666 0) (0.32294 -0.48395 0) (0.337109 -0.475234 0) (0.348226 -0.444821 0) (0.345665 -0.406806 0) (0.341152 -0.36219 0) (0.343967 -0.310641 0) (0.332619 -0.268604 0) (0.299217 -0.244679 0) (0.26075 -0.228653 0) (0.230974 -0.206266 0) (0.208718 -0.176381 0) (0.182718 -0.149106 0) (0.151889 -0.124377 0) (0.116312 -0.105357 0) (0.0739212 -0.104846 0) (0.0215766 -0.116532 0) (0.00274567 0.00472039 0) (0.000360188 -0.00559526 0) (-0.001517 -0.0137836 0) (-0.0038059 -0.0221724 0) (-0.00179562 -0.0290304 0) (0.00622029 -0.0276612 0) (0.0211331 -0.0147432 0) (0.0369974 0.00379966 0) (0.0527098 0.0214775 0) (0.0695696 0.0368907 0) (0.0865551 0.0494657 0) (0.104105 0.0608168 0) (0.123815 0.0753603 0) (0.147831 0.0970393 0) (0.176229 0.125205 0) (0.204852 0.15415 0) (0.228779 0.17807 0) (0.24611 0.19493 0) (0.257637 0.20596 0) (0.265078 0.213541 0) (0.270302 0.21985 0) (0.275178 0.226305 0) (0.281136 0.233298 0) (0.288553 0.240172 0) (0.296722 0.245551 0) (0.304554 0.247904 0) (0.311418 0.246034 0) (0.317547 0.239314 0) (0.323926 0.227743 0) (0.331924 0.211925 0) (0.342868 0.192991 0) (0.357693 0.172455 0) (0.376732 0.151966 0) (0.399758 0.133016 0) (0.425998 0.116779 0) (0.454389 0.103992 0) (0.483975 0.0949095 0) (0.513646 0.0894922 0) (0.542274 0.087545 0) (0.56894 0.0888903 0) (0.592879 0.0931592 0) (0.61432 0.0991527 0) (0.633101 0.106492 0) (0.646809 0.11661 0) (0.655369 0.12775 0) (0.661878 0.135506 0) (0.66481 0.142745 0) (0.66095 0.15467 0) (0.65335 0.165065 0) (0.644216 0.167708 0) (0.629801 0.172154 0) (0.608172 0.188409 0) (0.580873 0.211272 0) (0.547514 0.233009 0) (0.504903 0.255612 0) (0.449284 0.281297 0) (0.380217 0.300639 0) (0.303777 0.296893 0) (0.227949 0.260602 0) (0.156369 0.195141 0) (0.0916968 0.108595 0) (0.0400574 0.00889504 0) (0.00798167 -0.0937221 0) (-0.00125409 -0.187364 0) (0.0117817 -0.261373 0) (0.0424465 -0.311088 0) (0.0815206 -0.3368 0) (0.123254 -0.340771 0) (0.17314 -0.323526 0) (0.226678 -0.289961 0) (0.267204 -0.249351 0) (0.289141 -0.206026 0) (0.298821 -0.158737 0) (0.302301 -0.107766 0) (0.302101 -0.0585261 0) (0.299765 -0.0200718 0) (0.296992 -0.00218708 0) (0.295047 -0.0127602 0) (0.295826 -0.0557878 0) (0.300743 -0.129041 0) (0.309212 -0.222656 0) (0.319727 -0.32086 0) (0.331408 -0.406379 0) (0.344415 -0.463871 0) (0.356636 -0.486773 0) (0.364951 -0.477425 0) (0.371618 -0.445383 0) (0.366515 -0.405618 0) (0.356135 -0.361527 0) (0.355136 -0.309674 0) (0.345426 -0.264204 0) (0.313108 -0.237338 0) (0.272191 -0.221454 0) (0.238846 -0.200735 0) (0.214557 -0.171372 0) (0.18783 -0.143258 0) (0.156185 -0.117606 0) (0.11965 -0.0973094 0) (0.076195 -0.0952216 0) (0.0224178 -0.106812 0) (0.00170697 0.00467841 0) (-0.0036156 -0.00489892 0) (-0.00852687 -0.0130205 0) (-0.0140838 -0.0218899 0) (-0.0150582 -0.0298181 0) (-0.00858564 -0.0298585 0) (0.00644473 -0.0178071 0) (0.0234265 0.000608995 0) (0.0402644 0.0180977 0) (0.0586067 0.0333669 0) (0.0769165 0.0458896 0) (0.0953694 0.057014 0) (0.115483 0.0709956 0) (0.139395 0.0918486 0) (0.167759 0.119498 0) (0.19721 0.148778 0) (0.222844 0.173755 0) (0.242155 0.191851 0) (0.255456 0.203906 0) (0.26425 0.212174 0) (0.270216 0.218818 0) (0.275002 0.225289 0) (0.280003 0.232099 0) (0.285898 0.23878 0) (0.292442 0.244106 0) (0.298875 0.246561 0) (0.304655 0.244834 0) (0.309951 0.238143 0) (0.315682 0.226371 0) (0.323206 0.210076 0) (0.333896 0.19043 0) (0.348743 0.169049 0) (0.36811 0.147707 0) (0.391741 0.128011 0) (0.418786 0.111219 0) (0.448198 0.0980815 0) (0.478999 0.0888621 0) (0.510016 0.0835379 0) (0.540122 0.0818971 0) (0.568252 0.0837261 0) (0.593492 0.0885321 0) (0.616011 0.0950698 0) (0.635417 0.103211 0) (0.649483 0.114335 0) (0.658728 0.126179 0) (0.666041 0.13452 0) (0.669413 0.142789 0) (0.665892 0.155766 0) (0.658586 0.166763 0) (0.649413 0.170115 0) (0.634972 0.175725 0) (0.6137 0.193225 0) (0.586932 0.21731 0) (0.55418 0.240578 0) (0.512378 0.265275 0) (0.457636 0.293457 0) (0.389348 0.314885 0) (0.313642 0.311948 0) (0.238186 0.275298 0) (0.165962 0.208852 0) (0.0997284 0.12045 0) (0.0464825 0.0175142 0) (0.0134584 -0.0894543 0) (0.00415741 -0.187633 0) (0.0173934 -0.2657 0) (0.0484031 -0.318186 0) (0.0894772 -0.345032 0) (0.131928 -0.349827 0) (0.179108 -0.333819 0) (0.233287 -0.299732 0) (0.279816 -0.256168 0) (0.3083 -0.209678 0) (0.322563 -0.160487 0) (0.329562 -0.108607 0) (0.332965 -0.0588767 0) (0.33462 -0.020202 0) (0.335926 -0.00228009 0) (0.337836 -0.0129654 0) (0.341934 -0.0563263 0) (0.348897 -0.130071 0) (0.357686 -0.224137 0) (0.366806 -0.322632 0) (0.375327 -0.408413 0) (0.383355 -0.466046 0) (0.390483 -0.488495 0) (0.393148 -0.478539 0) (0.394787 -0.44523 0) (0.387331 -0.403658 0) (0.371925 -0.359891 0) (0.366283 -0.308426 0) (0.357524 -0.260123 0) (0.326829 -0.230007 0) (0.284124 -0.213771 0) (0.247239 -0.194694 0) (0.220655 -0.166129 0) (0.193085 -0.137314 0) (0.160623 -0.110734 0) (0.123116 -0.0891484 0) (0.0785654 -0.0854534 0) (0.0233037 -0.0968917 0) (0.00061889 0.00514062 0) (-0.00761022 -0.00362769 0) (-0.0156357 -0.0116176 0) (-0.0246387 -0.0209972 0) (-0.0286723 -0.0301618 0) (-0.0237765 -0.0318697 0) (-0.00867209 -0.0209703 0) (0.0095396 -0.00277368 0) (0.0275009 0.0145032 0) (0.047332 0.0296031 0) (0.0670208 0.042131 0) (0.0864244 0.0531187 0) (0.107018 0.066642 0) (0.130908 0.0867289 0) (0.159207 0.113791 0) (0.189308 0.143237 0) (0.216483 0.169138 0) (0.23772 0.188438 0) (0.252816 0.201561 0) (0.263036 0.210602 0) (0.269914 0.217708 0) (0.27491 0.224353 0) (0.279308 0.231129 0) (0.28393 0.237704 0) (0.288889 0.242986 0) (0.293773 0.245502 0) (0.298218 0.243866 0) (0.302423 0.237161 0) (0.307284 0.225148 0) (0.314169 0.208336 0) (0.324507 0.187931 0) (0.339327 0.165655 0) (0.359008 0.143408 0) (0.383226 0.122929 0) (0.411039 0.105548 0) (0.44138 0.0920267 0) (0.473217 0.0826396 0) (0.505408 0.0773724 0) (0.536949 0.076008 0) (0.56669 0.0783204 0) (0.593535 0.0836956 0) (0.617404 0.0908521 0) (0.637555 0.0998702 0) (0.65201 0.111986 0) (0.661914 0.124483 0) (0.669964 0.133424 0) (0.673765 0.142752 0) (0.670629 0.156784 0) (0.663647 0.168413 0) (0.654496 0.172492 0) (0.640136 0.179213 0) (0.619305 0.197892 0) (0.593137 0.22316 0) (0.561095 0.24791 0) (0.520237 0.274645 0) (0.466535 0.305291 0) (0.399236 0.328796 0) (0.324488 0.326704 0) (0.249517 0.289836 0) (0.176613 0.222609 0) (0.108777 0.132481 0) (0.0539132 0.0262996 0) (0.0198653 -0.0851182 0) (0.0104675 -0.187925 0) (0.0242165 -0.270043 0) (0.0554191 -0.325398 0) (0.0977449 -0.353478 0) (0.14189 -0.358657 0) (0.186981 -0.34369 0) (0.239808 -0.309883 0) (0.290805 -0.264105 0) (0.326079 -0.214439 0) (0.345703 -0.163071 0) (0.356698 -0.110172 0) (0.363912 -0.0600028 0) (0.369629 -0.0211415 0) (0.375024 -0.00316886 0) (0.380818 -0.0138704 0) (0.388166 -0.057368 0) (0.397076 -0.131311 0) (0.406101 -0.225489 0) (0.413739 -0.323937 0) (0.419187 -0.409629 0) (0.422319 -0.467195 0) (0.424165 -0.489142 0) (0.421412 -0.478575 0) (0.41768 -0.444336 0) (0.407808 -0.401041 0) (0.388307 -0.357329 0) (0.377556 -0.306764 0) (0.368936 -0.256324 0) (0.340224 -0.222798 0) (0.296435 -0.205695 0) (0.256155 -0.188139 0) (0.227039 -0.160621 0) (0.198492 -0.131262 0) (0.16521 -0.103765 0) (0.126714 -0.0808727 0) (0.0810386 -0.0755381 0) (0.0242385 -0.0867613 0) (-0.000489366 0.0061037 0) (-0.0115651 -0.00179587 0) (-0.0227397 -0.00958134 0) (-0.0352777 -0.0194821 0) (-0.0423974 -0.0300578 0) (-0.0391482 -0.0337261 0) (-0.0240059 -0.0241807 0) (-0.0045174 -0.00637666 0) (0.0145797 0.0107079 0) (0.0358498 0.0256041 0) (0.0569459 0.0381877 0) (0.0773186 0.0491246 0) (0.0984413 0.0622863 0) (0.12238 0.0816732 0) (0.150604 0.108102 0) (0.181212 0.137562 0) (0.209761 0.164247 0) (0.232851 0.184704 0) (0.249751 0.198925 0) (0.261447 0.208811 0) (0.269351 0.216481 0) (0.274785 0.223437 0) (0.278896 0.230321 0) (0.282532 0.236899 0) (0.286048 0.242183 0) (0.289354 0.244751 0) (0.292315 0.243168 0) (0.295233 0.236404 0) (0.299045 0.224106 0) (0.305164 0.206728 0) (0.31508 0.185508 0) (0.329862 0.162275 0) (0.349885 0.139072 0) (0.374718 0.117775 0) (0.403306 0.0997842 0) (0.434498 0.0858657 0) (0.467146 0.076296 0) (0.500208 0.0710422 0) (0.532922 0.0698937 0) (0.564195 0.072647 0) (0.592816 0.0785987 0) (0.618315 0.0864559 0) (0.639437 0.0964444 0) (0.654419 0.109559 0) (0.664995 0.122677 0) (0.673695 0.132233 0) (0.67788 0.142636 0) (0.675139 0.15772 0) (0.668503 0.170005 0) (0.659445 0.174821 0) (0.645276 0.182601 0) (0.624971 0.202398 0) (0.599473 0.228807 0) (0.568241 0.254987 0) (0.528456 0.283699 0) (0.475951 0.316768 0) (0.409849 0.342336 0) (0.336268 0.341134 0) (0.261875 0.30421 0) (0.188288 0.236414 0) (0.118911 0.144683 0) (0.0625199 0.0352573 0) (0.0273781 -0.0806956 0) (0.0176581 -0.18826 0) (0.0320482 -0.274432 0) (0.0636918 -0.332643 0) (0.1065 -0.362109 0) (0.152557 -0.367428 0) (0.196772 -0.353078 0) (0.24698 -0.320056 0) (0.300448 -0.272959 0) (0.342208 -0.220359 0) (0.367857 -0.166591 0) (0.383379 -0.112513 0) (0.394632 -0.0619026 0) (0.40446 -0.0228722 0) (0.413941 -0.00481309 0) (0.423596 -0.0154435 0) (0.434097 -0.0588888 0) (0.444875 -0.132743 0) (0.454077 -0.226701 0) (0.46015 -0.324784 0) (0.462569 -0.410063 0) (0.460965 -0.467338 0) (0.457405 -0.488745 0) (0.449447 -0.477559 0) (0.440231 -0.442679 0) (0.427725 -0.39786 0) (0.405022 -0.353927 0) (0.389054 -0.304585 0) (0.379726 -0.252748 0) (0.353167 -0.215805 0) (0.309002 -0.197325 0) (0.265578 -0.181081 0) (0.233733 -0.154821 0) (0.204062 -0.125093 0) (0.16995 -0.0966991 0) (0.130453 -0.0724822 0) (0.0836215 -0.0654722 0) (0.0252264 -0.0764126 0) (-0.00158927 0.00754378 0) (-0.0154129 0.000583184 0) (-0.0297131 -0.0069265 0) (-0.0457847 -0.0173504 0) (-0.0559819 -0.0295005 0) (-0.0544877 -0.0354058 0) (-0.0394188 -0.0274657 0) (-0.0186048 -0.0101823 0) (0.00167085 0.00670864 0) (0.0242559 0.0213848 0) (0.0467689 0.034063 0) (0.0681027 0.0450308 0) (0.0897824 0.0579197 0) (0.113827 0.0766745 0) (0.141979 0.102444 0) (0.172977 0.131787 0) (0.202741 0.159114 0) (0.227593 0.180664 0) (0.246296 0.196001 0) (0.259506 0.206793 0) (0.268514 0.215114 0) (0.274545 0.222493 0) (0.278624 0.229617 0) (0.281557 0.236313 0) (0.283835 0.241669 0) (0.28563 0.244306 0) (0.287055 0.242758 0) (0.288571 0.235898 0) (0.291211 0.223267 0) (0.296479 0.205264 0) (0.305939 0.183162 0) (0.320703 0.158905 0) (0.341123 0.134693 0) (0.366642 0.112546 0) (0.396075 0.0939336 0) (0.428101 0.0796316 0) (0.461392 0.0698917 0) (0.495006 0.0646222 0) (0.528472 0.0636165 0) (0.560941 0.066726 0) (0.591272 0.0732166 0) (0.618568 0.0818353 0) (0.640935 0.0928914 0) (0.656687 0.107032 0) (0.668009 0.120766 0) (0.677289 0.130963 0) (0.681789 0.14245 0) (0.679424 0.158574 0) (0.673144 0.171534 0) (0.66425 0.177087 0) (0.65038 0.185873 0) (0.630682 0.20673 0) (0.605929 0.23424 0) (0.575602 0.261793 0) (0.537009 0.292416 0) (0.485853 0.327862 0) (0.421149 0.355474 0) (0.34893 0.355217 0) (0.275203 0.318413 0) (0.200987 0.250252 0) (0.130246 0.157032 0) (0.0725126 0.0443844 0) (0.0362445 -0.0761546 0) (0.0258923 -0.188608 0) (0.0407371 -0.2789 0) (0.0731896 -0.339895 0) (0.116065 -0.370841 0) (0.163563 -0.376259 0) (0.208145 -0.362044 0) (0.255407 -0.329958 0) (0.309223 -0.282445 0) (0.356556 -0.227408 0) (0.388655 -0.171135 0) (0.409266 -0.115688 0) (0.424811 -0.0645729 0) (0.438791 -0.0253646 0) (0.452347 -0.00719992 0) (0.465796 -0.0176622 0) (0.479338 -0.060865 0) (0.491906 -0.134355 0) (0.501239 -0.227766 0) (0.505692 -0.325178 0) (0.505104 -0.409753 0) (0.498959 -0.466506 0) (0.489957 -0.487337 0) (0.476969 -0.475532 0) (0.462352 -0.440248 0) (0.446933 -0.394186 0) (0.421803 -0.349795 0) (0.400824 -0.301824 0) (0.389979 -0.249315 0) (0.36556 -0.209096 0) (0.321699 -0.188765 0) (0.275484 -0.173545 0) (0.24076 -0.148705 0) (0.209806 -0.118793 0) (0.174848 -0.0895372 0) (0.134337 -0.0639773 0) (0.0863219 -0.0552529 0) (0.0262723 -0.0658374 0) (-0.00265209 0.00943169 0) (-0.0190805 0.0034887 0) (-0.0364141 -0.00368206 0) (-0.0559305 -0.0146213 0) (-0.0691672 -0.0284859 0) (-0.0695767 -0.0368829 0) (-0.054781 -0.030821 0) (-0.0326212 -0.0141765 0) (-0.0110855 0.00246824 0) (0.0126338 0.0169725 0) (0.0365585 0.0297645 0) (0.0588237 0.0408408 0) (0.0810708 0.0535364 0) (0.105269 0.0717266 0) (0.133359 0.0968257 0) (0.164654 0.125937 0) (0.195482 0.153769 0) (0.221997 0.176335 0) (0.242483 0.192794 0) (0.257239 0.204545 0) (0.267405 0.213592 0) (0.274142 0.22149 0) (0.278382 0.228967 0) (0.28086 0.235894 0) (0.282124 0.241405 0) (0.282538 0.24415 0) (0.282451 0.242637 0) (0.282518 0.235653 0) (0.28392 0.222641 0) (0.288285 0.20395 0) (0.29727 0.180893 0) (0.312043 0.155536 0) (0.332922 0.130256 0) (0.359214 0.107224 0) (0.3896 0.0879879 0) (0.422524 0.0733365 0) (0.456427 0.0634697 0) (0.490388 0.0581896 0) (0.524172 0.0572701 0) (0.557319 0.0606271 0) (0.589021 0.0675676 0) (0.618079 0.076962 0) (0.641914 0.0891614 0) (0.65874 0.104372 0) (0.670959 0.118749 0) (0.68079 0.129628 0) (0.685537 0.142205 0) (0.683505 0.159353 0) (0.677577 0.172991 0) (0.668911 0.179273 0) (0.655439 0.189012 0) (0.636429 0.210876 0) (0.61249 0.239447 0) (0.583159 0.268314 0) (0.545869 0.300777 0) (0.496208 0.338547 0) (0.433097 0.368181 0) (0.362422 0.368933 0) (0.289449 0.332431 0) (0.214734 0.264096 0) (0.142901 0.169485 0) (0.0840662 0.0536858 0) (0.0466827 -0.0714644 0) (0.0354259 -0.188904 0) (0.0502953 -0.283445 0) (0.0837302 -0.347167 0) (0.12671 -0.37958 0) (0.174838 -0.385182 0) (0.220582 -0.37072 0) (0.265425 -0.339407 0) (0.317743 -0.292235 0) (0.369173 -0.235472 0) (0.40778 -0.176758 0) (0.434006 -0.119753 0) (0.45413 -0.0680292 0) (0.472318 -0.0286235 0) (0.48992 -0.0103045 0) (0.50707 -0.020492 0) (0.523535 -0.0632701 0) (0.537801 -0.136132 0) (0.547224 -0.228682 0) (0.550041 -0.325131 0) (0.546467 -0.40874 0) (0.535985 -0.464743 0) (0.521595 -0.484958 0) (0.503723 -0.472548 0) (0.483934 -0.437047 0) (0.465338 -0.39007 0) (0.438395 -0.345051 0) (0.412862 -0.298453 0) (0.399793 -0.245943 0) (0.377341 -0.202717 0) (0.3344 -0.180121 0) (0.285831 -0.16557 0) (0.248139 -0.142254 0) (0.215736 -0.11235 0) (0.17991 -0.0822791 0) (0.138376 -0.0553566 0) (0.0891478 -0.0448777 0) (0.0273811 -0.0550259 0) (-0.00364875 0.0117308 0) (-0.0224916 0.00687862 0) (-0.0426924 0.000110674 0) (-0.0654802 -0.0113249 0) (-0.0816868 -0.0270103 0) (-0.084182 -0.0381219 0) (-0.0699595 -0.0342255 0) (-0.0465089 -0.0183657 0) (-0.0235607 -0.00193887 0) (0.00106386 0.0123842 0) (0.0263667 0.0253021 0) (0.0495201 0.0365616 0) (0.0723331 0.0491329 0) (0.0967285 0.0668235 0) (0.124773 0.0912531 0) (0.156289 0.120038 0) (0.188042 0.14824 0) (0.216109 0.171738 0) (0.238349 0.189309 0) (0.254671 0.202063 0) (0.26604 0.211905 0) (0.273555 0.220405 0) (0.278091 0.228334 0) (0.280312 0.235596 0) (0.280771 0.241352 0) (0.279961 0.244258 0) (0.278435 0.242794 0) (0.277056 0.235668 0) (0.277187 0.222231 0) (0.280611 0.202786 0) (0.289101 0.178695 0) (0.303895 0.152161 0) (0.325266 0.125748 0) (0.352406 0.101793 0) (0.383857 0.0819273 0) (0.417799 0.0669675 0) (0.452428 0.057038 0) (0.486732 0.0517953 0) (0.520542 0.0509498 0) (0.553827 0.054454 0) (0.586356 0.0617179 0) (0.616892 0.0718407 0) (0.642284 0.0852124 0) (0.660482 0.101533 0) (0.673812 0.11661 0) (0.684224 0.128235 0) (0.68917 0.141913 0) (0.687416 0.160062 0) (0.681821 0.174375 0) (0.673439 0.181368 0) (0.660453 0.192005 0) (0.642202 0.214828 0) (0.619144 0.244417 0) (0.590893 0.274536 0) (0.555008 0.308767 0) (0.50698 0.3488 0) (0.44565 0.380431 0) (0.376691 0.382262 0) (0.304576 0.346242 0) (0.22956 0.277899 0) (0.156977 0.181993 0) (0.0972876 0.0630663 0) (0.0588395 -0.0666097 0) (0.0465037 -0.189078 0) (0.0608921 -0.288016 0) (0.0951292 -0.354483 0) (0.13853 -0.388268 0) (0.186546 -0.394157 0) (0.233582 -0.379241 0) (0.277048 -0.348344 0) (0.326647 -0.302006 0) (0.380309 -0.244352 0) (0.425001 -0.183463 0) (0.45725 -0.124763 0) (0.482267 -0.0722874 0) (0.504747 -0.0326299 0) (0.526362 -0.0140964 0) (0.547102 -0.0239003 0) (0.566363 -0.066077 0) (0.582219 -0.138062 0) (0.591693 -0.22945 0) (0.592897 -0.324656 0) (0.586375 -0.407059 0) (0.571757 -0.462096 0) (0.552111 -0.481649 0) (0.529487 -0.468671 0) (0.504854 -0.433098 0) (0.482885 -0.385549 0) (0.454578 -0.339815 0) (0.425119 -0.294478 0) (0.40927 -0.242547 0) (0.388473 -0.196694 0) (0.346987 -0.171496 0) (0.296568 -0.157204 0) (0.255886 -0.135457 0) (0.221867 -0.105749 0) (0.185142 -0.0749244 0) (0.142576 -0.0466171 0) (0.0921079 -0.034343 0) (0.0285588 -0.0439643 0) (-0.00455251 0.0143959 0) (-0.0255689 0.0106968 0) (-0.0483933 0.00440745 0) (-0.0742 -0.00750185 0) (-0.0932656 -0.0250707 0) (-0.0980437 -0.0390765 0) (-0.0848014 -0.03764 0) (-0.060229 -0.0227572 0) (-0.0356921 -0.00647746 0) (-0.0104033 0.0076205 0) (0.0162255 0.0206896 0) (0.0402221 0.0322016 0) (0.0635911 0.044707 0) (0.0882282 0.0619592 0) (0.116249 0.0857306 0) (0.147925 0.114109 0) (0.180477 0.142557 0) (0.20998 0.166893 0) (0.233927 0.185556 0) (0.251831 0.199351 0) (0.264436 0.210049 0) (0.272781 0.219225 0) (0.277703 0.227692 0) (0.279813 0.235383 0) (0.279642 0.241469 0) (0.277759 0.244599 0) (0.274885 0.243211 0) (0.272087 0.235936 0) (0.270929 0.222036 0) (0.273369 0.201776 0) (0.281321 0.17657 0) (0.296115 0.148776 0) (0.317978 0.121163 0) (0.346008 0.0962363 0) (0.378598 0.0757308 0) (0.413683 0.0604953 0) (0.449249 0.0505697 0) (0.484082 0.0454471 0) (0.517868 0.044721 0) (0.550899 0.0483143 0) (0.583654 0.0557682 0) (0.61518 0.0665153 0) (0.642032 0.0810237 0) (0.661827 0.0984714 0) (0.676502 0.114325 0) (0.687586 0.126785 0) (0.692721 0.141585 0) (0.691196 0.16071 0) (0.685909 0.175685 0) (0.677852 0.183359 0) (0.665425 0.194842 0) (0.647995 0.218576 0) (0.625881 0.249141 0) (0.598785 0.280449 0) (0.564398 0.316371 0) (0.518135 0.358601 0) (0.458763 0.392202 0) (0.391681 0.395185 0) (0.320551 0.359816 0) (0.245495 0.291605 0) (0.172518 0.194485 0) (0.112221 0.0724889 0) (0.072806 -0.0615879 0) (0.0592928 -0.189072 0) (0.072765 -0.292529 0) (0.107316 -0.361842 0) (0.151438 -0.396882 0) (0.198953 -0.403106 0) (0.246814 -0.387702 0) (0.29 -0.356811 0) (0.336471 -0.311491 0) (0.390388 -0.253782 0) (0.440222 -0.191195 0) (0.478677 -0.130753 0) (0.508911 -0.0773678 0) (0.535798 -0.0373522 0) (0.561387 -0.0185376 0) (0.585604 -0.0278525 0) (0.607529 -0.0692568 0) (0.624858 -0.140128 0) (0.634344 -0.230074 0) (0.633987 -0.323771 0) (0.62458 -0.404752 0) (0.606018 -0.458622 0) (0.581315 -0.477459 0) (0.554072 -0.463966 0) (0.524984 -0.428438 0) (0.499546 -0.380654 0) (0.470173 -0.334199 0) (0.437511 -0.289932 0) (0.418507 -0.23905 0) (0.39895 -0.191029 0) (0.359351 -0.162983 0) (0.307631 -0.148511 0) (0.264012 -0.128308 0) (0.228213 -0.0989752 0) (0.190553 -0.0674736 0) (0.146946 -0.0377616 0) (0.0952114 -0.0236451 0) (0.029813 -0.0326381 0) (-0.00533829 0.0173742 0) (-0.0282358 0.0148833 0) (-0.0533664 0.00913915 0) (-0.0818647 -0.00320356 0) (-0.10362 -0.022669 0) (-0.110867 -0.0396918 0) (-0.0991123 -0.0410022 0) (-0.0737668 -0.0273465 0) (-0.0474616 -0.0111823 0) (-0.0216836 0.0027217 0) (0.00613759 0.0159402 0) (0.0309536 0.027769 0) (0.0548639 0.0402568 0) (0.0797863 0.0571267 0) (0.107817 0.08026 0) (0.139607 0.108168 0) (0.172839 0.136744 0) (0.20366 0.161823 0) (0.229255 0.181546 0) (0.248742 0.196408 0) (0.262616 0.208021 0) (0.271828 0.217941 0) (0.277195 0.227022 0) (0.27929 0.235227 0) (0.27862 0.241727 0) (0.275793 0.245147 0) (0.271658 0.243872 0) (0.267469 0.23645 0) (0.264997 0.222057 0) (0.26639 0.200924 0) (0.27374 0.174525 0) (0.288483 0.145387 0) (0.310811 0.1165 0) (0.339735 0.0905508 0) (0.37348 0.0693856 0) (0.409785 0.053889 0) (0.4465 0.0440183 0) (0.482158 0.0391114 0) (0.516112 0.0386005 0) (0.548768 0.0422881 0) (0.581262 0.0498282 0) (0.613197 0.0610615 0) (0.64123 0.0766035 0) (0.662718 0.0951563 0) (0.678954 0.111864 0) (0.69085 0.125265 0) (0.69621 0.141224 0) (0.694882 0.161306 0) (0.689876 0.17692 0) (0.682174 0.185242 0) (0.670363 0.197514 0) (0.653805 0.222114 0) (0.632689 0.253614 0) (0.606817 0.286045 0) (0.574009 0.323577 0) (0.529636 0.367932 0) (0.472391 0.403473 0) (0.407336 0.407683 0) (0.337346 0.373115 0) (0.262554 0.305156 0) (0.189538 0.206892 0) (0.128874 0.0819832 0) (0.0886105 -0.0564066 0) (0.0738731 -0.188847 0) (0.0861191 -0.296894 0) (0.120365 -0.369207 0) (0.16525 -0.405428 0) (0.212273 -0.411946 0) (0.260184 -0.396131 0) (0.303845 -0.364911 0) (0.347539 -0.320516 0) (0.399962 -0.263459 0) (0.453513 -0.199823 0) (0.498025 -0.137731 0) (0.533757 -0.0832872 0) (0.565194 -0.0427915 0) (0.594732 -0.0236004 0) (0.622316 -0.0323131 0) (0.646774 -0.0727789 0) (0.665459 -0.142315 0) (0.674918 -0.230562 0) (0.673071 -0.322501 0) (0.660868 -0.401856 0) (0.638545 -0.454376 0) (0.609036 -0.472441 0) (0.577328 -0.458505 0) (0.544198 -0.423116 0) (0.515306 -0.375408 0) (0.48504 -0.328304 0) (0.449932 -0.284873 0) (0.427587 -0.235388 0) (0.408787 -0.185707 0) (0.371397 -0.154669 0) (0.318952 -0.139558 0) (0.27252 -0.120811 0) (0.234789 -0.0920154 0) (0.196149 -0.0599277 0) (0.151492 -0.028787 0) (0.0984699 -0.0127862 0) (0.0311511 -0.0210388 0) (-0.00598336 0.0206056 0) (-0.0304233 0.0193685 0) (-0.0574733 0.0142193 0) (-0.0882611 0.00151034 0) (-0.112466 -0.0198159 0) (-0.122319 -0.039908 0) (-0.112636 -0.0442249 0) (-0.0870877 -0.0321056 0) (-0.0589046 -0.0160385 0) (-0.032696 -0.00224788 0) (-0.00391877 0.0110658 0) (0.0217384 0.0232692 0) (0.0461705 0.0357813 0) (0.0714174 0.0523187 0) (0.0995026 0.0748407 0) (0.131376 0.10223 0) (0.165181 0.130828 0) (0.1972 0.156549 0) (0.224372 0.177291 0) (0.245433 0.193238 0) (0.2606 0.205819 0) (0.270711 0.21655 0) (0.276559 0.226315 0) (0.278701 0.235111 0) (0.27762 0.242103 0) (0.273941 0.245879 0) (0.268609 0.244761 0) (0.263043 0.237206 0) (0.259211 0.2223 0) (0.259474 0.200241 0) (0.266146 0.172571 0) (0.280777 0.142003 0) (0.303531 0.111769 0) (0.333313 0.084743 0) (0.368157 0.0628936 0) (0.405679 0.0471306 0) (0.443686 0.0373385 0) (0.480466 0.0327309 0) (0.514944 0.0325559 0) (0.547398 0.0364063 0) (0.579391 0.0439881 0) (0.611206 0.0555693 0) (0.640021 0.0719881 0) (0.663149 0.0915736 0) (0.681099 0.109201 0) (0.693969 0.123659 0) (0.699639 0.140826 0) (0.698505 0.161854 0) (0.693759 0.178084 0) (0.68643 0.187011 0) (0.675276 0.200016 0) (0.659629 0.225437 0) (0.639558 0.257828 0) (0.614968 0.291318 0) (0.583814 0.330377 0) (0.541445 0.376776 0) (0.486486 0.414225 0) (0.423602 0.419736 0) (0.35493 0.3861 0) (0.280732 0.318491 0) (0.208017 0.21917 0) (0.147234 0.0914962 0) (0.106264 -0.0510809 0) (0.0902672 -0.188382 0) (0.101071 -0.301033 0) (0.13444 -0.376506 0) (0.179798 -0.413912 0) (0.226582 -0.420618 0) (0.273796 -0.404498 0) (0.318134 -0.372761 0) (0.359903 -0.329008 0) (0.409613 -0.273085 0) (0.465124 -0.209146 0) (0.515131 -0.145663 0) (0.55652 -0.0900613 0) (0.592669 -0.0489458 0) (0.626149 -0.0292626 0) (0.657005 -0.0372517 0) (0.683871 -0.0766148 0) (0.703803 -0.144607 0) (0.713197 -0.230921 0) (0.709939 -0.32087 0) (0.695052 -0.398411 0) (0.669146 -0.449419 0) (0.63512 -0.466654 0) (0.599133 -0.452357 0) (0.562385 -0.417193 0) (0.530162 -0.369838 0) (0.499086 -0.322217 0) (0.462266 -0.279374 0) (0.436577 -0.231509 0) (0.418022 -0.180701 0) (0.383045 -0.146625 0) (0.330454 -0.130421 0) (0.281409 -0.112976 0) (0.241611 -0.0848572 0) (0.20194 -0.0522853 0) (0.156225 -0.0196947 0) (0.101893 -0.00174728 0) (0.03258 -0.00915126 0) (-0.00646822 0.0240247 0) (-0.0320713 0.0240753 0) (-0.0605929 0.0195643 0) (-0.093198 0.00656497 0) (-0.119528 -0.0165365 0) (-0.132039 -0.0396678 0) (-0.125041 -0.0471972 0) (-0.100098 -0.0369747 0) (-0.0701022 -0.0210471 0) (-0.0433611 -0.00725938 0) (-0.0139763 0.00608769 0) (0.0126013 0.0187045 0) (0.0375319 0.0312806 0) (0.0631332 0.0475272 0) (0.0913277 0.0694698 0) (0.123271 0.0963064 0) (0.157555 0.12483 0) (0.190651 0.151096 0) (0.219316 0.172806 0) (0.241929 0.189847 0) (0.258408 0.203444 0) (0.269445 0.215048 0) (0.275799 0.225566 0) (0.278023 0.235023 0) (0.276582 0.24258 0) (0.272108 0.24678 0) (0.265614 0.245868 0) (0.258657 0.238201 0) (0.253398 0.222772 0) (0.252441 0.199739 0) (0.25836 0.170718 0) (0.272821 0.138635 0) (0.295946 0.106979 0) (0.326493 0.0788308 0) (0.362315 0.0562718 0) (0.400983 0.0402199 0) (0.440324 0.0305009 0) (0.478443 0.0262456 0) (0.51385 0.0265207 0) (0.546501 0.0306468 0) (0.578055 0.038297 0) (0.609403 0.0501215 0) (0.638576 0.0672328 0) (0.663162 0.0877312 0) (0.682885 0.106314 0) (0.696888 0.121944 0) (0.702993 0.140383 0) (0.702085 0.162355 0) (0.697592 0.179176 0) (0.690649 0.188664 0) (0.680176 0.202346 0) (0.665467 0.228542 0) (0.64648 0.261781 0) (0.62322 0.296263 0) (0.593784 0.336762 0) (0.553525 0.385122 0) (0.501 0.424443 0) (0.440424 0.431323 0) (0.37327 0.398734 0) (0.300001 0.331553 0) (0.227914 0.231276 0) (0.167278 0.100969 0) (0.12577 -0.0456276 0) (0.108477 -0.187662 0) (0.117655 -0.304885 0) (0.149709 -0.383655 0) (0.19501 -0.422324 0) (0.241808 -0.429093 0) (0.287853 -0.412735 0) (0.332536 -0.380451 0) (0.373371 -0.336991 0) (0.419845 -0.282413 0) (0.475466 -0.218911 0) (0.529964 -0.154466 0) (0.576961 -0.0976906 0) (0.617967 -0.0558074 0) (0.65541 -0.0355011 0) (0.689457 -0.0426384 0) (0.718619 -0.0807376 0) (0.739703 -0.146988 0) (0.749001 -0.231156 0) (0.744415 -0.318906 0) (0.726975 -0.394458 0) (0.697662 -0.44381 0) (0.659437 -0.460161 0) (0.619396 -0.445596 0) (0.579447 -0.410739 0) (0.544117 -0.363969 0) (0.512253 -0.316013 0) (0.474393 -0.273519 0) (0.445527 -0.22738 0) (0.426706 -0.175971 0) (0.394232 -0.13891 0) (0.342058 -0.121176 0) (0.290668 -0.104824 0) (0.248694 -0.077491 0) (0.207935 -0.0445442 0) (0.161155 -0.0104951 0) (0.105493 0.00946852 0) (0.034105 0.00306984 0) (-0.00677728 0.0275618 0) (-0.0331314 0.0289213 0) (-0.0626273 0.0250839 0) (-0.0965161 0.0118719 0) (-0.124559 -0.0128714 0) (-0.139663 -0.0389255 0) (-0.135925 -0.0497909 0) (-0.112603 -0.0418534 0) (-0.0811576 -0.0262071 0) (-0.0536179 -0.0123101 0) (-0.0240491 0.00104141 0) (0.00356199 0.0140684 0) (0.0289692 0.0267561 0) (0.0549438 0.0427451 0) (0.0833068 0.0641418 0) (0.115327 0.0904058 0) (0.150011 0.118773 0) (0.184065 0.145485 0) (0.214132 0.168107 0) (0.238261 0.186241 0) (0.256061 0.200895 0) (0.268047 0.213434 0) (0.274926 0.224771 0) (0.277247 0.234957 0) (0.275469 0.24315 0) (0.270223 0.24784 0) (0.262571 0.247188 0) (0.254184 0.239441 0) (0.247416 0.223484 0) (0.245156 0.199428 0) (0.250262 0.168976 0) (0.264486 0.135294 0) (0.287873 0.102151 0) (0.319022 0.0728424 0) (0.355659 0.0495468 0) (0.395369 0.033171 0) (0.436015 0.023496 0) (0.47558 0.0196083 0) (0.512272 0.020416 0) (0.545635 0.024945 0) (0.577077 0.0327539 0) (0.607868 0.0447745 0) (0.637054 0.0623988 0) (0.662831 0.0836557 0) (0.68429 0.103196 0) (0.699555 0.120097 0) (0.706242 0.139878 0) (0.705629 0.162805 0) (0.701401 0.180198 0) (0.694855 0.190202 0) (0.685076 0.204505 0) (0.671319 0.23143 0) (0.653446 0.265472 0) (0.631554 0.300878 0) (0.603891 0.342726 0) (0.565836 0.392957 0) (0.515884 0.434113 0) (0.457749 0.44242 0) (0.392326 0.410975 0) (0.320312 0.34429 0) (0.249174 0.24315 0) (0.188974 0.110353 0) (0.147118 -0.0400638 0) (0.1285 -0.186673 0) (0.135855 -0.308408 0) (0.166283 -0.390566 0) (0.210917 -0.430628 0) (0.257789 -0.437367 0) (0.302545 -0.420767 0) (0.346905 -0.388018 0) (0.387582 -0.344547 0) (0.430993 -0.291269 0) (0.485065 -0.228837 0) (0.542655 -0.163992 0) (0.594914 -0.10615 0) (0.640854 -0.0633722 0) (0.682297 -0.0422964 0) (0.719477 -0.0484456 0) (0.75084 -0.0851236 0) (0.773 -0.149447 0) (0.782178 -0.231277 0) (0.776349 -0.316635 0) (0.756503 -0.390036 0) (0.723964 -0.437611 0) (0.681879 -0.453029 0) (0.638055 -0.438294 0) (0.595311 -0.403827 0) (0.557175 -0.357834 0) (0.524517 -0.309752 0) (0.486203 -0.267396 0) (0.454464 -0.222982 0) (0.434901 -0.171469 0) (0.40491 -0.13157 0) (0.353686 -0.111903 0) (0.300281 -0.0963816 0) (0.256051 -0.0699074 0) (0.214146 -0.0367083 0) (0.16629 -0.00116032 0) (0.109289 0.0208447 0) (0.0357411 0.0156294 0) (-0.00689954 0.0311444 0) (-0.0335688 0.03382 0) (-0.0635058 0.0306806 0) (-0.0980958 0.0173354 0) (-0.127353 -0.00887648 0) (-0.144853 -0.0376572 0) (-0.144837 -0.0518736 0) (-0.12428 -0.0465972 0) (-0.0921353 -0.0314977 0) (-0.0634587 -0.0173815 0) (-0.034115 -0.00403253 0) (-0.00539298 0.00934668 0) (0.0205002 0.0222098 0) (0.0468595 0.0379666 0) (0.0754484 0.0588497 0) (0.107571 0.084533 0) (0.142594 0.112674 0) (0.177495 0.139742 0) (0.208863 0.163211 0) (0.23446 0.182429 0) (0.253579 0.198175 0) (0.266532 0.211707 0) (0.27395 0.223929 0) (0.276373 0.234913 0) (0.274259 0.243808 0) (0.268239 0.249057 0) (0.259406 0.248722 0) (0.249527 0.24093 0) (0.241165 0.224444 0) (0.237541 0.199316 0) (0.241778 0.167356 0) (0.255647 0.132001 0) (0.279097 0.0973184 0) (0.310622 0.0668135 0) (0.347915 0.0427465 0) (0.388585 0.0260024 0) (0.430477 0.0163288 0) (0.471506 0.0127909 0) (0.509728 0.0141694 0) (0.544307 0.019214 0) (0.576138 0.0273131 0) (0.606548 0.0395474 0) (0.635562 0.0575387 0) (0.662248 0.079386 0) (0.685317 0.0998495 0) (0.701925 0.118098 0) (0.709352 0.139291 0) (0.709134 0.163197 0) (0.705207 0.181148 0) (0.69907 0.191626 0) (0.689986 0.206493 0) (0.677187 0.234101 0) (0.660448 0.2689 0) (0.639953 0.305162 0) (0.614107 0.348268 0) (0.578342 0.400274 0) (0.531087 0.443223 0) (0.475523 0.453007 0) (0.412053 0.422782 0) (0.341608 0.356651 0) (0.271729 0.25473 0) (0.212271 0.119629 0) (0.170272 -0.0344069 0) (0.150327 -0.1854 0) (0.155644 -0.311564 0) (0.184191 -0.397168 0) (0.227612 -0.438766 0) (0.27436 -0.445442 0) (0.317967 -0.428532 0) (0.361272 -0.395451 0) (0.402136 -0.351781 0) (0.44316 -0.299575 0) (0.49448 -0.23865 0) (0.553497 -0.174042 0) (0.610317 -0.115375 0) (0.661134 -0.0716303 0) (0.706613 -0.0496355 0) (0.746887 -0.0546522 0) (0.780377 -0.0897532 0) (0.803556 -0.151973 0) (0.812602 -0.231291 0) (0.805619 -0.314087 0) (0.783526 -0.385188 0) (0.747951 -0.430881 0) (0.702363 -0.44533 0) (0.655073 -0.430525 0) (0.609927 -0.396534 0) (0.569349 -0.351465 0) (0.535882 -0.30348 0) (0.497599 -0.261091 0) (0.463401 -0.218316 0) (0.442678 -0.167146 0) (0.415051 -0.124635 0) (0.365258 -0.10268 0) (0.310225 -0.0876844 0) (0.263696 -0.0620986 0) (0.220586 -0.0287812 0) (0.171641 0.00830142 0) (0.11329 0.0323897 0) (0.0374961 0.0285248 0) (-0.00682903 0.0346998 0) (-0.0333648 0.0386839 0) (-0.0631892 0.0362533 0) (-0.0978631 0.0228525 0) (-0.127761 -0.00461728 0) (-0.147338 -0.0358587 0) (-0.151321 -0.0533219 0) (-0.134681 -0.0510231 0) (-0.102993 -0.0368628 0) (-0.0729506 -0.0224679 0) (-0.0440865 -0.00910592 0) (-0.0143099 0.00453452 0) (0.0121334 0.0176416 0) (0.0388902 0.0331866 0) (0.0677569 0.0535857 0) (0.100021 0.0786898 0) (0.135345 0.10655 0) (0.170989 0.133886 0) (0.203555 0.158138 0) (0.230557 0.178422 0) (0.250982 0.195288 0) (0.264914 0.209869 0) (0.272882 0.223041 0) (0.275406 0.234888 0) (0.272945 0.244555 0) (0.266128 0.250429 0) (0.256067 0.250474 0) (0.244622 0.242677 0) (0.234599 0.225657 0) (0.229572 0.199407 0) (0.232843 0.165875 0) (0.246132 0.12879 0) (0.269351 0.0925228 0) (0.301025 0.0607779 0) (0.338888 0.0358896 0) (0.3805 0.0187277 0) (0.423589 0.00901119 0) (0.466032 0.00578445 0) (0.5059 0.00772779 0) (0.542085 0.0133659 0) (0.574856 0.0218985 0) (0.605271 0.0344198 0) (0.634128 0.0526852 0) (0.66149 0.0749646 0) (0.68599 0.0962903 0) (0.703966 0.115933 0) (0.712284 0.138601 0) (0.712585 0.163516 0) (0.709018 0.182023 0) (0.70331 0.192937 0) (0.694918 0.208316 0) (0.683071 0.23656 0) (0.667476 0.272068 0) (0.648399 0.309118 0) (0.624405 0.353385 0) (0.591005 0.407067 0) (0.546558 0.451764 0) (0.493694 0.463064 0) (0.432397 0.434118 0) (0.363816 0.368591 0) (0.295505 0.265977 0) (0.237093 0.128732 0) (0.195164 -0.0286824 0) (0.173926 -0.183831 0) (0.176998 -0.314321 0) (0.203403 -0.4034 0) (0.245195 -0.446672 0) (0.29141 -0.453313 0) (0.334091 -0.435996 0) (0.375781 -0.402698 0) (0.416699 -0.358784 0) (0.456228 -0.307336 0) (0.504204 -0.248117 0) (0.562928 -0.184375 0) (0.623239 -0.125256 0) (0.678673 -0.0805528 0) (0.728183 -0.0575053 0) (0.771527 -0.0612414 0) (0.807092 -0.0946111 0) (0.831252 -0.154561 0) (0.840169 -0.231208 0) (0.832129 -0.311292 0) (0.80796 -0.379955 0) (0.76955 -0.423684 0) (0.720834 -0.437139 0) (0.670439 -0.422362 0) (0.62327 -0.388937 0) (0.580653 -0.344901 0) (0.546373 -0.297236 0) (0.5085 -0.254688 0) (0.472332 -0.213395 0) (0.450108 -0.16295 0) (0.42464 -0.118122 0) (0.376701 -0.0935787 0) (0.32047 -0.0787737 0) (0.271638 -0.0540645 0) (0.227268 -0.0207482 0) (0.177218 0.0178697 0) (0.117515 0.044103 0) (0.0393831 0.041794 0) (-0.006565 0.0381561 0) (-0.0325177 0.0434265 0) (-0.0616717 0.0417012 0) (-0.095794 0.0283177 0) (-0.1257 -0.000177523 0) (-0.146917 -0.0335396 0) (-0.154972 -0.0540323 0) (-0.143266 -0.0549257 0) (-0.113524 -0.0421946 0) (-0.0822152 -0.0275677 0) (-0.0538177 -0.0141559 0) (-0.0232676 -0.000360767 0) (0.0038691 0.0130443 0) (0.0310426 0.0284004 0) (0.0602344 0.048342 0) (0.0926865 0.0728746 0) (0.128294 0.100411 0) (0.164594 0.12794 0) (0.198253 0.152907 0) (0.226589 0.174232 0) (0.248291 0.192239 0) (0.263206 0.20792 0) (0.27173 0.222106 0) (0.274349 0.234885 0) (0.271521 0.245393 0) (0.26387 0.251961 0) (0.252521 0.252449 0) (0.239442 0.244687 0) (0.227718 0.227127 0) (0.221241 0.199714 0) (0.223346 0.164565 0) (0.235707 0.125713 0) (0.25838 0.0878082 0) (0.290085 0.0547541 0) (0.32857 0.0289771 0) (0.371186 0.0113509 0) (0.415437 0.00155746 0) (0.459191 -0.0014031 0) (0.500678 0.00106538 0) (0.538685 0.00733052 0) (0.572867 0.0164235 0) (0.603787 0.0293398 0) (0.632693 0.0478452 0) (0.660604 0.0704289 0) (0.686342 0.0925405 0) (0.705664 0.113593 0) (0.715001 0.137788 0) (0.715962 0.163748 0) (0.712835 0.182815 0) (0.707585 0.194135 0) (0.699879 0.209977 0) (0.688973 0.23881 0) (0.674523 0.274979 0) (0.656875 0.312746 0) (0.634758 0.358079 0) (0.603788 0.413332 0) (0.562246 0.459726 0) (0.512207 0.472571 0) (0.453298 0.444951 0) (0.386858 0.380066 0) (0.320411 0.276847 0) (0.263336 0.137611 0) (0.221688 -0.0229159 0) (0.199224 -0.181961 0) (0.199888 -0.316646 0) (0.22386 -0.409216 0) (0.263724 -0.454277 0) (0.308906 -0.460962 0) (0.350801 -0.443144 0) (0.390601 -0.409694 0) (0.431082 -0.365609 0) (0.469912 -0.314622 0) (0.51458 -0.257079 0) (0.571481 -0.194731 0) (0.633905 -0.135638 0) (0.693424 -0.090086 0) (0.74687 -0.0658884 0) (0.79326 -0.0681998 0) (0.830865 -0.0996857 0) (0.855984 -0.157205 0) (0.864796 -0.23104 0) (0.855807 -0.308278 0) (0.829741 -0.37438 0) (0.788718 -0.41608 0) (0.737265 -0.428534 0) (0.684165 -0.41388 0) (0.635341 -0.381113 0) (0.591108 -0.338183 0) (0.556034 -0.291046 0) (0.518844 -0.248263 0) (0.481236 -0.208244 0) (0.457263 -0.158833 0) (0.433679 -0.112035 0) (0.387947 -0.0846688 0) (0.33098 -0.0696975 0) (0.279886 -0.0458067 0) (0.234206 -0.0126148 0) (0.183032 0.0275601 0) (0.121983 0.0559816 0) (0.0414176 0.0554638 0) (-0.00611192 0.0414444 0) (-0.0310424 0.0479652 0) (-0.0589805 0.0469271 0) (-0.0919188 0.0336197 0) (-0.121182 0.00430311 0) (-0.143503 -0.0307606 0) (-0.15548 -0.0539329 0) (-0.149476 -0.0581017 0) (-0.123332 -0.0473276 0) (-0.0913604 -0.0326689 0) (-0.0631546 -0.0191586 0) (-0.0323435 -0.00530949 0) (-0.00431802 0.00839542 0) (0.0233159 0.023603 0) (0.0528827 0.0431109 0) (0.0855692 0.0670843 0) (0.12146 0.0942676 0) (0.158346 0.121921 0) (0.192999 0.147538 0) (0.222588 0.169873 0) (0.24553 0.189035 0) (0.261418 0.205863 0) (0.270499 0.221127 0) (0.273206 0.234906 0) (0.269984 0.246324 0) (0.261455 0.253658 0) (0.248756 0.254652 0) (0.233994 0.24696 0) (0.220555 0.228854 0) (0.212514 0.200257 0) (0.213108 0.163478 0) (0.224128 0.122823 0) (0.246064 0.0831985 0) (0.277903 0.0487324 0) (0.317221 0.0219901 0) (0.360966 0.0038687 0) (0.406345 -0.00601456 0) (0.451252 -0.00874714 0) (0.494188 -0.00581314 0) (0.534015 0.00106876 0) (0.56991 0.0108108 0) (0.60183 0.0242375 0) (0.631131 0.0429999 0) (0.65959 0.0658037 0) (0.686401 0.0886246 0) (0.707011 0.111078 0) (0.71747 0.136831 0) (0.719236 0.163873 0) (0.716651 0.183515 0) (0.711899 0.195221 0) (0.704874 0.211482 0) (0.694892 0.240858 0) (0.681582 0.277638 0) (0.665366 0.316054 0) (0.645139 0.362352 0) (0.616654 0.419068 0) (0.578102 0.467104 0) (0.531006 0.481513 0) (0.47469 0.455251 0) (0.410646 0.39104 0) (0.346347 0.287296 0) (0.290875 0.146247 0) (0.249698 -0.0171333 0) (0.226106 -0.179794 0) (0.224267 -0.318509 0) (0.245507 -0.414574 0) (0.283199 -0.461522 0) (0.326876 -0.468356 0) (0.367942 -0.449981 0) (0.405853 -0.416379 0) (0.445248 -0.372265 0) (0.483861 -0.321529 0) (0.525753 -0.265457 0) (0.579702 -0.204863 0) (0.642681 -0.146324 0) (0.705456 -0.100143 0) (0.762596 -0.0747527 0) (0.811976 -0.0755105 0) (0.851598 -0.104967 0) (0.877673 -0.159907 0) (0.886423 -0.230801 0) (0.876607 -0.305076 0) (0.84883 -0.368507 0) (0.805439 -0.408135 0) (0.751657 -0.419594 0) (0.696288 -0.405153 0) (0.646164 -0.373136 0) (0.600741 -0.331356 0) (0.564918 -0.284932 0) (0.528592 -0.241881 0) (0.490085 -0.202899 0) (0.464211 -0.154749 0) (0.442184 -0.106368 0) (0.398931 -0.0760117 0) (0.341714 -0.0605084 0) (0.288442 -0.0373303 0) (0.241415 -0.00439236 0) (0.189092 0.0373732 0) (0.126718 0.0680196 0) (0.0436178 0.0695634 0) (-0.0054792 0.0445011 0) (-0.0289699 0.0522233 0) (-0.0551755 0.0518406 0) (-0.0863386 0.0386543 0) (-0.11433 0.00872105 0) (-0.137229 -0.0276255 0) (-0.152737 -0.053031 0) (-0.152808 -0.0603769 0) (-0.131863 -0.0520486 0) (-0.100391 -0.037731 0) (-0.0720079 -0.0240936 0) (-0.0415557 -0.0102779 0) (-0.0124657 0.00367301 0) (0.0156959 0.0187882 0) (0.0457027 0.0378847 0) (0.0786676 0.0613147 0) (0.114853 0.0881238 0) (0.152273 0.115845 0) (0.187829 0.142049 0) (0.218587 0.16536 0) (0.242718 0.185685 0) (0.25956 0.203703 0) (0.269193 0.220106 0) (0.271976 0.234954 0) (0.268333 0.247353 0) (0.258876 0.255525 0) (0.244778 0.257087 0) (0.228319 0.249494 0) (0.213141 0.230846 0) (0.203294 0.20108 0) (0.201907 0.162679 0) (0.211257 0.120156 0) (0.232543 0.0786783 0) (0.26488 0.0426687 0) (0.305371 0.0148947 0) (0.350397 -0.00372369 0) (0.396855 -0.0136819 0) (0.4427 -0.0162071 0) (0.486779 -0.0128718 0) (0.528197 -0.00542004 0) (0.565871 0.00500931 0) (0.599174 0.0190419 0) (0.629275 0.0381117 0) (0.658401 0.0610983 0) (0.686177 0.0845645 0) (0.708008 0.108389 0) (0.719666 0.135714 0) (0.722378 0.163873 0) (0.720451 0.184113 0) (0.716252 0.196194 0) (0.709905 0.212837 0) (0.700827 0.24271 0) (0.688644 0.280051 0) (0.673856 0.319046 0) (0.655525 0.366208 0) (0.629565 0.424276 0) (0.594075 0.473893 0) (0.550035 0.489874 0) (0.496505 0.464994 0) (0.435089 0.40148 0) (0.373199 0.297286 0) (0.319563 0.1546 0) (0.27903 -0.0113637 0) (0.254422 -0.17734 0) (0.250056 -0.319891 0) (0.268292 -0.41944 0) (0.303571 -0.468359 0) (0.345372 -0.475451 0) (0.38538 -0.456508 0) (0.421566 -0.422713 0) (0.459285 -0.378721 0) (0.497756 -0.328149 0) (0.537658 -0.273249 0) (0.588075 -0.214568 0) (0.650056 -0.157087 0) (0.714973 -0.110601 0) (0.775363 -0.0840532 0) (0.827608 -0.0831581 0) (0.869222 -0.110448 0) (0.896258 -0.162667 0) (0.905015 -0.230509 0) (0.894505 -0.301717 0) (0.865208 -0.362379 0) (0.819726 -0.399914 0) (0.764044 -0.410401 0) (0.706867 -0.396254 0) (0.655786 -0.365075 0) (0.609585 -0.324464 0) (0.573091 -0.278909 0) (0.537721 -0.2356 0) (0.498843 -0.197402 0) (0.471013 -0.150661 0) (0.450183 -0.101103 0) (0.409601 -0.0676615 0) (0.352628 -0.051262 0) (0.297309 -0.0286462 0) (0.24891 0.0039224 0) (0.19541 0.0473117 0) (0.131744 0.0802077 0) (0.0460057 0.0841265 0) (-0.00468066 0.0472684 0) (-0.0263454 0.0561322 0) (-0.0503449 0.0563614 0) (-0.0792019 0.0433361 0) (-0.10538 0.0130059 0) (-0.128344 -0.0242184 0) (-0.146802 -0.0513734 0) (-0.152901 -0.0616318 0) (-0.138477 -0.0561208 0) (-0.109131 -0.0426657 0) (-0.0803925 -0.0289399 0) (-0.0508049 -0.0152279 0) (-0.0206211 -0.0011388 0) (0.00815557 0.0139443 0) (0.0386899 0.0326544 0) (0.0719792 0.0555615 0) (0.108475 0.0819832 0) (0.146392 0.109724 0) (0.18277 0.136459 0) (0.214613 0.16071 0) (0.239874 0.182199 0) (0.257642 0.201444 0) (0.267813 0.219046 0) (0.270656 0.235031 0) (0.266563 0.248485 0) (0.256138 0.257565 0) (0.240617 0.259749 0) (0.222476 0.252285 0) (0.205471 0.233127 0) (0.193416 0.202245 0) (0.189565 0.162222 0) (0.197183 0.117708 0) (0.218255 0.0741849 0) (0.251654 0.0364936 0) (0.293708 0.0076512 0) (0.340162 -0.0114294 0) (0.38763 -0.0214158 0) (0.434153 -0.0237288 0) (0.478961 -0.0200471 0) (0.521543 -0.0120967 0) (0.560808 -0.000996024 0) (0.595686 0.0136971 0) (0.626956 0.033134 0) (0.656952 0.0563069 0) (0.685662 0.0803758 0) (0.708651 0.105532 0) (0.721564 0.134425 0) (0.725359 0.163728 0) (0.724216 0.184595 0) (0.720635 0.197052 0) (0.71497 0.214046 0) (0.706775 0.244373 0) (0.695702 0.282226 0) (0.682329 0.321729 0) (0.665892 0.369654 0) (0.642488 0.42896 0) (0.610119 0.480093 0) (0.569239 0.497642 0) (0.518668 0.474156 0) (0.460093 0.411357 0) (0.400847 0.306787 0) (0.349244 0.162638 0) (0.309506 -0.00563318 0) (0.284004 -0.174618 0) (0.277139 -0.320782 0) (0.292167 -0.423781 0) (0.324769 -0.474748 0) (0.364427 -0.482201 0) (0.403033 -0.462727 0) (0.43768 -0.428677 0) (0.473336 -0.384928 0) (0.511381 -0.33455 0) (0.550077 -0.280516 0) (0.596937 -0.223705 0) (0.656577 -0.167697 0) (0.722317 -0.121302 0) (0.785278 -0.0937207 0) (0.840149 -0.0911193 0) (0.883707 -0.116122 0) (0.911711 -0.165492 0) (0.920564 -0.230181 0) (0.909505 -0.298234 0) (0.878883 -0.356043 0) (0.831626 -0.391482 0) (0.77449 -0.401037 0) (0.715984 -0.387255 0) (0.664274 -0.356994 0) (0.617682 -0.31755 0) (0.58062 -0.272985 0) (0.546228 -0.229464 0) (0.507469 -0.191801 0) (0.477723 -0.146535 0) (0.457712 -0.0962142 0) (0.419911 -0.0596632 0) (0.363675 -0.0420177 0) (0.306482 -0.0197656 0) (0.25671 0.0123225 0) (0.201996 0.0573773 0) (0.137087 0.0925349 0) (0.0486044 0.0991896 0) (-0.00373386 0.0496961 0) (-0.0232261 0.0596325 0) (-0.0446007 0.060422 0) (-0.0706946 0.0475927 0) (-0.0946386 0.0170673 0) (-0.117138 -0.0206331 0) (-0.137798 -0.0490219 0) (-0.149572 -0.0618133 0) (-0.142553 -0.0593161 0) (-0.117196 -0.047327 0) (-0.0883877 -0.0336693 0) (-0.0598722 -0.0201182 0) (-0.0288337 -0.00603299 0) (0.000654923 0.00905366 0) (0.0318292 0.0274089 0) (0.0655013 0.0498199 0) (0.102324 0.0758478 0) (0.140709 0.10357 0) (0.17784 0.130782 0) (0.210686 0.155937 0) (0.237011 0.178589 0) (0.255666 0.199093 0) (0.266356 0.21795 0) (0.269242 0.23514 0) (0.264673 0.24972 0) (0.253256 0.259777 0) (0.236326 0.262632 0) (0.216518 0.255336 0) (0.197476 0.235738 0) (0.182694 0.203819 0) (0.176055 0.162128 0) (0.182266 0.115414 0) (0.203843 0.069619 0) (0.238933 0.0301293 0) (0.282902 0.000223428 0) (0.330898 -0.019248 0) (0.379305 -0.0291845 0) (0.426245 -0.0312497 0) (0.471315 -0.0272556 0) (0.51449 -0.0188881 0) (0.554932 -0.00718122 0) (0.591351 0.00817298 0) (0.624049 0.0280238 0) (0.655143 0.051413 0) (0.684823 0.0760657 0) (0.708936 0.102511 0) (0.723146 0.132953 0) (0.728148 0.163422 0) (0.72792 0.184947 0) (0.725035 0.197789 0) (0.720064 0.215114 0) (0.712734 0.245855 0) (0.702748 0.28417 0) (0.690771 0.324113 0) (0.676216 0.372696 0) (0.655388 0.433125 0) (0.626187 0.485702 0) (0.588559 0.504809 0) (0.541106 0.48272 0) (0.485562 0.42065 0) (0.429163 0.315776 0) (0.379756 0.17034 0) (0.340948 3.44854e-05 0) (0.314671 -0.17165 0) (0.305376 -0.321183 0) (0.31707 -0.42757 0) (0.346721 -0.480659 0) (0.384042 -0.488566 0) (0.420876 -0.468624 0) (0.454079 -0.434271 0) (0.487533 -0.390832 0) (0.524651 -0.340758 0) (0.562707 -0.287348 0) (0.606442 -0.232208 0) (0.662781 -0.177944 0) (0.727949 -0.132058 0) (0.79257 -0.103653 0) (0.849675 -0.0993531 0) (0.89507 -0.12198 0) (0.924039 -0.168388 0) (0.9331 -0.22984 0) (0.921638 -0.294661 0) (0.889893 -0.349552 0) (0.841219 -0.382912 0) (0.78309 -0.391585 0) (0.72374 -0.378226 0) (0.67171 -0.34895 0) (0.625077 -0.310655 0) (0.587577 -0.267169 0) (0.554126 -0.223508 0) (0.515923 -0.186146 0) (0.484384 -0.142349 0) (0.464818 -0.0916704 0) (0.429822 -0.0520528 0) (0.374806 -0.0328349 0) (0.315952 -0.0107079 0) (0.264831 0.0208018 0) (0.208861 0.0675717 0) (0.142776 0.10499 0) (0.0514405 0.114791 0) (-0.00265928 0.0517423 0) (-0.0196777 0.0626758 0) (-0.0380732 0.0639692 0) (-0.0610331 0.051368 0) (-0.0824339 0.0208355 0) (-0.103999 -0.0169886 0) (-0.126086 -0.0461101 0) (-0.142841 -0.0609367 0) (-0.143584 -0.061447 0) (-0.124021 -0.0515174 0) (-0.096035 -0.0382378 0) (-0.0684947 -0.0249127 0) (-0.0371373 -0.0109826 0) (-0.00685456 0.00409604 0) (0.0250881 0.0221344 0) (0.0592268 0.0440837 0) (0.0963981 0.069719 0) (0.135227 0.0973918 0) (0.173049 0.125035 0) (0.20682 0.151058 0) (0.234141 0.174867 0) (0.253637 0.196659 0) (0.264819 0.216824 0) (0.267731 0.235285 0) (0.26267 0.251061 0) (0.250266 0.262155 0) (0.231971 0.265727 0) (0.210468 0.258661 0) (0.189028 0.23874 0) (0.170996 0.205853 0) (0.161575 0.162362 0) (0.167075 0.113166 0) (0.189987 0.0648691 0) (0.227321 0.0235079 0) (0.27346 -0.00741493 0) (0.323066 -0.0271776 0) (0.372363 -0.0369601 0) (0.419507 -0.0387093 0) (0.464388 -0.0344059 0) (0.507522 -0.0256985 0) (0.548563 -0.0134877 0) (0.586269 0.00247136 0) (0.620494 0.0227513 0) (0.652885 0.0463961 0) (0.683615 0.071634 0) (0.708849 0.0993289 0) (0.724394 0.131289 0) (0.730717 0.162937 0) (0.731539 0.185155 0) (0.729434 0.198402 0) (0.725179 0.216044 0) (0.718698 0.247164 0) (0.709775 0.285892 0) (0.69917 0.326206 0) (0.686478 0.375346 0) (0.668231 0.436778 0) (0.642234 0.490723 0) (0.607941 0.511367 0) (0.563742 0.490674 0) (0.511397 0.429343 0) (0.458017 0.324236 0) (0.410936 0.177687 0) (0.373177 0.00561798 0) (0.346248 -0.168459 0) (0.334611 -0.321106 0) (0.342921 -0.430791 0) (0.369362 -0.486063 0) (0.404179 -0.494511 0) (0.43892 -0.474181 0) (0.470636 -0.439504 0) (0.501951 -0.39639 0) (0.537604 -0.346765 0) (0.575256 -0.293838 0) (0.61656 -0.240084 0) (0.669123 -0.187664 0) (0.732404 -0.14267 0) (0.797595 -0.11372 0) (0.856367 -0.107801 0) (0.903383 -0.128004 0) (0.933298 -0.171362 0) (0.942693 -0.229506 0) (0.93096 -0.29103 0) (0.898317 -0.34296 0) (0.848625 -0.374275 0) (0.789972 -0.382125 0) (0.730252 -0.369233 0) (0.67819 -0.340996 0) (0.631822 -0.30382 0) (0.594032 -0.261465 0) (0.561441 -0.217754 0) (0.524165 -0.180484 0) (0.491031 -0.138087 0) (0.471553 -0.0874345 0) (0.439308 -0.0448571 0) (0.385971 -0.0237728 0) (0.325707 -0.00149458 0) (0.273292 0.0293524 0) (0.216016 0.0778966 0) (0.148846 0.117563 0) (0.0545439 0.130969 0) (-0.00147939 0.0533737 0) (-0.0157719 0.0652249 0) (-0.0309034 0.0669639 0) (-0.0504524 0.054624 0) (-0.0690998 0.0242575 0) (-0.0893762 -0.0133866 0) (-0.11216 -0.0427833 0) (-0.132928 -0.0590863 0) (-0.141247 -0.0624005 0) (-0.128951 -0.0550118 0) (-0.103228 -0.0425724 0) (-0.0764742 -0.0295765 0) (-0.0455023 -0.0159405 0) (-0.0144051 -0.000945773 0) (0.0184152 0.016818 0) (0.0531372 0.0383436 0) (0.0906973 0.0635971 0) (0.129949 0.0911967 0) (0.168401 0.11923 0) (0.20302 0.146087 0) (0.231267 0.171046 0) (0.251556 0.19415 0) (0.263202 0.215671 0) (0.266124 0.235466 0) (0.260572 0.252503 0) (0.247216 0.264688 0) (0.227615 0.269028 0) (0.204296 0.262292 0) (0.179976 0.242196 0) (0.158332 0.208359 0) (0.146537 0.162835 0) (0.152236 0.11083 0) (0.177251 0.0598336 0) (0.217256 0.0165794 0) (0.265713 -0.0152789 0) (0.316928 -0.0352155 0) (0.367062 -0.0447239 0) (0.414272 -0.0460596 0) (0.458607 -0.0414127 0) (0.501098 -0.0324237 0) (0.542077 -0.0198322 0) (0.580637 -0.00337571 0) (0.616311 0.0173063 0) (0.650118 0.0412385 0) (0.681994 0.0670753 0) (0.708373 0.0959855 0) (0.725291 0.129428 0) (0.733039 0.162257 0) (0.735042 0.185205 0) (0.733812 0.198883 0) (0.730305 0.216837 0) (0.724659 0.248305 0) (0.716773 0.287402 0) (0.707512 0.328019 0) (0.696656 0.377612 0) (0.680986 0.439927 0) (0.658217 0.49516 0) (0.62733 0.517314 0) (0.586501 0.498008 0) (0.537502 0.437423 0) (0.487279 0.332156 0) (0.442625 0.184668 0) (0.406024 0.011098 0) (0.378561 -0.165069 0) (0.364684 -0.320565 0) (0.369618 -0.433432 0) (0.392636 -0.490939 0) (0.424774 -0.500007 0) (0.457187 -0.479372 0) (0.487246 -0.444385 0) (0.516589 -0.401581 0) (0.55035 -0.352539 0) (0.587507 -0.30006 0) (0.627113 -0.247389 0) (0.675911 -0.196752 0) (0.736233 -0.152948 0) (0.800812 -0.123771 0) (0.860523 -0.116381 0) (0.908798 -0.134164 0) (0.939608 -0.174413 0) (0.949454 -0.2292 0) (0.937546 -0.287357 0) (0.904279 -0.336321 0) (0.854003 -0.365643 0) (0.79529 -0.372734 0) (0.735651 -0.360335 0) (0.683822 -0.333175 0) (0.637974 -0.297079 0) (0.600053 -0.255875 0) (0.568211 -0.212218 0) (0.532159 -0.174864 0) (0.497686 -0.133742 0) (0.477973 -0.0834667 0) (0.448351 -0.0380933 0) (0.397123 -0.0148893 0) (0.335729 0.00784562 0) (0.282108 0.0379635 0) (0.22347 0.0883536 0) (0.155332 0.130237 0) (0.0579482 0.147771 0) (-0.000217701 0.0545656 0) (-0.0115829 0.0672542 0) (-0.0232352 0.069382 0) (-0.0391888 0.0573416 0) (-0.0549593 0.0272989 0) (-0.0737188 -0.00990806 0) (-0.0965656 -0.03919 0) (-0.120244 -0.056404 0) (-0.135433 -0.0621408 0) (-0.131348 -0.0575917 0) (-0.109653 -0.0465595 0) (-0.0837346 -0.0340664 0) (-0.0537923 -0.0208452 0) (-0.0219932 -0.00607234 0) (0.0117481 0.0114424 0) (0.0471961 0.0325861 0) (0.0852173 0.0574802 0) (0.124878 0.0849925 0) (0.163903 0.11338 0) (0.199292 0.141039 0) (0.228395 0.167138 0) (0.249424 0.191573 0) (0.261506 0.214495 0) (0.264434 0.235683 0) (0.258413 0.25404 0) (0.244173 0.267365 0) (0.223299 0.27254 0) (0.197918 0.266278 0) (0.170208 0.246155 0) (0.144894 0.2113 0) (0.13147 0.163417 0) (0.138296 0.108273 0) (0.166094 0.0544294 0) (0.209141 0.00930836 0) (0.259974 -0.0233714 0) (0.312661 -0.043352 0) (0.363493 -0.052463 0) (0.410669 -0.0532709 0) (0.454237 -0.0482099 0) (0.495595 -0.0389656 0) (0.535852 -0.0261191 0) (0.574716 -0.00931119 0) (0.611595 0.011701 0) (0.646831 0.0359312 0) (0.679927 0.0623833 0) (0.707491 0.0924791 0) (0.725824 0.127361 0) (0.735091 0.16137 0) (0.738401 0.185081 0) (0.738146 0.199224 0) (0.735427 0.217496 0) (0.730609 0.249286 0) (0.723736 0.288707 0) (0.715784 0.329563 0) (0.706732 0.379507 0) (0.693623 0.442585 0) (0.674094 0.499019 0) (0.646672 0.522649 0) (0.609312 0.504716 0) (0.563781 0.444885 0) (0.516819 0.339531 0) (0.474673 0.191272 0) (0.439323 0.0164546 0) (0.411446 -0.161505 0) (0.395436 -0.319584 0) (0.397041 -0.435496 0) (0.416486 -0.495269 0) (0.445754 -0.505037 0) (0.475685 -0.484173 0) (0.50385 -0.44892 0) (0.531386 -0.406399 0) (0.563017 -0.358036 0) (0.599354 -0.306058 0) (0.63785 -0.254211 0) (0.683281 -0.205167 0) (0.739932 -0.162732 0) (0.802753 -0.133647 0) (0.862551 -0.124989 0) (0.911572 -0.140414 0) (0.943147 -0.177548 0) (0.953516 -0.228941 0) (0.941502 -0.283674 0) (0.907958 -0.329696 0) (0.857556 -0.357089 0) (0.799222 -0.363481 0) (0.74008 -0.351586 0) (0.688715 -0.325522 0) (0.64359 -0.290462 0) (0.605704 -0.250401 0) (0.574481 -0.206906 0) (0.539875 -0.169328 0) (0.504361 -0.129313 0) (0.484137 -0.0797258 0) (0.456941 -0.0317697 0) (0.408212 -0.0062396 0) (0.345996 0.0172776 0) (0.291297 0.0466215 0) (0.231235 0.0989435 0) (0.162278 0.142994 0) (0.061691 0.165245 0) (0.00110208 0.055301 0) (-0.00718492 0.0687502 0) (-0.0152093 0.0712127 0) (-0.027466 0.0595169 0) (-0.0403073 0.0299432 0) (-0.0574381 -0.00661138 0) (-0.0798537 -0.0354711 0) (-0.105329 -0.0530704 0) (-0.126277 -0.0607187 0) (-0.130699 -0.059084 0) (-0.114803 -0.0500414 0) (-0.0902757 -0.0383245 0) (-0.0617623 -0.0256369 0) (-0.0295664 -0.0112554 0) (0.00503132 0.00599232 0) (0.041348 0.0267938 0) (0.0799426 0.0513623 0) (0.120024 0.0787853 0) (0.159565 0.107497 0) (0.195649 0.135927 0) (0.225533 0.163156 0) (0.247252 0.188938 0) (0.259747 0.213301 0) (0.262687 0.235933 0) (0.256244 0.255659 0) (0.241201 0.270173 0) (0.219026 0.27628 0) (0.19122 0.270671 0) (0.159711 0.250635 0) (0.131031 0.214587 0) (0.116885 0.163965 0) (0.125723 0.105372 0) (0.157075 0.048583 0) (0.203635 0.00166554 0) (0.256817 -0.0316731 0) (0.310597 -0.0515521 0) (0.361747 -0.0601539 0) (0.408705 -0.0603259 0) (0.451384 -0.0547569 0) (0.491286 -0.0452452 0) (0.530243 -0.0322525 0) (0.568802 -0.0152608 0) (0.606502 0.00596834 0) (0.64306 0.0304776 0) (0.677406 0.0575536 0) (0.706191 0.0888075 0) (0.725979 0.125085 0) (0.73685 0.160263 0) (0.741589 0.18477 0) (0.74241 0.199418 0) (0.74053 0.218019 0) (0.73654 0.250113 0) (0.730654 0.289817 0) (0.723977 0.330848 0) (0.716688 0.381044 0) (0.706115 0.444762 0) (0.689827 0.502309 0) (0.665914 0.527375 0) (0.632103 0.510796 0) (0.590139 0.451727 0) (0.546515 0.34636 0) (0.506936 0.197493 0) (0.472919 0.0216836 0) (0.444744 -0.157788 0) (0.426718 -0.318186 0) (0.425065 -0.436988 0) (0.440853 -0.499037 0) (0.467053 -0.509584 0) (0.494398 -0.488563 0) (0.520426 -0.453108 0) (0.546245 -0.410853 0) (0.575706 -0.363219 0) (0.610799 -0.311839 0) (0.64852 -0.260641 0) (0.691202 -0.212928 0) (0.743883 -0.171906 0) (0.803965 -0.143194 0) (0.862935 -0.133507 0) (0.912094 -0.146688 0) (0.944173 -0.180756 0) (0.954996 -0.228725 0) (0.94304 -0.280044 0) (0.909601 -0.323152 0) (0.859521 -0.348682 0) (0.801962 -0.354429 0) (0.74368 -0.343032 0) (0.692983 -0.318065 0) (0.648733 -0.283994 0) (0.611043 -0.245043 0) (0.580302 -0.201816 0) (0.54729 -0.163915 0) (0.511061 -0.124809 0) (0.490103 -0.0761709 0) (0.465077 -0.0258863 0) (0.419194 0.00212486 0) (0.35648 0.026768 0) (0.300876 0.05531 0) (0.239319 0.109666 0) (0.16973 0.155812 0) (0.0658147 0.183448 0) (0.0024567 0.0555703 0) (-0.00264943 0.0697087 0) (-0.00695968 0.0724572 0) (-0.0154871 0.0611566 0) (-0.0253992 0.032185 0) (-0.0408785 -0.00353303 0) (-0.06253 -0.0317468 0) (-0.0887957 -0.049284 0) (-0.114121 -0.0582655 0) (-0.126685 -0.0593901 0) (-0.118058 -0.0528296 0) (-0.0960481 -0.0422723 0) (-0.0691221 -0.030265 0) (-0.0370322 -0.0164503 0) (-0.00176999 0.000462351 0) (0.0355255 0.0209478 0) (0.0748393 0.0452321 0) (0.115389 0.0725778 0) (0.155407 0.101593 0) (0.192109 0.130766 0) (0.222702 0.15911 0) (0.24506 0.186252 0) (0.25795 0.212088 0) (0.260923 0.236208 0) (0.254127 0.257347 0) (0.238349 0.27311 0) (0.214753 0.280278 0) (0.184099 0.275517 0) (0.148607 0.25561 0) (0.117167 0.218099 0) (0.103215 0.164333 0) (0.115102 0.101995 0) (0.151171 0.0421864 0) (0.20193 -0.00638068 0) (0.257317 -0.0401313 0) (0.311458 -0.0597293 0) (0.362131 -0.0677349 0) (0.408412 -0.0672005 0) (0.450062 -0.0610334 0) (0.488338 -0.0512089 0) (0.525552 -0.0381467 0) (0.563199 -0.0211413 0) (0.601236 0.0001591 0) (0.63889 0.0248947 0) (0.674447 0.0525878 0) (0.704473 0.0849693 0) (0.725749 0.122596 0) (0.738299 0.158927 0) (0.744577 0.184259 0) (0.74658 0.199456 0) (0.745596 0.218406 0) (0.742438 0.25079 0) (0.737519 0.290741 0) (0.732079 0.331887 0) (0.726508 0.382235 0) (0.718434 0.446473 0) (0.705378 0.505038 0) (0.685006 0.531495 0) (0.654807 0.516251 0) (0.616487 0.45795 0) (0.576252 0.352645 0) (0.539279 0.203329 0) (0.506662 0.0267524 0) (0.478301 -0.153942 0) (0.458385 -0.316396 0) (0.453562 -0.437925 0) (0.465663 -0.502238 0) (0.48861 -0.513638 0) (0.513287 -0.492526 0) (0.536981 -0.456942 0) (0.561071 -0.414958 0) (0.588462 -0.368065 0) (0.621923 -0.317391 0) (0.658928 -0.266758 0) (0.69952 -0.220097 0) (0.748319 -0.180409 0) (0.804954 -0.15228 0) (0.862191 -0.141814 0) (0.910846 -0.152909 0) (0.943084 -0.183995 0) (0.95418 -0.228555 0) (0.942491 -0.2765 0) (0.909516 -0.316747 0) (0.860157 -0.340482 0) (0.80371 -0.345629 0) (0.746597 -0.334711 0) (0.696737 -0.310824 0) (0.653463 -0.277695 0) (0.616123 -0.239801 0) (0.585731 -0.19694 0) (0.554387 -0.158656 0) (0.51778 -0.120243 0) (0.495928 -0.0727623 0) (0.472769 -0.0204361 0) (0.430027 0.0101582 0) (0.36715 0.0362789 0) (0.31086 0.0640092 0) (0.247729 0.12052 0) (0.177743 0.168663 0) (0.0703656 0.202442 0) (0.00381901 0.055372 0) (0.00196073 0.0701394 0) (0.00138921 0.0731322 0) (-0.00343143 0.0622718 0) (-0.0104469 0.0340223 0) (-0.0243048 -0.000694636 0) (-0.0450147 -0.0281063 0) (-0.0712599 -0.0452388 0) (-0.099474 -0.054969 0) (-0.119226 -0.0584938 0) (-0.11879 -0.0547334 0) (-0.10083 -0.0458071 0) (-0.0756254 -0.0346825 0) (-0.0442423 -0.0215938 0) (-0.00863233 -0.00512954 0) (0.0296671 0.0150334 0) (0.0698525 0.0390732 0) (0.110964 0.0663677 0) (0.151448 0.0956775 0) (0.188701 0.125569 0) (0.219933 0.155013 0) (0.242882 0.18352 0) (0.256157 0.210855 0) (0.259199 0.2365 0) (0.252124 0.259094 0) (0.23564 0.276179 0) (0.210403 0.284575 0) (0.176509 0.280842 0) (0.13714 0.261016 0) (0.1037 0.221704 0) (0.0909045 0.164362 0) (0.107419 0.0979555 0) (0.149967 0.035074 0) (0.205774 -0.0148695 0) (0.263046 -0.0486558 0) (0.316432 -0.0677313 0) (0.365317 -0.0750768 0) (0.410002 -0.0738343 0) (0.45028 -0.0670229 0) (0.486834 -0.0568273 0) (0.522018 -0.0437334 0) (0.558205 -0.0268681 0) (0.596025 -0.0056625 0) (0.634444 0.0192134 0) (0.6711 0.0474948 0) (0.702352 0.0809665 0) (0.725134 0.11989 0) (0.739425 0.157354 0) (0.747343 0.183538 0) (0.750629 0.199328 0) (0.750606 0.218654 0) (0.748293 0.251322 0) (0.744321 0.291487 0) (0.74008 0.332692 0) (0.736178 0.383097 0) (0.730558 0.447731 0) (0.720713 0.507219 0) (0.703901 0.535018 0) (0.677361 0.521084 0) (0.64274 0.463562 0) (0.60592 0.358393 0) (0.571574 0.208782 0) (0.540413 0.0316481 0) (0.511973 -0.149991 0) (0.4903 -0.314241 0) (0.482409 -0.438324 0) (0.490836 -0.504867 0) (0.510377 -0.51719 0) (0.532298 -0.496054 0) (0.553526 -0.460411 0) (0.57579 -0.418728 0) (0.601271 -0.372565 0) (0.632838 -0.322685 0) (0.668966 -0.272609 0) (0.708012 -0.226755 0) (0.753318 -0.188235 0) (0.806125 -0.160803 0) (0.860826 -0.149795 0) (0.908343 -0.158999 0) (0.940338 -0.187216 0) (0.951581 -0.228442 0) (0.940274 -0.273074 0) (0.908041 -0.310531 0) (0.859729 -0.332535 0) (0.804662 -0.337121 0) (0.748967 -0.326652 0) (0.700082 -0.303814 0) (0.657839 -0.271578 0) (0.620989 -0.234675 0) (0.590823 -0.192268 0) (0.561156 -0.153578 0) (0.524503 -0.115633 0) (0.501666 -0.0694633 0) (0.480031 -0.0154049 0) (0.440674 0.0178187 0) (0.377971 0.0457694 0) (0.321263 0.0726963 0) (0.256474 0.131503 0) (0.186377 0.181517 0) (0.0753969 0.222297 0) (0.0051606 0.0547353 0) (0.00658904 0.0700231 0) (0.00972876 0.0732486 0) (0.00855014 0.0628916 0) (0.00437116 0.0354885 0) (-0.00790459 0.00189555 0) (-0.0276202 -0.0246015 0) (-0.0532863 -0.0411049 0) (-0.0829615 -0.0510538 0) (-0.108498 -0.0564716 0) (-0.116476 -0.0556044 0) (-0.104186 -0.0487978 0) (-0.0811099 -0.0388332 0) (-0.0509935 -0.0266121 0) (-0.0154554 -0.0107519 0) (0.0237401 0.00904814 0) (0.0649135 0.0328672 0) (0.106718 0.0601465 0) (0.147701 0.0897545 0) (0.185461 0.120346 0) (0.217267 0.150875 0) (0.240765 0.180747 0) (0.254423 0.209602 0) (0.257575 0.236801 0) (0.250287 0.260892 0) (0.233058 0.279398 0) (0.205889 0.289208 0) (0.16849 0.28664 0) (0.12562 0.266761 0) (0.0909663 0.225261 0) (0.0806283 0.16384 0) (0.104258 0.0929617 0) (0.155397 0.027068 0) (0.216915 -0.0237945 0) (0.275618 -0.0570998 0) (0.326959 -0.0753419 0) (0.372332 -0.0819743 0) (0.413962 -0.0801041 0) (0.452141 -0.0726874 0) (0.486806 -0.0620852 0) (0.519805 -0.0489647 0) (0.554083 -0.0323623 0) (0.591111 -0.0114233 0) (0.629873 0.0134766 0) (0.667437 0.0422921 0) (0.699857 0.0768051 0) (0.724144 0.116968 0) (0.740219 0.155537 0) (0.749864 0.182595 0) (0.754533 0.199025 0) (0.755539 0.218761 0) (0.754091 0.251712 0) (0.751051 0.292063 0) (0.747971 0.333274 0) (0.745682 0.383644 0) (0.742464 0.448555 0) (0.735799 0.508866 0) (0.722551 0.537952 0) (0.699703 0.525304 0) (0.668816 0.46857 0) (0.635418 0.363615 0) (0.603705 0.213853 0) (0.574041 0.0363825 0) (0.545623 -0.145956 0) (0.522332 -0.311748 0) (0.511488 -0.438207 0) (0.516283 -0.50693 0) (0.532307 -0.520233 0) (0.551372 -0.49914 0) (0.570063 -0.463506 0) (0.590364 -0.422173 0) (0.614082 -0.376726 0) (0.643649 -0.327693 0) (0.678613 -0.278217 0) (0.716455 -0.232988 0) (0.758824 -0.195422 0) (0.807745 -0.168705 0) (0.859306 -0.157353 0) (0.905072 -0.16488 0) (0.936405 -0.190377 0) (0.947665 -0.228376 0) (0.936807 -0.269788 0) (0.905507 -0.30454 0) (0.858487 -0.324876 0) (0.805008 -0.328935 0) (0.75092 -0.318876 0) (0.703118 -0.297041 0) (0.661919 -0.265654 0) (0.625682 -0.229664 0) (0.595632 -0.187784 0) (0.567595 -0.1487 0) (0.531213 -0.111 0) (0.507366 -0.0662405 0) (0.486886 -0.0107726 0) (0.4511 0.02507 0) (0.388905 0.055197 0) (0.332099 0.0813459 0) (0.265556 0.142607 0) (0.195702 0.194336 0) (0.0809644 0.24309 0) (0.00645182 0.0536738 0) (0.0111785 0.0693666 0) (0.0179725 0.0728083 0) (0.0203314 0.0630335 0) (0.0189001 0.0366225 0) (0.00819111 0.00425128 0) (-0.01055 -0.0212547 0) (-0.0353385 -0.0370117 0) (-0.0652517 -0.0467547 0) (-0.0948926 -0.0534803 0) (-0.110782 -0.0553601 0) (-0.10552 -0.0510895 0) (-0.0854459 -0.0426405 0) (-0.05705 -0.0314348 0) (-0.0220622 -0.0163667 0) (0.017765 0.00301061 0) (0.0599569 0.0265991 0) (0.102597 0.0539005 0) (0.144159 0.0838232 0) (0.182418 0.115105 0) (0.214751 0.146704 0) (0.238763 0.177939 0) (0.252806 0.208325 0) (0.25611 0.237103 0) (0.248643 0.262741 0) (0.230556 0.282792 0) (0.201145 0.294205 0) (0.160176 0.292875 0) (0.114356 0.27274 0) (0.0793057 0.228598 0) (0.0735321 0.162457 0) (0.107505 0.0866823 0) (0.168687 0.0180225 0) (0.236011 -0.0331049 0) (0.295799 -0.0653051 0) (0.344143 -0.0823214 0) (0.38431 -0.0881676 0) (0.421034 -0.0858169 0) (0.455907 -0.077944 0) (0.488289 -0.066965 0) (0.519003 -0.0538115 0) (0.551049 -0.0375564 0) (0.58673 -0.0170465 0) (0.625346 0.00773799 0) (0.663549 0.0370061 0) (0.697033 0.0724962 0) (0.722795 0.113835 0) (0.740681 0.153475 0) (0.752123 0.181423 0) (0.758268 0.198539 0) (0.760375 0.218722 0) (0.759818 0.251963 0) (0.7577 0.292478 0) (0.755744 0.333645 0) (0.755011 0.383892 0) (0.754132 0.448959 0) (0.750606 0.509992 0) (0.740916 0.540309 0) (0.721778 0.52892 0) (0.69464 0.472988 0) (0.664654 0.368322 0) (0.635565 0.218549 0) (0.607426 0.0409375 0) (0.579122 -0.141857 0) (0.554358 -0.308946 0) (0.54069 -0.4376 0) (0.541915 -0.508436 0) (0.554355 -0.522764 0) (0.570456 -0.501784 0) (0.586582 -0.466221 0) (0.604783 -0.425299 0) (0.626824 -0.380562 0) (0.654421 -0.332395 0) (0.687916 -0.28358 0) (0.724678 -0.238867 0) (0.764684 -0.202035 0) (0.80993 -0.175971 0) (0.858009 -0.164416 0) (0.901485 -0.170479 0) (0.931744 -0.19344 0) (0.942841 -0.228346 0) (0.932451 -0.266652 0) (0.90221 -0.298795 0) (0.856664 -0.31753 0) (0.804922 -0.321089 0) (0.752574 -0.311397 0) (0.705932 -0.290508 0) (0.665757 -0.259926 0) (0.630232 -0.224767 0) (0.600213 -0.183471 0) (0.573709 -0.144036 0) (0.537885 -0.106371 0) (0.513069 -0.0630651 0) (0.493362 -0.0065138 0) (0.461279 0.0318819 0) (0.399909 0.0645176 0) (0.343378 0.0899296 0) (0.274979 0.153826 0) (0.205798 0.207079 0) (0.087137 0.264908 0) (0.00766462 0.0522025 0) (0.0156786 0.0681922 0) (0.0260472 0.0718411 0) (0.0318121 0.0627058 0) (0.033019 0.0374463 0) (0.0238726 0.00638527 0) (0.00608297 -0.0181067 0) (-0.0177503 -0.0330452 0) (-0.04699 -0.0422904 0) (-0.0789767 -0.0497355 0) (-0.101636 -0.0540048 0) (-0.104202 -0.0525308 0) (-0.0884204 -0.0460004 0) (-0.0621767 -0.0360003 0) (-0.0282105 -0.0218955 0) (0.0118369 -0.00306254 0) (0.0549442 0.0202628 0) (0.0985318 0.0476133 0) (0.14079 0.0778762 0) (0.179584 0.109849 0) (0.212426 0.142506 0) (0.236929 0.175097 0) (0.251362 0.207021 0) (0.254848 0.237401 0) (0.247188 0.264651 0) (0.228066 0.286389 0) (0.196154 0.299577 0) (0.15177 0.299486 0) (0.103612 0.278838 0) (0.0692183 0.231479 0) (0.0713 0.159786 0) (0.118225 0.0788925 0) (0.189252 0.00791264 0) (0.261805 -0.0427552 0) (0.32275 -0.073211 0) (0.368079 -0.0885157 0) (0.402047 -0.0934076 0) (0.432056 -0.0907319 0) (0.462017 -0.082654 0) (0.491369 -0.0714272 0) (0.519644 -0.0582557 0) (0.549249 -0.0423979 0) (0.583092 -0.0224571 0) (0.621036 0.0020587 0) (0.659543 0.0316712 0) (0.693936 0.0680564 0) (0.721117 0.110498 0) (0.740814 0.151167 0) (0.754107 0.180016 0) (0.761813 0.197863 0) (0.765094 0.218533 0) (0.765459 0.252076 0) (0.764257 0.292736 0) (0.763389 0.333817 0) (0.764151 0.383856 0) (0.765545 0.448963 0) (0.765108 0.510615 0) (0.758954 0.542102 0) (0.743531 0.531944 0) (0.720142 0.476829 0) (0.693544 0.372527 0) (0.667059 0.222875 0) (0.640461 0.0453074 0) (0.612354 -0.137715 0) (0.586262 -0.305863 0) (0.569911 -0.436529 0) (0.567644 -0.509398 0) (0.57647 -0.524782 0) (0.589503 -0.503986 0) (0.603052 -0.468555 0) (0.619054 -0.428108 0) (0.639432 -0.38409 0) (0.665172 -0.336783 0) (0.69696 -0.288682 0) (0.732584 -0.244442 0) (0.770701 -0.208154 0) (0.812668 -0.182625 0) (0.857181 -0.170944 0) (0.897971 -0.175734 0) (0.92677 -0.196359 0) (0.937498 -0.228336 0) (0.92754 -0.263669 0) (0.898425 -0.293311 0) (0.854477 -0.310511 0) (0.804566 -0.313595 0) (0.754035 -0.304222 0) (0.708604 -0.284211 0) (0.669401 -0.254393 0) (0.634665 -0.219985 0) (0.604612 -0.179313 0) (0.579509 -0.139591 0) (0.544494 -0.10177 0) (0.518812 -0.0599135 0) (0.499494 -0.00259964 0) (0.471187 0.0382311 0) (0.410939 0.0736859 0) (0.355109 0.0984166 0) (0.284742 0.165145 0) (0.216759 0.219696 0) (0.0939752 0.287844 0) (0.00877202 0.0503439 0) (0.0200455 0.0665239 0) (0.0338933 0.0703838 0) (0.0429159 0.0619379 0) (0.046645 0.0379695 0) (0.0390693 0.00833628 0) (0.0222237 -0.0151576 0) (-0.000716584 -0.0292721 0) (-0.0287367 -0.0378427 0) (-0.0614307 -0.0454858 0) (-0.0892421 -0.0516374 0) (-0.0996949 -0.0530019 0) (-0.0896445 -0.0487806 0) (-0.0661522 -0.0402477 0) (-0.0336487 -0.0272561 0) (0.00611241 -0.0091384 0) (0.0498912 0.0138671 0) (0.0944595 0.0412713 0) (0.137541 0.0719008 0) (0.176948 0.104575 0) (0.210314 0.138284 0) (0.235302 0.172224 0) (0.250131 0.205689 0) (0.253808 0.237698 0) (0.245888 0.266636 0) (0.225519 0.290216 0) (0.190962 0.305309 0) (0.143501 0.3064 0) (0.0936106 0.284924 0) (0.0615476 0.233553 0) (0.0755411 0.155488 0) (0.135701 0.0695739 0) (0.214582 -0.00307266 0) (0.291301 -0.0527242 0) (0.354 -0.0809082 0) (0.397514 -0.0939551 0) (0.425557 -0.0975583 0) (0.447685 -0.0946164 0) (0.471016 -0.0866328 0) (0.496222 -0.0753969 0) (0.52173 -0.0622788 0) (0.548756 -0.0468497 0) (0.580365 -0.0275873 0) (0.617109 -0.00349607 0) (0.655527 0.0263289 0) (0.690628 0.0635073 0) (0.719142 0.106967 0) (0.740629 0.148618 0) (0.755808 0.178371 0) (0.765149 0.196988 0) (0.769675 0.21819 0) (0.770998 0.252053 0) (0.770713 0.292846 0) (0.7709 0.333802 0) (0.773095 0.383554 0) (0.776686 0.448584 0) (0.779278 0.510751 0) (0.776631 0.543345 0) (0.764914 0.534392 0) (0.745258 0.480109 0) (0.722012 0.376246 0) (0.6981 0.226842 0) (0.673048 0.049489 0) (0.645213 -0.133548 0) (0.617937 -0.302527 0) (0.599054 -0.435021 0) (0.593385 -0.509833 0) (0.5986 -0.52629 0) (0.608477 -0.505749 0) (0.619438 -0.470509 0) (0.633187 -0.430598 0) (0.651863 -0.387325 0) (0.675882 -0.340858 0) (0.705834 -0.293506 0) (0.740148 -0.249739 0) (0.776686 -0.213852 0) (0.815853 -0.188715 0) (0.856936 -0.176929 0) (0.894822 -0.180604 0) (0.921844 -0.199094 0) (0.931989 -0.228325 0) (0.922387 -0.260835 0) (0.894407 -0.288092 0) (0.85212 -0.303824 0) (0.804081 -0.306452 0) (0.755393 -0.297351 0) (0.711196 -0.278145 0) (0.672895 -0.249053 0) (0.638999 -0.215315 0) (0.608873 -0.17529 0) (0.585012 -0.135367 0) (0.551012 -0.0972259 0) (0.524622 -0.0567671 0) (0.505316 0.00100194 0) (0.480807 0.0441009 0) (0.421949 0.0826562 0) (0.367297 0.106774 0) (0.294841 0.176548 0) (0.228687 0.23213 0) (0.101582 0.312012 0) (0.00974658 0.0481265 0) (0.0242402 0.0643841 0) (0.0414651 0.0684702 0) (0.0535875 0.0607653 0) (0.0597209 0.0381997 0) (0.0537338 0.0100947 0) (0.0378387 -0.01237 0) (0.0156849 -0.0257213 0) (-0.0109162 -0.0335468 0) (-0.0429685 -0.0409838 0) (-0.0740492 -0.0484354 0) (-0.0916868 -0.0524445 0) (-0.0885553 -0.0508392 0) (-0.06874 -0.0441013 0) (-0.038145 -0.0323895 0) (0.000801883 -0.0151485 0) (0.0448793 0.00743873 0) (0.0903445 0.0348691 0) (0.134345 0.0658831 0) (0.174471 0.0992752 0) (0.208411 0.134035 0) (0.2339 0.169319 0) (0.249127 0.20433 0) (0.252976 0.238001 0) (0.244688 0.268719 0) (0.222872 0.294286 0) (0.185676 0.311367 0) (0.135591 0.313535 0) (0.084573 0.290807 0) (0.0577214 0.234384 0) (0.0865171 0.149423 0) (0.157694 0.058972 0) (0.241443 -0.0146653 0) (0.321084 -0.0630205 0) (0.386296 -0.0886155 0) (0.430084 -0.0988713 0) (0.453894 -0.10067 0) (0.468115 -0.0973209 0) (0.483427 -0.0896825 0) (0.503119 -0.0787604 0) (0.525278 -0.0658496 0) (0.54958 -0.0508865 0) (0.578664 -0.0323803 0) (0.613712 -0.00886096 0) (0.651612 0.0210259 0) (0.687179 0.0588753 0) (0.71691 0.103258 0) (0.740143 0.145832 0) (0.757224 0.176486 0) (0.768261 0.195911 0) (0.7741 0.21769 0) (0.776421 0.251893 0) (0.777057 0.292812 0) (0.778268 0.33361 0) (0.781833 0.383 0) (0.787543 0.447842 0) (0.793095 0.510419 0) (0.793912 0.544055 0) (0.785883 0.536277 0) (0.769931 0.482845 0) (0.74999 0.379495 0) (0.728611 0.230459 0) (0.705103 0.0534801 0) (0.677606 -0.129374 0) (0.649286 -0.298967 0) (0.628031 -0.433104 0) (0.61906 -0.509762 0) (0.620688 -0.527295 0) (0.627345 -0.507075 0) (0.635699 -0.472089 0) (0.647187 -0.432771 0) (0.664096 -0.390279 0) (0.686507 -0.344632 0) (0.714604 -0.298037 0) (0.747406 -0.254765 0) (0.782502 -0.21919 0) (0.819323 -0.194309 0) (0.85727 -0.182391 0) (0.892208 -0.185067 0) (0.91724 -0.201614 0) (0.926613 -0.228291 0) (0.917264 -0.258139 0) (0.890379 -0.283133 0) (0.849758 -0.297466 0) (0.803585 -0.299657 0) (0.75672 -0.290779 0) (0.713759 -0.2723 0) (0.676276 -0.243898 0) (0.643249 -0.210757 0) (0.613033 -0.171387 0) (0.590238 -0.13136 0) (0.557411 -0.0927633 0) (0.530521 -0.0536128 0) (0.510869 0.00432526 0) (0.490127 0.0494819 0) (0.432889 0.0913824 0) (0.379946 0.114967 0) (0.305265 0.18801 0) (0.241713 0.244324 0) (0.109991 0.337517 0) (0.0105592 0.0455833 0) (0.0282261 0.0617937 0) (0.0487295 0.0661315 0) (0.0637895 0.0592206 0) (0.0722097 0.038147 0) (0.0678325 0.011654 0) (0.0529103 -0.0097269 0) (0.0314435 -0.0223715 0) (0.00620672 -0.0294957 0) (-0.0242578 -0.0364585 0) (-0.0567032 -0.0446336 0) (-0.0801651 -0.050892 0) (-0.0845231 -0.0520468 0) (-0.0696144 -0.047455 0) (-0.0414935 -0.0372324 0) (-0.00385962 -0.0210241 0) (0.0400556 0.00102087 0) (0.0862012 0.0284148 0) (0.131144 0.0598118 0) (0.172095 0.0939375 0) (0.206686 0.129756 0) (0.232708 0.166383 0) (0.248337 0.202948 0) (0.252313 0.23832 0) (0.243523 0.270918 0) (0.220117 0.2986 0) (0.180445 0.317701 0) (0.128224 0.320808 0) (0.0768599 0.296195 0) (0.059361 0.233628 0) (0.10309 0.141637 0) (0.181617 0.0475268 0) (0.267687 -0.0266084 0) (0.349032 -0.0736186 0) (0.416971 -0.0965646 0) (0.463091 -0.103622 0) (0.485321 -0.102986 0) (0.492919 -0.0988394 0) (0.499577 -0.0916412 0) (0.512384 -0.0813769 0) (0.530347 -0.0689145 0) (0.551692 -0.0544879 0) (0.578045 -0.0367922 0) (0.610963 -0.0139745 0) (0.647902 0.015812 0) (0.683655 0.0541906 0) (0.714464 0.0993868 0) (0.739378 0.142821 0) (0.758355 0.174363 0) (0.771136 0.194627 0) (0.77835 0.217027 0) (0.781713 0.251597 0) (0.783279 0.292639 0) (0.785488 0.333252 0) (0.790359 0.382212 0) (0.798104 0.446756 0) (0.806539 0.509638 0) (0.810768 0.544248 0) (0.806398 0.537619 0) (0.794111 0.485056 0) (0.77742 0.382293 0) (0.758526 0.233738 0) (0.736552 0.0572804 0) (0.709451 -0.125207 0) (0.680222 -0.295211 0) (0.656758 -0.430808 0) (0.644596 -0.509204 0) (0.642678 -0.527806 0) (0.646076 -0.50797 0) (0.651801 -0.473303 0) (0.66105 -0.434628 0) (0.67613 -0.39296 0) (0.697001 -0.348121 0) (0.723304 -0.30227 0) (0.754421 -0.259515 0) (0.788076 -0.224211 0) (0.822913 -0.199472 0) (0.858092 -0.187368 0) (0.890189 -0.189125 0) (0.913133 -0.203901 0) (0.921591 -0.228213 0) (0.912385 -0.255564 0) (0.886514 -0.278424 0) (0.84752 -0.291428 0) (0.803168 -0.293197 0) (0.758071 -0.284498 0) (0.716331 -0.266664 0) (0.679574 -0.238919 0) (0.647421 -0.206309 0) (0.617123 -0.167588 0) (0.595214 -0.127561 0) (0.563666 -0.0884072 0) (0.53652 -0.0504426 0) (0.516195 0.00740483 0) (0.499142 0.0543717 0) (0.443713 0.099819 0) (0.393055 0.122959 0) (0.316003 0.199502 0) (0.255969 0.256188 0) (0.119415 0.364526 0) (0.0111794 0.0427507 0) (0.0319663 0.0587731 0) (0.0556612 0.0633964 0) (0.0734991 0.0573333 0) (0.0840914 0.0378235 0) (0.0813397 0.0130122 0) (0.0674236 -0.00722391 0) (0.0465829 -0.0191975 0) (0.0225346 -0.0257219 0) (-0.0058433 -0.0320914 0) (-0.0379559 -0.0404944 0) (-0.0654244 -0.0484708 0) (-0.0770374 -0.0523109 0) (-0.0682975 -0.0501793 0) (-0.0434824 -0.0417126 0) (-0.00764252 -0.0266981 0) (0.0356181 -0.00533052 0) (0.0821057 0.0219317 0) (0.127912 0.0536841 0) (0.169755 0.0885513 0) (0.205084 0.125438 0) (0.231687 0.163413 0) (0.247718 0.201546 0) (0.25176 0.238671 0) (0.24234 0.273248 0) (0.217295 0.303143 0) (0.175441 0.324252 0) (0.121511 0.328117 0) (0.0712292 0.300742 0) (0.0669406 0.231118 0) (0.12336 0.132494 0) (0.205974 0.0356601 0) (0.293149 -0.0386547 0) (0.375087 -0.0843949 0) (0.444908 -0.104855 0) (0.494385 -0.108546 0) (0.517775 -0.104869 0) (0.521085 -0.0993247 0) (0.519465 -0.0924301 0) (0.524321 -0.083103 0) (0.537056 -0.0713958 0) (0.555058 -0.0576303 0) (0.578514 -0.0407906 0) (0.608949 -0.0187824 0) (0.64449 0.0107379 0) (0.680125 0.0494862 0) (0.711848 0.095375 0) (0.738357 0.139596 0) (0.759207 0.172006 0) (0.773764 0.193133 0) (0.782409 0.216198 0) (0.786858 0.251163 0) (0.78937 0.292331 0) (0.792551 0.332737 0) (0.798666 0.381205 0) (0.808359 0.445346 0) (0.819593 0.508429 0) (0.827173 0.543944 0) (0.826421 0.538433 0) (0.81775 0.486761 0) (0.804248 0.384655 0) (0.787789 0.23669 0) (0.767333 0.0608902 0) (0.740677 -0.121061 0) (0.710667 -0.291284 0) (0.685158 -0.428161 0) (0.669927 -0.508182 0) (0.664514 -0.527835 0) (0.66464 -0.508439 0) (0.667712 -0.474159 0) (0.67476 -0.436177 0) (0.687973 -0.395373 0) (0.707325 -0.35134 0) (0.731932 -0.306206 0) (0.761264 -0.263982 0) (0.793395 -0.228938 0) (0.826485 -0.204262 0) (0.859265 -0.191912 0) (0.888734 -0.192795 0) (0.909606 -0.205948 0) (0.917064 -0.228077 0) (0.907892 -0.253095 0) (0.882933 -0.273949 0) (0.845495 -0.285695 0) (0.802895 -0.287057 0) (0.759482 -0.278495 0) (0.718934 -0.261227 0) (0.682813 -0.234106 0) (0.651521 -0.201972 0) (0.621165 -0.16388 0) (0.599966 -0.123959 0) (0.569753 -0.0841799 0) (0.542622 -0.0472537 0) (0.521333 0.0102748 0) (0.50785 0.0587751 0) (0.454368 0.107921 0) (0.406619 0.130716 0) (0.327028 0.210976 0) (0.271652 0.267676 0) (0.129711 0.393115 0) (0.0115801 0.0396691 0) (0.0354211 0.0553421 0) (0.0622381 0.0602913 0) (0.082703 0.0551309 0) (0.0953581 0.0372414 0) (0.0942349 0.0141693 0) (0.0813625 -0.00486001 0) (0.061139 -0.0161782 0) (0.0380906 -0.0222235 0) (0.0119086 -0.0280025 0) (-0.0185626 -0.0362737 0) (-0.0480366 -0.0453849 0) (-0.065874 -0.0516166 0) (-0.0641793 -0.0521395 0) (-0.0438259 -0.0457334 0) (-0.0103369 -0.0321058 0) (0.0317883 -0.0115536 0) (0.0781943 0.0154583 0) (0.124666 0.0475087 0) (0.167406 0.0831099 0) (0.203543 0.121074 0) (0.230777 0.160408 0) (0.247212 0.200132 0) (0.251254 0.239064 0) (0.241111 0.275714 0) (0.214485 0.307883 0) (0.170836 0.330963 0) (0.115524 0.335307 0) (0.0689433 0.304076 0) (0.0799202 0.226822 0) (0.145579 0.122475 0) (0.230665 0.0236391 0) (0.318847 -0.0506394 0) (0.400534 -0.0951431 0) (0.470546 -0.113388 0) (0.522898 -0.113837 0) (0.549396 -0.1067 0) (0.55122 -0.0990566 0) (0.542705 -0.0920819 0) (0.539123 -0.0838244 0) (0.545571 -0.0731972 0) (0.559667 -0.0602797 0) (0.580049 -0.0443516 0) (0.607723 -0.0232392 0) (0.641458 0.00585267 0) (0.676652 0.0447973 0) (0.709105 0.0912448 0) (0.737107 0.136171 0) (0.759789 0.169422 0) (0.776139 0.191431 0) (0.786263 0.215201 0) (0.791843 0.250591 0) (0.795319 0.291892 0) (0.799453 0.332076 0) (0.80675 0.379995 0) (0.818301 0.443632 0) (0.832242 0.506812 0) (0.843105 0.54316 0) (0.845922 0.53874 0) (0.84081 0.487979 0) (0.83043 0.386601 0) (0.816349 0.239327 0) (0.797391 0.064312 0) (0.771225 -0.11695 0) (0.740554 -0.287211 0) (0.713163 -0.425193 0) (0.694991 -0.50672 0) (0.686146 -0.527397 0) (0.683007 -0.50849 0) (0.683408 -0.474668 0) (0.688298 -0.437425 0) (0.699636 -0.397522 0) (0.717456 -0.354302 0) (0.740467 -0.309856 0) (0.76799 -0.268159 0) (0.79849 -0.233383 0) (0.829951 -0.208725 0) (0.860645 -0.196073 0) (0.88775 -0.196109 0) (0.906659 -0.207761 0) (0.913089 -0.227873 0) (0.90386 -0.250715 0) (0.879708 -0.269689 0) (0.843738 -0.28025 0) (0.802805 -0.281218 0) (0.760976 -0.272755 0) (0.721582 -0.255976 0) (0.686011 -0.229447 0) (0.655549 -0.197743 0) (0.625178 -0.160252 0) (0.604523 -0.120539 0) (0.575651 -0.0801012 0) (0.548826 -0.0440475 0) (0.526326 0.0129679 0) (0.516255 0.0627038 0) (0.464807 0.115646 0) (0.42063 0.1382 0) (0.338321 0.222395 0) (0.288905 0.278624 0) (0.141518 0.423603 0) (0.0117545 0.036382 0) (0.0385482 0.0515198 0) (0.0684355 0.0568396 0) (0.091392 0.0526389 0) (0.106009 0.0364135 0) (0.1065 0.0151267 0) (0.0947116 -0.00263742 0) (0.0751539 -0.0132996 0) (0.0529757 -0.0189794 0) (0.0288475 -0.0242595 0) (0.000826955 -0.0321807 0) (-0.0287583 -0.0418861 0) (-0.0511619 -0.0500438 0) (-0.0566666 -0.0532189 0) (-0.0420936 -0.0491718 0) (-0.0117338 -0.0371772 0) (0.0287809 -0.0175882 0) (0.0746477 0.0090436 0) (0.121484 0.0413076 0) (0.165032 0.0776141 0) (0.202008 0.116658 0) (0.229918 0.157365 0) (0.246755 0.198709 0) (0.250745 0.239509 0) (0.239841 0.278308 0) (0.211802 0.312777 0) (0.166758 0.337779 0) (0.110446 0.342143 0) (0.0711348 0.305912 0) (0.0971511 0.220978 0) (0.16886 0.111932 0) (0.256066 0.0115511 0) (0.345518 -0.0625031 0) (0.42661 -0.105663 0) (0.495084 -0.121926 0) (0.548621 -0.119488 0) (0.578896 -0.108771 0) (0.58184 -0.0983778 0) (0.568564 -0.0907409 0) (0.556797 -0.0834838 0) (0.556069 -0.0742187 0) (0.565547 -0.0623884 0) (0.582611 -0.0474541 0) (0.607311 -0.027309 0) (0.638877 0.00120198 0) (0.673297 0.0401601 0) (0.706276 0.0870202 0) (0.735654 0.132562 0) (0.760114 0.166618 0) (0.778258 0.18952 0) (0.789899 0.214034 0) (0.796653 0.249879 0) (0.801115 0.291324 0) (0.806186 0.331277 0) (0.814606 0.378596 0) (0.827924 0.441634 0) (0.844473 0.504809 0) (0.858542 0.541918 0) (0.864872 0.538558 0) (0.863256 0.48873 0) (0.855928 0.388149 0) (0.844167 0.241663 0) (0.826685 0.067549 0) (0.801043 -0.112882 0) (0.769824 -0.283017 0) (0.740712 -0.421932 0) (0.719731 -0.504841 0) (0.707523 -0.526508 0) (0.701145 -0.508132 0) (0.69887 -0.474839 0) (0.701641 -0.438383 0) (0.711127 -0.399411 0) (0.727386 -0.357018 0) (0.748878 -0.313232 0) (0.77463 -0.272048 0) (0.803414 -0.237549 0) (0.833271 -0.21289 0) (0.862107 -0.1999 0) (0.887124 -0.199103 0) (0.904235 -0.209356 0) (0.909659 -0.227596 0) (0.900308 -0.248408 0) (0.876866 -0.265628 0) (0.842274 -0.275075 0) (0.802918 -0.275661 0) (0.762562 -0.267263 0) (0.724278 -0.250898 0) (0.689181 -0.224932 0) (0.659504 -0.193622 0) (0.629173 -0.156695 0) (0.608914 -0.117286 0) (0.581345 -0.0761875 0) (0.555121 -0.0408295 0) (0.531212 0.0155147 0) (0.524368 0.0661765 0) (0.474982 0.122951 0) (0.435074 0.145382 0) (0.34982 0.233669 0) (0.308082 0.289063 0) (0.153905 0.455867 0) (0.011758 0.0329351 0) (0.0413146 0.0473276 0) (0.0742233 0.0530612 0) (0.0995556 0.0498803 0) (0.116043 0.0353531 0) (0.118122 0.0158867 0) (0.107463 -0.000564425 0) (0.0886783 -0.0105577 0) (0.0673381 -0.0159616 0) (0.0450291 -0.0208804 0) (0.0197582 -0.0283683 0) (-0.00840151 -0.0382348 0) (-0.0333818 -0.0477609 0) (-0.0453884 -0.0533629 0) (-0.0376964 -0.051891 0) (-0.0115709 -0.0418216 0) (0.0267888 -0.0233748 0) (0.0716659 0.00274184 0) (0.118492 0.035115 0) (0.162664 0.0720747 0) (0.200452 0.112189 0) (0.229057 0.154284 0) (0.246296 0.197282 0) (0.250207 0.240007 0) (0.23857 0.281013 0) (0.209384 0.317779 0) (0.163264 0.344639 0) (0.10673 0.34834 0) (0.0781699 0.306144 0) (0.117286 0.213927 0) (0.192976 0.101058 0) (0.282179 -0.000631973 0) (0.372961 -0.0742659 0) (0.453641 -0.11585 0) (0.5196 -0.130215 0) (0.572214 -0.125342 0) (0.605664 -0.111233 0) (0.61163 -0.0976228 0) (0.596079 -0.0886389 0) (0.577127 -0.0820978 0) (0.568686 -0.0743741 0) (0.572766 -0.0638968 0) (0.586174 -0.0500759 0) (0.60772 -0.0309639 0) (0.636804 -0.00317314 0) (0.670119 0.0356111 0) (0.7034 0.0827269 0) (0.734024 0.128787 0) (0.760193 0.163604 0) (0.78012 0.187404 0) (0.793306 0.212695 0) (0.801277 0.249026 0) (0.806749 0.29063 0) (0.812745 0.330348 0) (0.822231 0.377024 0) (0.837223 0.439372 0) (0.856277 0.502441 0) (0.873468 0.540236 0) (0.883246 0.537908 0) (0.885057 0.489035 0) (0.88071 0.389317 0) (0.87121 0.24371 0) (0.855179 0.0706036 0) (0.830092 -0.108867 0) (0.798427 -0.278721 0) (0.767749 -0.418404 0) (0.744095 -0.50257 0) (0.728601 -0.525186 0) (0.719023 -0.507378 0) (0.714082 -0.474682 0) (0.714769 -0.439061 0) (0.722446 -0.401046 0) (0.73712 -0.359493 0) (0.757137 -0.31635 0) (0.781192 -0.275653 0) (0.808216 -0.241437 0) (0.836447 -0.216776 0) (0.863569 -0.203429 0) (0.886741 -0.201817 0) (0.902245 -0.210752 0) (0.90672 -0.22725 0) (0.897214 -0.246165 0) (0.874407 -0.261749 0) (0.841104 -0.270153 0) (0.803235 -0.270366 0) (0.764239 -0.262004 0) (0.727018 -0.245983 0) (0.692329 -0.22055 0) (0.663385 -0.189607 0) (0.633156 -0.153204 0) (0.613169 -0.114181 0) (0.586823 -0.0724516 0) (0.561491 -0.0376083 0) (0.53603 0.0179426 0) (0.532201 0.0692177 0) (0.484845 0.129797 0) (0.449927 0.152225 0) (0.361513 0.244755 0) (0.329236 0.298617 0) (0.169137 0.49073 0) (0.0117953 0.0293712 0) (0.0437392 0.0427954 0) (0.0795756 0.0489744 0) (0.107182 0.0468747 0) (0.125459 0.034073 0) (0.129095 0.0164519 0) (0.119632 0.00135439 0) (0.101784 -0.00796003 0) (0.0813599 -0.0131493 0) (0.0606527 -0.0178442 0) (0.038062 -0.0249275 0) (0.0123135 -0.0346585 0) (-0.0132716 -0.045001 0) (-0.0303291 -0.0526108 0) (-0.0299981 -0.0537591 0) (-0.00946283 -0.0459179 0) (0.0259975 -0.0288455 0) (0.0694409 -0.00339238 0) (0.115852 0.0289735 0) (0.160384 0.0665128 0) (0.198885 0.107674 0) (0.228171 0.151165 0) (0.245808 0.195851 0) (0.249642 0.240554 0) (0.237373 0.2838 0) (0.207366 0.322846 0) (0.160355 0.351456 0) (0.105114 0.353626 0) (0.0898536 0.304771 0) (0.139301 0.205978 0) (0.217866 0.0899499 0) (0.308713 -0.0129119 0) (0.400529 -0.0859693 0) (0.48116 -0.125714 0) (0.544578 -0.138083 0) (0.594529 -0.131172 0) (0.629673 -0.114097 0) (0.63961 -0.0970632 0) (0.624206 -0.0860568 0) (0.599678 -0.0797603 0) (0.583475 -0.0736083 0) (0.581419 -0.0647389 0) (0.590732 -0.0521901 0) (0.608949 -0.0341822 0) (0.635291 -0.00723696 0) (0.667175 0.0311867 0) (0.700517 0.0783919 0) (0.732243 0.124864 0) (0.760042 0.160392 0) (0.781727 0.185088 0) (0.796477 0.211184 0) (0.805702 0.248031 0) (0.812212 0.289812 0) (0.819124 0.329296 0) (0.829624 0.375293 0) (0.846196 0.436866 0) (0.867647 0.49973 0) (0.88787 0.538138 0) (0.901026 0.53681 0) (0.906192 0.488913 0) (0.904749 0.390121 0) (0.897451 0.245481 0) (0.882845 0.0734798 0) (0.858337 -0.104914 0) (0.826321 -0.274344 0) (0.794227 -0.414635 0) (0.768037 -0.499928 0) (0.74934 -0.523448 0) (0.736612 -0.506241 0) (0.729029 -0.474209 0) (0.727667 -0.439472 0) (0.733587 -0.402436 0) (0.746666 -0.361735 0) (0.765227 -0.319222 0) (0.787668 -0.278984 0) (0.812935 -0.245049 0) (0.839502 -0.220394 0) (0.864988 -0.206689 0) (0.886509 -0.204282 0) (0.90059 -0.211973 0) (0.904197 -0.226837 0) (0.89453 -0.24398 0) (0.872306 -0.25804 0) (0.840215 -0.265466 0) (0.803745 -0.265315 0) (0.765997 -0.256961 0) (0.729791 -0.24122 0) (0.695462 -0.216289 0) (0.667189 -0.185697 0) (0.637128 -0.149774 0) (0.617315 -0.111207 0) (0.592078 -0.0689029 0) (0.567915 -0.0343951 0) (0.540811 0.0202756 0) (0.539773 0.0718583 0) (0.494352 0.136146 0) (0.465168 0.158715 0) (0.373259 0.255489 0) (0.353149 0.307616 0) (0.183223 0.527173 0) (0.0123611 0.0257081 0) (0.0459973 0.0379745 0) (0.0845167 0.0446018 0) (0.114276 0.0436393 0) (0.13427 0.0325844 0) (0.139443 0.0168227 0) (0.131274 0.00310501 0) (0.114584 -0.00552489 0) (0.0952565 -0.0105343 0) (0.0760214 -0.0151162 0) (0.0558481 -0.0218812 0) (0.0329006 -0.0313302 0) (0.00833384 -0.0420191 0) (-0.0118686 -0.0510977 0) (-0.0185214 -0.0546911 0) (-0.00486737 -0.0493191 0) (0.0266321 -0.0339199 0) (0.0681431 -0.00930497 0) (0.11374 0.0229298 0) (0.158311 0.0609586 0) (0.197357 0.103124 0) (0.227268 0.148012 0) (0.245298 0.194417 0) (0.249088 0.241138 0) (0.236354 0.286634 0) (0.205851 0.327944 0) (0.158083 0.358093 0) (0.106427 0.357745 0) (0.105569 0.301898 0) (0.162635 0.197377 0) (0.243495 0.0786801 0) (0.335592 -0.0252225 0) (0.427852 -0.0976132 0) (0.508502 -0.135316 0) (0.569929 -0.145475 0) (0.61627 -0.136761 0) (0.651278 -0.117262 0) (0.665187 -0.0968776 0) (0.651958 -0.0832836 0) (0.623847 -0.0766319 0) (0.600364 -0.0719108 0) (0.5916 -0.0648517 0) (0.596306 -0.0537636 0) (0.610996 -0.0369457 0) (0.63438 -0.0109591 0) (0.664522 0.0269224 0) (0.697667 0.0740434 0) (0.730333 0.120813 0) (0.759672 0.156995 0) (0.78308 0.182577 0) (0.799405 0.209502 0) (0.809918 0.246894 0) (0.817494 0.288871 0) (0.825318 0.328129 0) (0.836782 0.373416 0) (0.854841 0.434134 0) (0.878575 0.496696 0) (0.901735 0.535641 0) (0.918191 0.535283 0) (0.926634 0.488383 0) (0.928021 0.390579 0) (0.922869 0.246985 0) (0.909665 0.0761809 0) (0.885752 -0.101031 0) (0.853472 -0.269907 0) (0.820106 -0.410646 0) (0.791514 -0.496933 0) (0.769702 -0.52131 0) (0.753882 -0.504736 0) (0.743696 -0.473432 0) (0.740321 -0.439629 0) (0.744542 -0.403589 0) (0.756033 -0.363748 0) (0.773138 -0.321859 0) (0.794042 -0.282056 0) (0.817595 -0.24839 0) (0.842472 -0.223749 0) (0.866354 -0.2097 0) (0.886364 -0.206528 0) (0.899181 -0.213039 0) (0.902007 -0.226367 0) (0.892197 -0.241847 0) (0.870525 -0.254488 0) (0.839578 -0.261 0) (0.804428 -0.26049 0) (0.767822 -0.252121 0) (0.732583 -0.2366 0) (0.698578 -0.212142 0) (0.670915 -0.18189 0) (0.641086 -0.146404 0) (0.621378 -0.108347 0) (0.597109 -0.0655473 0) (0.57437 -0.031203 0) (0.545587 0.0225332 0) (0.547105 0.0741338 0) (0.503464 0.141966 0) (0.480747 0.164821 0) (0.385089 0.265835 0) (0.379406 0.315095 0) (0.20434 0.567767 0) (0.0144314 0.0218468 0) (0.0486175 0.0329579 0) (0.0892343 0.0399837 0) (0.120918 0.040194 0) (0.142539 0.0308969 0) (0.149253 0.0169953 0) (0.142527 0.00466107 0) (0.127262 -0.00327972 0) (0.109287 -0.00812228 0) (0.0915094 -0.0126627 0) (0.0734352 -0.0192085 0) (0.0532406 -0.028338 0) (0.0306855 -0.039046 0) (0.00929833 -0.049036 0) (-0.00312132 -0.0546974 0) (0.00284996 -0.0518707 0) (0.0290192 -0.0384917 0) (0.0679325 -0.0149381 0) (0.112323 0.0170305 0) (0.156591 0.0554476 0) (0.195958 0.098559 0) (0.226399 0.144833 0) (0.244808 0.192977 0) (0.248613 0.241743 0) (0.235632 0.289482 0) (0.204882 0.333042 0) (0.156605 0.364379 0) (0.111226 0.360532 0) (0.124472 0.297689 0) (0.187033 0.188315 0) (0.269968 0.0673131 0) (0.363094 -0.0374863 0) (0.455053 -0.109132 0) (0.535247 -0.144694 0) (0.595259 -0.152414 0) (0.637834 -0.141956 0) (0.671012 -0.120565 0) (0.68813 -0.097143 0) (0.678505 -0.0805808 0) (0.648932 -0.0729222 0) (0.619151 -0.0693227 0) (0.603378 -0.0641855 0) (0.60294 -0.0547584 0) (0.613866 -0.0392372 0) (0.634113 -0.0143143 0) (0.662221 0.0228524 0) (0.694891 0.069711 0) (0.728319 0.116655 0) (0.759097 0.153427 0) (0.784183 0.179879 0) (0.802083 0.207651 0) (0.813916 0.245614 0) (0.822587 0.287809 0) (0.831323 0.326851 0) (0.843707 0.371406 0) (0.86316 0.431198 0) (0.889063 0.493365 0) (0.915058 0.53277 0) (0.934733 0.53335 0) (0.946376 0.487466 0) (0.950517 0.390708 0) (0.947453 0.248236 0) (0.93562 0.0787099 0) (0.912317 -0.0972306 0) (0.879853 -0.265437 0) (0.845353 -0.406477 0) (0.81449 -0.493616 0) (0.789655 -0.518791 0) (0.770808 -0.502876 0) (0.758072 -0.472363 0) (0.752722 -0.439542 0) (0.755302 -0.404514 0) (0.765228 -0.365537 0) (0.780871 -0.32427 0) (0.800295 -0.284881 0) (0.822201 -0.251468 0) (0.845389 -0.226848 0) (0.867678 -0.212476 0) (0.886272 -0.208576 0) (0.897951 -0.213969 0) (0.900077 -0.225848 0) (0.890156 -0.239768 0) (0.869022 -0.251085 0) (0.839161 -0.256741 0) (0.805258 -0.255875 0) (0.769697 -0.247469 0) (0.735379 -0.232116 0) (0.701678 -0.2081 0) (0.674564 -0.178182 0) (0.645024 -0.143095 0) (0.625383 -0.105584 0) (0.60192 -0.062388 0) (0.580829 -0.0280455 0) (0.550383 0.0247305 0) (0.55422 0.0760853 0) (0.512141 0.147225 0) (0.496635 0.170551 0) (0.396698 0.275521 0) (0.409934 0.322187 0) (0.217534 0.60788 0) (0.0196576 0.0173982 0) (0.0527491 0.0278907 0) (0.0942785 0.0352032 0) (0.127396 0.0365725 0) (0.150471 0.0290214 0) (0.158745 0.0169618 0) (0.153649 0.00599788 0) (0.140104 -0.00125673 0) (0.12377 -0.00593024 0) (0.107539 -0.0104602 0) (0.0912954 -0.0168656 0) (0.0735313 -0.0257049 0) (0.0533641 -0.0362366 0) (0.0323359 -0.0466621 0) (0.0159412 -0.0538648 0) (0.0142467 -0.0534847 0) (0.0336294 -0.0424255 0) (0.0689946 -0.0202205 0) (0.111744 0.0113214 0) (0.155377 0.050018 0) (0.19481 0.0940037 0) (0.225648 0.141637 0) (0.244411 0.191527 0) (0.248314 0.242345 0) (0.235325 0.292313 0) (0.204449 0.338101 0) (0.156286 0.370108 0) (0.119755 0.361918 0) (0.145739 0.292372 0) (0.212402 0.178951 0) (0.297492 0.0558931 0) (0.391542 -0.0496278 0) (0.482477 -0.120424 0) (0.561317 -0.153834 0) (0.620132 -0.158956 0) (0.659325 -0.146682 0) (0.689418 -0.123833 0) (0.708495 -0.0978451 0) (0.703229 -0.0781523 0) (0.674206 -0.0688621 0) (0.639507 -0.0659368 0) (0.616763 -0.0627159 0) (0.610687 -0.0551368 0) (0.617573 -0.0410398 0) (0.634525 -0.0172812 0) (0.660331 0.0190095 0) (0.692236 0.0654257 0) (0.726224 0.112412 0) (0.758328 0.149701 0) (0.785036 0.177001 0) (0.804507 0.205631 0) (0.817686 0.24419 0) (0.82748 0.286625 0) (0.837131 0.325468 0) (0.850395 0.369274 0) (0.871152 0.428073 0) (0.899104 0.489753 0) (0.927828 0.529542 0) (0.950632 0.531026 0) (0.965385 0.486182 0) (0.972205 0.390528 0) (0.971183 0.249244 0) (0.960698 0.0810695 0) (0.938008 -0.0935032 0) (0.905423 -0.260928 0) (0.869899 -0.402137 0) (0.836884 -0.490007 0) (0.809121 -0.51592 0) (0.787332 -0.500683 0) (0.772122 -0.471017 0) (0.764855 -0.439227 0) (0.765856 -0.405226 0) (0.774258 -0.367112 0) (0.788435 -0.326464 0) (0.806421 -0.287476 0) (0.826754 -0.254297 0) (0.848281 -0.229699 0) (0.868989 -0.215028 0) (0.886225 -0.210444 0) (0.896859 -0.214778 0) (0.898355 -0.225289 0) (0.888356 -0.237743 0) (0.867756 -0.247824 0) (0.838927 -0.252677 0) (0.806203 -0.251455 0) (0.7716 -0.242991 0) (0.738158 -0.227761 0) (0.704754 -0.204156 0) (0.678133 -0.174572 0) (0.648934 -0.139847 0) (0.62935 -0.102903 0) (0.606516 -0.0594237 0) (0.587263 -0.0249366 0) (0.555218 0.0268783 0) (0.561146 0.0777551 0) (0.520351 0.151897 0) (0.512754 0.175887 0) (0.408182 0.284473 0) (0.442846 0.326754 0) (0.251258 0.655698 0) (0.0303277 0.0122303 0) (0.0603488 0.0229726 0) (0.100802 0.0304096 0) (0.134387 0.0328394 0) (0.158547 0.0269788 0) (0.168355 0.0167151 0) (0.165075 0.00708794 0) (0.153527 0.000511241 0) (0.139109 -0.00398312 0) (0.124567 -0.0084991 0) (0.109987 -0.0148056 0) (0.0942314 -0.0234031 0) (0.0763245 -0.0336774 0) (0.0565794 -0.0441757 0) (0.0380568 -0.0523615 0) (0.0295993 -0.0541448 0) (0.0410599 -0.0455801 0) (0.0715907 -0.0250605 0) (0.112139 0.005849 0) (0.154808 0.0447057 0) (0.194044 0.0894843 0) (0.225124 0.138435 0) (0.244203 0.190063 0) (0.2483 0.242926 0) (0.235503 0.295109 0) (0.204567 0.343062 0) (0.157505 0.375099 0) (0.13191 0.361909 0) (0.168761 0.286124 0) (0.238836 0.169297 0) (0.326187 0.0443857 0) (0.420963 -0.0616159 0) (0.510327 -0.131396 0) (0.586811 -0.162683 0) (0.64421 -0.165149 0) (0.680622 -0.150928 0) (0.706942 -0.12692 0) (0.726535 -0.0989112 0) (0.725743 -0.0761335 0) (0.698999 -0.064674 0) (0.661012 -0.0618835 0) (0.631699 -0.06045 0) (0.6196 -0.0548691 0) (0.622134 -0.0423389 0) (0.635648 -0.0198436 0) (0.658914 0.0154238 0) (0.689752 0.0612193 0) (0.724077 0.108109 0) (0.757378 0.145835 0) (0.785647 0.173955 0) (0.806676 0.20345 0) (0.821226 0.242624 0) (0.832171 0.285324 0) (0.842744 0.323985 0) (0.856853 0.367031 0) (0.878826 0.424783 0) (0.908708 0.485893 0) (0.940051 0.525991 0) (0.965893 0.528344 0) (0.983694 0.484547 0) (0.99312 0.390044 0) (0.99409 0.250024 0) (0.984905 0.0833054 0) (0.962828 -0.0898092 0) (0.930203 -0.256366 0) (0.893782 -0.397632 0) (0.858741 -0.486128 0) (0.828144 -0.512721 0) (0.80348 -0.498173 0) (0.78586 -0.469408 0) (0.776722 -0.438697 0) (0.776193 -0.405737 0) (0.783115 -0.368483 0) (0.795829 -0.328452 0) (0.812403 -0.289854 0) (0.831236 -0.256892 0) (0.851153 -0.232314 0) (0.870302 -0.217367 0) (0.88622 -0.212142 0) (0.895871 -0.215478 0) (0.896793 -0.224697 0) (0.886753 -0.235775 0) (0.866691 -0.244702 0) (0.838847 -0.248797 0) (0.80724 -0.247219 0) (0.773518 -0.238677 0) (0.74091 -0.223532 0) (0.707808 -0.200303 0) (0.681626 -0.171061 0) (0.652806 -0.136658 0) (0.633298 -0.100297 0) (0.610908 -0.0566419 0) (0.593647 -0.0218964 0) (0.560111 0.0289864 0) (0.567915 0.0791924 0) (0.528082 0.155967 0) (0.529031 0.18089 0) (0.419086 0.292441 0) (0.482146 0.330735 0) (0.253769 0.692168 0) (0.242341 0.0701713 0) (-0.174476 0.0039886 0) (0.0316751 -0.00436955 0) (-0.029191 0.000372746 0) (0.00822283 -5.11775e-05 0) (-0.0139644 0.000371837 0) (-0.00286758 -5.96735e-05 0) (0.0227761 -0.00270338 0) (0.0998525 -0.00350619 0) (0.152488 -1.50963e-05 0) (0.148236 0.00210755 0) (0.143693 -0.00155215 0) (0.160127 -0.00588744 0) (0.122285 -0.000374197 0) (-0.0226089 0.00914746 0) (-0.22208 0.0170641 0) (-0.377023 0.0149438 0) (-0.450233 0.0086757 0) (-0.439751 0.00168926 0) (-0.35584 -0.00463844 0) (-0.228834 -0.00749651 0) (-0.0972489 -0.00651166 0) (0.00695696 -0.00409237 0) (0.071196 -0.00197443 0) (0.102065 -0.000534915 0) (0.11002 5.73302e-05 0) (0.106385 0.000297398 0) (0.0986725 0.000306507 0) (0.0906505 0.000249925 0) (0.0837065 0.000188117 0) (0.0779833 0.0001473 0) (0.0732445 0.000121159 0) (0.0694253 7.87571e-05 0) (0.0666582 4.83626e-06 0) (0.0648776 -7.7368e-05 0) (0.0635253 -0.000126681 0) (0.0617225 -0.000119324 0) (0.0586297 -6.01252e-05 0) (0.0536712 3.9471e-05 0) (0.046559 0.000171722 0) (0.0373197 0.000323838 0) (0.0263785 0.00047016 0) (0.0146163 0.000576229 0) (0.00323436 0.00061202 0) (-0.00650939 0.000570624 0) (-0.0135839 0.000456814 0) (-0.0174629 0.000313631 0) (-0.0181863 0.000165805 0) (-0.0161604 3.64724e-06 0) (-0.0121124 -9.57688e-05 0) (-0.00685674 -0.000165956 0) (-0.00103017 -0.000198775 0) (0.00484342 -0.000216954 0) (0.0103935 -0.00021399 0) (0.0153973 -0.000197796 0) (0.0197383 -0.000173188 0) (0.0234064 -0.000144385 0) (0.0264931 -0.000115994 0) (0.0291791 -9.30853e-05 0) (0.0317092 -8.01394e-05 0) (0.0343604 -8.10217e-05 0) (0.0374246 -0.000100317 0) (0.0411772 -0.000142869 0) (0.0457265 -0.000204705 0) (0.0507368 -0.000266119 0) (0.0551591 -0.000296526 0) (0.0571335 -0.000282153 0) (0.0543047 -0.000107145 0) (0.0448267 0.000182527 0) (0.0287693 0.000527713 0) (0.0087027 0.00080581 0) (-0.0107388 0.000873783 0) (-0.0241407 0.000695935 0) (-0.027216 0.000277976 0) (-0.0195693 -0.000198607 0) (-0.00527439 -0.000436607 0) (0.0104752 -0.000499754 0) (0.0240188 -0.00041479 0) (0.0339979 -0.000290966 0) (0.0408078 -0.000190538 0) (0.0455831 -0.00013709 0) (0.0493762 -0.000131159 0) (0.0526414 -0.000145556 0) (0.0549839 -0.000143632 0) (0.0554652 -0.000109497 0) (0.0533319 -3.08829e-05 0) (0.0487157 4.18936e-05 0) (0.0423515 8.70158e-05 0) (0.0348175 0.00012503 0) (0.0258627 0.000200463 0) (0.015294 0.000311433 0) (0.00365769 0.000398395 0) (-0.00678008 0.000410026 0) (-0.0138993 0.000319969 0) (-0.0155711 0.000161429 0) (-0.0121601 -3.46869e-05 0) (-0.00417662 -0.000175468 0) (0.00616531 -0.000254943 0) (0.0162676 -0.000256889 0) (0.0296326 -0.000235954 0) (0.430642 0.104726 0) (-0.175539 0.030905 0) (0.0498947 -0.0216521 0) (-0.0661318 0.00338573 0) (0.0112183 -0.00190342 0) (-0.0360873 0.000977764 0) (-0.00146338 -0.00637782 0) (0.0383674 -0.0201193 0) (0.164824 -0.0273811 0) (0.278004 -0.0107746 0) (0.308398 0.00511657 0) (0.305589 0.000197754 0) (0.249661 0.00610172 0) (0.0121043 0.0446479 0) (-0.355007 0.0700861 0) (-0.620119 0.0623639 0) (-0.731222 0.0341566 0) (-0.73253 0.00636718 0) (-0.646239 -0.0198865 0) (-0.489048 -0.0395025 0) (-0.293361 -0.0461992 0) (-0.0969492 -0.0400102 0) (0.0666446 -0.0287521 0) (0.17897 -0.0160407 0) (0.242408 -0.00622523 0) (0.265206 -0.000449226 0) (0.262081 0.00225996 0) (0.246769 0.00295669 0) (0.228372 0.00275192 0) (0.211172 0.00230032 0) (0.196312 0.00189527 0) (0.183673 0.00156827 0) (0.173037 0.001235 0) (0.164201 0.000888518 0) (0.156513 0.00065946 0) (0.148662 0.000695704 0) (0.139122 0.00102939 0) (0.126719 0.00157702 0) (0.110948 0.00222697 0) (0.0919774 0.00287739 0) (0.0706625 0.00341396 0) (0.0485186 0.00370528 0) (0.0275671 0.00364287 0) (0.00990057 0.00319282 0) (-0.00278483 0.00242206 0) (-0.00952638 0.00144853 0) (-0.0102824 0.00045318 0) (-0.00580395 -0.000427577 0) (0.0027517 -0.00108732 0) (0.0139334 -0.00153093 0) (0.0263121 -0.0017496 0) (0.0388258 -0.00178196 0) (0.0506606 -0.00170617 0) (0.0612935 -0.00154736 0) (0.0704797 -0.00134739 0) (0.0781965 -0.00113929 0) (0.0846224 -0.00095203 0) (0.0901025 -0.000810923 0) (0.0950893 -0.000735238 0) (0.100069 -0.000734655 0) (0.105484 -0.000808942 0) (0.111669 -0.000949753 0) (0.118722 -0.00112766 0) (0.12619 -0.00125535 0) (0.13261 -0.00117653 0) (0.135188 -0.000709586 0) (0.130031 0.000328613 0) (0.113446 0.00194279 0) (0.0844388 0.00370802 0) (0.0469378 0.00498746 0) (0.00907298 0.00515905 0) (-0.01972 0.00402414 0) (-0.0318769 0.00179746 0) (-0.0243611 -0.000955696 0) (-0.000422147 -0.00305614 0) (0.031582 -0.00392054 0) (0.0630693 -0.00372008 0) (0.0888132 -0.00289493 0) (0.107335 -0.00201157 0) (0.119836 -0.00135538 0) (0.128413 -0.000980608 0) (0.134607 -0.000796323 0) (0.138601 -0.000614619 0) (0.13913 -0.000260654 0) (0.134497 0.000309973 0) (0.123959 0.00095842 0) (0.108613 0.00146807 0) (0.0902957 0.00178154 0) (0.0703447 0.0020287 0) (0.0488323 0.00233316 0) (0.0266915 0.00257876 0) (0.00602666 0.00246013 0) (-0.00860337 0.00185471 0) (-0.0146534 0.000808398 0) (-0.00952841 -0.000396792 0) (0.00385106 -0.00141383 0) (0.0245998 -0.00210804 0) (0.0474116 -0.0023418 0) (0.0684236 -0.00231926 0) (0.0949596 -0.00161443 0) (0.555869 0.198005 0) (-0.0597569 0.0732624 0) (0.0418213 -0.0246236 0) (-0.0862594 0.00568238 0) (0.00679822 -0.00448135 0) (-0.0535681 0.00134369 0) (-0.0125108 -0.0142308 0) (0.013992 -0.0389664 0) (0.137699 -0.0592525 0) (0.280404 -0.0329956 0) (0.360137 0.0022375 0) (0.354399 0.0123561 0) (0.180832 0.0545074 0) (-0.215218 0.122747 0) (-0.598518 0.134339 0) (-0.759324 0.0905441 0) (-0.79109 0.037158 0) (-0.745426 -0.00732517 0) (-0.634553 -0.0483812 0) (-0.465231 -0.0797115 0) (-0.263263 -0.0900222 0) (-0.0601179 -0.0792134 0) (0.114433 -0.0599083 0) (0.244096 -0.0363468 0) (0.327806 -0.0166753 0) (0.368022 -0.00327742 0) (0.374357 0.00407485 0) (0.359857 0.00685073 0) (0.336422 0.00704161 0) (0.311637 0.00623175 0) (0.288808 0.00530326 0) (0.268725 0.00449652 0) (0.251331 0.00374292 0) (0.236246 0.00307473 0) (0.22252 0.00274287 0) (0.208548 0.00298279 0) (0.192652 0.00378155 0) (0.173732 0.00491574 0) (0.151605 0.00611832 0) (0.126943 0.00715388 0) (0.101189 0.00779261 0) (0.0763499 0.00782186 0) (0.0546899 0.00711874 0) (0.0382104 0.00572135 0) (0.0282449 0.00382587 0) (0.0252801 0.00171186 0) (0.0288934 -0.000345795 0) (0.0379584 -0.00204434 0) (0.0510228 -0.00318925 0) (0.0664165 -0.00392506 0) (0.0825562 -0.00419121 0) (0.0982517 -0.00410116 0) (0.112626 -0.00378787 0) (0.125154 -0.00334037 0) (0.135655 -0.00284487 0) (0.14423 -0.00237228 0) (0.151206 -0.00198131 0) (0.157078 -0.00171595 0) (0.162408 -0.00160061 0) (0.167732 -0.00163519 0) (0.173458 -0.00179438 0) (0.179775 -0.00202886 0) (0.186468 -0.00223646 0) (0.19255 -0.00219683 0) (0.195769 -0.00157293 0) (0.192415 2.43767e-05 0) (0.17802 0.00282302 0) (0.149533 0.0063914 0) (0.108514 0.00962307 0) (0.0625123 0.0111598 0) (0.0221837 0.0100879 0) (-0.00304815 0.0065767 0) (-0.00751875 0.00142295 0) (0.00956755 -0.00403169 0) (0.0432675 -0.00778399 0) (0.0841886 -0.00913975 0) (0.123058 -0.00829686 0) (0.154266 -0.00633055 0) (0.176313 -0.00434952 0) (0.190678 -0.00288302 0) (0.199749 -0.00198215 0) (0.20508 -0.00139768 0) (0.206536 -0.000735558 0) (0.20242 0.00034925 0) (0.190961 0.00182658 0) (0.171987 0.00329915 0) (0.147685 0.0043443 0) (0.120873 0.00489267 0) (0.0936284 0.00522035 0) (0.0665206 0.00551043 0) (0.0413037 0.00549938 0) (0.0204871 0.00466148 0) (0.00899035 0.00290795 0) (0.00824496 0.000454874 0) (0.0206183 -0.00207435 0) (0.0412429 -0.00400241 0) (0.0696851 -0.00525402 0) (0.0990371 -0.0055087 0) (0.125201 -0.00533606 0) (0.158157 -0.00360214 0) (0.661052 0.288825 0) (0.100088 0.131207 0) (0.0598319 -0.00847799 0) (-0.0835465 0.00812672 0) (0.00078614 -0.00628334 0) (-0.0660961 0.00282996 0) (-0.0339852 -0.0200902 0) (-0.0243821 -0.0548987 0) (0.0794055 -0.0924042 0) (0.224465 -0.0634423 0) (0.339223 -0.00480501 0) (0.314325 0.0385423 0) (0.0374526 0.125276 0) (-0.407017 0.20536 0) (-0.690778 0.183987 0) (-0.747018 0.10411 0) (-0.747864 0.0334991 0) (-0.689625 -0.0250301 0) (-0.57678 -0.0782265 0) (-0.411413 -0.120756 0) (-0.214871 -0.134971 0) (-0.0165082 -0.120232 0) (0.155144 -0.0926231 0) (0.287181 -0.0595717 0) (0.379371 -0.0307624 0) (0.432721 -0.00934741 0) (0.451709 0.00407618 0) (0.444487 0.0105645 0) (0.421692 0.0123027 0) (0.39276 0.0116447 0) (0.363635 0.0102692 0) (0.336974 0.00887088 0) (0.313584 0.00753979 0) (0.293318 0.00640779 0) (0.275161 0.00586904 0) (0.257352 0.00624574 0) (0.238121 0.00745706 0) (0.216424 0.0091025 0) (0.192272 0.0107301 0) (0.16658 0.011961 0) (0.140973 0.0124632 0) (0.117479 0.0119757 0) (0.0981668 0.0103974 0) (0.0846869 0.00785692 0) (0.0779997 0.0046931 0) (0.0783011 0.00134117 0) (0.0850135 -0.00178197 0) (0.0969492 -0.00428384 0) (0.112596 -0.00595618 0) (0.130257 -0.00690192 0) (0.148327 -0.00713331 0) (0.16556 -0.00682468 0) (0.18104 -0.00617463 0) (0.194226 -0.0053406 0) (0.204949 -0.00446331 0) (0.213354 -0.00365769 0) (0.219826 -0.00301341 0) (0.224903 -0.00258928 0) (0.229161 -0.00240779 0) (0.233117 -0.00244965 0) (0.237135 -0.00265282 0) (0.241321 -0.00291141 0) (0.245314 -0.00302917 0) (0.247874 -0.00262557 0) (0.246403 -0.00117109 0) (0.236916 0.00195487 0) (0.21522 0.00672594 0) (0.179668 0.0122273 0) (0.134167 0.0165167 0) (0.087984 0.0176355 0) (0.051355 0.0147027 0) (0.03164 0.00837861 0) (0.0326684 3.86963e-05 0) (0.0546282 -0.0081388 0) (0.0928064 -0.0136938 0) (0.137957 -0.0154279 0) (0.180563 -0.0137203 0) (0.214505 -0.0103445 0) (0.23793 -0.00699544 0) (0.252267 -0.00448302 0) (0.260022 -0.00284983 0) (0.262823 -0.0016598 0) (0.260481 -0.000265503 0) (0.251232 0.0017976 0) (0.233554 0.00435435 0) (0.208026 0.00671743 0) (0.177866 0.00821972 0) (0.146673 0.00881341 0) (0.11694 0.00896823 0) (0.0892915 0.00895097 0) (0.0655438 0.00837834 0) (0.0477727 0.00654851 0) (0.0405896 0.00341525 0) (0.0444018 -0.000603468 0) (0.0616715 -0.0045008 0) (0.0865974 -0.00741363 0) (0.119285 -0.00917606 0) (0.152154 -0.00930495 0) (0.180754 -0.00895218 0) (0.217056 -0.00596253 0) (0.751961 0.365346 0) (0.274282 0.196592 0) (0.131607 0.0290324 0) (-0.0504084 0.0162609 0) (0.00239341 -0.00503643 0) (-0.0694538 0.00638092 0) (-0.052085 -0.0218847 0) (-0.0560675 -0.0670241 0) (0.0225672 -0.121759 0) (0.148219 -0.0963367 0) (0.272191 -0.011195 0) (0.218263 0.0778525 0) (-0.115141 0.206605 0) (-0.519923 0.278762 0) (-0.675189 0.214128 0) (-0.686441 0.108151 0) (-0.672164 0.0270901 0) (-0.613154 -0.0429545 0) (-0.503684 -0.108 0) (-0.345424 -0.161174 0) (-0.157539 -0.179204 0) (0.0327195 -0.161097 0) (0.197647 -0.125218 0) (0.325594 -0.0833776 0) (0.417789 -0.0464559 0) (0.47658 -0.0178279 0) (0.504997 0.00180819 0) (0.506903 0.0130392 0) (0.488982 0.0175787 0) (0.459768 0.0179616 0) (0.426861 0.016507 0) (0.395178 0.0145132 0) (0.367092 0.0124276 0) (0.343124 0.0106128 0) (0.322339 0.00967308 0) (0.302802 0.0100359 0) (0.282578 0.0115362 0) (0.260576 0.0135682 0) (0.236842 0.0154788 0) (0.212305 0.0167477 0) (0.188511 0.0169589 0) (0.167291 0.015825 0) (0.150443 0.0132841 0) (0.139372 0.00955349 0) (0.134901 0.00510515 0) (0.137215 0.000505776 0) (0.145803 -0.00365348 0) (0.15954 -0.00695206 0) (0.176919 -0.00912793 0) (0.196223 -0.0102488 0) (0.215802 -0.0103959 0) (0.234334 -0.00980554 0) (0.250833 -0.0087447 0) (0.264686 -0.00744196 0) (0.275656 -0.00609855 0) (0.283835 -0.0048777 0) (0.289574 -0.0039016 0) (0.293381 -0.00324297 0) (0.295802 -0.00292124 0) (0.297327 -0.00289803 0) (0.298321 -0.00307403 0) (0.298947 -0.00328346 0) (0.298946 -0.00322643 0) (0.297156 -0.00234743 0) (0.291019 0.000121858 0) (0.276663 0.00483874 0) (0.250498 0.0115464 0) (0.212213 0.0187019 0) (0.167022 0.0235669 0) (0.124042 0.0237902 0) (0.0916747 0.0187757 0) (0.0753999 0.00967621 0) (0.078453 -0.00180441 0) (0.101637 -0.012813 0) (0.141122 -0.0202378 0) (0.18814 -0.0223305 0) (0.232935 -0.0196605 0) (0.268618 -0.0146825 0) (0.292652 -0.00973008 0) (0.306195 -0.00594792 0) (0.311861 -0.00339085 0) (0.311549 -0.00143079 0) (0.305307 0.00086711 0) (0.291558 0.00402028 0) (0.269175 0.00770895 0) (0.239467 0.0108922 0) (0.206462 0.0126669 0) (0.174137 0.0130594 0) (0.144904 0.0127932 0) (0.118972 0.0122538 0) (0.0977736 0.0109632 0) (0.0827972 0.0080487 0) (0.0784777 0.00347023 0) (0.0848314 -0.00214669 0) (0.10476 -0.00744494 0) (0.132217 -0.0113418 0) (0.167543 -0.013593 0) (0.202938 -0.0135022 0) (0.233182 -0.0129337 0) (0.271853 -0.00856295 0) (0.827641 0.426837 0) (0.446539 0.26317 0) (0.243871 0.0830767 0) (0.0190908 0.0352163 0) (0.021524 0.00168006 0) (-0.0578475 0.0127245 0) (-0.0556746 -0.0195345 0) (-0.0748163 -0.0747347 0) (-0.0243774 -0.144221 0) (0.0692142 -0.125715 0) (0.180336 -0.0136422 0) (0.0998392 0.126995 0) (-0.24064 0.287174 0) (-0.557681 0.334251 0) (-0.601729 0.228068 0) (-0.6082 0.107783 0) (-0.579547 0.0185411 0) (-0.521685 -0.0607319 0) (-0.417496 -0.137093 0) (-0.268008 -0.200748 0) (-0.0909805 -0.222541 0) (0.0875507 -0.201243 0) (0.243406 -0.157244 0) (0.364329 -0.106996 0) (0.452644 -0.0625862 0) (0.511858 -0.0275142 0) (0.544898 -0.00220178 0) (0.554023 0.0139719 0) (0.54247 0.0221616 0) (0.516071 0.0245381 0) (0.482237 0.0236033 0) (0.447538 0.0211692 0) (0.416175 0.0181924 0) (0.389711 0.0154522 0) (0.367452 0.0138833 0) (0.347299 0.014061 0) (0.327102 0.0157223 0) (0.305665 0.0180296 0) (0.282988 0.0201189 0) (0.259902 0.0213386 0) (0.237751 0.0212064 0) (0.218117 0.0194071 0) (0.202602 0.0159095 0) (0.192563 0.0109958 0) (0.188939 0.00525354 0) (0.192124 -0.000585382 0) (0.201809 -0.00584123 0) (0.216976 -0.00998348 0) (0.236109 -0.0126886 0) (0.257404 -0.0139932 0) (0.279082 -0.0140373 0) (0.299663 -0.0131228 0) (0.31802 -0.0115877 0) (0.333406 -0.00973283 0) (0.345455 -0.00782259 0) (0.354132 -0.00607315 0) (0.359681 -0.00464347 0) (0.362529 -0.00362442 0) (0.363169 -0.00303433 0) (0.362055 -0.00282166 0) (0.359553 -0.00286182 0) (0.355939 -0.00294371 0) (0.351248 -0.00267313 0) (0.344747 -0.00132376 0) (0.334292 0.00218264 0) (0.31641 0.00838747 0) (0.288145 0.0168366 0) (0.250007 0.0253067 0) (0.207393 0.0303797 0) (0.168158 0.029533 0) (0.138798 0.0225257 0) (0.123817 0.0108088 0) (0.12667 -0.00371464 0) (0.148986 -0.0176575 0) (0.187821 -0.0270925 0) (0.235068 -0.0296506 0) (0.280956 -0.026013 0) (0.317842 -0.0192873 0) (0.342278 -0.0125 0) (0.354896 -0.00721058 0) (0.358333 -0.00354148 0) (0.354903 -0.000676031 0) (0.345139 0.00259465 0) (0.32786 0.00687372 0) (0.30239 0.0116548 0) (0.27061 0.0155195 0) (0.236979 0.0173577 0) (0.205391 0.017335 0) (0.177784 0.0164893 0) (0.153753 0.0153449 0) (0.134303 0.013322 0) (0.120577 0.00933211 0) (0.117175 0.00330137 0) (0.124263 -0.00394789 0) (0.145278 -0.0107335 0) (0.174332 -0.0156686 0) (0.211719 -0.0184484 0) (0.249676 -0.0180907 0) (0.281689 -0.0172696 0) (0.323085 -0.0113986 0) (0.886208 0.472277 0) (0.605987 0.3259 0) (0.382146 0.147333 0) (0.128053 0.0677959 0) (0.06691 0.0173991 0) (-0.026055 0.0228197 0) (-0.0394864 -0.0131472 0) (-0.0763816 -0.0760187 0) (-0.0575172 -0.158813 0) (-0.00161159 -0.147486 0) (0.0861935 -0.0118475 0) (-0.0115781 0.179932 0) (-0.321791 0.356959 0) (-0.533959 0.369036 0) (-0.507002 0.232124 0) (-0.51388 0.105199 0) (-0.475265 0.00776501 0) (-0.41775 -0.0782106 0) (-0.319715 -0.165055 0) (-0.1804 -0.238943 0) (-0.0157554 -0.264033 0) (0.14807 -0.2397 0) (0.291769 -0.188014 0) (0.403541 -0.129774 0) (0.485439 -0.0785655 0) (0.542806 -0.0377329 0) (0.577878 -0.00725699 0) (0.591764 0.0135983 0) (0.586012 0.0257458 0) (0.564021 0.030828 0) (0.531714 0.0310812 0) (0.496082 0.0285288 0) (0.46278 0.0246423 0) (0.434572 0.020788 0) (0.411222 0.0183884 0) (0.390578 0.0182356 0) (0.370296 0.0199632 0) (0.349082 0.0224734 0) (0.32688 0.0246856 0) (0.304406 0.0258287 0) (0.282774 0.0253644 0) (0.26334 0.0229429 0) (0.247615 0.0185294 0) (0.237086 0.0124364 0) (0.232995 0.00536008 0) (0.23607 -0.00182338 0) (0.246267 -0.00831097 0) (0.262701 -0.013427 0) (0.283842 -0.0167659 0) (0.307778 -0.0183227 0) (0.332558 -0.0182849 0) (0.35647 -0.0170222 0) (0.378135 -0.014951 0) (0.396566 -0.0124501 0) (0.411175 -0.00985077 0) (0.421739 -0.0074273 0) (0.428337 -0.00538174 0) (0.431284 -0.00383083 0) (0.431018 -0.0027969 0) (0.427961 -0.00221723 0) (0.42244 -0.00195639 0) (0.414745 -0.00179333 0) (0.405187 -0.00127402 0) (0.393714 0.000544596 0) (0.379055 0.00488113 0) (0.358508 0.012378 0) (0.329683 0.0222822 0) (0.293279 0.0317517 0) (0.254013 0.0368395 0) (0.218122 0.0349659 0) (0.190728 0.0261692 0) (0.176042 0.0120237 0) (0.177844 -0.005473 0) (0.198273 -0.0224182 0) (0.235069 -0.0340158 0) (0.28098 -0.0372016 0) (0.326678 -0.0326746 0) (0.364079 -0.0241299 0) (0.388784 -0.0153102 0) (0.400625 -0.00827288 0) (0.402039 -0.00330189 0) (0.39574 0.000590981 0) (0.382932 0.00484436 0) (0.363034 0.0102096 0) (0.335832 0.0159799 0) (0.303521 0.0203653 0) (0.270559 0.0220914 0) (0.240378 0.0215256 0) (0.214292 0.0200549 0) (0.191348 0.018335 0) (0.172313 0.0156476 0) (0.158303 0.0106278 0) (0.15431 0.0031272 0) (0.160884 -0.00584255 0) (0.18188 -0.0142542 0) (0.211809 -0.020353 0) (0.250798 -0.0237709 0) (0.291565 -0.0231442 0) (0.325589 -0.0220673 0) (0.37089 -0.0145438 0) (0.925983 0.500202 0) (0.743944 0.379883 0) (0.531947 0.215156 0) (0.269535 0.113367 0) (0.147678 0.0450895 0) (0.0311563 0.0376571 0) (-0.00178893 -0.00256811 0) (-0.055701 -0.0701629 0) (-0.0719456 -0.16432 0) (-0.0560727 -0.160112 0) (0.00355471 -0.00480647 0) (-0.0985855 0.23001 0) (-0.355034 0.41092 0) (-0.464063 0.384386 0) (-0.407649 0.230125 0) (-0.404555 0.10052 0) (-0.362334 -0.00462764 0) (-0.304796 -0.0953939 0) (-0.212612 -0.19182 0) (-0.0839267 -0.275179 0) (0.0663387 -0.302652 0) (0.213727 -0.275727 0) (0.341908 -0.216865 0) (0.442781 -0.151098 0) (0.516205 -0.0938137 0) (0.569522 -0.0481479 0) (0.605601 -0.0130928 0) (0.62331 0.0121654 0) (0.622557 0.0283045 0) (0.605373 0.0364887 0) (0.57619 0.0385027 0) (0.541429 0.0362634 0) (0.507398 0.0316117 0) (0.477895 0.0265781 0) (0.453324 0.0232242 0) (0.431675 0.0226512 0) (0.410527 0.0243979 0) (0.388536 0.0270803 0) (0.365641 0.0293942 0) (0.342471 0.0304684 0) (0.319945 0.0297101 0) (0.299251 0.0267271 0) (0.281905 0.0214258 0) (0.269641 0.0141472 0) (0.264073 0.0056158 0) (0.266276 -0.00308925 0) (0.276451 -0.0110192 0) (0.293815 -0.0173176 0) (0.316839 -0.0214739 0) (0.343564 -0.0234308 0) (0.371953 -0.023407 0) (0.400132 -0.0218312 0) (0.426473 -0.0191942 0) (0.449649 -0.0159571 0) (0.468689 -0.0125295 0) (0.483026 -0.00925436 0) (0.492476 -0.0063917 0) (0.497179 -0.00409599 0) (0.497508 -0.00240713 0) (0.493909 -0.00125308 0) (0.486706 -0.000453117 0) (0.476068 0.000178264 0) (0.462301 0.00108598 0) (0.445911 0.00331999 0) (0.4269 0.0082368 0) (0.403929 0.0166948 0) (0.375269 0.0276985 0) (0.341311 0.0378985 0) (0.305541 0.042934 0) (0.272652 0.0401667 0) (0.246927 0.029793 0) (0.232493 0.0134008 0) (0.233198 -0.0069803 0) (0.251307 -0.0269231 0) (0.284993 -0.0407737 0) (0.328007 -0.0447519 0) (0.372012 -0.0394832 0) (0.408993 -0.0291457 0) (0.433718 -0.0181674 0) (0.44501 -0.00916853 0) (0.444789 -0.00268992 0) (0.435991 0.00232901 0) (0.420577 0.0075471 0) (0.39877 0.0139034 0) (0.370815 0.020522 0) (0.338939 0.025279 0) (0.307199 0.026784 0) (0.278356 0.0256418 0) (0.253152 0.0235896 0) (0.23032 0.0213853 0) (0.210621 0.0181249 0) (0.195393 0.0121148 0) (0.190032 0.0031036 0) (0.195445 -0.00770418 0) (0.215601 -0.0179019 0) (0.245566 -0.0253236 0) (0.285226 -0.0295581 0) (0.328639 -0.0287127 0) (0.364391 -0.0274627 0) (0.414978 -0.0181178 0) (0.947493 0.511441 0) (0.854734 0.42141 0) (0.679484 0.279985 0) (0.431122 0.168376 0) (0.266061 0.0848044 0) (0.120375 0.0593747 0) (0.0627231 0.0138721 0) (-0.00936618 -0.0569676 0) (-0.0612926 -0.159131 0) (-0.0876532 -0.164461 0) (-0.0579461 0.00565966 0) (-0.149701 0.270425 0) (-0.343258 0.447422 0) (-0.362969 0.386138 0) (-0.306987 0.224184 0) (-0.28605 0.0930161 0) (-0.243541 -0.0177624 0) (-0.186568 -0.112448 0) (-0.098919 -0.217398 0) (0.0201153 -0.308345 0) (0.154306 -0.338666 0) (0.283012 -0.308622 0) (0.393213 -0.243035 0) (0.480987 -0.170471 0) (0.545012 -0.107752 0) (0.591966 -0.0583054 0) (0.627495 -0.0196501 0) (0.649076 0.0096554 0) (0.653501 0.0298119 0) (0.641316 0.0413391 0) (0.616096 0.0455415 0) (0.583504 0.0440715 0) (0.549789 0.0389492 0) (0.519355 0.0328319 0) (0.493268 0.0285145 0) (0.469872 0.0275037 0) (0.446854 0.0292684 0) (0.422945 0.0321224 0) (0.398152 0.0345344 0) (0.373077 0.0355537 0) (0.348499 0.0345437 0) (0.3255 0.0310394 0) (0.305688 0.0248566 0) (0.291069 0.0163168 0) (0.2836 0.00618713 0) (0.284601 -0.00427608 0) (0.294391 -0.013886 0) (0.312216 -0.0215962 0) (0.336525 -0.0267826 0) (0.365372 -0.0293378 0) (0.396773 -0.0295051 0) (0.428912 -0.0277561 0) (0.460142 -0.0246303 0) (0.488924 -0.0206465 0) (0.51387 -0.0162877 0) (0.533869 -0.0119816 0) (0.548238 -0.00806863 0) (0.556757 -0.00477019 0) (0.559606 -0.00217241 0) (0.557254 -0.000195332 0) (0.55017 0.00138065 0) (0.538506 0.00275863 0) (0.522247 0.00431082 0) (0.501899 0.00698369 0) (0.478621 0.0123127 0) (0.453019 0.0213312 0) (0.42455 0.0330133 0) (0.393176 0.0436885 0) (0.360887 0.0486511 0) (0.330995 0.0451294 0) (0.307194 0.0333564 0) (0.293409 0.0148796 0) (0.293288 -0.00821484 0) (0.308979 -0.0310445 0) (0.338831 -0.0471336 0) (0.377496 -0.0520313 0) (0.418117 -0.0462276 0) (0.453504 -0.0342345 0) (0.477892 -0.0210702 0) (0.488913 -0.00994512 0) (0.487591 -0.00177368 0) (0.476778 0.00448932 0) (0.459162 0.0106504 0) (0.435939 0.0178653 0) (0.407856 0.025172 0) (0.376934 0.0301819 0) (0.346526 0.0314288 0) (0.318652 0.029752 0) (0.293667 0.0272095 0) (0.270259 0.024626 0) (0.249391 0.020866 0) (0.232747 0.0138777 0) (0.22597 0.00330921 0) (0.230147 -0.00944525 0) (0.248924 -0.0215585 0) (0.278038 -0.0304346 0) (0.316878 -0.0357071 0) (0.36203 -0.034742 0) (0.398345 -0.03353 0) (0.454993 -0.0222378 0) (0.950864 0.507419 0) (0.934639 0.44749 0) (0.81225 0.335684 0) (0.598437 0.227109 0) (0.415238 0.134365 0) (0.24415 0.0895837 0) (0.157051 0.0368874 0) (0.0692981 -0.0353501 0) (-0.0181884 -0.142697 0) (-0.0881965 -0.159526 0) (-0.0863596 0.0178237 0) (-0.16003 0.298975 0) (-0.290656 0.466699 0) (-0.240619 0.379571 0) (-0.200447 0.216219 0) (-0.163308 0.0824525 0) (-0.120915 -0.0318097 0) (-0.0655205 -0.129811 0) (0.019196 -0.241795 0) (0.129614 -0.33868 0) (0.246549 -0.371904 0) (0.354278 -0.337727 0) (0.444988 -0.265745 0) (0.517181 -0.187401 0) (0.571316 -0.119987 0) (0.610727 -0.067655 0) (0.643291 -0.0266587 0) (0.668137 0.00593402 0) (0.678645 0.0300672 0) (0.672268 0.0452095 0) (0.651643 0.0519761 0) (0.622051 0.0517127 0) (0.589475 0.0465099 0) (0.558506 0.0395574 0) (0.530714 0.0343991 0) (0.504926 0.0330144 0) (0.479164 0.0348342 0) (0.452414 0.0378678 0) (0.424867 0.0403669 0) (0.397152 0.0413259 0) (0.369942 0.0400787 0) (0.344263 0.0360531 0) (0.321835 0.0289487 0) (0.304911 0.0190099 0) (0.295689 0.0071236 0) (0.295609 -0.00533136 0) (0.304972 -0.0168284 0) (0.322941 -0.0261377 0) (0.34788 -0.0325247 0) (0.377836 -0.0358493 0) (0.410926 -0.0363953 0) (0.445545 -0.0346827 0) (0.480307 -0.0312762 0) (0.513841 -0.0267001 0) (0.544648 -0.0214562 0) (0.571161 -0.016035 0) (0.592023 -0.0108751 0) (0.606357 -0.00630502 0) (0.613862 -0.00250054 0) (0.614764 0.00058469 0) (0.609661 0.00315181 0) (0.599036 0.00551141 0) (0.582741 0.00801629 0) (0.560649 0.0114254 0) (0.534162 0.0171487 0) (0.505828 0.0263614 0) (0.477097 0.0382503 0) (0.448014 0.0491064 0) (0.41914 0.0539537 0) (0.392469 0.0497838 0) (0.371056 0.0367628 0) (0.358402 0.016386 0) (0.357787 -0.00919183 0) (0.371152 -0.0347036 0) (0.396881 -0.0528896 0) (0.430165 -0.0587345 0) (0.465649 -0.0526286 0) (0.497872 -0.0392527 0) (0.521316 -0.0240163 0) (0.532375 -0.0106703 0) (0.530696 -0.000595203 0) (0.518564 0.00702281 0) (0.499202 0.0141115 0) (0.474903 0.0220386 0) (0.447039 0.0298662 0) (0.4173 0.0350422 0) (0.38815 0.0360518 0) (0.36089 0.0339293 0) (0.335697 0.0309998 0) (0.311464 0.028119 0) (0.289496 0.0238903 0) (0.271855 0.0159019 0) (0.264139 0.00370613 0) (0.267429 -0.0110302 0) (0.2846 -0.0251136 0) (0.312178 -0.0354883 0) (0.348586 -0.042003 0) (0.393902 -0.0410374 0) (0.428845 -0.0402002 0) (0.491 -0.0269558 0) (0.93908 0.491048 0) (0.981418 0.456729 0) (0.918644 0.376974 0) (0.755586 0.282406 0) (0.580955 0.189093 0) (0.398691 0.128629 0) (0.282202 0.0680338 0) (0.179914 -0.00633062 0) (0.062583 -0.114735 0) (-0.0545046 -0.14421 0) (-0.0729794 0.0288541 0) (-0.131124 0.315793 0) (-0.204873 0.469906 0) (-0.107174 0.368128 0) (-0.0839317 0.208236 0) (-0.0372318 0.0706205 0) (0.00487521 -0.0459277 0) (0.0574839 -0.147481 0) (0.139845 -0.264835 0) (0.242409 -0.366816 0) (0.341354 -0.401175 0) (0.425968 -0.362271 0) (0.495965 -0.28429 0) (0.550847 -0.201345 0) (0.594262 -0.130297 0) (0.626274 -0.0757401 0) (0.653807 -0.0336594 0) (0.679908 0.0009937 0) (0.696903 0.0287146 0) (0.697759 0.0477916 0) (0.682761 0.0575939 0) (0.65686 0.0590021 0) (0.626049 0.0541604 0) (0.594975 0.0467334 0) (0.565509 0.0409796 0) (0.536974 0.0393665 0) (0.507926 0.0413057 0) (0.477832 0.0445132 0) (0.447185 0.0470549 0) (0.41666 0.047912 0) (0.386814 0.0464 0) (0.358606 0.0418141 0) (0.333851 0.0336899 0) (0.314995 0.0222046 0) (0.304397 0.00834709 0) (0.303545 -0.00626221 0) (0.312652 -0.0198122 0) (0.330735 -0.0308532 0) (0.356 -0.0385398 0) (0.386397 -0.0427225 0) (0.420061 -0.0437556 0) (0.455556 -0.0422409 0) (0.491829 -0.0387841 0) (0.527947 -0.0338912 0) (0.56277 -0.02801 0) (0.594773 -0.0216042 0) (0.622164 -0.0151678 0) (0.64333 -0.00914596 0) (0.65722 -0.00384321 0) (0.663415 0.000649263 0) (0.662182 0.00446973 0) (0.654351 0.00800358 0) (0.640302 0.01172 0) (0.619427 0.0162428 0) (0.592201 0.022603 0) (0.561975 0.0318499 0) (0.532549 0.0435046 0) (0.505133 0.0541798 0) (0.479462 0.0587947 0) (0.456253 0.0540317 0) (0.437668 0.0399171 0) (0.426544 0.0178803 0) (0.425708 -0.00993246 0) (0.43686 -0.0378777 0) (0.45845 -0.0579253 0) (0.486005 -0.064592 0) (0.515083 -0.0583352 0) (0.542255 -0.0439568 0) (0.563545 -0.026963 0) (0.574728 -0.0114476 0) (0.573615 0.000707547 0) (0.561195 0.00983587 0) (0.540768 0.0178815 0) (0.515712 0.0263886 0) (0.488232 0.0345724 0) (0.459745 0.0398494 0) (0.431772 0.0406789 0) (0.404943 0.0382202 0) (0.379425 0.0349953 0) (0.354515 0.0318547 0) (0.331925 0.0271382 0) (0.314046 0.0180933 0) (0.306081 0.0042186 0) (0.308971 -0.0124713 0) (0.324512 -0.0284966 0) (0.35019 -0.0403049 0) (0.383043 -0.0481814 0) (0.426813 -0.0472988 0) (0.458295 -0.0472263 0) (0.523774 -0.0322041 0) (0.916625 0.466183 0) (0.997907 0.450862 0) (0.991496 0.401077 0) (0.888219 0.327662 0) (0.744983 0.242702 0) (0.571881 0.173926 0) (0.435034 0.10621 0) (0.31925 0.0308504 0) (0.182228 -0.0750881 0) (0.0148311 -0.120421 0) (-0.0260139 0.0388649 0) (-0.0680482 0.324303 0) (-0.0946591 0.460835 0) (0.0282216 0.351229 0) (0.0436493 0.199818 0) (0.0946463 0.057872 0) (0.135142 -0.0602269 0) (0.18186 -0.163927 0) (0.262618 -0.286836 0) (0.357321 -0.3927 0) (0.436793 -0.425758 0) (0.496514 -0.381477 0) (0.544607 -0.298081 0) (0.581616 -0.211808 0) (0.61336 -0.138519 0) (0.638668 -0.0823659 0) (0.660443 -0.0401028 0) (0.685054 -0.00488996 0) (0.707417 0.0254907 0) (0.71672 0.0486286 0) (0.708935 0.0620726 0) (0.687719 0.0657482 0) (0.659282 0.0617746 0) (0.628555 0.0543067 0) (0.597657 0.0482956 0) (0.56636 0.0466688 0) (0.5339 0.048807 0) (0.500413 0.0521536 0) (0.466781 0.0546495 0) (0.433686 0.0553277 0) (0.401495 0.0534988 0) (0.371054 0.048295 0) (0.344256 0.039048 0) (0.32373 0.0258602 0) (0.311989 0.00983978 0) (0.31057 -0.00710691 0) (0.319613 -0.0228705 0) (0.337965 -0.0357515 0) (0.363626 -0.0447918 0) (0.394365 -0.0498496 0) (0.428214 -0.0513791 0) (0.463757 -0.0501041 0) (0.500128 -0.0467147 0) (0.536776 -0.0417267 0) (0.573102 -0.03552 0) (0.608118 -0.0284539 0) (0.640239 -0.0209593 0) (0.667498 -0.0135295 0) (0.688152 -0.00659867 0) (0.701 -0.000428723 0) (0.70545 0.00496526 0) (0.701974 0.00987833 0) (0.691692 0.014926 0) (0.674555 0.0208344 0) (0.64992 0.0282434 0) (0.620145 0.0376956 0) (0.590412 0.0488721 0) (0.564026 0.0589862 0) (0.5411 0.0631514 0) (0.521395 0.0577869 0) (0.505904 0.0427281 0) (0.49659 0.0192831 0) (0.495789 -0.0104639 0) (0.504813 -0.0405527 0) (0.522149 -0.0622008 0) (0.543964 -0.0694699 0) (0.566321 -0.0630373 0) (0.586991 -0.0479923 0) (0.604312 -0.0297471 0) (0.614964 -0.0123574 0) (0.615207 0.00189031 0) (0.603894 0.012755 0) (0.5835 0.0218728 0) (0.558178 0.0308842 0) (0.531189 0.0392761 0) (0.503953 0.0445976 0) (0.477148 0.0453164 0) (0.450784 0.0426319 0) (0.425104 0.0391774 0) (0.399937 0.0357706 0) (0.377397 0.0305047 0) (0.3601 0.0203364 0) (0.352491 0.00478253 0) (0.355308 -0.0137963 0) (0.369207 -0.0316768 0) (0.392763 -0.0447834 0) (0.421657 -0.0540344 0) (0.462637 -0.0532344 0) (0.489354 -0.0542304 0) (0.554749 -0.0377797 0) (0.889966 0.437469 0) (0.989593 0.43293 0) (1.02744 0.407223 0) (0.984807 0.357753 0) (0.888549 0.288347 0) (0.745278 0.22029 0) (0.605064 0.148836 0) (0.480548 0.0740989 0) (0.335005 -0.0242082 0) (0.127879 -0.0840099 0) (0.0489969 0.0501214 0) (0.0217317 0.326555 0) (0.0398561 0.443606 0) (0.160085 0.332998 0) (0.180875 0.19029 0) (0.234103 0.0449103 0) (0.26995 -0.0743375 0) (0.308118 -0.179298 0) (0.387005 -0.307587 0) (0.47281 -0.415704 0) (0.530763 -0.444825 0) (0.564121 -0.394556 0) (0.589467 -0.306663 0) (0.609062 -0.218456 0) (0.628718 -0.144502 0) (0.647921 -0.0875746 0) (0.664558 -0.0455568 0) (0.685395 -0.0111471 0) (0.710467 0.0204687 0) (0.728154 0.0472862 0) (0.729234 0.0649413 0) (0.714213 0.0716619 0) (0.689038 0.069197 0) (0.65921 0.062194 0) (0.627281 0.0563253 0) (0.593513 0.0549451 0) (0.557897 0.0573659 0) (0.521348 0.060787 0) (0.485139 0.0631184 0) (0.449855 0.06353 0) (0.415582 0.0613414 0) (0.383041 0.0554748 0) (0.354241 0.0450125 0) (0.332053 0.0299642 0) (0.319194 0.0115771 0) (0.317269 -0.0079147 0) (0.326356 -0.0260651 0) (0.345131 -0.0408998 0) (0.37137 -0.0513401 0) (0.402634 -0.0572631 0) (0.436796 -0.0592436 0) (0.472351 -0.0581582 0) (0.508434 -0.054821 0) (0.544644 -0.0498035 0) (0.580742 -0.0434606 0) (0.616327 -0.0360489 0) (0.650494 -0.0278578 0) (0.681602 -0.0193095 0) (0.707677 -0.0108936 0) (0.727008 -0.00297226 0) (0.73817 0.00425792 0) (0.740507 0.0108338 0) (0.735013 0.017303 0) (0.722885 0.0246419 0) (0.703612 0.0334109 0) (0.677682 0.0434968 0) (0.649528 0.0543074 0) (0.624187 0.0636181 0) (0.603446 0.0670557 0) (0.586962 0.0610038 0) (0.574551 0.0451248 0) (0.567166 0.0205379 0) (0.56666 -0.0108067 0) (0.573743 -0.0426847 0) (0.586589 -0.0656433 0) (0.602363 -0.0733227 0) (0.61821 -0.0665945 0) (0.632091 -0.0510256 0) (0.643828 -0.0320533 0) (0.652396 -0.0133559 0) (0.654033 0.00277056 0) (0.645264 0.0155204 0) (0.62652 0.0259153 0) (0.601846 0.0354633 0) (0.575582 0.0439639 0) (0.549598 0.0492763 0) (0.524031 0.0499449 0) (0.498354 0.0471332 0) (0.472876 0.0434861 0) (0.448009 0.0397719 0) (0.426198 0.0338706 0) (0.410156 0.0225331 0) (0.403301 0.00530917 0) (0.406125 -0.0150166 0) (0.418288 -0.0346228 0) (0.439404 -0.0488803 0) (0.464331 -0.0594597 0) (0.501788 -0.0586883 0) (0.523809 -0.0608396 0) (0.585586 -0.0433903 0) (0.866529 0.409383 0) (0.965474 0.407867 0) (1.03099 0.398379 0) (1.03896 0.370322 0) (0.995686 0.32018 0) (0.897888 0.261128 0) (0.774777 0.191704 0) (0.650933 0.119799 0) (0.510184 0.0348697 0) (0.285036 -0.0332111 0) (0.1512 0.0641444 0) (0.128319 0.319567 0) (0.193324 0.420452 0) (0.297203 0.316882 0) (0.325649 0.180079 0) (0.379852 0.0322673 0) (0.406865 -0.0868902 0) (0.435516 -0.193304 0) (0.512532 -0.327001 0) (0.587209 -0.434951 0) (0.620892 -0.457437 0) (0.626803 -0.400791 0) (0.629343 -0.30976 0) (0.632808 -0.221189 0) (0.640927 -0.148183 0) (0.65441 -0.0914981 0) (0.66726 -0.0498868 0) (0.683312 -0.0170982 0) (0.707707 0.0140874 0) (0.731906 0.0435587 0) (0.74268 0.0656647 0) (0.735638 0.0763019 0) (0.715086 0.0761783 0) (0.686969 0.0702631 0) (0.65458 0.064991 0) (0.618865 0.0641402 0) (0.580646 0.0669242 0) (0.541615 0.0703415 0) (0.503337 0.0723931 0) (0.466177 0.07248 0) (0.429902 0.0699297 0) (0.395181 0.0633838 0) (0.364264 0.0516132 0) (0.34035 0.0345317 0) (0.326374 0.013552 0) (0.32398 -0.00871279 0) (0.333159 -0.0294395 0) (0.352413 -0.0463535 0) (0.379301 -0.0582495 0) (0.411193 -0.0650333 0) (0.445824 -0.0674163 0) (0.481596 -0.0664444 0) (0.517577 -0.0630766 0) (0.553335 -0.0579724 0) (0.588695 -0.0515101 0) (0.623543 -0.0439028 0) (0.657597 -0.0353144 0) (0.689982 -0.0260153 0) (0.719093 -0.0164435 0) (0.743179 -0.00698883 0) (0.760541 0.00208711 0) (0.769483 0.0105676 0) (0.769719 0.0186432 0) (0.762931 0.0273429 0) (0.750115 0.0374809 0) (0.730959 0.0485885 0) (0.707506 0.0594751 0) (0.684597 0.0680643 0) (0.665933 0.0705788 0) (0.6522 0.0637017 0) (0.642545 0.0470845 0) (0.637006 0.0215893 0) (0.636958 -0.0110094 0) (0.642308 -0.0442425 0) (0.650525 -0.0681178 0) (0.659663 -0.0760515 0) (0.668919 -0.0689959 0) (0.676628 -0.052911 0) (0.682346 -0.0335364 0) (0.687052 -0.0142004 0) (0.688976 0.00326057 0) (0.683551 0.0178223 0) (0.668352 0.0297243 0) (0.645862 0.0399852 0) (0.620938 0.0485965 0) (0.596319 0.0538646 0) (0.572124 0.054523 0) (0.547466 0.0516603 0) (0.522669 0.0478363 0) (0.498692 0.0437542 0) (0.478188 0.0371181 0) (0.463845 0.0246 0) (0.457945 0.00576475 0) (0.460679 -0.0161142 0) (0.471006 -0.0372755 0) (0.48929 -0.052544 0) (0.510297 -0.0643884 0) (0.543525 -0.0636447 0) (0.561844 -0.0668274 0) (0.617529 -0.0487561 0) (0.852839 0.385384 0) (0.937047 0.381393 0) (1.01086 0.378925 0) (1.05368 0.36688 0) (1.05711 0.335127 0) (1.01138 0.29039 0) (0.923291 0.229693 0) (0.813361 0.163288 0) (0.68932 0.0956387 0) (0.476823 0.0306598 0) (0.285279 0.086263 0) (0.247605 0.303706 0) (0.349085 0.392776 0) (0.441286 0.302373 0) (0.476052 0.169198 0) (0.528155 0.0205157 0) (0.54203 -0.0970493 0) (0.563079 -0.206149 0) (0.638462 -0.344733 0) (0.698204 -0.449239 0) (0.704424 -0.462564 0) (0.682545 -0.399656 0) (0.66338 -0.307344 0) (0.652757 -0.220194 0) (0.650909 -0.149625 0) (0.65902 -0.094329 0) (0.669474 -0.053221 0) (0.681177 -0.022169 0) (0.7019 0.00716009 0) (0.729148 0.0376749 0) (0.748835 0.0638465 0) (0.751174 0.0791189 0) (0.736975 0.0823281 0) (0.711784 0.0782943 0) (0.679748 0.074153 0) (0.642807 0.0741321 0) (0.602732 0.0773593 0) (0.561913 0.0807087 0) (0.522045 0.0824096 0) (0.483186 0.0821783 0) (0.444851 0.0793104 0) (0.407832 0.0720902 0) (0.374766 0.0589033 0) (0.349211 0.0395854 0) (0.334244 0.0157707 0) (0.331466 -0.00950999 0) (0.340753 -0.0330063 0) (0.360448 -0.0521261 0) (0.387903 -0.0655362 0) (0.420328 -0.0731849 0) (0.455355 -0.0759385 0) (0.491349 -0.0750259 0) (0.527367 -0.0715529 0) (0.562925 -0.0662701 0) (0.597758 -0.0596008 0) (0.631704 -0.0517731 0) (0.664694 -0.042906 0) (0.696533 -0.0331316 0) (0.726387 -0.0227588 0) (0.752873 -0.012147 0) (0.774534 -0.00150919 0) (0.789493 0.00886566 0) (0.796056 0.0187605 0) (0.794824 0.0288456 0) (0.788092 0.0401359 0) (0.776723 0.052314 0) (0.76085 0.0637521 0) (0.743048 0.0720512 0) (0.727512 0.073723 0) (0.716407 0.0659513 0) (0.709074 0.0486454 0) (0.70515 0.022412 0) (0.705536 -0.0111151 0) (0.70907 -0.0452088 0) (0.712496 -0.06949 0) (0.714545 -0.0774759 0) (0.716735 -0.0702154 0) (0.718907 -0.0537 0) (0.719485 -0.0340222 0) (0.719457 -0.01454 0) (0.71979 0.003495 0) (0.717217 0.0194265 0) (0.707065 0.032921 0) (0.688819 0.0441814 0) (0.666495 0.0530647 0) (0.643668 0.058318 0) (0.621053 0.0589941 0) (0.597786 0.0561293 0) (0.574183 0.0521296 0) (0.551636 0.0476159 0) (0.532882 0.0401573 0) (0.520463 0.0264828 0) (0.515559 0.00616382 0) (0.517994 -0.0170565 0) (0.526424 -0.0395717 0) (0.541575 -0.0557137 0) (0.558851 -0.0687171 0) (0.587031 -0.0680965 0) (0.602438 -0.0721242 0) (0.650957 -0.0536965 0) (0.852331 0.36716 0) (0.915313 0.358476 0) (0.98067 0.355284 0) (1.03833 0.351515 0) (1.0747 0.334112 0) (1.07497 0.304365 0) (1.03211 0.257779 0) (0.949474 0.200171 0) (0.849486 0.149372 0) (0.681305 0.100399 0) (0.458058 0.122119 0) (0.380406 0.284952 0) (0.495703 0.362096 0) (0.585641 0.288115 0) (0.627994 0.158803 0) (0.672224 0.011306 0) (0.671043 -0.104145 0) (0.690615 -0.218475 0) (0.763577 -0.360217 0) (0.802553 -0.456979 0) (0.778202 -0.459167 0) (0.729521 -0.390962 0) (0.69121 -0.299722 0) (0.669257 -0.215952 0) (0.659792 -0.149066 0) (0.663051 -0.0962623 0) (0.672048 -0.055848 0) (0.680848 -0.0261078 0) (0.696254 0.00061816 0) (0.722372 0.0303431 0) (0.748324 0.0594422 0) (0.760285 0.0795994 0) (0.754105 0.0871284 0) (0.733434 0.085944 0) (0.70289 0.0835906 0) (0.665641 0.0847393 0) (0.624578 0.0885064 0) (0.582692 0.0917699 0) (0.541644 0.0931266 0) (0.501178 0.0926548 0) (0.460749 0.0895477 0) (0.421483 0.0816373 0) (0.386476 0.0668969 0) (0.359562 0.0451122 0) (0.343809 0.0182393 0) (0.340718 -0.0103014 0) (0.350072 -0.0367545 0) (0.370096 -0.0581979 0) (0.397959 -0.0731726 0) (0.430713 -0.0816845 0) (0.465902 -0.0847802 0) (0.501885 -0.0838937 0) (0.537781 -0.0802814 0) (0.573153 -0.0747683 0) (0.607691 -0.067805 0) (0.641063 -0.059646 0) (0.673021 -0.0504459 0) (0.703578 -0.0402999 0) (0.732657 -0.0293812 0) (0.759554 -0.0179606 0) (0.783229 -0.00617195 0) (0.802348 0.00577171 0) (0.81481 0.0175035 0) (0.819431 0.0291239 0) (0.818109 0.0414009 0) (0.813583 0.0543585 0) (0.806223 0.0664902 0) (0.796115 0.0750148 0) (0.785912 0.0762527 0) (0.778275 0.0677664 0) (0.773199 0.0498617 0) (0.770714 0.0230816 0) (0.771335 -0.0110567 0) (0.772544 -0.0454842 0) (0.770711 -0.0696302 0) (0.765539 -0.0774184 0) (0.760374 -0.0701574 0) (0.757224 -0.0535152 0) (0.75407 -0.0335797 0) (0.749949 -0.0141432 0) (0.747145 0.00378328 0) (0.745622 0.0203121 0) (0.740761 0.0351409 0) (0.72876 0.04765 0) (0.710996 0.0571325 0) (0.690974 0.0625364 0) (0.670357 0.063286 0) (0.648852 0.0604502 0) (0.62691 0.0562636 0) (0.60624 0.0512607 0) (0.589543 0.0429412 0) (0.579103 0.0281484 0) (0.575131 0.00650239 0) (0.576986 -0.0178128 0) (0.583449 -0.0414646 0) (0.595273 -0.0583636 0) (0.609198 -0.0723611 0) (0.631921 -0.0719661 0) (0.644475 -0.0766975 0) (0.685512 -0.0581249 0) (0.86404 0.354237 0) (0.907233 0.341949 0) (0.954702 0.333611 0) (1.00857 0.330675 0) (1.05906 0.321255 0) (1.09078 0.303357 0) (1.09035 0.272425 0) (1.0457 0.227354 0) (0.971676 0.190214 0) (0.86439 0.164262 0) (0.665822 0.171913 0) (0.534371 0.273727 0) (0.62705 0.329048 0) (0.718603 0.270083 0) (0.769432 0.148187 0) (0.801357 0.0064781 0) (0.792277 -0.109464 0) (0.819512 -0.231369 0) (0.88529 -0.37207 0) (0.895728 -0.456163 0) (0.838913 -0.446448 0) (0.766449 -0.375049 0) (0.713127 -0.287616 0) (0.683166 -0.209195 0) (0.668788 -0.146917 0) (0.66795 -0.0974466 0) (0.675748 -0.0581025 0) (0.683335 -0.0290256 0) (0.693535 -0.00479921 0) (0.714906 0.0226207 0) (0.743013 0.0528942 0) (0.763164 0.077464 0) (0.765986 0.0900267 0) (0.751546 0.0927435 0) (0.723959 0.0929808 0) (0.687548 0.0957176 0) (0.646457 0.100171 0) (0.604215 0.103404 0) (0.562351 0.104515 0) (0.520409 0.103938 0) (0.478036 0.100668 0) (0.436837 0.091991 0) (0.400322 0.0755555 0) (0.372409 0.0510855 0) (0.356016 0.0209065 0) (0.352561 -0.0110762 0) (0.361833 -0.0406545 0) (0.381998 -0.0645352 0) (0.410078 -0.0811179 0) (0.442951 -0.0904809 0) (0.478065 -0.0938779 0) (0.51376 -0.0929785 0) (0.54922 -0.089209 0) (0.58413 -0.0834626 0) (0.618276 -0.0761823 0) (0.651273 -0.0676083 0) (0.682585 -0.057944 0) (0.711952 -0.0473621 0) (0.739616 -0.0360058 0) (0.76566 -0.0240136 0) (0.789575 -0.0114527 0) (0.810647 0.00159905 0) (0.827416 0.0148803 0) (0.837692 0.0281171 0) (0.84157 0.0414278 0) (0.842346 0.0548457 0) (0.842162 0.0673962 0) (0.840452 0.0763541 0) (0.837635 0.0776613 0) (0.835122 0.0689289 0) (0.833018 0.0507079 0) (0.832124 0.0236375 0) (0.832672 -0.0107047 0) (0.830847 -0.0448722 0) (0.82317 -0.0683902 0) (0.81095 -0.0757812 0) (0.798837 -0.0687355 0) (0.790497 -0.05244 0) (0.78469 -0.0324549 0) (0.778198 -0.0130085 0) (0.772096 0.0044767 0) (0.769383 0.0207397 0) (0.76833 0.0362087 0) (0.763537 0.0499382 0) (0.752571 0.0604062 0) (0.737127 0.0663074 0) (0.719392 0.0672899 0) (0.700107 0.0645321 0) (0.680212 0.0601453 0) (0.661734 0.0546113 0) (0.64727 0.045427 0) (0.638738 0.0295949 0) (0.635591 0.00684907 0) (0.63661 -0.0183354 0) (0.641036 -0.0429082 0) (0.649412 -0.0604876 0) (0.660268 -0.075316 0) (0.677807 -0.0751754 0) (0.687337 -0.0804733 0) (0.720618 -0.0619777 0) (0.883093 0.344406 0) (0.913472 0.331726 0) (0.942906 0.317962 0) (0.981266 0.310934 0) (1.02821 0.303202 0) (1.07192 0.291435 0) (1.09995 0.273133 0) (1.09519 0.242993 0) (1.04958 0.216782 0) (0.994685 0.209758 0) (0.871279 0.223454 0) (0.724494 0.280722 0) (0.757593 0.30202 0) (0.834488 0.246219 0) (0.888664 0.133759 0) (0.912719 0.002228 0) (0.912277 -0.11648 0) (0.951082 -0.244773 0) (0.998022 -0.377538 0) (0.971855 -0.444661 0) (0.883746 -0.424262 0) (0.793085 -0.352963 0) (0.730222 -0.272167 0) (0.695757 -0.200803 0) (0.678985 -0.143668 0) (0.67496 -0.097962 0) (0.681188 -0.0602073 0) (0.688742 -0.0312629 0) (0.695292 -0.00871603 0) (0.709993 0.0156419 0) (0.735755 0.0451273 0) (0.760999 0.0728395 0) (0.772555 0.0905876 0) (0.765745 0.0981502 0) (0.742774 0.101893 0) (0.708572 0.106752 0) (0.668503 0.112128 0) (0.626614 0.115483 0) (0.584329 0.116527 0) (0.541188 0.116008 0) (0.497263 0.112626 0) (0.454696 0.103089 0) (0.417203 0.0847658 0) (0.388576 0.0574652 0) (0.371573 0.0237888 0) (0.367584 -0.0117894 0) (0.376485 -0.0446545 0) (0.3965 -0.0710926 0) (0.424553 -0.0893306 0) (0.45733 -0.0995293 0) (0.49216 -0.103178 0) (0.527359 -0.10221 0) (0.562138 -0.098249 0) (0.596267 -0.0922719 0) (0.629683 -0.0847028 0) (0.662142 -0.0757126 0) (0.693014 -0.0654901 0) (0.721605 -0.0543252 0) (0.747902 -0.0424804 0) (0.772477 -0.03004 0) (0.795537 -0.0169652 0) (0.816873 -0.00321514 0) (0.835885 0.0111365 0) (0.850658 0.0258087 0) (0.859654 0.040284 0) (0.86487 0.0540981 0) (0.869644 0.0666821 0) (0.874716 0.0758399 0) (0.879512 0.07746 0) (0.883321 0.0689978 0) (0.885306 0.0509929 0) (0.886532 0.0239692 0) (0.886774 -0.0100064 0) (0.881464 -0.0432178 0) (0.867889 -0.0656728 0) (0.849269 -0.0725942 0) (0.831346 -0.0659774 0) (0.818408 -0.0505272 0) (0.810469 -0.0309096 0) (0.803355 -0.0113788 0) (0.795316 0.00575342 0) (0.790073 0.0211579 0) (0.79011 0.0362863 0) (0.791587 0.0507282 0) (0.788957 0.0623842 0) (0.780379 0.0692551 0) (0.767131 0.070808 0) (0.750862 0.0682652 0) (0.733399 0.063698 0) (0.717292 0.0576125 0) (0.705097 0.0475754 0) (0.698322 0.0308316 0) (0.695866 0.00725921 0) (0.69591 -0.0185811 0) (0.698319 -0.0438629 0) (0.703309 -0.062058 0) (0.711094 -0.0776097 0) (0.723949 -0.0777168 0) (0.730622 -0.0833747 0) (0.755826 -0.0651725 0) (0.902727 0.334769 0) (0.929012 0.325333 0) (0.947328 0.308995 0) (0.968431 0.29678 0) (1.0008 0.28654 0) (1.03969 0.275538 0) (1.07605 0.26354 0) (1.0999 0.246427 0) (1.0855 0.230526 0) (1.06467 0.233252 0) (1.02179 0.258478 0) (0.926022 0.299472 0) (0.916319 0.293836 0) (0.960718 0.229378 0) (1.00502 0.121458 0) (1.02872 -0.00354462 0) (1.0432 -0.12543 0) (1.07973 -0.254974 0) (1.09178 -0.372687 0) (1.02467 -0.421157 0) (0.911464 -0.393634 0) (0.8107 -0.326536 0) (0.744338 -0.254813 0) (0.708463 -0.191627 0) (0.691109 -0.139768 0) (0.684805 -0.097808 0) (0.688745 -0.0621655 0) (0.696485 -0.0332299 0) (0.70152 -0.0112446 0) (0.709814 0.0102584 0) (0.729691 0.0373398 0) (0.755887 0.066324 0) (0.774429 0.0886546 0) (0.77586 0.101649 0) (0.759084 0.109812 0) (0.728624 0.117451 0) (0.690726 0.124113 0) (0.649941 0.127856 0) (0.607721 0.129075 0) (0.563871 0.128772 0) (0.51903 0.125277 0) (0.475779 0.114812 0) (0.437837 0.0944394 0) (0.408738 0.0641993 0) (0.391095 0.0269604 0) (0.386333 -0.0123629 0) (0.394474 -0.0486697 0) (0.413905 -0.0777968 0) (0.441557 -0.0977535 0) (0.473949 -0.10878 0) (0.508254 -0.112633 0) (0.54275 -0.111543 0) (0.57669 -0.107341 0) (0.609866 -0.101108 0) (0.642265 -0.0932709 0) (0.67382 -0.083918 0) (0.704084 -0.0731403 0) (0.732169 -0.0612748 0) (0.757497 -0.0487897 0) (0.780535 -0.0358899 0) (0.802135 -0.0224373 0) (0.822705 -0.00828824 0) (0.842253 0.00666351 0) (0.859725 0.0223518 0) (0.873173 0.0379603 0) (0.882658 0.05233 0) (0.890906 0.0648119 0) (0.900217 0.0737806 0) (0.910735 0.0755765 0) (0.920336 0.0676816 0) (0.92685 0.050379 0) (0.930621 0.024017 0) (0.930494 -0.0088894 0) (0.921939 -0.040502 0) (0.903455 -0.0615534 0) (0.879777 -0.068042 0) (0.857617 -0.0620757 0) (0.841249 -0.0478571 0) (0.831468 -0.0291105 0) (0.824681 -0.00962249 0) (0.81673 0.00747244 0) (0.809358 0.0219528 0) (0.807926 0.0358652 0) (0.81283 0.050053 0) (0.818222 0.0626349 0) (0.818423 0.0708578 0) (0.8119 0.073485 0) (0.800097 0.071472 0) (0.785718 0.0668408 0) (0.772128 0.0602285 0) (0.76213 0.0493815 0) (0.756882 0.0318629 0) (0.754957 0.00768082 0) (0.75405 -0.0185544 0) (0.754594 -0.0443248 0) (0.756502 -0.0630432 0) (0.761131 -0.0792336 0) (0.769515 -0.0796183 0) (0.773763 -0.0853738 0) (0.790775 -0.0676272 0) (0.917268 0.323045 0) (0.946067 0.319278 0) (0.962465 0.304383 0) (0.972841 0.289117 0) (0.989126 0.27533 0) (1.01423 0.262159 0) (1.04285 0.250584 0) (1.07499 0.240413 0) (1.08615 0.23327 0) (1.08735 0.239382 0) (1.09603 0.268748 0) (1.07739 0.308714 0) (1.08017 0.296263 0) (1.10919 0.22565 0) (1.14125 0.11715 0) (1.1621 -0.00818055 0) (1.17506 -0.132324 0) (1.18726 -0.256465 0) (1.15351 -0.354198 0) (1.05022 -0.386502 0) (0.9237 -0.357163 0) (0.82221 -0.298213 0) (0.757702 -0.236989 0) (0.722472 -0.182297 0) (0.705331 -0.135531 0) (0.697498 -0.0969388 0) (0.698495 -0.0637724 0) (0.705682 -0.0352107 0) (0.71094 -0.0128644 0) (0.714881 0.0067933 0) (0.727364 0.0306725 0) (0.750421 0.0589029 0) (0.772927 0.0844552 0) (0.782098 0.102877 0) (0.772685 0.116199 0) (0.747516 0.127356 0) (0.713029 0.135814 0) (0.674178 0.140322 0) (0.632663 0.142011 0) (0.588796 0.142057 0) (0.543853 0.138438 0) (0.500661 0.126947 0) (0.462789 0.104548 0) (0.43349 0.0712913 0) (0.41527 0.030555 0) (0.409553 -0.0126749 0) (0.416502 -0.0525656 0) (0.434753 -0.0845174 0) (0.461418 -0.106281 0) (0.49296 -0.11815 0) (0.52639 -0.122174 0) (0.559895 -0.120921 0) (0.592783 -0.116449 0) (0.624903 -0.109927 0) (0.656187 -0.101803 0) (0.686573 -0.0921234 0) (0.715857 -0.0808616 0) (0.743341 -0.068281 0) (0.768063 -0.0550083 0) (0.789887 -0.0415088 0) (0.809831 -0.0277146 0) (0.829024 -0.0133566 0) (0.848005 0.0018418 0) (0.866472 0.0180635 0) (0.883016 0.0345246 0) (0.89646 0.0495835 0) (0.907779 0.0621261 0) (0.919582 0.0707415 0) (0.933179 0.0724449 0) (0.946507 0.0651187 0) (0.956695 0.0487846 0) (0.962628 0.0237374 0) (0.962125 -0.00741849 0) (0.951331 -0.0369333 0) (0.929816 -0.0563351 0) (0.902961 -0.0624416 0) (0.878147 -0.0573294 0) (0.859719 -0.0445863 0) (0.848526 -0.0271255 0) (0.842146 -0.00800397 0) (0.835775 0.00927436 0) (0.828093 0.0232115 0) (0.824267 0.0355399 0) (0.829078 0.0483878 0) (0.839847 0.061058 0) (0.84906 0.0706049 0) (0.851357 0.0747975 0) (0.846145 0.0738265 0) (0.836127 0.0694351 0) (0.825475 0.0624212 0) (0.817622 0.0508689 0) (0.813649 0.0327058 0) (0.812076 0.00816088 0) (0.810367 -0.0182632 0) (0.80931 -0.0443276 0) (0.808559 -0.06344 0) (0.810074 -0.0801422 0) (0.813867 -0.0808762 0) (0.816016 -0.086482 0) (0.82504 -0.0692867 0) (0.92454 0.308543 0) (0.958178 0.310763 0) (0.979269 0.30039 0) (0.988327 0.285631 0) (0.994973 0.269976 0) (1.0065 0.254502 0) (1.02136 0.240683 0) (1.04482 0.23108 0) (1.0658 0.228167 0) (1.08102 0.234632 0) (1.11077 0.259533 0) (1.14649 0.296734 0) (1.19017 0.288583 0) (1.23178 0.221459 0) (1.26268 0.114229 0) (1.27605 -0.0108141 0) (1.27474 -0.132873 0) (1.25208 -0.244813 0) (1.17459 -0.322416 0) (1.05107 -0.344282 0) (0.925734 -0.318654 0) (0.831565 -0.270442 0) (0.772229 -0.219751 0) (0.738372 -0.173062 0) (0.721253 -0.131061 0) (0.712381 -0.0953148 0) (0.710201 -0.0647071 0) (0.715551 -0.0372253 0) (0.721709 -0.0141857 0) (0.724088 0.00496811 0) (0.73 0.0258698 0) (0.747051 0.051714 0) (0.769879 0.0786054 0) (0.785117 0.101733 0) (0.783521 0.120574 0) (0.765012 0.135965 0) (0.735221 0.146862 0) (0.699248 0.152627 0) (0.659241 0.155108 0) (0.61623 0.155632 0) (0.572087 0.151881 0) (0.529748 0.139342 0) (0.492523 0.114903 0) (0.46346 0.0787481 0) (0.44488 0.0344247 0) (0.43813 -0.0126502 0) (0.443503 -0.0561606 0) (0.459868 -0.0910437 0) (0.484724 -0.114724 0) (0.514707 -0.127495 0) (0.546735 -0.131686 0) (0.578851 -0.13025 0) (0.610351 -0.125507 0) (0.641194 -0.118701 0) (0.671314 -0.110267 0) (0.700479 -0.100246 0) (0.728509 -0.0885573 0) (0.755051 -0.075337 0) (0.779213 -0.0612193 0) (0.800255 -0.0469469 0) (0.81875 -0.0327164 0) (0.836257 -0.0182371 0) (0.853975 -0.00303845 0) (0.872217 0.0133018 0) (0.890307 0.0302021 0) (0.9068 0.0458786 0) (0.921119 0.0587159 0) (0.934889 0.0671323 0) (0.94978 0.068673 0) (0.964632 0.061775 0) (0.976705 0.046517 0) (0.983775 0.0231783 0) (0.983028 -0.00574234 0) (0.971215 -0.0328303 0) (0.948539 -0.0504287 0) (0.920345 -0.0561485 0) (0.894169 -0.0520272 0) (0.874777 -0.0409176 0) (0.862812 -0.0249773 0) (0.856547 -0.00661037 0) (0.852083 0.0107893 0) (0.84607 0.0246708 0) (0.840982 0.0356754 0) (0.843403 0.0464859 0) (0.855477 0.0580724 0) (0.8714 0.068287 0) (0.883109 0.0741928 0) (0.88659 0.0748185 0) (0.882907 0.0711941 0) (0.876276 0.064098 0) (0.870859 0.0520373 0) (0.868075 0.0334143 0) (0.866717 0.00869561 0) (0.864378 -0.0177408 0) (0.862027 -0.0439185 0) (0.858979 -0.063266 0) (0.857518 -0.080281 0) (0.856505 -0.0814361 0) (0.856587 -0.0867132 0) (0.858085 -0.0701281 0) (0.926179 0.292134 0) (0.963054 0.298913 0) (0.990677 0.293999 0) (1.00506 0.28261 0) (1.01084 0.267871 0) (1.0154 0.251881 0) (1.01984 0.236357 0) (1.02957 0.224318 0) (1.04527 0.220525 0) (1.06412 0.224791 0) (1.09625 0.241119 0) (1.15095 0.269034 0) (1.22174 0.263915 0) (1.28504 0.205699 0) (1.32408 0.107126 0) (1.33448 -0.0096631 0) (1.31779 -0.123556 0) (1.26073 -0.22033 0) (1.15946 -0.282557 0) (1.03717 -0.300146 0) (0.925137 -0.281921 0) (0.842337 -0.244835 0) (0.788842 -0.203484 0) (0.756047 -0.163793 0) (0.738154 -0.126267 0) (0.728407 -0.0929444 0) (0.723397 -0.0646729 0) (0.72568 -0.03902 0) (0.73218 -0.015692 0) (0.735367 0.00406077 0) (0.737284 0.0230628 0) (0.747468 0.0457437 0) (0.767256 0.0720031 0) (0.785972 0.098433 0) (0.791754 0.122601 0) (0.780879 0.142778 0) (0.757035 0.15683 0) (0.724995 0.164444 0) (0.68746 0.168075 0) (0.646296 0.169202 0) (0.603914 0.165347 0) (0.563242 0.151791 0) (0.527375 0.125363 0) (0.499125 0.0863674 0) (0.480591 0.0385271 0) (0.472948 -0.0121982 0) (0.476403 -0.0592466 0) (0.490137 -0.0970933 0) (0.512208 -0.122801 0) (0.539687 -0.136582 0) (0.569575 -0.140999 0) (0.599787 -0.139393 0) (0.62949 -0.134401 0) (0.658691 -0.12736 0) (0.687429 -0.118643 0) (0.715363 -0.108256 0) (0.742084 -0.096139 0) (0.767374 -0.0823611 0) (0.790718 -0.0674524 0) (0.8112 -0.0522984 0) (0.828696 -0.0374578 0) (0.844576 -0.0228183 0) (0.860606 -0.00776841 0) (0.8778 0.00837377 0) (0.896133 0.025307 0) (0.914412 0.0413463 0) (0.931288 0.0545678 0) (0.947031 0.0630724 0) (0.962739 0.0646337 0) (0.977845 0.0581472 0) (0.9902 0.0439913 0) (0.997488 0.0225233 0) (0.996616 -0.00393794 0) (0.984563 -0.0284666 0) (0.961933 -0.0442015 0) (0.933805 -0.0494764 0) (0.907296 -0.0463897 0) (0.887596 -0.0370212 0) (0.875461 -0.0227108 0) (0.869163 -0.00538744 0) (0.866025 0.0118309 0) (0.862614 0.0258931 0) (0.858433 0.03619 0) (0.858571 0.0449808 0) (0.868525 0.0545247 0) (0.88689 0.0642575 0) (0.906012 0.0713962 0) (0.918893 0.0738875 0) (0.923526 0.0716343 0) (0.922698 0.065006 0) (0.920698 0.0528071 0) (0.919465 0.0339953 0) (0.918414 0.00927949 0) (0.915645 -0.0170162 0) (0.912225 -0.0431308 0) (0.907072 -0.0625307 0) (0.902749 -0.0795981 0) (0.896821 -0.0812131 0) (0.894667 -0.0860696 0) (0.88929 -0.0701539 0) (0.925438 0.275325 0) (0.96251 0.28459 0) (0.994608 0.284281 0) (1.01604 0.277258 0) (1.02688 0.265578 0) (1.03178 0.251192 0) (1.0331 0.235954 0) (1.03433 0.222152 0) (1.04016 0.215061 0) (1.05378 0.215168 0) (1.07917 0.222328 0) (1.12836 0.237665 0) (1.20094 0.23107 0) (1.27151 0.181295 0) (1.31617 0.0957687 0) (1.32551 -0.0076118 0) (1.29555 -0.108222 0) (1.22579 -0.190008 0) (1.12785 -0.241553 0) (1.02245 -0.25931 0) (0.928101 -0.249137 0) (0.856135 -0.221695 0) (0.807289 -0.187989 0) (0.774928 -0.154168 0) (0.755421 -0.12093 0) (0.744609 -0.089887 0) (0.737529 -0.0635256 0) (0.736127 -0.0401728 0) (0.741501 -0.0175149 0) (0.746553 0.0032317 0) (0.747665 0.0217664 0) (0.752213 0.0415483 0) (0.766767 0.0656252 0) (0.785972 0.093502 0) (0.797781 0.122162 0) (0.794933 0.147353 0) (0.778135 0.16525 0) (0.751172 0.175379 0) (0.717199 0.180551 0) (0.678951 0.182432 0) (0.639304 0.178519 0) (0.601176 0.164023 0) (0.567452 0.135725 0) (0.540732 0.0940432 0) (0.522796 0.0429632 0) (0.514451 -0.0112288 0) (0.515778 -0.0616178 0) (0.526226 -0.102347 0) (0.544517 -0.130154 0) (0.568412 -0.145095 0) (0.595238 -0.149872 0) (0.622892 -0.148176 0) (0.650357 -0.142984 0) (0.677525 -0.135776 0) (0.704505 -0.126859 0) (0.731012 -0.116136 0) (0.756422 -0.103566 0) (0.780342 -0.0892589 0) (0.802537 -0.0736578 0) (0.822354 -0.0576322 0) (0.839224 -0.0420277 0) (0.853868 -0.0270736 0) (0.86813 -0.012196 0) (0.883718 0.00352872 0) (0.901307 0.0201465 0) (0.920153 0.0362216 0) (0.938715 0.0497336 0) (0.956272 0.0585237 0) (0.97297 0.060386 0) (0.98812 0.0544999 0) (1.00009 0.0415018 0) (1.00707 0.0218912 0) (1.00608 -0.00207996 0) (0.994183 -0.0240282 0) (0.972235 -0.0379056 0) (0.945129 -0.0426816 0) (0.919199 -0.04058 0) (0.899577 -0.0330086 0) (0.887549 -0.0203898 0) (0.881298 -0.00423848 0) (0.87872 0.0124592 0) (0.877511 0.0265685 0) (0.87582 0.036661 0) (0.875635 0.0440283 0) (0.882479 0.0512707 0) (0.899122 0.0594099 0) (0.921404 0.0667207 0) (0.941821 0.0707466 0) (0.955371 0.0702199 0) (0.962075 0.0646838 0) (0.965066 0.052929 0) (0.966397 0.0343245 0) (0.96619 0.00989184 0) (0.963303 -0.016108 0) (0.958964 -0.0419691 0) (0.951752 -0.0612187 0) (0.944642 -0.0780528 0) (0.933949 -0.0801278 0) (0.929389 -0.0845575 0) (0.917992 -0.0693933 0) (0.924679 0.259265 0) (0.959649 0.269244 0) (0.993125 0.272011 0) (1.01968 0.268829 0) (1.03709 0.260908 0) (1.04671 0.249463 0) (1.05061 0.236162 0) (1.05093 0.222587 0) (1.05153 0.212934 0) (1.05842 0.208683 0) (1.07508 0.208129 0) (1.10995 0.211655 0) (1.16751 0.200633 0) (1.22954 0.157254 0) (1.27082 0.084463 0) (1.27811 -0.00294963 0) (1.248 -0.0890049 0) (1.18488 -0.158513 0) (1.10227 -0.204367 0) (1.01544 -0.224042 0) (0.936096 -0.220327 0) (0.872378 -0.200412 0) (0.826692 -0.172872 0) (0.794424 -0.143933 0) (0.772864 -0.114809 0) (0.76051 -0.0861972 0) (0.752145 -0.0613274 0) (0.747303 -0.0402673 0) (0.749876 -0.0193747 0) (0.756218 0.00187826 0) (0.75906 0.0211083 0) (0.760654 0.039103 0) (0.769494 0.0602826 0) (0.786469 0.0876865 0) (0.80222 0.119404 0) (0.807073 0.14936 0) (0.798138 0.171647 0) (0.777413 0.184967 0) (0.748177 0.192115 0) (0.713942 0.194948 0) (0.678014 0.191046 0) (0.643331 0.175727 0) (0.612608 0.145681 0) (0.588155 0.101522 0) (0.571336 0.0475199 0) (0.56258 -0.00974094 0) (0.561711 -0.063097 0) (0.568381 -0.106489 0) (0.582012 -0.136393 0) (0.601244 -0.152651 0) (0.623991 -0.157996 0) (0.648307 -0.156383 0) (0.673042 -0.1511 0) (0.697842 -0.143804 0) (0.722698 -0.134783 0) (0.747405 -0.123815 0) (0.771334 -0.110812 0) (0.793851 -0.0959681 0) (0.81469 -0.0797439 0) (0.833546 -0.0629408 0) (0.849864 -0.0465237 0) (0.863732 -0.0310717 0) (0.876527 -0.0162518 0) (0.890275 -0.00103719 0) (0.906401 0.0149938 0) (0.924772 0.0307767 0) (0.943994 0.0443661 0) (0.962858 0.0534646 0) (0.980657 0.0558514 0) (0.996161 0.0508194 0) (1.0079 0.039076 0) (1.01459 0.0213181 0) (1.01361 -0.000160115 0) (1.00218 -0.0195844 0) (0.981295 -0.0316871 0) (0.955822 -0.0359763 0) (0.931292 -0.0347541 0) (0.912136 -0.0289305 0) (0.900164 -0.0180409 0) (0.893995 -0.00310545 0) (0.891542 0.0128559 0) (0.891484 0.026676 0) (0.892371 0.0366635 0) (0.893876 0.043292 0) (0.899044 0.0487005 0) (0.912058 0.0547521 0) (0.932987 0.061084 0) (0.95677 0.0657145 0) (0.977341 0.0667073 0) (0.99189 0.0626535 0) (1.00119 0.0519624 0) (1.00644 0.0341257 0) (1.00807 0.0103437 0) (1.00565 -0.0150846 0) (1.00061 -0.0404299 0) (0.991429 -0.0593065 0) (0.981718 -0.0756399 0) (0.966788 -0.0781476 0) (0.959856 -0.0822168 0) (0.94354 -0.0679104 0) (0.924832 0.244491 0) (0.956502 0.25398 0) (0.989042 0.258374 0) (1.01803 0.257989 0) (1.04054 0.253419 0) (1.05588 0.245249 0) (1.06488 0.234648 0) (1.06893 0.222683 0) (1.07034 0.212211 0) (1.07448 0.204899 0) (1.08533 0.198937 0) (1.10807 0.193764 0) (1.14761 0.178081 0) (1.1937 0.138846 0) (1.22623 0.0768903 0) (1.23138 0.00334958 0) (1.20568 -0.0703851 0) (1.15404 -0.131362 0) (1.08695 -0.173447 0) (1.01536 -0.193971 0) (0.947579 -0.194469 0) (0.890012 -0.180252 0) (0.846411 -0.157838 0) (0.814204 -0.133002 0) (0.790706 -0.107721 0) (0.776288 -0.081865 0) (0.767061 -0.0582931 0) (0.759746 -0.0390792 0) (0.758422 -0.0207102 0) (0.764212 -0.000120981 0) (0.769721 0.0201897 0) (0.771379 0.0378518 0) (0.775717 0.0564083 0) (0.788651 0.0818065 0) (0.805856 0.114737 0) (0.817318 0.148647 0) (0.816624 0.175572 0) (0.803218 0.192695 0) (0.779932 0.202301 0) (0.750808 0.206317 0) (0.719571 0.202583 0) (0.689209 0.186538 0) (0.662271 0.154957 0) (0.640749 0.108537 0) (0.625565 0.0520183 0) (0.616673 -0.00776146 0) (0.613668 -0.0635563 0) (0.616308 -0.10924 0) (0.624644 -0.141132 0) (0.638277 -0.15884 0) (0.655949 -0.165013 0) (0.676091 -0.163752 0) (0.69753 -0.158579 0) (0.719649 -0.151313 0) (0.742138 -0.142274 0) (0.764693 -0.131159 0) (0.786787 -0.117805 0) (0.807746 -0.102444 0) (0.82713 -0.0856282 0) (0.844755 -0.0681509 0) (0.860321 -0.0509825 0) (0.873653 -0.0349248 0) (0.885466 -0.0199745 0) (0.897554 -0.00520889 0) (0.911829 0.0100836 0) (0.928884 0.0252875 0) (0.947772 0.0386824 0) (0.967188 0.0479679 0) (0.985855 0.050957 0) (1.00199 0.0469542 0) (1.01402 0.0365985 0) (1.02087 0.0207193 0) (1.02025 0.00170788 0) (1.00967 -0.0152421 0) (0.990241 -0.0256761 0) (0.966845 -0.0295464 0) (0.944403 -0.0290846 0) (0.926261 -0.0248266 0) (0.914269 -0.0156352 0) (0.907994 -0.001958 0) (0.905543 0.013175 0) (0.905814 0.0264143 0) (0.908278 0.0360617 0) (0.912097 0.0422899 0) (0.917699 0.0466121 0) (0.927868 0.0508594 0) (0.944958 0.0555767 0) (0.967555 0.0597263 0) (0.991112 0.0614635 0) (1.01151 0.0587813 0) (1.02696 0.0495318 0) (1.03694 0.0330129 0) (1.04143 0.0103725 0) (1.04026 -0.014087 0) (1.03498 -0.038568 0) (1.02422 -0.056823 0) (1.01241 -0.0724341 0) (0.994232 -0.0753289 0) (0.985281 -0.0791503 0) (0.965385 -0.0658125 0) (0.926423 0.23126 0) (0.954119 0.239509 0) (0.984136 0.244311 0) (1.01332 0.245606 0) (1.03884 0.243601 0) (1.05897 0.238378 0) (1.07337 0.230567 0) (1.08264 0.220772 0) (1.08808 0.210733 0) (1.09348 0.201827 0) (1.10256 0.19257 0) (1.11863 0.181919 0) (1.14508 0.162814 0) (1.17657 0.126253 0) (1.19933 0.0722635 0) (1.2016 0.00870556 0) (1.17992 -0.0549567 0) (1.13788 -0.108701 0) (1.08234 -0.147009 0) (1.02129 -0.167414 0) (0.961546 -0.170656 0) (0.908504 -0.160791 0) (0.866394 -0.142764 0) (0.834418 -0.12147 0) (0.80955 -0.0996192 0) (0.792727 -0.0768079 0) (0.78247 -0.0546704 0) (0.77382 -0.0366692 0) (0.768568 -0.0209274 0) (0.771601 -0.00236125 0) (0.778876 0.0184476 0) (0.782794 0.0369456 0) (0.78497 0.0539568 0) (0.793358 0.0765795 0) (0.809586 0.108799 0) (0.825839 0.145293 0) (0.833173 0.176652 0) (0.827948 0.198035 0) (0.811795 0.210596 0) (0.788872 0.216093 0) (0.763254 0.21272 0) (0.738016 0.196126 0) (0.715535 0.163237 0) (0.697437 0.114976 0) (0.684239 0.0563852 0) (0.675498 -0.00532539 0) (0.670532 -0.0629342 0) (0.669137 -0.110406 0) (0.671865 -0.144044 0) (0.67925 -0.163265 0) (0.691009 -0.170543 0) (0.706179 -0.169982 0) (0.723726 -0.165223 0) (0.742823 -0.158184 0) (0.762781 -0.149221 0) (0.782988 -0.138029 0) (0.8029 -0.124415 0) (0.821977 -0.108612 0) (0.839753 -0.0912458 0) (0.855978 -0.0731711 0) (0.870518 -0.0553618 0) (0.883246 -0.0387079 0) (0.894435 -0.0234762 0) (0.905321 -0.0089889 0) (0.917793 0.00557336 0) (0.933017 0.0200111 0) (0.950709 0.0329371 0) (0.9698 0.0421957 0) (0.988764 0.0457121 0) (1.0055 0.0427775 0) (1.01824 0.033896 0) (1.02579 0.0199287 0) (1.02602 0.00334791 0) (1.01679 -0.0111581 0) (0.99935 -0.0200211 0) (0.978472 -0.0235589 0) (0.958624 -0.0237577 0) (0.94212 -0.0207893 0) (0.930319 -0.0131342 0) (0.923705 -0.000752374 0) (0.921182 0.0134841 0) (0.921529 0.0260013 0) (0.924537 0.0350226 0) (0.929908 0.0407899 0) (0.936945 0.0445364 0) (0.9462 0.0476697 0) (0.959675 0.0508875 0) (0.978389 0.0538901 0) (1.00063 0.0554259 0) (1.0231 0.0535059 0) (1.04263 0.0456699 0) (1.05676 0.0307946 0) (1.06433 0.0097472 0) (1.06493 -0.0133275 0) (1.0601 -0.0365512 0) (1.04861 -0.0539169 0) (1.03562 -0.0686292 0) (1.01554 -0.0718397 0) (1.0052 -0.0755329 0) (0.983182 -0.0632474 0) (0.929875 0.219645 0) (0.953517 0.226419 0) (0.979826 0.230675 0) (1.00721 0.232512 0) (1.03356 0.232059 0) (1.05688 0.229137 0) (1.07595 0.223838 0) (1.09052 0.216319 0) (1.10103 0.207431 0) (1.10976 0.198048 0) (1.1197 0.187022 0) (1.13315 0.173171 0) (1.15208 0.152009 0) (1.17343 0.117519 0) (1.18817 0.0695229 0) (1.1875 0.0137601 0) (1.16815 -0.0415151 0) (1.13219 -0.0889837 0) (1.08428 -0.123758 0) (1.03063 -0.143477 0) (0.977201 -0.148398 0) (0.928343 -0.141821 0) (0.88777 -0.127612 0) (0.856118 -0.109485 0) (0.83043 -0.0905399 0) (0.811046 -0.0708183 0) (0.79895 -0.050532 0) (0.789568 -0.0332969 0) (0.781297 -0.0196503 0) (0.780041 -0.00408755 0) (0.786875 0.0158789 0) (0.793682 0.0355759 0) (0.796278 0.0524529 0) (0.800971 0.0724583 0) (0.814334 0.102366 0) (0.833017 0.139648 0) (0.847426 0.174675 0) (0.850845 0.200484 0) (0.842887 0.216453 0) (0.827225 0.223805 0) (0.808101 0.221037 0) (0.788693 0.204155 0) (0.771178 0.170277 0) (0.756823 0.1206 0) (0.745816 0.0605057 0) (0.737429 -0.00249601 0) (0.730741 -0.0612357 0) (0.725508 -0.109883 0) (0.722633 -0.144902 0) (0.723482 -0.165602 0) (0.72878 -0.174234 0) (0.738341 -0.174767 0) (0.751451 -0.170812 0) (0.767167 -0.164285 0) (0.78443 -0.155542 0) (0.802216 -0.144323 0) (0.819757 -0.1305 0) (0.836613 -0.114346 0) (0.852496 -0.0965175 0) (0.867163 -0.0779228 0) (0.880469 -0.0595781 0) (0.89237 -0.0424144 0) (0.903003 -0.0268574 0) (0.913112 -0.0124762 0) (0.92417 0.0014973 0) (0.93751 0.0151319 0) (0.953448 0.0273892 0) (0.971371 0.0363826 0) (0.989838 0.0402433 0) (1.00673 0.0382696 0) (1.02021 0.0308209 0) (1.0288 0.0187755 0) (1.03032 0.0046219 0) (1.02296 -0.00750773 0) (1.00812 -0.0148977 0) (0.990264 -0.0181692 0) (0.973346 -0.0189431 0) (0.958973 -0.0169672 0) (0.947869 -0.0105642 0) (0.940976 0.000553556 0) (0.938303 0.0137961 0) (0.938812 0.0255334 0) (0.941957 0.0337963 0) (0.947781 0.03891 0) (0.955786 0.0421898 0) (0.965304 0.0447734 0) (0.976787 0.0470584 0) (0.991518 0.0489188 0) (1.00991 0.0496545 0) (1.03068 0.04773 0) (1.05102 0.0408506 0) (1.06738 0.0276365 0) (1.07725 0.00848215 0) (1.07957 -0.0129013 0) (1.07567 -0.0345692 0) (1.06441 -0.0508259 0) (1.05125 -0.064507 0) (1.03064 -0.0679257 0) (1.01961 -0.0715823 0) (0.996857 -0.0603854 0) (0.934762 0.209291 0) (0.955309 0.21497 0) (0.977669 0.218297 0) (1.0017 0.219738 0) (1.02654 0.219679 0) (1.05078 0.218038 0) (1.07294 0.214622 0) (1.09205 0.20916 0) (1.1077 0.201787 0) (1.12082 0.192802 0) (1.13323 0.181216 0) (1.14649 0.165837 0) (1.16167 0.143809 0) (1.1768 0.111321 0) (1.18602 0.0683261 0) (1.18301 0.0192896 0) (1.16491 -0.0292025 0) (1.13306 -0.0712891 0) (1.09094 -0.102734 0) (1.04334 -0.121457 0) (0.995366 -0.127474 0) (0.950501 -0.123419 0) (0.911548 -0.11244 0) (0.880108 -0.0971484 0) (0.853981 -0.0805471 0) (0.832291 -0.0636187 0) (0.817399 -0.0456601 0) (0.80697 -0.0292065 0) (0.796847 -0.0168525 0) (0.791004 -0.00452544 0) (0.794899 0.0130196 0) (0.803526 0.0332676 0) (0.808461 0.0511615 0) (0.81135 0.0695207 0) (0.820949 0.0962208 0) (0.839483 0.132341 0) (0.859185 0.169671 0) (0.871084 0.199625 0) (0.872121 0.219321 0) (0.86471 0.228951 0) (0.85291 0.22713 0) (0.839935 0.21029 0) (0.827745 0.175845 0) (0.817288 0.125262 0) (0.80856 0.0642604 0) (0.80067 0.000650507 0) (0.792513 -0.0585035 0) (0.783757 -0.107648 0) (0.775526 -0.143587 0) (0.769899 -0.165632 0) (0.768552 -0.175806 0) (0.772142 -0.17783 0) (0.780416 -0.175127 0) (0.792439 -0.16947 0) (0.80683 -0.161156 0) (0.822139 -0.149977 0) (0.837268 -0.135957 0) (0.851709 -0.119506 0) (0.865384 -0.101326 0) (0.87825 -0.0823265 0) (0.890168 -0.0635504 0) (0.901047 -0.0459814 0) (0.910985 -0.0301441 0) (0.920482 -0.0157833 0) (0.930565 -0.00222833 0) (0.942359 0.0107021 0) (0.956447 0.0222333 0) (0.972638 0.0307909 0) (0.989815 0.0347775 0) (1.00614 0.0335419 0) (1.01991 0.0273636 0) (1.02943 0.0171683 0) (1.03239 0.00536477 0) (1.02726 -0.00450972 0) (1.01556 -0.0105267 0) (1.00118 -0.0135393 0) (0.987393 -0.0147686 0) (0.975379 -0.0135146 0) (0.965507 -0.00804106 0) (0.958788 0.00193815 0) (0.956076 0.0140999 0) (0.956899 0.0249938 0) (0.960301 0.0325165 0) (0.966013 0.0369121 0) (0.973975 0.0396421 0) (0.983602 0.041876 0) (0.994317 0.0437459 0) (1.00642 0.0448976 0) (1.02081 0.0447909 0) (1.03784 0.0423894 0) (1.05597 0.0358808 0) (1.072 0.0239863 0) (1.08275 0.0067255 0) (1.08629 -0.0128274 0) (1.08341 -0.0327503 0) (1.07292 -0.0477347 0) (1.06024 -0.0603075 0) (1.04016 -0.0638146 0) (1.02898 -0.0674989 0) (1.0066 -0.0573883 0) (0.939712 0.199458 0) (0.958758 0.204756 0) (0.978274 0.207479 0) (0.998731 0.20823 0) (1.02042 0.207699 0) (1.04303 0.206175 0) (1.06571 0.203578 0) (1.08741 0.199489 0) (1.10715 0.193532 0) (1.12472 0.185468 0) (1.14069 0.174286 0) (1.15565 0.158805 0) (1.16992 0.137113 0) (1.18205 0.106911 0) (1.18821 0.0684311 0) (1.18403 0.025093 0) (1.16728 -0.0177038 0) (1.13896 -0.0550533 0) (1.10184 -0.0834393 0) (1.0596 -0.101115 0) (1.01647 -0.10786 0) (0.975396 -0.105632 0) (0.93824 -0.0971968 0) (0.906897 -0.0844249 0) (0.880452 -0.0697391 0) (0.857035 -0.055041 0) (0.838803 -0.0396391 0) (0.826273 -0.024412 0) (0.814932 -0.0127511 0) (0.805272 -0.00316532 0) (0.804426 0.0107415 0) (0.812572 0.0300591 0) (0.820423 0.0493341 0) (0.823819 0.0674362 0) (0.830029 0.090984 0) (0.846124 0.124243 0) (0.868569 0.162003 0) (0.887898 0.195225 0) (0.898247 0.218693 0) (0.899921 0.231015 0) (0.896227 0.23058 0) (0.89022 0.214213 0) (0.88362 0.179729 0) (0.877143 0.128842 0) (0.870719 0.067554 0) (0.863406 0.00401066 0) (0.853997 -0.0548143 0) (0.842073 -0.103739 0) (0.828893 -0.140071 0) (0.817137 -0.163252 0) (0.809332 -0.175089 0) (0.806931 -0.178971 0) (0.810208 -0.17798 0) (0.818341 -0.173598 0) (0.829705 -0.16597 0) (0.842464 -0.154936 0) (0.855181 -0.140725 0) (0.867173 -0.123984 0) (0.878449 -0.105538 0) (0.889243 -0.0862789 0) (0.899581 -0.0672082 0) (0.909309 -0.049339 0) (0.918401 -0.0332975 0) (0.927228 -0.0189554 0) (0.936564 -0.00571979 0) (0.947247 0.00664742 0) (0.959785 0.0175302 0) (0.974144 0.0256162 0) (0.989534 0.0295697 0) (1.00458 0.0288264 0) (1.01785 0.023678 0) (1.02769 0.0151484 0) (1.03183 0.00550864 0) (1.029 -0.00231712 0) (1.02066 -0.00709141 0) (1.00998 -0.00980751 0) (0.999373 -0.0113087 0) (0.989697 -0.0105331 0) (0.981351 -0.00572629 0) (0.975375 0.00328199 0) (0.972995 0.0143413 0) (0.97429 0.0243214 0) (0.978189 0.0311706 0) (0.983829 0.0349619 0) (0.991151 0.0371315 0) (1.00015 0.0389874 0) (1.01026 0.0406563 0) (1.02097 0.0415226 0) (1.03257 0.0408897 0) (1.04587 0.037975 0) (1.06046 0.0314994 0) (1.07408 0.0204791 0) (1.08387 0.00478782 0) (1.0876 -0.013011 0) (1.08536 -0.0311337 0) (1.07578 -0.0447682 0) (1.06391 -0.0562082 0) (1.04503 -0.0596871 0) (1.03408 -0.0634402 0) (1.01285 -0.0543903 0) (0.943503 0.189534 0) (0.962165 0.194942 0) (0.980491 0.197699 0) (0.998638 0.198171 0) (1.0172 0.197054 0) (1.03675 0.194939 0) (1.05743 0.192092 0) (1.07885 0.188303 0) (1.1002 0.18308 0) (1.12072 0.175856 0) (1.13998 0.16554 0) (1.15757 0.150925 0) (1.17302 0.130601 0) (1.18493 0.103147 0) (1.19054 0.0689693 0) (1.18685 0.0307733 0) (1.17228 -0.00703541 0) (1.14762 -0.0402408 0) (1.11522 -0.0658366 0) (1.07797 -0.0823751 0) (1.03933 -0.0895 0) (1.00194 -0.0885289 0) (0.966973 -0.0819406 0) (0.936006 -0.0713046 0) (0.909399 -0.058257 0) (0.885097 -0.0451323 0) (0.86386 -0.0320642 0) (0.84815 -0.0186257 0) (0.835317 -0.00756344 0) (0.82295 0.000124144 0) (0.816781 0.00995616 0) (0.821747 0.0265311 0) (0.831445 0.0464838 0) (0.837234 0.065539 0) (0.841661 0.0869207 0) (0.85397 0.116342 0) (0.876163 0.152434 0) (0.900792 0.187376 0) (0.91996 0.214193 0) (0.931221 0.22949 0) (0.936339 0.230952 0) (0.93781 0.215641 0) (0.937051 0.18175 0) (0.934627 0.13123 0) (0.930541 0.0703056 0) (0.923871 0.00739226 0) (0.913369 -0.0502411 0) (0.898601 -0.0982177 0) (0.880965 -0.134405 0) (0.863664 -0.158475 0) (0.849924 -0.172041 0) (0.841883 -0.178095 0) (0.840296 -0.179252 0) (0.844514 -0.176553 0) (0.852764 -0.169891 0) (0.862893 -0.159137 0) (0.873179 -0.144762 0) (0.88276 -0.127722 0) (0.891613 -0.109049 0) (0.900163 -0.0896635 0) (0.908705 -0.0704697 0) (0.917154 -0.0524331 0) (0.925322 -0.0362643 0) (0.933381 -0.0219728 0) (0.941974 -0.00903296 0) (0.951798 0.00285621 0) (0.963188 0.013212 0) (0.976 0.0209083 0) (0.989581 0.0247938 0) (1.00293 0.0243832 0) (1.01499 0.020033 0) (1.02432 0.0129036 0) (1.029 0.00513458 0) (1.02811 -0.000952488 0) (1.02293 -0.00467014 0) (1.01579 -0.00703792 0) (1.00821 -0.0085852 0) (1.0007 -0.00805466 0) (0.99389 -0.00373159 0) (0.988998 0.00443415 0) (0.987338 0.0144238 0) (0.989242 0.0234553 0) (0.99373 0.0296874 0) (0.999526 0.0330627 0) (1.00622 0.0348117 0) (1.01415 0.0362721 0) (1.02332 0.0377221 0) (1.0331 0.0384897 0) (1.04313 0.0376629 0) (1.05381 0.0344633 0) (1.06512 0.0279879 0) (1.07571 0.0175886 0) (1.08342 0.00311251 0) (1.0862 -0.0131712 0) (1.08387 -0.0296213 0) (1.07499 -0.0419506 0) (1.06397 -0.0523065 0) (1.04658 -0.0556679 0) (1.03604 -0.0595084 0) (1.01627 -0.0514837 0) (0.946058 0.179457 0) (0.96435 0.18496 0) (0.982416 0.188093 0) (0.999815 0.188874 0) (1.01669 0.18769 0) (1.03363 0.185091 0) (1.05135 0.181552 0) (1.07027 0.177207 0) (1.09033 0.171789 0) (1.11099 0.164756 0) (1.13152 0.155098 0) (1.15091 0.14162 0) (1.16798 0.123146 0) (1.1811 0.0987121 0) (1.18797 0.0687602 0) (1.18635 0.0354396 0) (1.17503 0.00230447 0) (1.15463 -0.0270713 0) (1.12717 -0.0500245 0) (1.09502 -0.0652843 0) (1.06096 -0.0724653 0) (1.02748 -0.0723212 0) (0.995486 -0.0669565 0) (0.965826 -0.0579662 0) (0.939599 -0.0463521 0) (0.915429 -0.0342427 0) (0.892473 -0.0228497 0) (0.873361 -0.0114336 0) (0.858218 -0.00130859 0) (0.843854 0.00520134 0) (0.832878 0.0113438 0) (0.832497 0.0236867 0) (0.84153 0.0426516 0) (0.850255 0.0630529 0) (0.855181 0.0837911 0) (0.863862 0.109481 0) (0.88308 0.142096 0) (0.909854 0.176658 0) (0.93616 0.205734 0) (0.956831 0.223953 0) (0.971257 0.227796 0) (0.980695 0.214241 0) (0.986077 0.181735 0) (0.987877 0.132341 0) (0.986194 0.0724945 0) (0.980279 0.0109154 0) (0.968833 -0.0448112 0) (0.951453 -0.0911603 0) (0.929923 -0.126704 0) (0.907877 -0.151429 0) (0.889051 -0.16676 0) (0.876071 -0.175238 0) (0.870071 -0.178914 0) (0.87056 -0.178266 0) (0.875703 -0.172838 0) (0.883144 -0.162507 0) (0.890959 -0.148022 0) (0.898161 -0.130688 0) (0.904671 -0.111807 0) (0.910972 -0.0923874 0) (0.917577 -0.0732418 0) (0.924595 -0.0552088 0) (0.931778 -0.039009 0) (0.939046 -0.024802 0) (0.946848 -0.0121635 0) (0.955842 -0.000735145 0) (0.966311 0.00916974 0) (0.977954 0.0165886 0) (0.990053 0.0204749 0) (1.00176 0.0203671 0) (1.01226 0.0166828 0) (1.02044 0.0107048 0) (1.02495 0.00443405 0) (1.02533 -0.000304153 0) (1.02268 -0.00320356 0) (1.01852 -0.00519473 0) (1.01355 -0.00657406 0) (1.00796 -0.00606104 0) (1.00254 -0.00209465 0) (0.998755 0.00530784 0) (0.997959 0.0142754 0) (1.00048 0.0223712 0) (1.00544 0.028031 0) (1.01146 0.0311465 0) (1.0178 0.0326769 0) (1.02475 0.033826 0) (1.03278 0.0350036 0) (1.04163 0.0356591 0) (1.05075 0.0347951 0) (1.05995 0.03157 0) (1.06899 0.0252366 0) (1.07702 0.0153933 0) (1.08256 0.00194156 0) (1.084 -0.0130571 0) (1.08114 -0.0280537 0) (1.07262 -0.0392071 0) (1.06224 -0.0485914 0) (1.04625 -0.0517903 0) (1.03612 -0.0557187 0) (1.01771 -0.0486961 0) (0.94823 0.169595 0) (0.965505 0.174876 0) (0.983099 0.178229 0) (1.00035 0.179513 0) (1.01687 0.17878 0) (1.03272 0.176285 0) (1.04838 0.172392 0) (1.06454 0.16738 0) (1.08173 0.16126 0) (1.10005 0.153749 0) (1.11912 0.144133 0) (1.138 0.131424 0) (1.15531 0.114655 0) (1.16923 0.0930939 0) (1.1776 0.0670995 0) (1.17853 0.0383584 0) (1.17096 0.0096367 0) (1.15524 -0.0160573 0) (1.13305 -0.0363699 0) (1.1064 -0.0501655 0) (1.07747 -0.0570845 0) (1.04855 -0.0574376 0) (1.02054 -0.0528095 0) (0.993662 -0.0449037 0) (0.968971 -0.0344724 0) (0.946124 -0.0230016 0) (0.923388 -0.0124112 0) (0.902031 -0.0026384 0) (0.884121 0.00619705 0) (0.867861 0.0118656 0) (0.853138 0.0152076 0) (0.846456 0.0226739 0) (0.851689 0.0385634 0) (0.861961 0.0594803 0) (0.86921 0.0808896 0) (0.875961 0.104039 0) (0.890725 0.132279 0) (0.916019 0.164211 0) (0.946383 0.193707 0) (0.975132 0.214216 0) (0.998812 0.220745 0) (1.01657 0.209678 0) (1.02847 0.179392 0) (1.03479 0.131995 0) (1.03574 0.0740676 0) (1.03071 0.0146532 0) (1.0184 -0.0385293 0) (0.9987 -0.0826512 0) (0.97395 -0.11716 0) (0.948203 -0.142368 0) (0.925459 -0.159491 0) (0.908578 -0.170577 0) (0.898907 -0.177047 0) (0.896069 -0.178728 0) (0.898223 -0.17475 0) (0.902948 -0.164974 0) (0.908246 -0.150446 0) (0.913085 -0.132855 0) (0.917356 -0.113797 0) (0.921528 -0.0944081 0) (0.926205 -0.0754494 0) (0.931687 -0.0576011 0) (0.937801 -0.0415055 0) (0.944284 -0.0274263 0) (0.951314 -0.0150884 0) (0.959448 -0.00412063 0) (0.969013 0.00534663 0) (0.979696 0.0125476 0) (0.99069 0.0165196 0) (1.00109 0.0167786 0) (1.01013 0.0137479 0) (1.01697 0.00875175 0) (1.02087 0.00363324 0) (1.02185 -0.000148307 0) (1.02088 -0.00248238 0) (1.01886 -0.00412161 0) (1.01589 -0.00518608 0) (1.01186 -0.0045096 0) (1.00762 -0.000793852 0) (1.0048 0.00589933 0) (1.00475 0.0138933 0) (1.00771 0.0211037 0) (1.01288 0.0262361 0) (1.01896 0.0291783 0) (1.02513 0.0306436 0) (1.03145 0.031614 0) (1.03849 0.0325319 0) (1.0464 0.0330063 0) (1.05481 0.032109 0) (1.06318 0.0289989 0) (1.07093 0.0229792 0) (1.07727 0.0137455 0) (1.08119 0.00122144 0) (1.08149 -0.0126371 0) (1.07805 -0.0263567 0) (1.06973 -0.0364746 0) (1.05983 -0.0450155 0) (1.04505 -0.0480367 0) (1.03531 -0.0520294 0) (1.01795 -0.0460021 0) (0.950781 0.160283 0) (0.966593 0.165123 0) (0.983043 0.168339 0) (0.999695 0.169864 0) (1.01607 0.169629 0) (1.03181 0.167635 0) (1.04684 0.163982 0) (1.06149 0.158822 0) (1.07626 0.152228 0) (1.0916 0.144129 0) (1.10761 0.134165 0) (1.12383 0.12171 0) (1.13924 0.1061 0) (1.15222 0.0868504 0) (1.16089 0.0642391 0) (1.16352 0.039543 0) (1.15904 0.0148294 0) (1.14759 -0.00743845 0) (1.13044 -0.0252095 0) (1.10925 -0.0374443 0) (1.08576 -0.0438396 0) (1.0619 -0.0444468 0) (1.03876 -0.0402583 0) (1.01619 -0.0329203 0) (0.994656 -0.0233039 0) (0.97452 -0.012249 0) (0.954146 -0.00168109 0) (0.932962 0.00738671 0) (0.913104 0.0150634 0) (0.894943 0.0199785 0) (0.877502 0.0214906 0) (0.864916 0.0244259 0) (0.863809 0.0355248 0) (0.872573 0.0550275 0) (0.882274 0.0773945 0) (0.889433 0.0997058 0) (0.900196 0.124005 0) (0.921083 0.151631 0) (0.951346 0.179226 0) (0.985168 0.200539 0) (1.01694 0.209537 0) (1.04302 0.201639 0) (1.06174 0.174508 0) (1.07298 0.129989 0) (1.0769 0.0748325 0) (1.07294 0.0185446 0) (1.05996 -0.0314227 0) (1.03835 -0.0728417 0) (1.01131 -0.106075 0) (0.983229 -0.131701 0) (0.958061 -0.150642 0) (0.938608 -0.164434 0) (0.926249 -0.17384 0) (0.92066 -0.177999 0) (0.920048 -0.175595 0) (0.922069 -0.166469 0) (0.924809 -0.151975 0) (0.927293 -0.134193 0) (0.929424 -0.11502 0) (0.931639 -0.0957292 0) (0.934528 -0.0770619 0) (0.938485 -0.0595548 0) (0.943461 -0.043718 0) (0.949143 -0.0298422 0) (0.955459 -0.0177984 0) (0.962762 -0.00727004 0) (0.971383 0.00175429 0) (0.981125 0.00872996 0) (0.991218 0.0128177 0) (1.00067 0.0135169 0) (1.00858 0.0111925 0) (1.0143 0.00709484 0) (1.01754 0.00287348 0) (1.01871 -0.000267244 0) (1.01868 -0.00224282 0) (1.01795 -0.00358256 0) (1.01626 -0.00427018 0) (1.01339 -0.00333087 0) (1.01012 0.000226896 0) (1.00805 0.00626226 0) (1.00848 0.0133388 0) (1.01163 0.0197331 0) (1.01671 0.0243861 0) (1.02262 0.0271844 0) (1.02858 0.0286489 0) (1.03452 0.0295444 0) (1.04088 0.0302628 0) (1.048 0.0305249 0) (1.05572 0.0295499 0) (1.06349 0.0265868 0) (1.07049 0.0209785 0) (1.07591 0.0124106 0) (1.07892 0.000803304 0) (1.07855 -0.0119895 0) (1.0748 -0.0245575 0) (1.06674 -0.0337527 0) (1.05731 -0.0415553 0) (1.04356 -0.0443929 0) (1.03423 -0.0483997 0) (1.01761 -0.0433611 0) (0.953719 0.151516 0) (0.968204 0.155963 0) (0.983229 0.158875 0) (0.998658 0.160306 0) (1.01427 0.160255 0) (1.02971 0.158675 0) (1.04466 0.15551 0) (1.05895 0.150714 0) (1.07268 0.144244 0) (1.08607 0.136035 0) (1.09934 0.125922 0) (1.1124 0.113599 0) (1.12471 0.0987456 0) (1.13523 0.0811737 0) (1.14252 0.0611648 0) (1.14521 0.0397223 0) (1.14235 0.0184233 0) (1.13386 -0.000805546 0) (1.12064 -0.0163277 0) (1.10404 -0.0271268 0) (1.08545 -0.0329258 0) (1.06641 -0.0336879 0) (1.04818 -0.0298845 0) (1.03067 -0.0228583 0) (1.01366 -0.0136917 0) (0.99757 -0.00290759 0) (0.981418 0.00809138 0) (0.963363 0.0175671 0) (0.94397 0.0249068 0) (0.924739 0.0293361 0) (0.905508 0.0298468 0) (0.888347 0.0293292 0) (0.879932 0.0349645 0) (0.883711 0.050766 0) (0.893813 0.0729562 0) (0.902817 0.0956487 0) (0.911613 0.117553 0) (0.927114 0.140506 0) (0.953304 0.16411 0) (0.987702 0.184069 0) (1.02439 0.194435 0) (1.05755 0.189747 0) (1.08317 0.166649 0) (1.09972 0.126061 0) (1.10703 0.0746765 0) (1.10449 0.0224227 0) (1.09117 -0.0236633 0) (1.06846 -0.0620285 0) (1.04053 -0.0939439 0) (1.01191 -0.120031 0) (0.986113 -0.14079 0) (0.965608 -0.157261 0) (0.951684 -0.16958 0) (0.944025 -0.176198 0) (0.940943 -0.175368 0) (0.940311 -0.166928 0) (0.940465 -0.152542 0) (0.940606 -0.134671 0) (0.940697 -0.115483 0) (0.941136 -0.0963801 0) (0.942444 -0.0780941 0) (0.945002 -0.0610484 0) (0.948844 -0.0456111 0) (0.953695 -0.0320382 0) (0.959334 -0.0203024 0) (0.96588 -0.0101758 0) (0.973577 -0.00157755 0) (0.982347 0.0051436 0) (0.991567 0.00931656 0) (1.00024 0.0104746 0) (1.00739 0.00889403 0) (1.01238 0.00565496 0) (1.0152 0.00217554 0) (1.01643 -0.000517359 0) (1.01683 -0.00225862 0) (1.0167 -0.00334404 0) (1.01568 -0.003658 0) (1.01357 -0.00243567 0) (1.01106 0.00101147 0) (1.00958 0.00645372 0) (1.01029 0.0126909 0) (1.01339 0.0183456 0) (1.01818 0.0225633 0) (1.02372 0.0252186 0) (1.02938 0.0266833 0) (1.03501 0.0275486 0) (1.04092 0.0281252 0) (1.04742 0.0281925 0) (1.05451 0.0271166 0) (1.06167 0.0242917 0) (1.0681 0.0191032 0) (1.07299 0.0112133 0) (1.07561 0.000515366 0) (1.07504 -0.0112445 0) (1.07134 -0.0227336 0) (1.0637 -0.0310747 0) (1.05487 -0.0382052 0) (1.04204 -0.0408552 0) (1.03327 -0.0448101 0) (1.01722 -0.040739 0) (0.956575 0.143077 0) (0.97012 0.14729 0) (0.983981 0.149991 0) (0.998096 0.151246 0) (1.01245 0.151125 0) (1.02694 0.149659 0) (1.04134 0.146804 0) (1.05536 0.142456 0) (1.06877 0.136468 0) (1.08143 0.128688 0) (1.09329 0.118963 0) (1.10421 0.107128 0) (1.11391 0.093083 0) (1.12178 0.0768755 0) (1.12694 0.0588764 0) (1.12846 0.0399474 0) (1.12572 0.0213368 0) (1.11859 0.00454347 0) (1.1077 -0.00911699 0) (1.09419 -0.0187173 0) (1.07917 -0.0240116 0) (1.06386 -0.0249756 0) (1.04953 -0.0217291 0) (1.0365 -0.0151091 0) (1.02428 -0.00626414 0) (1.01285 0.00423367 0) (1.00188 0.0156728 0) (0.989331 0.0263233 0) (0.973726 0.0345803 0) (0.955761 0.0393769 0) (0.936166 0.0397391 0) (0.916239 0.0371647 0) (0.901306 0.037856 0) (0.897762 0.0482868 0) (0.904855 0.0681379 0) (0.915094 0.0911175 0) (0.924107 0.112355 0) (0.935477 0.131718 0) (0.955408 0.150373 0) (0.985771 0.16685 0) (1.02267 0.17673 0) (1.0594 0.174418 0) (1.09019 0.155489 0) (1.11188 0.11965 0) (1.12309 0.0731592 0) (1.12259 0.0259089 0) (1.10979 -0.0155239 0) (1.08746 -0.0507354 0) (1.06079 -0.0815348 0) (1.03389 -0.108178 0) (1.0094 -0.130654 0) (0.989383 -0.149602 0) (0.975003 -0.164611 0) (0.965957 -0.173484 0) (0.960723 -0.174086 0) (0.957521 -0.166297 0) (0.955091 -0.152088 0) (0.952919 -0.134258 0) (0.951076 -0.115198 0) (0.949919 -0.0964009 0) (0.949863 -0.0785893 0) (0.95121 -0.062097 0) (0.954006 -0.047169 0) (0.958026 -0.0339975 0) (0.962996 -0.022605 0) (0.968853 -0.0128494 0) (0.975704 -0.00463973 0) (0.983519 0.00181488 0) (0.991839 0.00602199 0) (0.999777 0.00759636 0) (1.00636 0.00673421 0) (1.01097 0.0043078 0) (1.01363 0.00148812 0) (1.01493 -0.000831655 0) (1.0155 -0.00237744 0) (1.01553 -0.00322681 0) (1.01476 -0.00320504 0) (1.01311 -0.00173605 0) (1.0112 0.00160487 0) (1.01021 0.00651461 0) (1.01111 0.0120021 0) (1.01406 0.0169959 0) (1.01847 0.0208189 0) (1.02357 0.0233293 0) (1.02883 0.0247753 0) (1.03411 0.0256119 0) (1.03964 0.0260754 0) (1.04567 0.0259803 0) (1.05219 0.0248192 0) (1.05871 0.0221267 0) (1.06457 0.0173282 0) (1.06905 0.0100748 0) (1.0715 0.000237862 0) (1.07099 -0.0105191 0) (1.0676 -0.0209754 0) (1.06054 -0.0285045 0) (1.05246 -0.0349977 0) (1.04055 -0.0374534 0) (1.03251 -0.041285 0) (1.01704 -0.0381247 0) (0.95908 0.13484 0) (0.971869 0.138884 0) (0.984901 0.141506 0) (0.998028 0.142705 0) (1.01122 0.142529 0) (1.0245 0.141043 0) (1.03779 0.138271 0) (1.05096 0.134167 0) (1.06379 0.128607 0) (1.07598 0.121423 0) (1.08723 0.112436 0) (1.09722 0.101497 0) (1.10558 0.0885717 0) (1.11184 0.073809 0) (1.11542 0.0576242 0) (1.11577 0.0407754 0) (1.11256 0.0243286 0) (1.10578 0.00945541 0) (1.09597 -0.00270712 0) (1.08408 -0.0114298 0) (1.07111 -0.0164108 0) (1.05802 -0.0176701 0) (1.046 -0.0152054 0) (1.03583 -0.00936904 0) (1.02722 -0.00110944 0) (1.01984 0.0088929 0) (1.0137 0.0203582 0) (1.00738 0.032179 0) (0.998232 0.0423194 0) (0.984861 0.0488019 0) (0.967455 0.0502337 0) (0.947099 0.0471766 0) (0.927779 0.044361 0) (0.916636 0.0490044 0) (0.917631 0.0643018 0) (0.926612 0.0860753 0) (0.936618 0.107476 0) (0.946291 0.125099 0) (0.960482 0.139415 0) (0.983976 0.151182 0) (1.01629 0.158653 0) (1.05185 0.15727 0) (1.08413 0.141756 0) (1.10891 0.110711 0) (1.12354 0.0698347 0) (1.12544 0.0285446 0) (1.11459 -0.0078424 0) (1.09527 -0.0401172 0) (1.07272 -0.0700489 0) (1.04988 -0.0971657 0) (1.02842 -0.121009 0) (1.01014 -0.142006 0) (0.996217 -0.159278 0) (0.986358 -0.170015 0) (0.979252 -0.171773 0) (0.973581 -0.164532 0) (0.96861 -0.150564 0) (0.964195 -0.132933 0) (0.960543 -0.114179 0) (0.957967 -0.0958362 0) (0.956754 -0.0786016 0) (0.957086 -0.0627396 0) (0.958968 -0.0483998 0) (0.962202 -0.0357084 0) (0.966508 -0.0247023 0) (0.971717 -0.0153042 0) (0.977811 -0.00744354 0) (0.98474 -0.00124272 0) (0.992164 0.00295632 0) (0.999351 0.00487327 0) (1.00543 0.00465094 0) (1.00982 0.00296651 0) (1.0125 0.000758863 0) (1.01389 -0.00118897 0) (1.01449 -0.00251084 0) (1.01448 -0.00312162 0) (1.01376 -0.00281502 0) (1.01239 -0.00117675 0) (1.01097 0.00203119 0) (1.01044 0.00645884 0) (1.0115 0.0112906 0) (1.01428 0.0157029 0) (1.01833 0.0191689 0) (1.023 0.0215385 0) (1.02783 0.0229547 0) (1.03272 0.0237515 0) (1.03787 0.0241033 0) (1.04348 0.0238698 0) (1.04948 0.0226592 0) (1.05539 0.0201096 0) (1.06067 0.0156691 0) (1.06474 0.00898617 0) (1.06705 -5.30328e-05 0) (1.06663 -0.00986409 0) (1.06362 -0.0193383 0) (1.05721 -0.0260954 0) (1.04997 -0.0319744 0) (1.03901 -0.0342344 0) (1.0319 -0.0378825 0) (1.01713 -0.0355341 0) (0.961374 0.126869 0) (0.97334 0.130697 0) (0.985606 0.133245 0) (0.997975 0.134471 0) (1.01033 0.134365 0) (1.0226 0.132947 0) (1.03477 0.13025 0) (1.04679 0.126275 0) (1.05855 0.12098 0) (1.06986 0.114266 0) (1.0804 0.105998 0) (1.08977 0.0960543 0) (1.09754 0.0844122 0) (1.10319 0.0712254 0) (1.10622 0.05687 0) (1.10623 0.0419946 0) (1.10301 0.0274865 0) (1.09666 0.0143183 0) (1.08761 0.00342091 0) (1.07667 -0.00457265 0) (1.06479 -0.0093558 0) (1.05275 -0.0109631 0) (1.0416 -0.00942067 0) (1.03242 -0.00477434 0) (1.0255 0.00247252 0) (1.02053 0.0115948 0) (1.01753 0.0223811 0) (1.01611 0.0345478 0) (1.01393 0.0465421 0) (1.00784 0.0557414 0) (0.995993 0.0597562 0) (0.978377 0.0580492 0) (0.957764 0.0537643 0) (0.940778 0.0535461 0) (0.934342 0.062993 0) (0.93904 0.0813837 0) (0.948873 0.102326 0) (0.958748 0.119621 0) (0.969779 0.131321 0) (0.986647 0.138751 0) (1.0115 0.142748 0) (1.04145 0.140659 0) (1.07132 0.127245 0) (1.09658 0.100285 0) (1.11293 0.0650275 0) (1.11692 0.029917 0) (1.10945 -0.00169784 0) (1.09551 -0.0315386 0) (1.07924 -0.0607133 0) (1.06186 -0.0878818 0) (1.04429 -0.112459 0) (1.02841 -0.134893 0) (1.0155 -0.153849 0) (1.00521 -0.165917 0) (0.996434 -0.168447 0) (0.988403 -0.161604 0) (0.980987 -0.147939 0) (0.974453 -0.130692 0) (0.969147 -0.112452 0) (0.965329 -0.0947317 0) (0.963144 -0.0781854 0) (0.962637 -0.0630225 0) (0.963742 -0.049326 0) (0.966261 -0.03717 0) (0.969923 -0.0265889 0) (0.97451 -0.0175474 0) (0.979915 -0.0100056 0) (0.986042 -0.00403536 0) (0.992616 0.000136825 0) (0.999057 0.00231845 0) (1.00464 0.00263485 0) (1.00883 0.00160153 0) (1.01152 -2.36285e-05 0) (1.01299 -0.00157161 0) (1.01358 -0.00262353 0) (1.01349 -0.00298961 0) (1.01278 -0.00245568 0) (1.01166 -0.000728153 0) (1.01067 0.00230235 0) (1.01053 0.00628797 0) (1.01174 0.0105554 0) (1.01436 0.0144645 0) (1.01807 0.0176086 0) (1.02234 0.0198448 0) (1.02679 0.0212301 0) (1.03129 0.0219807 0) (1.03606 0.0222166 0) (1.04125 0.0218592 0) (1.04675 0.0206314 0) (1.05209 0.0182388 0) (1.05686 0.0141306 0) (1.06053 0.00796261 0) (1.06265 -0.00034071 0) (1.06226 -0.00927003 0) (1.05958 -0.0178238 0) (1.05374 -0.023865 0) (1.04735 -0.0291657 0) (1.03737 -0.0312445 0) (1.0313 -0.0346699 0) (1.01738 -0.0329978 0) (0.963654 0.119252 0) (0.974741 0.122828 0) (0.986154 0.125243 0) (0.997731 0.126461 0) (1.00934 0.126451 0) (1.02085 0.125196 0) (1.03216 0.122689 0) (1.04319 0.118926 0) (1.05386 0.113896 0) (1.06404 0.107569 0) (1.07353 0.0998892 0) (1.08203 0.0908045 0) (1.08913 0.0803347 0) (1.09439 0.0686331 0) (1.09735 0.0560226 0) (1.09763 0.0430281 0) (1.09506 0.0303678 0) (1.08968 0.0188423 0) (1.08182 0.0091754 0) (1.07212 0.00196106 0) (1.06133 -0.00252796 0) (1.05013 -0.00434632 0) (1.03931 -0.00361376 0) (1.03001 -0.000241709 0) (1.02305 0.00564069 0) (1.01848 0.0134338 0) (1.01641 0.0228383 0) (1.01717 0.0341185 0) (1.01981 0.0467888 0) (1.02121 0.0585695 0) (1.01755 0.0662677 0) (1.00638 0.0678608 0) (0.988395 0.0645501 0) (0.968871 0.061476 0) (0.955944 0.0651868 0) (0.954418 0.078386 0) (0.961742 0.0971363 0) (0.971988 0.114205 0) (0.982603 0.124938 0) (0.995579 0.129636 0) (1.01336 0.130534 0) (1.03577 0.126765 0) (1.06051 0.113825 0) (1.08373 0.0897483 0) (1.09984 0.0595724 0) (1.10508 0.0300323 0) (1.10147 0.0023056 0) (1.09389 -0.0258081 0) (1.0843 -0.0541242 0) (1.07214 -0.0806497 0) (1.05819 -0.105218 0) (1.04477 -0.12846 0) (1.03308 -0.14847 0) (1.02252 -0.161254 0) (1.01219 -0.16411 0) (1.00191 -0.157497 0) (0.992207 -0.144214 0) (0.983747 -0.127558 0) (0.976984 -0.110055 0) (0.972103 -0.0931342 0) (0.969106 -0.0773891 0) (0.967903 -0.0629877 0) (0.968347 -0.0499738 0) (0.970223 -0.0383882 0) (0.973271 -0.0282609 0) (0.977257 -0.0195824 0) (0.982021 -0.0123374 0) (0.987424 -0.00657724 0) (0.993216 -0.00244195 0) (0.998939 -5.03622e-05 0) (1.00401 0.00070724 0) (1.00795 0.000240111 0) (1.01061 -0.000852078 0) (1.0121 -0.00197984 0) (1.01268 -0.00272423 0) (1.01258 -0.00284414 0) (1.01195 -0.00213667 0) (1.01107 -0.000386274 0) (1.01044 0.00243501 0) (1.01062 0.00601555 0) (1.01193 0.00980018 0) (1.0144 0.0132789 0) (1.01779 0.0161347 0) (1.02171 0.0182415 0) (1.02581 0.0195927 0) (1.02998 0.0202971 0) (1.03438 0.0204243 0) (1.03915 0.0199606 0) (1.04415 0.0187334 0) (1.04897 0.0164977 0) (1.0533 0.012697 0) (1.05663 0.00701006 0) (1.05855 -0.000598603 0) (1.0581 -0.00870201 0) (1.05562 -0.0164032 0) (1.05026 -0.0218021 0) (1.04467 -0.026581 0) (1.03563 -0.0285099 0) (1.0306 -0.0316942 0) (1.01764 -0.0305443 0) (0.965913 0.111979 0) (0.976186 0.115327 0) (0.986745 0.117597 0) (0.997468 0.118763 0) (1.00826 0.118801 0) (1.019 0.117692 0) (1.02956 0.115417 0) (1.03982 0.111958 0) (1.04964 0.107299 0) (1.05887 0.101428 0) (1.06736 0.0943321 0) (1.07487 0.0860174 0) (1.08112 0.0765546 0) (1.08578 0.0661168 0) (1.0885 0.0550012 0) (1.089 0.043645 0) (1.08712 0.0326323 0) (1.0829 0.0226164 0) (1.07657 0.0141856 0) (1.06854 0.00781282 0) (1.05938 0.00379191 0) (1.04959 0.0020739 0) (1.03965 0.00241177 0) (1.03038 0.00478146 0) (1.02274 0.00924718 0) (1.01734 0.0155191 0) (1.01444 0.0232063 0) (1.01465 0.0326217 0) (1.01842 0.0442094 0) (1.02436 0.0569491 0) (1.02868 0.068009 0) (1.02666 0.0742491 0) (1.01567 0.0744844 0) (0.99819 0.0713371 0) (0.981756 0.0708235 0) (0.973918 0.0781812 0) (0.9765 0.0928357 0) (0.985707 0.108466 0) (0.997255 0.11879 0) (1.00954 0.122509 0) (1.02308 0.1217 0) (1.03926 0.116164 0) (1.05867 0.102515 0) (1.07819 0.0802115 0) (1.09184 0.0542708 0) (1.097 0.0290939 0) (1.09706 0.00385161 0) (1.09538 -0.0231457 0) (1.09093 -0.0501027 0) (1.08219 -0.0751501 0) (1.07085 -0.0991268 0) (1.05964 -0.122715 0) (1.04916 -0.14318 0) (1.0383 -0.156023 0) (1.02641 -0.158744 0) (1.01401 -0.152217 0) (1.00226 -0.139424 0) (0.992139 -0.123582 0) (0.984157 -0.107043 0) (0.978399 -0.0910918 0) (0.974728 -0.0762529 0) (0.972937 -0.0626673 0) (0.972806 -0.0503641 0) (0.9741 -0.0393703 0) (0.976567 -0.0297148 0) (0.979974 -0.0214075 0) (0.98413 -0.01445 0) (0.988869 -0.00887979 0) (0.993953 -0.00478854 0) (0.999004 -0.00223397 0) (1.00355 -0.00111233 0) (1.00719 -0.00109354 0) (1.00974 -0.00169938 0) (1.01122 -0.00240957 0) (1.01183 -0.00283337 0) (1.01179 -0.00272004 0) (1.0113 -0.00188022 0) (1.01068 -0.000157619 0) (1.01035 0.00244963 0) (1.01075 0.00566597 0) (1.01211 0.0090368 0) (1.01443 0.012148 0) (1.01752 0.0147457 0) (1.0211 0.0167217 0) (1.02489 0.0180274 0) (1.02879 0.0186878 0) (1.03287 0.0187286 0) (1.0372 0.0181854 0) (1.0417 0.016967 0) (1.04605 0.0148688 0) (1.05002 0.0113505 0) (1.05306 0.00611916 0) (1.05477 -0.000818982 0) (1.05423 -0.0081331 0) (1.05187 -0.0150454 0) (1.04691 -0.0198859 0) (1.04203 -0.0242158 0) (1.03389 -0.0260339 0) (1.02978 -0.0289706 0) (1.01778 -0.0281908 0) (0.968059 0.105005 0) (0.977601 0.108155 0) (0.98739 0.11031 0) (0.997311 0.111435 0) (1.00728 0.111507 0) (1.01719 0.110511 0) (1.02696 0.108437 0) (1.03646 0.105276 0) (1.04554 0.101022 0) (1.05404 0.0956706 0) (1.06177 0.0892222 0) (1.06852 0.0817047 0) (1.07404 0.073204 0) (1.07809 0.0638949 0) (1.08042 0.054054 0) (1.08086 0.0440622 0) (1.07935 0.0344102 0) (1.07594 0.0256475 0) (1.07085 0.018268 0) (1.06442 0.0126735 0) (1.05704 0.00915276 0) (1.04911 0.00771615 0) (1.04086 0.00806461 0) (1.03264 0.00997366 0) (1.02508 0.0134746 0) (1.01896 0.018433 0) (1.01474 0.0245167 0) (1.01302 0.0318571 0) (1.01487 0.0411396 0) (1.0209 0.0525683 0) (1.0294 0.0648576 0) (1.03572 0.0752386 0) (1.03466 0.0807135 0) (1.02456 0.0806352 0) (1.00961 0.0787867 0) (0.997538 0.0812675 0) (0.994194 0.0905795 0) (1.00016 0.102802 0) (1.0119 0.111965 0) (1.02503 0.11572 0) (1.03757 0.114691 0) (1.05116 0.107967 0) (1.06727 0.0934189 0) (1.08276 0.0725353 0) (1.0928 0.049947 0) (1.09757 0.0274219 0) (1.10067 0.00322671 0) (1.10237 -0.0226091 0) (1.0996 -0.0474116 0) (1.09188 -0.0705032 0) (1.08236 -0.0938613 0) (1.0733 -0.117613 0) (1.06389 -0.137939 0) (1.05251 -0.150149 0) (1.03896 -0.152309 0) (1.0246 -0.145794 0) (1.01112 -0.133649 0) (0.999681 -0.118856 0) (0.990757 -0.103488 0) (0.98431 -0.0886546 0) (0.980085 -0.0748089 0) (0.977786 -0.0620824 0) (0.977143 -0.0505094 0) (0.977902 -0.0401206 0) (0.979818 -0.0309489 0) (0.982663 -0.0230185 0) (0.986241 -0.0163437 0) (0.990362 -0.0109564 0) (0.994798 -0.00691289 0) (0.999229 -0.00423457 0) (1.00327 -0.00281456 0) (1.00657 -0.00238513 0) (1.00896 -0.00254146 0) (1.01042 -0.0028545 0) (1.01108 -0.00297074 0) (1.01115 -0.00264585 0) (1.01085 -0.00170442 0) (1.01047 -2.57085e-05 0) (1.01038 0.00237232 0) (1.01093 0.00526408 0) (1.01229 0.00827827 0) (1.01445 0.011074 0) (1.01726 0.0134404 0) (1.02052 0.0152819 0) (1.02403 0.0165257 0) (1.02768 0.0171427 0) (1.03146 0.0171261 0) (1.03539 0.0165356 0) (1.03943 0.0153308 0) (1.04335 0.0133445 0) (1.04697 0.0100766 0) (1.04975 0.00528552 0) (1.05127 -0.000992202 0) (1.05063 -0.00754804 0) (1.04839 -0.0137367 0) (1.0438 -0.0181021 0) (1.03955 -0.0220548 0) (1.03221 -0.0237934 0) (1.02885 -0.0264808 0) (1.01776 -0.0259413 0) (0.970098 0.0983334 0) (0.978934 0.10129 0) (0.988007 0.103339 0) (0.997199 0.104444 0) (1.00642 0.104573 0) (1.01557 0.103703 0) (1.02455 0.101825 0) (1.03326 0.0989403 0) (1.04157 0.095061 0) (1.04936 0.0902042 0) (1.05644 0.0843939 0) (1.06261 0.0776737 0) (1.06765 0.0701278 0) (1.07132 0.0619091 0) (1.07342 0.0532532 0) (1.07382 0.0444779 0) (1.0725 0.0359909 0) (1.06955 0.0282558 0) (1.06523 0.0217022 0) (1.05986 0.0166942 0) (1.05382 0.0135219 0) (1.04748 0.0122632 0) (1.04105 0.012702 0) (1.03459 0.0145583 0) (1.02829 0.0176807 0) (1.02258 0.0218806 0) (1.01789 0.0268758 0) (1.01463 0.032622 0) (1.01378 0.039539 0) (1.01687 0.0482902 0) (1.02445 0.059164 0) (1.03436 0.0710461 0) (1.04186 0.0809353 0) (1.04233 0.0858747 0) (1.03482 0.086427 0) (1.02362 0.0870156 0) (1.01604 0.0913253 0) (1.01712 0.0984344 0) (1.02608 0.104838 0) (1.03844 0.108299 0) (1.05137 0.107486 0) (1.0655 0.100238 0) (1.08055 0.0857669 0) (1.0929 0.0669011 0) (1.10046 0.0467762 0) (1.10561 0.0252388 0) (1.11008 0.00151403 0) (1.11138 -0.0224214 0) (1.10731 -0.0445579 0) (1.10001 -0.0661638 0) (1.0929 -0.0894816 0) (1.08619 -0.113215 0) (1.07741 -0.132622 0) (1.06496 -0.143471 0) (1.04962 -0.144755 0) (1.03355 -0.138302 0) (1.01875 -0.127021 0) (1.00641 -0.113504 0) (0.996839 -0.0994806 0) (0.989891 -0.085875 0) (0.985219 -0.0730839 0) (0.982476 -0.0612461 0) (0.981365 -0.0504165 0) (0.981625 -0.0406399 0) (0.983019 -0.0319607 0) (0.985327 -0.0244124 0) (0.988348 -0.0180197 0) (0.99189 -0.012814 0) (0.995731 -0.00882369 0) (0.999592 -0.00604624 0) (1.00315 -0.00438335 0) (1.00611 -0.00360131 0) (1.00832 -0.00336633 0) (1.00973 -0.00332126 0) (1.01045 -0.00315424 0) (1.01065 -0.00263849 0) (1.01053 -0.00161417 0) (1.01037 1.65001e-05 0) (1.01048 0.00222346 0) (1.01112 0.00483055 0) (1.01245 0.00753563 0) (1.01446 0.0100574 0) (1.01702 0.0122148 0) (1.01999 0.0139192 0) (1.02324 0.015086 0) (1.02664 0.0156594 0) (1.03015 0.0156111 0) (1.03372 0.015004 0) (1.03733 0.0138182 0) (1.04086 0.0119224 0) (1.04415 0.00887798 0) (1.04665 0.00451355 0) (1.04798 -0.00111959 0) (1.04727 -0.00695499 0) (1.04518 -0.0124857 0) (1.04098 -0.0164463 0) (1.03726 -0.0200786 0) (1.03064 -0.0217522 0) (1.02784 -0.0241921 0) (1.0176 -0.0237949 0) (0.972076 0.0919809 0) (0.980227 0.094751 0) (0.988597 0.0966898 0) (0.997085 0.0977686 0) (1.0056 0.0979579 0) (1.01406 0.0972321 0) (1.02234 0.0955742 0) (1.03033 0.0929829 0) (1.03791 0.0894741 0) (1.04498 0.08508 0) (1.0514 0.0798497 0) (1.05701 0.0738511 0) (1.06163 0.0671791 0) (1.06506 0.0599737 0) (1.06712 0.0524309 0) (1.06766 0.0448028 0) (1.06666 0.0374093 0) (1.06418 0.0306195 0) (1.06045 0.0247904 0) (1.05578 0.020246 0) (1.05056 0.0172699 0) (1.0452 0.0160009 0) (1.03999 0.0163512 0) (1.03503 0.0181152 0) (1.03034 0.0210802 0) (1.026 0.0249832 0) (1.02211 0.0295198 0) (1.01876 0.0344674 0) (1.01648 0.039826 0) (1.0165 0.0460717 0) (1.02037 0.0541908 0) (1.02855 0.0646268 0) (1.03916 0.0758109 0) (1.04793 0.0847464 0) (1.05059 0.0898299 0) (1.04664 0.0923022 0) (1.04072 0.0943664 0) (1.0387 0.096908 0) (1.04266 0.0995371 0) (1.05113 0.101115 0) (1.06278 0.099294 0) (1.07681 0.091637 0) (1.09056 0.078352 0) (1.1009 0.0618593 0) (1.108 0.0433357 0) (1.11379 0.0224195 0) (1.11743 0.000135016 0) (1.1166 -0.0211915 0) (1.11215 -0.0414004 0) (1.1075 -0.062849 0) (1.1039 -0.0865028 0) (1.09891 -0.109425 0) (1.08952 -0.126836 0) (1.07523 -0.135713 0) (1.05807 -0.136057 0) (1.04071 -0.129888 0) (1.02515 -0.119732 0) (1.01234 -0.107684 0) (1.00243 -0.0951216 0) (0.995154 -0.0828067 0) (0.990133 -0.0711021 0) (0.987004 -0.060168 0) (0.985465 -0.0500886 0) (0.98526 -0.0409295 0) (0.986161 -0.0327476 0) (0.987956 -0.0255867 0) (0.990449 -0.0194805 0) (0.993447 -0.0144534 0) (0.996738 -0.0105238 0) (1.00007 -0.00767498 0) (1.00318 -0.00581112 0) (1.00582 -0.0047321 0) (1.00783 -0.00416294 0) (1.00919 -0.00380342 0) (1.00995 -0.00338417 0) (1.01027 -0.00269891 0) (1.01032 -0.00160583 0) (1.01035 -2.66979e-05 0) (1.0106 0.002016 0) (1.01131 0.00437627 0) (1.0126 0.00681287 0) (1.01446 0.00909435 0) (1.0168 0.011062 0) (1.01951 0.0126301 0) (1.0225 0.0137111 0) (1.02565 0.0142408 0) (1.0289 0.0141787 0) (1.03215 0.0135774 0) (1.03541 0.0124191 0) (1.03856 0.0106023 0) (1.04153 0.0077677 0) (1.04374 0.00381066 0) (1.04487 -0.0012101 0) (1.04414 -0.00637349 0) (1.04224 -0.0113091 0) (1.03842 -0.0149167 0) (1.03518 -0.018265 0) (1.02916 -0.0198711 0) (1.02676 -0.0220695 0) (1.01732 -0.0217498 0) (0.973992 0.0859393 0) (0.981505 0.0885433 0) (0.989206 0.0903811 0) (0.99701 0.0914296 0) (1.00484 0.0916667 0) (1.01263 0.0910733 0) (1.02025 0.0896359 0) (1.0276 0.0873515 0) (1.03456 0.0842311 0) (1.041 0.0803056 0) (1.04682 0.0756307 0) (1.05188 0.0702871 0) (1.05606 0.0643819 0) (1.05922 0.058057 0) (1.06123 0.0514901 0) (1.06197 0.0448915 0) (1.06138 0.0385123 0) (1.0595 0.0326349 0) (1.05646 0.0275351 0) (1.0525 0.0234721 0) (1.04796 0.0206882 0) (1.04323 0.0193432 0) (1.03868 0.0194496 0) (1.03454 0.0209119 0) (1.03093 0.0235734 0) (1.02786 0.0272077 0) (1.02527 0.0315358 0) (1.02302 0.0362426 0) (1.02111 0.0410175 0) (1.01994 0.0458956 0) (1.02067 0.051653 0) (1.02494 0.0593144 0) (1.03348 0.0688466 0) (1.04448 0.0787347 0) (1.05407 0.0871169 0) (1.05938 0.0929309 0) (1.06095 0.0960726 0) (1.06147 0.0972192 0) (1.06334 0.0972997 0) (1.0681 0.0961555 0) (1.07655 0.0920859 0) (1.08753 0.0837114 0) (1.09818 0.0715282 0) (1.10678 0.056631 0) (1.11378 0.0392234 0) (1.11912 0.0197211 0) (1.12138 -0.000290638 0) (1.1205 -0.0197069 0) (1.11886 -0.0396146 0) (1.11814 -0.0615887 0) (1.11666 -0.0847022 0) (1.11092 -0.105344 0) (1.09914 -0.119831 0) (1.08257 -0.126607 0) (1.064 -0.126328 0) (1.04605 -0.120813 0) (1.03035 -0.112032 0) (1.01751 -0.101572 0) (1.00753 -0.0905146 0) (1.00009 -0.0795029 0) (0.994806 -0.0688881 0) (0.991347 -0.0588588 0) (0.989423 -0.0495307 0) (0.98879 -0.0409911 0) (0.989231 -0.0333101 0) (0.990544 -0.0265415 0) (0.992538 -0.0207233 0) (0.995026 -0.0158804 0) (0.997808 -0.0120232 0) (1.00066 -0.00912675 0) (1.00335 -0.00710106 0) (1.00568 -0.00577656 0) (1.0075 -0.00492484 0) (1.00879 -0.00429443 0) (1.00958 -0.00365459 0) (1.00999 -0.00282262 0) (1.01019 -0.00167191 0) (1.01037 -0.000138339 0) (1.01074 0.00176163 0) (1.01149 0.00390883 0) (1.01273 0.00611165 0) (1.01445 0.00818047 0) (1.0166 0.00997491 0) (1.01908 0.0114115 0) (1.02183 0.0124047 0) (1.02473 0.0128914 0) (1.02772 0.0128255 0) (1.03068 0.0122443 0) (1.03363 0.0111222 0) (1.03645 0.00938691 0) (1.03908 0.00675339 0) (1.041 0.00318583 0) (1.04195 -0.0012639 0) (1.04123 -0.00581677 0) (1.03955 -0.0102189 0) (1.03611 -0.0135069 0) (1.03327 -0.0165896 0) (1.02776 -0.0181158 0) (1.02566 -0.0200853 0) (1.01696 -0.0198048 0) (0.975829 0.0801935 0) (0.98275 0.0826496 0) (0.989835 0.0844042 0) (0.997002 0.0854336 0) (1.00419 0.0857184 0) (1.01131 0.0852452 0) (1.0183 0.0840089 0) (1.02505 0.0820134 0) (1.03143 0.0792722 0) (1.03734 0.0758143 0) (1.04266 0.0716906 0) (1.04726 0.0669766 0) (1.05106 0.061776 0) (1.05394 0.0562254 0) (1.05584 0.0504916 0) (1.05668 0.044764 0) (1.05643 0.0392558 0) (1.05511 0.0341942 0) (1.0528 0.0297943 0) (1.04966 0.0262522 0) (1.0459 0.0237492 0) (1.04184 0.022418 0) (1.03783 0.0223049 0) (1.03415 0.0233856 0) (1.03103 0.025584 0) (1.0286 0.0287608 0) (1.02688 0.0327206 0) (1.02576 0.0372003 0) (1.02503 0.0418424 0) (1.02447 0.0463742 0) (1.02439 0.0509904 0) (1.02602 0.0564115 0) (1.0309 0.0633128 0) (1.0394 0.0716334 0) (1.05009 0.0803708 0) (1.06075 0.0879493 0) (1.06975 0.0930698 0) (1.07657 0.095451 0) (1.08189 0.0954642 0) (1.08739 0.0930128 0) (1.09438 0.0874085 0) (1.1024 0.0784339 0) (1.11016 0.0666197 0) (1.11715 0.0523632 0) (1.1232 0.035859 0) (1.12743 0.0178596 0) (1.1294 -0.000654914 0) (1.13027 -0.0196195 0) (1.13137 -0.0398697 0) (1.13182 -0.0614169 0) (1.12866 -0.0822954 0) (1.11952 -0.099547 0) (1.10465 -0.111045 0) (1.08636 -0.116263 0) (1.06737 -0.115954 0) (1.04972 -0.111464 0) (1.03447 -0.104198 0) (1.02198 -0.0953401 0) (1.01214 -0.0857552 0) (1.00466 -0.0760143 0) (0.999204 -0.0664684 0) (0.995476 -0.0573329 0) (0.993215 -0.0487512 0) (0.992195 -0.0408298 0) (0.992213 -0.0336514 0) (0.993077 -0.0272781 0) (0.994606 -0.0217522 0) (0.996619 -0.0170997 0) (0.99893 -0.013327 0) (1.00134 -0.0104059 0) (1.00365 -0.00825483 0) (1.00568 -0.00673186 0) (1.00732 -0.0056463 0) (1.00852 -0.00478784 0) (1.00932 -0.00395921 0) (1.00981 -0.00300054 0) (1.01012 -0.0018029 0) (1.01042 -0.000307401 0) (1.01088 0.00146786 0) (1.01166 0.00343172 0) (1.01285 0.00543123 0) (1.01445 0.00731131 0) (1.01642 0.00894792 0) (1.01869 0.010261 0) (1.0212 0.011169 0) (1.02387 0.0116147 0) (1.0266 0.0115493 0) (1.02931 0.010996 0) (1.03197 0.00992042 0) (1.03449 0.00827476 0) (1.0368 0.00584217 0) (1.03844 0.00263897 0) (1.03923 -0.00129329 0) (1.03854 -0.00529923 0) (1.03708 -0.00922065 0) (1.03398 -0.0122092 0) (1.03148 -0.0150351 0) (1.02643 -0.016466 0) (1.02456 -0.0182235 0) (1.01657 -0.0179604 0) (0.977596 0.074742 0) (0.983955 0.0770597 0) (0.990465 0.0787408 0) (0.997044 0.0797622 0) (1.00363 0.0801034 0) (1.01015 0.0797523 0) (1.01654 0.0787071 0) (1.0227 0.0769779 0) (1.02854 0.0745856 0) (1.03395 0.0715641 0) (1.03883 0.0679631 0) (1.04307 0.0638505 0) (1.04657 0.0593166 0) (1.04925 0.0544809 0) (1.05105 0.0494894 0) (1.05193 0.0445106 0) (1.0519 0.0397328 0) (1.051 0.0353527 0) (1.04929 0.0315529 0) (1.04689 0.0284933 0) (1.04396 0.0263103 0) (1.04069 0.0250973 0) (1.03734 0.0248893 0) (1.03416 0.02568 0) (1.03138 0.0274335 0) (1.02922 0.0300697 0) (1.02781 0.03347 0) (1.02721 0.0374806 0) (1.0273 0.0418626 0) (1.0278 0.0463011 0) (1.02852 0.0506126 0) (1.02978 0.055 0) (1.03252 0.0600198 0) (1.03779 0.0661383 0) (1.04606 0.0731716 0) (1.05681 0.0801551 0) (1.06865 0.0858887 0) (1.08006 0.0895443 0) (1.0903 0.0906011 0) (1.0997 0.088534 0) (1.10865 0.0830233 0) (1.117 0.0742892 0) (1.12449 0.0628402 0) (1.13101 0.0490583 0) (1.13623 0.0333412 0) (1.13977 0.0162832 0) (1.14202 -0.00166269 0) (1.14374 -0.0205442 0) (1.14449 -0.0402707 0) (1.14223 -0.0598353 0) (1.13486 -0.0774653 0) (1.12207 -0.0914578 0) (1.10533 -0.100807 0) (1.08687 -0.105337 0) (1.06868 -0.10553 0) (1.05207 -0.102248 0) (1.03772 -0.0964755 0) (1.02581 -0.0891247 0) (1.01626 -0.0809218 0) (1.00885 -0.0723875 0) (1.0033 -0.0638721 0) (0.999364 -0.0556093 0) (0.996819 -0.0477629 0) (0.995458 -0.0404547 0) (0.995093 -0.0337779 0) (0.995545 -0.0278011 0) (0.996644 -0.0225715 0) (0.998219 -0.0181169 0) (1.0001 -0.014442 0) (1.0021 -0.0115196 0) (1.00406 -0.00927902 0) (1.00582 -0.00760004 0) (1.00727 -0.00632373 0) (1.00838 -0.00527473 0) (1.00917 -0.00428713 0) (1.00971 -0.00322288 0) (1.0101 -0.0019857 0) (1.01049 -0.000527848 0) (1.01102 0.00114202 0) (1.01182 0.00294868 0) (1.01296 0.0047711 0) (1.01444 0.00648335 0) (1.01625 0.00797661 0) (1.01833 0.00917556 0) (1.02063 0.0100043 0) (1.02306 0.0104116 0) (1.02556 0.010349 0) (1.02802 0.00982805 0) (1.03043 0.0088087 0) (1.03267 0.00726336 0) (1.03468 0.00503202 0) (1.03606 0.00216548 0) (1.03672 -0.0013035 0) (1.03607 -0.00482253 0) (1.0348 -0.00830912 0) (1.03202 -0.0110116 0) (1.0298 -0.0135865 0) (1.02517 -0.0149088 0) (1.02348 -0.0164728 0) (1.01616 -0.0162148 0) (0.979308 0.0695863 0) (0.985135 0.0717737 0) (0.991099 0.073385 0) (0.997127 0.0744005 0) (1.00316 0.0748012 0) (1.00913 0.0745748 0) (1.01497 0.0737192 0) (1.02059 0.0722453 0) (1.02591 0.0701776 0) (1.03085 0.0675546 0) (1.03532 0.0644287 0) (1.03923 0.0608651 0) (1.04249 0.0569451 0) (1.04503 0.0527694 0) (1.04679 0.0484589 0) (1.04774 0.0441549 0) (1.0479 0.0400176 0) (1.04731 0.0362166 0) (1.04605 0.0329142 0) (1.04423 0.0302538 0) (1.04199 0.0283514 0) (1.03946 0.0272793 0) (1.03684 0.0270608 0) (1.03428 0.0276864 0) (1.03196 0.0291214 0) (1.03009 0.0312984 0) (1.02883 0.0341334 0) (1.02832 0.0375436 0) (1.02864 0.0414044 0) (1.02971 0.0454985 0) (1.03132 0.0495939 0) (1.0333 0.0536336 0) (1.03584 0.0578172 0) (1.03959 0.0624281 0) (1.04544 0.0675214 0) (1.05385 0.0727677 0) (1.06448 0.0775591 0) (1.07641 0.0811405 0) (1.08876 0.0826345 0) (1.10096 0.0812084 0) (1.11254 0.0764691 0) (1.123 0.0686072 0) (1.13194 0.0580934 0) (1.13909 0.0453633 0) (1.14441 0.0307337 0) (1.14817 0.0144971 0) (1.15066 -0.00291704 0) (1.15152 -0.0209806 0) (1.14955 -0.0388785 0) (1.14347 -0.0556138 0) (1.13294 -0.0702586 0) (1.11874 -0.0819986 0) (1.10232 -0.0902279 0) (1.08522 -0.0946989 0) (1.06867 -0.0955941 0) (1.05352 -0.0934574 0) (1.04025 -0.0890202 0) (1.02906 -0.0830183 0) (1.0199 -0.0760757 0) (1.01263 -0.0686666 0) (1.00706 -0.0611312 0) (1.00299 -0.0537112 0) (1.00022 -0.0465826 0) (0.998562 -0.0398779 0) (0.997858 -0.0336981 0) (0.997938 -0.0281177 0) (0.998644 -0.0231881 0) (0.999818 -0.0189388 0) (1.0013 -0.0153756 0) (1.00294 -0.0124751 0) (1.00457 -0.0101765 0) (1.00607 -0.00837874 0) (1.00735 -0.00695082 0) (1.00836 -0.00574786 0) (1.00912 -0.00462949 0) (1.00968 -0.00347893 0) (1.01014 -0.00221126 0) (1.01059 -0.000786909 0) (1.01117 0.0007915 0) (1.01197 0.00246247 0) (1.01305 0.00413075 0) (1.01444 0.00569423 0) (1.0161 0.00705816 0) (1.01801 0.00815332 0) (1.0201 0.00890981 0) (1.02231 0.00928247 0) (1.02458 0.00922405 0) (1.02681 0.00873856 0) (1.02898 0.00778342 0) (1.03096 0.00634853 0) (1.03271 0.00431475 0) (1.03386 0.0017608 0) (1.0344 -0.001294 0) (1.0338 -0.00438232 0) (1.03269 -0.00747565 0) (1.03018 -0.00990393 0) (1.02822 -0.0122343 0) (1.02398 -0.0134386 0) (1.02245 -0.0148277 0) (1.01575 -0.0145665 0) (0.980974 0.064721 0) (0.986301 0.0667888 0) (0.991751 0.068335 0) (0.99726 0.0693439 0) (1.00277 0.0698003 0) (1.00823 0.0696937 0) (1.01357 0.069022 0) (1.0187 0.0677947 0) (1.02356 0.0660351 0) (1.02807 0.0637818 0) (1.03216 0.0610872 0) (1.03576 0.0580156 0) (1.0388 0.0546433 0) (1.04121 0.0510588 0) (1.04295 0.0473632 0) (1.044 0.0436719 0) (1.04435 0.040115 0) (1.04404 0.0368322 0) (1.04316 0.0339628 0) (1.04181 0.0316359 0) (1.0401 0.0299578 0) (1.03818 0.0289975 0) (1.03619 0.0287821 0) (1.03424 0.0293042 0) (1.03246 0.0305225 0) (1.031 0.032364 0) (1.02998 0.0347457 0) (1.02957 0.0375973 0) (1.02991 0.0408413 0) (1.03107 0.0443603 0) (1.033 0.0480244 0) (1.03552 0.0517556 0) (1.03853 0.0555402 0) (1.04223 0.0593727 0) (1.04709 0.0632064 0) (1.05359 0.0669338 0) (1.06194 0.0703226 0) (1.07203 0.0728824 0) (1.0835 0.0738335 0) (1.09576 0.0723901 0) (1.10796 0.0681793 0) (1.1192 0.0613377 0) (1.12878 0.0521811 0) (1.13648 0.0408645 0) (1.14242 0.0274518 0) (1.14669 0.0122775 0) (1.14891 -0.00387239 0) (1.14827 -0.020026 0) (1.14415 -0.035435 0) (1.13641 -0.0496498 0) (1.12551 -0.0622497 0) (1.11228 -0.0726745 0) (1.09767 -0.0803443 0) (1.08261 -0.0849104 0) (1.06794 -0.0864075 0) (1.05432 -0.0852157 0) (1.04218 -0.0819059 0) (1.03175 -0.0770795 0) (1.02305 -0.0712675 0) (1.01601 -0.0648938 0) (1.01049 -0.0582796 0) (1.00634 -0.0516646 0) (1.00339 -0.04523 0) (1.0015 -0.0391144 0) (1.0005 -0.033424 0) (1.00025 -0.0282375 0) (1.0006 -0.0236099 0) (1.00141 -0.019573 0) (1.00253 -0.0161352 0) (1.00383 -0.0132775 0) (1.00516 -0.0109492 0) (1.00642 -0.00906748 0) (1.00753 -0.00752457 0) (1.00844 -0.00620046 0) (1.00916 -0.00497818 0) (1.00973 -0.00375765 0) (1.01022 -0.00246942 0) (1.01072 -0.00107425 0) (1.01132 0.00042269 0) (1.01211 0.00197603 0) (1.01314 0.00351046 0) (1.01443 0.00494251 0) (1.01596 0.0061905 0) (1.0177 0.00719219 0) (1.01961 0.00788402 0) (1.02161 0.00822631 0) (1.02367 0.00817377 0) (1.02568 0.00772636 0) (1.02762 0.00684194 0) (1.02937 0.00552371 0) (1.03088 0.00368378 0) (1.03184 0.00141677 0) (1.03228 -0.00126998 0) (1.03171 -0.00397559 0) (1.03074 -0.00671154 0) (1.02848 -0.00887794 0) (1.02673 -0.0109727 0) (1.02284 -0.0120532 0) (1.02147 -0.0132836 0) (1.01534 -0.0130124 0) (0.982593 0.0601374 0) (0.987456 0.0620967 0) (0.992427 0.0635839 0) (0.99745 0.064587 0) (1.00248 0.0650943 0) (1.00746 0.0650985 0) (1.01233 0.0645986 0) (1.01702 0.0636035 0) (1.02146 0.0621344 0) (1.02559 0.060226 0) (1.02934 0.0579273 0) (1.03265 0.0552991 0) (1.03548 0.052413 0) (1.03778 0.0493492 0) (1.0395 0.0461958 0) (1.04063 0.0430492 0) (1.04117 0.0400137 0) (1.04114 0.037201 0) (1.0406 0.0347251 0) (1.03965 0.0326958 0) (1.03839 0.0312092 0) (1.03696 0.0303355 0) (1.03546 0.030112 0) (1.03403 0.03054 0) (1.03275 0.0315811 0) (1.03173 0.0331608 0) (1.03107 0.0351893 0) (1.03088 0.0375837 0) (1.03129 0.0402718 0) (1.03242 0.0431915 0) (1.0343 0.0462998 0) (1.03689 0.0495624 0) (1.04015 0.0529101 0) (1.04408 0.056215 0) (1.0488 0.0593319 0) (1.05449 0.0621344 0) (1.06137 0.0644429 0) (1.06962 0.0658899 0) (1.07924 0.0659272 0) (1.08981 0.0640682 0) (1.10055 0.0601278 0) (1.11065 0.0541535 0) (1.11962 0.0461356 0) (1.12734 0.0359537 0) (1.13361 0.0237201 0) (1.13794 0.0100419 0) (1.13959 -0.00415263 0) (1.1381 -0.0180629 0) (1.13349 -0.0312971 0) (1.12614 -0.0436695 0) (1.11655 -0.0548634 0) (1.10522 -0.0643418 0) (1.09271 -0.0715349 0) (1.07968 -0.0760919 0) (1.06678 -0.0780017 0) (1.05461 -0.0775453 0) (1.04358 -0.0751674 0) (1.03393 -0.0713516 0) (1.02574 -0.0665421 0) (1.01899 -0.0611102 0) (1.01358 -0.0553516 0) (1.00941 -0.0494971 0) (1.00634 -0.0437267 0) (1.00425 -0.0381811 0) (1.003 -0.0329689 0) (1.00246 -0.0281716 0) (1.00249 -0.0238465 0) (1.00297 -0.0200283 0) (1.00377 -0.0167282 0) (1.00476 -0.0139328 0) (1.00583 -0.0116015 0) (1.00687 -0.00966701 0) (1.00781 -0.00804104 0) (1.00861 -0.00662526 0) (1.00928 -0.00532351 0) (1.00984 -0.0040514 0) (1.01034 -0.00274813 0) (1.01087 -0.00138253 0) (1.01148 4.15257e-05 0) (1.01225 0.00149368 0) (1.01323 0.00291125 0) (1.01443 0.00422731 0) (1.01583 0.00537207 0) (1.01741 0.00629047 0) (1.01914 0.00692532 0) (1.02096 0.00724184 0) (1.02281 0.00719749 0) (1.02462 0.00679057 0) (1.02635 0.00598118 0) (1.02788 0.00478296 0) (1.02919 0.00313074 0) (1.02998 0.00112603 0) (1.03033 -0.00123233 0) (1.02979 -0.00359626 0) (1.02893 -0.00600729 0) (1.02689 -0.00792519 0) (1.02533 -0.00979518 0) (1.02178 -0.0107496 0) (1.02055 -0.011836 0) (1.01496 -0.011549 0) (0.984168 0.0558264 0) (0.9886 0.057687 0) (0.993127 0.0591216 0) (0.997701 0.0601202 0) (1.00228 0.0606745 0) (1.00681 0.0607799 0) (1.01125 0.0604375 0) (1.01554 0.0596562 0) (1.0196 0.0584551 0) (1.02338 0.0568651 0) (1.02683 0.0549295 0) (1.02989 0.0527032 0) (1.03254 0.0502513 0) (1.03472 0.0476467 0) (1.03642 0.0449677 0) (1.03761 0.0422969 0) (1.0383 0.0397203 0) (1.03852 0.0373272 0) (1.03829 0.0352083 0) (1.03771 0.0334535 0) (1.03685 0.0321455 0) (1.03582 0.0313518 0) (1.03475 0.0311156 0) (1.03373 0.0314475 0) (1.03286 0.0323183 0) (1.03224 0.0336611 0) (1.03194 0.0353864 0) (1.03203 0.0374036 0) (1.03261 0.0396388 0) (1.03376 0.0420475 0) (1.03553 0.0446155 0) (1.03799 0.0473311 0) (1.04117 0.0501374 0) (1.04509 0.0529114 0) (1.04972 0.0554909 0) (1.0551 0.0576915 0) (1.0613 0.0592753 0) (1.06844 0.0599224 0) (1.07648 0.0592915 0) (1.08511 0.0571424 0) (1.09385 0.053365 0) (1.10232 0.0478555 0) (1.1103 0.0404463 0) (1.11747 0.0310859 0) (1.12326 0.0200915 0) (1.12692 0.00814589 0) (1.12795 -0.00401591 0) (1.12626 -0.0159412 0) (1.12217 -0.0274575 0) (1.11602 -0.0384165 0) (1.10806 -0.0484675 0) (1.09856 -0.0570814 0) (1.08791 -0.0637506 0) (1.07664 -0.0681775 0) (1.06533 -0.0703397 0) (1.05449 -0.070443 0) (1.04452 -0.0688255 0) (1.03566 -0.0658686 0) (1.028 -0.0619376 0) (1.02157 -0.0573525 0) (1.01633 -0.0523798 0) (1.01219 -0.0472362 0) (1.00905 -0.0420956 0) (1.00681 -0.0370967 0) (1.00535 -0.0323481 0) (1.00456 -0.0279326 0) (1.00432 -0.023909 0) (1.00451 -0.0203141 0) (1.00502 -0.0171631 0) (1.00573 -0.0144481 0) (1.00655 -0.0121377 0) (1.00738 -0.010178 0) (1.00817 -0.00849822 0) (1.00886 -0.00701826 0) (1.00947 -0.00565852 0) (1.01 -0.00434969 0) (1.01051 -0.00304111 0) (1.01104 -0.00170613 0) (1.01165 -0.000345822 0) (1.0124 0.00101811 0) (1.01332 0.00233405 0) (1.01442 0.00354835 0) (1.01571 0.00460188 0) (1.01715 0.00544675 0) (1.01871 0.00603202 0) (1.02034 0.00632757 0) (1.02201 0.00629402 0) (1.02362 0.00592968 0) (1.02516 0.00519795 0) (1.0265 0.00412051 0) (1.02762 0.00264714 0) (1.02827 0.000883504 0) (1.02855 -0.00118018 0) (1.02803 -0.00323882 0) (1.02727 -0.00535502 0) (1.02541 -0.00703907 0) (1.02402 -0.00869694 0) (1.02079 -0.00952567 0) (1.01969 -0.0104812 0) (1.01458 -0.0101733 0) (0.985703 0.0517794 0) (0.989734 0.0535494 0) (0.993852 0.0549362 0) (0.998011 0.0559316 0) (1.00217 0.0565294 0) (1.0063 0.0567272 0) (1.01034 0.0565276 0) (1.01425 0.05594 0) (1.01796 0.0549823 0) (1.02143 0.0536816 0) (1.02461 0.0520757 0) (1.02746 0.0502127 0) (1.02993 0.0481499 0) (1.03201 0.0459521 0) (1.03368 0.0436888 0) (1.03492 0.0414319 0) (1.03574 0.0392541 0) (1.03616 0.0372283 0) (1.03621 0.0354276 0) (1.03594 0.0339242 0) (1.03544 0.0327866 0) (1.03478 0.0320747 0) (1.03407 0.0318306 0) (1.03341 0.0320702 0) (1.03289 0.0327745 0) (1.03259 0.033889 0) (1.0326 0.0353343 0) (1.03296 0.0370243 0) (1.03372 0.0388864 0) (1.03494 0.0408751 0) (1.03667 0.0429722 0) (1.039 0.0451672 0) (1.04198 0.0474226 0) (1.04565 0.0496502 0) (1.05003 0.051704 0) (1.05508 0.0533823 0) (1.06082 0.0544351 0) (1.06721 0.054593 0) (1.07412 0.0536199 0) (1.08135 0.0513407 0) (1.08868 0.0476076 0) (1.09594 0.0422751 0) (1.10288 0.035271 0) (1.10902 0.0267312 0) (1.11371 0.0170592 0) (1.11642 0.00679794 0) (1.11697 -0.00364521 0) (1.11546 -0.0140264 0) (1.11212 -0.0242095 0) (1.1071 -0.0339882 0) (1.10049 -0.0429889 0) (1.09247 -0.0507461 0) (1.08334 -0.0568514 0) (1.07357 -0.0610688 0) (1.06366 -0.0633682 0) (1.05404 -0.0638914 0) (1.04507 -0.062888 0) (1.03697 -0.0606534 0) (1.02986 -0.0574844 0) (1.0238 -0.0536527 0) (1.01875 -0.0493945 0) (1.01469 -0.0449087 0) (1.01152 -0.0403595 0) (1.00918 -0.0358805 0) (1.00756 -0.0315781 0) (1.00655 -0.0275344 0) (1.00607 -0.0238092 0) (1.00601 -0.0204413 0) (1.00626 -0.0174491 0) (1.00673 -0.01483 0) (1.00732 -0.0125613 0) (1.00796 -0.0106009 0) (1.0086 -0.00889278 0) (1.00919 -0.00737227 0) (1.00973 -0.00597533 0) (1.01022 -0.00464488 0) (1.01071 -0.00333949 0) (1.01123 -0.00203523 0) (1.01183 -0.000730997 0) (1.01254 0.000554112 0) (1.0134 0.00178086 0) (1.01442 0.00290584 0) (1.01559 0.00387914 0) (1.01689 0.00465967 0) (1.0183 0.0052025 0) (1.01977 0.00548187 0) (1.02126 0.00546184 0) (1.02269 0.00514181 0) (1.02405 0.00448894 0) (1.02521 0.00353038 0) (1.02617 0.00222682 0) (1.0267 0.000683868 0) (1.02691 -0.00111523 0) (1.02642 -0.00290004 0) (1.02573 -0.004749 0) (1.02405 -0.00621462 0) (1.02281 -0.00767378 0) (1.01986 -0.00837865 0) (1.01888 -0.00921481 0) (1.01423 -0.00888119 0) (0.987201 0.0479876 0) (0.990862 0.0496736 0) (0.994601 0.0510161 0) (0.998378 0.0520085 0) (1.00216 0.052646 0) (1.00591 0.0529274 0) (1.00959 0.0528566 0) (1.01315 0.0524431 0) (1.01654 0.0517036 0) (1.01973 0.0506624 0) (1.02266 0.0493524 0) (1.02531 0.047815 0) (1.02764 0.0460998 0) (1.02963 0.0442631 0) (1.03126 0.0423652 0) (1.03254 0.0404688 0) (1.03346 0.0386363 0) (1.03405 0.0369291 0) (1.03432 0.0354072 0) (1.03434 0.0341291 0) (1.03414 0.0331504 0) (1.03381 0.0325206 0) (1.03342 0.0322764 0) (1.03307 0.0324343 0) (1.03284 0.032983 0) (1.03283 0.0338816 0) (1.03308 0.0350656 0) (1.03365 0.036461 0) (1.03457 0.0379996 0) (1.03588 0.0396312 0) (1.03762 0.0413272 0) (1.03984 0.0430701 0) (1.04262 0.0448311 0) (1.04601 0.0465434 0) (1.05002 0.0480847 0) (1.05466 0.0492755 0) (1.05989 0.0498967 0) (1.06563 0.0497193 0) (1.07174 0.0485311 0) (1.07808 0.0461497 0) (1.08452 0.042429 0) (1.09083 0.0372948 0) (1.09668 0.0308032 0) (1.10161 0.023174 0) (1.10519 0.0147414 0) (1.10715 0.00585756 0) (1.10747 -0.00326132 0) (1.10624 -0.0124325 0) (1.10352 -0.0214901 0) (1.09934 -0.0301961 0) (1.09375 -0.0382095 0) (1.08688 -0.0451523 0) (1.07901 -0.0507059 0) (1.07053 -0.0546806 0) (1.06185 -0.0570378 0) (1.05334 -0.0578688 0) (1.04529 -0.057354 0) (1.03792 -0.05572 0) (1.03136 -0.0532051 0) (1.02567 -0.0500373 0) (1.02086 -0.0464226 0) (1.01691 -0.0425399 0) (1.01376 -0.0385412 0) (1.01135 -0.0345525 0) (1.0096 -0.030676 0) (1.00843 -0.0269922 0) (1.00775 -0.0235605 0) (1.00746 -0.0204211 0) (1.00748 -0.0175951 0) (1.00773 -0.0150854 0) (1.00812 -0.0128765 0) (1.00859 -0.010937 0) (1.00908 -0.00922326 0) (1.00957 -0.00768428 0) (1.01003 -0.00626864 0) (1.01049 -0.00493058 0) (1.01094 -0.00363425 0) (1.01144 -0.00236111 0) (1.01201 -0.00111063 0) (1.01268 0.000104623 0) (1.01348 0.0012537 0) (1.01442 0.0023004 0) (1.01548 0.00320343 0) (1.01666 0.00392817 0) (1.01792 0.00443523 0) (1.01923 0.00470301 0) (1.02056 0.00469912 0) (1.02183 0.00442471 0) (1.02302 0.00385037 0) (1.02402 0.00300748 0) (1.02484 0.00186401 0) (1.02526 0.000522716 0) (1.02542 -0.0010384 0) (1.02494 -0.00257647 0) (1.02432 -0.00418265 0) (1.02279 -0.00544535 0) (1.02168 -0.00672008 0) (1.019 -0.00730513 0) (1.01812 -0.0080326 0) (1.0139 -0.00766927 0) (0.988666 0.044442 0) (0.991985 0.0460492 0) (0.995374 0.0473498 0) (0.998799 0.0483382 0) (1.00223 0.0490108 0) (1.00564 0.0493671 0) (1.00898 0.0494114 0) (1.01223 0.0491531 0) (1.01533 0.0486077 0) (1.01826 0.0477969 0) (1.02097 0.0467495 0) (1.02344 0.0455012 0) (1.02563 0.0440943 0) (1.02753 0.0425767 0) (1.02914 0.0410003 0) (1.03044 0.0394188 0) (1.03144 0.037886 0) (1.03216 0.0364543 0) (1.03263 0.0351742 0) (1.03287 0.0340938 0) (1.03294 0.033258 0) (1.03289 0.0327062 0) (1.03279 0.0324679 0) (1.03272 0.0325576 0) (1.03275 0.0329685 0) (1.03296 0.0336711 0) (1.03341 0.0346159 0) (1.03414 0.0357423 0) (1.03518 0.0369897 0) (1.03656 0.0383071 0) (1.03831 0.0396587 0) (1.04046 0.0410191 0) (1.04307 0.0423576 0) (1.04618 0.0436167 0) (1.04984 0.0446953 0) (1.05403 0.0454463 0) (1.05874 0.0456858 0) (1.06388 0.0452131 0) (1.06936 0.0438328 0) (1.07501 0.0413801 0) (1.08067 0.0377548 0) (1.08607 0.0329527 0) (1.09089 0.027077 0) (1.09481 0.0203241 0) (1.09759 0.0129321 0) (1.09911 0.00512174 0) (1.09935 -0.00293523 0) (1.09834 -0.0110812 0) (1.09605 -0.0191366 0) (1.09248 -0.0268661 0) (1.08766 -0.0339806 0) (1.08173 -0.0401813 0) (1.07493 -0.045219 0) (1.06757 -0.0489388 0) (1.05996 -0.0512958 0) (1.05244 -0.0523446 0) (1.04524 -0.0522134 0) (1.03856 -0.0510738 0) (1.03254 -0.0491157 0) (1.02723 -0.0465281 0) (1.02268 -0.0434878 0) (1.01887 -0.0401533 0) (1.01576 -0.0366625 0) (1.01333 -0.0331325 0) (1.01149 -0.0296598 0) (1.01018 -0.0263216 0) (1.00933 -0.0231764 0) (1.00885 -0.0202649 0) (1.00868 -0.017611 0) (1.00873 -0.0152217 0) (1.00895 -0.0130883 0) (1.00925 -0.0111886 0) (1.00962 -0.00948925 0) (1.01 -0.00795078 0) (1.01039 -0.00653255 0) (1.01079 -0.00519781 0) (1.01121 -0.00391844 0) (1.01167 -0.00267912 0) (1.01221 -0.00147915 0) (1.01283 -0.000327691 0) (1.01357 0.00075377 0) (1.01442 0.00173249 0) (1.01538 0.0025744 0) (1.01644 0.00325119 0) (1.01757 0.00372868 0) (1.01874 0.00398914 0) (1.01991 0.00400381 0) (1.02102 0.00377559 0) (1.02206 0.00327879 0) (1.02292 0.00254694 0) (1.02361 0.00155327 0) (1.02395 0.000396864 0) (1.02405 -0.000950194 0) (1.02359 -0.00226656 0) (1.02303 -0.00365268 0) (1.02163 -0.00472761 0) (1.02064 -0.00583184 0) (1.0182 -0.00630172 0) (1.01742 -0.00693002 0) (1.01358 -0.00653369 0) (0.990101 0.0411328 0) (0.993103 0.0426658 0) (0.996171 0.0439258 0) (0.999274 0.0449084 0) (1.00238 0.0456106 0) (1.00548 0.0460326 0) (1.00852 0.0461786 0) (1.01148 0.0460576 0) (1.01432 0.0456834 0) (1.017 0.0450756 0) (1.01951 0.0442594 0) (1.02181 0.0432653 0) (1.02388 0.0421293 0) (1.02571 0.0408921 0) (1.02728 0.0395975 0) (1.02859 0.0382911 0) (1.02966 0.0370189 0) (1.03049 0.0358258 0) (1.03111 0.0347545 0) (1.03154 0.0338451 0) (1.03183 0.033134 0) (1.03202 0.0326523 0) (1.03217 0.032423 0) (1.03234 0.0324573 0) (1.03259 0.0327507 0) (1.033 0.0332816 0) (1.0336 0.0340127 0) (1.03445 0.0348957 0) (1.03558 0.0358793 0) (1.037 0.0369161 0) (1.03875 0.0379674 0) (1.04083 0.0390013 0) (1.0433 0.0399818 0) (1.04618 0.0408545 0) (1.04951 0.0415336 0) (1.0533 0.0418975 0) (1.05752 0.0417943 0) (1.06211 0.0410548 0) (1.06697 0.039518 0) (1.07194 0.0370594 0) (1.07683 0.0336187 0) (1.08138 0.0292176 0) (1.08536 0.023952 0) (1.08856 0.0179674 0) (1.09083 0.0114325 0) (1.09208 0.00450416 0) (1.09228 -0.00265247 0) (1.0914 -0.00989337 0) (1.08941 -0.0170453 0) (1.0863 -0.0238961 0) (1.08212 -0.0302083 0) (1.07699 -0.0357458 0) (1.0711 -0.0403111 0) (1.06469 -0.0437753 0) (1.05804 -0.0460907 0) (1.05139 -0.0472863 0) (1.04496 -0.0474515 0) (1.03893 -0.0467152 0) (1.03342 -0.0452272 0) (1.0285 -0.0431423 0) (1.02421 -0.0406105 0) (1.02057 -0.0377701 0) (1.01754 -0.0347444 0) (1.01511 -0.0316401 0) (1.01321 -0.0285472 0) (1.0118 -0.0255386 0) (1.01081 -0.022671 0) (1.01018 -0.0199854 0) (1.00984 -0.0175071 0) (1.00973 -0.0152469 0) (1.00978 -0.0132021 0) (1.00994 -0.0113579 0) (1.01018 -0.00968991 0) (1.01047 -0.00816852 0) (1.01078 -0.00676217 0) (1.01112 -0.00544198 0) (1.0115 -0.00418699 0) (1.01192 -0.00298271 0) (1.01241 -0.00182922 0) (1.01299 -0.000734726 0) (1.01366 0.00028492 0) (1.01443 0.00120347 0) (1.01529 0.00199212 0) (1.01624 0.00262789 0) (1.01724 0.00308138 0) (1.01827 0.00333836 0) (1.0193 0.0033736 0) (1.02028 0.00319172 0) (1.02118 0.00277043 0) (1.02191 0.00214439 0) (1.02249 0.00128992 0) (1.02275 0.000302718 0) (1.02281 -0.000851012 0) (1.02236 -0.00196781 0) (1.02185 -0.00315495 0) (1.02057 -0.00405717 0) (1.01969 -0.00500485 0) (1.01747 -0.00536522 0) (1.01678 -0.00590304 0) (1.0133 -0.00547099 0) (0.991506 0.0380499 0) (0.994217 0.0395124 0) (0.996991 0.0407325 0) (0.999798 0.0417067 0) (1.00262 0.0424327 0) (1.00542 0.0429109 0) (1.00819 0.0431454 0) (1.01088 0.0431443 0) (1.01348 0.04292 0) (1.01595 0.0424898 0) (1.01827 0.0418753 0) (1.02042 0.041103 0) (1.02237 0.0402033 0) (1.02412 0.0392105 0) (1.02566 0.0381614 0) (1.02698 0.0370946 0) (1.02809 0.0360488 0) (1.02901 0.0350622 0) (1.02975 0.0341709 0) (1.03034 0.0334084 0) (1.03081 0.0328044 0) (1.0312 0.0323836 0) (1.03155 0.0321637 0) (1.03193 0.0321529 0) (1.03237 0.0323477 0) (1.03294 0.0327318 0) (1.03368 0.0332763 0) (1.03462 0.0339435 0) (1.0358 0.0346911 0) (1.03725 0.035477 0) (1.03896 0.036263 0) (1.04098 0.0370132 0) (1.04331 0.0376876 0) (1.04599 0.0382328 0) (1.04904 0.0385736 0) (1.05246 0.038609 0) (1.05623 0.038216 0) (1.0603 0.0372624 0) (1.06456 0.0356253 0) (1.06886 0.0332168 0) (1.07303 0.0299996 0) (1.07687 0.0259943 0) (1.0802 0.0212744 0) (1.08287 0.0159465 0) (1.08477 0.010138 0) (1.08582 0.00397972 0) (1.08597 -0.00238295 0) (1.08518 -0.00881382 0) (1.08343 -0.0151556 0) (1.08071 -0.021226 0) (1.07707 -0.0268305 0) (1.07261 -0.03178 0) (1.06749 -0.0359157 0) (1.06192 -0.0391294 0) (1.05609 -0.0413738 0) (1.05022 -0.0426607 0) (1.0445 -0.0430508 0) (1.03907 -0.0426402 0) (1.03404 -0.0415457 0) (1.0295 -0.0398931 0) (1.02549 -0.037808 0) (1.02203 -0.0354094 0) (1.0191 -0.0328061 0) (1.0167 -0.0300941 0) (1.01478 -0.0273557 0) (1.0133 -0.0246593 0) (1.0122 -0.022059 0) (1.01144 -0.0195948 0) (1.01096 -0.0172935 0) (1.0107 -0.0151691 0) (1.01061 -0.0132234 0) (1.01065 -0.0114478 0) (1.01077 -0.00982593 0) (1.01096 -0.00833569 0) (1.0112 -0.00695382 0) (1.01148 -0.00565849 0) (1.0118 -0.00443253 0) (1.01218 -0.003266 0) (1.01263 -0.00215813 0) (1.01315 -0.00111507 0) (1.01375 -0.000152024 0) (1.01444 0.000713611 0) (1.01521 0.00145632 0) (1.01605 0.00205735 0) (1.01694 0.00249183 0) (1.01784 0.00274867 0) (1.01875 0.00280604 0) (1.01959 0.00267021 0) (1.02036 0.00232156 0) (1.02098 0.00179559 0) (1.02146 0.00107033 0) (1.02165 0.000237128 0) (1.02168 -0.000742087 0) (1.02125 -0.00167869 0) (1.02077 -0.0026859 0) (1.01961 -0.00342975 0) (1.01882 -0.00423424 0) (1.01681 -0.0044914 0) (1.01619 -0.00494715 0) (1.01303 -0.00447775 0) (0.992882 0.0351826 0) (0.995327 0.0365777 0) (0.997831 0.0377581 0) (1.00037 0.038721 0) (1.00292 0.0394646 0) (1.00546 0.0399896 0) (1.00797 0.0402996 0) (1.01043 0.0404019 0) (1.01281 0.0403073 0) (1.01508 0.0400309 0) (1.01723 0.0395913 0) (1.01923 0.039011 0) (1.02108 0.0383159 0) (1.02275 0.0375345 0) (1.02425 0.036698 0) (1.02557 0.0358385 0) (1.02672 0.0349886 0) (1.0277 0.0341802 0) (1.02854 0.0334438 0) (1.02925 0.0328071 0) (1.02987 0.0322944 0) (1.03042 0.0319256 0) (1.03095 0.0317142 0) (1.03149 0.0316663 0) (1.03209 0.0317787 0) (1.03279 0.0320385 0) (1.03363 0.0324231 0) (1.03465 0.0329027 0) (1.03587 0.0334425 0) (1.03731 0.034006 0) (1.03899 0.034557 0) (1.04092 0.0350585 0) (1.04313 0.0354692 0) (1.04562 0.0357381 0) (1.04841 0.0357985 0) (1.0515 0.0355675 0) (1.05486 0.0349484 0) (1.05843 0.0338408 0) (1.06213 0.0321553 0) (1.06582 0.029828 0) (1.06937 0.0268341 0) (1.07262 0.0231885 0) (1.07544 0.0189455 0) (1.0777 0.014188 0) (1.0793 0.00901579 0) (1.08017 0.00354181 0) (1.08027 -0.00211184 0) (1.07955 -0.00781899 0) (1.07799 -0.0134402 0) (1.0756 -0.0188212 0) (1.07243 -0.0238019 0) (1.06856 -0.0282295 0) (1.06411 -0.0319748 0) (1.05925 -0.0349467 0) (1.05415 -0.0371 0) (1.04897 -0.0384351 0) (1.04388 -0.0389921 0) (1.039 -0.0388416 0) (1.03444 -0.0380739 0) (1.03027 -0.0367902 0) (1.02653 -0.0350944 0) (1.02326 -0.033088 0) (1.02046 -0.0308654 0) (1.0181 -0.028512 0) (1.01618 -0.0261024 0) (1.01466 -0.0236995 0) (1.01349 -0.0213543 0) (1.01263 -0.0191057 0) (1.01203 -0.0169812 0) (1.01164 -0.0149967 0) (1.01143 -0.0131581 0) (1.01136 -0.0114619 0) (1.01138 -0.00989786 0) (1.01148 -0.00845096 0) (1.01164 -0.00710455 0) (1.01186 -0.00584214 0) (1.01213 -0.00465118 0) (1.01246 -0.00352506 0) (1.01285 -0.00246151 0) (1.01331 -0.00146684 0) (1.01385 -0.000553711 0) (1.01446 0.000264748 0) (1.01514 0.000967345 0) (1.01588 0.00153888 0) (1.01666 0.00195854 0) (1.01745 0.00221808 0) (1.01823 0.00229864 0) (1.01896 0.00220794 0) (1.01962 0.0019288 0) (1.02013 0.00149666 0) (1.02053 0.000890651 0) (1.02066 0.000197701 0) (1.02065 -0.000623898 0) (1.02024 -0.00139803 0) (1.0198 -0.00224322 0) (1.01873 -0.00284279 0) (1.01802 -0.00351675 0) (1.0162 -0.00367706 0) (1.01565 -0.00405806 0) (1.01279 -0.00355018 0) (0.994229 0.0325205 0) (0.996431 0.0338505 0) (0.998688 0.0349909 0) (1.00098 0.0359394 0) (1.00328 0.0366945 0) (1.00559 0.037257 0) (1.00787 0.03763 0) (1.01011 0.0378199 0) (1.01229 0.0378362 0) (1.01438 0.0376916 0) (1.01637 0.0374022 0) (1.01824 0.0369868 0) (1.01998 0.0364673 0) (1.02158 0.0358677 0) (1.02304 0.0352138 0) (1.02435 0.0345325 0) (1.02551 0.0338509 0) (1.02655 0.0331956 0) (1.02746 0.0325919 0) (1.02827 0.0320627 0) (1.029 0.0316278 0) (1.02969 0.0313031 0) (1.03035 0.0310993 0) (1.03102 0.0310205 0) (1.03175 0.031064 0) (1.03255 0.0312193 0) (1.03348 0.0314683 0) (1.03455 0.031787 0) (1.03579 0.0321465 0) (1.03722 0.0325152 0) (1.03885 0.0328599 0) (1.0407 0.0331448 0) (1.04277 0.0333301 0) (1.04508 0.0333683 0) (1.04763 0.0332021 0) (1.05041 0.0327636 0) (1.05339 0.0319779 0) (1.05652 0.0307694 0) (1.05972 0.029073 0) (1.06289 0.0268425 0) (1.06591 0.0240597 0) (1.06867 0.0207372 0) (1.07106 0.0169142 0) (1.07296 0.0126582 0) (1.07431 0.00804815 0) (1.07503 0.0031819 0) (1.07507 -0.00183925 0) (1.07441 -0.00690126 0) (1.07303 -0.0118829 0) (1.07093 -0.0166548 0) (1.06817 -0.0210848 0) (1.0648 -0.0250481 0) (1.06094 -0.0284388 0) (1.0567 -0.0311799 0) (1.05223 -0.0332289 0) (1.04767 -0.0345793 0) (1.04314 -0.0352561 0) (1.03877 -0.0353104 0) (1.03463 -0.0348116 0) (1.03082 -0.03384 0) (1.02736 -0.0324811 0) (1.02428 -0.0308199 0) (1.02161 -0.0289381 0) (1.01934 -0.0269103 0) (1.01744 -0.0248033 0) (1.01589 -0.0226745 0) (1.01467 -0.0205713 0) (1.01373 -0.0185309 0) (1.01304 -0.0165807 0) (1.01255 -0.0147383 0) (1.01224 -0.0130123 0) (1.01206 -0.0114038 0) (1.01199 -0.00990757 0) (1.01201 -0.00851427 0) (1.0121 -0.00721219 0) (1.01226 -0.00599015 0) (1.01247 -0.00483945 0) (1.01274 -0.00375442 0) (1.01308 -0.00273511 0) (1.01348 -0.00178631 0) (1.01395 -0.000919226 0) (1.01449 -0.000143531 0) (1.01509 0.000524666 0) (1.01573 0.00107151 0) (1.01641 0.00147998 0) (1.01709 0.0017445 0) (1.01776 0.00184878 0) (1.01838 0.00180197 0) (1.01894 0.00158864 0) (1.01936 0.00124399 0) (1.01968 0.000747744 0) (1.01976 0.000182027 0) (1.01972 -0.000497212 0) (1.01933 -0.00112502 0) (1.01892 -0.00182437 0) (1.01794 -0.00229263 0) (1.0173 -0.00284838 0) (1.01565 -0.00291891 0) (1.01516 -0.00323215 0) (1.01258 -0.00268535 0) (0.995548 0.0300526 0) (0.997528 0.0313194 0) (0.99956 0.0324192 0) (1.00163 0.03335 0) (1.00371 0.0341106 0) (1.0058 0.0347016 0) (1.00787 0.0351258 0) (1.00991 0.0353887 0) (1.01191 0.0354982 0) (1.01383 0.0354652 0) (1.01568 0.0353033 0) (1.01742 0.0350284 0) (1.01906 0.0346586 0) (1.02059 0.0342139 0) (1.022 0.0337158 0) (1.02329 0.0331865 0) (1.02447 0.0326486 0) (1.02553 0.0321239 0) (1.0265 0.0316333 0) (1.02738 0.0311955 0) (1.02821 0.0308268 0) (1.02899 0.0305397 0) (1.02975 0.0303424 0) (1.03053 0.0302381 0) (1.03135 0.0302243 0) (1.03224 0.0302921 0) (1.03323 0.0304269 0) (1.03433 0.0306089 0) (1.03558 0.030814 0) (1.03698 0.0310148 0) (1.03856 0.0311815 0) (1.04031 0.031281 0) (1.04226 0.0312766 0) (1.04439 0.0311261 0) (1.04671 0.0307807 0) (1.04921 0.0301856 0) (1.05184 0.0292826 0) (1.05458 0.0280154 0) (1.05735 0.0263356 0) (1.06007 0.0242101 0) (1.06265 0.021626 0) (1.065 0.0185932 0) (1.06701 0.0151443 0) (1.06862 0.0113307 0) (1.06974 0.00722161 0) (1.07033 0.0028931 0) (1.07033 -0.00156453 0) (1.06972 -0.0060527 0) (1.06849 -0.0104681 0) (1.06666 -0.0147022 0) (1.06425 -0.0186454 0) (1.06132 -0.0221951 0) (1.05795 -0.0252638 0) (1.05426 -0.027786 0) (1.05034 -0.0297229 0) (1.04632 -0.0310634 0) (1.04231 -0.0318222 0) (1.03839 -0.0320354 0) (1.03466 -0.0317555 0) (1.03118 -0.0310461 0) (1.02798 -0.0299763 0) (1.02512 -0.0286172 0) (1.02259 -0.0270381 0) (1.0204 -0.0253039 0) (1.01854 -0.0234737 0) (1.017 -0.021599 0) (1.01574 -0.0197236 0) (1.01475 -0.0178825 0) (1.01398 -0.0161026 0) (1.01342 -0.0144024 0) (1.01301 -0.0127928 0) (1.01275 -0.0112782 0) (1.0126 -0.00985741 0) (1.01255 -0.00852539 0) (1.01257 -0.00727515 0) (1.01266 -0.00609966 0) (1.01281 -0.00499275 0) (1.01303 -0.00395118 0) (1.01331 -0.00297657 0) (1.01366 -0.00207225 0) (1.01406 -0.00124711 0) (1.01453 -0.000509042 0) (1.01504 0.000128321 0) (1.0156 0.000654396 0) (1.01618 0.00105465 0) (1.01676 0.00132579 0) (1.01733 0.00145394 0) (1.01786 0.00144924 0) (1.01832 0.0012978 0) (1.01866 0.00103431 0) (1.01891 0.00063838 0) (1.01895 0.000188142 0) (1.01889 -0.000362441 0) (1.01851 -0.000859179 0) (1.01812 -0.00142773 0) (1.01724 -0.00177678 0) (1.01666 -0.00222532 0) (1.01516 -0.00221265 0) (1.01473 -0.00246471 0) (1.01239 -0.00187963 0) (0.996837 0.0277682 0) (0.998615 0.0289734 0) (1.00044 0.0300318 0) (1.0023 0.0309416 0) (1.00419 0.0317018 0) (1.00608 0.0323129 0) (1.00796 0.0327772 0) (1.00982 0.0330992 0) (1.01165 0.0332858 0) (1.01342 0.033346 0) (1.01513 0.0332911 0) (1.01676 0.0331344 0) (1.01831 0.0328909 0) (1.01976 0.0325771 0) (1.02112 0.0322108 0) (1.02238 0.0318103 0) (1.02356 0.031394 0) (1.02464 0.03098 0) (1.02564 0.0305852 0) (1.02658 0.0302249 0) (1.02747 0.0299122 0) (1.02833 0.029657 0) (1.02917 0.0294658 0) (1.03003 0.0293408 0) (1.03092 0.0292795 0) (1.03186 0.0292746 0) (1.03289 0.029314 0) (1.03401 0.0293812 0) (1.03526 0.0294559 0) (1.03663 0.0295145 0) (1.03814 0.0295305 0) (1.0398 0.0294747 0) (1.04161 0.0293142 0) (1.04357 0.0290126 0) (1.04568 0.028529 0) (1.04791 0.0278195 0) (1.05024 0.0268391 0) (1.05264 0.0255453 0) (1.05503 0.0239025 0) (1.05737 0.0218867 0) (1.05957 0.0194898 0) (1.06157 0.01672 0) (1.06327 0.013605 0) (1.06462 0.0101851 0) (1.06556 0.00651787 0) (1.06602 0.00266717 0) (1.06599 -0.0012893 0) (1.06543 -0.00526894 0) (1.06435 -0.00918396 0) (1.06274 -0.0129429 0) (1.06063 -0.016455 0) (1.05808 -0.0196355 0) (1.05515 -0.0224117 0) (1.05193 -0.0247278 0) (1.0485 -0.0265487 0) (1.04496 -0.0278608 0) (1.0414 -0.0286712 0) (1.0379 -0.0290049 0) (1.03454 -0.0289013 0) (1.03137 -0.02841 0) (1.02844 -0.0275865 0) (1.02577 -0.0264896 0) (1.02339 -0.0251776 0) (1.0213 -0.0237063 0) (1.0195 -0.0221274 0) (1.01798 -0.0204868 0) (1.01671 -0.0188242 0) (1.01568 -0.0171726 0) (1.01486 -0.0155575 0) (1.01423 -0.0139979 0) (1.01376 -0.0125064 0) (1.01342 -0.0110896 0) (1.0132 -0.00974973 0) (1.01308 -0.00848522 0) (1.01303 -0.00729297 0) (1.01307 -0.00616868 0) (1.01316 -0.00510946 0) (1.01333 -0.00411372 0) (1.01355 -0.00318287 0) (1.01384 -0.00232082 0) (1.01418 -0.0015341 0) (1.01457 -0.000830531 0) (1.01501 -0.000221465 0) (1.01548 0.000286713 0) (1.01597 0.000681002 0) (1.01647 0.000959853 0) (1.01695 0.00111149 0) (1.01738 0.00114682 0) (1.01776 0.00105319 0) (1.01804 0.000864358 0) (1.01822 0.000559921 0) (1.01822 0.000214259 0) (1.01814 -0.000220603 0) (1.01778 -0.000599905 0) (1.01742 -0.00105078 0) (1.0166 -0.00129234 0) (1.01608 -0.00164455 0) (1.01473 -0.00155569 0) (1.01434 -0.00175265 0) (1.01223 -0.00113018 0) (0.998094 0.0256568 0) (0.999689 0.0268015 0) (1.00133 0.0278175 0) (1.00301 0.0287031 0) (1.00471 0.0294573 0) (1.00642 0.0300806 0) (1.00813 0.0305747 0) (1.00982 0.0309434 0) (1.0115 0.0311923 0) (1.01313 0.0313289 0) (1.01471 0.0313625 0) (1.01623 0.031304 0) (1.01769 0.0311658 0) (1.01907 0.0309616 0) (1.02038 0.0307057 0) (1.02161 0.0304133 0) (1.02277 0.0300992 0) (1.02385 0.0297782 0) (1.02488 0.0294641 0) (1.02585 0.0291692 0) (1.02679 0.0289038 0) (1.02769 0.0286758 0) (1.02859 0.0284903 0) (1.0295 0.0283486 0) (1.03044 0.0282486 0) (1.03143 0.0281839 0) (1.03248 0.0281446 0) (1.0336 0.0281166 0) (1.03483 0.0280829 0) (1.03616 0.0280232 0) (1.0376 0.0279147 0) (1.03916 0.0277317 0) (1.04084 0.0274459 0) (1.04264 0.0270264 0) (1.04455 0.0264397 0) (1.04655 0.0256506 0) (1.04861 0.0246244 0) (1.0507 0.0233288 0) (1.05278 0.021738 0) (1.05479 0.019835 0) (1.05667 0.0176145 0) (1.05836 0.0150853 0) (1.0598 0.0122686 0) (1.06093 0.00919908 0) (1.0617 0.00592184 0) (1.06208 0.00249567 0) (1.06202 -0.00101623 0) (1.06151 -0.00454573 0) (1.06054 -0.00801838 0) (1.05913 -0.0113573 0) (1.05729 -0.0144871 0) (1.05507 -0.0173377 0) (1.05252 -0.0198483 0) (1.04971 -0.0219714 0) (1.0467 -0.0236752 0) (1.04359 -0.0249452 0) (1.04044 -0.0257832 0) (1.03732 -0.0262059 0) (1.0343 -0.0262424 0) (1.03142 -0.0259308 0) (1.02874 -0.0253156 0) (1.02627 -0.0244447 0) (1.02404 -0.0233668 0) (1.02206 -0.0221293 0) (1.02033 -0.020777 0) (1.01884 -0.0193506 0) (1.01758 -0.0178857 0) (1.01653 -0.0164125 0) (1.01567 -0.0149555 0) (1.01499 -0.0135335 0) (1.01446 -0.0121599 0) (1.01407 -0.0108432 0) (1.01378 -0.00958797 0) (1.0136 -0.00839561 0) (1.0135 -0.00726562 0) (1.01347 -0.00619661 0) (1.01352 -0.00518777 0) (1.01362 -0.00423893 0) (1.01379 -0.00335219 0) (1.01402 -0.00253096 0) (1.0143 -0.0017814 0) (1.01462 -0.00111023 0) (1.01499 -0.000525657 0) (1.01538 -3.28424e-05 0) (1.0158 0.000357277 0) (1.01621 0.000644492 0) (1.0166 0.000818872 0) (1.01696 0.000891847 0) (1.01726 0.000851732 0) (1.01747 0.000731286 0) (1.01761 0.000509828 0) (1.01758 0.000258256 0) (1.01748 -7.34788e-05 0) (1.01713 -0.000346649 0) (1.01679 -0.000692295 0) (1.01604 -0.000837608 0) (1.01557 -0.00110309 0) (1.01435 -0.000944383 0) (1.014 -0.00109164 0) (1.0121 -0.000433615 0) (0.99932 0.0237078 0) (1.00075 0.0247931 0) (1.00222 0.0257656 0) (1.00373 0.0266239 0) (1.00526 0.0273671 0) (1.00681 0.0279952 0) (1.00836 0.0285097 0) (1.00991 0.0289136 0) (1.01144 0.0292114 0) (1.01294 0.0294093 0) (1.0144 0.0295147 0) (1.01582 0.0295367 0) (1.01719 0.0294853 0) (1.0185 0.0293716 0) (1.01976 0.0292074 0) (1.02095 0.0290047 0) (1.02209 0.0287758 0) (1.02317 0.0285324 0) (1.0242 0.0282857 0) (1.02519 0.0280454 0) (1.02615 0.0278199 0) (1.02709 0.0276152 0) (1.02802 0.0274352 0) (1.02897 0.0272807 0) (1.02993 0.0271496 0) (1.03094 0.0270366 0) (1.032 0.0269331 0) (1.03312 0.0268276 0) (1.03431 0.0267055 0) (1.03559 0.0265497 0) (1.03696 0.0263406 0) (1.03843 0.0260563 0) (1.03998 0.0256729 0) (1.04163 0.0251646 0) (1.04335 0.0245043 0) (1.04514 0.023664 0) (1.04696 0.0226169 0) (1.04879 0.0213389 0) (1.05059 0.0198111 0) (1.05232 0.0180217 0) (1.05393 0.015968 0) (1.05537 0.0136582 0) (1.05658 0.01111 0) (1.05753 0.00835324 0) (1.05816 0.00542571 0) (1.05845 0.00237464 0) (1.05837 -0.000745499 0) (1.05791 -0.0038776 0) (1.05705 -0.00695968 0) (1.05581 -0.00992752 0) (1.05421 -0.0127185 0) (1.05228 -0.0152742 0) (1.05005 -0.0175439 0) (1.0476 -0.0194869 0) (1.04497 -0.0210749 0) (1.04222 -0.0222931 0) (1.03944 -0.0231398 0) (1.03666 -0.0236257 0) (1.03395 -0.0237715 0) (1.03135 -0.0236066 0) (1.0289 -0.0231659 0) (1.02662 -0.0224883 0) (1.02455 -0.021614 0) (1.02268 -0.0205832 0) (1.02103 -0.019434 0) (1.01958 -0.0182022 0) (1.01834 -0.0169195 0) (1.01729 -0.0156133 0) (1.01641 -0.0143066 0) (1.0157 -0.0130177 0) (1.01512 -0.0117603 0) (1.01468 -0.0105443 0) (1.01434 -0.0093758 0) (1.0141 -0.00825842 0) (1.01395 -0.00719393 0) (1.01387 -0.00618308 0) (1.01386 -0.00522667 0) (1.01392 -0.00432589 0) (1.01403 -0.00348338 0) (1.0142 -0.00270234 0) (1.01442 -0.00198817 0) (1.01468 -0.00134626 0) (1.01498 -0.000783791 0) (1.0153 -0.000304886 0) (1.01564 8.19097e-05 0) (1.01598 0.000377578 0) (1.0163 0.000573554 0) (1.01658 0.000681528 0) (1.01682 0.000690592 0) (1.01697 0.000632343 0) (1.01706 0.000485807 0) (1.017 0.000318502 0) (1.01689 7.82641e-05 0) (1.01655 -0.000100243 0) (1.01623 -0.000351116 0) (1.01555 -0.000409005 0) (1.01512 -0.000597575 0) (1.01402 -0.000375623 0) (1.0137 -0.000478682 0) (1.012 0.000212701 0) (1.00051 0.0219111 0) (1.00179 0.0229378 0) (1.00311 0.0238659 0) (1.00447 0.0246941 0) (1.00585 0.0254215 0) (1.00725 0.0260478 0) (1.00866 0.0265742 0) (1.01006 0.027003 0) (1.01146 0.0273378 0) (1.01284 0.0275833 0) (1.0142 0.0277459 0) (1.01552 0.0278326 0) (1.01681 0.0278515 0) (1.01805 0.0278116 0) (1.01924 0.0277223 0) (1.02039 0.0275934 0) (1.0215 0.0274346 0) (1.02256 0.0272554 0) (1.02359 0.0270646 0) (1.02458 0.0268699 0) (1.02555 0.0266778 0) (1.02651 0.026493 0) (1.02746 0.0263184 0) (1.02842 0.0261544 0) (1.0294 0.0259991 0) (1.03041 0.0258478 0) (1.03146 0.0256934 0) (1.03256 0.025526 0) (1.03372 0.0253335 0) (1.03495 0.0251015 0) (1.03625 0.0248135 0) (1.03761 0.0244512 0) (1.03905 0.0239946 0) (1.04055 0.0234226 0) (1.0421 0.0227134 0) (1.0437 0.021845 0) (1.04531 0.020797 0) (1.04691 0.0195513 0) (1.04848 0.0180941 0) (1.04997 0.0164177 0) (1.05134 0.0145216 0) (1.05256 0.0124128 0) (1.05359 0.0101077 0) (1.05437 0.00763068 0) (1.0549 0.00501412 0) (1.05512 0.00229565 0) (1.05503 -0.000479114 0) (1.05461 -0.00326085 0) (1.05385 -0.00599821 0) (1.05276 -0.00863806 0) (1.05136 -0.0111283 0) (1.04967 -0.0134204 0) (1.04773 -0.0154716 0) (1.04559 -0.0172472 0) (1.04329 -0.0187222 0) (1.04087 -0.0198821 0) (1.03841 -0.020723 0) (1.03594 -0.0212508 0) (1.03351 -0.0214803 0) (1.03117 -0.0214336 0) (1.02894 -0.0211379 0) (1.02685 -0.0206244 0) (1.02493 -0.0199261 0) (1.02318 -0.0190765 0) (1.02161 -0.0181083 0) (1.02022 -0.0170521 0) (1.019 -0.0159361 0) (1.01796 -0.014785 0) (1.01708 -0.0136201 0) (1.01634 -0.0124587 0) (1.01574 -0.0113146 0) (1.01525 -0.0101982 0) (1.01487 -0.00911713 0) (1.01459 -0.00807637 0) (1.01439 -0.00707939 0) (1.01426 -0.00612857 0) (1.01421 -0.00522598 0) (1.01421 -0.00437384 0) (1.01427 -0.00357532 0) (1.01439 -0.00283364 0) (1.01455 -0.00215381 0) (1.01475 -0.00153949 0) (1.01499 -0.000997645 0) (1.01524 -0.000531216 0) (1.01551 -0.000147016 0) (1.01578 0.000156829 0) (1.01603 0.000372988 0) (1.01625 0.000513152 0) (1.01643 0.000567017 0) (1.01653 0.000564977 0) (1.01658 0.000485773 0) (1.0165 0.000393702 0) (1.01637 0.000235392 0) (1.01605 0.000140006 0) (1.01575 -2.73012e-05 0) (1.01513 -8.01798e-06 0) (1.01473 -0.000127462 0) (1.01374 0.000151406 0) (1.01345 8.83638e-05 0) (1.01192 0.000811409 0) (1.00166 0.0202567 0) (1.00281 0.0212257 0) (1.00399 0.0221085 0) (1.00521 0.0229041 0) (1.00645 0.0236114 0) (1.00772 0.0242301 0) (1.009 0.0247608 0) (1.01028 0.0252053 0) (1.01156 0.0255663 0) (1.01283 0.0258476 0) (1.01408 0.0260542 0) (1.01531 0.0261917 0) (1.01651 0.0262665 0) (1.01768 0.0262857 0) (1.01882 0.0262569 0) (1.01993 0.0261878 0) (1.021 0.0260862 0) (1.02203 0.0259594 0) (1.02304 0.0258145 0) (1.02403 0.0256574 0) (1.025 0.0254933 0) (1.02596 0.0253257 0) (1.02691 0.0251566 0) (1.02787 0.0249862 0) (1.02885 0.0248126 0) (1.02985 0.0246319 0) (1.03088 0.024438 0) (1.03195 0.0242227 0) (1.03307 0.0239759 0) (1.03424 0.0236856 0) (1.03546 0.023338 0) (1.03673 0.022918 0) (1.03805 0.0224093 0) (1.03942 0.021795 0) (1.04082 0.0210574 0) (1.04224 0.0201798 0) (1.04367 0.0191464 0) (1.04507 0.0179439 0) (1.04643 0.0165627 0) (1.04772 0.0149978 0) (1.0489 0.0132498 0) (1.04993 0.0113261 0) (1.0508 0.00924062 0) (1.05146 0.00701355 0) (1.05188 0.00467204 0) (1.05205 0.00224824 0) (1.05195 -0.000220883 0) (1.05157 -0.00269284 0) (1.0509 -0.00512562 0) (1.04994 -0.00747521 0) (1.04872 -0.0096983 0) (1.04725 -0.0117544 0) (1.04556 -0.0136076 0) (1.04369 -0.0152282 0) (1.04167 -0.0165943 0) (1.03955 -0.0176919 0) (1.03737 -0.0185157 0) (1.03518 -0.0190684 0) (1.03301 -0.0193602 0) (1.0309 -0.0194073 0) (1.02888 -0.0192308 0) (1.02697 -0.0188555 0) (1.02519 -0.0183082 0) (1.02355 -0.0176167 0) (1.02207 -0.0168084 0) (1.02075 -0.0159098 0) (1.01958 -0.0149454 0) (1.01855 -0.0139373 0) (1.01767 -0.0129048 0) (1.01692 -0.0118644 0) (1.0163 -0.0108295 0) (1.01578 -0.00981072 0) (1.01537 -0.00881634 0) (1.01505 -0.0078525 0) (1.01481 -0.00692385 0) (1.01464 -0.00603395 0) (1.01454 -0.00518602 0) (1.0145 -0.00438294 0) (1.01451 -0.00362802 0) (1.01458 -0.00292469 0) (1.01468 -0.0022777 0) (1.01483 -0.00169032 0) (1.015 -0.00116819 0) (1.0152 -0.000713219 0) (1.0154 -0.000331255 0) (1.01561 -1.98293e-05 0) (1.0158 0.000214719 0) (1.01596 0.000384103 0) (1.01609 0.000478407 0) (1.01615 0.000526813 0) (1.01616 0.00050779 0) (1.01606 0.000482723 0) (1.01593 0.000397181 0) (1.01561 0.000375499 0) (1.01533 0.000281304 0) (1.01476 0.000368007 0) (1.0144 0.000310591 0) (1.0135 0.000640652 0) (1.01325 0.000613693 0) (1.01187 0.00136566 0) (1.00278 0.0187351 0) (1.0038 0.0196471 0) (1.00486 0.020484 0) (1.00595 0.0212448 0) (1.00707 0.0219283 0) (1.00822 0.0225341 0) (1.00937 0.0230624 0) (1.01054 0.0235145 0) (1.01171 0.0238924 0) (1.01288 0.0241991 0) (1.01403 0.0244383 0) (1.01518 0.0246144 0) (1.0163 0.0247325 0) (1.0174 0.0247981 0) (1.01848 0.0248172 0) (1.01953 0.0247958 0) (1.02056 0.02474 0) (1.02157 0.0246557 0) (1.02255 0.0245481 0) (1.02352 0.024422 0) (1.02448 0.0242812 0) (1.02542 0.0241284 0) (1.02637 0.023965 0) (1.02732 0.0237909 0) (1.02828 0.0236043 0) (1.02926 0.023402 0) (1.03027 0.0231787 0) (1.0313 0.0229277 0) (1.03237 0.0226407 0) (1.03348 0.0223076 0) (1.03462 0.0219172 0) (1.0358 0.0214573 0) (1.03702 0.0209147 0) (1.03826 0.0202758 0) (1.03952 0.0195269 0) (1.04079 0.018655 0) (1.04205 0.0176483 0) (1.04329 0.0164972 0) (1.04447 0.015195 0) (1.04558 0.0137389 0) (1.04659 0.0121304 0) (1.04747 0.0103766 0) (1.0482 0.00848935 0) (1.04875 0.00648642 0) (1.0491 0.00438999 0) (1.04923 0.00222814 0) (1.04912 3.04522e-05 0) (1.04877 -0.00216878 0) (1.04818 -0.00433308 0) (1.04734 -0.00642606 0) (1.04627 -0.00841193 0) (1.04499 -0.0102569 0) (1.04352 -0.0119308 0) (1.04188 -0.0134084 0) (1.04011 -0.0146702 0) (1.03825 -0.0157034 0) (1.03633 -0.0165018 0) (1.03439 -0.0170658 0) (1.03245 -0.0174021 0) (1.03055 -0.0175224 0) (1.02872 -0.0174428 0) (1.02698 -0.0171829 0) (1.02535 -0.0167641 0) (1.02383 -0.0162093 0) (1.02244 -0.0155416 0) (1.02118 -0.0147833 0) (1.02006 -0.0139558 0) (1.01906 -0.0130786 0) (1.0182 -0.0121691 0) (1.01745 -0.0112425 0) (1.01681 -0.0103118 0) (1.01627 -0.00938736 0) (1.01583 -0.00847791 0) (1.01548 -0.00759022 0) (1.0152 -0.00672976 0) (1.015 -0.00590094 0) (1.01486 -0.00510771 0) (1.01477 -0.00435346 0) (1.01474 -0.003642 0) (1.01476 -0.00297662 0) (1.01482 -0.00236159 0) (1.01491 -0.00179993 0) (1.01503 -0.00129647 0) (1.01517 -0.000852463 0) (1.01532 -0.000472825 0) (1.01547 -0.000154638 0) (1.0156 9.62654e-05 0) (1.01571 0.000291802 0) (1.0158 0.000422257 0) (1.01582 0.000515573 0) (1.0158 0.000549983 0) (1.01569 0.000584181 0) (1.01554 0.000562974 0) (1.01524 0.00060641 0) (1.01497 0.00057726 0) (1.01445 0.000724339 0) (1.01412 0.000720829 0) (1.01331 0.00109592 0) (1.01308 0.00110041 0) (1.01185 0.00187785 0) (1.00385 0.0173372 0) (1.00476 0.018193 0) (1.00571 0.0189836 0) (1.00669 0.0197077 0) (1.0077 0.0203643 0) (1.00873 0.0209526 0) (1.00978 0.0214728 0) (1.01084 0.0219255 0) (1.01191 0.0223122 0) (1.01298 0.022635 0) (1.01405 0.0228969 0) (1.01511 0.0231011 0) (1.01616 0.0232515 0) (1.01719 0.0233526 0) (1.01821 0.0234087 0) (1.01921 0.0234247 0) (1.02019 0.0234051 0) (1.02116 0.0233545 0) (1.02211 0.0232769 0) (1.02305 0.0231761 0) (1.02399 0.0230547 0) (1.02491 0.0229148 0) (1.02584 0.0227573 0) (1.02677 0.0225819 0) (1.02771 0.022387 0) (1.02866 0.0221698 0) (1.02963 0.0219259 0) (1.03062 0.0216499 0) (1.03164 0.0213348 0) (1.03268 0.0209724 0) (1.03375 0.0205539 0) (1.03484 0.0200691 0) (1.03595 0.0195078 0) (1.03708 0.0188591 0) (1.03822 0.0181126 0) (1.03935 0.0172583 0) (1.04047 0.0162876 0) (1.04155 0.0151936 0) (1.04258 0.0139717 0) (1.04354 0.0126209 0) (1.04441 0.0111435 0) (1.04516 0.00954569 0) (1.04578 0.00783843 0) (1.04624 0.0060363 0) (1.04653 0.00415883 0) (1.04662 0.0022287 0) (1.04651 0.000271532 0) (1.0462 -0.00168686 0) (1.04567 -0.00361396 0) (1.04494 -0.00547974 0) (1.044 -0.00725466 0) (1.04289 -0.00891063 0) (1.0416 -0.0104223 0) (1.04017 -0.011768 0) (1.03863 -0.0129309 0) (1.03699 -0.013899 0) (1.0353 -0.0146659 0) (1.03357 -0.0152306 0) (1.03185 -0.0155968 0) (1.03015 -0.0157729 0) (1.0285 -0.0157711 0) (1.02691 -0.0156065 0) (1.02541 -0.0152963 0) (1.02401 -0.0148591 0) (1.02271 -0.0143139 0) (1.02153 -0.0136799 0) (1.02045 -0.0129751 0) (1.0195 -0.0122168 0) (1.01865 -0.0114205 0) (1.01791 -0.0106002 0) (1.01727 -0.00976777 0) (1.01672 -0.00893362 0) (1.01626 -0.00810635 0) (1.01588 -0.00729309 0) (1.01558 -0.00649982 0) (1.01534 -0.00573146 0) (1.01516 -0.00499244 0) (1.01504 -0.0042866 0) (1.01497 -0.00361793 0) (1.01494 -0.00298965 0) (1.01496 -0.00240588 0) (1.015 -0.0018693 0) (1.01507 -0.00138398 0) (1.01516 -0.000950802 0) (1.01526 -0.00057394 0) (1.01535 -0.000249937 0) (1.01544 1.51722e-05 0) (1.01551 0.000233773 0) (1.01555 0.000396174 0) (1.01554 0.000529105 0) (1.01549 0.000610602 0) (1.01537 0.000696867 0) (1.01521 0.00073216 0) (1.01493 0.000832667 0) (1.01467 0.000860583 0) (1.0142 0.00106019 0) (1.01389 0.00110406 0) (1.01317 0.00151848 0) (1.01295 0.00155074 0) (1.01185 0.00235043 0) (1.00488 0.016054 0) (1.00569 0.0168547 0) (1.00654 0.0175987 0) (1.00742 0.0182848 0) (1.00833 0.0189117 0) (1.00926 0.0194789 0) (1.01021 0.0199859 0) (1.01117 0.0204332 0) (1.01215 0.0208217 0) (1.01313 0.0211529 0) (1.01411 0.0214289 0) (1.01509 0.0216522 0) (1.01607 0.0218258 0) (1.01703 0.0219527 0) (1.01799 0.0220366 0) (1.01894 0.022081 0) (1.01987 0.0220894 0) (1.0208 0.0220652 0) (1.02171 0.0220116 0) (1.02262 0.0219311 0) (1.02352 0.0218259 0) (1.02442 0.0216973 0) (1.02532 0.0215459 0) (1.02622 0.0213713 0) (1.02712 0.0211721 0) (1.02804 0.0209458 0) (1.02897 0.020689 0) (1.02991 0.020397 0) (1.03087 0.0200642 0) (1.03185 0.0196841 0) (1.03285 0.0192496 0) (1.03386 0.0187527 0) (1.03488 0.0181852 0) (1.0359 0.0175389 0) (1.03693 0.0168057 0) (1.03794 0.0159782 0) (1.03893 0.0150502 0) (1.03988 0.0140169 0) (1.04078 0.0128756 0) (1.04161 0.0116262 0) (1.04236 0.0102715 0) (1.043 0.00881734 0) (1.04352 0.00727314 0) (1.04391 0.00565181 0) (1.04414 0.0039689 0) (1.04421 0.00224332 0) (1.04411 0.000497667 0) (1.04382 -0.00124591 0) (1.04336 -0.00296247 0) (1.04271 -0.00462671 0) (1.0419 -0.00621389 0) (1.04092 -0.00770053 0) (1.0398 -0.00906531 0) (1.03855 -0.0102898 0) (1.0372 -0.0113593 0) (1.03577 -0.0122629 0) (1.03427 -0.0129942 0) (1.03275 -0.0135509 0) (1.03121 -0.0139352 0) (1.02969 -0.0141526 0) (1.0282 -0.0142122 0) (1.02677 -0.0141255 0) (1.0254 -0.0139062 0) (1.0241 -0.0135692 0) (1.0229 -0.0131303 0) (1.02179 -0.0126054 0) (1.02077 -0.01201 0) (1.01985 -0.011359 0) (1.01903 -0.0106661 0) (1.01831 -0.00994399 0) (1.01767 -0.00920371 0) (1.01712 -0.00845508 0) (1.01665 -0.00770651 0) (1.01625 -0.00696517 0) (1.01592 -0.00623729 0) (1.01566 -0.00552808 0) (1.01545 -0.00484228 0) (1.0153 -0.00418399 0) (1.01519 -0.00355718 0) (1.01512 -0.0029652 0) (1.0151 -0.00241195 0) (1.0151 -0.00189972 0) (1.01512 -0.00143228 0) (1.01516 -0.00100985 0) (1.01522 -0.000636469 0) (1.01527 -0.000308298 0) (1.01531 -3.06951e-05 0) (1.01534 0.000207618 0) (1.01534 0.000397816 0) (1.0153 0.000565313 0) (1.01524 0.000687955 0) (1.0151 0.00081959 0) (1.01494 0.000904136 0) (1.01467 0.00105422 0) (1.01442 0.00113185 0) (1.01399 0.00137701 0) (1.01371 0.00146224 0) (1.01306 0.00191058 0) (1.01286 0.00196714 0) (1.01188 0.00278571 0) (1.00587 0.0148771 0) (1.00659 0.0156238 0) (1.00735 0.0163213 0) (1.00814 0.0169683 0) (1.00895 0.0175637 0) (1.00979 0.0181064 0) (1.01065 0.0185962 0) (1.01153 0.0190331 0) (1.01241 0.0194175 0) (1.01331 0.0197505 0) (1.01421 0.0200334 0) (1.01512 0.0202682 0) (1.01602 0.0204569 0) (1.01693 0.0206018 0) (1.01782 0.0207056 0) (1.01871 0.0207709 0) (1.0196 0.0208004 0) (1.02048 0.0207964 0) (1.02135 0.0207614 0) (1.02222 0.0206972 0) (1.02308 0.0206054 0) (1.02394 0.0204868 0) (1.02481 0.0203418 0) (1.02567 0.0201699 0) (1.02654 0.0199698 0) (1.02741 0.0197394 0) (1.0283 0.0194759 0) (1.02919 0.0191756 0) (1.0301 0.0188339 0) (1.03101 0.0184458 0) (1.03193 0.0180054 0) (1.03286 0.0175067 0) (1.0338 0.0169434 0) (1.03473 0.016309 0) (1.03565 0.0155977 0) (1.03655 0.014804 0) (1.03743 0.0139236 0) (1.03827 0.0129532 0) (1.03905 0.0118915 0) (1.03978 0.0107391 0) (1.04042 0.00949913 0) (1.04097 0.008177 0) (1.04142 0.00678089 0) (1.04174 0.00532174 0) (1.04193 0.003813 0) (1.04198 0.00227068 0) (1.04188 0.000712239 0) (1.04163 -0.000841774 0) (1.04122 -0.00237201 0) (1.04065 -0.00385751 0) (1.03994 -0.00527758 0) (1.03909 -0.00661258 0) (1.03811 -0.00784457 0) (1.03703 -0.00895786 0) (1.03584 -0.00993959 0) (1.03458 -0.0107801 0) (1.03327 -0.011473 0) (1.03192 -0.0120156 0) (1.03056 -0.0124083 0) (1.0292 -0.012655 0) (1.02786 -0.012762 0) (1.02656 -0.0127382 0) (1.02531 -0.0125942 0) (1.02413 -0.012342 0) (1.02301 -0.0119944 0) (1.02197 -0.0115647 0) (1.02102 -0.0110661 0) (1.02014 -0.0105111 0) (1.01936 -0.00991207 0) (1.01865 -0.00928008 0) (1.01802 -0.00862532 0) (1.01747 -0.00795692 0) (1.01699 -0.00728292 0) (1.01659 -0.0066104 0) (1.01624 -0.00594551 0) (1.01595 -0.00529361 0) (1.01572 -0.00465959 0) (1.01554 -0.0040476 0) (1.0154 -0.00346178 0) (1.0153 -0.00290536 0) (1.01523 -0.00238189 0) (1.0152 -0.00189351 0) (1.01518 -0.00144367 0) (1.01518 -0.00103237 0) (1.01519 -0.000663161 0) (1.0152 -0.000332502 0) (1.01521 -4.43957e-05 0) (1.0152 0.00021075 0) (1.01518 0.00042488 0) (1.01511 0.000622197 0) (1.01503 0.000780426 0) (1.01488 0.000951218 0) (1.01472 0.00107836 0) (1.01446 0.00127114 0) (1.01423 0.00139176 0) (1.01383 0.00167599 0) (1.01357 0.00179704 0) (1.01299 0.0022742 0) (1.01281 0.00235189 0) (1.01193 0.00318587 0) (1.00681 0.0137989 0) (1.00745 0.0144929 0) (1.00812 0.0151442 0) (1.00883 0.0157514 0) (1.00956 0.0163135 0) (1.01032 0.0168295 0) (1.01109 0.0172987 0) (1.01189 0.0177209 0) (1.0127 0.0180964 0) (1.01352 0.0184256 0) (1.01435 0.0187095 0) (1.01518 0.0189493 0) (1.01602 0.0191464 0) (1.01686 0.0193027 0) (1.01769 0.0194198 0) (1.01853 0.0194997 0) (1.01936 0.0195443 0) (1.02019 0.0195554 0) (1.02102 0.0195347 0) (1.02184 0.0194835 0) (1.02267 0.0194028 0) (1.02349 0.0192931 0) (1.02431 0.0191547 0) (1.02513 0.0189869 0) (1.02596 0.0187888 0) (1.02679 0.0185585 0) (1.02763 0.0182937 0) (1.02847 0.0179914 0) (1.02931 0.0176481 0) (1.03016 0.0172598 0) (1.03102 0.0168219 0) (1.03187 0.0163298 0) (1.03272 0.0157787 0) (1.03356 0.0151639 0) (1.03439 0.014481 0) (1.0352 0.0137261 0) (1.03598 0.0128963 0) (1.03672 0.0119897 0) (1.03741 0.0110059 0) (1.03804 0.00994592 0) (1.0386 0.00881295 0) (1.03907 0.0076121 0) (1.03945 0.0063505 0) (1.03973 0.0050376 0) (1.03989 0.00368486 0) (1.03992 0.00230532 0) (1.03983 0.000914146 0) (1.0396 -0.000472579 0) (1.03924 -0.00183804 0) (1.03875 -0.00316489 0) (1.03813 -0.00443604 0) (1.03738 -0.00563511 0) (1.03653 -0.00674699 0) (1.03558 -0.00775833 0) (1.03455 -0.00865798 0) (1.03344 -0.00943727 0) (1.03229 -0.0100902 0) (1.03109 -0.0106138 0) (1.02989 -0.0110074 0) (1.02867 -0.0112733 0) (1.02747 -0.011416 0) (1.0263 -0.0114422 0) (1.02517 -0.0113599 0) (1.02408 -0.0111788 0) (1.02306 -0.0109092 0) (1.02209 -0.0105619 0) (1.0212 -0.0101481 0) (1.02037 -0.00967866 0) (1.01962 -0.009164 0) (1.01893 -0.00861405 0) (1.01832 -0.00803799 0) (1.01778 -0.00744421 0) (1.0173 -0.00684024 0) (1.01689 -0.00623286 0) (1.01653 -0.00562808 0) (1.01622 -0.00503124 0) (1.01597 -0.00444719 0) (1.01576 -0.00388007 0) (1.0156 -0.00333389 0) (1.01547 -0.00281183 0) (1.01537 -0.00231731 0) (1.0153 -0.00185235 0) (1.01525 -0.00142002 0) (1.01521 -0.00102042 0) (1.01519 -0.000656365 0) (1.01516 -0.000324443 0) (1.01514 -2.87598e-05 0) (1.0151 0.000240706 0) (1.01505 0.000475146 0) (1.01496 0.000697812 0) (1.01486 0.000886448 0) (1.01471 0.00109065 0) (1.01455 0.00125427 0) (1.0143 0.00148342 0) (1.01408 0.00164087 0) (1.01371 0.00195822 0) (1.01347 0.00210999 0) (1.01295 0.00261118 0) (1.01279 0.00270706 0) (1.01201 0.00355293 0) (1.0077 0.0128114 0) (1.00827 0.0134541 0) (1.00887 0.0140598 0) (1.0095 0.0146272 0) (1.01016 0.015155 0) (1.01084 0.0156423 0) (1.01154 0.0160884 0) (1.01226 0.0164927 0) (1.01299 0.0168552 0) (1.01374 0.0171761 0) (1.0145 0.017456 0) (1.01527 0.0176955 0) (1.01604 0.0178957 0) (1.01682 0.0180577 0) (1.01759 0.0181826 0) (1.01837 0.018272 0) (1.01915 0.0183269 0) (1.01993 0.0183488 0) (1.02071 0.0183388 0) (1.02149 0.0182976 0) (1.02227 0.0182261 0) (1.02305 0.0181246 0) (1.02383 0.0179929 0) (1.02461 0.0178306 0) (1.02539 0.0176367 0) (1.02617 0.0174098 0) (1.02695 0.017148 0) (1.02774 0.016849 0) (1.02853 0.01651 0) (1.02932 0.0161278 0) (1.03011 0.015699 0) (1.03089 0.0152202 0) (1.03166 0.0146877 0) (1.03243 0.0140981 0) (1.03317 0.0134483 0) (1.0339 0.0127356 0) (1.03459 0.0119583 0) (1.03524 0.0111153 0) (1.03585 0.0102068 0) (1.0364 0.00923443 0) (1.03689 0.0082012 0) (1.0373 0.00711174 0) (1.03762 0.00597245 0) (1.03785 0.00479137 0) (1.03799 0.00357807 0) (1.03801 0.00234373 0) (1.03792 0.00110109 0) (1.03772 -0.000137018 0) (1.03741 -0.00135601 0) (1.03698 -0.00254171 0) (1.03643 -0.00367998 0) (1.03579 -0.00475711 0) (1.03505 -0.00576035 0) (1.03422 -0.00667835 0) (1.03331 -0.00750147 0) (1.03235 -0.00822201 0) (1.03133 -0.00883443 0) (1.03028 -0.00933542 0) (1.02921 -0.00972389 0) (1.02813 -0.0100009 0) (1.02705 -0.0101696 0) (1.026 -0.0102346 0) (1.02497 -0.0102023 0) (1.02398 -0.0100801 0) (1.02304 -0.00987643 0) (1.02215 -0.00960008 0) (1.02131 -0.00926026 0) (1.02053 -0.00886619 0) (1.01982 -0.00842691 0) (1.01917 -0.00795107 0) (1.01858 -0.00744684 0) (1.01804 -0.00692182 0) (1.01757 -0.00638301 0) (1.01715 -0.00583673 0) (1.01679 -0.00528878 0) (1.01647 -0.00474426 0) (1.0162 -0.00420791 0) (1.01597 -0.00368379 0) (1.01578 -0.0031758 0) (1.01563 -0.00268698 0) (1.0155 -0.00222069 0) (1.0154 -0.00177873 0) (1.01532 -0.00136389 0) (1.01525 -0.000976163 0) (1.0152 -0.00061824 0) (1.01514 -0.000286561 0) (1.01509 1.45889e-05 0) (1.01502 0.000295337 0) (1.01495 0.000546506 0) (1.01485 0.000790302 0) (1.01474 0.00100453 0) (1.01458 0.00123683 0) (1.01441 0.00143131 0) (1.01418 0.00169104 0) (1.01397 0.00187971 0) (1.01364 0.00222468 0) (1.01341 0.00240253 0) (1.01295 0.0029232 0) (1.0128 0.00303457 0) (1.01211 0.00388885 0) (1.00853 0.0119079 0) (1.00904 0.012501 0) (1.00958 0.013062 0) (1.01014 0.0135896 0) (1.01073 0.0140826 0) (1.01134 0.0145399 0) (1.01198 0.0149608 0) (1.01263 0.0153446 0) (1.0133 0.0156911 0) (1.01398 0.0160001 0) (1.01467 0.016272 0) (1.01537 0.016507 0) (1.01608 0.0167057 0) (1.0168 0.0168688 0) (1.01752 0.0169972 0) (1.01825 0.0170916 0) (1.01897 0.0171529 0) (1.0197 0.0171821 0) (1.02043 0.0171797 0) (1.02116 0.0171464 0) (1.02189 0.0170825 0) (1.02262 0.0169882 0) (1.02336 0.0168634 0) (1.02409 0.0167075 0) (1.02482 0.0165198 0) (1.02556 0.016299 0) (1.02629 0.0160437 0) (1.02702 0.015752 0) (1.02775 0.0154219 0) (1.02848 0.0150508 0) (1.02921 0.0146363 0) (1.02992 0.0141758 0) (1.03063 0.0136666 0) (1.03132 0.0131064 0) (1.03199 0.0124929 0) (1.03264 0.0118246 0) (1.03326 0.0111004 0) (1.03384 0.0103199 0) (1.03437 0.00948395 0) (1.03485 0.00859422 0) (1.03528 0.00765365 0) (1.03563 0.0066665 0) (1.03591 0.00563837 0) (1.03611 0.00457613 0) (1.03622 0.00348805 0) (1.03624 0.00238357 0) (1.03616 0.0012729 0) (1.03598 0.000167456 0) (1.03571 -0.000921482 0) (1.03533 -0.00198168 0) (1.03486 -0.00300133 0) (1.0343 -0.00396902 0) (1.03365 -0.00487402 0) (1.03293 -0.00570666 0) (1.03214 -0.00645863 0) (1.03129 -0.00712312 0) (1.0304 -0.00769505 0) (1.02947 -0.00817109 0) (1.02853 -0.00854975 0) (1.02757 -0.00883129 0) (1.02661 -0.00901764 0) (1.02566 -0.0091122 0) (1.02473 -0.00911968 0) (1.02383 -0.00904586 0) (1.02297 -0.00889734 0) (1.02215 -0.00868136 0) (1.02137 -0.00840548 0) (1.02065 -0.00807744 0) (1.01997 -0.00770493 0) (1.01935 -0.00729547 0) (1.01878 -0.00685628 0) (1.01826 -0.00639415 0) (1.0178 -0.00591545 0) (1.01738 -0.00542604 0) (1.01702 -0.0049313 0) (1.01669 -0.00443611 0) (1.01641 -0.00394501 0) (1.01617 -0.0034619 0) (1.01596 -0.0029905 0) (1.01578 -0.00253377 0) (1.01563 -0.0020948 0) (1.01551 -0.00167528 0) (1.0154 -0.00127783 0) (1.01531 -0.000902157 0) (1.01522 -0.00055112 0) (1.01514 -0.000221408 0) (1.01507 8.33385e-05 0) (1.01498 0.000372399 0) (1.01489 0.000636867 0) (1.01477 0.000897831 0) (1.01465 0.00113318 0) (1.01449 0.0013887 0) (1.01432 0.0016089 0) (1.0141 0.00189391 0) (1.0139 0.00210867 0) (1.0136 0.00247621 0) (1.01339 0.00267587 0) (1.01297 0.00321177 0) (1.01284 0.00333617 0) (1.01223 0.00419539 0) (1.00932 0.0110816 0) (1.00977 0.0116269 0) (1.01025 0.0121442 0) (1.01075 0.0126325 0) (1.01128 0.0130905 0) (1.01183 0.0135171 0) (1.0124 0.0139115 0) (1.01299 0.0142729 0) (1.01359 0.014601 0) (1.01421 0.0148954 0) (1.01485 0.0151561 0) (1.01549 0.0153832 0) (1.01614 0.0155769 0) (1.0168 0.0157375 0) (1.01747 0.0158657 0) (1.01814 0.0159617 0) (1.01881 0.0160263 0) (1.01949 0.0160598 0) (1.02017 0.0160626 0) (1.02085 0.0160352 0) (1.02153 0.0159777 0) (1.02222 0.01589 0) (1.0229 0.0157721 0) (1.02359 0.0156234 0) (1.02427 0.0154432 0) (1.02496 0.0152306 0) (1.02564 0.0149845 0) (1.02632 0.0147033 0) (1.02699 0.0143856 0) (1.02767 0.0140294 0) (1.02833 0.013633 0) (1.02898 0.0131945 0) (1.02962 0.012712 0) (1.03025 0.0121839 0) (1.03085 0.0116089 0) (1.03143 0.0109859 0) (1.03198 0.0103145 0) (1.0325 0.00959493 0) (1.03297 0.00882819 0) (1.03339 0.0080161 0) (1.03376 0.0071615 0) (1.03407 0.00626823 0) (1.03432 0.00534119 0) (1.03449 0.00438639 0) (1.03458 0.00341078 0) (1.0346 0.00242223 0) (1.03453 0.00142944 0) (1.03437 0.000442073 0) (1.03413 -0.000531103 0) (1.03381 -0.00147952 0) (1.0334 -0.00239311 0) (1.03291 -0.00326243 0) (1.03235 -0.0040785 0) (1.03172 -0.0048331 0) (1.03103 -0.00551903 0) (1.03029 -0.00613032 0) (1.0295 -0.00666234 0) (1.02869 -0.00711188 0) (1.02785 -0.00747719 0) (1.027 -0.00775796 0) (1.02614 -0.00795526 0) (1.02529 -0.00807143 0) (1.02446 -0.00810994 0) (1.02364 -0.0080752 0) (1.02286 -0.00797243 0) (1.0221 -0.0078074 0) (1.02138 -0.00758633 0) (1.02071 -0.00731564 0) (1.02007 -0.00700185 0) (1.01948 -0.0066514 0) (1.01894 -0.0062706 0) (1.01844 -0.00586546 0) (1.01799 -0.0054417 0) (1.01758 -0.00500468 0) (1.01721 -0.00455938 0) (1.01689 -0.00411036 0) (1.0166 -0.00366184 0) (1.01634 -0.00321752 0) (1.01612 -0.00278097 0) (1.01593 -0.00235494 0) (1.01576 -0.00194231 0) (1.01561 -0.00154463 0) (1.01548 -0.00116445 0) (1.01537 -0.000801453 0) (1.01526 -0.000458255 0) (1.01516 -0.000131571 0) (1.01506 0.000174628 0) (1.01496 0.000469457 0) (1.01485 0.000744091 0) (1.01473 0.00101858 0) (1.01459 0.00127095 0) (1.01443 0.00154521 0) (1.01427 0.00178644 0) (1.01406 0.00209189 0) (1.01387 0.00232808 0) (1.01359 0.00271355 0) (1.0134 0.00293114 0) (1.01303 0.00347829 0) (1.0129 0.00361344 0) (1.01237 0.00447425 0) (1.01006 0.0103263 0) (1.01046 0.0108257 0) (1.01088 0.0113008 0) (1.01133 0.0117506 0) (1.0118 0.0121738 0) (1.0123 0.0125694 0) (1.01281 0.0129365 0) (1.01334 0.0132743 0) (1.01389 0.0135822 0) (1.01445 0.0138599 0) (1.01502 0.0141071 0) (1.01561 0.0143236 0) (1.01621 0.0145095 0) (1.01681 0.0146649 0) (1.01742 0.0147899 0) (1.01804 0.0148849 0) (1.01867 0.01495 0) (1.01929 0.0149856 0) (1.01992 0.0149918 0) (1.02056 0.0149687 0) (1.02119 0.0149164 0) (1.02183 0.0148348 0) (1.02246 0.0147237 0) (1.0231 0.0145826 0) (1.02374 0.0144111 0) (1.02437 0.0142082 0) (1.025 0.0139732 0) (1.02563 0.0137049 0) (1.02625 0.0134022 0) (1.02687 0.0130637 0) (1.02748 0.0126881 0) (1.02807 0.0122741 0) (1.02865 0.0118205 0) (1.02922 0.0113263 0) (1.02976 0.0107906 0) (1.03028 0.010213 0) (1.03077 0.00959347 0) (1.03123 0.00893261 0) (1.03165 0.00823156 0) (1.03202 0.00749221 0) (1.03235 0.0067172 0) (1.03262 0.00591 0) (1.03283 0.00507492 0) (1.03298 0.00421711 0) (1.03306 0.00334248 0) (1.03308 0.0024577 0) (1.03302 0.00157012 0) (1.03288 0.00068753 0) (1.03267 -0.000181947 0) (1.03239 -0.00103017 0) (1.03203 -0.00184871 0) (1.03161 -0.00262955 0) (1.03112 -0.00336511 0) (1.03057 -0.00404838 0) (1.02997 -0.00467316 0) (1.02932 -0.00523421 0) (1.02864 -0.00572735 0) (1.02792 -0.00614952 0) (1.02718 -0.00649886 0) (1.02643 -0.00677467 0) (1.02567 -0.0069774 0) (1.02491 -0.00710858 0) (1.02416 -0.00717067 0) (1.02342 -0.007167 0) (1.0227 -0.00710163 0) (1.02201 -0.00697915 0) (1.02135 -0.00680459 0) (1.02072 -0.00658327 0) (1.02013 -0.00632064 0) (1.01958 -0.00602221 0) (1.01906 -0.0056934 0) (1.01859 -0.0053395 0) (1.01815 -0.00496561 0) (1.01775 -0.00457652 0) (1.01739 -0.00417677 0) (1.01706 -0.00377054 0) (1.01676 -0.00336177 0) (1.0165 -0.00295393 0) (1.01627 -0.00255029 0) (1.01606 -0.00215346 0) (1.01588 -0.00176616 0) (1.01572 -0.00138985 0) (1.01557 -0.00102683 0) (1.01544 -0.000676984 0) (1.01531 -0.000342496 0) (1.01519 -2.02069e-05 0) (1.01508 0.000285814 0) (1.01496 0.00058413 0) (1.01484 0.00086607 0) (1.01471 0.00115073 0) (1.01457 0.00141638 0) (1.01441 0.00170529 0) (1.01425 0.0019633 0) (1.01405 0.00228479 0) (1.01387 0.00253818 0) (1.01362 0.00293733 0) (1.01344 0.00316931 0) (1.01311 0.003724 0) (1.013 0.00386781 0) (1.01252 0.00472698 0) (1.01074 0.00963629 0) (1.01109 0.0100918 0) (1.01147 0.0105262 0) (1.01187 0.0109386 0) (1.0123 0.0113276 0) (1.01274 0.0116923 0) (1.0132 0.0120318 0) (1.01368 0.0123452 0) (1.01417 0.0126319 0) (1.01468 0.0128914 0) (1.0152 0.0131233 0) (1.01573 0.0133274 0) (1.01628 0.0135034 0) (1.01683 0.0136513 0) (1.01739 0.0137711 0) (1.01796 0.0138628 0) (1.01853 0.0139266 0) (1.01911 0.0139624 0) (1.01969 0.0139703 0) (1.02028 0.0139503 0) (1.02086 0.0139023 0) (1.02145 0.0138263 0) (1.02204 0.0137219 0) (1.02263 0.0135888 0) (1.02322 0.0134265 0) (1.0238 0.0132344 0) (1.02438 0.0130119 0) (1.02496 0.0127581 0) (1.02553 0.0124721 0) (1.0261 0.0121531 0) (1.02665 0.0118001 0) (1.02719 0.0114123 0) (1.02772 0.0109889 0) (1.02823 0.0105292 0) (1.02872 0.010033 0) (1.02919 0.00950018 0) (1.02962 0.008931 0) (1.03003 0.00832625 0) (1.0304 0.00768721 0) (1.03073 0.00701571 0) (1.03102 0.00631421 0) (1.03126 0.00558584 0) (1.03145 0.00483438 0) (1.03158 0.00406424 0) (1.03165 0.00328054 0) (1.03166 0.00248891 0) (1.03161 0.00169542 0) (1.0315 0.000906572 0) (1.03131 0.000129454 0) (1.03107 -0.000629233 0) (1.03076 -0.00136255 0) (1.0304 -0.00206372 0) (1.02997 -0.00272632 0) (1.0295 -0.00334439 0) (1.02897 -0.00391261 0) (1.02841 -0.00442636 0) (1.02781 -0.00488189 0) (1.02718 -0.00527636 0) (1.02653 -0.00560786 0) (1.02586 -0.00587545 0) (1.02518 -0.00607913 0) (1.0245 -0.00621978 0) (1.02383 -0.00629912 0) (1.02317 -0.00631962 0) (1.02252 -0.00628437 0) (1.02189 -0.00619699 0) (1.02128 -0.00606152 0) (1.0207 -0.00588232 0) (1.02015 -0.00566392 0) (1.01963 -0.00541095 0) (1.01914 -0.00512808 0) (1.01869 -0.00481989 0) (1.01827 -0.00449084 0) (1.01788 -0.0041452 0) (1.01753 -0.00378706 0) (1.0172 -0.00342024 0) (1.01691 -0.00304834 0) (1.01664 -0.00267451 0) (1.01641 -0.00230182 0) (1.01619 -0.00193268 0) (1.01599 -0.00156963 0) (1.01582 -0.00121402 0) (1.01566 -0.000867976 0) (1.01551 -0.000531231 0) (1.01537 -0.000206059 0) (1.01524 0.000110337 0) (1.01511 0.000414481 0) (1.01498 0.00071412 0) (1.01485 0.00100073 0) (1.01472 0.00129251 0) (1.01458 0.00156801 0) (1.01442 0.00186788 0) (1.01426 0.00213881 0) (1.01407 0.00247234 0) (1.0139 0.00273909 0) (1.01367 0.00314808 0) (1.01351 0.00339121 0) (1.01321 0.00395001 0) (1.01311 0.0041006 0) (1.0127 0.004955 0) (1.01137 0.00900595 0) (1.01168 0.00941978 0) (1.01202 0.00981532 0) (1.01238 0.0101915 0) (1.01275 0.0105473 0) (1.01315 0.0108816 0) (1.01356 0.0111936 0) (1.01399 0.0114824 0) (1.01444 0.0117472 0) (1.0149 0.0119877 0) (1.01537 0.0122032 0) (1.01585 0.0123934 0) (1.01635 0.012558 0) (1.01685 0.0126969 0) (1.01737 0.0128098 0) (1.01788 0.0128967 0) (1.01841 0.0129575 0) (1.01894 0.0129921 0) (1.01947 0.0130005 0) (1.02001 0.0129825 0) (1.02055 0.0129382 0) (1.02109 0.0128672 0) (1.02164 0.0127693 0) (1.02218 0.0126443 0) (1.02272 0.0124916 0) (1.02326 0.012311 0) (1.02379 0.0121018 0) (1.02432 0.0118635 0) (1.02484 0.0115954 0) (1.02535 0.011297 0) (1.02586 0.0109676 0) (1.02635 0.0106067 0) (1.02683 0.0102139 0) (1.02729 0.00978889 0) (1.02773 0.00933164 0) (1.02815 0.00884234 0) (1.02854 0.00832149 0) (1.0289 0.00777 0) (1.02923 0.00718915 0) (1.02953 0.00658074 0) (1.02978 0.00594702 0) (1.02999 0.00529078 0) (1.03016 0.00461535 0) (1.03027 0.00392455 0) (1.03034 0.00322272 0) (1.03035 0.00251464 0) (1.03031 0.00180548 0) (1.03021 0.00110075 0) (1.03005 0.000406267 0) (1.02984 -0.000272358 0) (1.02958 -0.000929217 0) (1.02926 -0.00155859 0) (1.0289 -0.00215507 0) (1.02848 -0.00271359 0) (1.02803 -0.00322954 0) (1.02753 -0.00369892 0) (1.02701 -0.00411836 0) (1.02646 -0.00448523 0) (1.02588 -0.00479764 0) (1.02529 -0.00505452 0) (1.02469 -0.00525554 0) (1.02409 -0.00540113 0) (1.02349 -0.00549243 0) (1.02289 -0.00553119 0) (1.0223 -0.00551976 0) (1.02173 -0.00546094 0) (1.02118 -0.00535796 0) (1.02064 -0.00521431 0) (1.02013 -0.00503375 0) (1.01965 -0.00482016 0) (1.01919 -0.00457749 0) (1.01876 -0.00430966 0) (1.01836 -0.00402057 0) (1.01799 -0.00371401 0) (1.01765 -0.00339362 0) (1.01733 -0.00306278 0) (1.01704 -0.00272476 0) (1.01677 -0.00238247 0) (1.01653 -0.00203871 0) (1.01631 -0.00169566 0) (1.0161 -0.00135568 0) (1.01592 -0.00101998 0) (1.01575 -0.000690566 0) (1.01559 -0.000367197 0) (1.01544 -5.20735e-05 0) (1.0153 0.000257578 0) (1.01516 0.000558168 0) (1.01503 0.000857123 0) (1.01489 0.00114601 0) (1.01475 0.00144214 0) (1.01461 0.00172441 0) (1.01445 0.00203189 0) (1.0143 0.00231225 0) (1.01412 0.00265421 0) (1.01396 0.00293088 0) (1.01375 0.00334618 0) (1.0136 0.00359758 0) (1.01334 0.00415732 0) (1.01324 0.00431294 0) (1.01288 0.00515964 0) (1.01195 0.00843037 0) (1.01223 0.0088048 0) (1.01253 0.00916331 0) (1.01284 0.0095049 0) (1.01318 0.00982855 0) (1.01353 0.0101333 0) (1.0139 0.0104182 0) (1.01429 0.0106824 0) (1.01469 0.0109253 0) (1.0151 0.0111463 0) (1.01553 0.0113447 0) (1.01597 0.0115203 0) (1.01642 0.0116725 0) (1.01687 0.0118012 0) (1.01734 0.0119061 0) (1.01781 0.011987 0) (1.01829 0.0120436 0) (1.01878 0.012076 0) (1.01927 0.0120839 0) (1.01976 0.0120672 0) (1.02025 0.0120258 0) (1.02075 0.0119594 0) (1.02125 0.0118678 0) (1.02174 0.0117508 0) (1.02224 0.011608 0) (1.02273 0.011439 0) (1.02322 0.0112436 0) (1.0237 0.0110213 0) (1.02418 0.0107716 0) (1.02464 0.0104942 0) (1.0251 0.0101888 0) (1.02555 0.00985495 0) (1.02598 0.00949259 0) (1.02639 0.00910165 0) (1.02679 0.00868228 0) (1.02716 0.00823486 0) (1.02751 0.00776002 0) (1.02784 0.00725873 0) (1.02813 0.00673227 0) (1.02839 0.00618232 0) (1.02862 0.00561094 0) (1.02881 0.00502063 0) (1.02896 0.00441429 0) (1.02906 0.00379525 0) (1.02912 0.0031672 0) (1.02914 0.00253423 0) (1.0291 0.00190073 0) (1.02902 0.0012713 0) (1.02888 0.000650769 0) (1.0287 4.40684e-05 0) (1.02848 -0.000544056 0) (1.0282 -0.00110871 0) (1.02789 -0.00164524 0) (1.02753 -0.00214934 0) (1.02713 -0.00261706 0) (1.0267 -0.0030449 0) (1.02625 -0.00342985 0) (1.02576 -0.00376951 0) (1.02526 -0.0040621 0) (1.02474 -0.00430643 0) (1.02421 -0.00450197 0) (1.02367 -0.0046488 0) (1.02313 -0.00474759 0) (1.0226 -0.00479958 0) (1.02207 -0.00480649 0) (1.02155 -0.00477047 0) (1.02105 -0.00469405 0) (1.02056 -0.00458005 0) (1.02009 -0.00443154 0) (1.01964 -0.00425174 0) (1.01921 -0.00404395 0) (1.01881 -0.00381155 0) (1.01843 -0.00355789 0) (1.01807 -0.00328623 0) (1.01774 -0.00299979 0) (1.01743 -0.00270159 0) (1.01714 -0.00239456 0) (1.01688 -0.0020813 0) (1.01664 -0.00176437 0) (1.01641 -0.00144575 0) (1.01621 -0.0011276 0) (1.01602 -0.000811028 0) (1.01584 -0.000497906 0) (1.01567 -0.000187982 0) (1.01552 0.000116633 0) (1.01537 0.000418598 0) (1.01522 0.00071431 0) (1.01508 0.00101082 0) (1.01494 0.00129983 0) (1.0148 0.00159784 0) (1.01466 0.00188412 0) (1.01451 0.0021962 0) (1.01436 0.00248287 0) (1.01419 0.00283004 0) (1.01404 0.00311351 0) (1.01385 0.00353196 0) (1.01371 0.00378898 0) (1.01349 0.00434677 0) (1.0134 0.00450587 0) (1.01309 0.00534211 0) (1.01247 0.00790476 0) (1.01272 0.00824214 0) (1.01299 0.00856563 0) (1.01327 0.00887431 0) (1.01357 0.00916721 0) (1.01389 0.00944338 0) (1.01422 0.00970197 0) (1.01456 0.00994218 0) (1.01492 0.0101633 0) (1.01529 0.0103647 0) (1.01568 0.0105459 0) (1.01607 0.0107063 0) (1.01648 0.0108456 0) (1.01689 0.0109635 0) (1.01732 0.0110595 0) (1.01775 0.0111336 0) (1.01818 0.0111853 0) (1.01862 0.0112147 0) (1.01907 0.0112214 0) (1.01952 0.0112053 0) (1.01997 0.0111662 0) (1.02042 0.011104 0) (1.02087 0.0110184 0) (1.02133 0.0109092 0) (1.02178 0.0107761 0) (1.02223 0.0106189 0) (1.02267 0.0104373 0) (1.02311 0.010231 0) (1.02354 0.00999986 0) (1.02397 0.00974351 0) (1.02438 0.00946181 0) (1.02478 0.00915466 0) (1.02517 0.00882206 0) (1.02555 0.00846413 0) (1.0259 0.00808116 0) (1.02624 0.00767363 0) (1.02655 0.00724226 0) (1.02684 0.00678801 0) (1.0271 0.00631212 0) (1.02734 0.00581617 0) (1.02754 0.00530201 0) (1.02771 0.00477187 0) (1.02784 0.00422829 0) (1.02794 0.00367415 0) (1.02799 0.00311263 0) (1.02801 0.0025472 0) (1.02798 0.00198157 0) (1.02791 0.00141965 0) (1.0278 0.000865506 0) (1.02764 0.000323319 0) (1.02745 -0.000202924 0) (1.02721 -0.000709091 0) (1.02694 -0.0011912 0) (1.02663 -0.00164557 0) (1.02629 -0.00206882 0) (1.02592 -0.00245786 0) (1.02552 -0.00281006 0) (1.0251 -0.0031232 0) (1.02465 -0.00339559 0) (1.0242 -0.00362604 0) (1.02373 -0.00381388 0) (1.02325 -0.00395893 0) (1.02277 -0.00406156 0) (1.02229 -0.00412256 0) (1.02182 -0.00414316 0) (1.02135 -0.00412498 0) (1.02089 -0.00407 0) (1.02044 -0.00398046 0) (1.02001 -0.00385881 0) (1.0196 -0.0037077 0) (1.0192 -0.0035299 0) (1.01882 -0.00332824 0) (1.01846 -0.00310559 0) (1.01813 -0.00286478 0) (1.01781 -0.00260863 0) (1.01751 -0.00233981 0) (1.01723 -0.0020609 0) (1.01698 -0.00177419 0) (1.01674 -0.001482 0) (1.01651 -0.00118613 0) (1.0163 -0.000888558 0) (1.01611 -0.000590254 0) (1.01593 -0.000292977 0) (1.01576 3.52581e-06 0) (1.0156 0.000297283 0) (1.01545 0.000590751 0) (1.0153 0.000880408 0) (1.01515 0.00117293 0) (1.01501 0.00146018 0) (1.01487 0.00175785 0) (1.01473 0.00204568 0) (1.01459 0.0023597 0) (1.01444 0.0026499 0) (1.01429 0.00299936 0) (1.01415 0.00328687 0) (1.01398 0.00370562 0) (1.01385 0.00396592 0) (1.01365 0.00451913 0) (1.01357 0.00468028 0) (1.0133 0.00550351 0) (1.01295 0.00742477 0) (1.01317 0.00772747 0) (1.0134 0.00801805 0) (1.01366 0.00829562 0) (1.01392 0.00855929 0) (1.01421 0.00880817 0) (1.0145 0.00904145 0) (1.01481 0.00925836 0) (1.01513 0.00945821 0) (1.01547 0.00964039 0) (1.01581 0.00980436 0) (1.01617 0.00994962 0) (1.01653 0.0100757 0) (1.01691 0.0101824 0) (1.01729 0.0102692 0) (1.01768 0.0103359 0) (1.01807 0.0103822 0) (1.01847 0.010408 0) (1.01888 0.010413 0) (1.01928 0.010397 0) (1.01969 0.0103598 0) (1.02011 0.0103014 0) (1.02052 0.0102214 0) (1.02093 0.0101197 0) (1.02134 0.00999608 0) (1.02175 0.00985039 0) (1.02215 0.00968242 0) (1.02255 0.00949199 0) (1.02294 0.00927896 0) (1.02332 0.00904321 0) (1.0237 0.00878469 0) (1.02406 0.00850342 0) (1.02441 0.0081995 0) (1.02475 0.00787318 0) (1.02507 0.00752482 0) (1.02537 0.00715497 0) (1.02565 0.00676437 0) (1.02591 0.00635395 0) (1.02614 0.00592491 0) (1.02635 0.00547866 0) (1.02653 0.00501691 0) (1.02669 0.0045416 0) (1.02681 0.00405498 0) (1.02689 0.00355952 0) (1.02694 0.00305797 0) (1.02696 0.0025533 0) (1.02694 0.00204864 0) (1.02688 0.00154734 0) (1.02679 0.00105282 0) (1.02666 0.00056853 0) (1.02649 9.80835e-05 0) (1.02629 -0.000355164 0) (1.02606 -0.000787857 0) (1.02579 -0.0011968 0) (1.0255 -0.00157904 0) (1.02517 -0.00193193 0) (1.02483 -0.0022531 0) (1.02446 -0.00254057 0) (1.02407 -0.00279274 0) (1.02367 -0.00300843 0) (1.02326 -0.0031869 0) (1.02283 -0.00332781 0) (1.02241 -0.00343125 0) (1.02198 -0.00349769 0) (1.02156 -0.003528 0) (1.02113 -0.00352338 0) (1.02072 -0.00348531 0) (1.02031 -0.00341555 0) (1.01992 -0.00331608 0) (1.01954 -0.00318907 0) (1.01917 -0.00303678 0) (1.01882 -0.00286158 0) (1.01848 -0.00266592 0) (1.01816 -0.00245224 0) (1.01786 -0.00222293 0) (1.01757 -0.00198032 0) (1.01731 -0.00172672 0) (1.01706 -0.00146417 0) (1.01682 -0.00119472 0) (1.0166 -0.000919961 0) (1.0164 -0.000641676 0) (1.0162 -0.00036075 0) (1.01602 -7.88132e-05 0) (1.01585 0.000204411 0) (1.01569 0.000487046 0) (1.01553 0.000771379 0) (1.01538 0.00105399 0) (1.01524 0.00134119 0) (1.0151 0.00162502 0) (1.01496 0.00192041 0) (1.01482 0.00220762 0) (1.01468 0.00252122 0) (1.01454 0.00281249 0) (1.0144 0.0031617 0) (1.01427 0.00345078 0) (1.01412 0.00386729 0) (1.014 0.00412877 0) (1.01383 0.00467501 0) (1.01375 0.00483694 0) (1.01353 0.00564481 0) (1.01338 0.00698632 0) (1.01357 0.00725674 0) (1.01378 0.00751655 0) (1.014 0.00776493 0) (1.01424 0.00800103 0) (1.01449 0.00822404 0) (1.01476 0.00843319 0) (1.01503 0.00862776 0) (1.01532 0.00880709 0) (1.01562 0.00897058 0) (1.01593 0.00911771 0) (1.01625 0.00924799 0) (1.01658 0.00936101 0) (1.01692 0.00945637 0) (1.01726 0.00953375 0) (1.01761 0.00959287 0) (1.01797 0.00963345 0) (1.01833 0.00965528 0) (1.01869 0.00965815 0) (1.01906 0.00964187 0) (1.01943 0.00960626 0) (1.0198 0.00955116 0) (1.02018 0.00947641 0) (1.02055 0.00938186 0) (1.02092 0.00926736 0) (1.02129 0.00913278 0) (1.02165 0.00897799 0) (1.02201 0.00880289 0) (1.02237 0.00860743 0) (1.02271 0.00839156 0) (1.02305 0.00815532 0) (1.02338 0.00789882 0) (1.02369 0.00762223 0) (1.02399 0.00732586 0) (1.02428 0.00701012 0) (1.02455 0.00667558 0) (1.0248 0.00632297 0) (1.02504 0.00595319 0) (1.02525 0.00556733 0) (1.02544 0.0051667 0) (1.0256 0.00475281 0) (1.02574 0.0043274 0) (1.02584 0.0038924 0) (1.02592 0.00344999 0) (1.02597 0.00300252 0) (1.02599 0.00255252 0) (1.02598 0.00210269 0) (1.02593 0.00165584 0) (1.02586 0.00121491 0) (1.02575 0.000782836 0) (1.0256 0.000362639 0) (1.02543 -4.27775e-05 0) (1.02523 -0.000430596 0) (1.025 -0.000798034 0) (1.02475 -0.00114253 0) (1.02447 -0.00146177 0) (1.02417 -0.00175366 0) (1.02385 -0.00201644 0) (1.02351 -0.00224862 0) (1.02316 -0.00244905 0) (1.02279 -0.00261694 0) (1.02242 -0.00275184 0) (1.02205 -0.00285367 0) (1.02166 -0.00292264 0) (1.02128 -0.00295933 0) (1.02091 -0.00296457 0) (1.02053 -0.0029395 0) (1.02016 -0.00288547 0) (1.0198 -0.00280405 0) (1.01945 -0.002697 0) (1.01911 -0.00256618 0) (1.01879 -0.00241356 0) (1.01847 -0.00224117 0) (1.01818 -0.00205108 0) (1.01789 -0.00184538 0) (1.01762 -0.00162605 0) (1.01737 -0.00139509 0) (1.01712 -0.00115435 0) (1.0169 -0.000905623 0) (1.01668 -0.000650308 0) (1.01648 -0.000390017 0) (1.01629 -0.000125537 0) (1.01611 0.000141646 0) (1.01594 0.000411824 0) (1.01578 0.000683181 0) (1.01562 0.000957891 0) (1.01548 0.00123263 0) (1.01533 0.00151338 0) (1.01519 0.00179236 0) (1.01506 0.00208381 0) (1.01492 0.00236851 0) (1.01479 0.00267961 0) (1.01466 0.00296979 0) (1.01453 0.00331649 0) (1.01441 0.00360497 0) (1.01427 0.004017 0) (1.01417 0.00427779 0) (1.01402 0.00481495 0) (1.01395 0.00497654 0) (1.01376 0.00576691 0) (1.01376 0.00658559 0) (1.01393 0.00682612 0) (1.01411 0.00705734 0) (1.01431 0.00727848 0) (1.01452 0.00748877 0) (1.01475 0.00768745 0) (1.01498 0.00787381 0) (1.01523 0.00804716 0) (1.01549 0.00820691 0) (1.01576 0.00835247 0) (1.01603 0.00848335 0) (1.01632 0.00859909 0) (1.01661 0.00869926 0) (1.01691 0.00878352 0) (1.01722 0.00885153 0) (1.01754 0.00890301 0) (1.01786 0.00893772 0) (1.01818 0.00895542 0) (1.01851 0.00895592 0) (1.01885 0.00893904 0) (1.01918 0.00890463 0) (1.01952 0.00885254 0) (1.01985 0.00878263 0) (1.02019 0.00869479 0) (1.02052 0.00858892 0) (1.02086 0.00846491 0) (1.02118 0.0083227 0) (1.02151 0.00816224 0) (1.02183 0.00798353 0) (1.02214 0.00778659 0) (1.02244 0.00757151 0) (1.02274 0.00733844 0) (1.02302 0.00708762 0) (1.02329 0.00681937 0) (1.02355 0.00653413 0) (1.02379 0.00623246 0) (1.02402 0.00591504 0) (1.02423 0.00558274 0) (1.02442 0.00523655 0) (1.02458 0.00487764 0) (1.02473 0.00450738 0) (1.02485 0.00412727 0) (1.02495 0.00373903 0) (1.02503 0.00334452 0) (1.02507 0.00294579 0) (1.02509 0.002545 0) (1.02509 0.00214446 0) (1.02505 0.00174657 0) (1.02499 0.00135382 0) (1.0249 0.000968744 0) (1.02478 0.000593854 0) (1.02463 0.000231697 0) (1.02446 -0.000115303 0) (1.02426 -0.000444815 0) (1.02405 -0.000754586 0) (1.0238 -0.00104259 0) (1.02354 -0.00130698 0) (1.02327 -0.00154615 0) (1.02297 -0.00175873 0) (1.02266 -0.00194365 0) (1.02235 -0.00210009 0) (1.02202 -0.00222754 0) (1.02168 -0.00232579 0) (1.02135 -0.0023949 0) (1.02101 -0.00243517 0) (1.02067 -0.0024472 0) (1.02033 -0.0024318 0) (1.02 -0.00239002 0) (1.01967 -0.00232308 0) (1.01935 -0.00223234 0) (1.01904 -0.00211934 0) (1.01874 -0.00198572 0) (1.01845 -0.00183318 0) (1.01817 -0.00166344 0) (1.01791 -0.00147831 0) (1.01765 -0.00127949 0) (1.01741 -0.00106869 0) (1.01718 -0.000847496 0) (1.01696 -0.000617543 0) (1.01675 -0.000380063 0) (1.01656 -0.000136489 0) (1.01637 0.000112512 0) (1.0162 0.000365568 0) (1.01603 0.000622979 0) (1.01587 0.00088302 0) (1.01572 0.00114776 0) (1.01557 0.00141398 0) (1.01543 0.00168732 0) (1.0153 0.00196026 0) (1.01517 0.00224633 0) (1.01504 0.00252689 0) (1.01492 0.00283371 0) (1.01479 0.00312093 0) (1.01467 0.00346316 0) (1.01456 0.00374914 0) (1.01444 0.00415472 0) (1.01434 0.00441318 0) (1.01422 0.00493938 0) (1.01416 0.00509963 0) (1.014 0.0058706 0) (1.01409 0.00621907 0) (1.01424 0.00643207 0) (1.01441 0.00663687 0) (1.01458 0.00683276 0) (1.01477 0.00701904 0) (1.01497 0.00719501 0) (1.01518 0.00736001 0) (1.0154 0.00751341 0) (1.01563 0.00765464 0) (1.01587 0.00778319 0) (1.01612 0.00789857 0) (1.01637 0.00800036 0) (1.01664 0.00808817 0) (1.01691 0.00816165 0) (1.01718 0.00822051 0) (1.01747 0.00826447 0) (1.01775 0.0082933 0) (1.01805 0.0083068 0) (1.01834 0.00830479 0) (1.01864 0.0082871 0) (1.01894 0.0082536 0) (1.01924 0.00820417 0) (1.01954 0.00813871 0) (1.01985 0.00805711 0) (1.02015 0.0079593 0) (1.02045 0.00784524 0) (1.02074 0.00771489 0) (1.02103 0.00756824 0) (1.02132 0.00740532 0) (1.0216 0.0072262 0) (1.02187 0.007031 0) (1.02213 0.0068199 0) (1.02239 0.00659315 0) (1.02263 0.0063511 0) (1.02286 0.00609416 0) (1.02308 0.00582287 0) (1.02328 0.00553789 0) (1.02347 0.00523999 0) (1.02364 0.00493008 0) (1.02379 0.00460922 0) (1.02393 0.00427861 0) (1.02404 0.00393957 0) (1.02413 0.0035936 0) (1.0242 0.00324233 0) (1.02424 0.0028875 0) (1.02426 0.00253098 0) (1.02426 0.00217476 0) (1.02424 0.00182089 0) (1.02418 0.0014715 0) (1.02411 0.00112873 0) (1.02401 0.00079477 0) (1.02389 0.000471763 0) (1.02374 0.000161834 0) (1.02357 -0.000133013 0) (1.02339 -0.000410858 0) (1.02318 -0.000669889 0) (1.02295 -0.000908467 0) (1.02271 -0.00112515 0) (1.02246 -0.0013187 0) (1.02219 -0.00148813 0) (1.02191 -0.00163262 0) (1.02162 -0.00175161 0) (1.02133 -0.00184478 0) (1.02103 -0.00191205 0) (1.02073 -0.0019536 0) (1.02043 -0.0019698 0) (1.02013 -0.0019612 0) (1.01983 -0.00192861 0) (1.01953 -0.00187297 0) (1.01924 -0.00179535 0) (1.01896 -0.00169698 0) (1.01868 -0.00157917 0) (1.01842 -0.0014434 0) (1.01816 -0.00129109 0) (1.01791 -0.00112373 0) (1.01767 -0.00094282 0) (1.01744 -0.000749846 0) (1.01722 -0.000546163 0) (1.01702 -0.00033319 0) (1.01682 -0.000112001 0) (1.01663 0.000116122 0) (1.01645 0.000350606 0) (1.01628 0.000590194 0) (1.01612 0.000835199 0) (1.01597 0.00108399 0) (1.01582 0.00133854 0) (1.01568 0.00159573 0) (1.01554 0.00186092 0) (1.01541 0.00212681 0) (1.01529 0.0024063 0) (1.01517 0.00268133 0) (1.01505 0.00298236 0) (1.01494 0.00326501 0) (1.01483 0.00360106 0) (1.01473 0.00388291 0) (1.01462 0.00428033 0) (1.01453 0.00453503 0) (1.01443 0.00504865 0) (1.01437 0.00520666 0) (1.01425 0.00595657 0) (1.01438 0.00588344 0) (1.01452 0.00607122 0) (1.01466 0.00625175 0) (1.01482 0.00642438 0) (1.01499 0.00658847 0) (1.01516 0.00674339 0) (1.01535 0.00688852 0) (1.01555 0.00702331 0) (1.01575 0.00714721 0) (1.01596 0.00725977 0) (1.01618 0.00736053 0) (1.01641 0.0074491 0) (1.01665 0.00752514 0) (1.01689 0.00758832 0) (1.01714 0.00763837 0) (1.01739 0.00767505 0) (1.01765 0.00769815 0) (1.01791 0.00770748 0) (1.01817 0.00770289 0) (1.01844 0.00768425 0) (1.01871 0.00765143 0) (1.01898 0.00760434 0) (1.01925 0.0075429 0) (1.01952 0.00746704 0) (1.01979 0.00737673 0) (1.02006 0.00727193 0) (1.02032 0.00715263 0) (1.02059 0.00701887 0) (1.02084 0.00687068 0) (1.02109 0.00670818 0) (1.02134 0.00653148 0) (1.02157 0.00634079 0) (1.0218 0.00613636 0) (1.02202 0.00591851 0) (1.02223 0.00568766 0) (1.02242 0.00544431 0) (1.0226 0.00518905 0) (1.02277 0.0049226 0) (1.02292 0.00464576 0) (1.02306 0.00435948 0) (1.02318 0.00406481 0) (1.02328 0.00376293 0) (1.02337 0.00345513 0) (1.02343 0.00314281 0) (1.02347 0.0028275 0) (1.0235 0.00251081 0) (1.0235 0.00219443 0) (1.02348 0.00188014 0) (1.02344 0.00156974 0) (1.02338 0.0012651 0) (1.0233 0.000968077 0) (1.02319 0.000680525 0) (1.02307 0.000404261 0) (1.02293 0.000141059 0) (1.02277 -0.000107438 0) (1.02259 -0.000339635 0) (1.0224 -0.000554097 0) (1.02219 -0.00074952 0) (1.02197 -0.000924767 0) (1.02174 -0.00107889 0) (1.02149 -0.00121113 0) (1.02124 -0.00132092 0) (1.02098 -0.00140787 0) (1.02072 -0.00147182 0) (1.02045 -0.00151278 0) (1.02019 -0.00153098 0) (1.01992 -0.00152681 0) (1.01965 -0.00150082 0) (1.01938 -0.00145374 0) (1.01912 -0.0013864 0) (1.01886 -0.00129981 0) (1.01861 -0.00119509 0) (1.01837 -0.00107335 0) (1.01813 -0.000935783 0) (1.0179 -0.000783687 0) (1.01768 -0.00061833 0) (1.01747 -0.000441 0) (1.01726 -0.000252848 0) (1.01706 -5.51056e-05 0) (1.01688 0.000151288 0) (1.0167 0.000365188 0) (1.01653 0.000586115 0) (1.01637 0.000812924 0) (1.01621 0.00104594 0) (1.01606 0.00128364 0) (1.01592 0.00152789 0) (1.01579 0.00177569 0) (1.01566 0.00203214 0) (1.01554 0.00229018 0) (1.01542 0.00256209 0) (1.0153 0.00283045 0) (1.0152 0.0031244 0) (1.01509 0.0034011 0) (1.015 0.00372956 0) (1.0149 0.00400586 0) (1.01481 0.00439366 0) (1.01473 0.00464339 0) (1.01465 0.005143 0) (1.0146 0.00529803 0) (1.01451 0.00602542 0) (1.01463 0.00557565 0) (1.01475 0.00574044 0) (1.01488 0.0058988 0) (1.01502 0.00605013 0) (1.01517 0.00619386 0) (1.01533 0.00632939 0) (1.01549 0.0064562 0) (1.01567 0.00657375 0) (1.01585 0.00668157 0) (1.01604 0.00677923 0) (1.01623 0.00686633 0) (1.01644 0.00694252 0) (1.01665 0.00700748 0) (1.01686 0.00706092 0) (1.01708 0.00710262 0) (1.01731 0.00713235 0) (1.01754 0.00714993 0) (1.01777 0.0071552 0) (1.01801 0.00714804 0) (1.01825 0.00712834 0) (1.01849 0.007096 0) (1.01873 0.00705096 0) (1.01897 0.00699316 0) (1.01921 0.00692255 0) (1.01946 0.00683912 0) (1.0197 0.00674286 0) (1.01993 0.00663378 0) (1.02017 0.00651193 0) (1.02039 0.00637737 0) (1.02062 0.00623022 0) (1.02084 0.0060706 0) (1.02105 0.00589872 0) (1.02125 0.00571482 0) (1.02145 0.00551921 0) (1.02163 0.00531227 0) (1.02181 0.00509446 0) (1.02197 0.00486631 0) (1.02212 0.00462847 0) (1.02226 0.00438167 0) (1.02238 0.00412672 0) (1.02249 0.00386455 0) (1.02259 0.0035962 0) (1.02266 0.00332279 0) (1.02272 0.00304555 0) (1.02277 0.00276577 0) (1.02279 0.00248487 0) (1.0228 0.00220429 0) (1.02278 0.00192556 0) (1.02275 0.00165025 0) (1.0227 0.00137995 0) (1.02264 0.00111627 0) (1.02255 0.000860801 0) (1.02245 0.000615125 0) (1.02233 0.000380765 0) (1.02219 0.000159197 0) (1.02204 -4.82197e-05 0) (1.02188 -0.000240196 0) (1.0217 -0.000415578 0) (1.02151 -0.0005733 0) (1.02131 -0.000712477 0) (1.02109 -0.000832379 0) (1.02088 -0.00093246 0) (1.02065 -0.00101233 0) (1.02042 -0.00107175 0) (1.02018 -0.00111062 0) (1.01995 -0.00112905 0) (1.01971 -0.0011273 0) (1.01947 -0.00110577 0) (1.01923 -0.00106497 0) (1.01899 -0.0010056 0) (1.01876 -0.000928408 0) (1.01853 -0.000834248 0) (1.01831 -0.000724065 0) (1.01809 -0.000598875 0) (1.01788 -0.00045978 0) (1.01768 -0.000307836 0) (1.01748 -0.000144136 0) (1.01729 3.03134e-05 0) (1.01711 0.000214437 0) (1.01693 0.000407427 0) (1.01676 0.000608275 0) (1.0166 0.000816586 0) (1.01645 0.00103132 0) (1.0163 0.00125282 0) (1.01616 0.00147965 0) (1.01603 0.00171359 0) (1.0159 0.00195178 0) (1.01578 0.00219905 0) (1.01566 0.0024486 0) (1.01555 0.00271214 0) (1.01545 0.00297289 0) (1.01535 0.00325868 0) (1.01525 0.00352831 0) (1.01517 0.00384796 0) (1.01508 0.00411755 0) (1.01501 0.00449449 0) (1.01494 0.0047382 0) (1.01487 0.00522263 0) (1.01483 0.00537402 0) (1.01476 0.00607767 0) (1.01484 0.00529282 0) (1.01495 0.00543677 0) (1.01506 0.00557498 0) (1.01519 0.00570693 0) (1.01532 0.00583208 0) (1.01546 0.0059499 0) (1.01561 0.0060599 0) (1.01576 0.00616162 0) (1.01593 0.00625463 0) (1.01609 0.00633854 0) (1.01627 0.006413 0) (1.01645 0.00647768 0) (1.01664 0.00653233 0) (1.01683 0.00657668 0) (1.01702 0.00661054 0) (1.01722 0.00663372 0) (1.01743 0.00664606 0) (1.01764 0.00664745 0) (1.01785 0.00663779 0) (1.01806 0.00661698 0) (1.01828 0.00658497 0) (1.01849 0.00654171 0) (1.01871 0.00648717 0) (1.01892 0.00642132 0) (1.01914 0.00634416 0) (1.01935 0.00625571 0) (1.01956 0.006156 0) (1.01977 0.00604508 0) (1.01998 0.00592303 0) (1.02018 0.00578995 0) (1.02037 0.00564598 0) (1.02056 0.00549132 0) (1.02074 0.00532619 0) (1.02092 0.00515087 0) (1.02108 0.00496571 0) (1.02124 0.00477113 0) (1.02139 0.00456761 0) (1.02152 0.0043557 0) (1.02165 0.00413606 0) (1.02176 0.00390941 0) (1.02186 0.00367656 0) (1.02194 0.00343841 0) (1.02201 0.00319593 0) (1.02207 0.0029502 0) (1.02211 0.00270235 0) (1.02214 0.00245357 0) (1.02215 0.00220514 0) (1.02214 0.00195836 0) (1.02212 0.00171459 0) (1.02208 0.00147521 0) (1.02203 0.00124161 0) (1.02196 0.00101516 0) (1.02187 0.000797247 0) (1.02177 0.000589192 0) (1.02166 0.000392287 0) (1.02153 0.000207741 0) (1.02139 3.67012e-05 0) (1.02123 -0.000119799 0) (1.02107 -0.000260833 0) (1.0209 -0.000385559 0) (1.02071 -0.000493313 0) (1.02052 -0.000583531 0) (1.02033 -0.000655775 0) (1.02012 -0.000709776 0) (1.01992 -0.000745412 0) (1.01971 -0.000762666 0) (1.0195 -0.000761684 0) (1.01929 -0.000742784 0) (1.01907 -0.000706309 0) (1.01886 -0.000652783 0) (1.01865 -0.000582798 0) (1.01845 -0.000497011 0) (1.01825 -0.000396265 0) (1.01805 -0.000281405 0) (1.01785 -0.000153301 0) (1.01767 -1.28445e-05 0) (1.01749 0.000139001 0) (1.01731 0.000301372 0) (1.01714 0.000473343 0) (1.01698 0.000654231 0) (1.01682 0.000843141 0) (1.01667 0.00103975 0) (1.01653 0.00124311 0) (1.01639 0.00145358 0) (1.01626 0.00166983 0) (1.01613 0.00189354 0) (1.01601 0.002122 0) (1.0159 0.0023598 0) (1.01579 0.00260039 0) (1.01569 0.00285494 0) (1.0156 0.00310732 0) (1.01551 0.00338412 0) (1.01542 0.00364575 0) (1.01535 0.0039556 0) (1.01527 0.00421749 0) (1.01521 0.00458257 0) (1.01515 0.00481939 0) (1.0151 0.00528765 0) (1.01506 0.00543487 0) (1.01502 0.00611378 0) (1.01502 0.00503227 0) (1.01511 0.00515744 0) (1.01522 0.00527746 0) (1.01533 0.00539187 0) (1.01544 0.00550017 0) (1.01557 0.00560191 0) (1.0157 0.00569662 0) (1.01584 0.00578391 0) (1.01598 0.00586338 0) (1.01613 0.0059347 0) (1.01629 0.00599754 0) (1.01645 0.00605165 0) (1.01661 0.00609678 0) (1.01678 0.00613272 0) (1.01696 0.0061593 0) (1.01714 0.00617638 0) (1.01732 0.00618383 0) (1.0175 0.00618155 0) (1.01769 0.00616949 0) (1.01788 0.00614757 0) (1.01807 0.00611577 0) (1.01826 0.00607405 0) (1.01846 0.00602241 0) (1.01865 0.00596085 0) (1.01884 0.00588938 0) (1.01903 0.00580803 0) (1.01922 0.00571684 0) (1.01941 0.00561587 0) (1.01959 0.0055052 0) (1.01977 0.00538495 0) (1.01994 0.00525523 0) (1.02011 0.00511623 0) (1.02027 0.00496814 0) (1.02043 0.00481124 0) (1.02058 0.00464583 0) (1.02072 0.00447228 0) (1.02085 0.00429101 0) (1.02097 0.00410252 0) (1.02108 0.00390737 0) (1.02118 0.00370619 0) (1.02127 0.00349971 0) (1.02135 0.00328869 0) (1.02142 0.00307399 0) (1.02147 0.00285653 0) (1.02151 0.0026373 0) (1.02154 0.00241733 0) (1.02155 0.00219773 0) (1.02155 0.00197963 0) (1.02153 0.0017642 0) (1.0215 0.00155264 0) (1.02146 0.00134615 0) (1.0214 0.00114594 0) (1.02133 0.000953199 0) (1.02125 0.000769099 0) (1.02116 0.000594763 0) (1.02105 0.000431276 0) (1.02093 0.000279634 0) (1.0208 0.000140785 0) (1.02066 1.55553e-05 0) (1.02051 -9.52986e-05 0) (1.02035 -0.000191137 0) (1.02019 -0.000271401 0) (1.02002 -0.000335663 0) (1.01984 -0.000383647 0) (1.01966 -0.000415184 0) (1.01948 -0.000430216 0) (1.01929 -0.000428772 0) (1.0191 -0.000410984 0) (1.01892 -0.00037718 0) (1.01873 -0.000327737 0) (1.01854 -0.000263131 0) (1.01836 -0.000183956 0) (1.01818 -9.08278e-05 0) (1.018 1.55634e-05 0) (1.01782 0.000134475 0) (1.01765 0.000265135 0) (1.01749 0.000406726 0) (1.01733 0.000558523 0) (1.01717 0.000719717 0) (1.01702 0.000889719 0) (1.01687 0.00106774 0) (1.01674 0.00125352 0) (1.0166 0.0014462 0) (1.01648 0.00164617 0) (1.01636 0.00185216 0) (1.01624 0.00206581 0) (1.01613 0.00228453 0) (1.01603 0.00251266 0) (1.01593 0.00274397 0) (1.01584 0.00298907 0) (1.01575 0.0032325 0) (1.01567 0.00349964 0) (1.01559 0.00375252 0) (1.01553 0.0040518 0) (1.01547 0.0043052 0) (1.01542 0.00465761 0) (1.01536 0.00488682 0) (1.01533 0.00533814 0) (1.0153 0.00548072 0) (1.01528 0.00613412 0) (1.01516 0.00479149 0) (1.01524 0.00489981 0) (1.01534 0.0050035 0) (1.01544 0.00510214 0) (1.01554 0.00519527 0) (1.01565 0.00528249 0) (1.01577 0.00536339 0) (1.01589 0.00543761 0) (1.01602 0.00550481 0) (1.01615 0.00556468 0) (1.01629 0.00561697 0) (1.01643 0.00566142 0) (1.01658 0.00569786 0) (1.01673 0.00572609 0) (1.01689 0.00574599 0) (1.01705 0.00575744 0) (1.01721 0.00576036 0) (1.01737 0.00575468 0) (1.01754 0.00574035 0) (1.01771 0.00571735 0) (1.01788 0.00568566 0) (1.01805 0.00564528 0) (1.01822 0.00559623 0) (1.01839 0.00553851 0) (1.01856 0.00547216 0) (1.01873 0.00539722 0) (1.0189 0.00531373 0) (1.01906 0.00522177 0) (1.01923 0.00512141 0) (1.01939 0.00501276 0) (1.01954 0.00489593 0) (1.01969 0.00477109 0) (1.01984 0.00463842 0) (1.01998 0.00449815 0) (1.02011 0.00435055 0) (1.02023 0.00419595 0) (1.02035 0.00403471 0) (1.02046 0.00386727 0) (1.02056 0.00369413 0) (1.02066 0.00351583 0) (1.02074 0.00333299 0) (1.02081 0.00314628 0) (1.02087 0.00295646 0) (1.02092 0.00276432 0) (1.02096 0.00257072 0) (1.02099 0.00237655 0) (1.021 0.00218278 0) (1.02101 0.00199039 0) (1.021 0.0018004 0) (1.02098 0.00161384 0) (1.02094 0.00143177 0) (1.0209 0.00125525 0) (1.02084 0.00108531 0) (1.02077 0.000922978 0) (1.02069 0.000769256 0) (1.0206 0.000625091 0) (1.0205 0.000491385 0) (1.02039 0.000368973 0) (1.02027 0.000258628 0) (1.02015 0.000161022 0) (1.02001 7.67722e-05 0) (1.01987 6.37997e-06 0) (1.01972 -4.97638e-05 0) (1.01957 -9.13412e-05 0) (1.01941 -0.000118127 0) (1.01925 -0.000130041 0) (1.01909 -0.000127059 0) (1.01893 -0.000109245 0) (1.01876 -7.68256e-05 0) (1.0186 -3.01067e-05 0) (1.01843 3.05408e-05 0) (1.01827 0.000104683 0) (1.0181 0.000191802 0) (1.01794 0.000291309 0) (1.01779 0.000402561 0) (1.01763 0.000524925 0) (1.01748 0.000657705 0) (1.01734 0.00080027 0) (1.0172 0.000951914 0) (1.01706 0.00111214 0) (1.01693 0.00128024 0) (1.0168 0.00145602 0) (1.01668 0.00163871 0) (1.01656 0.00182869 0) (1.01645 0.0020248 0) (1.01635 0.0022286 0) (1.01625 0.00243763 0) (1.01615 0.00265604 0) (1.01606 0.00287786 0) (1.01598 0.00311319 0) (1.01591 0.00334724 0) (1.01584 0.00360422 0) (1.01577 0.00384779 0) (1.01572 0.00413589 0) (1.01566 0.00438017 0) (1.01563 0.00471928 0) (1.01558 0.00494032 0) (1.01556 0.00537412 0) (1.01554 0.00551169 0) (1.01554 0.00613901 0) (1.01527 0.00456813 0) (1.01535 0.00466143 0) (1.01543 0.00475055 0) (1.01552 0.00483508 0) (1.01561 0.00491464 0) (1.01571 0.00498885 0) (1.01582 0.00505736 0) (1.01593 0.00511983 0) (1.01604 0.00517598 0) (1.01616 0.00522554 0) (1.01628 0.00526828 0) (1.01641 0.00530401 0) (1.01654 0.00533257 0) (1.01667 0.00535381 0) (1.01681 0.00536763 0) (1.01695 0.00537396 0) (1.0171 0.00537273 0) (1.01724 0.00536391 0) (1.01739 0.00534749 0) (1.01754 0.00532345 0) (1.01769 0.00529182 0) (1.01784 0.00525261 0) (1.01799 0.00520584 0) (1.01815 0.00515156 0) (1.0183 0.0050898 0) (1.01845 0.00502061 0) (1.0186 0.00494406 0) (1.01874 0.0048602 0) (1.01889 0.00476912 0) (1.01903 0.00467091 0) (1.01917 0.00456569 0) (1.0193 0.00445359 0) (1.01943 0.00433478 0) (1.01956 0.00420945 0) (1.01968 0.00407785 0) (1.01979 0.00394025 0) (1.0199 0.00379698 0) (1.02 0.00364841 0) (1.02009 0.00349497 0) (1.02017 0.00333714 0) (1.02025 0.00317545 0) (1.02031 0.00301049 0) (1.02037 0.0028429 0) (1.02042 0.00267339 0) (1.02046 0.00250269 0) (1.02048 0.00233159 0) (1.0205 0.00216092 0) (1.02051 0.00199155 0) (1.0205 0.00182435 0) (1.02049 0.00166024 0) (1.02046 0.00150014 0) (1.02043 0.00134497 0) (1.02038 0.00119565 0) (1.02033 0.00105308 0) (1.02026 0.000918144 0) (1.02019 0.000791683 0) (1.0201 0.000674504 0) (1.02001 0.000567358 0) (1.01991 0.00047094 0) (1.01981 0.000385875 0) (1.01969 0.000312718 0) (1.01957 0.000251937 0) (1.01944 0.000203928 0) (1.01931 0.000169013 0) (1.01918 0.000147406 0) (1.01904 0.000139256 0) (1.0189 0.000144586 0) (1.01876 0.000163324 0) (1.01861 0.000195367 0) (1.01847 0.000240516 0) (1.01832 0.000298477 0) (1.01818 0.000368882 0) (1.01803 0.000451292 0) (1.01789 0.000545236 0) (1.01775 0.000650174 0) (1.01761 0.000765555 0) (1.01748 0.000890776 0) (1.01735 0.00102529 0) (1.01722 0.00116849 0) (1.0171 0.00131994 0) (1.01698 0.00147902 0) (1.01686 0.00164558 0) (1.01675 0.00181892 0) (1.01665 0.00199944 0) (1.01655 0.00218605 0) (1.01645 0.00238027 0) (1.01636 0.00257975 0) (1.01628 0.00278845 0) (1.0162 0.00300068 0) (1.01613 0.00322605 0) (1.01606 0.00345044 0) (1.01601 0.00369691 0) (1.01595 0.00393074 0) (1.01591 0.00420724 0) (1.01586 0.00444193 0) (1.01584 0.00476728 0) (1.0158 0.00497972 0) (1.0158 0.00539557 0) (1.01577 0.00552786 0) (1.01579 0.00612871 0) (1.01535 0.00435997 0) (1.01542 0.00443997 0) (1.0155 0.00451615 0) (1.01558 0.00458816 0) (1.01566 0.00465565 0) (1.01575 0.00471828 0) (1.01585 0.00477574 0) (1.01594 0.00482773 0) (1.01605 0.00487401 0) (1.01615 0.00491434 0) (1.01626 0.00494854 0) (1.01637 0.00497644 0) (1.01649 0.00499792 0) (1.01661 0.00501288 0) (1.01673 0.00502123 0) (1.01686 0.00502293 0) (1.01698 0.00501795 0) (1.01711 0.00500629 0) (1.01725 0.00498796 0) (1.01738 0.00496297 0) (1.01751 0.00493135 0) (1.01765 0.00489316 0) (1.01778 0.00484842 0) (1.01792 0.0047972 0) (1.01805 0.00473954 0) (1.01819 0.00467551 0) (1.01832 0.00460516 0) (1.01845 0.00452856 0) (1.01858 0.0044458 0) (1.0187 0.00435695 0) (1.01883 0.00426212 0) (1.01895 0.00416143 0) (1.01906 0.00405502 0) (1.01917 0.00394307 0) (1.01928 0.00382577 0) (1.01938 0.00370338 0) (1.01948 0.00357616 0) (1.01957 0.00344444 0) (1.01965 0.00330859 0) (1.01973 0.00316902 0) (1.0198 0.00302619 0) (1.01986 0.00288062 0) (1.01991 0.00273286 0) (1.01996 0.00258353 0) (1.01999 0.00243326 0) (1.02002 0.00228275 0) (1.02004 0.00213271 0) (1.02005 0.00198391 0) (1.02005 0.00183712 0) (1.02004 0.00169313 0) (1.02003 0.00155276 0) (1.02 0.00141681 0) (1.01996 0.0012861 0) (1.01992 0.00116143 0) (1.01987 0.00104357 0) (1.01981 0.000933284 0) (1.01974 0.000831284 0) (1.01966 0.000738248 0) (1.01958 0.000654803 0) (1.01949 0.000581518 0) (1.01939 0.000518904 0) (1.01929 0.000467405 0) (1.01918 0.000427394 0) (1.01907 0.000399172 0) (1.01896 0.000382963 0) (1.01884 0.000378914 0) (1.01872 0.000387091 0) (1.01859 0.000407489 0) (1.01847 0.00044003 0) (1.01834 0.000484559 0) (1.01821 0.000540841 0) (1.01809 0.000608582 0) (1.01796 0.000687421 0) (1.01783 0.000776952 0) (1.01771 0.000876714 0) (1.01759 0.000986232 0) (1.01747 0.00110498 0) (1.01735 0.00123249 0) (1.01724 0.00136821 0) (1.01713 0.00151179 0) (1.01703 0.00166266 0) (1.01692 0.00182072 0) (1.01683 0.00198533 0) (1.01673 0.0021569 0) (1.01664 0.00233442 0) (1.01656 0.00251935 0) (1.01648 0.00270947 0) (1.01641 0.00290855 0) (1.01634 0.00311119 0) (1.01628 0.00332651 0) (1.01622 0.00354107 0) (1.01617 0.00377682 0) (1.01613 0.00400064 0) (1.0161 0.00426522 0) (1.01606 0.00449 0) (1.01605 0.00480129 0) (1.01602 0.00500481 0) (1.01603 0.00540244 0) (1.01601 0.00552925 0) (1.01605 0.00610344 0) (1.01541 0.00416495 0) (1.01548 0.00423323 0) (1.01555 0.00429801 0) (1.01562 0.00435897 0) (1.01569 0.0044158 0) (1.01577 0.00446819 0) (1.01586 0.00451586 0) (1.01594 0.00455857 0) (1.01604 0.0045961 0) (1.01613 0.00462825 0) (1.01623 0.00465486 0) (1.01633 0.0046758 0) (1.01643 0.00469099 0) (1.01654 0.00470034 0) (1.01665 0.00470381 0) (1.01676 0.00470138 0) (1.01687 0.00469306 0) (1.01699 0.00467886 0) (1.0171 0.00465881 0) (1.01722 0.00463295 0) (1.01734 0.00460135 0) (1.01746 0.00456405 0) (1.01758 0.00452113 0) (1.0177 0.00447263 0) (1.01782 0.00441863 0) (1.01794 0.00435919 0) (1.01806 0.00429438 0) (1.01817 0.00422426 0) (1.01829 0.00414891 0) (1.0184 0.00406841 0) (1.01851 0.00398285 0) (1.01862 0.00389234 0) (1.01872 0.00379699 0) (1.01882 0.00369696 0) (1.01892 0.00359241 0) (1.01901 0.00348356 0) (1.0191 0.00337063 0) (1.01918 0.00325391 0) (1.01925 0.00313371 0) (1.01932 0.00301039 0) (1.01939 0.00288435 0) (1.01944 0.00275602 0) (1.01949 0.00262591 0) (1.01954 0.00249452 0) (1.01957 0.00236244 0) (1.0196 0.00223026 0) (1.01962 0.00209862 0) (1.01963 0.00196818 0) (1.01964 0.00183961 0) (1.01964 0.00171363 0) (1.01963 0.00159094 0) (1.01961 0.00147227 0) (1.01958 0.00135832 0) (1.01955 0.00124982 0) (1.0195 0.00114745 0) (1.01946 0.0010519 0) (1.0194 0.000963787 0) (1.01934 0.000883738 0) (1.01927 0.000812316 0) (1.01919 0.000750039 0) (1.01911 0.000697375 0) (1.01903 0.000654733 0) (1.01894 0.000622464 0) (1.01885 0.000600854 0) (1.01875 0.000590124 0) (1.01865 0.000590427 0) (1.01854 0.000601851 0) (1.01844 0.000624411 0) (1.01833 0.000658056 0) (1.01822 0.000702668 0) (1.01811 0.000758062 0) (1.018 0.000823996 0) (1.01789 0.000900162 0) (1.01778 0.000986213 0) (1.01767 0.00108174 0) (1.01757 0.00118635 0) (1.01746 0.00129955 0) (1.01736 0.00142095 0) (1.01726 0.00155006 0) (1.01717 0.00168655 0) (1.01707 0.00182995 0) (1.01698 0.00198016 0) (1.0169 0.00213663 0) (1.01682 0.00229975 0) (1.01674 0.00246858 0) (1.01667 0.00264454 0) (1.0166 0.00282553 0) (1.01654 0.00301515 0) (1.01648 0.00320826 0) (1.01643 0.00341355 0) (1.01638 0.00361821 0) (1.01634 0.00384313 0) (1.01631 0.00405677 0) (1.01629 0.00430928 0) (1.01626 0.00452394 0) (1.01626 0.004821 0) (1.01624 0.0050154 0) (1.01626 0.0053947 0) (1.01624 0.00551586 0) (1.0163 0.00606337 0) (1.01545 0.00398112 0) (1.01551 0.00403914 0) (1.01557 0.00409392 0) (1.01564 0.0041452 0) (1.01571 0.00419267 0) (1.01578 0.00423608 0) (1.01585 0.00427517 0) (1.01593 0.00430972 0) (1.01601 0.00433954 0) (1.0161 0.00436449 0) (1.01619 0.00438441 0) (1.01628 0.00439923 0) (1.01637 0.00440886 0) (1.01646 0.00441327 0) (1.01656 0.00441244 0) (1.01666 0.00440637 0) (1.01676 0.00439509 0) (1.01686 0.00437865 0) (1.01697 0.00435709 0) (1.01707 0.00433048 0) (1.01718 0.0042989 0) (1.01729 0.00426241 0) (1.01739 0.0042211 0) (1.0175 0.00417504 0) (1.01761 0.00412429 0) (1.01771 0.00406894 0) (1.01782 0.00400906 0) (1.01792 0.00394471 0) (1.01802 0.00387596 0) (1.01812 0.00380288 0) (1.01822 0.00372557 0) (1.01832 0.00364409 0) (1.01841 0.00355858 0) (1.0185 0.00346913 0) (1.01859 0.00337591 0) (1.01867 0.00327907 0) (1.01875 0.00317883 0) (1.01882 0.00307542 0) (1.01889 0.00296911 0) (1.01896 0.0028602 0) (1.01901 0.00274905 0) (1.01907 0.00263603 0) (1.01911 0.00252157 0) (1.01916 0.00240612 0) (1.01919 0.0022902 0) (1.01922 0.00217432 0) (1.01924 0.00205903 0) (1.01926 0.00194493 0) (1.01926 0.00183262 0) (1.01927 0.00172271 0) (1.01926 0.00161585 0) (1.01925 0.00151266 0) (1.01923 0.00141378 0) (1.0192 0.00131985 0) (1.01917 0.00123149 0) (1.01914 0.0011493 0) (1.01909 0.00107386 0) (1.01904 0.00100571 0) (1.01899 0.000945374 0) (1.01892 0.000893315 0) (1.01886 0.000849963 0) (1.01879 0.000815695 0) (1.01871 0.000790835 0) (1.01864 0.000775652 0) (1.01855 0.000770359 0) (1.01847 0.000775109 0) (1.01838 0.000789993 0) (1.01829 0.000815041 0) (1.0182 0.000850223 0) (1.01811 0.000895447 0) (1.01801 0.000950561 0) (1.01792 0.00101536 0) (1.01783 0.00108957 0) (1.01773 0.0011729 0) (1.01764 0.00126498 0) (1.01755 0.00136545 0) (1.01746 0.0014739 0) (1.01737 0.00158995 0) (1.01728 0.00171317 0) (1.0172 0.00184329 0) (1.01712 0.00197986 0) (1.01704 0.00212283 0) (1.01697 0.00227169 0) (1.0169 0.00242683 0) (1.01684 0.00258738 0) (1.01677 0.00275471 0) (1.01672 0.00292684 0) (1.01667 0.00310719 0) (1.01662 0.00329091 0) (1.01658 0.00348624 0) (1.01654 0.00368103 0) (1.01651 0.00389511 0) (1.01649 0.00409852 0) (1.01647 0.00433891 0) (1.01645 0.00454333 0) (1.01646 0.00482611 0) (1.01645 0.00501128 0) (1.01649 0.00537226 0) (1.01648 0.00548771 0) (1.01655 0.00600865 0) (1.01547 0.00380665 0) (1.01552 0.00385574 0) (1.01558 0.00390184 0) (1.01564 0.00394468 0) (1.0157 0.00398401 0) (1.01577 0.00401958 0) (1.01584 0.00405119 0) (1.01591 0.00407863 0) (1.01598 0.00410174 0) (1.01606 0.00412039 0) (1.01614 0.00413449 0) (1.01622 0.00414395 0) (1.0163 0.00414874 0) (1.01639 0.00414884 0) (1.01647 0.00414425 0) (1.01656 0.00413501 0) (1.01665 0.00412116 0) (1.01674 0.00410278 0) (1.01684 0.00407992 0) (1.01693 0.00405268 0) (1.01702 0.00402114 0) (1.01712 0.0039854 0) (1.01722 0.00394554 0) (1.01731 0.00390165 0) (1.01741 0.00385381 0) (1.0175 0.0038021 0) (1.01759 0.0037466 0) (1.01769 0.00368736 0) (1.01778 0.00362447 0) (1.01787 0.00355798 0) (1.01796 0.00348797 0) (1.01804 0.00341451 0) (1.01813 0.0033377 0) (1.01821 0.00325763 0) (1.01829 0.00317443 0) (1.01836 0.00308823 0) (1.01843 0.00299922 0) (1.0185 0.00290759 0) (1.01856 0.00281356 0) (1.01862 0.00271741 0) (1.01868 0.00261943 0) (1.01873 0.00251996 0) (1.01877 0.00241936 0) (1.01881 0.00231804 0) (1.01884 0.00221643 0) (1.01887 0.002115 0) (1.0189 0.00201423 0) (1.01891 0.00191466 0) (1.01892 0.0018168 0) (1.01893 0.00172122 0) (1.01893 0.00162847 0) (1.01892 0.00153912 0) (1.01891 0.00145375 0) (1.01889 0.00137292 0) (1.01887 0.00129719 0) (1.01884 0.00122709 0) (1.01881 0.00116314 0) (1.01877 0.00110585 0) (1.01873 0.00105568 0) (1.01868 0.00101304 0) (1.01862 0.000978339 0) (1.01857 0.000951912 0) (1.01851 0.00093406 0) (1.01844 0.000925032 0) (1.01837 0.000925028 0) (1.0183 0.000934193 0) (1.01823 0.000952619 0) (1.01816 0.000980343 0) (1.01808 0.00101734 0) (1.018 0.00106355 0) (1.01792 0.00111882 0) (1.01784 0.00118299 0) (1.01777 0.00125581 0) (1.01769 0.001337 0) (1.01761 0.00142626 0) (1.01753 0.00152324 0) (1.01745 0.00162758 0) (1.01738 0.00173893 0) (1.01731 0.0018569 0) (1.01724 0.00198125 0) (1.01717 0.00211158 0) (1.0171 0.00224784 0) (1.01704 0.00238957 0) (1.01699 0.00253718 0) (1.01693 0.00268985 0) (1.01688 0.00284888 0) (1.01683 0.00301243 0) (1.01679 0.00318376 0) (1.01676 0.00335826 0) (1.01673 0.00354378 0) (1.0167 0.00372879 0) (1.01668 0.00393212 0) (1.01666 0.00412533 0) (1.01666 0.00435363 0) (1.01665 0.00454782 0) (1.01667 0.00481637 0) (1.01666 0.00499228 0) (1.01671 0.00533508 0) (1.01671 0.00544478 0) (1.01679 0.00593943 0) (1.01547 0.00363981 0) (1.01552 0.00368119 0) (1.01557 0.00371979 0) (1.01563 0.00375535 0) (1.01569 0.00378764 0) (1.01575 0.00381645 0) (1.01581 0.00384158 0) (1.01587 0.00386287 0) (1.01594 0.00388018 0) (1.01601 0.0038934 0) (1.01608 0.00390245 0) (1.01615 0.00390729 0) (1.01623 0.0039079 0) (1.01631 0.00390428 0) (1.01638 0.00389646 0) (1.01646 0.00388449 0) (1.01654 0.00386845 0) (1.01663 0.00384841 0) (1.01671 0.00382446 0) (1.01679 0.00379671 0) (1.01688 0.00376527 0) (1.01696 0.00373023 0) (1.01705 0.00369169 0) (1.01713 0.00364976 0) (1.01722 0.00360452 0) (1.0173 0.00355605 0) (1.01739 0.00350444 0) (1.01747 0.00344975 0) (1.01755 0.00339204 0) (1.01764 0.00333138 0) (1.01772 0.00326783 0) (1.01779 0.00320146 0) (1.01787 0.00313234 0) (1.01794 0.00306055 0) (1.01801 0.00298619 0) (1.01808 0.0029094 0) (1.01815 0.00283029 0) (1.01821 0.00274905 0) (1.01827 0.00266588 0) (1.01832 0.00258098 0) (1.01837 0.00249464 0) (1.01842 0.00240712 0) (1.01846 0.00231876 0) (1.0185 0.00222992 0) (1.01853 0.00214097 0) (1.01856 0.00205232 0) (1.01858 0.00196442 0) (1.0186 0.00187771 0) (1.01862 0.00179269 0) (1.01863 0.00170983 0) (1.01863 0.00162965 0) (1.01863 0.00155266 0) (1.01862 0.00147935 0) (1.01861 0.00141025 0) (1.0186 0.00134585 0) (1.01858 0.00128665 0) (1.01855 0.0012331 0) (1.01852 0.00118566 0) (1.01849 0.00114475 0) (1.01845 0.00111075 0) (1.01841 0.00108401 0) (1.01837 0.00106486 0) (1.01832 0.00105356 0) (1.01827 0.00105035 0) (1.01821 0.0010554 0) (1.01815 0.00106885 0) (1.01809 0.00109079 0) (1.01803 0.00112125 0) (1.01797 0.00116023 0) (1.01791 0.00120764 0) (1.01784 0.00126338 0) (1.01778 0.00132727 0) (1.01771 0.00139911 0) (1.01765 0.00147864 0) (1.01758 0.00156556 0) (1.01752 0.00165957 0) (1.01745 0.00176032 0) (1.01739 0.0018675 0) (1.01733 0.00198076 0) (1.01727 0.00209985 0) (1.01722 0.00222443 0) (1.01717 0.00235446 0) (1.01712 0.00248952 0) (1.01707 0.00263 0) (1.01703 0.00277516 0) (1.01699 0.00292624 0) (1.01695 0.00308151 0) (1.01692 0.00324408 0) (1.01689 0.00340959 0) (1.01687 0.0035855 0) (1.01686 0.00376089 0) (1.01685 0.0039536 0) (1.01684 0.00413671 0) (1.01685 0.00435307 0) (1.01684 0.00453708 0) (1.01687 0.00479156 0) (1.01687 0.00495826 0) (1.01693 0.00528309 0) (1.01693 0.00538706 0) (1.01703 0.0058558 0) (1.01546 0.00347898 0) (1.01551 0.00351376 0) (1.01556 0.00354592 0) (1.01561 0.00357524 0) (1.01566 0.0036015 0) (1.01572 0.00362452 0) (1.01577 0.0036441 0) (1.01583 0.00366013 0) (1.01589 0.00367247 0) (1.01596 0.00368104 0) (1.01602 0.00368579 0) (1.01609 0.00368668 0) (1.01616 0.00368373 0) (1.01622 0.00367694 0) (1.0163 0.00366638 0) (1.01637 0.00365211 0) (1.01644 0.00363422 0) (1.01651 0.00361281 0) (1.01659 0.00358798 0) (1.01667 0.00355986 0) (1.01674 0.00352856 0) (1.01682 0.0034942 0) (1.01689 0.00345688 0) (1.01697 0.00341672 0) (1.01705 0.00337381 0) (1.01712 0.00332824 0) (1.0172 0.00328009 0) (1.01728 0.00322943 0) (1.01735 0.00317632 0) (1.01742 0.00312081 0) (1.0175 0.00306297 0) (1.01757 0.00300285 0) (1.01763 0.00294051 0) (1.0177 0.00287602 0) (1.01777 0.00280947 0) (1.01783 0.00274094 0) (1.01789 0.00267057 0) (1.01794 0.00259848 0) (1.018 0.00252486 0) (1.01805 0.00244988 0) (1.0181 0.00237377 0) (1.01814 0.0022968 0) (1.01818 0.00221923 0) (1.01822 0.00214138 0) (1.01825 0.00206359 0) (1.01828 0.00198623 0) (1.01831 0.00190969 0) (1.01833 0.00183437 0) (1.01834 0.0017607 0) (1.01835 0.00168913 0) (1.01836 0.0016201 0) (1.01837 0.00155408 0) (1.01837 0.00149152 0) (1.01836 0.00143289 0) (1.01835 0.00137864 0) (1.01834 0.0013292 0) (1.01832 0.00128501 0) (1.0183 0.00124646 0) (1.01828 0.00121394 0) (1.01825 0.00118779 0) (1.01822 0.00116835 0) (1.01818 0.00115588 0) (1.01815 0.00115065 0) (1.01811 0.00115285 0) (1.01806 0.00116265 0) (1.01802 0.00118018 0) (1.01797 0.00120552 0) (1.01792 0.00123868 0) (1.01787 0.00127967 0) (1.01782 0.0013284 0) (1.01777 0.00138478 0) (1.01772 0.00144865 0) (1.01766 0.00151979 0) (1.01761 0.00159799 0) (1.01756 0.00168295 0) (1.01751 0.00177438 0) (1.01746 0.00187197 0) (1.01741 0.00197542 0) (1.01736 0.00208439 0) (1.01731 0.00219867 0) (1.01727 0.00231793 0) (1.01723 0.00244215 0) (1.01719 0.00257094 0) (1.01715 0.00270468 0) (1.01712 0.00284268 0) (1.01709 0.00298614 0) (1.01707 0.00313344 0) (1.01705 0.00328753 0) (1.01703 0.0034443 0) (1.01702 0.00361083 0) (1.01701 0.0037768 0) (1.01701 0.00395911 0) (1.01701 0.00413228 0) (1.01703 0.00433688 0) (1.01704 0.00451085 0) (1.01707 0.00475149 0) (1.01708 0.00490908 0) (1.01715 0.00521626 0) (1.01715 0.00531455 0) (1.01726 0.00575789 0) (1.01544 0.00332263 0) (1.01548 0.0033518 0) (1.01553 0.0033785 0) (1.01558 0.00340252 0) (1.01563 0.00342367 0) (1.01568 0.00344176 0) (1.01573 0.00345665 0) (1.01578 0.00346821 0) (1.01584 0.00347635 0) (1.0159 0.00348099 0) (1.01596 0.0034821 0) (1.01602 0.00347967 0) (1.01608 0.00347372 0) (1.01614 0.00346428 0) (1.01621 0.00345144 0) (1.01627 0.00343526 0) (1.01634 0.00341586 0) (1.01641 0.00339334 0) (1.01648 0.00336784 0) (1.01654 0.00333948 0) (1.01661 0.0033084 0) (1.01668 0.00327471 0) (1.01675 0.00323853 0) (1.01682 0.00319999 0) (1.01689 0.00315919 0) (1.01696 0.00311622 0) (1.01703 0.00307115 0) (1.0171 0.00302407 0) (1.01716 0.00297503 0) (1.01723 0.00292408 0) (1.0173 0.00287128 0) (1.01736 0.00281667 0) (1.01742 0.00276031 0) (1.01748 0.00270225 0) (1.01754 0.00264255 0) (1.0176 0.0025813 0) (1.01766 0.0025186 0) (1.01771 0.00245456 0) (1.01776 0.00238932 0) (1.01781 0.00232306 0) (1.01785 0.00225595 0) (1.01789 0.00218824 0) (1.01793 0.00212015 0) (1.01797 0.00205198 0) (1.018 0.00198402 0) (1.01803 0.0019166 0) (1.01806 0.00185006 0) (1.01808 0.00178478 0) (1.0181 0.00172114 0) (1.01811 0.00165953 0) (1.01812 0.00160037 0) (1.01813 0.00154408 0) (1.01814 0.00149106 0) (1.01814 0.00144174 0) (1.01813 0.00139652 0) (1.01813 0.00135581 0) (1.01812 0.00131999 0) (1.01811 0.00128942 0) (1.01809 0.00126445 0) (1.01807 0.0012454 0) (1.01805 0.00123256 0) (1.01802 0.00122619 0) (1.018 0.0012265 0) (1.01797 0.00123368 0) (1.01793 0.00124789 0) (1.0179 0.00126922 0) (1.01786 0.00129775 0) (1.01783 0.0013335 0) (1.01779 0.00137645 0) (1.01775 0.00142653 0) (1.01771 0.00148363 0) (1.01767 0.0015476 0) (1.01763 0.00161824 0) (1.01759 0.00169533 0) (1.01755 0.00177859 0) (1.01751 0.00186775 0) (1.01747 0.00196249 0) (1.01743 0.00206255 0) (1.01739 0.00216759 0) (1.01736 0.00227742 0) (1.01732 0.00239173 0) (1.01729 0.0025105 0) (1.01727 0.00263338 0) (1.01724 0.00276073 0) (1.01722 0.00289192 0) (1.0172 0.00302808 0) (1.01719 0.00316771 0) (1.01717 0.00331361 0) (1.01717 0.00346191 0) (1.01717 0.00361933 0) (1.01717 0.00377611 0) (1.01718 0.00394826 0) (1.01718 0.00411171 0) (1.01721 0.00430481 0) (1.01722 0.00446894 0) (1.01727 0.00469602 0) (1.01729 0.00484466 0) (1.01736 0.00513458 0) (1.01737 0.00522728 0) (1.01749 0.0056458 0) (1.01541 0.00316932 0) (1.01545 0.00319378 0) (1.01549 0.00321588 0) (1.01554 0.00323544 0) (1.01558 0.00325229 0) (1.01563 0.00326625 0) (1.01568 0.00327721 0) (1.01573 0.00328503 0) (1.01579 0.00328966 0) (1.01584 0.00329102 0) (1.01589 0.00328911 0) (1.01595 0.00328392 0) (1.01601 0.0032755 0) (1.01606 0.00326389 0) (1.01612 0.00324917 0) (1.01618 0.00323146 0) (1.01624 0.00321086 0) (1.01631 0.0031875 0) (1.01637 0.00316153 0) (1.01643 0.00313306 0) (1.01649 0.00310226 0) (1.01656 0.00306925 0) (1.01662 0.00303417 0) (1.01668 0.00299713 0) (1.01675 0.00295824 0) (1.01681 0.00291761 0) (1.01687 0.00287531 0) (1.01693 0.00283141 0) (1.017 0.00278598 0) (1.01706 0.00273907 0) (1.01712 0.00269072 0) (1.01718 0.00264098 0) (1.01723 0.00258988 0) (1.01729 0.00253746 0) (1.01734 0.0024838 0) (1.0174 0.00242894 0) (1.01745 0.00237297 0) (1.0175 0.00231598 0) (1.01755 0.00225811 0) (1.01759 0.00219948 0) (1.01763 0.00214028 0) (1.01767 0.00208068 0) (1.01771 0.00202092 0) (1.01775 0.00196124 0) (1.01778 0.0019019 0) (1.01781 0.00184321 0) (1.01784 0.00178547 0) (1.01786 0.00172901 0) (1.01788 0.0016742 0) (1.0179 0.00162137 0) (1.01791 0.00157092 0) (1.01793 0.00152321 0) (1.01793 0.00147863 0) (1.01794 0.00143755 0) (1.01794 0.00140034 0) (1.01794 0.00136738 0) (1.01794 0.001339 0) (1.01793 0.00131555 0) (1.01792 0.00129734 0) (1.01791 0.00128465 0) (1.0179 0.00127774 0) (1.01788 0.00127686 0) (1.01786 0.00128218 0) (1.01784 0.00129389 0) (1.01782 0.00131211 0) (1.0178 0.00133693 0) (1.01777 0.00136841 0) (1.01774 0.00140656 0) (1.01772 0.00145134 0) (1.01769 0.0015027 0) (1.01766 0.00156052 0) (1.01763 0.00162464 0) (1.0176 0.00169487 0) (1.01757 0.00177099 0) (1.01754 0.00185273 0) (1.01751 0.00193982 0) (1.01748 0.00203196 0) (1.01745 0.00212889 0) (1.01743 0.00223029 0) (1.0174 0.00233597 0) (1.01738 0.00244563 0) (1.01736 0.00255927 0) (1.01734 0.00267654 0) (1.01733 0.00279782 0) (1.01732 0.0029225 0) (1.01731 0.00305168 0) (1.0173 0.00318394 0) (1.0173 0.00332195 0) (1.0173 0.00346207 0) (1.01731 0.00361066 0) (1.01732 0.00375853 0) (1.01734 0.00392081 0) (1.01736 0.00407478 0) (1.01739 0.00425668 0) (1.01741 0.00441119 0) (1.01746 0.00462507 0) (1.01749 0.00476495 0) (1.01757 0.00503806 0) (1.01758 0.00512529 0) (1.01771 0.00551965 0) (1.01537 0.00301769 0) (1.01541 0.00303821 0) (1.01545 0.00305649 0) (1.01549 0.00307235 0) (1.01554 0.00308562 0) (1.01558 0.00309617 0) (1.01563 0.00310386 0) (1.01568 0.00310861 0) (1.01573 0.00311034 0) (1.01578 0.00310902 0) (1.01583 0.00310464 0) (1.01588 0.00309722 0) (1.01593 0.00308679 0) (1.01599 0.00307344 0) (1.01604 0.00305726 0) (1.0161 0.00303835 0) (1.01615 0.00301685 0) (1.01621 0.0029929 0) (1.01627 0.00296663 0) (1.01633 0.00293821 0) (1.01638 0.00290777 0) (1.01644 0.00287547 0) (1.0165 0.00284144 0) (1.01656 0.0028058 0) (1.01662 0.00276868 0) (1.01667 0.00273017 0) (1.01673 0.00269035 0) (1.01679 0.00264931 0) (1.01685 0.0026071 0) (1.0169 0.00256376 0) (1.01696 0.00251935 0) (1.01701 0.00247389 0) (1.01707 0.00242743 0) (1.01712 0.00237998 0) (1.01717 0.00233161 0) (1.01722 0.00228236 0) (1.01727 0.00223229 0) (1.01731 0.00218149 0) (1.01736 0.00213007 0) (1.0174 0.00207813 0) (1.01744 0.00202584 0) (1.01748 0.00197336 0) (1.01752 0.00192088 0) (1.01755 0.00186863 0) (1.01759 0.00181685 0) (1.01762 0.0017658 0) (1.01764 0.00171577 0) (1.01767 0.00166706 0) (1.01769 0.00161999 0) (1.01771 0.00157488 0) (1.01773 0.00153207 0) (1.01774 0.00149191 0) (1.01776 0.00145475 0) (1.01777 0.00142094 0) (1.01777 0.0013908 0) (1.01778 0.00136468 0) (1.01778 0.0013429 0) (1.01778 0.00132575 0) (1.01778 0.00131353 0) (1.01777 0.00130649 0) (1.01777 0.00130486 0) (1.01776 0.00130887 0) (1.01775 0.00131868 0) (1.01774 0.00133443 0) (1.01772 0.00135625 0) (1.01771 0.0013842 0) (1.01769 0.00141833 0) (1.01767 0.00145864 0) (1.01766 0.00150509 0) (1.01764 0.0015576 0) (1.01762 0.00161606 0) (1.0176 0.0016803 0) (1.01758 0.00175015 0) (1.01756 0.00182536 0) (1.01754 0.00190568 0) (1.01752 0.00199084 0) (1.0175 0.00208055 0) (1.01749 0.00217454 0) (1.01747 0.00227251 0) (1.01746 0.00237427 0) (1.01744 0.00247954 0) (1.01743 0.00258832 0) (1.01743 0.00270027 0) (1.01742 0.00281576 0) (1.01742 0.00293422 0) (1.01742 0.00305671 0) (1.01742 0.00318189 0) (1.01743 0.0033123 0) (1.01744 0.00344454 0) (1.01746 0.0035846 0) (1.01747 0.00372384 0) (1.0175 0.00387655 0) (1.01752 0.00402133 0) (1.01757 0.00419236 0) (1.01759 0.00433753 0) (1.01765 0.00453859 0) (1.01768 0.00466996 0) (1.01777 0.00492675 0) (1.01779 0.00500864 0) (1.01793 0.00537956 0) (1.01533 0.00286648 0) (1.01537 0.00288376 0) (1.01541 0.00289889 0) (1.01545 0.00291171 0) (1.01549 0.00292207 0) (1.01554 0.00292982 0) (1.01558 0.00293486 0) (1.01563 0.00293712 0) (1.01567 0.00293652 0) (1.01572 0.00293304 0) (1.01577 0.00292669 0) (1.01582 0.00291749 0) (1.01587 0.0029055 0) (1.01592 0.00289081 0) (1.01597 0.00287351 0) (1.01602 0.00285372 0) (1.01607 0.00283159 0) (1.01612 0.00280726 0) (1.01618 0.00278089 0) (1.01623 0.00275264 0) (1.01628 0.00272265 0) (1.01634 0.00269109 0) (1.01639 0.00265809 0) (1.01645 0.00262379 0) (1.0165 0.0025883 0) (1.01655 0.00255173 0) (1.01661 0.00251417 0) (1.01666 0.0024757 0) (1.01671 0.00243636 0) (1.01677 0.00239621 0) (1.01682 0.00235528 0) (1.01687 0.00231362 0) (1.01692 0.00227123 0) (1.01697 0.00222816 0) (1.01702 0.00218444 0) (1.01706 0.00214011 0) (1.01711 0.00209522 0) (1.01715 0.00204983 0) (1.01719 0.00200405 0) (1.01724 0.00195797 0) (1.01728 0.00191172 0) (1.01731 0.00186546 0) (1.01735 0.00181935 0) (1.01739 0.0017736 0) (1.01742 0.00172842 0) (1.01745 0.00168406 0) (1.01748 0.00164077 0) (1.0175 0.00159882 0) (1.01753 0.00155852 0) (1.01755 0.00152016 0) (1.01757 0.00148405 0) (1.01759 0.00145051 0) (1.0176 0.00141985 0) (1.01762 0.0013924 0) (1.01763 0.00136847 0) (1.01764 0.00134836 0) (1.01765 0.00133237 0) (1.01765 0.00132076 0) (1.01766 0.00131381 0) (1.01766 0.00131174 0) (1.01766 0.00131478 0) (1.01766 0.00132309 0) (1.01765 0.00133685 0) (1.01765 0.00135617 0) (1.01764 0.00138116 0) (1.01764 0.00141186 0) (1.01763 0.00144832 0) (1.01762 0.00149051 0) (1.01761 0.0015384 0) (1.0176 0.00159189 0) (1.01759 0.00165086 0) (1.01758 0.00171515 0) (1.01757 0.00178456 0) (1.01756 0.00185886 0) (1.01755 0.0019378 0) (1.01754 0.00202111 0) (1.01753 0.00210849 0) (1.01752 0.00219968 0) (1.01752 0.00229438 0) (1.01751 0.00239241 0) (1.01751 0.0024935 0) (1.01751 0.00259763 0) (1.01751 0.00270451 0) (1.01751 0.00281446 0) (1.01752 0.00292698 0) (1.01753 0.00304305 0) (1.01754 0.00316143 0) (1.01756 0.00328454 0) (1.01758 0.00340918 0) (1.0176 0.00354102 0) (1.01763 0.00367193 0) (1.01766 0.00381541 0) (1.01769 0.00395131 0) (1.01774 0.00411183 0) (1.01777 0.00424794 0) (1.01784 0.0044366 0) (1.01788 0.00455971 0) (1.01797 0.00480073 0) (1.01799 0.00487744 0) (1.01814 0.00522569 0) (1.01529 0.0027145 0) (1.01533 0.00272915 0) (1.01536 0.00274173 0) (1.0154 0.0027521 0) (1.01545 0.0027601 0) (1.01549 0.00276562 0) (1.01553 0.00276855 0) (1.01557 0.00276882 0) (1.01562 0.00276638 0) (1.01566 0.00276121 0) (1.01571 0.00275334 0) (1.01576 0.00274278 0) (1.0158 0.00272962 0) (1.01585 0.00271394 0) (1.0159 0.00269584 0) (1.01595 0.00267547 0) (1.016 0.00265296 0) (1.01605 0.00262847 0) (1.0161 0.00260217 0) (1.01615 0.00257421 0) (1.0162 0.00254476 0) (1.01625 0.00251398 0) (1.0163 0.00248201 0) (1.01635 0.00244899 0) (1.0164 0.00241504 0) (1.01645 0.00238027 0) (1.0165 0.00234477 0) (1.01655 0.00230862 0) (1.0166 0.00227186 0) (1.01665 0.00223456 0) (1.0167 0.00219674 0) (1.01674 0.00215843 0) (1.01679 0.00211966 0) (1.01684 0.00208045 0) (1.01688 0.00204081 0) (1.01693 0.0020008 0) (1.01697 0.00196044 0) (1.01701 0.00191981 0) (1.01706 0.00187896 0) (1.0171 0.00183799 0) (1.01713 0.00179703 0) (1.01717 0.00175619 0) (1.01721 0.00171564 0) (1.01724 0.00167556 0) (1.01727 0.00163614 0) (1.01731 0.0015976 0) (1.01734 0.00156019 0) (1.01736 0.00152415 0) (1.01739 0.00148975 0) (1.01741 0.00145728 0) (1.01744 0.001427 0) (1.01746 0.00139923 0) (1.01748 0.00137425 0) (1.01749 0.00135235 0) (1.01751 0.00133383 0) (1.01752 0.00131896 0) (1.01754 0.00130802 0) (1.01755 0.00130124 0) (1.01756 0.00129889 0) (1.01756 0.00130115 0) (1.01757 0.00130823 0) (1.01757 0.0013203 0) (1.01758 0.00133748 0) (1.01758 0.00135989 0) (1.01758 0.00138761 0) (1.01758 0.00142069 0) (1.01758 0.00145912 0) (1.01758 0.0015029 0) (1.01758 0.00155197 0) (1.01758 0.00160622 0) (1.01758 0.00166553 0) (1.01757 0.00172973 0) (1.01757 0.00179863 0) (1.01757 0.00187197 0) (1.01757 0.00194952 0) (1.01757 0.00203099 0) (1.01757 0.00211609 0) (1.01757 0.00220456 0) (1.01757 0.00229612 0) (1.01758 0.00239056 0) (1.01758 0.00248763 0) (1.01759 0.00258731 0) (1.0176 0.00268932 0) (1.01761 0.00279396 0) (1.01763 0.00290077 0) (1.01764 0.00301068 0) (1.01766 0.00312254 0) (1.01769 0.00323864 0) (1.01771 0.00335596 0) (1.01775 0.0034799 0) (1.01778 0.00360279 0) (1.01782 0.00373738 0) (1.01786 0.0038647 0) (1.01791 0.00401509 0) (1.01795 0.00414248 0) (1.01803 0.00431917 0) (1.01807 0.00443431 0) (1.01817 0.00466011 0) (1.01819 0.00473181 0) (1.01835 0.0050582 0) (1.01525 0.00256064 0) (1.01528 0.00257318 0) (1.01532 0.00258374 0) (1.01536 0.00259217 0) (1.0154 0.00259832 0) (1.01544 0.00260209 0) (1.01548 0.00260337 0) (1.01553 0.00260212 0) (1.01557 0.00259828 0) (1.01561 0.00259184 0) (1.01566 0.00258283 0) (1.0157 0.00257129 0) (1.01575 0.0025573 0) (1.01579 0.00254094 0) (1.01584 0.00252234 0) (1.01588 0.00250164 0) (1.01593 0.00247898 0) (1.01598 0.00245452 0) (1.01602 0.00242844 0) (1.01607 0.0024009 0) (1.01612 0.00237208 0) (1.01617 0.00234212 0) (1.01621 0.00231119 0) (1.01626 0.00227942 0) (1.01631 0.00224693 0) (1.01636 0.00221385 0) (1.01641 0.00218025 0) (1.01645 0.00214621 0) (1.0165 0.0021118 0) (1.01655 0.00207706 0) (1.01659 0.00204201 0) (1.01664 0.0020067 0) (1.01668 0.00197112 0) (1.01673 0.00193532 0) (1.01677 0.00189929 0) (1.01681 0.00186307 0) (1.01686 0.0018267 0) (1.0169 0.00179022 0) (1.01694 0.00175369 0) (1.01698 0.0017172 0) (1.01702 0.00168085 0) (1.01705 0.00164474 0) (1.01709 0.00160904 0) (1.01712 0.00157389 0) (1.01716 0.00153949 0) (1.01719 0.00150603 0) (1.01722 0.00147373 0) (1.01725 0.00144282 0) (1.01728 0.00141355 0) (1.0173 0.00138619 0) (1.01733 0.00136099 0) (1.01735 0.00133822 0) (1.01737 0.00131816 0) (1.01739 0.00130108 0) (1.01741 0.00128724 0) (1.01743 0.00127691 0) (1.01745 0.00127033 0) (1.01746 0.00126773 0) (1.01748 0.00126934 0) (1.01749 0.00127533 0) (1.0175 0.00128589 0) (1.01751 0.00130117 0) (1.01752 0.00132128 0) (1.01753 0.00134631 0) (1.01754 0.00137633 0) (1.01754 0.00141137 0) (1.01755 0.00145143 0) (1.01756 0.00149648 0) (1.01756 0.00154645 0) (1.01757 0.00160122 0) (1.01757 0.00166068 0) (1.01758 0.00172463 0) (1.01758 0.00179288 0) (1.01759 0.00186518 0) (1.0176 0.00194127 0) (1.01761 0.00202089 0) (1.01761 0.00210373 0) (1.01762 0.00218953 0) (1.01763 0.00227801 0) (1.01765 0.00236897 0) (1.01766 0.00246215 0) (1.01768 0.00255753 0) (1.01769 0.00265484 0) (1.01771 0.00275438 0) (1.01774 0.0028557 0) (1.01776 0.0029597 0) (1.01779 0.00306529 0) (1.01782 0.00317465 0) (1.01785 0.00328496 0) (1.01789 0.0034013 0) (1.01793 0.00351649 0) (1.01798 0.00364252 0) (1.01802 0.00376161 0) (1.01809 0.00390225 0) (1.01813 0.00402123 0) (1.01821 0.00418642 0) (1.01825 0.00429388 0) (1.01837 0.00450504 0) (1.01839 0.00457192 0) (1.01855 0.00487728 0) (1.01521 0.00240384 0) (1.01525 0.00241475 0) (1.01528 0.00242373 0) (1.01532 0.00243066 0) (1.01536 0.0024354 0) (1.0154 0.00243784 0) (1.01544 0.0024379 0) (1.01548 0.00243552 0) (1.01553 0.00243066 0) (1.01557 0.00242332 0) (1.01561 0.00241353 0) (1.01565 0.00240134 0) (1.0157 0.00238682 0) (1.01574 0.00237008 0) (1.01578 0.00235123 0) (1.01583 0.00233043 0) (1.01587 0.00230783 0) (1.01592 0.00228358 0) (1.01596 0.00225787 0) (1.01601 0.00223087 0) (1.01605 0.00220275 0) (1.0161 0.00217366 0) (1.01615 0.00214378 0) (1.01619 0.00211324 0) (1.01624 0.00208216 0) (1.01628 0.00205066 0) (1.01633 0.00201883 0) (1.01637 0.00198675 0) (1.01642 0.00195447 0) (1.01646 0.00192204 0) (1.01651 0.0018895 0) (1.01655 0.00185686 0) (1.01659 0.00182414 0) (1.01664 0.00179136 0) (1.01668 0.00175852 0) (1.01672 0.00172566 0) (1.01676 0.00169279 0) (1.0168 0.00165996 0) (1.01684 0.00162721 0) (1.01688 0.00159464 0) (1.01692 0.00156231 0) (1.01696 0.00153034 0) (1.01699 0.00149885 0) (1.01703 0.001468 0) (1.01706 0.00143796 0) (1.01709 0.0014089 0) (1.01713 0.00138104 0) (1.01716 0.00135458 0) (1.01719 0.00132976 0) (1.01721 0.00130682 0) (1.01724 0.001286 0) (1.01727 0.00126755 0) (1.01729 0.00125174 0) (1.01731 0.0012388 0) (1.01734 0.001229 0) (1.01736 0.00122256 0) (1.01738 0.00121972 0) (1.0174 0.00122069 0) (1.01742 0.00122567 0) (1.01743 0.00123483 0) (1.01745 0.00124833 0) (1.01747 0.0012663 0) (1.01748 0.00128885 0) (1.01749 0.00131605 0) (1.01751 0.00134795 0) (1.01752 0.00138457 0) (1.01753 0.00142589 0) (1.01755 0.00147188 0) (1.01756 0.00152246 0) (1.01757 0.0015775 0) (1.01758 0.00163687 0) (1.0176 0.00170039 0) (1.01761 0.00176783 0) (1.01762 0.00183897 0) (1.01764 0.00191353 0) (1.01765 0.00199123 0) (1.01767 0.00207179 0) (1.01769 0.00215494 0) (1.0177 0.00224038 0) (1.01772 0.00232793 0) (1.01775 0.00241732 0) (1.01777 0.00250854 0) (1.01779 0.00260131 0) (1.01782 0.00269593 0) (1.01785 0.00279196 0) (1.01788 0.00289026 0) (1.01792 0.00298983 0) (1.01796 0.00309273 0) (1.018 0.0031963 0) (1.01804 0.00330535 0) (1.01809 0.00341314 0) (1.01814 0.00353097 0) (1.01819 0.00364215 0) (1.01826 0.00377346 0) (1.01831 0.00388437 0) (1.01839 0.00403852 0) (1.01844 0.00413861 0) (1.01856 0.00433572 0) (1.01858 0.00439795 0) (1.01876 0.00468313 0) (1.01518 0.00224312 0) (1.01521 0.00225278 0) (1.01525 0.00226059 0) (1.01529 0.0022664 0) (1.01533 0.0022701 0) (1.01537 0.00227159 0) (1.01541 0.00227078 0) (1.01545 0.00226762 0) (1.01549 0.00226208 0) (1.01553 0.00225416 0) (1.01557 0.00224389 0) (1.01561 0.00223133 0) (1.01566 0.00221657 0) (1.0157 0.00219969 0) (1.01574 0.00218084 0) (1.01579 0.00216015 0) (1.01583 0.00213779 0) (1.01587 0.00211392 0) (1.01592 0.00208872 0) (1.01596 0.00206236 0) (1.016 0.00203502 0) (1.01605 0.00200687 0) (1.01609 0.00197805 0) (1.01614 0.00194873 0) (1.01618 0.00191901 0) (1.01622 0.00188903 0) (1.01627 0.00185886 0) (1.01631 0.00182859 0) (1.01636 0.00179827 0) (1.0164 0.00176796 0) (1.01644 0.00173768 0) (1.01648 0.00170745 0) (1.01653 0.00167729 0) (1.01657 0.0016472 0) (1.01661 0.0016172 0) (1.01665 0.0015873 0) (1.01669 0.00155752 0) (1.01673 0.0015279 0) (1.01677 0.00149849 0) (1.01681 0.00146934 0) (1.01685 0.00144053 0) (1.01688 0.00141217 0) (1.01692 0.00138437 0) (1.01695 0.00135726 0) (1.01699 0.00133101 0) (1.01702 0.00130577 0) (1.01706 0.00128175 0) (1.01709 0.00125915 0) (1.01712 0.00123817 0) (1.01715 0.00121904 0) (1.01718 0.00120199 0) (1.01721 0.00118726 0) (1.01723 0.00117508 0) (1.01726 0.00116569 0) (1.01728 0.00115933 0) (1.01731 0.0011562 0) (1.01733 0.00115653 0) (1.01736 0.00116051 0) (1.01738 0.00116832 0) (1.0174 0.00118013 0) (1.01742 0.00119606 0) (1.01744 0.00121625 0) (1.01746 0.00124078 0) (1.01748 0.00126971 0) (1.0175 0.00130308 0) (1.01752 0.00134089 0) (1.01754 0.00138313 0) (1.01755 0.00142974 0) (1.01757 0.00148063 0) (1.01759 0.00153567 0) (1.01761 0.00159473 0) (1.01763 0.0016576 0) (1.01765 0.00172407 0) (1.01767 0.0017939 0) (1.01769 0.00186682 0) (1.01771 0.00194254 0) (1.01773 0.00202077 0) (1.01776 0.00210124 0) (1.01778 0.00218366 0) (1.01781 0.00226784 0) (1.01784 0.00235353 0) (1.01787 0.00244068 0) (1.0179 0.00252905 0) (1.01793 0.0026189 0) (1.01797 0.00270983 0) (1.01801 0.00280266 0) (1.01805 0.00289643 0) (1.01809 0.00299312 0) (1.01814 0.00309022 0) (1.01819 0.00319229 0) (1.01824 0.003293 0) (1.0183 0.00340297 0) (1.01836 0.00350658 0) (1.01843 0.00362893 0) (1.01849 0.00373212 0) (1.01858 0.00387569 0) (1.01863 0.00396872 0) (1.01875 0.00415237 0) (1.01878 0.00421016 0) (1.01896 0.004476 0) (1.01515 0.00207759 0) (1.01519 0.00208634 0) (1.01523 0.0020933 0) (1.01527 0.00209833 0) (1.01531 0.00210131 0) (1.01535 0.00210215 0) (1.01538 0.00210078 0) (1.01542 0.00209713 0) (1.01547 0.0020912 0) (1.01551 0.00208298 0) (1.01555 0.00207251 0) (1.01559 0.00205984 0) (1.01563 0.00204506 0) (1.01567 0.00202828 0) (1.01571 0.00200962 0) (1.01575 0.00198924 0) (1.0158 0.00196729 0) (1.01584 0.00194395 0) (1.01588 0.00191939 0) (1.01593 0.00189378 0) (1.01597 0.0018673 0) (1.01601 0.00184013 0) (1.01605 0.00181241 0) (1.0161 0.0017843 0) (1.01614 0.00175592 0) (1.01618 0.00172739 0) (1.01623 0.00169881 0) (1.01627 0.00167024 0) (1.01631 0.00164174 0) (1.01635 0.00161337 0) (1.01639 0.00158516 0) (1.01644 0.00155711 0) (1.01648 0.00152925 0) (1.01652 0.00150157 0) (1.01656 0.0014741 0) (1.0166 0.00144684 0) (1.01664 0.0014198 0) (1.01668 0.00139302 0) (1.01672 0.00136653 0) (1.01676 0.00134039 0) (1.01679 0.00131467 0) (1.01683 0.00128946 0) (1.01687 0.00126486 0) (1.0169 0.00124101 0) (1.01694 0.00121805 0) (1.01697 0.00119613 0) (1.01701 0.00117543 0) (1.01704 0.00115615 0) (1.01707 0.00113848 0) (1.01711 0.00112262 0) (1.01714 0.00110881 0) (1.01717 0.00109725 0) (1.0172 0.00108817 0) (1.01723 0.00108179 0) (1.01725 0.00107833 0) (1.01728 0.00107799 0) (1.01731 0.00108097 0) (1.01733 0.00108745 0) (1.01736 0.0010976 0) (1.01739 0.00111157 0) (1.01741 0.00112948 0) (1.01744 0.00115143 0) (1.01746 0.0011775 0) (1.01748 0.00120775 0) (1.01751 0.0012422 0) (1.01753 0.00128084 0) (1.01755 0.00132365 0) (1.01758 0.00137055 0) (1.0176 0.00142146 0) (1.01763 0.00147624 0) (1.01765 0.00153473 0) (1.01768 0.00159675 0) (1.0177 0.00166207 0) (1.01773 0.00173044 0) (1.01775 0.00180158 0) (1.01778 0.00187522 0) (1.01781 0.00195106 0) (1.01784 0.00202883 0) (1.01787 0.00210823 0) (1.01791 0.00218907 0) (1.01794 0.0022711 0) (1.01798 0.00235428 0) (1.01801 0.00243836 0) (1.01806 0.00252359 0) (1.0181 0.00260959 0) (1.01814 0.00269713 0) (1.01819 0.00278534 0) (1.01824 0.00287606 0) (1.01829 0.00296697 0) (1.01835 0.00306235 0) (1.0184 0.00315627 0) (1.01847 0.00325873 0) (1.01853 0.0033551 0) (1.01861 0.0034689 0) (1.01867 0.00356471 0) (1.01876 0.00369818 0) (1.01882 0.00378446 0) (1.01894 0.00395524 0) (1.01897 0.00400879 0) (1.01915 0.00425612 0) (1 0.00010649 0) (1.00002 0.000321079 0) (1.00005 0.000535815 0) (1.00009 0.000750372 0) (1.00015 0.000964141 0) (1.00022 0.00117638 0) (1.00031 0.00138651 0) (1.0004 0.00159413 0) (1.00051 0.00179875 0) (1.00062 0.00199956 0) (1.00075 0.00219556 0) (1.00088 0.00238581 0) (1.00102 0.00256941 0) (1.00116 0.0027452 0) (1.00132 0.00291142 0) (1.00147 0.00306564 0) (1.00164 0.00320534 0) (1.0018 0.00332866 0) (1.00197 0.00343519 0) (1.00214 0.0035262 0) (1.00232 0.00360439 0) (1.0025 0.00367319 0) (1.00268 0.00373588 0) (1.00286 0.00379491 0) (1.00304 0.00385153 0) (1.00323 0.00390576 0) (1.00341 0.00395669 0) (1.0036 0.00400284 0) (1.00378 0.0040426 0) (1.00397 0.00407448 0) (1.00416 0.00409731 0) (1.00435 0.00411038 0) (1.00453 0.00411344 0) (1.00472 0.00410672 0) (1.0049 0.00409088 0) (1.00509 0.00406698 0) (1.00527 0.00403634 0) (1.00545 0.00400045 0) (1.00563 0.00396086 0) (1.00581 0.00391905 0) (1.00599 0.00387631 0) (1.00617 0.00383368 0) (1.00634 0.00379194 0) (1.00651 0.00375155 0) (1.00668 0.00371279 0) (1.00685 0.00367565 0) (1.00701 0.00364004 0) (1.00717 0.0036057 0) (1.00733 0.00357234 0) (1.00749 0.0035396 0) (1 9.75073e-05 0) (1.00002 0.000294269 0) (1.00005 0.00049151 0) (1.00009 0.000688975 0) (1.00015 0.000886117 0) (1.00023 0.00108225 0) (1.00031 0.00127683 0) (1.00041 0.00146949 0) (1.00052 0.00165976 0) (1.00064 0.00184683 0) (1.00076 0.00202973 0) (1.0009 0.0022075 0) (1.00104 0.00237926 0) (1.00119 0.00254383 0) (1.00134 0.00269944 0) (1.0015 0.0028437 0) (1.00167 0.00297406 0) (1.00184 0.00308867 0) (1.00201 0.00318707 0) (1.00219 0.00327046 0) (1.00236 0.00334147 0) (1.00254 0.00340346 0) (1.00273 0.00345964 0) (1.00291 0.00351241 0) (1.00309 0.00356299 0) (1.00328 0.00361142 0) (1.00347 0.0036568 0) (1.00365 0.00369768 0) (1.00384 0.00373248 0) (1.00403 0.00375972 0) (1.00422 0.00377827 0) (1.00441 0.00378742 0) (1.00459 0.00378694 0) (1.00478 0.00377705 0) (1.00496 0.0037584 0) (1.00515 0.00373203 0) (1.00533 0.00369924 0) (1.00551 0.0036615 0) (1.00569 0.00362034 0) (1.00586 0.00357719 0) (1.00604 0.00353334 0) (1.00621 0.00348981 0) (1.00638 0.00344735 0) (1.00655 0.00340642 0) (1.00672 0.00336728 0) (1.00688 0.00332993 0) (1.00704 0.00329427 0) (1.0072 0.00326003 0) (1.00736 0.00322693 0) (1.00751 0.00319463 0) (1 8.86001e-05 0) (1.00002 0.000267679 0) (1.00005 0.000447565 0) (1.0001 0.000628073 0) (1.00016 0.000808723 0) (1.00023 0.000988884 0) (1.00032 0.00116806 0) (1.00042 0.0013459 0) (1.00053 0.00152195 0) (1.00065 0.00169544 0) (1.00078 0.00186539 0) (1.00092 0.00203086 0) (1.00106 0.00219094 0) (1.00121 0.00234449 0) (1.00137 0.00248972 0) (1.00154 0.00262424 0) (1.0017 0.00274553 0) (1.00188 0.00285172 0) (1.00205 0.00294231 0) (1.00223 0.00301845 0) (1.00241 0.00308268 0) (1.00259 0.00313828 0) (1.00278 0.00318838 0) (1.00296 0.00323534 0) (1.00315 0.00328036 0) (1.00334 0.00332346 0) (1.00353 0.00336377 0) (1.00372 0.00339988 0) (1.0039 0.00343022 0) (1.00409 0.00345334 0) (1.00428 0.00346813 0) (1.00447 0.0034739 0) (1.00466 0.0034704 0) (1.00484 0.00345787 0) (1.00503 0.00343695 0) (1.00521 0.00340864 0) (1.00539 0.00337422 0) (1.00557 0.00333515 0) (1.00575 0.0032929 0) (1.00592 0.00324891 0) (1.0061 0.00320441 0) (1.00627 0.0031604 0) (1.00644 0.00311763 0) (1.0066 0.00307655 0) (1.00677 0.00303739 0) (1.00693 0.00300016 0) (1.00709 0.00296475 0) (1.00724 0.0029309 0) (1.0074 0.00289832 0) (1.00755 0.00286667 0) (1 7.97452e-05 0) (1.00002 0.000241243 0) (1.00005 0.000403873 0) (1.0001 0.000567526 0) (1.00016 0.000731789 0) (1.00024 0.000896089 0) (1.00033 0.00105997 0) (1.00043 0.00122312 0) (1.00054 0.0013851 0) (1.00067 0.00154516 0) (1.0008 0.00170232 0) (1.00094 0.00185566 0) (1.00109 0.00200427 0) (1.00124 0.00214699 0) (1.00141 0.00228205 0) (1.00157 0.00240709 0) (1.00174 0.00251958 0) (1.00192 0.00261765 0) (1.0021 0.00270076 0) (1.00228 0.00277001 0) (1.00246 0.00282784 0) (1.00265 0.00287745 0) (1.00284 0.00292189 0) (1.00302 0.00296347 0) (1.00321 0.00300336 0) (1.0034 0.00304158 0) (1.00359 0.00307729 0) (1.00378 0.00310908 0) (1.00397 0.00313542 0) (1.00416 0.0031549 0) (1.00435 0.00316641 0) (1.00454 0.00316927 0) (1.00473 0.00316324 0) (1.00491 0.00314855 0) (1.0051 0.00312582 0) (1.00528 0.00309603 0) (1.00546 0.00306044 0) (1.00564 0.00302047 0) (1.00581 0.00297757 0) (1.00599 0.00293314 0) (1.00616 0.00288837 0) (1.00633 0.00284427 0) (1.0065 0.00280154 0) (1.00666 0.00276062 0) (1.00682 0.00272174 0) (1.00698 0.00268491 0) (1.00714 0.00265 0) (1.00729 0.00261676 0) (1.00744 0.00258489 0) (1.00759 0.00255408 0) (1 7.09217e-05 0) (1.00002 0.000214899 0) (1.00005 0.000360336 0) (1.0001 0.000507201 0) (1.00017 0.000655154 0) (1.00025 0.000803679 0) (1.00034 0.000952368 0) (1.00044 0.00110094 0) (1.00056 0.00124898 0) (1.00068 0.00139575 0) (1.00082 0.00154029 0) (1.00096 0.00168168 0) (1.00112 0.001819 0) (1.00128 0.00195111 0) (1.00144 0.00207625 0) (1.00161 0.00219206 0) (1.00179 0.00229602 0) (1.00197 0.00238627 0) (1.00215 0.00246223 0) (1.00233 0.00252493 0) (1.00252 0.00257673 0) (1.00271 0.00262073 0) (1.0029 0.00265991 0) (1.00309 0.00269653 0) (1.00328 0.00273171 0) (1.00347 0.00276549 0) (1.00366 0.00279702 0) (1.00385 0.00282494 0) (1.00404 0.00284772 0) (1.00424 0.00286399 0) (1.00443 0.00287265 0) (1.00461 0.00287303 0) (1.0048 0.00286491 0) (1.00499 0.00284848 0) (1.00517 0.00282436 0) (1.00535 0.00279351 0) (1.00553 0.00275715 0) (1.00571 0.00271666 0) (1.00589 0.00267348 0) (1.00606 0.00262895 0) (1.00623 0.00258427 0) (1.0064 0.00254037 0) (1.00656 0.00249797 0) (1.00673 0.0024575 0) (1.00689 0.00241915 0) (1.00704 0.00238294 0) (1.0072 0.00234873 0) (1.00735 0.00231629 0) (1.0075 0.00228531 0) (1.00765 0.00225547 0) (1 6.21091e-05 0) (1.00002 0.000188587 0) (1.00005 0.000316857 0) (1.0001 0.000446969 0) (1.00017 0.000578658 0) (1.00025 0.000711475 0) (1.00035 0.000845055 0) (1.00046 0.000979151 0) (1.00057 0.00111337 0) (1.0007 0.00124699 0) (1.00084 0.00137908 0) (1.00099 0.00150869 0) (1.00115 0.00163494 0) (1.00131 0.00175666 0) (1.00148 0.00187212 0) (1.00165 0.00197896 0) (1.00183 0.0020747 0) (1.00202 0.00215743 0) (1.0022 0.00222656 0) (1.00239 0.00228304 0) (1.00258 0.00232918 0) (1.00277 0.00236795 0) (1.00296 0.00240227 0) (1.00316 0.00243431 0) (1.00335 0.00246519 0) (1.00354 0.00249493 0) (1.00374 0.00252269 0) (1.00393 0.00254713 0) (1.00412 0.00256676 0) (1.00431 0.00258022 0) (1.0045 0.00258643 0) (1.00469 0.00258474 0) (1.00488 0.00257491 0) (1.00507 0.00255712 0) (1.00525 0.00253198 0) (1.00543 0.00250043 0) (1.00561 0.00246365 0) (1.00579 0.002423 0) (1.00597 0.00237986 0) (1.00614 0.00233555 0) (1.00631 0.00229122 0) (1.00648 0.00224781 0) (1.00664 0.00220599 0) (1.0068 0.00216618 0) (1.00696 0.00212857 0) (1.00712 0.00209317 0) (1.00727 0.00205985 0) (1.00742 0.00202836 0) (1.00757 0.00199839 0) (1.00771 0.00196964 0) (1 5.32875e-05 0) (1.00002 0.000162248 0) (1.00005 0.000273341 0) (1.00011 0.000386704 0) (1.00018 0.000502148 0) (1.00026 0.000619295 0) (1.00036 0.000737833 0) (1.00047 0.000857546 0) (1.00059 0.000978063 0) (1.00073 0.00109868 0) (1.00087 0.00121846 0) (1.00102 0.0013365 0) (1.00118 0.00145188 0) (1.00135 0.00156345 0) (1.00152 0.00166948 0) (1.0017 0.00176762 0) (1.00188 0.0018554 0) (1.00207 0.00193092 0) (1.00226 0.00199354 0) (1.00245 0.00204415 0) (1.00264 0.00208497 0) (1.00284 0.00211889 0) (1.00303 0.00214872 0) (1.00323 0.00217659 0) (1.00342 0.00220356 0) (1.00362 0.00222964 0) (1.00382 0.00225402 0) (1.00401 0.00227537 0) (1.00421 0.00229223 0) (1.0044 0.00230325 0) (1.00459 0.00230738 0) (1.00478 0.00230397 0) (1.00497 0.00229278 0) (1.00516 0.00227399 0) (1.00534 0.00224818 0) (1.00552 0.00221625 0) (1.0057 0.00217936 0) (1.00588 0.00213883 0) (1.00605 0.00209601 0) (1.00623 0.00205218 0) (1.00639 0.00200847 0) (1.00656 0.00196577 0) (1.00672 0.00192475 0) (1.00688 0.0018858 0) (1.00704 0.00184912 0) (1.0072 0.00181469 0) (1.00735 0.00178239 0) (1.0075 0.00175198 0) (1.00764 0.00172314 0) (1.00779 0.00169558 0) (1 4.44365e-05 0) (1.00002 0.000135825 0) (1.00006 0.000229694 0) (1.00011 0.000326275 0) (1.00018 0.000425469 0) (1.00027 0.000526967 0) (1.00037 0.00063051 0) (1.00049 0.000735918 0) (1.00061 0.000842841 0) (1.00075 0.000950587 0) (1.0009 0.00105824 0) (1.00105 0.00116489 0) (1.00122 0.00126963 0) (1.00139 0.0013713 0) (1.00157 0.00146816 0) (1.00175 0.00155788 0) (1.00194 0.001638 0) (1.00213 0.0017066 0) (1.00232 0.00176303 0) (1.00252 0.00180812 0) (1.00271 0.00184397 0) (1.00291 0.00187339 0) (1.00311 0.0018991 0) (1.00331 0.00192315 0) (1.00351 0.00194659 0) (1.0037 0.00196939 0) (1.0039 0.00199075 0) (1.0041 0.00200938 0) (1.00429 0.00202382 0) (1.00449 0.00203276 0) (1.00468 0.00203516 0) (1.00487 0.00203037 0) (1.00506 0.00201814 0) (1.00525 0.00199866 0) (1.00543 0.00197247 0) (1.00562 0.00194046 0) (1.0058 0.00190374 0) (1.00597 0.0018636 0) (1.00615 0.00182135 0) (1.00632 0.00177824 0) (1.00649 0.00173536 0) (1.00665 0.00169358 0) (1.00681 0.00165354 0) (1.00697 0.00161562 0) (1.00713 0.00158001 0) (1.00728 0.00154669 0) (1.00743 0.00151553 0) (1.00758 0.0014863 0) (1.00773 0.00145868 0) (1.00787 0.00143238 0) (1 3.55365e-05 0) (1.00002 0.000109258 0) (1.00006 0.000185821 0) (1.00012 0.000265558 0) (1.00019 0.000348462 0) (1.00028 0.000434308 0) (1.00039 0.000522894 0) (1.0005 0.000614067 0) (1.00063 0.000707499 0) (1.00078 0.000802514 0) (1.00093 0.000898207 0) (1.00109 0.000993667 0) (1.00126 0.00108799 0) (1.00143 0.00118 0) (1.00162 0.00126796 0) (1.0018 0.00134954 0) (1.00199 0.00142229 0) (1.00219 0.00148431 0) (1.00239 0.00153488 0) (1.00259 0.00157477 0) (1.00279 0.00160601 0) (1.00299 0.00163129 0) (1.00319 0.00165324 0) (1.00339 0.00167384 0) (1.00359 0.00169409 0) (1.00379 0.00171397 0) (1.00399 0.00173266 0) (1.00419 0.0017489 0) (1.00439 0.00176127 0) (1.00458 0.00176846 0) (1.00478 0.00176944 0) (1.00497 0.00176358 0) (1.00516 0.00175062 0) (1.00535 0.00173073 0) (1.00554 0.00170443 0) (1.00572 0.00167259 0) (1.0059 0.0016363 0) (1.00607 0.00159679 0) (1.00625 0.00155533 0) (1.00642 0.00151314 0) (1.00659 0.00147127 0) (1.00675 0.00143058 0) (1.00691 0.00139168 0) (1.00707 0.00135494 0) (1.00723 0.00132053 0) (1.00738 0.00128845 0) (1.00753 0.00125853 0) (1.00768 0.00123056 0) (1.00782 0.00120423 0) (1.00796 0.00117927 0) (1 2.65673e-05 0) (1.00002 8.24881e-05 0) (1.00006 0.000141627 0) (1.00012 0.000204431 0) (1.0002 0.000270985 0) (1.00029 0.000341151 0) (1.0004 0.000414789 0) (1.00052 0.000491778 0) (1.00066 0.000571812 0) (1.0008 0.000654236 0) (1.00096 0.000738151 0) (1.00113 0.000822639 0) (1.0013 0.000906787 0) (1.00148 0.000989405 0) (1.00167 0.00106874 0) (1.00186 0.00114248 0) (1.00206 0.00120816 0) (1.00226 0.00126389 0) (1.00246 0.00130893 0) (1.00266 0.00134397 0) (1.00287 0.00137094 0) (1.00307 0.00139242 0) (1.00327 0.00141096 0) (1.00348 0.00142847 0) (1.00368 0.00144589 0) (1.00389 0.00146319 0) (1.00409 0.00147956 0) (1.00429 0.00149374 0) (1.00449 0.00150434 0) (1.00469 0.00151008 0) (1.00488 0.00150994 0) (1.00508 0.00150329 0) (1.00527 0.00148989 0) (1.00546 0.00146987 0) (1.00564 0.00144373 0) (1.00583 0.0014123 0) (1.00601 0.00137664 0) (1.00618 0.00133796 0) (1.00636 0.00129748 0) (1.00653 0.00125639 0) (1.00669 0.00121571 0) (1.00686 0.00117626 0) (1.00702 0.00113863 0) (1.00718 0.00110319 0) (1.00733 0.0010701 0) (1.00748 0.00103933 0) (1.00763 0.00101076 0) (1.00778 0.00098414 0) (1.00792 0.000959165 0) (1.00806 0.000935571 0) (1 1.75098e-05 0) (1.00002 5.54568e-05 0) (1.00006 9.70083e-05 0) (1.00013 0.000142739 0) (1.00021 0.000192867 0) (1.0003 0.000247338 0) (1.00042 0.000306049 0) (1.00054 0.000368912 0) (1.00068 0.000435645 0) (1.00083 0.000505609 0) (1.001 0.000577921 0) (1.00117 0.000651657 0) (1.00135 0.000725873 0) (1.00153 0.000799355 0) (1.00173 0.000870344 0) (1.00192 0.000936527 0) (1.00212 0.000995462 0) (1.00233 0.00104523 0) (1.00253 0.00108507 0) (1.00274 0.0011156 0) (1.00295 0.00113865 0) (1.00316 0.00115669 0) (1.00337 0.00117217 0) (1.00357 0.00118692 0) (1.00378 0.00120184 0) (1.00399 0.00121688 0) (1.00419 0.00123125 0) (1.00439 0.0012437 0) (1.0046 0.00125285 0) (1.00479 0.00125743 0) (1.00499 0.00125645 0) (1.00519 0.00124928 0) (1.00538 0.00123566 0) (1.00557 0.00121572 0) (1.00576 0.00118997 0) (1.00594 0.00115918 0) (1.00612 0.00112437 0) (1.0063 0.0010867 0) (1.00647 0.00104739 0) (1.00664 0.00100755 0) (1.00681 0.000968203 0) (1.00697 0.000930127 0) (1.00713 0.000893898 0) (1.00729 0.000859864 0) (1.00745 0.000828178 0) (1.0076 0.000798818 0) (1.00775 0.000771645 0) (1.00789 0.00074643 0) (1.00803 0.000722862 0) (1.00817 0.000700682 0) (1 8.36533e-06 0) (1.00002 2.81403e-05 0) (1.00007 5.19068e-05 0) (1.00013 8.03709e-05 0) (1.00021 0.000113871 0) (1.00032 0.000152518 0) (1.00043 0.000196268 0) (1.00057 0.000245051 0) (1.00071 0.000298603 0) (1.00087 0.000356289 0) (1.00104 0.000417221 0) (1.00121 0.000480451 0) (1.0014 0.000544999 0) (1.00159 0.000609629 0) (1.00179 0.000672572 0) (1.00199 0.000731523 0) (1.0022 0.000784038 0) (1.0024 0.000828193 0) (1.00262 0.00086317 0) (1.00283 0.000889528 0) (1.00304 0.000908999 0) (1.00325 0.000923947 0) (1.00346 0.000936712 0) (1.00367 0.000949045 0) (1.00388 0.000961792 0) (1.00409 0.000974896 0) (1.0043 0.000987558 0) (1.00451 0.000998558 0) (1.00471 0.00100654 0) (1.00491 0.00101025 0) (1.00511 0.00100871 0) (1.0053 0.00100128 0) (1.0055 0.000987695 0) (1.00569 0.000968071 0) (1.00588 0.000942886 0) (1.00606 0.000912912 0) (1.00624 0.000879131 0) (1.00642 0.00084266 0) (1.00659 0.000804657 0) (1.00676 0.000766227 0) (1.00693 0.000728334 0) (1.0071 0.000691751 0) (1.00726 0.000657031 0) (1.00741 0.000624501 0) (1.00757 0.000594304 0) (1.00772 0.000566416 0) (1.00786 0.000540702 0) (1.00801 0.000516942 0) (1.00815 0.000494823 0) (1.00829 0.000474096 0) (1 -9.23984e-07 0) (1.00002 4.50633e-07 0) (1.00007 6.25714e-06 0) (1.00014 1.73681e-05 0) (1.00022 3.42651e-05 0) (1.00033 5.70265e-05 0) (1.00045 8.57439e-05 0) (1.00059 0.000120451 0) (1.00074 0.000160886 0) (1.0009 0.00020641 0) (1.00108 0.000256111 0) (1.00126 0.000309016 0) (1.00145 0.000364119 0) (1.00165 0.000420162 0) (1.00185 0.000475357 0) (1.00206 0.000527399 0) (1.00227 0.00057383 0) (1.00249 0.000612708 0) (1.0027 0.00064318 0) (1.00292 0.000665715 0) (1.00314 0.000681933 0) (1.00335 0.000694114 0) (1.00357 0.000704487 0) (1.00378 0.000714725 0) (1.00399 0.000725635 0) (1.00421 0.000737125 0) (1.00441 0.000748407 0) (1.00462 0.000758254 0) (1.00483 0.000765326 0) (1.00503 0.000768412 0) (1.00523 0.000766533 0) (1.00543 0.00075906 0) (1.00562 0.000745738 0) (1.00582 0.000726656 0) (1.006 0.000702258 0) (1.00619 0.000673279 0) (1.00637 0.000640678 0) (1.00655 0.000605539 0) (1.00672 0.000568985 0) (1.00689 0.000532078 0) (1.00706 0.000495757 0) (1.00722 0.000460755 0) (1.00738 0.000427618 0) (1.00754 0.000396668 0) (1.00769 0.000368037 0) (1.00785 0.000341694 0) (1.00799 0.000317499 0) (1.00814 0.000295235 0) (1.00828 0.000274598 0) (1.00842 0.000255345 0) (1 -1.04207e-05 0) (1.00003 -2.78368e-05 0) (1.00007 -4.0318e-05 0) (1.00014 -4.68437e-05 0) (1.00023 -4.68003e-05 0) (1.00035 -3.99947e-05 0) (1.00047 -2.62631e-05 0) (1.00062 -5.54656e-06 0) (1.00077 2.18991e-05 0) (1.00094 5.54308e-05 0) (1.00112 9.41185e-05 0) (1.00131 0.000136964 0) (1.00151 0.000182926 0) (1.00172 0.000230707 0) (1.00192 0.000278496 0) (1.00214 0.000323978 0) (1.00236 0.00036469 0) (1.00257 0.000398649 0) (1.00279 0.000424958 0) (1.00302 0.000444018 0) (1.00324 0.000457357 0) (1.00346 0.000467113 0) (1.00368 0.000475437 0) (1.00389 0.000483898 0) (1.00411 0.000493262 0) (1.00432 0.000503426 0) (1.00454 0.000513593 0) (1.00475 0.000522559 0) (1.00495 0.000529015 0) (1.00516 0.000531738 0) (1.00536 0.000529765 0) (1.00556 0.000522471 0) (1.00576 0.000509606 0) (1.00595 0.000491245 0) (1.00614 0.000467808 0) (1.00632 0.000439993 0) (1.00651 0.00040872 0) (1.00668 0.000375047 0) (1.00686 0.000340061 0) (1.00703 0.000304785 0) (1.0072 0.000270131 0) (1.00736 0.00023681 0) (1.00752 0.000205342 0) (1.00768 0.000176039 0) (1.00783 0.000149028 0) (1.00798 0.000124276 0) (1.00813 0.00010164 0) (1.00827 8.09097e-05 0) (1.00841 6.17857e-05 0) (1.00855 4.40288e-05 0) (1 -2.01058e-05 0) (1.00003 -5.67189e-05 0) (1.00008 -8.78742e-05 0) (1.00015 -0.000112383 0) (1.00025 -0.000129493 0) (1.00036 -0.000138759 0) (1.0005 -0.000140011 0) (1.00065 -0.000133219 0) (1.00081 -0.000118619 0) (1.00099 -9.68664e-05 0) (1.00117 -6.89232e-05 0) (1.00137 -3.58266e-05 0) (1.00157 1.33303e-06 0) (1.00179 4.12047e-05 0) (1.002 8.19381e-05 0) (1.00222 0.000121185 0) (1.00244 0.000156499 0) (1.00267 0.000185912 0) (1.00289 0.000208447 0) (1.00312 0.000224404 0) (1.00335 0.000235209 0) (1.00357 0.000242881 0) (1.00379 0.000249461 0) (1.00401 0.000256467 0) (1.00423 0.000264602 0) (1.00445 0.000273739 0) (1.00466 0.000283073 0) (1.00488 0.000291429 0) (1.00509 0.000297511 0) (1.00529 0.000300107 0) (1.0055 0.000298268 0) (1.0057 0.000291372 0) (1.0059 0.000279138 0) (1.00609 0.000261655 0) (1.00628 0.000239314 0) (1.00647 0.000212804 0) (1.00665 0.000183009 0) (1.00683 0.000150934 0) (1.007 0.00011763 0) (1.00717 8.40967e-05 0) (1.00734 5.11983e-05 0) (1.0075 1.96388e-05 0) (1.00766 -1.00856e-05 0) (1.00782 -3.76877e-05 0) (1.00797 -6.30379e-05 0) (1.00812 -8.61632e-05 0) (1.00827 -0.000107207 0) (1.00841 -0.000126378 0) (1.00855 -0.000143973 0) (1.00869 -0.000160223 0) (1 -2.99861e-05 0) (1.00003 -8.61519e-05 0) (1.00008 -0.000136296 0) (1.00016 -0.000179002 0) (1.00026 -0.000213335 0) (1.00038 -0.000238799 0) (1.00052 -0.000255144 0) (1.00068 -0.000262279 0) (1.00085 -0.000260446 0) (1.00103 -0.000250327 0) (1.00123 -0.000232912 0) (1.00143 -0.0002093 0) (1.00164 -0.000180644 0) (1.00186 -0.000148352 0) (1.00208 -0.000114312 0) (1.00231 -8.08939e-05 0) (1.00254 -5.05703e-05 0) (1.00277 -2.53395e-05 0) (1.003 -6.23654e-06 0) (1.00323 6.95259e-06 0) (1.00346 1.55361e-05 0) (1.00369 2.14515e-05 0) (1.00392 2.66141e-05 0) (1.00414 3.24807e-05 0) (1.00436 3.9695e-05 0) (1.00458 4.80894e-05 0) (1.0048 5.68751e-05 0) (1.00501 6.48731e-05 0) (1.00523 7.07893e-05 0) (1.00544 7.34569e-05 0) (1.00564 7.1939e-05 0) (1.00584 6.56155e-05 0) (1.00604 5.41959e-05 0) (1.00624 3.77594e-05 0) (1.00643 1.66807e-05 0) (1.00661 -8.38882e-06 0) (1.0068 -3.66021e-05 0) (1.00698 -6.69837e-05 0) (1.00715 -9.8519e-05 0) (1.00732 -0.00013024 0) (1.00749 -0.00016131 0) (1.00766 -0.000191055 0) (1.00782 -0.000218995 0) (1.00797 -0.000244846 0) (1.00812 -0.000268486 0) (1.00827 -0.000289952 0) (1.00842 -0.000309381 0) (1.00856 -0.000326976 0) (1.0087 -0.000343028 0) (1.00884 -0.000357761 0) (1 -4.00994e-05 0) (1.00003 -0.00011627 0) (1.00009 -0.000185807 0) (1.00017 -0.000247071 0) (1.00027 -0.00029895 0) (1.0004 -0.000340807 0) (1.00055 -0.000372298 0) (1.00071 -0.000393309 0) (1.00089 -0.0004041 0) (1.00108 -0.00040539 0) (1.00129 -0.000398228 0) (1.0015 -0.000383783 0) (1.00172 -0.000363276 0) (1.00194 -0.000338175 0) (1.00217 -0.000310413 0) (1.0024 -0.000282391 0) (1.00264 -0.000256633 0) (1.00287 -0.000235216 0) (1.00311 -0.000219205 0) (1.00335 -0.000208441 0) (1.00358 -0.000201714 0) (1.00381 -0.000197225 0) (1.00404 -0.000193141 0) (1.00427 -0.000188123 0) (1.0045 -0.000181571 0) (1.00472 -0.000173663 0) (1.00494 -0.000165198 0) (1.00516 -0.000157338 0) (1.00537 -0.000151344 0) (1.00558 -0.000148378 0) (1.00579 -0.000149369 0) (1.00599 -0.00015494 0) (1.00619 -0.000165365 0) (1.00639 -0.000180603 0) (1.00658 -0.000200291 0) (1.00677 -0.000223815 0) (1.00695 -0.00025035 0) (1.00713 -0.000278949 0) (1.00731 -0.000308634 0) (1.00748 -0.000338479 0) (1.00765 -0.000367662 0) (1.00781 -0.000395538 0) (1.00797 -0.00042164 0) (1.00813 -0.000445697 0) (1.00828 -0.000467597 0) (1.00843 -0.000487372 0) (1.00858 -0.000505161 0) (1.00872 -0.000521161 0) (1.00886 -0.000535658 0) (1.009 -0.000548868 0) (1 -5.0478e-05 0) (1.00003 -0.000147162 0) (1.00009 -0.000236554 0) (1.00018 -0.000316756 0) (1.00029 -0.00038644 0) (1.00042 -0.000444828 0) (1.00058 -0.000491497 0) (1.00075 -0.000526323 0) (1.00094 -0.00054959 0) (1.00114 -0.000562072 0) (1.00135 -0.00056489 0) (1.00157 -0.000559285 0) (1.0018 -0.000546564 0) (1.00203 -0.000528273 0) (1.00226 -0.000506414 0) (1.0025 -0.000483438 0) (1.00274 -0.000461904 0) (1.00299 -0.000443911 0) (1.00323 -0.000430586 0) (1.00347 -0.000421866 0) (1.00371 -0.000416654 0) (1.00395 -0.00041326 0) (1.00418 -0.000409966 0) (1.00441 -0.000405503 0) (1.00464 -0.000399321 0) (1.00487 -0.000391624 0) (1.00509 -0.000383214 0) (1.00531 -0.000375238 0) (1.00553 -0.000368946 0) (1.00574 -0.000365487 0) (1.00595 -0.000365777 0) (1.00615 -0.000370428 0) (1.00635 -0.000379728 0) (1.00655 -0.000393639 0) (1.00675 -0.000411823 0) (1.00693 -0.000433685 0) (1.00712 -0.000458433 0) (1.0073 -0.000485159 0) (1.00747 -0.000512919 0) (1.00765 -0.000540812 0) (1.00781 -0.000568051 0) (1.00798 -0.000594009 0) (1.00814 -0.000618235 0) (1.00829 -0.000640468 0) (1.00845 -0.000660601 0) (1.0086 -0.000678666 0) (1.00874 -0.0006948 0) (1.00888 -0.000709195 0) (1.00902 -0.00072213 0) (1.00916 -0.000733817 0) (1 -6.11528e-05 0) (1.00003 -0.000178918 0) (1.0001 -0.000288668 0) (1.00019 -0.000388215 0) (1.00031 -0.000476001 0) (1.00045 -0.000551095 0) (1.00061 -0.000612999 0) (1.00079 -0.00066158 0) (1.00099 -0.000697164 0) (1.0012 -0.000720594 0) (1.00142 -0.000733076 0) (1.00165 -0.000735949 0) (1.00188 -0.000730621 0) (1.00212 -0.000718735 0) (1.00236 -0.000702365 0) (1.00261 -0.000684016 0) (1.00286 -0.000666282 0) (1.00311 -0.000651308 0) (1.00335 -0.00064029 0) (1.0036 -0.000633258 0) (1.00384 -0.000629222 0) (1.00409 -0.000626603 0) (1.00433 -0.000623786 0) (1.00456 -0.000619584 0) (1.00479 -0.000613498 0) (1.00502 -0.000605759 0) (1.00525 -0.000597167 0) (1.00547 -0.000588862 0) (1.00569 -0.000582075 0) (1.0059 -0.000577938 0) (1.00611 -0.000577355 0) (1.00632 -0.000580934 0) (1.00652 -0.000588967 0) (1.00672 -0.000601425 0) (1.00691 -0.000617992 0) (1.0071 -0.000638096 0) (1.00729 -0.000660978 0) (1.00747 -0.00068576 0) (1.00765 -0.000711532 0) (1.00782 -0.000737424 0) (1.00799 -0.000762673 0) (1.00815 -0.000786675 0) (1.00831 -0.000808994 0) (1.00847 -0.000829378 0) (1.00862 -0.000847723 0) (1.00877 -0.000864064 0) (1.00891 -0.000878532 0) (1.00906 -0.000891317 0) (1.0092 -0.00090269 0) (1.00933 -0.000912855 0) (1 -7.21556e-05 0) (1.00004 -0.00021163 0) (1.0001 -0.000342294 0) (1.0002 -0.000461638 0) (1.00032 -0.00056785 0) (1.00047 -0.000659832 0) (1.00065 -0.000737015 0) (1.00084 -0.000799268 0) (1.00104 -0.000846977 0) (1.00126 -0.000881076 0) (1.00149 -0.00090288 0) (1.00173 -0.000913846 0) (1.00197 -0.000915499 0) (1.00222 -0.000909586 0) (1.00247 -0.000898268 0) (1.00272 -0.00088411 0) (1.00298 -0.000869756 0) (1.00323 -0.000857401 0) (1.00349 -0.00084831 0) (1.00374 -0.000842605 0) (1.00399 -0.000839401 0) (1.00423 -0.000837236 0) (1.00448 -0.000834596 0) (1.00472 -0.000830373 0) (1.00495 -0.000824123 0) (1.00518 -0.000816096 0) (1.00541 -0.000807098 0) (1.00564 -0.000798254 0) (1.00586 -0.00079078 0) (1.00607 -0.000785789 0) (1.00628 -0.000784175 0) (1.00649 -0.00078654 0) (1.0067 -0.000793179 0) (1.0069 -0.000804074 0) (1.00709 -0.000818926 0) (1.00728 -0.000837188 0) (1.00747 -0.00085813 0) (1.00765 -0.000880907 0) (1.00783 -0.000904638 0) (1.008 -0.000928484 0) (1.00817 -0.000951707 0) (1.00833 -0.000973723 0) (1.00849 -0.000994111 0) (1.00865 -0.00101263 0) (1.0088 -0.00102917 0) (1.00895 -0.00104378 0) (1.00909 -0.00105658 0) (1.00924 -0.00106775 0) (1.00937 -0.00107756 0) (1.00951 -0.00108621 0) (1 -8.35202e-05 0) (1.00004 -0.000245396 0) (1.00011 -0.000397585 0) (1.00021 -0.000537216 0) (1.00034 -0.000662197 0) (1.0005 -0.000771255 0) (1.00069 -0.000863749 0) (1.00089 -0.00093957 0) (1.0011 -0.000999188 0) (1.00133 -0.00104365 0) (1.00157 -0.00107441 0) (1.00182 -0.00109305 0) (1.00207 -0.00110124 0) (1.00233 -0.00110085 0) (1.00258 -0.00109413 0) (1.00285 -0.00108371 0) (1.00311 -0.00107231 0) (1.00337 -0.00106216 0) (1.00363 -0.00105461 0) (1.00388 -0.00104987 0) (1.00414 -0.00104716 0) (1.00439 -0.00104513 0) (1.00464 -0.00104238 0) (1.00488 -0.00103786 0) (1.00512 -0.00103119 0) (1.00535 -0.00102265 0) (1.00558 -0.00101303 0) (1.00581 -0.00100345 0) (1.00603 -0.000995103 0) (1.00625 -0.000989096 0) (1.00646 -0.000986304 0) (1.00667 -0.000987326 0) (1.00688 -0.000992455 0) (1.00708 -0.00100169 0) (1.00727 -0.00101474 0) (1.00747 -0.00103108 0) (1.00765 -0.00105002 0) (1.00783 -0.00107074 0) (1.00801 -0.00109239 0) (1.00818 -0.00111415 0) (1.00835 -0.00113532 0) (1.00852 -0.00115533 0) (1.00868 -0.00117377 0) (1.00883 -0.0011904 0) (1.00899 -0.00120514 0) (1.00914 -0.001218 0) (1.00928 -0.00122913 0) (1.00942 -0.00123869 0) (1.00956 -0.00124695 0) (1.0097 -0.00125409 0) (1 -9.52826e-05 0) (1.00004 -0.000280318 0) (1.00011 -0.000454698 0) (1.00023 -0.000615147 0) (1.00037 -0.000759262 0) (1.00054 -0.000885583 0) (1.00073 -0.000993409 0) (1.00094 -0.00108267 0) (1.00117 -0.00115395 0) (1.0014 -0.00120844 0) (1.00165 -0.00124774 0) (1.00191 -0.00127362 0) (1.00217 -0.00128788 0) (1.00244 -0.00129253 0) (1.00271 -0.00128993 0) (1.00297 -0.0012828 0) (1.00324 -0.0012739 0) (1.00351 -0.00126555 0) (1.00378 -0.00125915 0) (1.00404 -0.00125501 0) (1.0043 -0.00125246 0) (1.00455 -0.00125027 0) (1.0048 -0.00124711 0) (1.00505 -0.00124204 0) (1.00529 -0.00123471 0) (1.00553 -0.00122541 0) (1.00576 -0.00121497 0) (1.00599 -0.00120446 0) (1.00621 -0.00119508 0) (1.00643 -0.00118791 0) (1.00665 -0.00118381 0) (1.00686 -0.00118336 0) (1.00707 -0.00118688 0) (1.00727 -0.00119436 0) (1.00747 -0.00120553 0) (1.00766 -0.0012199 0) (1.00784 -0.00123678 0) (1.00803 -0.00125539 0) (1.00821 -0.00127492 0) (1.00838 -0.00129457 0) (1.00855 -0.00131367 0) (1.00871 -0.00133165 0) (1.00887 -0.00134813 0) (1.00903 -0.00136287 0) (1.00918 -0.0013758 0) (1.00933 -0.00138693 0) (1.00947 -0.00139638 0) (1.00962 -0.00140434 0) (1.00975 -0.00141105 0) (1.00989 -0.0014167 0) (1 -0.000107481 0) (1.00004 -0.000316507 0) (1.00012 -0.000513803 0) (1.00024 -0.000695639 0) (1.00039 -0.000859272 0) (1.00057 -0.00100304 0) (1.00077 -0.0011262 0) (1.001 -0.00122875 0) (1.00123 -0.0013114 0) (1.00149 -0.00137553 0) (1.00175 -0.00142294 0) (1.00201 -0.00145558 0) (1.00228 -0.00147541 0) (1.00256 -0.00148461 0) (1.00283 -0.00148564 0) (1.00311 -0.00148133 0) (1.00339 -0.00147449 0) (1.00366 -0.00146751 0) (1.00393 -0.00146187 0) (1.0042 -0.00145798 0) (1.00446 -0.00145526 0) (1.00472 -0.00145259 0) (1.00498 -0.00144875 0) (1.00523 -0.00144287 0) (1.00547 -0.00143465 0) (1.00571 -0.0014244 0) (1.00595 -0.00141293 0) (1.00618 -0.00140133 0) (1.00641 -0.00139076 0) (1.00663 -0.00138227 0) (1.00684 -0.00137673 0) (1.00706 -0.00137472 0) (1.00726 -0.00137653 0) (1.00747 -0.00138218 0) (1.00766 -0.0013914 0) (1.00786 -0.00140373 0) (1.00804 -0.00141852 0) (1.00823 -0.00143499 0) (1.00841 -0.00145237 0) (1.00858 -0.00146989 0) (1.00875 -0.00148689 0) (1.00891 -0.00150284 0) (1.00907 -0.00151735 0) (1.00923 -0.00153021 0) (1.00938 -0.00154132 0) (1.00953 -0.00155072 0) (1.00968 -0.00155851 0) (1.00982 -0.00156488 0) (1.00996 -0.00157005 0) (1.01009 -0.00157422 0) (1 -0.000120155 0) (1.00005 -0.000354077 0) (1.00013 -0.000575076 0) (1.00026 -0.000778911 0) (1.00042 -0.000962461 0) (1.00061 -0.00112386 0) (1.00082 -0.00126233 0) (1.00106 -0.00137796 0) (1.00131 -0.00147166 0) (1.00157 -0.00154503 0) (1.00184 -0.00160007 0) (1.00212 -0.00163895 0) (1.0024 -0.00166384 0) (1.00269 -0.00167705 0) (1.00297 -0.00168122 0) (1.00326 -0.00167923 0) (1.00354 -0.001674 0) (1.00382 -0.00166797 0) (1.0041 -0.00166271 0) (1.00437 -0.0016587 0) (1.00464 -0.0016555 0) (1.0049 -0.00165206 0) (1.00516 -0.00164727 0) (1.00541 -0.00164034 0) (1.00566 -0.001631 0) (1.0059 -0.00161959 0) (1.00614 -0.00160692 0) (1.00638 -0.00159406 0) (1.0066 -0.00158215 0) (1.00683 -0.00157223 0) (1.00705 -0.00156514 0) (1.00726 -0.00156146 0) (1.00747 -0.00156148 0) (1.00767 -0.00156523 0) (1.00787 -0.00157245 0) (1.00806 -0.0015827 0) (1.00825 -0.00159534 0) (1.00843 -0.00160965 0) (1.00861 -0.00162486 0) (1.00879 -0.00164024 0) (1.00896 -0.00165514 0) (1.00912 -0.00166904 0) (1.00928 -0.00168159 0) (1.00944 -0.00169256 0) (1.00959 -0.00170186 0) (1.00974 -0.00170953 0) (1.00988 -0.00171568 0) (1.01003 -0.00172046 0) (1.01016 -0.00172412 0) (1.0103 -0.00172682 0) (1 -0.000133349 0) (1.00005 -0.000393153 0) (1.00014 -0.000638707 0) (1.00027 -0.00086519 0) (1.00045 -0.00106907 0) (1.00065 -0.00124827 0) (1.00088 -0.001402 0) (1.00113 -0.00153048 0) (1.00139 -0.00163486 0) (1.00166 -0.00171699 0) (1.00195 -0.00177914 0) (1.00224 -0.00182372 0) (1.00253 -0.00185312 0) (1.00282 -0.00186982 0) (1.00312 -0.00187659 0) (1.00341 -0.00187644 0) (1.0037 -0.00187236 0) (1.00399 -0.00186686 0) (1.00427 -0.00186159 0) (1.00455 -0.00185712 0) (1.00482 -0.00185311 0) (1.00509 -0.00184862 0) (1.00535 -0.00184263 0) (1.00561 -0.00183441 0) (1.00586 -0.00182375 0) (1.0061 -0.00181099 0) (1.00634 -0.00179695 0) (1.00658 -0.00178268 0) (1.00681 -0.00176929 0) (1.00704 -0.00175782 0) (1.00726 -0.00174908 0) (1.00747 -0.00174365 0) (1.00768 -0.00174181 0) (1.00788 -0.00174359 0) (1.00808 -0.00174876 0) (1.00828 -0.00175689 0) (1.00847 -0.00176736 0) (1.00865 -0.00177948 0) (1.00883 -0.00179251 0) (1.009 -0.00180573 0) (1.00917 -0.00181853 0) (1.00934 -0.0018304 0) (1.0095 -0.00184098 0) (1.00965 -0.00185007 0) (1.00981 -0.00185758 0) (1.00995 -0.00186353 0) (1.0101 -0.00186804 0) (1.01024 -0.00187126 0) (1.01038 -0.00187341 0) (1.01051 -0.00187466 0) (1 -0.00014711 0) (1.00005 -0.000433868 0) (1.00015 -0.000704893 0) (1.00029 -0.000954718 0) (1.00048 -0.00117935 0) (1.00069 -0.00137651 0) (1.00094 -0.0015454 0) (1.0012 -0.00168645 0) (1.00148 -0.00180108 0) (1.00177 -0.00189146 0) (1.00206 -0.00196018 0) (1.00236 -0.00200989 0) (1.00266 -0.00204321 0) (1.00297 -0.00206284 0) (1.00327 -0.00207168 0) (1.00357 -0.00207287 0) (1.00387 -0.00206947 0) (1.00416 -0.00206408 0) (1.00445 -0.00205842 0) (1.00473 -0.00205315 0) (1.00501 -0.00204802 0) (1.00528 -0.00204221 0) (1.00555 -0.00203477 0) (1.00581 -0.00202505 0) (1.00606 -0.00201286 0) (1.00631 -0.00199859 0) (1.00656 -0.00198302 0) (1.00679 -0.00196719 0) (1.00702 -0.00195221 0) (1.00725 -0.00193908 0) (1.00747 -0.0019286 0) (1.00769 -0.00192134 0) (1.0079 -0.00191757 0) (1.0081 -0.00191734 0) (1.0083 -0.00192042 0) (1.0085 -0.00192639 0) (1.00869 -0.00193468 0) (1.00887 -0.0019446 0) (1.00905 -0.00195544 0) (1.00923 -0.0019665 0) (1.0094 -0.0019772 0) (1.00956 -0.00198703 0) (1.00972 -0.00199566 0) (1.00988 -0.00200288 0) (1.01003 -0.00200861 0) (1.01018 -0.00201286 0) (1.01032 -0.00201575 0) (1.01046 -0.00201741 0) (1.0106 -0.00201808 0) (1.01074 -0.0020179 0) (1 -0.000161487 0) (1.00006 -0.000476363 0) (1.00016 -0.000773849 0) (1.00032 -0.00104775 0) (1.00051 -0.00129357 0) (1.00074 -0.0015088 0) (1.001 -0.00169272 0) (1.00128 -0.001846 0) (1.00157 -0.00197041 0) (1.00187 -0.00206849 0) (1.00218 -0.00214317 0) (1.00249 -0.0021974 0) (1.00281 -0.00223406 0) (1.00312 -0.00225603 0) (1.00343 -0.0022664 0) (1.00374 -0.00226842 0) (1.00405 -0.00226524 0) (1.00435 -0.00225954 0) (1.00464 -0.00225312 0) (1.00493 -0.00224672 0) (1.00521 -0.00224018 0) (1.00549 -0.00223278 0) (1.00576 -0.00222366 0) (1.00602 -0.00221222 0) (1.00628 -0.00219833 0) (1.00653 -0.00218237 0) (1.00677 -0.00216513 0) (1.00701 -0.00214762 0) (1.00725 -0.00213094 0) (1.00747 -0.00211605 0) (1.0077 -0.00210375 0) (1.00791 -0.00209458 0) (1.00813 -0.00208884 0) (1.00833 -0.00208655 0) (1.00853 -0.00208751 0) (1.00873 -0.00209131 0) (1.00892 -0.00209739 0) (1.0091 -0.00210511 0) (1.00928 -0.00211375 0) (1.00946 -0.00212267 0) (1.00963 -0.00213126 0) (1.00979 -0.00213908 0) (1.00995 -0.00214577 0) (1.01011 -0.00215113 0) (1.01026 -0.00215509 0) (1.01041 -0.00215766 0) (1.01055 -0.00215894 0) (1.01069 -0.00215908 0) (1.01083 -0.00215828 0) (1.01097 -0.0021567 0) (1 -0.000176534 0) (1.00006 -0.000520791 0) (1.00017 -0.0008458 0) (1.00034 -0.00114454 0) (1.00055 -0.00141198 0) (1.0008 -0.00164539 0) (1.00107 -0.00184415 0) (1.00136 -0.00200925 0) (1.00167 -0.0021429 0) (1.00199 -0.00224807 0) (1.00231 -0.00232807 0) (1.00264 -0.00238619 0) (1.00296 -0.00242556 0) (1.00328 -0.0024493 0) (1.00361 -0.00246064 0) (1.00392 -0.00246298 0) (1.00423 -0.00245956 0) (1.00454 -0.00245314 0) (1.00484 -0.00244558 0) (1.00513 -0.00243773 0) (1.00542 -0.0024295 0) (1.0057 -0.00242026 0) (1.00597 -0.00240924 0) (1.00624 -0.00239589 0) (1.0065 -0.00238012 0) (1.00675 -0.00236233 0) (1.007 -0.00234328 0) (1.00724 -0.00232398 0) (1.00748 -0.00230549 0) (1.00771 -0.00228877 0) (1.00793 -0.00227457 0) (1.00815 -0.00226345 0) (1.00836 -0.00225568 0) (1.00857 -0.0022513 0) (1.00877 -0.00225011 0) (1.00896 -0.00225173 0) (1.00915 -0.0022556 0) (1.00934 -0.0022611 0) (1.00952 -0.00226756 0) (1.00969 -0.00227433 0) (1.00986 -0.00228085 0) (1.01003 -0.00228665 0) (1.01019 -0.00229142 0) (1.01035 -0.00229494 0) (1.0105 -0.00229715 0) (1.01065 -0.00229806 0) (1.01079 -0.00229776 0) (1.01093 -0.00229639 0) (1.01107 -0.00229414 0) (1.0112 -0.00229118 0) (1 -0.00019231 0) (1.00007 -0.000567315 0) (1.00019 -0.000920988 0) (1.00037 -0.00124538 0) (1.00059 -0.00153486 0) (1.00086 -0.0017865 0) (1.00115 -0.00199985 0) (1.00146 -0.0021763 0) (1.00178 -0.0023186 0) (1.00211 -0.0024302 0) (1.00245 -0.00251485 0) (1.00279 -0.00257619 0) (1.00312 -0.00261763 0) (1.00346 -0.00264252 0) (1.00379 -0.00265428 0) (1.00411 -0.00265642 0) (1.00443 -0.00265231 0) (1.00474 -0.00264477 0) (1.00505 -0.00263572 0) (1.00535 -0.0026261 0) (1.00564 -0.0026159 0) (1.00592 -0.00260459 0) (1.0062 -0.00259146 0) (1.00647 -0.00257603 0) (1.00673 -0.00255823 0) (1.00699 -0.00253845 0) (1.00724 -0.00251748 0) (1.00748 -0.00249629 0) (1.00772 -0.00247591 0) (1.00795 -0.00245727 0) (1.00817 -0.00244113 0) (1.00839 -0.002428 0) (1.0086 -0.00241817 0) (1.00881 -0.00241167 0) (1.00901 -0.00240832 0) (1.00921 -0.00240773 0) (1.0094 -0.0024094 0) (1.00958 -0.00241269 0) (1.00976 -0.00241697 0) (1.00994 -0.00242161 0) (1.01011 -0.00242606 0) (1.01028 -0.00242987 0) (1.01044 -0.00243273 0) (1.01059 -0.00243444 0) (1.01074 -0.00243493 0) (1.01089 -0.00243419 0) (1.01104 -0.00243233 0) (1.01118 -0.00242948 0) (1.01132 -0.00242581 0) (1.01145 -0.00242149 0) (1 -0.000208877 0) (1.00007 -0.000616111 0) (1.0002 -0.000999669 0) (1.0004 -0.00135056 0) (1.00064 -0.00166249 0) (1.00092 -0.00193237 0) (1.00123 -0.00215998 0) (1.00156 -0.00234725 0) (1.0019 -0.00249751 0) (1.00225 -0.00261484 0) (1.0026 -0.00270343 0) (1.00295 -0.0027673 0) (1.00329 -0.00281015 0) (1.00364 -0.00283558 0) (1.00398 -0.00284718 0) (1.00431 -0.00284862 0) (1.00464 -0.00284337 0) (1.00496 -0.00283431 0) (1.00527 -0.00282344 0) (1.00557 -0.00281175 0) (1.00587 -0.00279933 0) (1.00615 -0.00278572 0) (1.00643 -0.00277029 0) (1.00671 -0.0027526 0) (1.00697 -0.00273262 0) (1.00723 -0.00271075 0) (1.00748 -0.00268774 0) (1.00772 -0.00266456 0) (1.00796 -0.00264221 0) (1.00819 -0.0026216 0) (1.00842 -0.00260345 0) (1.00864 -0.00258829 0) (1.00885 -0.00257637 0) (1.00906 -0.00256773 0) (1.00926 -0.0025622 0) (1.00946 -0.00255942 0) (1.00965 -0.00255887 0) (1.00984 -0.00255997 0) (1.01002 -0.00256209 0) (1.01019 -0.00256461 0) (1.01036 -0.00256701 0) (1.01053 -0.00256886 0) (1.01069 -0.00256983 0) (1.01085 -0.00256975 0) (1.011 -0.00256853 0) (1.01115 -0.00256618 0) (1.01129 -0.00256279 0) (1.01143 -0.00255847 0) (1.01157 -0.00255342 0) (1.0117 -0.00254776 0) (1 -0.000226304 0) (1.00008 -0.00066737 0) (1.00022 -0.00108212 0) (1.00043 -0.00146039 0) (1.00069 -0.00179517 0) (1.00099 -0.00208322 0) (1.00132 -0.00232469 0) (1.00167 -0.00252214 0) (1.00202 -0.00267965 0) (1.00239 -0.00280193 0) (1.00275 -0.00289372 0) (1.00312 -0.0029594 0) (1.00348 -0.00300299 0) (1.00383 -0.00302832 0) (1.00418 -0.00303921 0) (1.00452 -0.00303945 0) (1.00485 -0.00303261 0) (1.00518 -0.00302165 0) (1.0055 -0.00300862 0) (1.0058 -0.00299458 0) (1.0061 -0.0029797 0) (1.0064 -0.00296358 0) (1.00668 -0.00294567 0) (1.00695 -0.00292558 0) (1.00722 -0.00290329 0) (1.00748 -0.00287921 0) (1.00773 -0.00285407 0) (1.00798 -0.00282883 0) (1.00822 -0.00280444 0) (1.00845 -0.0027818 0) (1.00868 -0.00276161 0) (1.0089 -0.00274437 0) (1.00911 -0.00273034 0) (1.00932 -0.00271956 0) (1.00953 -0.00271185 0) (1.00972 -0.00270687 0) (1.00991 -0.00270413 0) (1.0101 -0.00270304 0) (1.01028 -0.00270301 0) (1.01046 -0.00270344 0) (1.01063 -0.00270382 0) (1.01079 -0.00270372 0) (1.01095 -0.00270284 0) (1.01111 -0.00270099 0) (1.01126 -0.00269809 0) (1.01141 -0.00269416 0) (1.01155 -0.00268925 0) (1.01169 -0.00268351 0) (1.01183 -0.00267708 0) (1.01196 -0.00267012 0) (1 -0.000244664 0) (1.00008 -0.000721296 0) (1.00024 -0.00116863 0) (1.00046 -0.00157518 0) (1.00074 -0.00193318 0) (1.00106 -0.00223928 0) (1.00141 -0.0024941 0) (1.00178 -0.00270102 0) (1.00216 -0.00286497 0) (1.00254 -0.00299141 0) (1.00292 -0.0030856 0) (1.0033 -0.00315236 0) (1.00367 -0.003196 0) (1.00403 -0.00322061 0) (1.00439 -0.00323021 0) (1.00474 -0.00322876 0) (1.00508 -0.0032199 0) (1.00541 -0.00320667 0) (1.00573 -0.00319117 0) (1.00605 -0.00317452 0) (1.00635 -0.00315695 0) (1.00665 -0.00313813 0) (1.00693 -0.00311758 0) (1.00721 -0.00309495 0) (1.00748 -0.00307023 0) (1.00774 -0.00304384 0) (1.00799 -0.00301649 0) (1.00824 -0.00298911 0) (1.00848 -0.00296263 0) (1.00872 -0.00293792 0) (1.00894 -0.00291565 0) (1.00917 -0.00289632 0) (1.00938 -0.00288016 0) (1.00959 -0.00286723 0) (1.00979 -0.00285735 0) (1.00999 -0.00285018 0) (1.01018 -0.00284525 0) (1.01037 -0.002842 0) (1.01055 -0.00283984 0) (1.01072 -0.00283821 0) (1.0109 -0.00283658 0) (1.01106 -0.00283457 0) (1.01122 -0.00283186 0) (1.01138 -0.00282827 0) (1.01153 -0.00282373 0) (1.01168 -0.00281823 0) (1.01182 -0.00281184 0) (1.01196 -0.00280469 0) (1.0121 -0.00279693 0) (1.01223 -0.00278869 0) (1 -0.000264039 0) (1.00009 -0.000778111 0) (1.00026 -0.00125953 0) (1.0005 -0.00169529 0) (1.0008 -0.00207682 0) (1.00115 -0.00240075 0) (1.00152 -0.00266832 0) (1.00191 -0.0028839 0) (1.00231 -0.00305342 0) (1.0027 -0.00318315 0) (1.0031 -0.00327896 0) (1.00349 -0.00334604 0) (1.00387 -0.00338903 0) (1.00425 -0.00341228 0) (1.00462 -0.00342004 0) (1.00497 -0.0034164 0) (1.00532 -0.00340512 0) (1.00566 -0.00338927 0) (1.00598 -0.003371 0) (1.0063 -0.00335148 0) (1.00661 -0.003331 0) (1.00691 -0.00330931 0) (1.00719 -0.00328598 0) (1.00747 -0.00326068 0) (1.00775 -0.00323343 0) (1.00801 -0.00320464 0) (1.00827 -0.00317501 0) (1.00851 -0.00314544 0) (1.00876 -0.00311682 0) (1.00899 -0.00309 0) (1.00922 -0.00306564 0) (1.00944 -0.00304419 0) (1.00966 -0.00302591 0) (1.00987 -0.00301082 0) (1.01007 -0.00299878 0) (1.01027 -0.00298943 0) (1.01046 -0.00298234 0) (1.01065 -0.00297695 0) (1.01083 -0.00297269 0) (1.011 -0.00296901 0) (1.01117 -0.00296542 0) (1.01134 -0.00296151 0) (1.0115 -0.002957 0) (1.01166 -0.00295171 0) (1.01181 -0.00294555 0) (1.01196 -0.00293852 0) (1.0121 -0.00293068 0) (1.01224 -0.00292215 0) (1.01238 -0.00291308 0) (1.01251 -0.00290359 0) (1 -0.000284515 0) (1.0001 -0.000838056 0) (1.00028 -0.00135514 0) (1.00054 -0.00182107 0) (1.00087 -0.0022264 0) (1.00124 -0.00256783 0) (1.00163 -0.00284743 0) (1.00205 -0.00307076 0) (1.00246 -0.00324492 0) (1.00288 -0.00337706 0) (1.00329 -0.00347364 0) (1.00369 -0.00354027 0) (1.00409 -0.0035819 0) (1.00447 -0.00360316 0) (1.00485 -0.00360852 0) (1.00521 -0.00360223 0) (1.00557 -0.00358813 0) (1.00591 -0.00356932 0) (1.00624 -0.00354801 0) (1.00656 -0.00352538 0) (1.00687 -0.00350181 0) (1.00718 -0.00347709 0) (1.00747 -0.00345083 0) (1.00775 -0.00342275 0) (1.00802 -0.00339289 0) (1.00829 -0.00336163 0) (1.00855 -0.00332967 0) (1.0088 -0.00329785 0) (1.00904 -0.00326706 0) (1.00927 -0.0032381 0) (1.0095 -0.00321162 0) (1.00973 -0.00318806 0) (1.00994 -0.00316765 0) (1.01015 -0.00315042 0) (1.01036 -0.00313622 0) (1.01056 -0.00312472 0) (1.01075 -0.00311548 0) (1.01093 -0.00310797 0) (1.01111 -0.00310164 0) (1.01129 -0.00309595 0) (1.01146 -0.00309042 0) (1.01163 -0.00308466 0) (1.01179 -0.00307838 0) (1.01194 -0.00307141 0) (1.01209 -0.00306366 0) (1.01224 -0.00305513 0) (1.01239 -0.00304587 0) (1.01253 -0.003036 0) (1.01266 -0.00302564 0) (1.0128 -0.00301493 0) (1.00001 -0.000306188 0) (1.00011 -0.000901393 0) (1.0003 -0.00145582 0) (1.00059 -0.00195289 0) (1.00094 -0.00238222 0) (1.00134 -0.0027407 0) (1.00176 -0.00303148 0) (1.00219 -0.00326156 0) (1.00263 -0.00343935 0) (1.00306 -0.00357297 0) (1.00349 -0.00366949 0) (1.00391 -0.00373489 0) (1.00431 -0.00377444 0) (1.00471 -0.00379308 0) (1.0051 -0.00379549 0) (1.00547 -0.0037861 0) (1.00583 -0.0037688 0) (1.00618 -0.00374673 0) (1.00651 -0.0037221 0) (1.00684 -0.00369615 0) (1.00715 -0.0036693 0) (1.00746 -0.00364141 0) (1.00775 -0.00361212 0) (1.00803 -0.00358118 0) (1.00831 -0.00354862 0) (1.00858 -0.00351483 0) (1.00883 -0.00348047 0) (1.00909 -0.00344637 0) (1.00933 -0.00341338 0) (1.00957 -0.00338228 0) (1.0098 -0.00335367 0) (1.01002 -0.00332799 0) (1.01024 -0.00330545 0) (1.01045 -0.00328609 0) (1.01065 -0.00326976 0) (1.01085 -0.00325612 0) (1.01104 -0.00324477 0) (1.01123 -0.00323517 0) (1.01141 -0.0032268 0) (1.01159 -0.00321913 0) (1.01176 -0.0032117 0) (1.01192 -0.00320412 0) (1.01208 -0.00319611 0) (1.01224 -0.00318749 0) (1.01239 -0.00317819 0) (1.01254 -0.00316818 0) (1.01268 -0.00315754 0) (1.01282 -0.00314634 0) (1.01296 -0.00313473 0) (1.01309 -0.00312283 0) (1.00001 -0.000329163 0) (1.00012 -0.000968403 0) (1.00033 -0.00156197 0) (1.00064 -0.00209115 0) (1.00102 -0.00254458 0) (1.00144 -0.00291952 0) (1.00189 -0.0032205 0) (1.00235 -0.00345621 0) (1.00281 -0.00363658 0) (1.00326 -0.00377074 0) (1.0037 -0.00386633 0) (1.00413 -0.0039297 0) (1.00455 -0.00396646 0) (1.00496 -0.00398184 0) (1.00535 -0.00398079 0) (1.00573 -0.00396786 0) (1.0061 -0.00394701 0) (1.00645 -0.00392138 0) (1.00679 -0.0038932 0) (1.00712 -0.00386373 0) (1.00744 -0.00383345 0) (1.00775 -0.00380225 0) (1.00804 -0.00376983 0) (1.00833 -0.00373594 0) (1.00861 -0.00370062 0) (1.00887 -0.00366425 0) (1.00913 -0.00362746 0) (1.00939 -0.00359106 0) (1.00963 -0.00355585 0) (1.00987 -0.00352259 0) (1.0101 -0.00349185 0) (1.01032 -0.00346405 0) (1.01054 -0.00343941 0) (1.01075 -0.00341793 0) (1.01096 -0.00339948 0) (1.01115 -0.00338374 0) (1.01135 -0.0033703 0) (1.01153 -0.00335865 0) (1.01171 -0.00334827 0) (1.01189 -0.00333866 0) (1.01206 -0.00332935 0) (1.01223 -0.00331998 0) (1.01239 -0.00331028 0) (1.01254 -0.00330005 0) (1.01269 -0.00328922 0) (1.01284 -0.00327778 0) (1.01299 -0.00326578 0) (1.01313 -0.00325329 0) (1.01326 -0.00324046 0) (1.01339 -0.00322739 0) (1.00001 -0.000353555 0) (1.00013 -0.0010394 0) (1.00036 -0.001674 0) (1.0007 -0.00223625 0) (1.0011 -0.00271377 0) (1.00156 -0.00310443 0) (1.00204 -0.00341446 0) (1.00252 -0.00365461 0) (1.003 -0.00383646 0) (1.00347 -0.00397018 0) (1.00393 -0.00406397 0) (1.00437 -0.00412452 0) (1.00481 -0.00415776 0) (1.00522 -0.00416927 0) (1.00562 -0.00416425 0) (1.00601 -0.00414738 0) (1.00638 -0.00412265 0) (1.00674 -0.00409318 0) (1.00709 -0.00406121 0) (1.00742 -0.00402805 0) (1.00774 -0.00399419 0) (1.00805 -0.00395959 0) (1.00835 -0.00392394 0) (1.00863 -0.00388704 0) (1.00891 -0.00384891 0) (1.00918 -0.00380992 0) (1.00944 -0.00377068 0) (1.0097 -0.00373195 0) (1.00994 -0.00369452 0) (1.01018 -0.00365909 0) (1.01041 -0.00362623 0) (1.01064 -0.00359633 0) (1.01085 -0.00356958 0) (1.01107 -0.00354602 0) (1.01127 -0.00352548 0) (1.01147 -0.00350766 0) (1.01166 -0.00349216 0) (1.01185 -0.00347849 0) (1.01203 -0.00346615 0) (1.0122 -0.00345462 0) (1.01238 -0.00344349 0) (1.01254 -0.00343237 0) (1.0127 -0.00342099 0) (1.01286 -0.00340919 0) (1.01301 -0.00339688 0) (1.01316 -0.00338403 0) (1.0133 -0.0033707 0) (1.01344 -0.00335696 0) (1.01358 -0.00334294 0) (1.01371 -0.00332873 0) (1.00001 -0.000379488 0) (1.00014 -0.00111471 0) (1.00039 -0.00179236 0) (1.00076 -0.00238861 0) (1.0012 -0.00289008 0) (1.00169 -0.00329554 0) (1.00219 -0.00361333 0) (1.0027 -0.00385661 0) (1.00321 -0.0040388 0) (1.00369 -0.00417112 0) (1.00417 -0.00426222 0) (1.00463 -0.00431913 0) (1.00507 -0.00434813 0) (1.0055 -0.00435517 0) (1.00591 -0.0043457 0) (1.0063 -0.00432452 0) (1.00668 -0.00429559 0) (1.00704 -0.00426203 0) (1.00739 -0.00422608 0) (1.00773 -0.00418906 0) (1.00805 -0.00415151 0) (1.00836 -0.0041134 0) (1.00866 -0.00407447 0) (1.00895 -0.0040345 0) (1.00923 -0.00399352 0) (1.0095 -0.00395188 0) (1.00976 -0.00391017 0) (1.01002 -0.0038691 0) (1.01026 -0.00382944 0) (1.0105 -0.00379185 0) (1.01073 -0.00375687 0) (1.01096 -0.00372488 0) (1.01118 -0.00369607 0) (1.01139 -0.00367043 0) (1.01159 -0.00364783 0) (1.01179 -0.00362797 0) (1.01199 -0.00361045 0) (1.01217 -0.0035948 0) (1.01235 -0.00358052 0) (1.01253 -0.00356713 0) (1.0127 -0.0035542 0) (1.01286 -0.00354136 0) (1.01302 -0.00352836 0) (1.01318 -0.00351503 0) (1.01333 -0.00350125 0) (1.01348 -0.00348704 0) (1.01362 -0.00347241 0) (1.01376 -0.00345745 0) (1.0139 -0.00344226 0) (1.01403 -0.00342695 0) (1.00001 -0.000407101 0) (1.00015 -0.0011947 0) (1.00043 -0.00191752 0) (1.00083 -0.00254867 0) (1.0013 -0.0030738 0) (1.00183 -0.0034929 0) (1.00236 -0.003817 0) (1.0029 -0.00406204 0) (1.00342 -0.00424342 0) (1.00393 -0.00437335 0) (1.00442 -0.00446088 0) (1.00489 -0.00451332 0) (1.00535 -0.00453737 0) (1.00578 -0.00453936 0) (1.0062 -0.004525 0) (1.0066 -0.00449915 0) (1.00698 -0.00446574 0) (1.00735 -0.00442786 0) (1.00771 -0.00438773 0) (1.00804 -0.00434671 0) (1.00837 -0.00430536 0) (1.00868 -0.00426368 0) (1.00899 -0.0042214 0) (1.00928 -0.00417832 0) (1.00956 -0.00413447 0) (1.00983 -0.00409016 0) (1.01009 -0.00404596 0) (1.01035 -0.00400256 0) (1.0106 -0.00396067 0) (1.01084 -0.00392093 0) (1.01107 -0.00388386 0) (1.01129 -0.0038498 0) (1.01151 -0.00381893 0) (1.01172 -0.00379126 0) (1.01193 -0.00376663 0) (1.01213 -0.00374476 0) (1.01232 -0.00372526 0) (1.01251 -0.00370766 0) (1.01269 -0.00369149 0) (1.01286 -0.00367627 0) (1.01303 -0.00366158 0) (1.0132 -0.00364707 0) (1.01336 -0.00363249 0) (1.01351 -0.00361764 0) (1.01367 -0.00360245 0) (1.01381 -0.0035869 0) (1.01396 -0.00357101 0) (1.0141 -0.00355485 0) (1.01423 -0.00353853 0) (1.01436 -0.00352215 0) (1.00001 -0.000436545 0) (1.00017 -0.00127978 0) (1.00047 -0.00204999 0) (1.0009 -0.00271689 0) (1.00142 -0.00326517 0) (1.00198 -0.00369656 0) (1.00255 -0.00402535 0) (1.00311 -0.00427069 0) (1.00366 -0.0044501 0) (1.00418 -0.00457666 0) (1.00469 -0.00465972 0) (1.00517 -0.00470688 0) (1.00564 -0.00472526 0) (1.00609 -0.00472165 0) (1.00651 -0.00470198 0) (1.00692 -0.00467114 0) (1.0073 -0.00463299 0) (1.00768 -0.00459057 0) (1.00803 -0.00454611 0) (1.00838 -0.00450097 0) (1.0087 -0.00445574 0) (1.00902 -0.00441042 0) (1.00932 -0.00436475 0) (1.00962 -0.00431853 0) (1.0099 -0.00427179 0) (1.01017 -0.00422481 0) (1.01044 -0.00417812 0) (1.01069 -0.00413239 0) (1.01094 -0.00408828 0) (1.01118 -0.00404641 0) (1.01141 -0.00400726 0) (1.01164 -0.00397116 0) (1.01186 -0.00393827 0) (1.01207 -0.00390859 0) (1.01227 -0.00388197 0) (1.01247 -0.00385813 0) (1.01266 -0.00383668 0) (1.01285 -0.00381718 0) (1.01303 -0.00379915 0) (1.01321 -0.00378215 0) (1.01338 -0.00376574 0) (1.01354 -0.0037496 0) (1.0137 -0.00373346 0) (1.01386 -0.00371715 0) (1.01401 -0.00370058 0) (1.01416 -0.00368372 0) (1.0143 -0.0036666 0) (1.01444 -0.00364928 0) (1.01458 -0.00363186 0) (1.01471 -0.00361442 0) (1.00001 -0.000467988 0) (1.00018 -0.00137038 0) (1.00052 -0.00219033 0) (1.00098 -0.00289372 0) (1.00154 -0.00346443 0) (1.00214 -0.0039065 0) (1.00275 -0.00423819 0) (1.00334 -0.00448234 0) (1.0039 -0.00465862 0) (1.00445 -0.00478084 0) (1.00497 -0.00485853 0) (1.00547 -0.00489956 0) (1.00595 -0.00491159 0) (1.0064 -0.00490186 0) (1.00683 -0.00487652 0) (1.00724 -0.00484038 0) (1.00764 -0.00479725 0) (1.00801 -0.0047501 0) (1.00837 -0.00470116 0) (1.00872 -0.00465181 0) (1.00905 -0.00460263 0) (1.00937 -0.00455362 0) (1.00967 -0.00450454 0) (1.00997 -0.00445516 0) (1.01025 -0.00440552 0) (1.01052 -0.00435586 0) (1.01079 -0.0043067 0) (1.01105 -0.00425865 0) (1.01129 -0.00421234 0) (1.01153 -0.00416835 0) (1.01177 -0.00412715 0) (1.01199 -0.00408904 0) (1.01221 -0.00405416 0) (1.01242 -0.00402251 0) (1.01263 -0.00399394 0) (1.01283 -0.00396816 0) (1.01302 -0.00394481 0) (1.01321 -0.00392344 0) (1.01339 -0.00390361 0) (1.01356 -0.00388485 0) (1.01373 -0.00386677 0) (1.0139 -0.00384903 0) (1.01406 -0.00383138 0) (1.01422 -0.00381364 0) (1.01437 -0.00379572 0) (1.01451 -0.00377759 0) (1.01466 -0.00375927 0) (1.0148 -0.00374082 0) (1.01493 -0.00372233 0) (1.01506 -0.00370388 0) (1.00001 -0.000501614 0) (1.0002 -0.00146697 0) (1.00057 -0.00233911 0) (1.00107 -0.00307964 0) (1.00168 -0.00367178 0) (1.00232 -0.00412264 0) (1.00296 -0.0044553 0) (1.00358 -0.00469674 0) (1.00417 -0.00486876 0) (1.00473 -0.00498569 0) (1.00527 -0.00505706 0) (1.00578 -0.00509112 0) (1.00627 -0.00509614 0) (1.00673 -0.00507983 0) (1.00717 -0.00504846 0) (1.00759 -0.00500678 0) (1.00798 -0.00495844 0) (1.00836 -0.00490639 0) (1.00873 -0.00485285 0) (1.00908 -0.0047992 0) (1.00941 -0.00474602 0) (1.00973 -0.0046933 0) (1.01004 -0.00464078 0) (1.01033 -0.00458825 0) (1.01061 -0.0045357 0) (1.01089 -0.00448338 0) (1.01115 -0.00443175 0) (1.01141 -0.0043814 0) (1.01166 -0.00433291 0) (1.0119 -0.00428684 0) (1.01213 -0.00424361 0) (1.01236 -0.00420352 0) (1.01258 -0.00416669 0) (1.01279 -0.0041331 0) (1.013 -0.00410261 0) (1.0132 -0.00407494 0) (1.01339 -0.00404973 0) (1.01358 -0.00402654 0) (1.01376 -0.00400494 0) (1.01393 -0.00398448 0) (1.0141 -0.00396476 0) (1.01427 -0.00394547 0) (1.01443 -0.00392634 0) (1.01458 -0.00390721 0) (1.01473 -0.00388797 0) (1.01488 -0.00386861 0) (1.01502 -0.00384913 0) (1.01516 -0.00382958 0) (1.0153 -0.00381004 0) (1.01543 -0.0037906 0) (1.00001 -0.000537627 0) (1.00022 -0.00157008 0) (1.00062 -0.00249697 0) (1.00118 -0.00327511 0) (1.00183 -0.00388737 0) (1.00251 -0.00434484 0) (1.00319 -0.00467641 0) (1.00383 -0.00491361 0) (1.00445 -0.00508029 0) (1.00503 -0.00519096 0) (1.00558 -0.00525508 0) (1.00611 -0.00528133 0) (1.00661 -0.00527871 0) (1.00708 -0.00525539 0) (1.00752 -0.0052177 0) (1.00794 -0.00517022 0) (1.00835 -0.00511649 0) (1.00873 -0.00505939 0) (1.0091 -0.00500115 0) (1.00945 -0.00494315 0) (1.00978 -0.00488593 0) (1.0101 -0.00482948 0) (1.01041 -0.00477351 0) (1.01071 -0.00471782 0) (1.01099 -0.00466238 0) (1.01127 -0.00460742 0) (1.01153 -0.00455335 0) (1.01179 -0.00450071 0) (1.01204 -0.00445008 0) (1.01228 -0.00440195 0) (1.01251 -0.00435673 0) (1.01274 -0.00431468 0) (1.01296 -0.00427593 0) (1.01317 -0.00424046 0) (1.01338 -0.00420809 0) (1.01358 -0.00417857 0) (1.01377 -0.00415154 0) (1.01396 -0.00412658 0) (1.01414 -0.00410325 0) (1.01431 -0.00408112 0) (1.01448 -0.00405981 0) (1.01465 -0.004039 0) (1.01481 -0.00401844 0) (1.01496 -0.00399795 0) (1.01511 -0.00397744 0) (1.01526 -0.00395687 0) (1.0154 -0.00393625 0) (1.01554 -0.00391564 0) (1.01568 -0.00389509 0) (1.01581 -0.00387469 0) (1.00001 -0.000576254 0) (1.00024 -0.00168028 0) (1.00068 -0.00266458 0) (1.00129 -0.00348061 0) (1.00199 -0.0041113 0) (1.00272 -0.00457292 0) (1.00343 -0.00490121 0) (1.00411 -0.00513269 0) (1.00474 -0.00529299 0) (1.00534 -0.00539644 0) (1.00591 -0.00545234 0) (1.00645 -0.00546994 0) (1.00696 -0.00545909 0) (1.00744 -0.0054284 0) (1.00789 -0.00538413 0) (1.00831 -0.00533064 0) (1.00872 -0.00527132 0) (1.00911 -0.00520904 0) (1.00948 -0.00514603 0) (1.00983 -0.00508364 0) (1.01017 -0.00502237 0) (1.01049 -0.00496217 0) (1.0108 -0.00490277 0) (1.01109 -0.00484393 0) (1.01138 -0.00478562 0) (1.01166 -0.00472803 0) (1.01192 -0.00467155 0) (1.01218 -0.00461666 0) (1.01243 -0.0045639 0) (1.01267 -0.00451375 0) (1.01291 -0.00446657 0) (1.01313 -0.00442262 0) (1.01335 -0.00438199 0) (1.01356 -0.00434466 0) (1.01377 -0.00431047 0) (1.01397 -0.00427914 0) (1.01416 -0.00425033 0) (1.01435 -0.00422364 0) (1.01453 -0.00419862 0) (1.0147 -0.00417488 0) (1.01487 -0.00415202 0) (1.01504 -0.00412973 0) (1.0152 -0.00410776 0) (1.01536 -0.00408596 0) (1.01551 -0.0040642 0) (1.01565 -0.00404247 0) (1.0158 -0.00402075 0) (1.01594 -0.0039991 0) (1.01607 -0.00397756 0) (1.0162 -0.00395623 0) (1.00001 -0.000617743 0) (1.00027 -0.0017982 0) (1.00075 -0.00284265 0) (1.00141 -0.0036966 0) (1.00217 -0.00434363 0) (1.00295 -0.00480659 0) (1.0037 -0.00512935 0) (1.0044 -0.00535372 0) (1.00506 -0.00550665 0) (1.00567 -0.00560189 0) (1.00626 -0.00564855 0) (1.00681 -0.00565669 0) (1.00733 -0.0056371 0) (1.00781 -0.00559872 0) (1.00827 -0.00554764 0) (1.0087 -0.00548794 0) (1.00911 -0.00542288 0) (1.0095 -0.00535533 0) (1.00987 -0.0052875 0) (1.01023 -0.00522068 0) (1.01056 -0.00515535 0) (1.01089 -0.00509142 0) (1.0112 -0.00502859 0) (1.0115 -0.00496663 0) (1.01178 -0.00490548 0) (1.01206 -0.00484529 0) (1.01233 -0.00478642 0) (1.01259 -0.00472932 0) (1.01284 -0.00467447 0) (1.01308 -0.00462233 0) (1.01331 -0.00457324 0) (1.01354 -0.00452741 0) (1.01376 -0.00448495 0) (1.01397 -0.00444581 0) (1.01417 -0.00440982 0) (1.01437 -0.00437673 0) (1.01457 -0.00434619 0) (1.01475 -0.00431781 0) (1.01494 -0.00429116 0) (1.01511 -0.00426583 0) (1.01528 -0.00424146 0) (1.01545 -0.00421774 0) (1.01561 -0.00419441 0) (1.01576 -0.00417132 0) (1.01591 -0.00414836 0) (1.01606 -0.00412549 0) (1.0162 -0.0041027 0) (1.01634 -0.00408004 0) (1.01648 -0.00405755 0) (1.01661 -0.00403531 0) (1.00001 -0.000662372 0) (1.00029 -0.00192451 0) (1.00082 -0.00303194 0) (1.00154 -0.00392353 0) (1.00236 -0.00458433 0) (1.0032 -0.00504554 0) (1.00398 -0.00536047 0) (1.00471 -0.00557642 0) (1.00539 -0.00572106 0) (1.00602 -0.00580706 0) (1.00662 -0.00584344 0) (1.00719 -0.00584135 0) (1.00771 -0.00581257 0) (1.00821 -0.00576625 0) (1.00867 -0.00570815 0) (1.0091 -0.00564205 0) (1.00952 -0.00557112 0) (1.00991 -0.00549822 0) (1.01028 -0.00542553 0) (1.01064 -0.0053543 0) (1.01098 -0.00528491 0) (1.0113 -0.00521725 0) (1.01162 -0.00515102 0) (1.01191 -0.00508597 0) (1.0122 -0.00502201 0) (1.01248 -0.00495926 0) (1.01275 -0.00489804 0) (1.013 -0.00483875 0) (1.01325 -0.00478186 0) (1.0135 -0.00472777 0) (1.01373 -0.0046768 0) (1.01396 -0.00462915 0) (1.01418 -0.00458489 0) (1.01439 -0.00454398 0) (1.01459 -0.00450625 0) (1.01479 -0.00447144 0) (1.01499 -0.00443922 0) (1.01517 -0.00440919 0) (1.01536 -0.00438094 0) (1.01553 -0.00435408 0) (1.0157 -0.00432824 0) (1.01587 -0.00430312 0) (1.01603 -0.00427847 0) (1.01618 -0.00425414 0) (1.01633 -0.00423 0) (1.01648 -0.00420602 0) (1.01662 -0.0041822 0) (1.01676 -0.00415855 0) (1.0169 -0.00413514 0) (1.01703 -0.00411202 0) (1.00002 -0.000710451 0) (1.00032 -0.00205999 0) (1.00091 -0.00323325 0) (1.00169 -0.00416182 0) (1.00258 -0.00483328 0) (1.00346 -0.00528933 0) (1.00429 -0.0055942 0) (1.00504 -0.00580058 0) (1.00574 -0.00593601 0) (1.00639 -0.00601168 0) (1.00701 -0.00603673 0) (1.00758 -0.00602368 0) (1.00812 -0.00598534 0) (1.00862 -0.00593088 0) (1.00908 -0.00586559 0) (1.00952 -0.00579293 0) (1.00994 -0.00571601 0) (1.01033 -0.0056377 0) (1.01071 -0.00556016 0) (1.01107 -0.0054845 0) (1.01141 -0.00541108 0) (1.01173 -0.00533972 0) (1.01205 -0.00527012 0) (1.01235 -0.00520201 0) (1.01263 -0.00513528 0) (1.01291 -0.00507001 0) (1.01318 -0.00500648 0) (1.01344 -0.00494505 0) (1.01369 -0.00488616 0) (1.01393 -0.00483016 0) (1.01416 -0.00477735 0) (1.01439 -0.00472791 0) (1.01461 -0.0046819 0) (1.01482 -0.00463927 0) (1.01503 -0.00459984 0) (1.01523 -0.00456336 0) (1.01542 -0.00452949 0) (1.01561 -0.00449786 0) (1.01579 -0.00446806 0) (1.01597 -0.00443971 0) (1.01614 -0.00441244 0) (1.0163 -0.00438596 0) (1.01646 -0.00436003 0) (1.01662 -0.00433448 0) (1.01677 -0.00430921 0) (1.01692 -0.00428416 0) (1.01706 -0.00425932 0) (1.0172 -0.00423473 0) (1.01733 -0.00421041 0) (1.01746 -0.00418644 0) (1.00002 -0.000762322 0) (1.00036 -0.00220545 0) (1.001 -0.00344744 0) (1.00186 -0.00441182 0) (1.00281 -0.00509026 0) (1.00375 -0.00553751 0) (1.00461 -0.00583015 0) (1.00539 -0.00602596 0) (1.00611 -0.00615129 0) (1.00678 -0.00621547 0) (1.00741 -0.00622811 0) (1.008 -0.00620347 0) (1.00854 -0.00615529 0) (1.00904 -0.00609252 0) (1.00951 -0.00601987 0) (1.00996 -0.0059405 0) (1.01038 -0.00585751 0) (1.01078 -0.00577378 0) (1.01115 -0.00569138 0) (1.01151 -0.00561133 0) (1.01185 -0.00553389 0) (1.01218 -0.00545887 0) (1.01249 -0.00538594 0) (1.01279 -0.00531482 0) (1.01308 -0.00524536 0) (1.01336 -0.00517761 0) (1.01363 -0.00511181 0) (1.01389 -0.00504829 0) (1.01414 -0.00498743 0) (1.01438 -0.00492957 0) (1.01462 -0.00487497 0) (1.01484 -0.00482379 0) (1.01506 -0.00477607 0) (1.01527 -0.00473176 0) (1.01548 -0.00469068 0) (1.01568 -0.00465257 0) (1.01587 -0.00461711 0) (1.01606 -0.00458392 0) (1.01624 -0.00455261 0) (1.01642 -0.00452281 0) (1.01659 -0.00449415 0) (1.01675 -0.00446635 0) (1.01691 -0.00443917 0) (1.01707 -0.00441245 0) (1.01722 -0.00438607 0) (1.01737 -0.00435998 0) (1.01751 -0.00433416 0) (1.01765 -0.00430865 0) (1.01778 -0.00428346 0) (1.01792 -0.00425866 0) (1.00002 -0.000818366 0) (1.0004 -0.00236181 0) (1.0011 -0.0036754 0) (1.00204 -0.00467386 0) (1.00307 -0.00535495 0) (1.00406 -0.00578951 0) (1.00496 -0.00606797 0) (1.00577 -0.00625239 0) (1.0065 -0.00636669 0) (1.00719 -0.00641811 0) (1.00784 -0.0064173 0) (1.00843 -0.00638053 0) (1.00898 -0.00632232 0) (1.00949 -0.00625111 0) (1.00997 -0.00617094 0) (1.01041 -0.00608473 0) (1.01084 -0.00599561 0) (1.01124 -0.00590647 0) (1.01161 -0.00581924 0) (1.01197 -0.00573482 0) (1.01232 -0.0056534 0) (1.01265 -0.00557476 0) (1.01296 -0.00549855 0) (1.01326 -0.00542446 0) (1.01355 -0.00535232 0) (1.01383 -0.00528215 0) (1.0141 -0.00521413 0) (1.01435 -0.00514856 0) (1.01461 -0.00508578 0) (1.01485 -0.0050261 0) (1.01508 -0.00496975 0) (1.01531 -0.00491687 0) (1.01553 -0.0048675 0) (1.01574 -0.00482155 0) (1.01595 -0.00477886 0) (1.01615 -0.00473917 0) (1.01634 -0.00470216 0) (1.01653 -0.00466745 0) (1.01671 -0.00463468 0) (1.01689 -0.00460346 0) (1.01706 -0.00457346 0) (1.01722 -0.00454438 0) (1.01738 -0.00451599 0) (1.01754 -0.00448812 0) (1.01769 -0.00446066 0) (1.01784 -0.00443357 0) (1.01798 -0.0044068 0) (1.01812 -0.00438039 0) (1.01825 -0.00435435 0) (1.01839 -0.00432876 0) (1.00002 -0.00087901 0) (1.00044 -0.00253007 0) (1.00122 -0.00391804 0) (1.00225 -0.00494814 0) (1.00335 -0.00562689 0) (1.0044 -0.00604477 0) (1.00533 -0.00630736 0) (1.00616 -0.00647973 0) (1.00692 -0.00658196 0) (1.00762 -0.00661927 0) (1.00828 -0.00660399 0) (1.00889 -0.00655468 0) (1.00944 -0.00648634 0) (1.00996 -0.00640658 0) (1.01044 -0.00631874 0) (1.01089 -0.00622558 0) (1.01131 -0.00613032 0) (1.01171 -0.00603578 0) (1.01209 -0.00594376 0) (1.01245 -0.00585502 0) (1.0128 -0.00576966 0) (1.01313 -0.00568744 0) (1.01344 -0.00560801 0) (1.01374 -0.00553101 0) (1.01403 -0.00545625 0) (1.01431 -0.0053837 0) (1.01458 -0.0053135 0) (1.01484 -0.00524593 0) (1.01509 -0.00518128 0) (1.01533 -0.00511982 0) (1.01557 -0.00506177 0) (1.01579 -0.00500724 0) (1.01601 -0.00495625 0) (1.01623 -0.00490872 0) (1.01643 -0.00486446 0) (1.01663 -0.00482324 0) (1.01683 -0.00478472 0) (1.01701 -0.00474855 0) (1.0172 -0.00471435 0) (1.01737 -0.00468176 0) (1.01754 -0.00465045 0) (1.01771 -0.00462012 0) (1.01787 -0.00459056 0) (1.01802 -0.00456158 0) (1.01818 -0.00453308 0) (1.01832 -0.00450501 0) (1.01847 -0.00447732 0) (1.0186 -0.00445004 0) (1.01874 -0.00442318 0) (1.01887 -0.00439681 0) (1.00002 -0.000944727 0) (1.00049 -0.00271134 0) (1.00135 -0.00417633 0) (1.00247 -0.00523479 0) (1.00366 -0.00590552 0) (1.00476 -0.00630268 0) (1.00573 -0.00654805 0) (1.00658 -0.00670783 0) (1.00735 -0.00679685 0) (1.00808 -0.0068186 0) (1.00875 -0.00678793 0) (1.00936 -0.0067258 0) (1.00992 -0.00664727 0) (1.01044 -0.00655887 0) (1.01093 -0.00646322 0) (1.01138 -0.00636304 0) (1.01181 -0.00626164 0) (1.01221 -0.00616175 0) (1.01259 -0.00606499 0) (1.01295 -0.00597197 0) (1.0133 -0.00588272 0) (1.01363 -0.00579699 0) (1.01394 -0.00571439 0) (1.01424 -0.00563454 0) (1.01453 -0.00555721 0) (1.01481 -0.00548233 0) (1.01508 -0.00541002 0) (1.01534 -0.00534049 0) (1.01559 -0.00527401 0) (1.01584 -0.00521083 0) (1.01607 -0.00515113 0) (1.0163 -0.00509499 0) (1.01652 -0.00504243 0) (1.01673 -0.00499336 0) (1.01694 -0.00494759 0) (1.01714 -0.00490487 0) (1.01733 -0.00486488 0) (1.01752 -0.00482729 0) (1.0177 -0.00479171 0) (1.01788 -0.00475779 0) (1.01805 -0.00472521 0) (1.01821 -0.00469368 0) (1.01837 -0.00466297 0) (1.01853 -0.00463292 0) (1.01868 -0.00460341 0) (1.01883 -0.00457438 0) (1.01897 -0.0045458 0) (1.01911 -0.00451768 0) (1.01925 -0.00449003 0) (1.01938 -0.0044629 0) (1.00003 -0.00101605 0) (1.00054 -0.00290685 0) (1.00149 -0.00445123 0) (1.00272 -0.00553379 0) (1.00399 -0.00619011 0) (1.00515 -0.00656263 0) (1.00615 -0.00678984 0) (1.00702 -0.00693656 0) (1.00781 -0.00701104 0) (1.00855 -0.00701572 0) (1.00924 -0.00696887 0) (1.00986 -0.0068938 0) (1.01043 -0.00680509 0) (1.01095 -0.00670792 0) (1.01144 -0.00660433 0) (1.01189 -0.0064971 0) (1.01232 -0.00638959 0) (1.01273 -0.00628441 0) (1.01311 -0.00618297 0) (1.01347 -0.00608573 0) (1.01382 -0.00599266 0) (1.01415 -0.00590347 0) (1.01446 -0.00581777 0) (1.01477 -0.00573513 0) (1.01506 -0.00565529 0) (1.01534 -0.00557814 0) (1.0156 -0.00550376 0) (1.01586 -0.00543233 0) (1.01612 -0.00536408 0) (1.01636 -0.00529922 0) (1.01659 -0.0052379 0) (1.01682 -0.00518021 0) (1.01704 -0.00512613 0) (1.01726 -0.00507555 0) (1.01746 -0.00502831 0) (1.01766 -0.00498414 0) (1.01786 -0.00494274 0) (1.01804 -0.00490376 0) (1.01823 -0.00486684 0) (1.0184 -0.00483164 0) (1.01857 -0.00479782 0) (1.01874 -0.00476512 0) (1.0189 -0.0047333 0) (1.01906 -0.0047022 0) (1.01921 -0.00467171 0) (1.01936 -0.00464177 0) (1.0195 -0.00461232 0) (1.01964 -0.00458338 0) (1.01977 -0.00455496 0) (1.01991 -0.00452711 0) (1.00003 -0.00109357 0) (1.0006 -0.00311795 0) (1.00165 -0.00474376 0) (1.00299 -0.00584497 0) (1.00435 -0.00647984 0) (1.00557 -0.00682407 0) (1.00659 -0.00703263 0) (1.00748 -0.00716581 0) (1.0083 -0.00722418 0) (1.00906 -0.00721025 0) (1.00975 -0.00714662 0) (1.01038 -0.0070586 0) (1.01095 -0.00695973 0) (1.01148 -0.0068537 0) (1.01197 -0.00674206 0) (1.01243 -0.00662776 0) (1.01286 -0.00651421 0) (1.01326 -0.00640382 0) (1.01365 -0.00629776 0) (1.01401 -0.00619635 0) (1.01436 -0.00609952 0) (1.01469 -0.00600696 0) (1.01501 -0.00591822 0) (1.01531 -0.00583286 0) (1.0156 -0.00575057 0) (1.01588 -0.00567121 0) (1.01615 -0.00559481 0) (1.01641 -0.00552153 0) (1.01666 -0.00545155 0) (1.0169 -0.00538506 0) (1.01714 -0.00532219 0) (1.01737 -0.00526298 0) (1.01759 -0.00520742 0) (1.0178 -0.0051554 0) (1.01801 -0.00510673 0) (1.01821 -0.00506115 0) (1.0184 -0.00501838 0) (1.01859 -0.00497805 0) (1.01877 -0.00493984 0) (1.01895 -0.00490338 0) (1.01912 -0.00486837 0) (1.01929 -0.00483453 0) (1.01945 -0.00480163 0) (1.0196 -0.00476953 0) (1.01976 -0.00473809 0) (1.0199 -0.00470724 0) (1.02005 -0.00467696 0) (1.02019 -0.00464723 0) (1.02032 -0.00461806 0) (1.02046 -0.0045895 0) (1.00003 -0.00117795 0) (1.00067 -0.00334614 0) (1.00183 -0.00505486 0) (1.00329 -0.006168 0) (1.00475 -0.00677377 0) (1.00601 -0.0070865 0) (1.00706 -0.00727636 0) (1.00797 -0.00739542 0) (1.00881 -0.00743586 0) (1.00959 -0.00740183 0) (1.01029 -0.007321 0) (1.01093 -0.00722017 0) (1.0115 -0.00711118 0) (1.01203 -0.00699614 0) (1.01252 -0.00687637 0) (1.01299 -0.00675504 0) (1.01342 -0.00663554 0) (1.01383 -0.00652003 0) (1.01421 -0.00640942 0) (1.01458 -0.00630392 0) (1.01492 -0.0062034 0) (1.01525 -0.00610754 0) (1.01557 -0.00601583 0) (1.01587 -0.00592782 0) (1.01616 -0.00584314 0) (1.01644 -0.00576162 0) (1.01671 -0.00568327 0) (1.01698 -0.00560818 0) (1.01723 -0.00553653 0) (1.01747 -0.00546846 0) (1.01771 -0.00540407 0) (1.01794 -0.0053434 0) (1.01816 -0.0052864 0) (1.01837 -0.00523297 0) (1.01858 -0.00518292 0) (1.01878 -0.00513598 0) (1.01897 -0.00509187 0) (1.01916 -0.00505025 0) (1.01934 -0.00501077 0) (1.01952 -0.0049731 0) (1.01969 -0.00493693 0) (1.01986 -0.00490199 0) (1.02002 -0.00486806 0) (1.02018 -0.00483497 0) (1.02033 -0.0048026 0) (1.02048 -0.00477089 0) (1.02062 -0.00473979 0) (1.02076 -0.0047093 0) (1.0209 -0.00467941 0) (1.02103 -0.00465016 0) (1.00004 -0.00126994 0) (1.00075 -0.00359307 0) (1.00203 -0.00538544 0) (1.00362 -0.00650229 0) (1.00518 -0.00707085 0) (1.00649 -0.00734956 0) (1.00756 -0.00752108 0) (1.00849 -0.00762517 0) (1.00935 -0.00764562 0) (1.01014 -0.00759012 0) (1.01086 -0.00749192 0) (1.0115 -0.0073785 0) (1.01208 -0.0072594 0) (1.01261 -0.00713522 0) (1.01311 -0.00700727 0) (1.01357 -0.00687898 0) (1.014 -0.00675365 0) (1.01441 -0.0066331 0) (1.0148 -0.00651801 0) (1.01516 -0.00640849 0) (1.01551 -0.00630437 0) (1.01584 -0.00620528 0) (1.01616 -0.00611069 0) (1.01646 -0.00602009 0) (1.01675 -0.00593308 0) (1.01704 -0.00584947 0) (1.01731 -0.00576921 0) (1.01757 -0.00569238 0) (1.01782 -0.0056191 0) (1.01806 -0.00554949 0) (1.0183 -0.00548363 0) (1.01853 -0.00542154 0) (1.01875 -0.00536316 0) (1.01896 -0.00530837 0) (1.01917 -0.00525697 0) (1.01937 -0.00520872 0) (1.01957 -0.00516332 0) (1.01976 -0.00512044 0) (1.01994 -0.00507974 0) (1.02012 -0.00504089 0) (1.02029 -0.00500359 0) (1.02046 -0.00496758 0) (1.02062 -0.00493264 0) (1.02077 -0.0048986 0) (1.02093 -0.00486534 0) (1.02108 -0.00483279 0) (1.02122 -0.0048009 0) (1.02136 -0.00476967 0) (1.0215 -0.00473907 0) (1.02163 -0.00470916 0) (1.00004 -0.0013704 0) (1.00083 -0.00386055 0) (1.00226 -0.00573629 0) (1.00399 -0.00684706 0) (1.00564 -0.00736999 0) (1.007 -0.00761299 0) (1.00809 -0.00776686 0) (1.00904 -0.00785479 0) (1.00992 -0.00785298 0) (1.01073 -0.00777482 0) (1.01145 -0.00765933 0) (1.0121 -0.0075336 0) (1.01268 -0.00740435 0) (1.01321 -0.00727091 0) (1.01371 -0.00713477 0) (1.01418 -0.00699963 0) (1.01461 -0.00686858 0) (1.01502 -0.00674309 0) (1.01541 -0.0066236 0) (1.01578 -0.00651014 0) (1.01612 -0.00640251 0) (1.01646 -0.00630027 0) (1.01677 -0.00620287 0) (1.01708 -0.00610975 0) (1.01737 -0.00602048 0) (1.01765 -0.00593483 0) (1.01792 -0.00585273 0) (1.01818 -0.0057742 0) (1.01844 -0.00569935 0) (1.01868 -0.00562826 0) (1.01892 -0.00556097 0) (1.01915 -0.00549751 0) (1.01937 -0.00543778 0) (1.01958 -0.00538167 0) (1.01979 -0.00532898 0) (1.01999 -0.00527945 0) (1.02019 -0.00523279 0) (1.02038 -0.00518869 0) (1.02056 -0.00514681 0) (1.02074 -0.00510683 0) (1.02091 -0.00506844 0) (1.02108 -0.00503139 0) (1.02124 -0.00499547 0) (1.0214 -0.00496051 0) (1.02155 -0.00492638 0) (1.0217 -0.00489302 0) (1.02185 -0.00486036 0) (1.02199 -0.00482841 0) (1.02212 -0.00479714 0) (1.02226 -0.00476658 0) (1.00005 -0.00148027 0) (1.00093 -0.00415057 0) (1.00251 -0.00610808 0) (1.00439 -0.00720126 0) (1.00614 -0.00767012 0) (1.00754 -0.00787671 0) (1.00865 -0.00801378 0) (1.00962 -0.00808391 0) (1.01052 -0.00805742 0) (1.01134 -0.0079557 0) (1.01208 -0.00782322 0) (1.01272 -0.00768546 0) (1.01331 -0.00754599 0) (1.01385 -0.00740318 0) (1.01435 -0.0072589 0) (1.01481 -0.00711705 0) (1.01525 -0.00698041 0) (1.01566 -0.00685008 0) (1.01605 -0.00672627 0) (1.01642 -0.00660897 0) (1.01676 -0.0064979 0) (1.0171 -0.00639261 0) (1.01742 -0.00629247 0) (1.01772 -0.0061969 0) (1.01801 -0.00610544 0) (1.0183 -0.00601781 0) (1.01857 -0.00593392 0) (1.01883 -0.00585375 0) (1.01908 -0.00577737 0) (1.01933 -0.00570484 0) (1.01956 -0.00563618 0) (1.01979 -0.00557138 0) (1.02002 -0.00551036 0) (1.02023 -0.00545297 0) (1.02044 -0.00539902 0) (1.02064 -0.00534826 0) (1.02084 -0.00530039 0) (1.02103 -0.00525511 0) (1.02121 -0.00521208 0) (1.02139 -0.00517099 0) (1.02156 -0.00513155 0) (1.02173 -0.0050935 0) (1.0219 -0.00505663 0) (1.02205 -0.00502077 0) (1.02221 -0.0049858 0) (1.02236 -0.00495165 0) (1.0225 -0.00491825 0) (1.02264 -0.0048856 0) (1.02278 -0.00485367 0) (1.02292 -0.00482249 0) (1.00005 -0.00160067 0) (1.00104 -0.00446528 0) (1.00279 -0.00650124 0) (1.00484 -0.00756361 0) (1.00668 -0.00797023 0) (1.00811 -0.00814079 0) (1.00924 -0.0082619 0) (1.01023 -0.00831206 0) (1.01115 -0.00825844 0) (1.01199 -0.00813259 0) (1.01273 -0.00798363 0) (1.01338 -0.0078341 0) (1.01397 -0.00768431 0) (1.01451 -0.00753203 0) (1.01501 -0.00737971 0) (1.01548 -0.00723131 0) (1.01592 -0.00708922 0) (1.01633 -0.00695413 0) (1.01672 -0.0068261 0) (1.01708 -0.00670504 0) (1.01743 -0.00659064 0) (1.01777 -0.00648238 0) (1.01809 -0.00637959 0) (1.01839 -0.00628163 0) (1.01869 -0.00618804 0) (1.01897 -0.0060985 0) (1.01924 -0.00601287 0) (1.0195 -0.00593111 0) (1.01976 -0.00585325 0) (1.02 -0.00577932 0) (1.02024 -0.00570934 0) (1.02047 -0.00564325 0) (1.0207 -0.00558097 0) (1.02091 -0.00552235 0) (1.02112 -0.00546719 0) (1.02132 -0.00541523 0) (1.02152 -0.00536619 0) (1.02171 -0.00531976 0) (1.0219 -0.00527562 0) (1.02208 -0.00523346 0) (1.02225 -0.005193 0) (1.02242 -0.00515398 0) (1.02258 -0.00511618 0) (1.02274 -0.00507946 0) (1.02289 -0.00504368 0) (1.02304 -0.00500876 0) (1.02319 -0.00497464 0) (1.02333 -0.00494131 0) (1.02347 -0.00490874 0) (1.02361 -0.00487696 0) (1.00006 -0.00173286 0) (1.00117 -0.00480697 0) (1.00311 -0.00691599 0) (1.00533 -0.00793259 0) (1.00726 -0.00826948 0) (1.00873 -0.00840545 0) (1.00987 -0.0085112 0) (1.01088 -0.00853868 0) (1.01182 -0.00845557 0) (1.01267 -0.00830542 0) (1.01341 -0.00814061 0) (1.01407 -0.00797952 0) (1.01466 -0.00781925 0) (1.0152 -0.00765747 0) (1.01571 -0.00749725 0) (1.01618 -0.0073425 0) (1.01662 -0.00719507 0) (1.01703 -0.00705532 0) (1.01742 -0.00692317 0) (1.01779 -0.00679846 0) (1.01814 -0.00668082 0) (1.01847 -0.00656967 0) (1.01879 -0.0064643 0) (1.0191 -0.00636404 0) (1.01939 -0.00626838 0) (1.01967 -0.00617698 0) (1.01995 -0.00608967 0) (1.02021 -0.00600637 0) (1.02047 -0.00592709 0) (1.02071 -0.00585181 0) (1.02095 -0.00578054 0) (1.02118 -0.00571321 0) (1.02141 -0.00564971 0) (1.02162 -0.0055899 0) (1.02183 -0.00553356 0) (1.02204 -0.00548045 0) (1.02224 -0.00543027 0) (1.02243 -0.00538274 0) (1.02261 -0.00533752 0) (1.02279 -0.00529433 0) (1.02297 -0.00525287 0) (1.02314 -0.00521291 0) (1.0233 -0.00517422 0) (1.02346 -0.00513666 0) (1.02361 -0.00510008 0) (1.02376 -0.00506442 0) (1.02391 -0.00502961 0) (1.02405 -0.00499563 0) (1.02419 -0.00496243 0) (1.02433 -0.00493007 0) (1.00007 -0.00187829 0) (1.00131 -0.00517805 0) (1.00346 -0.00735222 0) (1.00586 -0.00830649 0) (1.00789 -0.00856724 0) (1.00937 -0.00867105 0) (1.01053 -0.00876158 0) (1.01156 -0.00876311 0) (1.01253 -0.0086484 0) (1.01339 -0.00847418 0) (1.01413 -0.00829425 0) (1.01479 -0.0081217 0) (1.01538 -0.0079508 0) (1.01593 -0.00777954 0) (1.01644 -0.00761162 0) (1.01691 -0.00745068 0) (1.01735 -0.00729806 0) (1.01776 -0.00715375 0) (1.01815 -0.00701758 0) (1.01852 -0.00688932 0) (1.01887 -0.00676854 0) (1.01921 -0.00665459 0) (1.01953 -0.00654671 0) (1.01984 -0.00644422 0) (1.02013 -0.00634655 0) (1.02041 -0.00625336 0) (1.02069 -0.00616442 0) (1.02095 -0.00607963 0) (1.02121 -0.00599896 0) (1.02146 -0.00592239 0) (1.0217 -0.00584987 0) (1.02193 -0.00578134 0) (1.02215 -0.00571667 0) (1.02237 -0.00565571 0) (1.02258 -0.00559823 0) (1.02279 -0.005544 0) (1.02299 -0.00549273 0) (1.02318 -0.00544412 0) (1.02336 -0.00539787 0) (1.02355 -0.00535367 0) (1.02372 -0.00531126 0) (1.02389 -0.00527038 0) (1.02406 -0.00523083 0) (1.02422 -0.00519245 0) (1.02437 -0.00515511 0) (1.02452 -0.00511873 0) (1.02467 -0.00508323 0) (1.02482 -0.00504861 0) (1.02496 -0.00501482 0) (1.02509 -0.00498188 0) (1.00007 -0.00203866 0) (1.00147 -0.00558102 0) (1.00386 -0.00780946 0) (1.00645 -0.00868343 0) (1.00856 -0.00886313 0) (1.01006 -0.00893805 0) (1.01122 -0.00901278 0) (1.01228 -0.00898465 0) (1.01327 -0.0088366 0) (1.01414 -0.00863894 0) (1.01489 -0.00844462 0) (1.01555 -0.00826063 0) (1.01614 -0.00807894 0) (1.01669 -0.0078983 0) (1.0172 -0.0077229 0) (1.01767 -0.00755597 0) (1.01811 -0.00739826 0) (1.01853 -0.00724951 0) (1.01892 -0.00710942 0) (1.01929 -0.00697771 0) (1.01964 -0.00685389 0) (1.01998 -0.00673722 0) (1.0203 -0.00662692 0) (1.02061 -0.00652226 0) (1.02091 -0.00642266 0) (1.02119 -0.00632773 0) (1.02147 -0.00623721 0) (1.02173 -0.00615099 0) (1.02199 -0.00606898 0) (1.02224 -0.00599115 0) (1.02248 -0.00591743 0) (1.02271 -0.00584774 0) (1.02294 -0.00578194 0) (1.02316 -0.00571986 0) (1.02337 -0.00566129 0) (1.02358 -0.00560598 0) (1.02378 -0.00555365 0) (1.02397 -0.005504 0) (1.02416 -0.00545674 0) (1.02434 -0.00541158 0) (1.02451 -0.00536823 0) (1.02469 -0.00532646 0) (1.02485 -0.00528607 0) (1.02501 -0.0052469 0) (1.02517 -0.00520882 0) (1.02532 -0.00517174 0) (1.02547 -0.00513559 0) (1.02562 -0.00510035 0) (1.02576 -0.00506598 0) (1.02589 -0.00503249 0) (1.00008 -0.00221593 0) (1.00166 -0.00601838 0) (1.0043 -0.00828687 0) (1.00709 -0.00906141 0) (1.00927 -0.00915713 0) (1.01078 -0.00920695 0) (1.01196 -0.00926439 0) (1.01305 -0.00920255 0) (1.01405 -0.00901994 0) (1.01493 -0.00879982 0) (1.01568 -0.0085918 0) (1.01634 -0.00839628 0) (1.01694 -0.00820369 0) (1.01749 -0.00801382 0) (1.018 -0.00783118 0) (1.01848 -0.00765844 0) (1.01892 -0.00749577 0) (1.01934 -0.00734268 0) (1.01973 -0.00719879 0) (1.0201 -0.00706375 0) (1.02045 -0.00693697 0) (1.02079 -0.00681768 0) (1.02112 -0.00670503 0) (1.02142 -0.00659827 0) (1.02172 -0.00649679 0) (1.02201 -0.00640018 0) (1.02228 -0.00630814 0) (1.02255 -0.00622053 0) (1.02281 -0.00613723 0) (1.02306 -0.00605819 0) (1.0233 -0.00598331 0) (1.02354 -0.00591249 0) (1.02376 -0.0058456 0) (1.02398 -0.00578245 0) (1.0242 -0.00572282 0) (1.02441 -0.00566646 0) (1.02461 -0.00561311 0) (1.0248 -0.00556246 0) (1.02499 -0.00551423 0) (1.02517 -0.00546812 0) (1.02535 -0.00542387 0) (1.02552 -0.00538124 0) (1.02569 -0.00534004 0) (1.02585 -0.0053001 0) (1.02601 -0.0052613 0) (1.02617 -0.00522354 0) (1.02631 -0.00518675 0) (1.02646 -0.00515092 0) (1.0266 -0.00511598 0) (1.02674 -0.00508196 0) (1.0001 -0.00241238 0) (1.00187 -0.00649258 0) (1.0048 -0.00878318 0) (1.00779 -0.00943835 0) (1.01004 -0.00944951 0) (1.01155 -0.00947819 0) (1.01275 -0.00951581 0) (1.01386 -0.00941611 0) (1.01488 -0.00919831 0) (1.01577 -0.00895699 0) (1.01652 -0.00873583 0) (1.01718 -0.00852863 0) (1.01778 -0.00832508 0) (1.01834 -0.00812618 0) (1.01885 -0.00793658 0) (1.01932 -0.00775819 0) (1.01977 -0.00759069 0) (1.02018 -0.00743336 0) (1.02058 -0.00728579 0) (1.02095 -0.00714753 0) (1.02131 -0.0070179 0) (1.02165 -0.00689606 0) (1.02197 -0.00678113 0) (1.02228 -0.00667234 0) (1.02258 -0.00656906 0) (1.02287 -0.00647081 0) (1.02315 -0.00637731 0) (1.02342 -0.00628835 0) (1.02367 -0.00620381 0) (1.02393 -0.00612359 0) (1.02417 -0.00604759 0) (1.02441 -0.0059757 0) (1.02464 -0.00590775 0) (1.02486 -0.00584356 0) (1.02507 -0.00578291 0) (1.02528 -0.00572555 0) (1.02548 -0.0056712 0) (1.02568 -0.00561958 0) (1.02587 -0.0055704 0) (1.02605 -0.00552339 0) (1.02623 -0.00547826 0) (1.02641 -0.00543481 0) (1.02658 -0.00539281 0) (1.02674 -0.00535213 0) (1.0269 -0.00531262 0) (1.02705 -0.00527421 0) (1.02721 -0.0052368 0) (1.02735 -0.00520039 0) (1.0275 -0.0051649 0) (1.02764 -0.00513036 0) (1.00011 -0.00263064 0) (1.00211 -0.00700594 0) (1.00535 -0.00929675 0) (1.00855 -0.00981229 0) (1.01085 -0.00974087 0) (1.01236 -0.00975216 0) (1.01357 -0.00976629 0) (1.01472 -0.00962468 0) (1.01576 -0.00937172 0) (1.01665 -0.00911063 0) (1.0174 -0.00887674 0) (1.01806 -0.00865764 0) (1.01867 -0.00844314 0) (1.01922 -0.00823552 0) (1.01974 -0.0080392 0) (1.02021 -0.00785533 0) (1.02066 -0.0076831 0) (1.02108 -0.00752167 0) (1.02147 -0.00737054 0) (1.02185 -0.00722915 0) (1.02221 -0.00709676 0) (1.02255 -0.00697246 0) (1.02287 -0.00685534 0) (1.02319 -0.00674458 0) (1.02349 -0.00663955 0) (1.02378 -0.00653973 0) (1.02406 -0.00644481 0) (1.02433 -0.00635455 0) (1.02459 -0.00626881 0) (1.02484 -0.00618746 0) (1.02509 -0.00611038 0) (1.02532 -0.00603744 0) (1.02555 -0.00596848 0) (1.02578 -0.00590329 0) (1.02599 -0.00584165 0) (1.02621 -0.00578331 0) (1.02641 -0.00572801 0) (1.02661 -0.00567545 0) (1.0268 -0.00562536 0) (1.02699 -0.00557746 0) (1.02717 -0.00553149 0) (1.02734 -0.00548723 0) (1.02751 -0.00544447 0) (1.02768 -0.00540306 0) (1.02784 -0.00536288 0) (1.028 -0.00532382 0) (1.02815 -0.00528582 0) (1.0283 -0.00524884 0) (1.02844 -0.00521281 0) (1.02858 -0.00517777 0) (1.00012 -0.00287371 0) (1.00238 -0.00756069 0) (1.00597 -0.00982553 0) (1.00938 -0.0101816 0) (1.01172 -0.010032 0) (1.01322 -0.0100291 0) (1.01445 -0.0100149 0) (1.01563 -0.00982773 0) (1.01668 -0.00954031 0) (1.01757 -0.00926093 0) (1.01832 -0.00901454 0) (1.01899 -0.00878332 0) (1.0196 -0.00855798 0) (1.02016 -0.00834193 0) (1.02067 -0.00813915 0) (1.02115 -0.00794995 0) (1.0216 -0.00777312 0) (1.02202 -0.00760771 0) (1.02242 -0.00745313 0) (1.02279 -0.00730873 0) (1.02315 -0.00717367 0) (1.0235 -0.00704699 0) (1.02382 -0.00692774 0) (1.02414 -0.0068151 0) (1.02444 -0.00670837 0) (1.02473 -0.00660704 0) (1.02501 -0.00651074 0) (1.02529 -0.00641923 0) (1.02555 -0.00633232 0) (1.02581 -0.00624988 0) (1.02605 -0.00617177 0) (1.02629 -0.00609782 0) (1.02653 -0.00602787 0) (1.02675 -0.00596172 0) (1.02697 -0.00589913 0) (1.02718 -0.00583985 0) (1.02739 -0.00578362 0) (1.02759 -0.00573016 0) (1.02778 -0.00567918 0) (1.02797 -0.00563043 0) (1.02815 -0.00558364 0) (1.02833 -0.00553859 0) (1.0285 -0.00549509 0) (1.02867 -0.00545298 0) (1.02883 -0.00541214 0) (1.02899 -0.00537246 0) (1.02914 -0.00533387 0) (1.0293 -0.00529634 0) (1.02944 -0.0052598 0) (1.02958 -0.00522428 0) (1.00014 -0.00314499 0) (1.00269 -0.00815873 0) (1.00665 -0.0103671 0) (1.01027 -0.0105452 0) (1.01263 -0.010324 0) (1.01413 -0.0103088 0) (1.01539 -0.0102607 0) (1.01659 -0.0100248 0) (1.01766 -0.00970428 0) (1.01855 -0.00940804 0) (1.0193 -0.0091492 0) (1.01997 -0.00890567 0) (1.02058 -0.00866968 0) (1.02114 -0.00844555 0) (1.02166 -0.00823655 0) (1.02214 -0.00804217 0) (1.02259 -0.00786086 0) (1.02301 -0.0076916 0) (1.02341 -0.00753369 0) (1.02379 -0.00738638 0) (1.02415 -0.00724874 0) (1.0245 -0.00711976 0) (1.02483 -0.00699846 0) (1.02515 -0.00688398 0) (1.02545 -0.00677562 0) (1.02574 -0.00667282 0) (1.02603 -0.0065752 0) (1.0263 -0.00648248 0) (1.02657 -0.00639445 0) (1.02683 -0.00631096 0) (1.02707 -0.00623184 0) (1.02732 -0.00615692 0) (1.02755 -0.00608603 0) (1.02778 -0.00601894 0) (1.028 -0.00595543 0) (1.02822 -0.00589525 0) (1.02842 -0.00583812 0) (1.02863 -0.00578378 0) (1.02882 -0.00573195 0) (1.02901 -0.00568237 0) (1.0292 -0.00563478 0) (1.02938 -0.00558898 0) (1.02955 -0.00554476 0) (1.02972 -0.00550197 0) (1.02988 -0.00546048 0) (1.03004 -0.0054202 0) (1.0302 -0.00538105 0) (1.03035 -0.00534299 0) (1.0305 -0.00530594 0) (1.03065 -0.00526994 0) (1.00016 -0.00344833 0) (1.00305 -0.00880146 0) (1.00742 -0.0109187 0) (1.01122 -0.0109024 0) (1.01361 -0.0106178 0) (1.0151 -0.0105911 0) (1.01638 -0.0105025 0) (1.01761 -0.0102158 0) (1.01869 -0.00986392 0) (1.01957 -0.0095521 0) (1.02033 -0.00928072 0) (1.021 -0.00902473 0) (1.02162 -0.00877837 0) (1.02218 -0.00854651 0) (1.0227 -0.0083315 0) (1.02318 -0.00813208 0) (1.02363 -0.00794643 0) (1.02406 -0.00777345 0) (1.02446 -0.00761233 0) (1.02484 -0.00746221 0) (1.02521 -0.00732208 0) (1.02556 -0.00719088 0) (1.02589 -0.00706759 0) (1.02621 -0.00695135 0) (1.02652 -0.0068414 0) (1.02681 -0.00673719 0) (1.0271 -0.00663829 0) (1.02738 -0.0065444 0) (1.02764 -0.00645529 0) (1.0279 -0.00637079 0) (1.02816 -0.0062907 0) (1.0284 -0.00621484 0) (1.02864 -0.00614303 0) (1.02887 -0.00607505 0) (1.02909 -0.00601065 0) (1.02931 -0.00594959 0) (1.02952 -0.0058916 0) (1.02973 -0.00583641 0) (1.02992 -0.00578376 0) (1.03012 -0.00573337 0) (1.0303 -0.00568502 0) (1.03048 -0.00563847 0) (1.03066 -0.00559355 0) (1.03083 -0.0055501 0) (1.031 -0.00550799 0) (1.03116 -0.00546713 0) (1.03132 -0.00542742 0) (1.03148 -0.00538884 0) (1.03163 -0.00535131 0) (1.03177 -0.00531485 0) (1.00018 -0.00378798 0) (1.00346 -0.00948973 0) (1.00826 -0.0114774 0) (1.01226 -0.011253 0) (1.01464 -0.0109144 0) (1.01612 -0.0108753 0) (1.01743 -0.0107394 0) (1.01869 -0.0104004 0) (1.01977 -0.0100196 0) (1.02066 -0.00969321 0) (1.02141 -0.00940906 0) (1.02209 -0.00914057 0) (1.02271 -0.00888418 0) (1.02328 -0.00864494 0) (1.0238 -0.00842413 0) (1.02428 -0.0082198 0) (1.02474 -0.00802995 0) (1.02517 -0.00785337 0) (1.02557 -0.00768916 0) (1.02596 -0.00753633 0) (1.02632 -0.00739379 0) (1.02667 -0.00726044 0) (1.02701 -0.00713525 0) (1.02733 -0.00701729 0) (1.02764 -0.00690582 0) (1.02794 -0.00680024 0) (1.02823 -0.00670011 0) (1.02851 -0.00660509 0) (1.02878 -0.00651494 0) (1.02905 -0.00642945 0) (1.0293 -0.00634843 0) (1.02955 -0.00627167 0) (1.02979 -0.00619898 0) (1.03002 -0.00613013 0) (1.03025 -0.00606487 0) (1.03047 -0.00600297 0) (1.03068 -0.00594414 0) (1.03089 -0.00588813 0) (1.03109 -0.00583468 0) (1.03129 -0.00578352 0) (1.03148 -0.00573441 0) (1.03166 -0.00568716 0) (1.03184 -0.00564156 0) (1.03201 -0.00559746 0) (1.03218 -0.00555474 0) (1.03235 -0.00551331 0) (1.03251 -0.00547307 0) (1.03267 -0.00543398 0) (1.03282 -0.00539598 0) (1.03297 -0.00535906 0) (1.00021 -0.0041686 0) (1.00392 -0.0102238 0) (1.00918 -0.01204 0) (1.01336 -0.0115973 0) (1.01573 -0.0112148 0) (1.0172 -0.0111606 0) (1.01854 -0.0109703 0) (1.01983 -0.0105789 0) (1.02092 -0.0101715 0) (1.0218 -0.00983142 0) (1.02256 -0.00953421 0) (1.02324 -0.00925328 0) (1.02386 -0.00898726 0) (1.02443 -0.00874097 0) (1.02496 -0.00851455 0) (1.02545 -0.00830545 0) (1.0259 -0.00811152 0) (1.02634 -0.00793148 0) (1.02674 -0.00776429 0) (1.02713 -0.00760885 0) (1.0275 -0.00746399 0) (1.02786 -0.00732857 0) (1.0282 -0.00720153 0) (1.02852 -0.00708192 0) (1.02884 -0.00696898 0) (1.02914 -0.00686207 0) (1.02943 -0.00676075 0) (1.02972 -0.00666464 0) (1.02999 -0.00657348 0) (1.03026 -0.00648705 0) (1.03052 -0.00640512 0) (1.03077 -0.0063275 0) (1.03101 -0.00625396 0) (1.03125 -0.00618427 0) (1.03148 -0.00611819 0) (1.0317 -0.00605546 0) (1.03192 -0.00599583 0) (1.03213 -0.00593903 0) (1.03233 -0.0058848 0) (1.03253 -0.00583288 0) (1.03272 -0.00578306 0) (1.03291 -0.0057351 0) (1.03309 -0.00568884 0) (1.03327 -0.00564413 0) (1.03344 -0.00560082 0) (1.03361 -0.00555883 0) (1.03377 -0.00551807 0) (1.03393 -0.00547849 0) (1.03409 -0.00544002 0) (1.03424 -0.00540267 0) (1.00024 -0.00459521 0) (1.00445 -0.0110034 0) (1.0102 -0.0126031 0) (1.01454 -0.0119365 0) (1.01688 -0.0115198 0) (1.01834 -0.0114458 0) (1.01972 -0.0111945 0) (1.02103 -0.0107513 0) (1.02212 -0.0103201 0) (1.02301 -0.00996676 0) (1.02377 -0.00965618 0) (1.02445 -0.00936296 0) (1.02508 -0.00908776 0) (1.02565 -0.00883474 0) (1.02618 -0.00860288 0) (1.02667 -0.00838914 0) (1.02714 -0.00819128 0) (1.02757 -0.00800791 0) (1.02798 -0.00783784 0) (1.02838 -0.00767988 0) (1.02875 -0.00753278 0) (1.02911 -0.00739536 0) (1.02945 -0.00726653 0) (1.02978 -0.00714534 0) (1.0301 -0.00703097 0) (1.03041 -0.00692279 0) (1.0307 -0.00682031 0) (1.03099 -0.00672315 0) (1.03127 -0.00663102 0) (1.03154 -0.00654367 0) (1.0318 -0.00646088 0) (1.03205 -0.00638241 0) (1.0323 -0.00630805 0) (1.03254 -0.00623755 0) (1.03278 -0.00617067 0) (1.033 -0.00610716 0) (1.03322 -0.00604675 0) (1.03344 -0.00598918 0) (1.03364 -0.0059342 0) (1.03384 -0.00588156 0) (1.03404 -0.00583102 0) (1.03423 -0.0057824 0) (1.03442 -0.00573549 0) (1.0346 -0.00569017 0) (1.03477 -0.00564629 0) (1.03494 -0.00560376 0) (1.03511 -0.00556249 0) (1.03527 -0.00552244 0) (1.03543 -0.00548351 0) (1.03558 -0.00544574 0) (1.00028 -0.00507314 0) (1.00504 -0.0118275 0) (1.01132 -0.0131636 0) (1.0158 -0.0122719 0) (1.01809 -0.0118298 0) (1.01956 -0.0117296 0) (1.02098 -0.0114112 0) (1.02231 -0.0109181 0) (1.0234 -0.0104655 0) (1.02428 -0.0100992 0) (1.02505 -0.00977499 0) (1.02574 -0.00946977 0) (1.02637 -0.00918584 0) (1.02694 -0.00892636 0) (1.02748 -0.00868922 0) (1.02797 -0.00847099 0) (1.02844 -0.00826935 0) (1.02888 -0.00808276 0) (1.0293 -0.00790993 0) (1.02969 -0.00774953 0) (1.03007 -0.00760027 0) (1.03043 -0.00746092 0) (1.03078 -0.00733037 0) (1.03112 -0.00720764 0) (1.03144 -0.00709189 0) (1.03175 -0.00698248 0) (1.03205 -0.00687888 0) (1.03234 -0.00678071 0) (1.03262 -0.00668764 0) (1.0329 -0.00659941 0) (1.03316 -0.00651578 0) (1.03342 -0.0064365 0) (1.03367 -0.00636135 0) (1.03392 -0.00629007 0) (1.03415 -0.00622242 0) (1.03438 -0.00615815 0) (1.03461 -0.00609698 0) (1.03482 -0.00603867 0) (1.03504 -0.00598296 0) (1.03524 -0.00592961 0) (1.03544 -0.00587839 0) (1.03563 -0.00582911 0) (1.03582 -0.00578159 0) (1.03601 -0.00573567 0) (1.03619 -0.00569123 0) (1.03636 -0.00564817 0) (1.03653 -0.00560641 0) (1.0367 -0.00556589 0) (1.03686 -0.00552653 0) (1.03701 -0.00548834 0) (1.00033 -0.00560792 0) (1.00571 -0.0126946 0) (1.01253 -0.013718 0) (1.01713 -0.0126059 0) (1.01938 -0.0121455 0) (1.02085 -0.0120105 0) (1.02231 -0.0116201 0) (1.02365 -0.0110797 0) (1.02474 -0.0106081 0) (1.02563 -0.0102288 0) (1.02639 -0.00989069 0) (1.02709 -0.00957385 0) (1.02773 -0.00928163 0) (1.02831 -0.00901596 0) (1.02884 -0.0087737 0) (1.02934 -0.00855113 0) (1.02981 -0.00834583 0) (1.03026 -0.00815615 0) (1.03068 -0.00798065 0) (1.03108 -0.00781791 0) (1.03147 -0.00766656 0) (1.03183 -0.00752536 0) (1.03219 -0.00739315 0) (1.03253 -0.00726892 0) (1.03285 -0.00715185 0) (1.03317 -0.00704124 0) (1.03347 -0.00693657 0) (1.03377 -0.00683741 0) (1.03406 -0.00674344 0) (1.03433 -0.00665435 0) (1.0346 -0.00656991 0) (1.03487 -0.00648985 0) (1.03512 -0.00641393 0) (1.03537 -0.0063419 0) (1.03561 -0.00627351 0) (1.03585 -0.0062085 0) (1.03608 -0.0061466 0) (1.0363 -0.00608757 0) (1.03651 -0.00603116 0) (1.03672 -0.00597712 0) (1.03693 -0.00592524 0) (1.03712 -0.00587532 0) (1.03732 -0.00582719 0) (1.0375 -0.00578069 0) (1.03769 -0.00573571 0) (1.03786 -0.00569214 0) (1.03804 -0.00564989 0) (1.03821 -0.00560892 0) (1.03837 -0.00556913 0) (1.03853 -0.00553054 0) (1.00038 -0.00620521 0) (1.00647 -0.0136027 0) (1.01385 -0.014263 0) (1.01855 -0.0129407 0) (1.02073 -0.0124667 0) (1.02221 -0.0122871 0) (1.02371 -0.0118209 0) (1.02507 -0.0112365 0) (1.02616 -0.0107479 0) (1.02705 -0.0103554 0) (1.02782 -0.0100034 0) (1.02852 -0.00967537 0) (1.02916 -0.0093753 0) (1.02975 -0.00910366 0) (1.03029 -0.00885643 0) (1.03079 -0.00862966 0) (1.03127 -0.00842085 0) (1.03172 -0.0082282 0) (1.03215 -0.00805012 0) (1.03255 -0.00788512 0) (1.03294 -0.00773176 0) (1.03331 -0.00758876 0) (1.03367 -0.00745494 0) (1.03402 -0.00732929 0) (1.03435 -0.00721092 0) (1.03467 -0.00709916 0) (1.03498 -0.00699345 0) (1.03528 -0.00689334 0) (1.03557 -0.00679849 0) (1.03586 -0.00670858 0) (1.03613 -0.00662335 0) (1.0364 -0.00654254 0) (1.03666 -0.00646588 0) (1.03691 -0.00639313 0) (1.03716 -0.00632402 0) (1.0374 -0.00625829 0) (1.03763 -0.00619569 0) (1.03786 -0.00613596 0) (1.03808 -0.00607886 0) (1.03829 -0.00602416 0) (1.0385 -0.00597163 0) (1.0387 -0.0059211 0) (1.0389 -0.00587237 0) (1.03909 -0.00582531 0) (1.03928 -0.0057798 0) (1.03946 -0.00573573 0) (1.03963 -0.00569301 0) (1.03981 -0.00565159 0) (1.03998 -0.00561139 0) (1.04014 -0.0055724 0) (1.00044 -0.00687072 0) (1.00731 -0.0145491 0) (1.01528 -0.0147963 0) (1.02004 -0.0132787 0) (1.02216 -0.0127931 0) (1.02366 -0.0125579 0) (1.0252 -0.0120137 0) (1.02657 -0.0113891 0) (1.02766 -0.0108852 0) (1.02854 -0.010479 0) (1.02932 -0.0101131 0) (1.03003 -0.00977448 0) (1.03067 -0.00946696 0) (1.03126 -0.00918958 0) (1.03181 -0.00893753 0) (1.03232 -0.00870672 0) (1.0328 -0.00849452 0) (1.03326 -0.008299 0) (1.03369 -0.00811845 0) (1.03411 -0.00795126 0) (1.0345 -0.00779597 0) (1.03488 -0.00765123 0) (1.03524 -0.00751586 0) (1.03559 -0.00738882 0) (1.03593 -0.00726921 0) (1.03626 -0.00715633 0) (1.03657 -0.00704961 0) (1.03688 -0.00694858 0) (1.03718 -0.00685288 0) (1.03747 -0.00676218 0) (1.03775 -0.00667619 0) (1.03802 -0.00659465 0) (1.03829 -0.00651728 0) (1.03854 -0.00644382 0) (1.0388 -0.00637401 0) (1.03904 -0.00630759 0) (1.03928 -0.00624431 0) (1.03951 -0.00618391 0) (1.03973 -0.00612615 0) (1.03995 -0.0060708 0) (1.04016 -0.00601764 0) (1.04037 -0.0059665 0) (1.04057 -0.0059172 0) (1.04077 -0.00586959 0) (1.04096 -0.00582356 0) (1.04115 -0.005779 0) (1.04133 -0.00573582 0) (1.0415 -0.00569397 0) (1.04168 -0.00565335 0) (1.04185 -0.00561398 0) (1.00051 -0.0076101 0) (1.00826 -0.0155308 0) (1.01681 -0.0153169 0) (1.02162 -0.0136216 0) (1.02367 -0.0131239 0) (1.02519 -0.0128215 0) (1.02676 -0.0121985 0) (1.02815 -0.0115379 0) (1.02923 -0.0110198 0) (1.03011 -0.0105997 0) (1.0309 -0.0102201 0) (1.03161 -0.00987135 0) (1.03226 -0.00955677 0) (1.03286 -0.00927383 0) (1.03342 -0.00901711 0) (1.03393 -0.0087824 0) (1.03442 -0.00856695 0) (1.03489 -0.00836868 0) (1.03532 -0.00818573 0) (1.03574 -0.00801644 0) (1.03615 -0.00785927 0) (1.03653 -0.00771286 0) (1.0369 -0.007576 0) (1.03726 -0.0074476 0) (1.0376 -0.00732679 0) (1.03793 -0.00721283 0) (1.03826 -0.00710513 0) (1.03857 -0.00700321 0) (1.03887 -0.00690669 0) (1.03917 -0.00681522 0) (1.03945 -0.0067285 0) (1.03973 -0.00664625 0) (1.04 -0.00656819 0) (1.04027 -0.00649405 0) (1.04053 -0.00642357 0) (1.04078 -0.00635648 0) (1.04102 -0.00629254 0) (1.04125 -0.00623148 0) (1.04148 -0.00617307 0) (1.04171 -0.00611709 0) (1.04193 -0.00606333 0) (1.04214 -0.0060116 0) (1.04234 -0.00596173 0) (1.04254 -0.00591359 0) (1.04274 -0.00586705 0) (1.04293 -0.00582201 0) (1.04312 -0.00577838 0) (1.0433 -0.0057361 0) (1.04348 -0.00569508 0) (1.04365 -0.00565533 0) (1.0006 -0.0084288 0) (1.00931 -0.0165441 0) (1.01846 -0.0158249 0) (1.02328 -0.0139708 0) (1.02526 -0.0134576 0) (1.0268 -0.0130767 0) (1.02842 -0.0123758 0) (1.0298 -0.0116833 0) (1.03088 -0.0111519 0) (1.03177 -0.0107175 0) (1.03256 -0.0103245 0) (1.03329 -0.00996615 0) (1.03394 -0.00964483 0) (1.03455 -0.00935652 0) (1.03511 -0.00909529 0) (1.03563 -0.00885682 0) (1.03613 -0.00863824 0) (1.0366 -0.00843731 0) (1.03705 -0.00825206 0) (1.03747 -0.00808074 0) (1.03788 -0.00792176 0) (1.03827 -0.00777374 0) (1.03865 -0.00763542 0) (1.03901 -0.00750573 0) (1.03937 -0.00738375 0) (1.0397 -0.00726874 0) (1.04003 -0.00716009 0) (1.04035 -0.00705731 0) (1.04066 -0.00695999 0) (1.04096 -0.00686777 0) (1.04126 -0.00678034 0) (1.04154 -0.0066974 0) (1.04182 -0.00661868 0) (1.04209 -0.00654388 0) (1.04235 -0.00647275 0) (1.04261 -0.00640501 0) (1.04286 -0.00634042 0) (1.0431 -0.00627873 0) (1.04333 -0.0062197 0) (1.04356 -0.0061631 0) (1.04379 -0.00610874 0) (1.044 -0.00605643 0) (1.04422 -0.00600601 0) (1.04442 -0.00595734 0) (1.04462 -0.0059103 0) (1.04482 -0.00586478 0) (1.04501 -0.00582071 0) (1.04519 -0.00577801 0) (1.04537 -0.00573659 0) (1.04555 -0.00569645 0) (1.00069 -0.00933199 0) (1.01047 -0.0175854 0) (1.02022 -0.0163209 0) (1.02503 -0.0143271 0) (1.02693 -0.0137926 0) (1.02851 -0.0133225 0) (1.03016 -0.012546 0) (1.03154 -0.0118257 0) (1.03262 -0.0112813 0) (1.03352 -0.0108324 0) (1.03431 -0.0104264 0) (1.03504 -0.010059 0) (1.03571 -0.00973127 0) (1.03632 -0.00943777 0) (1.03689 -0.00917218 0) (1.03742 -0.00893009 0) (1.03793 -0.00870849 0) (1.0384 -0.008505 0) (1.03886 -0.00831753 0) (1.03929 -0.00814425 0) (1.03971 -0.00798353 0) (1.04011 -0.00783394 0) (1.04049 -0.00769422 0) (1.04086 -0.00756327 0) (1.04122 -0.00744016 0) (1.04157 -0.00732413 0) (1.04191 -0.00721456 0) (1.04223 -0.00711094 0) (1.04255 -0.00701284 0) (1.04286 -0.0069199 0) (1.04316 -0.00683178 0) (1.04345 -0.00674818 0) (1.04373 -0.0066688 0) (1.04401 -0.00659337 0) (1.04428 -0.0065216 0) (1.04454 -0.00645323 0) (1.0448 -0.00638802 0) (1.04504 -0.0063257 0) (1.04528 -0.00626605 0) (1.04552 -0.00620884 0) (1.04575 -0.00615389 0) (1.04597 -0.00610101 0) (1.04619 -0.00605004 0) (1.0464 -0.00600084 0) (1.0466 -0.00595329 0) (1.0468 -0.00590729 0) (1.047 -0.00586275 0) (1.04719 -0.00581962 0) (1.04737 -0.00577778 0) (1.04755 -0.00573725 0) (1.0008 -0.0103244 0) (1.01174 -0.0186507 0) (1.02209 -0.0168063 0) (1.02686 -0.0146912 0) (1.02869 -0.0141274 0) (1.03031 -0.0135582 0) (1.03198 -0.0127095 0) (1.03337 -0.0119653 0) (1.03444 -0.0114082 0) (1.03535 -0.0109444 0) (1.03615 -0.0105259 0) (1.03689 -0.0101501 0) (1.03756 -0.0098162 0) (1.03818 -0.00951766 0) (1.03876 -0.00924787 0) (1.0393 -0.0090023 0) (1.03981 -0.0087778 0) (1.0403 -0.00857184 0) (1.04076 -0.00838223 0) (1.04121 -0.00820705 0) (1.04163 -0.00804465 0) (1.04204 -0.00789355 0) (1.04243 -0.00775247 0) (1.04281 -0.00762029 0) (1.04318 -0.00749608 0) (1.04353 -0.00737906 0) (1.04388 -0.0072686 0) (1.04421 -0.00716416 0) (1.04453 -0.00706531 0) (1.04485 -0.00697166 0) (1.04516 -0.00688287 0) (1.04546 -0.00679862 0) (1.04575 -0.0067186 0) (1.04603 -0.00664254 0) (1.0463 -0.00657014 0) (1.04657 -0.00650114 0) (1.04683 -0.00643529 0) (1.04709 -0.00637235 0) (1.04733 -0.00631207 0) (1.04757 -0.00625425 0) (1.0478 -0.00619869 0) (1.04803 -0.00614522 0) (1.04825 -0.00609367 0) (1.04846 -0.00604391 0) (1.04867 -0.00599582 0) (1.04887 -0.0059493 0) (1.04907 -0.00590426 0) (1.04926 -0.00586064 0) (1.04945 -0.00581834 0) (1.04963 -0.00577735 0) (1.00093 -0.0114105 0) (1.01314 -0.0197361 0) (1.02407 -0.0172827 0) (1.02877 -0.0150635 0) (1.03054 -0.0144599 0) (1.0322 -0.0137834 0) (1.0339 -0.0128671 0) (1.03528 -0.0121025 0) (1.03636 -0.0115324 0) (1.03726 -0.0110537 0) (1.03808 -0.0106234 0) (1.03883 -0.0102395 0) (1.03951 -0.00989971 0) (1.04014 -0.00959631 0) (1.04072 -0.00932246 0) (1.04127 -0.00907354 0) (1.0418 -0.00884626 0) (1.04229 -0.00863791 0) (1.04276 -0.00844623 0) (1.04322 -0.00826922 0) (1.04365 -0.00810519 0) (1.04407 -0.00795262 0) (1.04447 -0.00781022 0) (1.04486 -0.00767686 0) (1.04523 -0.00755158 0) (1.04559 -0.00743359 0) (1.04595 -0.00732225 0) (1.04629 -0.00721701 0) (1.04662 -0.00711741 0) (1.04694 -0.00702306 0) (1.04726 -0.00693359 0) (1.04756 -0.00684868 0) (1.04786 -0.00676802 0) (1.04814 -0.0066913 0) (1.04842 -0.00661825 0) (1.0487 -0.0065486 0) (1.04896 -0.00648208 0) (1.04922 -0.00641847 0) (1.04947 -0.00635751 0) (1.04971 -0.00629902 0) (1.04994 -0.00624278 0) (1.05017 -0.00618863 0) (1.05039 -0.00613642 0) (1.0506 -0.006086 0) (1.0508 -0.00603727 0) (1.051 -0.00599012 0) (1.05119 -0.00594446 0) (1.05138 -0.00590023 0) (1.05156 -0.00585734 0) (1.05173 -0.00581574 0) (1.00107 -0.0125939 0) (1.01467 -0.0208374 0) (1.02617 -0.0177525 0) (1.03077 -0.0154439 0) (1.03249 -0.0147881 0) (1.03418 -0.0139978 0) (1.0359 -0.0130194 0) (1.03728 -0.0122372 0) (1.03836 -0.0116539 0) (1.03927 -0.0111604 0) (1.0401 -0.0107188 0) (1.04086 -0.0103274 0) (1.04155 -0.00998192 0) (1.04218 -0.00967381 0) (1.04278 -0.00939605 0) (1.04334 -0.00914391 0) (1.04387 -0.00891393 0) (1.04438 -0.00870329 0) (1.04486 -0.0085096 0) (1.04532 -0.00833083 0) (1.04577 -0.00816521 0) (1.04619 -0.00801122 0) (1.0466 -0.00786753 0) (1.047 -0.007733 0) (1.04738 -0.00760666 0) (1.04775 -0.00748771 0) (1.04811 -0.00737549 0) (1.04846 -0.00726943 0) (1.0488 -0.00716906 0) (1.04913 -0.00707396 0) (1.04944 -0.00698377 0) (1.04975 -0.00689814 0) (1.05005 -0.00681675 0) (1.05034 -0.0067393 0) (1.05062 -0.00666549 0) (1.05089 -0.00659507 0) (1.05115 -0.00652776 0) (1.0514 -0.00646333 0) (1.05165 -0.00640154 0) (1.05188 -0.00634219 0) (1.05211 -0.0062851 0) (1.05232 -0.00623008 0) (1.05253 -0.00617699 0) (1.05273 -0.00612569 0) (1.05292 -0.00607608 0) (1.0531 -0.00602805 0) (1.05327 -0.00598152 0) (1.05343 -0.0059364 0) (1.05359 -0.00589264 0) (1.05374 -0.00585017 0) (1.00124 -0.0138779 0) (1.01633 -0.0219505 0) (1.02838 -0.0182184 0) (1.03286 -0.0158322 0) (1.03452 -0.0151101 0) (1.03626 -0.0142016 0) (1.038 -0.0131669 0) (1.03937 -0.0123695 0) (1.04045 -0.0117728 0) (1.04137 -0.0112647 0) (1.04221 -0.0108124 0) (1.04298 -0.0104139 0) (1.04368 -0.0100629 0) (1.04433 -0.00975024 0) (1.04493 -0.00946872 0) (1.04551 -0.00921348 0) (1.04605 -0.0089809 0) (1.04656 -0.00876804 0) (1.04706 -0.0085724 0) (1.04753 -0.00839191 0) (1.04798 -0.00822474 0) (1.04842 -0.00806935 0) (1.04883 -0.00792437 0) (1.04924 -0.00778865 0) (1.04963 -0.00766121 0) (1.05 -0.00754124 0) (1.05037 -0.00742805 0) (1.05072 -0.00732106 0) (1.05105 -0.00721979 0) (1.05138 -0.00712381 0) (1.05169 -0.00703272 0) (1.052 -0.00694617 0) (1.05229 -0.00686383 0) (1.05257 -0.00678539 0) (1.05283 -0.00671057 0) (1.05309 -0.00663907 0) (1.05333 -0.00657065 0) (1.05356 -0.00650506 0) (1.05378 -0.00644208 0) (1.05398 -0.0063815 0) (1.05418 -0.00632314 0) (1.05436 -0.00626684 0) (1.05453 -0.00621244 0) (1.05469 -0.00615981 0) (1.05484 -0.00610886 0) (1.05497 -0.00605948 0) (1.0551 -0.00601159 0) (1.05521 -0.0059651 0) (1.05531 -0.00591997 0) (1.0554 -0.00587612 0) (1.00142 -0.0152652 0) (1.01812 -0.0230712 0) (1.0307 -0.0186835 0) (1.03504 -0.0162279 0) (1.03665 -0.0154239 0) (1.03843 -0.0143949 0) (1.04018 -0.0133102 0) (1.04155 -0.0124995 0) (1.04263 -0.0118889 0) (1.04357 -0.0113666 0) (1.04442 -0.0109043 0) (1.04519 -0.010499 0) (1.0459 -0.0101427 0) (1.04656 -0.00982569 0) (1.04718 -0.00954055 0) (1.04776 -0.00928232 0) (1.04832 -0.00904722 0) (1.04884 -0.00883218 0) (1.04934 -0.00863463 0) (1.04983 -0.00845241 0) (1.05029 -0.00828367 0) (1.05073 -0.00812679 0) (1.05115 -0.00798042 0) (1.05155 -0.00784337 0) (1.05194 -0.00771465 0) (1.05231 -0.00759343 0) (1.05267 -0.007479 0) (1.05301 -0.00737077 0) (1.05333 -0.00726824 0) (1.05363 -0.00717096 0) (1.05392 -0.00707852 0) (1.0542 -0.00699057 0) (1.05445 -0.00690675 0) (1.05469 -0.00682677 0) (1.05491 -0.00675032 0) (1.05512 -0.00667713 0) (1.05531 -0.00660695 0) (1.05548 -0.00653952 0) (1.05563 -0.00647464 0) (1.05577 -0.00641212 0) (1.05589 -0.00635176 0) (1.05599 -0.00629342 0) (1.05608 -0.00623695 0) (1.05615 -0.00618224 0) (1.0562 -0.00612917 0) (1.05624 -0.00607766 0) (1.05627 -0.00602764 0) (1.05627 -0.00597902 0) (1.05627 -0.00593175 0) (1.05625 -0.00588576 0) (1.00162 -0.0167579 0) (1.02005 -0.0241957 0) (1.03312 -0.0191512 0) (1.0373 -0.01663 0) (1.03888 -0.0157276 0) (1.04069 -0.0145783 0) (1.04245 -0.0134498 0) (1.04382 -0.0126272 0) (1.0449 -0.0120024 0) (1.04585 -0.0114663 0) (1.04671 -0.0109946 0) (1.0475 -0.0105829 0) (1.04822 -0.0102215 0) (1.04889 -0.00990024 0) (1.04952 -0.0096116 0) (1.05012 -0.00935044 0) (1.05068 -0.00911283 0) (1.05121 -0.00889558 0) (1.05172 -0.00869602 0) (1.0522 -0.00851191 0) (1.05266 -0.00834134 0) (1.05309 -0.00818269 0) (1.0535 -0.00803454 0) (1.05389 -0.00789569 0) (1.05425 -0.00776515 0) (1.05459 -0.00764206 0) (1.05491 -0.0075257 0) (1.0552 -0.00741547 0) (1.05546 -0.00731085 0) (1.0557 -0.00721138 0) (1.05592 -0.00711666 0) (1.05611 -0.00702631 0) (1.05628 -0.00694 0) (1.05642 -0.0068574 0) (1.05654 -0.00677824 0) (1.05663 -0.00670224 0) (1.0567 -0.00662914 0) (1.05674 -0.00655874 0) (1.05675 -0.00649081 0) (1.05675 -0.00642518 0) (1.05672 -0.00636168 0) (1.05666 -0.00630016 0) (1.05659 -0.00624049 0) (1.05649 -0.00618257 0) (1.05637 -0.00612629 0) (1.05623 -0.00607159 0) (1.05607 -0.00601837 0) (1.0559 -0.00596659 0) (1.0557 -0.00591617 0) (1.05549 -0.00586708 0) (1.00185 -0.0183572 0) (1.02211 -0.0253198 0) (1.03565 -0.0196253 0) (1.03965 -0.0170372 0) (1.0412 -0.0160197 0) (1.04304 -0.0147523 0) (1.04481 -0.0135862 0) (1.04617 -0.0127524 0) (1.04726 -0.0121132 0) (1.04822 -0.011564 0) (1.0491 -0.0110835 0) (1.0499 -0.0106656 0) (1.05063 -0.0102993 0) (1.05132 -0.00997389 0) (1.05195 -0.00968174 0) (1.05255 -0.00941755 0) (1.05311 -0.00917722 0) (1.05364 -0.00895742 0) (1.05414 -0.00875537 0) (1.05459 -0.00856876 0) (1.05502 -0.00839564 0) (1.05541 -0.00823432 0) (1.05576 -0.00808338 0) (1.05608 -0.00794161 0) (1.05636 -0.007808 0) (1.0566 -0.00768169 0) (1.05681 -0.00756196 0) (1.05697 -0.00744821 0) (1.0571 -0.00733992 0) (1.05719 -0.00723664 0) (1.05724 -0.00713797 0) (1.05726 -0.00704353 0) (1.05723 -0.00695301 0) (1.05717 -0.00686609 0) (1.05707 -0.00678251 0) (1.05694 -0.00670201 0) (1.05677 -0.00662435 0) (1.05657 -0.00654933 0) (1.05633 -0.00647676 0) (1.05607 -0.00640648 0) (1.05577 -0.00633832 0) (1.05544 -0.00627216 0) (1.05509 -0.00620789 0) (1.05471 -0.00614542 0) (1.0543 -0.00608463 0) (1.05387 -0.0060255 0) (1.05342 -0.00596789 0) (1.05295 -0.00591183 0) (1.05246 -0.00585719 0) (1.05195 -0.00580398 0) (1.0021 -0.0200641 0) (1.02431 -0.0264395 0) (1.03828 -0.0201097 0) (1.04209 -0.0174483 0) (1.04361 -0.0162987 0) (1.04549 -0.0149175 0) (1.04725 -0.0137197 0) (1.04862 -0.0128752 0) (1.04972 -0.0122216 0) (1.05069 -0.0116598 0) (1.05158 -0.0111711 0) (1.05239 -0.0107472 0) (1.05313 -0.010376 0) (1.05381 -0.0100462 0) (1.05444 -0.00975012 0) (1.05502 -0.00948226 0) (1.05555 -0.00923832 0) (1.05603 -0.00901483 0) (1.05646 -0.00880893 0) (1.05683 -0.00861824 0) (1.05714 -0.00844076 0) (1.0574 -0.0082748 0) (1.0576 -0.00811893 0) (1.05773 -0.00797197 0) (1.05781 -0.00783292 0) (1.05783 -0.00770094 0) (1.05779 -0.00757535 0) (1.05769 -0.00745557 0) (1.05753 -0.0073411 0) (1.05731 -0.0072315 0) (1.05704 -0.00712641 0) (1.05672 -0.00702548 0) (1.05634 -0.0069284 0) (1.05591 -0.00683489 0) (1.05544 -0.0067447 0) (1.05492 -0.00665761 0) (1.05435 -0.00657339 0) (1.05374 -0.00649187 0) (1.0531 -0.00641287 0) (1.05241 -0.00633624 0) (1.05169 -0.00626185 0) (1.05094 -0.0061896 0) (1.05016 -0.00611935 0) (1.04936 -0.00605106 0) (1.04852 -0.00598458 0) (1.04766 -0.00591995 0) (1.04679 -0.00585697 0) (1.04589 -0.00579573 0) (1.04497 -0.00573603 0) (1.04404 -0.00567799 0) (1.00238 -0.0218787 0) (1.02665 -0.0275506 0) (1.04101 -0.0206086 0) (1.04461 -0.0178614 0) (1.04611 -0.0165636 0) (1.04802 -0.0150746 0) (1.04979 -0.0138505 0) (1.05115 -0.0129957 0) (1.05226 -0.0123277 0) (1.05325 -0.011754 0) (1.05414 -0.0112572 0) (1.05495 -0.0108271 0) (1.05567 -0.0104501 0) (1.05632 -0.0101149 0) (1.05688 -0.0098133 0) (1.05737 -0.00953977 0) (1.05777 -0.00928983 0) (1.05808 -0.0090599 0) (1.05831 -0.00884709 0) (1.05844 -0.008649 0) (1.05848 -0.00846366 0) (1.05842 -0.00828943 0) (1.05827 -0.00812493 0) (1.05803 -0.00796904 0) (1.05769 -0.00782084 0) (1.05726 -0.00767956 0) (1.05675 -0.00754456 0) (1.05616 -0.00741532 0) (1.05548 -0.00729139 0) (1.05473 -0.00717238 0) (1.05391 -0.00705793 0) (1.05302 -0.00694775 0) (1.05207 -0.00684156 0) (1.05106 -0.00673909 0) (1.04999 -0.00664013 0) (1.04887 -0.00654446 0) (1.04771 -0.00645189 0) (1.0465 -0.00636224 0) (1.04525 -0.00627537 0) (1.04397 -0.00619113 0) (1.04266 -0.00610939 0) (1.04131 -0.00603006 0) (1.03995 -0.00595301 0) (1.03856 -0.0058782 0) (1.03715 -0.00580547 0) (1.03573 -0.00573487 0) (1.03429 -0.00566615 0) (1.03284 -0.00559948 0) (1.03138 -0.00553455 0) (1.02991 -0.00547158 0) (1.00268 -0.0238008 0) (1.02912 -0.0286489 0) (1.04384 -0.0211256 0) (1.04722 -0.018275 0) (1.0487 -0.0168138 0) (1.05064 -0.0152244 0) (1.05241 -0.0139792 0) (1.05378 -0.013114 0) (1.0549 -0.0124316 0) (1.05588 -0.0118459 0) (1.05674 -0.0113401 0) (1.05748 -0.0109019 0) (1.0581 -0.0105165 0) (1.05858 -0.0101723 0) (1.05892 -0.00986124 0) (1.05913 -0.00957742 0) (1.05918 -0.00931642 0) (1.05909 -0.00907471 0) (1.05885 -0.00884947 0) (1.05846 -0.00863841 0) (1.05792 -0.00843969 0) (1.05724 -0.00825179 0) (1.05642 -0.00807348 0) (1.05547 -0.00790376 0) (1.0544 -0.0077418 0) (1.05321 -0.00758693 0) (1.05191 -0.0074386 0) (1.05051 -0.00729633 0) (1.04902 -0.00715972 0) (1.04744 -0.00702841 0) (1.04579 -0.00690209 0) (1.04407 -0.00678047 0) (1.04228 -0.00666327 0) (1.04044 -0.00655026 0) (1.03855 -0.00644121 0) (1.03662 -0.00633592 0) (1.03465 -0.00623418 0) (1.03264 -0.00613583 0) (1.03061 -0.0060407 0) (1.02856 -0.00594865 0) (1.02649 -0.00585954 0) (1.02441 -0.00577327 0) (1.02232 -0.00568967 0) (1.02022 -0.00560873 0) (1.01812 -0.00553023 0) (1.01601 -0.00545425 0) (1.01392 -0.00538047 0) (1.01182 -0.0053091 0) (1.00974 -0.00523972 0) (1.00766 -0.00517268 0) (1.00301 -0.0258295 0) (1.03172 -0.0297327 0) (1.04675 -0.0216631 0) (1.04991 -0.0186871 0) (1.05139 -0.0170492 0) (1.05336 -0.0153683 0) (1.05514 -0.0141063 0) (1.0565 -0.0132299 0) (1.05758 -0.0125314 0) (1.05847 -0.0119311 0) (1.05916 -0.0114121 0) (1.05964 -0.0109601 0) (1.05989 -0.0105597 0) (1.05991 -0.010199 0) (1.05969 -0.00987027 0) (1.05922 -0.00956778 0) (1.05852 -0.00928733 0) (1.05759 -0.00902564 0) (1.05643 -0.00878012 0) (1.05506 -0.00854876 0) (1.05349 -0.0083299 0) (1.05174 -0.00812223 0) (1.04981 -0.00792468 0) (1.04774 -0.00773636 0) (1.04552 -0.00755655 0) (1.04318 -0.00738465 0) (1.04073 -0.00722014 0) (1.03818 -0.00706257 0) (1.03555 -0.00691154 0) (1.03285 -0.00676668 0) (1.03009 -0.00662765 0) (1.02727 -0.00649414 0) (1.02442 -0.00636586 0) (1.02153 -0.00624253 0) (1.01862 -0.0061239 0) (1.0157 -0.00600973 0) (1.01276 -0.00589979 0) (1.00981 -0.00579389 0) (1.00687 -0.00569181 0) (1.00394 -0.0055934 0) (1.00101 -0.00549846 0) (0.998098 -0.00540688 0) (0.995202 -0.00531846 0) (0.992327 -0.00523316 0) (0.989475 -0.00515071 0) (0.986649 -0.00507118 0) (0.98385 -0.00499419 0) (0.981081 -0.00491999 0) (0.978342 -0.00484806 0) (0.975636 -0.0047788 0) (1.00337 -0.027963 0) (1.03444 -0.0308026 0) (1.04974 -0.0222212 0) (1.0527 -0.019096 0) (1.05421 -0.0172713 0) (1.05622 -0.0155077 0) (1.05796 -0.0142306 0) (1.0592 -0.0133384 0) (1.06006 -0.0126172 0) (1.06056 -0.0119936 0) (1.06069 -0.0114506 0) (1.06044 -0.0109726 0) (1.05979 -0.0105441 0) (1.05875 -0.0101541 0) (1.05733 -0.00979528 0) (1.05556 -0.00946245 0) (1.05345 -0.00915193 0) (1.05103 -0.00886085 0) (1.04834 -0.00858696 0) (1.04539 -0.00832848 0) (1.04223 -0.00808396 0) (1.03888 -0.00785219 0) (1.03537 -0.00763218 0) (1.03171 -0.00742307 0) (1.02795 -0.00722411 0) (1.02409 -0.00703468 0) (1.02015 -0.00685418 0) (1.01616 -0.00668209 0) (1.01213 -0.00651791 0) (1.00808 -0.0063612 0) (1.00401 -0.00621153 0) (0.999937 -0.0060685 0) (0.995872 -0.00593174 0) (0.991821 -0.00580088 0) (0.987793 -0.00567561 0) (0.983794 -0.00555561 0) (0.979829 -0.0054406 0) (0.975903 -0.00533031 0) (0.97202 -0.00522448 0) (0.968183 -0.00512291 0) (0.964396 -0.00502534 0) (0.96066 -0.00493162 0) (0.956979 -0.0048415 0) (0.953352 -0.00475491 0) (0.949783 -0.00467152 0) (0.946271 -0.0045914 0) (0.942816 -0.0045141 0) (0.939421 -0.00443987 0) (0.936084 -0.00436813 0) (0.932807 -0.00429929 0) (1.00374 -0.0301987 0) (1.03728 -0.0318603 0) (1.05285 -0.0228006 0) (1.05567 -0.0195019 0) (1.05721 -0.0174814 0) (1.05916 -0.0156401 0) (1.06063 -0.0143412 0) (1.06135 -0.0134185 0) (1.0614 -0.0126571 0) (1.0608 -0.0119909 0) (1.05955 -0.0114036 0) (1.05766 -0.0108798 0) (1.05518 -0.0104051 0) (1.05215 -0.00996955 0) (1.04862 -0.00956682 0) (1.04466 -0.0091925 0) (1.04033 -0.00884327 0) (1.03568 -0.00851653 0) (1.03077 -0.00821016 0) (1.02566 -0.00792236 0) (1.02037 -0.00765161 0) (1.01496 -0.00739658 0) (1.00946 -0.00715609 0) (1.0039 -0.0069291 0) (0.998301 -0.00671467 0) (0.992698 -0.00651194 0) (0.987104 -0.00632013 0) (0.981537 -0.00613851 0) (0.976012 -0.00596641 0) (0.970539 -0.00580319 0) (0.965128 -0.00564829 0) (0.959788 -0.00550116 0) (0.954525 -0.0053613 0) (0.949344 -0.00522825 0) (0.944249 -0.00510156 0) (0.939243 -0.00498086 0) (0.934329 -0.00486576 0) (0.929508 -0.00475593 0) (0.924782 -0.00465105 0) (0.92015 -0.00455084 0) (0.915614 -0.00445502 0) (0.911172 -0.00436336 0) (0.906825 -0.00427559 0) (0.902571 -0.00419158 0) (0.898409 -0.00411098 0) (0.894339 -0.00403382 0) (0.890358 -0.00395963 0) (0.886466 -0.00388863 0) (0.88266 -0.00382021 0) (0.878941 -0.00375476 0) (1.00412 -0.0325332 0) (1.04027 -0.03291 0) (1.05619 -0.0234048 0) (1.0589 -0.0199051 0) (1.0603 -0.0176731 0) (1.06171 -0.0157433 0) (1.06211 -0.0143971 0) (1.06125 -0.0134114 0) (1.05924 -0.0125772 0) (1.05617 -0.0118376 0) (1.05215 -0.0111789 0) (1.04728 -0.010587 0) (1.0417 -0.0100489 0) (1.03551 -0.00955587 0) (1.02885 -0.00910193 0) (1.02182 -0.00868276 0) (1.01451 -0.00829485 0) (1.00701 -0.0079352 0) (0.99938 -0.00760122 0) (0.99169 -0.0072906 0) (0.983985 -0.0070013 0) (0.976304 -0.00673149 0) (0.96868 -0.00647954 0) (0.96114 -0.00624397 0) (0.953704 -0.00602345 0) (0.946389 -0.00581677 0) (0.939208 -0.00562283 0) (0.932169 -0.00544063 0) (0.925279 -0.00526926 0) (0.918543 -0.00510788 0) (0.911963 -0.00495575 0) (0.905541 -0.00481216 0) (0.899277 -0.00467648 0) (0.89317 -0.00454815 0) (0.88722 -0.00442663 0) (0.881423 -0.00431144 0) (0.875777 -0.00420214 0) (0.87028 -0.00409835 0) (0.864928 -0.00399967 0) (0.859719 -0.0039058 0) (0.854649 -0.0038164 0) (0.849713 -0.00373123 0) (0.84491 -0.00364997 0) (0.840234 -0.00357246 0) (0.835683 -0.00349836 0) (0.831253 -0.00342764 0) (0.82694 -0.00335987 0) (0.822742 -0.00329518 0) (0.818652 -0.00323303 0) (0.814672 -0.0031737 0) (1.00451 -0.034964 0) (1.0436 -0.0339639 0) (1.05995 -0.0240401 0) (1.06226 -0.0202906 0) (1.06257 -0.0178034 0) (1.06194 -0.0157424 0) (1.0594 -0.0142953 0) (1.0549 -0.013195 0) (1.04874 -0.0122458 0) (1.04125 -0.0114014 0) (1.03269 -0.0106506 0) (1.02333 -0.00997975 0) (1.01338 -0.00937573 0) (1.00305 -0.00882906 0) (0.9925 -0.00833268 0) (0.981852 -0.0078809 0) (0.97121 -0.0074688 0) (0.960653 -0.00709208 0) (0.950241 -0.00674697 0) (0.940018 -0.00643013 0) (0.930015 -0.00613862 0) (0.920255 -0.00586988 0) (0.910754 -0.00562162 0) (0.90152 -0.00539184 0) (0.892558 -0.00517876 0) (0.883869 -0.00498081 0) (0.875451 -0.00479657 0) (0.8673 -0.00462481 0) (0.859411 -0.0044644 0) (0.851777 -0.00431435 0) (0.844392 -0.00417378 0) (0.837248 -0.00404187 0) (0.830338 -0.00391792 0) (0.823653 -0.00380128 0) (0.817185 -0.00369137 0) (0.810927 -0.00358767 0) (0.804871 -0.0034897 0) (0.799009 -0.00339705 0) (0.793335 -0.00330932 0) (0.78784 -0.00322616 0) (0.782517 -0.00314724 0) (0.777361 -0.00307231 0) (0.772365 -0.00300104 0) (0.767522 -0.00293327 0) (0.762826 -0.00286866 0) (0.758273 -0.00280716 0) (0.753855 -0.00274839 0) (0.749569 -0.0026924 0) (0.745407 -0.00263878 0) (0.74137 -0.00258762 0) (1.00506 -0.0375001 0) (1.04763 -0.0350443 0) (1.06397 -0.0246917 0) (1.06422 -0.020581 0) (1.06076 -0.0177401 0) (1.05489 -0.0154651 0) (1.04618 -0.013845 0) (1.03505 -0.0125799 0) (1.02222 -0.0114895 0) (1.00828 -0.0105341 0) (0.993696 -0.0096999 0) (0.978817 -0.00896901 0) (0.963905 -0.00832451 0) (0.949152 -0.00775319 0) (0.934692 -0.0072447 0) (0.920614 -0.00679046 0) (0.906975 -0.00638324 0) (0.893809 -0.00601686 0) (0.881131 -0.00568607 0) (0.868945 -0.00538639 0) (0.857246 -0.00511402 0) (0.846025 -0.00486569 0) (0.835266 -0.00463861 0) (0.824954 -0.00443038 0) (0.81507 -0.00423892 0) (0.805595 -0.00406244 0) (0.79651 -0.00389937 0) (0.787797 -0.00374834 0) (0.779438 -0.00360816 0) (0.771415 -0.00347777 0) (0.76371 -0.00335625 0) (0.756309 -0.00324279 0) (0.749195 -0.00313666 0) (0.742354 -0.00303722 0) (0.735773 -0.00294389 0) (0.729438 -0.00285617 0) (0.723337 -0.00277359 0) (0.717458 -0.00269575 0) (0.711792 -0.00262228 0) (0.706327 -0.00255285 0) (0.701054 -0.00248715 0) (0.695964 -0.00242493 0) (0.691047 -0.00236589 0) (0.686298 -0.00230989 0) (0.681706 -0.00225663 0) (0.677266 -0.00220603 0) (0.67297 -0.00215779 0) (0.668813 -0.00211189 0) (0.664786 -0.00206806 0) (0.66089 -0.00202623 0) (1.00635 -0.0401775 0) (1.05242 -0.0361431 0) (1.06607 -0.02524 0) (1.05957 -0.0205513 0) (1.04697 -0.0172039 0) (1.03097 -0.0146272 0) (1.01214 -0.0127928 0) (0.991529 -0.0113636 0) (0.970214 -0.0101633 0) (0.948916 -0.00914586 0) (0.928077 -0.00828487 0) (0.907955 -0.00755201 0) (0.888694 -0.00692272 0) (0.870362 -0.0063781 0) (0.852975 -0.00590361 0) (0.836519 -0.00548768 0) (0.82096 -0.00512096 0) (0.806257 -0.00479586 0) (0.792359 -0.00450615 0) (0.779219 -0.00424674 0) (0.766786 -0.0040134 0) (0.755014 -0.00380264 0) (0.743858 -0.00361152 0) (0.733276 -0.0034376 0) (0.723228 -0.00327879 0) (0.713679 -0.00313331 0) (0.704594 -0.00299964 0) (0.695944 -0.00287649 0) (0.687698 -0.00276274 0) (0.679832 -0.00265739 0) (0.67232 -0.00255962 0) (0.66514 -0.00246867 0) (0.658272 -0.0023839 0) (0.651697 -0.00230473 0) (0.645398 -0.00223066 0) (0.639357 -0.00216124 0) (0.633561 -0.00209607 0) (0.627995 -0.0020348 0) (0.622647 -0.0019771 0) (0.617504 -0.0019227 0) (0.612556 -0.00187133 0) (0.607792 -0.00182278 0) (0.603202 -0.0017768 0) (0.598778 -0.00173327 0) (0.59451 -0.00169193 0) (0.590393 -0.00165272 0) (0.586416 -0.00161541 0) (0.582576 -0.00157993 0) (0.578863 -0.00154614 0) (0.575275 -0.00151383 0) (1.00941 -0.0430456 0) (1.05564 -0.0370904 0) (1.05869 -0.0253177 0) (1.03636 -0.0197484 0) (1.00723 -0.0157799 0) (0.97628 -0.0129132 0) (0.944831 -0.0109392 0) (0.914056 -0.00945384 0) (0.884809 -0.00826095 0) (0.857468 -0.00729225 0) (0.832107 -0.0065021 0) (0.80866 -0.00584995 0) (0.787005 -0.0053043 0) (0.766996 -0.00484228 0) (0.748486 -0.00444714 0) (0.731333 -0.00410618 0) (0.715407 -0.00380959 0) (0.700589 -0.0035497 0) (0.686772 -0.00332044 0) (0.673862 -0.00311697 0) (0.661776 -0.00293538 0) (0.650439 -0.0027725 0) (0.639783 -0.00262571 0) (0.629751 -0.00249287 0) (0.620291 -0.00237217 0) (0.611354 -0.00226211 0) (0.602899 -0.0021614 0) (0.594889 -0.00206896 0) (0.587289 -0.00198386 0) (0.58007 -0.00190531 0) (0.573203 -0.00183262 0) (0.566664 -0.00176519 0) (0.56043 -0.00170249 0) (0.554481 -0.00164408 0) (0.548797 -0.00158955 0) (0.543362 -0.00153855 0) (0.538161 -0.00149076 0) (0.533178 -0.00144591 0) (0.5284 -0.00140375 0) (0.523815 -0.00136407 0) (0.519413 -0.00132665 0) (0.515182 -0.00129133 0) (0.511113 -0.00125793 0) (0.507198 -0.00122635 0) (0.503428 -0.0011964 0) (0.499795 -0.00116801 0) (0.496291 -0.00114105 0) (0.492913 -0.0011154 0) (0.48965 -0.00109106 0) (0.486501 -0.00106768 0) (1.01435 -0.0460962 0) (1.04799 -0.0373358 0) (1.0246 -0.024178 0) (0.974756 -0.0175463 0) (0.923619 -0.0130958 0) (0.876963 -0.0101904 0) (0.834886 -0.00832878 0) (0.797234 -0.00700479 0) (0.763781 -0.00599314 0) (0.734079 -0.00520518 0) (0.707613 -0.00458323 0) (0.68391 -0.00408278 0) (0.662568 -0.00367232 0) (0.643256 -0.0033303 0) (0.625696 -0.0030416 0) (0.609657 -0.0027952 0) (0.594948 -0.00258283 0) (0.581405 -0.00239821 0) (0.568894 -0.00223644 0) (0.557297 -0.00209372 0) (0.546515 -0.001967 0) (0.536465 -0.00185386 0) (0.527072 -0.00175232 0) (0.518272 -0.00166076 0) (0.510011 -0.00157784 0) (0.502239 -0.00150245 0) (0.494914 -0.00143365 0) (0.487997 -0.00137066 0) (0.481455 -0.00131281 0) (0.475259 -0.00125951 0) (0.46938 -0.00121029 0) (0.463796 -0.00116471 0) (0.458485 -0.0011224 0) (0.453426 -0.00108305 0) (0.448603 -0.00104636 0) (0.444 -0.0010121 0) (0.439601 -0.000980036 0) (0.435394 -0.000949981 0) (0.431367 -0.000921758 0) (0.427508 -0.000895221 0) (0.423807 -0.000870223 0) (0.420255 -0.000846653 0) (0.416843 -0.000824384 0) (0.413563 -0.00080334 0) (0.410408 -0.000783404 0) (0.407371 -0.000764519 0) (0.404445 -0.000746607 0) (0.401626 -0.00072955 0) (0.398906 -0.000713428 0) (0.396283 -0.000697837 0) (1.01554 -0.0489521 0) (1.0065 -0.0357199 0) (0.935932 -0.0208128 0) (0.852109 -0.0134906 0) (0.782398 -0.00918904 0) (0.727323 -0.00677345 0) (0.682314 -0.00537644 0) (0.644639 -0.00443466 0) (0.612714 -0.00373972 0) (0.585341 -0.0032138 0) (0.561581 -0.00280774 0) (0.540725 -0.00248613 0) (0.522243 -0.00222539 0) (0.505732 -0.00201011 0) (0.490876 -0.00182975 0) (0.477428 -0.00167676 0) (0.465186 -0.00154561 0) (0.453988 -0.00143209 0) (0.4437 -0.00133302 0) (0.43421 -0.0012459 0) (0.425426 -0.00116878 0) (0.417268 -0.00110011 0) (0.40967 -0.00103862 0) (0.402574 -0.000983288 0) (0.395931 -0.000933276 0) (0.389697 -0.000887883 0) (0.383834 -0.000846526 0) (0.37831 -0.000808715 0) (0.373096 -0.000774033 0) (0.368165 -0.000742124 0) (0.363496 -0.000712687 0) (0.359066 -0.000685457 0) (0.35486 -0.000660209 0) (0.350858 -0.000636745 0) (0.347048 -0.000614891 0) (0.343415 -0.000594497 0) (0.339948 -0.000575427 0) (0.336635 -0.000557566 0) (0.333467 -0.000540804 0) (0.330434 -0.000525054 0) (0.327527 -0.000510226 0) (0.324739 -0.000496254 0) (0.322064 -0.00048306 0) (0.319494 -0.000470598 0) (0.317023 -0.000458802 0) (0.314647 -0.000447625 0) (0.312358 -0.000437044 0) (0.310155 -0.000426945 0) (0.308029 -0.00041745 0) (0.305982 -0.000408166 0) (0.991208 -0.0499543 0) (0.890941 -0.0305599 0) (0.762547 -0.0146067 0) (0.656641 -0.00796628 0) (0.585594 -0.00487459 0) (0.536287 -0.00346904 0) (0.498462 -0.00273249 0) (0.467903 -0.002238 0) (0.442661 -0.00187421 0) (0.421426 -0.00160265 0) (0.403247 -0.00139537 0) (0.387456 -0.00123229 0) (0.373576 -0.00110065 0) (0.361259 -0.00099234 0) (0.350239 -0.000901869 0) (0.340308 -0.000825334 0) (0.331304 -0.000759867 0) (0.323096 -0.000703317 0) (0.315577 -0.000654046 0) (0.308659 -0.000610787 0) (0.302271 -0.000572545 0) (0.296351 -0.00053853 0) (0.290847 -0.000508106 0) (0.285716 -0.000480758 0) (0.280919 -0.00045606 0) (0.276424 -0.000433662 0) (0.272202 -0.000413271 0) (0.268229 -0.000394641 0) (0.264482 -0.000377565 0) (0.260943 -0.000361864 0) (0.257594 -0.000347388 0) (0.254421 -0.000334005 0) (0.251409 -0.000321603 0) (0.248547 -0.000310082 0) (0.245823 -0.000299358 0) (0.243228 -0.000289354 0) (0.240753 -0.000280004 0) (0.238389 -0.00027125 0) (0.236129 -0.000263038 0) (0.233967 -0.000255324 0) (0.231896 -0.000248065 0) (0.229911 -0.000241226 0) (0.228007 -0.000234771 0) (0.226179 -0.000228674 0) (0.224421 -0.000222909 0) (0.222732 -0.000217441 0) (0.221105 -0.000212279 0) (0.21954 -0.00020733 0) (0.21803 -0.000202714 0) (0.216576 -0.000198126 0) (0.884864 -0.0434926 0) (0.650168 -0.0201477 0) (0.49403 -0.00660306 0) (0.403647 -0.00275299 0) (0.354978 -0.00154603 0) (0.32371 -0.0011296 0) (0.29986 -0.000907064 0) (0.280703 -0.000742412 0) (0.265042 -0.000619696 0) (0.251973 -0.000529225 0) (0.240844 -0.000460567 0) (0.231214 -0.000406556 0) (0.222776 -0.000362931 0) (0.215308 -0.000327037 0) (0.20864 -0.000297067 0) (0.202643 -0.000271725 0) (0.197215 -0.000250057 0) (0.192274 -0.000231349 0) (0.187754 -0.000215055 0) (0.1836 -0.000200756 0) (0.179768 -0.000188119 0) (0.176219 -0.000176883 0) (0.172924 -0.000166837 0) (0.169853 -0.000157809 0) (0.166985 -0.000149658 0) (0.164299 -0.000142269 0) (0.161778 -0.000135544 0) (0.159407 -0.000129401 0) (0.157173 -0.000123772 0) (0.155063 -0.000118599 0) (0.153067 -0.000113829 0) (0.151177 -0.000109422 0) (0.149384 -0.000105338 0) (0.147681 -0.000101546 0) (0.14606 -9.80165e-05 0) (0.144517 -9.47253e-05 0) (0.143045 -9.16498e-05 0) (0.14164 -8.87708e-05 0) (0.140297 -8.60708e-05 0) (0.139013 -8.35352e-05 0) (0.137783 -8.11494e-05 0) (0.136605 -7.89019e-05 0) (0.135475 -7.67818e-05 0) (0.13439 -7.4778e-05 0) (0.133347 -7.28867e-05 0) (0.132345 -7.10877e-05 0) (0.13138 -6.93991e-05 0) (0.130452 -6.77656e-05 0) (0.129557 -6.62633e-05 0) (0.128695 -6.47294e-05 0) (0.553415 -0.016978 0) (0.251429 -0.00340024 0) (0.165953 -0.00031879 0) (0.132485 -4.88764e-05 0) (0.117397 -4.39289e-05 0) (0.107458 -5.20895e-05 0) (0.0995065 -4.42842e-05 0) (0.0930835 -3.52005e-05 0) (0.0878605 -2.91562e-05 0) (0.0835126 -2.50138e-05 0) (0.0798114 -2.1849e-05 0) (0.076609 -1.93127e-05 0) (0.0738042 -1.7245e-05 0) (0.0713228 -1.55371e-05 0) (0.0691086 -1.4108e-05 0) (0.0671182 -1.28979e-05 0) (0.0653173 -1.18623e-05 0) (0.0636787 -1.09676e-05 0) (0.0621803 -1.01881e-05 0) (0.0608039 -9.50383e-06 0) (0.0595346 -8.8991e-06 0) (0.0583598 -8.3614e-06 0) (0.0572689 -7.88064e-06 0) (0.056253 -7.44869e-06 0) (0.0553043 -7.05878e-06 0) (0.0544161 -6.7054e-06 0) (0.0535828 -6.3839e-06 0) (0.0527991 -6.09041e-06 0) (0.0520608 -5.82156e-06 0) (0.0513639 -5.57459e-06 0) (0.050705 -5.34707e-06 0) (0.050081 -5.13691e-06 0) (0.0494891 -4.94232e-06 0) (0.0489269 -4.76175e-06 0) (0.0483923 -4.59379e-06 0) (0.0478831 -4.43732e-06 0) (0.0473977 -4.29119e-06 0) (0.0469344 -4.15448e-06 0) (0.0464918 -4.02634e-06 0) (0.0460684 -3.90606e-06 0) (0.0456631 -3.79307e-06 0) (0.0452747 -3.68634e-06 0) (0.0449022 -3.58636e-06 0) (0.0445447 -3.49066e-06 0) (0.0442013 -3.40271e-06 0) (0.0438712 -3.31512e-06 0) (0.0435534 -3.23945e-06 0) (0.0432478 -3.15615e-06 0) (0.0429531 -3.09337e-06 0) (0.0426693 -3.01083e-06 0) (1.00763 0.00351146 0) (1.00774 0.00348758 0) (1.00785 0.00346331 0) (1.00796 0.0034385 0) (1.00808 0.00341301 0) (1.00819 0.00338672 0) (1.0083 0.00335951 0) (1.00841 0.00333129 0) (1.00852 0.00330196 0) (1.00863 0.0032715 0) (1.00874 0.00323986 0) (1.00885 0.00320707 0) (1.00896 0.00317317 0) (1.00907 0.00313823 0) (1.00918 0.00310238 0) (1.00929 0.00306575 0) (1.00939 0.00302852 0) (1.0095 0.00299086 0) (1.0096 0.002953 0) (1.00971 0.00291514 0) (1.00981 0.0028775 0) (1.00992 0.00284028 0) (1.01002 0.00280369 0) (1.01012 0.00276791 0) (1.01022 0.0027331 0) (1.01032 0.00269939 0) (1.01042 0.00266692 0) (1.01052 0.00263577 0) (1.01061 0.00260601 0) (1.01071 0.00257767 0) (1.0108 0.00255078 0) (1.0109 0.00252532 0) (1.01099 0.00250126 0) (1.01108 0.00247854 0) (1.01117 0.00245706 0) (1.01126 0.00243671 0) (1.01135 0.00241734 0) (1.01144 0.00239878 0) (1.01152 0.00238083 0) (1.01161 0.00236325 0) (1.01169 0.00234582 0) (1.01177 0.00232826 0) (1.01185 0.00231031 0) (1.01193 0.00229171 0) (1.01201 0.00227221 0) (1.01209 0.00225157 0) (1.01217 0.0022296 0) (1.01224 0.00220615 0) (1.01231 0.00218109 0) (1.01239 0.00215438 0) (1.01246 0.00212601 0) (1.01253 0.00209605 0) (1.0126 0.00206461 0) (1.01266 0.00203186 0) (1.01273 0.00199802 0) (1.01279 0.00196332 0) (1.01286 0.00192807 0) (1.01292 0.00189256 0) (1.01298 0.00185711 0) (1.01304 0.00182203 0) (1.0131 0.00178764 0) (1.01316 0.00175425 0) (1.01322 0.00172215 0) (1.01327 0.00169158 0) (1.01333 0.00166281 0) (1.01338 0.00163603 0) (1.01344 0.00161142 0) (1.01349 0.00158914 0) (1.01354 0.00156929 0) (1.01359 0.00155196 0) (1.01364 0.00153718 0) (1.01369 0.00152496 0) (1.01374 0.00151528 0) (1.01379 0.00150809 0) (1.01384 0.00150332 0) (1.01389 0.00150086 0) (1.01394 0.00150063 0) (1.01399 0.00150251 0) (1.01404 0.00150641 0) (1.01409 0.00151223 0) (1.01413 0.00151989 0) (1.01418 0.00152934 0) (1.01423 0.00154053 0) (1.01428 0.00155344 0) (1.01433 0.00156804 0) (1.01438 0.00158432 0) (1.01443 0.00160226 0) (1.01448 0.00162179 0) (1.01452 0.00164283 0) (1.01458 0.00166526 0) (1.01463 0.0016889 0) (1.01468 0.00171349 0) (1.01473 0.00173874 0) (1.01478 0.00176425 0) (1.01483 0.00178964 0) (1.01488 0.00181437 0) (1.01494 0.00183805 0) (1.01499 0.00185998 0) (1.01504 0.00187989 0) (1.0151 0.00189695 0) (1.00765 0.00316699 0) (1.00776 0.00314363 0) (1.00787 0.00311997 0) (1.00798 0.00309587 0) (1.00809 0.00307119 0) (1.0082 0.00304581 0) (1.0083 0.00301961 0) (1.00841 0.0029925 0) (1.00852 0.0029644 0) (1.00863 0.00293526 0) (1.00874 0.00290506 0) (1.00884 0.00287381 0) (1.00895 0.00284156 0) (1.00906 0.00280838 0) (1.00916 0.00277438 0) (1.00927 0.00273971 0) (1.00937 0.00270453 0) (1.00947 0.00266903 0) (1.00958 0.00263342 0) (1.00968 0.00259789 0) (1.00978 0.00256266 0) (1.00988 0.00252794 0) (1.00998 0.00249392 0) (1.01008 0.00246078 0) (1.01017 0.00242868 0) (1.01027 0.00239775 0) (1.01037 0.00236812 0) (1.01046 0.00233986 0) (1.01056 0.00231305 0) (1.01065 0.00228771 0) (1.01074 0.00226387 0) (1.01083 0.00224152 0) (1.01093 0.0022206 0) (1.01101 0.00220107 0) (1.0111 0.00218282 0) (1.01119 0.00216574 0) (1.01128 0.00214968 0) (1.01136 0.00213447 0) (1.01145 0.00211989 0) (1.01153 0.00210574 0) (1.01161 0.00209175 0) (1.01169 0.00207768 0) (1.01177 0.00206325 0) (1.01185 0.00204819 0) (1.01193 0.00203226 0) (1.01201 0.00201522 0) (1.01209 0.00199688 0) (1.01216 0.00197706 0) (1.01223 0.00195565 0) (1.01231 0.0019326 0) (1.01238 0.00190789 0) (1.01245 0.00188158 0) (1.01252 0.00185377 0) (1.01259 0.00182462 0) (1.01265 0.00179434 0) (1.01272 0.00176317 0) (1.01278 0.00173138 0) (1.01285 0.00169925 0) (1.01291 0.0016671 0) (1.01297 0.00163524 0) (1.01303 0.00160396 0) (1.01309 0.00157356 0) (1.01315 0.00154432 0) (1.01321 0.00151649 0) (1.01327 0.00149031 0) (1.01332 0.00146597 0) (1.01338 0.00144366 0) (1.01343 0.00142351 0) (1.01349 0.00140563 0) (1.01354 0.0013901 0) (1.01359 0.00137695 0) (1.01365 0.00136619 0) (1.0137 0.00135781 0) (1.01375 0.00135175 0) (1.0138 0.00134794 0) (1.01385 0.00134629 0) (1.0139 0.0013467 0) (1.01395 0.00134907 0) (1.01401 0.00135331 0) (1.01406 0.00135933 0) (1.01411 0.00136705 0) (1.01416 0.00137643 0) (1.01421 0.00138742 0) (1.01426 0.00140001 0) (1.01431 0.00141418 0) (1.01436 0.00142992 0) (1.01441 0.00144722 0) (1.01446 0.00146602 0) (1.01451 0.00148627 0) (1.01456 0.00150783 0) (1.01462 0.00153054 0) (1.01467 0.00155416 0) (1.01472 0.00157842 0) (1.01477 0.00160293 0) (1.01483 0.00162733 0) (1.01488 0.00165109 0) (1.01493 0.00167383 0) (1.01499 0.00169488 0) (1.01504 0.00171398 0) (1.01509 0.00173032 0) (1.00768 0.0028397 0) (1.00779 0.002817 0) (1.00789 0.00279407 0) (1.008 0.00277077 0) (1.00811 0.00274699 0) (1.00822 0.0027226 0) (1.00832 0.00269748 0) (1.00843 0.00267154 0) (1.00853 0.0026447 0) (1.00864 0.00261692 0) (1.00874 0.00258817 0) (1.00885 0.00255846 0) (1.00895 0.00252784 0) (1.00906 0.00249638 0) (1.00916 0.0024642 0) (1.00926 0.00243142 0) (1.00936 0.00239822 0) (1.00946 0.00236478 0) (1.00956 0.00233129 0) (1.00966 0.00229795 0) (1.00976 0.00226499 0) (1.00986 0.00223259 0) (1.00996 0.00220094 0) (1.01005 0.00217023 0) (1.01015 0.00214061 0) (1.01024 0.00211221 0) (1.01034 0.00208514 0) (1.01043 0.00205949 0) (1.01052 0.00203532 0) (1.01061 0.00201267 0) (1.01071 0.00199154 0) (1.01079 0.00197192 0) (1.01088 0.00195378 0) (1.01097 0.00193705 0) (1.01106 0.00192162 0) (1.01114 0.0019074 0) (1.01123 0.00189421 0) (1.01131 0.0018819 0) (1.0114 0.00187025 0) (1.01148 0.00185904 0) (1.01156 0.00184803 0) (1.01164 0.00183695 0) (1.01172 0.00182554 0) (1.0118 0.00181354 0) (1.01188 0.00180068 0) (1.01195 0.00178674 0) (1.01203 0.00177152 0) (1.0121 0.00175484 0) (1.01218 0.00173659 0) (1.01225 0.0017167 0) (1.01232 0.00169517 0) (1.01239 0.00167203 0) (1.01246 0.00164738 0) (1.01253 0.00162138 0) (1.0126 0.00159422 0) (1.01267 0.00156613 0) (1.01273 0.00153737 0) (1.0128 0.00150823 0) (1.01286 0.00147899 0) (1.01292 0.00144997 0) (1.01299 0.00142144 0) (1.01305 0.00139369 0) (1.01311 0.001367 0) (1.01317 0.00134161 0) (1.01323 0.00131774 0) (1.01328 0.00129559 0) (1.01334 0.00127533 0) (1.0134 0.00125711 0) (1.01345 0.00124101 0) (1.01351 0.00122712 0) (1.01356 0.00121547 0) (1.01362 0.00120607 0) (1.01367 0.0011989 0) (1.01373 0.00119391 0) (1.01378 0.00119103 0) (1.01383 0.00119018 0) (1.01389 0.00119126 0) (1.01394 0.00119416 0) (1.01399 0.00119881 0) (1.01404 0.00120512 0) (1.0141 0.00121302 0) (1.01415 0.00122245 0) (1.0142 0.0012334 0) (1.01425 0.00124585 0) (1.0143 0.00125978 0) (1.01436 0.0012752 0) (1.01441 0.00129208 0) (1.01446 0.0013104 0) (1.01451 0.00133009 0) (1.01457 0.00135104 0) (1.01462 0.0013731 0) (1.01467 0.00139603 0) (1.01473 0.00141958 0) (1.01478 0.00144337 0) (1.01483 0.00146705 0) (1.01489 0.00149012 0) (1.01494 0.0015122 0) (1.015 0.00153265 0) (1.01505 0.00155121 0) (1.01511 0.0015671 0) (1.00772 0.00252792 0) (1.00783 0.00250596 0) (1.00793 0.00248385 0) (1.00804 0.00246146 0) (1.00814 0.00243864 0) (1.00825 0.0024153 0) (1.00835 0.0023913 0) (1.00846 0.00236656 0) (1.00856 0.00234101 0) (1.00866 0.00231459 0) (1.00877 0.00228729 0) (1.00887 0.00225911 0) (1.00897 0.0022301 0) (1.00907 0.00220032 0) (1.00917 0.0021699 0) (1.00927 0.00213895 0) (1.00937 0.00210765 0) (1.00947 0.00207617 0) (1.00957 0.0020447 0) (1.00967 0.00201344 0) (1.00976 0.0019826 0) (1.00986 0.00195237 0) (1.00995 0.00192294 0) (1.01005 0.00189448 0) (1.01014 0.00186714 0) (1.01024 0.00184106 0) (1.01033 0.00181633 0) (1.01042 0.00179305 0) (1.01051 0.00177127 0) (1.0106 0.00175102 0) (1.01069 0.00173232 0) (1.01078 0.00171514 0) (1.01086 0.00169945 0) (1.01095 0.00168519 0) (1.01104 0.00167225 0) (1.01112 0.00166052 0) (1.0112 0.00164985 0) (1.01129 0.00164006 0) (1.01137 0.00163095 0) (1.01145 0.0016223 0) (1.01153 0.00161386 0) (1.01161 0.00160538 0) (1.01169 0.00159659 0) (1.01177 0.00158723 0) (1.01185 0.00157704 0) (1.01192 0.00156578 0) (1.012 0.00155327 0) (1.01207 0.00153932 0) (1.01215 0.00152383 0) (1.01222 0.00150671 0) (1.01229 0.00148795 0) (1.01236 0.0014676 0) (1.01243 0.00144574 0) (1.0125 0.00142251 0) (1.01257 0.00139811 0) (1.01264 0.00137275 0) (1.0127 0.00134669 0) (1.01277 0.00132019 0) (1.01283 0.00129355 0) (1.0129 0.00126705 0) (1.01296 0.00124098 0) (1.01302 0.00121561 0) (1.01308 0.00119121 0) (1.01315 0.001168 0) (1.01321 0.00114622 0) (1.01326 0.00112605 0) (1.01332 0.00110766 0) (1.01338 0.00109118 0) (1.01344 0.00107671 0) (1.0135 0.00106432 0) (1.01355 0.00105405 0) (1.01361 0.00104591 0) (1.01366 0.00103987 0) (1.01372 0.00103589 0) (1.01377 0.00103391 0) (1.01383 0.00103383 0) (1.01388 0.00103557 0) (1.01394 0.00103903 0) (1.01399 0.00104413 0) (1.01404 0.00105078 0) (1.0141 0.00105893 0) (1.01415 0.00106852 0) (1.01421 0.00107954 0) (1.01426 0.00109196 0) (1.01431 0.00110579 0) (1.01437 0.00112102 0) (1.01442 0.00113766 0) (1.01447 0.00115566 0) (1.01453 0.00117498 0) (1.01458 0.0011955 0) (1.01464 0.00121709 0) (1.01469 0.00123953 0) (1.01474 0.00126256 0) (1.0148 0.00128582 0) (1.01485 0.00130899 0) (1.01491 0.00133157 0) (1.01496 0.00135319 0) (1.01502 0.00137324 0) (1.01507 0.00139145 0) (1.01513 0.00140707 0) (1.00777 0.00223023 0) (1.00788 0.00220911 0) (1.00798 0.00218789 0) (1.00809 0.00216645 0) (1.00819 0.00214466 0) (1.00829 0.0021224 0) (1.0084 0.00209956 0) (1.0085 0.00207605 0) (1.0086 0.0020518 0) (1.0087 0.00202675 0) (1.0088 0.00200089 0) (1.0089 0.00197422 0) (1.009 0.00194678 0) (1.0091 0.00191865 0) (1.0092 0.00188994 0) (1.0093 0.00186076 0) (1.0094 0.00183128 0) (1.00949 0.00180167 0) (1.00959 0.00177213 0) (1.00969 0.00174284 0) (1.00978 0.00171401 0) (1.00988 0.00168582 0) (1.00997 0.00165846 0) (1.01006 0.00163209 0) (1.01015 0.00160687 0) (1.01024 0.00158292 0) (1.01034 0.00156034 0) (1.01043 0.00153921 0) (1.01051 0.00151959 0) (1.0106 0.00150152 0) (1.01069 0.001485 0) (1.01078 0.00147001 0) (1.01086 0.00145651 0) (1.01095 0.00144443 0) (1.01103 0.00143369 0) (1.01112 0.00142416 0) (1.0112 0.00141569 0) (1.01128 0.00140812 0) (1.01136 0.00140123 0) (1.01144 0.00139481 0) (1.01152 0.00138862 0) (1.0116 0.0013824 0) (1.01168 0.00137589 0) (1.01176 0.00136882 0) (1.01184 0.00136095 0) (1.01191 0.00135205 0) (1.01199 0.00134191 0) (1.01206 0.00133035 0) (1.01214 0.00131728 0) (1.01221 0.0013026 0) (1.01228 0.0012863 0) (1.01235 0.00126841 0) (1.01242 0.00124902 0) (1.01249 0.00122826 0) (1.01256 0.00120632 0) (1.01263 0.0011834 0) (1.0127 0.00115975 0) (1.01276 0.00113564 0) (1.01283 0.00111133 0) (1.01289 0.00108711 0) (1.01296 0.00106326 0) (1.01302 0.00104003 0) (1.01308 0.0010177 0) (1.01314 0.000996477 0) (1.0132 0.00097659 0) (1.01326 0.000958221 0) (1.01332 0.000941529 0) (1.01338 0.000926643 0) (1.01344 0.000913663 0) (1.0135 0.000902658 0) (1.01356 0.000893664 0) (1.01361 0.000886689 0) (1.01367 0.000881713 0) (1.01373 0.00087869 0) (1.01378 0.000877555 0) (1.01384 0.000878228 0) (1.0139 0.000880619 0) (1.01395 0.000884639 0) (1.01401 0.000890203 0) (1.01406 0.000897234 0) (1.01412 0.000905675 0) (1.01417 0.000915483 0) (1.01423 0.000926633 0) (1.01428 0.000939118 0) (1.01434 0.000952938 0) (1.01439 0.000968097 0) (1.01445 0.000984591 0) (1.0145 0.0010024 0) (1.01455 0.00102146 0) (1.01461 0.00104169 0) (1.01466 0.00106295 0) (1.01472 0.00108502 0) (1.01478 0.00110767 0) (1.01483 0.00113056 0) (1.01489 0.00115336 0) (1.01494 0.00117558 0) (1.015 0.00119688 0) (1.01505 0.00121666 0) (1.01511 0.00123466 0) (1.01517 0.00125015 0) (1.00784 0.00194541 0) (1.00794 0.00192518 0) (1.00804 0.00190491 0) (1.00815 0.00188448 0) (1.00825 0.00186375 0) (1.00835 0.0018426 0) (1.00845 0.00182094 0) (1.00855 0.00179867 0) (1.00865 0.00177571 0) (1.00875 0.00175203 0) (1.00885 0.00172759 0) (1.00895 0.00170241 0) (1.00905 0.00167652 0) (1.00915 0.00165 0) (1.00924 0.00162294 0) (1.00934 0.00159547 0) (1.00944 0.00156775 0) (1.00953 0.00153995 0) (1.00963 0.00151224 0) (1.00972 0.00148482 0) (1.00981 0.00145788 0) (1.00991 0.00143162 0) (1.01 0.0014062 0) (1.01009 0.00138179 0) (1.01018 0.00135853 0) (1.01027 0.00133655 0) (1.01036 0.00131595 0) (1.01045 0.0012968 0) (1.01054 0.00127917 0) (1.01062 0.00126307 0) (1.01071 0.00124852 0) (1.01079 0.0012355 0) (1.01088 0.00122396 0) (1.01096 0.00121385 0) (1.01105 0.00120506 0) (1.01113 0.00119748 0) (1.01121 0.00119097 0) (1.01129 0.00118535 0) (1.01137 0.00118042 0) (1.01145 0.00117596 0) (1.01153 0.00117174 0) (1.01161 0.00116751 0) (1.01169 0.001163 0) (1.01177 0.00115795 0) (1.01184 0.00115213 0) (1.01192 0.00114529 0) (1.012 0.00113723 0) (1.01207 0.00112779 0) (1.01214 0.00111685 0) (1.01222 0.00110434 0) (1.01229 0.00109022 0) (1.01236 0.00107453 0) (1.01243 0.00105734 0) (1.0125 0.0010388 0) (1.01257 0.00101907 0) (1.01264 0.000998347 0) (1.0127 0.000976878 0) (1.01277 0.000954916 0) (1.01284 0.000932725 0) (1.0129 0.000910579 0) (1.01297 0.000888744 0) (1.01303 0.000867481 0) (1.01309 0.000847035 0) (1.01316 0.000827634 0) (1.01322 0.000809484 0) (1.01328 0.000792765 0) (1.01334 0.000777634 0) (1.0134 0.000764216 0) (1.01346 0.000752609 0) (1.01352 0.000742879 0) (1.01358 0.000735064 0) (1.01364 0.000729172 0) (1.01369 0.000725182 0) (1.01375 0.000723052 0) (1.01381 0.000722719 0) (1.01387 0.000724106 0) (1.01392 0.000727127 0) (1.01398 0.000731694 0) (1.01404 0.000737727 0) (1.01409 0.000745152 0) (1.01415 0.000753913 0) (1.0142 0.000763972 0) (1.01426 0.000775305 0) (1.01431 0.000787907 0) (1.01437 0.000801781 0) (1.01443 0.000816934 0) (1.01448 0.000833364 0) (1.01454 0.000851052 0) (1.01459 0.000869953 0) (1.01465 0.000889976 0) (1.01471 0.000910992 0) (1.01476 0.000932802 0) (1.01482 0.000955174 0) (1.01487 0.000977777 0) (1.01493 0.0010003 0) (1.01499 0.00102226 0) (1.01504 0.00104335 0) (1.0151 0.00106295 0) (1.01516 0.00108084 0) (1.01521 0.00109628 0) (1.00791 0.00167242 0) (1.00801 0.00165314 0) (1.00811 0.00163386 0) (1.00821 0.00161446 0) (1.00832 0.00159482 0) (1.00842 0.00157482 0) (1.00852 0.00155435 0) (1.00862 0.00153332 0) (1.00871 0.00151166 0) (1.00881 0.00148933 0) (1.00891 0.00146631 0) (1.00901 0.00144259 0) (1.00911 0.00141821 0) (1.0092 0.00139326 0) (1.0093 0.00136781 0) (1.00939 0.00134199 0) (1.00949 0.00131597 0) (1.00958 0.00128989 0) (1.00968 0.00126394 0) (1.00977 0.0012383 0) (1.00986 0.00121317 0) (1.00995 0.00118872 0) (1.01004 0.00116513 0) (1.01013 0.00114255 0) (1.01022 0.00112113 0) (1.01031 0.00110099 0) (1.0104 0.00108222 0) (1.01049 0.00106489 0) (1.01057 0.00104907 0) (1.01066 0.00103478 0) (1.01074 0.00102203 0) (1.01083 0.00101079 0) (1.01091 0.00100103 0) (1.01099 0.000992679 0) (1.01108 0.000985644 0) (1.01116 0.000979809 0) (1.01124 0.000975032 0) (1.01132 0.000971141 0) (1.0114 0.000967944 0) (1.01148 0.000965224 0) (1.01156 0.000962747 0) (1.01164 0.000960262 0) (1.01172 0.000957517 0) (1.01179 0.000954255 0) (1.01187 0.000950232 0) (1.01194 0.00094522 0) (1.01202 0.000939018 0) (1.01209 0.000931462 0) (1.01217 0.000922429 0) (1.01224 0.000911843 0) (1.01231 0.000899678 0) (1.01238 0.000885961 0) (1.01245 0.000870768 0) (1.01253 0.000854221 0) (1.01259 0.000836485 0) (1.01266 0.00081776 0) (1.01273 0.000798273 0) (1.0128 0.00077827 0) (1.01286 0.000758011 0) (1.01293 0.000737759 0) (1.013 0.000717773 0) (1.01306 0.000698306 0) (1.01312 0.000679597 0) (1.01319 0.000661866 0) (1.01325 0.000645315 0) (1.01331 0.000630119 0) (1.01337 0.00061643 0) (1.01343 0.000604371 0) (1.01349 0.000594037 0) (1.01355 0.000585494 0) (1.01361 0.000578778 0) (1.01367 0.000573897 0) (1.01373 0.000570834 0) (1.01379 0.000569547 0) (1.01385 0.000569975 0) (1.0139 0.000572043 0) (1.01396 0.000575669 0) (1.01402 0.000580769 0) (1.01408 0.000587263 0) (1.01413 0.000595082 0) (1.01419 0.000604173 0) (1.01425 0.000614497 0) (1.0143 0.000626035 0) (1.01436 0.000638783 0) (1.01442 0.000652746 0) (1.01447 0.000667932 0) (1.01453 0.000684345 0) (1.01459 0.000701966 0) (1.01464 0.000720757 0) (1.0147 0.000740632 0) (1.01476 0.000761469 0) (1.01481 0.000783076 0) (1.01487 0.000805233 0) (1.01493 0.000827618 0) (1.01498 0.000849928 0) (1.01504 0.000871709 0) (1.0151 0.000892638 0) (1.01516 0.000912136 0) (1.01521 0.000929967 0) (1.01527 0.00094543 0) (1.00799 0.00141035 0) (1.00809 0.00139206 0) (1.00819 0.00137381 0) (1.00829 0.00135547 0) (1.00839 0.00133693 0) (1.00849 0.00131808 0) (1.00859 0.0012988 0) (1.00869 0.00127902 0) (1.00879 0.00125866 0) (1.00889 0.00123767 0) (1.00898 0.00121604 0) (1.00908 0.00119376 0) (1.00917 0.00117087 0) (1.00927 0.00114744 0) (1.00936 0.00112356 0) (1.00946 0.00109935 0) (1.00955 0.00107495 0) (1.00965 0.00105054 0) (1.00974 0.00102627 0) (1.00983 0.00100234 0) (1.00992 0.000978921 0) (1.01001 0.000956197 0) (1.0101 0.000934334 0) (1.01019 0.000913485 0) (1.01028 0.000893787 0) (1.01036 0.000875357 0) (1.01045 0.000858291 0) (1.01054 0.000842661 0) (1.01062 0.000828518 0) (1.01071 0.000815888 0) (1.01079 0.000804777 0) (1.01088 0.000795166 0) (1.01096 0.000787014 0) (1.01104 0.000780255 0) (1.01112 0.000774799 0) (1.0112 0.00077053 0) (1.01128 0.000767307 0) (1.01136 0.000764964 0) (1.01144 0.000763311 0) (1.01152 0.000762135 0) (1.0116 0.000761204 0) (1.01168 0.000760276 0) (1.01176 0.000759098 0) (1.01183 0.00075742 0) (1.01191 0.000755001 0) (1.01198 0.000751616 0) (1.01206 0.000747069 0) (1.01213 0.000741196 0) (1.01221 0.000733873 0) (1.01228 0.000725025 0) (1.01235 0.000714623 0) (1.01242 0.000702692 0) (1.0125 0.000689302 0) (1.01257 0.000674571 0) (1.01263 0.000658658 0) (1.0127 0.000641755 0) (1.01277 0.000624081 0) (1.01284 0.000605875 0) (1.01291 0.000587389 0) (1.01297 0.000568877 0) (1.01304 0.000550593 0) (1.0131 0.000532781 0) (1.01317 0.000515674 0) (1.01323 0.000499486 0) (1.01329 0.000484413 0) (1.01336 0.000470628 0) (1.01342 0.000458276 0) (1.01348 0.000447479 0) (1.01354 0.00043833 0) (1.0136 0.000430893 0) (1.01366 0.000425205 0) (1.01372 0.000421272 0) (1.01378 0.000419079 0) (1.01384 0.000418586 0) (1.0139 0.000419734 0) (1.01396 0.00042245 0) (1.01402 0.000426655 0) (1.01407 0.000432267 0) (1.01413 0.000439209 0) (1.01419 0.000447415 0) (1.01425 0.000456833 0) (1.0143 0.000467426 0) (1.01436 0.000479178 0) (1.01442 0.000492086 0) (1.01448 0.000506157 0) (1.01453 0.000521401 0) (1.01459 0.000537823 0) (1.01465 0.000555411 0) (1.01471 0.000574126 0) (1.01476 0.000593891 0) (1.01482 0.000614588 0) (1.01488 0.000636036 0) (1.01494 0.00065802 0) (1.01499 0.000680231 0) (1.01505 0.000702376 0) (1.01511 0.000724015 0) (1.01517 0.000744833 0) (1.01522 0.000764268 0) (1.01528 0.000782089 0) (1.01534 0.000797614 0) (1.00808 0.00115841 0) (1.00818 0.00114113 0) (1.00828 0.00112393 0) (1.00838 0.00110668 0) (1.00848 0.00108926 0) (1.00858 0.00107157 0) (1.00868 0.0010535 0) (1.00877 0.00103496 0) (1.00887 0.00101588 0) (1.00897 0.000996218 0) (1.00906 0.000975951 0) (1.00916 0.000955081 0) (1.00925 0.000933643 0) (1.00935 0.0009117 0) (1.00944 0.000889343 0) (1.00954 0.000866688 0) (1.00963 0.000843876 0) (1.00972 0.000821062 0) (1.00981 0.000798417 0) (1.0099 0.000776116 0) (1.00999 0.000754338 0) (1.01008 0.000733256 0) (1.01017 0.000713033 0) (1.01026 0.000693818 0) (1.01034 0.000675744 0) (1.01043 0.000658925 0) (1.01052 0.000643452 0) (1.0106 0.000629398 0) (1.01069 0.00061681 0) (1.01077 0.000605716 0) (1.01085 0.000596119 0) (1.01094 0.000588 0) (1.01102 0.000581317 0) (1.0111 0.000576008 0) (1.01118 0.000571982 0) (1.01126 0.000569127 0) (1.01134 0.000567303 0) (1.01142 0.000566349 0) (1.0115 0.000566076 0) (1.01158 0.000566278 0) (1.01166 0.000566728 0) (1.01173 0.000567186 0) (1.01181 0.000567407 0) (1.01189 0.000567145 0) (1.01196 0.000566161 0) (1.01204 0.000564235 0) (1.01211 0.000561174 0) (1.01219 0.000556814 0) (1.01226 0.000551035 0) (1.01233 0.00054376 0) (1.01241 0.000534959 0) (1.01248 0.000524652 0) (1.01255 0.000512908 0) (1.01262 0.000499838 0) (1.01269 0.000485595 0) (1.01276 0.000470365 0) (1.01283 0.00045436 0) (1.01289 0.000437812 0) (1.01296 0.000420963 0) (1.01303 0.000404063 0) (1.01309 0.000387355 0) (1.01316 0.000371078 0) (1.01322 0.000355459 0) (1.01329 0.000340706 0) (1.01335 0.000327008 0) (1.01341 0.000314535 0) (1.01348 0.00030343 0) (1.01354 0.000293809 0) (1.0136 0.000285765 0) (1.01366 0.00027936 0) (1.01372 0.00027463 0) (1.01378 0.000271583 0) (1.01384 0.000270204 0) (1.0139 0.000270455 0) (1.01396 0.000272278 0) (1.01402 0.000275604 0) (1.01408 0.000280355 0) (1.01414 0.000286453 0) (1.0142 0.000293824 0) (1.01426 0.000302402 0) (1.01431 0.000312139 0) (1.01437 0.000323001 0) (1.01443 0.00033497 0) (1.01449 0.000348046 0) (1.01455 0.000362237 0) (1.0146 0.000377555 0) (1.01466 0.000394007 0) (1.01472 0.000411582 0) (1.01478 0.000430247 0) (1.01484 0.000449927 0) (1.01489 0.000470513 0) (1.01495 0.000491829 0) (1.01501 0.00051367 0) (1.01507 0.000535737 0) (1.01513 0.000557746 0) (1.01518 0.00057927 0) (1.01524 0.000600004 0) (1.0153 0.000619402 0) (1.01536 0.000637238 0) (1.01542 0.000652849 0) (1.00818 0.000915924 0) (1.00828 0.000899688 0) (1.00838 0.000883554 0) (1.00848 0.0008674 0) (1.00858 0.000851113 0) (1.00868 0.000834582 0) (1.00877 0.000817708 0) (1.00887 0.000800402 0) (1.00897 0.000782598 0) (1.00906 0.000764249 0) (1.00916 0.00074533 0) (1.00925 0.000725846 0) (1.00934 0.000705829 0) (1.00944 0.00068534 0) (1.00953 0.000664466 0) (1.00962 0.000643319 0) (1.00971 0.000622036 0) (1.0098 0.00060077 0) (1.0099 0.000579686 0) (1.00998 0.000558953 0) (1.01007 0.000538744 0) (1.01016 0.000519228 0) (1.01025 0.000500565 0) (1.01034 0.000482899 0) (1.01042 0.000466359 0) (1.01051 0.000451057 0) (1.01059 0.000437083 0) (1.01068 0.000424503 0) (1.01076 0.000413364 0) (1.01085 0.000403693 0) (1.01093 0.000395494 0) (1.01101 0.000388748 0) (1.01109 0.000383415 0) (1.01117 0.00037943 0) (1.01125 0.000376708 0) (1.01133 0.000375136 0) (1.01141 0.000374581 0) (1.01149 0.000374882 0) (1.01157 0.000375854 0) (1.01165 0.000377295 0) (1.01173 0.000378984 0) (1.0118 0.000380688 0) (1.01188 0.000382163 0) (1.01196 0.00038317 0) (1.01203 0.000383477 0) (1.01211 0.000382866 0) (1.01218 0.000381145 0) (1.01226 0.000378156 0) (1.01233 0.000373778 0) (1.0124 0.000367935 0) (1.01247 0.000360594 0) (1.01255 0.000351775 0) (1.01262 0.00034154 0) (1.01269 0.000329998 0) (1.01276 0.000317295 0) (1.01283 0.00030361 0) (1.01289 0.000289149 0) (1.01296 0.000274137 0) (1.01303 0.000258808 0) (1.0131 0.000243404 0) (1.01316 0.000228162 0) (1.01323 0.000213315 0) (1.01329 0.000199082 0) (1.01336 0.000185666 0) (1.01342 0.000173252 0) (1.01349 0.000162005 0) (1.01355 0.000152063 0) (1.01361 0.000143542 0) (1.01367 0.000136531 0) (1.01373 0.000131092 0) (1.0138 0.000127259 0) (1.01386 0.000125043 0) (1.01392 0.000124428 0) (1.01398 0.000125377 0) (1.01404 0.000127836 0) (1.0141 0.000131737 0) (1.01416 0.000137006 0) (1.01422 0.000143565 0) (1.01428 0.000151343 0) (1.01433 0.000160277 0) (1.01439 0.00017032 0) (1.01445 0.00018144 0) (1.01451 0.000193622 0) (1.01457 0.000206865 0) (1.01463 0.000221178 0) (1.01469 0.000236575 0) (1.01474 0.000253063 0) (1.0148 0.000270635 0) (1.01486 0.000289261 0) (1.01492 0.000308871 0) (1.01498 0.000329361 0) (1.01504 0.000350561 0) (1.0151 0.000372275 0) (1.01515 0.000394214 0) (1.01521 0.000416103 0) (1.01527 0.00043753 0) (1.01533 0.000458197 0) (1.01539 0.000477573 0) (1.01545 0.000495439 0) (1.01551 0.000511148 0) (1.00829 0.00068227 0) (1.00839 0.000667092 0) (1.00849 0.000652039 0) (1.00859 0.000636994 0) (1.00868 0.000621843 0) (1.00878 0.000606476 0) (1.00888 0.000590794 0) (1.00897 0.000574715 0) (1.00907 0.000558172 0) (1.00916 0.000541117 0) (1.00926 0.000523526 0) (1.00935 0.000505402 0) (1.00944 0.000486775 0) (1.00954 0.000467703 0) (1.00963 0.000448272 0) (1.00972 0.000428592 0) (1.00981 0.000408794 0) (1.0099 0.000389025 0) (1.00999 0.000369444 0) (1.01008 0.000350219 0) (1.01017 0.000331518 0) (1.01025 0.000313503 0) (1.01034 0.000296329 0) (1.01043 0.000280138 0) (1.01051 0.000265055 0) (1.0106 0.000251187 0) (1.01068 0.000238621 0) (1.01077 0.000227426 0) (1.01085 0.000217648 0) (1.01093 0.000209309 0) (1.01101 0.000202411 0) (1.0111 0.000196937 0) (1.01118 0.000192848 0) (1.01126 0.000190081 0) (1.01134 0.000188551 0) (1.01142 0.000188149 0) (1.0115 0.000188743 0) (1.01157 0.000190179 0) (1.01165 0.000192279 0) (1.01173 0.000194842 0) (1.01181 0.000197651 0) (1.01188 0.000200478 0) (1.01196 0.000203087 0) (1.01204 0.000205242 0) (1.01211 0.000206716 0) (1.01219 0.000207295 0) (1.01226 0.000206793 0) (1.01234 0.000205051 0) (1.01241 0.000201952 0) (1.01248 0.000197417 0) (1.01255 0.000191416 0) (1.01263 0.000183964 0) (1.0127 0.000175122 0) (1.01277 0.000164991 0) (1.01284 0.000153714 0) (1.01291 0.000141464 0) (1.01297 0.000128439 0) (1.01304 0.000114856 0) (1.01311 0.000100945 0) (1.01318 8.69383e-05 0) (1.01324 7.30676e-05 0) (1.01331 5.95579e-05 0) (1.01338 4.66223e-05 0) (1.01344 3.44592e-05 0) (1.0135 2.32485e-05 0) (1.01357 1.31495e-05 0) (1.01363 4.2987e-06 0) (1.01369 -3.19166e-06 0) (1.01376 -9.23452e-06 0) (1.01382 -1.3769e-05 0) (1.01388 -1.67604e-05 0) (1.01394 -1.8199e-05 0) (1.014 -1.80989e-05 0) (1.01406 -1.64955e-05 0) (1.01412 -1.3441e-05 0) (1.01418 -9.00074e-06 0) (1.01424 -3.24711e-06 0) (1.0143 3.74601e-06 0) (1.01436 1.19089e-05 0) (1.01442 2.11817e-05 0) (1.01448 3.15169e-05 0) (1.01454 4.28842e-05 0) (1.0146 5.52693e-05 0) (1.01466 6.86724e-05 0) (1.01472 8.31045e-05 0) (1.01478 9.85791e-05 0) (1.01484 0.000115106 0) (1.01489 0.00013268 0) (1.01495 0.000151273 0) (1.01501 0.000170819 0) (1.01507 0.000191219 0) (1.01513 0.000212312 0) (1.01519 0.000233908 0) (1.01525 0.000255729 0) (1.01531 0.000277508 0) (1.01537 0.000298845 0) (1.01543 0.000319452 0) (1.01549 0.000338813 0) (1.01555 0.000356714 0) (1.0156 0.000372526 0) (1.00841 0.000456945 0) (1.00851 0.000442841 0) (1.0086 0.000428881 0) (1.0087 0.000414951 0) (1.0088 0.000400939 0) (1.00889 0.000386734 0) (1.00899 0.000372238 0) (1.00909 0.000357373 0) (1.00918 0.000342074 0) (1.00927 0.000326294 0) (1.00937 0.000310006 0) (1.00946 0.000293215 0) (1.00955 0.000275949 0) (1.00965 0.000258262 0) (1.00974 0.000240239 0) (1.00983 0.000221985 0) (1.00992 0.000203627 0) (1.01001 0.000185305 0) (1.01009 0.000167178 0) (1.01018 0.000149406 0) (1.01027 0.000132155 0) (1.01036 0.000115579 0) (1.01044 9.98309e-05 0) (1.01053 8.50469e-05 0) (1.01061 7.13502e-05 0) (1.0107 5.88439e-05 0) (1.01078 4.76129e-05 0) (1.01087 3.77243e-05 0) (1.01095 2.92219e-05 0) (1.01103 2.21274e-05 0) (1.01111 1.64435e-05 0) (1.01119 1.21525e-05 0) (1.01127 9.21566e-06 0) (1.01135 7.57231e-06 0) (1.01143 7.13974e-06 0) (1.01151 7.81178e-06 0) (1.01159 9.45945e-06 0) (1.01167 1.19316e-05 0) (1.01175 1.50549e-05 0) (1.01182 1.8634e-05 0) (1.0119 2.24565e-05 0) (1.01198 2.63001e-05 0) (1.01205 2.99353e-05 0) (1.01213 3.31311e-05 0) (1.0122 3.56637e-05 0) (1.01228 3.73258e-05 0) (1.01235 3.79335e-05 0) (1.01243 3.73325e-05 0) (1.0125 3.5405e-05 0) (1.01257 3.20745e-05 0) (1.01264 2.73088e-05 0) (1.01272 2.11207e-05 0) (1.01279 1.35676e-05 0) (1.01286 4.7481e-06 0) (1.01293 -5.20199e-06 0) (1.013 -1.61155e-05 0) (1.01307 -2.78001e-05 0) (1.01313 -4.00455e-05 0) (1.0132 -5.26301e-05 0) (1.01327 -6.53276e-05 0) (1.01334 -7.79131e-05 0) (1.0134 -9.01683e-05 0) (1.01347 -0.000101886 0) (1.01353 -0.000112872 0) (1.0136 -0.000122953 0) (1.01366 -0.000131973 0) (1.01372 -0.000139799 0) (1.01379 -0.000146321 0) (1.01385 -0.000151454 0) (1.01391 -0.000155138 0) (1.01397 -0.000157339 0) (1.01404 -0.000158048 0) (1.0141 -0.000157276 0) (1.01416 -0.000155059 0) (1.01422 -0.000151445 0) (1.01428 -0.000146499 0) (1.01434 -0.00014029 0) (1.0144 -0.00013289 0) (1.01446 -0.000124367 0) (1.01452 -0.000114777 0) (1.01458 -0.000104168 0) (1.01464 -9.25684e-05 0) (1.0147 -7.99912e-05 0) (1.01476 -6.6436e-05 0) (1.01482 -5.18912e-05 0) (1.01488 -3.63425e-05 0) (1.01494 -1.9779e-05 0) (1.015 -2.20507e-06 0) (1.01506 1.6355e-05 0) (1.01512 3.58387e-05 0) (1.01517 5.61519e-05 0) (1.01523 7.71392e-05 0) (1.01529 9.86191e-05 0) (1.01535 0.000120323 0) (1.01541 0.000141994 0) (1.01547 0.000163244 0) (1.01553 0.000183793 0) (1.01559 0.000203141 0) (1.01565 0.000221077 0) (1.01571 0.000236991 0) (1.00853 0.00023947 0) (1.00863 0.000226449 0) (1.00873 0.000213585 0) (1.00882 0.000200761 0) (1.00892 0.00018787 0) (1.00902 0.000174816 0) (1.00911 0.000161507 0) (1.00921 0.000147854 0) (1.0093 0.000133788 0) (1.00939 0.000119265 0) (1.00949 0.000104264 0) (1.00958 8.87839e-05 0) (1.00967 7.28517e-05 0) (1.00976 5.6522e-05 0) (1.00985 3.98727e-05 0) (1.00994 2.30053e-05 0) (1.01003 6.04337e-06 0) (1.01012 -1.08727e-05 0) (1.01021 -2.75917e-05 0) (1.0103 -4.39584e-05 0) (1.01038 -5.98158e-05 0) (1.01047 -7.50081e-05 0) (1.01056 -8.93894e-05 0) (1.01064 -0.000102826 0) (1.01072 -0.0001152 0) (1.01081 -0.000126409 0) (1.01089 -0.00013637 0) (1.01097 -0.000145023 0) (1.01106 -0.000152325 0) (1.01114 -0.000158252 0) (1.01122 -0.0001628 0) (1.0113 -0.000165987 0) (1.01138 -0.000167852 0) (1.01146 -0.000168453 0) (1.01154 -0.000167871 0) (1.01162 -0.000166209 0) (1.0117 -0.000163592 0) (1.01177 -0.00016017 0) (1.01185 -0.000156113 0) (1.01193 -0.000151609 0) (1.012 -0.000146863 0) (1.01208 -0.000142093 0) (1.01216 -0.000137524 0) (1.01223 -0.000133382 0) (1.01231 -0.000129884 0) (1.01238 -0.000127231 0) (1.01246 -0.000125607 0) (1.01253 -0.000125161 0) (1.0126 -0.000126009 0) (1.01267 -0.000128229 0) (1.01275 -0.000131851 0) (1.01282 -0.000136867 0) (1.01289 -0.000143221 0) (1.01296 -0.000150819 0) (1.01303 -0.00015953 0) (1.0131 -0.000169193 0) (1.01317 -0.000179622 0) (1.01324 -0.000190613 0) (1.0133 -0.000201952 0) (1.01337 -0.000213419 0) (1.01344 -0.000224795 0) (1.01351 -0.000235869 0) (1.01357 -0.000246438 0) (1.01364 -0.000256316 0) (1.0137 -0.000265332 0) (1.01376 -0.000273335 0) (1.01383 -0.000280195 0) (1.01389 -0.000285805 0) (1.01396 -0.000290082 0) (1.01402 -0.000292966 0) (1.01408 -0.000294425 0) (1.01414 -0.000294447 0) (1.0142 -0.000293045 0) (1.01426 -0.000290251 0) (1.01433 -0.000286114 0) (1.01439 -0.000280693 0) (1.01445 -0.000274058 0) (1.01451 -0.000266278 0) (1.01457 -0.000257417 0) (1.01463 -0.000247533 0) (1.01469 -0.000236668 0) (1.01475 -0.000224851 0) (1.01481 -0.000212095 0) (1.01487 -0.000198399 0) (1.01493 -0.00018375 0) (1.01499 -0.000168135 0) (1.01505 -0.00015154 0) (1.01511 -0.00013397 0) (1.01517 -0.000115446 0) (1.01523 -9.6027e-05 0) (1.01529 -7.58016e-05 0) (1.01535 -5.49196e-05 0) (1.01541 -3.35544e-05 0) (1.01547 -1.1967e-05 0) (1.01553 9.59462e-06 0) (1.01559 3.07551e-05 0) (1.01565 5.12429e-05 0) (1.01571 7.05724e-05 0) (1.01577 8.85388e-05 0) (1.01583 0.00010455 0) (1.00867 2.944e-05 0) (1.00876 1.75051e-05 0) (1.00886 5.73714e-06 0) (1.00896 -5.97399e-06 0) (1.00905 -1.77333e-05 0) (1.00915 -2.96374e-05 0) (1.00924 -4.17771e-05 0) (1.00934 -5.42392e-05 0) (1.00943 -6.70904e-05 0) (1.00952 -8.03752e-05 0) (1.00962 -9.41157e-05 0) (1.00971 -0.000108313 0) (1.0098 -0.000122942 0) (1.00989 -0.00013795 0) (1.00998 -0.000153263 0) (1.01007 -0.00016878 0) (1.01016 -0.000184382 0) (1.01025 -0.000199934 0) (1.01033 -0.000215292 0) (1.01042 -0.000230304 0) (1.01051 -0.000244815 0) (1.01059 -0.000258675 0) (1.01068 -0.000271743 0) (1.01076 -0.000283889 0) (1.01085 -0.000294998 0) (1.01093 -0.000304971 0) (1.01101 -0.000313729 0) (1.01109 -0.000321211 0) (1.01117 -0.000327373 0) (1.01126 -0.000332195 0) (1.01134 -0.000335673 0) (1.01142 -0.000337824 0) (1.0115 -0.000338686 0) (1.01158 -0.000338317 0) (1.01165 -0.000336794 0) (1.01173 -0.000334218 0) (1.01181 -0.000330711 0) (1.01189 -0.000326418 0) (1.01196 -0.000321503 0) (1.01204 -0.00031615 0) (1.01212 -0.000310558 0) (1.01219 -0.000304942 0) (1.01227 -0.00029952 0) (1.01234 -0.00029451 0) (1.01242 -0.000290125 0) (1.01249 -0.000286564 0) (1.01257 -0.000284003 0) (1.01264 -0.000282591 0) (1.01271 -0.000282442 0) (1.01279 -0.000283631 0) (1.01286 -0.000286191 0) (1.01293 -0.000290114 0) (1.013 -0.000295348 0) (1.01307 -0.000301803 0) (1.01314 -0.000309353 0) (1.01321 -0.000317842 0) (1.01328 -0.00032709 0) (1.01335 -0.0003369 0) (1.01342 -0.000347065 0) (1.01348 -0.000357371 0) (1.01355 -0.000367606 0) (1.01362 -0.000377564 0) (1.01368 -0.00038705 0) (1.01375 -0.000395881 0) (1.01381 -0.000403892 0) (1.01388 -0.000410934 0) (1.01394 -0.000416883 0) (1.01401 -0.000421632 0) (1.01407 -0.000425101 0) (1.01413 -0.000427231 0) (1.01419 -0.00042799 0) (1.01426 -0.000427367 0) (1.01432 -0.000425372 0) (1.01438 -0.000422038 0) (1.01444 -0.000417409 0) (1.0145 -0.000411545 0) (1.01456 -0.000404512 0) (1.01462 -0.000396376 0) (1.01469 -0.0003872 0) (1.01475 -0.00037704 0) (1.01481 -0.000365938 0) (1.01487 -0.00035392 0) (1.01493 -0.000341 0) (1.01499 -0.000327176 0) (1.01505 -0.000312435 0) (1.01511 -0.000296763 0) (1.01517 -0.000280147 0) (1.01523 -0.000262588 0) (1.01529 -0.000244106 0) (1.01535 -0.000224757 0) (1.01541 -0.000204624 0) (1.01547 -0.000183851 0) (1.01553 -0.000162605 0) (1.01559 -0.000141137 0) (1.01565 -0.000119688 0) (1.01571 -9.86204e-05 0) (1.01577 -7.8197e-05 0) (1.01583 -5.88896e-05 0) (1.01589 -4.08971e-05 0) (1.01595 -2.47959e-05 0) (1.00881 -0.000173519 0) (1.0089 -0.000184362 0) (1.009 -0.000195027 0) (1.0091 -0.00020562 0) (1.00919 -0.000216246 0) (1.00929 -0.000227008 0) (1.00938 -0.000238 0) (1.00947 -0.000249294 0) (1.00957 -0.000260954 0) (1.00966 -0.000273024 0) (1.00975 -0.00028553 0) (1.00984 -0.000298473 0) (1.00993 -0.000311827 0) (1.01002 -0.000325545 0) (1.01011 -0.000339552 0) (1.0102 -0.000353753 0) (1.01029 -0.000368034 0) (1.01038 -0.000382264 0) (1.01047 -0.000396301 0) (1.01055 -0.000409999 0) (1.01064 -0.000423208 0) (1.01072 -0.000435784 0) (1.01081 -0.000447588 0) (1.01089 -0.000458494 0) (1.01098 -0.00046839 0) (1.01106 -0.000477181 0) (1.01114 -0.000484789 0) (1.01122 -0.000491154 0) (1.0113 -0.000496236 0) (1.01138 -0.000500013 0) (1.01146 -0.000502482 0) (1.01154 -0.00050366 0) (1.01162 -0.000503583 0) (1.0117 -0.000502307 0) (1.01178 -0.000499908 0) (1.01186 -0.000496483 0) (1.01194 -0.000492151 0) (1.01201 -0.000487052 0) (1.01209 -0.000481347 0) (1.01217 -0.000475213 0) (1.01224 -0.000468847 0) (1.01232 -0.000462453 0) (1.01239 -0.000456246 0) (1.01247 -0.00045044 0) (1.01254 -0.00044524 0) (1.01262 -0.000440842 0) (1.01269 -0.000437417 0) (1.01276 -0.000435111 0) (1.01284 -0.000434036 0) (1.01291 -0.000434266 0) (1.01298 -0.000435836 0) (1.01305 -0.000438737 0) (1.01312 -0.000442922 0) (1.01319 -0.000448304 0) (1.01326 -0.000454762 0) (1.01333 -0.000462145 0) (1.0134 -0.000470281 0) (1.01347 -0.000478977 0) (1.01354 -0.000488032 0) (1.01361 -0.00049724 0) (1.01367 -0.000506396 0) (1.01374 -0.000515299 0) (1.01381 -0.000523759 0) (1.01387 -0.000531599 0) (1.01394 -0.000538658 0) (1.014 -0.000544791 0) (1.01407 -0.000549877 0) (1.01413 -0.000553812 0) (1.01419 -0.000556518 0) (1.01426 -0.000557937 0) (1.01432 -0.000558037 0) (1.01438 -0.000556806 0) (1.01444 -0.000554254 0) (1.01451 -0.000550411 0) (1.01457 -0.000545322 0) (1.01463 -0.000539042 0) (1.01469 -0.000531636 0) (1.01475 -0.000523168 0) (1.01481 -0.0005137 0) (1.01487 -0.000503285 0) (1.01493 -0.000491963 0) (1.01499 -0.000479762 0) (1.01505 -0.000466693 0) (1.01511 -0.000452753 0) (1.01517 -0.000437932 0) (1.01524 -0.000422213 0) (1.0153 -0.000405584 0) (1.01536 -0.000388044 0) (1.01542 -0.000369611 0) (1.01548 -0.000350338 0) (1.01554 -0.000330304 0) (1.0156 -0.000309647 0) (1.01566 -0.000288527 0) (1.01572 -0.000267187 0) (1.01578 -0.000245855 0) (1.01584 -0.000224886 0) (1.0159 -0.000204533 0) (1.01596 -0.000185254 0) (1.01602 -0.000167244 0) (1.01608 -0.000151062 0) (1.00896 -0.000369758 0) (1.00905 -0.000379509 0) (1.00915 -0.000389076 0) (1.00924 -0.000398565 0) (1.00934 -0.000408079 0) (1.00943 -0.000417714 0) (1.00953 -0.000427559 0) (1.00962 -0.00043769 0) (1.00971 -0.000448169 0) (1.00981 -0.000459042 0) (1.0099 -0.000470333 0) (1.00999 -0.000482042 0) (1.01008 -0.000494148 0) (1.01017 -0.000506602 0) (1.01026 -0.000519336 0) (1.01035 -0.000532255 0) (1.01043 -0.00054525 0) (1.01052 -0.000558195 0) (1.01061 -0.000570952 0) (1.01069 -0.000583377 0) (1.01078 -0.000595328 0) (1.01086 -0.000606663 0) (1.01095 -0.000617248 0) (1.01103 -0.000626961 0) (1.01111 -0.000635693 0) (1.0112 -0.000643351 0) (1.01128 -0.00064986 0) (1.01136 -0.00065516 0) (1.01144 -0.000659214 0) (1.01152 -0.000662 0) (1.0116 -0.000663515 0) (1.01168 -0.000663774 0) (1.01176 -0.000662814 0) (1.01184 -0.000660688 0) (1.01191 -0.00065747 0) (1.01199 -0.000653254 0) (1.01207 -0.000648155 0) (1.01215 -0.00064231 0) (1.01222 -0.000635874 0) (1.0123 -0.00062902 0) (1.01237 -0.000621939 0) (1.01245 -0.000614829 0) (1.01253 -0.0006079 0) (1.0126 -0.000601359 0) (1.01267 -0.000595408 0) (1.01275 -0.000590234 0) (1.01282 -0.000586008 0) (1.0129 -0.000582872 0) (1.01297 -0.000580934 0) (1.01304 -0.00058027 0) (1.01311 -0.000580912 0) (1.01318 -0.000582856 0) (1.01326 -0.000586056 0) (1.01333 -0.000590428 0) (1.0134 -0.000595856 0) (1.01347 -0.000602195 0) (1.01353 -0.000609278 0) (1.0136 -0.00061692 0) (1.01367 -0.000624925 0) (1.01374 -0.000633093 0) (1.01381 -0.000641225 0) (1.01387 -0.000649127 0) (1.01394 -0.000656614 0) (1.014 -0.000663514 0) (1.01407 -0.00066967 0) (1.01413 -0.000674942 0) (1.0142 -0.00067921 0) (1.01426 -0.000682375 0) (1.01433 -0.000684358 0) (1.01439 -0.000685105 0) (1.01445 -0.000684582 0) (1.01451 -0.000682778 0) (1.01458 -0.000679701 0) (1.01464 -0.000675381 0) (1.0147 -0.000669859 0) (1.01476 -0.000663191 0) (1.01482 -0.000655438 0) (1.01488 -0.000646661 0) (1.01495 -0.000636922 0) (1.01501 -0.00062627 0) (1.01507 -0.000614747 0) (1.01513 -0.000602378 0) (1.01519 -0.000589173 0) (1.01525 -0.000575132 0) (1.01531 -0.000560242 0) (1.01537 -0.000544487 0) (1.01543 -0.000527854 0) (1.01549 -0.000510341 0) (1.01555 -0.000491966 0) (1.01561 -0.000472775 0) (1.01568 -0.000452847 0) (1.01574 -0.000432311 0) (1.0158 -0.000411322 0) (1.01586 -0.000390113 0) (1.01592 -0.000368907 0) (1.01598 -0.000348044 0) (1.01604 -0.000327771 0) (1.0161 -0.000308532 0) (1.01616 -0.000290516 0) (1.01622 -0.000274265 0) (1.00911 -0.000559566 0) (1.00921 -0.000568228 0) (1.0093 -0.000576703 0) (1.0094 -0.000585094 0) (1.00949 -0.000593501 0) (1.00959 -0.000602017 0) (1.00968 -0.000610731 0) (1.00977 -0.000619717 0) (1.00987 -0.000629036 0) (1.00996 -0.000638733 0) (1.01005 -0.000648831 0) (1.01014 -0.000659333 0) (1.01023 -0.000670217 0) (1.01032 -0.000681438 0) (1.01041 -0.000692928 0) (1.0105 -0.000704598 0) (1.01058 -0.000716342 0) (1.01067 -0.000728037 0) (1.01076 -0.00073955 0) (1.01084 -0.000750743 0) (1.01093 -0.000761475 0) (1.01101 -0.000771611 0) (1.0111 -0.00078102 0) (1.01118 -0.000789584 0) (1.01126 -0.000797196 0) (1.01134 -0.000803766 0) (1.01142 -0.000809221 0) (1.0115 -0.000813505 0) (1.01159 -0.000816578 0) (1.01167 -0.000818421 0) (1.01174 -0.000819031 0) (1.01182 -0.000818422 0) (1.0119 -0.000816628 0) (1.01198 -0.000813703 0) (1.01206 -0.000809716 0) (1.01214 -0.000804761 0) (1.01221 -0.000798948 0) (1.01229 -0.000792408 0) (1.01237 -0.000785294 0) (1.01244 -0.000777774 0) (1.01252 -0.000770031 0) (1.01259 -0.00076226 0) (1.01267 -0.000754664 0) (1.01274 -0.000747443 0) (1.01282 -0.000740794 0) (1.01289 -0.000734902 0) (1.01296 -0.000729931 0) (1.01304 -0.00072602 0) (1.01311 -0.000723277 0) (1.01318 -0.000721775 0) (1.01325 -0.000721548 0) (1.01333 -0.000722591 0) (1.0134 -0.000724862 0) (1.01347 -0.000728281 0) (1.01354 -0.000732736 0) (1.01361 -0.000738088 0) (1.01368 -0.000744173 0) (1.01374 -0.000750815 0) (1.01381 -0.000757822 0) (1.01388 -0.000765003 0) (1.01395 -0.000772163 0) (1.01401 -0.000779114 0) (1.01408 -0.000785676 0) (1.01414 -0.000791683 0) (1.01421 -0.000796981 0) (1.01427 -0.000801434 0) (1.01434 -0.000804927 0) (1.0144 -0.000807361 0) (1.01447 -0.00080866 0) (1.01453 -0.00080877 0) (1.01459 -0.000807658 0) (1.01466 -0.000805312 0) (1.01472 -0.000801742 0) (1.01478 -0.000796972 0) (1.01484 -0.000791046 0) (1.0149 -0.000784014 0) (1.01497 -0.000775936 0) (1.01503 -0.000766872 0) (1.01509 -0.000756881 0) (1.01515 -0.000746012 0) (1.01521 -0.000734304 0) (1.01527 -0.000721783 0) (1.01533 -0.000708457 0) (1.01539 -0.000694327 0) (1.01546 -0.00067938 0) (1.01552 -0.0006636 0) (1.01558 -0.000646972 0) (1.01564 -0.000629496 0) (1.0157 -0.000611185 0) (1.01576 -0.000592085 0) (1.01582 -0.000572269 0) (1.01588 -0.000551861 0) (1.01594 -0.000531009 0) (1.016 -0.000509939 0) (1.01607 -0.000488865 0) (1.01613 -0.000468115 0) (1.01619 -0.00044793 0) (1.01625 -0.000428738 0) (1.01631 -0.000410724 0) (1.01637 -0.000394414 0) (1.00928 -0.000743219 0) (1.00937 -0.000750796 0) (1.00947 -0.000758184 0) (1.00956 -0.000765485 0) (1.00966 -0.000772795 0) (1.00975 -0.000780207 0) (1.00984 -0.000787805 0) (1.00994 -0.000795663 0) (1.01003 -0.000803841 0) (1.01012 -0.000812382 0) (1.01021 -0.000821311 0) (1.0103 -0.00083063 0) (1.01039 -0.000840319 0) (1.01048 -0.000850334 0) (1.01057 -0.000860611 0) (1.01066 -0.000871064 0) (1.01074 -0.00088159 0) (1.01083 -0.000892069 0) (1.01091 -0.000902374 0) (1.011 -0.000912371 0) (1.01108 -0.000921923 0) (1.01117 -0.000930899 0) (1.01125 -0.000939172 0) (1.01133 -0.000946627 0) (1.01142 -0.000953161 0) (1.0115 -0.000958686 0) (1.01158 -0.000963131 0) (1.01166 -0.00096644 0) (1.01174 -0.000968577 0) (1.01182 -0.000969521 0) (1.0119 -0.00096927 0) (1.01198 -0.000967837 0) (1.01205 -0.000965256 0) (1.01213 -0.000961576 0) (1.01221 -0.000956867 0) (1.01229 -0.000951218 0) (1.01236 -0.000944737 0) (1.01244 -0.000937551 0) (1.01252 -0.000929806 0) (1.01259 -0.000921666 0) (1.01267 -0.000913309 0) (1.01274 -0.000904925 0) (1.01282 -0.000896709 0) (1.01289 -0.000888858 0) (1.01297 -0.000881562 0) (1.01304 -0.000875001 0) (1.01311 -0.000869335 0) (1.01319 -0.0008647 0) (1.01326 -0.000861203 0) (1.01333 -0.000858914 0) (1.0134 -0.000857868 0) (1.01347 -0.000858062 0) (1.01355 -0.000859456 0) (1.01362 -0.000861973 0) (1.01369 -0.000865507 0) (1.01376 -0.000869921 0) (1.01382 -0.00087506 0) (1.01389 -0.000880751 0) (1.01396 -0.000886811 0) (1.01403 -0.000893051 0) (1.0141 -0.000899286 0) (1.01416 -0.000905331 0) (1.01423 -0.000911013 0) (1.01429 -0.000916169 0) (1.01436 -0.000920651 0) (1.01442 -0.000924327 0) (1.01449 -0.000927081 0) (1.01455 -0.000928821 0) (1.01462 -0.000929471 0) (1.01468 -0.000928978 0) (1.01474 -0.000927308 0) (1.01481 -0.000924452 0) (1.01487 -0.000920415 0) (1.01493 -0.000915223 0) (1.01499 -0.000908916 0) (1.01506 -0.000901543 0) (1.01512 -0.000893162 0) (1.01518 -0.000883832 0) (1.01524 -0.000873608 0) (1.0153 -0.00086254 0) (1.01536 -0.000850664 0) (1.01542 -0.000838004 0) (1.01549 -0.000824572 0) (1.01555 -0.000810366 0) (1.01561 -0.000795373 0) (1.01567 -0.000779577 0) (1.01573 -0.000762966 0) (1.01579 -0.000745534 0) (1.01585 -0.000727296 0) (1.01591 -0.000708293 0) (1.01597 -0.000688596 0) (1.01604 -0.000668322 0) (1.0161 -0.000647615 0) (1.01616 -0.00062669 0) (1.01622 -0.000605754 0) (1.01628 -0.000585126 0) (1.01634 -0.000565035 0) (1.01641 -0.000545899 0) (1.01647 -0.000527896 0) (1.01653 -0.000511538 0) (1.00945 -0.000920967 0) (1.00954 -0.000927464 0) (1.00964 -0.000933774 0) (1.00973 -0.000939995 0) (1.00983 -0.000946221 0) (1.00992 -0.000952541 0) (1.01001 -0.000959039 0) (1.01011 -0.000965787 0) (1.0102 -0.000972844 0) (1.01029 -0.000980251 0) (1.01038 -0.000988034 0) (1.01047 -0.000996195 0) (1.01056 -0.00100471 0) (1.01065 -0.00101355 0) (1.01073 -0.00102265 0) (1.01082 -0.00103191 0) (1.01091 -0.00104125 0) (1.01099 -0.00105055 0) (1.01108 -0.00105968 0) (1.01117 -0.00106852 0) (1.01125 -0.00107692 0) (1.01133 -0.00108478 0) (1.01142 -0.00109195 0) (1.0115 -0.00109834 0) (1.01158 -0.00110383 0) (1.01166 -0.00110835 0) (1.01174 -0.00111182 0) (1.01182 -0.0011142 0) (1.0119 -0.00111544 0) (1.01198 -0.00111553 0) (1.01206 -0.00111445 0) (1.01214 -0.00111224 0) (1.01222 -0.00110891 0) (1.01229 -0.00110452 0) (1.01237 -0.00109913 0) (1.01245 -0.00109283 0) (1.01252 -0.00108572 0) (1.0126 -0.00107793 0) (1.01268 -0.00106959 0) (1.01275 -0.00106088 0) (1.01283 -0.00105195 0) (1.0129 -0.00104299 0) (1.01298 -0.0010342 0) (1.01305 -0.00102576 0) (1.01312 -0.00101786 0) (1.0132 -0.00101068 0) (1.01327 -0.00100436 0) (1.01334 -0.00099905 0) (1.01342 -0.000994844 0) (1.01349 -0.000991814 0) (1.01356 -0.000989997 0) (1.01363 -0.000989389 0) (1.0137 -0.000989952 0) (1.01377 -0.000991615 0) (1.01384 -0.000994273 0) (1.01391 -0.000997797 0) (1.01398 -0.00100204 0) (1.01405 -0.00100682 0) (1.01412 -0.00101198 0) (1.01419 -0.00101732 0) (1.01425 -0.00102268 0) (1.01432 -0.00102786 0) (1.01439 -0.0010327 0) (1.01445 -0.00103705 0) (1.01452 -0.00104075 0) (1.01458 -0.00104368 0) (1.01465 -0.00104574 0) (1.01471 -0.00104682 0) (1.01477 -0.00104685 0) (1.01484 -0.00104578 0) (1.0149 -0.00104359 0) (1.01496 -0.00104025 0) (1.01503 -0.00103577 0) (1.01509 -0.00103018 0) (1.01515 -0.00102351 0) (1.01521 -0.00101582 0) (1.01528 -0.00100716 0) (1.01534 -0.000997582 0) (1.0154 -0.000987143 0) (1.01546 -0.000975891 0) (1.01552 -0.000963862 0) (1.01558 -0.000951079 0) (1.01565 -0.000937553 0) (1.01571 -0.000923282 0) (1.01577 -0.000908254 0) (1.01583 -0.000892454 0) (1.01589 -0.000875866 0) (1.01595 -0.000858488 0) (1.01601 -0.00084033 0) (1.01607 -0.000821433 0) (1.01614 -0.000801861 0) (1.0162 -0.000781728 0) (1.01626 -0.000761172 0) (1.01632 -0.000740398 0) (1.01638 -0.000719608 0) (1.01644 -0.000699107 0) (1.01651 -0.000679119 0) (1.01657 -0.000660047 0) (1.01663 -0.000642066 0) (1.01669 -0.000625671 0) (1.00963 -0.00109304 0) (1.00972 -0.00109846 0) (1.00982 -0.00110371 0) (1.00991 -0.00110886 0) (1.01 -0.00111401 0) (1.0101 -0.00111926 0) (1.01019 -0.00112467 0) (1.01028 -0.00113033 0) (1.01037 -0.00113628 0) (1.01046 -0.00114258 0) (1.01056 -0.00114924 0) (1.01064 -0.00115627 0) (1.01073 -0.00116364 0) (1.01082 -0.00117133 0) (1.01091 -0.00117927 0) (1.011 -0.00118738 0) (1.01108 -0.00119556 0) (1.01117 -0.00120371 0) (1.01125 -0.0012117 0) (1.01134 -0.00121941 0) (1.01142 -0.00122671 0) (1.01151 -0.00123347 0) (1.01159 -0.00123959 0) (1.01167 -0.00124494 0) (1.01175 -0.00124943 0) (1.01183 -0.00125298 0) (1.01191 -0.00125552 0) (1.01199 -0.001257 0) (1.01207 -0.00125738 0) (1.01215 -0.00125664 0) (1.01223 -0.00125479 0) (1.01231 -0.00125183 0) (1.01239 -0.00124779 0) (1.01246 -0.00124272 0) (1.01254 -0.00123669 0) (1.01262 -0.00122977 0) (1.01269 -0.00122208 0) (1.01277 -0.00121372 0) (1.01284 -0.00120483 0) (1.01292 -0.00119558 0) (1.01299 -0.00118612 0) (1.01307 -0.00117663 0) (1.01314 -0.0011673 0) (1.01322 -0.00115831 0) (1.01329 -0.00114985 0) (1.01336 -0.00114208 0) (1.01344 -0.00113516 0) (1.01351 -0.00112921 0) (1.01358 -0.00112433 0) (1.01366 -0.0011206 0) (1.01373 -0.00111806 0) (1.0138 -0.00111669 0) (1.01387 -0.00111646 0) (1.01394 -0.00111732 0) (1.01401 -0.00111914 0) (1.01408 -0.00112182 0) (1.01415 -0.0011252 0) (1.01422 -0.00112912 0) (1.01428 -0.00113342 0) (1.01435 -0.00113791 0) (1.01442 -0.00114242 0) (1.01449 -0.00114678 0) (1.01455 -0.00115082 0) (1.01462 -0.00115439 0) (1.01468 -0.00115735 0) (1.01475 -0.00115958 0) (1.01481 -0.00116096 0) (1.01488 -0.00116141 0) (1.01494 -0.00116086 0) (1.015 -0.00115925 0) (1.01507 -0.00115655 0) (1.01513 -0.00115275 0) (1.01519 -0.00114786 0) (1.01526 -0.00114189 0) (1.01532 -0.00113489 0) (1.01538 -0.0011269 0) (1.01544 -0.00111798 0) (1.0155 -0.00110817 0) (1.01557 -0.00109753 0) (1.01563 -0.00108611 0) (1.01569 -0.00107394 0) (1.01575 -0.00106105 0) (1.01581 -0.00104744 0) (1.01587 -0.00103312 0) (1.01594 -0.00101807 0) (1.016 -0.00100227 0) (1.01606 -0.000985717 0) (1.01612 -0.0009684 0) (1.01618 -0.000950329 0) (1.01624 -0.000931543 0) (1.0163 -0.000912103 0) (1.01637 -0.000892118 0) (1.01643 -0.000871717 0) (1.01649 -0.000851102 0) (1.01655 -0.000830463 0) (1.01661 -0.000810096 0) (1.01668 -0.000790219 0) (1.01674 -0.00077122 0) (1.0168 -0.00075327 0) (1.01686 -0.000736847 0) (1.00981 -0.00125965 0) (1.00991 -0.00126401 0) (1.01 -0.0012682 0) (1.0101 -0.00127229 0) (1.01019 -0.00127639 0) (1.01028 -0.00128058 0) (1.01037 -0.00128493 0) (1.01047 -0.00128951 0) (1.01056 -0.00129438 0) (1.01065 -0.00129959 0) (1.01074 -0.00130515 0) (1.01083 -0.00131107 0) (1.01092 -0.00131733 0) (1.011 -0.00132389 0) (1.01109 -0.0013307 0) (1.01118 -0.00133769 0) (1.01126 -0.00134475 0) (1.01135 -0.00135177 0) (1.01144 -0.00135866 0) (1.01152 -0.00136527 0) (1.0116 -0.00137149 0) (1.01169 -0.0013772 0) (1.01177 -0.00138229 0) (1.01185 -0.00138664 0) (1.01193 -0.00139016 0) (1.01201 -0.00139278 0) (1.01209 -0.00139442 0) (1.01217 -0.00139503 0) (1.01225 -0.00139459 0) (1.01233 -0.00139307 0) (1.01241 -0.00139047 0) (1.01249 -0.0013868 0) (1.01256 -0.00138208 0) (1.01264 -0.00137637 0) (1.01272 -0.00136973 0) (1.01279 -0.00136223 0) (1.01287 -0.00135398 0) (1.01294 -0.00134509 0) (1.01302 -0.00133569 0) (1.01309 -0.00132593 0) (1.01317 -0.00131597 0) (1.01324 -0.00130598 0) (1.01332 -0.00129615 0) (1.01339 -0.00128665 0) (1.01347 -0.00127766 0) (1.01354 -0.00126934 0) (1.01361 -0.00126185 0) (1.01369 -0.0012553 0) (1.01376 -0.00124979 0) (1.01383 -0.00124541 0) (1.0139 -0.00124217 0) (1.01397 -0.00124008 0) (1.01404 -0.00123911 0) (1.01411 -0.00123918 0) (1.01418 -0.00124022 0) (1.01425 -0.00124209 0) (1.01432 -0.00124465 0) (1.01439 -0.00124775 0) (1.01446 -0.00125122 0) (1.01453 -0.00125489 0) (1.01459 -0.0012586 0) (1.01466 -0.00126217 0) (1.01473 -0.00126544 0) (1.01479 -0.00126828 0) (1.01486 -0.00127053 0) (1.01492 -0.00127208 0) (1.01499 -0.00127283 0) (1.01505 -0.00127268 0) (1.01512 -0.00127156 0) (1.01518 -0.00126944 0) (1.01524 -0.00126626 0) (1.01531 -0.00126203 0) (1.01537 -0.00125675 0) (1.01543 -0.00125043 0) (1.01549 -0.00124311 0) (1.01556 -0.00123484 0) (1.01562 -0.00122567 0) (1.01568 -0.00121565 0) (1.01574 -0.00120483 0) (1.0158 -0.00119325 0) (1.01586 -0.00118096 0) (1.01593 -0.00116797 0) (1.01599 -0.00115429 0) (1.01605 -0.00113992 0) (1.01611 -0.00112486 0) (1.01617 -0.00110907 0) (1.01623 -0.00109256 0) (1.0163 -0.00107531 0) (1.01636 -0.00105734 0) (1.01642 -0.00103867 0) (1.01648 -0.00101937 0) (1.01654 -0.000999534 0) (1.01661 -0.000979295 0) (1.01667 -0.000958843 0) (1.01673 -0.000938362 0) (1.01679 -0.000918136 0) (1.01685 -0.000898376 0) (1.01692 -0.000879458 0) (1.01698 -0.000861547 0) (1.01704 -0.000845108 0) (1.01 -0.00142099 0) (1.0101 -0.00142431 0) (1.01019 -0.00142745 0) (1.01029 -0.0014305 0) (1.01038 -0.00143356 0) (1.01047 -0.0014367 0) (1.01057 -0.00144001 0) (1.01066 -0.00144354 0) (1.01075 -0.00144735 0) (1.01084 -0.00145149 0) (1.01093 -0.00145597 0) (1.01102 -0.0014608 0) (1.01111 -0.00146597 0) (1.01119 -0.00147144 0) (1.01128 -0.00147716 0) (1.01137 -0.00148304 0) (1.01145 -0.001489 0) (1.01154 -0.00149494 0) (1.01162 -0.00150075 0) (1.01171 -0.0015063 0) (1.01179 -0.00151148 0) (1.01187 -0.00151617 0) (1.01196 -0.00152025 0) (1.01204 -0.00152364 0) (1.01212 -0.00152622 0) (1.0122 -0.00152794 0) (1.01228 -0.00152871 0) (1.01236 -0.0015285 0) (1.01244 -0.00152727 0) (1.01251 -0.00152499 0) (1.01259 -0.00152167 0) (1.01267 -0.00151732 0) (1.01275 -0.00151196 0) (1.01282 -0.00150564 0) (1.0129 -0.00149842 0) (1.01298 -0.00149038 0) (1.01305 -0.0014816 0) (1.01313 -0.0014722 0) (1.0132 -0.00146232 0) (1.01328 -0.00145208 0) (1.01335 -0.00144166 0) (1.01343 -0.00143121 0) (1.0135 -0.0014209 0) (1.01358 -0.00141092 0) (1.01365 -0.00140144 0) (1.01372 -0.0013926 0) (1.0138 -0.00138457 0) (1.01387 -0.00137745 0) (1.01394 -0.00137135 0) (1.01401 -0.00136634 0) (1.01408 -0.00136245 0) (1.01415 -0.00135967 0) (1.01423 -0.00135799 0) (1.0143 -0.00135733 0) (1.01437 -0.00135761 0) (1.01443 -0.0013587 0) (1.0145 -0.00136048 0) (1.01457 -0.0013628 0) (1.01464 -0.00136548 0) (1.01471 -0.00136837 0) (1.01478 -0.00137131 0) (1.01484 -0.00137412 0) (1.01491 -0.00137667 0) (1.01497 -0.00137879 0) (1.01504 -0.00138036 0) (1.0151 -0.00138127 0) (1.01517 -0.00138141 0) (1.01523 -0.00138069 0) (1.0153 -0.00137904 0) (1.01536 -0.00137642 0) (1.01542 -0.00137279 0) (1.01549 -0.00136815 0) (1.01555 -0.00136249 0) (1.01561 -0.00135584 0) (1.01568 -0.00134823 0) (1.01574 -0.0013397 0) (1.0158 -0.00133029 0) (1.01586 -0.00132007 0) (1.01592 -0.00130909 0) (1.01599 -0.00129737 0) (1.01605 -0.00128497 0) (1.01611 -0.00127189 0) (1.01617 -0.00125815 0) (1.01623 -0.00124375 0) (1.01629 -0.00122868 0) (1.01636 -0.00121292 0) (1.01642 -0.00119645 0) (1.01648 -0.00117928 0) (1.01654 -0.0011614 0) (1.0166 -0.00114286 0) (1.01667 -0.0011237 0) (1.01673 -0.00110403 0) (1.01679 -0.00108395 0) (1.01685 -0.00106367 0) (1.01691 -0.00104335 0) (1.01698 -0.00102327 0) (1.01704 -0.00100364 0) (1.0171 -0.000984806 0) (1.01716 -0.000966943 0) (1.01723 -0.000950496 0) (1.0102 -0.00157726 0) (1.0103 -0.00157954 0) (1.01039 -0.00158165 0) (1.01049 -0.00158368 0) (1.01058 -0.00158571 0) (1.01067 -0.00158783 0) (1.01077 -0.0015901 0) (1.01086 -0.0015926 0) (1.01095 -0.00159537 0) (1.01104 -0.00159846 0) (1.01113 -0.00160189 0) (1.01122 -0.00160567 0) (1.01131 -0.00160977 0) (1.01139 -0.00161417 0) (1.01148 -0.00161881 0) (1.01157 -0.00162363 0) (1.01165 -0.00162852 0) (1.01174 -0.00163341 0) (1.01182 -0.00163816 0) (1.0119 -0.00164268 0) (1.01199 -0.00164685 0) (1.01207 -0.00165055 0) (1.01215 -0.00165367 0) (1.01223 -0.00165612 0) (1.01231 -0.0016578 0) (1.01239 -0.00165864 0) (1.01247 -0.00165858 0) (1.01255 -0.00165757 0) (1.01263 -0.00165557 0) (1.01271 -0.00165257 0) (1.01279 -0.00164857 0) (1.01286 -0.00164357 0) (1.01294 -0.00163759 0) (1.01302 -0.00163069 0) (1.01309 -0.00162292 0) (1.01317 -0.00161436 0) (1.01324 -0.00160509 0) (1.01332 -0.00159522 0) (1.0134 -0.00158487 0) (1.01347 -0.00157419 0) (1.01354 -0.00156332 0) (1.01362 -0.00155244 0) (1.01369 -0.00154169 0) (1.01377 -0.00153126 0) (1.01384 -0.00152131 0) (1.01391 -0.00151199 0) (1.01399 -0.00150345 0) (1.01406 -0.00149579 0) (1.01413 -0.00148913 0) (1.0142 -0.00148353 0) (1.01427 -0.00147901 0) (1.01434 -0.00147558 0) (1.01442 -0.00147322 0) (1.01449 -0.00147186 0) (1.01456 -0.00147142 0) (1.01462 -0.00147178 0) (1.01469 -0.00147281 0) (1.01476 -0.00147436 0) (1.01483 -0.00147629 0) (1.0149 -0.00147844 0) (1.01496 -0.00148063 0) (1.01503 -0.00148273 0) (1.0151 -0.00148457 0) (1.01516 -0.00148602 0) (1.01523 -0.00148694 0) (1.01529 -0.00148723 0) (1.01536 -0.00148678 0) (1.01542 -0.00148551 0) (1.01549 -0.00148336 0) (1.01555 -0.00148027 0) (1.01561 -0.00147622 0) (1.01568 -0.00147118 0) (1.01574 -0.00146517 0) (1.0158 -0.0014582 0) (1.01587 -0.00145031 0) (1.01593 -0.00144153 0) (1.01599 -0.00143192 0) (1.01605 -0.00142151 0) (1.01611 -0.00141037 0) (1.01618 -0.00139853 0) (1.01624 -0.00138602 0) (1.0163 -0.00137287 0) (1.01636 -0.00135908 0) (1.01642 -0.00134466 0) (1.01649 -0.00132959 0) (1.01655 -0.00131385 0) (1.01661 -0.00129745 0) (1.01667 -0.00128035 0) (1.01673 -0.00126258 0) (1.01679 -0.00124417 0) (1.01686 -0.00122516 0) (1.01692 -0.00120564 0) (1.01698 -0.00118574 0) (1.01704 -0.00116563 0) (1.01711 -0.00114548 0) (1.01717 -0.00112556 0) (1.01723 -0.00110605 0) (1.01729 -0.00108731 0) (1.01736 -0.0010695 0) (1.01742 -0.00105306 0) (1.01041 -0.00172863 0) (1.01051 -0.00172988 0) (1.0106 -0.00173098 0) (1.0107 -0.00173199 0) (1.01079 -0.00173302 0) (1.01088 -0.00173413 0) (1.01097 -0.00173539 0) (1.01106 -0.00173688 0) (1.01115 -0.00173863 0) (1.01124 -0.0017407 0) (1.01133 -0.0017431 0) (1.01142 -0.00174584 0) (1.01151 -0.00174891 0) (1.0116 -0.00175226 0) (1.01168 -0.00175586 0) (1.01177 -0.00175963 0) (1.01186 -0.00176349 0) (1.01194 -0.00176734 0) (1.01202 -0.00177108 0) (1.01211 -0.0017746 0) (1.01219 -0.00177778 0) (1.01227 -0.00178052 0) (1.01235 -0.00178271 0) (1.01244 -0.00178425 0) (1.01252 -0.00178505 0) (1.0126 -0.00178506 0) (1.01267 -0.00178419 0) (1.01275 -0.00178241 0) (1.01283 -0.00177968 0) (1.01291 -0.00177598 0) (1.01299 -0.00177132 0) (1.01306 -0.0017657 0) (1.01314 -0.00175914 0) (1.01322 -0.00175168 0) (1.01329 -0.00174339 0) (1.01337 -0.00173433 0) (1.01344 -0.00172459 0) (1.01352 -0.00171427 0) (1.01359 -0.00170349 0) (1.01367 -0.00169239 0) (1.01374 -0.00168111 0) (1.01382 -0.00166981 0) (1.01389 -0.00165865 0) (1.01396 -0.0016478 0) (1.01404 -0.0016374 0) (1.01411 -0.00162763 0) (1.01418 -0.0016186 0) (1.01426 -0.00161044 0) (1.01433 -0.00160325 0) (1.0144 -0.00159708 0) (1.01447 -0.00159197 0) (1.01454 -0.00158792 0) (1.01461 -0.00158491 0) (1.01468 -0.00158288 0) (1.01475 -0.00158175 0) (1.01482 -0.0015814 0) (1.01489 -0.00158171 0) (1.01496 -0.00158255 0) (1.01503 -0.00158376 0) (1.0151 -0.00158518 0) (1.01516 -0.00158667 0) (1.01523 -0.00158807 0) (1.0153 -0.00158924 0) (1.01536 -0.00159004 0) (1.01543 -0.00159034 0) (1.01549 -0.00159004 0) (1.01556 -0.00158903 0) (1.01562 -0.00158724 0) (1.01568 -0.0015846 0) (1.01575 -0.00158106 0) (1.01581 -0.0015766 0) (1.01587 -0.00157119 0) (1.01594 -0.00156485 0) (1.016 -0.00155758 0) (1.01606 -0.00154943 0) (1.01613 -0.00154042 0) (1.01619 -0.0015306 0) (1.01625 -0.00152003 0) (1.01631 -0.00150874 0) (1.01637 -0.00149678 0) (1.01644 -0.00148418 0) (1.0165 -0.00147097 0) (1.01656 -0.00145714 0) (1.01662 -0.0014427 0) (1.01668 -0.00142764 0) (1.01675 -0.00141194 0) (1.01681 -0.0013956 0) (1.01687 -0.00137859 0) (1.01693 -0.00136093 0) (1.01699 -0.00134265 0) (1.01706 -0.00132379 0) (1.01712 -0.00130444 0) (1.01718 -0.00128472 0) (1.01724 -0.00126478 0) (1.01731 -0.0012448 0) (1.01737 -0.00122504 0) (1.01743 -0.00120566 0) (1.01749 -0.00118703 0) (1.01756 -0.00116928 0) (1.01762 -0.00115285 0) (1.01063 -0.00187525 0) (1.01072 -0.0018755 0) (1.01082 -0.0018756 0) (1.01091 -0.00187562 0) (1.011 -0.00187566 0) (1.0111 -0.00187578 0) (1.01119 -0.00187605 0) (1.01128 -0.00187654 0) (1.01137 -0.0018773 0) (1.01146 -0.00187837 0) (1.01155 -0.00187977 0) (1.01164 -0.0018815 0) (1.01172 -0.00188355 0) (1.01181 -0.00188589 0) (1.0119 -0.00188847 0) (1.01198 -0.00189122 0) (1.01207 -0.00189407 0) (1.01215 -0.00189692 0) (1.01224 -0.00189967 0) (1.01232 -0.00190222 0) (1.0124 -0.00190444 0) (1.01248 -0.00190625 0) (1.01256 -0.00190753 0) (1.01265 -0.00190819 0) (1.01273 -0.00190815 0) (1.01281 -0.00190734 0) (1.01288 -0.0019057 0) (1.01296 -0.00190317 0) (1.01304 -0.00189974 0) (1.01312 -0.00189538 0) (1.0132 -0.00189008 0) (1.01327 -0.00188386 0) (1.01335 -0.00187674 0) (1.01343 -0.00186875 0) (1.0135 -0.00185996 0) (1.01358 -0.00185043 0) (1.01365 -0.00184024 0) (1.01373 -0.0018295 0) (1.0138 -0.00181831 0) (1.01388 -0.00180682 0) (1.01395 -0.00179515 0) (1.01402 -0.00178346 0) (1.0141 -0.00177191 0) (1.01417 -0.00176065 0) (1.01424 -0.00174985 0) (1.01432 -0.00173964 0) (1.01439 -0.00173016 0) (1.01446 -0.00172152 0) (1.01453 -0.00171382 0) (1.01461 -0.00170711 0) (1.01468 -0.00170143 0) (1.01475 -0.0016968 0) (1.01482 -0.00169317 0) (1.01489 -0.0016905 0) (1.01496 -0.0016887 0) (1.01503 -0.00168768 0) (1.0151 -0.0016873 0) (1.01516 -0.00168745 0) (1.01523 -0.00168796 0) (1.0153 -0.0016887 0) (1.01537 -0.00168951 0) (1.01543 -0.00169024 0) (1.0155 -0.00169076 0) (1.01557 -0.00169094 0) (1.01563 -0.00169064 0) (1.0157 -0.00168977 0) (1.01576 -0.00168823 0) (1.01583 -0.00168594 0) (1.01589 -0.00168284 0) (1.01595 -0.00167887 0) (1.01602 -0.00167402 0) (1.01608 -0.00166826 0) (1.01614 -0.0016616 0) (1.01621 -0.00165405 0) (1.01627 -0.00164564 0) (1.01633 -0.00163642 0) (1.01639 -0.00162642 0) (1.01646 -0.00161568 0) (1.01652 -0.00160427 0) (1.01658 -0.0015922 0) (1.01664 -0.00157952 0) (1.0167 -0.00156625 0) (1.01677 -0.00155239 0) (1.01683 -0.00153794 0) (1.01689 -0.0015229 0) (1.01695 -0.00150724 0) (1.01701 -0.00149096 0) (1.01708 -0.00147405 0) (1.01714 -0.00145651 0) (1.0172 -0.00143836 0) (1.01726 -0.00141966 0) (1.01732 -0.00140048 0) (1.01739 -0.00138093 0) (1.01745 -0.00136118 0) (1.01751 -0.00134138 0) (1.01757 -0.00132177 0) (1.01764 -0.00130253 0) (1.0177 -0.00128401 0) (1.01776 -0.00126633 0) (1.01783 -0.00124991 0) (1.01085 -0.0020173 0) (1.01094 -0.00201655 0) (1.01104 -0.00201567 0) (1.01113 -0.00201472 0) (1.01122 -0.00201378 0) (1.01132 -0.00201293 0) (1.01141 -0.00201224 0) (1.0115 -0.00201176 0) (1.01159 -0.00201155 0) (1.01168 -0.00201164 0) (1.01177 -0.00201205 0) (1.01186 -0.00201279 0) (1.01194 -0.00201385 0) (1.01203 -0.0020152 0) (1.01212 -0.00201679 0) (1.0122 -0.00201856 0) (1.01229 -0.00202043 0) (1.01237 -0.00202231 0) (1.01245 -0.00202409 0) (1.01254 -0.00202569 0) (1.01262 -0.00202699 0) (1.0127 -0.00202789 0) (1.01278 -0.0020283 0) (1.01286 -0.00202811 0) (1.01294 -0.00202725 0) (1.01302 -0.00202565 0) (1.0131 -0.00202326 0) (1.01318 -0.00202002 0) (1.01326 -0.0020159 0) (1.01334 -0.00201089 0) (1.01341 -0.00200499 0) (1.01349 -0.0019982 0) (1.01357 -0.00199054 0) (1.01364 -0.00198205 0) (1.01372 -0.00197278 0) (1.01379 -0.0019628 0) (1.01387 -0.00195219 0) (1.01394 -0.00194104 0) (1.01402 -0.00192947 0) (1.01409 -0.0019176 0) (1.01417 -0.00190556 0) (1.01424 -0.00189351 0) (1.01431 -0.00188159 0) (1.01439 -0.00186995 0) (1.01446 -0.00185876 0) (1.01453 -0.00184814 0) (1.0146 -0.00183823 0) (1.01468 -0.00182913 0) (1.01475 -0.00182095 0) (1.01482 -0.00181373 0) (1.01489 -0.00180752 0) (1.01496 -0.00180231 0) (1.01503 -0.00179809 0) (1.0151 -0.00179481 0) (1.01517 -0.00179238 0) (1.01524 -0.0017907 0) (1.01531 -0.00178967 0) (1.01538 -0.00178915 0) (1.01545 -0.001789 0) (1.01551 -0.00178907 0) (1.01558 -0.00178923 0) (1.01565 -0.00178933 0) (1.01571 -0.00178923 0) (1.01578 -0.0017888 0) (1.01584 -0.00178794 0) (1.01591 -0.00178652 0) (1.01597 -0.00178447 0) (1.01604 -0.0017817 0) (1.0161 -0.00177815 0) (1.01617 -0.00177378 0) (1.01623 -0.00176855 0) (1.01629 -0.00176246 0) (1.01636 -0.00175549 0) (1.01642 -0.00174768 0) (1.01648 -0.00173904 0) (1.01654 -0.00172961 0) (1.01661 -0.00171943 0) (1.01667 -0.00170855 0) (1.01673 -0.00169701 0) (1.01679 -0.00168485 0) (1.01685 -0.0016721 0) (1.01692 -0.00165878 0) (1.01698 -0.00164489 0) (1.01704 -0.00163045 0) (1.0171 -0.00161543 0) (1.01716 -0.00159982 0) (1.01723 -0.00158361 0) (1.01729 -0.00156679 0) (1.01735 -0.00154937 0) (1.01741 -0.00153137 0) (1.01748 -0.00151282 0) (1.01754 -0.00149381 0) (1.0176 -0.00147445 0) (1.01766 -0.00145488 0) (1.01773 -0.00143525 0) (1.01779 -0.00141581 0) (1.01785 -0.00139672 0) (1.01792 -0.0013783 0) (1.01798 -0.0013607 0) (1.01804 -0.00134431 0) (1.01108 -0.00215491 0) (1.01117 -0.00215319 0) (1.01127 -0.00215134 0) (1.01136 -0.00214944 0) (1.01145 -0.00214755 0) (1.01155 -0.00214575 0) (1.01164 -0.00214411 0) (1.01173 -0.00214268 0) (1.01182 -0.00214152 0) (1.01191 -0.00214065 0) (1.012 -0.00214011 0) (1.01208 -0.00213989 0) (1.01217 -0.00213998 0) (1.01226 -0.00214037 0) (1.01234 -0.00214099 0) (1.01243 -0.0021418 0) (1.01251 -0.00214271 0) (1.0126 -0.00214364 0) (1.01268 -0.00214449 0) (1.01276 -0.00214517 0) (1.01285 -0.00214557 0) (1.01293 -0.0021456 0) (1.01301 -0.00214515 0) (1.01309 -0.00214414 0) (1.01317 -0.00214249 0) (1.01325 -0.00214013 0) (1.01333 -0.00213701 0) (1.0134 -0.00213308 0) (1.01348 -0.00212831 0) (1.01356 -0.00212268 0) (1.01364 -0.00211619 0) (1.01371 -0.00210885 0) (1.01379 -0.00210067 0) (1.01387 -0.0020917 0) (1.01394 -0.00208198 0) (1.01402 -0.00207157 0) (1.01409 -0.00206056 0) (1.01417 -0.00204903 0) (1.01424 -0.00203709 0) (1.01431 -0.00202486 0) (1.01439 -0.00201248 0) (1.01446 -0.00200008 0) (1.01453 -0.00198781 0) (1.01461 -0.00197582 0) (1.01468 -0.00196425 0) (1.01475 -0.00195324 0) (1.01483 -0.00194292 0) (1.0149 -0.00193339 0) (1.01497 -0.00192475 0) (1.01504 -0.00191704 0) (1.01511 -0.00191032 0) (1.01518 -0.00190457 0) (1.01525 -0.00189979 0) (1.01532 -0.00189591 0) (1.01539 -0.00189287 0) (1.01546 -0.00189058 0) (1.01553 -0.00188891 0) (1.0156 -0.00188775 0) (1.01567 -0.00188696 0) (1.01573 -0.0018864 0) (1.0158 -0.00188593 0) (1.01587 -0.00188541 0) (1.01593 -0.00188472 0) (1.016 -0.00188372 0) (1.01606 -0.0018823 0) (1.01613 -0.00188036 0) (1.01619 -0.00187782 0) (1.01626 -0.00187459 0) (1.01632 -0.00187062 0) (1.01639 -0.00186585 0) (1.01645 -0.00186027 0) (1.01651 -0.00185385 0) (1.01658 -0.0018466 0) (1.01664 -0.00183853 0) (1.0167 -0.00182967 0) (1.01676 -0.00182005 0) (1.01683 -0.00180971 0) (1.01689 -0.0017987 0) (1.01695 -0.00178705 0) (1.01701 -0.0017748 0) (1.01708 -0.00176198 0) (1.01714 -0.00174862 0) (1.0172 -0.00173472 0) (1.01726 -0.00172028 0) (1.01732 -0.00170528 0) (1.01739 -0.00168973 0) (1.01745 -0.0016736 0) (1.01751 -0.00165688 0) (1.01757 -0.00163958 0) (1.01763 -0.00162172 0) (1.0177 -0.00160333 0) (1.01776 -0.0015845 0) (1.01782 -0.00156532 0) (1.01789 -0.00154594 0) (1.01795 -0.00152649 0) (1.01801 -0.00150722 0) (1.01807 -0.00148827 0) (1.01814 -0.00146997 0) (1.0182 -0.00145245 0) (1.01826 -0.00143609 0) (1.01132 -0.00228824 0) (1.01141 -0.00228556 0) (1.01151 -0.00228277 0) (1.0116 -0.00227992 0) (1.01169 -0.0022771 0) (1.01178 -0.00227437 0) (1.01187 -0.00227181 0) (1.01196 -0.00226945 0) (1.01205 -0.00226736 0) (1.01214 -0.00226556 0) (1.01223 -0.00226408 0) (1.01232 -0.00226292 0) (1.01241 -0.00226208 0) (1.01249 -0.00226152 0) (1.01258 -0.00226121 0) (1.01266 -0.00226108 0) (1.01275 -0.00226106 0) (1.01283 -0.00226107 0) (1.01292 -0.00226102 0) (1.013 -0.00226081 0) (1.01308 -0.00226033 0) (1.01316 -0.00225951 0) (1.01324 -0.00225823 0) (1.01332 -0.00225643 0) (1.0134 -0.00225401 0) (1.01348 -0.00225091 0) (1.01356 -0.00224709 0) (1.01364 -0.00224249 0) (1.01371 -0.00223709 0) (1.01379 -0.00223086 0) (1.01387 -0.00222381 0) (1.01394 -0.00221594 0) (1.01402 -0.00220727 0) (1.0141 -0.00219784 0) (1.01417 -0.00218768 0) (1.01425 -0.00217687 0) (1.01432 -0.00216547 0) (1.0144 -0.00215358 0) (1.01447 -0.00214129 0) (1.01454 -0.00212873 0) (1.01462 -0.00211601 0) (1.01469 -0.00210329 0) (1.01476 -0.00209069 0) (1.01484 -0.00207836 0) (1.01491 -0.00206644 0) (1.01498 -0.00205506 0) (1.01506 -0.00204435 0) (1.01513 -0.00203441 0) (1.0152 -0.00202533 0) (1.01527 -0.00201716 0) (1.01534 -0.00200994 0) (1.01541 -0.00200368 0) (1.01548 -0.00199835 0) (1.01555 -0.00199391 0) (1.01562 -0.00199029 0) (1.01569 -0.00198739 0) (1.01576 -0.00198512 0) (1.01583 -0.00198335 0) (1.0159 -0.00198194 0) (1.01596 -0.00198077 0) (1.01603 -0.00197969 0) (1.0161 -0.00197859 0) (1.01616 -0.00197732 0) (1.01623 -0.00197576 0) (1.01629 -0.00197382 0) (1.01636 -0.00197138 0) (1.01642 -0.00196836 0) (1.01649 -0.00196469 0) (1.01655 -0.00196031 0) (1.01661 -0.00195518 0) (1.01668 -0.00194925 0) (1.01674 -0.00194253 0) (1.0168 -0.00193501 0) (1.01687 -0.0019267 0) (1.01693 -0.00191763 0) (1.01699 -0.00190782 0) (1.01705 -0.00189733 0) (1.01712 -0.00188619 0) (1.01718 -0.00187444 0) (1.01724 -0.00186211 0) (1.0173 -0.00184924 0) (1.01737 -0.00183584 0) (1.01743 -0.00182193 0) (1.01749 -0.0018075 0) (1.01755 -0.00179254 0) (1.01761 -0.00177704 0) (1.01768 -0.00176099 0) (1.01774 -0.00174438 0) (1.0178 -0.0017272 0) (1.01786 -0.00170949 0) (1.01793 -0.00169126 0) (1.01799 -0.00167261 0) (1.01805 -0.00165361 0) (1.01811 -0.00163442 0) (1.01818 -0.00161515 0) (1.01824 -0.00159605 0) (1.0183 -0.00157726 0) (1.01837 -0.00155908 0) (1.01843 -0.00154164 0) (1.01849 -0.00152532 0) (1.01156 -0.00241741 0) (1.01166 -0.0024138 0) (1.01175 -0.00241008 0) (1.01184 -0.00240631 0) (1.01194 -0.00240258 0) (1.01203 -0.00239895 0) (1.01212 -0.00239547 0) (1.01221 -0.00239221 0) (1.0123 -0.00238921 0) (1.01239 -0.0023865 0) (1.01248 -0.00238411 0) (1.01256 -0.00238204 0) (1.01265 -0.00238029 0) (1.01274 -0.00237881 0) (1.01282 -0.00237759 0) (1.01291 -0.00237655 0) (1.01299 -0.00237562 0) (1.01307 -0.00237474 0) (1.01316 -0.0023738 0) (1.01324 -0.00237273 0) (1.01332 -0.00237141 0) (1.0134 -0.00236976 0) (1.01348 -0.00236768 0) (1.01356 -0.0023651 0) (1.01364 -0.00236194 0) (1.01372 -0.00235814 0) (1.0138 -0.00235363 0) (1.01388 -0.00234839 0) (1.01395 -0.00234238 0) (1.01403 -0.00233558 0) (1.01411 -0.00232799 0) (1.01418 -0.00231961 0) (1.01426 -0.00231046 0) (1.01434 -0.00230058 0) (1.01441 -0.00229001 0) (1.01449 -0.00227881 0) (1.01456 -0.00226704 0) (1.01463 -0.00225481 0) (1.01471 -0.00224219 0) (1.01478 -0.00222931 0) (1.01486 -0.00221628 0) (1.01493 -0.00220324 0) (1.015 -0.00219033 0) (1.01508 -0.00217768 0) (1.01515 -0.00216543 0) (1.01522 -0.0021537 0) (1.01529 -0.00214262 0) (1.01536 -0.00213229 0) (1.01544 -0.00212279 0) (1.01551 -0.00211417 0) (1.01558 -0.00210648 0) (1.01565 -0.00209972 0) (1.01572 -0.00209388 0) (1.01579 -0.0020889 0) (1.01586 -0.00208471 0) (1.01593 -0.00208125 0) (1.016 -0.00207839 0) (1.01606 -0.00207602 0) (1.01613 -0.00207402 0) (1.0162 -0.00207226 0) (1.01627 -0.00207061 0) (1.01633 -0.00206893 0) (1.0164 -0.00206711 0) (1.01646 -0.00206503 0) (1.01653 -0.00206257 0) (1.01659 -0.00205965 0) (1.01666 -0.00205618 0) (1.01672 -0.00205209 0) (1.01679 -0.00204732 0) (1.01685 -0.00204182 0) (1.01691 -0.00203557 0) (1.01698 -0.00202856 0) (1.01704 -0.00202077 0) (1.0171 -0.00201224 0) (1.01717 -0.00200297 0) (1.01723 -0.00199299 0) (1.01729 -0.00198236 0) (1.01735 -0.0019711 0) (1.01742 -0.00195925 0) (1.01748 -0.00194685 0) (1.01754 -0.00193393 0) (1.0176 -0.00192051 0) (1.01766 -0.00190659 0) (1.01773 -0.00189218 0) (1.01779 -0.00187726 0) (1.01785 -0.00186182 0) (1.01791 -0.00184585 0) (1.01798 -0.00182935 0) (1.01804 -0.0018123 0) (1.0181 -0.00179473 0) (1.01816 -0.00177667 0) (1.01823 -0.0017582 0) (1.01829 -0.00173938 0) (1.01835 -0.00172038 0) (1.01841 -0.0017013 0) (1.01848 -0.00168236 0) (1.01854 -0.00166373 0) (1.01861 -0.00164567 0) (1.01867 -0.00162832 0) (1.01873 -0.00161204 0) (1.01182 -0.00254257 0) (1.01191 -0.00253804 0) (1.012 -0.00253341 0) (1.0121 -0.00252875 0) (1.01219 -0.00252412 0) (1.01228 -0.0025196 0) (1.01237 -0.00251524 0) (1.01246 -0.0025111 0) (1.01255 -0.00250721 0) (1.01264 -0.00250362 0) (1.01273 -0.00250034 0) (1.01281 -0.00249738 0) (1.0129 -0.00249473 0) (1.01299 -0.00249237 0) (1.01307 -0.00249025 0) (1.01316 -0.00248833 0) (1.01324 -0.00248653 0) (1.01333 -0.00248477 0) (1.01341 -0.00248298 0) (1.01349 -0.00248106 0) (1.01357 -0.00247892 0) (1.01365 -0.00247647 0) (1.01373 -0.00247362 0) (1.01381 -0.00247029 0) (1.01389 -0.00246641 0) (1.01397 -0.00246192 0) (1.01405 -0.00245676 0) (1.01413 -0.0024509 0) (1.0142 -0.00244429 0) (1.01428 -0.00243694 0) (1.01436 -0.00242883 0) (1.01443 -0.00241996 0) (1.01451 -0.00241036 0) (1.01458 -0.00240005 0) (1.01466 -0.00238908 0) (1.01473 -0.00237751 0) (1.01481 -0.0023654 0) (1.01488 -0.00235283 0) (1.01496 -0.0023399 0) (1.01503 -0.00232671 0) (1.0151 -0.00231339 0) (1.01518 -0.00230006 0) (1.01525 -0.00228685 0) (1.01532 -0.00227389 0) (1.01539 -0.00226132 0) (1.01547 -0.00224926 0) (1.01554 -0.00223783 0) (1.01561 -0.00222713 0) (1.01568 -0.00221723 0) (1.01575 -0.00220819 0) (1.01582 -0.00220005 0) (1.01589 -0.00219281 0) (1.01596 -0.00218647 0) (1.01603 -0.00218096 0) (1.0161 -0.00217625 0) (1.01617 -0.00217223 0) (1.01624 -0.0021688 0) (1.01631 -0.00216587 0) (1.01638 -0.0021633 0) (1.01644 -0.00216097 0) (1.01651 -0.00215876 0) (1.01658 -0.00215653 0) (1.01664 -0.00215418 0) (1.01671 -0.00215158 0) (1.01677 -0.00214864 0) (1.01684 -0.00214526 0) (1.0169 -0.00214135 0) (1.01697 -0.00213685 0) (1.01703 -0.0021317 0) (1.0171 -0.00212586 0) (1.01716 -0.0021193 0) (1.01722 -0.00211201 0) (1.01729 -0.00210398 0) (1.01735 -0.00209522 0) (1.01741 -0.00208577 0) (1.01747 -0.00207563 0) (1.01754 -0.00206486 0) (1.0176 -0.00205349 0) (1.01766 -0.00204156 0) (1.01772 -0.0020291 0) (1.01778 -0.00201614 0) (1.01785 -0.00200269 0) (1.01791 -0.00198877 0) (1.01797 -0.00197438 0) (1.01803 -0.0019595 0) (1.0181 -0.00194413 0) (1.01816 -0.00192825 0) (1.01822 -0.00191185 0) (1.01828 -0.00189493 0) (1.01835 -0.00187751 0) (1.01841 -0.00185962 0) (1.01847 -0.00184132 0) (1.01853 -0.0018227 0) (1.0186 -0.00180388 0) (1.01866 -0.00178498 0) (1.01872 -0.00176622 0) (1.01879 -0.00174774 0) (1.01885 -0.00172981 0) (1.01891 -0.00171256 0) (1.01898 -0.00169633 0) (1.01208 -0.00266384 0) (1.01217 -0.00265841 0) (1.01226 -0.00265289 0) (1.01236 -0.00264735 0) (1.01245 -0.00264185 0) (1.01254 -0.00263646 0) (1.01263 -0.00263124 0) (1.01272 -0.00262623 0) (1.01281 -0.00262149 0) (1.0129 -0.00261703 0) (1.01299 -0.00261289 0) (1.01307 -0.00260906 0) (1.01316 -0.00260555 0) (1.01325 -0.00260232 0) (1.01333 -0.00259934 0) (1.01342 -0.00259655 0) (1.0135 -0.0025939 0) (1.01358 -0.0025913 0) (1.01367 -0.00258868 0) (1.01375 -0.00258594 0) (1.01383 -0.00258301 0) (1.01391 -0.00257978 0) (1.01399 -0.00257618 0) (1.01407 -0.00257212 0) (1.01415 -0.00256755 0) (1.01423 -0.00256239 0) (1.01431 -0.00255659 0) (1.01438 -0.00255013 0) (1.01446 -0.00254296 0) (1.01454 -0.00253507 0) (1.01461 -0.00252645 0) (1.01469 -0.00251712 0) (1.01476 -0.00250708 0) (1.01484 -0.00249636 0) (1.01491 -0.00248501 0) (1.01499 -0.00247308 0) (1.01506 -0.00246064 0) (1.01514 -0.00244775 0) (1.01521 -0.00243452 0) (1.01528 -0.00242105 0) (1.01536 -0.00240745 0) (1.01543 -0.00239384 0) (1.0155 -0.00238034 0) (1.01558 -0.0023671 0) (1.01565 -0.00235423 0) (1.01572 -0.00234186 0) (1.01579 -0.00233009 0) (1.01586 -0.00231902 0) (1.01594 -0.00230874 0) (1.01601 -0.0022993 0) (1.01608 -0.00229073 0) (1.01615 -0.00228304 0) (1.01622 -0.00227621 0) (1.01629 -0.00227021 0) (1.01636 -0.00226497 0) (1.01643 -0.00226042 0) (1.01649 -0.00225646 0) (1.01656 -0.00225297 0) (1.01663 -0.00224986 0) (1.0167 -0.00224698 0) (1.01676 -0.00224423 0) (1.01683 -0.00224148 0) (1.0169 -0.00223861 0) (1.01696 -0.00223552 0) (1.01703 -0.0022321 0) (1.01709 -0.00222827 0) (1.01716 -0.00222395 0) (1.01722 -0.00221906 0) (1.01729 -0.00221355 0) (1.01735 -0.00220738 0) (1.01741 -0.00220052 0) (1.01748 -0.00219296 0) (1.01754 -0.00218469 0) (1.0176 -0.00217573 0) (1.01766 -0.0021661 0) (1.01773 -0.00215581 0) (1.01779 -0.00214492 0) (1.01785 -0.00213344 0) (1.01791 -0.00212143 0) (1.01798 -0.00210891 0) (1.01804 -0.00209591 0) (1.0181 -0.00208245 0) (1.01816 -0.00206853 0) (1.01822 -0.00205416 0) (1.01829 -0.00203933 0) (1.01835 -0.00202403 0) (1.01841 -0.00200824 0) (1.01847 -0.00199195 0) (1.01854 -0.00197516 0) (1.0186 -0.00195789 0) (1.01866 -0.00194016 0) (1.01872 -0.00192204 0) (1.01879 -0.00190361 0) (1.01885 -0.00188498 0) (1.01891 -0.00186627 0) (1.01898 -0.00184769 0) (1.01904 -0.00182936 0) (1.0191 -0.00181156 0) (1.01917 -0.00179441 0) (1.01923 -0.00177823 0) (1.01235 -0.00278134 0) (1.01244 -0.00277503 0) (1.01253 -0.00276864 0) (1.01263 -0.00276224 0) (1.01272 -0.0027559 0) (1.01281 -0.00274967 0) (1.0129 -0.0027436 0) (1.01299 -0.00273775 0) (1.01308 -0.00273217 0) (1.01317 -0.00272687 0) (1.01325 -0.00272189 0) (1.01334 -0.00271722 0) (1.01343 -0.00271286 0) (1.01351 -0.00270879 0) (1.0136 -0.00270497 0) (1.01368 -0.00270134 0) (1.01377 -0.00269786 0) (1.01385 -0.00269445 0) (1.01393 -0.00269102 0) (1.01401 -0.00268749 0) (1.0141 -0.00268378 0) (1.01418 -0.0026798 0) (1.01426 -0.00267547 0) (1.01434 -0.00267071 0) (1.01441 -0.00266546 0) (1.01449 -0.00265966 0) (1.01457 -0.00265325 0) (1.01465 -0.0026462 0) (1.01472 -0.00263848 0) (1.0148 -0.00263008 0) (1.01488 -0.00262098 0) (1.01495 -0.00261119 0) (1.01503 -0.00260073 0) (1.0151 -0.00258962 0) (1.01518 -0.00257791 0) (1.01525 -0.00256563 0) (1.01533 -0.00255287 0) (1.0154 -0.00253969 0) (1.01547 -0.00252617 0) (1.01555 -0.00251243 0) (1.01562 -0.00249856 0) (1.01569 -0.00248468 0) (1.01577 -0.00247092 0) (1.01584 -0.0024574 0) (1.01591 -0.00244424 0) (1.01598 -0.00243157 0) (1.01606 -0.00241948 0) (1.01613 -0.00240808 0) (1.0162 -0.00239743 0) (1.01627 -0.0023876 0) (1.01634 -0.00237861 0) (1.01641 -0.00237048 0) (1.01648 -0.0023632 0) (1.01655 -0.00235671 0) (1.01662 -0.00235098 0) (1.01669 -0.00234592 0) (1.01676 -0.00234143 0) (1.01682 -0.00233742 0) (1.01689 -0.00233377 0) (1.01696 -0.00233037 0) (1.01703 -0.0023271 0) (1.01709 -0.00232384 0) (1.01716 -0.00232048 0) (1.01722 -0.00231691 0) (1.01729 -0.00231304 0) (1.01735 -0.00230878 0) (1.01742 -0.00230405 0) (1.01748 -0.00229878 0) (1.01755 -0.00229293 0) (1.01761 -0.00228644 0) (1.01767 -0.0022793 0) (1.01774 -0.00227148 0) (1.0178 -0.00226299 0) (1.01786 -0.00225383 0) (1.01792 -0.00224403 0) (1.01799 -0.0022336 0) (1.01805 -0.00222258 0) (1.01811 -0.00221102 0) (1.01817 -0.00219893 0) (1.01824 -0.00218636 0) (1.0183 -0.00217333 0) (1.01836 -0.00215985 0) (1.01842 -0.00214595 0) (1.01849 -0.0021316 0) (1.01855 -0.00211682 0) (1.01861 -0.00210159 0) (1.01867 -0.00208589 0) (1.01873 -0.00206971 0) (1.0188 -0.00205305 0) (1.01886 -0.00203593 0) (1.01892 -0.00201837 0) (1.01899 -0.00200043 0) (1.01905 -0.00198218 0) (1.01911 -0.00196375 0) (1.01918 -0.00194523 0) (1.01924 -0.00192682 0) (1.0193 -0.00190865 0) (1.01937 -0.00189098 0) (1.01943 -0.00187393 0) (1.01949 -0.00185781 0) (1.01262 -0.00289519 0) (1.01272 -0.00288802 0) (1.01281 -0.00288079 0) (1.0129 -0.00287355 0) (1.01299 -0.00286638 0) (1.01308 -0.00285932 0) (1.01318 -0.00285244 0) (1.01326 -0.00284577 0) (1.01335 -0.00283937 0) (1.01344 -0.00283325 0) (1.01353 -0.00282745 0) (1.01362 -0.00282196 0) (1.0137 -0.00281678 0) (1.01379 -0.00281189 0) (1.01387 -0.00280725 0) (1.01396 -0.00280282 0) (1.01404 -0.00279853 0) (1.01412 -0.00279432 0) (1.01421 -0.00279011 0) (1.01429 -0.00278581 0) (1.01437 -0.00278135 0) (1.01445 -0.00277664 0) (1.01453 -0.0027716 0) (1.01461 -0.00276617 0) (1.01469 -0.00276026 0) (1.01477 -0.00275384 0) (1.01484 -0.00274684 0) (1.01492 -0.00273923 0) (1.015 -0.00273098 0) (1.01507 -0.00272207 0) (1.01515 -0.00271251 0) (1.01523 -0.00270228 0) (1.0153 -0.00269142 0) (1.01538 -0.00267993 0) (1.01545 -0.00266787 0) (1.01552 -0.00265527 0) (1.0156 -0.0026422 0) (1.01567 -0.00262873 0) (1.01575 -0.00261494 0) (1.01582 -0.00260094 0) (1.01589 -0.00258681 0) (1.01596 -0.00257269 0) (1.01604 -0.00255867 0) (1.01611 -0.00254489 0) (1.01618 -0.00253146 0) (1.01625 -0.0025185 0) (1.01633 -0.00250611 0) (1.0164 -0.00249438 0) (1.01647 -0.00248338 0) (1.01654 -0.00247318 0) (1.01661 -0.00246379 0) (1.01668 -0.00245524 0) (1.01675 -0.00244751 0) (1.01682 -0.00244057 0) (1.01689 -0.00243436 0) (1.01696 -0.0024288 0) (1.01703 -0.00242381 0) (1.01709 -0.00241929 0) (1.01716 -0.00241513 0) (1.01723 -0.00241122 0) (1.0173 -0.00240745 0) (1.01736 -0.0024037 0) (1.01743 -0.00239986 0) (1.01749 -0.00239583 0) (1.01756 -0.00239153 0) (1.01762 -0.00238685 0) (1.01769 -0.00238173 0) (1.01775 -0.0023761 0) (1.01782 -0.00236991 0) (1.01788 -0.00236313 0) (1.01794 -0.00235571 0) (1.01801 -0.00234765 0) (1.01807 -0.00233894 0) (1.01813 -0.00232959 0) (1.01819 -0.00231962 0) (1.01826 -0.00230906 0) (1.01832 -0.00229794 0) (1.01838 -0.00228628 0) (1.01844 -0.00227413 0) (1.01851 -0.00226151 0) (1.01857 -0.00224845 0) (1.01863 -0.00223497 0) (1.01869 -0.00222107 0) (1.01876 -0.00220676 0) (1.01882 -0.00219203 0) (1.01888 -0.00217687 0) (1.01894 -0.00216126 0) (1.019 -0.00214519 0) (1.01907 -0.00212867 0) (1.01913 -0.0021117 0) (1.01919 -0.00209431 0) (1.01926 -0.00207655 0) (1.01932 -0.00205848 0) (1.01938 -0.00204024 0) (1.01945 -0.00202191 0) (1.01951 -0.00200367 0) (1.01957 -0.00198567 0) (1.01964 -0.00196813 0) (1.0197 -0.00195118 0) (1.01976 -0.00193512 0) (1.01291 -0.00300551 0) (1.013 -0.00299751 0) (1.0131 -0.00298945 0) (1.01319 -0.0029814 0) (1.01328 -0.00297341 0) (1.01337 -0.00296555 0) (1.01346 -0.00295787 0) (1.01355 -0.00295041 0) (1.01364 -0.00294321 0) (1.01373 -0.0029363 0) (1.01381 -0.0029297 0) (1.0139 -0.00292341 0) (1.01399 -0.00291744 0) (1.01407 -0.00291175 0) (1.01416 -0.00290632 0) (1.01424 -0.0029011 0) (1.01433 -0.00289603 0) (1.01441 -0.00289104 0) (1.01449 -0.00288607 0) (1.01457 -0.00288103 0) (1.01465 -0.00287584 0) (1.01473 -0.00287042 0) (1.01481 -0.0028647 0) (1.01489 -0.0028586 0) (1.01497 -0.00285207 0) (1.01505 -0.00284504 0) (1.01513 -0.00283746 0) (1.0152 -0.00282931 0) (1.01528 -0.00282055 0) (1.01536 -0.00281116 0) (1.01543 -0.00280115 0) (1.01551 -0.0027905 0) (1.01558 -0.00277925 0) (1.01566 -0.0027674 0) (1.01573 -0.002755 0) (1.01581 -0.00274209 0) (1.01588 -0.00272873 0) (1.01595 -0.00271498 0) (1.01603 -0.00270094 0) (1.0161 -0.00268668 0) (1.01617 -0.00267232 0) (1.01625 -0.00265795 0) (1.01632 -0.00264369 0) (1.01639 -0.00262966 0) (1.01646 -0.00261598 0) (1.01653 -0.00260274 0) (1.01661 -0.00259006 0) (1.01668 -0.00257802 0) (1.01675 -0.00256669 0) (1.01682 -0.00255612 0) (1.01689 -0.00254636 0) (1.01696 -0.0025374 0) (1.01703 -0.00252925 0) (1.0171 -0.00252186 0) (1.01717 -0.00251518 0) (1.01724 -0.00250915 0) (1.01731 -0.00250368 0) (1.01737 -0.00249867 0) (1.01744 -0.00249402 0) (1.01751 -0.00248962 0) (1.01758 -0.00248536 0) (1.01764 -0.00248113 0) (1.01771 -0.00247684 0) (1.01777 -0.00247237 0) (1.01784 -0.00246764 0) (1.0179 -0.00246256 0) (1.01797 -0.00245707 0) (1.01803 -0.00245109 0) (1.0181 -0.00244458 0) (1.01816 -0.0024375 0) (1.01822 -0.00242982 0) (1.01829 -0.00242152 0) (1.01835 -0.00241261 0) (1.01841 -0.00240308 0) (1.01847 -0.00239296 0) (1.01854 -0.00238227 0) (1.0186 -0.00237104 0) (1.01866 -0.0023593 0) (1.01872 -0.00234709 0) (1.01879 -0.00233443 0) (1.01885 -0.00232134 0) (1.01891 -0.00230786 0) (1.01897 -0.00229398 0) (1.01903 -0.0022797 0) (1.0191 -0.00226502 0) (1.01916 -0.00224993 0) (1.01922 -0.00223441 0) (1.01928 -0.00221846 0) (1.01935 -0.00220207 0) (1.01941 -0.00218525 0) (1.01947 -0.00216803 0) (1.01954 -0.00215044 0) (1.0196 -0.00213257 0) (1.01966 -0.00211451 0) (1.01973 -0.00209637 0) (1.01979 -0.00207831 0) (1.01985 -0.00206047 0) (1.01992 -0.00204307 0) (1.01998 -0.00202622 0) (1.02004 -0.00201023 0) (1.0132 -0.00311242 0) (1.0133 -0.00310359 0) (1.01339 -0.00309473 0) (1.01348 -0.00308588 0) (1.01357 -0.00307711 0) (1.01366 -0.00306847 0) (1.01375 -0.00306001 0) (1.01384 -0.00305177 0) (1.01393 -0.0030438 0) (1.01402 -0.00303611 0) (1.01411 -0.00302874 0) (1.01419 -0.00302168 0) (1.01428 -0.00301493 0) (1.01437 -0.00300847 0) (1.01445 -0.00300227 0) (1.01453 -0.00299628 0) (1.01462 -0.00299045 0) (1.0147 -0.00298472 0) (1.01478 -0.00297901 0) (1.01486 -0.00297324 0) (1.01494 -0.00296735 0) (1.01502 -0.00296124 0) (1.0151 -0.00295486 0) (1.01518 -0.00294812 0) (1.01526 -0.00294098 0) (1.01534 -0.00293336 0) (1.01542 -0.00292523 0) (1.01549 -0.00291655 0) (1.01557 -0.00290729 0) (1.01565 -0.00289744 0) (1.01572 -0.00288699 0) (1.0158 -0.00287595 0) (1.01587 -0.00286431 0) (1.01595 -0.00285212 0) (1.01602 -0.0028394 0) (1.0161 -0.00282619 0) (1.01617 -0.00281255 0) (1.01624 -0.00279854 0) (1.01632 -0.00278425 0) (1.01639 -0.00276976 0) (1.01646 -0.00275516 0) (1.01653 -0.00274057 0) (1.01661 -0.00272608 0) (1.01668 -0.00271181 0) (1.01675 -0.00269788 0) (1.01682 -0.00268438 0) (1.0169 -0.00267142 0) (1.01697 -0.00265908 0) (1.01704 -0.00264743 0) (1.01711 -0.00263652 0) (1.01718 -0.00262639 0) (1.01725 -0.00261705 0) (1.01732 -0.00260849 0) (1.01739 -0.00260067 0) (1.01746 -0.00259355 0) (1.01753 -0.00258706 0) (1.01759 -0.00258112 0) (1.01766 -0.00257563 0) (1.01773 -0.0025705 0) (1.0178 -0.00256563 0) (1.01786 -0.00256091 0) (1.01793 -0.00255622 0) (1.018 -0.00255148 0) (1.01806 -0.00254659 0) (1.01813 -0.00254145 0) (1.01819 -0.00253599 0) (1.01826 -0.00253013 0) (1.01832 -0.00252381 0) (1.01838 -0.002517 0) (1.01845 -0.00250963 0) (1.01851 -0.0025017 0) (1.01857 -0.00249318 0) (1.01864 -0.00248406 0) (1.0187 -0.00247437 0) (1.01876 -0.0024641 0) (1.01882 -0.00245329 0) (1.01889 -0.00244196 0) (1.01895 -0.00243014 0) (1.01901 -0.00241787 0) (1.01907 -0.00240517 0) (1.01914 -0.00239207 0) (1.0192 -0.00237858 0) (1.01926 -0.00236472 0) (1.01932 -0.00235048 0) (1.01938 -0.00233586 0) (1.01945 -0.00232084 0) (1.01951 -0.00230542 0) (1.01957 -0.00228958 0) (1.01963 -0.00227332 0) (1.0197 -0.00225665 0) (1.01976 -0.00223959 0) (1.01982 -0.00222219 0) (1.01989 -0.0022045 0) (1.01995 -0.00218663 0) (1.02001 -0.00216867 0) (1.02008 -0.00215079 0) (1.02014 -0.00213311 0) (1.02021 -0.00211585 0) (1.02027 -0.00209911 0) (1.02033 -0.00208319 0) (1.01351 -0.00321602 0) (1.0136 -0.00320639 0) (1.01369 -0.00319674 0) (1.01379 -0.00318712 0) (1.01388 -0.00317759 0) (1.01397 -0.00316818 0) (1.01406 -0.00315897 0) (1.01415 -0.00314998 0) (1.01424 -0.00314125 0) (1.01432 -0.00313281 0) (1.01441 -0.00312469 0) (1.0145 -0.00311687 0) (1.01458 -0.00310937 0) (1.01467 -0.00310216 0) (1.01475 -0.00309521 0) (1.01484 -0.00308848 0) (1.01492 -0.00308192 0) (1.015 -0.00307545 0) (1.01508 -0.00306903 0) (1.01517 -0.00306256 0) (1.01525 -0.00305598 0) (1.01533 -0.00304921 0) (1.01541 -0.00304218 0) (1.01548 -0.00303483 0) (1.01556 -0.00302709 0) (1.01564 -0.00301891 0) (1.01572 -0.00301024 0) (1.01579 -0.00300105 0) (1.01587 -0.00299132 0) (1.01595 -0.00298102 0) (1.01602 -0.00297015 0) (1.0161 -0.00295871 0) (1.01617 -0.00294672 0) (1.01625 -0.00293419 0) (1.01632 -0.00292115 0) (1.01639 -0.00290766 0) (1.01647 -0.00289375 0) (1.01654 -0.0028795 0) (1.01662 -0.00286497 0) (1.01669 -0.00285025 0) (1.01676 -0.00283543 0) (1.01683 -0.00282062 0) (1.01691 -0.00280591 0) (1.01698 -0.00279142 0) (1.01705 -0.00277725 0) (1.01712 -0.00276351 0) (1.01719 -0.00275028 0) (1.01727 -0.00273765 0) (1.01734 -0.0027257 0) (1.01741 -0.00271446 0) (1.01748 -0.00270398 0) (1.01755 -0.00269427 0) (1.01762 -0.00268531 0) (1.01769 -0.00267708 0) (1.01776 -0.00266953 0) (1.01782 -0.00266259 0) (1.01789 -0.0026562 0) (1.01796 -0.00265026 0) (1.01803 -0.00264467 0) (1.0181 -0.00263934 0) (1.01816 -0.00263416 0) (1.01823 -0.00262904 0) (1.01829 -0.00262387 0) (1.01836 -0.00261856 0) (1.01842 -0.00261303 0) (1.01849 -0.00260719 0) (1.01855 -0.00260099 0) (1.01862 -0.00259435 0) (1.01868 -0.00258723 0) (1.01874 -0.0025796 0) (1.01881 -0.00257142 0) (1.01887 -0.00256268 0) (1.01893 -0.00255338 0) (1.019 -0.00254352 0) (1.01906 -0.00253311 0) (1.01912 -0.00252218 0) (1.01918 -0.00251076 0) (1.01925 -0.00249887 0) (1.01931 -0.00248655 0) (1.01937 -0.00247382 0) (1.01943 -0.0024607 0) (1.0195 -0.00244721 0) (1.01956 -0.00243337 0) (1.01962 -0.00241917 0) (1.01968 -0.0024046 0) (1.01974 -0.00238966 0) (1.01981 -0.00237433 0) (1.01987 -0.00235861 0) (1.01993 -0.00234248 0) (1.02 -0.00232596 0) (1.02006 -0.00230906 0) (1.02012 -0.00229184 0) (1.02018 -0.00227433 0) (1.02025 -0.00225665 0) (1.02031 -0.00223888 0) (1.02038 -0.00222118 0) (1.02044 -0.00220366 0) (1.0205 -0.00218654 0) (1.02057 -0.00216991 0) (1.02063 -0.00215406 0) (1.01382 -0.00331641 0) (1.01391 -0.00330601 0) (1.01401 -0.0032956 0) (1.0141 -0.00328522 0) (1.01419 -0.00327494 0) (1.01428 -0.0032648 0) (1.01437 -0.00325485 0) (1.01446 -0.00324513 0) (1.01455 -0.00323567 0) (1.01464 -0.0032265 0) (1.01472 -0.00321764 0) (1.01481 -0.0032091 0) (1.0149 -0.00320087 0) (1.01498 -0.00319293 0) (1.01506 -0.00318525 0) (1.01515 -0.0031778 0) (1.01523 -0.00317052 0) (1.01531 -0.00316335 0) (1.0154 -0.00315623 0) (1.01548 -0.00314908 0) (1.01556 -0.00314184 0) (1.01564 -0.00313442 0) (1.01572 -0.00312677 0) (1.01579 -0.00311882 0) (1.01587 -0.0031105 0) (1.01595 -0.00310177 0) (1.01603 -0.00309258 0) (1.0161 -0.00308291 0) (1.01618 -0.00307271 0) (1.01626 -0.00306198 0) (1.01633 -0.00305071 0) (1.01641 -0.00303889 0) (1.01648 -0.00302655 0) (1.01656 -0.0030137 0) (1.01663 -0.00300037 0) (1.0167 -0.00298659 0) (1.01678 -0.00297243 0) (1.01685 -0.00295794 0) (1.01692 -0.00294318 0) (1.017 -0.00292825 0) (1.01707 -0.00291322 0) (1.01714 -0.0028982 0) (1.01721 -0.00288329 0) (1.01729 -0.00286858 0) (1.01736 -0.00285419 0) (1.01743 -0.0028402 0) (1.0175 -0.00282672 0) (1.01757 -0.00281382 0) (1.01764 -0.00280157 0) (1.01772 -0.00279002 0) (1.01779 -0.0027792 0) (1.01786 -0.00276913 0) (1.01793 -0.00275979 0) (1.01799 -0.00275116 0) (1.01806 -0.0027432 0) (1.01813 -0.00273584 0) (1.0182 -0.00272901 0) (1.01827 -0.00272262 0) (1.01834 -0.00271659 0) (1.0184 -0.00271082 0) (1.01847 -0.00270521 0) (1.01854 -0.00269966 0) (1.0186 -0.00269407 0) (1.01867 -0.00268836 0) (1.01873 -0.00268245 0) (1.0188 -0.00267625 0) (1.01886 -0.00266971 0) (1.01893 -0.00266276 0) (1.01899 -0.00265536 0) (1.01905 -0.00264746 0) (1.01912 -0.00263905 0) (1.01918 -0.0026301 0) (1.01924 -0.00262061 0) (1.0193 -0.0026106 0) (1.01937 -0.00260006 0) (1.01943 -0.00258902 0) (1.01949 -0.00257751 0) (1.01955 -0.00256555 0) (1.01962 -0.00255318 0) (1.01968 -0.00254042 0) (1.01974 -0.00252729 0) (1.0198 -0.00251381 0) (1.01987 -0.00249998 0) (1.01993 -0.00248582 0) (1.01999 -0.00247131 0) (1.02005 -0.00245645 0) (1.02012 -0.00244121 0) (1.02018 -0.0024256 0) (1.02024 -0.00240961 0) (1.0203 -0.00239324 0) (1.02037 -0.0023765 0) (1.02043 -0.00235945 0) (1.02049 -0.00234213 0) (1.02056 -0.00232464 0) (1.02062 -0.00230705 0) (1.02068 -0.00228953 0) (1.02075 -0.00227217 0) (1.02081 -0.00225518 0) (1.02088 -0.00223867 0) (1.02094 -0.00222289 0) (1.01414 -0.00341371 0) (1.01424 -0.00340255 0) (1.01433 -0.0033914 0) (1.01442 -0.00338029 0) (1.01451 -0.00336928 0) (1.0146 -0.00335842 0) (1.01469 -0.00334776 0) (1.01478 -0.00333732 0) (1.01487 -0.00332715 0) (1.01496 -0.00331728 0) (1.01504 -0.00330771 0) (1.01513 -0.00329846 0) (1.01522 -0.00328952 0) (1.0153 -0.00328087 0) (1.01539 -0.00327249 0) (1.01547 -0.00326434 0) (1.01555 -0.00325636 0) (1.01564 -0.00324851 0) (1.01572 -0.00324071 0) (1.0158 -0.0032329 0) (1.01588 -0.00322502 0) (1.01596 -0.00321698 0) (1.01604 -0.00320872 0) (1.01612 -0.00320019 0) (1.01619 -0.00319131 0) (1.01627 -0.00318205 0) (1.01635 -0.00317236 0) (1.01642 -0.00316221 0) (1.0165 -0.00315156 0) (1.01658 -0.00314042 0) (1.01665 -0.00312875 0) (1.01673 -0.00311658 0) (1.0168 -0.0031039 0) (1.01688 -0.00309073 0) (1.01695 -0.00307712 0) (1.01702 -0.00306308 0) (1.0171 -0.00304867 0) (1.01717 -0.00303395 0) (1.01724 -0.00301898 0) (1.01732 -0.00300384 0) (1.01739 -0.00298861 0) (1.01746 -0.0029734 0) (1.01753 -0.00295828 0) (1.01761 -0.00294337 0) (1.01768 -0.00292876 0) (1.01775 -0.00291455 0) (1.01782 -0.00290083 0) (1.01789 -0.00288766 0) (1.01796 -0.00287513 0) (1.01803 -0.00286328 0) (1.0181 -0.00285214 0) (1.01817 -0.00284171 0) (1.01824 -0.00283201 0) (1.01831 -0.002823 0) (1.01838 -0.00281464 0) (1.01845 -0.00280686 0) (1.01852 -0.00279961 0) (1.01859 -0.0027928 0) (1.01865 -0.00278635 0) (1.01872 -0.00278015 0) (1.01879 -0.00277411 0) (1.01885 -0.00276815 0) (1.01892 -0.00276216 0) (1.01899 -0.00275606 0) (1.01905 -0.00274978 0) (1.01911 -0.00274324 0) (1.01918 -0.00273637 0) (1.01924 -0.00272912 0) (1.01931 -0.00272143 0) (1.01937 -0.00271329 0) (1.01943 -0.00270465 0) (1.0195 -0.0026955 0) (1.01956 -0.00268584 0) (1.01962 -0.00267567 0) (1.01969 -0.002665 0) (1.01975 -0.00265386 0) (1.01981 -0.00264227 0) (1.01987 -0.00263025 0) (1.01993 -0.00261783 0) (1.02 -0.00260504 0) (1.02006 -0.0025919 0) (1.02012 -0.00257842 0) (1.02018 -0.00256463 0) (1.02025 -0.0025505 0) (1.02031 -0.00253605 0) (1.02037 -0.00252126 0) (1.02043 -0.00250612 0) (1.0205 -0.00249063 0) (1.02056 -0.00247476 0) (1.02062 -0.00245854 0) (1.02068 -0.00244197 0) (1.02075 -0.00242509 0) (1.02081 -0.00240795 0) (1.02087 -0.00239064 0) (1.02094 -0.00237324 0) (1.021 -0.00235589 0) (1.02107 -0.0023387 0) (1.02113 -0.00232185 0) (1.02119 -0.00230545 0) (1.02126 -0.00228975 0) (1.01448 -0.00350801 0) (1.01457 -0.00349612 0) (1.01466 -0.00348424 0) (1.01475 -0.00347242 0) (1.01485 -0.00346071 0) (1.01494 -0.00344915 0) (1.01503 -0.00343779 0) (1.01511 -0.00342667 0) (1.0152 -0.00341581 0) (1.01529 -0.00340524 0) (1.01538 -0.00339499 0) (1.01546 -0.00338504 0) (1.01555 -0.00337542 0) (1.01563 -0.00336608 0) (1.01572 -0.00335702 0) (1.0158 -0.00334819 0) (1.01588 -0.00333954 0) (1.01597 -0.00333102 0) (1.01605 -0.00332257 0) (1.01613 -0.00331412 0) (1.01621 -0.00330561 0) (1.01629 -0.00329697 0) (1.01637 -0.00328813 0) (1.01645 -0.00327903 0) (1.01652 -0.00326961 0) (1.0166 -0.00325984 0) (1.01668 -0.00324966 0) (1.01676 -0.00323905 0) (1.01683 -0.00322797 0) (1.01691 -0.00321642 0) (1.01698 -0.00320438 0) (1.01706 -0.00319185 0) (1.01713 -0.00317885 0) (1.01721 -0.00316539 0) (1.01728 -0.00315149 0) (1.01735 -0.0031372 0) (1.01743 -0.00312256 0) (1.0175 -0.00310762 0) (1.01757 -0.00309244 0) (1.01765 -0.0030771 0) (1.01772 -0.00306169 0) (1.01779 -0.00304628 0) (1.01786 -0.00303098 0) (1.01794 -0.00301587 0) (1.01801 -0.00300106 0) (1.01808 -0.00298663 0) (1.01815 -0.00297267 0) (1.01822 -0.00295926 0) (1.01829 -0.00294646 0) (1.01836 -0.00293431 0) (1.01843 -0.00292286 0) (1.0185 -0.0029121 0) (1.01857 -0.00290205 0) (1.01864 -0.00289266 0) (1.01871 -0.00288392 0) (1.01878 -0.00287575 0) (1.01885 -0.00286809 0) (1.01892 -0.00286087 0) (1.01898 -0.002854 0) (1.01905 -0.00284738 0) (1.01912 -0.00284094 0) (1.01918 -0.00283457 0) (1.01925 -0.0028282 0) (1.01931 -0.00282173 0) (1.01938 -0.00281509 0) (1.01944 -0.00280821 0) (1.01951 -0.00280103 0) (1.01957 -0.00279348 0) (1.01964 -0.00278553 0) (1.0197 -0.00277714 0) (1.01976 -0.00276828 0) (1.01983 -0.00275894 0) (1.01989 -0.00274911 0) (1.01995 -0.0027388 0) (1.02001 -0.00272801 0) (1.02008 -0.00271677 0) (1.02014 -0.0027051 0) (1.0202 -0.00269302 0) (1.02026 -0.00268056 0) (1.02033 -0.00266774 0) (1.02039 -0.00265459 0) (1.02045 -0.00264113 0) (1.02051 -0.00262735 0) (1.02057 -0.00261327 0) (1.02064 -0.00259888 0) (1.0207 -0.00258417 0) (1.02076 -0.00256912 0) (1.02082 -0.00255374 0) (1.02089 -0.002538 0) (1.02095 -0.00252192 0) (1.02101 -0.00250551 0) (1.02108 -0.00248881 0) (1.02114 -0.00247185 0) (1.0212 -0.00245472 0) (1.02127 -0.00243751 0) (1.02133 -0.00242033 0) (1.0214 -0.0024033 0) (1.02146 -0.00238659 0) (1.02152 -0.00237031 0) (1.02159 -0.00235469 0) (1.01482 -0.00359942 0) (1.01491 -0.00358681 0) (1.01501 -0.00357423 0) (1.0151 -0.00356172 0) (1.01519 -0.00354932 0) (1.01528 -0.00353709 0) (1.01537 -0.00352505 0) (1.01546 -0.00351326 0) (1.01555 -0.00350173 0) (1.01563 -0.00349049 0) (1.01572 -0.00347957 0) (1.01581 -0.00346896 0) (1.01589 -0.00345866 0) (1.01598 -0.00344866 0) (1.01606 -0.00343894 0) (1.01614 -0.00342944 0) (1.01623 -0.00342014 0) (1.01631 -0.00341098 0) (1.01639 -0.0034019 0) (1.01647 -0.00339283 0) (1.01655 -0.00338371 0) (1.01663 -0.00337448 0) (1.01671 -0.00336507 0) (1.01679 -0.00335543 0) (1.01687 -0.00334549 0) (1.01694 -0.00333522 0) (1.01702 -0.00332457 0) (1.0171 -0.00331351 0) (1.01717 -0.00330202 0) (1.01725 -0.00329007 0) (1.01732 -0.00327767 0) (1.0174 -0.0032648 0) (1.01747 -0.00325149 0) (1.01755 -0.00323774 0) (1.01762 -0.00322358 0) (1.01769 -0.00320904 0) (1.01777 -0.00319417 0) (1.01784 -0.00317902 0) (1.01791 -0.00316365 0) (1.01799 -0.00314812 0) (1.01806 -0.00313253 0) (1.01813 -0.00311694 0) (1.0182 -0.00310146 0) (1.01828 -0.00308616 0) (1.01835 -0.00307115 0) (1.01842 -0.00305652 0) (1.01849 -0.00304234 0) (1.01856 -0.00302868 0) (1.01863 -0.00301562 0) (1.0187 -0.0030032 0) (1.01877 -0.00299144 0) (1.01884 -0.00298037 0) (1.01891 -0.00296997 0) (1.01898 -0.00296023 0) (1.01905 -0.00295111 0) (1.01912 -0.00294256 0) (1.01919 -0.00293451 0) (1.01926 -0.00292689 0) (1.01932 -0.00291961 0) (1.01939 -0.0029126 0) (1.01946 -0.00290576 0) (1.01952 -0.00289901 0) (1.01959 -0.00289226 0) (1.01965 -0.00288543 0) (1.01972 -0.00287845 0) (1.01978 -0.00287124 0) (1.01985 -0.00286375 0) (1.01991 -0.00285593 0) (1.01998 -0.00284772 0) (1.02004 -0.00283909 0) (1.0201 -0.00283002 0) (1.02017 -0.00282049 0) (1.02023 -0.0028105 0) (1.02029 -0.00280005 0) (1.02035 -0.00278915 0) (1.02042 -0.00277781 0) (1.02048 -0.00276606 0) (1.02054 -0.00275392 0) (1.0206 -0.00274142 0) (1.02067 -0.00272858 0) (1.02073 -0.00271543 0) (1.02079 -0.00270197 0) (1.02085 -0.00268823 0) (1.02092 -0.00267419 0) (1.02098 -0.00265985 0) (1.02104 -0.00264522 0) (1.0211 -0.00263027 0) (1.02117 -0.00261499 0) (1.02123 -0.00259938 0) (1.02129 -0.00258345 0) (1.02135 -0.00256719 0) (1.02142 -0.00255066 0) (1.02148 -0.00253388 0) (1.02154 -0.00251694 0) (1.02161 -0.0024999 0) (1.02167 -0.0024829 0) (1.02174 -0.00246603 0) (1.0218 -0.00244947 0) (1.02186 -0.0024333 0) (1.02193 -0.00241776 0) (1.01518 -0.00368803 0) (1.01527 -0.00367473 0) (1.01536 -0.00366146 0) (1.01545 -0.00364828 0) (1.01554 -0.00363522 0) (1.01563 -0.00362232 0) (1.01572 -0.00360963 0) (1.01581 -0.00359718 0) (1.0159 -0.00358501 0) (1.01599 -0.00357312 0) (1.01607 -0.00356155 0) (1.01616 -0.00355029 0) (1.01625 -0.00353935 0) (1.01633 -0.0035287 0) (1.01642 -0.00351833 0) (1.0165 -0.0035082 0) (1.01658 -0.00349827 0) (1.01666 -0.00348848 0) (1.01674 -0.00347878 0) (1.01683 -0.00346911 0) (1.01691 -0.00345941 0) (1.01699 -0.0034496 0) (1.01706 -0.00343965 0) (1.01714 -0.00342947 0) (1.01722 -0.00341903 0) (1.0173 -0.00340828 0) (1.01737 -0.00339717 0) (1.01745 -0.00338568 0) (1.01753 -0.00337378 0) (1.0176 -0.00336146 0) (1.01768 -0.0033487 0) (1.01775 -0.00333551 0) (1.01783 -0.0033219 0) (1.0179 -0.00330787 0) (1.01797 -0.00329345 0) (1.01805 -0.00327868 0) (1.01812 -0.00326359 0) (1.01819 -0.00324824 0) (1.01827 -0.00323268 0) (1.01834 -0.00321698 0) (1.01841 -0.00320121 0) (1.01848 -0.00318545 0) (1.01856 -0.00316979 0) (1.01863 -0.00315432 0) (1.0187 -0.00313912 0) (1.01877 -0.00312429 0) (1.01884 -0.0031099 0) (1.01891 -0.00309601 0) (1.01898 -0.0030827 0) (1.01906 -0.00307001 0) (1.01913 -0.00305796 0) (1.0192 -0.00304658 0) (1.01927 -0.00303586 0) (1.01933 -0.00302577 0) (1.0194 -0.00301629 0) (1.01947 -0.00300737 0) (1.01954 -0.00299894 0) (1.01961 -0.00299093 0) (1.01968 -0.00298327 0) (1.01974 -0.00297587 0) (1.01981 -0.00296865 0) (1.01988 -0.00296153 0) (1.01994 -0.00295441 0) (1.02001 -0.00294723 0) (1.02007 -0.00293992 0) (1.02014 -0.0029324 0) (1.0202 -0.00292461 0) (1.02026 -0.00291651 0) (1.02033 -0.00290805 0) (1.02039 -0.00289919 0) (1.02045 -0.00288992 0) (1.02052 -0.00288021 0) (1.02058 -0.00287007 0) (1.02064 -0.00285948 0) (1.02071 -0.00284846 0) (1.02077 -0.00283703 0) (1.02083 -0.00282521 0) (1.02089 -0.00281302 0) (1.02096 -0.00280048 0) (1.02102 -0.00278763 0) (1.02108 -0.00277447 0) (1.02114 -0.00276102 0) (1.02121 -0.0027473 0) (1.02127 -0.0027333 0) (1.02133 -0.00271903 0) (1.02139 -0.00270447 0) (1.02145 -0.00268961 0) (1.02152 -0.00267444 0) (1.02158 -0.00265896 0) (1.02164 -0.00264317 0) (1.02171 -0.00262707 0) (1.02177 -0.00261071 0) (1.02183 -0.00259411 0) (1.0219 -0.00257734 0) (1.02196 -0.00256049 0) (1.02202 -0.00254366 0) (1.02209 -0.00252695 0) (1.02215 -0.00251053 0) (1.02222 -0.00249448 0) (1.02228 -0.00247903 0) (1.01554 -0.00377393 0) (1.01564 -0.00375995 0) (1.01573 -0.00374603 0) (1.01582 -0.00373219 0) (1.01591 -0.00371848 0) (1.016 -0.00370495 0) (1.01609 -0.00369163 0) (1.01618 -0.00367855 0) (1.01627 -0.00366574 0) (1.01635 -0.00365323 0) (1.01644 -0.00364102 0) (1.01653 -0.00362914 0) (1.01661 -0.00361756 0) (1.0167 -0.00360629 0) (1.01678 -0.0035953 0) (1.01686 -0.00358455 0) (1.01695 -0.003574 0) (1.01703 -0.0035636 0) (1.01711 -0.00355331 0) (1.01719 -0.00354305 0) (1.01727 -0.00353278 0) (1.01735 -0.00352243 0) (1.01743 -0.00351194 0) (1.01751 -0.00350125 0) (1.01759 -0.00349032 0) (1.01766 -0.0034791 0) (1.01774 -0.00346755 0) (1.01782 -0.00345564 0) (1.01789 -0.00344335 0) (1.01797 -0.00343066 0) (1.01804 -0.00341756 0) (1.01812 -0.00340406 0) (1.01819 -0.00339015 0) (1.01826 -0.00337586 0) (1.01834 -0.00336119 0) (1.01841 -0.0033462 0) (1.01849 -0.0033309 0) (1.01856 -0.00331535 0) (1.01863 -0.00329961 0) (1.0187 -0.00328374 0) (1.01878 -0.0032678 0) (1.01885 -0.00325188 0) (1.01892 -0.00323606 0) (1.01899 -0.00322042 0) (1.01906 -0.00320504 0) (1.01914 -0.00319002 0) (1.01921 -0.00317542 0) (1.01928 -0.00316132 0) (1.01935 -0.00314776 0) (1.01942 -0.00313481 0) (1.01949 -0.00312249 0) (1.01956 -0.00311081 0) (1.01963 -0.00309977 0) (1.0197 -0.00308935 0) (1.01977 -0.00307953 0) (1.01984 -0.00307025 0) (1.0199 -0.00306145 0) (1.01997 -0.00305307 0) (1.02004 -0.00304503 0) (1.02011 -0.00303726 0) (1.02017 -0.00302967 0) (1.02024 -0.00302218 0) (1.02031 -0.00301472 0) (1.02037 -0.0030072 0) (1.02044 -0.00299956 0) (1.0205 -0.00299173 0) (1.02056 -0.00298366 0) (1.02063 -0.00297529 0) (1.02069 -0.00296659 0) (1.02076 -0.00295751 0) (1.02082 -0.00294804 0) (1.02088 -0.00293816 0) (1.02095 -0.00292786 0) (1.02101 -0.00291715 0) (1.02107 -0.00290602 0) (1.02113 -0.00289451 0) (1.0212 -0.00288261 0) (1.02126 -0.00287037 0) (1.02132 -0.0028578 0) (1.02138 -0.00284492 0) (1.02145 -0.00283176 0) (1.02151 -0.00281833 0) (1.02157 -0.00280464 0) (1.02163 -0.00279068 0) (1.02169 -0.00277647 0) (1.02176 -0.00276198 0) (1.02182 -0.00274721 0) (1.02188 -0.00273215 0) (1.02195 -0.0027168 0) (1.02201 -0.00270114 0) (1.02207 -0.0026852 0) (1.02213 -0.002669 0) (1.0222 -0.00265257 0) (1.02226 -0.00263599 0) (1.02233 -0.00261931 0) (1.02239 -0.00260266 0) (1.02245 -0.00258611 0) (1.02252 -0.00256983 0) (1.02258 -0.0025539 0) (1.02265 -0.00253854 0) (1.01592 -0.00385721 0) (1.01602 -0.00384259 0) (1.01611 -0.00382802 0) (1.0162 -0.00381355 0) (1.01629 -0.00379922 0) (1.01638 -0.00378506 0) (1.01647 -0.00377112 0) (1.01656 -0.00375743 0) (1.01665 -0.00374401 0) (1.01673 -0.00373089 0) (1.01682 -0.00371807 0) (1.01691 -0.00370558 0) (1.01699 -0.0036934 0) (1.01708 -0.00368152 0) (1.01716 -0.00366992 0) (1.01724 -0.00365856 0) (1.01733 -0.00364742 0) (1.01741 -0.00363644 0) (1.01749 -0.00362557 0) (1.01757 -0.00361475 0) (1.01765 -0.00360392 0) (1.01773 -0.00359303 0) (1.01781 -0.00358202 0) (1.01789 -0.00357084 0) (1.01796 -0.00355943 0) (1.01804 -0.00354776 0) (1.01812 -0.00353578 0) (1.01819 -0.00352347 0) (1.01827 -0.0035108 0) (1.01834 -0.00349775 0) (1.01842 -0.00348433 0) (1.01849 -0.00347052 0) (1.01857 -0.00345633 0) (1.01864 -0.00344178 0) (1.01872 -0.00342688 0) (1.01879 -0.00341166 0) (1.01886 -0.00339617 0) (1.01894 -0.00338043 0) (1.01901 -0.00336452 0) (1.01908 -0.00334848 0) (1.01915 -0.00333238 0) (1.01923 -0.00331631 0) (1.0193 -0.00330033 0) (1.01937 -0.00328452 0) (1.01944 -0.00326898 0) (1.01951 -0.00325377 0) (1.01958 -0.00323898 0) (1.01966 -0.00322466 0) (1.01973 -0.00321088 0) (1.0198 -0.00319768 0) (1.01987 -0.00318509 0) (1.01994 -0.00317313 0) (1.02001 -0.00316178 0) (1.02008 -0.00315105 0) (1.02015 -0.00314089 0) (1.02021 -0.00313126 0) (1.02028 -0.0031221 0) (1.02035 -0.00311336 0) (1.02042 -0.00310496 0) (1.02048 -0.00309683 0) (1.02055 -0.00308888 0) (1.02062 -0.00308104 0) (1.02068 -0.00307323 0) (1.02075 -0.00306539 0) (1.02081 -0.00305743 0) (1.02088 -0.00304931 0) (1.02094 -0.00304096 0) (1.02101 -0.00303234 0) (1.02107 -0.0030234 0) (1.02113 -0.00301411 0) (1.0212 -0.00300445 0) (1.02126 -0.0029944 0) (1.02132 -0.00298395 0) (1.02139 -0.00297311 0) (1.02145 -0.00296189 0) (1.02151 -0.00295028 0) (1.02157 -0.00293833 0) (1.02164 -0.00292603 0) (1.0217 -0.00291343 0) (1.02176 -0.00290054 0) (1.02182 -0.00288737 0) (1.02189 -0.00287395 0) (1.02195 -0.00286029 0) (1.02201 -0.00284637 0) (1.02207 -0.00283222 0) (1.02214 -0.0028178 0) (1.0222 -0.00280313 0) (1.02226 -0.00278817 0) (1.02232 -0.00277294 0) (1.02239 -0.00275742 0) (1.02245 -0.00274164 0) (1.02251 -0.0027256 0) (1.02258 -0.00270934 0) (1.02264 -0.00269294 0) (1.0227 -0.00267643 0) (1.02277 -0.00265995 0) (1.02283 -0.00264356 0) (1.0229 -0.00262743 0) (1.02296 -0.00261162 0) (1.02303 -0.00259634 0) (1.01631 -0.00393798 0) (1.01641 -0.00392272 0) (1.0165 -0.00390752 0) (1.01659 -0.00389244 0) (1.01668 -0.0038775 0) (1.01677 -0.00386275 0) (1.01686 -0.00384821 0) (1.01695 -0.00383392 0) (1.01704 -0.00381991 0) (1.01713 -0.00380619 0) (1.01721 -0.00379279 0) (1.0173 -0.0037797 0) (1.01738 -0.00376693 0) (1.01747 -0.00375446 0) (1.01755 -0.00374228 0) (1.01763 -0.00373034 0) (1.01772 -0.00371862 0) (1.0178 -0.00370707 0) (1.01788 -0.00369563 0) (1.01796 -0.00368426 0) (1.01804 -0.0036729 0) (1.01812 -0.00366149 0) (1.0182 -0.00364998 0) (1.01828 -0.00363832 0) (1.01835 -0.00362645 0) (1.01843 -0.00361434 0) (1.01851 -0.00360194 0) (1.01858 -0.00358924 0) (1.01866 -0.0035762 0) (1.01874 -0.00356282 0) (1.01881 -0.00354907 0) (1.01889 -0.00353497 0) (1.01896 -0.00352051 0) (1.01903 -0.00350571 0) (1.01911 -0.00349058 0) (1.01918 -0.00347515 0) (1.01925 -0.00345947 0) (1.01933 -0.00344355 0) (1.0194 -0.00342747 0) (1.01947 -0.00341128 0) (1.01954 -0.00339503 0) (1.01962 -0.0033788 0) (1.01969 -0.00336267 0) (1.01976 -0.00334671 0) (1.01983 -0.00333101 0) (1.0199 -0.00331563 0) (1.01998 -0.00330064 0) (1.02005 -0.00328613 0) (1.02012 -0.00327213 0) (1.02019 -0.00325869 0) (1.02026 -0.00324584 0) (1.02033 -0.0032336 0) (1.0204 -0.00322196 0) (1.02047 -0.00321091 0) (1.02054 -0.00320043 0) (1.02061 -0.00319047 0) (1.02067 -0.00318097 0) (1.02074 -0.00317188 0) (1.02081 -0.00316313 0) (1.02088 -0.00315464 0) (1.02094 -0.00314635 0) (1.02101 -0.00313817 0) (1.02107 -0.00313003 0) (1.02114 -0.00312186 0) (1.0212 -0.00311361 0) (1.02127 -0.0031052 0) (1.02133 -0.00309658 0) (1.0214 -0.0030877 0) (1.02146 -0.00307854 0) (1.02153 -0.00306904 0) (1.02159 -0.0030592 0) (1.02165 -0.00304898 0) (1.02171 -0.0030384 0) (1.02178 -0.00302744 0) (1.02184 -0.00301611 0) (1.0219 -0.00300442 0) (1.02197 -0.0029924 0) (1.02203 -0.00298006 0) (1.02209 -0.00296743 0) (1.02215 -0.00295452 0) (1.02221 -0.00294135 0) (1.02228 -0.00292795 0) (1.02234 -0.00291431 0) (1.0224 -0.00290044 0) (1.02246 -0.00288634 0) (1.02253 -0.002872 0) (1.02259 -0.00285741 0) (1.02265 -0.00284256 0) (1.02272 -0.00282744 0) (1.02278 -0.00281207 0) (1.02284 -0.00279643 0) (1.02291 -0.00278055 0) (1.02297 -0.00276446 0) (1.02303 -0.00274823 0) (1.0231 -0.0027319 0) (1.02316 -0.00271559 0) (1.02323 -0.00269936 0) (1.02329 -0.00268337 0) (1.02335 -0.00266768 0) (1.02342 -0.00265249 0) (1.01672 -0.00401631 0) (1.01681 -0.00400043 0) (1.01691 -0.00398463 0) (1.017 -0.00396895 0) (1.01709 -0.00395342 0) (1.01718 -0.00393809 0) (1.01727 -0.00392297 0) (1.01736 -0.00390811 0) (1.01744 -0.00389352 0) (1.01753 -0.00387923 0) (1.01762 -0.00386526 0) (1.0177 -0.0038516 0) (1.01779 -0.00383825 0) (1.01787 -0.00382521 0) (1.01796 -0.00381246 0) (1.01804 -0.00379996 0) (1.01812 -0.00378767 0) (1.0182 -0.00377557 0) (1.01829 -0.00376359 0) (1.01837 -0.00375169 0) (1.01845 -0.00373981 0) (1.01853 -0.0037279 0) (1.0186 -0.0037159 0) (1.01868 -0.00370377 0) (1.01876 -0.00369145 0) (1.01884 -0.00367891 0) (1.01891 -0.00366612 0) (1.01899 -0.00365304 0) (1.01907 -0.00363964 0) (1.01914 -0.00362593 0) (1.01922 -0.00361187 0) (1.01929 -0.00359748 0) (1.01936 -0.00358276 0) (1.01944 -0.00356772 0) (1.01951 -0.00355237 0) (1.01959 -0.00353674 0) (1.01966 -0.00352087 0) (1.01973 -0.00350479 0) (1.0198 -0.00348854 0) (1.01988 -0.0034722 0) (1.01995 -0.0034558 0) (1.02002 -0.00343943 0) (1.02009 -0.00342316 0) (1.02017 -0.00340705 0) (1.02024 -0.00339119 0) (1.02031 -0.00337564 0) (1.02038 -0.00336048 0) (1.02045 -0.00334577 0) (1.02052 -0.00333156 0) (1.02059 -0.00331789 0) (1.02066 -0.00330479 0) (1.02073 -0.00329228 0) (1.0208 -0.00328036 0) (1.02087 -0.00326902 0) (1.02094 -0.00325822 0) (1.02101 -0.00324794 0) (1.02108 -0.00323811 0) (1.02115 -0.00322868 0) (1.02121 -0.00321959 0) (1.02128 -0.00321076 0) (1.02135 -0.00320213 0) (1.02141 -0.00319362 0) (1.02148 -0.00318516 0) (1.02155 -0.00317669 0) (1.02161 -0.00316814 0) (1.02168 -0.00315945 0) (1.02174 -0.00315057 0) (1.0218 -0.00314145 0) (1.02187 -0.00313206 0) (1.02193 -0.00312237 0) (1.02199 -0.00311234 0) (1.02206 -0.00310197 0) (1.02212 -0.00309125 0) (1.02218 -0.00308017 0) (1.02225 -0.00306874 0) (1.02231 -0.00305698 0) (1.02237 -0.0030449 0) (1.02243 -0.00303251 0) (1.0225 -0.00301985 0) (1.02256 -0.00300693 0) (1.02262 -0.00299376 0) (1.02268 -0.00298037 0) (1.02275 -0.00296675 0) (1.02281 -0.00295292 0) (1.02287 -0.00293888 0) (1.02293 -0.00292461 0) (1.023 -0.00291011 0) (1.02306 -0.00289536 0) (1.02312 -0.00288037 0) (1.02319 -0.00286512 0) (1.02325 -0.00284963 0) (1.02331 -0.00283391 0) (1.02338 -0.00281799 0) (1.02344 -0.00280193 0) (1.0235 -0.00278577 0) (1.02357 -0.00276963 0) (1.02363 -0.00275356 0) (1.0237 -0.0027377 0) (1.02376 -0.00272214 0) (1.02383 -0.00270705 0) (1.01714 -0.00409229 0) (1.01723 -0.00407581 0) (1.01733 -0.00405943 0) (1.01742 -0.00404317 0) (1.01751 -0.00402707 0) (1.0176 -0.00401117 0) (1.01769 -0.00399549 0) (1.01778 -0.00398007 0) (1.01786 -0.00396493 0) (1.01795 -0.00395008 0) (1.01804 -0.00393555 0) (1.01812 -0.00392134 0) (1.01821 -0.00390744 0) (1.01829 -0.00389385 0) (1.01838 -0.00388054 0) (1.01846 -0.00386749 0) (1.01854 -0.00385466 0) (1.01862 -0.00384202 0) (1.01871 -0.00382952 0) (1.01879 -0.0038171 0) (1.01887 -0.00380472 0) (1.01895 -0.00379232 0) (1.01902 -0.00377985 0) (1.0191 -0.00376726 0) (1.01918 -0.00375451 0) (1.01926 -0.00374156 0) (1.01933 -0.00372838 0) (1.01941 -0.00371492 0) (1.01949 -0.00370119 0) (1.01956 -0.00368715 0) (1.01964 -0.0036728 0) (1.01971 -0.00365813 0) (1.01979 -0.00364316 0) (1.01986 -0.00362788 0) (1.01993 -0.00361232 0) (1.02001 -0.0035965 0) (1.02008 -0.00358044 0) (1.02015 -0.0035642 0) (1.02023 -0.0035478 0) (1.0203 -0.00353131 0) (1.02037 -0.00351478 0) (1.02044 -0.00349827 0) (1.02051 -0.00348186 0) (1.02059 -0.00346561 0) (1.02066 -0.0034496 0) (1.02073 -0.00343389 0) (1.0208 -0.00341856 0) (1.02087 -0.00340366 0) (1.02094 -0.00338925 0) (1.02101 -0.00337536 0) (1.02108 -0.00336202 0) (1.02115 -0.00334926 0) (1.02122 -0.00333706 0) (1.02129 -0.00332543 0) (1.02136 -0.00331433 0) (1.02143 -0.00330373 0) (1.0215 -0.00329358 0) (1.02157 -0.00328383 0) (1.02164 -0.00327441 0) (1.0217 -0.00326525 0) (1.02177 -0.00325629 0) (1.02184 -0.00324746 0) (1.0219 -0.00323869 0) (1.02197 -0.00322992 0) (1.02203 -0.00322108 0) (1.0221 -0.00321212 0) (1.02216 -0.00320299 0) (1.02223 -0.00319364 0) (1.02229 -0.00318403 0) (1.02235 -0.00317414 0) (1.02242 -0.00316394 0) (1.02248 -0.00315342 0) (1.02254 -0.00314256 0) (1.02261 -0.00313137 0) (1.02267 -0.00311985 0) (1.02273 -0.00310801 0) (1.02279 -0.00309587 0) (1.02286 -0.00308344 0) (1.02292 -0.00307075 0) (1.02298 -0.00305781 0) (1.02304 -0.00304464 0) (1.02311 -0.00303126 0) (1.02317 -0.00301768 0) (1.02323 -0.00300389 0) (1.02329 -0.0029899 0) (1.02336 -0.0029757 0) (1.02342 -0.00296128 0) (1.02348 -0.00294663 0) (1.02355 -0.00293175 0) (1.02361 -0.00291664 0) (1.02367 -0.00290129 0) (1.02374 -0.00288572 0) (1.0238 -0.00286997 0) (1.02386 -0.00285408 0) (1.02393 -0.0028381 0) (1.02399 -0.00282211 0) (1.02406 -0.0028062 0) (1.02412 -0.00279049 0) (1.02419 -0.00277505 0) (1.02425 -0.00276005 0) (1.01758 -0.00416601 0) (1.01767 -0.00414895 0) (1.01776 -0.00413199 0) (1.01785 -0.00411518 0) (1.01794 -0.00409853 0) (1.01803 -0.00408208 0) (1.01812 -0.00406586 0) (1.01821 -0.00404989 0) (1.0183 -0.00403421 0) (1.01839 -0.00401883 0) (1.01847 -0.00400376 0) (1.01856 -0.00398901 0) (1.01864 -0.00397457 0) (1.01873 -0.00396044 0) (1.01881 -0.0039466 0) (1.0189 -0.00393302 0) (1.01898 -0.00391967 0) (1.01906 -0.0039065 0) (1.01914 -0.00389349 0) (1.01922 -0.00388057 0) (1.0193 -0.0038677 0) (1.01938 -0.00385482 0) (1.01946 -0.0038419 0) (1.01954 -0.00382887 0) (1.01962 -0.0038157 0) (1.01969 -0.00380235 0) (1.01977 -0.00378879 0) (1.01985 -0.00377498 0) (1.01992 -0.00376091 0) (1.02 -0.00374656 0) (1.02007 -0.00373192 0) (1.02015 -0.00371699 0) (1.02022 -0.00370176 0) (1.0203 -0.00368626 0) (1.02037 -0.00367049 0) (1.02044 -0.00365448 0) (1.02052 -0.00363826 0) (1.02059 -0.00362185 0) (1.02066 -0.00360531 0) (1.02073 -0.00358868 0) (1.02081 -0.00357201 0) (1.02088 -0.00355538 0) (1.02095 -0.00353883 0) (1.02102 -0.00352245 0) (1.0211 -0.0035063 0) (1.02117 -0.00349044 0) (1.02124 -0.00347494 0) (1.02131 -0.00345986 0) (1.02138 -0.00344525 0) (1.02145 -0.00343115 0) (1.02152 -0.00341759 0) (1.02159 -0.00340457 0) (1.02166 -0.00339212 0) (1.02173 -0.00338021 0) (1.0218 -0.00336882 0) (1.02187 -0.00335791 0) (1.02194 -0.00334745 0) (1.02201 -0.00333738 0) (1.02207 -0.00332764 0) (1.02214 -0.00331816 0) (1.02221 -0.00330889 0) (1.02227 -0.00329975 0) (1.02234 -0.00329068 0) (1.0224 -0.00328161 0) (1.02247 -0.0032725 0) (1.02253 -0.00326327 0) (1.0226 -0.00325389 0) (1.02266 -0.00324432 0) (1.02273 -0.0032345 0) (1.02279 -0.00322442 0) (1.02286 -0.00321405 0) (1.02292 -0.00320338 0) (1.02298 -0.00319239 0) (1.02304 -0.00318109 0) (1.02311 -0.00316948 0) (1.02317 -0.00315756 0) (1.02323 -0.00314536 0) (1.0233 -0.00313289 0) (1.02336 -0.00312017 0) (1.02342 -0.00310722 0) (1.02348 -0.00309406 0) (1.02355 -0.00308069 0) (1.02361 -0.00306713 0) (1.02367 -0.00305338 0) (1.02373 -0.00303944 0) (1.0238 -0.00302531 0) (1.02386 -0.00301098 0) (1.02392 -0.00299643 0) (1.02398 -0.00298166 0) (1.02405 -0.00296667 0) (1.02411 -0.00295146 0) (1.02418 -0.00293605 0) (1.02424 -0.00292046 0) (1.0243 -0.00290473 0) (1.02437 -0.00288892 0) (1.02443 -0.0028731 0) (1.0245 -0.00285735 0) (1.02456 -0.00284178 0) (1.02463 -0.00282646 0) (1.02469 -0.00281156 0) (1.01803 -0.00423754 0) (1.01812 -0.00421992 0) (1.01821 -0.00420241 0) (1.0183 -0.00418505 0) (1.0184 -0.00416787 0) (1.01849 -0.00415089 0) (1.01857 -0.00413414 0) (1.01866 -0.00411766 0) (1.01875 -0.00410145 0) (1.01884 -0.00408555 0) (1.01893 -0.00406996 0) (1.01901 -0.00405468 0) (1.0191 -0.00403972 0) (1.01918 -0.00402507 0) (1.01927 -0.00401071 0) (1.01935 -0.00399662 0) (1.01943 -0.00398276 0) (1.01951 -0.00396909 0) (1.01959 -0.00395558 0) (1.01967 -0.00394217 0) (1.01976 -0.00392883 0) (1.01983 -0.00391549 0) (1.01991 -0.00390212 0) (1.01999 -0.00388867 0) (1.02007 -0.00387509 0) (1.02015 -0.00386136 0) (1.02022 -0.00384742 0) (1.0203 -0.00383327 0) (1.02038 -0.00381887 0) (1.02045 -0.00380422 0) (1.02053 -0.0037893 0) (1.0206 -0.00377411 0) (1.02067 -0.00375865 0) (1.02075 -0.00374293 0) (1.02082 -0.00372696 0) (1.0209 -0.00371077 0) (1.02097 -0.00369438 0) (1.02104 -0.00367782 0) (1.02112 -0.00366114 0) (1.02119 -0.00364437 0) (1.02126 -0.00362758 0) (1.02133 -0.00361082 0) (1.0214 -0.00359415 0) (1.02148 -0.00357763 0) (1.02155 -0.00356134 0) (1.02162 -0.00354534 0) (1.02169 -0.00352969 0) (1.02176 -0.00351444 0) (1.02183 -0.00349964 0) (1.02191 -0.00348533 0) (1.02198 -0.00347155 0) (1.02205 -0.0034583 0) (1.02212 -0.00344559 0) (1.02219 -0.00343341 0) (1.02225 -0.00342174 0) (1.02232 -0.00341054 0) (1.02239 -0.00339978 0) (1.02246 -0.0033894 0) (1.02253 -0.00337935 0) (1.0226 -0.00336956 0) (1.02266 -0.00335998 0) (1.02273 -0.00335054 0) (1.02279 -0.00334118 0) (1.02286 -0.00333183 0) (1.02293 -0.00332244 0) (1.02299 -0.00331296 0) (1.02306 -0.00330334 0) (1.02312 -0.00329354 0) (1.02318 -0.00328353 0) (1.02325 -0.00327326 0) (1.02331 -0.00326273 0) (1.02337 -0.00325191 0) (1.02344 -0.00324079 0) (1.0235 -0.00322939 0) (1.02356 -0.00321768 0) (1.02363 -0.0032057 0) (1.02369 -0.00319344 0) (1.02375 -0.00318093 0) (1.02381 -0.00316818 0) (1.02388 -0.00315522 0) (1.02394 -0.00314205 0) (1.024 -0.0031287 0) (1.02406 -0.00311516 0) (1.02413 -0.00310145 0) (1.02419 -0.00308757 0) (1.02425 -0.0030735 0) (1.02432 -0.00305925 0) (1.02438 -0.0030448 0) (1.02444 -0.00303014 0) (1.02451 -0.00301527 0) (1.02457 -0.0030002 0) (1.02463 -0.00298494 0) (1.0247 -0.0029695 0) (1.02476 -0.00295394 0) (1.02483 -0.00293829 0) (1.02489 -0.00292264 0) (1.02495 -0.00290704 0) (1.02502 -0.00289161 0) (1.02508 -0.00287642 0) (1.02515 -0.00286161 0) (1.0185 -0.00430697 0) (1.01859 -0.00428881 0) (1.01868 -0.00427077 0) (1.01877 -0.00425288 0) (1.01886 -0.00423518 0) (1.01895 -0.00421768 0) (1.01904 -0.00420043 0) (1.01913 -0.00418343 0) (1.01922 -0.00416672 0) (1.01931 -0.00415032 0) (1.0194 -0.00413422 0) (1.01948 -0.00411844 0) (1.01957 -0.00410298 0) (1.01965 -0.00408782 0) (1.01974 -0.00407296 0) (1.01982 -0.00405836 0) (1.0199 -0.00404401 0) (1.01998 -0.00402985 0) (1.02006 -0.00401586 0) (1.02015 -0.00400198 0) (1.02023 -0.00398818 0) (1.0203 -0.0039744 0) (1.02038 -0.0039606 0) (1.02046 -0.00394673 0) (1.02054 -0.00393276 0) (1.02062 -0.00391864 0) (1.02069 -0.00390435 0) (1.02077 -0.00388986 0) (1.02085 -0.00387515 0) (1.02092 -0.00386021 0) (1.021 -0.00384502 0) (1.02107 -0.00382957 0) (1.02115 -0.00381388 0) (1.02122 -0.00379795 0) (1.02129 -0.00378179 0) (1.02137 -0.00376542 0) (1.02144 -0.00374887 0) (1.02151 -0.00373216 0) (1.02159 -0.00371534 0) (1.02166 -0.00369845 0) (1.02173 -0.00368154 0) (1.0218 -0.00366465 0) (1.02188 -0.00364786 0) (1.02195 -0.00363123 0) (1.02202 -0.00361481 0) (1.02209 -0.00359866 0) (1.02216 -0.00358286 0) (1.02224 -0.00356744 0) (1.02231 -0.00355247 0) (1.02238 -0.00353797 0) (1.02245 -0.00352397 0) (1.02252 -0.00351049 0) (1.02259 -0.00349753 0) (1.02266 -0.00348509 0) (1.02273 -0.00347315 0) (1.0228 -0.00346167 0) (1.02287 -0.00345062 0) (1.02293 -0.00343994 0) (1.023 -0.00342959 0) (1.02307 -0.00341951 0) (1.02314 -0.00340963 0) (1.0232 -0.00339989 0) (1.02327 -0.00339024 0) (1.02333 -0.00338062 0) (1.0234 -0.00337097 0) (1.02346 -0.00336125 0) (1.02353 -0.00335139 0) (1.02359 -0.00334138 0) (1.02366 -0.00333116 0) (1.02372 -0.00332072 0) (1.02379 -0.00331002 0) (1.02385 -0.00329906 0) (1.02391 -0.00328782 0) (1.02398 -0.00327631 0) (1.02404 -0.00326452 0) (1.0241 -0.00325246 0) (1.02416 -0.00324015 0) (1.02423 -0.0032276 0) (1.02429 -0.00321483 0) (1.02435 -0.00320185 0) (1.02442 -0.00318869 0) (1.02448 -0.00317534 0) (1.02454 -0.00316183 0) (1.0246 -0.00314816 0) (1.02467 -0.00313432 0) (1.02473 -0.00312032 0) (1.02479 -0.00310614 0) (1.02486 -0.00309178 0) (1.02492 -0.00307723 0) (1.02498 -0.00306249 0) (1.02505 -0.00304755 0) (1.02511 -0.00303244 0) (1.02517 -0.00301716 0) (1.02524 -0.00300176 0) (1.0253 -0.00298627 0) (1.02537 -0.00297078 0) (1.02543 -0.00295533 0) (1.0255 -0.00294004 0) (1.02556 -0.00292497 0) (1.02563 -0.00291027 0) (1.01898 -0.00437438 0) (1.01908 -0.00435569 0) (1.01917 -0.00433713 0) (1.01926 -0.00431874 0) (1.01935 -0.00430053 0) (1.01944 -0.00428254 0) (1.01953 -0.00426479 0) (1.01962 -0.00424731 0) (1.01971 -0.00423011 0) (1.0198 -0.00421321 0) (1.01988 -0.00419662 0) (1.01997 -0.00418035 0) (1.02005 -0.0041644 0) (1.02014 -0.00414876 0) (1.02022 -0.00413341 0) (1.02031 -0.00411833 0) (1.02039 -0.00410349 0) (1.02047 -0.00408886 0) (1.02055 -0.0040744 0) (1.02063 -0.00406007 0) (1.02071 -0.00404582 0) (1.02079 -0.00403161 0) (1.02087 -0.00401739 0) (1.02095 -0.00400312 0) (1.02103 -0.00398876 0) (1.02111 -0.00397428 0) (1.02118 -0.00395964 0) (1.02126 -0.00394483 0) (1.02134 -0.00392981 0) (1.02141 -0.00391458 0) (1.02149 -0.00389913 0) (1.02156 -0.00388344 0) (1.02164 -0.00386753 0) (1.02171 -0.00385139 0) (1.02178 -0.00383505 0) (1.02186 -0.00381851 0) (1.02193 -0.0038018 0) (1.022 -0.00378495 0) (1.02208 -0.003768 0) (1.02215 -0.00375098 0) (1.02222 -0.00373395 0) (1.0223 -0.00371695 0) (1.02237 -0.00370005 0) (1.02244 -0.00368329 0) (1.02251 -0.00366675 0) (1.02258 -0.00365047 0) (1.02266 -0.00363452 0) (1.02273 -0.00361895 0) (1.0228 -0.0036038 0) (1.02287 -0.00358911 0) (1.02294 -0.0035749 0) (1.02301 -0.00356121 0) (1.02308 -0.00354801 0) (1.02315 -0.00353532 0) (1.02322 -0.00352312 0) (1.02329 -0.00351136 0) (1.02336 -0.00350003 0) (1.02343 -0.00348907 0) (1.02349 -0.00347842 0) (1.02356 -0.00346805 0) (1.02363 -0.00345788 0) (1.0237 -0.00344786 0) (1.02376 -0.00343794 0) (1.02383 -0.00342805 0) (1.02389 -0.00341814 0) (1.02396 -0.00340817 0) (1.02402 -0.0033981 0) (1.02409 -0.00338787 0) (1.02415 -0.00337746 0) (1.02422 -0.00336684 0) (1.02428 -0.00335599 0) (1.02434 -0.00334489 0) (1.02441 -0.00333353 0) (1.02447 -0.00332191 0) (1.02453 -0.00331004 0) (1.0246 -0.00329791 0) (1.02466 -0.00328555 0) (1.02472 -0.00327296 0) (1.02479 -0.00326016 0) (1.02485 -0.00324717 0) (1.02491 -0.003234 0) (1.02497 -0.00322067 0) (1.02504 -0.00320718 0) (1.0251 -0.00319355 0) (1.02516 -0.00317976 0) (1.02523 -0.00316582 0) (1.02529 -0.00315172 0) (1.02535 -0.00313745 0) (1.02542 -0.003123 0) (1.02548 -0.00310837 0) (1.02554 -0.00309357 0) (1.02561 -0.00307859 0) (1.02567 -0.00306347 0) (1.02574 -0.00304822 0) (1.0258 -0.0030329 0) (1.02586 -0.00301756 0) (1.02593 -0.00300227 0) (1.02599 -0.00298712 0) (1.02606 -0.00297217 0) (1.02613 -0.00295757 0) (1.01949 -0.00443985 0) (1.01958 -0.00442065 0) (1.01968 -0.00440159 0) (1.01977 -0.0043827 0) (1.01986 -0.00436401 0) (1.01995 -0.00434553 0) (1.02004 -0.00432731 0) (1.02013 -0.00430934 0) (1.02022 -0.00429167 0) (1.0203 -0.0042743 0) (1.02039 -0.00425724 0) (1.02048 -0.00424049 0) (1.02056 -0.00422407 0) (1.02065 -0.00420795 0) (1.02073 -0.00419213 0) (1.02082 -0.00417658 0) (1.0209 -0.00416128 0) (1.02098 -0.00414619 0) (1.02106 -0.00413128 0) (1.02114 -0.0041165 0) (1.02122 -0.00410182 0) (1.0213 -0.00408719 0) (1.02138 -0.00407256 0) (1.02146 -0.0040579 0) (1.02154 -0.00404317 0) (1.02162 -0.00402833 0) (1.02169 -0.00401336 0) (1.02177 -0.00399823 0) (1.02185 -0.00398292 0) (1.02192 -0.00396741 0) (1.022 -0.0039517 0) (1.02207 -0.00393578 0) (1.02215 -0.00391965 0) (1.02222 -0.00390331 0) (1.0223 -0.00388678 0) (1.02237 -0.00387008 0) (1.02244 -0.00385322 0) (1.02252 -0.00383623 0) (1.02259 -0.00381915 0) (1.02266 -0.00380202 0) (1.02273 -0.00378487 0) (1.02281 -0.00376777 0) (1.02288 -0.00375075 0) (1.02295 -0.00373388 0) (1.02302 -0.00371722 0) (1.0231 -0.00370082 0) (1.02317 -0.00368473 0) (1.02324 -0.003669 0) (1.02331 -0.00365369 0) (1.02338 -0.00363882 0) (1.02345 -0.00362442 0) (1.02352 -0.00361051 0) (1.02359 -0.00359709 0) (1.02366 -0.00358416 0) (1.02373 -0.00357169 0) (1.0238 -0.00355968 0) (1.02387 -0.00354807 0) (1.02394 -0.00353683 0) (1.02401 -0.0035259 0) (1.02408 -0.00351525 0) (1.02414 -0.0035048 0) (1.02421 -0.0034945 0) (1.02428 -0.00348431 0) (1.02434 -0.00347416 0) (1.02441 -0.00346401 0) (1.02447 -0.0034538 0) (1.02454 -0.0034435 0) (1.0246 -0.00343307 0) (1.02467 -0.00342247 0) (1.02473 -0.00341168 0) (1.0248 -0.00340068 0) (1.02486 -0.00338944 0) (1.02492 -0.00337797 0) (1.02499 -0.00336625 0) (1.02505 -0.00335429 0) (1.02511 -0.0033421 0) (1.02518 -0.00332968 0) (1.02524 -0.00331705 0) (1.0253 -0.00330423 0) (1.02537 -0.00329122 0) (1.02543 -0.00327806 0) (1.02549 -0.00326473 0) (1.02555 -0.00325127 0) (1.02562 -0.00323767 0) (1.02568 -0.00322393 0) (1.02574 -0.00321004 0) (1.02581 -0.00319602 0) (1.02587 -0.00318183 0) (1.02593 -0.00316749 0) (1.026 -0.00315297 0) (1.02606 -0.0031383 0) (1.02613 -0.00312346 0) (1.02619 -0.00310848 0) (1.02625 -0.00309339 0) (1.02632 -0.00307822 0) (1.02638 -0.00306304 0) (1.02645 -0.0030479 0) (1.02651 -0.00303289 0) (1.02658 -0.00301807 0) (1.02665 -0.00300357 0) (1.02002 -0.00450345 0) (1.02011 -0.00448375 0) (1.0202 -0.00446421 0) (1.0203 -0.00444484 0) (1.02039 -0.00442568 0) (1.02048 -0.00440674 0) (1.02057 -0.00438805 0) (1.02066 -0.00436962 0) (1.02075 -0.00435149 0) (1.02083 -0.00433366 0) (1.02092 -0.00431614 0) (1.02101 -0.00429894 0) (1.02109 -0.00428205 0) (1.02118 -0.00426548 0) (1.02126 -0.0042492 0) (1.02135 -0.0042332 0) (1.02143 -0.00421744 0) (1.02151 -0.00420191 0) (1.02159 -0.00418656 0) (1.02167 -0.00417135 0) (1.02175 -0.00415625 0) (1.02183 -0.00414121 0) (1.02191 -0.00412619 0) (1.02199 -0.00411115 0) (1.02207 -0.00409605 0) (1.02215 -0.00408087 0) (1.02223 -0.00406558 0) (1.0223 -0.00405014 0) (1.02238 -0.00403454 0) (1.02245 -0.00401876 0) (1.02253 -0.0040028 0) (1.0226 -0.00398665 0) (1.02268 -0.0039703 0) (1.02275 -0.00395378 0) (1.02283 -0.00393707 0) (1.0229 -0.00392021 0) (1.02298 -0.0039032 0) (1.02305 -0.00388608 0) (1.02312 -0.00386888 0) (1.0232 -0.00385163 0) (1.02327 -0.00383438 0) (1.02334 -0.00381716 0) (1.02341 -0.00380004 0) (1.02349 -0.00378306 0) (1.02356 -0.00376629 0) (1.02363 -0.00374976 0) (1.0237 -0.00373354 0) (1.02378 -0.00371767 0) (1.02385 -0.0037022 0) (1.02392 -0.00368715 0) (1.02399 -0.00367256 0) (1.02406 -0.00365845 0) (1.02413 -0.00364481 0) (1.0242 -0.00363165 0) (1.02427 -0.00361894 0) (1.02434 -0.00360667 0) (1.02441 -0.00359479 0) (1.02448 -0.00358328 0) (1.02455 -0.00357209 0) (1.02461 -0.00356115 0) (1.02468 -0.00355043 0) (1.02475 -0.00353987 0) (1.02481 -0.00352942 0) (1.02488 -0.00351902 0) (1.02495 -0.00350862 0) (1.02501 -0.00349819 0) (1.02508 -0.00348767 0) (1.02514 -0.00347704 0) (1.02521 -0.00346626 0) (1.02527 -0.0034553 0) (1.02534 -0.00344414 0) (1.0254 -0.00343278 0) (1.02546 -0.00342119 0) (1.02553 -0.00340937 0) (1.02559 -0.00339733 0) (1.02565 -0.00338507 0) (1.02572 -0.0033726 0) (1.02578 -0.00335993 0) (1.02584 -0.00334708 0) (1.02591 -0.00333406 0) (1.02597 -0.00332089 0) (1.02603 -0.00330758 0) (1.0261 -0.00329414 0) (1.02616 -0.00328057 0) (1.02622 -0.00326687 0) (1.02629 -0.00325305 0) (1.02635 -0.00323909 0) (1.02641 -0.00322499 0) (1.02648 -0.00321074 0) (1.02654 -0.00319634 0) (1.0266 -0.00318178 0) (1.02667 -0.00316708 0) (1.02673 -0.00315225 0) (1.0268 -0.00313731 0) (1.02686 -0.0031223 0) (1.02693 -0.00310727 0) (1.02699 -0.00309228 0) (1.02706 -0.00307741 0) (1.02712 -0.00306271 0) (1.02719 -0.00304831 0) (1.02057 -0.00456526 0) (1.02066 -0.00454508 0) (1.02076 -0.00452507 0) (1.02085 -0.00450524 0) (1.02094 -0.00448562 0) (1.02103 -0.00446623 0) (1.02112 -0.00444709 0) (1.02121 -0.00442822 0) (1.0213 -0.00440964 0) (1.02139 -0.00439136 0) (1.02147 -0.0043734 0) (1.02156 -0.00435575 0) (1.02165 -0.00433843 0) (1.02173 -0.00432141 0) (1.02182 -0.00430468 0) (1.0219 -0.00428824 0) (1.02198 -0.00427205 0) (1.02206 -0.00425608 0) (1.02215 -0.0042403 0) (1.02223 -0.00422468 0) (1.02231 -0.00420917 0) (1.02239 -0.00419373 0) (1.02247 -0.00417833 0) (1.02255 -0.00416292 0) (1.02263 -0.00414748 0) (1.0227 -0.00413196 0) (1.02278 -0.00411634 0) (1.02286 -0.0041006 0) (1.02293 -0.00408472 0) (1.02301 -0.00406869 0) (1.02309 -0.00405248 0) (1.02316 -0.00403611 0) (1.02324 -0.00401956 0) (1.02331 -0.00400284 0) (1.02338 -0.00398597 0) (1.02346 -0.00396895 0) (1.02353 -0.0039518 0) (1.02361 -0.00393455 0) (1.02368 -0.00391723 0) (1.02375 -0.00389987 0) (1.02383 -0.00388251 0) (1.0239 -0.0038652 0) (1.02397 -0.00384797 0) (1.02405 -0.00383089 0) (1.02412 -0.00381401 0) (1.02419 -0.00379736 0) (1.02426 -0.00378102 0) (1.02433 -0.00376501 0) (1.02441 -0.00374938 0) (1.02448 -0.00373417 0) (1.02455 -0.0037194 0) (1.02462 -0.00370509 0) (1.02469 -0.00369124 0) (1.02476 -0.00367785 0) (1.02483 -0.00366491 0) (1.0249 -0.00365239 0) (1.02497 -0.00364026 0) (1.02504 -0.00362849 0) (1.02511 -0.00361703 0) (1.02518 -0.00360583 0) (1.02524 -0.00359484 0) (1.02531 -0.00358402 0) (1.02538 -0.00357331 0) (1.02544 -0.00356267 0) (1.02551 -0.00355204 0) (1.02558 -0.00354138 0) (1.02564 -0.00353065 0) (1.02571 -0.00351982 0) (1.02577 -0.00350886 0) (1.02584 -0.00349774 0) (1.0259 -0.00348644 0) (1.02596 -0.00347494 0) (1.02603 -0.00346324 0) (1.02609 -0.00345132 0) (1.02616 -0.0034392 0) (1.02622 -0.00342687 0) (1.02628 -0.00341435 0) (1.02635 -0.00340165 0) (1.02641 -0.00338877 0) (1.02647 -0.00337574 0) (1.02654 -0.00336257 0) (1.0266 -0.00334926 0) (1.02666 -0.00333584 0) (1.02673 -0.0033223 0) (1.02679 -0.00330865 0) (1.02685 -0.00329488 0) (1.02692 -0.00328098 0) (1.02698 -0.00326696 0) (1.02704 -0.00325281 0) (1.02711 -0.00323852 0) (1.02717 -0.00322408 0) (1.02724 -0.00320951 0) (1.0273 -0.00319482 0) (1.02737 -0.00318003 0) (1.02743 -0.00316516 0) (1.0275 -0.00315029 0) (1.02756 -0.00313544 0) (1.02763 -0.00312071 0) (1.02769 -0.00310614 0) (1.02776 -0.00309185 0) (1.02114 -0.00462535 0) (1.02124 -0.00460471 0) (1.02133 -0.00458424 0) (1.02142 -0.00456397 0) (1.02151 -0.0045439 0) (1.02161 -0.00452407 0) (1.0217 -0.0045045 0) (1.02178 -0.0044852 0) (1.02187 -0.00446619 0) (1.02196 -0.00444748 0) (1.02205 -0.00442909 0) (1.02214 -0.00441101 0) (1.02222 -0.00439325 0) (1.02231 -0.0043758 0) (1.02239 -0.00435865 0) (1.02248 -0.00434178 0) (1.02256 -0.00432516 0) (1.02264 -0.00430878 0) (1.02273 -0.00429259 0) (1.02281 -0.00427656 0) (1.02289 -0.00426065 0) (1.02297 -0.00424483 0) (1.02305 -0.00422905 0) (1.02313 -0.00421329 0) (1.02321 -0.0041975 0) (1.02328 -0.00418166 0) (1.02336 -0.00416573 0) (1.02344 -0.0041497 0) (1.02351 -0.00413355 0) (1.02359 -0.00411726 0) (1.02367 -0.00410082 0) (1.02374 -0.00408422 0) (1.02382 -0.00406748 0) (1.02389 -0.00405058 0) (1.02397 -0.00403354 0) (1.02404 -0.00401637 0) (1.02412 -0.00399908 0) (1.02419 -0.00398171 0) (1.02426 -0.00396427 0) (1.02434 -0.0039468 0) (1.02441 -0.00392934 0) (1.02448 -0.00391193 0) (1.02456 -0.00389461 0) (1.02463 -0.00387743 0) (1.0247 -0.00386044 0) (1.02477 -0.00384368 0) (1.02485 -0.00382721 0) (1.02492 -0.00381107 0) (1.02499 -0.0037953 0) (1.02506 -0.00377993 0) (1.02513 -0.00376499 0) (1.02521 -0.00375049 0) (1.02528 -0.00373643 0) (1.02535 -0.00372283 0) (1.02542 -0.00370965 0) (1.02549 -0.00369689 0) (1.02556 -0.00368452 0) (1.02563 -0.00367249 0) (1.0257 -0.00366078 0) (1.02576 -0.00364932 0) (1.02583 -0.00363808 0) (1.0259 -0.00362701 0) (1.02597 -0.00361605 0) (1.02603 -0.00360516 0) (1.0261 -0.0035943 0) (1.02617 -0.00358343 0) (1.02623 -0.0035725 0) (1.0263 -0.00356148 0) (1.02636 -0.00355034 0) (1.02643 -0.00353906 0) (1.02649 -0.00352761 0) (1.02656 -0.00351599 0) (1.02662 -0.00350417 0) (1.02668 -0.00349216 0) (1.02675 -0.00347996 0) (1.02681 -0.00346757 0) (1.02687 -0.00345499 0) (1.02694 -0.00344225 0) (1.027 -0.00342935 0) (1.02707 -0.0034163 0) (1.02713 -0.00340313 0) (1.02719 -0.00338983 0) (1.02726 -0.00337642 0) (1.02732 -0.00336291 0) (1.02738 -0.0033493 0) (1.02745 -0.00333558 0) (1.02751 -0.00332175 0) (1.02757 -0.00330781 0) (1.02764 -0.00329375 0) (1.0277 -0.00327956 0) (1.02777 -0.00326524 0) (1.02783 -0.00325079 0) (1.0279 -0.00323624 0) (1.02796 -0.00322159 0) (1.02803 -0.00320688 0) (1.02809 -0.00319215 0) (1.02816 -0.00317745 0) (1.02822 -0.00316286 0) (1.02829 -0.00314841 0) (1.02836 -0.00313422 0) (1.02174 -0.0046838 0) (1.02184 -0.00466271 0) (1.02193 -0.0046418 0) (1.02202 -0.00462109 0) (1.02212 -0.0046006 0) (1.02221 -0.00458035 0) (1.0223 -0.00456036 0) (1.02239 -0.00454064 0) (1.02248 -0.00452121 0) (1.02256 -0.00450209 0) (1.02265 -0.00448328 0) (1.02274 -0.00446478 0) (1.02283 -0.00444661 0) (1.02291 -0.00442874 0) (1.023 -0.00441117 0) (1.02308 -0.00439389 0) (1.02316 -0.00437686 0) (1.02325 -0.00436007 0) (1.02333 -0.00434347 0) (1.02341 -0.00432705 0) (1.02349 -0.00431076 0) (1.02357 -0.00429456 0) (1.02365 -0.00427843 0) (1.02373 -0.00426231 0) (1.02381 -0.00424619 0) (1.02389 -0.00423003 0) (1.02397 -0.00421381 0) (1.02405 -0.00419749 0) (1.02412 -0.00418107 0) (1.0242 -0.00416453 0) (1.02428 -0.00414786 0) (1.02435 -0.00413106 0) (1.02443 -0.00411412 0) (1.0245 -0.00409704 0) (1.02458 -0.00407984 0) (1.02465 -0.00406252 0) (1.02473 -0.0040451 0) (1.0248 -0.0040276 0) (1.02487 -0.00401006 0) (1.02495 -0.00399249 0) (1.02502 -0.00397493 0) (1.02509 -0.00395742 0) (1.02517 -0.00394001 0) (1.02524 -0.00392273 0) (1.02531 -0.00390564 0) (1.02539 -0.00388878 0) (1.02546 -0.00387219 0) (1.02553 -0.00385592 0) (1.0256 -0.00384001 0) (1.02568 -0.00382449 0) (1.02575 -0.00380938 0) (1.02582 -0.00379469 0) (1.02589 -0.00378044 0) (1.02596 -0.00376663 0) (1.02603 -0.00375323 0) (1.0261 -0.00374025 0) (1.02617 -0.00372763 0) (1.02624 -0.00371536 0) (1.02631 -0.0037034 0) (1.02638 -0.00369169 0) (1.02645 -0.0036802 0) (1.02652 -0.00366888 0) (1.02658 -0.00365768 0) (1.02665 -0.00364656 0) (1.02672 -0.00363548 0) (1.02678 -0.00362439 0) (1.02685 -0.00361326 0) (1.02691 -0.00360205 0) (1.02698 -0.00359074 0) (1.02705 -0.0035793 0) (1.02711 -0.00356772 0) (1.02717 -0.00355597 0) (1.02724 -0.00354404 0) (1.0273 -0.00353194 0) (1.02737 -0.00351966 0) (1.02743 -0.0035072 0) (1.0275 -0.00349457 0) (1.02756 -0.00348179 0) (1.02762 -0.00346886 0) (1.02769 -0.0034558 0) (1.02775 -0.00344262 0) (1.02781 -0.00342933 0) (1.02788 -0.00341594 0) (1.02794 -0.00340246 0) (1.02801 -0.00338888 0) (1.02807 -0.00337521 0) (1.02813 -0.00336145 0) (1.0282 -0.00334758 0) (1.02826 -0.0033336 0) (1.02833 -0.00331951 0) (1.02839 -0.0033053 0) (1.02846 -0.00329098 0) (1.02852 -0.00327656 0) (1.02859 -0.00326205 0) (1.02865 -0.00324748 0) (1.02872 -0.0032329 0) (1.02878 -0.00321835 0) (1.02885 -0.00320389 0) (1.02892 -0.00318956 0) (1.02898 -0.00317548 0) (1.02237 -0.00474069 0) (1.02247 -0.00471916 0) (1.02256 -0.00469783 0) (1.02265 -0.0046767 0) (1.02274 -0.00465579 0) (1.02284 -0.00463513 0) (1.02293 -0.00461473 0) (1.02302 -0.00459461 0) (1.02311 -0.00457477 0) (1.0232 -0.00455525 0) (1.02328 -0.00453603 0) (1.02337 -0.00451714 0) (1.02346 -0.00449856 0) (1.02354 -0.00448028 0) (1.02363 -0.00446231 0) (1.02371 -0.00444462 0) (1.0238 -0.0044272 0) (1.02388 -0.00441001 0) (1.02396 -0.00439303 0) (1.02405 -0.00437622 0) (1.02413 -0.00435956 0) (1.02421 -0.004343 0) (1.02429 -0.00432651 0) (1.02437 -0.00431006 0) (1.02445 -0.00429361 0) (1.02453 -0.00427714 0) (1.0246 -0.00426063 0) (1.02468 -0.00424404 0) (1.02476 -0.00422736 0) (1.02484 -0.00421058 0) (1.02491 -0.00419368 0) (1.02499 -0.00417667 0) (1.02506 -0.00415954 0) (1.02514 -0.00414229 0) (1.02522 -0.00412493 0) (1.02529 -0.00410746 0) (1.02537 -0.00408992 0) (1.02544 -0.0040723 0) (1.02551 -0.00405465 0) (1.02559 -0.00403697 0) (1.02566 -0.00401932 0) (1.02574 -0.00400172 0) (1.02581 -0.00398422 0) (1.02588 -0.00396685 0) (1.02596 -0.00394966 0) (1.02603 -0.0039327 0) (1.0261 -0.003916 0) (1.02618 -0.00389961 0) (1.02625 -0.00388357 0) (1.02632 -0.0038679 0) (1.02639 -0.00385263 0) (1.02646 -0.00383777 0) (1.02654 -0.00382333 0) (1.02661 -0.00380931 0) (1.02668 -0.00379571 0) (1.02675 -0.00378249 0) (1.02682 -0.00376965 0) (1.02689 -0.00375714 0) (1.02696 -0.00374494 0) (1.02703 -0.00373299 0) (1.0271 -0.00372126 0) (1.02716 -0.0037097 0) (1.02723 -0.00369827 0) (1.0273 -0.00368692 0) (1.02737 -0.00367562 0) (1.02743 -0.00366432 0) (1.0275 -0.003653 0) (1.02756 -0.00364161 0) (1.02763 -0.00363013 0) (1.0277 -0.00361853 0) (1.02776 -0.00360681 0) (1.02783 -0.00359493 0) (1.02789 -0.0035829 0) (1.02796 -0.0035707 0) (1.02802 -0.00355834 0) (1.02808 -0.00354582 0) (1.02815 -0.00353314 0) (1.02821 -0.00352032 0) (1.02828 -0.00350737 0) (1.02834 -0.00349429 0) (1.0284 -0.0034811 0) (1.02847 -0.00346782 0) (1.02853 -0.00345444 0) (1.0286 -0.00344098 0) (1.02866 -0.00342744 0) (1.02873 -0.00341382 0) (1.02879 -0.00340011 0) (1.02885 -0.00338631 0) (1.02892 -0.00337242 0) (1.02898 -0.00335842 0) (1.02905 -0.00334432 0) (1.02911 -0.00333012 0) (1.02918 -0.00331583 0) (1.02924 -0.00330146 0) (1.02931 -0.00328703 0) (1.02938 -0.00327259 0) (1.02944 -0.00325818 0) (1.02951 -0.00324385 0) (1.02957 -0.00322965 0) (1.02964 -0.00321568 0) (1.02303 -0.00479608 0) (1.02312 -0.00477413 0) (1.02322 -0.00475238 0) (1.02331 -0.00473084 0) (1.0234 -0.00470954 0) (1.0235 -0.00468848 0) (1.02359 -0.00466768 0) (1.02368 -0.00464717 0) (1.02377 -0.00462695 0) (1.02386 -0.00460703 0) (1.02394 -0.00458743 0) (1.02403 -0.00456814 0) (1.02412 -0.00454917 0) (1.02421 -0.0045305 0) (1.02429 -0.00451214 0) (1.02438 -0.00449406 0) (1.02446 -0.00447625 0) (1.02455 -0.00445868 0) (1.02463 -0.00444132 0) (1.02471 -0.00442414 0) (1.02479 -0.00440711 0) (1.02487 -0.0043902 0) (1.02496 -0.00437337 0) (1.02504 -0.00435659 0) (1.02512 -0.00433983 0) (1.02519 -0.00432306 0) (1.02527 -0.00430625 0) (1.02535 -0.0042894 0) (1.02543 -0.00427247 0) (1.02551 -0.00425545 0) (1.02558 -0.00423834 0) (1.02566 -0.00422112 0) (1.02573 -0.0042038 0) (1.02581 -0.00418638 0) (1.02589 -0.00416887 0) (1.02596 -0.00415127 0) (1.02604 -0.00413359 0) (1.02611 -0.00411586 0) (1.02619 -0.0040981 0) (1.02626 -0.00408033 0) (1.02633 -0.00406259 0) (1.02641 -0.0040449 0) (1.02648 -0.00402731 0) (1.02656 -0.00400985 0) (1.02663 -0.00399257 0) (1.0267 -0.00397551 0) (1.02678 -0.00395871 0) (1.02685 -0.0039422 0) (1.02692 -0.00392603 0) (1.027 -0.00391022 0) (1.02707 -0.00389479 0) (1.02714 -0.00387976 0) (1.02721 -0.00386515 0) (1.02728 -0.00385094 0) (1.02736 -0.00383712 0) (1.02743 -0.0038237 0) (1.0275 -0.00381063 0) (1.02757 -0.00379789 0) (1.02764 -0.00378545 0) (1.02771 -0.00377327 0) (1.02778 -0.0037613 0) (1.02784 -0.00374951 0) (1.02791 -0.00373785 0) (1.02798 -0.00372629 0) (1.02805 -0.00371477 0) (1.02811 -0.00370327 0) (1.02818 -0.00369175 0) (1.02825 -0.00368019 0) (1.02831 -0.00366854 0) (1.02838 -0.00365679 0) (1.02845 -0.00364493 0) (1.02851 -0.00363293 0) (1.02858 -0.00362079 0) (1.02864 -0.0036085 0) (1.02871 -0.00359607 0) (1.02877 -0.00358348 0) (1.02884 -0.00357075 0) (1.0289 -0.00355789 0) (1.02896 -0.00354491 0) (1.02903 -0.00353181 0) (1.02909 -0.00351862 0) (1.02916 -0.00350534 0) (1.02922 -0.00349197 0) (1.02929 -0.00347854 0) (1.02935 -0.00346503 0) (1.02942 -0.00345145 0) (1.02948 -0.0034378 0) (1.02954 -0.00342407 0) (1.02961 -0.00341025 0) (1.02967 -0.00339635 0) (1.02974 -0.00338235 0) (1.0298 -0.00336826 0) (1.02987 -0.00335409 0) (1.02994 -0.00333986 0) (1.03 -0.00332557 0) (1.03007 -0.00331127 0) (1.03013 -0.00329699 0) (1.0302 -0.0032828 0) (1.03027 -0.00326873 0) (1.03034 -0.00325486 0) (1.02372 -0.00485005 0) (1.02381 -0.00482769 0) (1.02391 -0.00480554 0) (1.024 -0.00478361 0) (1.0241 -0.00476192 0) (1.02419 -0.00474047 0) (1.02428 -0.0047193 0) (1.02437 -0.0046984 0) (1.02446 -0.0046778 0) (1.02455 -0.00465751 0) (1.02464 -0.00463753 0) (1.02473 -0.00461786 0) (1.02482 -0.00459851 0) (1.0249 -0.00457946 0) (1.02499 -0.00456072 0) (1.02507 -0.00454227 0) (1.02516 -0.00452408 0) (1.02524 -0.00450613 0) (1.02533 -0.00448841 0) (1.02541 -0.00447087 0) (1.02549 -0.00445349 0) (1.02557 -0.00443623 0) (1.02566 -0.00441907 0) (1.02574 -0.00440197 0) (1.02582 -0.0043849 0) (1.0259 -0.00436784 0) (1.02597 -0.00435076 0) (1.02605 -0.00433364 0) (1.02613 -0.00431646 0) (1.02621 -0.00429921 0) (1.02629 -0.00428189 0) (1.02636 -0.00426447 0) (1.02644 -0.00424697 0) (1.02652 -0.00422939 0) (1.02659 -0.00421172 0) (1.02667 -0.00419398 0) (1.02674 -0.00417618 0) (1.02682 -0.00415834 0) (1.02689 -0.00414048 0) (1.02697 -0.00412261 0) (1.02704 -0.00410478 0) (1.02712 -0.00408701 0) (1.02719 -0.00406933 0) (1.02727 -0.00405179 0) (1.02734 -0.00403442 0) (1.02741 -0.00401727 0) (1.02749 -0.00400036 0) (1.02756 -0.00398375 0) (1.02764 -0.00396745 0) (1.02771 -0.00395151 0) (1.02778 -0.00393593 0) (1.02785 -0.00392074 0) (1.02793 -0.00390595 0) (1.028 -0.00389155 0) (1.02807 -0.00387755 0) (1.02814 -0.00386391 0) (1.02821 -0.00385063 0) (1.02828 -0.00383767 0) (1.02835 -0.003825 0) (1.02842 -0.00381259 0) (1.02849 -0.0038004 0) (1.02856 -0.00378838 0) (1.02863 -0.0037765 0) (1.0287 -0.00376472 0) (1.02877 -0.003753 0) (1.02883 -0.0037413 0) (1.0289 -0.00372959 0) (1.02897 -0.00371785 0) (1.02903 -0.00370604 0) (1.0291 -0.00369414 0) (1.02917 -0.00368214 0) (1.02923 -0.00367003 0) (1.0293 -0.00365778 0) (1.02936 -0.0036454 0) (1.02943 -0.00363288 0) (1.02949 -0.00362023 0) (1.02956 -0.00360745 0) (1.02962 -0.00359455 0) (1.02969 -0.00358154 0) (1.02975 -0.00356843 0) (1.02982 -0.00355522 0) (1.02988 -0.00354194 0) (1.02995 -0.00352859 0) (1.03001 -0.00351517 0) (1.03008 -0.0035017 0) (1.03014 -0.00348816 0) (1.03021 -0.00347456 0) (1.03027 -0.00346089 0) (1.03034 -0.00344715 0) (1.0304 -0.00343333 0) (1.03047 -0.00341943 0) (1.03053 -0.00340546 0) (1.0306 -0.00339141 0) (1.03067 -0.0033773 0) (1.03073 -0.00336315 0) (1.0308 -0.00334899 0) (1.03087 -0.00333485 0) (1.03093 -0.00332078 0) (1.031 -0.00330683 0) (1.03107 -0.00329308 0) (1.02444 -0.00490267 0) (1.02454 -0.00487992 0) (1.02464 -0.00485738 0) (1.02473 -0.00483507 0) (1.02482 -0.004813 0) (1.02492 -0.00479118 0) (1.02501 -0.00476964 0) (1.0251 -0.00474838 0) (1.02519 -0.00472741 0) (1.02528 -0.00470675 0) (1.02537 -0.0046864 0) (1.02546 -0.00466636 0) (1.02555 -0.00464665 0) (1.02563 -0.00462724 0) (1.02572 -0.00460813 0) (1.02581 -0.00458931 0) (1.02589 -0.00457075 0) (1.02598 -0.00455245 0) (1.02606 -0.00453437 0) (1.02615 -0.00451648 0) (1.02623 -0.00449875 0) (1.02631 -0.00448116 0) (1.02639 -0.00446368 0) (1.02647 -0.00444626 0) (1.02655 -0.0044289 0) (1.02663 -0.00441155 0) (1.02671 -0.00439419 0) (1.02679 -0.00437682 0) (1.02687 -0.0043594 0) (1.02695 -0.00434193 0) (1.02703 -0.00432439 0) (1.0271 -0.00430679 0) (1.02718 -0.00428911 0) (1.02726 -0.00427136 0) (1.02733 -0.00425355 0) (1.02741 -0.00423567 0) (1.02749 -0.00421775 0) (1.02756 -0.0041998 0) (1.02764 -0.00418183 0) (1.02771 -0.00416388 0) (1.02779 -0.00414596 0) (1.02786 -0.0041281 0) (1.02794 -0.00411035 0) (1.02801 -0.00409273 0) (1.02809 -0.00407527 0) (1.02816 -0.00405803 0) (1.02824 -0.00404103 0) (1.02831 -0.0040243 0) (1.02838 -0.00400789 0) (1.02846 -0.00399182 0) (1.02853 -0.0039761 0) (1.0286 -0.00396076 0) (1.02868 -0.0039458 0) (1.02875 -0.00393122 0) (1.02882 -0.00391702 0) (1.02889 -0.00390319 0) (1.02897 -0.0038897 0) (1.02904 -0.00387652 0) (1.02911 -0.00386364 0) (1.02918 -0.00385101 0) (1.02925 -0.00383859 0) (1.02932 -0.00382635 0) (1.02939 -0.00381426 0) (1.02946 -0.00380227 0) (1.02952 -0.00379034 0) (1.02959 -0.00377845 0) (1.02966 -0.00376656 0) (1.02973 -0.00375464 0) (1.02979 -0.00374267 0) (1.02986 -0.00373063 0) (1.02993 -0.0037185 0) (1.02999 -0.00370626 0) (1.03006 -0.00369391 0) (1.03013 -0.00368144 0) (1.03019 -0.00366884 0) (1.03026 -0.00365613 0) (1.03032 -0.0036433 0) (1.03039 -0.00363035 0) (1.03045 -0.00361731 0) (1.03052 -0.00360418 0) (1.03058 -0.00359097 0) (1.03065 -0.00357769 0) (1.03071 -0.00356434 0) (1.03078 -0.00355095 0) (1.03084 -0.0035375 0) (1.03091 -0.003524 0) (1.03098 -0.00351044 0) (1.03104 -0.00349684 0) (1.03111 -0.00348317 0) (1.03117 -0.00346943 0) (1.03124 -0.00345563 0) (1.0313 -0.00344176 0) (1.03137 -0.00342783 0) (1.03144 -0.00341384 0) (1.0315 -0.00339982 0) (1.03157 -0.00338579 0) (1.03164 -0.00337179 0) (1.03171 -0.00335785 0) (1.03177 -0.00334402 0) (1.03184 -0.00333038 0) (1.02521 -0.00495402 0) (1.0253 -0.00493089 0) (1.0254 -0.00490797 0) (1.02549 -0.00488529 0) (1.02559 -0.00486285 0) (1.02568 -0.00484068 0) (1.02577 -0.00481877 0) (1.02587 -0.00479716 0) (1.02596 -0.00477584 0) (1.02605 -0.00475482 0) (1.02614 -0.00473412 0) (1.02623 -0.00471373 0) (1.02632 -0.00469365 0) (1.0264 -0.00467389 0) (1.02649 -0.00465442 0) (1.02658 -0.00463524 0) (1.02667 -0.00461634 0) (1.02675 -0.00459768 0) (1.02684 -0.00457926 0) (1.02692 -0.00456103 0) (1.027 -0.00454297 0) (1.02709 -0.00452506 0) (1.02717 -0.00450725 0) (1.02725 -0.00448954 0) (1.02733 -0.00447188 0) (1.02741 -0.00445425 0) (1.02749 -0.00443663 0) (1.02757 -0.004419 0) (1.02765 -0.00440135 0) (1.02773 -0.00438366 0) (1.02781 -0.00436592 0) (1.02789 -0.00434813 0) (1.02796 -0.00433028 0) (1.02804 -0.00431237 0) (1.02812 -0.00429441 0) (1.02819 -0.0042764 0) (1.02827 -0.00425836 0) (1.02835 -0.0042403 0) (1.02842 -0.00422224 0) (1.0285 -0.00420419 0) (1.02857 -0.00418619 0) (1.02865 -0.00416825 0) (1.02873 -0.00415042 0) (1.0288 -0.00413272 0) (1.02888 -0.00411518 0) (1.02895 -0.00409785 0) (1.02903 -0.00408076 0) (1.0291 -0.00406393 0) (1.02918 -0.00404741 0) (1.02925 -0.00403121 0) (1.02932 -0.00401536 0) (1.0294 -0.00399987 0) (1.02947 -0.00398475 0) (1.02954 -0.00397 0) (1.02962 -0.00395562 0) (1.02969 -0.00394159 0) (1.02976 -0.0039279 0) (1.02983 -0.00391452 0) (1.0299 -0.00390142 0) (1.02998 -0.00388857 0) (1.03005 -0.00387594 0) (1.03012 -0.00386349 0) (1.03019 -0.00385119 0) (1.03026 -0.00383899 0) (1.03032 -0.00382687 0) (1.03039 -0.00381479 0) (1.03046 -0.00380272 0) (1.03053 -0.00379063 0) (1.0306 -0.0037785 0) (1.03066 -0.00376632 0) (1.03073 -0.00375405 0) (1.0308 -0.0037417 0) (1.03086 -0.00372924 0) (1.03093 -0.00371668 0) (1.031 -0.00370401 0) (1.03106 -0.00369122 0) (1.03113 -0.00367834 0) (1.0312 -0.00366535 0) (1.03126 -0.00365228 0) (1.03133 -0.00363913 0) (1.03139 -0.0036259 0) (1.03146 -0.00361262 0) (1.03152 -0.00359929 0) (1.03159 -0.0035859 0) (1.03166 -0.00357248 0) (1.03172 -0.00355901 0) (1.03179 -0.00354551 0) (1.03185 -0.00353196 0) (1.03192 -0.00351835 0) (1.03199 -0.0035047 0) (1.03205 -0.00349099 0) (1.03212 -0.00347722 0) (1.03219 -0.0034634 0) (1.03225 -0.00344953 0) (1.03232 -0.00343564 0) (1.03239 -0.00342174 0) (1.03246 -0.00340786 0) (1.03252 -0.00339406 0) (1.03259 -0.00338035 0) (1.03266 -0.00336681 0) (1.02601 -0.00500417 0) (1.02611 -0.00498066 0) (1.0262 -0.00495738 0) (1.0263 -0.00493434 0) (1.02639 -0.00491155 0) (1.02649 -0.00488903 0) (1.02658 -0.00486678 0) (1.02667 -0.00484482 0) (1.02677 -0.00482315 0) (1.02686 -0.0048018 0) (1.02695 -0.00478075 0) (1.02704 -0.00476002 0) (1.02713 -0.0047396 0) (1.02722 -0.00471948 0) (1.02731 -0.00469968 0) (1.02739 -0.00468015 0) (1.02748 -0.00466091 0) (1.02757 -0.00464191 0) (1.02765 -0.00462315 0) (1.02774 -0.00460459 0) (1.02782 -0.00458621 0) (1.0279 -0.00456798 0) (1.02799 -0.00454987 0) (1.02807 -0.00453185 0) (1.02815 -0.00451391 0) (1.02823 -0.00449601 0) (1.02831 -0.00447813 0) (1.02839 -0.00446026 0) (1.02847 -0.00444238 0) (1.02855 -0.00442447 0) (1.02863 -0.00440653 0) (1.02871 -0.00438855 0) (1.02879 -0.00437053 0) (1.02887 -0.00435247 0) (1.02894 -0.00433436 0) (1.02902 -0.00431623 0) (1.0291 -0.00429807 0) (1.02918 -0.0042799 0) (1.02925 -0.00426174 0) (1.02933 -0.00424361 0) (1.02941 -0.00422552 0) (1.02948 -0.00420751 0) (1.02956 -0.0041896 0) (1.02963 -0.00417182 0) (1.02971 -0.00415421 0) (1.02979 -0.0041368 0) (1.02986 -0.00411961 0) (1.02994 -0.00410269 0) (1.03001 -0.00408606 0) (1.03009 -0.00406975 0) (1.03016 -0.00405376 0) (1.03024 -0.00403813 0) (1.03031 -0.00402286 0) (1.03038 -0.00400795 0) (1.03046 -0.00399339 0) (1.03053 -0.00397918 0) (1.0306 -0.00396529 0) (1.03068 -0.00395171 0) (1.03075 -0.00393841 0) (1.03082 -0.00392535 0) (1.03089 -0.00391251 0) (1.03096 -0.00389985 0) (1.03103 -0.00388734 0) (1.0311 -0.00387495 0) (1.03117 -0.00386263 0) (1.03124 -0.00385036 0) (1.03131 -0.00383812 0) (1.03138 -0.00382586 0) (1.03145 -0.00381358 0) (1.03151 -0.00380125 0) (1.03158 -0.00378886 0) (1.03165 -0.00377638 0) (1.03172 -0.00376382 0) (1.03178 -0.00375117 0) (1.03185 -0.00373842 0) (1.03192 -0.00372557 0) (1.03198 -0.00371263 0) (1.03205 -0.00369961 0) (1.03212 -0.0036865 0) (1.03218 -0.00367332 0) (1.03225 -0.00366009 0) (1.03232 -0.0036468 0) (1.03238 -0.00363347 0) (1.03245 -0.0036201 0) (1.03252 -0.0036067 0) (1.03258 -0.00359327 0) (1.03265 -0.0035798 0) (1.03271 -0.0035663 0) (1.03278 -0.00355277 0) (1.03285 -0.00353919 0) (1.03292 -0.00352556 0) (1.03298 -0.00351189 0) (1.03305 -0.00349817 0) (1.03312 -0.00348442 0) (1.03319 -0.00347065 0) (1.03325 -0.00345688 0) (1.03332 -0.00344313 0) (1.03339 -0.00342945 0) (1.03346 -0.00341586 0) (1.03353 -0.00340244 0) (1.02686 -0.0050532 0) (1.02696 -0.00502933 0) (1.02705 -0.00500569 0) (1.02715 -0.00498231 0) (1.02725 -0.00495917 0) (1.02734 -0.00493631 0) (1.02743 -0.00491373 0) (1.02753 -0.00489143 0) (1.02762 -0.00486944 0) (1.02771 -0.00484775 0) (1.02781 -0.00482637 0) (1.0279 -0.0048053 0) (1.02799 -0.00478455 0) (1.02808 -0.0047641 0) (1.02816 -0.00474396 0) (1.02825 -0.0047241 0) (1.02834 -0.00470452 0) (1.02843 -0.0046852 0) (1.02851 -0.0046661 0) (1.0286 -0.00464722 0) (1.02868 -0.00462853 0) (1.02877 -0.00460999 0) (1.02885 -0.00459158 0) (1.02894 -0.00457328 0) (1.02902 -0.00455506 0) (1.0291 -0.00453689 0) (1.02918 -0.00451876 0) (1.02926 -0.00450065 0) (1.02934 -0.00448254 0) (1.02942 -0.00446443 0) (1.0295 -0.00444629 0) (1.02958 -0.00442813 0) (1.02966 -0.00440994 0) (1.02974 -0.00439172 0) (1.02982 -0.00437348 0) (1.0299 -0.00435522 0) (1.02998 -0.00433694 0) (1.03005 -0.00431867 0) (1.03013 -0.00430041 0) (1.03021 -0.00428219 0) (1.03029 -0.00426402 0) (1.03036 -0.00424594 0) (1.03044 -0.00422795 0) (1.03052 -0.0042101 0) (1.03059 -0.00419242 0) (1.03067 -0.00417492 0) (1.03074 -0.00415766 0) (1.03082 -0.00414064 0) (1.0309 -0.00412391 0) (1.03097 -0.00410748 0) (1.03105 -0.00409138 0) (1.03112 -0.00407561 0) (1.0312 -0.00406019 0) (1.03127 -0.00404512 0) (1.03135 -0.00403039 0) (1.03142 -0.004016 0) (1.03149 -0.00400193 0) (1.03157 -0.00398815 0) (1.03164 -0.00397465 0) (1.03171 -0.0039614 0) (1.03178 -0.00394835 0) (1.03186 -0.00393549 0) (1.03193 -0.00392278 0) (1.032 -0.00391019 0) (1.03207 -0.00389769 0) (1.03214 -0.00388524 0) (1.03221 -0.00387282 0) (1.03228 -0.0038604 0) (1.03235 -0.00384797 0) (1.03242 -0.00383549 0) (1.03248 -0.00382297 0) (1.03255 -0.00381038 0) (1.03262 -0.00379772 0) (1.03269 -0.00378497 0) (1.03276 -0.00377214 0) (1.03282 -0.00375923 0) (1.03289 -0.00374623 0) (1.03296 -0.00373316 0) (1.03302 -0.00372002 0) (1.03309 -0.00370682 0) (1.03316 -0.00369357 0) (1.03323 -0.00368028 0) (1.03329 -0.00366695 0) (1.03336 -0.0036536 0) (1.03343 -0.00364022 0) (1.03349 -0.00362681 0) (1.03356 -0.00361339 0) (1.03363 -0.00359994 0) (1.0337 -0.00358646 0) (1.03376 -0.00357295 0) (1.03383 -0.0035594 0) (1.0339 -0.00354583 0) (1.03397 -0.00353221 0) (1.03403 -0.00351857 0) (1.0341 -0.00350492 0) (1.03417 -0.00349127 0) (1.03424 -0.00347764 0) (1.03431 -0.00346409 0) (1.03438 -0.00345062 0) (1.03445 -0.0034373 0) (1.02776 -0.00510117 0) (1.02785 -0.00507695 0) (1.02795 -0.00505297 0) (1.02805 -0.00502925 0) (1.02815 -0.00500579 0) (1.02824 -0.0049826 0) (1.02834 -0.00495969 0) (1.02843 -0.00493707 0) (1.02852 -0.00491475 0) (1.02862 -0.00489274 0) (1.02871 -0.00487104 0) (1.0288 -0.00484965 0) (1.02889 -0.00482857 0) (1.02898 -0.0048078 0) (1.02907 -0.00478733 0) (1.02916 -0.00476715 0) (1.02925 -0.00474725 0) (1.02934 -0.00472761 0) (1.02943 -0.0047082 0) (1.02951 -0.004689 0) (1.0296 -0.00467 0) (1.02968 -0.00465116 0) (1.02977 -0.00463246 0) (1.02985 -0.00461388 0) (1.02994 -0.00459539 0) (1.03002 -0.00457696 0) (1.0301 -0.00455859 0) (1.03018 -0.00454024 0) (1.03027 -0.00452191 0) (1.03035 -0.00450359 0) (1.03043 -0.00448526 0) (1.03051 -0.00446692 0) (1.03059 -0.00444856 0) (1.03067 -0.00443019 0) (1.03075 -0.00441181 0) (1.03082 -0.00439343 0) (1.0309 -0.00437504 0) (1.03098 -0.00435666 0) (1.03106 -0.00433831 0) (1.03114 -0.00432001 0) (1.03122 -0.00430176 0) (1.03129 -0.0042836 0) (1.03137 -0.00426554 0) (1.03145 -0.00424762 0) (1.03153 -0.00422986 0) (1.0316 -0.00421229 0) (1.03168 -0.00419494 0) (1.03176 -0.00417784 0) (1.03183 -0.00416101 0) (1.03191 -0.00414448 0) (1.03199 -0.00412825 0) (1.03206 -0.00411236 0) (1.03214 -0.0040968 0) (1.03221 -0.00408157 0) (1.03229 -0.00406669 0) (1.03236 -0.00405212 0) (1.03244 -0.00403787 0) (1.03251 -0.00402391 0) (1.03259 -0.00401022 0) (1.03266 -0.00399676 0) (1.03273 -0.00398353 0) (1.03281 -0.00397047 0) (1.03288 -0.00395757 0) (1.03295 -0.00394478 0) (1.03302 -0.00393209 0) (1.03309 -0.00391946 0) (1.03316 -0.00390687 0) (1.03323 -0.0038943 0) (1.0333 -0.00388171 0) (1.03337 -0.0038691 0) (1.03344 -0.00385645 0) (1.03351 -0.00384374 0) (1.03358 -0.00383097 0) (1.03365 -0.00381814 0) (1.03372 -0.00380523 0) (1.03378 -0.00379225 0) (1.03385 -0.0037792 0) (1.03392 -0.00376608 0) (1.03399 -0.00375291 0) (1.03406 -0.00373968 0) (1.03412 -0.00372642 0) (1.03419 -0.00371311 0) (1.03426 -0.00369979 0) (1.03433 -0.00368644 0) (1.03439 -0.00367308 0) (1.03446 -0.0036597 0) (1.03453 -0.00364631 0) (1.0346 -0.00363291 0) (1.03467 -0.00361949 0) (1.03473 -0.00360604 0) (1.0348 -0.00359257 0) (1.03487 -0.00357908 0) (1.03494 -0.00356557 0) (1.03501 -0.00355203 0) (1.03508 -0.00353849 0) (1.03515 -0.00352496 0) (1.03522 -0.00351146 0) (1.03529 -0.00349802 0) (1.03536 -0.00348467 0) (1.03543 -0.00347146 0) (1.0287 -0.00514817 0) (1.0288 -0.00512361 0) (1.0289 -0.0050993 0) (1.029 -0.00507525 0) (1.0291 -0.00505147 0) (1.02919 -0.00502796 0) (1.02929 -0.00500473 0) (1.02939 -0.0049818 0) (1.02948 -0.00495917 0) (1.02957 -0.00493685 0) (1.02967 -0.00491483 0) (1.02976 -0.00489313 0) (1.02985 -0.00487174 0) (1.02994 -0.00485066 0) (1.03004 -0.00482988 0) (1.03013 -0.00480938 0) (1.03022 -0.00478917 0) (1.0303 -0.00476921 0) (1.03039 -0.0047495 0) (1.03048 -0.00473 0) (1.03057 -0.0047107 0) (1.03065 -0.00469157 0) (1.03074 -0.00467258 0) (1.03082 -0.00465372 0) (1.03091 -0.00463497 0) (1.03099 -0.00461629 0) (1.03108 -0.00459767 0) (1.03116 -0.00457909 0) (1.03124 -0.00456055 0) (1.03132 -0.00454202 0) (1.0314 -0.0045235 0) (1.03149 -0.00450499 0) (1.03157 -0.00448647 0) (1.03165 -0.00446795 0) (1.03173 -0.00444943 0) (1.03181 -0.00443092 0) (1.03189 -0.00441242 0) (1.03197 -0.00439395 0) (1.03205 -0.0043755 0) (1.03213 -0.00435711 0) (1.0322 -0.00433879 0) (1.03228 -0.00432055 0) (1.03236 -0.00430243 0) (1.03244 -0.00428444 0) (1.03252 -0.00426661 0) (1.0326 -0.00424897 0) (1.03267 -0.00423154 0) (1.03275 -0.00421435 0) (1.03283 -0.00419743 0) (1.03291 -0.00418079 0) (1.03298 -0.00416446 0) (1.03306 -0.00414844 0) (1.03314 -0.00413274 0) (1.03321 -0.00411738 0) (1.03329 -0.00410233 0) (1.03337 -0.0040876 0) (1.03344 -0.00407318 0) (1.03352 -0.00405904 0) (1.03359 -0.00404516 0) (1.03367 -0.00403152 0) (1.03374 -0.00401809 0) (1.03381 -0.00400484 0) (1.03389 -0.00399175 0) (1.03396 -0.00397878 0) (1.03403 -0.00396591 0) (1.0341 -0.00395311 0) (1.03417 -0.00394035 0) (1.03425 -0.00392761 0) (1.03432 -0.00391488 0) (1.03439 -0.00390213 0) (1.03446 -0.00388935 0) (1.03453 -0.00387653 0) (1.0346 -0.00386366 0) (1.03467 -0.00385073 0) (1.03474 -0.00383774 0) (1.03481 -0.00382469 0) (1.03487 -0.00381158 0) (1.03494 -0.00379842 0) (1.03501 -0.00378521 0) (1.03508 -0.00377196 0) (1.03515 -0.00375867 0) (1.03522 -0.00374536 0) (1.03529 -0.00373203 0) (1.03536 -0.00371869 0) (1.03542 -0.00370535 0) (1.03549 -0.00369199 0) (1.03556 -0.00367864 0) (1.03563 -0.00366527 0) (1.0357 -0.0036519 0) (1.03577 -0.00363852 0) (1.03584 -0.00362513 0) (1.03591 -0.00361172 0) (1.03598 -0.0035983 0) (1.03605 -0.00358486 0) (1.03612 -0.00357143 0) (1.03619 -0.00355802 0) (1.03626 -0.00354463 0) (1.03633 -0.00353131 0) (1.0364 -0.00351807 0) (1.03647 -0.00350497 0) (1.02971 -0.00519427 0) (1.02981 -0.00516938 0) (1.02991 -0.00514475 0) (1.03001 -0.00512038 0) (1.0301 -0.00509628 0) (1.0302 -0.00507247 0) (1.0303 -0.00504894 0) (1.0304 -0.0050257 0) (1.03049 -0.00500277 0) (1.03059 -0.00498014 0) (1.03068 -0.00495783 0) (1.03078 -0.00493582 0) (1.03087 -0.00491413 0) (1.03096 -0.00489274 0) (1.03105 -0.00487166 0) (1.03115 -0.00485086 0) (1.03124 -0.00483034 0) (1.03133 -0.00481008 0) (1.03142 -0.00479007 0) (1.03151 -0.00477027 0) (1.03159 -0.00475068 0) (1.03168 -0.00473127 0) (1.03177 -0.00471201 0) (1.03185 -0.00469288 0) (1.03194 -0.00467386 0) (1.03202 -0.00465493 0) (1.03211 -0.00463608 0) (1.03219 -0.00461728 0) (1.03228 -0.00459852 0) (1.03236 -0.00457979 0) (1.03244 -0.00456109 0) (1.03253 -0.0045424 0) (1.03261 -0.00452372 0) (1.03269 -0.00450506 0) (1.03277 -0.0044864 0) (1.03285 -0.00446777 0) (1.03293 -0.00444916 0) (1.03301 -0.00443058 0) (1.03309 -0.00441205 0) (1.03317 -0.00439357 0) (1.03325 -0.00437517 0) (1.03333 -0.00435686 0) (1.03341 -0.00433867 0) (1.03349 -0.00432061 0) (1.03357 -0.00430272 0) (1.03365 -0.004285 0) (1.03373 -0.0042675 0) (1.03381 -0.00425024 0) (1.03389 -0.00423323 0) (1.03397 -0.00421649 0) (1.03404 -0.00420005 0) (1.03412 -0.00418391 0) (1.0342 -0.00416809 0) (1.03428 -0.00415258 0) (1.03435 -0.00413739 0) (1.03443 -0.0041225 0) (1.03451 -0.00410791 0) (1.03458 -0.0040936 0) (1.03466 -0.00407954 0) (1.03474 -0.00406572 0) (1.03481 -0.0040521 0) (1.03489 -0.00403867 0) (1.03496 -0.0040254 0) (1.03503 -0.00401224 0) (1.03511 -0.0039992 0) (1.03518 -0.00398622 0) (1.03525 -0.0039733 0) (1.03532 -0.00396041 0) (1.0354 -0.00394752 0) (1.03547 -0.00393464 0) (1.03554 -0.00392173 0) (1.03561 -0.0039088 0) (1.03568 -0.00389582 0) (1.03575 -0.0038828 0) (1.03582 -0.00386973 0) (1.03589 -0.00385661 0) (1.03596 -0.00384344 0) (1.03603 -0.00383023 0) (1.0361 -0.00381698 0) (1.03617 -0.0038037 0) (1.03624 -0.0037904 0) (1.03631 -0.00377708 0) (1.03638 -0.00376374 0) (1.03645 -0.00375041 0) (1.03652 -0.00373707 0) (1.03659 -0.00372374 0) (1.03666 -0.00371042 0) (1.03673 -0.00369709 0) (1.0368 -0.00368377 0) (1.03687 -0.00367045 0) (1.03694 -0.00365712 0) (1.03701 -0.00364379 0) (1.03708 -0.00363045 0) (1.03715 -0.00361712 0) (1.03722 -0.00360379 0) (1.03729 -0.00359049 0) (1.03736 -0.00357721 0) (1.03744 -0.00356401 0) (1.03751 -0.00355088 0) (1.03758 -0.00353789 0) (1.03077 -0.00523954 0) (1.03087 -0.00521433 0) (1.03097 -0.00518939 0) (1.03107 -0.00516471 0) (1.03117 -0.00514032 0) (1.03127 -0.0051162 0) (1.03137 -0.00509237 0) (1.03147 -0.00506885 0) (1.03157 -0.00504562 0) (1.03166 -0.0050227 0) (1.03176 -0.00500009 0) (1.03185 -0.00497779 0) (1.03195 -0.00495581 0) (1.03204 -0.00493412 0) (1.03214 -0.00491274 0) (1.03223 -0.00489165 0) (1.03232 -0.00487083 0) (1.03241 -0.00485028 0) (1.0325 -0.00482998 0) (1.03259 -0.0048099 0) (1.03268 -0.00479002 0) (1.03277 -0.00477033 0) (1.03286 -0.0047508 0) (1.03295 -0.00473141 0) (1.03303 -0.00471214 0) (1.03312 -0.00469297 0) (1.03321 -0.00467388 0) (1.03329 -0.00465486 0) (1.03338 -0.00463589 0) (1.03346 -0.00461697 0) (1.03355 -0.00459808 0) (1.03363 -0.00457922 0) (1.03371 -0.00456039 0) (1.0338 -0.00454157 0) (1.03388 -0.00452279 0) (1.03396 -0.00450403 0) (1.03404 -0.00448531 0) (1.03412 -0.00446663 0) (1.03421 -0.00444801 0) (1.03429 -0.00442945 0) (1.03437 -0.00441098 0) (1.03445 -0.0043926 0) (1.03453 -0.00437434 0) (1.03461 -0.00435621 0) (1.03469 -0.00433825 0) (1.03477 -0.00432047 0) (1.03485 -0.0043029 0) (1.03493 -0.00428556 0) (1.03501 -0.00426846 0) (1.03509 -0.00425164 0) (1.03517 -0.00423509 0) (1.03525 -0.00421884 0) (1.03533 -0.0042029 0) (1.03541 -0.00418726 0) (1.03549 -0.00417192 0) (1.03556 -0.00415689 0) (1.03564 -0.00414213 0) (1.03572 -0.00412765 0) (1.0358 -0.00411342 0) (1.03587 -0.00409942 0) (1.03595 -0.00408563 0) (1.03603 -0.00407202 0) (1.0361 -0.00405856 0) (1.03618 -0.00404523 0) (1.03625 -0.00403201 0) (1.03632 -0.00401887 0) (1.0364 -0.00400578 0) (1.03647 -0.00399274 0) (1.03655 -0.00397971 0) (1.03662 -0.00396669 0) (1.03669 -0.00395365 0) (1.03676 -0.0039406 0) (1.03683 -0.00392752 0) (1.03691 -0.00391441 0) (1.03698 -0.00390126 0) (1.03705 -0.00388807 0) (1.03712 -0.00387484 0) (1.03719 -0.00386158 0) (1.03726 -0.00384829 0) (1.03733 -0.00383498 0) (1.0374 -0.00382165 0) (1.03748 -0.00380832 0) (1.03755 -0.00379498 0) (1.03762 -0.00378165 0) (1.03769 -0.00376832 0) (1.03776 -0.00375501 0) (1.03783 -0.00374171 0) (1.0379 -0.00372842 0) (1.03797 -0.00371514 0) (1.03804 -0.00370188 0) (1.03811 -0.00368861 0) (1.03819 -0.00367535 0) (1.03826 -0.0036621 0) (1.03833 -0.00364886 0) (1.0384 -0.00363563 0) (1.03847 -0.00362243 0) (1.03855 -0.00360927 0) (1.03862 -0.00359617 0) (1.03869 -0.00358316 0) (1.03876 -0.00357028 0) (1.0319 -0.00528407 0) (1.032 -0.00525855 0) (1.0321 -0.0052333 0) (1.03221 -0.00520832 0) (1.03231 -0.00518363 0) (1.03241 -0.00515923 0) (1.03251 -0.00513511 0) (1.03261 -0.0051113 0) (1.03271 -0.00508779 0) (1.0328 -0.00506459 0) (1.0329 -0.00504169 0) (1.033 -0.00501911 0) (1.0331 -0.00499684 0) (1.03319 -0.00497487 0) (1.03329 -0.0049532 0) (1.03338 -0.00493182 0) (1.03347 -0.00491072 0) (1.03357 -0.00488989 0) (1.03366 -0.0048693 0) (1.03375 -0.00484894 0) (1.03384 -0.00482878 0) (1.03393 -0.00480882 0) (1.03402 -0.00478903 0) (1.03411 -0.00476938 0) (1.0342 -0.00474987 0) (1.03429 -0.00473046 0) (1.03437 -0.00471114 0) (1.03446 -0.0046919 0) (1.03455 -0.00467273 0) (1.03463 -0.00465362 0) (1.03472 -0.00463454 0) (1.0348 -0.00461552 0) (1.03489 -0.00459652 0) (1.03497 -0.00457757 0) (1.03506 -0.00455865 0) (1.03514 -0.00453978 0) (1.03522 -0.00452095 0) (1.03531 -0.00450217 0) (1.03539 -0.00448345 0) (1.03547 -0.00446481 0) (1.03555 -0.00444626 0) (1.03564 -0.00442781 0) (1.03572 -0.00440949 0) (1.0358 -0.0043913 0) (1.03588 -0.00437327 0) (1.03596 -0.00435543 0) (1.03605 -0.00433779 0) (1.03613 -0.00432037 0) (1.03621 -0.0043032 0) (1.03629 -0.00428628 0) (1.03637 -0.00426964 0) (1.03645 -0.00425329 0) (1.03653 -0.00423723 0) (1.03661 -0.00422146 0) (1.03669 -0.00420599 0) (1.03677 -0.00419081 0) (1.03685 -0.0041759 0) (1.03693 -0.00416126 0) (1.03701 -0.00414686 0) (1.03709 -0.00413269 0) (1.03716 -0.00411872 0) (1.03724 -0.00410494 0) (1.03732 -0.00409131 0) (1.03739 -0.0040778 0) (1.03747 -0.00406441 0) (1.03754 -0.0040511 0) (1.03762 -0.00403786 0) (1.03769 -0.00402466 0) (1.03777 -0.00401149 0) (1.03784 -0.00399833 0) (1.03792 -0.00398517 0) (1.03799 -0.00397201 0) (1.03806 -0.00395882 0) (1.03814 -0.00394561 0) (1.03821 -0.00393238 0) (1.03828 -0.00391912 0) (1.03836 -0.00390583 0) (1.03843 -0.00389252 0) (1.0385 -0.00387919 0) (1.03857 -0.00386584 0) (1.03864 -0.00385249 0) (1.03872 -0.00383914 0) (1.03879 -0.0038258 0) (1.03886 -0.00381247 0) (1.03893 -0.00379915 0) (1.039 -0.00378585 0) (1.03908 -0.00377257 0) (1.03915 -0.00375932 0) (1.03922 -0.00374608 0) (1.03929 -0.00373286 0) (1.03937 -0.00371966 0) (1.03944 -0.00370647 0) (1.03951 -0.0036933 0) (1.03958 -0.00368014 0) (1.03966 -0.00366701 0) (1.03973 -0.00365391 0) (1.0398 -0.00364085 0) (1.03988 -0.00362787 0) (1.03995 -0.00361496 0) (1.04003 -0.00360218 0) (1.03309 -0.00532792 0) (1.0332 -0.00530209 0) (1.0333 -0.00527655 0) (1.03341 -0.00525129 0) (1.03351 -0.00522631 0) (1.03361 -0.00520162 0) (1.03372 -0.00517723 0) (1.03382 -0.00515314 0) (1.03392 -0.00512935 0) (1.03402 -0.00510588 0) (1.03412 -0.00508271 0) (1.03421 -0.00505985 0) (1.03431 -0.0050373 0) (1.03441 -0.00501506 0) (1.03451 -0.00499311 0) (1.0346 -0.00497145 0) (1.0347 -0.00495007 0) (1.03479 -0.00492896 0) (1.03488 -0.00490809 0) (1.03498 -0.00488746 0) (1.03507 -0.00486704 0) (1.03516 -0.00484682 0) (1.03525 -0.00482676 0) (1.03534 -0.00480687 0) (1.03543 -0.00478711 0) (1.03552 -0.00476747 0) (1.03561 -0.00474793 0) (1.0357 -0.00472848 0) (1.03579 -0.0047091 0) (1.03588 -0.00468979 0) (1.03596 -0.00467055 0) (1.03605 -0.00465135 0) (1.03614 -0.0046322 0) (1.03622 -0.00461311 0) (1.03631 -0.00459406 0) (1.03639 -0.00457506 0) (1.03648 -0.00455612 0) (1.03656 -0.00453725 0) (1.03665 -0.00451844 0) (1.03673 -0.00449972 0) (1.03682 -0.00448109 0) (1.0369 -0.00446258 0) (1.03698 -0.00444419 0) (1.03707 -0.00442594 0) (1.03715 -0.00440785 0) (1.03723 -0.00438994 0) (1.03732 -0.00437224 0) (1.0374 -0.00435475 0) (1.03748 -0.0043375 0) (1.03756 -0.0043205 0) (1.03765 -0.00430377 0) (1.03773 -0.00428731 0) (1.03781 -0.00427114 0) (1.03789 -0.00425525 0) (1.03797 -0.00423965 0) (1.03805 -0.00422433 0) (1.03814 -0.00420927 0) (1.03822 -0.00419448 0) (1.0383 -0.00417992 0) (1.03838 -0.00416558 0) (1.03845 -0.00415145 0) (1.03853 -0.00413749 0) (1.03861 -0.00412369 0) (1.03869 -0.00411002 0) (1.03877 -0.00409646 0) (1.03884 -0.00408299 0) (1.03892 -0.00406959 0) (1.039 -0.00405624 0) (1.03907 -0.00404293 0) (1.03915 -0.00402963 0) (1.03922 -0.00401635 0) (1.0393 -0.00400307 0) (1.03937 -0.00398978 0) (1.03945 -0.00397647 0) (1.03952 -0.00396316 0) (1.0396 -0.00394982 0) (1.03967 -0.00393647 0) (1.03975 -0.0039231 0) (1.03982 -0.00390973 0) (1.03989 -0.00389635 0) (1.03997 -0.00388298 0) (1.04004 -0.00386961 0) (1.04011 -0.00385625 0) (1.04019 -0.00384292 0) (1.04026 -0.00382961 0) (1.04033 -0.00381632 0) (1.04041 -0.00380307 0) (1.04048 -0.00378984 0) (1.04055 -0.00377664 0) (1.04063 -0.00376347 0) (1.0407 -0.00375032 0) (1.04078 -0.00373719 0) (1.04085 -0.00372409 0) (1.04092 -0.00371102 0) (1.041 -0.00369797 0) (1.04107 -0.00368497 0) (1.04115 -0.00367202 0) (1.04122 -0.00365914 0) (1.0413 -0.00364634 0) (1.04137 -0.00363366 0) (1.03437 -0.00537116 0) (1.03447 -0.00534505 0) (1.03458 -0.00531921 0) (1.03468 -0.00529367 0) (1.03479 -0.00526842 0) (1.03489 -0.00524346 0) (1.035 -0.00521879 0) (1.0351 -0.00519443 0) (1.0352 -0.00517038 0) (1.0353 -0.00514664 0) (1.03541 -0.0051232 0) (1.03551 -0.00510008 0) (1.0356 -0.00507726 0) (1.0357 -0.00505475 0) (1.0358 -0.00503253 0) (1.0359 -0.0050106 0) (1.036 -0.00498895 0) (1.03609 -0.00496757 0) (1.03619 -0.00494644 0) (1.03628 -0.00492554 0) (1.03638 -0.00490486 0) (1.03647 -0.00488437 0) (1.03656 -0.00486407 0) (1.03666 -0.00484393 0) (1.03675 -0.00482393 0) (1.03684 -0.00480406 0) (1.03693 -0.0047843 0) (1.03702 -0.00476464 0) (1.03711 -0.00474507 0) (1.0372 -0.00472557 0) (1.03729 -0.00470615 0) (1.03738 -0.00468679 0) (1.03747 -0.00466749 0) (1.03755 -0.00464825 0) (1.03764 -0.00462907 0) (1.03773 -0.00460996 0) (1.03781 -0.00459091 0) (1.0379 -0.00457193 0) (1.03799 -0.00455304 0) (1.03807 -0.00453424 0) (1.03816 -0.00451553 0) (1.03824 -0.00449695 0) (1.03833 -0.00447849 0) (1.03841 -0.00446018 0) (1.0385 -0.00444203 0) (1.03858 -0.00442407 0) (1.03867 -0.0044063 0) (1.03875 -0.00438874 0) (1.03884 -0.00437142 0) (1.03892 -0.00435434 0) (1.03901 -0.00433752 0) (1.03909 -0.00432097 0) (1.03917 -0.00430469 0) (1.03926 -0.00428869 0) (1.03934 -0.00427296 0) (1.03942 -0.00425751 0) (1.0395 -0.00424231 0) (1.03959 -0.00422737 0) (1.03967 -0.00421266 0) (1.03975 -0.00419816 0) (1.03983 -0.00418386 0) (1.03991 -0.00416974 0) (1.03999 -0.00415577 0) (1.04007 -0.00414193 0) (1.04015 -0.00412821 0) (1.04023 -0.00411458 0) (1.04031 -0.00410102 0) (1.04039 -0.00408753 0) (1.04046 -0.00407407 0) (1.04054 -0.00406064 0) (1.04062 -0.00404724 0) (1.04069 -0.00403384 0) (1.04077 -0.00402044 0) (1.04085 -0.00400704 0) (1.04092 -0.00399364 0) (1.041 -0.00398023 0) (1.04107 -0.00396681 0) (1.04115 -0.00395339 0) (1.04122 -0.00393997 0) (1.0413 -0.00392656 0) (1.04138 -0.00391315 0) (1.04145 -0.00389976 0) (1.04153 -0.0038864 0) (1.0416 -0.00387306 0) (1.04167 -0.00385975 0) (1.04175 -0.00384647 0) (1.04182 -0.00383323 0) (1.0419 -0.00382003 0) (1.04198 -0.00380686 0) (1.04205 -0.00379373 0) (1.04213 -0.00378063 0) (1.0422 -0.00376757 0) (1.04228 -0.00375454 0) (1.04235 -0.00374154 0) (1.04243 -0.00372858 0) (1.0425 -0.00371567 0) (1.04258 -0.00370281 0) (1.04266 -0.00369003 0) (1.04273 -0.00367733 0) (1.04281 -0.00366475 0) (1.03572 -0.00541388 0) (1.03582 -0.00538748 0) (1.03593 -0.00536137 0) (1.03604 -0.00533555 0) (1.03615 -0.00531003 0) (1.03625 -0.0052848 0) (1.03636 -0.00525987 0) (1.03646 -0.00523525 0) (1.03657 -0.00521094 0) (1.03667 -0.00518694 0) (1.03677 -0.00516324 0) (1.03688 -0.00513986 0) (1.03698 -0.00511678 0) (1.03708 -0.00509401 0) (1.03718 -0.00507153 0) (1.03728 -0.00504934 0) (1.03738 -0.00502743 0) (1.03748 -0.00500578 0) (1.03757 -0.00498439 0) (1.03767 -0.00496323 0) (1.03777 -0.00494229 0) (1.03786 -0.00492156 0) (1.03796 -0.00490101 0) (1.03805 -0.00488063 0) (1.03815 -0.0048604 0) (1.03824 -0.0048403 0) (1.03833 -0.00482033 0) (1.03843 -0.00480046 0) (1.03852 -0.00478069 0) (1.03861 -0.00476101 0) (1.0387 -0.00474141 0) (1.03879 -0.00472189 0) (1.03888 -0.00470244 0) (1.03897 -0.00468306 0) (1.03906 -0.00466375 0) (1.03915 -0.00464452 0) (1.03923 -0.00462536 0) (1.03932 -0.00460629 0) (1.03941 -0.0045873 0) (1.0395 -0.00456842 0) (1.03959 -0.00454964 0) (1.03967 -0.00453099 0) (1.03976 -0.00451247 0) (1.03985 -0.0044941 0) (1.03993 -0.00447589 0) (1.04002 -0.00445786 0) (1.04011 -0.00444003 0) (1.04019 -0.00442241 0) (1.04028 -0.00440502 0) (1.04037 -0.00438786 0) (1.04045 -0.00437096 0) (1.04054 -0.00435432 0) (1.04062 -0.00433794 0) (1.04071 -0.00432183 0) (1.04079 -0.00430599 0) (1.04088 -0.0042904 0) (1.04096 -0.00427507 0) (1.04105 -0.00425998 0) (1.04113 -0.00424512 0) (1.04121 -0.00423047 0) (1.0413 -0.00421601 0) (1.04138 -0.00420173 0) (1.04146 -0.00418759 0) (1.04154 -0.0041736 0) (1.04162 -0.00415971 0) (1.0417 -0.00414593 0) (1.04178 -0.00413222 0) (1.04186 -0.00411857 0) (1.04194 -0.00410497 0) (1.04202 -0.00409141 0) (1.0421 -0.00407788 0) (1.04218 -0.00406437 0) (1.04226 -0.00405086 0) (1.04234 -0.00403737 0) (1.04241 -0.00402388 0) (1.04249 -0.00401039 0) (1.04257 -0.0039969 0) (1.04265 -0.00398342 0) (1.04272 -0.00396996 0) (1.0428 -0.0039565 0) (1.04288 -0.00394307 0) (1.04295 -0.00392965 0) (1.04303 -0.00391627 0) (1.04311 -0.00390292 0) (1.04318 -0.00388961 0) (1.04326 -0.00387634 0) (1.04334 -0.00386312 0) (1.04341 -0.00384993 0) (1.04349 -0.00383679 0) (1.04357 -0.0038237 0) (1.04364 -0.00381064 0) (1.04372 -0.00379763 0) (1.0438 -0.00378466 0) (1.04387 -0.00377173 0) (1.04395 -0.00375885 0) (1.04403 -0.00374602 0) (1.04411 -0.00373326 0) (1.04418 -0.00372057 0) (1.04426 -0.00370797 0) (1.04434 -0.00369549 0) (1.03715 -0.00545614 0) (1.03726 -0.00542946 0) (1.03737 -0.00540307 0) (1.03748 -0.00537699 0) (1.03759 -0.0053512 0) (1.0377 -0.00532572 0) (1.03781 -0.00530054 0) (1.03791 -0.00527566 0) (1.03802 -0.0052511 0) (1.03812 -0.00522684 0) (1.03823 -0.0052029 0) (1.03833 -0.00517926 0) (1.03844 -0.00515593 0) (1.03854 -0.0051329 0) (1.03864 -0.00511017 0) (1.03875 -0.00508773 0) (1.03885 -0.00506556 0) (1.03895 -0.00504366 0) (1.03905 -0.00502201 0) (1.03915 -0.0050006 0) (1.03925 -0.00497942 0) (1.03934 -0.00495844 0) (1.03944 -0.00493765 0) (1.03954 -0.00491703 0) (1.03963 -0.00489657 0) (1.03973 -0.00487625 0) (1.03982 -0.00485607 0) (1.03992 -0.004836 0) (1.04001 -0.00481603 0) (1.0401 -0.00479617 0) (1.0402 -0.0047764 0) (1.04029 -0.00475671 0) (1.04038 -0.00473711 0) (1.04047 -0.00471759 0) (1.04056 -0.00469815 0) (1.04066 -0.0046788 0) (1.04075 -0.00465954 0) (1.04084 -0.00464036 0) (1.04093 -0.00462129 0) (1.04102 -0.00460232 0) (1.04111 -0.00458347 0) (1.04119 -0.00456475 0) (1.04128 -0.00454617 0) (1.04137 -0.00452774 0) (1.04146 -0.00450947 0) (1.04155 -0.00449138 0) (1.04164 -0.00447349 0) (1.04173 -0.00445581 0) (1.04182 -0.00443835 0) (1.0419 -0.00442112 0) (1.04199 -0.00440414 0) (1.04208 -0.00438741 0) (1.04217 -0.00437094 0) (1.04225 -0.00435472 0) (1.04234 -0.00433876 0) (1.04243 -0.00432305 0) (1.04251 -0.00430759 0) (1.0426 -0.00429236 0) (1.04269 -0.00427736 0) (1.04277 -0.00426255 0) (1.04286 -0.00424794 0) (1.04294 -0.0042335 0) (1.04302 -0.00421921 0) (1.04311 -0.00420505 0) (1.04319 -0.00419101 0) (1.04327 -0.00417706 0) (1.04335 -0.0041632 0) (1.04344 -0.00414941 0) (1.04352 -0.00413567 0) (1.0436 -0.00412197 0) (1.04368 -0.00410831 0) (1.04376 -0.00409468 0) (1.04384 -0.00408107 0) (1.04392 -0.00406747 0) (1.044 -0.00405389 0) (1.04408 -0.00404032 0) (1.04416 -0.00402676 0) (1.04424 -0.00401322 0) (1.04431 -0.0039997 0) (1.04439 -0.0039862 0) (1.04447 -0.00397272 0) (1.04455 -0.00395928 0) (1.04463 -0.00394588 0) (1.04471 -0.00393251 0) (1.04478 -0.0039192 0) (1.04486 -0.00390593 0) (1.04494 -0.00389271 0) (1.04502 -0.00387954 0) (1.0451 -0.00386642 0) (1.04517 -0.00385335 0) (1.04525 -0.00384034 0) (1.04533 -0.00382737 0) (1.04541 -0.00381445 0) (1.04549 -0.00380158 0) (1.04557 -0.00378876 0) (1.04564 -0.00377601 0) (1.04572 -0.00376333 0) (1.0458 -0.00375072 0) (1.04588 -0.00373821 0) (1.04596 -0.00372581 0) (1.03867 -0.005498 0) (1.03878 -0.00547105 0) (1.0389 -0.0054444 0) (1.03901 -0.00541806 0) (1.03912 -0.00539202 0) (1.03923 -0.00536628 0) (1.03934 -0.00534085 0) (1.03945 -0.00531573 0) (1.03956 -0.00529092 0) (1.03967 -0.00526642 0) (1.03977 -0.00524223 0) (1.03988 -0.00521835 0) (1.03999 -0.00519477 0) (1.04009 -0.0051715 0) (1.0402 -0.00514852 0) (1.0403 -0.00512583 0) (1.04041 -0.00510341 0) (1.04051 -0.00508126 0) (1.04061 -0.00505937 0) (1.04071 -0.00503771 0) (1.04081 -0.00501628 0) (1.04091 -0.00499506 0) (1.04101 -0.00497404 0) (1.04111 -0.00495319 0) (1.04121 -0.0049325 0) (1.04131 -0.00491197 0) (1.04141 -0.00489157 0) (1.0415 -0.0048713 0) (1.0416 -0.00485115 0) (1.04169 -0.0048311 0) (1.04179 -0.00481116 0) (1.04188 -0.00479131 0) (1.04198 -0.00477156 0) (1.04207 -0.0047519 0) (1.04217 -0.00473233 0) (1.04226 -0.00471286 0) (1.04235 -0.00469349 0) (1.04244 -0.00467421 0) (1.04254 -0.00465505 0) (1.04263 -0.004636 0) (1.04272 -0.00461708 0) (1.04281 -0.00459828 0) (1.0429 -0.00457963 0) (1.04299 -0.00456114 0) (1.04308 -0.00454282 0) (1.04318 -0.00452467 0) (1.04327 -0.00450672 0) (1.04336 -0.00448897 0) (1.04345 -0.00447145 0) (1.04354 -0.00445415 0) (1.04363 -0.00443709 0) (1.04372 -0.00442027 0) (1.04381 -0.0044037 0) (1.0439 -0.00438739 0) (1.04398 -0.00437132 0) (1.04407 -0.00435549 0) (1.04416 -0.0043399 0) (1.04425 -0.00432453 0) (1.04434 -0.00430938 0) (1.04442 -0.00429443 0) (1.04451 -0.00427966 0) (1.0446 -0.00426506 0) (1.04468 -0.00425061 0) (1.04477 -0.00423629 0) (1.04485 -0.00422209 0) (1.04494 -0.00420798 0) (1.04502 -0.00419397 0) (1.0451 -0.00418002 0) (1.04519 -0.00416614 0) (1.04527 -0.0041523 0) (1.04535 -0.00413851 0) (1.04543 -0.00412475 0) (1.04552 -0.00411102 0) (1.0456 -0.00409732 0) (1.04568 -0.00408364 0) (1.04576 -0.00406998 0) (1.04584 -0.00405634 0) (1.04592 -0.00404273 0) (1.046 -0.00402914 0) (1.04608 -0.00401559 0) (1.04616 -0.00400207 0) (1.04624 -0.00398859 0) (1.04632 -0.00397515 0) (1.0464 -0.00396176 0) (1.04648 -0.00394843 0) (1.04655 -0.00393514 0) (1.04663 -0.00392192 0) (1.04671 -0.00390875 0) (1.04679 -0.00389564 0) (1.04687 -0.00388259 0) (1.04695 -0.00386959 0) (1.04703 -0.00385665 0) (1.04711 -0.00384377 0) (1.04719 -0.00383095 0) (1.04727 -0.00381818 0) (1.04735 -0.00380549 0) (1.04743 -0.00379287 0) (1.0475 -0.00378033 0) (1.04758 -0.00376789 0) (1.04766 -0.00375557 0) (1.04028 -0.00553954 0) (1.0404 -0.00551232 0) (1.04051 -0.00548542 0) (1.04063 -0.00545882 0) (1.04074 -0.00543253 0) (1.04086 -0.00540654 0) (1.04097 -0.00538087 0) (1.04108 -0.00535551 0) (1.04119 -0.00533046 0) (1.0413 -0.00530572 0) (1.04141 -0.00528129 0) (1.04152 -0.00525718 0) (1.04163 -0.00523336 0) (1.04174 -0.00520985 0) (1.04185 -0.00518663 0) (1.04195 -0.00516369 0) (1.04206 -0.00514104 0) (1.04217 -0.00511864 0) (1.04227 -0.00509651 0) (1.04238 -0.00507461 0) (1.04248 -0.00505294 0) (1.04258 -0.00503149 0) (1.04268 -0.00501023 0) (1.04278 -0.00498915 0) (1.04289 -0.00496825 0) (1.04299 -0.0049475 0) (1.04309 -0.00492689 0) (1.04318 -0.00490642 0) (1.04328 -0.00488608 0) (1.04338 -0.00486585 0) (1.04348 -0.00484573 0) (1.04358 -0.00482572 0) (1.04367 -0.00480582 0) (1.04377 -0.00478602 0) (1.04386 -0.00476632 0) (1.04396 -0.00474672 0) (1.04405 -0.00472724 0) (1.04415 -0.00470786 0) (1.04424 -0.0046886 0) (1.04434 -0.00466947 0) (1.04443 -0.00465046 0) (1.04453 -0.0046316 0) (1.04462 -0.00461288 0) (1.04471 -0.00459432 0) (1.0448 -0.00457593 0) (1.0449 -0.00455772 0) (1.04499 -0.00453971 0) (1.04508 -0.0045219 0) (1.04518 -0.0045043 0) (1.04527 -0.00448693 0) (1.04536 -0.00446979 0) (1.04545 -0.00445289 0) (1.04554 -0.00443622 0) (1.04563 -0.0044198 0) (1.04572 -0.00440361 0) (1.04581 -0.00438766 0) (1.0459 -0.00437194 0) (1.04599 -0.00435644 0) (1.04608 -0.00434114 0) (1.04617 -0.00432603 0) (1.04626 -0.00431111 0) (1.04635 -0.00429634 0) (1.04643 -0.00428172 0) (1.04652 -0.00426724 0) (1.04661 -0.00425287 0) (1.04669 -0.0042386 0) (1.04678 -0.00422441 0) (1.04686 -0.00421031 0) (1.04695 -0.00419627 0) (1.04703 -0.00418228 0) (1.04711 -0.00416834 0) (1.0472 -0.00415444 0) (1.04728 -0.00414058 0) (1.04736 -0.00412676 0) (1.04744 -0.00411296 0) (1.04752 -0.00409919 0) (1.04761 -0.00408546 0) (1.04769 -0.00407176 0) (1.04777 -0.00405809 0) (1.04785 -0.00404446 0) (1.04793 -0.00403088 0) (1.04801 -0.00401734 0) (1.04808 -0.00400385 0) (1.04816 -0.00399042 0) (1.04824 -0.00397704 0) (1.04832 -0.00396373 0) (1.0484 -0.00395047 0) (1.04848 -0.00393728 0) (1.04856 -0.00392416 0) (1.04864 -0.00391109 0) (1.04871 -0.00389809 0) (1.04879 -0.00388516 0) (1.04887 -0.00387229 0) (1.04895 -0.00385948 0) (1.04903 -0.00384674 0) (1.04911 -0.00383407 0) (1.04918 -0.00382149 0) (1.04926 -0.00380899 0) (1.04934 -0.00379659 0) (1.04942 -0.00378431 0) (1.04199 -0.0055808 0) (1.04211 -0.00555332 0) (1.04223 -0.00552617 0) (1.04234 -0.00549933 0) (1.04246 -0.00547279 0) (1.04258 -0.00544656 0) (1.04269 -0.00542065 0) (1.04281 -0.00539505 0) (1.04292 -0.00536977 0) (1.04304 -0.0053448 0) (1.04315 -0.00532014 0) (1.04326 -0.00529579 0) (1.04337 -0.00527174 0) (1.04348 -0.00524799 0) (1.04359 -0.00522453 0) (1.0437 -0.00520136 0) (1.04381 -0.00517847 0) (1.04392 -0.00515584 0) (1.04403 -0.00513346 0) (1.04414 -0.00511133 0) (1.04424 -0.00508942 0) (1.04435 -0.00506773 0) (1.04445 -0.00504624 0) (1.04456 -0.00502494 0) (1.04466 -0.00500381 0) (1.04476 -0.00498284 0) (1.04486 -0.00496203 0) (1.04497 -0.00494136 0) (1.04507 -0.00492082 0) (1.04517 -0.0049004 0) (1.04527 -0.00488011 0) (1.04537 -0.00485993 0) (1.04546 -0.00483987 0) (1.04556 -0.00481992 0) (1.04566 -0.00480008 0) (1.04576 -0.00478036 0) (1.04585 -0.00476075 0) (1.04595 -0.00474127 0) (1.04605 -0.00472191 0) (1.04614 -0.00470267 0) (1.04624 -0.00468358 0) (1.04633 -0.00466463 0) (1.04643 -0.00464583 0) (1.04652 -0.0046272 0) (1.04662 -0.00460873 0) (1.04671 -0.00459045 0) (1.04681 -0.00457237 0) (1.0469 -0.00455448 0) (1.04699 -0.0045368 0) (1.04709 -0.00451934 0) (1.04718 -0.00450211 0) (1.04727 -0.00448511 0) (1.04737 -0.00446833 0) (1.04746 -0.00445179 0) (1.04755 -0.00443548 0) (1.04764 -0.0044194 0) (1.04773 -0.00440353 0) (1.04782 -0.00438787 0) (1.04791 -0.00437241 0) (1.048 -0.00435714 0) (1.04809 -0.00434203 0) (1.04818 -0.00432709 0) (1.04826 -0.00431228 0) (1.04835 -0.00429761 0) (1.04844 -0.00428305 0) (1.04852 -0.00426859 0) (1.04861 -0.00425422 0) (1.04869 -0.00423993 0) (1.04878 -0.00422571 0) (1.04886 -0.00421154 0) (1.04894 -0.00419743 0) (1.04902 -0.00418337 0) (1.0491 -0.00416935 0) (1.04919 -0.00415537 0) (1.04927 -0.00414142 0) (1.04935 -0.00412752 0) (1.04943 -0.00411365 0) (1.0495 -0.00409983 0) (1.04958 -0.00408605 0) (1.04966 -0.00407231 0) (1.04974 -0.00405862 0) (1.04982 -0.00404499 0) (1.04989 -0.00403141 0) (1.04997 -0.0040179 0) (1.05005 -0.00400444 0) (1.05012 -0.00399105 0) (1.0502 -0.00397773 0) (1.05027 -0.00396448 0) (1.05035 -0.00395129 0) (1.05042 -0.00393818 0) (1.0505 -0.00392513 0) (1.05057 -0.00391215 0) (1.05064 -0.00389924 0) (1.05072 -0.0038864 0) (1.05079 -0.00387364 0) (1.05087 -0.00386096 0) (1.05094 -0.00384835 0) (1.05101 -0.00383585 0) (1.05109 -0.00382344 0) (1.05116 -0.00381115 0) (1.0438 -0.00562184 0) (1.04392 -0.0055941 0) (1.04404 -0.0055667 0) (1.04416 -0.00553962 0) (1.04428 -0.00551284 0) (1.0444 -0.00548637 0) (1.04452 -0.00546022 0) (1.04464 -0.00543439 0) (1.04475 -0.00540888 0) (1.04487 -0.00538367 0) (1.04499 -0.00535878 0) (1.0451 -0.0053342 0) (1.04521 -0.00530992 0) (1.04533 -0.00528593 0) (1.04544 -0.00526224 0) (1.04555 -0.00523883 0) (1.04566 -0.00521569 0) (1.04578 -0.00519282 0) (1.04589 -0.00517021 0) (1.04599 -0.00514783 0) (1.0461 -0.00512568 0) (1.04621 -0.00510375 0) (1.04632 -0.00508203 0) (1.04642 -0.00506049 0) (1.04653 -0.00503913 0) (1.04663 -0.00501794 0) (1.04674 -0.00499691 0) (1.04684 -0.00497602 0) (1.04694 -0.00495528 0) (1.04705 -0.00493466 0) (1.04715 -0.00491418 0) (1.04725 -0.00489382 0) (1.04735 -0.00487359 0) (1.04745 -0.00485347 0) (1.04755 -0.00483348 0) (1.04764 -0.00481361 0) (1.04774 -0.00479386 0) (1.04784 -0.00477424 0) (1.04794 -0.00475475 0) (1.04803 -0.0047354 0) (1.04813 -0.00471619 0) (1.04823 -0.00469714 0) (1.04832 -0.00467824 0) (1.04842 -0.0046595 0) (1.04851 -0.00464094 0) (1.04861 -0.00462256 0) (1.0487 -0.00460437 0) (1.04879 -0.00458637 0) (1.04889 -0.00456859 0) (1.04898 -0.00455102 0) (1.04907 -0.00453366 0) (1.04916 -0.00451653 0) (1.04925 -0.00449962 0) (1.04934 -0.00448293 0) (1.04944 -0.00446646 0) (1.04952 -0.0044502 0) (1.04961 -0.00443416 0) (1.0497 -0.00441831 0) (1.04979 -0.00440265 0) (1.04988 -0.00438717 0) (1.04996 -0.00437185 0) (1.05005 -0.00435668 0) (1.05013 -0.00434166 0) (1.05022 -0.00432675 0) (1.0503 -0.00431196 0) (1.05038 -0.00429726 0) (1.05046 -0.00428266 0) (1.05054 -0.00426813 0) (1.05062 -0.00425368 0) (1.0507 -0.00423929 0) (1.05078 -0.00422495 0) (1.05086 -0.00421067 0) (1.05093 -0.00419643 0) (1.05101 -0.00418224 0) (1.05108 -0.0041681 0) (1.05116 -0.004154 0) (1.05123 -0.00413994 0) (1.0513 -0.00412593 0) (1.05138 -0.00411197 0) (1.05145 -0.00409807 0) (1.05152 -0.00408422 0) (1.05159 -0.00407042 0) (1.05166 -0.00405669 0) (1.05173 -0.00404302 0) (1.05179 -0.00402942 0) (1.05186 -0.00401589 0) (1.05193 -0.00400243 0) (1.052 -0.00398905 0) (1.05206 -0.00397573 0) (1.05213 -0.00396249 0) (1.05219 -0.00394933 0) (1.05226 -0.00393623 0) (1.05232 -0.00392321 0) (1.05238 -0.00391027 0) (1.05245 -0.0038974 0) (1.05251 -0.00388462 0) (1.05257 -0.00387193 0) (1.05263 -0.00385933 0) (1.05269 -0.00384683 0) (1.05275 -0.00383446 0) (1.0457 -0.00566264 0) (1.04583 -0.00563465 0) (1.04595 -0.00560701 0) (1.04608 -0.00557967 0) (1.0462 -0.00555264 0) (1.04632 -0.00552593 0) (1.04644 -0.00549954 0) (1.04656 -0.00547347 0) (1.04668 -0.00544772 0) (1.0468 -0.00542228 0) (1.04692 -0.00539715 0) (1.04703 -0.00537232 0) (1.04715 -0.0053478 0) (1.04727 -0.00532357 0) (1.04738 -0.00529963 0) (1.0475 -0.00527597 0) (1.04761 -0.00525258 0) (1.04772 -0.00522945 0) (1.04783 -0.00520658 0) (1.04794 -0.00518395 0) (1.04805 -0.00516154 0) (1.04816 -0.00513935 0) (1.04827 -0.00511736 0) (1.04838 -0.00509557 0) (1.04848 -0.00507396 0) (1.04859 -0.00505252 0) (1.04869 -0.00503124 0) (1.0488 -0.00501011 0) (1.0489 -0.00498913 0) (1.049 -0.00496828 0) (1.0491 -0.00494757 0) (1.0492 -0.004927 0) (1.0493 -0.00490655 0) (1.0494 -0.00488623 0) (1.0495 -0.00486604 0) (1.04959 -0.00484598 0) (1.04969 -0.00482605 0) (1.04979 -0.00480625 0) (1.04988 -0.00478659 0) (1.04998 -0.00476707 0) (1.05007 -0.0047477 0) (1.05016 -0.00472849 0) (1.05026 -0.00470943 0) (1.05035 -0.00469054 0) (1.05044 -0.00467182 0) (1.05053 -0.00465328 0) (1.05062 -0.00463493 0) (1.05071 -0.00461678 0) (1.0508 -0.00459883 0) (1.05089 -0.00458108 0) (1.05097 -0.00456354 0) (1.05106 -0.00454622 0) (1.05115 -0.0045291 0) (1.05123 -0.0045122 0) (1.05131 -0.00449551 0) (1.0514 -0.00447902 0) (1.05148 -0.00446272 0) (1.05156 -0.00444662 0) (1.05164 -0.00443069 0) (1.05172 -0.00441492 0) (1.0518 -0.00439932 0) (1.05188 -0.00438385 0) (1.05195 -0.00436852 0) (1.05203 -0.00435331 0) (1.0521 -0.0043382 0) (1.05217 -0.00432319 0) (1.05224 -0.00430827 0) (1.05231 -0.00429342 0) (1.05238 -0.00427865 0) (1.05245 -0.00426394 0) (1.05252 -0.00424929 0) (1.05258 -0.0042347 0) (1.05264 -0.00422015 0) (1.05271 -0.00420566 0) (1.05277 -0.00419122 0) (1.05283 -0.00417683 0) (1.05289 -0.00416249 0) (1.05295 -0.0041482 0) (1.05301 -0.00413397 0) (1.05306 -0.00411979 0) (1.05312 -0.00410567 0) (1.05317 -0.00409162 0) (1.05322 -0.00407763 0) (1.05328 -0.00406371 0) (1.05333 -0.00404986 0) (1.05338 -0.00403609 0) (1.05343 -0.00402239 0) (1.05348 -0.00400876 0) (1.05352 -0.00399521 0) (1.05357 -0.00398174 0) (1.05361 -0.00396834 0) (1.05366 -0.00395502 0) (1.0537 -0.00394178 0) (1.05374 -0.00392862 0) (1.05379 -0.00391554 0) (1.05383 -0.00390255 0) (1.05387 -0.00388965 0) (1.05391 -0.00387685 0) (1.05394 -0.00386415 0) (1.05398 -0.00385157 0) (1.0477 -0.0057031 0) (1.04783 -0.00567485 0) (1.04796 -0.00564693 0) (1.04808 -0.00561933 0) (1.04821 -0.00559204 0) (1.04833 -0.00556506 0) (1.04845 -0.00553841 0) (1.04857 -0.00551208 0) (1.04869 -0.00548606 0) (1.04881 -0.00546035 0) (1.04893 -0.00543495 0) (1.04905 -0.00540985 0) (1.04917 -0.00538505 0) (1.04928 -0.00536054 0) (1.0494 -0.00533632 0) (1.04951 -0.00531237 0) (1.04962 -0.00528869 0) (1.04973 -0.00526526 0) (1.04984 -0.00524209 0) (1.04995 -0.00521915 0) (1.05006 -0.00519643 0) (1.05017 -0.00517393 0) (1.05027 -0.00515164 0) (1.05038 -0.00512953 0) (1.05048 -0.00510761 0) (1.05058 -0.00508585 0) (1.05069 -0.00506426 0) (1.05079 -0.00504283 0) (1.05088 -0.00502154 0) (1.05098 -0.0050004 0) (1.05108 -0.00497939 0) (1.05117 -0.00495852 0) (1.05127 -0.00493779 0) (1.05136 -0.00491718 0) (1.05145 -0.00489671 0) (1.05154 -0.00487638 0) (1.05163 -0.00485618 0) (1.05172 -0.00483612 0) (1.05181 -0.0048162 0) (1.05189 -0.00479642 0) (1.05198 -0.00477679 0) (1.05206 -0.00475732 0) (1.05214 -0.00473801 0) (1.05223 -0.00471886 0) (1.05231 -0.00469989 0) (1.05239 -0.00468109 0) (1.05247 -0.00466248 0) (1.05254 -0.00464406 0) (1.05262 -0.00462583 0) (1.0527 -0.0046078 0) (1.05277 -0.00458997 0) (1.05284 -0.00457234 0) (1.05291 -0.00455491 0) (1.05298 -0.00453768 0) (1.05305 -0.00452064 0) (1.05312 -0.0045038 0) (1.05319 -0.00448714 0) (1.05325 -0.00447065 0) (1.05331 -0.00445433 0) (1.05337 -0.00443816 0) (1.05343 -0.00442214 0) (1.05349 -0.00440625 0) (1.05355 -0.00439049 0) (1.0536 -0.00437484 0) (1.05366 -0.00435929 0) (1.05371 -0.00434383 0) (1.05376 -0.00432846 0) (1.05381 -0.00431316 0) (1.05385 -0.00429793 0) (1.0539 -0.00428277 0) (1.05394 -0.00426767 0) (1.05398 -0.00425263 0) (1.05402 -0.00423764 0) (1.05406 -0.00422271 0) (1.05409 -0.00420783 0) (1.05413 -0.00419301 0) (1.05416 -0.00417824 0) (1.05419 -0.00416353 0) (1.05422 -0.00414888 0) (1.05425 -0.00413429 0) (1.05427 -0.00411977 0) (1.0543 -0.00410531 0) (1.05432 -0.00409092 0) (1.05434 -0.00407661 0) (1.05436 -0.00406236 0) (1.05438 -0.0040482 0) (1.0544 -0.00403411 0) (1.05441 -0.0040201 0) (1.05443 -0.00400617 0) (1.05444 -0.00399232 0) (1.05445 -0.00397855 0) (1.05446 -0.00396486 0) (1.05447 -0.00395125 0) (1.05447 -0.00393772 0) (1.05448 -0.00392429 0) (1.05448 -0.00391094 0) (1.05448 -0.00389769 0) (1.05449 -0.00388454 0) (1.05448 -0.00387149 0) (1.05448 -0.00385856 0) (1.04978 -0.00574281 0) (1.04991 -0.00571424 0) (1.05003 -0.00568601 0) (1.05016 -0.00565809 0) (1.05028 -0.00563047 0) (1.0504 -0.00560317 0) (1.05052 -0.00557619 0) (1.05064 -0.00554953 0) (1.05076 -0.00552318 0) (1.05087 -0.00549714 0) (1.05099 -0.0054714 0) (1.0511 -0.00544595 0) (1.05121 -0.0054208 0) (1.05133 -0.00539593 0) (1.05143 -0.00537133 0) (1.05154 -0.00534701 0) (1.05165 -0.00532294 0) (1.05175 -0.00529913 0) (1.05186 -0.00527555 0) (1.05196 -0.00525221 0) (1.05206 -0.00522908 0) (1.05216 -0.00520616 0) (1.05225 -0.00518345 0) (1.05235 -0.00516091 0) (1.05244 -0.00513856 0) (1.05253 -0.00511638 0) (1.05262 -0.00509435 0) (1.05271 -0.00507248 0) (1.05279 -0.00505076 0) (1.05288 -0.00502919 0) (1.05296 -0.00500775 0) (1.05304 -0.00498645 0) (1.05312 -0.00496529 0) (1.0532 -0.00494426 0) (1.05327 -0.00492337 0) (1.05335 -0.00490261 0) (1.05342 -0.00488199 0) (1.05349 -0.00486151 0) (1.05356 -0.00484118 0) (1.05362 -0.00482098 0) (1.05369 -0.00480094 0) (1.05375 -0.00478105 0) (1.05381 -0.00476133 0) (1.05387 -0.00474176 0) (1.05393 -0.00472236 0) (1.05398 -0.00470314 0) (1.05404 -0.0046841 0) (1.05409 -0.00466523 0) (1.05414 -0.00464655 0) (1.05419 -0.00462806 0) (1.05424 -0.00460976 0) (1.05428 -0.00459165 0) (1.05432 -0.00457373 0) (1.05436 -0.00455599 0) (1.0544 -0.00453844 0) (1.05444 -0.00452106 0) (1.05447 -0.00450385 0) (1.0545 -0.0044868 0) (1.05453 -0.00446991 0) (1.05456 -0.00445315 0) (1.05459 -0.00443654 0) (1.05461 -0.00442004 0) (1.05463 -0.00440366 0) (1.05465 -0.00438739 0) (1.05466 -0.00437121 0) (1.05468 -0.00435512 0) (1.05469 -0.00433911 0) (1.05469 -0.00432317 0) (1.0547 -0.00430731 0) (1.0547 -0.00429151 0) (1.0547 -0.00427578 0) (1.0547 -0.0042601 0) (1.0547 -0.00424449 0) (1.05469 -0.00422893 0) (1.05468 -0.00421344 0) (1.05467 -0.004198 0) (1.05466 -0.00418262 0) (1.05464 -0.00416731 0) (1.05462 -0.00415206 0) (1.0546 -0.00413688 0) (1.05458 -0.00412176 0) (1.05455 -0.00410672 0) (1.05452 -0.00409176 0) (1.0545 -0.00407687 0) (1.05446 -0.00406205 0) (1.05443 -0.00404732 0) (1.05439 -0.00403267 0) (1.05435 -0.0040181 0) (1.05431 -0.00400362 0) (1.05427 -0.00398921 0) (1.05423 -0.00397489 0) (1.05418 -0.00396066 0) (1.05413 -0.00394651 0) (1.05408 -0.00393245 0) (1.05403 -0.00391848 0) (1.05397 -0.00390461 0) (1.05392 -0.00389084 0) (1.05386 -0.00387717 0) (1.0538 -0.00386361 0) (1.05373 -0.00385017 0) (1.05188 -0.00578069 0) (1.052 -0.0057517 0) (1.05211 -0.00572304 0) (1.05223 -0.00569467 0) (1.05234 -0.0056666 0) (1.05246 -0.00563885 0) (1.05257 -0.00561142 0) (1.05268 -0.00558429 0) (1.05278 -0.00555747 0) (1.05289 -0.00553094 0) (1.05299 -0.00550471 0) (1.05309 -0.00547876 0) (1.05319 -0.0054531 0) (1.05328 -0.0054277 0) (1.05338 -0.00540257 0) (1.05347 -0.0053777 0) (1.05356 -0.00535308 0) (1.05364 -0.00532869 0) (1.05373 -0.00530454 0) (1.05381 -0.0052806 0) (1.05389 -0.00525687 0) (1.05396 -0.00523335 0) (1.05404 -0.00521001 0) (1.05411 -0.00518685 0) (1.05418 -0.00516387 0) (1.05424 -0.00514104 0) (1.0543 -0.00511838 0) (1.05436 -0.00509587 0) (1.05442 -0.0050735 0) (1.05448 -0.00505127 0) (1.05453 -0.00502919 0) (1.05458 -0.00500724 0) (1.05462 -0.00498542 0) (1.05467 -0.00496374 0) (1.05471 -0.0049422 0) (1.05475 -0.00492079 0) (1.05478 -0.00489952 0) (1.05482 -0.00487839 0) (1.05485 -0.0048574 0) (1.05487 -0.00483656 0) (1.0549 -0.00481586 0) (1.05492 -0.00479532 0) (1.05494 -0.00477493 0) (1.05496 -0.00475471 0) (1.05497 -0.00473465 0) (1.05498 -0.00471475 0) (1.05499 -0.00469503 0) (1.05499 -0.00467549 0) (1.055 -0.00465612 0) (1.055 -0.00463693 0) (1.05499 -0.00461791 0) (1.05499 -0.00459908 0) (1.05498 -0.00458042 0) (1.05497 -0.00456193 0) (1.05495 -0.00454362 0) (1.05493 -0.00452546 0) (1.05491 -0.00450746 0) (1.05489 -0.00448961 0) (1.05486 -0.0044719 0) (1.05483 -0.00445433 0) (1.05479 -0.00443687 0) (1.05476 -0.00441954 0) (1.05472 -0.00440231 0) (1.05467 -0.00438518 0) (1.05462 -0.00436814 0) (1.05457 -0.00435119 0) (1.05452 -0.00433432 0) (1.05446 -0.00431753 0) (1.0544 -0.00430081 0) (1.05434 -0.00428415 0) (1.05427 -0.00426757 0) (1.0542 -0.00425105 0) (1.05413 -0.00423459 0) (1.05405 -0.0042182 0) (1.05397 -0.00420188 0) (1.05389 -0.00418562 0) (1.0538 -0.00416943 0) (1.05371 -0.00415331 0) (1.05362 -0.00413726 0) (1.05352 -0.00412128 0) (1.05342 -0.00410539 0) (1.05332 -0.00408957 0) (1.05322 -0.00407383 0) (1.05311 -0.00405818 0) (1.053 -0.00404261 0) (1.05289 -0.00402712 0) (1.05277 -0.00401173 0) (1.05266 -0.00399642 0) (1.05254 -0.0039812 0) (1.05241 -0.00396606 0) (1.05229 -0.00395102 0) (1.05216 -0.00393607 0) (1.05202 -0.00392122 0) (1.05189 -0.00390645 0) (1.05175 -0.00389179 0) (1.05161 -0.00387723 0) (1.05147 -0.00386277 0) (1.05133 -0.00384842 0) (1.05118 -0.00383418 0) (1.05103 -0.00382007 0) (1.05386 -0.00581434 0) (1.05396 -0.00578471 0) (1.05406 -0.00575539 0) (1.05415 -0.00572635 0) (1.05425 -0.00569759 0) (1.05433 -0.00566915 0) (1.05442 -0.00564101 0) (1.0545 -0.00561317 0) (1.05458 -0.00558562 0) (1.05465 -0.00555835 0) (1.05473 -0.00553135 0) (1.05479 -0.00550464 0) (1.05486 -0.00547818 0) (1.05492 -0.00545198 0) (1.05498 -0.00542604 0) (1.05503 -0.00540033 0) (1.05508 -0.00537486 0) (1.05513 -0.00534961 0) (1.05517 -0.00532458 0) (1.05521 -0.00529976 0) (1.05525 -0.00527513 0) (1.05528 -0.00525069 0) (1.05531 -0.00522643 0) (1.05533 -0.00520234 0) (1.05535 -0.00517841 0) (1.05537 -0.00515464 0) (1.05538 -0.00513103 0) (1.05538 -0.00510756 0) (1.05539 -0.00508423 0) (1.05539 -0.00506104 0) (1.05538 -0.00503799 0) (1.05537 -0.00501507 0) (1.05536 -0.00499229 0) (1.05535 -0.00496964 0) (1.05532 -0.00494713 0) (1.0553 -0.00492476 0) (1.05527 -0.00490252 0) (1.05524 -0.00488043 0) (1.0552 -0.00485847 0) (1.05516 -0.00483667 0) (1.05512 -0.00481501 0) (1.05507 -0.0047935 0) (1.05502 -0.00477215 0) (1.05496 -0.00475096 0) (1.0549 -0.00472993 0) (1.05483 -0.00470906 0) (1.05477 -0.00468837 0) (1.05469 -0.00466784 0) (1.05462 -0.00464748 0) (1.05454 -0.00462729 0) (1.05445 -0.00460727 0) (1.05436 -0.00458742 0) (1.05427 -0.00456774 0) (1.05417 -0.00454822 0) (1.05407 -0.00452885 0) (1.05397 -0.00450965 0) (1.05386 -0.00449058 0) (1.05375 -0.00447166 0) (1.05363 -0.00445287 0) (1.05351 -0.00443421 0) (1.05338 -0.00441567 0) (1.05325 -0.00439724 0) (1.05312 -0.00437891 0) (1.05298 -0.00436068 0) (1.05284 -0.00434255 0) (1.05269 -0.0043245 0) (1.05254 -0.00430654 0) (1.05238 -0.00428866 0) (1.05223 -0.00427085 0) (1.05206 -0.00425313 0) (1.0519 -0.00423548 0) (1.05172 -0.0042179 0) (1.05155 -0.0042004 0) (1.05137 -0.00418297 0) (1.05119 -0.00416562 0) (1.051 -0.00414835 0) (1.05081 -0.00413116 0) (1.05062 -0.00411405 0) (1.05042 -0.00409702 0) (1.05022 -0.00408007 0) (1.05001 -0.00406322 0) (1.04981 -0.00404645 0) (1.04959 -0.00402978 0) (1.04938 -0.0040132 0) (1.04916 -0.00399671 0) (1.04894 -0.00398032 0) (1.04872 -0.00396402 0) (1.04849 -0.00394782 0) (1.04826 -0.00393172 0) (1.04802 -0.00391572 0) (1.04778 -0.00389982 0) (1.04754 -0.00388402 0) (1.0473 -0.00386832 0) (1.04705 -0.00385272 0) (1.0468 -0.00383723 0) (1.04655 -0.00382186 0) (1.04629 -0.00380659 0) (1.04604 -0.00379144 0) (1.04577 -0.00377641 0) (1.04551 -0.00376151 0) (1.05548 -0.00583908 0) (1.05553 -0.00580843 0) (1.05558 -0.00577807 0) (1.05563 -0.00574796 0) (1.05567 -0.00571814 0) (1.05571 -0.00568861 0) (1.05574 -0.00565937 0) (1.05576 -0.00563041 0) (1.05579 -0.00560172 0) (1.0558 -0.0055733 0) (1.05581 -0.00554515 0) (1.05582 -0.00551724 0) (1.05582 -0.00548959 0) (1.05582 -0.00546218 0) (1.05581 -0.005435 0) (1.05579 -0.00540804 0) (1.05577 -0.00538131 0) (1.05574 -0.00535478 0) (1.05571 -0.00532846 0) (1.05567 -0.00530233 0) (1.05563 -0.00527639 0) (1.05558 -0.00525062 0) (1.05553 -0.00522503 0) (1.05547 -0.0051996 0) (1.0554 -0.00517433 0) (1.05533 -0.00514921 0) (1.05525 -0.00512424 0) (1.05517 -0.00509941 0) (1.05508 -0.00507473 0) (1.05499 -0.00505019 0) (1.05489 -0.00502578 0) (1.05479 -0.00500152 0) (1.05468 -0.00497739 0) (1.05456 -0.0049534 0) (1.05444 -0.00492955 0) (1.05431 -0.00490584 0) (1.05418 -0.00488228 0) (1.05404 -0.00485886 0) (1.0539 -0.00483559 0) (1.05375 -0.00481247 0) (1.0536 -0.0047895 0) (1.05344 -0.00476669 0) (1.05327 -0.00474404 0) (1.0531 -0.00472155 0) (1.05293 -0.00469922 0) (1.05275 -0.00467706 0) (1.05257 -0.00465507 0) (1.05238 -0.00463324 0) (1.05218 -0.00461159 0) (1.05198 -0.0045901 0) (1.05178 -0.00456879 0) (1.05157 -0.00454763 0) (1.05135 -0.00452665 0) (1.05113 -0.00450582 0) (1.05091 -0.00448514 0) (1.05068 -0.00446462 0) (1.05044 -0.00444424 0) (1.0502 -0.004424 0) (1.04996 -0.00440389 0) (1.0497 -0.0043839 0) (1.04945 -0.00436404 0) (1.04919 -0.0043443 0) (1.04892 -0.00432466 0) (1.04865 -0.00430513 0) (1.04838 -0.0042857 0) (1.0481 -0.00426637 0) (1.04782 -0.00424713 0) (1.04753 -0.00422799 0) (1.04723 -0.00420894 0) (1.04693 -0.00418998 0) (1.04663 -0.0041711 0) (1.04633 -0.00415232 0) (1.04601 -0.00413363 0) (1.0457 -0.00411503 0) (1.04538 -0.00409652 0) (1.04505 -0.00407811 0) (1.04473 -0.0040598 0) (1.04439 -0.00404158 0) (1.04406 -0.00402346 0) (1.04372 -0.00400544 0) (1.04337 -0.00398753 0) (1.04303 -0.00396972 0) (1.04268 -0.00395201 0) (1.04232 -0.00393441 0) (1.04196 -0.00391693 0) (1.0416 -0.00389955 0) (1.04124 -0.00388228 0) (1.04087 -0.00386512 0) (1.04049 -0.00384808 0) (1.04012 -0.00383114 0) (1.03974 -0.00381432 0) (1.03936 -0.00379761 0) (1.03897 -0.00378102 0) (1.03859 -0.00376455 0) (1.0382 -0.00374819 0) (1.0378 -0.00373196 0) (1.03741 -0.00371584 0) (1.03701 -0.00369986 0) (1.0366 -0.003684 0) (1.0362 -0.00366828 0) (1.05623 -0.00584687 0) (1.0562 -0.00581465 0) (1.05616 -0.00578268 0) (1.05612 -0.00575095 0) (1.05606 -0.00571951 0) (1.05601 -0.00568834 0) (1.05594 -0.00565746 0) (1.05587 -0.00562683 0) (1.05579 -0.00559647 0) (1.0557 -0.00556636 0) (1.0556 -0.0055365 0) (1.0555 -0.00550688 0) (1.05539 -0.00547749 0) (1.05527 -0.00544834 0) (1.05515 -0.00541941 0) (1.05502 -0.00539069 0) (1.05488 -0.00536218 0) (1.05473 -0.00533388 0) (1.05457 -0.00530577 0) (1.05441 -0.00527785 0) (1.05424 -0.00525011 0) (1.05406 -0.00522255 0) (1.05388 -0.00519515 0) (1.05368 -0.00516793 0) (1.05349 -0.00514086 0) (1.05328 -0.00511395 0) (1.05306 -0.0050872 0) (1.05284 -0.0050606 0) (1.05261 -0.00503415 0) (1.05238 -0.00500784 0) (1.05213 -0.00498169 0) (1.05188 -0.00495569 0) (1.05163 -0.00492984 0) (1.05136 -0.00490414 0) (1.05109 -0.00487859 0) (1.05082 -0.0048532 0) (1.05053 -0.00482797 0) (1.05024 -0.00480289 0) (1.04994 -0.00477798 0) (1.04964 -0.00475323 0) (1.04933 -0.00472865 0) (1.04902 -0.00470424 0) (1.04869 -0.00468 0) (1.04837 -0.00465593 0) (1.04803 -0.00463204 0) (1.04769 -0.00460832 0) (1.04734 -0.00458478 0) (1.04699 -0.00456142 0) (1.04663 -0.00453823 0) (1.04627 -0.00451522 0) (1.0459 -0.00449238 0) (1.04553 -0.00446972 0) (1.04515 -0.00444723 0) (1.04476 -0.0044249 0) (1.04437 -0.00440273 0) (1.04397 -0.00438072 0) (1.04357 -0.00435886 0) (1.04316 -0.00433714 0) (1.04274 -0.00431557 0) (1.04232 -0.00429414 0) (1.0419 -0.00427284 0) (1.04147 -0.00425167 0) (1.04104 -0.00423062 0) (1.0406 -0.00420969 0) (1.04015 -0.00418888 0) (1.0397 -0.00416819 0) (1.03925 -0.00414761 0) (1.03879 -0.00412714 0) (1.03832 -0.00410679 0) (1.03786 -0.00408655 0) (1.03738 -0.00406642 0) (1.0369 -0.0040464 0) (1.03642 -0.00402649 0) (1.03594 -0.0040067 0) (1.03545 -0.00398703 0) (1.03495 -0.00396747 0) (1.03446 -0.00394803 0) (1.03395 -0.00392871 0) (1.03345 -0.00390951 0) (1.03294 -0.00389043 0) (1.03243 -0.00387147 0) (1.03191 -0.00385264 0) (1.03139 -0.00383394 0) (1.03087 -0.00381536 0) (1.03034 -0.00379691 0) (1.02981 -0.00377859 0) (1.02928 -0.00376039 0) (1.02875 -0.00374233 0) (1.02821 -0.00372439 0) (1.02767 -0.00370658 0) (1.02712 -0.0036889 0) (1.02658 -0.00367135 0) (1.02603 -0.00365393 0) (1.02547 -0.00363664 0) (1.02492 -0.00361949 0) (1.02436 -0.00360247 0) (1.0238 -0.00358558 0) (1.02324 -0.00356884 0) (1.02268 -0.00355223 0) (1.02211 -0.00353577 0) (1.0553 -0.00582552 0) (1.05512 -0.00579103 0) (1.05494 -0.00575677 0) (1.05475 -0.00572276 0) (1.05454 -0.00568904 0) (1.05433 -0.0056556 0) (1.0541 -0.00562243 0) (1.05387 -0.00558952 0) (1.05363 -0.00555687 0) (1.05337 -0.00552447 0) (1.05311 -0.00549232 0) (1.05284 -0.00546041 0) (1.05256 -0.00542873 0) (1.05226 -0.00539729 0) (1.05196 -0.00536608 0) (1.05165 -0.00533508 0) (1.05133 -0.0053043 0) (1.051 -0.00527372 0) (1.05066 -0.00524335 0) (1.05032 -0.00521318 0) (1.04996 -0.00518321 0) (1.04959 -0.00515342 0) (1.04922 -0.00512381 0) (1.04884 -0.00509439 0) (1.04844 -0.00506515 0) (1.04804 -0.00503608 0) (1.04763 -0.00500719 0) (1.04722 -0.00497848 0) (1.04679 -0.00494993 0) (1.04636 -0.00492157 0) (1.04591 -0.00489337 0) (1.04546 -0.00486535 0) (1.04501 -0.00483751 0) (1.04454 -0.00480985 0) (1.04407 -0.00478237 0) (1.04359 -0.00475506 0) (1.0431 -0.00472795 0) (1.04261 -0.00470102 0) (1.0421 -0.00467427 0) (1.0416 -0.00464772 0) (1.04108 -0.00462136 0) (1.04056 -0.00459519 0) (1.04003 -0.00456921 0) (1.0395 -0.00454343 0) (1.03896 -0.00451785 0) (1.03841 -0.00449247 0) (1.03786 -0.00446728 0) (1.0373 -0.00444229 0) (1.03674 -0.00441749 0) (1.03616 -0.00439289 0) (1.03559 -0.00436848 0) (1.03501 -0.00434425 0) (1.03442 -0.00432022 0) (1.03383 -0.00429636 0) (1.03323 -0.00427269 0) (1.03262 -0.00424918 0) (1.03202 -0.00422585 0) (1.0314 -0.00420269 0) (1.03078 -0.00417968 0) (1.03016 -0.00415684 0) (1.02953 -0.00413415 0) (1.0289 -0.00411161 0) (1.02826 -0.00408921 0) (1.02762 -0.00406697 0) (1.02697 -0.00404487 0) (1.02632 -0.00402291 0) (1.02566 -0.00400109 0) (1.025 -0.00397941 0) (1.02434 -0.00395787 0) (1.02367 -0.00393647 0) (1.023 -0.00391522 0) (1.02233 -0.0038941 0) (1.02165 -0.00387312 0) (1.02097 -0.00385229 0) (1.02028 -0.00383159 0) (1.01959 -0.00381104 0) (1.0189 -0.00379064 0) (1.01821 -0.00377038 0) (1.01751 -0.00375026 0) (1.01681 -0.0037303 0) (1.01611 -0.00371048 0) (1.0154 -0.0036908 0) (1.0147 -0.00367128 0) (1.01399 -0.0036519 0) (1.01327 -0.00363267 0) (1.01256 -0.00361359 0) (1.01184 -0.00359466 0) (1.01112 -0.00357588 0) (1.0104 -0.00355724 0) (1.00968 -0.00353875 0) (1.00895 -0.00352041 0) (1.00822 -0.00350222 0) (1.0075 -0.00348418 0) (1.00677 -0.00346628 0) (1.00603 -0.00344853 0) (1.0053 -0.00343094 0) (1.00456 -0.00341348 0) (1.00383 -0.00339619 0) (1.00309 -0.00337903 0) (1.00235 -0.00336204 0) (1.05149 -0.00575895 0) (1.0511 -0.00572149 0) (1.05069 -0.00568427 0) (1.05027 -0.00564734 0) (1.04984 -0.00561074 0) (1.04939 -0.00557443 0) (1.04894 -0.0055384 0) (1.04847 -0.00550266 0) (1.04799 -0.00546719 0) (1.0475 -0.005432 0) (1.047 -0.00539708 0) (1.04648 -0.00536243 0) (1.04596 -0.00532803 0) (1.04542 -0.00529389 0) (1.04488 -0.00526 0) (1.04432 -0.00522635 0) (1.04375 -0.00519295 0) (1.04318 -0.00515979 0) (1.04259 -0.00512686 0) (1.04199 -0.00509416 0) (1.04139 -0.00506168 0) (1.04077 -0.00502943 0) (1.04014 -0.0049974 0) (1.03951 -0.00496559 0) (1.03886 -0.00493399 0) (1.03821 -0.00490261 0) (1.03755 -0.00487145 0) (1.03688 -0.0048405 0) (1.0362 -0.00480976 0) (1.03551 -0.00477924 0) (1.03482 -0.00474894 0) (1.03412 -0.00471885 0) (1.03341 -0.00468899 0) (1.03269 -0.00465934 0) (1.03197 -0.00462991 0) (1.03124 -0.00460071 0) (1.0305 -0.00457173 0) (1.02976 -0.00454297 0) (1.029 -0.00451444 0) (1.02825 -0.00448614 0) (1.02749 -0.00445807 0) (1.02672 -0.00443022 0) (1.02594 -0.00440261 0) (1.02516 -0.00437522 0) (1.02438 -0.00434807 0) (1.02359 -0.00432114 0) (1.02279 -0.00429444 0) (1.02199 -0.00426796 0) (1.02118 -0.00424171 0) (1.02037 -0.00421568 0) (1.01956 -0.00418987 0) (1.01874 -0.00416427 0) (1.01791 -0.00413889 0) (1.01708 -0.00411371 0) (1.01625 -0.00408874 0) (1.01541 -0.00406397 0) (1.01457 -0.0040394 0) (1.01372 -0.00401502 0) (1.01288 -0.00399083 0) (1.01202 -0.00396683 0) (1.01117 -0.00394302 0) (1.01031 -0.00391938 0) (1.00944 -0.00389593 0) (1.00858 -0.00387265 0) (1.00771 -0.00384955 0) (1.00684 -0.00382662 0) (1.00596 -0.00380386 0) (1.00509 -0.00378128 0) (1.00421 -0.00375887 0) (1.00332 -0.00373663 0) (1.00244 -0.00371456 0) (1.00155 -0.00369266 0) (1.00066 -0.00367094 0) (0.999772 -0.00364938 0) (0.99888 -0.003628 0) (0.997986 -0.00360679 0) (0.99709 -0.00358575 0) (0.996193 -0.00356488 0) (0.995294 -0.00354418 0) (0.994394 -0.00352366 0) (0.993493 -0.0035033 0) (0.992591 -0.00348312 0) (0.991687 -0.00346311 0) (0.990783 -0.00344326 0) (0.989878 -0.00342359 0) (0.988972 -0.00340409 0) (0.988065 -0.00338475 0) (0.987157 -0.00336559 0) (0.986249 -0.00334659 0) (0.985341 -0.00332775 0) (0.984432 -0.00330908 0) (0.983522 -0.00329058 0) (0.982613 -0.00327223 0) (0.981702 -0.00325406 0) (0.980792 -0.00323604 0) (0.979882 -0.00321819 0) (0.978971 -0.00320049 0) (0.97806 -0.00318296 0) (0.977149 -0.00316558 0) (0.976238 -0.00314838 0) (1.04322 -0.00562891 0) (1.04252 -0.00558802 0) (1.04181 -0.00554741 0) (1.04108 -0.00550718 0) (1.04034 -0.00546733 0) (1.03959 -0.00542783 0) (1.03882 -0.00538866 0) (1.03805 -0.00534982 0) (1.03726 -0.00531131 0) (1.03646 -0.00527312 0) (1.03564 -0.00523526 0) (1.03482 -0.00519771 0) (1.03398 -0.00516047 0) (1.03314 -0.00512354 0) (1.03228 -0.00508691 0) (1.03142 -0.00505058 0) (1.03054 -0.00501454 0) (1.02966 -0.00497879 0) (1.02876 -0.00494334 0) (1.02786 -0.00490817 0) (1.02694 -0.00487328 0) (1.02602 -0.00483866 0) (1.02509 -0.00480433 0) (1.02416 -0.00477027 0) (1.02321 -0.00473649 0) (1.02226 -0.00470298 0) (1.0213 -0.00466974 0) (1.02033 -0.00463677 0) (1.01935 -0.00460408 0) (1.01837 -0.00457165 0) (1.01739 -0.0045395 0) (1.01639 -0.00450763 0) (1.01539 -0.00447602 0) (1.01439 -0.00444469 0) (1.01338 -0.00441363 0) (1.01236 -0.00438285 0) (1.01134 -0.00435234 0) (1.01032 -0.0043221 0) (1.00929 -0.00429214 0) (1.00826 -0.00426245 0) (1.00722 -0.00423303 0) (1.00618 -0.00420389 0) (1.00513 -0.00417502 0) (1.00408 -0.00414641 0) (1.00303 -0.00411808 0) (1.00197 -0.00409001 0) (1.00091 -0.0040622 0) (0.999848 -0.00403466 0) (0.998783 -0.00400737 0) (0.997715 -0.00398034 0) (0.996644 -0.00395356 0) (0.995571 -0.00392703 0) (0.994495 -0.00390074 0) (0.993417 -0.0038747 0) (0.992337 -0.00384889 0) (0.991255 -0.00382331 0) (0.990171 -0.00379797 0) (0.989086 -0.00377285 0) (0.987999 -0.00374795 0) (0.98691 -0.00372327 0) (0.98582 -0.00369882 0) (0.984729 -0.00367457 0) (0.983637 -0.00365054 0) (0.982544 -0.00362672 0) (0.98145 -0.0036031 0) (0.980355 -0.0035797 0) (0.97926 -0.0035565 0) (0.978164 -0.0035335 0) (0.977068 -0.00351071 0) (0.975972 -0.00348811 0) (0.974875 -0.00346572 0) (0.973779 -0.00344353 0) (0.972682 -0.00342154 0) (0.971586 -0.00339975 0) (0.97049 -0.00337815 0) (0.969395 -0.00335675 0) (0.9683 -0.00333555 0) (0.967205 -0.00331455 0) (0.966111 -0.00329373 0) (0.965018 -0.00327312 0) (0.963926 -0.00325269 0) (0.962834 -0.00323246 0) (0.961744 -0.00321241 0) (0.960654 -0.00319256 0) (0.959565 -0.00317289 0) (0.958478 -0.00315341 0) (0.957392 -0.00313412 0) (0.956307 -0.00311501 0) (0.955223 -0.00309608 0) (0.95414 -0.00307733 0) (0.953059 -0.00305876 0) (0.951979 -0.00304037 0) (0.950901 -0.00302215 0) (0.949824 -0.00300411 0) (0.948749 -0.00298624 0) (0.947675 -0.00296855 0) (0.946603 -0.00295101 0) (0.945533 -0.00293366 0) (0.944464 -0.00291645 0) (0.943396 -0.00289944 0) (1.02864 -0.00541845 0) (1.02756 -0.00537414 0) (1.02647 -0.0053302 0) (1.02536 -0.00528677 0) (1.02424 -0.00524381 0) (1.02312 -0.00520128 0) (1.02198 -0.00515915 0) (1.02083 -0.00511744 0) (1.01967 -0.00507614 0) (1.0185 -0.00503524 0) (1.01732 -0.00499473 0) (1.01613 -0.00495462 0) (1.01494 -0.0049149 0) (1.01373 -0.00487556 0) (1.01252 -0.00483659 0) (1.0113 -0.004798 0) (1.01007 -0.00475978 0) (1.00884 -0.00472192 0) (1.00759 -0.00468443 0) (1.00635 -0.00464729 0) (1.00509 -0.0046105 0) (1.00383 -0.00457407 0) (1.00257 -0.00453798 0) (1.0013 -0.00450224 0) (1.00002 -0.00446684 0) (0.998745 -0.00443179 0) (0.997461 -0.00439707 0) (0.996174 -0.0043627 0) (0.994883 -0.00432866 0) (0.993588 -0.00429496 0) (0.99229 -0.00426159 0) (0.990989 -0.00422856 0) (0.989685 -0.00419586 0) (0.988379 -0.00416349 0) (0.987071 -0.00413145 0) (0.985761 -0.00409973 0) (0.984449 -0.00406835 0) (0.983135 -0.00403729 0) (0.98182 -0.00400655 0) (0.980503 -0.00397614 0) (0.979186 -0.00394604 0) (0.977867 -0.00391626 0) (0.976548 -0.00388679 0) (0.975229 -0.00385763 0) (0.973908 -0.00382878 0) (0.972588 -0.00380023 0) (0.971268 -0.00377199 0) (0.969947 -0.00374404 0) (0.968627 -0.00371638 0) (0.967307 -0.00368901 0) (0.965987 -0.00366193 0) (0.964668 -0.00363513 0) (0.963349 -0.0036086 0) (0.962031 -0.00358234 0) (0.960714 -0.00355636 0) (0.959398 -0.00353064 0) (0.958083 -0.00350518 0) (0.95677 -0.00347997 0) (0.955457 -0.00345502 0) (0.954146 -0.00343032 0) (0.952837 -0.00340587 0) (0.951529 -0.00338166 0) (0.950223 -0.0033577 0) (0.948919 -0.00333397 0) (0.947616 -0.00331048 0) (0.946316 -0.00328722 0) (0.945018 -0.0032642 0) (0.943722 -0.00324141 0) (0.942428 -0.00321884 0) (0.941137 -0.0031965 0) (0.939848 -0.00317439 0) (0.938562 -0.0031525 0) (0.937279 -0.00313083 0) (0.935998 -0.00310939 0) (0.93472 -0.00308815 0) (0.933444 -0.00306714 0) (0.932172 -0.00304634 0) (0.930903 -0.00302575 0) (0.929636 -0.00300538 0) (0.928373 -0.00298521 0) (0.927112 -0.00296525 0) (0.925855 -0.0029455 0) (0.924601 -0.00292595 0) (0.92335 -0.0029066 0) (0.922103 -0.00288746 0) (0.920858 -0.00286851 0) (0.919617 -0.00284975 0) (0.91838 -0.00283119 0) (0.917145 -0.00281282 0) (0.915914 -0.00279464 0) (0.914686 -0.00277665 0) (0.913462 -0.00275884 0) (0.912241 -0.00274122 0) (0.911024 -0.00272377 0) (0.90981 -0.0027065 0) (0.9086 -0.00268942 0) (0.907393 -0.00267249 0) (0.906189 -0.00265575 0) (0.904989 -0.00263915 0) (0.903792 -0.00262276 0) (1.00587 -0.00511628 0) (1.00436 -0.00506924 0) (1.00284 -0.00502269 0) (1.00131 -0.00497679 0) (0.999777 -0.00493148 0) (0.998235 -0.00488669 0) (0.996688 -0.00484242 0) (0.995134 -0.00479865 0) (0.993575 -0.00475539 0) (0.992011 -0.00471263 0) (0.990441 -0.00467036 0) (0.988868 -0.00462857 0) (0.98729 -0.00458726 0) (0.985708 -0.00454641 0) (0.984124 -0.00450603 0) (0.982536 -0.00446611 0) (0.980945 -0.00442663 0) (0.979352 -0.0043876 0) (0.977757 -0.00434901 0) (0.976161 -0.00431086 0) (0.974563 -0.00427314 0) (0.972964 -0.00423584 0) (0.971364 -0.00419897 0) (0.969764 -0.00416251 0) (0.968163 -0.00412646 0) (0.966563 -0.00409083 0) (0.964962 -0.0040556 0) (0.963362 -0.00402077 0) (0.961763 -0.00398635 0) (0.960165 -0.00395232 0) (0.958569 -0.00391868 0) (0.956973 -0.00388543 0) (0.955379 -0.00385257 0) (0.953787 -0.0038201 0) (0.952197 -0.003788 0) (0.95061 -0.00375628 0) (0.949024 -0.00372493 0) (0.947441 -0.00369395 0) (0.945861 -0.00366333 0) (0.944284 -0.00363308 0) (0.942709 -0.00360318 0) (0.941138 -0.00357364 0) (0.939569 -0.00354444 0) (0.938004 -0.00351559 0) (0.936443 -0.00348708 0) (0.934885 -0.0034589 0) (0.93333 -0.00343105 0) (0.931779 -0.00340352 0) (0.930232 -0.00337632 0) (0.928689 -0.00334943 0) (0.92715 -0.00332285 0) (0.925615 -0.00329658 0) (0.924084 -0.00327061 0) (0.922558 -0.00324493 0) (0.921035 -0.00321955 0) (0.919517 -0.00319445 0) (0.918004 -0.00316964 0) (0.916495 -0.00314511 0) (0.91499 -0.00312086 0) (0.91349 -0.00309688 0) (0.911995 -0.00307316 0) (0.910505 -0.00304971 0) (0.909019 -0.00302653 0) (0.907538 -0.0030036 0) (0.906063 -0.00298093 0) (0.904592 -0.00295851 0) (0.903126 -0.00293634 0) (0.901666 -0.00291442 0) (0.900211 -0.00289274 0) (0.89876 -0.00287131 0) (0.897315 -0.00285011 0) (0.895876 -0.00282915 0) (0.894441 -0.00280842 0) (0.893012 -0.00278792 0) (0.891588 -0.00276766 0) (0.89017 -0.00274761 0) (0.888757 -0.0027278 0) (0.887349 -0.0027082 0) (0.885946 -0.00268882 0) (0.88455 -0.00266966 0) (0.883158 -0.00265071 0) (0.881772 -0.00263197 0) (0.880391 -0.00261344 0) (0.879016 -0.00259512 0) (0.877646 -0.002577 0) (0.876282 -0.00255909 0) (0.874923 -0.00254137 0) (0.873569 -0.00252385 0) (0.872221 -0.00250652 0) (0.870878 -0.00248938 0) (0.86954 -0.00247243 0) (0.868208 -0.00245566 0) (0.866881 -0.00243908 0) (0.86556 -0.00242268 0) (0.864244 -0.00240645 0) (0.862933 -0.0023904 0) (0.861627 -0.00237451 0) (0.860327 -0.0023588 0) (0.859032 -0.00234324 0) (0.857742 -0.00232787 0) (0.973318 -0.00472072 0) (0.971373 -0.00467233 0) (0.969426 -0.00462455 0) (0.967479 -0.00457757 0) (0.96553 -0.00453128 0) (0.963582 -0.00448561 0) (0.961634 -0.00444055 0) (0.959687 -0.00439611 0) (0.95774 -0.00435226 0) (0.955796 -0.00430901 0) (0.953853 -0.00426633 0) (0.951911 -0.00422422 0) (0.949973 -0.00418267 0) (0.948037 -0.00414166 0) (0.946104 -0.0041012 0) (0.944174 -0.00406127 0) (0.942248 -0.00402187 0) (0.940326 -0.00398298 0) (0.938408 -0.0039446 0) (0.936494 -0.00390672 0) (0.934585 -0.00386934 0) (0.93268 -0.00383245 0) (0.93078 -0.00379603 0) (0.928886 -0.0037601 0) (0.926997 -0.00372463 0) (0.925113 -0.00368962 0) (0.923236 -0.00365508 0) (0.921364 -0.00362098 0) (0.919498 -0.00358733 0) (0.917639 -0.00355412 0) (0.915785 -0.00352135 0) (0.913939 -0.00348901 0) (0.912098 -0.00345709 0) (0.910265 -0.00342559 0) (0.908438 -0.0033945 0) (0.906619 -0.00336382 0) (0.904806 -0.00333355 0) (0.903 -0.00330367 0) (0.901202 -0.00327419 0) (0.899411 -0.00324508 0) (0.897627 -0.00321636 0) (0.89585 -0.00318802 0) (0.894081 -0.00316004 0) (0.892319 -0.00313242 0) (0.890565 -0.00310517 0) (0.888818 -0.00307826 0) (0.887079 -0.0030517 0) (0.885347 -0.00302548 0) (0.883623 -0.00299959 0) (0.881906 -0.00297403 0) (0.880198 -0.0029488 0) (0.878496 -0.00292389 0) (0.876803 -0.00289929 0) (0.875117 -0.00287499 0) (0.873439 -0.00285101 0) (0.871769 -0.00282732 0) (0.870107 -0.00280392 0) (0.868452 -0.00278082 0) (0.866806 -0.002758 0) (0.865167 -0.00273546 0) (0.863535 -0.0027132 0) (0.861912 -0.00269122 0) (0.860297 -0.0026695 0) (0.858689 -0.00264805 0) (0.857089 -0.00262686 0) (0.855497 -0.00260593 0) (0.853913 -0.00258525 0) (0.852336 -0.00256483 0) (0.850768 -0.00254465 0) (0.849207 -0.00252472 0) (0.847654 -0.00250503 0) (0.846109 -0.00248557 0) (0.844571 -0.00246635 0) (0.843041 -0.00244737 0) (0.841519 -0.00242861 0) (0.840005 -0.00241007 0) (0.838498 -0.00239176 0) (0.836998 -0.00237366 0) (0.835507 -0.00235579 0) (0.834022 -0.00233812 0) (0.832546 -0.00232067 0) (0.831077 -0.00230343 0) (0.829615 -0.00228639 0) (0.82816 -0.00226955 0) (0.826713 -0.00225291 0) (0.825274 -0.00223646 0) (0.823841 -0.00222021 0) (0.822416 -0.00220415 0) (0.820998 -0.00218828 0) (0.819587 -0.00217259 0) (0.818183 -0.00215708 0) (0.816786 -0.00214175 0) (0.815397 -0.0021266 0) (0.814014 -0.00211162 0) (0.812638 -0.0020968 0) (0.811269 -0.00208216 0) (0.809907 -0.00206767 0) (0.808552 -0.00205336 0) (0.807203 -0.00203919 0) (0.805862 -0.00202519 0) (0.930015 -0.00424175 0) (0.927681 -0.00419389 0) (0.925355 -0.00414676 0) (0.923037 -0.00410051 0) (0.920726 -0.00405503 0) (0.918424 -0.00401025 0) (0.916131 -0.00396616 0) (0.913846 -0.00392276 0) (0.91157 -0.00388003 0) (0.909303 -0.00383795 0) (0.907046 -0.00379652 0) (0.904798 -0.00375571 0) (0.902561 -0.00371552 0) (0.900333 -0.00367594 0) (0.898115 -0.00363694 0) (0.895908 -0.00359854 0) (0.893711 -0.0035607 0) (0.891525 -0.00352342 0) (0.889349 -0.0034867 0) (0.887184 -0.00345052 0) (0.88503 -0.00341488 0) (0.882887 -0.00337975 0) (0.880755 -0.00334515 0) (0.878634 -0.00331105 0) (0.876524 -0.00327745 0) (0.874426 -0.00324434 0) (0.872339 -0.00321172 0) (0.870263 -0.00317957 0) (0.868199 -0.00314789 0) (0.866146 -0.00311667 0) (0.864105 -0.00308591 0) (0.862075 -0.00305559 0) (0.860057 -0.00302571 0) (0.85805 -0.00299626 0) (0.856055 -0.00296724 0) (0.854071 -0.00293863 0) (0.852098 -0.00291044 0) (0.850137 -0.00288265 0) (0.848188 -0.00285526 0) (0.84625 -0.00282826 0) (0.844323 -0.00280164 0) (0.842408 -0.0027754 0) (0.840504 -0.00274953 0) (0.838611 -0.00272402 0) (0.83673 -0.00269887 0) (0.834859 -0.00267408 0) (0.833 -0.00264962 0) (0.831152 -0.00262551 0) (0.829316 -0.00260173 0) (0.82749 -0.00257827 0) (0.825675 -0.00255514 0) (0.823871 -0.00253232 0) (0.822078 -0.00250982 0) (0.820296 -0.00248762 0) (0.818524 -0.00246572 0) (0.816763 -0.00244411 0) (0.815013 -0.0024228 0) (0.813274 -0.00240177 0) (0.811545 -0.00238103 0) (0.809827 -0.00236055 0) (0.808119 -0.00234036 0) (0.806422 -0.00232042 0) (0.804735 -0.00230076 0) (0.803058 -0.00228135 0) (0.801391 -0.00226219 0) (0.799735 -0.00224329 0) (0.798089 -0.00222463 0) (0.796453 -0.00220622 0) (0.794827 -0.00218804 0) (0.79321 -0.0021701 0) (0.791604 -0.00215239 0) (0.790007 -0.00213491 0) (0.78842 -0.00211765 0) (0.786843 -0.00210062 0) (0.785276 -0.0020838 0) (0.783717 -0.00206719 0) (0.782169 -0.0020508 0) (0.780629 -0.00203461 0) (0.779099 -0.00201863 0) (0.777578 -0.00200285 0) (0.776067 -0.00198727 0) (0.774564 -0.00197188 0) (0.773071 -0.00195669 0) (0.771586 -0.00194168 0) (0.77011 -0.00192686 0) (0.768643 -0.00191223 0) (0.767185 -0.00189777 0) (0.765735 -0.00188349 0) (0.764294 -0.00186939 0) (0.762862 -0.00185546 0) (0.761438 -0.00184169 0) (0.760022 -0.0018281 0) (0.758614 -0.00181466 0) (0.757215 -0.00180138 0) (0.755824 -0.00178826 0) (0.754441 -0.0017753 0) (0.753066 -0.00176248 0) (0.751699 -0.00174982 0) (0.75034 -0.00173729 0) (0.748989 -0.00172492 0) (0.875786 -0.0037002 0) (0.873158 -0.00365493 0) (0.870547 -0.00361048 0) (0.867953 -0.00356691 0) (0.865375 -0.00352414 0) (0.862815 -0.0034821 0) (0.860271 -0.0034408 0) (0.857744 -0.00340021 0) (0.855234 -0.00336033 0) (0.852741 -0.00332112 0) (0.850264 -0.00328258 0) (0.847805 -0.00324469 0) (0.845363 -0.00320744 0) (0.842938 -0.00317081 0) (0.84053 -0.00313479 0) (0.838138 -0.00309937 0) (0.835764 -0.00306452 0) (0.833406 -0.00303026 0) (0.831065 -0.00299655 0) (0.828741 -0.00296339 0) (0.826434 -0.00293077 0) (0.824143 -0.00289867 0) (0.821868 -0.0028671 0) (0.819611 -0.00283603 0) (0.817369 -0.00280546 0) (0.815144 -0.00277538 0) (0.812935 -0.00274578 0) (0.810743 -0.00271665 0) (0.808566 -0.00268798 0) (0.806405 -0.00265976 0) (0.80426 -0.00263199 0) (0.802131 -0.00260466 0) (0.800018 -0.00257775 0) (0.79792 -0.00255126 0) (0.795838 -0.00252519 0) (0.793771 -0.00249952 0) (0.791719 -0.00247425 0) (0.789682 -0.00244936 0) (0.78766 -0.00242486 0) (0.785653 -0.00240073 0) (0.783661 -0.00237697 0) (0.781684 -0.00235357 0) (0.77972 -0.00233052 0) (0.777772 -0.00230782 0) (0.775837 -0.00228546 0) (0.773917 -0.00226343 0) (0.772011 -0.00224173 0) (0.770118 -0.00222035 0) (0.76824 -0.00219929 0) (0.766375 -0.00217853 0) (0.764523 -0.00215808 0) (0.762685 -0.00213793 0) (0.760861 -0.00211806 0) (0.759049 -0.00209849 0) (0.757251 -0.0020792 0) (0.755465 -0.00206018 0) (0.753693 -0.00204144 0) (0.751933 -0.00202297 0) (0.750186 -0.00200475 0) (0.748451 -0.0019868 0) (0.746729 -0.0019691 0) (0.745019 -0.00195164 0) (0.743321 -0.00193444 0) (0.741636 -0.00191747 0) (0.739962 -0.00190074 0) (0.7383 -0.00188423 0) (0.73665 -0.00186796 0) (0.735011 -0.00185191 0) (0.733384 -0.00183608 0) (0.731769 -0.00182046 0) (0.730164 -0.00180506 0) (0.728571 -0.00178986 0) (0.726989 -0.00177487 0) (0.725418 -0.00176008 0) (0.723858 -0.00174549 0) (0.722309 -0.00173109 0) (0.72077 -0.00171689 0) (0.719242 -0.00170287 0) (0.717724 -0.00168904 0) (0.716216 -0.00167538 0) (0.714719 -0.00166191 0) (0.713232 -0.00164862 0) (0.711755 -0.00163549 0) (0.710288 -0.00162254 0) (0.708831 -0.00160975 0) (0.707383 -0.00159713 0) (0.705945 -0.00158467 0) (0.704517 -0.00157237 0) (0.703098 -0.00156023 0) (0.701689 -0.00154824 0) (0.700288 -0.0015364 0) (0.698897 -0.00152471 0) (0.697515 -0.00151316 0) (0.696142 -0.00150175 0) (0.694778 -0.00149049 0) (0.693423 -0.00147936 0) (0.692076 -0.00146836 0) (0.690738 -0.0014575 0) (0.689409 -0.00144677 0) (0.688088 -0.00143616 0) (0.811307 -0.00312435 0) (0.808513 -0.00308356 0) (0.805743 -0.00304358 0) (0.802997 -0.00300443 0) (0.800276 -0.00296603 0) (0.79758 -0.00292837 0) (0.794907 -0.00289142 0) (0.792258 -0.00285518 0) (0.789632 -0.00281961 0) (0.78703 -0.00278471 0) (0.784452 -0.00275045 0) (0.781896 -0.00271682 0) (0.779363 -0.0026838 0) (0.776852 -0.00265138 0) (0.774364 -0.00261955 0) (0.771898 -0.00258828 0) (0.769455 -0.00255758 0) (0.767032 -0.00252742 0) (0.764632 -0.00249779 0) (0.762253 -0.00246868 0) (0.759895 -0.00244008 0) (0.757557 -0.00241198 0) (0.755241 -0.00238437 0) (0.752945 -0.00235723 0) (0.750669 -0.00233056 0) (0.748414 -0.00230435 0) (0.746178 -0.00227859 0) (0.743962 -0.00225326 0) (0.741766 -0.00222836 0) (0.739588 -0.00220388 0) (0.73743 -0.00217981 0) (0.735291 -0.00215614 0) (0.73317 -0.00213287 0) (0.731067 -0.00210998 0) (0.728983 -0.00208747 0) (0.726916 -0.00206533 0) (0.724868 -0.00204355 0) (0.722837 -0.00202213 0) (0.720823 -0.00200105 0) (0.718827 -0.00198032 0) (0.716848 -0.00195992 0) (0.714885 -0.00193984 0) (0.712939 -0.00192009 0) (0.711009 -0.00190065 0) (0.709096 -0.00188151 0) (0.707198 -0.00186268 0) (0.705317 -0.00184414 0) (0.703451 -0.00182589 0) (0.701601 -0.00180792 0) (0.699766 -0.00179023 0) (0.697946 -0.00177281 0) (0.696141 -0.00175566 0) (0.694351 -0.00173878 0) (0.692575 -0.00172214 0) (0.690814 -0.00170577 0) (0.689067 -0.00168963 0) (0.687335 -0.00167374 0) (0.685616 -0.00165809 0) (0.683911 -0.00164268 0) (0.68222 -0.00162749 0) (0.680542 -0.00161252 0) (0.678878 -0.00159778 0) (0.677227 -0.00158325 0) (0.675589 -0.00156893 0) (0.673964 -0.00155482 0) (0.672351 -0.00154092 0) (0.670751 -0.00152721 0) (0.669164 -0.00151371 0) (0.667589 -0.00150039 0) (0.666026 -0.00148726 0) (0.664475 -0.00147432 0) (0.662936 -0.00146156 0) (0.661409 -0.00144897 0) (0.659893 -0.00143657 0) (0.658389 -0.00142433 0) (0.656896 -0.00141226 0) (0.655415 -0.00140036 0) (0.653944 -0.00138863 0) (0.652485 -0.00137705 0) (0.651036 -0.00136563 0) (0.649598 -0.00135436 0) (0.648171 -0.00134325 0) (0.646754 -0.00133229 0) (0.645348 -0.00132147 0) (0.643951 -0.0013108 0) (0.642565 -0.00130027 0) (0.641189 -0.00128988 0) (0.639823 -0.00127963 0) (0.638466 -0.00126951 0) (0.63712 -0.00125952 0) (0.635782 -0.00124966 0) (0.634455 -0.00123993 0) (0.633136 -0.00123033 0) (0.631827 -0.00122084 0) (0.630527 -0.00121148 0) (0.629237 -0.00120223 0) (0.627955 -0.00119311 0) (0.626682 -0.00118409 0) (0.625417 -0.00117518 0) (0.624162 -0.00116637 0) (0.737966 -0.00254515 0) (0.735145 -0.00251022 0) (0.732355 -0.00247602 0) (0.729594 -0.00244252 0) (0.726864 -0.0024097 0) (0.724162 -0.00237756 0) (0.72149 -0.00234607 0) (0.718846 -0.00231522 0) (0.71623 -0.00228499 0) (0.713641 -0.00225536 0) (0.711081 -0.00222631 0) (0.708547 -0.00219783 0) (0.706039 -0.00216991 0) (0.703558 -0.00214252 0) (0.701103 -0.00211566 0) (0.698673 -0.00208931 0) (0.696269 -0.00206345 0) (0.693889 -0.00203809 0) (0.691534 -0.0020132 0) (0.689203 -0.00198877 0) (0.686896 -0.0019648 0) (0.684612 -0.00194126 0) (0.682351 -0.00191816 0) (0.680113 -0.00189548 0) (0.677898 -0.00187321 0) (0.675705 -0.00185134 0) (0.673533 -0.00182986 0) (0.671384 -0.00180877 0) (0.669255 -0.00178805 0) (0.667148 -0.0017677 0) (0.665061 -0.00174771 0) (0.662995 -0.00172806 0) (0.660949 -0.00170876 0) (0.658923 -0.0016898 0) (0.656916 -0.00167116 0) (0.654928 -0.00165284 0) (0.65296 -0.00163484 0) (0.65101 -0.00161714 0) (0.649079 -0.00159975 0) (0.647166 -0.00158264 0) (0.645271 -0.00156583 0) (0.643394 -0.00154929 0) (0.641534 -0.00153303 0) (0.639692 -0.00151704 0) (0.637867 -0.00150131 0) (0.636058 -0.00148584 0) (0.634266 -0.00147062 0) (0.632491 -0.00145565 0) (0.630731 -0.00144092 0) (0.628988 -0.00142643 0) (0.62726 -0.00141217 0) (0.625548 -0.00139813 0) (0.623851 -0.00138432 0) (0.622169 -0.00137073 0) (0.620502 -0.00135736 0) (0.618849 -0.00134419 0) (0.617211 -0.00133123 0) (0.615588 -0.00131847 0) (0.613979 -0.00130591 0) (0.612383 -0.00129354 0) (0.610801 -0.00128136 0) (0.609233 -0.00126936 0) (0.607678 -0.00125755 0) (0.606137 -0.00124592 0) (0.604608 -0.00123446 0) (0.603093 -0.00122317 0) (0.60159 -0.00121205 0) (0.6001 -0.00120109 0) (0.598622 -0.0011903 0) (0.597156 -0.00117966 0) (0.595702 -0.00116918 0) (0.59426 -0.00115884 0) (0.59283 -0.00114866 0) (0.591412 -0.00113862 0) (0.590005 -0.00112873 0) (0.588609 -0.00111898 0) (0.587225 -0.00110936 0) (0.585852 -0.00109988 0) (0.584489 -0.00109053 0) (0.583137 -0.00108132 0) (0.581796 -0.00107223 0) (0.580466 -0.00106327 0) (0.579146 -0.00105443 0) (0.577836 -0.00104572 0) (0.576536 -0.00103712 0) (0.575246 -0.00102864 0) (0.573966 -0.00102028 0) (0.572696 -0.00101203 0) (0.571435 -0.00100389 0) (0.570184 -0.000995857 0) (0.568942 -0.000987933 0) (0.56771 -0.000980114 0) (0.566487 -0.000972399 0) (0.565273 -0.000964783 0) (0.564067 -0.000957269 0) (0.562871 -0.000949849 0) (0.561683 -0.00094253 0) (0.560505 -0.000935294 0) (0.559334 -0.000928157 0) (0.558173 -0.000921091 0) (0.657611 -0.00199153 0) (0.654898 -0.00196318 0) (0.652218 -0.00193544 0) (0.649572 -0.00190824 0) (0.646957 -0.00188159 0) (0.644375 -0.00185553 0) (0.641823 -0.00183003 0) (0.639302 -0.00180508 0) (0.636811 -0.00178065 0) (0.63435 -0.00175673 0) (0.631918 -0.0017333 0) (0.629514 -0.00171036 0) (0.627139 -0.00168788 0) (0.624791 -0.00166585 0) (0.62247 -0.00164427 0) (0.620176 -0.00162312 0) (0.617908 -0.00160238 0) (0.615666 -0.00158206 0) (0.61345 -0.00156213 0) (0.611258 -0.00154258 0) (0.609091 -0.00152342 0) (0.606948 -0.00150462 0) (0.604829 -0.00148618 0) (0.602734 -0.00146809 0) (0.600661 -0.00145034 0) (0.598611 -0.00143293 0) (0.596583 -0.00141584 0) (0.594578 -0.00139906 0) (0.592593 -0.0013826 0) (0.59063 -0.00136644 0) (0.588688 -0.00135057 0) (0.586767 -0.00133499 0) (0.584865 -0.00131969 0) (0.582984 -0.00130467 0) (0.581122 -0.00128992 0) (0.57928 -0.00127543 0) (0.577456 -0.00126119 0) (0.575651 -0.00124721 0) (0.573865 -0.00123347 0) (0.572097 -0.00121997 0) (0.570346 -0.00120671 0) (0.568613 -0.00119367 0) (0.566898 -0.00118086 0) (0.565199 -0.00116826 0) (0.563517 -0.00115589 0) (0.561852 -0.00114372 0) (0.560203 -0.00113175 0) (0.55857 -0.00111999 0) (0.556953 -0.00110842 0) (0.555352 -0.00109705 0) (0.553766 -0.00108586 0) (0.552195 -0.00107485 0) (0.550638 -0.00106403 0) (0.549097 -0.00105339 0) (0.54757 -0.00104291 0) (0.546057 -0.00103261 0) (0.544558 -0.00102247 0) (0.543074 -0.00101249 0) (0.541602 -0.00100267 0) (0.540144 -0.000993013 0) (0.5387 -0.000983502 0) (0.537268 -0.000974141 0) (0.53585 -0.000964925 0) (0.534444 -0.000955852 0) (0.53305 -0.000946919 0) (0.531669 -0.000938122 0) (0.5303 -0.000929459 0) (0.528944 -0.000920927 0) (0.527598 -0.000912523 0) (0.526265 -0.000904245 0) (0.524943 -0.00089609 0) (0.523633 -0.000888056 0) (0.522333 -0.00088014 0) (0.521045 -0.00087234 0) (0.519768 -0.000864654 0) (0.518501 -0.000857079 0) (0.517245 -0.000849614 0) (0.515999 -0.000842257 0) (0.514764 -0.000835005 0) (0.513539 -0.000827857 0) (0.512324 -0.00082081 0) (0.511119 -0.000813864 0) (0.509924 -0.000807016 0) (0.508738 -0.000800264 0) (0.507562 -0.000793607 0) (0.506395 -0.000787043 0) (0.505238 -0.00078057 0) (0.50409 -0.000774187 0) (0.50295 -0.000767891 0) (0.50182 -0.000761682 0) (0.500699 -0.000755557 0) (0.499586 -0.000749515 0) (0.498482 -0.000743555 0) (0.497387 -0.000737673 0) (0.496299 -0.000731874 0) (0.495221 -0.000726145 0) (0.49415 -0.000720501 0) (0.493087 -0.000714915 0) (0.492033 -0.000709414 0) (0.490986 -0.000703956 0) (0.572262 -0.00148705 0) (0.569771 -0.00146537 0) (0.567314 -0.00144413 0) (0.56489 -0.00142325 0) (0.562498 -0.0014028 0) (0.560137 -0.00138282 0) (0.557807 -0.0013633 0) (0.555507 -0.00134421 0) (0.553237 -0.00132553 0) (0.550996 -0.00130725 0) (0.548783 -0.00128937 0) (0.546599 -0.00127187 0) (0.544442 -0.00125473 0) (0.542312 -0.00123795 0) (0.540208 -0.00122152 0) (0.53813 -0.00120543 0) (0.536078 -0.00118967 0) (0.534051 -0.00117423 0) (0.532048 -0.0011591 0) (0.530069 -0.00114427 0) (0.528114 -0.00112974 0) (0.526182 -0.00111549 0) (0.524273 -0.00110152 0) (0.522387 -0.00108783 0) (0.520522 -0.0010744 0) (0.518679 -0.00106123 0) (0.516857 -0.00104832 0) (0.515056 -0.00103565 0) (0.513276 -0.00102322 0) (0.511515 -0.00101102 0) (0.509775 -0.000999057 0) (0.508054 -0.000987314 0) (0.506352 -0.000975789 0) (0.504669 -0.000964476 0) (0.503004 -0.000953372 0) (0.501357 -0.00094247 0) (0.499729 -0.000931767 0) (0.498117 -0.000921257 0) (0.496523 -0.000910936 0) (0.494946 -0.0009008 0) (0.493386 -0.000890844 0) (0.491842 -0.000881065 0) (0.490315 -0.000871458 0) (0.488803 -0.000862019 0) (0.487307 -0.000852744 0) (0.485826 -0.000843631 0) (0.48436 -0.000834675 0) (0.48291 -0.000825873 0) (0.481474 -0.000817221 0) (0.480052 -0.000808717 0) (0.478644 -0.000800356 0) (0.477251 -0.000792137 0) (0.475871 -0.000784055 0) (0.474505 -0.000776108 0) (0.473152 -0.000768293 0) (0.471812 -0.000760607 0) (0.470486 -0.000753047 0) (0.469172 -0.000745611 0) (0.46787 -0.000738296 0) (0.466581 -0.000731099 0) (0.465304 -0.000724017 0) (0.464038 -0.000717049 0) (0.462785 -0.000710191 0) (0.461543 -0.000703442 0) (0.460313 -0.000696799 0) (0.459094 -0.000690259 0) (0.457886 -0.00068382 0) (0.456689 -0.000677481 0) (0.455503 -0.000671238 0) (0.454328 -0.000665091 0) (0.453163 -0.000659037 0) (0.452008 -0.000653074 0) (0.450863 -0.0006472 0) (0.449729 -0.000641414 0) (0.448604 -0.000635714 0) (0.447489 -0.000630099 0) (0.446384 -0.000624566 0) (0.445288 -0.000619114 0) (0.444202 -0.000613741 0) (0.443124 -0.000608447 0) (0.442056 -0.000603229 0) (0.440997 -0.000598087 0) (0.439947 -0.000593019 0) (0.438905 -0.000588024 0) (0.437872 -0.0005831 0) (0.436848 -0.000578246 0) (0.435832 -0.000573461 0) (0.434824 -0.000568743 0) (0.433824 -0.000564092 0) (0.432833 -0.000559505 0) (0.431849 -0.000554982 0) (0.430873 -0.000550521 0) (0.429905 -0.000546122 0) (0.428945 -0.000541781 0) (0.427992 -0.000537504 0) (0.427046 -0.000533277 0) (0.426108 -0.000529118 0) (0.425177 -0.000524995 0) (0.424253 -0.000520945 0) (0.423337 -0.000516911 0) (0.483859 -0.00104831 0) (0.481678 -0.00103284 0) (0.479527 -0.00101764 0) (0.477407 -0.00100261 0) (0.475316 -0.000987906 0) (0.473255 -0.000973558 0) (0.471221 -0.000959547 0) (0.469216 -0.00094585 0) (0.467238 -0.000932458 0) (0.465286 -0.000919364 0) (0.46336 -0.000906558 0) (0.461461 -0.000894031 0) (0.459586 -0.000881774 0) (0.457735 -0.000869779 0) (0.455909 -0.000858039 0) (0.454106 -0.000846546 0) (0.452327 -0.000835293 0) (0.45057 -0.000824274 0) (0.448835 -0.000813482 0) (0.447122 -0.000802911 0) (0.44543 -0.000792555 0) (0.44376 -0.000782409 0) (0.44211 -0.000772465 0) (0.44048 -0.000762721 0) (0.438869 -0.000753169 0) (0.437279 -0.000743805 0) (0.435707 -0.000734624 0) (0.434154 -0.000725622 0) (0.432619 -0.000716795 0) (0.431103 -0.000708137 0) (0.429604 -0.000699645 0) (0.428122 -0.000691314 0) (0.426658 -0.000683142 0) (0.42521 -0.000675123 0) (0.423778 -0.000667254 0) (0.422363 -0.000659533 0) (0.420964 -0.000651954 0) (0.41958 -0.000644515 0) (0.418212 -0.000637213 0) (0.416858 -0.000630044 0) (0.41552 -0.000623005 0) (0.414196 -0.000616093 0) (0.412886 -0.000609305 0) (0.41159 -0.000602639 0) (0.410308 -0.000596091 0) (0.40904 -0.000589659 0) (0.407785 -0.00058334 0) (0.406543 -0.000577131 0) (0.405314 -0.000571031 0) (0.404098 -0.000565037 0) (0.402894 -0.000559145 0) (0.401703 -0.000553355 0) (0.400523 -0.000547664 0) (0.399356 -0.000542069 0) (0.3982 -0.000536569 0) (0.397056 -0.000531161 0) (0.395923 -0.000525844 0) (0.394801 -0.000520614 0) (0.39369 -0.000515472 0) (0.39259 -0.000510413 0) (0.3915 -0.000505438 0) (0.390421 -0.000500543 0) (0.389352 -0.000495727 0) (0.388293 -0.000490988 0) (0.387245 -0.000486325 0) (0.386206 -0.000481735 0) (0.385176 -0.000477218 0) (0.384157 -0.000472771 0) (0.383146 -0.000468393 0) (0.382145 -0.000464083 0) (0.381153 -0.000459839 0) (0.38017 -0.00045566 0) (0.379196 -0.000451544 0) (0.37823 -0.000447491 0) (0.377274 -0.000443499 0) (0.376325 -0.000439567 0) (0.375385 -0.000435693 0) (0.374453 -0.000431877 0) (0.373529 -0.000428117 0) (0.372613 -0.000424413 0) (0.371705 -0.000420764 0) (0.370805 -0.000417168 0) (0.369912 -0.000413624 0) (0.369027 -0.000410132 0) (0.36815 -0.000406691 0) (0.36728 -0.0004033 0) (0.366416 -0.000399957 0) (0.365561 -0.000396662 0) (0.364712 -0.000393414 0) (0.36387 -0.000390212 0) (0.363035 -0.000387056 0) (0.362206 -0.000383942 0) (0.361384 -0.000380874 0) (0.360569 -0.000377846 0) (0.359761 -0.000374864 0) (0.358958 -0.000371916 0) (0.358162 -0.00036902 0) (0.357373 -0.000366141 0) (0.356589 -0.000363323 0) (0.355812 -0.000360501 0) (0.394084 -0.000684924 0) (0.39227 -0.000674809 0) (0.390482 -0.000664799 0) (0.38872 -0.000654839 0) (0.386983 -0.000645087 0) (0.385271 -0.000635588 0) (0.383584 -0.00062632 0) (0.381921 -0.000617263 0) (0.380281 -0.000608412 0) (0.378664 -0.000599762 0) (0.377069 -0.000591306 0) (0.375496 -0.000583037 0) (0.373944 -0.00057495 0) (0.372414 -0.000567039 0) (0.370903 -0.000559298 0) (0.369413 -0.000551723 0) (0.367943 -0.000544309 0) (0.366492 -0.000537052 0) (0.36506 -0.000529946 0) (0.363646 -0.000522989 0) (0.36225 -0.000516174 0) (0.360872 -0.0005095 0) (0.359512 -0.000502962 0) (0.358168 -0.000496555 0) (0.356842 -0.000490278 0) (0.355532 -0.000484126 0) (0.354237 -0.000478096 0) (0.352959 -0.000472186 0) (0.351696 -0.000466391 0) (0.350448 -0.00046071 0) (0.349215 -0.000455139 0) (0.347997 -0.000449676 0) (0.346793 -0.000444317 0) (0.345604 -0.000439061 0) (0.344428 -0.000433906 0) (0.343265 -0.000428847 0) (0.342116 -0.000423884 0) (0.34098 -0.000419014 0) (0.339857 -0.000414235 0) (0.338746 -0.000409544 0) (0.337648 -0.00040494 0) (0.336562 -0.00040042 0) (0.335488 -0.000395983 0) (0.334426 -0.000391626 0) (0.333375 -0.000387348 0) (0.332335 -0.000383146 0) (0.331307 -0.000379019 0) (0.33029 -0.000374966 0) (0.329283 -0.000370985 0) (0.328287 -0.000367073 0) (0.327301 -0.00036323 0) (0.326326 -0.000359453 0) (0.32536 -0.000355742 0) (0.324405 -0.000352095 0) (0.323459 -0.00034851 0) (0.322523 -0.000344987 0) (0.321596 -0.000341522 0) (0.320678 -0.000338117 0) (0.31977 -0.000334768 0) (0.31887 -0.000331475 0) (0.317979 -0.000328236 0) (0.317097 -0.000325051 0) (0.316223 -0.000321917 0) (0.315358 -0.000318834 0) (0.314501 -0.000315802 0) (0.313652 -0.000312817 0) (0.312811 -0.00030988 0) (0.311978 -0.00030699 0) (0.311153 -0.000304145 0) (0.310335 -0.000301344 0) (0.309525 -0.000298587 0) (0.308722 -0.000295873 0) (0.307927 -0.0002932 0) (0.307138 -0.000290568 0) (0.306357 -0.000287977 0) (0.305583 -0.000285424 0) (0.304815 -0.00028291 0) (0.304055 -0.000280434 0) (0.303301 -0.000277995 0) (0.302553 -0.000275592 0) (0.301812 -0.000273226 0) (0.301078 -0.000270894 0) (0.30035 -0.000268597 0) (0.299627 -0.000266334 0) (0.298911 -0.000264104 0) (0.298201 -0.000261906 0) (0.297497 -0.000259741 0) (0.296799 -0.000257607 0) (0.296107 -0.000255504 0) (0.29542 -0.000253431 0) (0.294739 -0.000251388 0) (0.294063 -0.000249373 0) (0.293393 -0.000247388 0) (0.292729 -0.000245428 0) (0.292069 -0.0002435 0) (0.291415 -0.000241592 0) (0.290766 -0.000239722 0) (0.290122 -0.000237856 0) (0.289483 -0.000236039 0) (0.288849 -0.000234202 0) (0.304266 -0.000400492 0) (0.302851 -0.000394657 0) (0.301456 -0.000388793 0) (0.300082 -0.000382897 0) (0.298728 -0.000377129 0) (0.297395 -0.000371524 0) (0.29608 -0.00036606 0) (0.294785 -0.000360722 0) (0.293509 -0.000355508 0) (0.29225 -0.000350414 0) (0.291009 -0.000345436 0) (0.289786 -0.00034057 0) (0.288579 -0.000335812 0) (0.287389 -0.000331158 0) (0.286215 -0.000326607 0) (0.285058 -0.000322153 0) (0.283915 -0.000317796 0) (0.282788 -0.000313531 0) (0.281676 -0.000309357 0) (0.280579 -0.00030527 0) (0.279496 -0.000301269 0) (0.278427 -0.00029735 0) (0.277371 -0.000293512 0) (0.276329 -0.000289753 0) (0.2753 -0.00028607 0) (0.274284 -0.000282462 0) (0.273281 -0.000278926 0) (0.27229 -0.00027546 0) (0.271312 -0.000272064 0) (0.270345 -0.000268734 0) (0.26939 -0.00026547 0) (0.268447 -0.00026227 0) (0.267514 -0.000259132 0) (0.266593 -0.000256054 0) (0.265683 -0.000253036 0) (0.264783 -0.000250076 0) (0.263894 -0.000247172 0) (0.263015 -0.000244323 0) (0.262146 -0.000241528 0) (0.261287 -0.000238786 0) (0.260437 -0.000236094 0) (0.259597 -0.000233453 0) (0.258767 -0.00023086 0) (0.257945 -0.000228315 0) (0.257133 -0.000225816 0) (0.256329 -0.000223363 0) (0.255534 -0.000220954 0) (0.254748 -0.000218589 0) (0.25397 -0.000216266 0) (0.2532 -0.000213984 0) (0.252439 -0.000211742 0) (0.251685 -0.00020954 0) (0.250939 -0.000207376 0) (0.250201 -0.00020525 0) (0.24947 -0.000203161 0) (0.248747 -0.000201108 0) (0.248031 -0.00019909 0) (0.247323 -0.000197106 0) (0.246621 -0.000195156 0) (0.245926 -0.000193238 0) (0.245238 -0.000191353 0) (0.244557 -0.000189499 0) (0.243883 -0.000187675 0) (0.243214 -0.000185881 0) (0.242553 -0.000184117 0) (0.241897 -0.000182381 0) (0.241248 -0.000180673 0) (0.240605 -0.000178992 0) (0.239968 -0.000177338 0) (0.239337 -0.00017571 0) (0.238711 -0.000174108 0) (0.238092 -0.00017253 0) (0.237478 -0.000170977 0) (0.236869 -0.000169448 0) (0.236266 -0.000167943 0) (0.235669 -0.00016646 0) (0.235077 -0.000165001 0) (0.234489 -0.000163563 0) (0.233908 -0.000162147 0) (0.233331 -0.000160752 0) (0.232759 -0.000159378 0) (0.232192 -0.000158025 0) (0.23163 -0.000156693 0) (0.231073 -0.00015538 0) (0.23052 -0.000154086 0) (0.229972 -0.000152812 0) (0.229429 -0.000151556 0) (0.22889 -0.000150319 0) (0.228355 -0.0001491 0) (0.227825 -0.000147898 0) (0.2273 -0.000146715 0) (0.226778 -0.000145547 0) (0.226261 -0.000144397 0) (0.225748 -0.000143261 0) (0.225239 -0.000142146 0) (0.224734 -0.000141039 0) (0.224232 -0.000139959 0) (0.223735 -0.000138875 0) (0.223242 -0.000137826 0) (0.222753 -0.000136752 0) (0.215359 -0.000194345 0) (0.214355 -0.000191603 0) (0.213365 -0.000188758 0) (0.212391 -0.000185855 0) (0.21143 -0.000183027 0) (0.210485 -0.000180292 0) (0.209553 -0.000177628 0) (0.208635 -0.000175025 0) (0.20773 -0.000172483 0) (0.206838 -0.000170001 0) (0.205959 -0.000167576 0) (0.205092 -0.000165206 0) (0.204237 -0.000162889 0) (0.203395 -0.000160624 0) (0.202564 -0.000158408 0) (0.201744 -0.000156241 0) (0.200935 -0.00015412 0) (0.200138 -0.000152046 0) (0.199351 -0.000150015 0) (0.198574 -0.000148028 0) (0.197808 -0.000146082 0) (0.197051 -0.000144177 0) (0.196305 -0.000142311 0) (0.195568 -0.000140484 0) (0.19484 -0.000138695 0) (0.194122 -0.000136942 0) (0.193412 -0.000135224 0) (0.192712 -0.000133541 0) (0.19202 -0.000131892 0) (0.191337 -0.000130275 0) (0.190662 -0.000128691 0) (0.189995 -0.000127137 0) (0.189336 -0.000125615 0) (0.188685 -0.000124122 0) (0.188042 -0.000122658 0) (0.187406 -0.000121222 0) (0.186778 -0.000119814 0) (0.186157 -0.000118433 0) (0.185543 -0.000117078 0) (0.184936 -0.000115749 0) (0.184336 -0.000114446 0) (0.183743 -0.000113166 0) (0.183156 -0.000111911 0) (0.182576 -0.000110679 0) (0.182002 -0.000109469 0) (0.181435 -0.000108282 0) (0.180873 -0.000107116 0) (0.180318 -0.000105972 0) (0.179769 -0.000104849 0) (0.179225 -0.000103745 0) (0.178687 -0.000102661 0) (0.178155 -0.000101597 0) (0.177628 -0.000100551 0) (0.177107 -9.9524e-05 0) (0.176591 -9.85146e-05 0) (0.176081 -9.75229e-05 0) (0.175575 -9.65482e-05 0) (0.175075 -9.55903e-05 0) (0.174579 -9.46488e-05 0) (0.174089 -9.37232e-05 0) (0.173603 -9.28133e-05 0) (0.173122 -9.19186e-05 0) (0.172645 -9.10388e-05 0) (0.172174 -9.01735e-05 0) (0.171706 -8.93225e-05 0) (0.171244 -8.84853e-05 0) (0.170785 -8.76617e-05 0) (0.170331 -8.68514e-05 0) (0.169881 -8.6054e-05 0) (0.169435 -8.52693e-05 0) (0.168994 -8.4497e-05 0) (0.168556 -8.37369e-05 0) (0.168122 -8.29886e-05 0) (0.167692 -8.2252e-05 0) (0.167267 -8.15268e-05 0) (0.166844 -8.08128e-05 0) (0.166426 -8.01097e-05 0) (0.166011 -7.94173e-05 0) (0.1656 -7.87354e-05 0) (0.165193 -7.8064e-05 0) (0.164788 -7.74027e-05 0) (0.164388 -7.67515e-05 0) (0.163991 -7.611e-05 0) (0.163597 -7.54781e-05 0) (0.163206 -7.48558e-05 0) (0.162819 -7.42427e-05 0) (0.162435 -7.36389e-05 0) (0.162054 -7.30437e-05 0) (0.161676 -7.24575e-05 0) (0.161301 -7.18795e-05 0) (0.16093 -7.13105e-05 0) (0.160561 -7.07488e-05 0) (0.160195 -7.01966e-05 0) (0.159832 -6.96501e-05 0) (0.159472 -6.9115e-05 0) (0.159115 -6.85818e-05 0) (0.158761 -6.80643e-05 0) (0.158409 -6.75408e-05 0) (0.15806 -6.70398e-05 0) (0.157714 -6.65164e-05 0) (0.127974 -6.34682e-05 0) (0.127379 -6.26305e-05 0) (0.126793 -6.1698e-05 0) (0.126215 -6.07279e-05 0) (0.125646 -5.97952e-05 0) (0.125086 -5.88995e-05 0) (0.124534 -5.80271e-05 0) (0.12399 -5.71746e-05 0) (0.123454 -5.63423e-05 0) (0.122926 -5.55299e-05 0) (0.122405 -5.47365e-05 0) (0.121892 -5.39611e-05 0) (0.121386 -5.32033e-05 0) (0.120887 -5.24624e-05 0) (0.120395 -5.1738e-05 0) (0.11991 -5.10295e-05 0) (0.119431 -5.03365e-05 0) (0.118959 -4.96584e-05 0) (0.118494 -4.8995e-05 0) (0.118034 -4.83457e-05 0) (0.11758 -4.77102e-05 0) (0.117133 -4.7088e-05 0) (0.116691 -4.64788e-05 0) (0.116255 -4.58824e-05 0) (0.115824 -4.52982e-05 0) (0.115399 -4.4726e-05 0) (0.11498 -4.41654e-05 0) (0.114565 -4.36163e-05 0) (0.114156 -4.30782e-05 0) (0.113752 -4.25509e-05 0) (0.113352 -4.20342e-05 0) (0.112958 -4.15278e-05 0) (0.112568 -4.10314e-05 0) (0.112183 -4.05448e-05 0) (0.111803 -4.00677e-05 0) (0.111427 -3.96e-05 0) (0.111055 -3.91414e-05 0) (0.110688 -3.86917e-05 0) (0.110325 -3.82507e-05 0) (0.109966 -3.78181e-05 0) (0.109611 -3.73939e-05 0) (0.10926 -3.69776e-05 0) (0.108913 -3.65693e-05 0) (0.108569 -3.61687e-05 0) (0.10823 -3.57755e-05 0) (0.107894 -3.53897e-05 0) (0.107562 -3.5011e-05 0) (0.107234 -3.46393e-05 0) (0.106909 -3.42744e-05 0) (0.106587 -3.39161e-05 0) (0.106269 -3.35643e-05 0) (0.105954 -3.32188e-05 0) (0.105642 -3.28796e-05 0) (0.105334 -3.25463e-05 0) (0.105029 -3.2219e-05 0) (0.104726 -3.18974e-05 0) (0.104427 -3.15814e-05 0) (0.104131 -3.12709e-05 0) (0.103838 -3.09658e-05 0) (0.103547 -3.06659e-05 0) (0.10326 -3.03711e-05 0) (0.102975 -3.00813e-05 0) (0.102693 -2.97964e-05 0) (0.102414 -2.95163e-05 0) (0.102137 -2.92408e-05 0) (0.101863 -2.89698e-05 0) (0.101591 -2.87033e-05 0) (0.101322 -2.84411e-05 0) (0.101056 -2.81831e-05 0) (0.100792 -2.79292e-05 0) (0.10053 -2.76794e-05 0) (0.100271 -2.74336e-05 0) (0.100014 -2.71916e-05 0) (0.099759 -2.69534e-05 0) (0.0995066 -2.67189e-05 0) (0.0992564 -2.6488e-05 0) (0.0990083 -2.62607e-05 0) (0.0987625 -2.60369e-05 0) (0.0985187 -2.58165e-05 0) (0.0982771 -2.55995e-05 0) (0.0980375 -2.53858e-05 0) (0.0977999 -2.51753e-05 0) (0.0975643 -2.4968e-05 0) (0.0973307 -2.47639e-05 0) (0.097099 -2.45629e-05 0) (0.0968692 -2.43648e-05 0) (0.0966413 -2.41698e-05 0) (0.0964153 -2.39775e-05 0) (0.096191 -2.37883e-05 0) (0.0959686 -2.36015e-05 0) (0.095748 -2.34179e-05 0) (0.095529 -2.32363e-05 0) (0.0953118 -2.30584e-05 0) (0.0950964 -2.28815e-05 0) (0.0948825 -2.27093e-05 0) (0.0946704 -2.25363e-05 0) (0.0944598 -2.23705e-05 0) (0.0942509 -2.21997e-05 0) (0.0940434 -2.20398e-05 0) (0.0938377 -2.18674e-05 0) (0.0424322 -2.94032e-06 0) (0.0422363 -2.92686e-06 0) (0.0420431 -2.8772e-06 0) (0.0418528 -2.82539e-06 0) (0.0416656 -2.78132e-06 0) (0.0414811 -2.74009e-06 0) (0.0412995 -2.69941e-06 0) (0.0411205 -2.65951e-06 0) (0.0409441 -2.6207e-06 0) (0.0407703 -2.58291e-06 0) (0.0405989 -2.54606e-06 0) (0.0404301 -2.51007e-06 0) (0.0402636 -2.47493e-06 0) (0.0400994 -2.4406e-06 0) (0.0399375 -2.40706e-06 0) (0.0397778 -2.37427e-06 0) (0.0396203 -2.34223e-06 0) (0.0394649 -2.3109e-06 0) (0.0393117 -2.28027e-06 0) (0.0391604 -2.25032e-06 0) (0.0390112 -2.22102e-06 0) (0.0388639 -2.19235e-06 0) (0.0387185 -2.16431e-06 0) (0.038575 -2.13686e-06 0) (0.0384333 -2.11001e-06 0) (0.0382934 -2.08371e-06 0) (0.0381553 -2.05797e-06 0) (0.0380189 -2.03277e-06 0) (0.0378842 -2.00809e-06 0) (0.0377512 -1.98392e-06 0) (0.0376197 -1.96025e-06 0) (0.0374899 -1.93706e-06 0) (0.0373616 -1.91436e-06 0) (0.0372348 -1.89211e-06 0) (0.0371096 -1.87033e-06 0) (0.0369858 -1.84899e-06 0) (0.0368634 -1.82809e-06 0) (0.0367425 -1.80761e-06 0) (0.0366229 -1.78755e-06 0) (0.0365047 -1.7679e-06 0) (0.0363878 -1.74865e-06 0) (0.0362722 -1.72978e-06 0) (0.0361579 -1.7113e-06 0) (0.0360449 -1.69318e-06 0) (0.0359331 -1.67543e-06 0) (0.0358225 -1.65802e-06 0) (0.0357131 -1.64097e-06 0) (0.0356048 -1.62424e-06 0) (0.0354977 -1.60785e-06 0) (0.0353917 -1.59176e-06 0) (0.0352869 -1.576e-06 0) (0.0351831 -1.56053e-06 0) (0.0350803 -1.54536e-06 0) (0.0349786 -1.53047e-06 0) (0.0348779 -1.51587e-06 0) (0.0347783 -1.50153e-06 0) (0.0346796 -1.48746e-06 0) (0.0345819 -1.47364e-06 0) (0.0344851 -1.46009e-06 0) (0.0343893 -1.44677e-06 0) (0.0342944 -1.4337e-06 0) (0.0342005 -1.42085e-06 0) (0.0341074 -1.40823e-06 0) (0.0340152 -1.39583e-06 0) (0.0339238 -1.38365e-06 0) (0.0338333 -1.37166e-06 0) (0.0337436 -1.35989e-06 0) (0.0336548 -1.34831e-06 0) (0.0335667 -1.33693e-06 0) (0.0334795 -1.32572e-06 0) (0.033393 -1.31471e-06 0) (0.0333073 -1.30386e-06 0) (0.0332223 -1.2932e-06 0) (0.0331381 -1.28269e-06 0) (0.0330546 -1.27236e-06 0) (0.0329719 -1.26217e-06 0) (0.0328898 -1.25216e-06 0) (0.0328085 -1.24229e-06 0) (0.0327279 -1.23258e-06 0) (0.0326479 -1.22301e-06 0) (0.0325686 -1.2136e-06 0) (0.0324899 -1.20433e-06 0) (0.0324119 -1.19521e-06 0) (0.0323345 -1.18621e-06 0) (0.0322578 -1.17736e-06 0) (0.0321817 -1.16863e-06 0) (0.0321062 -1.16006e-06 0) (0.0320313 -1.15156e-06 0) (0.031957 -1.14327e-06 0) (0.0318832 -1.13498e-06 0) (0.0318101 -1.12698e-06 0) (0.0317375 -1.11884e-06 0) (0.0316654 -1.1112e-06 0) (0.0315939 -1.1031e-06 0) (0.031523 -1.09594e-06 0) (0.0314526 -1.0877e-06 0) (0.0313827 -1.0812e-06 0) (0.0313133 -1.07258e-06 0) (0.0312445 -1.06671e-06 0) (0.0311761 -1.05784e-06 0) (1.01514 0.00190899 0) (1.01518 0.00191712 0) (1.01522 0.00192351 0) (1.01526 0.00192803 0) (1.01529 0.00193057 0) (1.01533 0.00193104 0) (1.01537 0.00192937 0) (1.01541 0.00192551 0) (1.01545 0.00191943 0) (1.01549 0.00191116 0) (1.01553 0.00190071 0) (1.01557 0.00188815 0) (1.01561 0.00187357 0) (1.01566 0.00185708 0) (1.0157 0.0018388 0) (1.01574 0.00181889 0) (1.01578 0.0017975 0) (1.01582 0.00177481 0) (1.01586 0.00175099 0) (1.01591 0.00172621 0) (1.01595 0.00170067 0) (1.01599 0.00167452 0) (1.01603 0.00164792 0) (1.01607 0.00162102 0) (1.01612 0.00159394 0) (1.01616 0.00156681 0) (1.0162 0.00153972 0) (1.01624 0.00151274 0) (1.01628 0.00148594 0) (1.01633 0.00145935 0) (1.01637 0.001433 0) (1.01641 0.00140692 0) (1.01645 0.00138112 0) (1.01649 0.0013556 0) (1.01653 0.00133036 0) (1.01657 0.00130542 0) (1.01661 0.00128078 0) (1.01665 0.00125648 0) (1.01669 0.00123254 0) (1.01673 0.00120901 0) (1.01677 0.00118596 0) (1.0168 0.00116347 0) (1.01684 0.00114164 0) (1.01688 0.00112058 0) (1.01691 0.00110043 0) (1.01695 0.00108135 0) (1.01698 0.00106348 0) (1.01702 0.00104701 0) (1.01705 0.00103214 0) (1.01709 0.00101905 0) (1.01712 0.00100795 0) (1.01715 0.000999046 0) (1.01718 0.000992549 0) (1.01721 0.000988665 0) (1.01725 0.000987595 0) (1.01728 0.000989535 0) (1.01731 0.000994668 0) (1.01734 0.00100316 0) (1.01736 0.00101517 0) (1.01739 0.00103083 0) (1.01742 0.00105026 0) (1.01745 0.00107354 0) (1.01748 0.00110074 0) (1.01751 0.00113191 0) (1.01753 0.00116705 0) (1.01756 0.00120617 0) (1.01759 0.0012492 0) (1.01762 0.00129609 0) (1.01765 0.00134674 0) (1.01768 0.00140099 0) (1.01771 0.0014587 0) (1.01774 0.00151967 0) (1.01777 0.00158366 0) (1.0178 0.00165042 0) (1.01783 0.00171969 0) (1.01786 0.00179118 0) (1.0179 0.00186458 0) (1.01794 0.00193963 0) (1.01797 0.00201604 0) (1.01801 0.00209361 0) (1.01805 0.00217208 0) (1.01809 0.00225141 0) (1.01814 0.00233136 0) (1.01818 0.00241217 0) (1.01823 0.00249347 0) (1.01828 0.002576 0) (1.01833 0.00265892 0) (1.01839 0.002744 0) (1.01844 0.00282906 0) (1.01851 0.00291812 0) (1.01857 0.00300566 0) (1.01864 0.00310105 0) (1.0187 0.00319061 0) (1.01878 0.00329637 0) (1.01885 0.00338524 0) (1.01894 0.00350921 0) (1.019 0.00358915 0) (1.01913 0.00374784 0) (1.01916 0.00379739 0) (1.01935 0.00402731 0) (1.01514 0.00174183 0) (1.01518 0.00174957 0) (1.01522 0.00175563 0) (1.01526 0.00175988 0) (1.01529 0.00176221 0) (1.01533 0.00176253 0) (1.01537 0.00176077 0) (1.01541 0.0017569 0) (1.01545 0.00175088 0) (1.01549 0.00174274 0) (1.01553 0.00173249 0) (1.01557 0.00172022 0) (1.01561 0.001706 0) (1.01566 0.00168994 0) (1.0157 0.00167217 0) (1.01574 0.00165284 0) (1.01578 0.00163212 0) (1.01582 0.00161016 0) (1.01586 0.00158715 0) (1.0159 0.00156326 0) (1.01595 0.00153867 0) (1.01599 0.00151355 0) (1.01603 0.00148805 0) (1.01607 0.00146232 0) (1.01611 0.0014365 0) (1.01615 0.00141069 0) (1.0162 0.00138498 0) (1.01624 0.00135946 0) (1.01628 0.00133419 0) (1.01632 0.0013092 0) (1.01636 0.00128453 0) (1.0164 0.0012602 0) (1.01644 0.0012362 0) (1.01648 0.00121256 0) (1.01652 0.00118927 0) (1.01656 0.00116633 0) (1.0166 0.00114377 0) (1.01664 0.00112158 0) (1.01668 0.00109982 0) (1.01672 0.00107851 0) (1.01676 0.00105772 0) (1.0168 0.00103753 0) (1.01684 0.00101803 0) (1.01687 0.000999314 0) (1.01691 0.000981523 0) (1.01695 0.000964793 0) (1.01698 0.000949279 0) (1.01702 0.000935149 0) (1.01705 0.000922579 0) (1.01709 0.000911758 0) (1.01712 0.000902877 0) (1.01716 0.000896132 0) (1.01719 0.000891721 0) (1.01723 0.000889838 0) (1.01726 0.000890674 0) (1.01729 0.000894412 0) (1.01732 0.000901224 0) (1.01736 0.000911268 0) (1.01739 0.000924686 0) (1.01742 0.000941604 0) (1.01745 0.000962123 0) (1.01748 0.000986325 0) (1.01751 0.00101427 0) (1.01755 0.00104599 0) (1.01758 0.00108149 0) (1.01761 0.00112075 0) (1.01764 0.00116372 0) (1.01767 0.00121033 0) (1.01771 0.00126046 0) (1.01774 0.00131398 0) (1.01777 0.00137072 0) (1.01781 0.00143048 0) (1.01784 0.00149303 0) (1.01788 0.00155812 0) (1.01792 0.00162546 0) (1.01796 0.00169479 0) (1.018 0.00176578 0) (1.01804 0.00183819 0) (1.01808 0.00191171 0) (1.01812 0.00198614 0) (1.01817 0.00206123 0) (1.01821 0.00213694 0) (1.01826 0.00221303 0) (1.01831 0.0022897 0) (1.01836 0.00236664 0) (1.01842 0.00244452 0) (1.01848 0.00252258 0) (1.01854 0.00260247 0) (1.0186 0.00268216 0) (1.01866 0.00276544 0) (1.01873 0.00284714 0) (1.0188 0.00293605 0) (1.01887 0.0030194 0) (1.01895 0.00311781 0) (1.01902 0.00320035 0) (1.01912 0.00331565 0) (1.01918 0.0033898 0) (1.01932 0.00353744 0) (1.01935 0.00358334 0) (1.01954 0.00379736 0) (1.01515 0.00157829 0) (1.01519 0.00158582 0) (1.01523 0.00159172 0) (1.01527 0.00159586 0) (1.01531 0.00159815 0) (1.01535 0.00159848 0) (1.01539 0.0015968 0) (1.01543 0.00159306 0) (1.01547 0.00158724 0) (1.01551 0.00157937 0) (1.01555 0.00156946 0) (1.01559 0.00155758 0) (1.01563 0.00154383 0) (1.01567 0.0015283 0) (1.01571 0.00151113 0) (1.01575 0.00149246 0) (1.01579 0.00147246 0) (1.01583 0.00145129 0) (1.01588 0.00142912 0) (1.01592 0.00140613 0) (1.01596 0.0013825 0) (1.016 0.0013584 0) (1.01604 0.00133397 0) (1.01608 0.00130937 0) (1.01612 0.00128472 0) (1.01617 0.00126014 0) (1.01621 0.00123572 0) (1.01625 0.00121154 0) (1.01629 0.00118765 0) (1.01633 0.00116411 0) (1.01637 0.00114093 0) (1.01641 0.00111814 0) (1.01645 0.00109574 0) (1.01649 0.00107374 0) (1.01654 0.00105213 0) (1.01658 0.00103093 0) (1.01662 0.00101014 0) (1.01666 0.000989778 0) (1.0167 0.000969866 0) (1.01673 0.000950446 0) (1.01677 0.000931573 0) (1.01681 0.000913316 0) (1.01685 0.000895761 0) (1.01689 0.00087901 0) (1.01693 0.000863181 0) (1.01696 0.000848408 0) (1.017 0.000834837 0) (1.01704 0.000822627 0) (1.01708 0.000811947 0) (1.01711 0.000802973 0) (1.01715 0.000795889 0) (1.01718 0.000790881 0) (1.01722 0.000788135 0) (1.01725 0.000787838 0) (1.01729 0.000790168 0) (1.01732 0.000795299 0) (1.01736 0.000803392 0) (1.01739 0.000814597 0) (1.01743 0.000829047 0) (1.01746 0.000846855 0) (1.0175 0.000868118 0) (1.01753 0.000892908 0) (1.01757 0.000921275 0) (1.0176 0.000953245 0) (1.01764 0.000988818 0) (1.01767 0.00102797 0) (1.01771 0.00107064 0) (1.01774 0.00111675 0) (1.01778 0.0011662 0) (1.01782 0.00121882 0) (1.01785 0.00127447 0) (1.01789 0.00133292 0) (1.01793 0.00139396 0) (1.01797 0.00145733 0) (1.01801 0.00152275 0) (1.01806 0.00158994 0) (1.0181 0.00165859 0) (1.01814 0.00172845 0) (1.01819 0.00179922 0) (1.01824 0.00187069 0) (1.01829 0.00194262 0) (1.01834 0.00201495 0) (1.01839 0.00208745 0) (1.01844 0.00216033 0) (1.0185 0.00223325 0) (1.01856 0.00230689 0) (1.01862 0.00238051 0) (1.01868 0.00245568 0) (1.01875 0.00253049 0) (1.01882 0.00260854 0) (1.01889 0.00268495 0) (1.01896 0.00276802 0) (1.01903 0.00284575 0) (1.01912 0.00293753 0) (1.01919 0.00301436 0) (1.0193 0.00312184 0) (1.01936 0.00319078 0) (1.01949 0.00332844 0) (1.01953 0.00337106 0) (1.01972 0.00357071 0) (1.01518 0.0014181 0) (1.01522 0.00142555 0) (1.01525 0.00143142 0) (1.01529 0.00143558 0) (1.01533 0.00143793 0) (1.01537 0.00143839 0) (1.01541 0.00143689 0) (1.01545 0.00143339 0) (1.01549 0.00142788 0) (1.01553 0.00142037 0) (1.01557 0.00141089 0) (1.01561 0.0013995 0) (1.01565 0.00138629 0) (1.0157 0.00137136 0) (1.01574 0.00135485 0) (1.01578 0.00133689 0) (1.01582 0.00131765 0) (1.01586 0.0012973 0) (1.0159 0.00127599 0) (1.01594 0.00125392 0) (1.01599 0.00123125 0) (1.01603 0.00120814 0) (1.01607 0.00118476 0) (1.01611 0.00116124 0) (1.01615 0.00113771 0) (1.01619 0.00111429 0) (1.01623 0.00109107 0) (1.01628 0.00106813 0) (1.01632 0.00104552 0) (1.01636 0.00102328 0) (1.0164 0.00100145 0) (1.01644 0.000980045 0) (1.01648 0.000959066 0) (1.01652 0.000938519 0) (1.01656 0.000918405 0) (1.0166 0.000898725 0) (1.01664 0.000879484 0) (1.01668 0.000860698 0) (1.01672 0.000842388 0) (1.01676 0.000824592 0) (1.0168 0.000807358 0) (1.01684 0.000790753 0) (1.01688 0.000774856 0) (1.01692 0.000759765 0) (1.01696 0.000745591 0) (1.017 0.00073246 0) (1.01704 0.000720512 0) (1.01708 0.000709898 0) (1.01711 0.000700778 0) (1.01715 0.000693322 0) (1.01719 0.000687704 0) (1.01723 0.000684101 0) (1.01726 0.000682691 0) (1.0173 0.00068365 0) (1.01734 0.00068715 0) (1.01737 0.000693355 0) (1.01741 0.000702417 0) (1.01745 0.000714477 0) (1.01748 0.00072966 0) (1.01752 0.000748073 0) (1.01756 0.000769803 0) (1.01759 0.000794916 0) (1.01763 0.000823456 0) (1.01767 0.000855442 0) (1.01771 0.00089087 0) (1.01774 0.000929709 0) (1.01778 0.000971899 0) (1.01782 0.00101735 0) (1.01786 0.00106596 0) (1.0179 0.00111758 0) (1.01794 0.00117202 0) (1.01798 0.0012291 0) (1.01803 0.00128858 0) (1.01807 0.00135021 0) (1.01811 0.00141371 0) (1.01816 0.0014788 0) (1.01821 0.00154518 0) (1.01826 0.00161258 0) (1.01831 0.00168072 0) (1.01836 0.00174939 0) (1.01841 0.00181834 0) (1.01846 0.00188751 0) (1.01852 0.00195668 0) (1.01858 0.00202604 0) (1.01864 0.00209528 0) (1.0187 0.00216502 0) (1.01876 0.00223457 0) (1.01883 0.00230544 0) (1.0189 0.00237581 0) (1.01897 0.0024491 0) (1.01904 0.00252071 0) (1.01912 0.0025985 0) (1.0192 0.00267114 0) (1.01929 0.00275692 0) (1.01936 0.00282859 0) (1.01947 0.00292899 0) (1.01953 0.00299321 0) (1.01967 0.00312184 0) (1.0197 0.00316149 0) (1.0199 0.00334811 0) (1.01521 0.00126113 0) (1.01525 0.00126859 0) (1.01529 0.0012745 0) (1.01533 0.00127876 0) (1.01537 0.00128127 0) (1.01541 0.00128193 0) (1.01545 0.00128069 0) (1.01549 0.00127752 0) (1.01553 0.00127238 0) (1.01557 0.00126529 0) (1.01561 0.0012563 0) (1.01565 0.00124545 0) (1.01569 0.00123284 0) (1.01574 0.00121856 0) (1.01578 0.00120274 0) (1.01582 0.00118554 0) (1.01586 0.00116709 0) (1.0159 0.00114756 0) (1.01594 0.00112714 0) (1.01598 0.00110598 0) (1.01603 0.00108425 0) (1.01607 0.00106213 0) (1.01611 0.00103976 0) (1.01615 0.00101728 0) (1.01619 0.000994828 0) (1.01623 0.000972508 0) (1.01628 0.000950415 0) (1.01632 0.000928623 0) (1.01636 0.000907191 0) (1.0164 0.000886162 0) (1.01644 0.000865563 0) (1.01648 0.00084541 0) (1.01652 0.000825712 0) (1.01657 0.000806469 0) (1.01661 0.000787682 0) (1.01665 0.00076935 0) (1.01669 0.000751479 0) (1.01673 0.00073408 0) (1.01677 0.000717173 0) (1.01681 0.000700791 0) (1.01685 0.000684982 0) (1.01689 0.000669804 0) (1.01693 0.000655335 0) (1.01697 0.000641666 0) (1.01701 0.000628903 0) (1.01705 0.000617166 0) (1.01709 0.000606588 0) (1.01713 0.000597313 0) (1.01717 0.000589495 0) (1.0172 0.000583295 0) (1.01724 0.00057888 0) (1.01728 0.000576419 0) (1.01732 0.000576083 0) (1.01736 0.00057804 0) (1.0174 0.000582453 0) (1.01744 0.000589478 0) (1.01747 0.000599261 0) (1.01751 0.000611935 0) (1.01755 0.000627616 0) (1.01759 0.000646406 0) (1.01763 0.000668385 0) (1.01767 0.000693614 0) (1.01771 0.00072213 0) (1.01775 0.000753948 0) (1.01779 0.00078906 0) (1.01783 0.000827429 0) (1.01787 0.000868994 0) (1.01791 0.000913668 0) (1.01795 0.000961334 0) (1.018 0.00101185 0) (1.01804 0.00106503 0) (1.01808 0.00112069 0) (1.01813 0.00117858 0) (1.01818 0.00123847 0) (1.01822 0.00130007 0) (1.01827 0.0013631 0) (1.01832 0.00142728 0) (1.01837 0.00149232 0) (1.01843 0.00155795 0) (1.01848 0.00162395 0) (1.01854 0.0016901 0) (1.01859 0.00175631 0) (1.01865 0.00182238 0) (1.01871 0.00188847 0) (1.01878 0.00195429 0) (1.01884 0.00202044 0) (1.01891 0.00208626 0) (1.01898 0.00215318 0) (1.01905 0.0022195 0) (1.01912 0.00228845 0) (1.0192 0.0023557 0) (1.01928 0.00242867 0) (1.01936 0.0024967 0) (1.01945 0.00257703 0) (1.01952 0.00264401 0) (1.01963 0.00273798 0) (1.0197 0.00279793 0) (1.01984 0.00291835 0) (1.01987 0.00295532 0) (1.02007 0.0031301 0) (1.01526 0.00110729 0) (1.0153 0.00111481 0) (1.01534 0.00112083 0) (1.01538 0.00112525 0) (1.01542 0.00112796 0) (1.01546 0.00112889 0) (1.0155 0.00112796 0) (1.01554 0.00112515 0) (1.01558 0.00112043 0) (1.01562 0.00111382 0) (1.01566 0.00110536 0) (1.0157 0.00109509 0) (1.01575 0.0010831 0) (1.01579 0.0010695 0) (1.01583 0.00105441 0) (1.01587 0.00103797 0) (1.01591 0.00102032 0) (1.01595 0.00100164 0) (1.016 0.000982091 0) (1.01604 0.000961838 0) (1.01608 0.00094105 0) (1.01612 0.000919887 0) (1.01616 0.000898503 0) (1.01621 0.000877036 0) (1.01625 0.000855612 0) (1.01629 0.00083434 0) (1.01633 0.000813313 0) (1.01637 0.000792605 0) (1.01641 0.000772274 0) (1.01646 0.000752362 0) (1.0165 0.000732896 0) (1.01654 0.000713893 0) (1.01658 0.000695361 0) (1.01662 0.0006773 0) (1.01666 0.00065971 0) (1.01671 0.000642589 0) (1.01675 0.000625941 0) (1.01679 0.000609776 0) (1.01683 0.000594112 0) (1.01687 0.000578979 0) (1.01691 0.00056442 0) (1.01695 0.000550492 0) (1.01699 0.000537267 0) (1.01703 0.000524831 0) (1.01707 0.000513286 0) (1.01711 0.000502746 0) (1.01715 0.000493337 0) (1.01719 0.000485198 0) (1.01723 0.000478476 0) (1.01727 0.000473326 0) (1.01731 0.000469906 0) (1.01735 0.000468381 0) (1.01739 0.000468912 0) (1.01743 0.000471661 0) (1.01747 0.000476784 0) (1.01751 0.00048443 0) (1.01755 0.000494739 0) (1.01759 0.000507835 0) (1.01763 0.00052383 0) (1.01767 0.000542818 0) (1.01771 0.000564876 0) (1.01775 0.000590057 0) (1.01779 0.000618396 0) (1.01784 0.000649903 0) (1.01788 0.000684566 0) (1.01792 0.000722346 0) (1.01796 0.00076318 0) (1.01801 0.000806979 0) (1.01805 0.000853625 0) (1.0181 0.000902973 0) (1.01814 0.000954849 0) (1.01819 0.00100905 0) (1.01824 0.00106536 0) (1.01829 0.00112351 0) (1.01834 0.00118324 0) (1.01839 0.00124427 0) (1.01844 0.0013063 0) (1.0185 0.00136907 0) (1.01855 0.0014323 0) (1.01861 0.00149579 0) (1.01867 0.00155928 0) (1.01873 0.00162272 0) (1.01879 0.00168588 0) (1.01885 0.00174893 0) (1.01892 0.00181158 0) (1.01899 0.00187441 0) (1.01906 0.0019368 0) (1.01913 0.0020001 0) (1.0192 0.0020627 0) (1.01928 0.00212767 0) (1.01935 0.00219094 0) (1.01944 0.00225951 0) (1.01952 0.00232333 0) (1.01961 0.0023987 0) (1.01969 0.00246143 0) (1.0198 0.00254954 0) (1.01986 0.00260561 0) (1.02 0.00271855 0) (1.02004 0.00275307 0) (1.02024 0.00291706 0) (1.01532 0.000956513 0) (1.01536 0.000964142 0) (1.0154 0.000970318 0) (1.01544 0.000974934 0) (1.01548 0.000977892 0) (1.01552 0.000979113 0) (1.01556 0.000978536 0) (1.0156 0.000976122 0) (1.01564 0.000971857 0) (1.01568 0.00096575 0) (1.01573 0.000957834 0) (1.01577 0.000948168 0) (1.01581 0.00093683 0) (1.01585 0.000923923 0) (1.01589 0.000909567 0) (1.01593 0.000893898 0) (1.01598 0.000877065 0) (1.01602 0.000859226 0) (1.01606 0.000840547 0) (1.0161 0.000821191 0) (1.01614 0.000801325 0) (1.01619 0.000781105 0) (1.01623 0.00076068 0) (1.01627 0.00074019 0) (1.01631 0.000719756 0) (1.01635 0.000699487 0) (1.0164 0.000679475 0) (1.01644 0.000659791 0) (1.01648 0.000640495 0) (1.01652 0.000621628 0) (1.01657 0.000603216 0) (1.01661 0.000585276 0) (1.01665 0.000567816 0) (1.01669 0.000550835 0) (1.01673 0.000534333 0) (1.01677 0.000518309 0) (1.01682 0.000502764 0) (1.01686 0.000487706 0) (1.0169 0.000473153 0) (1.01694 0.000459132 0) (1.01698 0.000445683 0) (1.01702 0.00043286 0) (1.01706 0.000420731 0) (1.01711 0.000409378 0) (1.01715 0.000398898 0) (1.01719 0.000389398 0) (1.01723 0.000381001 0) (1.01727 0.000373839 0) (1.01731 0.000368052 0) (1.01735 0.000363788 0) (1.01739 0.000361201 0) (1.01743 0.000360447 0) (1.01747 0.000361681 0) (1.01751 0.000365058 0) (1.01756 0.000370729 0) (1.0176 0.000378835 0) (1.01764 0.000389511 0) (1.01768 0.000402875 0) (1.01772 0.000419035 0) (1.01776 0.00043808 0) (1.01781 0.00046008 0) (1.01785 0.000485087 0) (1.01789 0.000513131 0) (1.01793 0.000544219 0) (1.01798 0.000578336 0) (1.01802 0.00061544 0) (1.01807 0.000655468 0) (1.01811 0.000698329 0) (1.01816 0.000743904 0) (1.01821 0.000792048 0) (1.01826 0.00084259 0) (1.01831 0.000895329 0) (1.01836 0.000950039 0) (1.01841 0.00100647 0) (1.01846 0.00106436 0) (1.01851 0.00112343 0) (1.01857 0.0011834 0) (1.01863 0.00124399 0) (1.01868 0.00130493 0) (1.01874 0.00136601 0) (1.0188 0.001427 0) (1.01887 0.00148782 0) (1.01893 0.00154826 0) (1.019 0.00160847 0) (1.01906 0.00166819 0) (1.01913 0.00172795 0) (1.0192 0.00178716 0) (1.01928 0.00184712 0) (1.01935 0.00190631 0) (1.01943 0.00196764 0) (1.01951 0.00202725 0) (1.01959 0.00209181 0) (1.01967 0.00215179 0) (1.01977 0.00222263 0) (1.01985 0.00228147 0) (1.01996 0.00236423 0) (1.02003 0.00241675 0) (1.02017 0.00252286 0) (1.02021 0.00255516 0) (1.02041 0.00270927 0) (1.01539 0.000808807 0) (1.01543 0.000816569 0) (1.01547 0.000822921 0) (1.01551 0.000827759 0) (1.01555 0.000830987 0) (1.01559 0.000832527 0) (1.01563 0.000832318 0) (1.01567 0.000830323 0) (1.01571 0.000826526 0) (1.01576 0.000820938 0) (1.0158 0.000813589 0) (1.01584 0.000804536 0) (1.01588 0.000793856 0) (1.01592 0.000781649 0) (1.01597 0.000768032 0) (1.01601 0.000753137 0) (1.01605 0.000737111 0) (1.01609 0.000720109 0) (1.01614 0.000702291 0) (1.01618 0.00068382 0) (1.01622 0.000664857 0) (1.01626 0.000645557 0) (1.0163 0.000626066 0) (1.01635 0.000606521 0) (1.01639 0.000587041 0) (1.01643 0.000567734 0) (1.01647 0.00054869 0) (1.01652 0.00052998 0) (1.01656 0.000511663 0) (1.0166 0.000493778 0) (1.01664 0.000476353 0) (1.01669 0.000459403 0) (1.01673 0.000442937 0) (1.01677 0.000426954 0) (1.01681 0.000411453 0) (1.01686 0.000396431 0) (1.0169 0.000381891 0) (1.01694 0.000367839 0) (1.01698 0.00035429 0) (1.01702 0.00034127 0) (1.01707 0.000328817 0) (1.01711 0.000316981 0) (1.01715 0.000305826 0) (1.01719 0.000295432 0) (1.01723 0.000285889 0) (1.01727 0.000277301 0) (1.01732 0.000269786 0) (1.01736 0.000263469 0) (1.0174 0.000258485 0) (1.01744 0.000254977 0) (1.01748 0.000253091 0) (1.01753 0.000252977 0) (1.01757 0.000254786 0) (1.01761 0.000258665 0) (1.01765 0.000264759 0) (1.01769 0.000273204 0) (1.01774 0.000284128 0) (1.01778 0.000297646 0) (1.01782 0.00031386 0) (1.01786 0.000332855 0) (1.01791 0.000354697 0) (1.01795 0.000379435 0) (1.018 0.000407094 0) (1.01804 0.000437681 0) (1.01809 0.000471176 0) (1.01813 0.000507538 0) (1.01818 0.000546702 0) (1.01823 0.000588575 0) (1.01828 0.00063304 0) (1.01833 0.000679953 0) (1.01838 0.000729143 0) (1.01843 0.000780412 0) (1.01848 0.000833538 0) (1.01853 0.000888277 0) (1.01859 0.000944364 0) (1.01864 0.00100153 0) (1.0187 0.00105949 0) (1.01876 0.00111797 0) (1.01882 0.00117672 0) (1.01888 0.00123552 0) (1.01894 0.00129413 0) (1.01901 0.00135249 0) (1.01907 0.00141038 0) (1.01914 0.00146795 0) (1.01921 0.00152494 0) (1.01928 0.00158185 0) (1.01935 0.00163813 0) (1.01943 0.00169501 0) (1.01951 0.00175106 0) (1.01959 0.00180905 0) (1.01967 0.00186531 0) (1.01975 0.00192618 0) (1.01983 0.00198265 0) (1.01993 0.00204932 0) (1.02001 0.00210461 0) (1.02012 0.00218247 0) (1.02019 0.00223176 0) (1.02033 0.0023316 0) (1.02037 0.00236186 0) (1.02057 0.00250691 0) (1.01547 0.000664171 0) (1.01551 0.000672082 0) (1.01555 0.000678624 0) (1.01559 0.000683698 0) (1.01563 0.000687207 0) (1.01567 0.000689076 0) (1.01571 0.000689246 0) (1.01575 0.000687679 0) (1.0158 0.000684359 0) (1.01584 0.000679296 0) (1.01588 0.000672519 0) (1.01592 0.000664083 0) (1.01597 0.000654063 0) (1.01601 0.000642555 0) (1.01605 0.000629674 0) (1.01609 0.000615549 0) (1.01614 0.000600323 0) (1.01618 0.000584147 0) (1.01622 0.000567178 0) (1.01626 0.000549576 0) (1.01631 0.000531497 0) (1.01635 0.000513094 0) (1.01639 0.00049451 0) (1.01643 0.000475879 0) (1.01648 0.00045732 0) (1.01652 0.000438938 0) (1.01656 0.00042082 0) (1.01661 0.000403039 0) (1.01665 0.00038565 0) (1.01669 0.000368694 0) (1.01673 0.000352199 0) (1.01678 0.000336179 0) (1.01682 0.000320641 0) (1.01686 0.000305587 0) (1.0169 0.000291014 0) (1.01695 0.000276919 0) (1.01699 0.000263304 0) (1.01703 0.000250173 0) (1.01707 0.000237541 0) (1.01712 0.000225432 0) (1.01716 0.00021388 0) (1.0172 0.000202934 0) (1.01724 0.000192655 0) (1.01729 0.000183117 0) (1.01733 0.000174408 0) (1.01737 0.000166626 0) (1.01741 0.000159884 0) (1.01746 0.000154304 0) (1.0175 0.000150015 0) (1.01754 0.000147156 0) (1.01758 0.000145866 0) (1.01763 0.000146287 0) (1.01767 0.000148568 0) (1.01771 0.000152848 0) (1.01776 0.000159268 0) (1.0178 0.000167957 0) (1.01784 0.000179038 0) (1.01789 0.000192622 0) (1.01793 0.000208805 0) (1.01798 0.000227669 0) (1.01802 0.000249276 0) (1.01807 0.000273672 0) (1.01811 0.00030088 0) (1.01816 0.000330903 0) (1.0182 0.000363722 0) (1.01825 0.000399294 0) (1.0183 0.000437551 0) (1.01835 0.000478404 0) (1.0184 0.000521735 0) (1.01845 0.000567403 0) (1.0185 0.000615237 0) (1.01856 0.000665044 0) (1.01861 0.000716603 0) (1.01866 0.000769677 0) (1.01872 0.000824003 0) (1.01878 0.000879316 0) (1.01884 0.000935336 0) (1.0189 0.000991804 0) (1.01896 0.00104845 0) (1.01902 0.00110507 0) (1.01909 0.00116144 0) (1.01915 0.00121748 0) (1.01922 0.00127298 0) (1.01929 0.00132807 0) (1.01936 0.0013825 0) (1.01943 0.00143677 0) (1.01951 0.00149034 0) (1.01958 0.00154438 0) (1.01966 0.00159753 0) (1.01974 0.00165244 0) (1.01982 0.00170563 0) (1.01991 0.00176311 0) (1.02 0.00181635 0) (1.02009 0.00187921 0) (1.02017 0.00193124 0) (1.02029 0.00200459 0) (1.02036 0.00205091 0) (1.0205 0.00214499 0) (1.02054 0.00217339 0) (1.02074 0.0023101 0) (1.01556 0.00052261 0) (1.0156 0.000530676 0) (1.01564 0.000537416 0) (1.01568 0.00054273 0) (1.01572 0.000546527 0) (1.01576 0.00054873 0) (1.0158 0.000549282 0) (1.01585 0.000548145 0) (1.01589 0.000545303 0) (1.01593 0.000540765 0) (1.01597 0.000534559 0) (1.01602 0.000526737 0) (1.01606 0.000517372 0) (1.0161 0.000506558 0) (1.01614 0.000494406 0) (1.01619 0.000481042 0) (1.01623 0.000466604 0) (1.01627 0.000451241 0) (1.01632 0.000435106 0) (1.01636 0.000418354 0) (1.0164 0.000401139 0) (1.01644 0.000383611 0) (1.01649 0.000365909 0) (1.01653 0.000348165 0) (1.01657 0.000330495 0) (1.01662 0.000313002 0) (1.01666 0.000295773 0) (1.0167 0.00027888 0) (1.01675 0.000262377 0) (1.01679 0.000246304 0) (1.01683 0.000230688 0) (1.01688 0.000215544 0) (1.01692 0.00020088 0) (1.01696 0.000186696 0) (1.017 0.000172988 0) (1.01705 0.000159754 0) (1.01709 0.000146995 0) (1.01713 0.000134715 0) (1.01718 0.000122927 0) (1.01722 0.000111653 0) (1.01726 0.000100925 0) (1.01731 9.07895e-05 0) (1.01735 8.13039e-05 0) (1.01739 7.2541e-05 0) (1.01743 6.45842e-05 0) (1.01748 5.75283e-05 0) (1.01752 5.148e-05 0) (1.01756 4.6555e-05 0) (1.01761 4.28787e-05 0) (1.01765 4.05808e-05 0) (1.01769 3.97992e-05 0) (1.01774 4.06725e-05 0) (1.01778 4.33382e-05 0) (1.01783 4.79346e-05 0) (1.01787 5.45942e-05 0) (1.01791 6.3445e-05 0) (1.01796 7.46045e-05 0) (1.018 8.81802e-05 0) (1.01805 0.000104264 0) (1.01809 0.000122932 0) (1.01814 0.000144244 0) (1.01819 0.000168244 0) (1.01823 0.00019495 0) (1.01828 0.000224366 0) (1.01833 0.00025647 0) (1.01838 0.00029122 0) (1.01843 0.000328547 0) (1.01848 0.000368364 0) (1.01853 0.000410553 0) (1.01858 0.000454975 0) (1.01864 0.000501462 0) (1.01869 0.000549825 0) (1.01874 0.000599847 0) (1.0188 0.000651293 0) (1.01886 0.000703906 0) (1.01892 0.000757426 0) (1.01898 0.000811577 0) (1.01904 0.000866105 0) (1.0191 0.000920745 0) (1.01917 0.000975298 0) (1.01923 0.00102953 0) (1.0193 0.00108337 0) (1.01937 0.00113662 0) (1.01944 0.00118939 0) (1.01951 0.00124144 0) (1.01959 0.00129324 0) (1.01966 0.00134429 0) (1.01974 0.0013957 0) (1.01982 0.00144618 0) (1.0199 0.00149824 0) (1.01999 0.00154859 0) (1.02007 0.00160296 0) (1.02016 0.00165323 0) (1.02026 0.00171258 0) (1.02034 0.00176162 0) (1.02045 0.00183082 0) (1.02052 0.00187442 0) (1.02066 0.00196318 0) (1.0207 0.00198988 0) (1.0209 0.00211889 0) (1.01565 0.000384131 0) (1.0157 0.000392354 0) (1.01574 0.000399292 0) (1.01578 0.000404848 0) (1.01582 0.000408931 0) (1.01586 0.000411467 0) (1.0159 0.000412398 0) (1.01595 0.000411689 0) (1.01599 0.000409322 0) (1.01603 0.000405304 0) (1.01607 0.000399662 0) (1.01612 0.000392447 0) (1.01616 0.00038373 0) (1.0162 0.0003736 0) (1.01625 0.000362166 0) (1.01629 0.00034955 0) (1.01633 0.000335887 0) (1.01638 0.000321322 0) (1.01642 0.000306003 0) (1.01646 0.000290082 0) (1.01651 0.000273711 0) (1.01655 0.000257034 0) (1.01659 0.00024019 0) (1.01664 0.000223305 0) (1.01668 0.000206495 0) (1.01672 0.00018986 0) (1.01677 0.000173485 0) (1.01681 0.000157444 0) (1.01685 0.000141788 0) (1.0169 0.000126557 0) (1.01694 0.000111777 0) (1.01698 9.74635e-05 0) (1.01703 8.36234e-05 0) (1.01707 7.02592e-05 0) (1.01711 5.73676e-05 0) (1.01716 4.49438e-05 0) (1.0172 3.29862e-05 0) (1.01724 2.14995e-05 0) (1.01729 1.0495e-05 0) (1.01733 -6.39604e-09 0) (1.01738 -9.97391e-06 0) (1.01742 -1.93643e-05 0) (1.01746 -2.81219e-05 0) (1.01751 -3.618e-05 0) (1.01755 -4.34581e-05 0) (1.01759 -4.98631e-05 0) (1.01764 -5.52925e-05 0) (1.01768 -5.96355e-05 0) (1.01772 -6.27728e-05 0) (1.01777 -6.458e-05 0) (1.01781 -6.49231e-05 0) (1.01786 -6.36669e-05 0) (1.0179 -6.06796e-05 0) (1.01795 -5.5829e-05 0) (1.01799 -4.89872e-05 0) (1.01804 -4.003e-05 0) (1.01808 -2.88453e-05 0) (1.01813 -1.53327e-05 0) (1.01817 5.97096e-07 0) (1.01822 1.90182e-05 0) (1.01827 3.99885e-05 0) (1.01831 6.35447e-05 0) (1.01836 8.97118e-05 0) (1.01841 0.000118491 0) (1.01846 0.000149856 0) (1.01851 0.000183764 0) (1.01856 0.000220148 0) (1.01861 0.000258921 0) (1.01867 0.000299967 0) (1.01872 0.00034315 0) (1.01877 0.000388306 0) (1.01883 0.000435247 0) (1.01889 0.000483762 0) (1.01894 0.00053362 0) (1.019 0.00058457 0) (1.01906 0.000636356 0) (1.01912 0.000688707 0) (1.01919 0.000741374 0) (1.01925 0.000794095 0) (1.01932 0.000846674 0) (1.01939 0.000898886 0) (1.01945 0.000950649 0) (1.01952 0.00100177 0) (1.0196 0.00105236 0) (1.01967 0.00110218 0) (1.01975 0.00115168 0) (1.01982 0.00120039 0) (1.0199 0.00124935 0) (1.01998 0.00129735 0) (1.02007 0.00134679 0) (1.02015 0.00139452 0) (1.02024 0.00144601 0) (1.02032 0.00149355 0) (1.02042 0.00154966 0) (1.0205 0.00159595 0) (1.02062 0.00166132 0) (1.02069 0.00170242 0) (1.02083 0.00178627 0) (1.02087 0.00181139 0) (1.02107 0.00193329 0) (1.01576 0.000248737 0) (1.0158 0.000257116 0) (1.01585 0.00026425 0) (1.01589 0.000270044 0) (1.01593 0.000274409 0) (1.01597 0.000277273 0) (1.01601 0.000278579 0) (1.01606 0.00027829 0) (1.0161 0.00027639 0) (1.01614 0.000272884 0) (1.01619 0.000267798 0) (1.01623 0.00026118 0) (1.01627 0.000253099 0) (1.01632 0.000243641 0) (1.01636 0.000232912 0) (1.0164 0.00022103 0) (1.01645 0.000208126 0) (1.01649 0.00019434 0) (1.01653 0.000179819 0) (1.01658 0.000164711 0) (1.01662 0.000149161 0) (1.01666 0.000133314 0) (1.01671 0.000117303 0) (1.01675 0.000101253 0) (1.0168 8.52777e-05 0) (1.01684 6.94756e-05 0) (1.01688 5.39313e-05 0) (1.01693 3.87088e-05 0) (1.01697 2.3864e-05 0) (1.01701 9.43719e-06 0) (1.01706 -4.54571e-06 0) (1.0171 -1.80689e-05 0) (1.01715 -3.1126e-05 0) (1.01719 -4.37178e-05 0) (1.01723 -5.58463e-05 0) (1.01728 -6.75137e-05 0) (1.01732 -7.87225e-05 0) (1.01736 -8.94696e-05 0) (1.01741 -9.97448e-05 0) (1.01745 -0.000109529 0) (1.0175 -0.000118792 0) (1.01754 -0.000127494 0) (1.01758 -0.000135582 0) (1.01763 -0.000142994 0) (1.01767 -0.000149652 0) (1.01772 -0.000155467 0) (1.01776 -0.00016034 0) (1.01781 -0.000164163 0) (1.01785 -0.000166822 0) (1.01789 -0.000168192 0) (1.01794 -0.000168148 0) (1.01798 -0.000166563 0) (1.01803 -0.000163307 0) (1.01807 -0.000158253 0) (1.01812 -0.000151275 0) (1.01817 -0.000142257 0) (1.01821 -0.000131092 0) (1.01826 -0.000117682 0) (1.01831 -0.000101941 0) (1.01835 -8.3798e-05 0) (1.0184 -6.31983e-05 0) (1.01845 -4.01048e-05 0) (1.0185 -1.44982e-05 0) (1.01855 1.36192e-05 0) (1.0186 4.42256e-05 0) (1.01865 7.72776e-05 0) (1.0187 0.000112712 0) (1.01875 0.000150444 0) (1.01881 0.000190357 0) (1.01886 0.000232316 0) (1.01892 0.00027616 0) (1.01897 0.000321708 0) (1.01903 0.000368751 0) (1.01909 0.000417064 0) (1.01915 0.000466402 0) (1.01921 0.000516512 0) (1.01928 0.00056713 0) (1.01934 0.000618011 0) (1.01941 0.000668898 0) (1.01947 0.000719599 0) (1.01954 0.00076989 0) (1.01961 0.000819688 0) (1.01968 0.000868804 0) (1.01976 0.000917341 0) (1.01983 0.000965075 0) (1.01991 0.00101243 0) (1.01998 0.00105894 0) (1.02006 0.00110563 0) (1.02015 0.00115132 0) (1.02023 0.00119832 0) (1.02031 0.00124364 0) (1.0204 0.00129246 0) (1.02049 0.00133748 0) (1.02059 0.0013906 0) (1.02067 0.00143435 0) (1.02078 0.00149619 0) (1.02086 0.00153498 0) (1.021 0.00161429 0) (1.02104 0.00163797 0) (1.02124 0.00175327 0) (1.01588 0.000116431 0) (1.01592 0.00012496 0) (1.01596 0.000132284 0) (1.016 0.00013831 0) (1.01605 0.000142952 0) (1.01609 0.000146136 0) (1.01613 0.000147808 0) (1.01617 0.000147931 0) (1.01622 0.000146488 0) (1.01626 0.000143483 0) (1.0163 0.000138941 0) (1.01635 0.000132908 0) (1.01639 0.000125449 0) (1.01644 0.000116649 0) (1.01648 0.000106609 0) (1.01652 9.54452e-05 0) (1.01657 8.32843e-05 0) (1.01661 7.02628e-05 0) (1.01665 5.65224e-05 0) (1.0167 4.22062e-05 0) (1.01674 2.74579e-05 0) (1.01679 1.24164e-05 0) (1.01683 -2.78629e-06 0) (1.01687 -1.80277e-05 0) (1.01692 -3.31974e-05 0) (1.01696 -4.81985e-05 0) (1.01701 -6.29481e-05 0) (1.01705 -7.73829e-05 0) (1.01709 -9.14477e-05 0) (1.01714 -0.000105103 0) (1.01718 -0.000118324 0) (1.01723 -0.000131094 0) (1.01727 -0.000143408 0) (1.01732 -0.000155266 0) (1.01736 -0.000166672 0) (1.0174 -0.000177625 0) (1.01745 -0.000188129 0) (1.01749 -0.000198181 0) (1.01754 -0.000207771 0) (1.01758 -0.000216884 0) (1.01763 -0.000225491 0) (1.01767 -0.000233553 0) (1.01771 -0.000241022 0) (1.01776 -0.000247833 0) (1.0178 -0.000253914 0) (1.01785 -0.00025918 0) (1.01789 -0.000263539 0) (1.01794 -0.000266884 0) (1.01798 -0.000269105 0) (1.01803 -0.000270083 0) (1.01807 -0.0002697 0) (1.01812 -0.000267833 0) (1.01817 -0.000264355 0) (1.01821 -0.00025914 0) (1.01826 -0.000252073 0) (1.0183 -0.000243038 0) (1.01835 -0.000231932 0) (1.0184 -0.000218659 0) (1.01845 -0.000203134 0) (1.01849 -0.000185292 0) (1.01854 -0.00016508 0) (1.01859 -0.00014246 0) (1.01864 -0.000117424 0) (1.01869 -8.99777e-05 0) (1.01874 -6.01349e-05 0) (1.0188 -2.79336e-05 0) (1.01885 6.55792e-06 0) (1.0189 4.325e-05 0) (1.01896 8.20372e-05 0) (1.01901 0.000122789 0) (1.01907 0.000165347 0) (1.01913 0.000209532 0) (1.01918 0.00025514 0) (1.01924 0.000301952 0) (1.01931 0.000349726 0) (1.01937 0.000398219 0) (1.01943 0.000447169 0) (1.0195 0.000496336 0) (1.01956 0.00054547 0) (1.01963 0.00059438 0) (1.0197 0.000642845 0) (1.01977 0.000690784 0) (1.01984 0.000738008 0) (1.01992 0.000784616 0) (1.01999 0.000830387 0) (1.02007 0.000875727 0) (1.02015 0.000920192 0) (1.02023 0.000964763 0) (1.02031 0.00100831 0) (1.0204 0.00105305 0) (1.02048 0.00109611 0) (1.02057 0.00114247 0) (1.02066 0.00118516 0) (1.02076 0.00123551 0) (1.02084 0.00127691 0) (1.02096 0.00133548 0) (1.02103 0.00137214 0) (1.02117 0.00144723 0) (1.02121 0.00146958 0) (1.02141 0.00157875 0) (1.016 -1.27862e-05 0) (1.01604 -4.1143e-06 0) (1.01609 3.39229e-06 0) (1.01613 9.64223e-06 0) (1.01617 1.45504e-05 0) (1.01621 1.80456e-05 0) (1.01626 2.00733e-05 0) (1.0163 2.05968e-05 0) (1.01634 1.95991e-05 0) (1.01639 1.7083e-05 0) (1.01643 1.30719e-05 0) (1.01648 7.6094e-06 0) (1.01652 7.58677e-07 0) (1.01656 -7.39893e-06 0) (1.01661 -1.67656e-05 0) (1.01665 -2.72294e-05 0) (1.0167 -3.86667e-05 0) (1.01674 -5.09452e-05 0) (1.01678 -6.39266e-05 0) (1.01683 -7.7472e-05 0) (1.01687 -9.14416e-05 0) (1.01692 -0.0001057 0) (1.01696 -0.000120118 0) (1.01701 -0.000134576 0) (1.01705 -0.000148968 0) (1.01709 -0.000163197 0) (1.01714 -0.000177185 0) (1.01718 -0.00019086 0) (1.01723 -0.000204173 0) (1.01727 -0.000217088 0) (1.01732 -0.000229578 0) (1.01736 -0.000241628 0) (1.01741 -0.000253233 0) (1.01745 -0.000264389 0) (1.01749 -0.000275099 0) (1.01754 -0.00028537 0) (1.01758 -0.000295202 0) (1.01763 -0.000304594 0) (1.01767 -0.000313537 0) (1.01772 -0.000322016 0) (1.01776 -0.000330003 0) (1.01781 -0.000337464 0) (1.01785 -0.00034435 0) (1.0179 -0.0003506 0) (1.01794 -0.000356146 0) (1.01799 -0.000360907 0) (1.01803 -0.000364792 0) (1.01808 -0.000367701 0) (1.01812 -0.000369525 0) (1.01817 -0.000370156 0) (1.01822 -0.000369475 0) (1.01826 -0.00036736 0) (1.01831 -0.00036369 0) (1.01835 -0.000358347 0) (1.0184 -0.000351218 0) (1.01845 -0.000342193 0) (1.0185 -0.000331169 0) (1.01854 -0.000318057 0) (1.01859 -0.000302775 0) (1.01864 -0.000285261 0) (1.01869 -0.000265462 0) (1.01874 -0.000243347 0) (1.01879 -0.000218899 0) (1.01884 -0.00019212 0) (1.01889 -0.000163031 0) (1.01895 -0.000131673 0) (1.019 -9.81121e-05 0) (1.01906 -6.24369e-05 0) (1.01911 -2.47509e-05 0) (1.01917 1.48185e-05 0) (1.01922 5.61183e-05 0) (1.01928 9.89737e-05 0) (1.01934 0.000143187 0) (1.0194 0.000188544 0) (1.01947 0.000234808 0) (1.01953 0.00028174 0) (1.01959 0.000329086 0) (1.01966 0.00037661 0) (1.01973 0.000424067 0) (1.0198 0.000471267 0) (1.01987 0.000517998 0) (1.01994 0.000564173 0) (1.02001 0.000609609 0) (1.02009 0.000654397 0) (1.02016 0.000698324 0) (1.02024 0.000741776 0) (1.02032 0.000784329 0) (1.0204 0.000826921 0) (1.02048 0.000868477 0) (1.02057 0.000911104 0) (1.02065 0.000952083 0) (1.02075 0.000996152 0) (1.02083 0.00103667 0) (1.02093 0.00108445 0) (1.02101 0.00112368 0) (1.02113 0.0011792 0) (1.0212 0.00121389 0) (1.02134 0.00128505 0) (1.02138 0.00130617 0) (1.02158 0.00140964 0) (1.01614 -0.000138932 0) (1.01618 -0.000130124 0) (1.01622 -0.000122442 0) (1.01626 -0.000115977 0) (1.01631 -0.000110812 0) (1.01635 -0.000107017 0) (1.01639 -0.000104644 0) (1.01644 -0.000103732 0) (1.01648 -0.000104298 0) (1.01652 -0.000106339 0) (1.01657 -0.000109833 0) (1.01661 -0.00011474 0) (1.01666 -0.000120999 0) (1.0167 -0.000128532 0) (1.01674 -0.000137243 0) (1.01679 -0.000147025 0) (1.01683 -0.000157758 0) (1.01688 -0.000169313 0) (1.01692 -0.000181558 0) (1.01697 -0.000194354 0) (1.01701 -0.000207565 0) (1.01706 -0.000221061 0) (1.0171 -0.000234716 0) (1.01714 -0.000248413 0) (1.01719 -0.000262047 0) (1.01723 -0.000275524 0) (1.01728 -0.000288766 0) (1.01732 -0.000301708 0) (1.01737 -0.000314298 0) (1.01741 -0.000326499 0) (1.01746 -0.000338285 0) (1.0175 -0.000349643 0) (1.01755 -0.000360564 0) (1.01759 -0.000371048 0) (1.01764 -0.000381099 0) (1.01768 -0.000390721 0) (1.01773 -0.000399915 0) (1.01777 -0.000408682 0) (1.01782 -0.000417012 0) (1.01786 -0.000424891 0) (1.01791 -0.000432295 0) (1.01795 -0.000439189 0) (1.018 -0.000445527 0) (1.01804 -0.000451254 0) (1.01809 -0.000456302 0) (1.01813 -0.000460593 0) (1.01818 -0.000464039 0) (1.01823 -0.000466546 0) (1.01827 -0.000468011 0) (1.01832 -0.000468324 0) (1.01836 -0.000467369 0) (1.01841 -0.000465032 0) (1.01846 -0.0004612 0) (1.01851 -0.000455757 0) (1.01855 -0.000448591 0) (1.0186 -0.000439597 0) (1.01865 -0.000428678 0) (1.0187 -0.000415744 0) (1.01875 -0.000400721 0) (1.0188 -0.000383545 0) (1.01885 -0.000364167 0) (1.0189 -0.000342558 0) (1.01895 -0.000318697 0) (1.019 -0.000292585 0) (1.01905 -0.00026425 0) (1.0191 -0.000233737 0) (1.01916 -0.000201102 0) (1.01921 -0.000166424 0) (1.01927 -0.000129813 0) (1.01933 -9.13953e-05 0) (1.01939 -5.13199e-05 0) (1.01945 -9.75586e-06 0) (1.01951 3.31032e-05 0) (1.01957 7.7048e-05 0) (1.01963 0.000121849 0) (1.01969 0.000167277 0) (1.01976 0.000213082 0) (1.01983 0.00025903 0) (1.01989 0.000304882 0) (1.01996 0.000350452 0) (1.02003 0.000395531 0) (1.02011 0.000440033 0) (1.02018 0.000483778 0) (1.02026 0.000526849 0) (1.02033 0.000569041 0) (1.02041 0.000610722 0) (1.02049 0.000651483 0) (1.02057 0.000692225 0) (1.02066 0.00073192 0) (1.02074 0.000772583 0) (1.02083 0.000811621 0) (1.02092 0.000853558 0) (1.02101 0.000892069 0) (1.02111 0.000937455 0) (1.02119 0.000974666 0) (1.02131 0.00102736 0) (1.02138 0.00106021 0) (1.02152 0.00112772 0) (1.02156 0.0011477 0) (1.02176 0.00124585 0) (1.01628 -0.000262025 0) (1.01632 -0.000253089 0) (1.01636 -0.000245242 0) (1.0164 -0.000238572 0) (1.01645 -0.000233161 0) (1.01649 -0.000229076 0) (1.01653 -0.000226372 0) (1.01658 -0.000225084 0) (1.01662 -0.00022523 0) (1.01667 -0.00022681 0) (1.01671 -0.000229804 0) (1.01675 -0.000234171 0) (1.0168 -0.000239854 0) (1.01684 -0.000246777 0) (1.01689 -0.00025485 0) (1.01693 -0.000263967 0) (1.01698 -0.000274013 0) (1.01702 -0.000284862 0) (1.01707 -0.000296386 0) (1.01711 -0.000308451 0) (1.01716 -0.000320925 0) (1.0172 -0.00033368 0) (1.01725 -0.000346593 0) (1.01729 -0.000359551 0) (1.01734 -0.00037245 0) (1.01738 -0.000385199 0) (1.01743 -0.000397722 0) (1.01747 -0.000409954 0) (1.01752 -0.000421844 0) (1.01756 -0.000433357 0) (1.01761 -0.000444466 0) (1.01765 -0.000455158 0) (1.0177 -0.000465425 0) (1.01774 -0.000475266 0) (1.01779 -0.000484686 0) (1.01783 -0.000493687 0) (1.01788 -0.000502273 0) (1.01792 -0.000510443 0) (1.01797 -0.00051819 0) (1.01801 -0.0005255 0) (1.01806 -0.00053235 0) (1.0181 -0.000538707 0) (1.01815 -0.000544529 0) (1.0182 -0.000549761 0) (1.01824 -0.000554339 0) (1.01829 -0.000558188 0) (1.01833 -0.000561224 0) (1.01838 -0.000563356 0) (1.01843 -0.000564483 0) (1.01847 -0.000564499 0) (1.01852 -0.000563298 0) (1.01857 -0.000560768 0) (1.01861 -0.000556798 0) (1.01866 -0.000551275 0) (1.01871 -0.000544092 0) (1.01876 -0.000535148 0) (1.01881 -0.000524348 0) (1.01886 -0.000511606 0) (1.01891 -0.00049685 0) (1.01896 -0.000480017 0) (1.01901 -0.000461062 0) (1.01906 -0.000439953 0) (1.01911 -0.000416674 0) (1.01916 -0.000391231 0) (1.01921 -0.000363645 0) (1.01927 -0.000333956 0) (1.01932 -0.000302226 0) (1.01938 -0.000268534 0) (1.01944 -0.000232982 0) (1.01949 -0.000195691 0) (1.01955 -0.000156807 0) (1.01961 -0.000116498 0) (1.01967 -7.49496e-05 0) (1.01974 -3.23673e-05 0) (1.0198 1.10295e-05 0) (1.01986 5.50037e-05 0) (1.01993 9.93191e-05 0) (1.02 0.000143754 0) (1.02007 0.00018807 0) (1.02014 0.000232085 0) (1.02021 0.000275592 0) (1.02028 0.000318505 0) (1.02036 0.000360647 0) (1.02043 0.000402097 0) (1.02051 0.000442654 0) (1.02059 0.000482669 0) (1.02067 0.000521751 0) (1.02075 0.00056076 0) (1.02083 0.000598716 0) (1.02092 0.000637546 0) (1.02101 0.000674775 0) (1.0211 0.000714726 0) (1.02119 0.000751366 0) (1.02129 0.000794524 0) (1.02137 0.000829859 0) (1.02148 0.000879906 0) (1.02156 0.00091106 0) (1.0217 0.00097516 0) (1.02174 0.000994077 0) (1.02194 0.00108725 0) (1.01642 -0.000382074 0) (1.01647 -0.00037302 0) (1.01651 -0.000365017 0) (1.01655 -0.000358153 0) (1.0166 -0.000352506 0) (1.01664 -0.000348144 0) (1.01668 -0.00034512 0) (1.01673 -0.000343469 0) (1.01677 -0.00034321 0) (1.01682 -0.000344344 0) (1.01686 -0.000346851 0) (1.01691 -0.000350694 0) (1.01695 -0.000355817 0) (1.017 -0.000362149 0) (1.01704 -0.0003696 0) (1.01708 -0.000378071 0) (1.01713 -0.000387448 0) (1.01717 -0.000397612 0) (1.01722 -0.000408435 0) (1.01726 -0.00041979 0) (1.01731 -0.000431547 0) (1.01736 -0.000443582 0) (1.0174 -0.000455775 0) (1.01745 -0.000468015 0) (1.01749 -0.000480202 0) (1.01754 -0.000492246 0) (1.01758 -0.000504072 0) (1.01763 -0.000515617 0) (1.01767 -0.000526832 0) (1.01772 -0.00053768 0) (1.01776 -0.000548137 0) (1.01781 -0.000558188 0) (1.01785 -0.000567826 0) (1.0179 -0.00057705 0) (1.01794 -0.000585864 0) (1.01799 -0.000594271 0) (1.01804 -0.000602275 0) (1.01808 -0.000609874 0) (1.01813 -0.000617064 0) (1.01817 -0.000623831 0) (1.01822 -0.000630154 0) (1.01826 -0.000636001 0) (1.01831 -0.000641332 0) (1.01836 -0.000646096 0) (1.0184 -0.000650229 0) (1.01845 -0.000653662 0) (1.0185 -0.000656312 0) (1.01854 -0.000658091 0) (1.01859 -0.000658905 0) (1.01864 -0.000658652 0) (1.01868 -0.000657227 0) (1.01873 -0.000654522 0) (1.01878 -0.000650429 0) (1.01883 -0.000644841 0) (1.01887 -0.000637655 0) (1.01892 -0.000628772 0) (1.01897 -0.0006181 0) (1.01902 -0.000605557 0) (1.01907 -0.000591073 0) (1.01912 -0.000574587 0) (1.01917 -0.000556055 0) (1.01922 -0.000535446 0) (1.01928 -0.000512748 0) (1.01933 -0.000487963 0) (1.01938 -0.000461112 0) (1.01944 -0.000432235 0) (1.01949 -0.000401392 0) (1.01955 -0.000368661 0) (1.01961 -0.000334139 0) (1.01967 -0.000297947 0) (1.01973 -0.000260225 0) (1.01979 -0.000221134 0) (1.01985 -0.000180856 0) (1.01991 -0.00013959 0) (1.01997 -9.75527e-05 0) (1.02004 -5.49738e-05 0) (1.02011 -1.20823e-05 0) (1.02017 3.09009e-05 0) (1.02024 7.37453e-05 0) (1.02031 0.000116273 0) (1.02039 0.000158282 0) (1.02046 0.000199686 0) (1.02054 0.00024031 0) (1.02061 0.000280227 0) (1.02069 0.000319242 0) (1.02077 0.000357689 0) (1.02085 0.000395194 0) (1.02093 0.000432579 0) (1.02102 0.000468908 0) (1.0211 0.000506024 0) (1.02119 0.000541564 0) (1.02128 0.000579661 0) (1.02137 0.000614558 0) (1.02147 0.000655635 0) (1.02155 0.000689225 0) (1.02167 0.000736804 0) (1.02174 0.000766375 0) (1.02188 0.000827283 0) (1.02192 0.000845213 0) (1.02212 0.000933728 0) (1.01658 -0.000499108 0) (1.01662 -0.000489945 0) (1.01667 -0.000481796 0) (1.01671 -0.000474747 0) (1.01675 -0.000468876 0) (1.0168 -0.000464248 0) (1.01684 -0.000460916 0) (1.01689 -0.000458916 0) (1.01693 -0.000458266 0) (1.01697 -0.000458968 0) (1.01702 -0.000461004 0) (1.01706 -0.000464339 0) (1.01711 -0.00046892 0) (1.01715 -0.000474677 0) (1.0172 -0.000481525 0) (1.01724 -0.000489368 0) (1.01729 -0.000498096 0) (1.01733 -0.000507593 0) (1.01738 -0.000517736 0) (1.01743 -0.0005284 0) (1.01747 -0.00053946 0) (1.01752 -0.000550795 0) (1.01756 -0.000562289 0) (1.01761 -0.000573833 0) (1.01765 -0.000585328 0) (1.0177 -0.000596689 0) (1.01774 -0.00060784 0) (1.01779 -0.00061872 0) (1.01783 -0.000629282 0) (1.01788 -0.000639488 0) (1.01793 -0.000649315 0) (1.01797 -0.000658747 0) (1.01802 -0.000667779 0) (1.01806 -0.000676408 0) (1.01811 -0.000684639 0) (1.01815 -0.000692475 0) (1.0182 -0.00069992 0) (1.01825 -0.000706973 0) (1.01829 -0.000713629 0) (1.01834 -0.000719877 0) (1.01838 -0.000725696 0) (1.01843 -0.000731057 0) (1.01848 -0.00073592 0) (1.01852 -0.000740238 0) (1.01857 -0.000743949 0) (1.01862 -0.000746987 0) (1.01866 -0.000749272 0) (1.01871 -0.000750721 0) (1.01876 -0.000751242 0) (1.0188 -0.000750736 0) (1.01885 -0.000749102 0) (1.0189 -0.000746237 0) (1.01895 -0.000742036 0) (1.019 -0.000736397 0) (1.01905 -0.000729218 0) (1.01909 -0.000720405 0) (1.01914 -0.000709869 0) (1.01919 -0.000697529 0) (1.01924 -0.000683319 0) (1.01929 -0.000667179 0) (1.01935 -0.000649066 0) (1.0194 -0.000628953 0) (1.01945 -0.000606826 0) (1.0195 -0.000582688 0) (1.01956 -0.00055656 0) (1.01961 -0.000528481 0) (1.01967 -0.000498506 0) (1.01973 -0.000466711 0) (1.01978 -0.000433192 0) (1.01984 -0.000398066 0) (1.0199 -0.000361471 0) (1.01996 -0.000323561 0) (1.02003 -0.000284515 0) (1.02009 -0.000244526 0) (1.02015 -0.000203807 0) (1.02022 -0.000162567 0) (1.02029 -0.000121042 0) (1.02036 -7.94484e-05 0) (1.02043 -3.80104e-05 0) (1.0205 3.09878e-06 0) (1.02057 4.36807e-05 0) (1.02064 8.3648e-05 0) (1.02072 0.000122832 0) (1.0208 0.000161297 0) (1.02087 0.000198856 0) (1.02095 0.000235827 0) (1.02104 0.000271848 0) (1.02112 0.00030771 0) (1.0212 0.000342513 0) (1.02129 0.000378025 0) (1.02138 0.000411987 0) (1.02147 0.00044835 0) (1.02156 0.00048162 0) (1.02166 0.000520753 0) (1.02174 0.000552714 0) (1.02186 0.000597984 0) (1.02193 0.000626079 0) (1.02207 0.000683996 0) (1.02211 0.000701007 0) (1.02231 0.000785153 0) (1.01674 -0.000613161 0) (1.01679 -0.000603897 0) (1.01683 -0.000595612 0) (1.01687 -0.000588389 0) (1.01692 -0.000582305 0) (1.01696 -0.000577424 0) (1.01701 -0.000573797 0) (1.01705 -0.000571461 0) (1.0171 -0.000570434 0) (1.01714 -0.000570719 0) (1.01719 -0.000572299 0) (1.01723 -0.000575142 0) (1.01728 -0.000579197 0) (1.01732 -0.000584396 0) (1.01737 -0.00059066 0) (1.01741 -0.000597892 0) (1.01746 -0.000605989 0) (1.0175 -0.000614838 0) (1.01755 -0.00062432 0) (1.01759 -0.000634313 0) (1.01764 -0.000644696 0) (1.01768 -0.000655352 0) (1.01773 -0.000666166 0) (1.01778 -0.000677033 0) (1.01782 -0.000687858 0) (1.01787 -0.000698556 0) (1.01791 -0.000709053 0) (1.01796 -0.000719289 0) (1.018 -0.000729218 0) (1.01805 -0.000738803 0) (1.0181 -0.00074802 0) (1.01814 -0.000756855 0) (1.01819 -0.000765301 0) (1.01823 -0.000773358 0) (1.01828 -0.000781027 0) (1.01833 -0.000788313 0) (1.01837 -0.00079522 0) (1.01842 -0.000801748 0) (1.01846 -0.000807893 0) (1.01851 -0.000813642 0) (1.01856 -0.000818978 0) (1.0186 -0.000823873 0) (1.01865 -0.00082829 0) (1.0187 -0.000832181 0) (1.01874 -0.00083549 0) (1.01879 -0.000838152 0) (1.01884 -0.000840091 0) (1.01888 -0.000841226 0) (1.01893 -0.000841469 0) (1.01898 -0.000840725 0) (1.01903 -0.000838897 0) (1.01908 -0.000835885 0) (1.01912 -0.000831588 0) (1.01917 -0.000825906 0) (1.01922 -0.000818743 0) (1.01927 -0.000810005 0) (1.01932 -0.000799608 0) (1.01937 -0.000787474 0) (1.01942 -0.000773537 0) (1.01947 -0.000757742 0) (1.01953 -0.000740047 0) (1.01958 -0.000720423 0) (1.01963 -0.000698857 0) (1.01969 -0.000675353 0) (1.01974 -0.00064993 0) (1.0198 -0.000622624 0) (1.01985 -0.000593492 0) (1.01991 -0.000562608 0) (1.01997 -0.000530065 0) (1.02003 -0.000495976 0) (1.02009 -0.000460473 0) (1.02015 -0.000423708 0) (1.02021 -0.000385853 0) (1.02028 -0.000347095 0) (1.02034 -0.00030764 0) (1.02041 -0.000267698 0) (1.02047 -0.000227493 0) (1.02054 -0.000187234 0) (1.02061 -0.000147141 0) (1.02069 -0.000107387 0) (1.02076 -6.81654e-05 0) (1.02083 -2.95634e-05 0) (1.02091 8.25358e-06 0) (1.02099 4.53454e-05 0) (1.02106 8.15261e-05 0) (1.02114 0.000117103 0) (1.02123 0.000151728 0) (1.02131 0.000186156 0) (1.02139 0.000219529 0) (1.02148 0.000253537 0) (1.02157 0.000286021 0) (1.02166 0.000320762 0) (1.02175 0.000352511 0) (1.02185 0.000389824 0) (1.02193 0.000420264 0) (1.02205 0.000463371 0) (1.02212 0.000490087 0) (1.02226 0.000545196 0) (1.0223 0.00056135 0) (1.0225 0.00064139 0) (1.01692 -0.000724267 0) (1.01696 -0.000714911 0) (1.017 -0.0007065 0) (1.01705 -0.000699113 0) (1.01709 -0.000692826 0) (1.01713 -0.000687703 0) (1.01718 -0.000683794 0) (1.01722 -0.000681134 0) (1.01727 -0.000679744 0) (1.01731 -0.000679627 0) (1.01736 -0.000680767 0) (1.0174 -0.000683134 0) (1.01745 -0.000686678 0) (1.01749 -0.000691338 0) (1.01754 -0.000697033 0) (1.01758 -0.000703673 0) (1.01763 -0.000711158 0) (1.01768 -0.000719377 0) (1.01772 -0.000728216 0) (1.01777 -0.000737557 0) (1.01781 -0.000747283 0) (1.01786 -0.000757278 0) (1.01791 -0.000767432 0) (1.01795 -0.000777643 0) (1.018 -0.000787817 0) (1.01804 -0.00079787 0) (1.01809 -0.000807733 0) (1.01813 -0.000817345 0) (1.01818 -0.00082666 0) (1.01823 -0.000835644 0) (1.01827 -0.000844272 0) (1.01832 -0.000852529 0) (1.01836 -0.00086041 0) (1.01841 -0.000867913 0) (1.01846 -0.00087504 0) (1.0185 -0.000881797 0) (1.01855 -0.000888186 0) (1.0186 -0.000894208 0) (1.01864 -0.00089986 0) (1.01869 -0.000905131 0) (1.01874 -0.000910004 0) (1.01878 -0.000914452 0) (1.01883 -0.00091844 0) (1.01888 -0.000921923 0) (1.01892 -0.000924847 0) (1.01897 -0.000927149 0) (1.01902 -0.000928758 0) (1.01907 -0.000929594 0) (1.01911 -0.000929574 0) (1.01916 -0.000928605 0) (1.01921 -0.000926595 0) (1.01926 -0.000923446 0) (1.01931 -0.000919061 0) (1.01936 -0.000913345 0) (1.01941 -0.000906202 0) (1.01946 -0.000897544 0) (1.01951 -0.000887289 0) (1.01956 -0.000875361 0) (1.01961 -0.000861696 0) (1.01966 -0.000846241 0) (1.01971 -0.000828953 0) (1.01976 -0.000809806 0) (1.01982 -0.000788788 0) (1.01987 -0.000765901 0) (1.01993 -0.000741166 0) (1.01998 -0.000714617 0) (1.02004 -0.000686309 0) (1.0201 -0.000656313 0) (1.02016 -0.000624718 0) (1.02022 -0.000591635 0) (1.02028 -0.00055719 0) (1.02034 -0.000521531 0) (1.0204 -0.000484826 0) (1.02047 -0.000447257 0) (1.02053 -0.000409022 0) (1.0206 -0.000370326 0) (1.02067 -0.000331388 0) (1.02074 -0.00029241 0) (1.02081 -0.000253608 0) (1.02088 -0.000215151 0) (1.02095 -0.000177228 0) (1.02103 -0.000139926 0) (1.0211 -0.000103408 0) (1.02118 -6.76195e-05 0) (1.02126 -3.27406e-05 0) (1.02134 1.52076e-06 0) (1.02142 3.48294e-05 0) (1.02151 6.79092e-05 0) (1.02159 9.99374e-05 0) (1.02168 0.000132534 0) (1.02176 0.000163634 0) (1.02186 0.000196853 0) (1.02194 0.000227178 0) (1.02204 0.000262785 0) (1.02213 0.000291803 0) (1.02224 0.000332878 0) (1.02231 0.000358306 0) (1.02246 0.000410775 0) (1.0225 0.000426129 0) (1.02269 0.000502304 0) (1.01709 -0.000832467 0) (1.01714 -0.000823027 0) (1.01718 -0.000814498 0) (1.01723 -0.000806957 0) (1.01727 -0.000800479 0) (1.01731 -0.000795124 0) (1.01736 -0.000790945 0) (1.0174 -0.000787975 0) (1.01745 -0.000786236 0) (1.01749 -0.00078573 0) (1.01754 -0.000786445 0) (1.01758 -0.000788351 0) (1.01763 -0.000791402 0) (1.01767 -0.000795538 0) (1.01772 -0.000800682 0) (1.01777 -0.000806748 0) (1.01781 -0.000813638 0) (1.01786 -0.000821245 0) (1.0179 -0.00082946 0) (1.01795 -0.000838168 0) (1.018 -0.000847255 0) (1.01804 -0.000856608 0) (1.01809 -0.000866122 0) (1.01813 -0.000875695 0) (1.01818 -0.000885236 0) (1.01823 -0.000894665 0) (1.01827 -0.000903912 0) (1.01832 -0.000912919 0) (1.01836 -0.00092164 0) (1.01841 -0.000930041 0) (1.01846 -0.000938098 0) (1.0185 -0.000945797 0) (1.01855 -0.000953131 0) (1.0186 -0.000960098 0) (1.01864 -0.000966703 0) (1.01869 -0.000972948 0) (1.01874 -0.000978837 0) (1.01878 -0.000984372 0) (1.01883 -0.000989549 0) (1.01888 -0.000994359 0) (1.01892 -0.000998785 0) (1.01897 -0.0010028 0) (1.01902 -0.00100638 0) (1.01906 -0.00100947 0) (1.01911 -0.00101202 0) (1.01916 -0.00101398 0) (1.01921 -0.00101527 0) (1.01925 -0.00101583 0) (1.0193 -0.00101555 0) (1.01935 -0.00101437 0) (1.0194 -0.00101219 0) (1.01945 -0.00100891 0) (1.0195 -0.00100445 0) (1.01955 -0.000998699 0) (1.0196 -0.000991581 0) (1.01965 -0.000983005 0) (1.0197 -0.000972891 0) (1.01975 -0.000961167 0) (1.0198 -0.000947769 0) (1.01985 -0.000932647 0) (1.0199 -0.000915759 0) (1.01996 -0.000897081 0) (1.02001 -0.000876599 0) (1.02006 -0.000854316 0) (1.02012 -0.000830251 0) (1.02018 -0.000804439 0) (1.02023 -0.00077693 0) (1.02029 -0.000747794 0) (1.02035 -0.000717118 0) (1.02041 -0.000685007 0) (1.02047 -0.000651587 0) (1.02053 -0.000616999 0) (1.0206 -0.000581406 0) (1.02066 -0.000544983 0) (1.02073 -0.000507925 0) (1.02079 -0.000470429 0) (1.02086 -0.000432708 0) (1.02093 -0.000394961 0) (1.021 -0.000357396 0) (1.02108 -0.00032018 0) (1.02115 -0.000283497 0) (1.02122 -0.000247435 0) (1.0213 -0.000212153 0) (1.02138 -0.000177602 0) (1.02146 -0.000143954 0) (1.02154 -0.000110935 0) (1.02162 -7.88672e-05 0) (1.02171 -4.70573e-05 0) (1.02179 -1.62936e-05 0) (1.02188 1.49762e-05 0) (1.02196 4.47766e-05 0) (1.02206 7.65678e-05 0) (1.02214 0.000105559 0) (1.02224 0.000139564 0) (1.02233 0.000167249 0) (1.02244 0.000206416 0) (1.02251 0.000230636 0) (1.02266 0.00028062 0) (1.0227 0.000295225 0) (1.02289 0.000367757 0) (1.01728 -0.000937803 0) (1.01732 -0.000928288 0) (1.01737 -0.00091965 0) (1.01741 -0.000911965 0) (1.01746 -0.000905304 0) (1.0175 -0.00089973 0) (1.01754 -0.000895292 0) (1.01759 -0.000892025 0) (1.01763 -0.000889949 0) (1.01768 -0.000889069 0) (1.01773 -0.000889373 0) (1.01777 -0.000890834 0) (1.01782 -0.000893407 0) (1.01786 -0.000897035 0) (1.01791 -0.000901646 0) (1.01795 -0.000907154 0) (1.018 -0.000913467 0) (1.01805 -0.000920481 0) (1.01809 -0.00092809 0) (1.01814 -0.000936182 0) (1.01818 -0.000944648 0) (1.01823 -0.000953379 0) (1.01828 -0.000962269 0) (1.01832 -0.000971223 0) (1.01837 -0.000980151 0) (1.01842 -0.000988973 0) (1.01846 -0.000997623 0) (1.01851 -0.00100604 0) (1.01855 -0.00101419 0) (1.0186 -0.00102202 0) (1.01865 -0.00102953 0) (1.01869 -0.00103668 0) (1.01874 -0.00104349 0) (1.01879 -0.00104994 0) (1.01883 -0.00105604 0) (1.01888 -0.00106179 0) (1.01893 -0.00106719 0) (1.01897 -0.00107226 0) (1.01902 -0.00107698 0) (1.01907 -0.00108134 0) (1.01912 -0.00108534 0) (1.01916 -0.00108894 0) (1.01921 -0.00109212 0) (1.01926 -0.00109483 0) (1.01931 -0.00109703 0) (1.01935 -0.00109866 0) (1.0194 -0.00109965 0) (1.01945 -0.00109992 0) (1.0195 -0.00109941 0) (1.01955 -0.00109802 0) (1.01959 -0.00109568 0) (1.01964 -0.00109228 0) (1.01969 -0.00108774 0) (1.01974 -0.00108197 0) (1.01979 -0.00107487 0) (1.01984 -0.00106638 0) (1.01989 -0.00105641 0) (1.01994 -0.00104488 0) (1.02 -0.00103175 0) (1.02005 -0.00101695 0) (1.0201 -0.00100046 0) (1.02015 -0.000982234 0) (1.02021 -0.000962274 0) (1.02026 -0.000940578 0) (1.02032 -0.000917164 0) (1.02038 -0.000892065 0) (1.02043 -0.000865332 0) (1.02049 -0.00083703 0) (1.02055 -0.000807245 0) (1.02061 -0.000776078 0) (1.02067 -0.000743649 0) (1.02074 -0.000710097 0) (1.0208 -0.000675577 0) (1.02086 -0.000640261 0) (1.02093 -0.000604336 0) (1.021 -0.000567995 0) (1.02107 -0.000531445 0) (1.02114 -0.000494879 0) (1.02121 -0.0004585 0) (1.02128 -0.000422471 0) (1.02135 -0.000386972 0) (1.02143 -0.000352092 0) (1.02151 -0.000317986 0) (1.02158 -0.000284609 0) (1.02166 -0.000252131 0) (1.02174 -0.000220289 0) (1.02183 -0.000189393 0) (1.02191 -0.00015878 0) (1.02199 -0.000129206 0) (1.02208 -9.91844e-05 0) (1.02217 -7.06049e-05 0) (1.02226 -4.01559e-05 0) (1.02235 -1.24165e-05 0) (1.02245 2.00824e-05 0) (1.02253 4.65186e-05 0) (1.02265 8.38877e-05 0) (1.02272 0.000106976 0) (1.02286 0.000154616 0) (1.0229 0.00016852 0) (1.0231 0.000237612 0) (1.01747 -0.00104032 0) (1.01752 -0.00103074 0) (1.01756 -0.001022 0) (1.0176 -0.00101418 0) (1.01765 -0.00100735 0) (1.01769 -0.00100157 0) (1.01774 -0.00099688 0) (1.01778 -0.000993327 0) (1.01783 -0.000990928 0) (1.01787 -0.000989687 0) (1.01792 -0.000989595 0) (1.01797 -0.000990625 0) (1.01801 -0.000992736 0) (1.01806 -0.000995872 0) (1.0181 -0.000999965 0) (1.01815 -0.00100493 0) (1.0182 -0.00101069 0) (1.01824 -0.00101712 0) (1.01829 -0.00102414 0) (1.01833 -0.00103164 0) (1.01838 -0.0010395 0) (1.01843 -0.00104763 0) (1.01847 -0.00105591 0) (1.01852 -0.00106427 0) (1.01857 -0.0010726 0) (1.01861 -0.00108083 0) (1.01866 -0.0010889 0) (1.01871 -0.00109675 0) (1.01875 -0.00110433 0) (1.0188 -0.00111162 0) (1.01885 -0.00111859 0) (1.01889 -0.00112522 0) (1.01894 -0.00113152 0) (1.01899 -0.00113746 0) (1.01903 -0.00114307 0) (1.01908 -0.00114835 0) (1.01913 -0.00115328 0) (1.01917 -0.00115789 0) (1.01922 -0.00116217 0) (1.01927 -0.0011661 0) (1.01932 -0.00116968 0) (1.01936 -0.00117289 0) (1.01941 -0.00117568 0) (1.01946 -0.00117803 0) (1.01951 -0.00117989 0) (1.01955 -0.00118119 0) (1.0196 -0.00118189 0) (1.01965 -0.0011819 0) (1.0197 -0.00118116 0) (1.01975 -0.00117957 0) (1.0198 -0.00117707 0) (1.01985 -0.00117356 0) (1.0199 -0.00116894 0) (1.01994 -0.00116315 0) (1.02 -0.00115609 0) (1.02005 -0.00114767 0) (1.0201 -0.00113784 0) (1.02015 -0.00112651 0) (1.0202 -0.00111363 0) (1.02025 -0.00109916 0) (1.02031 -0.00108304 0) (1.02036 -0.00106526 0) (1.02041 -0.00104581 0) (1.02047 -0.00102468 0) (1.02052 -0.0010019 0) (1.02058 -0.000977496 0) (1.02064 -0.000951515 0) (1.0207 -0.000924023 0) (1.02076 -0.0008951 0) (1.02082 -0.000864845 0) (1.02088 -0.000833374 0) (1.02094 -0.000800822 0) (1.02101 -0.000767338 0) (1.02107 -0.000733089 0) (1.02114 -0.000698257 0) (1.02121 -0.000663029 0) (1.02127 -0.000627604 0) (1.02134 -0.000592172 0) (1.02142 -0.00055693 0) (1.02149 -0.000522038 0) (1.02156 -0.000487672 0) (1.02164 -0.000453919 0) (1.02172 -0.000420933 0) (1.02179 -0.000388672 0) (1.02187 -0.000357303 0) (1.02195 -0.000326575 0) (1.02204 -0.000296787 0) (1.02212 -0.000267305 0) (1.02221 -0.000238853 0) (1.02229 -0.000210007 0) (1.02238 -0.000182576 0) (1.02247 -0.000153389 0) (1.02256 -0.000126826 0) (1.02266 -9.57442e-05 0) (1.02274 -7.04811e-05 0) (1.02286 -3.48055e-05 0) (1.02293 -1.27792e-05 0) (1.02307 3.26482e-05 0) (1.02311 4.58941e-05 0) (1.02331 0.000111736 0) (1.01767 -0.00114008 0) (1.01772 -0.00113043 0) (1.01776 -0.0011216 0) (1.01781 -0.00111365 0) (1.01785 -0.00110666 0) (1.01789 -0.00110068 0) (1.01794 -0.00109576 0) (1.01798 -0.00109193 0) (1.01803 -0.00108922 0) (1.01808 -0.00108763 0) (1.01812 -0.00108715 0) (1.01817 -0.00108777 0) (1.01821 -0.00108943 0) (1.01826 -0.00109209 0) (1.01831 -0.00109568 0) (1.01835 -0.00110013 0) (1.0184 -0.00110534 0) (1.01844 -0.00111122 0) (1.01849 -0.00111767 0) (1.01854 -0.00112458 0) (1.01858 -0.00113186 0) (1.01863 -0.00113939 0) (1.01868 -0.00114709 0) (1.01872 -0.00115486 0) (1.01877 -0.00116261 0) (1.01882 -0.00117027 0) (1.01886 -0.00117778 0) (1.01891 -0.00118508 0) (1.01896 -0.00119212 0) (1.019 -0.00119888 0) (1.01905 -0.00120532 0) (1.0191 -0.00121145 0) (1.01914 -0.00121724 0) (1.01919 -0.00122271 0) (1.01924 -0.00122784 0) (1.01929 -0.00123265 0) (1.01933 -0.00123714 0) (1.01938 -0.00124131 0) (1.01943 -0.00124515 0) (1.01947 -0.00124867 0) (1.01952 -0.00125185 0) (1.01957 -0.00125466 0) (1.01962 -0.00125709 0) (1.01967 -0.00125909 0) (1.01971 -0.00126061 0) (1.01976 -0.00126161 0) (1.01981 -0.00126202 0) (1.01986 -0.00126178 0) (1.01991 -0.00126081 0) (1.01996 -0.00125904 0) (1.02001 -0.00125638 0) (1.02005 -0.00125276 0) (1.0201 -0.00124808 0) (1.02015 -0.00124226 0) (1.0202 -0.00123523 0) (1.02026 -0.0012269 0) (1.02031 -0.0012172 0) (1.02036 -0.00120606 0) (1.02041 -0.00119343 0) (1.02046 -0.00117926 0) (1.02052 -0.00116352 0) (1.02057 -0.00114617 0) (1.02062 -0.00112721 0) (1.02068 -0.00110664 0) (1.02074 -0.00108447 0) (1.02079 -0.00106073 0) (1.02085 -0.00103548 0) (1.02091 -0.00100877 0) (1.02097 -0.000980683 0) (1.02103 -0.000951311 0) (1.02109 -0.000920768 0) (1.02116 -0.000889181 0) (1.02122 -0.000856699 0) (1.02129 -0.00082348 0) (1.02135 -0.000789701 0) (1.02142 -0.000755544 0) (1.02149 -0.000721202 0) (1.02156 -0.000686859 0) (1.02163 -0.000652708 0) (1.0217 -0.000618904 0) (1.02178 -0.000585621 0) (1.02185 -0.000552944 0) (1.02193 -0.000521024 0) (1.02201 -0.000489825 0) (1.02209 -0.000459509 0) (1.02217 -0.000429837 0) (1.02225 -0.000401098 0) (1.02234 -0.000372684 0) (1.02242 -0.000345291 0) (1.02251 -0.000317554 0) (1.0226 -0.000291203 0) (1.02269 -0.000263206 0) (1.02278 -0.000237748 0) (1.02288 -0.000208002 0) (1.02296 -0.000183842 0) (1.02307 -0.000149764 0) (1.02315 -0.000128736 0) (1.02329 -8.54007e-05 0) (1.02333 -7.27725e-05 0) (1.02352 -1.00082e-05 0) (1.01788 -0.00123711 0) (1.01792 -0.00122742 0) (1.01797 -0.0012185 0) (1.01801 -0.00121043 0) (1.01806 -0.00120329 0) (1.0181 -0.00119711 0) (1.01815 -0.00119197 0) (1.01819 -0.00118788 0) (1.01824 -0.00118487 0) (1.01828 -0.00118295 0) (1.01833 -0.0011821 0) (1.01838 -0.00118231 0) (1.01842 -0.00118354 0) (1.01847 -0.00118574 0) (1.01852 -0.00118885 0) (1.01856 -0.00119278 0) (1.01861 -0.00119747 0) (1.01865 -0.0012028 0) (1.0187 -0.0012087 0) (1.01875 -0.00121505 0) (1.01879 -0.00122176 0) (1.01884 -0.00122872 0) (1.01889 -0.00123585 0) (1.01893 -0.00124305 0) (1.01898 -0.00125024 0) (1.01903 -0.00125735 0) (1.01907 -0.00126431 0) (1.01912 -0.00127107 0) (1.01917 -0.00127758 0) (1.01922 -0.00128382 0) (1.01926 -0.00128977 0) (1.01931 -0.0012954 0) (1.01936 -0.00130071 0) (1.0194 -0.0013057 0) (1.01945 -0.00131038 0) (1.0195 -0.00131474 0) (1.01955 -0.00131879 0) (1.01959 -0.00132253 0) (1.01964 -0.00132596 0) (1.01969 -0.00132907 0) (1.01974 -0.00133186 0) (1.01978 -0.0013343 0) (1.01983 -0.00133637 0) (1.01988 -0.00133802 0) (1.01993 -0.00133923 0) (1.01998 -0.00133993 0) (1.02002 -0.00134006 0) (1.02007 -0.00133958 0) (1.02012 -0.00133839 0) (1.02017 -0.00133644 0) (1.02022 -0.00133363 0) (1.02027 -0.0013299 0) (1.02032 -0.00132516 0) (1.02037 -0.00131932 0) (1.02042 -0.00131231 0) (1.02047 -0.00130406 0) (1.02052 -0.00129449 0) (1.02057 -0.00128354 0) (1.02063 -0.00127115 0) (1.02068 -0.00125729 0) (1.02073 -0.0012419 0) (1.02079 -0.00122497 0) (1.02084 -0.00120649 0) (1.0209 -0.00118645 0) (1.02095 -0.00116487 0) (1.02101 -0.00114179 0) (1.02107 -0.00111725 0) (1.02113 -0.00109129 0) (1.02119 -0.00106401 0) (1.02125 -0.0010355 0) (1.02131 -0.00100585 0) (1.02137 -0.000975194 0) (1.02144 -0.000943677 0) (1.0215 -0.000911451 0) (1.02157 -0.000878687 0) (1.02164 -0.00084556 0) (1.02171 -0.00081226 0) (1.02178 -0.000778963 0) (1.02185 -0.000745859 0) (1.02192 -0.000713098 0) (1.022 -0.00068085 0) (1.02207 -0.000649201 0) (1.02215 -0.000618299 0) (1.02223 -0.000588111 0) (1.02231 -0.000558796 0) (1.02239 -0.000530126 0) (1.02247 -0.00050238 0) (1.02256 -0.000474976 0) (1.02264 -0.000448582 0) (1.02273 -0.000421891 0) (1.02282 -0.000396559 0) (1.02291 -0.000369684 0) (1.023 -0.000345267 0) (1.0231 -0.000316781 0) (1.02318 -0.000293659 0) (1.02329 -0.000261091 0) (1.02337 -0.000241003 0) (1.02351 -0.000199646 0) (1.02355 -0.000187599 0) (1.02374 -0.00012775 0) (1.0181 -0.00133149 0) (1.01814 -0.00132174 0) (1.01818 -0.00131275 0) (1.01823 -0.00130457 0) (1.01827 -0.00129728 0) (1.01832 -0.00129093 0) (1.01836 -0.00128557 0) (1.01841 -0.00128123 0) (1.01845 -0.00127793 0) (1.0185 -0.00127568 0) (1.01855 -0.00127448 0) (1.01859 -0.00127431 0) (1.01864 -0.00127512 0) (1.01869 -0.00127687 0) (1.01873 -0.00127951 0) (1.01878 -0.00128295 0) (1.01882 -0.00128712 0) (1.01887 -0.00129193 0) (1.01892 -0.00129729 0) (1.01897 -0.00130309 0) (1.01901 -0.00130925 0) (1.01906 -0.00131566 0) (1.01911 -0.00132223 0) (1.01915 -0.00132888 0) (1.0192 -0.00133552 0) (1.01925 -0.00134209 0) (1.01929 -0.00134852 0) (1.01934 -0.00135476 0) (1.01939 -0.00136076 0) (1.01943 -0.0013665 0) (1.01948 -0.00137195 0) (1.01953 -0.00137711 0) (1.01958 -0.00138195 0) (1.01962 -0.00138649 0) (1.01967 -0.00139071 0) (1.01972 -0.00139464 0) (1.01977 -0.00139826 0) (1.01981 -0.00140159 0) (1.01986 -0.00140462 0) (1.01991 -0.00140735 0) (1.01996 -0.00140976 0) (1.02 -0.00141183 0) (1.02005 -0.00141355 0) (1.0201 -0.00141488 0) (1.02015 -0.00141577 0) (1.0202 -0.00141618 0) (1.02025 -0.00141605 0) (1.02029 -0.00141532 0) (1.02034 -0.00141393 0) (1.02039 -0.00141179 0) (1.02044 -0.00140885 0) (1.02049 -0.00140501 0) (1.02054 -0.0014002 0) (1.02059 -0.00139435 0) (1.02064 -0.00138737 0) (1.02069 -0.00137919 0) (1.02075 -0.00136975 0) (1.0208 -0.00135898 0) (1.02085 -0.00134683 0) (1.0209 -0.00133325 0) (1.02096 -0.00131821 0) (1.02101 -0.00130168 0) (1.02107 -0.00128366 0) (1.02112 -0.00126414 0) (1.02118 -0.00124315 0) (1.02124 -0.00122069 0) (1.02129 -0.00119683 0) (1.02135 -0.00117161 0) (1.02141 -0.00114511 0) (1.02148 -0.00111742 0) (1.02154 -0.00108863 0) (1.0216 -0.00105888 0) (1.02167 -0.0010283 0) (1.02173 -0.000997028 0) (1.0218 -0.000965243 0) (1.02187 -0.000933109 0) (1.02194 -0.00090081 0) (1.02201 -0.000868519 0) (1.02208 -0.000836419 0) (1.02215 -0.000804658 0) (1.02223 -0.000773402 0) (1.0223 -0.000742737 0) (1.02238 -0.000712805 0) (1.02246 -0.00068358 0) (1.02254 -0.000655215 0) (1.02262 -0.000627496 0) (1.0227 -0.000600691 0) (1.02279 -0.000574244 0) (1.02287 -0.000548794 0) (1.02296 -0.000523092 0) (1.02304 -0.000498721 0) (1.02314 -0.000472906 0) (1.02322 -0.00044947 0) (1.02332 -0.000422173 0) (1.02341 -0.000400029 0) (1.02352 -0.000368888 0) (1.02359 -0.000349685 0) (1.02373 -0.000310204 0) (1.02377 -0.000298703 0) (1.02397 -0.000241621 0) (1.01832 -0.00142326 0) (1.01836 -0.00141347 0) (1.01841 -0.0014044 0) (1.01845 -0.00139612 0) (1.0185 -0.0013887 0) (1.01854 -0.00138218 0) (1.01859 -0.00137661 0) (1.01863 -0.00137203 0) (1.01868 -0.00136845 0) (1.01872 -0.0013659 0) (1.01877 -0.00136435 0) (1.01882 -0.0013638 0) (1.01886 -0.00136421 0) (1.01891 -0.00136553 0) (1.01896 -0.00136771 0) (1.019 -0.00137067 0) (1.01905 -0.00137435 0) (1.0191 -0.00137865 0) (1.01914 -0.00138348 0) (1.01919 -0.00138875 0) (1.01924 -0.00139437 0) (1.01928 -0.00140025 0) (1.01933 -0.00140628 0) (1.01938 -0.00141239 0) (1.01942 -0.00141851 0) (1.01947 -0.00142455 0) (1.01952 -0.00143046 0) (1.01957 -0.00143619 0) (1.01961 -0.0014417 0) (1.01966 -0.00144695 0) (1.01971 -0.00145193 0) (1.01975 -0.00145662 0) (1.0198 -0.00146101 0) (1.01985 -0.0014651 0) (1.0199 -0.0014689 0) (1.01994 -0.0014724 0) (1.01999 -0.00147561 0) (1.02004 -0.00147854 0) (1.02009 -0.00148118 0) (1.02014 -0.00148352 0) (1.02018 -0.00148557 0) (1.02023 -0.00148729 0) (1.02028 -0.00148867 0) (1.02033 -0.00148967 0) (1.02038 -0.00149026 0) (1.02043 -0.00149039 0) (1.02047 -0.00149 0) (1.02052 -0.00148904 0) (1.02057 -0.00148745 0) (1.02062 -0.00148514 0) (1.02067 -0.00148206 0) (1.02072 -0.00147812 0) (1.02077 -0.00147325 0) (1.02082 -0.00146737 0) (1.02087 -0.00146042 0) (1.02092 -0.00145231 0) (1.02098 -0.00144299 0) (1.02103 -0.0014324 0) (1.02108 -0.00142047 0) (1.02113 -0.00140717 0) (1.02119 -0.00139247 0) (1.02124 -0.00137634 0) (1.0213 -0.00135876 0) (1.02135 -0.00133975 0) (1.02141 -0.0013193 0) (1.02147 -0.00129746 0) (1.02153 -0.00127425 0) (1.02159 -0.00124974 0) (1.02165 -0.001224 0) (1.02171 -0.0011971 0) (1.02177 -0.00116916 0) (1.02183 -0.00114027 0) (1.0219 -0.00111059 0) (1.02196 -0.00108024 0) (1.02203 -0.0010494 0) (1.0221 -0.00101822 0) (1.02217 -0.000986889 0) (1.02224 -0.000955565 0) (1.02231 -0.00092443 0) (1.02238 -0.000893628 0) (1.02246 -0.000863322 0) (1.02254 -0.000833595 0) (1.02261 -0.00080459 0) (1.02269 -0.000776283 0) (1.02277 -0.000748823 0) (1.02285 -0.000722007 0) (1.02294 -0.000696095 0) (1.02302 -0.000670554 0) (1.0231 -0.000645998 0) (1.02319 -0.00062123 0) (1.02328 -0.000597767 0) (1.02337 -0.000572952 0) (1.02346 -0.000550441 0) (1.02356 -0.000524269 0) (1.02364 -0.000503046 0) (1.02375 -0.000473257 0) (1.02383 -0.000454889 0) (1.02396 -0.000417186 0) (1.02401 -0.0004062 0) (1.0242 -0.000351745 0) (1.01855 -0.00151247 0) (1.01859 -0.00150265 0) (1.01864 -0.00149352 0) (1.01868 -0.00148515 0) (1.01873 -0.00147759 0) (1.01877 -0.00147091 0) (1.01882 -0.00146514 0) (1.01886 -0.00146033 0) (1.01891 -0.00145649 0) (1.01896 -0.00145364 0) (1.019 -0.00145176 0) (1.01905 -0.00145085 0) (1.01909 -0.00145086 0) (1.01914 -0.00145177 0) (1.01919 -0.0014535 0) (1.01923 -0.00145601 0) (1.01928 -0.0014592 0) (1.01933 -0.001463 0) (1.01938 -0.00146733 0) (1.01942 -0.00147209 0) (1.01947 -0.00147718 0) (1.01952 -0.00148253 0) (1.01956 -0.00148804 0) (1.01961 -0.00149364 0) (1.01966 -0.00149923 0) (1.0197 -0.00150477 0) (1.01975 -0.00151018 0) (1.0198 -0.00151542 0) (1.01985 -0.00152044 0) (1.01989 -0.00152522 0) (1.01994 -0.00152974 0) (1.01999 -0.00153398 0) (1.02004 -0.00153793 0) (1.02008 -0.00154159 0) (1.02013 -0.00154496 0) (1.02018 -0.00154805 0) (1.02023 -0.00155087 0) (1.02027 -0.0015534 0) (1.02032 -0.00155566 0) (1.02037 -0.00155764 0) (1.02042 -0.00155933 0) (1.02047 -0.00156071 0) (1.02052 -0.00156176 0) (1.02056 -0.00156245 0) (1.02061 -0.00156275 0) (1.02066 -0.0015626 0) (1.02071 -0.00156196 0) (1.02076 -0.00156078 0) (1.02081 -0.00155898 0) (1.02086 -0.00155651 0) (1.02091 -0.00155329 0) (1.02096 -0.00154925 0) (1.02101 -0.00154432 0) (1.02106 -0.00153842 0) (1.02111 -0.00153149 0) (1.02116 -0.00152345 0) (1.02121 -0.00151425 0) (1.02127 -0.00150382 0) (1.02132 -0.00149212 0) (1.02137 -0.00147909 0) (1.02143 -0.00146471 0) (1.02148 -0.00144895 0) (1.02154 -0.00143181 0) (1.02159 -0.00141328 0) (1.02165 -0.00139338 0) (1.02171 -0.00137212 0) (1.02176 -0.00134955 0) (1.02182 -0.00132573 0) (1.02188 -0.00130071 0) (1.02195 -0.00127459 0) (1.02201 -0.00124745 0) (1.02207 -0.00121941 0) (1.02214 -0.00119059 0) (1.0222 -0.00116114 0) (1.02227 -0.0011312 0) (1.02234 -0.00110095 0) (1.02241 -0.00107054 0) (1.02248 -0.00104014 0) (1.02255 -0.00100994 0) (1.02262 -0.000980053 0) (1.0227 -0.000950657 0) (1.02278 -0.000921829 0) (1.02285 -0.00089371 0) (1.02293 -0.000866277 0) (1.02301 -0.00083968 0) (1.02309 -0.000813723 0) (1.02318 -0.000788658 0) (1.02326 -0.000763976 0) (1.02334 -0.000740265 0) (1.02343 -0.000716382 0) (1.02352 -0.000693776 0) (1.02361 -0.000669907 0) (1.0237 -0.000648269 0) (1.0238 -0.000623162 0) (1.02388 -0.000602809 0) (1.02399 -0.0005743 0) (1.02407 -0.000556719 0) (1.0242 -0.000520705 0) (1.02424 -0.000510204 0) (1.02444 -0.000458247 0) (1.01879 -0.0015992 0) (1.01883 -0.00158935 0) (1.01888 -0.00158016 0) (1.01892 -0.00157169 0) (1.01897 -0.00156401 0) (1.01901 -0.00155718 0) (1.01906 -0.00155123 0) (1.0191 -0.00154619 0) (1.01915 -0.0015421 0) (1.01919 -0.00153896 0) (1.01924 -0.00153676 0) (1.01929 -0.0015355 0) (1.01933 -0.00153514 0) (1.01938 -0.00153564 0) (1.01943 -0.00153694 0) (1.01947 -0.001539 0) (1.01952 -0.00154172 0) (1.01957 -0.00154505 0) (1.01961 -0.00154888 0) (1.01966 -0.00155314 0) (1.01971 -0.00155773 0) (1.01976 -0.00156257 0) (1.0198 -0.00156757 0) (1.01985 -0.00157266 0) (1.0199 -0.00157776 0) (1.01995 -0.00158279 0) (1.01999 -0.00158772 0) (1.02004 -0.00159248 0) (1.02009 -0.00159703 0) (1.02013 -0.00160136 0) (1.02018 -0.00160542 0) (1.02023 -0.00160922 0) (1.02028 -0.00161274 0) (1.02032 -0.00161599 0) (1.02037 -0.00161895 0) (1.02042 -0.00162165 0) (1.02047 -0.00162407 0) (1.02052 -0.00162623 0) (1.02056 -0.00162812 0) (1.02061 -0.00162974 0) (1.02066 -0.00163108 0) (1.02071 -0.00163213 0) (1.02076 -0.00163286 0) (1.02081 -0.00163325 0) (1.02086 -0.00163326 0) (1.0209 -0.00163285 0) (1.02095 -0.00163197 0) (1.021 -0.00163056 0) (1.02105 -0.00162857 0) (1.0211 -0.00162593 0) (1.02115 -0.00162258 0) (1.0212 -0.00161844 0) (1.02125 -0.00161345 0) (1.0213 -0.00160753 0) (1.02135 -0.00160062 0) (1.02141 -0.00159265 0) (1.02146 -0.00158356 0) (1.02151 -0.00157329 0) (1.02156 -0.00156179 0) (1.02162 -0.00154903 0) (1.02167 -0.00153496 0) (1.02173 -0.00151957 0) (1.02178 -0.00150285 0) (1.02184 -0.00148479 0) (1.02189 -0.0014654 0) (1.02195 -0.00144471 0) (1.02201 -0.00142276 0) (1.02207 -0.0013996 0) (1.02213 -0.00137529 0) (1.02219 -0.00134991 0) (1.02225 -0.00132355 0) (1.02232 -0.00129631 0) (1.02238 -0.00126834 0) (1.02245 -0.00123974 0) (1.02252 -0.00121069 0) (1.02258 -0.00118132 0) (1.02265 -0.0011518 0) (1.02273 -0.0011223 0) (1.0228 -0.00109298 0) (1.02287 -0.00106399 0) (1.02295 -0.00103546 0) (1.02302 -0.00100749 0) (1.0231 -0.000980221 0) (1.02318 -0.000953624 0) (1.02326 -0.000927847 0) (1.02334 -0.000902707 0) (1.02342 -0.000878446 0) (1.02351 -0.000854579 0) (1.02359 -0.00083167 0) (1.02368 -0.000808624 0) (1.02377 -0.000786829 0) (1.02386 -0.000763855 0) (1.02394 -0.000743043 0) (1.02404 -0.000718942 0) (1.02413 -0.000699411 0) (1.02424 -0.000672117 0) (1.02431 -0.00065528 0) (1.02445 -0.00062087 0) (1.02449 -0.000610828 0) (1.02468 -0.000561246 0) (1.01903 -0.00168348 0) (1.01908 -0.00167361 0) (1.01912 -0.00166437 0) (1.01917 -0.00165582 0) (1.01921 -0.00164803 0) (1.01926 -0.00164104 0) (1.0193 -0.00163491 0) (1.01935 -0.00162967 0) (1.01939 -0.00162533 0) (1.01944 -0.00162191 0) (1.01949 -0.00161941 0) (1.01953 -0.00161781 0) (1.01958 -0.00161708 0) (1.01963 -0.00161719 0) (1.01967 -0.00161808 0) (1.01972 -0.0016197 0) (1.01977 -0.00162198 0) (1.01982 -0.00162483 0) (1.01986 -0.00162819 0) (1.01991 -0.00163196 0) (1.01996 -0.00163606 0) (1.02 -0.0016404 0) (1.02005 -0.00164491 0) (1.0201 -0.00164951 0) (1.02015 -0.00165412 0) (1.02019 -0.00165868 0) (1.02024 -0.00166313 0) (1.02029 -0.00166742 0) (1.02034 -0.00167152 0) (1.02038 -0.0016754 0) (1.02043 -0.00167903 0) (1.02048 -0.0016824 0) (1.02053 -0.00168551 0) (1.02057 -0.00168835 0) (1.02062 -0.00169092 0) (1.02067 -0.00169322 0) (1.02072 -0.00169527 0) (1.02077 -0.00169706 0) (1.02081 -0.00169859 0) (1.02086 -0.00169987 0) (1.02091 -0.00170087 0) (1.02096 -0.0017016 0) (1.02101 -0.00170202 0) (1.02106 -0.00170211 0) (1.02111 -0.00170184 0) (1.02115 -0.00170117 0) (1.0212 -0.00170005 0) (1.02125 -0.00169843 0) (1.0213 -0.00169625 0) (1.02135 -0.00169345 0) (1.0214 -0.00168996 0) (1.02145 -0.00168573 0) (1.0215 -0.00168068 0) (1.02155 -0.00167474 0) (1.02161 -0.00166784 0) (1.02166 -0.00165994 0) (1.02171 -0.00165095 0) (1.02176 -0.00164084 0) (1.02181 -0.00162954 0) (1.02187 -0.00161703 0) (1.02192 -0.00160326 0) (1.02198 -0.00158823 0) (1.02203 -0.0015719 0) (1.02209 -0.00155429 0) (1.02215 -0.00153541 0) (1.0222 -0.00151527 0) (1.02226 -0.00149392 0) (1.02232 -0.00147139 0) (1.02238 -0.00144776 0) (1.02244 -0.0014231 0) (1.02251 -0.00139749 0) (1.02257 -0.00137104 0) (1.02264 -0.00134387 0) (1.0227 -0.00131611 0) (1.02277 -0.0012879 0) (1.02284 -0.00125938 0) (1.02291 -0.00123073 0) (1.02298 -0.00120209 0) (1.02305 -0.00117363 0) (1.02313 -0.00114548 0) (1.0232 -0.00111779 0) (1.02328 -0.00109065 0) (1.02335 -0.00106418 0) (1.02343 -0.00103838 0) (1.02351 -0.00101339 0) (1.02359 -0.000989026 0) (1.02368 -0.00096553 0) (1.02376 -0.000942437 0) (1.02385 -0.000920287 0) (1.02393 -0.000898035 0) (1.02402 -0.000877008 0) (1.02411 -0.000854881 0) (1.0242 -0.000834849 0) (1.0243 -0.000811703 0) (1.02438 -0.000792949 0) (1.02449 -0.000766806 0) (1.02456 -0.000750673 0) (1.0247 -0.000717789 0) (1.02474 -0.000708179 0) (1.02493 -0.00066086 0) (1.01929 -0.00176539 0) (1.01933 -0.0017555 0) (1.01938 -0.00174621 0) (1.01942 -0.00173758 0) (1.01947 -0.00172969 0) (1.01951 -0.00172257 0) (1.01956 -0.00171627 0) (1.0196 -0.00171082 0) (1.01965 -0.00170625 0) (1.0197 -0.00170256 0) (1.01974 -0.00169976 0) (1.01979 -0.00169783 0) (1.01984 -0.00169675 0) (1.01988 -0.00169648 0) (1.01993 -0.00169697 0) (1.01998 -0.00169817 0) (1.02002 -0.00170001 0) (1.02007 -0.00170241 0) (1.02012 -0.0017053 0) (1.02017 -0.0017086 0) (1.02021 -0.00171222 0) (1.02026 -0.00171609 0) (1.02031 -0.00172012 0) (1.02035 -0.00172424 0) (1.0204 -0.00172837 0) (1.02045 -0.00173246 0) (1.0205 -0.00173645 0) (1.02054 -0.0017403 0) (1.02059 -0.00174395 0) (1.02064 -0.0017474 0) (1.02069 -0.00175061 0) (1.02074 -0.00175356 0) (1.02078 -0.00175627 0) (1.02083 -0.00175871 0) (1.02088 -0.00176089 0) (1.02093 -0.00176282 0) (1.02098 -0.0017645 0) (1.02102 -0.00176594 0) (1.02107 -0.00176712 0) (1.02112 -0.00176806 0) (1.02117 -0.00176874 0) (1.02122 -0.00176915 0) (1.02127 -0.00176927 0) (1.02131 -0.00176907 0) (1.02136 -0.00176853 0) (1.02141 -0.0017676 0) (1.02146 -0.00176625 0) (1.02151 -0.00176442 0) (1.02156 -0.00176205 0) (1.02161 -0.00175909 0) (1.02166 -0.00175548 0) (1.02171 -0.00175115 0) (1.02176 -0.00174604 0) (1.02181 -0.00174008 0) (1.02186 -0.0017332 0) (1.02192 -0.00172535 0) (1.02197 -0.00171647 0) (1.02202 -0.0017065 0) (1.02207 -0.0016954 0) (1.02213 -0.00168313 0) (1.02218 -0.00166965 0) (1.02224 -0.00165495 0) (1.02229 -0.00163902 0) (1.02235 -0.00162185 0) (1.02241 -0.00160345 0) (1.02246 -0.00158384 0) (1.02252 -0.00156306 0) (1.02258 -0.00154115 0) (1.02264 -0.00151818 0) (1.02271 -0.00149421 0) (1.02277 -0.00146933 0) (1.02283 -0.00144364 0) (1.0229 -0.00141725 0) (1.02296 -0.00139028 0) (1.02303 -0.00136288 0) (1.0231 -0.0013352 0) (1.02317 -0.00130737 0) (1.02324 -0.00127956 0) (1.02331 -0.00125192 0) (1.02339 -0.00122458 0) (1.02346 -0.0011977 0) (1.02354 -0.00117134 0) (1.02362 -0.00114565 0) (1.02369 -0.00112062 0) (1.02377 -0.00109637 0) (1.02386 -0.00107275 0) (1.02394 -0.00104998 0) (1.02402 -0.00102762 0) (1.02411 -0.00100619 0) (1.02419 -0.000984692 0) (1.02428 -0.000964391 0) (1.02437 -0.000943067 0) (1.02446 -0.000923774 0) (1.02456 -0.000901533 0) (1.02464 -0.000883513 0) (1.02475 -0.000858466 0) (1.02482 -0.000842998 0) (1.02496 -0.000811566 0) (1.025 -0.000802366 0) (1.02519 -0.000757203 0) (1.01955 -0.00184499 0) (1.01959 -0.00183507 0) (1.01964 -0.00182574 0) (1.01968 -0.00181705 0) (1.01973 -0.00180905 0) (1.01977 -0.0018018 0) (1.01982 -0.00179533 0) (1.01987 -0.00178969 0) (1.01991 -0.0017849 0) (1.01996 -0.00178095 0) (1.02 -0.00177787 0) (1.02005 -0.00177562 0) (1.0201 -0.0017742 0) (1.02015 -0.00177356 0) (1.02019 -0.00177367 0) (1.02024 -0.00177446 0) (1.02029 -0.00177587 0) (1.02033 -0.00177783 0) (1.02038 -0.00178027 0) (1.02043 -0.00178311 0) (1.02048 -0.00178627 0) (1.02052 -0.00178967 0) (1.02057 -0.00179324 0) (1.02062 -0.00179689 0) (1.02067 -0.00180057 0) (1.02071 -0.0018042 0) (1.02076 -0.00180775 0) (1.02081 -0.00181115 0) (1.02086 -0.00181438 0) (1.0209 -0.0018174 0) (1.02095 -0.0018202 0) (1.021 -0.00182275 0) (1.02105 -0.00182506 0) (1.0211 -0.00182712 0) (1.02114 -0.00182893 0) (1.02119 -0.0018305 0) (1.02124 -0.00183182 0) (1.02129 -0.0018329 0) (1.02134 -0.00183375 0) (1.02139 -0.00183436 0) (1.02143 -0.00183472 0) (1.02148 -0.00183482 0) (1.02153 -0.00183465 0) (1.02158 -0.00183417 0) (1.02163 -0.00183337 0) (1.02168 -0.0018322 0) (1.02173 -0.00183061 0) (1.02178 -0.00182858 0) (1.02183 -0.00182603 0) (1.02188 -0.00182291 0) (1.02193 -0.00181918 0) (1.02198 -0.00181475 0) (1.02203 -0.00180958 0) (1.02208 -0.00180359 0) (1.02213 -0.00179673 0) (1.02218 -0.00178893 0) (1.02224 -0.00178014 0) (1.02229 -0.00177032 0) (1.02234 -0.0017594 0) (1.0224 -0.00174736 0) (1.02245 -0.00173417 0) (1.02251 -0.00171979 0) (1.02256 -0.00170423 0) (1.02262 -0.00168748 0) (1.02267 -0.00166955 0) (1.02273 -0.00165045 0) (1.02279 -0.00163023 0) (1.02285 -0.00160892 0) (1.02291 -0.00158658 0) (1.02297 -0.00156328 0) (1.02304 -0.0015391 0) (1.0231 -0.00151414 0) (1.02317 -0.0014885 0) (1.02323 -0.00146231 0) (1.0233 -0.0014357 0) (1.02337 -0.0014088 0) (1.02344 -0.00138178 0) (1.02351 -0.00135476 0) (1.02358 -0.00132791 0) (1.02366 -0.00130136 0) (1.02373 -0.00127525 0) (1.02381 -0.00124965 0) (1.02388 -0.0012247 0) (1.02396 -0.00120039 0) (1.02404 -0.00117686 0) (1.02412 -0.00115394 0) (1.02421 -0.00113186 0) (1.02429 -0.0011102 0) (1.02438 -0.00108946 0) (1.02446 -0.00106867 0) (1.02455 -0.00104906 0) (1.02464 -0.0010285 0) (1.02473 -0.0010099 0) (1.02483 -0.000988522 0) (1.02491 -0.000971198 0) (1.02502 -0.000947191 0) (1.02509 -0.000932352 0) (1.02523 -0.000902304 0) (1.02527 -0.00089349 0) (1.02546 -0.000850384 0) (1.01982 -0.00192232 0) (1.01986 -0.00191239 0) (1.01991 -0.00190302 0) (1.01995 -0.00189426 0) (1.02 -0.00188617 0) (1.02004 -0.0018788 0) (1.02009 -0.00187218 0) (1.02014 -0.00186635 0) (1.02018 -0.00186134 0) (1.02023 -0.00185715 0) (1.02028 -0.00185379 0) (1.02032 -0.00185124 0) (1.02037 -0.00184949 0) (1.02042 -0.00184849 0) (1.02046 -0.00184822 0) (1.02051 -0.00184861 0) (1.02056 -0.00184961 0) (1.02061 -0.00185115 0) (1.02065 -0.00185315 0) (1.0207 -0.00185555 0) (1.02075 -0.00185826 0) (1.0208 -0.00186121 0) (1.02084 -0.00186432 0) (1.02089 -0.00186752 0) (1.02094 -0.00187075 0) (1.02099 -0.00187395 0) (1.02103 -0.00187705 0) (1.02108 -0.00188003 0) (1.02113 -0.00188284 0) (1.02118 -0.00188546 0) (1.02123 -0.00188785 0) (1.02127 -0.00189002 0) (1.02132 -0.00189195 0) (1.02137 -0.00189363 0) (1.02142 -0.00189508 0) (1.02147 -0.00189629 0) (1.02151 -0.00189726 0) (1.02156 -0.00189801 0) (1.02161 -0.00189853 0) (1.02166 -0.00189882 0) (1.02171 -0.00189887 0) (1.02176 -0.00189867 0) (1.02181 -0.00189821 0) (1.02186 -0.00189746 0) (1.0219 -0.0018964 0) (1.02195 -0.00189498 0) (1.022 -0.00189318 0) (1.02205 -0.00189094 0) (1.0221 -0.00188821 0) (1.02215 -0.00188495 0) (1.0222 -0.00188108 0) (1.02225 -0.00187657 0) (1.02231 -0.00187133 0) (1.02236 -0.00186531 0) (1.02241 -0.00185846 0) (1.02246 -0.00185072 0) (1.02251 -0.00184202 0) (1.02256 -0.00183233 0) (1.02262 -0.00182159 0) (1.02267 -0.00180977 0) (1.02273 -0.00179685 0) (1.02278 -0.00178279 0) (1.02284 -0.00176759 0) (1.02289 -0.00175124 0) (1.02295 -0.00173376 0) (1.02301 -0.00171516 0) (1.02307 -0.00169547 0) (1.02313 -0.00167474 0) (1.02319 -0.00165301 0) (1.02325 -0.00163035 0) (1.02331 -0.00160685 0) (1.02338 -0.0015826 0) (1.02344 -0.00155769 0) (1.02351 -0.00153224 0) (1.02358 -0.00150639 0) (1.02365 -0.00148026 0) (1.02372 -0.001454 0) (1.02379 -0.00142775 0) (1.02386 -0.00140167 0) (1.02393 -0.00137587 0) (1.02401 -0.00135049 0) (1.02408 -0.00132562 0) (1.02416 -0.00130138 0) (1.02424 -0.00127777 0) (1.02432 -0.00125491 0) (1.0244 -0.00123267 0) (1.02448 -0.00121125 0) (1.02457 -0.00119026 0) (1.02465 -0.00117016 0) (1.02474 -0.00115006 0) (1.02483 -0.0011311 0) (1.02492 -0.00111126 0) (1.025 -0.00109332 0) (1.0251 -0.00107276 0) (1.02518 -0.00105609 0) (1.0253 -0.00103307 0) (1.02537 -0.00101883 0) (1.0255 -0.000990102 0) (1.02554 -0.000981654 0) (1.02573 -0.000940512 0) (1.0201 -0.00199744 0) (1.02014 -0.00198751 0) (1.02019 -0.00197811 0) (1.02023 -0.00196929 0) (1.02028 -0.00196111 0) (1.02032 -0.00195362 0) (1.02037 -0.00194685 0) (1.02042 -0.00194085 0) (1.02046 -0.00193563 0) (1.02051 -0.0019312 0) (1.02056 -0.00192757 0) (1.0206 -0.00192473 0) (1.02065 -0.00192266 0) (1.0207 -0.00192133 0) (1.02075 -0.00192069 0) (1.02079 -0.0019207 0) (1.02084 -0.0019213 0) (1.02089 -0.00192242 0) (1.02093 -0.001924 0) (1.02098 -0.00192596 0) (1.02103 -0.00192824 0) (1.02108 -0.00193075 0) (1.02113 -0.00193342 0) (1.02117 -0.00193618 0) (1.02122 -0.00193898 0) (1.02127 -0.00194174 0) (1.02132 -0.00194443 0) (1.02136 -0.00194699 0) (1.02141 -0.0019494 0) (1.02146 -0.00195161 0) (1.02151 -0.00195362 0) (1.02156 -0.00195541 0) (1.0216 -0.00195696 0) (1.02165 -0.00195829 0) (1.0217 -0.00195938 0) (1.02175 -0.00196024 0) (1.0218 -0.00196088 0) (1.02185 -0.0019613 0) (1.02189 -0.0019615 0) (1.02194 -0.00196147 0) (1.02199 -0.00196122 0) (1.02204 -0.00196074 0) (1.02209 -0.00196 0) (1.02214 -0.00195898 0) (1.02219 -0.00195767 0) (1.02224 -0.00195602 0) (1.02229 -0.00195399 0) (1.02234 -0.00195156 0) (1.02239 -0.00194865 0) (1.02244 -0.00194524 0) (1.02249 -0.00194125 0) (1.02254 -0.00193664 0) (1.02259 -0.00193134 0) (1.02264 -0.0019253 0) (1.02269 -0.00191845 0) (1.02274 -0.00191075 0) (1.0228 -0.00190214 0) (1.02285 -0.00189258 0) (1.0229 -0.00188201 0) (1.02296 -0.00187041 0) (1.02301 -0.00185774 0) (1.02307 -0.00184398 0) (1.02312 -0.00182913 0) (1.02318 -0.00181317 0) (1.02324 -0.00179612 0) (1.02329 -0.001778 0) (1.02335 -0.00175883 0) (1.02341 -0.00173865 0) (1.02347 -0.00171751 0) (1.02354 -0.00169548 0) (1.0236 -0.00167264 0) (1.02366 -0.00164906 0) (1.02373 -0.00162485 0) (1.02379 -0.00160012 0) (1.02386 -0.001575 0) (1.02393 -0.00154961 0) (1.024 -0.0015241 0) (1.02407 -0.00149859 0) (1.02414 -0.00147324 0) (1.02422 -0.00144816 0) (1.02429 -0.00142349 0) (1.02437 -0.00139932 0) (1.02445 -0.00137576 0) (1.02453 -0.00135282 0) (1.02461 -0.00133061 0) (1.02469 -0.00130901 0) (1.02477 -0.00128822 0) (1.02485 -0.00126786 0) (1.02494 -0.00124838 0) (1.02502 -0.00122892 0) (1.02511 -0.00121058 0) (1.0252 -0.00119142 0) (1.02529 -0.00117412 0) (1.02539 -0.00115432 0) (1.02547 -0.00113828 0) (1.02558 -0.00111621 0) (1.02565 -0.00110253 0) (1.02579 -0.00107506 0) (1.02583 -0.00106696 0) (1.02602 -0.00102769 0) (1.02039 -0.00207043 0) (1.02043 -0.00206049 0) (1.02048 -0.00205106 0) (1.02052 -0.00204219 0) (1.02057 -0.00203393 0) (1.02061 -0.00202632 0) (1.02066 -0.00201942 0) (1.02071 -0.00201324 0) (1.02075 -0.00200782 0) (1.0208 -0.00200317 0) (1.02085 -0.00199928 0) (1.02089 -0.00199616 0) (1.02094 -0.00199378 0) (1.02099 -0.00199211 0) (1.02104 -0.00199112 0) (1.02108 -0.00199076 0) (1.02113 -0.00199097 0) (1.02118 -0.00199169 0) (1.02123 -0.00199286 0) (1.02127 -0.00199441 0) (1.02132 -0.00199626 0) (1.02137 -0.00199834 0) (1.02142 -0.00200058 0) (1.02146 -0.00200292 0) (1.02151 -0.00200529 0) (1.02156 -0.00200764 0) (1.02161 -0.00200992 0) (1.02166 -0.00201208 0) (1.0217 -0.00201409 0) (1.02175 -0.00201592 0) (1.0218 -0.00201755 0) (1.02185 -0.00201897 0) (1.0219 -0.00202016 0) (1.02194 -0.00202113 0) (1.02199 -0.00202188 0) (1.02204 -0.00202241 0) (1.02209 -0.00202272 0) (1.02214 -0.00202282 0) (1.02219 -0.0020227 0) (1.02224 -0.00202238 0) (1.02228 -0.00202183 0) (1.02233 -0.00202106 0) (1.02238 -0.00202005 0) (1.02243 -0.00201877 0) (1.02248 -0.00201721 0) (1.02253 -0.00201533 0) (1.02258 -0.0020131 0) (1.02263 -0.00201047 0) (1.02268 -0.00200739 0) (1.02273 -0.00200383 0) (1.02278 -0.00199972 0) (1.02283 -0.00199501 0) (1.02288 -0.00198965 0) (1.02293 -0.00198358 0) (1.02299 -0.00197674 0) (1.02304 -0.00196908 0) (1.02309 -0.00196055 0) (1.02314 -0.0019511 0) (1.0232 -0.0019407 0) (1.02325 -0.0019293 0) (1.02331 -0.00191688 0) (1.02336 -0.00190341 0) (1.02342 -0.00188889 0) (1.02347 -0.00187332 0) (1.02353 -0.00185669 0) (1.02359 -0.00183902 0) (1.02365 -0.00182035 0) (1.02371 -0.0018007 0) (1.02377 -0.00178014 0) (1.02383 -0.00175871 0) (1.02389 -0.0017365 0) (1.02396 -0.00171358 0) (1.02402 -0.00169004 0) (1.02409 -0.00166601 0) (1.02416 -0.0016416 0) (1.02423 -0.00161692 0) (1.0243 -0.00159212 0) (1.02437 -0.00156732 0) (1.02444 -0.00154268 0) (1.02451 -0.0015183 0) (1.02459 -0.00149432 0) (1.02466 -0.00147081 0) (1.02474 -0.0014479 0) (1.02482 -0.0014256 0) (1.0249 -0.00140401 0) (1.02498 -0.00138303 0) (1.02506 -0.00136284 0) (1.02515 -0.00134308 0) (1.02523 -0.00132418 0) (1.02532 -0.00130533 0) (1.0254 -0.00128758 0) (1.0255 -0.00126908 0) (1.02558 -0.00125237 0) (1.02568 -0.00123331 0) (1.02576 -0.00121786 0) (1.02587 -0.00119668 0) (1.02594 -0.00118354 0) (1.02608 -0.00115726 0) (1.02612 -0.00114949 0) (1.02631 -0.00111202 0) (1.02069 -0.00214133 0) (1.02073 -0.00213139 0) (1.02078 -0.00212193 0) (1.02082 -0.00211301 0) (1.02087 -0.00210467 0) (1.02091 -0.00209696 0) (1.02096 -0.00208993 0) (1.02101 -0.00208359 0) (1.02105 -0.00207798 0) (1.0211 -0.00207311 0) (1.02115 -0.00206897 0) (1.02119 -0.00206558 0) (1.02124 -0.0020629 0) (1.02129 -0.00206091 0) (1.02133 -0.00205958 0) (1.02138 -0.00205886 0) (1.02143 -0.00205869 0) (1.02148 -0.00205903 0) (1.02152 -0.0020598 0) (1.02157 -0.00206093 0) (1.02162 -0.00206237 0) (1.02167 -0.00206404 0) (1.02172 -0.00206586 0) (1.02176 -0.00206779 0) (1.02181 -0.00206975 0) (1.02186 -0.0020717 0) (1.02191 -0.00207358 0) (1.02196 -0.00207534 0) (1.022 -0.00207697 0) (1.02205 -0.00207842 0) (1.0221 -0.00207969 0) (1.02215 -0.00208074 0) (1.0222 -0.00208159 0) (1.02225 -0.00208222 0) (1.02229 -0.00208263 0) (1.02234 -0.00208283 0) (1.02239 -0.00208283 0) (1.02244 -0.00208261 0) (1.02249 -0.00208219 0) (1.02254 -0.00208157 0) (1.02259 -0.00208074 0) (1.02264 -0.00207969 0) (1.02268 -0.00207841 0) (1.02273 -0.00207689 0) (1.02278 -0.00207508 0) (1.02283 -0.00207298 0) (1.02288 -0.00207053 0) (1.02293 -0.00206771 0) (1.02298 -0.00206447 0) (1.02303 -0.00206076 0) (1.02308 -0.00205653 0) (1.02313 -0.00205173 0) (1.02319 -0.00204631 0) (1.02324 -0.0020402 0) (1.02329 -0.00203336 0) (1.02334 -0.00202574 0) (1.02339 -0.00201729 0) (1.02345 -0.00200796 0) (1.0235 -0.00199771 0) (1.02355 -0.0019865 0) (1.02361 -0.00197432 0) (1.02366 -0.00196113 0) (1.02372 -0.00194693 0) (1.02378 -0.00193172 0) (1.02383 -0.00191549 0) (1.02389 -0.00189827 0) (1.02395 -0.00188008 0) (1.02401 -0.00186095 0) (1.02407 -0.00184093 0) (1.02413 -0.00182009 0) (1.0242 -0.00179848 0) (1.02426 -0.0017762 0) (1.02433 -0.00175332 0) (1.02439 -0.00172996 0) (1.02446 -0.00170622 0) (1.02453 -0.00168223 0) (1.0246 -0.00165812 0) (1.02467 -0.00163402 0) (1.02474 -0.00161005 0) (1.02482 -0.00158634 0) (1.02489 -0.00156302 0) (1.02497 -0.00154015 0) (1.02504 -0.00151787 0) (1.02512 -0.00149618 0) (1.0252 -0.00147519 0) (1.02528 -0.00145479 0) (1.02537 -0.00143517 0) (1.02545 -0.00141598 0) (1.02553 -0.00139765 0) (1.02562 -0.00137937 0) (1.02571 -0.00136218 0) (1.0258 -0.0013443 0) (1.02588 -0.00132815 0) (1.02598 -0.00130979 0) (1.02606 -0.0012949 0) (1.02618 -0.00127458 0) (1.02625 -0.00126195 0) (1.02638 -0.00123682 0) (1.02642 -0.00122935 0) (1.02661 -0.00119359 0) (1.02099 -0.00221019 0) (1.02104 -0.00220026 0) (1.02108 -0.00219078 0) (1.02113 -0.00218182 0) (1.02118 -0.00217341 0) (1.02122 -0.0021656 0) (1.02127 -0.00215844 0) (1.02131 -0.00215195 0) (1.02136 -0.00214615 0) (1.02141 -0.00214107 0) (1.02145 -0.0021367 0) (1.0215 -0.00213304 0) (1.02155 -0.00213007 0) (1.0216 -0.00212777 0) (1.02164 -0.00212611 0) (1.02169 -0.00212504 0) (1.02174 -0.00212451 0) (1.02179 -0.00212447 0) (1.02183 -0.00212485 0) (1.02188 -0.00212559 0) (1.02193 -0.00212663 0) (1.02198 -0.00212789 0) (1.02203 -0.00212932 0) (1.02207 -0.00213084 0) (1.02212 -0.00213241 0) (1.02217 -0.00213396 0) (1.02222 -0.00213545 0) (1.02227 -0.00213683 0) (1.02231 -0.00213809 0) (1.02236 -0.00213917 0) (1.02241 -0.00214008 0) (1.02246 -0.00214079 0) (1.02251 -0.00214129 0) (1.02256 -0.00214159 0) (1.0226 -0.00214168 0) (1.02265 -0.00214156 0) (1.0227 -0.00214124 0) (1.02275 -0.00214073 0) (1.0228 -0.00214001 0) (1.02285 -0.00213911 0) (1.0229 -0.002138 0) (1.02295 -0.00213668 0) (1.023 -0.00213514 0) (1.02305 -0.00213336 0) (1.02309 -0.00213133 0) (1.02314 -0.002129 0) (1.02319 -0.00212635 0) (1.02324 -0.00212334 0) (1.02329 -0.00211993 0) (1.02334 -0.00211608 0) (1.0234 -0.00211173 0) (1.02345 -0.00210684 0) (1.0235 -0.00210135 0) (1.02355 -0.00209521 0) (1.0236 -0.00208837 0) (1.02365 -0.00208078 0) (1.02371 -0.0020724 0) (1.02376 -0.00206318 0) (1.02381 -0.00205307 0) (1.02387 -0.00204205 0) (1.02392 -0.0020301 0) (1.02398 -0.00201718 0) (1.02403 -0.00200329 0) (1.02409 -0.00198842 0) (1.02415 -0.00197258 0) (1.02421 -0.00195579 0) (1.02426 -0.00193806 0) (1.02432 -0.00191943 0) (1.02439 -0.00189995 0) (1.02445 -0.00187966 0) (1.02451 -0.00185865 0) (1.02457 -0.00183697 0) (1.02464 -0.00181473 0) (1.02471 -0.00179201 0) (1.02477 -0.00176893 0) (1.02484 -0.00174561 0) (1.02491 -0.00172216 0) (1.02498 -0.00169872 0) (1.02506 -0.00167541 0) (1.02513 -0.00165234 0) (1.0252 -0.00162965 0) (1.02528 -0.00160741 0) (1.02536 -0.00158573 0) (1.02544 -0.00156462 0) (1.02552 -0.0015442 0) (1.0256 -0.00152436 0) (1.02568 -0.00150528 0) (1.02576 -0.00148664 0) (1.02585 -0.00146884 0) (1.02593 -0.00145112 0) (1.02602 -0.00143445 0) (1.02611 -0.00141716 0) (1.0262 -0.00140155 0) (1.02629 -0.00138386 0) (1.02638 -0.0013695 0) (1.02649 -0.00134999 0) (1.02656 -0.00133784 0) (1.02669 -0.0013138 0) (1.02673 -0.00130663 0) (1.02692 -0.00127251 0) (1.02131 -0.00227709 0) (1.02136 -0.00226716 0) (1.0214 -0.00225767 0) (1.02145 -0.00224866 0) (1.02149 -0.00224018 0) (1.02154 -0.00223229 0) (1.02159 -0.002225 0) (1.02163 -0.00221836 0) (1.02168 -0.00221239 0) (1.02173 -0.00220711 0) (1.02177 -0.00220251 0) (1.02182 -0.00219859 0) (1.02187 -0.00219535 0) (1.02192 -0.00219275 0) (1.02196 -0.00219077 0) (1.02201 -0.00218936 0) (1.02206 -0.00218848 0) (1.02211 -0.00218807 0) (1.02215 -0.00218808 0) (1.0222 -0.00218843 0) (1.02225 -0.00218908 0) (1.0223 -0.00218995 0) (1.02235 -0.00219099 0) (1.02239 -0.00219212 0) (1.02244 -0.0021933 0) (1.02249 -0.00219447 0) (1.02254 -0.00219558 0) (1.02259 -0.0021966 0) (1.02264 -0.00219749 0) (1.02268 -0.00219822 0) (1.02273 -0.00219878 0) (1.02278 -0.00219915 0) (1.02283 -0.00219932 0) (1.02288 -0.0021993 0) (1.02293 -0.00219907 0) (1.02297 -0.00219864 0) (1.02302 -0.00219802 0) (1.02307 -0.00219721 0) (1.02312 -0.00219621 0) (1.02317 -0.00219502 0) (1.02322 -0.00219364 0) (1.02327 -0.00219206 0) (1.02332 -0.00219027 0) (1.02337 -0.00218825 0) (1.02342 -0.00218598 0) (1.02347 -0.00218344 0) (1.02352 -0.00218059 0) (1.02357 -0.0021774 0) (1.02362 -0.00217383 0) (1.02367 -0.00216983 0) (1.02372 -0.00216536 0) (1.02377 -0.00216038 0) (1.02382 -0.00215482 0) (1.02387 -0.00214865 0) (1.02392 -0.00214181 0) (1.02398 -0.00213425 0) (1.02403 -0.00212593 0) (1.02408 -0.00211681 0) (1.02414 -0.00210684 0) (1.02419 -0.002096 0) (1.02424 -0.00208426 0) (1.0243 -0.0020716 0) (1.02436 -0.002058 0) (1.02441 -0.00204347 0) (1.02447 -0.00202801 0) (1.02453 -0.00201162 0) (1.02459 -0.00199434 0) (1.02465 -0.00197619 0) (1.02471 -0.00195722 0) (1.02477 -0.00193748 0) (1.02483 -0.00191703 0) (1.0249 -0.00189595 0) (1.02496 -0.00187432 0) (1.02503 -0.00185222 0) (1.0251 -0.00182978 0) (1.02517 -0.0018071 0) (1.02524 -0.00178429 0) (1.02531 -0.00176149 0) (1.02538 -0.00173881 0) (1.02545 -0.00171637 0) (1.02553 -0.00169428 0) (1.0256 -0.00167263 0) (1.02568 -0.00165153 0) (1.02576 -0.00163098 0) (1.02584 -0.00161111 0) (1.02592 -0.0015918 0) (1.026 -0.00157324 0) (1.02609 -0.00155512 0) (1.02617 -0.00153783 0) (1.02626 -0.00152064 0) (1.02634 -0.00150448 0) (1.02643 -0.00148774 0) (1.02652 -0.00147264 0) (1.02662 -0.00145558 0) (1.0267 -0.00144173 0) (1.02681 -0.00142299 0) (1.02688 -0.0014113 0) (1.02701 -0.00138831 0) (1.02705 -0.00138142 0) (1.02724 -0.00134886 0) (1.02164 -0.00234207 0) (1.02169 -0.00233215 0) (1.02173 -0.00232264 0) (1.02178 -0.0023136 0) (1.02182 -0.00230506 0) (1.02187 -0.00229708 0) (1.02192 -0.00228968 0) (1.02196 -0.0022829 0) (1.02201 -0.00227676 0) (1.02206 -0.00227128 0) (1.0221 -0.00226646 0) (1.02215 -0.0022623 0) (1.0222 -0.00225879 0) (1.02225 -0.0022559 0) (1.02229 -0.00225361 0) (1.02234 -0.00225187 0) (1.02239 -0.00225065 0) (1.02244 -0.00224989 0) (1.02249 -0.00224953 0) (1.02253 -0.00224951 0) (1.02258 -0.00224978 0) (1.02263 -0.00225028 0) (1.02268 -0.00225093 0) (1.02273 -0.00225168 0) (1.02277 -0.00225249 0) (1.02282 -0.00225328 0) (1.02287 -0.00225403 0) (1.02292 -0.00225469 0) (1.02297 -0.00225522 0) (1.02302 -0.00225561 0) (1.02306 -0.00225583 0) (1.02311 -0.00225587 0) (1.02316 -0.00225573 0) (1.02321 -0.00225538 0) (1.02326 -0.00225485 0) (1.02331 -0.00225412 0) (1.02336 -0.00225321 0) (1.02341 -0.00225211 0) (1.02345 -0.00225083 0) (1.0235 -0.00224937 0) (1.02355 -0.00224772 0) (1.0236 -0.00224588 0) (1.02365 -0.00224384 0) (1.0237 -0.00224159 0) (1.02375 -0.00223909 0) (1.0238 -0.00223634 0) (1.02385 -0.0022333 0) (1.0239 -0.00222992 0) (1.02395 -0.00222619 0) (1.024 -0.00222205 0) (1.02405 -0.00221747 0) (1.0241 -0.00221239 0) (1.02415 -0.00220677 0) (1.02421 -0.00220056 0) (1.02426 -0.00219371 0) (1.02431 -0.00218618 0) (1.02436 -0.00217792 0) (1.02442 -0.00216889 0) (1.02447 -0.00215906 0) (1.02452 -0.00214839 0) (1.02458 -0.00213685 0) (1.02463 -0.00212444 0) (1.02469 -0.00211113 0) (1.02475 -0.00209692 0) (1.0248 -0.00208181 0) (1.02486 -0.00206582 0) (1.02492 -0.00204897 0) (1.02498 -0.00203129 0) (1.02504 -0.00201282 0) (1.02511 -0.0019936 0) (1.02517 -0.0019737 0) (1.02523 -0.00195318 0) (1.0253 -0.00193214 0) (1.02536 -0.00191065 0) (1.02543 -0.00188882 0) (1.0255 -0.00186675 0) (1.02557 -0.00184457 0) (1.02564 -0.00182238 0) (1.02571 -0.00180032 0) (1.02579 -0.00177847 0) (1.02586 -0.00175697 0) (1.02594 -0.00173589 0) (1.02602 -0.00171534 0) (1.0261 -0.00169533 0) (1.02617 -0.00167598 0) (1.02626 -0.00165719 0) (1.02634 -0.00163913 0) (1.02642 -0.0016215 0) (1.02651 -0.00160469 0) (1.02659 -0.001588 0) (1.02668 -0.00157232 0) (1.02677 -0.00155611 0) (1.02685 -0.00154149 0) (1.02695 -0.00152504 0) (1.02703 -0.00151167 0) (1.02714 -0.00149367 0) (1.02721 -0.00148241 0) (1.02735 -0.00146042 0) (1.02739 -0.00145379 0) (1.02757 -0.00142273 0) (1.02198 -0.00240518 0) (1.02203 -0.00239528 0) (1.02207 -0.00238576 0) (1.02212 -0.00237669 0) (1.02217 -0.00236809 0) (1.02221 -0.00236002 0) (1.02226 -0.00235252 0) (1.0223 -0.00234561 0) (1.02235 -0.00233931 0) (1.0224 -0.00233364 0) (1.02245 -0.00232861 0) (1.02249 -0.00232421 0) (1.02254 -0.00232044 0) (1.02259 -0.00231727 0) (1.02264 -0.00231468 0) (1.02268 -0.00231263 0) (1.02273 -0.00231107 0) (1.02278 -0.00230997 0) (1.02283 -0.00230926 0) (1.02288 -0.00230888 0) (1.02292 -0.00230879 0) (1.02297 -0.00230891 0) (1.02302 -0.00230919 0) (1.02307 -0.00230958 0) (1.02312 -0.00231001 0) (1.02317 -0.00231045 0) (1.02321 -0.00231084 0) (1.02326 -0.00231115 0) (1.02331 -0.00231134 0) (1.02336 -0.0023114 0) (1.02341 -0.00231129 0) (1.02346 -0.00231101 0) (1.0235 -0.00231055 0) (1.02355 -0.0023099 0) (1.0236 -0.00230906 0) (1.02365 -0.00230805 0) (1.0237 -0.00230685 0) (1.02375 -0.00230547 0) (1.0238 -0.00230391 0) (1.02385 -0.00230219 0) (1.0239 -0.00230028 0) (1.02395 -0.00229819 0) (1.024 -0.00229591 0) (1.02405 -0.00229342 0) (1.0241 -0.00229071 0) (1.02415 -0.00228775 0) (1.0242 -0.00228451 0) (1.02425 -0.00228097 0) (1.0243 -0.00227707 0) (1.02435 -0.0022728 0) (1.0244 -0.00226809 0) (1.02445 -0.00226292 0) (1.0245 -0.00225723 0) (1.02455 -0.00225098 0) (1.0246 -0.00224413 0) (1.02466 -0.00223662 0) (1.02471 -0.00222841 0) (1.02476 -0.00221947 0) (1.02482 -0.00220976 0) (1.02487 -0.00219925 0) (1.02492 -0.00218792 0) (1.02498 -0.00217574 0) (1.02504 -0.0021627 0) (1.02509 -0.0021488 0) (1.02515 -0.00213404 0) (1.02521 -0.00211843 0) (1.02527 -0.002102 0) (1.02533 -0.00208476 0) (1.02539 -0.00206677 0) (1.02545 -0.00204805 0) (1.02551 -0.00202868 0) (1.02558 -0.00200872 0) (1.02564 -0.00198824 0) (1.02571 -0.00196734 0) (1.02578 -0.0019461 0) (1.02585 -0.00192463 0) (1.02592 -0.00190305 0) (1.02599 -0.00188146 0) (1.02606 -0.00185998 0) (1.02613 -0.00183871 0) (1.02621 -0.00181777 0) (1.02629 -0.00179724 0) (1.02636 -0.00177723 0) (1.02644 -0.00175774 0) (1.02652 -0.00173888 0) (1.0266 -0.00172058 0) (1.02668 -0.00170299 0) (1.02677 -0.00168584 0) (1.02685 -0.00166949 0) (1.02694 -0.00165328 0) (1.02702 -0.00163805 0) (1.02711 -0.00162235 0) (1.0272 -0.00160819 0) (1.0273 -0.00159231 0) (1.02738 -0.00157939 0) (1.02749 -0.0015621 0) (1.02756 -0.00155125 0) (1.02769 -0.00153021 0) (1.02773 -0.00152384 0) (1.02792 -0.00149422 0) (1.02234 -0.00246649 0) (1.02238 -0.0024566 0) (1.02243 -0.00244708 0) (1.02247 -0.00243798 0) (1.02252 -0.00242933 0) (1.02256 -0.00242119 0) (1.02261 -0.00241358 0) (1.02266 -0.00240654 0) (1.02271 -0.00240009 0) (1.02275 -0.00239424 0) (1.0228 -0.00238901 0) (1.02285 -0.00238438 0) (1.02289 -0.00238036 0) (1.02294 -0.00237692 0) (1.02299 -0.00237404 0) (1.02304 -0.00237168 0) (1.02309 -0.00236981 0) (1.02313 -0.00236837 0) (1.02318 -0.00236731 0) (1.02323 -0.00236659 0) (1.02328 -0.00236614 0) (1.02333 -0.0023659 0) (1.02338 -0.00236582 0) (1.02342 -0.00236585 0) (1.02347 -0.00236593 0) (1.02352 -0.00236602 0) (1.02357 -0.00236606 0) (1.02362 -0.00236603 0) (1.02367 -0.00236589 0) (1.02371 -0.00236562 0) (1.02376 -0.00236519 0) (1.02381 -0.0023646 0) (1.02386 -0.00236383 0) (1.02391 -0.00236289 0) (1.02396 -0.00236176 0) (1.02401 -0.00236046 0) (1.02406 -0.00235898 0) (1.02411 -0.00235733 0) (1.02415 -0.00235551 0) (1.0242 -0.00235352 0) (1.02425 -0.00235137 0) (1.0243 -0.00234904 0) (1.02435 -0.00234652 0) (1.0244 -0.00234381 0) (1.02445 -0.00234088 0) (1.0245 -0.00233771 0) (1.02455 -0.00233429 0) (1.0246 -0.00233056 0) (1.02465 -0.00232652 0) (1.0247 -0.0023221 0) (1.02475 -0.00231728 0) (1.02481 -0.00231202 0) (1.02486 -0.00230626 0) (1.02491 -0.00229997 0) (1.02496 -0.0022931 0) (1.02501 -0.00228561 0) (1.02507 -0.00227745 0) (1.02512 -0.0022686 0) (1.02517 -0.00225901 0) (1.02523 -0.00224865 0) (1.02528 -0.0022375 0) (1.02534 -0.00222555 0) (1.02539 -0.00221277 0) (1.02545 -0.00219917 0) (1.02551 -0.00218474 0) (1.02557 -0.0021695 0) (1.02563 -0.00215347 0) (1.02569 -0.00213666 0) (1.02575 -0.00211912 0) (1.02581 -0.0021009 0) (1.02587 -0.00208204 0) (1.02594 -0.00206261 0) (1.026 -0.00204268 0) (1.02607 -0.00202234 0) (1.02614 -0.00200167 0) (1.02621 -0.00198078 0) (1.02628 -0.00195978 0) (1.02635 -0.00193876 0) (1.02642 -0.00191785 0) (1.02649 -0.00189714 0) (1.02657 -0.00187675 0) (1.02664 -0.00185675 0) (1.02672 -0.00183724 0) (1.0268 -0.00181825 0) (1.02688 -0.00179987 0) (1.02696 -0.00178204 0) (1.02704 -0.00176491 0) (1.02712 -0.00174821 0) (1.02721 -0.00173229 0) (1.0273 -0.00171654 0) (1.02738 -0.00170174 0) (1.02747 -0.00168652 0) (1.02756 -0.0016728 0) (1.02765 -0.00165746 0) (1.02773 -0.00164498 0) (1.02784 -0.00162836 0) (1.02791 -0.00161791 0) (1.02805 -0.00159778 0) (1.02809 -0.00159164 0) (1.02827 -0.0015634 0) (1.0227 -0.00252604 0) (1.02275 -0.00251617 0) (1.02279 -0.00250665 0) (1.02284 -0.00249752 0) (1.02288 -0.00248883 0) (1.02293 -0.00248061 0) (1.02298 -0.00247291 0) (1.02302 -0.00246575 0) (1.02307 -0.00245915 0) (1.02312 -0.00245314 0) (1.02317 -0.00244771 0) (1.02321 -0.00244286 0) (1.02326 -0.0024386 0) (1.02331 -0.0024349 0) (1.02336 -0.00243174 0) (1.0234 -0.00242908 0) (1.02345 -0.0024269 0) (1.0235 -0.00242513 0) (1.02355 -0.00242375 0) (1.0236 -0.00242268 0) (1.02365 -0.00242188 0) (1.02369 -0.0024213 0) (1.02374 -0.00242088 0) (1.02379 -0.00242056 0) (1.02384 -0.00242029 0) (1.02389 -0.00242004 0) (1.02394 -0.00241974 0) (1.02399 -0.00241938 0) (1.02403 -0.00241892 0) (1.02408 -0.00241833 0) (1.02413 -0.00241759 0) (1.02418 -0.0024167 0) (1.02423 -0.00241564 0) (1.02428 -0.0024144 0) (1.02433 -0.00241299 0) (1.02438 -0.00241141 0) (1.02442 -0.00240966 0) (1.02447 -0.00240775 0) (1.02452 -0.00240567 0) (1.02457 -0.00240343 0) (1.02462 -0.00240103 0) (1.02467 -0.00239846 0) (1.02472 -0.00239571 0) (1.02477 -0.00239277 0) (1.02482 -0.00238964 0) (1.02487 -0.00238627 0) (1.02492 -0.00238266 0) (1.02497 -0.00237877 0) (1.02502 -0.00237456 0) (1.02507 -0.00237001 0) (1.02512 -0.00236508 0) (1.02518 -0.00235972 0) (1.02523 -0.00235389 0) (1.02528 -0.00234756 0) (1.02533 -0.00234067 0) (1.02538 -0.0023332 0) (1.02544 -0.00232509 0) (1.02549 -0.00231631 0) (1.02554 -0.00230683 0) (1.0256 -0.00229662 0) (1.02565 -0.00228565 0) (1.02571 -0.00227391 0) (1.02576 -0.00226138 0) (1.02582 -0.00224807 0) (1.02588 -0.00223396 0) (1.02594 -0.00221907 0) (1.026 -0.00220342 0) (1.02606 -0.00218703 0) (1.02612 -0.00216994 0) (1.02618 -0.00215218 0) (1.02624 -0.00213382 0) (1.02631 -0.0021149 0) (1.02637 -0.0020955 0) (1.02644 -0.0020757 0) (1.02651 -0.00205559 0) (1.02658 -0.00203526 0) (1.02665 -0.00201481 0) (1.02672 -0.00199435 0) (1.02679 -0.00197398 0) (1.02686 -0.00195381 0) (1.02694 -0.00193395 0) (1.02701 -0.00191445 0) (1.02709 -0.00189544 0) (1.02717 -0.00187693 0) (1.02725 -0.00185901 0) (1.02733 -0.00184163 0) (1.02741 -0.00182493 0) (1.0275 -0.00180867 0) (1.02758 -0.00179317 0) (1.02767 -0.00177784 0) (1.02775 -0.00176346 0) (1.02784 -0.0017487 0) (1.02793 -0.00173539 0) (1.02802 -0.00172058 0) (1.0281 -0.0017085 0) (1.02821 -0.00169252 0) (1.02828 -0.00168244 0) (1.02842 -0.00166318 0) (1.02846 -0.00165728 0) (1.02864 -0.00163035 0) (1.02308 -0.0025839 0) (1.02313 -0.00257405 0) (1.02317 -0.00256453 0) (1.02322 -0.00255538 0) (1.02326 -0.00254664 0) (1.02331 -0.00253836 0) (1.02336 -0.00253057 0) (1.0234 -0.00252329 0) (1.02345 -0.00251655 0) (1.0235 -0.00251037 0) (1.02355 -0.00250476 0) (1.02359 -0.0024997 0) (1.02364 -0.00249521 0) (1.02369 -0.00249126 0) (1.02374 -0.00248782 0) (1.02378 -0.00248488 0) (1.02383 -0.00248239 0) (1.02388 -0.00248032 0) (1.02393 -0.00247861 0) (1.02398 -0.00247721 0) (1.02403 -0.00247608 0) (1.02407 -0.00247516 0) (1.02412 -0.0024744 0) (1.02417 -0.00247374 0) (1.02422 -0.00247314 0) (1.02427 -0.00247255 0) (1.02432 -0.00247193 0) (1.02437 -0.00247125 0) (1.02442 -0.00247047 0) (1.02446 -0.00246957 0) (1.02451 -0.00246854 0) (1.02456 -0.00246735 0) (1.02461 -0.002466 0) (1.02466 -0.00246448 0) (1.02471 -0.00246279 0) (1.02476 -0.00246094 0) (1.02481 -0.00245893 0) (1.02486 -0.00245676 0) (1.02491 -0.00245443 0) (1.02496 -0.00245194 0) (1.025 -0.0024493 0) (1.02505 -0.0024465 0) (1.0251 -0.00244352 0) (1.02515 -0.00244037 0) (1.0252 -0.00243703 0) (1.02525 -0.00243347 0) (1.0253 -0.00242967 0) (1.02536 -0.00242561 0) (1.02541 -0.00242126 0) (1.02546 -0.00241657 0) (1.02551 -0.00241152 0) (1.02556 -0.00240607 0) (1.02561 -0.00240018 0) (1.02566 -0.0023938 0) (1.02572 -0.00238689 0) (1.02577 -0.00237943 0) (1.02582 -0.00237136 0) (1.02587 -0.00236265 0) (1.02593 -0.00235327 0) (1.02598 -0.0023432 0) (1.02604 -0.0023324 0) (1.02609 -0.00232087 0) (1.02615 -0.00230858 0) (1.02621 -0.00229554 0) (1.02626 -0.00228174 0) (1.02632 -0.00226719 0) (1.02638 -0.00225191 0) (1.02644 -0.00223592 0) (1.0265 -0.00221925 0) (1.02657 -0.00220195 0) (1.02663 -0.00218406 0) (1.02669 -0.00216564 0) (1.02676 -0.00214675 0) (1.02682 -0.00212748 0) (1.02689 -0.0021079 0) (1.02696 -0.00208811 0) (1.02703 -0.0020682 0) (1.0271 -0.00204827 0) (1.02717 -0.00202844 0) (1.02725 -0.00200879 0) (1.02732 -0.00198943 0) (1.0274 -0.00197043 0) (1.02748 -0.00195189 0) (1.02755 -0.00193383 0) (1.02763 -0.00191636 0) (1.02771 -0.00189941 0) (1.0278 -0.00188313 0) (1.02788 -0.00186728 0) (1.02796 -0.00185218 0) (1.02805 -0.00183726 0) (1.02813 -0.00182327 0) (1.02823 -0.00180895 0) (1.02831 -0.00179603 0) (1.02841 -0.00178171 0) (1.02849 -0.00177003 0) (1.0286 -0.00175467 0) (1.02867 -0.00174494 0) (1.0288 -0.00172651 0) (1.02884 -0.00172082 0) (1.02902 -0.00169515 0) (1.02347 -0.0026401 0) (1.02352 -0.00263027 0) (1.02357 -0.00262076 0) (1.02361 -0.00261159 0) (1.02366 -0.00260282 0) (1.0237 -0.00259448 0) (1.02375 -0.0025866 0) (1.0238 -0.00257921 0) (1.02384 -0.00257234 0) (1.02389 -0.00256601 0) (1.02394 -0.00256021 0) (1.02399 -0.00255496 0) (1.02403 -0.00255024 0) (1.02408 -0.00254604 0) (1.02413 -0.00254235 0) (1.02418 -0.00253913 0) (1.02423 -0.00253635 0) (1.02428 -0.00253397 0) (1.02432 -0.00253195 0) (1.02437 -0.00253023 0) (1.02442 -0.00252877 0) (1.02447 -0.00252753 0) (1.02452 -0.00252643 0) (1.02457 -0.00252545 0) (1.02462 -0.00252452 0) (1.02466 -0.00252361 0) (1.02471 -0.00252267 0) (1.02476 -0.00252168 0) (1.02481 -0.0025206 0) (1.02486 -0.0025194 0) (1.02491 -0.00251807 0) (1.02496 -0.00251659 0) (1.02501 -0.00251496 0) (1.02506 -0.00251317 0) (1.0251 -0.00251122 0) (1.02515 -0.00250911 0) (1.0252 -0.00250684 0) (1.02525 -0.00250441 0) (1.0253 -0.00250184 0) (1.02535 -0.00249911 0) (1.0254 -0.00249623 0) (1.02545 -0.0024932 0) (1.0255 -0.00249001 0) (1.02555 -0.00248665 0) (1.0256 -0.0024831 0) (1.02565 -0.00247935 0) (1.0257 -0.00247538 0) (1.02575 -0.00247115 0) (1.0258 -0.00246664 0) (1.02585 -0.00246183 0) (1.02591 -0.00245666 0) (1.02596 -0.00245112 0) (1.02601 -0.00244515 0) (1.02606 -0.00243872 0) (1.02611 -0.0024318 0) (1.02617 -0.00242434 0) (1.02622 -0.0024163 0) (1.02627 -0.00240766 0) (1.02633 -0.00239839 0) (1.02638 -0.00238844 0) (1.02644 -0.00237781 0) (1.02649 -0.00236647 0) (1.02655 -0.00235441 0) (1.02661 -0.00234163 0) (1.02666 -0.00232812 0) (1.02672 -0.0023139 0) (1.02678 -0.00229898 0) (1.02684 -0.00228337 0) (1.0269 -0.00226712 0) (1.02696 -0.00225025 0) (1.02703 -0.00223282 0) (1.02709 -0.00221488 0) (1.02716 -0.00219649 0) (1.02722 -0.00217772 0) (1.02729 -0.00215866 0) (1.02736 -0.00213939 0) (1.02743 -0.00212 0) (1.0275 -0.00210059 0) (1.02757 -0.00208127 0) (1.02765 -0.00206212 0) (1.02772 -0.00204325 0) (1.0278 -0.00202472 0) (1.02787 -0.00200664 0) (1.02795 -0.00198903 0) (1.02803 -0.00197198 0) (1.02811 -0.00195544 0) (1.0282 -0.00193956 0) (1.02828 -0.0019241 0) (1.02836 -0.00190938 0) (1.02845 -0.00189486 0) (1.02853 -0.00188125 0) (1.02862 -0.00186734 0) (1.02871 -0.0018548 0) (1.02881 -0.00184095 0) (1.02889 -0.00182963 0) (1.029 -0.00181485 0) (1.02906 -0.00180546 0) (1.0292 -0.00178783 0) (1.02924 -0.00178235 0) (1.02942 -0.00175789 0) (1.02388 -0.00269471 0) (1.02393 -0.00268491 0) (1.02397 -0.0026754 0) (1.02402 -0.00266622 0) (1.02407 -0.00265741 0) (1.02411 -0.00264902 0) (1.02416 -0.00264106 0) (1.02421 -0.00263357 0) (1.02425 -0.00262657 0) (1.0243 -0.00262009 0) (1.02435 -0.00261412 0) (1.0244 -0.00260867 0) (1.02444 -0.00260374 0) (1.02449 -0.0025993 0) (1.02454 -0.00259536 0) (1.02459 -0.00259187 0) (1.02464 -0.00258881 0) (1.02469 -0.00258614 0) (1.02473 -0.00258381 0) (1.02478 -0.00258178 0) (1.02483 -0.00258001 0) (1.02488 -0.00257845 0) (1.02493 -0.00257703 0) (1.02498 -0.00257573 0) (1.02503 -0.00257449 0) (1.02507 -0.00257326 0) (1.02512 -0.00257202 0) (1.02517 -0.00257072 0) (1.02522 -0.00256934 0) (1.02527 -0.00256785 0) (1.02532 -0.00256623 0) (1.02537 -0.00256448 0) (1.02542 -0.00256258 0) (1.02547 -0.00256052 0) (1.02552 -0.00255831 0) (1.02557 -0.00255594 0) (1.02562 -0.00255342 0) (1.02566 -0.00255075 0) (1.02571 -0.00254794 0) (1.02576 -0.00254498 0) (1.02581 -0.00254187 0) (1.02586 -0.00253862 0) (1.02591 -0.00253521 0) (1.02596 -0.00253164 0) (1.02601 -0.0025279 0) (1.02606 -0.00252396 0) (1.02612 -0.00251981 0) (1.02617 -0.00251542 0) (1.02622 -0.00251076 0) (1.02627 -0.00250581 0) (1.02632 -0.00250054 0) (1.02637 -0.0024949 0) (1.02642 -0.00248886 0) (1.02647 -0.00248238 0) (1.02653 -0.00247543 0) (1.02658 -0.00246798 0) (1.02663 -0.00245997 0) (1.02669 -0.00245139 0) (1.02674 -0.00244221 0) (1.0268 -0.00243238 0) (1.02685 -0.00242191 0) (1.02691 -0.00241075 0) (1.02696 -0.00239891 0) (1.02702 -0.00238638 0) (1.02708 -0.00237316 0) (1.02714 -0.00235925 0) (1.02719 -0.00234467 0) (1.02726 -0.00232943 0) (1.02732 -0.00231357 0) (1.02738 -0.00229713 0) (1.02744 -0.00228014 0) (1.02751 -0.00226266 0) (1.02757 -0.00224475 0) (1.02764 -0.00222647 0) (1.02771 -0.00220791 0) (1.02777 -0.00218914 0) (1.02784 -0.00217026 0) (1.02792 -0.00215135 0) (1.02799 -0.00213252 0) (1.02806 -0.00211386 0) (1.02814 -0.00209546 0) (1.02821 -0.00207739 0) (1.02829 -0.00205975 0) (1.02837 -0.00204256 0) (1.02845 -0.00202593 0) (1.02853 -0.00200978 0) (1.02861 -0.00199428 0) (1.02869 -0.0019792 0) (1.02878 -0.00196485 0) (1.02886 -0.0019507 0) (1.02895 -0.00193744 0) (1.02904 -0.00192393 0) (1.02912 -0.00191174 0) (1.02922 -0.00189835 0) (1.0293 -0.00188738 0) (1.02941 -0.00187316 0) (1.02948 -0.00186408 0) (1.02961 -0.00184722 0) (1.02965 -0.00184193 0) (1.02983 -0.00181863 0) (1.02431 -0.00274777 0) (1.02435 -0.002738 0) (1.0244 -0.0027285 0) (1.02444 -0.00271931 0) (1.02449 -0.00271047 0) (1.02454 -0.00270202 0) (1.02458 -0.00269399 0) (1.02463 -0.00268641 0) (1.02468 -0.00267929 0) (1.02472 -0.00267266 0) (1.02477 -0.00266653 0) (1.02482 -0.00266089 0) (1.02487 -0.00265575 0) (1.02492 -0.0026511 0) (1.02496 -0.00264691 0) (1.02501 -0.00264316 0) (1.02506 -0.00263983 0) (1.02511 -0.00263687 0) (1.02516 -0.00263425 0) (1.02521 -0.00263192 0) (1.02526 -0.00262985 0) (1.02531 -0.00262797 0) (1.02535 -0.00262625 0) (1.0254 -0.00262463 0) (1.02545 -0.00262308 0) (1.0255 -0.00262155 0) (1.02555 -0.00262001 0) (1.0256 -0.00261842 0) (1.02565 -0.00261675 0) (1.0257 -0.00261497 0) (1.02575 -0.00261308 0) (1.0258 -0.00261105 0) (1.02585 -0.00260889 0) (1.02589 -0.00260657 0) (1.02594 -0.0026041 0) (1.02599 -0.00260149 0) (1.02604 -0.00259873 0) (1.02609 -0.00259582 0) (1.02614 -0.00259277 0) (1.02619 -0.00258958 0) (1.02624 -0.00258625 0) (1.02629 -0.00258279 0) (1.02634 -0.00257917 0) (1.02639 -0.0025754 0) (1.02644 -0.00257146 0) (1.02649 -0.00256734 0) (1.02654 -0.00256301 0) (1.0266 -0.00255846 0) (1.02665 -0.00255366 0) (1.0267 -0.00254858 0) (1.02675 -0.00254319 0) (1.0268 -0.00253746 0) (1.02685 -0.00253134 0) (1.0269 -0.00252482 0) (1.02696 -0.00251784 0) (1.02701 -0.00251038 0) (1.02706 -0.00250241 0) (1.02712 -0.00249388 0) (1.02717 -0.00248478 0) (1.02723 -0.00247507 0) (1.02728 -0.00246474 0) (1.02734 -0.00245376 0) (1.02739 -0.00244213 0) (1.02745 -0.00242984 0) (1.02751 -0.00241689 0) (1.02757 -0.00240328 0) (1.02763 -0.00238902 0) (1.02769 -0.00237415 0) (1.02775 -0.00235867 0) (1.02781 -0.00234263 0) (1.02787 -0.00232607 0) (1.02794 -0.00230904 0) (1.028 -0.00229158 0) (1.02807 -0.00227378 0) (1.02814 -0.0022557 0) (1.02821 -0.00223742 0) (1.02828 -0.00221902 0) (1.02835 -0.0022006 0) (1.02842 -0.00218225 0) (1.02849 -0.00216405 0) (1.02857 -0.00214611 0) (1.02864 -0.00212848 0) (1.02872 -0.00211127 0) (1.0288 -0.00209449 0) (1.02888 -0.00207825 0) (1.02896 -0.00206249 0) (1.02904 -0.00204735 0) (1.02912 -0.00203264 0) (1.02921 -0.00201863 0) (1.02929 -0.00200485 0) (1.02938 -0.00199192 0) (1.02947 -0.00197879 0) (1.02955 -0.00196694 0) (1.02965 -0.00195397 0) (1.02973 -0.00194334 0) (1.02984 -0.00192965 0) (1.02991 -0.00192088 0) (1.03004 -0.00190474 0) (1.03008 -0.00189963 0) (1.03026 -0.00187744 0) (1.02475 -0.00279933 0) (1.02479 -0.00278959 0) (1.02484 -0.00278011 0) (1.02488 -0.00277091 0) (1.02493 -0.00276205 0) (1.02498 -0.00275355 0) (1.02502 -0.00274546 0) (1.02507 -0.00273778 0) (1.02512 -0.00273055 0) (1.02517 -0.00272379 0) (1.02521 -0.00271749 0) (1.02526 -0.00271168 0) (1.02531 -0.00270634 0) (1.02536 -0.00270147 0) (1.02541 -0.00269704 0) (1.02546 -0.00269305 0) (1.0255 -0.00268945 0) (1.02555 -0.00268622 0) (1.0256 -0.00268331 0) (1.02565 -0.00268069 0) (1.0257 -0.00267832 0) (1.02575 -0.00267614 0) (1.0258 -0.00267412 0) (1.02585 -0.0026722 0) (1.0259 -0.00267035 0) (1.02594 -0.00266853 0) (1.02599 -0.00266669 0) (1.02604 -0.00266481 0) (1.02609 -0.00266286 0) (1.02614 -0.00266081 0) (1.02619 -0.00265865 0) (1.02624 -0.00265636 0) (1.02629 -0.00265394 0) (1.02634 -0.00265137 0) (1.02639 -0.00264866 0) (1.02644 -0.0026458 0) (1.02649 -0.0026428 0) (1.02654 -0.00263966 0) (1.02659 -0.00263638 0) (1.02664 -0.00263297 0) (1.02669 -0.00262943 0) (1.02674 -0.00262575 0) (1.02679 -0.00262193 0) (1.02684 -0.00261796 0) (1.02689 -0.00261383 0) (1.02694 -0.00260952 0) (1.02699 -0.00260503 0) (1.02704 -0.00260032 0) (1.02709 -0.00259538 0) (1.02714 -0.00259017 0) (1.0272 -0.00258466 0) (1.02725 -0.00257883 0) (1.0273 -0.00257265 0) (1.02735 -0.00256607 0) (1.0274 -0.00255906 0) (1.02746 -0.0025516 0) (1.02751 -0.00254365 0) (1.02756 -0.00253517 0) (1.02762 -0.00252615 0) (1.02767 -0.00251655 0) (1.02773 -0.00250635 0) (1.02778 -0.00249554 0) (1.02784 -0.00248411 0) (1.0279 -0.00247205 0) (1.02796 -0.00245935 0) (1.02801 -0.00244603 0) (1.02807 -0.00243209 0) (1.02813 -0.00241756 0) (1.0282 -0.00240245 0) (1.02826 -0.0023868 0) (1.02832 -0.00237065 0) (1.02839 -0.00235405 0) (1.02845 -0.00233704 0) (1.02852 -0.0023197 0) (1.02859 -0.00230208 0) (1.02865 -0.00228427 0) (1.02872 -0.00226635 0) (1.0288 -0.0022484 0) (1.02887 -0.00223051 0) (1.02894 -0.00221276 0) (1.02902 -0.00219526 0) (1.02909 -0.00217806 0) (1.02917 -0.00216126 0) (1.02925 -0.00214488 0) (1.02933 -0.00212901 0) (1.02941 -0.00211362 0) (1.02949 -0.00209884 0) (1.02957 -0.00208447 0) (1.02966 -0.00207079 0) (1.02974 -0.00205735 0) (1.02983 -0.00204475 0) (1.02992 -0.00203198 0) (1.03 -0.00202045 0) (1.0301 -0.00200789 0) (1.03018 -0.00199757 0) (1.03029 -0.00198439 0) (1.03036 -0.0019759 0) (1.03049 -0.00196047 0) (1.03053 -0.00195553 0) (1.03071 -0.0019344 0) (1.0252 -0.00284945 0) (1.02525 -0.00283974 0) (1.0253 -0.00283027 0) (1.02534 -0.00282108 0) (1.02539 -0.00281219 0) (1.02544 -0.00280366 0) (1.02548 -0.00279549 0) (1.02553 -0.00278773 0) (1.02558 -0.0027804 0) (1.02563 -0.0027735 0) (1.02567 -0.00276706 0) (1.02572 -0.00276108 0) (1.02577 -0.00275555 0) (1.02582 -0.00275046 0) (1.02587 -0.00274581 0) (1.02592 -0.00274157 0) (1.02596 -0.00273772 0) (1.02601 -0.00273422 0) (1.02606 -0.00273104 0) (1.02611 -0.00272814 0) (1.02616 -0.00272548 0) (1.02621 -0.00272301 0) (1.02626 -0.0027207 0) (1.02631 -0.00271849 0) (1.02636 -0.00271635 0) (1.02641 -0.00271424 0) (1.02646 -0.00271212 0) (1.0265 -0.00270996 0) (1.02655 -0.00270773 0) (1.0266 -0.00270542 0) (1.02665 -0.002703 0) (1.0267 -0.00270045 0) (1.02675 -0.00269777 0) (1.0268 -0.00269496 0) (1.02685 -0.00269201 0) (1.0269 -0.00268891 0) (1.02695 -0.00268568 0) (1.027 -0.00268232 0) (1.02705 -0.00267882 0) (1.0271 -0.00267519 0) (1.02715 -0.00267144 0) (1.0272 -0.00266755 0) (1.02725 -0.00266353 0) (1.0273 -0.00265936 0) (1.02735 -0.00265505 0) (1.0274 -0.00265057 0) (1.02746 -0.00264591 0) (1.02751 -0.00264104 0) (1.02756 -0.00263595 0) (1.02761 -0.00263061 0) (1.02766 -0.002625 0) (1.02771 -0.00261907 0) (1.02776 -0.00261281 0) (1.02782 -0.00260618 0) (1.02787 -0.00259914 0) (1.02792 -0.00259167 0) (1.02798 -0.00258374 0) (1.02803 -0.00257531 0) (1.02808 -0.00256635 0) (1.02814 -0.00255685 0) (1.02819 -0.00254679 0) (1.02825 -0.00253614 0) (1.02831 -0.0025249 0) (1.02836 -0.00251305 0) (1.02842 -0.0025006 0) (1.02848 -0.00248756 0) (1.02854 -0.00247392 0) (1.0286 -0.00245972 0) (1.02866 -0.00244496 0) (1.02872 -0.00242969 0) (1.02879 -0.00241394 0) (1.02885 -0.00239775 0) (1.02892 -0.00238117 0) (1.02898 -0.00236427 0) (1.02905 -0.0023471 0) (1.02912 -0.00232975 0) (1.02919 -0.00231228 0) (1.02926 -0.00229478 0) (1.02933 -0.00227734 0) (1.02941 -0.00226004 0) (1.02948 -0.00224296 0) (1.02956 -0.00222617 0) (1.02964 -0.00220977 0) (1.02972 -0.00219377 0) (1.02979 -0.00217827 0) (1.02988 -0.00216323 0) (1.02996 -0.00214878 0) (1.03004 -0.00213475 0) (1.03012 -0.00212139 0) (1.03021 -0.00210828 0) (1.03029 -0.00209598 0) (1.03039 -0.00208356 0) (1.03047 -0.00207233 0) (1.03057 -0.00206016 0) (1.03065 -0.00205015 0) (1.03075 -0.00203745 0) (1.03082 -0.00202923 0) (1.03096 -0.00201447 0) (1.031 -0.00200969 0) (1.03118 -0.00198958 0) (1.02568 -0.00289817 0) (1.02573 -0.00288849 0) (1.02577 -0.00287904 0) (1.02582 -0.00286985 0) (1.02587 -0.00286095 0) (1.02591 -0.00285238 0) (1.02596 -0.00284415 0) (1.02601 -0.00283632 0) (1.02606 -0.00282888 0) (1.0261 -0.00282186 0) (1.02615 -0.00281528 0) (1.0262 -0.00280913 0) (1.02625 -0.00280342 0) (1.0263 -0.00279813 0) (1.02635 -0.00279326 0) (1.0264 -0.00278879 0) (1.02644 -0.00278469 0) (1.02649 -0.00278094 0) (1.02654 -0.00277749 0) (1.02659 -0.00277432 0) (1.02664 -0.00277138 0) (1.02669 -0.00276863 0) (1.02674 -0.00276603 0) (1.02679 -0.00276354 0) (1.02684 -0.00276112 0) (1.02689 -0.00275872 0) (1.02694 -0.00275633 0) (1.02699 -0.0027539 0) (1.02704 -0.00275141 0) (1.02709 -0.00274883 0) (1.02713 -0.00274615 0) (1.02718 -0.00274336 0) (1.02723 -0.00274044 0) (1.02728 -0.00273738 0) (1.02733 -0.0027342 0) (1.02738 -0.00273088 0) (1.02743 -0.00272742 0) (1.02748 -0.00272384 0) (1.02753 -0.00272012 0) (1.02758 -0.00271628 0) (1.02764 -0.00271232 0) (1.02769 -0.00270823 0) (1.02774 -0.00270401 0) (1.02779 -0.00269966 0) (1.02784 -0.00269516 0) (1.02789 -0.00269051 0) (1.02794 -0.00268568 0) (1.02799 -0.00268066 0) (1.02804 -0.00267543 0) (1.02809 -0.00266997 0) (1.02815 -0.00266424 0) (1.0282 -0.00265822 0) (1.02825 -0.00265188 0) (1.0283 -0.00264519 0) (1.02836 -0.00263812 0) (1.02841 -0.00263064 0) (1.02846 -0.00262272 0) (1.02852 -0.00261433 0) (1.02857 -0.00260544 0) (1.02863 -0.00259603 0) (1.02868 -0.00258609 0) (1.02874 -0.00257559 0) (1.02879 -0.00256453 0) (1.02885 -0.00255289 0) (1.02891 -0.00254068 0) (1.02897 -0.00252789 0) (1.02903 -0.00251455 0) (1.02909 -0.00250066 0) (1.02915 -0.00248625 0) (1.02921 -0.00247134 0) (1.02928 -0.00245597 0) (1.02934 -0.00244018 0) (1.02941 -0.00242402 0) (1.02947 -0.00240754 0) (1.02954 -0.00239081 0) (1.02961 -0.00237389 0) (1.02968 -0.00235687 0) (1.02975 -0.00233981 0) (1.02982 -0.0023228 0) (1.0299 -0.00230592 0) (1.02997 -0.00228926 0) (1.03005 -0.00227287 0) (1.03012 -0.00225685 0) (1.0302 -0.00224122 0) (1.03028 -0.00222608 0) (1.03036 -0.00221138 0) (1.03045 -0.00219725 0) (1.03053 -0.00218354 0) (1.03061 -0.00217048 0) (1.0307 -0.00215768 0) (1.03078 -0.00214568 0) (1.03087 -0.00213359 0) (1.03096 -0.00212265 0) (1.03105 -0.00211085 0) (1.03113 -0.00210112 0) (1.03124 -0.00208889 0) (1.03131 -0.00208092 0) (1.03144 -0.0020668 0) (1.03148 -0.00206217 0) (1.03167 -0.00204305 0) (1.02618 -0.00294553 0) (1.02623 -0.0029359 0) (1.02627 -0.00292647 0) (1.02632 -0.00291728 0) (1.02637 -0.00290837 0) (1.02641 -0.00289976 0) (1.02646 -0.00289149 0) (1.02651 -0.00288358 0) (1.02656 -0.00287605 0) (1.0266 -0.00286891 0) (1.02665 -0.00286219 0) (1.0267 -0.00285589 0) (1.02675 -0.00285 0) (1.0268 -0.00284452 0) (1.02685 -0.00283945 0) (1.0269 -0.00283475 0) (1.02694 -0.00283041 0) (1.02699 -0.00282641 0) (1.02704 -0.00282271 0) (1.02709 -0.00281927 0) (1.02714 -0.00281606 0) (1.02719 -0.00281303 0) (1.02724 -0.00281016 0) (1.02729 -0.00280739 0) (1.02734 -0.0028047 0) (1.02739 -0.00280203 0) (1.02744 -0.00279937 0) (1.02749 -0.00279668 0) (1.02754 -0.00279393 0) (1.02759 -0.0027911 0) (1.02764 -0.00278817 0) (1.02769 -0.00278513 0) (1.02774 -0.00278197 0) (1.02779 -0.00277869 0) (1.02784 -0.00277527 0) (1.02789 -0.00277173 0) (1.02794 -0.00276806 0) (1.02799 -0.00276426 0) (1.02804 -0.00276033 0) (1.02809 -0.00275629 0) (1.02814 -0.00275212 0) (1.02819 -0.00274784 0) (1.02824 -0.00274343 0) (1.02829 -0.00273889 0) (1.02834 -0.00273421 0) (1.02839 -0.00272938 0) (1.02845 -0.0027244 0) (1.0285 -0.00271923 0) (1.02855 -0.00271386 0) (1.0286 -0.00270827 0) (1.02865 -0.00270243 0) (1.0287 -0.00269631 0) (1.02876 -0.0026899 0) (1.02881 -0.00268315 0) (1.02886 -0.00267604 0) (1.02892 -0.00266855 0) (1.02897 -0.00266063 0) (1.02902 -0.00265227 0) (1.02908 -0.00264345 0) (1.02913 -0.00263413 0) (1.02919 -0.0026243 0) (1.02925 -0.00261394 0) (1.0293 -0.00260305 0) (1.02936 -0.00259161 0) (1.02942 -0.00257962 0) (1.02948 -0.00256709 0) (1.02954 -0.00255402 0) (1.0296 -0.00254044 0) (1.02966 -0.00252635 0) (1.02972 -0.00251179 0) (1.02978 -0.00249679 0) (1.02985 -0.00248138 0) (1.02991 -0.00246562 0) (1.02998 -0.00244956 0) (1.03005 -0.00243325 0) (1.03012 -0.00241676 0) (1.03019 -0.00240016 0) (1.03026 -0.00238352 0) (1.03033 -0.00236694 0) (1.03041 -0.00235047 0) (1.03048 -0.0023342 0) (1.03056 -0.00231821 0) (1.03063 -0.00230255 0) (1.03071 -0.00228728 0) (1.03079 -0.00227248 0) (1.03087 -0.00225811 0) (1.03096 -0.00224429 0) (1.03104 -0.00223089 0) (1.03112 -0.00221812 0) (1.03121 -0.00220563 0) (1.03129 -0.00219391 0) (1.03138 -0.00218212 0) (1.03147 -0.00217146 0) (1.03156 -0.00216002 0) (1.03164 -0.00215056 0) (1.03175 -0.00213877 0) (1.03182 -0.00213105 0) (1.03195 -0.00211753 0) (1.03199 -0.00211305 0) (1.03218 -0.00209486 0) (1.0267 -0.0029916 0) (1.02675 -0.00298201 0) (1.02679 -0.0029726 0) (1.02684 -0.00296342 0) (1.02689 -0.0029545 0) (1.02693 -0.00294586 0) (1.02698 -0.00293754 0) (1.02703 -0.00292956 0) (1.02708 -0.00292194 0) (1.02713 -0.0029147 0) (1.02717 -0.00290785 0) (1.02722 -0.0029014 0) (1.02727 -0.00289534 0) (1.02732 -0.00288968 0) (1.02737 -0.0028844 0) (1.02742 -0.00287949 0) (1.02747 -0.00287493 0) (1.02752 -0.00287069 0) (1.02757 -0.00286673 0) (1.02762 -0.00286304 0) (1.02767 -0.00285956 0) (1.02771 -0.00285628 0) (1.02776 -0.00285313 0) (1.02781 -0.0028501 0) (1.02786 -0.00284714 0) (1.02791 -0.00284421 0) (1.02796 -0.00284129 0) (1.02801 -0.00283834 0) (1.02806 -0.00283534 0) (1.02811 -0.00283226 0) (1.02816 -0.00282909 0) (1.02821 -0.00282582 0) (1.02826 -0.00282243 0) (1.02831 -0.00281892 0) (1.02836 -0.00281528 0) (1.02841 -0.00281152 0) (1.02846 -0.00280763 0) (1.02852 -0.00280362 0) (1.02857 -0.00279949 0) (1.02862 -0.00279525 0) (1.02867 -0.00279089 0) (1.02872 -0.00278641 0) (1.02877 -0.00278181 0) (1.02882 -0.00277709 0) (1.02887 -0.00277224 0) (1.02892 -0.00276724 0) (1.02897 -0.00276209 0) (1.02903 -0.00275678 0) (1.02908 -0.00275127 0) (1.02913 -0.00274555 0) (1.02918 -0.0027396 0) (1.02923 -0.00273339 0) (1.02929 -0.0027269 0) (1.02934 -0.00272009 0) (1.02939 -0.00271294 0) (1.02945 -0.00270543 0) (1.0295 -0.00269752 0) (1.02955 -0.00268919 0) (1.02961 -0.00268042 0) (1.02966 -0.00267118 0) (1.02972 -0.00266145 0) (1.02978 -0.00265123 0) (1.02983 -0.0026405 0) (1.02989 -0.00262925 0) (1.02995 -0.00261747 0) (1.03001 -0.00260518 0) (1.03007 -0.00259238 0) (1.03013 -0.00257909 0) (1.03019 -0.00256531 0) (1.03025 -0.00255109 0) (1.03032 -0.00253644 0) (1.03038 -0.00252141 0) (1.03045 -0.00250603 0) (1.03051 -0.00249036 0) (1.03058 -0.00247446 0) (1.03065 -0.00245838 0) (1.03072 -0.0024422 0) (1.03079 -0.00242598 0) (1.03087 -0.0024098 0) (1.03094 -0.00239373 0) (1.03101 -0.00237785 0) (1.03109 -0.00236223 0) (1.03117 -0.00234694 0) (1.03125 -0.00233201 0) (1.03133 -0.00231753 0) (1.03141 -0.00230348 0) (1.03149 -0.00228997 0) (1.03157 -0.00227686 0) (1.03166 -0.00226437 0) (1.03174 -0.00225216 0) (1.03183 -0.00224071 0) (1.03192 -0.00222923 0) (1.032 -0.00221882 0) (1.0321 -0.00220772 0) (1.03218 -0.00219852 0) (1.03229 -0.00218715 0) (1.03236 -0.00217966 0) (1.03249 -0.00216672 0) (1.03253 -0.00216238 0) (1.03271 -0.00214509 0) (1.02725 -0.00303641 0) (1.02729 -0.00302686 0) (1.02734 -0.00301749 0) (1.02738 -0.00300832 0) (1.02743 -0.00299939 0) (1.02748 -0.00299073 0) (1.02753 -0.00298237 0) (1.02757 -0.00297432 0) (1.02762 -0.00296662 0) (1.02767 -0.00295928 0) (1.02772 -0.00295231 0) (1.02777 -0.00294571 0) (1.02782 -0.0029395 0) (1.02787 -0.00293366 0) (1.02792 -0.00292819 0) (1.02796 -0.00292307 0) (1.02801 -0.00291829 0) (1.02806 -0.00291381 0) (1.02811 -0.00290962 0) (1.02816 -0.00290567 0) (1.02821 -0.00290195 0) (1.02826 -0.0028984 0) (1.02831 -0.002895 0) (1.02836 -0.00289171 0) (1.02841 -0.00288849 0) (1.02846 -0.0028853 0) (1.02851 -0.00288213 0) (1.02856 -0.00287893 0) (1.02861 -0.00287568 0) (1.02866 -0.00287236 0) (1.02871 -0.00286896 0) (1.02876 -0.00286546 0) (1.02881 -0.00286184 0) (1.02886 -0.00285811 0) (1.02891 -0.00285426 0) (1.02897 -0.00285029 0) (1.02902 -0.00284619 0) (1.02907 -0.00284198 0) (1.02912 -0.00283765 0) (1.02917 -0.00283321 0) (1.02922 -0.00282865 0) (1.02927 -0.00282399 0) (1.02932 -0.00281921 0) (1.02937 -0.00281431 0) (1.02942 -0.00280928 0) (1.02948 -0.00280412 0) (1.02953 -0.00279882 0) (1.02958 -0.00279335 0) (1.02963 -0.00278771 0) (1.02968 -0.00278187 0) (1.02974 -0.00277581 0) (1.02979 -0.0027695 0) (1.02984 -0.00276293 0) (1.02989 -0.00275606 0) (1.02995 -0.00274887 0) (1.03 -0.00274133 0) (1.03006 -0.00273343 0) (1.03011 -0.00272512 0) (1.03017 -0.00271639 0) (1.03022 -0.00270723 0) (1.03028 -0.0026976 0) (1.03033 -0.00268751 0) (1.03039 -0.00267692 0) (1.03045 -0.00266585 0) (1.03051 -0.00265428 0) (1.03057 -0.00264222 0) (1.03063 -0.00262968 0) (1.03069 -0.00261666 0) (1.03075 -0.00260319 0) (1.03081 -0.00258928 0) (1.03087 -0.00257497 0) (1.03094 -0.0025603 0) (1.031 -0.0025453 0) (1.03107 -0.00253001 0) (1.03114 -0.0025145 0) (1.03121 -0.00249882 0) (1.03128 -0.00248304 0) (1.03135 -0.00246721 0) (1.03142 -0.00245143 0) (1.0315 -0.00243575 0) (1.03157 -0.00242024 0) (1.03165 -0.00240498 0) (1.03173 -0.00239004 0) (1.03181 -0.00237545 0) (1.03188 -0.00236129 0) (1.03197 -0.00234755 0) (1.03205 -0.00233433 0) (1.03213 -0.0023215 0) (1.03221 -0.00230928 0) (1.0323 -0.00229735 0) (1.03239 -0.00228615 0) (1.03248 -0.00227495 0) (1.03256 -0.0022648 0) (1.03266 -0.00225402 0) (1.03274 -0.00224506 0) (1.03285 -0.00223409 0) (1.03292 -0.00222682 0) (1.03305 -0.00221444 0) (1.03309 -0.00221023 0) (1.03327 -0.0021938 0) (1.02781 -0.00308002 0) (1.02786 -0.00307051 0) (1.02791 -0.00306117 0) (1.02795 -0.00305201 0) (1.028 -0.00304308 0) (1.02805 -0.0030344 0) (1.0281 -0.003026 0) (1.02814 -0.0030179 0) (1.02819 -0.00301013 0) (1.02824 -0.00300269 0) (1.02829 -0.0029956 0) (1.02834 -0.00298887 0) (1.02839 -0.00298251 0) (1.02844 -0.0029765 0) (1.02849 -0.00297084 0) (1.02854 -0.00296553 0) (1.02859 -0.00296053 0) (1.02864 -0.00295583 0) (1.02869 -0.00295141 0) (1.02874 -0.00294722 0) (1.02879 -0.00294325 0) (1.02884 -0.00293946 0) (1.02889 -0.0029358 0) (1.02894 -0.00293226 0) (1.02899 -0.00292879 0) (1.02904 -0.00292535 0) (1.02909 -0.00292193 0) (1.02914 -0.00291849 0) (1.02919 -0.00291501 0) (1.02924 -0.00291146 0) (1.02929 -0.00290782 0) (1.02934 -0.0029041 0) (1.02939 -0.00290026 0) (1.02944 -0.00289632 0) (1.02949 -0.00289225 0) (1.02954 -0.00288808 0) (1.02959 -0.00288378 0) (1.02964 -0.00287937 0) (1.0297 -0.00287484 0) (1.02975 -0.00287021 0) (1.0298 -0.00286547 0) (1.02985 -0.00286062 0) (1.0299 -0.00285566 0) (1.02995 -0.00285058 0) (1.03 -0.00284539 0) (1.03006 -0.00284007 0) (1.03011 -0.00283461 0) (1.03016 -0.002829 0) (1.03021 -0.00282322 0) (1.03026 -0.00281726 0) (1.03032 -0.00281108 0) (1.03037 -0.00280468 0) (1.03042 -0.00279803 0) (1.03048 -0.0027911 0) (1.03053 -0.00278386 0) (1.03058 -0.0027763 0) (1.03064 -0.00276839 0) (1.03069 -0.0027601 0) (1.03075 -0.00275142 0) (1.0308 -0.00274232 0) (1.03086 -0.00273279 0) (1.03092 -0.00272281 0) (1.03097 -0.00271237 0) (1.03103 -0.00270146 0) (1.03109 -0.00269009 0) (1.03115 -0.00267825 0) (1.03121 -0.00266594 0) (1.03127 -0.00265319 0) (1.03133 -0.00264001 0) (1.0314 -0.00262641 0) (1.03146 -0.00261243 0) (1.03152 -0.0025981 0) (1.03159 -0.00258346 0) (1.03166 -0.00256854 0) (1.03173 -0.00255341 0) (1.03179 -0.00253812 0) (1.03186 -0.00252272 0) (1.03194 -0.00250728 0) (1.03201 -0.00249188 0) (1.03208 -0.00247657 0) (1.03216 -0.00246144 0) (1.03224 -0.00244653 0) (1.03231 -0.00243193 0) (1.03239 -0.00241766 0) (1.03247 -0.00240381 0) (1.03255 -0.00239036 0) (1.03263 -0.00237742 0) (1.03272 -0.00236487 0) (1.0328 -0.00235291 0) (1.03289 -0.00234124 0) (1.03297 -0.00233029 0) (1.03306 -0.00231936 0) (1.03315 -0.00230945 0) (1.03325 -0.00229897 0) (1.03333 -0.00229024 0) (1.03343 -0.00227966 0) (1.0335 -0.00227259 0) (1.03364 -0.00226075 0) (1.03368 -0.00225665 0) (1.03386 -0.00224105 0) (1.02841 -0.00312246 0) (1.02846 -0.003113 0) (1.0285 -0.00310369 0) (1.02855 -0.00309456 0) (1.0286 -0.00308563 0) (1.02865 -0.00307694 0) (1.02869 -0.0030685 0) (1.02874 -0.00306035 0) (1.02879 -0.0030525 0) (1.02884 -0.00304498 0) (1.02889 -0.00303778 0) (1.02894 -0.00303093 0) (1.02899 -0.00302442 0) (1.02904 -0.00301825 0) (1.02909 -0.00301242 0) (1.02914 -0.00300691 0) (1.02919 -0.00300171 0) (1.02924 -0.0029968 0) (1.02929 -0.00299215 0) (1.02934 -0.00298773 0) (1.02939 -0.00298352 0) (1.02944 -0.00297949 0) (1.02949 -0.00297559 0) (1.02954 -0.0029718 0) (1.02959 -0.00296809 0) (1.02964 -0.00296441 0) (1.02969 -0.00296075 0) (1.02974 -0.00295707 0) (1.02979 -0.00295336 0) (1.02984 -0.00294958 0) (1.02989 -0.00294572 0) (1.02994 -0.00294178 0) (1.02999 -0.00293773 0) (1.03005 -0.00293358 0) (1.0301 -0.00292931 0) (1.03015 -0.00292493 0) (1.0302 -0.00292044 0) (1.03025 -0.00291583 0) (1.0303 -0.00291112 0) (1.03035 -0.0029063 0) (1.0304 -0.00290137 0) (1.03046 -0.00289634 0) (1.03051 -0.0028912 0) (1.03056 -0.00288596 0) (1.03061 -0.0028806 0) (1.03066 -0.00287512 0) (1.03072 -0.00286951 0) (1.03077 -0.00286376 0) (1.03082 -0.00285785 0) (1.03087 -0.00285176 0) (1.03093 -0.00284548 0) (1.03098 -0.00283898 0) (1.03103 -0.00283224 0) (1.03109 -0.00282524 0) (1.03114 -0.00281796 0) (1.0312 -0.00281038 0) (1.03125 -0.00280246 0) (1.0313 -0.00279419 0) (1.03136 -0.00278554 0) (1.03142 -0.0027765 0) (1.03147 -0.00276705 0) (1.03153 -0.00275718 0) (1.03159 -0.00274687 0) (1.03164 -0.00273613 0) (1.0317 -0.00272493 0) (1.03176 -0.0027133 0) (1.03182 -0.00270123 0) (1.03188 -0.00268873 0) (1.03195 -0.00267582 0) (1.03201 -0.00266252 0) (1.03207 -0.00264886 0) (1.03214 -0.00263486 0) (1.0322 -0.00262056 0) (1.03227 -0.002606 0) (1.03234 -0.00259124 0) (1.03241 -0.00257632 0) (1.03248 -0.00256129 0) (1.03255 -0.00254623 0) (1.03263 -0.0025312 0) (1.0327 -0.00251626 0) (1.03277 -0.00250147 0) (1.03285 -0.00248691 0) (1.03293 -0.00247263 0) (1.03301 -0.00245868 0) (1.03309 -0.00244514 0) (1.03317 -0.00243197 0) (1.03325 -0.0024193 0) (1.03334 -0.00240702 0) (1.03342 -0.00239531 0) (1.03351 -0.00238389 0) (1.03359 -0.00237318 0) (1.03368 -0.00236251 0) (1.03377 -0.00235282 0) (1.03386 -0.00234264 0) (1.03394 -0.00233413 0) (1.03405 -0.00232391 0) (1.03412 -0.00231703 0) (1.03425 -0.0023057 0) (1.03429 -0.00230172 0) (1.03448 -0.0022869 0) (1.02904 -0.0031638 0) (1.02909 -0.00315439 0) (1.02913 -0.00314511 0) (1.02918 -0.003136 0) (1.02923 -0.00312708 0) (1.02927 -0.00311837 0) (1.02932 -0.00310991 0) (1.02937 -0.00310172 0) (1.02942 -0.0030938 0) (1.02947 -0.00308619 0) (1.02952 -0.0030789 0) (1.02957 -0.00307193 0) (1.02962 -0.00306528 0) (1.02967 -0.00305896 0) (1.02972 -0.00305296 0) (1.02977 -0.00304727 0) (1.02982 -0.00304187 0) (1.02987 -0.00303676 0) (1.02992 -0.00303189 0) (1.02997 -0.00302725 0) (1.03002 -0.00302281 0) (1.03007 -0.00301854 0) (1.03012 -0.00301441 0) (1.03017 -0.00301039 0) (1.03022 -0.00300643 0) (1.03027 -0.00300252 0) (1.03032 -0.00299863 0) (1.03038 -0.00299472 0) (1.03043 -0.00299078 0) (1.03048 -0.00298678 0) (1.03053 -0.00298271 0) (1.03058 -0.00297855 0) (1.03063 -0.0029743 0) (1.03068 -0.00296994 0) (1.03073 -0.00296547 0) (1.03078 -0.0029609 0) (1.03084 -0.00295621 0) (1.03089 -0.00295142 0) (1.03094 -0.00294652 0) (1.03099 -0.00294151 0) (1.03104 -0.00293641 0) (1.03109 -0.0029312 0) (1.03115 -0.00292589 0) (1.0312 -0.00292048 0) (1.03125 -0.00291496 0) (1.0313 -0.00290933 0) (1.03136 -0.00290357 0) (1.03141 -0.00289767 0) (1.03146 -0.00289163 0) (1.03152 -0.00288542 0) (1.03157 -0.00287903 0) (1.03162 -0.00287243 0) (1.03168 -0.00286561 0) (1.03173 -0.00285855 0) (1.03178 -0.00285122 0) (1.03184 -0.0028436 0) (1.03189 -0.00283567 0) (1.03195 -0.00282741 0) (1.032 -0.00281879 0) (1.03206 -0.00280981 0) (1.03212 -0.00280044 0) (1.03217 -0.00279066 0) (1.03223 -0.00278048 0) (1.03229 -0.00276989 0) (1.03235 -0.00275887 0) (1.03241 -0.00274743 0) (1.03247 -0.00273558 0) (1.03253 -0.00272333 0) (1.03259 -0.00271068 0) (1.03266 -0.00269766 0) (1.03272 -0.0026843 0) (1.03279 -0.00267062 0) (1.03285 -0.00265665 0) (1.03292 -0.00264244 0) (1.03299 -0.00262803 0) (1.03306 -0.00261347 0) (1.03313 -0.00259881 0) (1.0332 -0.00258411 0) (1.03327 -0.00256943 0) (1.03335 -0.00255484 0) (1.03342 -0.00254041 0) (1.0335 -0.00252618 0) (1.03358 -0.00251222 0) (1.03366 -0.00249858 0) (1.03374 -0.00248532 0) (1.03382 -0.00247244 0) (1.0339 -0.00246003 0) (1.03399 -0.002448 0) (1.03407 -0.00243653 0) (1.03416 -0.00242536 0) (1.03424 -0.00241487 0) (1.03433 -0.00240445 0) (1.03442 -0.00239498 0) (1.03451 -0.00238508 0) (1.0346 -0.00237677 0) (1.0347 -0.00236691 0) (1.03477 -0.00236021 0) (1.03491 -0.00234937 0) (1.03495 -0.00234548 0) (1.03513 -0.00233142 0) (1.0297 -0.00320407 0) (1.02974 -0.00319471 0) (1.02979 -0.00318547 0) (1.02984 -0.00317638 0) (1.02989 -0.00316747 0) (1.02994 -0.00315876 0) (1.02998 -0.00315028 0) (1.03003 -0.00314204 0) (1.03008 -0.00313407 0) (1.03013 -0.00312639 0) (1.03018 -0.003119 0) (1.03023 -0.00311192 0) (1.03028 -0.00310514 0) (1.03033 -0.00309868 0) (1.03038 -0.00309252 0) (1.03043 -0.00308665 0) (1.03048 -0.00308107 0) (1.03053 -0.00307575 0) (1.03058 -0.00307068 0) (1.03063 -0.00306583 0) (1.03068 -0.00306117 0) (1.03074 -0.00305667 0) (1.03079 -0.00305231 0) (1.03084 -0.00304806 0) (1.03089 -0.00304387 0) (1.03094 -0.00303974 0) (1.03099 -0.00303561 0) (1.03104 -0.00303148 0) (1.03109 -0.00302732 0) (1.03114 -0.00302311 0) (1.0312 -0.00301882 0) (1.03125 -0.00301446 0) (1.0313 -0.00301 0) (1.03135 -0.00300545 0) (1.0314 -0.00300078 0) (1.03145 -0.00299602 0) (1.03151 -0.00299114 0) (1.03156 -0.00298617 0) (1.03161 -0.00298109 0) (1.03166 -0.0029759 0) (1.03171 -0.00297062 0) (1.03177 -0.00296525 0) (1.03182 -0.00295977 0) (1.03187 -0.00295419 0) (1.03192 -0.00294852 0) (1.03198 -0.00294273 0) (1.03203 -0.00293682 0) (1.03208 -0.00293079 0) (1.03214 -0.00292461 0) (1.03219 -0.00291828 0) (1.03224 -0.00291178 0) (1.0323 -0.00290509 0) (1.03235 -0.00289819 0) (1.03241 -0.00289105 0) (1.03246 -0.00288367 0) (1.03251 -0.00287602 0) (1.03257 -0.00286807 0) (1.03263 -0.00285981 0) (1.03268 -0.00285123 0) (1.03274 -0.00284229 0) (1.03279 -0.00283299 0) (1.03285 -0.00282331 0) (1.03291 -0.00281324 0) (1.03297 -0.00280279 0) (1.03303 -0.00279193 0) (1.03309 -0.00278068 0) (1.03315 -0.00276904 0) (1.03321 -0.00275702 0) (1.03327 -0.00274462 0) (1.03334 -0.00273188 0) (1.0334 -0.0027188 0) (1.03347 -0.00270543 0) (1.03353 -0.00269178 0) (1.0336 -0.0026779 0) (1.03367 -0.00266383 0) (1.03374 -0.00264962 0) (1.03381 -0.00263531 0) (1.03388 -0.00262096 0) (1.03396 -0.00260664 0) (1.03403 -0.00259239 0) (1.03411 -0.00257829 0) (1.03418 -0.00256438 0) (1.03426 -0.00255073 0) (1.03434 -0.00253739 0) (1.03442 -0.00252441 0) (1.0345 -0.0025118 0) (1.03459 -0.00249965 0) (1.03467 -0.00248787 0) (1.03475 -0.00247663 0) (1.03484 -0.0024657 0) (1.03493 -0.00245542 0) (1.03502 -0.00244525 0) (1.0351 -0.00243598 0) (1.0352 -0.00242635 0) (1.03528 -0.00241824 0) (1.03539 -0.0024087 0) (1.03546 -0.00240217 0) (1.03559 -0.0023918 0) (1.03563 -0.002388 0) (1.03582 -0.00237467 0) (1.03039 -0.00324333 0) (1.03044 -0.00323402 0) (1.03049 -0.00322482 0) (1.03053 -0.00321576 0) (1.03058 -0.00320687 0) (1.03063 -0.00319816 0) (1.03068 -0.00318965 0) (1.03073 -0.00318138 0) (1.03078 -0.00317336 0) (1.03083 -0.00316561 0) (1.03088 -0.00315813 0) (1.03093 -0.00315095 0) (1.03098 -0.00314405 0) (1.03103 -0.00313745 0) (1.03108 -0.00313113 0) (1.03113 -0.0031251 0) (1.03118 -0.00311934 0) (1.03123 -0.00311384 0) (1.03128 -0.00310857 0) (1.03133 -0.00310351 0) (1.03138 -0.00309863 0) (1.03144 -0.00309392 0) (1.03149 -0.00308934 0) (1.03154 -0.00308486 0) (1.03159 -0.00308045 0) (1.03164 -0.00307609 0) (1.03169 -0.00307175 0) (1.03175 -0.00306741 0) (1.0318 -0.00306303 0) (1.03185 -0.00305861 0) (1.0319 -0.00305412 0) (1.03195 -0.00304955 0) (1.032 -0.00304489 0) (1.03206 -0.00304014 0) (1.03211 -0.00303529 0) (1.03216 -0.00303034 0) (1.03221 -0.00302528 0) (1.03227 -0.00302013 0) (1.03232 -0.00301487 0) (1.03237 -0.00300951 0) (1.03242 -0.00300406 0) (1.03248 -0.00299852 0) (1.03253 -0.00299288 0) (1.03258 -0.00298714 0) (1.03263 -0.00298131 0) (1.03269 -0.00297537 0) (1.03274 -0.00296932 0) (1.03279 -0.00296314 0) (1.03285 -0.00295684 0) (1.0329 -0.00295039 0) (1.03296 -0.00294378 0) (1.03301 -0.00293699 0) (1.03306 -0.00293 0) (1.03312 -0.0029228 0) (1.03317 -0.00291537 0) (1.03323 -0.00290767 0) (1.03328 -0.00289971 0) (1.03334 -0.00289145 0) (1.0334 -0.00288288 0) (1.03345 -0.00287399 0) (1.03351 -0.00286475 0) (1.03357 -0.00285515 0) (1.03363 -0.0028452 0) (1.03369 -0.00283487 0) (1.03375 -0.00282417 0) (1.03381 -0.0028131 0) (1.03387 -0.00280165 0) (1.03393 -0.00278985 0) (1.03399 -0.0027777 0) (1.03406 -0.00276521 0) (1.03412 -0.00275241 0) (1.03419 -0.00273933 0) (1.03425 -0.00272599 0) (1.03432 -0.00271243 0) (1.03439 -0.00269869 0) (1.03446 -0.00268481 0) (1.03453 -0.00267084 0) (1.0346 -0.00265684 0) (1.03468 -0.00264285 0) (1.03475 -0.00262894 0) (1.03483 -0.00261516 0) (1.03491 -0.00260157 0) (1.03498 -0.00258823 0) (1.03506 -0.00257517 0) (1.03515 -0.00256247 0) (1.03523 -0.00255012 0) (1.03531 -0.00253822 0) (1.03539 -0.00252668 0) (1.03548 -0.00251567 0) (1.03557 -0.00250496 0) (1.03565 -0.00249489 0) (1.03574 -0.00248495 0) (1.03583 -0.00247588 0) (1.03593 -0.0024665 0) (1.03601 -0.00245857 0) (1.03612 -0.00244936 0) (1.03619 -0.00244299 0) (1.03632 -0.00243306 0) (1.03636 -0.00242935 0) (1.03654 -0.00241671 0) (1.03113 -0.00328163 0) (1.03117 -0.00327237 0) (1.03122 -0.00326322 0) (1.03127 -0.00325419 0) (1.03132 -0.00324531 0) (1.03136 -0.0032366 0) (1.03141 -0.00322808 0) (1.03146 -0.00321979 0) (1.03151 -0.00321172 0) (1.03156 -0.0032039 0) (1.03161 -0.00319635 0) (1.03166 -0.00318906 0) (1.03171 -0.00318205 0) (1.03176 -0.00317532 0) (1.03182 -0.00316887 0) (1.03187 -0.00316268 0) (1.03192 -0.00315675 0) (1.03197 -0.00315106 0) (1.03202 -0.0031456 0) (1.03207 -0.00314034 0) (1.03212 -0.00313526 0) (1.03218 -0.00313034 0) (1.03223 -0.00312554 0) (1.03228 -0.00312085 0) (1.03233 -0.00311623 0) (1.03238 -0.00311165 0) (1.03244 -0.00310709 0) (1.03249 -0.00310254 0) (1.03254 -0.00309795 0) (1.03259 -0.00309332 0) (1.03264 -0.00308863 0) (1.0327 -0.00308387 0) (1.03275 -0.00307902 0) (1.0328 -0.00307408 0) (1.03285 -0.00306904 0) (1.03291 -0.00306391 0) (1.03296 -0.00305867 0) (1.03301 -0.00305334 0) (1.03307 -0.00304791 0) (1.03312 -0.00304239 0) (1.03317 -0.00303677 0) (1.03322 -0.00303106 0) (1.03328 -0.00302526 0) (1.03333 -0.00301936 0) (1.03338 -0.00301338 0) (1.03344 -0.00300729 0) (1.03349 -0.0030011 0) (1.03355 -0.00299479 0) (1.0336 -0.00298836 0) (1.03365 -0.00298179 0) (1.03371 -0.00297507 0) (1.03376 -0.00296818 0) (1.03382 -0.00296111 0) (1.03387 -0.00295384 0) (1.03393 -0.00294635 0) (1.03398 -0.00293861 0) (1.03404 -0.00293063 0) (1.0341 -0.00292236 0) (1.03415 -0.00291381 0) (1.03421 -0.00290495 0) (1.03427 -0.00289577 0) (1.03433 -0.00288625 0) (1.03439 -0.00287639 0) (1.03444 -0.00286619 0) (1.0345 -0.00285563 0) (1.03457 -0.00284472 0) (1.03463 -0.00283347 0) (1.03469 -0.00282187 0) (1.03475 -0.00280995 0) (1.03482 -0.00279771 0) (1.03488 -0.00278518 0) (1.03495 -0.00277238 0) (1.03501 -0.00275934 0) (1.03508 -0.00274608 0) (1.03515 -0.00273266 0) (1.03522 -0.0027191 0) (1.03529 -0.00270546 0) (1.03537 -0.00269179 0) (1.03544 -0.00267813 0) (1.03552 -0.00266454 0) (1.03559 -0.00265108 0) (1.03567 -0.00263779 0) (1.03575 -0.00262475 0) (1.03583 -0.00261198 0) (1.03591 -0.00259955 0) (1.03599 -0.00258746 0) (1.03608 -0.00257579 0) (1.03616 -0.00256449 0) (1.03625 -0.00255369 0) (1.03633 -0.00254321 0) (1.03642 -0.00253334 0) (1.03651 -0.00252361 0) (1.0366 -0.00251473 0) (1.0367 -0.0025056 0) (1.03678 -0.00249785 0) (1.03689 -0.00248894 0) (1.03696 -0.00248272 0) (1.03709 -0.00247321 0) (1.03713 -0.00246958 0) (1.03732 -0.0024576 0) (1.0319 -0.00331901 0) (1.03195 -0.00330981 0) (1.03199 -0.0033007 0) (1.03204 -0.0032917 0) (1.03209 -0.00328284 0) (1.03214 -0.00327414 0) (1.03219 -0.00326562 0) (1.03224 -0.0032573 0) (1.03229 -0.00324919 0) (1.03234 -0.00324132 0) (1.03239 -0.00323369 0) (1.03244 -0.00322632 0) (1.03249 -0.0032192 0) (1.03254 -0.00321235 0) (1.03259 -0.00320576 0) (1.03265 -0.00319942 0) (1.0327 -0.00319333 0) (1.03275 -0.00318747 0) (1.0328 -0.00318182 0) (1.03285 -0.00317637 0) (1.03291 -0.0031711 0) (1.03296 -0.00316597 0) (1.03301 -0.00316097 0) (1.03306 -0.00315607 0) (1.03312 -0.00315124 0) (1.03317 -0.00314645 0) (1.03322 -0.00314169 0) (1.03327 -0.00313692 0) (1.03333 -0.00313214 0) (1.03338 -0.00312731 0) (1.03343 -0.00312242 0) (1.03348 -0.00311747 0) (1.03354 -0.00311243 0) (1.03359 -0.00310731 0) (1.03364 -0.00310209 0) (1.0337 -0.00309678 0) (1.03375 -0.00309137 0) (1.0338 -0.00308586 0) (1.03386 -0.00308026 0) (1.03391 -0.00307457 0) (1.03396 -0.00306879 0) (1.03402 -0.00306292 0) (1.03407 -0.00305696 0) (1.03412 -0.00305091 0) (1.03418 -0.00304478 0) (1.03423 -0.00303854 0) (1.03429 -0.00303221 0) (1.03434 -0.00302577 0) (1.0344 -0.00301921 0) (1.03445 -0.00301253 0) (1.03451 -0.0030057 0) (1.03456 -0.00299871 0) (1.03462 -0.00299156 0) (1.03467 -0.00298421 0) (1.03473 -0.00297666 0) (1.03478 -0.00296888 0) (1.03484 -0.00296087 0) (1.0349 -0.0029526 0) (1.03495 -0.00294405 0) (1.03501 -0.00293522 0) (1.03507 -0.00292609 0) (1.03513 -0.00291664 0) (1.03519 -0.00290688 0) (1.03525 -0.00289679 0) (1.03531 -0.00288636 0) (1.03537 -0.00287561 0) (1.03543 -0.00286453 0) (1.03549 -0.00285314 0) (1.03556 -0.00284143 0) (1.03562 -0.00282943 0) (1.03569 -0.00281715 0) (1.03575 -0.00280462 0) (1.03582 -0.00279186 0) (1.03589 -0.0027789 0) (1.03596 -0.00276578 0) (1.03603 -0.00275254 0) (1.0361 -0.00273922 0) (1.03618 -0.00272586 0) (1.03625 -0.00271252 0) (1.03633 -0.00269924 0) (1.0364 -0.00268609 0) (1.03648 -0.00267311 0) (1.03656 -0.00266035 0) (1.03664 -0.00264786 0) (1.03672 -0.00263569 0) (1.03681 -0.00262385 0) (1.03689 -0.00261242 0) (1.03697 -0.00260135 0) (1.03706 -0.00259076 0) (1.03715 -0.00258049 0) (1.03724 -0.00257081 0) (1.03733 -0.0025613 0) (1.03741 -0.0025526 0) (1.03751 -0.00254371 0) (1.03759 -0.00253612 0) (1.0377 -0.0025275 0) (1.03778 -0.00252142 0) (1.03791 -0.00251232 0) (1.03795 -0.00250875 0) (1.03813 -0.00249741 0) (1.03272 -0.00335552 0) (1.03277 -0.00334638 0) (1.03281 -0.00333732 0) (1.03286 -0.00332836 0) (1.03291 -0.00331953 0) (1.03296 -0.00331084 0) (1.03301 -0.00330231 0) (1.03306 -0.00329397 0) (1.03311 -0.00328583 0) (1.03316 -0.00327791 0) (1.03321 -0.00327022 0) (1.03326 -0.00326276 0) (1.03332 -0.00325555 0) (1.03337 -0.00324859 0) (1.03342 -0.00324187 0) (1.03347 -0.00323539 0) (1.03352 -0.00322914 0) (1.03358 -0.00322312 0) (1.03363 -0.0032173 0) (1.03368 -0.00321167 0) (1.03373 -0.0032062 0) (1.03379 -0.00320088 0) (1.03384 -0.00319568 0) (1.03389 -0.00319057 0) (1.03395 -0.00318554 0) (1.034 -0.00318055 0) (1.03405 -0.00317558 0) (1.0341 -0.00317062 0) (1.03416 -0.00316563 0) (1.03421 -0.00316061 0) (1.03426 -0.00315553 0) (1.03432 -0.00315039 0) (1.03437 -0.00314517 0) (1.03442 -0.00313987 0) (1.03448 -0.00313447 0) (1.03453 -0.00312898 0) (1.03459 -0.0031234 0) (1.03464 -0.00311773 0) (1.03469 -0.00311197 0) (1.03475 -0.00310611 0) (1.0348 -0.00310017 0) (1.03486 -0.00309415 0) (1.03491 -0.00308803 0) (1.03497 -0.00308184 0) (1.03502 -0.00307555 0) (1.03507 -0.00306918 0) (1.03513 -0.00306271 0) (1.03518 -0.00305614 0) (1.03524 -0.00304945 0) (1.03529 -0.00304265 0) (1.03535 -0.00303571 0) (1.03541 -0.00302863 0) (1.03546 -0.00302139 0) (1.03552 -0.00301397 0) (1.03557 -0.00300635 0) (1.03563 -0.00299853 0) (1.03569 -0.00299049 0) (1.03575 -0.0029822 0) (1.0358 -0.00297366 0) (1.03586 -0.00296485 0) (1.03592 -0.00295576 0) (1.03598 -0.00294638 0) (1.03604 -0.0029367 0) (1.0361 -0.00292671 0) (1.03616 -0.00291641 0) (1.03622 -0.00290581 0) (1.03629 -0.0028949 0) (1.03635 -0.00288369 0) (1.03641 -0.00287218 0) (1.03648 -0.00286041 0) (1.03654 -0.00284837 0) (1.03661 -0.0028361 0) (1.03668 -0.00282361 0) (1.03675 -0.00281093 0) (1.03682 -0.00279811 0) (1.03689 -0.00278517 0) (1.03696 -0.00277215 0) (1.03704 -0.00275911 0) (1.03711 -0.00274608 0) (1.03719 -0.00273311 0) (1.03726 -0.00272025 0) (1.03734 -0.00270756 0) (1.03742 -0.00269509 0) (1.0375 -0.00268287 0) (1.03758 -0.00267095 0) (1.03767 -0.00265936 0) (1.03775 -0.00264816 0) (1.03784 -0.00263731 0) (1.03792 -0.00262693 0) (1.03801 -0.00261687 0) (1.0381 -0.00260737 0) (1.03819 -0.00259807 0) (1.03828 -0.00258954 0) (1.03838 -0.00258087 0) (1.03846 -0.00257344 0) (1.03857 -0.00256511 0) (1.03864 -0.00255915 0) (1.03878 -0.00255043 0) (1.03882 -0.00254693 0) (1.039 -0.00253619 0) (1.03359 -0.00339123 0) (1.03363 -0.00338214 0) (1.03368 -0.00337313 0) (1.03373 -0.00336421 0) (1.03378 -0.00335541 0) (1.03383 -0.00334673 0) (1.03388 -0.00333821 0) (1.03393 -0.00332986 0) (1.03398 -0.0033217 0) (1.03403 -0.00331373 0) (1.03409 -0.00330598 0) (1.03414 -0.00329845 0) (1.03419 -0.00329115 0) (1.03424 -0.00328408 0) (1.03429 -0.00327724 0) (1.03435 -0.00327063 0) (1.0344 -0.00326424 0) (1.03445 -0.00325806 0) (1.03451 -0.00325207 0) (1.03456 -0.00324626 0) (1.03461 -0.00324062 0) (1.03467 -0.00323511 0) (1.03472 -0.00322971 0) (1.03477 -0.00322441 0) (1.03483 -0.00321918 0) (1.03488 -0.003214 0) (1.03493 -0.00320883 0) (1.03499 -0.00320367 0) (1.03504 -0.0031985 0) (1.03509 -0.00319328 0) (1.03515 -0.00318802 0) (1.0352 -0.00318269 0) (1.03526 -0.00317729 0) (1.03531 -0.00317181 0) (1.03536 -0.00316624 0) (1.03542 -0.00316059 0) (1.03547 -0.00315484 0) (1.03553 -0.003149 0) (1.03558 -0.00314308 0) (1.03564 -0.00313707 0) (1.03569 -0.00313097 0) (1.03575 -0.00312479 0) (1.0358 -0.00311853 0) (1.03586 -0.00311218 0) (1.03591 -0.00310575 0) (1.03597 -0.00309924 0) (1.03602 -0.00309263 0) (1.03608 -0.00308593 0) (1.03614 -0.00307913 0) (1.03619 -0.00307221 0) (1.03625 -0.00306516 0) (1.0363 -0.00305798 0) (1.03636 -0.00305065 0) (1.03642 -0.00304315 0) (1.03647 -0.00303548 0) (1.03653 -0.00302761 0) (1.03659 -0.00301953 0) (1.03665 -0.00301123 0) (1.03671 -0.00300269 0) (1.03677 -0.00299389 0) (1.03682 -0.00298484 0) (1.03688 -0.00297551 0) (1.03694 -0.00296591 0) (1.03701 -0.00295601 0) (1.03707 -0.00294583 0) (1.03713 -0.00293536 0) (1.03719 -0.00292461 0) (1.03726 -0.00291357 0) (1.03732 -0.00290227 0) (1.03739 -0.0028907 0) (1.03745 -0.0028789 0) (1.03752 -0.00286687 0) (1.03759 -0.00285464 0) (1.03766 -0.00284224 0) (1.03773 -0.0028297 0) (1.0378 -0.00281705 0) (1.03787 -0.00280433 0) (1.03795 -0.00279158 0) (1.03802 -0.00277885 0) (1.0381 -0.00276618 0) (1.03818 -0.00275362 0) (1.03826 -0.00274121 0) (1.03834 -0.00272901 0) (1.03842 -0.00271706 0) (1.0385 -0.0027054 0) (1.03859 -0.00269404 0) (1.03867 -0.00268307 0) (1.03876 -0.00267243 0) (1.03884 -0.00266225 0) (1.03893 -0.00265239 0) (1.03902 -0.00264308 0) (1.03912 -0.00263398 0) (1.0392 -0.00262561 0) (1.0393 -0.00261717 0) (1.03939 -0.00260989 0) (1.0395 -0.00260182 0) (1.03957 -0.00259598 0) (1.0397 -0.00258763 0) (1.03975 -0.00258417 0) (1.03993 -0.002574 0) (1.03451 -0.00342617 0) (1.03456 -0.00341715 0) (1.03461 -0.00340819 0) (1.03466 -0.00339932 0) (1.03471 -0.00339054 0) (1.03476 -0.00338189 0) (1.03481 -0.00337337 0) (1.03486 -0.00336502 0) (1.03491 -0.00335683 0) (1.03496 -0.00334883 0) (1.03501 -0.00334103 0) (1.03506 -0.00333343 0) (1.03512 -0.00332605 0) (1.03517 -0.00331888 0) (1.03522 -0.00331193 0) (1.03528 -0.0033052 0) (1.03533 -0.00329867 0) (1.03538 -0.00329234 0) (1.03544 -0.0032862 0) (1.03549 -0.00328022 0) (1.03554 -0.0032744 0) (1.0356 -0.00326871 0) (1.03565 -0.00326313 0) (1.03571 -0.00325764 0) (1.03576 -0.00325222 0) (1.03582 -0.00324684 0) (1.03587 -0.00324149 0) (1.03592 -0.00323614 0) (1.03598 -0.00323078 0) (1.03603 -0.00322538 0) (1.03609 -0.00321993 0) (1.03614 -0.00321442 0) (1.0362 -0.00320885 0) (1.03625 -0.00320319 0) (1.03631 -0.00319746 0) (1.03636 -0.00319164 0) (1.03642 -0.00318573 0) (1.03647 -0.00317973 0) (1.03653 -0.00317364 0) (1.03658 -0.00316748 0) (1.03664 -0.00316123 0) (1.0367 -0.0031549 0) (1.03675 -0.00314849 0) (1.03681 -0.003142 0) (1.03686 -0.00313543 0) (1.03692 -0.00312878 0) (1.03698 -0.00312204 0) (1.03703 -0.00311521 0) (1.03709 -0.00310828 0) (1.03715 -0.00310125 0) (1.0372 -0.0030941 0) (1.03726 -0.00308682 0) (1.03732 -0.0030794 0) (1.03737 -0.00307182 0) (1.03743 -0.00306408 0) (1.03749 -0.00305616 0) (1.03755 -0.00304804 0) (1.03761 -0.00303972 0) (1.03767 -0.00303117 0) (1.03773 -0.00302239 0) (1.03779 -0.00301337 0) (1.03785 -0.00300409 0) (1.03791 -0.00299455 0) (1.03797 -0.00298474 0) (1.03803 -0.00297467 0) (1.03809 -0.00296433 0) (1.03816 -0.00295372 0) (1.03822 -0.00294285 0) (1.03829 -0.00293173 0) (1.03835 -0.00292036 0) (1.03842 -0.00290878 0) (1.03849 -0.00289698 0) (1.03856 -0.002885 0) (1.03863 -0.00287286 0) (1.0387 -0.00286059 0) (1.03877 -0.00284822 0) (1.03885 -0.00283579 0) (1.03892 -0.00282334 0) (1.039 -0.0028109 0) (1.03907 -0.00279851 0) (1.03915 -0.00278624 0) (1.03923 -0.00277411 0) (1.03931 -0.00276218 0) (1.0394 -0.00275048 0) (1.03948 -0.00273907 0) (1.03956 -0.00272795 0) (1.03965 -0.0027172 0) (1.03974 -0.00270678 0) (1.03982 -0.0026968 0) (1.03992 -0.00268713 0) (1.04 -0.002678 0) (1.0401 -0.00266909 0) (1.04019 -0.00266088 0) (1.04029 -0.00265264 0) (1.04037 -0.00264551 0) (1.04048 -0.00263769 0) (1.04056 -0.00263196 0) (1.04069 -0.00262396 0) (1.04073 -0.00262055 0) (1.04092 -0.00261092 0) (1.03549 -0.00346042 0) (1.03554 -0.00345146 0) (1.03559 -0.00344255 0) (1.03564 -0.00343372 0) (1.03569 -0.00342498 0) (1.03574 -0.00341635 0) (1.03579 -0.00340785 0) (1.03584 -0.00339949 0) (1.03589 -0.00339129 0) (1.03595 -0.00338326 0) (1.036 -0.00337541 0) (1.03605 -0.00336776 0) (1.0361 -0.0033603 0) (1.03616 -0.00335305 0) (1.03621 -0.003346 0) (1.03626 -0.00333915 0) (1.03632 -0.00333249 0) (1.03637 -0.00332602 0) (1.03643 -0.00331973 0) (1.03648 -0.00331359 0) (1.03654 -0.0033076 0) (1.03659 -0.00330174 0) (1.03665 -0.00329598 0) (1.0367 -0.00329031 0) (1.03676 -0.00328471 0) (1.03681 -0.00327915 0) (1.03687 -0.00327361 0) (1.03692 -0.00326807 0) (1.03698 -0.00326252 0) (1.03703 -0.00325694 0) (1.03709 -0.00325132 0) (1.03714 -0.00324564 0) (1.0372 -0.00323989 0) (1.03725 -0.00323407 0) (1.03731 -0.00322816 0) (1.03737 -0.00322218 0) (1.03742 -0.00321611 0) (1.03748 -0.00320996 0) (1.03753 -0.00320372 0) (1.03759 -0.0031974 0) (1.03765 -0.003191 0) (1.0377 -0.00318452 0) (1.03776 -0.00317797 0) (1.03782 -0.00317134 0) (1.03787 -0.00316463 0) (1.03793 -0.00315784 0) (1.03799 -0.00315097 0) (1.03805 -0.00314402 0) (1.0381 -0.00313697 0) (1.03816 -0.00312982 0) (1.03822 -0.00312256 0) (1.03828 -0.00311519 0) (1.03833 -0.00310768 0) (1.03839 -0.00310002 0) (1.03845 -0.00309222 0) (1.03851 -0.00308424 0) (1.03857 -0.00307608 0) (1.03863 -0.00306773 0) (1.03869 -0.00305917 0) (1.03875 -0.0030504 0) (1.03881 -0.0030414 0) (1.03887 -0.00303216 0) (1.03893 -0.00302268 0) (1.039 -0.00301295 0) (1.03906 -0.00300298 0) (1.03912 -0.00299275 0) (1.03919 -0.00298228 0) (1.03925 -0.00297156 0) (1.03932 -0.00296062 0) (1.03939 -0.00294944 0) (1.03945 -0.00293806 0) (1.03952 -0.00292649 0) (1.03959 -0.00291475 0) (1.03966 -0.00290286 0) (1.03974 -0.00289085 0) (1.03981 -0.00287875 0) (1.03988 -0.0028666 0) (1.03996 -0.00285442 0) (1.04004 -0.00284227 0) (1.04011 -0.00283017 0) (1.04019 -0.00281817 0) (1.04027 -0.00280631 0) (1.04036 -0.00279465 0) (1.04044 -0.0027832 0) (1.04052 -0.00277203 0) (1.04061 -0.00276115 0) (1.0407 -0.00275061 0) (1.04078 -0.0027404 0) (1.04087 -0.00273061 0) (1.04096 -0.00272113 0) (1.04105 -0.00271218 0) (1.04115 -0.00270345 0) (1.04124 -0.0026954 0) (1.04134 -0.00268735 0) (1.04142 -0.00268037 0) (1.04154 -0.00267278 0) (1.04161 -0.00266718 0) (1.04175 -0.0026595 0) (1.04179 -0.00265613 0) (1.04198 -0.00264699 0) (1.03653 -0.00349401 0) (1.03658 -0.00348511 0) (1.03663 -0.00347627 0) (1.03668 -0.00346748 0) (1.03673 -0.00345878 0) (1.03678 -0.00345018 0) (1.03684 -0.00344169 0) (1.03689 -0.00343334 0) (1.03694 -0.00342513 0) (1.03699 -0.00341708 0) (1.03705 -0.00340919 0) (1.0371 -0.00340149 0) (1.03715 -0.00339396 0) (1.03721 -0.00338663 0) (1.03726 -0.00337949 0) (1.03732 -0.00337253 0) (1.03737 -0.00336575 0) (1.03743 -0.00335915 0) (1.03748 -0.00335272 0) (1.03754 -0.00334643 0) (1.03759 -0.00334028 0) (1.03765 -0.00333425 0) (1.03771 -0.00332833 0) (1.03776 -0.00332248 0) (1.03782 -0.0033167 0) (1.03787 -0.00331096 0) (1.03793 -0.00330524 0) (1.03798 -0.00329952 0) (1.03804 -0.0032938 0) (1.0381 -0.00328804 0) (1.03815 -0.00328224 0) (1.03821 -0.00327639 0) (1.03827 -0.00327047 0) (1.03832 -0.00326448 0) (1.03838 -0.00325842 0) (1.03844 -0.00325227 0) (1.03849 -0.00324605 0) (1.03855 -0.00323974 0) (1.03861 -0.00323335 0) (1.03866 -0.00322688 0) (1.03872 -0.00322033 0) (1.03878 -0.00321371 0) (1.03884 -0.00320702 0) (1.03889 -0.00320025 0) (1.03895 -0.0031934 0) (1.03901 -0.00318648 0) (1.03907 -0.00317949 0) (1.03913 -0.00317241 0) (1.03919 -0.00316524 0) (1.03924 -0.00315798 0) (1.0393 -0.00315062 0) (1.03936 -0.00314314 0) (1.03942 -0.00313554 0) (1.03948 -0.00312781 0) (1.03954 -0.00311993 0) (1.0396 -0.0031119 0) (1.03966 -0.0031037 0) (1.03972 -0.00309531 0) (1.03978 -0.00308674 0) (1.03984 -0.00307797 0) (1.0399 -0.00306898 0) (1.03997 -0.00305978 0) (1.04003 -0.00305035 0) (1.04009 -0.0030407 0) (1.04016 -0.00303081 0) (1.04022 -0.00302069 0) (1.04029 -0.00301034 0) (1.04035 -0.00299977 0) (1.04042 -0.00298899 0) (1.04049 -0.002978 0) (1.04056 -0.00296681 0) (1.04063 -0.00295545 0) (1.0407 -0.00294394 0) (1.04077 -0.00293229 0) (1.04084 -0.00292053 0) (1.04092 -0.00290869 0) (1.04099 -0.0028968 0) (1.04107 -0.0028849 0) (1.04115 -0.00287302 0) (1.04122 -0.00286119 0) (1.0413 -0.00284947 0) (1.04139 -0.00283787 0) (1.04147 -0.00282647 0) (1.04155 -0.00281527 0) (1.04164 -0.00280434 0) (1.04172 -0.00279368 0) (1.04181 -0.00278336 0) (1.0419 -0.00277335 0) (1.04199 -0.00276376 0) (1.04208 -0.00275446 0) (1.04217 -0.00274568 0) (1.04227 -0.00273712 0) (1.04236 -0.00272924 0) (1.04246 -0.00272137 0) (1.04255 -0.00271453 0) (1.04266 -0.00270716 0) (1.04274 -0.00270168 0) (1.04287 -0.00269429 0) (1.04292 -0.00269097 0) (1.04311 -0.00268227 0) (1.03764 -0.00352702 0) (1.03769 -0.00351818 0) (1.03774 -0.00350939 0) (1.03779 -0.00350066 0) (1.03785 -0.003492 0) (1.0379 -0.00348343 0) (1.03795 -0.00347496 0) (1.038 -0.00346662 0) (1.03806 -0.0034584 0) (1.03811 -0.00345033 0) (1.03817 -0.00344242 0) (1.03822 -0.00343467 0) (1.03827 -0.00342709 0) (1.03833 -0.00341969 0) (1.03838 -0.00341246 0) (1.03844 -0.0034054 0) (1.0385 -0.00339851 0) (1.03855 -0.00339179 0) (1.03861 -0.00338522 0) (1.03866 -0.00337879 0) (1.03872 -0.00337249 0) (1.03878 -0.00336631 0) (1.03883 -0.00336022 0) (1.03889 -0.0033542 0) (1.03895 -0.00334825 0) (1.039 -0.00334233 0) (1.03906 -0.00333644 0) (1.03912 -0.00333055 0) (1.03918 -0.00332465 0) (1.03923 -0.00331872 0) (1.03929 -0.00331275 0) (1.03935 -0.00330673 0) (1.03941 -0.00330064 0) (1.03946 -0.00329449 0) (1.03952 -0.00328827 0) (1.03958 -0.00328197 0) (1.03964 -0.00327558 0) (1.03969 -0.00326913 0) (1.03975 -0.00326259 0) (1.03981 -0.00325597 0) (1.03987 -0.00324928 0) (1.03993 -0.00324252 0) (1.03999 -0.00323569 0) (1.04004 -0.00322878 0) (1.0401 -0.0032218 0) (1.04016 -0.00321476 0) (1.04022 -0.00320763 0) (1.04028 -0.00320043 0) (1.04034 -0.00319315 0) (1.0404 -0.00318577 0) (1.04046 -0.0031783 0) (1.04052 -0.00317073 0) (1.04058 -0.00316304 0) (1.04064 -0.00315523 0) (1.0407 -0.00314728 0) (1.04076 -0.00313919 0) (1.04082 -0.00313094 0) (1.04089 -0.00312252 0) (1.04095 -0.00311393 0) (1.04101 -0.00310515 0) (1.04107 -0.00309617 0) (1.04114 -0.003087 0) (1.0412 -0.00307761 0) (1.04126 -0.00306802 0) (1.04133 -0.00305821 0) (1.04139 -0.00304819 0) (1.04146 -0.00303796 0) (1.04153 -0.00302753 0) (1.0416 -0.00301689 0) (1.04167 -0.00300607 0) (1.04173 -0.00299507 0) (1.04181 -0.00298392 0) (1.04188 -0.00297262 0) (1.04195 -0.00296119 0) (1.04202 -0.00294968 0) (1.0421 -0.00293809 0) (1.04217 -0.00292646 0) (1.04225 -0.00291481 0) (1.04233 -0.0029032 0) (1.04241 -0.00289164 0) (1.04249 -0.00288018 0) (1.04257 -0.00286884 0) (1.04266 -0.00285769 0) (1.04274 -0.00284674 0) (1.04283 -0.00283605 0) (1.04292 -0.0028256 0) (1.043 -0.0028155 0) (1.0431 -0.00280568 0) (1.04319 -0.00279629 0) (1.04328 -0.00278716 0) (1.04337 -0.00277856 0) (1.04347 -0.00277015 0) (1.04356 -0.00276244 0) (1.04366 -0.00275473 0) (1.04375 -0.00274806 0) (1.04386 -0.00274087 0) (1.04394 -0.00273553 0) (1.04408 -0.00272838 0) (1.04412 -0.00272513 0) (1.04432 -0.00271681 0) (1.03883 -0.00355949 0) (1.03888 -0.00355071 0) (1.03893 -0.00354198 0) (1.03898 -0.0035333 0) (1.03903 -0.00352469 0) (1.03909 -0.00351615 0) (1.03914 -0.00350771 0) (1.03919 -0.00349938 0) (1.03925 -0.00349117 0) (1.0393 -0.00348309 0) (1.03936 -0.00347515 0) (1.03941 -0.00346737 0) (1.03947 -0.00345974 0) (1.03952 -0.00345227 0) (1.03958 -0.00344496 0) (1.03964 -0.00343781 0) (1.03969 -0.00343083 0) (1.03975 -0.00342399 0) (1.03981 -0.00341729 0) (1.03987 -0.00341073 0) (1.03992 -0.00340429 0) (1.03998 -0.00339795 0) (1.04004 -0.0033917 0) (1.0401 -0.00338553 0) (1.04015 -0.00337941 0) (1.04021 -0.00337332 0) (1.04027 -0.00336726 0) (1.04033 -0.0033612 0) (1.04039 -0.00335513 0) (1.04044 -0.00334903 0) (1.0405 -0.00334289 0) (1.04056 -0.0033367 0) (1.04062 -0.00333046 0) (1.04068 -0.00332415 0) (1.04074 -0.00331777 0) (1.0408 -0.00331131 0) (1.04086 -0.00330478 0) (1.04091 -0.00329817 0) (1.04097 -0.00329149 0) (1.04103 -0.00328473 0) (1.04109 -0.0032779 0) (1.04115 -0.003271 0) (1.04121 -0.00326403 0) (1.04127 -0.00325699 0) (1.04133 -0.00324988 0) (1.04139 -0.00324271 0) (1.04145 -0.00323546 0) (1.04151 -0.00322814 0) (1.04157 -0.00322074 0) (1.04163 -0.00321325 0) (1.0417 -0.00320568 0) (1.04176 -0.003198 0) (1.04182 -0.00319022 0) (1.04188 -0.00318233 0) (1.04194 -0.00317431 0) (1.042 -0.00316615 0) (1.04207 -0.00315785 0) (1.04213 -0.0031494 0) (1.04219 -0.00314078 0) (1.04226 -0.00313199 0) (1.04232 -0.00312302 0) (1.04238 -0.00311386 0) (1.04245 -0.00310452 0) (1.04252 -0.00309497 0) (1.04258 -0.00308524 0) (1.04265 -0.00307531 0) (1.04272 -0.00306518 0) (1.04278 -0.00305487 0) (1.04285 -0.00304438 0) (1.04292 -0.00303372 0) (1.04299 -0.00302289 0) (1.04307 -0.00301193 0) (1.04314 -0.00300083 0) (1.04321 -0.00298963 0) (1.04329 -0.00297834 0) (1.04336 -0.00296699 0) (1.04344 -0.0029556 0) (1.04352 -0.00294421 0) (1.0436 -0.00293285 0) (1.04368 -0.00292155 0) (1.04376 -0.00291035 0) (1.04384 -0.00289927 0) (1.04393 -0.00288837 0) (1.04402 -0.00287765 0) (1.0441 -0.00286719 0) (1.04419 -0.00285696 0) (1.04428 -0.00284708 0) (1.04437 -0.00283744 0) (1.04446 -0.00282825 0) (1.04456 -0.00281928 0) (1.04465 -0.00281086 0) (1.04475 -0.00280259 0) (1.04484 -0.00279507 0) (1.04495 -0.00278746 0) (1.04503 -0.00278099 0) (1.04515 -0.00277393 0) (1.04523 -0.00276879 0) (1.04537 -0.00276181 0) (1.04541 -0.00275868 0) (1.04561 -0.00275063 0) (1.04009 -0.00359147 0) (1.04014 -0.00358277 0) (1.04019 -0.00357409 0) (1.04025 -0.00356547 0) (1.0403 -0.0035569 0) (1.04036 -0.0035484 0) (1.04041 -0.00353999 0) (1.04046 -0.00353168 0) (1.04052 -0.00352348 0) (1.04057 -0.00351539 0) (1.04063 -0.00350744 0) (1.04069 -0.00349963 0) (1.04074 -0.00349195 0) (1.0408 -0.00348443 0) (1.04086 -0.00347705 0) (1.04092 -0.00346982 0) (1.04097 -0.00346274 0) (1.04103 -0.0034558 0) (1.04109 -0.00344899 0) (1.04115 -0.0034423 0) (1.04121 -0.00343572 0) (1.04126 -0.00342924 0) (1.04132 -0.00342284 0) (1.04138 -0.00341651 0) (1.04144 -0.00341023 0) (1.0415 -0.00340398 0) (1.04156 -0.00339775 0) (1.04162 -0.00339152 0) (1.04168 -0.00338529 0) (1.04174 -0.00337902 0) (1.0418 -0.00337272 0) (1.04186 -0.00336637 0) (1.04192 -0.00335997 0) (1.04198 -0.0033535 0) (1.04204 -0.00334696 0) (1.0421 -0.00334036 0) (1.04216 -0.00333368 0) (1.04222 -0.00332692 0) (1.04228 -0.00332009 0) (1.04234 -0.0033132 0) (1.0424 -0.00330623 0) (1.04246 -0.00329919 0) (1.04252 -0.00329209 0) (1.04258 -0.00328491 0) (1.04264 -0.00327768 0) (1.04271 -0.00327038 0) (1.04277 -0.00326301 0) (1.04283 -0.00325556 0) (1.04289 -0.00324805 0) (1.04295 -0.00324045 0) (1.04302 -0.00323277 0) (1.04308 -0.003225 0) (1.04314 -0.00321713 0) (1.0432 -0.00320915 0) (1.04327 -0.00320105 0) (1.04333 -0.00319283 0) (1.04339 -0.00318448 0) (1.04346 -0.00317598 0) (1.04352 -0.00316733 0) (1.04359 -0.00315852 0) (1.04365 -0.00314955 0) (1.04372 -0.00314041 0) (1.04378 -0.00313109 0) (1.04385 -0.0031216 0) (1.04392 -0.00311192 0) (1.04399 -0.00310207 0) (1.04405 -0.00309204 0) (1.04412 -0.00308184 0) (1.04419 -0.00307148 0) (1.04427 -0.00306097 0) (1.04434 -0.00305031 0) (1.04441 -0.00303952 0) (1.04448 -0.00302861 0) (1.04456 -0.00301762 0) (1.04463 -0.00300655 0) (1.04471 -0.00299542 0) (1.04479 -0.00298428 0) (1.04487 -0.00297313 0) (1.04495 -0.00296202 0) (1.04503 -0.00295096 0) (1.04512 -0.00294001 0) (1.0452 -0.00292917 0) (1.04529 -0.00291851 0) (1.04537 -0.00290802 0) (1.04546 -0.00289779 0) (1.04555 -0.00288777 0) (1.04564 -0.0028781 0) (1.04573 -0.00286864 0) (1.04583 -0.00285965 0) (1.04592 -0.00285082 0) (1.04602 -0.0028426 0) (1.04612 -0.00283443 0) (1.04621 -0.00282712 0) (1.04631 -0.00281958 0) (1.0464 -0.00281336 0) (1.04652 -0.00280634 0) (1.0466 -0.00280148 0) (1.04674 -0.00279456 0) (1.04679 -0.00279164 0) (1.04698 -0.00278371 0) (1.04144 -0.00362303 0) (1.04149 -0.00361439 0) (1.04155 -0.00360578 0) (1.0416 -0.00359721 0) (1.04165 -0.00358869 0) (1.04171 -0.00358024 0) (1.04176 -0.00357186 0) (1.04182 -0.00356357 0) (1.04188 -0.00355538 0) (1.04193 -0.0035473 0) (1.04199 -0.00353933 0) (1.04205 -0.0035315 0) (1.0421 -0.00352379 0) (1.04216 -0.00351622 0) (1.04222 -0.00350878 0) (1.04228 -0.00350148 0) (1.04234 -0.00349431 0) (1.0424 -0.00348727 0) (1.04246 -0.00348035 0) (1.04252 -0.00347354 0) (1.04258 -0.00346683 0) (1.04264 -0.00346021 0) (1.0427 -0.00345367 0) (1.04276 -0.00344719 0) (1.04282 -0.00344075 0) (1.04288 -0.00343435 0) (1.04294 -0.00342796 0) (1.043 -0.00342157 0) (1.04306 -0.00341517 0) (1.04312 -0.00340874 0) (1.04318 -0.00340228 0) (1.04324 -0.00339577 0) (1.0433 -0.00338921 0) (1.04336 -0.00338258 0) (1.04342 -0.00337589 0) (1.04349 -0.00336914 0) (1.04355 -0.00336231 0) (1.04361 -0.00335541 0) (1.04367 -0.00334844 0) (1.04373 -0.0033414 0) (1.0438 -0.0033343 0) (1.04386 -0.00332712 0) (1.04392 -0.00331989 0) (1.04398 -0.00331259 0) (1.04404 -0.00330522 0) (1.04411 -0.00329779 0) (1.04417 -0.0032903 0) (1.04423 -0.00328274 0) (1.0443 -0.00327511 0) (1.04436 -0.0032674 0) (1.04442 -0.00325962 0) (1.04449 -0.00325175 0) (1.04455 -0.00324378 0) (1.04462 -0.00323571 0) (1.04468 -0.00322754 0) (1.04474 -0.00321925 0) (1.04481 -0.00321083 0) (1.04487 -0.00320229 0) (1.04494 -0.0031936 0) (1.04501 -0.00318477 0) (1.04507 -0.00317579 0) (1.04514 -0.00316665 0) (1.04521 -0.00315735 0) (1.04527 -0.00314789 0) (1.04534 -0.00313827 0) (1.04541 -0.00312848 0) (1.04548 -0.00311854 0) (1.04555 -0.00310845 0) (1.04562 -0.0030982 0) (1.0457 -0.00308782 0) (1.04577 -0.00307731 0) (1.04584 -0.00306669 0) (1.04592 -0.00305596 0) (1.04599 -0.00304516 0) (1.04607 -0.00303429 0) (1.04615 -0.00302338 0) (1.04623 -0.00301246 0) (1.04631 -0.00300154 0) (1.04639 -0.00299066 0) (1.04647 -0.00297984 0) (1.04656 -0.00296913 0) (1.04664 -0.00295853 0) (1.04673 -0.0029481 0) (1.04682 -0.00293783 0) (1.0469 -0.00292783 0) (1.047 -0.002918 0) (1.04709 -0.00290854 0) (1.04718 -0.00289924 0) (1.04727 -0.00289046 0) (1.04737 -0.00288173 0) (1.04746 -0.00287374 0) (1.04756 -0.00286562 0) (1.04766 -0.00285857 0) (1.04776 -0.00285101 0) (1.04785 -0.00284511 0) (1.04797 -0.00283801 0) (1.04805 -0.00283355 0) (1.04819 -0.00282652 0) (1.04824 -0.00282398 0) (1.04844 -0.00281594 0) (1.04288 -0.00365421 0) (1.04293 -0.00364563 0) (1.04299 -0.00363708 0) (1.04304 -0.00362857 0) (1.0431 -0.0036201 0) (1.04315 -0.00361169 0) (1.04321 -0.00360335 0) (1.04326 -0.00359508 0) (1.04332 -0.00358691 0) (1.04338 -0.00357884 0) (1.04344 -0.00357087 0) (1.0435 -0.00356301 0) (1.04355 -0.00355528 0) (1.04361 -0.00354766 0) (1.04367 -0.00354017 0) (1.04373 -0.0035328 0) (1.04379 -0.00352556 0) (1.04385 -0.00351842 0) (1.04391 -0.0035114 0) (1.04397 -0.00350448 0) (1.04404 -0.00349765 0) (1.0441 -0.0034909 0) (1.04416 -0.00348422 0) (1.04422 -0.00347759 0) (1.04428 -0.00347101 0) (1.04434 -0.00346445 0) (1.0444 -0.0034579 0) (1.04447 -0.00345135 0) (1.04453 -0.00344479 0) (1.04459 -0.0034382 0) (1.04465 -0.00343158 0) (1.04472 -0.00342491 0) (1.04478 -0.00341819 0) (1.04484 -0.00341141 0) (1.0449 -0.00340457 0) (1.04497 -0.00339766 0) (1.04503 -0.00339068 0) (1.04509 -0.00338364 0) (1.04515 -0.00337653 0) (1.04522 -0.00336935 0) (1.04528 -0.00336211 0) (1.04534 -0.0033548 0) (1.04541 -0.00334743 0) (1.04547 -0.00334 0) (1.04553 -0.0033325 0) (1.0456 -0.00332495 0) (1.04566 -0.00331733 0) (1.04573 -0.00330965 0) (1.04579 -0.0033019 0) (1.04586 -0.00329408 0) (1.04592 -0.00328619 0) (1.04599 -0.00327821 0) (1.04605 -0.00327015 0) (1.04612 -0.00326199 0) (1.04618 -0.00325373 0) (1.04625 -0.00324536 0) (1.04631 -0.00323688 0) (1.04638 -0.00322828 0) (1.04645 -0.00321955 0) (1.04651 -0.00321068 0) (1.04658 -0.00320168 0) (1.04665 -0.00319254 0) (1.04672 -0.00318325 0) (1.04678 -0.00317381 0) (1.04685 -0.00316422 0) (1.04692 -0.00315449 0) (1.04699 -0.00314462 0) (1.04707 -0.00313461 0) (1.04714 -0.00312447 0) (1.04721 -0.0031142 0) (1.04728 -0.00310383 0) (1.04736 -0.00309335 0) (1.04743 -0.00308279 0) (1.04751 -0.00307216 0) (1.04759 -0.00306148 0) (1.04767 -0.00305077 0) (1.04774 -0.00304006 0) (1.04783 -0.00302935 0) (1.04791 -0.00301869 0) (1.04799 -0.00300809 0) (1.04807 -0.00299761 0) (1.04816 -0.00298722 0) (1.04825 -0.00297702 0) (1.04833 -0.00296695 0) (1.04842 -0.00295716 0) (1.04851 -0.0029475 0) (1.04861 -0.00293826 0) (1.0487 -0.00292909 0) (1.04879 -0.00292052 0) (1.04889 -0.00291186 0) (1.04898 -0.00290411 0) (1.04908 -0.00289597 0) (1.04918 -0.00288923 0) (1.04928 -0.00288154 0) (1.04937 -0.00287608 0) (1.04949 -0.00286871 0) (1.04957 -0.00286485 0) (1.04971 -0.00285745 0) (1.04975 -0.00285554 0) (1.04995 -0.00284707 0) (1.04441 -0.00368502 0) (1.04446 -0.00367651 0) (1.04452 -0.00366802 0) (1.04457 -0.00365956 0) (1.04463 -0.00365114 0) (1.04469 -0.00364277 0) (1.04474 -0.00363447 0) (1.0448 -0.00362623 0) (1.04486 -0.00361808 0) (1.04492 -0.00361002 0) (1.04498 -0.00360205 0) (1.04504 -0.00359418 0) (1.0451 -0.00358642 0) (1.04516 -0.00357877 0) (1.04522 -0.00357123 0) (1.04528 -0.0035638 0) (1.04534 -0.00355647 0) (1.0454 -0.00354926 0) (1.04546 -0.00354214 0) (1.04552 -0.00353511 0) (1.04559 -0.00352816 0) (1.04565 -0.00352128 0) (1.04571 -0.00351446 0) (1.04577 -0.00350769 0) (1.04584 -0.00350096 0) (1.0459 -0.00349424 0) (1.04596 -0.00348754 0) (1.04603 -0.00348083 0) (1.04609 -0.0034741 0) (1.04615 -0.00346735 0) (1.04621 -0.00346057 0) (1.04628 -0.00345374 0) (1.04634 -0.00344686 0) (1.04641 -0.00343992 0) (1.04647 -0.00343292 0) (1.04653 -0.00342586 0) (1.0466 -0.00341873 0) (1.04666 -0.00341154 0) (1.04672 -0.00340428 0) (1.04679 -0.00339696 0) (1.04685 -0.00338958 0) (1.04692 -0.00338213 0) (1.04698 -0.00337462 0) (1.04705 -0.00336705 0) (1.04711 -0.00335943 0) (1.04717 -0.00335174 0) (1.04724 -0.003344 0) (1.0473 -0.00333619 0) (1.04737 -0.00332832 0) (1.04743 -0.00332038 0) (1.0475 -0.00331237 0) (1.04757 -0.00330428 0) (1.04763 -0.00329611 0) (1.0477 -0.00328785 0) (1.04776 -0.00327949 0) (1.04783 -0.00327104 0) (1.0479 -0.00326248 0) (1.04796 -0.00325381 0) (1.04803 -0.00324502 0) (1.0481 -0.0032361 0) (1.04816 -0.00322707 0) (1.04823 -0.0032179 0) (1.0483 -0.0032086 0) (1.04837 -0.00319916 0) (1.04844 -0.0031896 0) (1.04851 -0.0031799 0) (1.04858 -0.00317008 0) (1.04865 -0.00316014 0) (1.04872 -0.00315008 0) (1.04879 -0.00313991 0) (1.04887 -0.00312964 0) (1.04894 -0.00311929 0) (1.04901 -0.00310887 0) (1.04909 -0.00309839 0) (1.04917 -0.00308788 0) (1.04924 -0.00307734 0) (1.04932 -0.00306681 0) (1.0494 -0.00305629 0) (1.04948 -0.00304583 0) (1.04956 -0.00303543 0) (1.04965 -0.00302514 0) (1.04973 -0.00301495 0) (1.04982 -0.00300495 0) (1.0499 -0.00299505 0) (1.04999 -0.00298546 0) (1.05008 -0.00297595 0) (1.05017 -0.0029669 0) (1.05026 -0.00295783 0) (1.05035 -0.00294947 0) (1.05045 -0.00294083 0) (1.05054 -0.00293334 0) (1.05064 -0.00292509 0) (1.05073 -0.00291872 0) (1.05083 -0.00291076 0) (1.05092 -0.00290586 0) (1.05103 -0.00289798 0) (1.05111 -0.00289497 0) (1.05125 -0.00288683 0) (1.05129 -0.00288591 0) (1.05148 -0.00287656 0) (1.04603 -0.00371542 0) (1.04609 -0.00370697 0) (1.04614 -0.00369853 0) (1.0462 -0.00369012 0) (1.04625 -0.00368175 0) (1.04631 -0.00367343 0) (1.04637 -0.00366516 0) (1.04643 -0.00365695 0) (1.04649 -0.00364882 0) (1.04655 -0.00364076 0) (1.04661 -0.00363279 0) (1.04667 -0.00362491 0) (1.04673 -0.00361712 0) (1.04679 -0.00360944 0) (1.04685 -0.00360185 0) (1.04691 -0.00359436 0) (1.04697 -0.00358696 0) (1.04704 -0.00357966 0) (1.0471 -0.00357244 0) (1.04716 -0.0035653 0) (1.04722 -0.00355823 0) (1.04729 -0.00355123 0) (1.04735 -0.00354427 0) (1.04741 -0.00353736 0) (1.04748 -0.00353047 0) (1.04754 -0.0035236 0) (1.0476 -0.00351673 0) (1.04767 -0.00350986 0) (1.04773 -0.00350296 0) (1.04779 -0.00349604 0) (1.04786 -0.00348909 0) (1.04792 -0.00348209 0) (1.04798 -0.00347504 0) (1.04805 -0.00346794 0) (1.04811 -0.00346077 0) (1.04818 -0.00345355 0) (1.04824 -0.00344626 0) (1.0483 -0.00343891 0) (1.04837 -0.0034315 0) (1.04843 -0.00342402 0) (1.0485 -0.00341648 0) (1.04856 -0.00340888 0) (1.04862 -0.00340123 0) (1.04869 -0.00339351 0) (1.04875 -0.00338574 0) (1.04882 -0.00337791 0) (1.04888 -0.00337003 0) (1.04895 -0.00336208 0) (1.04901 -0.00335407 0) (1.04908 -0.00334599 0) (1.04914 -0.00333785 0) (1.04921 -0.00332963 0) (1.04927 -0.00332134 0) (1.04934 -0.00331296 0) (1.0494 -0.00330449 0) (1.04947 -0.00329593 0) (1.04953 -0.00328727 0) (1.0496 -0.00327851 0) (1.04966 -0.00326964 0) (1.04973 -0.00326066 0) (1.04979 -0.00325156 0) (1.04986 -0.00324234 0) (1.04993 -0.00323301 0) (1.04999 -0.00322355 0) (1.05006 -0.00321398 0) (1.05013 -0.00320429 0) (1.0502 -0.00319449 0) (1.05027 -0.00318458 0) (1.05034 -0.00317456 0) (1.0504 -0.00316446 0) (1.05048 -0.00315428 0) (1.05055 -0.00314402 0) (1.05062 -0.0031337 0) (1.05069 -0.00312334 0) (1.05076 -0.00311296 0) (1.05084 -0.00310256 0) (1.05091 -0.00309218 0) (1.05099 -0.00308181 0) (1.05107 -0.00307151 0) (1.05115 -0.00306127 0) (1.05122 -0.00305115 0) (1.0513 -0.00304111 0) (1.05139 -0.00303128 0) (1.05147 -0.00302152 0) (1.05155 -0.0030121 0) (1.05163 -0.00300269 0) (1.05172 -0.00299381 0) (1.05181 -0.00298478 0) (1.05189 -0.00297661 0) (1.05198 -0.00296792 0) (1.05207 -0.00296069 0) (1.05216 -0.00295224 0) (1.05224 -0.00294629 0) (1.05234 -0.00293786 0) (1.05242 -0.00293368 0) (1.05253 -0.00292499 0) (1.0526 -0.00292313 0) (1.05273 -0.00291379 0) (1.05277 -0.00291434 0) (1.05294 -0.00290353 0) (1.04773 -0.00374523 0) (1.04779 -0.00373682 0) (1.04784 -0.00372844 0) (1.0479 -0.00372007 0) (1.04796 -0.00371174 0) (1.04802 -0.00370345 0) (1.04807 -0.0036952 0) (1.04813 -0.00368701 0) (1.04819 -0.00367889 0) (1.04825 -0.00367083 0) (1.04831 -0.00366286 0) (1.04837 -0.00365496 0) (1.04843 -0.00364714 0) (1.04849 -0.00363941 0) (1.04855 -0.00363177 0) (1.04861 -0.00362421 0) (1.04868 -0.00361673 0) (1.04874 -0.00360933 0) (1.0488 -0.00360201 0) (1.04886 -0.00359476 0) (1.04892 -0.00358756 0) (1.04899 -0.00358042 0) (1.04905 -0.00357331 0) (1.04911 -0.00356624 0) (1.04917 -0.00355919 0) (1.04924 -0.00355215 0) (1.0493 -0.0035451 0) (1.04936 -0.00353805 0) (1.04942 -0.00353098 0) (1.04949 -0.00352387 0) (1.04955 -0.00351673 0) (1.04961 -0.00350954 0) (1.04967 -0.00350231 0) (1.04974 -0.00349502 0) (1.0498 -0.00348767 0) (1.04986 -0.00348026 0) (1.04992 -0.0034728 0) (1.04999 -0.00346527 0) (1.05005 -0.00345767 0) (1.05011 -0.00345002 0) (1.05017 -0.00344231 0) (1.05024 -0.00343454 0) (1.0503 -0.00342671 0) (1.05036 -0.00341883 0) (1.05042 -0.00341089 0) (1.05048 -0.00340289 0) (1.05055 -0.00339484 0) (1.05061 -0.00338673 0) (1.05067 -0.00337855 0) (1.05073 -0.00337032 0) (1.05079 -0.00336201 0) (1.05085 -0.00335364 0) (1.05092 -0.00334519 0) (1.05098 -0.00333667 0) (1.05104 -0.00332805 0) (1.0511 -0.00331936 0) (1.05116 -0.00331056 0) (1.05122 -0.00330168 0) (1.05129 -0.00329269 0) (1.05135 -0.0032836 0) (1.05141 -0.0032744 0) (1.05147 -0.0032651 0) (1.05153 -0.00325569 0) (1.05159 -0.00324617 0) (1.05166 -0.00323655 0) (1.05172 -0.00322682 0) (1.05178 -0.003217 0) (1.05184 -0.00320708 0) (1.05191 -0.00319707 0) (1.05197 -0.00318699 0) (1.05203 -0.00317684 0) (1.0521 -0.00316662 0) (1.05216 -0.00315637 0) (1.05223 -0.00314608 0) (1.05229 -0.00313577 0) (1.05236 -0.00312546 0) (1.05243 -0.00311518 0) (1.0525 -0.00310491 0) (1.05257 -0.00309473 0) (1.05264 -0.00308459 0) (1.05271 -0.00307459 0) (1.05278 -0.00306464 0) (1.05285 -0.00305493 0) (1.05292 -0.00304526 0) (1.05299 -0.00303595 0) (1.05307 -0.00302658 0) (1.05314 -0.00301783 0) (1.05322 -0.00300877 0) (1.05329 -0.00300076 0) (1.05337 -0.00299193 0) (1.05345 -0.00298496 0) (1.05352 -0.00297616 0) (1.0536 -0.00297068 0) (1.05368 -0.00296157 0) (1.05375 -0.00295826 0) (1.05384 -0.00294838 0) (1.0539 -0.00294802 0) (1.05401 -0.00293692 0) (1.05405 -0.00293949 0) (1.05419 -0.00292654 0) (1.04948 -0.00377401 0) (1.04954 -0.00376563 0) (1.04959 -0.00375727 0) (1.04965 -0.00374893 0) (1.04971 -0.00374061 0) (1.04976 -0.00373233 0) (1.04982 -0.00372409 0) (1.04987 -0.00371591 0) (1.04993 -0.00370777 0) (1.04999 -0.0036997 0) (1.05005 -0.0036917 0) (1.05011 -0.00368376 0) (1.05016 -0.00367589 0) (1.05022 -0.0036681 0) (1.05028 -0.00366038 0) (1.05034 -0.00365274 0) (1.0504 -0.00364516 0) (1.05046 -0.00363765 0) (1.05052 -0.0036302 0) (1.05058 -0.00362281 0) (1.05064 -0.00361546 0) (1.0507 -0.00360815 0) (1.05076 -0.00360088 0) (1.05082 -0.00359362 0) (1.05088 -0.00358638 0) (1.05094 -0.00357914 0) (1.051 -0.0035719 0) (1.05105 -0.00356464 0) (1.05111 -0.00355735 0) (1.05117 -0.00355003 0) (1.05123 -0.00354267 0) (1.05129 -0.00353527 0) (1.05135 -0.00352781 0) (1.05141 -0.0035203 0) (1.05146 -0.00351274 0) (1.05152 -0.00350511 0) (1.05158 -0.00349743 0) (1.05164 -0.00348968 0) (1.05169 -0.00348188 0) (1.05175 -0.00347401 0) (1.05181 -0.00346609 0) (1.05186 -0.00345811 0) (1.05192 -0.00345007 0) (1.05198 -0.00344198 0) (1.05203 -0.00343383 0) (1.05209 -0.00342563 0) (1.05214 -0.00341737 0) (1.0522 -0.00340905 0) (1.05225 -0.00340067 0) (1.05231 -0.00339223 0) (1.05236 -0.00338372 0) (1.05242 -0.00337514 0) (1.05247 -0.00336649 0) (1.05252 -0.00335777 0) (1.05258 -0.00334897 0) (1.05263 -0.00334008 0) (1.05268 -0.00333111 0) (1.05273 -0.00332204 0) (1.05279 -0.00331289 0) (1.05284 -0.00330364 0) (1.05289 -0.00329429 0) (1.05294 -0.00328485 0) (1.05299 -0.0032753 0) (1.05304 -0.00326567 0) (1.05309 -0.00325593 0) (1.05315 -0.00324611 0) (1.0532 -0.0032362 0) (1.05325 -0.00322621 0) (1.0533 -0.00321615 0) (1.05335 -0.00320602 0) (1.0534 -0.00319584 0) (1.05345 -0.00318561 0) (1.0535 -0.00317534 0) (1.05355 -0.00316505 0) (1.05361 -0.00315476 0) (1.05366 -0.00314447 0) (1.05371 -0.00313421 0) (1.05376 -0.00312399 0) (1.05382 -0.00311384 0) (1.05387 -0.00310373 0) (1.05392 -0.00309378 0) (1.05398 -0.00308386 0) (1.05403 -0.00307419 0) (1.05409 -0.00306452 0) (1.05414 -0.00305526 0) (1.0542 -0.00304586 0) (1.05425 -0.00303716 0) (1.05431 -0.00302799 0) (1.05437 -0.00302007 0) (1.05442 -0.003011 0) (1.05448 -0.00300424 0) (1.05453 -0.00299495 0) (1.05459 -0.00298996 0) (1.05465 -0.00297994 0) (1.0547 -0.00297763 0) (1.05476 -0.00296618 0) (1.0548 -0.00296765 0) (1.05488 -0.00295417 0) (1.0549 -0.00295936 0) (1.055 -0.00294355 0) (1.05122 -0.00380084 0) (1.05127 -0.00379246 0) (1.05132 -0.00378408 0) (1.05137 -0.00377573 0) (1.05142 -0.0037674 0) (1.05147 -0.00375909 0) (1.05153 -0.00375083 0) (1.05158 -0.0037426 0) (1.05163 -0.00373443 0) (1.05168 -0.0037263 0) (1.05174 -0.00371823 0) (1.05179 -0.00371022 0) (1.05184 -0.00370227 0) (1.05189 -0.00369438 0) (1.05195 -0.00368655 0) (1.052 -0.00367877 0) (1.05205 -0.00367106 0) (1.05211 -0.00366339 0) (1.05216 -0.00365578 0) (1.05221 -0.00364821 0) (1.05227 -0.00364067 0) (1.05232 -0.00363316 0) (1.05237 -0.00362567 0) (1.05242 -0.00361819 0) (1.05248 -0.00361071 0) (1.05253 -0.00360323 0) (1.05258 -0.00359573 0) (1.05263 -0.00358821 0) (1.05268 -0.00358066 0) (1.05273 -0.00357308 0) (1.05278 -0.00356545 0) (1.05283 -0.00355778 0) (1.05288 -0.00355005 0) (1.05293 -0.00354227 0) (1.05298 -0.00353443 0) (1.05302 -0.00352653 0) (1.05307 -0.00351858 0) (1.05312 -0.00351056 0) (1.05316 -0.00350249 0) (1.05321 -0.00349435 0) (1.05325 -0.00348616 0) (1.0533 -0.00347791 0) (1.05334 -0.0034696 0) (1.05339 -0.00346124 0) (1.05343 -0.00345282 0) (1.05347 -0.00344435 0) (1.05351 -0.00343582 0) (1.05356 -0.00342723 0) (1.0536 -0.00341858 0) (1.05364 -0.00340987 0) (1.05368 -0.00340109 0) (1.05372 -0.00339225 0) (1.05375 -0.00338334 0) (1.05379 -0.00337435 0) (1.05383 -0.00336529 0) (1.05387 -0.00335614 0) (1.0539 -0.00334692 0) (1.05394 -0.00333761 0) (1.05397 -0.00332821 0) (1.05401 -0.00331873 0) (1.05404 -0.00330915 0) (1.05407 -0.00329949 0) (1.0541 -0.00328975 0) (1.05414 -0.00327991 0) (1.05417 -0.00327 0) (1.0542 -0.00326 0) (1.05423 -0.00324993 0) (1.05426 -0.00323979 0) (1.05429 -0.00322959 0) (1.05432 -0.00321934 0) (1.05435 -0.00320904 0) (1.05437 -0.0031987 0) (1.0544 -0.00318835 0) (1.05443 -0.00317798 0) (1.05446 -0.00316761 0) (1.05448 -0.00315725 0) (1.05451 -0.00314694 0) (1.05454 -0.00313665 0) (1.05457 -0.00312645 0) (1.05459 -0.00311629 0) (1.05462 -0.00310629 0) (1.05464 -0.00309631 0) (1.05467 -0.00308659 0) (1.0547 -0.00307684 0) (1.05472 -0.00306752 0) (1.05475 -0.00305799 0) (1.05477 -0.00304925 0) (1.0548 -0.00303986 0) (1.05482 -0.00303196 0) (1.05484 -0.00302252 0) (1.05487 -0.00301592 0) (1.05489 -0.00300599 0) (1.05491 -0.00300146 0) (1.05493 -0.00299031 0) (1.05495 -0.00298908 0) (1.05497 -0.00297569 0) (1.05499 -0.00297927 0) (1.05501 -0.00296282 0) (1.05502 -0.00297119 0) (1.05504 -0.00295181 0) (1.0528 -0.00382408 0) (1.05285 -0.00381563 0) (1.05289 -0.00380719 0) (1.05293 -0.00379876 0) (1.05297 -0.00379036 0) (1.05301 -0.00378197 0) (1.05306 -0.00377362 0) (1.0531 -0.0037653 0) (1.05314 -0.00375702 0) (1.05318 -0.00374879 0) (1.05322 -0.00374059 0) (1.05326 -0.00373244 0) (1.05331 -0.00372435 0) (1.05335 -0.00371629 0) (1.05339 -0.00370829 0) (1.05343 -0.00370033 0) (1.05347 -0.00369241 0) (1.05351 -0.00368453 0) (1.05355 -0.00367668 0) (1.05359 -0.00366886 0) (1.05363 -0.00366107 0) (1.05367 -0.00365329 0) (1.05371 -0.00364551 0) (1.05374 -0.00363774 0) (1.05378 -0.00362996 0) (1.05382 -0.00362216 0) (1.05385 -0.00361435 0) (1.05389 -0.0036065 0) (1.05392 -0.00359862 0) (1.05396 -0.00359069 0) (1.05399 -0.00358272 0) (1.05402 -0.0035747 0) (1.05405 -0.00356663 0) (1.05408 -0.0035585 0) (1.05411 -0.00355032 0) (1.05414 -0.00354207 0) (1.05417 -0.00353376 0) (1.0542 -0.0035254 0) (1.05423 -0.00351697 0) (1.05425 -0.00350849 0) (1.05428 -0.00349995 0) (1.0543 -0.00349135 0) (1.05432 -0.0034827 0) (1.05434 -0.00347398 0) (1.05436 -0.00346522 0) (1.05438 -0.00345639 0) (1.0544 -0.00344751 0) (1.05442 -0.00343857 0) (1.05444 -0.00342956 0) (1.05445 -0.0034205 0) (1.05447 -0.00341137 0) (1.05448 -0.00340217 0) (1.05449 -0.00339291 0) (1.0545 -0.00338357 0) (1.05451 -0.00337416 0) (1.05452 -0.00336467 0) (1.05453 -0.00335511 0) (1.05454 -0.00334546 0) (1.05454 -0.00333574 0) (1.05455 -0.00332593 0) (1.05455 -0.00331605 0) (1.05455 -0.00330608 0) (1.05455 -0.00329604 0) (1.05455 -0.00328592 0) (1.05455 -0.00327572 0) (1.05455 -0.00326546 0) (1.05455 -0.00325514 0) (1.05454 -0.00324476 0) (1.05454 -0.00323432 0) (1.05453 -0.00322385 0) (1.05453 -0.00321334 0) (1.05452 -0.00320281 0) (1.05451 -0.00319226 0) (1.0545 -0.00318171 0) (1.05449 -0.00317117 0) (1.05448 -0.00316065 0) (1.05447 -0.00315017 0) (1.05445 -0.00313973 0) (1.05444 -0.00312938 0) (1.05442 -0.00311906 0) (1.05441 -0.0031089 0) (1.05439 -0.00309875 0) (1.05438 -0.00308888 0) (1.05436 -0.00307893 0) (1.05434 -0.00306946 0) (1.05432 -0.00305968 0) (1.0543 -0.0030508 0) (1.05427 -0.00304109 0) (1.05425 -0.0030331 0) (1.05422 -0.00302318 0) (1.0542 -0.00301663 0) (1.05417 -0.00300594 0) (1.05414 -0.0030018 0) (1.05411 -0.00298936 0) (1.05408 -0.0029892 0) (1.05404 -0.00297358 0) (1.05401 -0.00297942 0) (1.05396 -0.00295954 0) (1.05394 -0.00297149 0) (1.05386 -0.00294801 0) (1.05401 -0.00384102 0) (1.05404 -0.00383242 0) (1.05406 -0.00382384 0) (1.05409 -0.00381527 0) (1.05411 -0.0038067 0) (1.05413 -0.00379816 0) (1.05416 -0.00378963 0) (1.05418 -0.00378114 0) (1.0542 -0.00377267 0) (1.05423 -0.00376423 0) (1.05425 -0.00375583 0) (1.05427 -0.00374746 0) (1.05429 -0.00373913 0) (1.05431 -0.00373083 0) (1.05433 -0.00372256 0) (1.05435 -0.00371432 0) (1.05437 -0.00370612 0) (1.05439 -0.00369793 0) (1.0544 -0.00368976 0) (1.05442 -0.00368161 0) (1.05444 -0.00367346 0) (1.05445 -0.00366532 0) (1.05446 -0.00365717 0) (1.05448 -0.00364901 0) (1.05449 -0.00364084 0) (1.0545 -0.00363263 0) (1.05451 -0.0036244 0) (1.05452 -0.00361613 0) (1.05452 -0.00360782 0) (1.05453 -0.00359947 0) (1.05453 -0.00359106 0) (1.05454 -0.00358261 0) (1.05454 -0.00357409 0) (1.05454 -0.00356552 0) (1.05454 -0.00355689 0) (1.05454 -0.0035482 0) (1.05453 -0.00353945 0) (1.05453 -0.00353064 0) (1.05452 -0.00352177 0) (1.05452 -0.00351284 0) (1.05451 -0.00350385 0) (1.0545 -0.00349481 0) (1.05448 -0.00348571 0) (1.05447 -0.00347655 0) (1.05446 -0.00346733 0) (1.05444 -0.00345806 0) (1.05442 -0.00344873 0) (1.0544 -0.00343934 0) (1.05438 -0.00342988 0) (1.05436 -0.00342037 0) (1.05433 -0.00341079 0) (1.05431 -0.00340114 0) (1.05428 -0.00339143 0) (1.05425 -0.00338164 0) (1.05422 -0.00337179 0) (1.05418 -0.00336186 0) (1.05415 -0.00335186 0) (1.05411 -0.00334179 0) (1.05407 -0.00333164 0) (1.05403 -0.00332141 0) (1.05399 -0.00331112 0) (1.05394 -0.00330075 0) (1.0539 -0.00329031 0) (1.05385 -0.00327981 0) (1.0538 -0.00326925 0) (1.05375 -0.00325862 0) (1.0537 -0.00324795 0) (1.05364 -0.00323723 0) (1.05359 -0.00322647 0) (1.05353 -0.00321567 0) (1.05347 -0.00320486 0) (1.05341 -0.00319402 0) (1.05335 -0.00318319 0) (1.05328 -0.00317236 0) (1.05322 -0.00316155 0) (1.05315 -0.00315076 0) (1.05308 -0.00314002 0) (1.05301 -0.00312931 0) (1.05294 -0.0031187 0) (1.05286 -0.00310812 0) (1.05279 -0.00309771 0) (1.05271 -0.00308729 0) (1.05263 -0.00307715 0) (1.05255 -0.0030669 0) (1.05247 -0.00305717 0) (1.05239 -0.00304705 0) (1.0523 -0.00303791 0) (1.05221 -0.00302777 0) (1.05212 -0.00301958 0) (1.05203 -0.00300909 0) (1.05193 -0.00300248 0) (1.05183 -0.00299095 0) (1.05174 -0.00298708 0) (1.05163 -0.00297325 0) (1.05154 -0.00297406 0) (1.05141 -0.0029561 0) (1.05133 -0.00296415 0) (1.05117 -0.00294061 0) (1.05113 -0.00295628 0) (1.0509 -0.00292848 0) (1.05448 -0.00384771 0) (1.05448 -0.00383887 0) (1.05447 -0.00383004 0) (1.05447 -0.0038212 0) (1.05446 -0.00381238 0) (1.05446 -0.00380356 0) (1.05445 -0.00379476 0) (1.05444 -0.00378598 0) (1.05444 -0.00377722 0) (1.05443 -0.00376848 0) (1.05442 -0.00375976 0) (1.0544 -0.00375106 0) (1.05439 -0.00374239 0) (1.05438 -0.00373373 0) (1.05436 -0.00372509 0) (1.05435 -0.00371647 0) (1.05433 -0.00370786 0) (1.05431 -0.00369926 0) (1.05429 -0.00369066 0) (1.05427 -0.00368207 0) (1.05425 -0.00367346 0) (1.05423 -0.00366485 0) (1.0542 -0.00365622 0) (1.05418 -0.00364757 0) (1.05415 -0.00363888 0) (1.05412 -0.00363017 0) (1.05408 -0.00362142 0) (1.05405 -0.00361262 0) (1.05402 -0.00360378 0) (1.05398 -0.00359489 0) (1.05394 -0.00358594 0) (1.0539 -0.00357694 0) (1.05386 -0.00356788 0) (1.05381 -0.00355876 0) (1.05376 -0.00354958 0) (1.05371 -0.00354035 0) (1.05366 -0.00353105 0) (1.05361 -0.00352169 0) (1.05356 -0.00351228 0) (1.0535 -0.0035028 0) (1.05344 -0.00349327 0) (1.05338 -0.00348368 0) (1.05332 -0.00347403 0) (1.05325 -0.00346433 0) (1.05318 -0.00345456 0) (1.05311 -0.00344474 0) (1.05304 -0.00343486 0) (1.05296 -0.00342493 0) (1.05289 -0.00341493 0) (1.05281 -0.00340486 0) (1.05273 -0.00339474 0) (1.05264 -0.00338455 0) (1.05256 -0.00337429 0) (1.05247 -0.00336397 0) (1.05238 -0.00335358 0) (1.05228 -0.00334312 0) (1.05218 -0.0033326 0) (1.05209 -0.00332201 0) (1.05198 -0.00331134 0) (1.05188 -0.00330062 0) (1.05177 -0.00328982 0) (1.05167 -0.00327897 0) (1.05155 -0.00326806 0) (1.05144 -0.00325709 0) (1.05132 -0.00324607 0) (1.05121 -0.003235 0) (1.05108 -0.00322389 0) (1.05096 -0.00321274 0) (1.05083 -0.00320157 0) (1.05071 -0.00319038 0) (1.05057 -0.00317917 0) (1.05044 -0.00316795 0) (1.05031 -0.00315675 0) (1.05017 -0.00314555 0) (1.05003 -0.00313438 0) (1.04988 -0.00312323 0) (1.04974 -0.00311215 0) (1.04959 -0.00310109 0) (1.04944 -0.00309014 0) (1.04929 -0.00307921 0) (1.04913 -0.00306845 0) (1.04897 -0.00305767 0) (1.04881 -0.00304718 0) (1.04865 -0.00303655 0) (1.04849 -0.00302646 0) (1.04832 -0.00301591 0) (1.04815 -0.00300642 0) (1.04797 -0.0029958 0) (1.04779 -0.00298729 0) (1.04761 -0.00297619 0) (1.04743 -0.00296939 0) (1.04724 -0.002957 0) (1.04706 -0.00295325 0) (1.04685 -0.00293807 0) (1.04667 -0.00293964 0) (1.04644 -0.00291943 0) (1.04629 -0.00292943 0) (1.046 -0.00290233 0) (1.04591 -0.0029215 0) (1.04551 -0.00288959 0) (1.05368 -0.00383888 0) (1.05363 -0.00382967 0) (1.05359 -0.00382047 0) (1.05354 -0.00381127 0) (1.05349 -0.00380206 0) (1.05344 -0.00379286 0) (1.05338 -0.00378367 0) (1.05333 -0.00377449 0) (1.05327 -0.00376531 0) (1.05322 -0.00375615 0) (1.05316 -0.00374699 0) (1.0531 -0.00373785 0) (1.05304 -0.00372871 0) (1.05297 -0.00371958 0) (1.05291 -0.00371046 0) (1.05284 -0.00370133 0) (1.05277 -0.00369221 0) (1.0527 -0.00368308 0) (1.05263 -0.00367394 0) (1.05255 -0.00366478 0) (1.05247 -0.00365561 0) (1.05239 -0.00364642 0) (1.05231 -0.0036372 0) (1.05223 -0.00362795 0) (1.05214 -0.00361866 0) (1.05205 -0.00360933 0) (1.05196 -0.00359995 0) (1.05187 -0.00359053 0) (1.05177 -0.00358105 0) (1.05167 -0.00357152 0) (1.05157 -0.00356194 0) (1.05147 -0.0035523 0) (1.05136 -0.0035426 0) (1.05125 -0.00353284 0) (1.05114 -0.00352303 0) (1.05103 -0.00351315 0) (1.05091 -0.00350322 0) (1.05079 -0.00349323 0) (1.05067 -0.00348318 0) (1.05054 -0.00347307 0) (1.05041 -0.0034629 0) (1.05028 -0.00345268 0) (1.05015 -0.00344241 0) (1.05001 -0.00343207 0) (1.04987 -0.00342168 0) (1.04973 -0.00341124 0) (1.04958 -0.00340073 0) (1.04943 -0.00339017 0) (1.04928 -0.00337955 0) (1.04912 -0.00336887 0) (1.04897 -0.00335812 0) (1.0488 -0.00334732 0) (1.04864 -0.00333646 0) (1.04847 -0.00332553 0) (1.0483 -0.00331454 0) (1.04813 -0.00330349 0) (1.04795 -0.00329238 0) (1.04777 -0.00328121 0) (1.04758 -0.00326997 0) (1.0474 -0.00325869 0) (1.04721 -0.00324734 0) (1.04701 -0.00323595 0) (1.04682 -0.0032245 0) (1.04662 -0.00321301 0) (1.04641 -0.00320149 0) (1.04621 -0.00318992 0) (1.046 -0.00317833 0) (1.04578 -0.00316671 0) (1.04557 -0.00315507 0) (1.04535 -0.00314343 0) (1.04512 -0.00313178 0) (1.0449 -0.00312013 0) (1.04467 -0.0031085 0) (1.04444 -0.00309689 0) (1.0442 -0.00308531 0) (1.04396 -0.00307376 0) (1.04372 -0.00306227 0) (1.04348 -0.00305082 0) (1.04323 -0.00303947 0) (1.04298 -0.00302814 0) (1.04272 -0.00301698 0) (1.04246 -0.00300579 0) (1.0422 -0.0029949 0) (1.04194 -0.00298383 0) (1.04167 -0.00297333 0) (1.04139 -0.00296233 0) (1.04112 -0.00295243 0) (1.04084 -0.0029413 0) (1.04056 -0.00293241 0) (1.04026 -0.0029207 0) (1.03998 -0.00291362 0) (1.03967 -0.00290044 0) (1.03939 -0.00289663 0) (1.03906 -0.00288028 0) (1.03879 -0.0028823 0) (1.03842 -0.00286017 0) (1.03818 -0.00287162 0) (1.03774 -0.0028415 0) (1.0376 -0.00286353 0) (1.03699 -0.00282821 0) (1.0509 -0.00380821 0) (1.0508 -0.00379853 0) (1.05069 -0.00378885 0) (1.05058 -0.00377916 0) (1.05046 -0.00376946 0) (1.05035 -0.00375977 0) (1.05023 -0.00375008 0) (1.05011 -0.00374038 0) (1.04999 -0.00373069 0) (1.04987 -0.00372099 0) (1.04974 -0.0037113 0) (1.04961 -0.0037016 0) (1.04948 -0.0036919 0) (1.04935 -0.00368219 0) (1.04921 -0.00367248 0) (1.04908 -0.00366275 0) (1.04893 -0.00365302 0) (1.04879 -0.00364326 0) (1.04864 -0.00363349 0) (1.0485 -0.00362369 0) (1.04834 -0.00361386 0) (1.04819 -0.003604 0) (1.04803 -0.0035941 0) (1.04787 -0.00358417 0) (1.04771 -0.00357419 0) (1.04754 -0.00356417 0) (1.04737 -0.00355409 0) (1.0472 -0.00354397 0) (1.04702 -0.00353379 0) (1.04684 -0.00352356 0) (1.04666 -0.00351328 0) (1.04647 -0.00350294 0) (1.04628 -0.00349254 0) (1.04609 -0.00348208 0) (1.04589 -0.00347157 0) (1.04569 -0.00346101 0) (1.04549 -0.00345038 0) (1.04528 -0.0034397 0) (1.04507 -0.00342897 0) (1.04486 -0.00341818 0) (1.04464 -0.00340734 0) (1.04442 -0.00339644 0) (1.04419 -0.00338549 0) (1.04396 -0.00337449 0) (1.04373 -0.00336344 0) (1.04349 -0.00335233 0) (1.04325 -0.00334116 0) (1.04301 -0.00332994 0) (1.04276 -0.00331867 0) (1.04251 -0.00330734 0) (1.04226 -0.00329596 0) (1.042 -0.00328452 0) (1.04174 -0.00327303 0) (1.04147 -0.00326148 0) (1.0412 -0.00324988 0) (1.04093 -0.00323822 0) (1.04065 -0.00322651 0) (1.04037 -0.00321475 0) (1.04008 -0.00320294 0) (1.03979 -0.00319109 0) (1.0395 -0.00317919 0) (1.0392 -0.00316725 0) (1.0389 -0.00315527 0) (1.03859 -0.00314327 0) (1.03828 -0.00313123 0) (1.03797 -0.00311917 0) (1.03765 -0.00310709 0) (1.03733 -0.00309501 0) (1.037 -0.00308291 0) (1.03668 -0.00307082 0) (1.03634 -0.00305873 0) (1.03601 -0.00304665 0) (1.03567 -0.0030346 0) (1.03532 -0.00302257 0) (1.03497 -0.00301059 0) (1.03462 -0.00299863 0) (1.03426 -0.00298675 0) (1.0339 -0.0029749 0) (1.03354 -0.00296315 0) (1.03317 -0.00295143 0) (1.0328 -0.00293987 0) (1.03242 -0.00292828 0) (1.03204 -0.00291699 0) (1.03166 -0.00290551 0) (1.03127 -0.0028946 0) (1.03088 -0.00288316 0) (1.03048 -0.00287285 0) (1.03008 -0.00286124 0) (1.02967 -0.00285196 0) (1.02926 -0.00283973 0) (1.02885 -0.0028323 0) (1.02841 -0.00281848 0) (1.02801 -0.00281445 0) (1.02755 -0.00279725 0) (1.02716 -0.00279936 0) (1.02665 -0.0027759 0) (1.02631 -0.00278808 0) (1.02569 -0.00275586 0) (1.0255 -0.0027797 0) (1.02465 -0.00274221 0) (1.04528 -0.00374899 0) (1.0451 -0.00373876 0) (1.04491 -0.00372852 0) (1.04472 -0.00371827 0) (1.04452 -0.00370801 0) (1.04432 -0.00369775 0) (1.04412 -0.00368748 0) (1.04392 -0.0036772 0) (1.04371 -0.00366691 0) (1.0435 -0.00365662 0) (1.04329 -0.00364631 0) (1.04307 -0.003636 0) (1.04285 -0.00362567 0) (1.04263 -0.00361532 0) (1.04241 -0.00360496 0) (1.04218 -0.00359458 0) (1.04195 -0.00358418 0) (1.04171 -0.00357375 0) (1.04147 -0.00356329 0) (1.04123 -0.0035528 0) (1.04098 -0.00354227 0) (1.04073 -0.00353171 0) (1.04048 -0.00352111 0) (1.04022 -0.00351046 0) (1.03996 -0.00349977 0) (1.0397 -0.00348903 0) (1.03943 -0.00347824 0) (1.03916 -0.00346741 0) (1.03888 -0.00345652 0) (1.0386 -0.00344557 0) (1.03832 -0.00343458 0) (1.03803 -0.00342353 0) (1.03774 -0.00341243 0) (1.03744 -0.00340128 0) (1.03714 -0.00339008 0) (1.03684 -0.00337882 0) (1.03653 -0.00336752 0) (1.03622 -0.00335616 0) (1.0359 -0.00334476 0) (1.03558 -0.0033333 0) (1.03525 -0.0033218 0) (1.03492 -0.00331025 0) (1.03459 -0.00329865 0) (1.03425 -0.003287 0) (1.03391 -0.00327531 0) (1.03356 -0.00326356 0) (1.03321 -0.00325177 0) (1.03286 -0.00323993 0) (1.0325 -0.00322805 0) (1.03213 -0.00321611 0) (1.03176 -0.00320413 0) (1.03139 -0.0031921 0) (1.03101 -0.00318003 0) (1.03063 -0.0031679 0) (1.03025 -0.00315574 0) (1.02985 -0.00314353 0) (1.02946 -0.00313128 0) (1.02906 -0.00311899 0) (1.02866 -0.00310666 0) (1.02825 -0.0030943 0) (1.02783 -0.00308191 0) (1.02742 -0.0030695 0) (1.02699 -0.00305705 0) (1.02657 -0.00304459 0) (1.02614 -0.00303212 0) (1.0257 -0.00301963 0) (1.02526 -0.00300714 0) (1.02482 -0.00299465 0) (1.02437 -0.00298216 0) (1.02392 -0.00296969 0) (1.02346 -0.00295723 0) (1.023 -0.00294479 0) (1.02253 -0.00293238 0) (1.02206 -0.00292001 0) (1.02159 -0.00290768 0) (1.02111 -0.0028954 0) (1.02063 -0.00288318 0) (1.02014 -0.002871 0) (1.01965 -0.00285893 0) (1.01915 -0.00284687 0) (1.01865 -0.00283499 0) (1.01814 -0.00282306 0) (1.01763 -0.00281144 0) (1.01711 -0.00279962 0) (1.01659 -0.00278838 0) (1.01607 -0.00277658 0) (1.01554 -0.00276593 0) (1.015 -0.00275396 0) (1.01446 -0.00274433 0) (1.01391 -0.00273173 0) (1.01337 -0.00272394 0) (1.0128 -0.00270974 0) (1.01226 -0.00270536 0) (1.01166 -0.00268774 0) (1.01115 -0.00268954 0) (1.01048 -0.00266555 0) (1.01004 -0.00267759 0) (1.00923 -0.00264456 0) (1.00897 -0.00266881 0) (1.00788 -0.00263085 0) (1.03585 -0.00365506 0) (1.03557 -0.00364427 0) (1.03528 -0.00363345 0) (1.03499 -0.00362262 0) (1.03469 -0.00361178 0) (1.03439 -0.00360094 0) (1.03409 -0.00359008 0) (1.03379 -0.00357921 0) (1.03348 -0.00356832 0) (1.03316 -0.00355742 0) (1.03285 -0.0035465 0) (1.03253 -0.00353557 0) (1.0322 -0.00352462 0) (1.03187 -0.00351364 0) (1.03154 -0.00350264 0) (1.03121 -0.00349161 0) (1.03087 -0.00348056 0) (1.03052 -0.00346948 0) (1.03017 -0.00345836 0) (1.02982 -0.00344721 0) (1.02946 -0.00343602 0) (1.0291 -0.0034248 0) (1.02874 -0.00341353 0) (1.02837 -0.00340222 0) (1.02799 -0.00339086 0) (1.02762 -0.00337946 0) (1.02723 -0.00336802 0) (1.02685 -0.00335652 0) (1.02646 -0.00334498 0) (1.02606 -0.0033334 0) (1.02566 -0.00332177 0) (1.02525 -0.00331009 0) (1.02484 -0.00329836 0) (1.02443 -0.00328659 0) (1.02401 -0.00327478 0) (1.02359 -0.00326292 0) (1.02316 -0.00325102 0) (1.02273 -0.00323907 0) (1.02229 -0.00322709 0) (1.02185 -0.00321506 0) (1.0214 -0.00320299 0) (1.02095 -0.00319088 0) (1.0205 -0.00317873 0) (1.02003 -0.00316654 0) (1.01957 -0.00315431 0) (1.0191 -0.00314204 0) (1.01862 -0.00312973 0) (1.01814 -0.00311739 0) (1.01766 -0.003105 0) (1.01717 -0.00309257 0) (1.01668 -0.00308011 0) (1.01618 -0.00306761 0) (1.01567 -0.00305508 0) (1.01517 -0.00304251 0) (1.01465 -0.00302991 0) (1.01413 -0.00301728 0) (1.01361 -0.00300462 0) (1.01308 -0.00299194 0) (1.01255 -0.00297923 0) (1.01201 -0.0029665 0) (1.01147 -0.00295375 0) (1.01092 -0.00294099 0) (1.01037 -0.00292822 0) (1.00982 -0.00291544 0) (1.00926 -0.00290266 0) (1.00869 -0.00288989 0) (1.00812 -0.00287712 0) (1.00755 -0.00286436 0) (1.00697 -0.00285162 0) (1.00638 -0.0028389 0) (1.00579 -0.0028262 0) (1.0052 -0.00281354 0) (1.0046 -0.00280091 0) (1.004 -0.00278832 0) (1.00339 -0.00277579 0) (1.00278 -0.0027633 0) (1.00216 -0.00275088 0) (1.00154 -0.00273851 0) (1.00091 -0.00272624 0) (1.00028 -0.00271399 0) (0.999642 -0.00270191 0) (0.999 -0.00268979 0) (0.998354 -0.00267797 0) (0.997702 -0.00266596 0) (0.997047 -0.00265451 0) (0.996384 -0.00264252 0) (0.995719 -0.00263166 0) (0.995044 -0.0026195 0) (0.994372 -0.00260963 0) (0.993682 -0.00259686 0) (0.993007 -0.00258878 0) (0.992295 -0.00257451 0) (0.991626 -0.00256969 0) (0.990877 -0.00255218 0) (0.990239 -0.00255328 0) (0.989414 -0.00252969 0) (0.988864 -0.00254065 0) (0.987876 -0.00250836 0) (0.98755 -0.00253138 0) (0.9862 -0.00249498 0) (1.02163 -0.00352195 0) (1.02123 -0.00351063 0) (1.02083 -0.0034993 0) (1.02042 -0.00348795 0) (1.02002 -0.0034766 0) (1.0196 -0.00346524 0) (1.01919 -0.00345387 0) (1.01876 -0.00344247 0) (1.01834 -0.00343106 0) (1.01791 -0.00341963 0) (1.01748 -0.00340819 0) (1.01704 -0.00339672 0) (1.0166 -0.00338523 0) (1.01615 -0.00337371 0) (1.0157 -0.00336217 0) (1.01524 -0.0033506 0) (1.01478 -0.003339 0) (1.01432 -0.00332737 0) (1.01385 -0.00331571 0) (1.01338 -0.00330402 0) (1.0129 -0.00329228 0) (1.01241 -0.00328052 0) (1.01193 -0.00326871 0) (1.01143 -0.00325687 0) (1.01094 -0.00324499 0) (1.01044 -0.00323307 0) (1.00993 -0.00322111 0) (1.00942 -0.00320911 0) (1.0089 -0.00319707 0) (1.00838 -0.00318499 0) (1.00786 -0.00317288 0) (1.00732 -0.00316072 0) (1.00679 -0.00314853 0) (1.00625 -0.00313631 0) (1.0057 -0.00312405 0) (1.00515 -0.00311175 0) (1.0046 -0.00309942 0) (1.00404 -0.00308706 0) (1.00347 -0.00307466 0) (1.0029 -0.00306223 0) (1.00233 -0.00304977 0) (1.00175 -0.00303728 0) (1.00117 -0.00302476 0) (1.00058 -0.00301221 0) (0.999982 -0.00299963 0) (0.999383 -0.00298702 0) (0.998779 -0.00297438 0) (0.99817 -0.00296171 0) (0.997555 -0.00294901 0) (0.996936 -0.00293629 0) (0.996312 -0.00292354 0) (0.995683 -0.00291077 0) (0.99505 -0.00289798 0) (0.994411 -0.00288516 0) (0.993767 -0.00287233 0) (0.993118 -0.00285947 0) (0.992465 -0.00284661 0) (0.991807 -0.00283373 0) (0.991143 -0.00282084 0) (0.990475 -0.00280794 0) (0.989802 -0.00279504 0) (0.989125 -0.00278214 0) (0.988442 -0.00276924 0) (0.987755 -0.00275634 0) (0.987063 -0.00274346 0) (0.986366 -0.00273059 0) (0.985664 -0.00271774 0) (0.984958 -0.00270491 0) (0.984247 -0.00269211 0) (0.983531 -0.00267934 0) (0.982811 -0.0026666 0) (0.982085 -0.0026539 0) (0.981356 -0.00264124 0) (0.980621 -0.00262863 0) (0.979881 -0.00261608 0) (0.979137 -0.00260358 0) (0.978388 -0.00259115 0) (0.977634 -0.00257876 0) (0.976876 -0.00256649 0) (0.976112 -0.00255424 0) (0.975344 -0.00254215 0) (0.97457 -0.00253003 0) (0.973792 -0.0025182 0) (0.973009 -0.00250619 0) (0.972221 -0.00249473 0) (0.971427 -0.00248275 0) (0.970631 -0.00247186 0) (0.969824 -0.00245973 0) (0.969021 -0.00244979 0) (0.968199 -0.00243713 0) (0.967394 -0.00242885 0) (0.966548 -0.00241486 0) (0.965753 -0.00240959 0) (0.964865 -0.00239274 0) (0.964107 -0.00239281 0) (0.963134 -0.0023706 0) (0.962481 -0.00237954 0) (0.961318 -0.00234964 0) (0.960931 -0.00236969 0) (0.959345 -0.00233702 0) (1.00172 -0.00334777 0) (1.00121 -0.0033361 0) (1.00069 -0.00332439 0) (1.00016 -0.00331268 0) (0.999632 -0.00330097 0) (0.999098 -0.00328925 0) (0.998561 -0.00327751 0) (0.998018 -0.00326575 0) (0.997472 -0.00325398 0) (0.99692 -0.00324219 0) (0.996365 -0.00323038 0) (0.995804 -0.00321855 0) (0.995239 -0.00320669 0) (0.99467 -0.00319482 0) (0.994095 -0.00318292 0) (0.993516 -0.00317099 0) (0.992933 -0.00315904 0) (0.992344 -0.00314706 0) (0.991751 -0.00313505 0) (0.991153 -0.00312301 0) (0.99055 -0.00311095 0) (0.989942 -0.00309885 0) (0.98933 -0.00308672 0) (0.988712 -0.00307456 0) (0.98809 -0.00306237 0) (0.987463 -0.00305015 0) (0.986831 -0.0030379 0) (0.986194 -0.00302562 0) (0.985552 -0.00301331 0) (0.984906 -0.00300097 0) (0.984254 -0.00298861 0) (0.983597 -0.00297621 0) (0.982936 -0.00296379 0) (0.98227 -0.00295134 0) (0.981598 -0.00293887 0) (0.980922 -0.00292638 0) (0.980241 -0.00291386 0) (0.979555 -0.00290131 0) (0.978864 -0.00288875 0) (0.978168 -0.00287616 0) (0.977468 -0.00286356 0) (0.976762 -0.00285093 0) (0.976051 -0.00283828 0) (0.975336 -0.00282562 0) (0.974616 -0.00281293 0) (0.97389 -0.00280023 0) (0.97316 -0.00278751 0) (0.972425 -0.00277477 0) (0.971685 -0.00276202 0) (0.970941 -0.00274925 0) (0.970191 -0.00273647 0) (0.969437 -0.00272368 0) (0.968678 -0.00271088 0) (0.967914 -0.00269807 0) (0.967145 -0.00268525 0) (0.966371 -0.00267243 0) (0.965593 -0.00265961 0) (0.96481 -0.00264678 0) (0.964023 -0.00263396 0) (0.96323 -0.00262115 0) (0.962433 -0.00260834 0) (0.961632 -0.00259554 0) (0.960825 -0.00258276 0) (0.960014 -0.00257 0) (0.959199 -0.00255725 0) (0.958379 -0.00254453 0) (0.957554 -0.00253184 0) (0.956725 -0.00251918 0) (0.955891 -0.00250655 0) (0.955053 -0.00249396 0) (0.95421 -0.00248141 0) (0.953363 -0.00246891 0) (0.952511 -0.00245645 0) (0.951654 -0.00244405 0) (0.950793 -0.0024317 0) (0.949928 -0.00241941 0) (0.949058 -0.0024072 0) (0.948183 -0.00239503 0) (0.947303 -0.00238298 0) (0.946419 -0.00237095 0) (0.945531 -0.00235909 0) (0.944637 -0.00234719 0) (0.94374 -0.00233558 0) (0.942837 -0.0023238 0) (0.94193 -0.00231255 0) (0.941017 -0.00230081 0) (0.940102 -0.00229011 0) (0.939177 -0.00227827 0) (0.938257 -0.00226844 0) (0.937315 -0.00225617 0) (0.936395 -0.00224785 0) (0.935429 -0.00223448 0) (0.934522 -0.00222879 0) (0.933511 -0.00221312 0) (0.932648 -0.00221192 0) (0.931542 -0.00219202 0) (0.930799 -0.00219809 0) (0.929482 -0.00217219 0) (0.929041 -0.00218761 0) (0.927247 -0.00216078 0) (0.975467 -0.00313394 0) (0.974834 -0.00312212 0) (0.974196 -0.00311027 0) (0.973553 -0.00309843 0) (0.972907 -0.00308658 0) (0.972255 -0.00307473 0) (0.971599 -0.00306286 0) (0.970939 -0.00305098 0) (0.970274 -0.00303908 0) (0.969604 -0.00302717 0) (0.96893 -0.00301524 0) (0.968251 -0.00300329 0) (0.967568 -0.00299133 0) (0.966879 -0.00297934 0) (0.966186 -0.00296734 0) (0.965489 -0.00295532 0) (0.964786 -0.00294327 0) (0.964079 -0.00293121 0) (0.963367 -0.00291912 0) (0.962651 -0.00290701 0) (0.961929 -0.00289488 0) (0.961203 -0.00288273 0) (0.960472 -0.00287056 0) (0.959737 -0.00285836 0) (0.958996 -0.00284614 0) (0.958251 -0.00283391 0) (0.957501 -0.00282165 0) (0.956747 -0.00280937 0) (0.955987 -0.00279707 0) (0.955223 -0.00278475 0) (0.954454 -0.00277242 0) (0.95368 -0.00276007 0) (0.952902 -0.00274771 0) (0.952119 -0.00273532 0) (0.951331 -0.00272293 0) (0.950538 -0.00271052 0) (0.949741 -0.0026981 0) (0.948939 -0.00268567 0) (0.948132 -0.00267322 0) (0.947321 -0.00266076 0) (0.946504 -0.0026483 0) (0.945684 -0.00263582 0) (0.944858 -0.00262334 0) (0.944028 -0.00261084 0) (0.943194 -0.00259834 0) (0.942355 -0.00258583 0) (0.941511 -0.00257332 0) (0.940662 -0.0025608 0) (0.939809 -0.00254828 0) (0.938952 -0.00253575 0) (0.93809 -0.00252323 0) (0.937224 -0.0025107 0) (0.936353 -0.00249817 0) (0.935477 -0.00248565 0) (0.934597 -0.00247313 0) (0.933713 -0.00246062 0) (0.932825 -0.00244812 0) (0.931932 -0.00243562 0) (0.931034 -0.00242315 0) (0.930133 -0.00241068 0) (0.929227 -0.00239824 0) (0.928317 -0.00238582 0) (0.927402 -0.00237342 0) (0.926483 -0.00236104 0) (0.92556 -0.0023487 0) (0.924633 -0.00233638 0) (0.923702 -0.00232411 0) (0.922766 -0.00231186 0) (0.921827 -0.00229966 0) (0.920883 -0.0022875 0) (0.919935 -0.00227539 0) (0.918982 -0.00226333 0) (0.918026 -0.00225132 0) (0.917065 -0.00223936 0) (0.916101 -0.00222747 0) (0.915132 -0.00221564 0) (0.914159 -0.00220388 0) (0.913181 -0.00219217 0) (0.9122 -0.00218057 0) (0.911214 -0.002169 0) (0.910225 -0.0021576 0) (0.909231 -0.00214616 0) (0.908233 -0.00213501 0) (0.90723 -0.0021237 0) (0.906224 -0.00211289 0) (0.905211 -0.00210164 0) (0.904199 -0.00209135 0) (0.903175 -0.00208004 0) (0.902158 -0.00207055 0) (0.901119 -0.00205892 0) (0.900103 -0.00205074 0) (0.899039 -0.00203831 0) (0.89804 -0.00203227 0) (0.896928 -0.00201825 0) (0.895979 -0.00201561 0) (0.894765 -0.0019988 0) (0.89395 -0.00200134 0) (0.892507 -0.00198085 0) (0.892022 -0.00199016 0) (0.89006 -0.00197106 0) (0.942494 -0.00288516 0) (0.941754 -0.00287348 0) (0.94101 -0.00286177 0) (0.940261 -0.00285007 0) (0.939507 -0.00283838 0) (0.93875 -0.00282668 0) (0.937988 -0.00281496 0) (0.937221 -0.00280324 0) (0.93645 -0.00279151 0) (0.935674 -0.00277976 0) (0.934894 -0.00276801 0) (0.93411 -0.00275624 0) (0.933321 -0.00274446 0) (0.932527 -0.00273267 0) (0.93173 -0.00272086 0) (0.930927 -0.00270904 0) (0.93012 -0.00269721 0) (0.929309 -0.00268536 0) (0.928493 -0.00267351 0) (0.927672 -0.00266163 0) (0.926848 -0.00264975 0) (0.926018 -0.00263785 0) (0.925184 -0.00262594 0) (0.924346 -0.00261401 0) (0.923503 -0.00260208 0) (0.922656 -0.00259013 0) (0.921804 -0.00257817 0) (0.920948 -0.00256621 0) (0.920088 -0.00255423 0) (0.919223 -0.00254225 0) (0.918353 -0.00253025 0) (0.91748 -0.00251826 0) (0.916602 -0.00250625 0) (0.915719 -0.00249424 0) (0.914832 -0.00248223 0) (0.913941 -0.00247021 0) (0.913046 -0.00245819 0) (0.912146 -0.00244617 0) (0.911242 -0.00243414 0) (0.910334 -0.00242212 0) (0.909422 -0.00241009 0) (0.908505 -0.00239806 0) (0.907584 -0.00238604 0) (0.906659 -0.00237401 0) (0.90573 -0.00236199 0) (0.904796 -0.00234997 0) (0.903859 -0.00233796 0) (0.902917 -0.00232595 0) (0.901971 -0.00231394 0) (0.901022 -0.00230195 0) (0.900068 -0.00228996 0) (0.89911 -0.00227798 0) (0.898148 -0.00226601 0) (0.897182 -0.00225405 0) (0.896213 -0.00224211 0) (0.895239 -0.00223018 0) (0.894262 -0.00221827 0) (0.89328 -0.00220638 0) (0.892295 -0.00219452 0) (0.891306 -0.00218267 0) (0.890313 -0.00217085 0) (0.889317 -0.00215906 0) (0.888316 -0.0021473 0) (0.887312 -0.00213557 0) (0.886304 -0.00212388 0) (0.885293 -0.00211222 0) (0.884278 -0.0021006 0) (0.883259 -0.00208903 0) (0.882236 -0.00207749 0) (0.88121 -0.00206601 0) (0.88018 -0.00205457 0) (0.879147 -0.00204318 0) (0.878109 -0.00203185 0) (0.877069 -0.00202058 0) (0.876024 -0.00200937 0) (0.874976 -0.00199821 0) (0.873924 -0.00198714 0) (0.872869 -0.00197612 0) (0.87181 -0.0019652 0) (0.870747 -0.00195432 0) (0.869681 -0.00194359 0) (0.868611 -0.00193285 0) (0.867538 -0.00192237 0) (0.86646 -0.00191175 0) (0.86538 -0.0019016 0) (0.864293 -0.00189106 0) (0.863208 -0.00188139 0) (0.862111 -0.00187083 0) (0.861023 -0.00186188 0) (0.859911 -0.00185111 0) (0.858827 -0.00184325 0) (0.85769 -0.00183202 0) (0.856624 -0.00182574 0) (0.855439 -0.0018137 0) (0.854428 -0.00180958 0) (0.853136 -0.00179645 0) (0.852269 -0.00179501 0) (0.850734 -0.00178101 0) (0.850219 -0.00178307 0) (0.848137 -0.00177317 0) (0.902782 -0.00260901 0) (0.901954 -0.00259776 0) (0.901122 -0.0025865 0) (0.900286 -0.00257525 0) (0.899446 -0.002564 0) (0.898601 -0.00255275 0) (0.897753 -0.00254149 0) (0.8969 -0.00253023 0) (0.896043 -0.00251896 0) (0.895182 -0.00250769 0) (0.894317 -0.00249641 0) (0.893448 -0.00248513 0) (0.892574 -0.00247384 0) (0.891697 -0.00246255 0) (0.890815 -0.00245125 0) (0.889929 -0.00243994 0) (0.889039 -0.00242863 0) (0.888145 -0.00241731 0) (0.887247 -0.00240599 0) (0.886345 -0.00239466 0) (0.885439 -0.00238333 0) (0.884529 -0.00237199 0) (0.883615 -0.00236064 0) (0.882696 -0.0023493 0) (0.881774 -0.00233795 0) (0.880848 -0.0023266 0) (0.879918 -0.00231524 0) (0.878984 -0.00230389 0) (0.878045 -0.00229253 0) (0.877103 -0.00228118 0) (0.876157 -0.00226982 0) (0.875208 -0.00225847 0) (0.874254 -0.00224712 0) (0.873296 -0.00223578 0) (0.872335 -0.00222443 0) (0.87137 -0.00221309 0) (0.870401 -0.00220176 0) (0.869428 -0.00219043 0) (0.868452 -0.00217911 0) (0.867472 -0.0021678 0) (0.866488 -0.00215649 0) (0.8655 -0.00214519 0) (0.864509 -0.0021339 0) (0.863514 -0.00212262 0) (0.862516 -0.00211135 0) (0.861514 -0.00210009 0) (0.860508 -0.00208884 0) (0.859499 -0.0020776 0) (0.858486 -0.00206638 0) (0.85747 -0.00205517 0) (0.85645 -0.00204398 0) (0.855427 -0.0020328 0) (0.854401 -0.00202164 0) (0.853371 -0.0020105 0) (0.852338 -0.00199938 0) (0.851301 -0.00198828 0) (0.850261 -0.00197721 0) (0.849218 -0.00196616 0) (0.848172 -0.00195513 0) (0.847122 -0.00194414 0) (0.846069 -0.00193318 0) (0.845013 -0.00192224 0) (0.843954 -0.00191135 0) (0.842891 -0.00190048 0) (0.841825 -0.00188966 0) (0.840757 -0.00187887 0) (0.839685 -0.00186813 0) (0.83861 -0.00185743 0) (0.837532 -0.00184678 0) (0.83645 -0.00183617 0) (0.835366 -0.00182561 0) (0.834279 -0.00181511 0) (0.833188 -0.00180466 0) (0.832095 -0.00179426 0) (0.830999 -0.00178393 0) (0.829899 -0.00177366 0) (0.828796 -0.00176347 0) (0.827691 -0.00175332 0) (0.826582 -0.00174328 0) (0.82547 -0.00173327 0) (0.824356 -0.00172341 0) (0.823238 -0.00171354 0) (0.822117 -0.00170392 0) (0.820993 -0.00169417 0) (0.819867 -0.00168487 0) (0.818735 -0.00167521 0) (0.817605 -0.00166634 0) (0.816464 -0.00165671 0) (0.815332 -0.00164846 0) (0.814177 -0.00163875 0) (0.813051 -0.00163135 0) (0.811871 -0.00162149 0) (0.810766 -0.00161511 0) (0.809536 -0.00160526 0) (0.808491 -0.00159969 0) (0.807151 -0.00159059 0) (0.806256 -0.00158496 0) (0.804667 -0.00157815 0) (0.804136 -0.00157221 0) (0.801985 -0.00157249 0) (0.856654 -0.002315 0) (0.855764 -0.00230447 0) (0.854869 -0.00229393 0) (0.853971 -0.00228341 0) (0.853069 -0.00227289 0) (0.852163 -0.00226237 0) (0.851254 -0.00225186 0) (0.850341 -0.00224134 0) (0.849424 -0.00223082 0) (0.848504 -0.00222031 0) (0.84758 -0.00220979 0) (0.846652 -0.00219927 0) (0.84572 -0.00218876 0) (0.844785 -0.00217824 0) (0.843847 -0.00216773 0) (0.842904 -0.00215721 0) (0.841958 -0.0021467 0) (0.841009 -0.00213618 0) (0.840056 -0.00212567 0) (0.839099 -0.00211516 0) (0.838139 -0.00210465 0) (0.837175 -0.00209414 0) (0.836208 -0.00208364 0) (0.835237 -0.00207314 0) (0.834263 -0.00206264 0) (0.833285 -0.00205215 0) (0.832304 -0.00204166 0) (0.83132 -0.00203118 0) (0.830332 -0.0020207 0) (0.829341 -0.00201023 0) (0.828346 -0.00199977 0) (0.827348 -0.00198931 0) (0.826347 -0.00197887 0) (0.825343 -0.00196843 0) (0.824335 -0.00195801 0) (0.823324 -0.00194759 0) (0.82231 -0.00193719 0) (0.821293 -0.00192679 0) (0.820272 -0.00191641 0) (0.819248 -0.00190604 0) (0.818222 -0.00189569 0) (0.817192 -0.00188535 0) (0.816159 -0.00187502 0) (0.815123 -0.0018647 0) (0.814084 -0.00185441 0) (0.813042 -0.00184413 0) (0.811997 -0.00183386 0) (0.810949 -0.00182361 0) (0.809898 -0.00181338 0) (0.808844 -0.00180317 0) (0.807788 -0.00179298 0) (0.806728 -0.00178281 0) (0.805666 -0.00177266 0) (0.804601 -0.00176254 0) (0.803533 -0.00175244 0) (0.802462 -0.00174236 0) (0.801389 -0.00173231 0) (0.800313 -0.00172229 0) (0.799234 -0.0017123 0) (0.798153 -0.00170234 0) (0.797069 -0.00169241 0) (0.795982 -0.00168251 0) (0.794893 -0.00167265 0) (0.793801 -0.00166283 0) (0.792707 -0.00165304 0) (0.79161 -0.00164329 0) (0.790511 -0.00163359 0) (0.789408 -0.00162393 0) (0.788304 -0.00161431 0) (0.787197 -0.00160474 0) (0.786087 -0.00159523 0) (0.784975 -0.00158575 0) (0.783861 -0.00157634 0) (0.782744 -0.00156698 0) (0.781624 -0.00155768 0) (0.780503 -0.00154843 0) (0.779378 -0.00153926 0) (0.778251 -0.00153014 0) (0.777122 -0.00152111 0) (0.775991 -0.00151212 0) (0.774857 -0.00150328 0) (0.77372 -0.00149441 0) (0.772581 -0.00148579 0) (0.771439 -0.00147705 0) (0.770296 -0.00146871 0) (0.769147 -0.00146008 0) (0.768002 -0.00145213 0) (0.766845 -0.00144355 0) (0.765699 -0.00143612 0) (0.764529 -0.00142757 0) (0.76339 -0.00142076 0) (0.762195 -0.00141237 0) (0.76108 -0.00140601 0) (0.759835 -0.00139843 0) (0.758782 -0.00139155 0) (0.757426 -0.00138656 0) (0.756526 -0.00137679 0) (0.75492 -0.00137745 0) (0.754387 -0.00136319 0) (0.752217 -0.0013741 0) (0.804731 -0.00201347 0) (0.803806 -0.0020039 0) (0.802878 -0.00199433 0) (0.801946 -0.00198478 0) (0.801011 -0.00197522 0) (0.800073 -0.00196567 0) (0.799132 -0.00195613 0) (0.798187 -0.00194659 0) (0.79724 -0.00193705 0) (0.796289 -0.00192752 0) (0.795335 -0.00191799 0) (0.794377 -0.00190847 0) (0.793417 -0.00189896 0) (0.792453 -0.00188944 0) (0.791487 -0.00187994 0) (0.790517 -0.00187043 0) (0.789544 -0.00186094 0) (0.788569 -0.00185145 0) (0.78759 -0.00184196 0) (0.786608 -0.00183248 0) (0.785623 -0.00182301 0) (0.784635 -0.00181355 0) (0.783644 -0.00180409 0) (0.782651 -0.00179464 0) (0.781654 -0.0017852 0) (0.780654 -0.00177577 0) (0.779652 -0.00176635 0) (0.778647 -0.00175694 0) (0.777639 -0.00174754 0) (0.776628 -0.00173815 0) (0.775614 -0.00172877 0) (0.774598 -0.0017194 0) (0.773579 -0.00171005 0) (0.772557 -0.00170071 0) (0.771532 -0.00169138 0) (0.770505 -0.00168207 0) (0.769475 -0.00167277 0) (0.768443 -0.00166349 0) (0.767407 -0.00165422 0) (0.76637 -0.00164497 0) (0.76533 -0.00163573 0) (0.764287 -0.00162651 0) (0.763242 -0.00161731 0) (0.762194 -0.00160813 0) (0.761144 -0.00159896 0) (0.760091 -0.00158982 0) (0.759036 -0.00158069 0) (0.757979 -0.00157158 0) (0.756919 -0.00156249 0) (0.755857 -0.00155343 0) (0.754793 -0.00154438 0) (0.753726 -0.00153536 0) (0.752657 -0.00152636 0) (0.751586 -0.00151739 0) (0.750513 -0.00150844 0) (0.749437 -0.00149952 0) (0.748359 -0.00149062 0) (0.747279 -0.00148175 0) (0.746197 -0.00147292 0) (0.745113 -0.00146411 0) (0.744027 -0.00145533 0) (0.742939 -0.00144659 0) (0.741848 -0.00143788 0) (0.740756 -0.00142921 0) (0.739661 -0.00142057 0) (0.738565 -0.00141198 0) (0.737466 -0.00140342 0) (0.736366 -0.0013949 0) (0.735264 -0.00138643 0) (0.734159 -0.001378 0) (0.733053 -0.00136961 0) (0.731945 -0.00136128 0) (0.730834 -0.00135299 0) (0.729722 -0.00134476 0) (0.728608 -0.00133658 0) (0.727492 -0.00132846 0) (0.726374 -0.0013204 0) (0.725254 -0.00131239 0) (0.724133 -0.00130447 0) (0.723009 -0.00129658 0) (0.721884 -0.00128882 0) (0.720756 -0.00128106 0) (0.719627 -0.0012735 0) (0.718494 -0.00126585 0) (0.717362 -0.00125856 0) (0.716225 -0.00125101 0) (0.715091 -0.00124406 0) (0.713946 -0.00123659 0) (0.712813 -0.00123007 0) (0.711655 -0.00122273 0) (0.710531 -0.00121659 0) (0.709349 -0.00120969 0) (0.70825 -0.00120347 0) (0.707018 -0.00119812 0) (0.705982 -0.00119012 0) (0.70464 -0.0011891 0) (0.703758 -0.00117547 0) (0.702168 -0.00118343 0) (0.701647 -0.00116099 0) (0.699507 -0.00118242 0) (0.747851 -0.00171456 0) (0.746921 -0.00170612 0) (0.745988 -0.00169769 0) (0.745052 -0.00168926 0) (0.744113 -0.00168084 0) (0.743171 -0.00167243 0) (0.742227 -0.00166402 0) (0.74128 -0.00165562 0) (0.74033 -0.00164722 0) (0.739378 -0.00163884 0) (0.738423 -0.00163046 0) (0.737466 -0.00162209 0) (0.736505 -0.00161372 0) (0.735542 -0.00160537 0) (0.734577 -0.00159702 0) (0.733609 -0.00158868 0) (0.732638 -0.00158035 0) (0.731665 -0.00157203 0) (0.73069 -0.00156372 0) (0.729711 -0.00155542 0) (0.728731 -0.00154712 0) (0.727748 -0.00153884 0) (0.726762 -0.00153057 0) (0.725774 -0.00152231 0) (0.724784 -0.00151405 0) (0.723791 -0.00150582 0) (0.722796 -0.00149759 0) (0.721799 -0.00148937 0) (0.720799 -0.00148117 0) (0.719798 -0.00147298 0) (0.718793 -0.0014648 0) (0.717787 -0.00145664 0) (0.716778 -0.0014485 0) (0.715768 -0.00144036 0) (0.714755 -0.00143225 0) (0.713739 -0.00142415 0) (0.712722 -0.00141606 0) (0.711703 -0.00140799 0) (0.710681 -0.00139994 0) (0.709658 -0.00139191 0) (0.708632 -0.00138389 0) (0.707605 -0.00137589 0) (0.706575 -0.00136791 0) (0.705544 -0.00135995 0) (0.70451 -0.001352 0) (0.703475 -0.00134408 0) (0.702438 -0.00133617 0) (0.701398 -0.00132829 0) (0.700357 -0.00132042 0) (0.699315 -0.00131258 0) (0.69827 -0.00130476 0) (0.697224 -0.00129696 0) (0.696175 -0.00128918 0) (0.695125 -0.00128143 0) (0.694074 -0.0012737 0) (0.69302 -0.001266 0) (0.691965 -0.00125832 0) (0.690908 -0.00125067 0) (0.68985 -0.00124305 0) (0.68879 -0.00123545 0) (0.687728 -0.00122789 0) (0.686665 -0.00122035 0) (0.6856 -0.00121285 0) (0.684534 -0.00120538 0) (0.683466 -0.00119794 0) (0.682396 -0.00119054 0) (0.681325 -0.00118318 0) (0.680253 -0.00117586 0) (0.679179 -0.00116857 0) (0.678103 -0.00116132 0) (0.677026 -0.00115412 0) (0.675947 -0.00114696 0) (0.674867 -0.00113984 0) (0.673786 -0.00113277 0) (0.672703 -0.00112576 0) (0.671618 -0.00111879 0) (0.670532 -0.00111188 0) (0.669445 -0.00110501 0) (0.668356 -0.00109823 0) (0.667266 -0.00109147 0) (0.666174 -0.00108483 0) (0.66508 -0.00107819 0) (0.663986 -0.00107173 0) (0.662889 -0.00106519 0) (0.661793 -0.00105897 0) (0.660691 -0.00105253 0) (0.659593 -0.00104659 0) (0.658485 -0.00104025 0) (0.657389 -0.00103465 0) (0.656269 -0.00102851 0) (0.655183 -0.00102309 0) (0.654039 -0.00101764 0) (0.652979 -0.00101166 0) (0.651785 -0.00100838 0) (0.650789 -0.000999512 0) (0.649487 -0.00100212 0) (0.648642 -0.00098513 0) (0.647101 -0.000999827 0) (0.646605 -0.000969778 0) (0.644536 -0.00100108 0) (0.686977 -0.00142729 0) (0.686068 -0.00142007 0) (0.685157 -0.00141286 0) (0.684244 -0.00140567 0) (0.683329 -0.00139847 0) (0.682411 -0.00139127 0) (0.681491 -0.00138408 0) (0.680569 -0.00137691 0) (0.679644 -0.00136974 0) (0.678717 -0.00136258 0) (0.677788 -0.00135544 0) (0.676857 -0.0013483 0) (0.675924 -0.00134117 0) (0.674989 -0.00133404 0) (0.674051 -0.00132693 0) (0.673111 -0.00131983 0) (0.67217 -0.00131274 0) (0.671226 -0.00130566 0) (0.67028 -0.00129859 0) (0.669332 -0.00129153 0) (0.668382 -0.00128448 0) (0.66743 -0.00127744 0) (0.666476 -0.00127041 0) (0.66552 -0.00126339 0) (0.664563 -0.00125639 0) (0.663603 -0.0012494 0) (0.662641 -0.00124242 0) (0.661678 -0.00123545 0) (0.660713 -0.0012285 0) (0.659746 -0.00122156 0) (0.658777 -0.00121463 0) (0.657806 -0.00120772 0) (0.656834 -0.00120083 0) (0.655859 -0.00119394 0) (0.654883 -0.00118708 0) (0.653906 -0.00118023 0) (0.652926 -0.00117339 0) (0.651945 -0.00116657 0) (0.650963 -0.00115977 0) (0.649979 -0.00115298 0) (0.648993 -0.00114621 0) (0.648005 -0.00113946 0) (0.647016 -0.00113273 0) (0.646026 -0.00112601 0) (0.645034 -0.00111931 0) (0.64404 -0.00111263 0) (0.643045 -0.00110597 0) (0.642049 -0.00109932 0) (0.641051 -0.0010927 0) (0.640051 -0.00108609 0) (0.639051 -0.00107951 0) (0.638049 -0.00107294 0) (0.637045 -0.0010664 0) (0.63604 -0.00105987 0) (0.635034 -0.00105337 0) (0.634027 -0.00104689 0) (0.633018 -0.00104044 0) (0.632008 -0.00103401 0) (0.630997 -0.0010276 0) (0.629984 -0.00102122 0) (0.628971 -0.00101487 0) (0.627956 -0.00100854 0) (0.626939 -0.00100224 0) (0.625922 -0.000995971 0) (0.624904 -0.000989731 0) (0.623884 -0.000983523 0) (0.622863 -0.000977348 0) (0.621841 -0.000971205 0) (0.620818 -0.000965096 0) (0.619794 -0.000959023 0) (0.618769 -0.000952987 0) (0.617742 -0.000946989 0) (0.616715 -0.000941032 0) (0.615686 -0.000935114 0) (0.614656 -0.000929243 0) (0.613625 -0.000923411 0) (0.612593 -0.000917637 0) (0.61156 -0.000911895 0) (0.610526 -0.000906229 0) (0.609491 -0.000900583 0) (0.608454 -0.000895045 0) (0.607416 -0.000889496 0) (0.606378 -0.000884117 0) (0.605337 -0.000878663 0) (0.604298 -0.000873484 0) (0.603253 -0.000868121 0) (0.602213 -0.000863182 0) (0.601161 -0.000857935 0) (0.600124 -0.00085323 0) (0.599062 -0.000848256 0) (0.598035 -0.000843553 0) (0.596949 -0.000839448 0) (0.595949 -0.000833785 0) (0.594814 -0.000832367 0) (0.593878 -0.000822898 0) (0.592638 -0.00082863 0) (0.591847 -0.000808938 0) (0.590379 -0.000829469 0) (0.589918 -0.0007928 0) (0.587956 -0.000832813 0) (0.623106 -0.001159 0) (0.622243 -0.00115303 0) (0.621378 -0.00114707 0) (0.620512 -0.00114112 0) (0.619643 -0.00113516 0) (0.618772 -0.0011292 0) (0.6179 -0.00112325 0) (0.617026 -0.00111731 0) (0.61615 -0.00111139 0) (0.615272 -0.00110547 0) (0.614392 -0.00109956 0) (0.613511 -0.00109366 0) (0.612628 -0.00108777 0) (0.611743 -0.00108189 0) (0.610856 -0.00107601 0) (0.609967 -0.00107015 0) (0.609077 -0.0010643 0) (0.608185 -0.00105846 0) (0.607292 -0.00105263 0) (0.606397 -0.00104681 0) (0.6055 -0.00104099 0) (0.604602 -0.00103519 0) (0.603702 -0.0010294 0) (0.602801 -0.00102363 0) (0.601897 -0.00101786 0) (0.600993 -0.0010121 0) (0.600087 -0.00100636 0) (0.599179 -0.00100063 0) (0.59827 -0.000994911 0) (0.59736 -0.000989205 0) (0.596448 -0.000983512 0) (0.595535 -0.000977832 0) (0.59462 -0.000972166 0) (0.593704 -0.000966513 0) (0.592786 -0.000960874 0) (0.591867 -0.00095525 0) (0.590947 -0.00094964 0) (0.590026 -0.000944044 0) (0.589103 -0.000938463 0) (0.588179 -0.000932897 0) (0.587254 -0.000927346 0) (0.586327 -0.00092181 0) (0.5854 -0.000916289 0) (0.584471 -0.000910784 0) (0.583541 -0.000905295 0) (0.58261 -0.000899821 0) (0.581677 -0.000894364 0) (0.580744 -0.000888923 0) (0.579809 -0.000883499 0) (0.578873 -0.000878092 0) (0.577937 -0.000872701 0) (0.576999 -0.000867328 0) (0.57606 -0.000861973 0) (0.57512 -0.000856637 0) (0.574179 -0.000851319 0) (0.573237 -0.000846021 0) (0.572294 -0.000840742 0) (0.571351 -0.000835485 0) (0.570406 -0.000830248 0) (0.56946 -0.000825033 0) (0.568514 -0.000819841 0) (0.567566 -0.000814672 0) (0.566618 -0.000809526 0) (0.565668 -0.000804406 0) (0.564718 -0.000799311 0) (0.563767 -0.000794242 0) (0.562815 -0.000789202 0) (0.561862 -0.000784188 0) (0.560909 -0.000779204 0) (0.559954 -0.00077425 0) (0.558999 -0.000769328 0) (0.558043 -0.000764437 0) (0.557086 -0.000759581 0) (0.556128 -0.000754758 0) (0.55517 -0.000749976 0) (0.55421 -0.000745225 0) (0.55325 -0.000740525 0) (0.552289 -0.000735851 0) (0.551327 -0.000731242 0) (0.550364 -0.000726649 0) (0.5494 -0.000722149 0) (0.548435 -0.000717638 0) (0.547471 -0.000713272 0) (0.546503 -0.000708844 0) (0.545537 -0.000704644 0) (0.544566 -0.0007003 0) (0.543601 -0.000696289 0) (0.542624 -0.000692073 0) (0.541662 -0.00068821 0) (0.540673 -0.000684316 0) (0.539722 -0.000680298 0) (0.538711 -0.000677417 0) (0.537787 -0.000672122 0) (0.536728 -0.000672295 0) (0.535867 -0.000662505 0) (0.534706 -0.000670752 0) (0.533984 -0.000649138 0) (0.53261 -0.000674319 0) (0.532193 -0.000632384 0) (0.530366 -0.000679505 0) (0.557196 -0.000915174 0) (0.556398 -0.000910399 0) (0.555598 -0.00090565 0) (0.554797 -0.00090089 0) (0.553995 -0.000896118 0) (0.55319 -0.00089135 0) (0.552384 -0.000886594 0) (0.551577 -0.000881848 0) (0.550768 -0.000877109 0) (0.549958 -0.000872379 0) (0.549146 -0.000867657 0) (0.548333 -0.000862944 0) (0.547518 -0.00085824 0) (0.546702 -0.000853545 0) (0.545885 -0.000848858 0) (0.545066 -0.000844179 0) (0.544246 -0.00083951 0) (0.543424 -0.00083485 0) (0.542601 -0.000830198 0) (0.541777 -0.000825556 0) (0.540951 -0.000820924 0) (0.540125 -0.0008163 0) (0.539296 -0.000811687 0) (0.538467 -0.000807083 0) (0.537636 -0.000802488 0) (0.536805 -0.000797904 0) (0.535972 -0.000793331 0) (0.535137 -0.000788768 0) (0.534302 -0.000784216 0) (0.533465 -0.000779674 0) (0.532627 -0.000775144 0) (0.531789 -0.000770626 0) (0.530949 -0.000766118 0) (0.530108 -0.000761623 0) (0.529265 -0.000757139 0) (0.528422 -0.000752667 0) (0.527578 -0.000748207 0) (0.526733 -0.00074376 0) (0.525886 -0.000739325 0) (0.525039 -0.000734902 0) (0.524191 -0.000730492 0) (0.523342 -0.000726094 0) (0.522491 -0.00072171 0) (0.52164 -0.000717338 0) (0.520788 -0.000712979 0) (0.519935 -0.000708633 0) (0.519082 -0.000704301 0) (0.518227 -0.000699982 0) (0.517371 -0.000695676 0) (0.516515 -0.000691385 0) (0.515658 -0.000687107 0) (0.5148 -0.000682844 0) (0.513941 -0.000678595 0) (0.513081 -0.000674361 0) (0.512221 -0.000670143 0) (0.51136 -0.00066594 0) (0.510498 -0.000661753 0) (0.509635 -0.000657584 0) (0.508772 -0.000653431 0) (0.507908 -0.000649296 0) (0.507043 -0.000645179 0) (0.506178 -0.000641081 0) (0.505312 -0.000637002 0) (0.504445 -0.000632943 0) (0.503578 -0.000628905 0) (0.50271 -0.000624889 0) (0.501841 -0.000620896 0) (0.500972 -0.000616924 0) (0.500102 -0.000612976 0) (0.499231 -0.000609053 0) (0.49836 -0.000605155 0) (0.497488 -0.000601284 0) (0.496615 -0.00059744 0) (0.495742 -0.000593624 0) (0.494869 -0.000589841 0) (0.493994 -0.000586084 0) (0.493119 -0.000582367 0) (0.492243 -0.000578672 0) (0.491367 -0.000575031 0) (0.49049 -0.000571402 0) (0.489612 -0.00056785 0) (0.488734 -0.000564288 0) (0.487855 -0.000560846 0) (0.486974 -0.000557355 0) (0.486095 -0.000554045 0) (0.485211 -0.000550632 0) (0.484332 -0.00054746 0) (0.483442 -0.000544184 0) (0.482568 -0.00054108 0) (0.481667 -0.000538167 0) (0.480804 -0.000534773 0) (0.47988 -0.000532972 0) (0.479045 -0.000528069 0) (0.478074 -0.000529543 0) (0.4773 -0.000519702 0) (0.476232 -0.000529795 0) (0.475589 -0.000507117 0) (0.474324 -0.000535553 0) (0.473958 -0.000490028 0) (0.472287 -0.000542253 0) (0.490107 -0.000699382 0) (0.489388 -0.000695715 0) (0.488668 -0.000692073 0) (0.487947 -0.000688412 0) (0.487225 -0.000684737 0) (0.486501 -0.000681065 0) (0.485776 -0.000677404 0) (0.48505 -0.000673751 0) (0.484322 -0.000670105 0) (0.483593 -0.000666466 0) (0.482864 -0.000662834 0) (0.482133 -0.00065921 0) (0.4814 -0.000655592 0) (0.480667 -0.000651982 0) (0.479932 -0.00064838 0) (0.479197 -0.000644784 0) (0.47846 -0.000641196 0) (0.477722 -0.000637615 0) (0.476983 -0.000634042 0) (0.476243 -0.000630476 0) (0.475502 -0.000626918 0) (0.47476 -0.000623368 0) (0.474017 -0.000619826 0) (0.473272 -0.000616291 0) (0.472527 -0.000612764 0) (0.471781 -0.000609246 0) (0.471034 -0.000605736 0) (0.470286 -0.000602234 0) (0.469537 -0.000598742 0) (0.468787 -0.000595258 0) (0.468036 -0.000591783 0) (0.467284 -0.000588317 0) (0.466531 -0.00058486 0) (0.465778 -0.000581412 0) (0.465023 -0.000577974 0) (0.464268 -0.000574545 0) (0.463512 -0.000571126 0) (0.462755 -0.000567717 0) (0.461997 -0.000564317 0) (0.461238 -0.000560927 0) (0.460479 -0.000557547 0) (0.459719 -0.000554177 0) (0.458958 -0.000550817 0) (0.458196 -0.000547466 0) (0.457434 -0.000544126 0) (0.456671 -0.000540796 0) (0.455907 -0.000537477 0) (0.455143 -0.000534167 0) (0.454378 -0.000530869 0) (0.453612 -0.000527581 0) (0.452846 -0.000524303 0) (0.452079 -0.000521037 0) (0.451311 -0.000517781 0) (0.450543 -0.000514537 0) (0.449774 -0.000511305 0) (0.449004 -0.000508086 0) (0.448234 -0.000504878 0) (0.447464 -0.000501684 0) (0.446693 -0.000498502 0) (0.445921 -0.000495335 0) (0.445149 -0.000492181 0) (0.444376 -0.000489041 0) (0.443603 -0.000485917 0) (0.442829 -0.000482808 0) (0.442055 -0.000479715 0) (0.44128 -0.00047664 0) (0.440505 -0.000473582 0) (0.439729 -0.000470541 0) (0.438953 -0.000467518 0) (0.438176 -0.000464514 0) (0.437399 -0.000461531 0) (0.436621 -0.000458567 0) (0.435843 -0.000455626 0) (0.435064 -0.000452706 0) (0.434285 -0.000449812 0) (0.433506 -0.000446938 0) (0.432725 -0.000444097 0) (0.431945 -0.000441272 0) (0.431164 -0.000438489 0) (0.430382 -0.000435716 0) (0.4296 -0.000433004 0) (0.428816 -0.000430285 0) (0.428033 -0.000427657 0) (0.427248 -0.000424999 0) (0.426465 -0.000422469 0) (0.425677 -0.000419886 0) (0.424895 -0.000417445 0) (0.424101 -0.000415007 0) (0.423323 -0.000412559 0) (0.422518 -0.000410516 0) (0.421752 -0.000407667 0) (0.420925 -0.000406794 0) (0.420186 -0.000402284 0) (0.419314 -0.000404773 0) (0.418634 -0.000395126 0) (0.41767 -0.000406381 0) (0.417112 -0.000383522 0) (0.415967 -0.000413687 0) (0.415657 -0.00036651 0) (0.414158 -0.000421497 0) (0.422567 -0.000513527 0) (0.421938 -0.00051084 0) (0.421308 -0.000508174 0) (0.420676 -0.000505483 0) (0.420044 -0.000502776 0) (0.419411 -0.000500072 0) (0.418776 -0.000497377 0) (0.418141 -0.00049469 0) (0.417504 -0.000492007 0) (0.416867 -0.000489329 0) (0.416228 -0.000486657 0) (0.415589 -0.000483992 0) (0.414949 -0.000481331 0) (0.414307 -0.000478676 0) (0.413665 -0.000476027 0) (0.413022 -0.000473384 0) (0.412378 -0.000470746 0) (0.411733 -0.000468113 0) (0.411087 -0.000465487 0) (0.41044 -0.000462866 0) (0.409793 -0.000460252 0) (0.409144 -0.000457643 0) (0.408495 -0.00045504 0) (0.407845 -0.000452443 0) (0.407194 -0.000449851 0) (0.406542 -0.000447266 0) (0.405889 -0.000444687 0) (0.405236 -0.000442115 0) (0.404582 -0.000439549 0) (0.403927 -0.00043699 0) (0.403271 -0.000434437 0) (0.402615 -0.000431892 0) (0.401958 -0.000429352 0) (0.4013 -0.00042682 0) (0.400641 -0.000424295 0) (0.399982 -0.000421777 0) (0.399322 -0.000419266 0) (0.398662 -0.000416762 0) (0.398001 -0.000414265 0) (0.397339 -0.000411775 0) (0.396676 -0.000409293 0) (0.396013 -0.000406818 0) (0.395349 -0.00040435 0) (0.394685 -0.000401889 0) (0.39402 -0.000399436 0) (0.393355 -0.00039699 0) (0.392689 -0.000394552 0) (0.392022 -0.000392121 0) (0.391355 -0.000389697 0) (0.390688 -0.000387282 0) (0.390019 -0.000384874 0) (0.389351 -0.000382474 0) (0.388682 -0.000380082 0) (0.388012 -0.000377698 0) (0.387342 -0.000375323 0) (0.386671 -0.000372956 0) (0.386 -0.000370599 0) (0.385329 -0.000368251 0) (0.384657 -0.000365912 0) (0.383985 -0.000363584 0) (0.383312 -0.000361265 0) (0.382639 -0.000358957 0) (0.381965 -0.00035666 0) (0.381291 -0.000354374 0) (0.380617 -0.0003521 0) (0.379942 -0.00034984 0) (0.379267 -0.000347591 0) (0.378591 -0.000345355 0) (0.377915 -0.000343132 0) (0.377239 -0.000340924 0) (0.376562 -0.000338731 0) (0.375885 -0.000336553 0) (0.375208 -0.000334391 0) (0.37453 -0.000332245 0) (0.373852 -0.000330119 0) (0.373173 -0.000328008 0) (0.372494 -0.00032592 0) (0.371814 -0.000323846 0) (0.371135 -0.000321802 0) (0.370454 -0.000319768 0) (0.369773 -0.000317777 0) (0.369091 -0.000315785 0) (0.36841 -0.000313854 0) (0.367727 -0.000311915 0) (0.367046 -0.00031005 0) (0.366359 -0.000308184 0) (0.365679 -0.000306359 0) (0.364987 -0.00030465 0) (0.364312 -0.000302748 0) (0.363609 -0.000301459 0) (0.362946 -0.000299065 0) (0.362222 -0.000298972 0) (0.361585 -0.000294836 0) (0.360816 -0.000298065 0) (0.360236 -0.000288827 0) (0.359382 -0.000300584 0) (0.358914 -0.000278411 0) (0.357898 -0.000308721 0) (0.357646 -0.000262026 0) (0.356328 -0.00031715 0) (0.355158 -0.000358131 0) (0.354625 -0.000356275 0) (0.35409 -0.000354434 0) (0.353555 -0.000352563 0) (0.353019 -0.000350677 0) (0.352482 -0.000348793 0) (0.351944 -0.000346917 0) (0.351405 -0.000345046 0) (0.350866 -0.000343179 0) (0.350325 -0.000341316 0) (0.349784 -0.000339457 0) (0.349242 -0.000337602 0) (0.348699 -0.000335751 0) (0.348156 -0.000333904 0) (0.347611 -0.000332061 0) (0.347066 -0.000330222 0) (0.34652 -0.000328387 0) (0.345974 -0.000326556 0) (0.345426 -0.000324729 0) (0.344878 -0.000322906 0) (0.344329 -0.000321088 0) (0.34378 -0.000319273 0) (0.34323 -0.000317463 0) (0.342679 -0.000315656 0) (0.342127 -0.000313854 0) (0.341575 -0.000312056 0) (0.341022 -0.000310262 0) (0.340469 -0.000308472 0) (0.339915 -0.000306688 0) (0.33936 -0.000304908 0) (0.338804 -0.000303132 0) (0.338248 -0.000301361 0) (0.337692 -0.000299595 0) (0.337135 -0.000297833 0) (0.336577 -0.000296076 0) (0.336019 -0.000294324 0) (0.33546 -0.000292577 0) (0.3349 -0.000290834 0) (0.33434 -0.000289097 0) (0.33378 -0.000287364 0) (0.333219 -0.000285636 0) (0.332657 -0.000283913 0) (0.332095 -0.000282195 0) (0.331533 -0.000280482 0) (0.33097 -0.000278774 0) (0.330407 -0.000277071 0) (0.329843 -0.000275373 0) (0.329278 -0.00027368 0) (0.328714 -0.000271992 0) (0.328148 -0.000270309 0) (0.327583 -0.000268631 0) (0.327017 -0.000266959 0) (0.32645 -0.000265292 0) (0.325883 -0.00026363 0) (0.325316 -0.000261974 0) (0.324749 -0.000260324 0) (0.324181 -0.00025868 0) (0.323612 -0.000257042 0) (0.323044 -0.000255411 0) (0.322475 -0.000253786 0) (0.321905 -0.000252169 0) (0.321335 -0.000250558 0) (0.320765 -0.000248955 0) (0.320195 -0.000247359 0) (0.319624 -0.000245772 0) (0.319053 -0.000244194 0) (0.318482 -0.000242624 0) (0.31791 -0.000241063 0) (0.317338 -0.000239511 0) (0.316766 -0.00023797 0) (0.316194 -0.000236438 0) (0.315621 -0.000234917 0) (0.315048 -0.000233408 0) (0.314474 -0.00023191 0) (0.3139 -0.000230426 0) (0.313326 -0.000228952 0) (0.312751 -0.000227495 0) (0.312177 -0.000226048 0) (0.311601 -0.000224622 0) (0.311026 -0.000223205 0) (0.31045 -0.000221814 0) (0.309873 -0.00022043 0) (0.309297 -0.000219078 0) (0.308718 -0.000217741 0) (0.308142 -0.000216422 0) (0.307561 -0.00021516 0) (0.306987 -0.000213836 0) (0.3064 -0.000212743 0) (0.30583 -0.00021128 0) (0.305234 -0.000210626 0) (0.304675 -0.000208599 0) (0.304058 -0.000209137 0) (0.303525 -0.000205352 0) (0.302866 -0.000209062 0) (0.302387 -0.000200419 0) (0.301647 -0.000212067 0) (0.301271 -0.000191389 0) (0.300388 -0.000220293 0) (0.300197 -0.000176309 0) (0.299064 -0.000228744 0) (0.288316 -0.000232659 0) (0.287881 -0.000231478 0) (0.287446 -0.000230302 0) (0.287009 -0.000229094 0) (0.286572 -0.000227874 0) (0.286134 -0.000226656 0) (0.285695 -0.000225443 0) (0.285256 -0.000224235 0) (0.284816 -0.000223028 0) (0.284375 -0.000221824 0) (0.283934 -0.000220624 0) (0.283492 -0.000219426 0) (0.28305 -0.00021823 0) (0.282606 -0.000217038 0) (0.282163 -0.000215848 0) (0.281718 -0.00021466 0) (0.281273 -0.000213475 0) (0.280827 -0.000212293 0) (0.280381 -0.000211113 0) (0.279934 -0.000209936 0) (0.279487 -0.000208761 0) (0.279039 -0.000207589 0) (0.27859 -0.00020642 0) (0.278141 -0.000205253 0) (0.277691 -0.000204088 0) (0.277241 -0.000202926 0) (0.27679 -0.000201767 0) (0.276339 -0.000200611 0) (0.275887 -0.000199458 0) (0.275435 -0.000198307 0) (0.274982 -0.000197159 0) (0.274528 -0.000196014 0) (0.274074 -0.000194872 0) (0.27362 -0.000193733 0) (0.273165 -0.000192597 0) (0.27271 -0.000191463 0) (0.272254 -0.000190333 0) (0.271798 -0.000189206 0) (0.271341 -0.000188082 0) (0.270884 -0.000186961 0) (0.270427 -0.000185842 0) (0.269969 -0.000184727 0) (0.269511 -0.000183615 0) (0.269052 -0.000182506 0) (0.268593 -0.0001814 0) (0.268133 -0.000180297 0) (0.267673 -0.000179197 0) (0.267213 -0.0001781 0) (0.266753 -0.000177006 0) (0.266292 -0.000175915 0) (0.26583 -0.000174827 0) (0.265369 -0.000173742 0) (0.264907 -0.000172661 0) (0.264444 -0.000171583 0) (0.263982 -0.000170508 0) (0.263519 -0.000169437 0) (0.263056 -0.00016837 0) (0.262592 -0.000167306 0) (0.262128 -0.000166246 0) (0.261664 -0.000165191 0) (0.2612 -0.000164139 0) (0.260735 -0.000163092 0) (0.26027 -0.00016205 0) (0.259805 -0.000161013 0) (0.25934 -0.000159981 0) (0.258874 -0.000158954 0) (0.258408 -0.000157933 0) (0.257942 -0.000156917 0) (0.257475 -0.000155907 0) (0.257009 -0.000154904 0) (0.256542 -0.000153908 0) (0.256074 -0.000152918 0) (0.255607 -0.000151935 0) (0.255139 -0.00015096 0) (0.254671 -0.000149994 0) (0.254203 -0.000149036 0) (0.253734 -0.000148088 0) (0.253266 -0.000147147 0) (0.252796 -0.000146218 0) (0.252327 -0.000145299 0) (0.251857 -0.00014439 0) (0.251387 -0.000143497 0) (0.250917 -0.000142609 0) (0.250445 -0.000141759 0) (0.249975 -0.000140875 0) (0.249501 -0.000140102 0) (0.249033 -0.000139175 0) (0.248554 -0.000138581 0) (0.24809 -0.00013746 0) (0.247601 -0.000137315 0) (0.247149 -0.000135585 0) (0.24664 -0.000136594 0) (0.246212 -0.000133159 0) (0.245665 -0.000137087 0) (0.245286 -0.000129225 0) (0.244666 -0.000140194 0) (0.244379 -0.000121744 0) (0.243634 -0.000147802 0) (0.243502 -0.000108716 0) (0.242559 -0.000155552 0) (0.222341 -0.000135851 0) (0.222006 -0.000135186 0) (0.221669 -0.000134515 0) (0.221332 -0.000133816 0) (0.220994 -0.000133107 0) (0.220656 -0.000132401 0) (0.220318 -0.000131699 0) (0.219978 -0.000130999 0) (0.219638 -0.000130301 0) (0.219298 -0.000129604 0) (0.218957 -0.00012891 0) (0.218616 -0.000128217 0) (0.218274 -0.000127525 0) (0.217932 -0.000126835 0) (0.217589 -0.000126147 0) (0.217245 -0.00012546 0) (0.216902 -0.000124774 0) (0.216557 -0.00012409 0) (0.216212 -0.000123407 0) (0.215867 -0.000122726 0) (0.215521 -0.000122046 0) (0.215175 -0.000121367 0) (0.214828 -0.00012069 0) (0.214481 -0.000120014 0) (0.214134 -0.00011934 0) (0.213786 -0.000118667 0) (0.213437 -0.000117995 0) (0.213088 -0.000117325 0) (0.212739 -0.000116657 0) (0.21239 -0.00011599 0) (0.212039 -0.000115324 0) (0.211689 -0.00011466 0) (0.211338 -0.000113998 0) (0.210987 -0.000113337 0) (0.210635 -0.000112678 0) (0.210283 -0.00011202 0) (0.209931 -0.000111365 0) (0.209578 -0.00011071 0) (0.209225 -0.000110058 0) (0.208871 -0.000109407 0) (0.208518 -0.000108757 0) (0.208163 -0.000108109 0) (0.207809 -0.000107463 0) (0.207454 -0.000106818 0) (0.207099 -0.000106175 0) (0.206744 -0.000105534 0) (0.206388 -0.000104894 0) (0.206032 -0.000104256 0) (0.205676 -0.000103619 0) (0.205319 -0.000102984 0) (0.204962 -0.00010235 0) (0.204605 -0.000101718 0) (0.204247 -0.000101088 0) (0.20389 -0.00010046 0) (0.203532 -9.9833e-05 0) (0.203174 -9.9208e-05 0) (0.202815 -9.85853e-05 0) (0.202457 -9.79643e-05 0) (0.202098 -9.73455e-05 0) (0.201739 -9.67289e-05 0) (0.201379 -9.61146e-05 0) (0.20102 -9.55026e-05 0) (0.20066 -9.48933e-05 0) (0.2003 -9.42864e-05 0) (0.19994 -9.36829e-05 0) (0.19958 -9.30823e-05 0) (0.199219 -9.24847e-05 0) (0.198858 -9.189e-05 0) (0.198497 -9.12988e-05 0) (0.198136 -9.07114e-05 0) (0.197775 -9.01278e-05 0) (0.197413 -8.95481e-05 0) (0.197051 -8.89726e-05 0) (0.196689 -8.84018e-05 0) (0.196327 -8.78358e-05 0) (0.195965 -8.72749e-05 0) (0.195602 -8.67188e-05 0) (0.195239 -8.6169e-05 0) (0.194876 -8.56231e-05 0) (0.194513 -8.50884e-05 0) (0.19415 -8.45516e-05 0) (0.193785 -8.40376e-05 0) (0.193422 -8.35053e-05 0) (0.193056 -8.30294e-05 0) (0.192693 -8.24811e-05 0) (0.192325 -8.20816e-05 0) (0.191964 -8.14608e-05 0) (0.191592 -8.12411e-05 0) (0.191234 -8.03963e-05 0) (0.190854 -8.06117e-05 0) (0.190507 -7.91558e-05 0) (0.190108 -8.0433e-05 0) (0.189783 -7.74123e-05 0) (0.18935 -8.1236e-05 0) (0.189069 -7.44127e-05 0) (0.188573 -8.40972e-05 0) (0.18837 -6.86014e-05 0) (0.187769 -9.04798e-05 0) (0.187692 -5.83177e-05 0) (0.18694 -9.67205e-05 0) (0.157423 -6.60767e-05 0) (0.157185 -6.577e-05 0) (0.156947 -6.54533e-05 0) (0.156708 -6.51154e-05 0) (0.156469 -6.47725e-05 0) (0.15623 -6.44326e-05 0) (0.15599 -6.40955e-05 0) (0.15575 -6.37595e-05 0) (0.155509 -6.34244e-05 0) (0.155268 -6.30898e-05 0) (0.155027 -6.27564e-05 0) (0.154785 -6.24237e-05 0) (0.154543 -6.20918e-05 0) (0.154301 -6.17605e-05 0) (0.154058 -6.143e-05 0) (0.153815 -6.11e-05 0) (0.153571 -6.07708e-05 0) (0.153327 -6.04421e-05 0) (0.153083 -6.01142e-05 0) (0.152838 -5.97867e-05 0) (0.152593 -5.94602e-05 0) (0.152348 -5.91339e-05 0) (0.152102 -5.88084e-05 0) (0.151856 -5.84833e-05 0) (0.15161 -5.81589e-05 0) (0.151363 -5.7835e-05 0) (0.151116 -5.75118e-05 0) (0.150869 -5.71891e-05 0) (0.150621 -5.68674e-05 0) (0.150373 -5.6546e-05 0) (0.150125 -5.62255e-05 0) (0.149876 -5.59055e-05 0) (0.149627 -5.55861e-05 0) (0.149378 -5.52675e-05 0) (0.149129 -5.49496e-05 0) (0.148879 -5.46322e-05 0) (0.148629 -5.43158e-05 0) (0.148379 -5.39998e-05 0) (0.148128 -5.36848e-05 0) (0.147877 -5.33703e-05 0) (0.147626 -5.30565e-05 0) (0.147375 -5.27434e-05 0) (0.147124 -5.24311e-05 0) (0.146872 -5.21193e-05 0) (0.14662 -5.18082e-05 0) (0.146367 -5.14977e-05 0) (0.146115 -5.11882e-05 0) (0.145862 -5.08788e-05 0) (0.145609 -5.05706e-05 0) (0.145356 -5.02627e-05 0) (0.145103 -4.99555e-05 0) (0.144849 -4.96489e-05 0) (0.144595 -4.9343e-05 0) (0.144341 -4.90378e-05 0) (0.144087 -4.87334e-05 0) (0.143833 -4.84296e-05 0) (0.143578 -4.81269e-05 0) (0.143324 -4.78248e-05 0) (0.143069 -4.75236e-05 0) (0.142814 -4.72233e-05 0) (0.142558 -4.69241e-05 0) (0.142303 -4.66258e-05 0) (0.142048 -4.63287e-05 0) (0.141792 -4.60327e-05 0) (0.141536 -4.57383e-05 0) (0.14128 -4.54452e-05 0) (0.141024 -4.51534e-05 0) (0.140768 -4.48629e-05 0) (0.140511 -4.45741e-05 0) (0.140255 -4.42871e-05 0) (0.139998 -4.40019e-05 0) (0.139741 -4.37185e-05 0) (0.139484 -4.34371e-05 0) (0.139227 -4.31582e-05 0) (0.13897 -4.28813e-05 0) (0.138713 -4.26075e-05 0) (0.138455 -4.23349e-05 0) (0.138197 -4.20673e-05 0) (0.13794 -4.17986e-05 0) (0.137681 -4.15405e-05 0) (0.137423 -4.12731e-05 0) (0.137165 -4.10303e-05 0) (0.136907 -4.07576e-05 0) (0.136647 -4.05462e-05 0) (0.136389 -4.02467e-05 0) (0.136127 -4.0103e-05 0) (0.135871 -3.97227e-05 0) (0.135606 -3.97376e-05 0) (0.135353 -3.91424e-05 0) (0.135081 -3.95303e-05 0) (0.134837 -3.83996e-05 0) (0.13455 -3.96589e-05 0) (0.134324 -3.72499e-05 0) (0.13401 -4.04967e-05 0) (0.133818 -3.51665e-05 0) (0.133453 -4.27695e-05 0) (0.133325 -3.11249e-05 0) (0.132878 -4.74267e-05 0) (0.132846 -2.40686e-05 0) (0.132289 -5.14746e-05 0) (0.0936648 -2.17195e-05 0) (0.0935236 -2.16273e-05 0) (0.093382 -2.1527e-05 0) (0.0932401 -2.14162e-05 0) (0.093098 -2.13044e-05 0) (0.0929557 -2.11945e-05 0) (0.0928131 -2.1086e-05 0) (0.0926702 -2.09778e-05 0) (0.0925271 -2.08698e-05 0) (0.0923838 -2.0762e-05 0) (0.0922402 -2.06547e-05 0) (0.0920964 -2.05475e-05 0) (0.0919523 -2.04407e-05 0) (0.091808 -2.0334e-05 0) (0.0916635 -2.02275e-05 0) (0.0915187 -2.01212e-05 0) (0.0913737 -2.00151e-05 0) (0.0912284 -1.99091e-05 0) (0.091083 -1.98034e-05 0) (0.0909373 -1.96977e-05 0) (0.0907914 -1.95924e-05 0) (0.0906452 -1.9487e-05 0) (0.0904989 -1.93819e-05 0) (0.0903523 -1.92768e-05 0) (0.0902056 -1.9172e-05 0) (0.0900586 -1.90672e-05 0) (0.0899114 -1.89626e-05 0) (0.089764 -1.88581e-05 0) (0.0896164 -1.8754e-05 0) (0.0894686 -1.86498e-05 0) (0.0893206 -1.85459e-05 0) (0.0891725 -1.8442e-05 0) (0.0890241 -1.83384e-05 0) (0.0888756 -1.82349e-05 0) (0.0887268 -1.81317e-05 0) (0.0885779 -1.80286e-05 0) (0.0884288 -1.79258e-05 0) (0.0882795 -1.78229e-05 0) (0.0881301 -1.77205e-05 0) (0.0879805 -1.7618e-05 0) (0.0878307 -1.75159e-05 0) (0.0876808 -1.74139e-05 0) (0.0875307 -1.73121e-05 0) (0.0873804 -1.72104e-05 0) (0.08723 -1.71089e-05 0) (0.0870795 -1.70075e-05 0) (0.0869288 -1.69064e-05 0) (0.0867779 -1.68052e-05 0) (0.0866269 -1.67045e-05 0) (0.0864758 -1.66037e-05 0) (0.0863245 -1.65031e-05 0) (0.0861732 -1.64026e-05 0) (0.0860216 -1.63023e-05 0) (0.08587 -1.62021e-05 0) (0.0857183 -1.61022e-05 0) (0.0855664 -1.60023e-05 0) (0.0854144 -1.59028e-05 0) (0.0852623 -1.58033e-05 0) (0.0851101 -1.57041e-05 0) (0.0849578 -1.56051e-05 0) (0.0848054 -1.55064e-05 0) (0.0846529 -1.54079e-05 0) (0.0845003 -1.53098e-05 0) (0.0843477 -1.52119e-05 0) (0.0841949 -1.51146e-05 0) (0.084042 -1.50175e-05 0) (0.0838891 -1.4921e-05 0) (0.0837361 -1.48247e-05 0) (0.0835829 -1.4729e-05 0) (0.0834297 -1.46339e-05 0) (0.0832765 -1.45392e-05 0) (0.0831231 -1.44453e-05 0) (0.0829697 -1.43519e-05 0) (0.0828161 -1.42594e-05 0) (0.0826625 -1.41673e-05 0) (0.0825088 -1.40767e-05 0) (0.082355 -1.39857e-05 0) (0.0822011 -1.38978e-05 0) (0.0820472 -1.38072e-05 0) (0.081893 -1.3724e-05 0) (0.0817389 -1.36314e-05 0) (0.0815844 -1.35572e-05 0) (0.0814303 -1.34571e-05 0) (0.0812751 -1.34026e-05 0) (0.0811213 -1.32796e-05 0) (0.080965 -1.32697e-05 0) (0.0808121 -1.30864e-05 0) (0.0806535 -1.31806e-05 0) (0.080503 -1.2849e-05 0) (0.0803397 -1.3183e-05 0) (0.0801949 -1.25029e-05 0) (0.0800221 -1.3378e-05 0) (0.0798893 -1.19089e-05 0) (0.0796978 -1.3967e-05 0) (0.0795889 -1.07898e-05 0) (0.0793634 -1.53156e-05 0) (0.0792964 -8.65457e-06 0) (0.079017 -1.7865e-05 0) (0.0790119 -5.09392e-06 0) (0.0786628 -1.95485e-05 0) (0.0311187 -1.0483e-06 0) (0.0310718 -1.04705e-06 0) (0.0310248 -1.04262e-06 0) (0.0309776 -1.03699e-06 0) (0.0309304 -1.03188e-06 0) (0.0308831 -1.02711e-06 0) (0.0308357 -1.02246e-06 0) (0.0307882 -1.01776e-06 0) (0.0307406 -1.01311e-06 0) (0.0306929 -1.00842e-06 0) (0.0306452 -1.00382e-06 0) (0.0305973 -9.99164e-07 0) (0.0305494 -9.94574e-07 0) (0.0305014 -9.89943e-07 0) (0.0304533 -9.8534e-07 0) (0.0304051 -9.80728e-07 0) (0.0303568 -9.76143e-07 0) (0.0303085 -9.71532e-07 0) (0.03026 -9.66935e-07 0) (0.0302115 -9.62304e-07 0) (0.0301629 -9.57749e-07 0) (0.0301142 -9.53101e-07 0) (0.0300655 -9.48494e-07 0) (0.0300166 -9.4385e-07 0) (0.0299677 -9.3921e-07 0) (0.0299187 -9.34565e-07 0) (0.0298696 -9.29936e-07 0) (0.0298205 -9.25247e-07 0) (0.0297713 -9.20637e-07 0) (0.029722 -9.15912e-07 0) (0.0296726 -9.11247e-07 0) (0.0296232 -9.06536e-07 0) (0.0295737 -9.01825e-07 0) (0.0295242 -8.97121e-07 0) (0.0294745 -8.92439e-07 0) (0.0294248 -8.877e-07 0) (0.0293751 -8.83037e-07 0) (0.0293252 -8.78258e-07 0) (0.0292754 -8.73564e-07 0) (0.0292254 -8.6881e-07 0) (0.0291754 -8.64083e-07 0) (0.0291253 -8.59352e-07 0) (0.0290752 -8.54634e-07 0) (0.029025 -8.49889e-07 0) (0.0289748 -8.45154e-07 0) (0.0289245 -8.40378e-07 0) (0.0288742 -8.3568e-07 0) (0.0288238 -8.30862e-07 0) (0.0287733 -8.26109e-07 0) (0.0287228 -8.2131e-07 0) (0.0286723 -8.16519e-07 0) (0.0286217 -8.1172e-07 0) (0.028571 -8.06933e-07 0) (0.0285204 -8.02087e-07 0) (0.0284696 -7.97295e-07 0) (0.0284189 -7.92399e-07 0) (0.0283681 -7.8757e-07 0) (0.0283172 -7.82678e-07 0) (0.0282664 -7.77809e-07 0) (0.0282154 -7.72933e-07 0) (0.0281645 -7.68062e-07 0) (0.0281135 -7.63158e-07 0) (0.0280625 -7.58292e-07 0) (0.0280115 -7.53354e-07 0) (0.0279604 -7.4847e-07 0) (0.0279093 -7.4356e-07 0) (0.0278582 -7.38723e-07 0) (0.027807 -7.33835e-07 0) (0.0277559 -7.28962e-07 0) (0.0277047 -7.24135e-07 0) (0.0276534 -7.19306e-07 0) (0.0276022 -7.1453e-07 0) (0.0275509 -7.09727e-07 0) (0.0274996 -7.05061e-07 0) (0.0274483 -7.0021e-07 0) (0.0273969 -6.9579e-07 0) (0.0273455 -6.90759e-07 0) (0.0272941 -6.86924e-07 0) (0.0272427 -6.81211e-07 0) (0.0271912 -6.78714e-07 0) (0.0271397 -6.7121e-07 0) (0.0270881 -6.71852e-07 0) (0.0270366 -6.59771e-07 0) (0.0269847 -6.68012e-07 0) (0.0269334 -6.44736e-07 0) (0.0268811 -6.70854e-07 0) (0.0268302 -6.20778e-07 0) (0.026777 -6.8829e-07 0) (0.026727 -5.76579e-07 0) (0.0266721 -7.37103e-07 0) (0.0266242 -4.8863e-07 0) (0.0265658 -8.51203e-07 0) (0.0265224 -3.11243e-07 0) (0.026457 -1.09303e-06 0) (0.0264225 3.4708e-08 0) (0.0263444 -1.55896e-06 0) (0.0263256 6.57632e-07 0) (0.0262276 -2.33952e-06 0) (0.0262314 1.61153e-06 0) (0.0261069 -2.28753e-06 0) ) ; boundaryField { velocityInlet { type fixedValue; value uniform (1 0 0); } pressureOutlet { type inletOutlet; inletValue uniform (0 0 0); value nonuniform List<vector> 200 ( (0.0296326 -0.000235954 0) (0.0949596 -0.00161443 0) (0.158157 -0.00360214 0) (0.217056 -0.00596253 0) (0.271853 -0.00856295 0) (0.323085 -0.0113986 0) (0.37089 -0.0145438 0) (0.414978 -0.0181178 0) (0.454993 -0.0222378 0) (0.491 -0.0269558 0) (0.523774 -0.0322041 0) (0.554749 -0.0377797 0) (0.585586 -0.0433903 0) (0.617529 -0.0487561 0) (0.650957 -0.0536965 0) (0.685512 -0.0581249 0) (0.720618 -0.0619777 0) (0.755826 -0.0651725 0) (0.790775 -0.0676272 0) (0.82504 -0.0692867 0) (0.858085 -0.0701281 0) (0.88929 -0.0701539 0) (0.917992 -0.0693933 0) (0.94354 -0.0679104 0) (0.965385 -0.0658125 0) (0.983182 -0.0632474 0) (0.996857 -0.0603854 0) (1.0066 -0.0573883 0) (1.01285 -0.0543903 0) (1.01627 -0.0514837 0) (1.01771 -0.0486961 0) (1.01795 -0.0460021 0) (1.01761 -0.0433611 0) (1.01722 -0.040739 0) (1.01704 -0.0381247 0) (1.01713 -0.0355341 0) (1.01738 -0.0329978 0) (1.01764 -0.0305443 0) (1.01778 -0.0281908 0) (1.01776 -0.0259413 0) (1.0176 -0.0237949 0) (1.01732 -0.0217498 0) (1.01696 -0.0198048 0) (1.01657 -0.0179604 0) (1.01616 -0.0162148 0) (1.01575 -0.0145665 0) (1.01534 -0.0130124 0) (1.01496 -0.011549 0) (1.01458 -0.0101733 0) (1.01423 -0.00888119 0) (1.0139 -0.00766927 0) (1.01358 -0.00653369 0) (1.0133 -0.00547099 0) (1.01303 -0.00447775 0) (1.01279 -0.00355018 0) (1.01258 -0.00268535 0) (1.01239 -0.00187963 0) (1.01223 -0.00113018 0) (1.0121 -0.000433615 0) (1.012 0.000212701 0) (1.01192 0.000811409 0) (1.01187 0.00136566 0) (1.01185 0.00187785 0) (1.01185 0.00235043 0) (1.01188 0.00278571 0) (1.01193 0.00318587 0) (1.01201 0.00355293 0) (1.01211 0.00388885 0) (1.01223 0.00419539 0) (1.01237 0.00447425 0) (1.01252 0.00472698 0) (1.0127 0.004955 0) (1.01288 0.00515964 0) (1.01309 0.00534211 0) (1.0133 0.00550351 0) (1.01353 0.00564481 0) (1.01376 0.00576691 0) (1.014 0.0058706 0) (1.01425 0.00595657 0) (1.01451 0.00602542 0) (1.01476 0.00607767 0) (1.01502 0.00611378 0) (1.01528 0.00613412 0) (1.01554 0.00613901 0) (1.01579 0.00612871 0) (1.01605 0.00610344 0) (1.0163 0.00606337 0) (1.01655 0.00600865 0) (1.01679 0.00593943 0) (1.01703 0.0058558 0) (1.01726 0.00575789 0) (1.01749 0.0056458 0) (1.01771 0.00551965 0) (1.01793 0.00537956 0) (1.01814 0.00522569 0) (1.01835 0.0050582 0) (1.01855 0.00487728 0) (1.01876 0.00468313 0) (1.01896 0.004476 0) (1.01915 0.00425612 0) (1.01935 0.00402731 0) (1.01954 0.00379736 0) (1.01972 0.00357071 0) (1.0199 0.00334811 0) (1.02007 0.0031301 0) (1.02024 0.00291706 0) (1.02041 0.00270927 0) (1.02057 0.00250691 0) (1.02074 0.0023101 0) (1.0209 0.00211889 0) (1.02107 0.00193329 0) (1.02124 0.00175327 0) (1.02141 0.00157875 0) (1.02158 0.00140964 0) (1.02176 0.00124585 0) (1.02194 0.00108725 0) (1.02212 0.000933728 0) (1.02231 0.000785153 0) (1.0225 0.00064139 0) (1.02269 0.000502304 0) (1.02289 0.000367757 0) (1.0231 0.000237612 0) (1.02331 0.000111736 0) (1.02352 -1.00082e-05 0) (1.02374 -0.00012775 0) (1.02397 -0.000241621 0) (1.0242 -0.000351745 0) (1.02444 -0.000458247 0) (1.02468 -0.000561246 0) (1.02493 -0.00066086 0) (1.02519 -0.000757203 0) (1.02546 -0.000850384 0) (1.02573 -0.000940512 0) (1.02602 -0.00102769 0) (1.02631 -0.00111202 0) (1.02661 -0.00119359 0) (1.02692 -0.00127251 0) (1.02724 -0.00134886 0) (1.02757 -0.00142273 0) (1.02792 -0.00149422 0) (1.02827 -0.0015634 0) (1.02864 -0.00163035 0) (1.02902 -0.00169515 0) (1.02942 -0.00175789 0) (1.02983 -0.00181863 0) (1.03026 -0.00187744 0) (1.03071 -0.0019344 0) (1.03118 -0.00198958 0) (1.03167 -0.00204305 0) (1.03218 -0.00209486 0) (1.03271 -0.00214509 0) (1.03327 -0.0021938 0) (1.03386 -0.00224105 0) (1.03448 -0.0022869 0) (1.03513 -0.00233142 0) (1.03582 -0.00237467 0) (1.03654 -0.00241671 0) (1.03732 -0.0024576 0) (1.03813 -0.00249741 0) (1.039 -0.00253619 0) (1.03993 -0.002574 0) (1.04092 -0.00261092 0) (1.04198 -0.00264699 0) (1.04311 -0.00268227 0) (1.04432 -0.00271681 0) (1.04561 -0.00275063 0) (1.04698 -0.00278371 0) (1.04844 -0.00281594 0) (1.04995 -0.00284707 0) (1.05148 -0.00287656 0) (1.05294 -0.00290353 0) (1.05419 -0.00292654 0) (1.055 -0.00294355 0) (1.05504 -0.00295181 0) (1.05386 -0.00294801 0) (1.0509 -0.00292848 0) (1.04551 -0.00288959 0) (1.03699 -0.00282821 0) (1.02465 -0.00274221 0) (1.00788 -0.00263085 0) (0.9862 -0.00249498 0) (0.959345 -0.00233702 0) (0.927247 -0.00216078 0) (0.89006 -0.00197106 0) (0.848137 -0.00177317 0) (0.801985 -0.00157249 0) (0.752217 -0.0013741 0) (0.699507 -0.00118242 0) (0.644536 -0.00100108 0) (0.587956 -0.000832813 0) (0.530366 -0.000679505 0) (0.472287 -0.000542253 0) (0.414158 -0.000421497 0) (0.356328 -0.00031715 0) (0.299064 -0.000228744 0) (0.242559 -0.000155552 0) (0.18694 -9.67205e-05 0) (0.132289 -5.14746e-05 0) (0.0786628 -1.95485e-05 0) (0.0261069 -2.28753e-06 0) ) ; } fixedWalls { type noSlip; } bottomWall { type noSlip; } frontAndBack { type empty; } } // ************************************************************************* //
[ "shyam.hemamalini@gmail.com" ]
shyam.hemamalini@gmail.com
bab3c30c887a700af02b545767d01f5ba868c3b9
01ae35a36363cdcd8034b9f40e519203428b69ff
/NavigationSystem/src/CPOI.h
db296455fe496a7517188003ae002ca7073da50b
[]
no_license
tanjilul-alam-57/Project1
6e1c09d202715b4aaa3a56f52031a7feca578904
0abd830795aa15f5fbe178a4fecd472e4a812b2f
refs/heads/master
2020-04-10T06:36:46.235892
2018-12-07T19:17:34
2018-12-07T19:17:34
160,859,708
0
0
null
null
null
null
UTF-8
C++
false
false
826
h
/* * CPOI.h * * Created on: Nov 19, 2018 * Author: Tanjil */ #ifndef CPOI_H_ #define CPOI_H_ #include <string.h> #include <iostream> #include "CWaypoint.h" enum t_poi{Resturant,Hotel, Pub, Market, NONE, Park}; using namespace std; //declaring inheritance and making CWaypoints attributes public in this class class CPOI : public CWaypoint { private: //declaring private attributes string m_description; t_poi m_type; public: //declaring constructor & public functions. CPOI(t_poi type=NONE, string description="", string name="", double latitude=0, double longitude=0); void print(); void getAllDataByReference(string &name, double &latitude, double &longitude, t_poi &type, string &description); //Declared destructor. //virtual ~CPOI(); }; #endif /* CPOI_H_ */
[ "alam.tanjilul@gmail.com" ]
alam.tanjilul@gmail.com
af54c3e52e28636b35c85498d3d2be6bdbd7ea03
9ff8e317e7293033e3983c5e6660adc4eff75762
/Source/menu/SGF_OptionPlaymode.cpp
aa754a18187c27335669e2a7f26d16d195ddb86c
[]
no_license
rasputtim/SGF
b26fd29487b93c8e67c73f866635830796970116
d8af92216bf4e86aeb452fda841c73932de09b65
refs/heads/master
2020-03-28T21:55:14.668643
2018-11-03T21:15:32
2018-11-03T21:15:32
147,579,544
0
0
null
null
null
null
UTF-8
C++
false
false
2,596
cpp
/* SGF - Super Game Fabric Super Game Fabric Copyright (C) 2010-2011 Rasputtim <raputtim@hotmail.com> 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <sstream> #include "menu/SGF_OptionPlayMode.h" #include "util/SGF_Debug.h" #include "menu/SGF_MenuGlobal.h" #include "SGF_Global.h" #include "graphics/all.h" using namespace ::std; namespace SGF { namespace Menu { COptionPlayMode::COptionPlayMode(const Gui::CContextBox & parent,const Token *token) throw (CLoadException): CMenuOption(parent,token), lblue(255), lgreen(255), rblue(255), rgreen(255){ setRunnable(false); if ( *token != "play-mode" ){ throw CLoadException(__FILE__, __LINE__,"Not a play-mode"); } readName(token); } COptionPlayMode::~COptionPlayMode(){ // Nothing } string COptionPlayMode::getText(){ ostringstream out; out << CMenuOption::getText() << ": "; /* TODO: language translations of these */ if (CMenuGlobals::freeForAll()){ out << "Free for all"; } else if (CMenuGlobals::cooperative()){ out << "Cooperative"; } return out.str(); } void COptionPlayMode::logic(){ if (lblue < 255){ lblue += 5; } if (rblue < 255){ rblue += 5; } if (lgreen < 255){ lgreen += 5; } if (rgreen < 255){ rgreen += 5; } //s setLeftAdjustColor(Colors::makeColor(255, lblue, lgreen)); //s setRightAdjustColor(Colors::makeColor(255, rblue, rgreen)); } void run(const Menu::CContext &) {} void COptionPlayMode::changeMode(){ if (CMenuGlobals::freeForAll()){ CMenuGlobals::setCooperative(); } else if (CMenuGlobals::cooperative()){ CMenuGlobals::setFreeForAll(); } } bool COptionPlayMode::leftKey(){ changeMode(); lblue = lgreen = 0; return true; } bool COptionPlayMode::rightKey(){ changeMode(); rblue = rgreen = 0; return true; } } } //end SGF
[ "rasputtim@hotmail.com" ]
rasputtim@hotmail.com
3dd6a94e7f414b04e24e8c95810d5e1234757742
715e090142030abb0f92fa0d77ce9c0c82c702fc
/Common/src/GLFW_Common.cpp
2b481dd7ad79409b6ce0319b1d5c77f4492984d7
[]
no_license
Timmoth/LearningOpenGL
0fc36bf2916e53825f5e3c513d2e37e6de4d0ed3
11448e90994f44d0c8db8221bbce96d6ad0cf8ac
refs/heads/master
2021-05-04T22:14:09.728645
2018-02-19T08:27:28
2018-02-19T08:27:28
120,018,763
1
0
null
null
null
null
UTF-8
C++
false
false
878
cpp
#include "../Headers/GLFW_Common.h" int InitGLFW() { cout << "Initializing GLFW library" << endl; //Perform initialization checks to ensure hardware & software features are available on the machine if (!glfwInit()) { //Handle initialization failure cout << "Error initializing GLFW library" << endl; return 0; } return 1; } GLFWwindow* CreateGLFWwindow(string title, int width, int height) { cout << "Creating the OpenGL Context" << endl; //Attempt to create a handle to a OpenGL context GLFWwindow* window = glfwCreateWindow(width, height, title.c_str(), NULL, NULL); if (!window) { cout << "Could not create OpenGL Window" << endl; //free any allocated resources glfwTerminate(); return NULL; } //Make the window's context the current one for this thread glfwMakeContextCurrent(window); glViewport(0, 0, width, height); return window; }
[ "timmoth.jones@gmail.com" ]
timmoth.jones@gmail.com
331afdb0b4ff52c4e3263d57782ae98fed55337e
1f63dde39fcc5f8be29f2acb947c41f1b6f1683e
/Boss2D/addon/_old/webrtc-qt5.11.2_for_boss/modules/remote_bitrate_estimator/include/send_time_history.h
931eb3467eadf3e9d6f3d414aa6e4ad1d6dc59c9
[ "MIT", "LicenseRef-scancode-google-patent-license-webrtc", "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause", "GPL-1.0-or-later", "LicenseRef-scancode-takuya-ooura", "LicenseRef-scancode-public-domain", "LicenseRef-scancode-unknown", "MS-LPL", "LicenseRef-scancode-google-patent-licen...
permissive
koobonil/Boss2D
09ca948823e0df5a5a53b64a10033c4f3665483a
e5eb355b57228a701495f2660f137bd05628c202
refs/heads/master
2022-10-20T09:02:51.341143
2019-07-18T02:13:44
2019-07-18T02:13:44
105,999,368
7
2
MIT
2022-10-04T23:31:12
2017-10-06T11:57:07
C++
UTF-8
C++
false
false
2,139
h
/* * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #ifndef MODULES_REMOTE_BITRATE_ESTIMATOR_INCLUDE_SEND_TIME_HISTORY_H_ #define MODULES_REMOTE_BITRATE_ESTIMATOR_INCLUDE_SEND_TIME_HISTORY_H_ #include <map> #include BOSS_WEBRTC_U_modules__include__module_common_types_h //original-code:"modules/include/module_common_types.h" #include BOSS_WEBRTC_U_rtc_base__basictypes_h //original-code:"rtc_base/basictypes.h" #include BOSS_WEBRTC_U_rtc_base__constructormagic_h //original-code:"rtc_base/constructormagic.h" namespace webrtc { class Clock; struct PacketFeedback; class SendTimeHistory { public: SendTimeHistory(const Clock* clock, int64_t packet_age_limit_ms); ~SendTimeHistory(); // Cleanup old entries, then add new packet info with provided parameters. void AddAndRemoveOld(const PacketFeedback& packet); // Updates packet info identified by |sequence_number| with |send_time_ms|. // Return false if not found. bool OnSentPacket(uint16_t sequence_number, int64_t send_time_ms); // Look up PacketFeedback for a sent packet, based on the sequence number, and // populate all fields except for arrival_time. The packet parameter must // thus be non-null and have the sequence_number field set. bool GetFeedback(PacketFeedback* packet_feedback, bool remove); size_t GetOutstandingBytes(uint16_t local_net_id, uint16_t remote_net_id) const; private: const Clock* const clock_; const int64_t packet_age_limit_ms_; SequenceNumberUnwrapper seq_num_unwrapper_; std::map<int64_t, PacketFeedback> history_; rtc::Optional<int64_t> latest_acked_seq_num_; RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(SendTimeHistory); }; } // namespace webrtc #endif // MODULES_REMOTE_BITRATE_ESTIMATOR_INCLUDE_SEND_TIME_HISTORY_H_
[ "slacealic@nate.com" ]
slacealic@nate.com
bafdc4396c1cc874a7ea941c3b50da62370dfeda
f79e67e9dcffadbb9f293510ec03333cec6ab8fe
/Source/ShooterInSnow/BehaviorTree/Tasks/BTTask_Shoot.cpp
c69dec74882310e7d639c9656ffae2a6ec7dc990
[]
no_license
ali-v-1985/ShooterInSnow
b09401a561c7eeb54a71b872495c79b92aeae015
48f5808140ff614c1d93b8d04e9384993cdd5b7f
refs/heads/master
2022-12-27T13:55:59.031030
2020-10-12T00:18:38
2020-10-12T00:18:38
301,841,158
0
0
null
null
null
null
UTF-8
C++
false
false
781
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "BTTask_Shoot.h" #include "EditorBuildUtils.h" #include "AIController.h" #include "ShooterInSnow/Characters/ShooterCharacter.h" UBTTask_Shoot::UBTTask_Shoot() { NodeName = TEXT("Shoot"); } EBTNodeResult::Type UBTTask_Shoot::ExecuteTask(UBehaviorTreeComponent& OwnerComp, uint8* NodeMemory) { Super::ExecuteTask(OwnerComp, NodeMemory); if(OwnerComp.GetAIOwner() == nullptr) { return EBTNodeResult::Failed; } AShooterCharacter* AICharacter = Cast<AShooterCharacter>(OwnerComp.GetAIOwner()->GetPawn()); if(AICharacter == nullptr) { return EBTNodeResult::Failed; } AICharacter->PullTrigger(); return EBTNodeResult::Succeeded; }
[ "ali.valizadeh.h@gmail.com" ]
ali.valizadeh.h@gmail.com
0910cc41b52aebe892877b612c6a10f732c4fc2e
4a5bf98f527d5e3ebb5a372090a093094bd20451
/617A.cpp
76e9b72dbaae032273c2d1dd810c1f1f7dd0acf9
[]
no_license
nc1337/Codeforces
0af50746109d40da015aa2c44921a8f902958193
b256bb84b982dd9732903b58c32f6eef7c92f363
refs/heads/main
2023-04-19T11:34:46.460367
2021-05-17T05:50:47
2021-05-17T05:50:47
368,062,370
0
0
null
null
null
null
UTF-8
C++
false
false
261
cpp
#include <bits/stdc++.h> using namespace std; int main() { int x; int cnt = 0; cin>>x; while(x != 0) { cnt += x / 5; x %= 5; cnt += x / 4; x %= 4; cnt += x / 3; x %= 3; cnt += x / 2; x %= 2; cnt += x; x = 0; } cout<<cnt; return 0; }
[ "nitinmax1000@gmail.com" ]
nitinmax1000@gmail.com
61ee977a895fe173df2af32de3a627c7b7353743
cb9fa06fb616972f94370b69f69efc53ecc7d700
/keyboard_control/main.cpp
c2d3c0789e966505328cfd078bcae2634c3433cc
[]
no_license
jiachenwei/tiny-utility
f0d71c7cb309c6b911bfe9df777d6d436818754d
1a7a4b4801ea3d3bf0629f02807e965f9002cf10
refs/heads/main
2023-05-11T02:12:47.487367
2021-05-31T01:41:06
2021-05-31T01:41:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,669
cpp
/** * @file main.cpp * @brief * @author Chenwei Jia (cwjia98@gmail.com) * @version 1.0 * @date 2021-05-20 */ #include <fcntl.h> #include <stdio.h> #include <stdlib.h> #include <sys/ioctl.h> #include <termio.h> #include <unistd.h> #include <iostream> #include <mutex> #include <thread> #define ACCELE_RATE 0.5 // 向前加速度 #define REVERSE_ACCELE_RATE -0.5 // 向后加速度 #define NATURAL_DEACCELE_RATE -0.2 // 自然减速度 #define BRAKE_DEACCELE_RATE -1 // 刹车减速度 #define WHEEL_RATE 10 // 转动角度的速率 #define MAX_WHEEL_ANGLE 570 // 方向盘最大转动角度 int current_max_speed = 0; int current_wheel_angle = 0; int current_gear_state = 1; bool current_hand_brake_state = 1; char current_drive_state = 0; int current_control_state = 0; std::mutex m; unsigned char scan_keyboard() { char kb_input = 0; struct termios new_settings; struct termios stored_settings; tcgetattr(STDIN_FILENO, &stored_settings); //获得stdin 输入 new_settings = stored_settings; // new_settings.c_lflag &= (~ICANON); // new_settings.c_lflag &= (~ECHO); // new_settings.c_cc[VTIME] = 0; tcgetattr(STDIN_FILENO, &stored_settings); //获得stdin 输入 new_settings.c_cc[VMIN] = 1; tcsetattr(STDIN_FILENO, TCSAFLUSH, &new_settings); // STDIN_FILENO TCSANOW fd_set rfds; struct timeval tv; FD_ZERO(&rfds); FD_SET(0, &rfds); tv.tv_sec = 0; tv.tv_usec = 500000; if (select(1, &rfds, NULL, NULL, &tv) > 0) { kb_input = getchar(); } tcsetattr(STDIN_FILENO, TCSAFLUSH, &stored_settings); return kb_input; } int keyboard_input_map(unsigned char key) { std::lock_guard<std::mutex> g1(m); current_drive_state = 2; int ret = 0; if (key == 27) { ret = -1; // 复位, current_wheel_angle = 0; current_max_speed = 0; current_gear_state = 4; current_drive_state = 0; } else if (key == 'w' || key == 'W') { ret = 1; // 发送一个正的加速度 current_drive_state = 1; } else if (key == 's' || key == 'S') { ret = 2; // 发送一个负的加速度 current_drive_state = -1; } else if (key == 'a' || key == 'A') { ret = 3; // 向左打方向盘 current_wheel_angle = (current_wheel_angle - WHEEL_RATE <= -MAX_WHEEL_ANGLE ? -MAX_WHEEL_ANGLE : current_wheel_angle - WHEEL_RATE); } else if (key == 'd' || key == 'D') { ret = 4; // 向右打方向盘 current_wheel_angle = (current_wheel_angle + WHEEL_RATE >= MAX_WHEEL_ANGLE ? MAX_WHEEL_ANGLE : current_wheel_angle + WHEEL_RATE); } else if (key == 'q' || key == 'Q') { ret = 5; // 快速向左打方向盘 current_wheel_angle = (current_wheel_angle - WHEEL_RATE * 2 <= -MAX_WHEEL_ANGLE ? -MAX_WHEEL_ANGLE : current_wheel_angle - WHEEL_RATE * 2); } else if (key == 'e' || key == 'E') { ret = 6; // 快速向右打方向盘 current_wheel_angle = (current_wheel_angle + WHEEL_RATE * 2 >= MAX_WHEEL_ANGLE ? MAX_WHEEL_ANGLE : current_wheel_angle + WHEEL_RATE * 2); } else if (key == 'r' || key == 'R') { ret = 7; // 方向盘复位至零 current_wheel_angle = 0; } else if (key == 32) { ret = 8; // 刹车 current_drive_state = 0; } else if (key == '1') { ret = 11; // P档 current_gear_state = 1; } else if (key == '2') { ret = 12; // R档 current_gear_state = 2; } else if (key == '3') { ret = 13; // N档 current_gear_state = 3; } else if (key == '4') { ret = 14; // D档 current_gear_state = 4; } else if (key == '>' || key == '.') { ret = 21; // 拉手刹 current_hand_brake_state = true; } else if (key == '<' || key == ',') { ret = 22; // 放手刹 current_hand_brake_state = false; } else if (key == '+' || key == '=') { ret = 31; // 升高最大车速 current_max_speed++; current_max_speed = current_max_speed >= 180 ? 180 : current_max_speed; } else if (key == '-' || key == '_') { ret = 32; // 降低最大车速 current_max_speed--; current_max_speed = current_max_speed <= 0 ? 0 : current_max_speed; } else { ret = 0; // 无操作 } current_control_state = ret; return ret; } void print_info() { std::lock_guard<std::mutex> g2(m); std::cout << "\033[2J\033[0;0H\033[?25l"; std::cout << "\n\033[1m--键盘调试工具--\033[0m\n" << std::endl; std::cout << "0.紧急情况按住Esc\n"; struct winsize size; ioctl(STDIN_FILENO, TIOCGWINSZ, &size); if (current_hand_brake_state) { std::cout << "1.手刹状态:放下(,) \033[4m\033[1m\033[41m拉起(.)\033[0m\n"; } else { std::cout << "1.手刹状态:\033[4m\033[1m\033[42m放下(,)\033[0m 拉起(.)\n"; } if (current_gear_state == 1) { std::printf( "2.当前档位:\033[41m\033[1m\033[4m\033[38mP(1)\033[0m R(2) N(3) " "D(4)\n"); } else if (current_gear_state == 2) { std::printf( "2.当前档位:P(1) \033[42m\033[1m\033[4m\033[38mR(2)\033[0m N(3) " "D(4)\n"); } else if (current_gear_state == 3) { std::printf( "2.当前档位:P(1) R(2) \033[42m\033[1m\033[4m\033[38mN(3)\033[0m " "D(4)\n"); } else if (current_gear_state == 4) { std::printf( "2.当前档位:P(1) R(2) N(3) " "\033[42m\033[1m\033[4m\033[38mD(4)\033[0m\n"); } if (current_drive_state == 1) { std::cout << "3.行驶状态:\033[4m\033[1m前进(W)\033[0m 制动(Space) " "倒车(S) 滑行\n"; } else if (current_drive_state == 0) { std::cout << "3.行驶状态:前进(W) \033[4m\033[1m制动(Space)\033[0m " "倒车(S) 滑行\n"; } else if (current_drive_state == -1) { std::cout << "3.行驶状态:前进(W) 制动(Space) " "\033[4m\033[1m倒车(S)\033[0m 滑行\n"; } else { std::cout << "3.行驶状态:前进(W) 制动(Space) 倒车(S) " "\033[4m\033[1m滑行\033[0m\n"; } std::printf("4.最大车速:\033[1m%4d\033[0mkm/h (+/-)\n", current_max_speed); std::printf( "5.转向角度:\033[1m%4d\033[0mdegree (慢速:A/D, 快速:Q/E, 复位:R)\n", current_wheel_angle); int slen = int((size.ws_col - 1) / 2) - 1; std::string lsb(slen, ' '); std::string rsb(slen, ' '); std::string ls(0, ' '); std::string rs(0, ' '); if (current_wheel_angle > 0) { int rslen = int(float(current_wheel_angle) / MAX_WHEEL_ANGLE * (slen - 1)); rs = std::string(rslen, '>'); rsb = std::string(slen - rslen, ' '); } else if (current_wheel_angle < 0) { int lslen = int(float(-current_wheel_angle) / MAX_WHEEL_ANGLE * (slen - 1)); ls = std::string(lslen, '<'); lsb = std::string(slen - lslen, ' '); } else { ; } std::cout << "[" + lsb + "\033[42m" + ls + "\033[0m|\033[42m" + rs + "\033[0m" + rsb + "]\n"; printf("\33[%d;0Hcontrol state:%d\033[?25h\r\n", size.ws_row - 1, current_control_state); } void publish_message() { std::lock_guard<std::mutex> g3(m); if (current_control_state == -1) { // 最大车速与方向盘角度复位 ; } else if (current_control_state / 10 == 0) { // 发送控车指令 ; } else if (current_control_state / 10 == 1) { // 发送档位指令 ; } else if (current_control_state / 10 == 2) { // 发送手刹指令 ; } else if (current_control_state / 10 == 3) { // 调整最大车速,控车时发出 ; } else { ; } } void input() { while (1) { keyboard_input_map(scan_keyboard()); } } void print() { while (1) { print_info(); usleep(50000); } } void publish() { while (1) { publish_message(); usleep(10000); } } using namespace std; int main(int argc, char *argv[]) { thread thread_input(input); thread thread_print(print); thread thread_publish(publish); thread_input.join(); thread_print.join(); thread_publish.join(); return 0; }
[ "cwjia98@gmail.com" ]
cwjia98@gmail.com
916fe8bb2128e9fe1d6b7da54d960d1d9ff938d8
416fd0f6e8537dc1a11025d11e0be40c3948d304
/src-es/Menu.cpp
2fcb6344e2774e1ac49afe90a54950f45e6347de
[]
no_license
fabiopichler/ZeldaOLB-SDL2
a5a3b1db692286ad66bda2e569374abaabc7d4c2
d30a0c1436163e8da7fcaac0eb953eed35fcf3f4
refs/heads/master
2022-10-30T20:39:48.533757
2020-06-12T20:41:06
2020-06-12T20:41:06
266,054,320
0
0
null
null
null
null
ISO-8859-1
C++
false
false
19,655
cpp
/* Zelda Oni Link Begins Copyright (C) 2006-2008 Vincent Jouillat Please send bugreports with examples or suggestions to www.zeldaroth.fr */ #include <sstream> #include <iostream> #include <string> #include <SDL2/SDL.h> #include <SDL2/SDL_image.h> #include "Menu.h" #include "Texte.h" #include "Joueur.h" #include "Monde.h" #include "Projectile.h" #include "Jeu.h" Menu::Menu(Jeu* jeu) : gpJeu(jeu), sens(0), val(0), anim(0) { lastAnimTime = SDL_GetTicks(); imageCadre = IMG_Load("data/images/menu/bord.png"); imageCoeur = IMG_Load("data/images/menu/coeur.png"); imageObjets = IMG_Load("data/images/statut/objets.png"); imageInventaire = IMG_Load("data/images/statut/inventaire.png"); SDL_SetColorKey(imageCadre,SDL_TRUE,SDL_MapRGB(imageCadre->format,0,0,255)); SDL_SetColorKey(imageCoeur,SDL_TRUE,SDL_MapRGB(imageCoeur->format,0,0,255)); } Menu::~Menu() { SDL_FreeSurface(imageCadre); SDL_FreeSurface(imageCoeur); SDL_FreeSurface(imageObjets); SDL_FreeSurface(imageInventaire); } void Menu::draw(SDL_Surface* gpScreen) { if (!gpJeu->getStop()) gpJeu->setStop(true); drawCadres(gpScreen); drawCoeur(gpScreen); drawCristaux(gpScreen); drawStatut(gpScreen); drawInventaire(gpScreen); drawCurseur(gpScreen); if(SDL_GetTicks() > lastAnimTime + 240) { lastAnimTime = SDL_GetTicks(); anim++; if (anim > 1) anim = 0; } if(sens==1 && val<200)val+=25; if(sens==0 && val > 0) { val-=25; if (val<=0) gpJeu->setStop(false); } } void Menu::drawCurseur(SDL_Surface* gpScreen) { int dec = 200-val; SDL_Rect src; SDL_Rect dst; Joueur* gpJoueur = gpJeu->getJoueur(); src.w=32; src.h=32; src.y=0; //curseur if (anim==1) { if ((gpJoueur->getTypeAnim()<4 || gpJoueur->getTypeAnim()>20) && !gpJoueur->getOni()) src.x=48; else src.x=80; dst.x=24+32*(gpJoueur->getObjet()%3)-dec; dst.y=24+32*(gpJoueur->getObjet()/3); if (dst.x > -15) { if (dst.x < 0) {src.x -= dst.x; src.w+= dst.x; dst.x = 0;} SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); if (src.w < 16) {src.x -= (16-src.w); dst.x-= (16-src.w); src.w = 16;} } } } void Menu::drawCadres(SDL_Surface* gpScreen) { int dec = 200-val; SDL_Rect src; SDL_Rect dst; src.w=16; src.h=16; //cadre inventaire src.x = 0; src.y = 0; dst.x = 16-dec; dst.y = 16; if (dst.x > -15) { if (dst.x < 0) {src.x -= dst.x; src.w+= dst.x; dst.x = 0;} SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); if (src.w < 16) {src.x -= (16-src.w); dst.x-= (16-src.w); src.w = 16;} } src.x = 16; for (int i = 0; i < 5; i++) { dst.x += 16; if (dst.x > -15) { if (dst.x < 0) {src.x -= dst.x; src.w+= dst.x; dst.x = 0;} SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); if (src.w < 16) {src.x -= (16-src.w); dst.x-= (16-src.w); src.w = 16;} } } src.x = 32; dst.x+=16; if (dst.x > -15) { if (dst.x < 0) {src.x -= dst.x; src.w+= dst.x; dst.x = 0;} SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); if (src.w < 16) {src.x -= (16-src.w); dst.x-= (16-src.w); src.w = 16;} } src.y=16; for (int j = 0; j < 7; j++) { src.x=0; dst.x=16-dec; dst.y+=16; if (dst.x > -15) { if (dst.x < 0) {src.x -= dst.x; src.w+= dst.x; dst.x = 0;} SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); if (src.w < 16) {src.x -= (16-src.w); dst.x-= (16-src.w); src.w = 16;} } src.x=16; for (int i = 0; i < 5; i++) { dst.x+=16; if (dst.x > -15) { if (dst.x < 0) {src.x -= dst.x; src.w+= dst.x; dst.x = 0;} SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); if (src.w < 16) {src.x -= (16-src.w); dst.x-= (16-src.w); src.w = 16;} } } src.x=32; dst.x+=16; if (dst.x > -15) { if (dst.x < 0) {src.x -= dst.x; src.w+= dst.x; dst.x = 0;} SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); if (src.w < 16) {src.x -= (16-src.w); dst.x-= (16-src.w); src.w = 16;} } } src.y=32; src.x=0; dst.x=16-dec; dst.y+=16; if (dst.x > -15) { if (dst.x < 0) {src.x -= dst.x; src.w+= dst.x; dst.x = 0;} SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); if (src.w < 16) {src.x -= (16-src.w); dst.x-= (16-src.w); src.w = 16;} } src.x=16; for (int i = 0; i < 5; i++) { dst.x+=16; if (dst.x > -15) { if (dst.x < 0) {src.x -= dst.x; src.w+= dst.x; dst.x = 0;} SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); if (src.w < 16) {src.x -= (16-src.w); dst.x-= (16-src.w); src.w = 16;} } } src.x=32; dst.x+=16; if (dst.x > -15) { if (dst.x < 0) {src.x -= dst.x; src.w+= dst.x; dst.x = 0;} SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); if (src.w < 16) {src.x -= (16-src.w); dst.x-= (16-src.w); src.w = 16;} } //cadre statut src.x = 0; src.y = 0; dst.x = 144; dst.y = 16 - dec; if (dst.y > -15) { if (dst.y < 0) {src.y -= dst.y; src.h+= dst.y; dst.y = 0;} SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); if (src.h < 16) {src.y -= (16-src.h); dst.y-= (16-src.h); src.h = 16;} } src.x = 16; for (int i = 0; i < 8; i++) { dst.x += 16; if (dst.y > -15) { if (dst.y < 0) {src.y -= dst.y; src.h+= dst.y; dst.y = 0;} SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); if (src.h < 16) {src.y -= (16-src.h); dst.y-= (16-src.h); src.h = 16;} } } src.x = 32; dst.x+=16; if (dst.y > -15) { if (dst.y < 0) {src.y -= dst.y; src.h+= dst.y; dst.y = 0;} SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); if (src.h < 16) {src.y -= (16-src.h); dst.y-= (16-src.h); src.h = 16;} } src.y=16; for (int j = 0; j < 7; j++) { src.x=0; dst.x=144; dst.y+=16; if (dst.y > -15) { if (dst.y < 0) {src.y -= dst.y; src.h+= dst.y; dst.y = 0;} SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); if (src.h < 16) {src.y -= (16-src.h); dst.y-= (16-src.h); src.h = 16;} } src.x=16; for (int i = 0; i < 8; i++) { dst.x+=16; if (dst.y > -15) { if (dst.y < 0) {src.y -= dst.y; src.h+= dst.y; dst.y = 0;} SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); if (src.h < 16) {src.y -= (16-src.h); dst.y-= (16-src.h); src.h = 16;} } } src.x=32; dst.x+=16; if (dst.y > -15) { if (dst.y < 0) {src.y -= dst.y; src.h+= dst.y; dst.y = 0;} SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); if (src.h < 16) {src.y -= (16-src.h); dst.y-= (16-src.h); src.h = 16;} } } src.y=32; src.x=0; dst.x=144; dst.y+=16; if (dst.y > -15) { if (dst.y < 0) {src.y -= dst.y; src.h+= dst.y; dst.y = 0;} SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); if (src.h < 16) {src.y -= (16-src.h); dst.y-= (16-src.h); src.h = 16;} } src.x=16; for (int i = 0; i < 8; i++) { dst.x+=16; if (dst.y > -15) { if (dst.y < 0) {src.y -= dst.y; src.h+= dst.y; dst.y = 0;} SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); if (src.h < 16) {src.y -= (16-src.h); dst.y-= (16-src.h); src.h = 16;} } } src.x=32; dst.x+=16; if (dst.y > -15) { if (dst.y < 0) {src.y -= dst.y; src.h+= dst.y; dst.y = 0;} SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); if (src.h < 16) {src.y -= (16-src.h); dst.y-= (16-src.h); src.h = 16;} } //cadre cristaux src.x = 0; src.y = 0; dst.x = 80; dst.y = 176+dec; SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); src.x = 16; for (int i = 0; i < 8; i++) { dst.x += 16; SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); } src.x = 32; dst.x+=16; SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); src.y=16; src.x=0; dst.x=80; dst.y+=16; SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); src.x=16; for (int i = 0; i < 8; i++) { dst.x+=16; SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); } src.x=32; dst.x+=16; SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); src.y=32; src.x=0; dst.x=80; dst.y+=16; SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); src.x=16; for (int i = 0; i < 8; i++) { dst.x+=16; SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); } src.x=32; dst.x+=16; SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); //cadre link src.w=48; src.h=48; src.x = 0; src.y = 0; dst.x = 16; dst.y = 176+dec; SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); gpJeu->getJoueur()->draw2(32,186+dec,gpScreen); //cadre coeur src.w=48; src.h=48; src.x = 0; src.y = 0; dst.x = 256+dec; dst.y = 176; SDL_BlitSurface(imageCadre, &src, gpScreen, &dst); } void Menu::drawInventaire(SDL_Surface* gpScreen) { int dec = 200-val; Joueur* gpJoueur = gpJeu->getJoueur(); gpJeu->affiche(gpScreen, "X", 20-dec,20); SDL_Rect src; SDL_Rect dst; src.w=16; src.h=17; //arc if (gpJoueur->hasObjet(O_ARC)) { src.x=0; dst.x=32-dec; dst.y=32; if (gpJoueur->hasObjet(O_ARC)==5)src.y=0; else {src.x=16; src.y=102;} if (dst.x > -15) { if (dst.x < 0) {src.x -= dst.x; src.w+= dst.x; dst.x = 0;} SDL_BlitSurface(imageInventaire, &src, gpScreen, &dst); if (src.w < 16) {src.x -= (16-src.w); dst.x-= (16-src.w); src.w = 16;} } } //grappin if (gpJoueur->hasObjet(O_GRAPPIN)) { src.x=16; src.y=0; dst.x=64-dec; dst.y=32; if (dst.x > -15) { if (dst.x < 0) {src.x -= dst.x; src.w+= dst.x; dst.x = 0;} SDL_BlitSurface(imageInventaire, &src, gpScreen, &dst); if (src.w < 16) {src.x -= (16-src.w); dst.x-= (16-src.w); src.w = 16;} } } //bombes if (gpJoueur->hasObjet(O_SAC_BOMBES) && gpJoueur->getBombe()>0) { src.x=32; src.y=0; dst.x=96-dec; dst.y=32; if (dst.x > -15) { if (dst.x < 0) {src.x -= dst.x; src.w+= dst.x; dst.x = 0;} SDL_BlitSurface(imageInventaire, &src, gpScreen, &dst); if (src.w < 16) {src.x -= (16-src.w); dst.x-= (16-src.w); src.w = 16;} } } //baguette de feu if (gpJoueur->hasObjet(O_BFEU)) { src.x=0; src.y=17; dst.x=32-dec; dst.y=64; if (dst.x > -15) { if (dst.x < 0) {src.x -= dst.x; src.w+= dst.x; dst.x = 0;} SDL_BlitSurface(imageInventaire, &src, gpScreen, &dst); if (src.w < 16) {src.x -= (16-src.w); dst.x-= (16-src.w); src.w = 16;} } } //baguette de glace if (gpJoueur->hasObjet(O_BGLACE)) { src.x=16; src.y=17; dst.x=64-dec; dst.y=64; if (dst.x > -15) { if (dst.x < 0) {src.x -= dst.x; src.w+= dst.x; dst.x = 0;} SDL_BlitSurface(imageInventaire, &src, gpScreen, &dst); if (src.w < 16) {src.x -= (16-src.w); dst.x-= (16-src.w); src.w = 16;} } } //lanterne if (gpJoueur->hasObjet(O_LANTERNE)) { src.x=32; src.y=17; dst.x=96-dec; dst.y=64; if (dst.x > -15) { if (dst.x < 0) {src.x -= dst.x; src.w+= dst.x; dst.x = 0;} SDL_BlitSurface(imageInventaire, &src, gpScreen, &dst); if (src.w < 16) {src.x -= (16-src.w); dst.x-= (16-src.w); src.w = 16;} } } //marteau if (gpJoueur->hasObjet(O_MARTEAU)) { src.x=0; src.y=34; dst.x=32-dec; dst.y=96; if (dst.x > -15) { if (dst.x < 0) {src.x -= dst.x; src.w+= dst.x; dst.x = 0;} SDL_BlitSurface(imageInventaire, &src, gpScreen, &dst); if (src.w < 16) {src.x -= (16-src.w); dst.x-= (16-src.w); src.w = 16;} } } //flute if (gpJoueur->hasObjet(O_OCARINA)) { src.x=0; src.y=85; dst.x=64-dec; dst.y=96; if (dst.x > -15) { if (dst.x < 0) {src.x -= dst.x; src.w+= dst.x; dst.x = 0;} SDL_BlitSurface(imageInventaire, &src, gpScreen, &dst); if (src.w < 16) {src.x -= (16-src.w); dst.x-= (16-src.w); src.w = 16;} } } //masque if (gpJoueur->hasObjet(O_MASQUE)) { src.x=0; src.y=102; dst.x=96-dec; dst.y=96; if (gpJoueur->hasObjet(O_MASQUE)==2) {src.x=16;src.y=85;} if (dst.x > -15) { if (dst.x < 0) {src.x -= dst.x; src.w+= dst.x; dst.x = 0;} SDL_BlitSurface(imageInventaire, &src, gpScreen, &dst); if (src.w < 16) {src.x -= (16-src.w); dst.x-= (16-src.w); src.w = 16;} } } //bouteilles for (int i = 0; i < 3; i++) { if (gpJoueur->hasBouteille(i)) { dst.x=32*(i+1)-dec; dst.y=128; switch (gpJoueur->hasBouteille(i)) { case 1 : src.x=0; src.y=68; break; case 2 : src.x=0; src.y=51; break; case 3 : src.x=16; src.y=51; break; case 4 : src.x=32; src.y=51; break; } if (dst.x > -15) { if (dst.x < 0) {src.x -= dst.x; src.w+= dst.x; dst.x = 0;} SDL_BlitSurface(imageInventaire, &src, gpScreen, &dst); if (src.w < 16) {src.x -= (16-src.w); dst.x-= (16-src.w); src.w = 16;} } } } } void Menu::drawStatut(SDL_Surface* gpScreen) { int dec = 200-val; std::ostringstream oss; Joueur* gpJoueur = gpJeu->getJoueur(); int i = 36; if (!gpJoueur->hasObjet(O_LANTERNE) || !gpJoueur->getOnilink()) i+=8; gpJeu->affiche(gpScreen, "ESTATUTO :", 148,20-dec); int v = gpJoueur->getVie(); int vm = gpJoueur->getVieMax(); if (v < 10) oss<<"0"; oss << v << "/"; if (vm < 10) oss<<"0"; oss << vm; gpJeu->affiche(gpScreen, "VIDA : " + oss.str(), 148,i-dec); i+=16; if (gpJoueur->hasObjet(O_LANTERNE)) { oss.str(""); int m = gpJoueur->getMagie(); int mm = gpJoueur->getMagieMax(); if (m < 10) oss<<"0"; oss << m << "/"; if (mm < 10) oss<<"0"; oss << mm; gpJeu->affiche(gpScreen, "MAGIA : " + oss.str(), 148,i-dec); i+=16; } if (gpJoueur->getOnilink()) { oss.str(""); int o = gpJoueur->getOnijauge(); int oo = gpJoueur->getOnimax(); if (o < 10) oss<<"0"; oss << o << "/"; if (oo < 10) oss<<"0"; oss << oo; gpJeu->affiche(gpScreen, "ONI LINK : " + oss.str(), 148,i-dec); i+=16; } oss.str(""); oss << gpJoueur->getForce(); gpJeu->affiche(gpScreen, "FUERZA : " + oss.str(), 148,i-dec); i+=16; oss.str(""); oss << gpJoueur->getDefense(); gpJeu->affiche(gpScreen, "DEFENSA : " + oss.str(), 148,i-dec); i+=16; oss.str(""); int h = gpJoueur->getTemps(2); int m = gpJoueur->getTemps(1); int s = gpJoueur->getTemps(0); if (h < 10) oss<<"0"; oss << h << ":"; if (m < 10) oss<<"0"; oss << m << ":"; if (s < 10) oss<<"0"; oss << s; gpJeu->affiche(gpScreen, "TIEMPO : " + oss.str(), 148,i-dec); SDL_Rect src; SDL_Rect dst; src.y=0; src.w=16; src.h=16; dst.y=136-dec; //épée if (gpJoueur->getEpee()) { src.x = 16 * (gpJoueur->getEpee()-1); dst.x=156; if (gpJoueur->getOni()) { if (gpJoueur->hasObjet(O_MASQUE)==2) src.x=162; else src.x=112; } if (dst.y > -15) { if (dst.y < 0) {src.y -= dst.y; src.h+= dst.y; dst.y = 0;} SDL_BlitSurface(imageObjets, &src, gpScreen, &dst); if (src.h < 16) {src.y -= (16-src.h); dst.y-= (16-src.h); src.h = 16;} } } //bouclier if (gpJoueur->getBouclier()) { src.x = 16 * (gpJoueur->getBouclier()-1); src.y=16; dst.x=176; if (gpJoueur->getOni()) { if (gpJoueur->hasObjet(O_MASQUE)==2) src.x=162; else {src.x=96; src.y=0;} } if (dst.y > -15) { if (dst.y < 0) {src.y -= dst.y; src.h+= dst.y; dst.y = 0;} SDL_BlitSurface(imageObjets, &src, gpScreen, &dst); if (src.h < 16) {src.y -= (16-src.h); dst.y-= (16-src.h); src.h = 16;} } } //tunique if (gpJoueur->getTunique()) { src.x = 48 + 16 * (gpJoueur->getTunique()-1); src.y=16; dst.x=196; if (gpJoueur->getOni()) src.x=96; if (dst.y > -15) { if (dst.y < 0) {src.y -= dst.y; src.h+= dst.y; dst.y = 0;} SDL_BlitSurface(imageObjets, &src, gpScreen, &dst); if (src.h < 16) {src.y -= (16-src.h); dst.y-= (16-src.h); src.h = 16;} } } //bottes if (gpJoueur->hasObjet(O_BOTTES)) { src.x = 80; src.y=0; dst.x=216; if (dst.y > -15) { if (dst.y < 0) {src.y -= dst.y; src.h+= dst.y; dst.y = 0;} SDL_BlitSurface(imageObjets, &src, gpScreen, &dst); if (src.h < 16) {src.y -= (16-src.h); dst.y-= (16-src.h); src.h = 16;} } } //gants if (gpJoueur->hasObjet(O_GANTS)) { src.x=32; dst.x=236; if (gpJoueur->hasObjet(O_GANTS)==2)src.y=34; else src.y=85; if (dst.y > -15) { if (dst.y < 0) {src.y -= dst.y; src.h+= dst.y; dst.y = 0;} SDL_BlitSurface(imageInventaire, &src, gpScreen, &dst); if (src.h < 16) {src.y -= (16-src.h); dst.y-= (16-src.h); src.h = 16;} } } //palmes if (gpJoueur->hasObjet(O_PALMES)) { src.x=16; src.y=34; dst.x=256; if (dst.y > -15) { if (dst.y < 0) {src.y -= dst.y; src.h+= dst.y; dst.y = 0;} SDL_BlitSurface(imageInventaire, &src, gpScreen, &dst); if (src.h < 16) {src.y -= (16-src.h); dst.y-= (16-src.h); src.h = 16;} } } //sac de bombes if (gpJoueur->hasObjet(O_SAC_BOMBES)) { src.x = 112; src.y = 16; dst.x=276; if (dst.y > -15) { if (dst.y < 0) {src.y -= dst.y; src.h+= dst.y; dst.y = 0;} SDL_BlitSurface(imageObjets, &src, gpScreen, &dst); if (src.h < 16) {src.y -= (16-src.h); dst.y-= (16-src.h); src.h = 16;} } } } void Menu::drawCristaux(SDL_Surface* gpScreen) { int dec = 200-val; gpJeu->affiche(gpScreen, "GRAAL :", 84,180+dec); SDL_Rect src; SDL_Rect dst; src.w=16; src.h=16; src.y=68; dst.x=94; dst.y=198+dec; for (int i = 0; i < 5; i++) { if (gpJeu->getJoueur()->hasCristal(i)) src.x=16; else src.x=32; SDL_BlitSurface(imageInventaire, &src, gpScreen, &dst); dst.x+=32-3; } } void Menu::drawCoeur(SDL_Surface* gpScreen) { int dec = 200-val; SDL_Rect src; SDL_Rect dst; src.w=16; src.h=16; src.y=0; src.x = 16*(gpJeu->getJoueur()->nbQuarts()%4); dst.x = 272+dec; dst.y = 192; SDL_BlitSurface(imageCoeur, &src, gpScreen, &dst); } void Menu::menuIn() { sens = 1; val = 0; gpJeu->getAudio()->playSound(1); } void Menu::menuOut() { sens = 0; gpJeu->getAudio()->playSound(2); } int Menu::getVal() { return val;}
[ "fabiopichler1992@gmail.com" ]
fabiopichler1992@gmail.com
6be60835ab962dc90e3c4c468c17345f54bf9f6e
2ada10483cd3f9512034a9da0c1477417e5437bc
/src/practice/src/hackerrank/src/cpp_exception_handling.cpp
1c5650373f839c7aa793e1574e5642de238ecf0c
[ "BSD-3-Clause" ]
permissive
behnamasadi/data_structure_algorithm
d76f4ba3b1d8c64e30be63dc799e9c16127e656e
ba58f96b4cb1f9a4c4b2dc748aed75370747cbe7
refs/heads/master
2021-06-24T10:56:59.249390
2021-06-22T16:41:53
2021-06-22T16:41:53
245,398,545
1
0
null
null
null
null
UTF-8
C++
false
false
905
cpp
#include <iostream> #include <stdexcept> using namespace std; int largest_proper_divisor(int n) { if (n == 0) { throw invalid_argument("largest proper divisor is not defined for n=0"); } if (n == 1) { throw invalid_argument("largest proper divisor is not defined for n=1"); } for (int i = n/2; i >= 1; --i) { if (n % i == 0) { return i; } } return -1; // will never happen } void process_input(int n) { int d ; try { d = largest_proper_divisor(n); } catch (invalid_argument &e) { std::cout<<e.what() <<std::endl; std::cout<<"returning control flow to caller"<<std::endl; return; } cout << "result=" << d << endl; std::cout<<"returning control flow to caller"<<std::endl; } int main() { int n; cin >> n; process_input(n); return 0; }
[ "behnam.asadi@gmail.com" ]
behnam.asadi@gmail.com
89f91fe9d396f1c3474db31e0429ba4c3234c5ae
3ff1fe3888e34cd3576d91319bf0f08ca955940f
/cynosdb/src/v20190107/model/DescribeClusterPasswordComplexityRequest.cpp
b7a8e8a7672d55d5952e028d04b7333e90c786d3
[ "Apache-2.0" ]
permissive
TencentCloud/tencentcloud-sdk-cpp
9f5df8220eaaf72f7eaee07b2ede94f89313651f
42a76b812b81d1b52ec6a217fafc8faa135e06ca
refs/heads/master
2023-08-30T03:22:45.269556
2023-08-30T00:45:39
2023-08-30T00:45:39
188,991,963
55
37
Apache-2.0
2023-08-17T03:13:20
2019-05-28T08:56:08
C++
UTF-8
C++
false
false
2,107
cpp
/* * Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include <tencentcloud/cynosdb/v20190107/model/DescribeClusterPasswordComplexityRequest.h> #include <tencentcloud/core/utils/rapidjson/document.h> #include <tencentcloud/core/utils/rapidjson/writer.h> #include <tencentcloud/core/utils/rapidjson/stringbuffer.h> using namespace TencentCloud::Cynosdb::V20190107::Model; using namespace std; DescribeClusterPasswordComplexityRequest::DescribeClusterPasswordComplexityRequest() : m_clusterIdHasBeenSet(false) { } string DescribeClusterPasswordComplexityRequest::ToJsonString() const { rapidjson::Document d; d.SetObject(); rapidjson::Document::AllocatorType& allocator = d.GetAllocator(); if (m_clusterIdHasBeenSet) { rapidjson::Value iKey(rapidjson::kStringType); string key = "ClusterId"; iKey.SetString(key.c_str(), allocator); d.AddMember(iKey, rapidjson::Value(m_clusterId.c_str(), allocator).Move(), allocator); } rapidjson::StringBuffer buffer; rapidjson::Writer<rapidjson::StringBuffer> writer(buffer); d.Accept(writer); return buffer.GetString(); } string DescribeClusterPasswordComplexityRequest::GetClusterId() const { return m_clusterId; } void DescribeClusterPasswordComplexityRequest::SetClusterId(const string& _clusterId) { m_clusterId = _clusterId; m_clusterIdHasBeenSet = true; } bool DescribeClusterPasswordComplexityRequest::ClusterIdHasBeenSet() const { return m_clusterIdHasBeenSet; }
[ "tencentcloudapi@tencent.com" ]
tencentcloudapi@tencent.com
1363380dc1239f8a87ba673d306aaf9a8b128044
b88bf5e0f138e9b20e823f6d01c302879e6155a1
/CPP/longest_increasing_subsequence.cpp
6de8eb2b37df9c13106154a6a4bd68d5e1fa407c
[ "MIT" ]
permissive
anshul3pathi/Project-alpha
4e828ecb27de9fb90baf6c81ab4958d8d8dcfe85
54803533c68b9cfcd4a1f17447a092b15c1d929d
refs/heads/main
2023-01-10T11:58:38.299315
2020-10-27T10:55:35
2020-10-27T10:55:35
307,665,785
0
0
MIT
2020-10-27T10:38:43
2020-10-27T10:38:43
null
UTF-8
C++
false
false
954
cpp
#include <iostream> using namespace std; int main(){ int length; //number of elements cin >> length; int value[length]; //array to store value of elements for(int i=0; i<length; ++i){ cin>>value[i]; } /*algorithm: This problem can be solved using Dynamic Programming. Time complexity of the algorithm will be O(n^2) Each state of DP will store the longest increasing subsequence ending at that position */ int dp[length]; //initialising dp[i] = 1; since in any case we can have a single element for(int i=0; i<length; ++i){ dp[i]=1; } for(int i=0; i<length; ++i){ for(int j=0; j<i; ++j){ if(value[i]>=value[j]){ dp[i]=max(dp[i], dp[j]+1); } } } int answer =0; //answer is going to be maximum of all dp[i] for(int i=0; i<length; ++i){ answer= max(answer, dp[i]); } cout<<answer; }
[ "tanaymodani18@gmail.com" ]
tanaymodani18@gmail.com
5c96919dcb8ab2ac11fbcde6a86999c725153fdb
ce036ed927ccf735ac51524d7413bed05e2b25c4
/Y86.h
d6570b0825f9b1ccc025c427bed24c753ec74942
[]
no_license
reevesjd/lab4
f0fe0b71cc66888b815050299f7a1e5bdf7468d4
845485ae36f3f91a27f814a0151270cc80818330
refs/heads/master
2020-04-20T22:32:55.069025
2019-02-04T22:38:55
2019-02-04T22:38:55
169,143,655
0
0
null
null
null
null
UTF-8
C++
false
false
615
h
/* File: Y86.h Desc: Y86 class declaration Author: efb */ #ifndef Y86_H #define Y86_H #include <string> #include "Memory.h" #include "ProgRegisters.h" class Y86 { Memory memory; ProgRegisters regs; /* Private member functions */ /* Public interface */ public: Y86(); void reset(); void clockP0(); void clockP1(); Memory& getMemory(){return memory;} // used to test memory ProgRegisters& getProgRegisters(){return regs;} // used to test registers }; #endif
[ "ellerhc@student2.cs.appstate.edu" ]
ellerhc@student2.cs.appstate.edu
e5c8712331ab126b4c9289f312160ff10b1c6cce
44227276cdce0d15ee0cdd19a9f38a37b9da33d7
/arcane/src/arcane/core/ISharedReference.h
af1a8398fc8fcbc5f89a3bcf4661a3a1e2816bee
[ "Apache-2.0", "LGPL-2.1-or-later" ]
permissive
arcaneframework/framework
7d0050f0bbceb8cc43c60168ba74fff0d605e9a3
813cfb5eda537ce2073f32b1a9de6b08529c5ab6
refs/heads/main
2023-08-19T05:44:47.722046
2023-08-11T16:22:12
2023-08-11T16:22:12
357,932,008
31
21
Apache-2.0
2023-09-14T16:42:12
2021-04-14T14:21:07
C++
UTF-8
C++
false
false
2,802
h
// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*- //----------------------------------------------------------------------------- // Copyright 2000-2022 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com) // See the top-level COPYRIGHT file for details. // SPDX-License-Identifier: Apache-2.0 //----------------------------------------------------------------------------- /*---------------------------------------------------------------------------*/ /* ISharedReference.h (C) 2000-2006 */ /* */ /* Interface de la classe compteur de référence. */ /*---------------------------------------------------------------------------*/ #ifndef ARCANE_ISHAREDREFERENCE_H #define ARCANE_ISHAREDREFERENCE_H /*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/ #include "arcane/utils/Ptr.h" /*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/ ARCANE_BEGIN_NAMESPACE /*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/ /*! * \ingroup Core * \brief Interface d'un compteur de référence. * Le compteur de référence permet à une instance classe de connaître le nombre de références sur elle. Lorsque ce nombre arrive à zéro, cela signifie que l'instance n'est plus utilisée. Ce système est utilisé principalement pour libérer automatiquement la mémoire lorsque le nombre de références tombe à zéro. Cette classe s'utilise par l'intermédiaire de classes comme AutoRefT qui permettent d'incrémenter ou de décrémenter automatiquement le compteur de l'objet sur lesquelles elles pointent. \since 0.2.9 \author Gilles Grospellier \date 06/10/2000 */ class ARCANE_CORE_EXPORT ISharedReference { public: //! Libère les ressources virtual ~ISharedReference(){} public: //! Incrémente le compteur de référence virtual void addRef() =0; //! Décrémente le compteur de référence virtual void removeRef() =0; //! Retourne la valeur du compteur de référence virtual Int32 refCount() const =0; }; /*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/ ARCANE_END_NAMESPACE /*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/ #endif
[ "Gilles.Grospellier@cea.fr" ]
Gilles.Grospellier@cea.fr
9942d4993939ebd646cedc2ff5073340cfe493a2
88e152e0cb34a79022e4f1cba6d7780e40c7ba19
/src/Meteor/MapInfo.cpp
e58d19616de3e8a56a2a845ba7fd11abf4d5d73f
[ "MIT" ]
permissive
namse/meteor
a8292499a343dc64193b935e39b3c659d80f9bfd
635fe8b99079cb5505e9fb1701430d4723f7eb1f
refs/heads/master
2021-05-26T14:20:20.068395
2013-11-06T06:09:12
2013-11-06T06:09:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,250
cpp
#include "stdafx.h" #include "MapInfo.h" // ---------------------------------------------------------------- // Constructor // ---------------------------------------------------------------- CMapInfo::CMapInfo( std::wstring mapType ) : m_MapType( mapType ) { } // ---------------------------------------------------------------- // Destrutor // ---------------------------------------------------------------- CMapInfo::~CMapInfo(void) { } // ---------------------------------------------------------------- // LoadResource // ---------------------------------------------------------------- bool CMapInfo::LoadResource() { HANDLE hFile; DWORD dwBytesRead = 0; DWORD dwBytesWrite = 0; std::wstring filePath = m_MapType + L".map"; hFile = CreateFile( filePath.c_str(), // file to open GENERIC_READ, // open for reading FILE_SHARE_READ, // share for reading NULL, // default security OPEN_EXISTING, // existing file only FILE_ATTRIBUTE_NORMAL, // normal file NULL); // no attr. template if ( hFile == INVALID_HANDLE_VALUE ) { wprintf( L"Error: unable to open file \"%s\" for read.\n", filePath.c_str() ); return false; } if ( FALSE == ReadFile( hFile, &m_Header, sizeof(m_Header), &dwBytesRead, NULL ) || dwBytesRead < sizeof(m_Header) ) { wprintf( L"Error: Unable to read from file.\n" ); CloseHandle(hFile); return false; } for ( UINT count = 0; count < m_Header.m_TileCount; ++count ) { TileData tileData; if ( FALSE == ReadFile( hFile, &tileData, sizeof(tileData), &dwBytesRead, NULL ) || dwBytesRead < sizeof(tileData) ) { wprintf( L"Error: Unable to read from file.\n" ); CloseHandle(hFile); return false; } m_Tiles.push_back( tileData ); } for ( UINT count = 0; count < m_Header.m_MapCount; ++count ) { CMapData * mapData = new CMapData(); mapData->Read( hFile ); m_Maps.push_back( mapData ); } CloseHandle( hFile ); return true; } // ---------------------------------------------------------------- // Release // ---------------------------------------------------------------- void CMapInfo::Release() { for ( auto map : m_Maps ) delete map; }
[ "jinus.kr@gmail.com" ]
jinus.kr@gmail.com
4ee680c6139ee956b77be2eb2d21bae23d6cef27
eff037739063243685ad09d0db639a80d3433c98
/02-cpp/file-io/fstream.cpp
c5d4522fea4fcba304e348d436af7042b9970d48
[]
no_license
mahumberto/misc-programming
34f4cfbcd9f9c404aba25256eb357b5aa17bbd75
6e7fbdcac3eca9ee21623ee15c77de74d2befc1a
refs/heads/master
2023-06-10T07:16:27.436628
2017-06-14T16:52:44
2017-06-14T16:52:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,453
cpp
/** * File io basics * - include <fstream> //includes file stream handle lib * - ofstream myfile; //for writing to a file * - ifstream myfile; //for reading a file * - fstream myfile; //for reading and writing a file * - myfile.open("fname"); //opens file called fname * - myfile.close("fname"); //closes file called fname */ #include <iostream> #include <fstream> #include <string> using namespace std; int readFile() { string line; //create an input stream to write to the file ifstream myfileO ("input.txt"); if (myfileO.is_open()) { while ( getline (myfileO,line) ) { cout << line << '\n'; } myfileO.close(); } else cout << "Unable to open file for reading"; } int main () { //create an output stream to write to the file //ios:app - append the new lines to the end of the file ofstream myfileI ("input.txt", ios::app); if (myfileI.is_open()) { myfileI << "\nI am adding a line.\n"; myfileI << "I am adding another line.\n"; myfileI.close(); } else cout << "Unable to open file for writing"; readFile(); //rw input.tx fstream myfile("input.txt"); if(myfile.is_open()) { myfile << "Replace char sequence and erases endl also"; myfile << endl; myfile.close(); } else cout << "Unable to open file for writing"; readFile(); return 0; }
[ "ma.humberto@gmail.com" ]
ma.humberto@gmail.com
17347f9925e4783cf553a87a1eaa2ce8c07e78fc
7decc996d7af648d16a27514823c8e613c12aecc
/basic_matrix_operations_example.cc
f804263778577fac620a07750ddb778083af600d
[]
no_license
vfragoso/eigen_labs
b87074c8532b3e05d61837ffb6068f10a4f03ba6
10365040be577f70a3b5d13802a1e039568879e3
refs/heads/master
2020-09-16T16:15:00.404247
2016-09-09T16:50:42
2016-09-09T16:50:42
67,816,030
1
0
null
null
null
null
UTF-8
C++
false
false
4,510
cc
// Copyright (C) 2016 West Virginia University. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following // disclaimer in the documentation and/or other materials provided // with the distribution. // // * Neither the name of West Virginia University nor the // names of its contributors may be used to endorse or promote products // derived from this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE // POSSIBILITY OF SUCH DAMAGE. // // Please contact the author of this library if you have any questions. // Author: Victor Fragoso (victor.fragoso@mail.wvu.edu) #include <iostream> #include <Eigen/Core> // For standard vector and matrices. #include <Eigen/Geometry> // For cross products. // This example illustrates how to compute matrix-matrix, matrix-vector, and // vector-vector operations. For a quick review of more operations using Eigen // see https://eigen.tuxfamily.org/dox/group__TutorialMatrixArithmetic.html. int main(int argc, char** argv) { // Let's start with vector-vector operations. // Dot products. Eigen::Vector3f vector1; Eigen::Vector3f vector2; vector1.setRandom(); vector2.setRandom(); std::cout << "vector1 (transpose): " << vector1.transpose() << "\n"; std::cout << "vector2 (transpose): " << vector2.transpose() << "\n"; std::cout << "Dot product: " << vector1.dot(vector2) << "\n"; // Computing norms. std::cout << "vector1 (norm): " << vector1.norm() << "\n"; std::cout << "vector2 (norm): " << vector2.norm() << "\n"; // Transforming vectors into unit vectors. Eigen::Vector3f normalized_vector1 = vector1.normalized(); // Unit vector in place. vector1.normalize(); // Eigen overloads several operators (e.g., +, -, and *). These overlads // allow us to call several operations very naturally. // For instance, the addition of vectors: const Eigen::Vector3f added_vectors = vector1 + vector2; std::cout << "Added vectors (transpose): " << added_vectors.transpose() << "\n"; // Scaling a vector. const float scalar = 5.0f; const Eigen::Vector3f scaled_vector = scalar * vector1; std::cout << "Original vector (norm): " << vector1.norm() << "\n"; std::cout << "Scaled Vector (norm): " << scaled_vector.norm() << "\n"; // Cross product. const Eigen::Vector3f cross_product = vector1.cross(vector2); std::cout << "Cross product: " << cross_product.transpose() << "\n"; // Let's review matrix-vector operations. const Eigen::Matrix3f random_matrix = Eigen::Matrix3f::Random(); std::cout << "Matrix-vector multiplication: \n" << random_matrix * scaled_vector << std::endl; // Let's review matrix-matrix operations. // Addition. const Eigen::Matrix3f identity = Eigen::Matrix3f::Identity(); std::cout << "Addition: \n" << identity + random_matrix << "\n"; // Multiplication. const Eigen::Matrix3f result = identity * random_matrix; std::cout << "Multiplication: \n" << result << "\n"; // Eigen is very efficient when several operations occur in a statement. // It automatically finds a way internally to make the operations as efficient // as possible. const Eigen::Vector3f result2 = (scalar * identity * random_matrix * scaled_vector) + added_vectors; std::cout << "Efficient evalution of operations: " << result2.transpose() << "\n"; return 0; }
[ "victor.fragoso@mail.wvu.edu" ]
victor.fragoso@mail.wvu.edu
c3fa73b93b16bd36ec0e4c6e08ee92a7d214710e
6c4bcd1ad86869ee15aab228853060b26ed09e3b
/mailnews/imap/src/nsImapUtils.cpp
aa78a8cf384285debf554d4d06357a41de3e333b
[]
no_license
mxOBS/deb-pkg_icedove
18b43958d7bfc3529dc7de505ab6d31a08446be1
10b6a968583b8d721bedcffc87851c569e2467a3
refs/heads/master
2021-01-20T08:24:26.807514
2015-05-14T13:56:12
2015-05-14T13:56:12
35,611,831
0
0
null
null
null
null
UTF-8
C++
false
false
11,724
cpp
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "msgCore.h" #include "nsImapUtils.h" #include "nsCOMPtr.h" #include "nsIServiceManager.h" #include "prsystem.h" #include "prprf.h" #include "nsNetCID.h" // stuff for temporary root folder hack #include "nsIMsgAccountManager.h" #include "nsIMsgIncomingServer.h" #include "nsIImapIncomingServer.h" #include "nsMsgBaseCID.h" #include "nsImapCore.h" #include "nsMsgUtils.h" #include "nsImapFlagAndUidState.h" #include "nsISupportsObsolete.h" #include "nsIMAPNamespace.h" #include "nsIImapFlagAndUidState.h" nsresult nsImapURI2FullName(const char* rootURI, const char* hostName, const char* uriStr, char **name) { nsAutoCString uri(uriStr); nsAutoCString fullName; if (uri.Find(rootURI) != 0) return NS_ERROR_FAILURE; fullName = Substring(uri, strlen(rootURI)); uri = fullName; int32_t hostStart = uri.Find(hostName); if (hostStart <= 0) return NS_ERROR_FAILURE; fullName = Substring(uri, hostStart); uri = fullName; int32_t hostEnd = uri.FindChar('/'); if (hostEnd <= 0) return NS_ERROR_FAILURE; fullName = Substring(uri, hostEnd + 1); if (fullName.IsEmpty()) return NS_ERROR_FAILURE; *name = ToNewCString(fullName); return NS_OK; } /* parses ImapMessageURI */ nsresult nsParseImapMessageURI(const char* uri, nsCString& folderURI, uint32_t *key, char **part) { if(!key) return NS_ERROR_NULL_POINTER; nsAutoCString uriStr(uri); int32_t folderEnd = -1; // imap-message uri's can have imap:// url strings tacked on the end, // e.g., when opening/saving attachments. We don't want to look for '#' // in that part of the uri, if the attachment name contains '#', // so check for that here. if (StringBeginsWith(uriStr, NS_LITERAL_CSTRING("imap-message"))) folderEnd = uriStr.Find("imap://"); int32_t keySeparator = MsgRFindChar(uriStr, '#', folderEnd); if(keySeparator != -1) { int32_t keyEndSeparator = MsgFindCharInSet(uriStr, "/?&", keySeparator); nsAutoString folderPath; folderURI = StringHead(uriStr, keySeparator); folderURI.Cut(4, 8); // cut out the _message part of imap-message: // folder uri's don't have fully escaped usernames. int32_t atPos = folderURI.FindChar('@'); if (atPos != -1) { nsCString unescapedName, escapedName; int32_t userNamePos = folderURI.Find("//") + 2; uint32_t origUserNameLen = atPos - userNamePos; if (NS_SUCCEEDED(MsgUnescapeString(Substring(folderURI, userNamePos, origUserNameLen), 0, unescapedName))) { // Re-escape the username, matching the way we do it in uris, not the // way necko escapes urls. See nsMsgIncomingServer::GetServerURI. MsgEscapeString(unescapedName, nsINetUtil::ESCAPE_XALPHAS, escapedName); folderURI.Replace(userNamePos, origUserNameLen, escapedName); } } nsAutoCString keyStr; if (keyEndSeparator != -1) keyStr = Substring(uriStr, keySeparator + 1, keyEndSeparator - (keySeparator + 1)); else keyStr = Substring(uriStr, keySeparator + 1); *key = strtoul(keyStr.get(), nullptr, 10); if (part && keyEndSeparator != -1) { int32_t partPos = MsgFind(uriStr, "part=", false, keyEndSeparator); if (partPos != -1) { *part = ToNewCString(Substring(uriStr, keyEndSeparator)); } } } return NS_OK; } nsresult nsBuildImapMessageURI(const char *baseURI, uint32_t key, nsCString& uri) { uri.Append(baseURI); uri.Append('#'); uri.AppendInt(key); return NS_OK; } nsresult nsCreateImapBaseMessageURI(const nsACString& baseURI, nsCString &baseMessageURI) { nsAutoCString tailURI(baseURI); // chop off imap:/ if (tailURI.Find(kImapRootURI) == 0) tailURI.Cut(0, PL_strlen(kImapRootURI)); baseMessageURI = kImapMessageRootURI; baseMessageURI += tailURI; return NS_OK; } // nsImapMailboxSpec definition NS_IMPL_ISUPPORTS(nsImapMailboxSpec, nsIMailboxSpec) nsImapMailboxSpec::nsImapMailboxSpec() { mFolder_UIDVALIDITY = 0; mHighestModSeq = 0; mNumOfMessages = 0; mNumOfUnseenMessages = 0; mNumOfRecentMessages = 0; mNextUID = 0; mBoxFlags = 0; mSupportedUserFlags = 0; mHierarchySeparator = '\0'; mFolderSelected = false; mDiscoveredFromLsub = false; mOnlineVerified = false; mNamespaceForFolder = nullptr; } nsImapMailboxSpec::~nsImapMailboxSpec() { } NS_IMPL_GETSET(nsImapMailboxSpec, Folder_UIDVALIDITY, int32_t, mFolder_UIDVALIDITY) NS_IMPL_GETSET(nsImapMailboxSpec, HighestModSeq, uint64_t, mHighestModSeq) NS_IMPL_GETSET(nsImapMailboxSpec, NumMessages, int32_t, mNumOfMessages) NS_IMPL_GETSET(nsImapMailboxSpec, NumUnseenMessages, int32_t, mNumOfUnseenMessages) NS_IMPL_GETSET(nsImapMailboxSpec, NumRecentMessages, int32_t, mNumOfRecentMessages) NS_IMPL_GETSET(nsImapMailboxSpec, NextUID, int32_t, mNextUID) NS_IMPL_GETSET(nsImapMailboxSpec, HierarchyDelimiter, char, mHierarchySeparator) NS_IMPL_GETSET(nsImapMailboxSpec, FolderSelected, bool, mFolderSelected) NS_IMPL_GETSET(nsImapMailboxSpec, DiscoveredFromLsub, bool, mDiscoveredFromLsub) NS_IMPL_GETSET(nsImapMailboxSpec, OnlineVerified, bool, mOnlineVerified) NS_IMPL_GETSET(nsImapMailboxSpec, SupportedUserFlags, uint32_t, mSupportedUserFlags) NS_IMPL_GETSET(nsImapMailboxSpec, Box_flags, uint32_t, mBoxFlags) NS_IMPL_GETSET(nsImapMailboxSpec, NamespaceForFolder, nsIMAPNamespace *, mNamespaceForFolder) NS_IMETHODIMP nsImapMailboxSpec::GetAllocatedPathName(nsACString &aAllocatedPathName) { aAllocatedPathName = mAllocatedPathName; return NS_OK; } NS_IMETHODIMP nsImapMailboxSpec::SetAllocatedPathName(const nsACString &aAllocatedPathName) { mAllocatedPathName = aAllocatedPathName; return NS_OK; } NS_IMETHODIMP nsImapMailboxSpec::GetUnicharPathName(nsAString &aUnicharPathName) { aUnicharPathName = aUnicharPathName; return NS_OK; } NS_IMETHODIMP nsImapMailboxSpec::SetUnicharPathName(const nsAString &aUnicharPathName) { mUnicharPathName = aUnicharPathName; return NS_OK; } NS_IMETHODIMP nsImapMailboxSpec::GetHostName(nsACString &aHostName) { aHostName = mHostName; return NS_OK; } NS_IMETHODIMP nsImapMailboxSpec::SetHostName(const nsACString &aHostName) { mHostName = aHostName; return NS_OK; } NS_IMETHODIMP nsImapMailboxSpec::GetFlagState(nsIImapFlagAndUidState ** aFlagState) { NS_ENSURE_ARG_POINTER(aFlagState); NS_IF_ADDREF(*aFlagState = mFlagState); return NS_OK; } NS_IMETHODIMP nsImapMailboxSpec::SetFlagState(nsIImapFlagAndUidState * aFlagState) { NS_ENSURE_ARG_POINTER(aFlagState); mFlagState = aFlagState; return NS_OK; } nsImapMailboxSpec& nsImapMailboxSpec::operator= (const nsImapMailboxSpec& aCopy) { mFolder_UIDVALIDITY = aCopy.mFolder_UIDVALIDITY; mHighestModSeq = aCopy.mHighestModSeq; mNumOfMessages = aCopy.mNumOfMessages; mNumOfUnseenMessages = aCopy.mNumOfUnseenMessages; mNumOfRecentMessages = aCopy.mNumOfRecentMessages; mBoxFlags = aCopy.mBoxFlags; mSupportedUserFlags = aCopy.mSupportedUserFlags; mAllocatedPathName.Assign(aCopy.mAllocatedPathName); mUnicharPathName.Assign(aCopy.mUnicharPathName); mHierarchySeparator = mHierarchySeparator; mHostName.Assign(aCopy.mHostName); mFlagState = aCopy.mFlagState; mNamespaceForFolder = aCopy.mNamespaceForFolder; mFolderSelected = aCopy.mFolderSelected; mDiscoveredFromLsub = aCopy.mDiscoveredFromLsub; mOnlineVerified = aCopy.mOnlineVerified; return *this; } // use the flagState to determine if the gaps in the msgUids correspond to gaps in the mailbox, // in which case we can still use ranges. If flagState is null, we won't do this. void AllocateImapUidString(uint32_t *msgUids, uint32_t &msgCount, nsImapFlagAndUidState *flagState, nsCString &returnString) { uint32_t startSequence = (msgCount > 0) ? msgUids[0] : 0xFFFFFFFF; uint32_t curSequenceEnd = startSequence; uint32_t total = msgCount; int32_t curFlagStateIndex = -1; // a partial fetch flag state doesn't help us, so don't use it. if (flagState && flagState->GetPartialUIDFetch()) flagState = nullptr; for (uint32_t keyIndex = 0; keyIndex < total; keyIndex++) { uint32_t curKey = msgUids[keyIndex]; uint32_t nextKey = (keyIndex + 1 < total) ? msgUids[keyIndex + 1] : 0xFFFFFFFF; bool lastKey = (nextKey == 0xFFFFFFFF); if (lastKey) curSequenceEnd = curKey; if (!lastKey) { if (nextKey == curSequenceEnd + 1) { curSequenceEnd = nextKey; curFlagStateIndex++; continue; } if (flagState) { if (curFlagStateIndex == -1) { bool foundIt; flagState->GetMessageFlagsFromUID(curSequenceEnd, &foundIt, &curFlagStateIndex); if (!foundIt) { NS_WARNING("flag state missing key"); // The start of this sequence is missing from flag state, so move // on to the next key. curFlagStateIndex = -1; curSequenceEnd = startSequence = nextKey; continue; } } curFlagStateIndex++; uint32_t nextUidInFlagState; nsresult rv = flagState->GetUidOfMessage(curFlagStateIndex, &nextUidInFlagState); if (NS_SUCCEEDED(rv) && nextUidInFlagState == nextKey) { curSequenceEnd = nextKey; continue; } } } if (curSequenceEnd > startSequence) { returnString.AppendInt((int64_t) startSequence); returnString += ':'; returnString.AppendInt((int64_t) curSequenceEnd); startSequence = nextKey; curSequenceEnd = startSequence; curFlagStateIndex = -1; } else { startSequence = nextKey; curSequenceEnd = startSequence; returnString.AppendInt((int64_t) msgUids[keyIndex]); curFlagStateIndex = -1; } // check if we've generated too long a string - if there's no flag state, // it means we just need to go ahead and generate a too long string // because the calling code won't handle breaking up the strings. if (flagState && returnString.Length() > 950) { msgCount = keyIndex; break; } // If we are not the last item then we need to add the comma // but it's important we do it here, after the length check if (!lastKey) returnString += ','; } } void ParseUidString(const char *uidString, nsTArray<nsMsgKey> &keys) { // This is in the form <id>,<id>, or <id1>:<id2> char curChar = *uidString; bool isRange = false; uint32_t curToken; uint32_t saveStartToken = 0; for (const char *curCharPtr = uidString; curChar && *curCharPtr;) { const char *currentKeyToken = curCharPtr; curChar = *curCharPtr; while (curChar != ':' && curChar != ',' && curChar != '\0') curChar = *curCharPtr++; // we don't need to null terminate currentKeyToken because strtoul // stops at non-numeric chars. curToken = strtoul(currentKeyToken, nullptr, 10); if (isRange) { while (saveStartToken < curToken) keys.AppendElement(saveStartToken++); } keys.AppendElement(curToken); isRange = (curChar == ':'); if (isRange) saveStartToken = curToken + 1; } } void AppendUid(nsCString &msgIds, uint32_t uid) { char buf[20]; PR_snprintf(buf, sizeof(buf), "%u", uid); msgIds.Append(buf); }
[ "privacy@not.given" ]
privacy@not.given
e9dfefb68f30616593bdc99d0dd678916c335c07
05aebd51ced6eee139d3c24aeb0cba9036d0991d
/ExpProcessQt/ExpProcessQt/IO_Center.h
a3ec5b0b18fd3deb620d9ba58d100904a4280642
[]
no_license
saroad/MEI_Tool
fbac53bdc6a3978621d672a4de2cfe2e65fc5702
fb7f815ecf27234ef477a2d407d7a58f84053b54
refs/heads/master
2021-01-20T19:18:41.440612
2016-06-16T17:09:35
2016-06-16T17:09:35
61,309,717
0
0
null
null
null
null
UTF-8
C++
false
false
1,217
h
#include <iostream> #include <string.h> #include <QtGui/QApplication> #include <QDebug> #include <QThread> #include <stdio.h> #include <stdlib.h> #include <vector> #include <algorithm> #include <time.h> #include <QMessageBox> #include "ExpressionList.h" #include "Expression.h" #include "AutoIt_Connector.h" #include "Output.h" #include "LatexImageBuilder.h" #include "IO_Wait.h" using namespace std; #ifndef IO_CENTER_H #define IO_CENTER_H class IO_Center : public QObject { Q_OBJECT public: static IO_Center* getInstance(); ~IO_Center(); //string process(string input); //void run(); void begin(); bool *runAgain; private: static bool instanceFlag; static IO_Center *instance; IO_Center(); AutoIt_Connector *connector; Expression *formula; void initialise(); LatexImageBuilder *builder; ExpressionList *GUI; vector<string> *exprResults; IO_Wait *pendingThread; QMessageBox* msgBox; // void interactWithUser(); void sendGUIHandle(); string getUserInput(); void processInput(string input); void loadSuggestions(); //string waitForUserChoice(); int getUserChoice(); void sendOutput(); void finish(); public slots: //void sendOutput(); void trigger(); }; #endif
[ "saroadmelanka@yahoo.com" ]
saroadmelanka@yahoo.com
08e75e11d56f187928bba7e42e33ff51a9bb8a29
e215ac34daff0eda58d978ee097db6c77dcf592e
/menuEngine.h
6fb21398528f1ed72ff4424db05c43ede8a19ca0
[]
no_license
nguditis/Mario-Kart
f9dc8227a89127cd6a993178ca06277df03de0a5
a15060c224759811f62f60b77ecb67d685dc8825
refs/heads/master
2020-04-06T11:14:35.640969
2018-12-12T22:32:56
2018-12-12T22:32:56
157,409,285
1
0
null
null
null
null
UTF-8
C++
false
false
556
h
#ifndef MENU_ENGINE_H #define MENU_ENGINE_H #include <vector> #include <SDL.h> #include "menu.h" class MenuEngine { public: MenuEngine (); ~MenuEngine (); void play(); int getOptionChoice() const { return optionChoice; } int getTrackNumber() const {return track;} void setTrack(int track) {track = track;}; private: Clock& clock; SDL_Renderer * const renderer; Menu menu; int optionChoice; int track; void draw() const; void update(Uint32); MenuEngine(const MenuEngine&); MenuEngine& operator=(const MenuEngine&); }; #endif
[ "nguditis@icloud.com" ]
nguditis@icloud.com
3e9ec2b21d842b2ff50d27c1f9dc22d6cbd01cf6
38c10c01007624cd2056884f25e0d6ab85442194
/net/android/keystore.cc
4fa8dbf6329a2f4bed4a6abc7c51eb1a0a3b28d2
[ "BSD-3-Clause" ]
permissive
zenoalbisser/chromium
6ecf37b6c030c84f1b26282bc4ef95769c62a9b2
e71f21b9b4b9b839f5093301974a45545dad2691
refs/heads/master
2022-12-25T14:23:18.568575
2016-07-14T21:49:52
2016-07-23T08:02:51
63,980,627
0
2
BSD-3-Clause
2022-12-12T12:43:41
2016-07-22T20:14:04
null
UTF-8
C++
false
false
4,265
cc
// Copyright (c) 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/android/keystore.h" #include <vector> #include "base/android/jni_android.h" #include "base/android/jni_array.h" #include "base/logging.h" #include "jni/AndroidKeyStore_jni.h" #include "net/android/android_private_key.h" using base::android::AttachCurrentThread; using base::android::HasException; using base::android::JavaByteArrayToByteVector; using base::android::ScopedJavaLocalRef; using base::android::ToJavaByteArray; using base::android::JavaArrayOfByteArrayToStringVector; namespace net { namespace android { bool GetRSAKeyModulus(jobject private_key_ref, std::vector<uint8_t>* result) { JNIEnv* env = AttachCurrentThread(); ScopedJavaLocalRef<jbyteArray> modulus_ref = Java_AndroidKeyStore_getRSAKeyModulus(env, GetKeyStore(private_key_ref).obj(), private_key_ref); if (modulus_ref.is_null()) return false; JavaByteArrayToByteVector(env, modulus_ref.obj(), result); return true; } bool GetECKeyOrder(jobject private_key_ref, std::vector<uint8_t>* result) { JNIEnv* env = AttachCurrentThread(); ScopedJavaLocalRef<jbyteArray> order_ref = Java_AndroidKeyStore_getECKeyOrder( env, GetKeyStore(private_key_ref).obj(), private_key_ref); if (order_ref.is_null()) return false; JavaByteArrayToByteVector(env, order_ref.obj(), result); return true; } bool RawSignDigestWithPrivateKey(jobject private_key_ref, const base::StringPiece& digest, std::vector<uint8_t>* signature) { JNIEnv* env = AttachCurrentThread(); // Convert message to byte[] array. ScopedJavaLocalRef<jbyteArray> digest_ref = ToJavaByteArray( env, reinterpret_cast<const uint8_t*>(digest.data()), digest.length()); DCHECK(!digest_ref.is_null()); // Invoke platform API ScopedJavaLocalRef<jbyteArray> signature_ref = Java_AndroidKeyStore_rawSignDigestWithPrivateKey( env, GetKeyStore(private_key_ref).obj(), private_key_ref, digest_ref.obj()); if (HasException(env) || signature_ref.is_null()) return false; // Write signature to string. JavaByteArrayToByteVector(env, signature_ref.obj(), signature); return true; } PrivateKeyType GetPrivateKeyType(jobject private_key_ref) { JNIEnv* env = AttachCurrentThread(); int type = Java_AndroidKeyStore_getPrivateKeyType( env, GetKeyStore(private_key_ref).obj(), private_key_ref); return static_cast<PrivateKeyType>(type); } AndroidEVP_PKEY* GetOpenSSLSystemHandleForPrivateKey(jobject private_key_ref) { JNIEnv* env = AttachCurrentThread(); // Note: the pointer is passed as a jint here because that's how it // is stored in the Java object. Java doesn't have a primitive type // like intptr_t that matches the size of pointers on the host // machine, and Android only runs on 32-bit CPUs. // // Given that this routine shall only be called on Android < 4.2, // this won't be a problem in the far future (e.g. when Android gets // ported to 64-bit environments, if ever). long pkey = Java_AndroidKeyStore_getOpenSSLHandleForPrivateKey( env, GetKeyStore(private_key_ref).obj(), private_key_ref); return reinterpret_cast<AndroidEVP_PKEY*>(pkey); } ScopedJavaLocalRef<jobject> GetOpenSSLEngineForPrivateKey( jobject private_key_ref) { JNIEnv* env = AttachCurrentThread(); ScopedJavaLocalRef<jobject> engine = Java_AndroidKeyStore_getOpenSSLEngineForPrivateKey( env, GetKeyStore(private_key_ref).obj(), private_key_ref); return engine; } void ReleaseKey(jobject private_key_ref) { JNIEnv* env = AttachCurrentThread(); Java_AndroidKeyStore_releaseKey(env, GetKeyStore(private_key_ref).obj(), private_key_ref); env->DeleteGlobalRef(private_key_ref); } bool RegisterKeyStore(JNIEnv* env) { return RegisterNativesImpl(env); } } // namespace android } // namespace net
[ "zeno.albisser@hemispherian.com" ]
zeno.albisser@hemispherian.com
e22d695480709e4327d1bfc1b4b7aa2d97ad4428
a7b00f469b109fa53176a573ebd6d24687db0a42
/src/GFA_Parser.hpp
89034dbd5c4b81c56e9f72fd03e9cf9b9f4d9f6f
[ "BSD-2-Clause", "BSD-3-Clause", "MIT", "Apache-2.0", "CC-BY-3.0" ]
permissive
winni2k/bifrost
8b3fe23482833644e458d09bf04bf79e7e5437dd
5be773b3ccc3d432cea4e12ef32a60f17cd3e129
refs/heads/master
2021-01-01T12:28:26.407618
2020-06-05T18:04:45
2020-06-05T18:04:45
239,278,677
0
0
BSD-2-Clause
2020-02-09T09:36:23
2020-02-09T09:36:22
null
UTF-8
C++
false
false
3,682
hpp
#ifndef BIFROST_GFA_PARSER_HPP #define BIFROST_GFA_PARSER_HPP #include <string> #include <cstring> #include <vector> #include <sys/stat.h> #include <stdint.h> #include <stdio.h> #include <iostream> #include <fstream> #include <sstream> #include <memory> using namespace std; class GFA_Parser { struct Sequence { string id; string seq; size_t len; vector<string> tags; Sequence() : seq("*"), len(0) {}; Sequence(const string& id_, const string& seq_, const size_t len_) : id(id_), seq(seq_), len(len_) {}; inline void clear() { id.clear(); tags.clear(); seq = "*"; len = 0; } }; struct Edge { string edge_id; string vertexA_id; size_t pos_start_overlapA; size_t pos_end_overlapA; bool strand_overlapA; string vertexB_id; size_t pos_start_overlapB; size_t pos_end_overlapB; bool strand_overlapB; Edge() : edge_id("*"), vertexA_id(), pos_start_overlapA(0), pos_end_overlapA(0), strand_overlapA(true), vertexB_id(), pos_start_overlapB(0), pos_end_overlapB(0), strand_overlapB(true) {}; Edge(const string vertexA_id_, const size_t pos_start_overlapA_, const size_t pos_end_overlapA_, const bool strand_overlapA_, const string vertexB_id_, const size_t pos_start_overlapB_, const size_t pos_end_overlapB_, const bool strand_overlapB_, const string edge_id_ = "*") : edge_id(edge_id_), vertexA_id(vertexA_id_), pos_start_overlapA(pos_start_overlapA_), pos_end_overlapA(pos_end_overlapA_), strand_overlapA(strand_overlapA_), vertexB_id(vertexB_id_), pos_start_overlapB(pos_start_overlapB_), pos_end_overlapB(pos_end_overlapB_), strand_overlapB(strand_overlapB_) {}; inline void clear() { vertexA_id.clear(); vertexB_id.clear(); edge_id = "*"; pos_start_overlapA = 0; pos_end_overlapA = 0; pos_start_overlapB = 0; pos_end_overlapB = 0; strand_overlapA = true; strand_overlapB = true; } }; public: typedef pair<const Sequence*, const Edge*> GFA_line; GFA_Parser(); GFA_Parser(const string& filename); GFA_Parser(const vector<string>& filenames); ~GFA_Parser(); GFA_Parser(GFA_Parser&& o); GFA_Parser& operator=(GFA_Parser&& o); bool open_write(const size_t version_GFA = 1, const string tags_line_header = ""); bool open_read(); void close(); bool write_sequence(const string& id, const size_t len, const string seq = "*", const string tags_line = ""); bool write_edge(const string vertexA_id, const size_t pos_start_overlapA, const size_t pos_end_overlapA, const bool strand_overlapA, const string vertexB_id, const size_t pos_start_overlapB, const size_t pos_end_overlapB, const bool strand_overlapB, const string edge_id = "*"); GFA_line read(size_t& file_id); GFA_line read(size_t& file_id, bool& new_file_opened, const bool skip_edges = false); private: bool open(const size_t idx_filename); vector<string> graph_filenames; ifstream* graphfile_in; istream graph_in; ofstream* graphfile_out; ostream graph_out; size_t v_gfa; size_t file_no; char buffer_stream[8192]; bool file_open_write; bool file_open_read; Sequence s; Edge e; }; #endif
[ "guillaumeholley@gmail.com" ]
guillaumeholley@gmail.com
6ccd2ed54e0829baf5224dc30a2c43669fb0701f
5bb5b8b94a081c5312ed94a0e26e649d7b844f7b
/Region.cpp
ce5f64939ffc4bbb46824011ceee29ad2553e37f
[]
no_license
N1kla3/administration-devision
acf9f36f47368c4905c691756b90f4995126a08b
24dea744d2c1be0179505a0c383294c6c4f438b3
refs/heads/master
2020-08-18T13:07:05.402489
2019-10-17T09:52:40
2019-10-17T09:52:40
215,792,555
1
0
null
null
null
null
UTF-8
C++
false
false
613
cpp
// // Created by Kolya on 9/29/2019. // #include "Region.h" Region::Region(std::vector<District> &distr, City* cap, std::string nameOb):capital(cap), districts(distr), name(nameOb){ } unsigned int Region::getPopulation() { unsigned int result = 0; for(auto & iter : districts){ result += iter.getPopulation(); } result += capital->getPopulation(); return result; } unsigned int Region::getAllAdminPoints() { unsigned int result = 0; for(auto & iter : districts){ result += iter.getAllAdminPoints(); } result += capital->getAdminPoint(); return result; }
[ "kolya.vladimirsky@gmail.com" ]
kolya.vladimirsky@gmail.com
0f057369175f35f38d2fb9cb2c15f248f626874b
8fe29627b31630fef4f7b696a9c1e6cf442e1aeb
/PD_shape/scripts/common/laplacian/meshlp/tmesh.cpp
740ea817a96a06b6c35bfe29c626d973c741fe1c
[]
no_license
ChunyuanLI/Persistence_Diagram
5b1e8c4b379c1e4e878048abe0f84ee534e6600c
cb5ac8506424cd841feb6bea9a64cb9128d47dc4
refs/heads/master
2021-01-21T10:34:19.447413
2018-10-23T00:11:45
2018-10-23T00:11:45
83,454,742
6
2
null
null
null
null
UTF-8
C++
false
false
20,642
cpp
#include <math.h> #include <queue> #include <fstream> #include "tmesh.h" #include "offobj.h" typedef unsigned int uint; double __partcolorgrtable[31][3] = { {0, 0, 1}, {0, 0.0625, 0.9375}, {0, 0.1250, 0.8750}, {0, 0.1875, 0.8125}, {0, 0.2500, 0.7500}, {0, 0.3125, 0.6875}, {0, 0.3750, 0.6250}, {0, 0.4375, 0.5625}, {0, 0.5625, 0.4375}, {0, 0.6250, 0.3750}, {0, 0.6875, 0.3125}, {0, 0.7500, 0.2500}, {0, 0.8125, 0.1875}, {0, 0.8750, 0.1250}, {0, 0.9375, 0.0625}, {0, 1, 0}, {0.0625, 0.9375, 0}, {0.1250, 0.8750, 0}, {0.1875, 0.8125, 0}, {0.2500, 0.7500, 0}, {0.3125, 0.6875, 0}, {0.3750, 0.6250, 0}, {0.4375, 0.5625, 0}, {0.5625, 0.4375, 0}, {0.6250, 0.3750, 0}, {0.6875, 0.3125, 0}, {0.7500, 0.2500, 0}, {0.8125, 0.1875, 0}, {0.8750, 0.1250, 0}, {0.9375, 0.0625, 0}, {1, 0, 0} }; void get_color(double v, double minv, double maxv, double c[3]) { double scale = 0.8; /* //--------------------------------------------------------------------------------------- //all warm to cold double nnv = maxv - minv; int minc = 0, maxc = 63; double vs = (v - minv) / nnv * (maxc - minc + 1); int i = (int)(vs); for(int j = 0; j < 3; j ++) c[j] = scale * ((vs - i) * (__colortable[i + 1][j] - __colortable[i][j]) + __colortable[i][j]); // cout<<"c: "<<c[0]<<" "<<c[1]<<" "<<c[2]<<endl; //--------------------------------------------------------------------------------------- */ //maxv = 2.5; //minv = 1; double nnv = maxv - minv; if(fabs(nnv) < MYNZERO){ for(int j = 0; j < 3; j ++) c[j] = scale * __partcolorgrtable[15][j]; return; } //--------------------------------------------------------------------------------------- //warm to cold int minc = 0, maxc = 30; if(v <= minv){ for(int j = 0; j < 3; j ++) c[j] = scale * __partcolorgrtable[minc][j]; return; } if(v >= maxv){ for(int j = 0; j < 3; j ++) c[j] = scale * __partcolorgrtable[maxc][j]; return; } double vs = (v - minv) / nnv * (maxc - minc); int i = (int)(vs); for(int j = 0; j < 3; j ++) c[j] = scale * ((vs - i) * (__partcolorgrtable[i + 1][j] - __partcolorgrtable[i][j]) + __partcolorgrtable[i][j]); // cout<<"c: "<<c[0]<<" "<<c[1]<<" "<<c[2]<<endl; //--------------------------------------------------------------------------------------- /* //--------------------------------------------------------------------------------------- //grey scale double maxc = 0, minc = 0.5; if(v <= minv) { c[0] = c[1] = c[2] = minc; return; } if(v >= maxv) { c[0] = c[1] = c[2] = maxc; return; } double t = (v - 1) / nnv; c[0] = c[1] = c[2] = minc + (maxc - minc) * t; //--------------------------------------------------------------------------------------- */ } bool TMesh::ReadOffFile(char *filename) { string str(filename); OffFileReader reader(str); if(reader.bad) return false; OffObj obj; if( reader.get_next_off_object(obj) ){ for(unsigned int i = 0; i < obj.vertices.size(); i ++){ add_vertex( VTMesh( obj.vertices[i].x, obj.vertices[i].y, obj.vertices[i].z) ); } for(unsigned int i = 0; i < obj.facets.size(); i ++){ if(obj.facets[i].size() != 3){ cerr<<"Error: invalid triangle mesh."<<endl; return false; } unsigned int fid = add_facet( FTMesh( (obj.facets[i])[0], (obj.facets[i])[1], (obj.facets[i])[2]) ); assert(fid == i); } //get the bounding box of mesh GetBBox(); //Generate the topology for tmesh GenerateMeshTopo(); //Mark the non_manifoldness MarkNonManifoldness(); //debug //PrintMeshTopo(); //getchar(); return true; }else{ return false; } } bool TMesh::ReadMatlabStruct(double *tri, int nt, double *X, double *Y, double *Z, int nv) { for (int v = 0; v < nv; v++) { add_vertex( VTMesh(*X++, *Y++, *Z++) ); } for (int t = 0; t < nt; t++) { unsigned int fid = add_facet( FTMesh(tri[0]-1, tri[nt]-1, tri[nt+nt]-1) ); tri++; assert(fid == t); } assert(v_count() == nv); assert(f_count() == nt); //get the bounding box of mesh GetBBox(); //Generate the topology for tmesh GenerateMeshTopo(); //Mark the non_manifoldness MarkNonManifoldness(); return true; } bool TMesh::ReadOffFile(char *filename, bool wcolor) { ifstream fin_temp; fin_temp.open(filename); if( !fin_temp.good() ){ return false; } ofstream fout_temp; fout_temp.open("temp.m"); if(!fout_temp.good()){ cerr<<"Failed to open file temp.m"<<endl; return false; } // Read the off file and skip the comments. // Write the comment-less off file to a file, called "temp.m". while(! fin_temp.eof()){ char line[90]; fin_temp.getline(line, 90); if(line[0] == 'O' || line[0] == '#') ; else fout_temp << line << endl; } fin_temp.close(); fout_temp.close(); FILE *fp; if( (fp = fopen("temp.m", "r")) == NULL ){ cerr<<"Failed to open file temp.m"<<endl; return false; } unsigned int n_ver, n_facet, n_edge; fscanf(fp, "%d %d %d", &n_ver, &n_facet, &n_edge); // cerr<<"n_ver: "<<n_ver<<" n_facet: "<<n_facet<<endl; float x, y, z; //vertex information for(unsigned int i = 0; i < n_ver; i ++){ fscanf(fp, "%f %f %f", &x, &y, &z); //cerr<<"x y z"<<x<<" "<<y<<" "<<z<<endl; //VTMesh v(x, y, z); add_vertex( VTMesh(x, y, z) ); } //cout<<"vertex done"<<endl; //facet information int nv, vid0, vid1, vid2; float r, g, b, a; for(unsigned int i = 0; i < n_facet; i ++){ fscanf(fp, "%d %d %d %d", &nv, &vid0, &vid1, &vid2); if(wcolor) fscanf(fp, "%f %f %f %f", &r, &g, &b, &a); unsigned int fid = add_facet( FTMesh(vid0, vid1, vid2) ); assert(fid == i); } //cerr<<"facet done"<<endl; assert(v_count() == n_ver); assert(f_count() == n_facet); //get the bounding box of mesh GetBBox(); //Delete the temp.m file system("rm temp.m"); //Generate the topology for tmesh GenerateMeshTopo(); //Mark the non_manifoldness MarkNonManifoldness(); //debug // PrintMeshTopo(); // getchar(); return true; } void TMesh::GenerateMeshTopo() { unsigned int vid0, vid1, vid2; for(unsigned int i = 0; i < f_count(); i ++){ vid0 = facet(i).vert(0); vid1 = facet(i).vert(1); vid2 = facet(i).vert(2); // cout<<i<<"th facet: vertices: "<<vid0<<" "<<vid1<<" "<<vid2<<endl; //generate the vertex topology vertex(vid0).add_facet(i); vertex(vid1).add_facet(i); vertex(vid2).add_facet(i); vertex(vid0).add_unique_vert(vid1); vertex(vid1).add_unique_vert(vid0); vertex(vid1).add_unique_vert(vid2); vertex(vid2).add_unique_vert(vid1); vertex(vid2).add_unique_vert(vid0); vertex(vid0).add_unique_vert(vid2); } //cerr<<"facet done"<<endl; for(unsigned int i = 0; i < f_count(); i ++) { //cout<<"fid: "<<i<<endl; //iterate over all facets for(int j = 0; j < 3; j ++){ //cout<<j<<"th vertex "<<endl; //edge vert(j) -- vert((j + 1) % 3) vid1 = facet(i).vert(j); vid2 = facet(i).vert((j + 1) % 3); //seach the adjacent triangle sharing edge (j + 2) % 3 for(unsigned int fit = 0; fit < vertex(vid1).n_facets(); fit ++){ unsigned int fid = vertex(vid1).facet(fit); if(fid <= i) continue; //cout<<"connected facet: "<<fid<<endl; int i1, i2; if( (i2 = facet(fid).index(vid2)) == -1 ) continue; i1 = facet(fid).index(vid1); assert(i1 >= 0); if( facet(i).facet((j + 2) % 3) >= 0){ cerr<<"non-manifold1: "<<i<<"--"<<fid<<" along edge: "<<vid1<<" "<<vid2<<endl; continue; } for(int k = 0; k < 3; k ++){ if(k != i1 && k != i2){ if(facet(fid).facet(k) >= 0){ cerr<<"non-manifold1: "<<i<<"--"<<fid<<" along edge: "<<vid1<<" "<<vid2<<endl; } else{ //Only when both facets have not neighbouring facet along //this edge can they be the neighbouring faect for each other. facet(fid).set_facet(k, i); facet(i).set_facet((j + 2) % 3, fid); } break; } }//for k }//for fit }//for j }//for i //cout<<"topo done"<<endl; //set boundary flag //for particle for(unsigned int i = 0; i < f_count(); i ++){ for(int j = 0; j < 3; j ++){ if(facet(i).facet(j) >= 0) continue; facet(i).set_flag(FTMESH_FLAG_BOUNDARY); vertex( facet(i).vert((j + 1) % 3) ).set_flag(VTMESH_FLAG_BOUNDARY); vertex( facet(i).vert((j + 2) % 3) ).set_flag(VTMESH_FLAG_BOUNDARY); } } //Check whether the topology of the mesh is valid. CheckMeshTopo(); } //-------------------------------------------------- //MarkNonManifoldness: //---------------- //Check the non_manifoldness for each vertex and mark //the vertex and all the incident facets if it is a //non_manifold vertex. //-------------------------------------------------- void TMesh::MarkNonManifoldness() { unsigned int vid, fid, count; int ind, fid_circ, ind_circ, fid_pre; for(vid = 0; vid < v_count(); vid ++){ VTMesh vert = vertex(vid); if( vert.n_facets() == 0) continue; fid = vert.facet(0); ind = facet(fid).index(vid); //assert(ind >= 0); if (ind < 0) break; facet(fid).set_flag(FTMESH_FLAG_VISITED); count = 1; #define UMBRELLAWALK(vid, fid, fid_circ) \ fid_pre = fid; \ while(fid_circ >= 0 && fid_circ != (int)fid){ \ if( facet(fid_circ).check_flag(FTMESH_FLAG_VISITED) ) break; \ facet(fid_circ).set_flag(FTMESH_FLAG_VISITED); \ count ++; \ ind_circ = facet(fid_circ).index(vid); \ assert(ind_circ >= 0); \ if( fid_pre != facet(fid_circ).facet( (ind_circ + 1) % 3 ) ){ \ fid_pre = fid_circ; \ fid_circ = facet(fid_circ).facet( (ind_circ + 1) % 3 ); \ } \ else{ \ fid_pre = fid_circ; \ fid_circ = facet(fid_circ).facet( (ind_circ + 2) % 3 ); \ } \ } fid_circ = facet(fid).facet( (ind + 1) % 3 ); UMBRELLAWALK(vid, fid, fid_circ); fid_circ = facet(fid).facet( (ind + 2) % 3 ); UMBRELLAWALK(vid, fid, fid_circ); //If the incident facets does not form an umbrella, then mark if( count < vert.n_facets() ){ vert.set_flag(VTMESH_FLAG_NMANIFOLD); for(unsigned int i = 0; i < vert.n_facets(); i ++) facet( vert.facet(i) ).un_set_flag(FTMESH_FLAG_NMANIFOLD); } //Unset FTMESH_FLAG_VISITED for(unsigned int i = 0; i < vert.n_facets(); i ++) facet( vert.facet(i) ).un_set_flag(FTMESH_FLAG_VISITED); } } //-------------------------------------------------- //OrientateFacets: //---------------- //Orientate the facets so that all the manifold facets will have //a consistent orientation //-------------------------------------------------- void TMesh::OrientateFacets() { unsigned int fid, f; queue<unsigned int> fid_queue; unsigned int max_nfacets, nfacets, fid_start; unsigned int vid1, vid2; int ind1, ind2; int fid_adj; //Find largest part of the surface which can be orientated. max_nfacets = 0; for(f = 0; f < f_count(); f ++){ if( facet(f).check_flag(FTMESH_FLAG_NMANIFOLD) ) continue; if( facet(f).check_flag(FTMESH_FLAG_VISITED) ) continue; fid_queue.push(f); facet(f).set_flag(FTMESH_FLAG_VISITED); nfacets = 0; while( !fid_queue.empty() ){ fid = fid_queue.front(); fid_queue.pop(); nfacets ++; for(int j = 0; j < 3; j ++){ fid_adj = facet(fid).facet(j); if(fid_adj < 0) continue; if( facet(fid_adj).check_flag(FTMESH_FLAG_NMANIFOLD) ) continue; if( facet(fid_adj).check_flag(FTMESH_FLAG_VISITED) ) continue; fid_queue.push(fid_adj); facet(fid_adj).set_flag(FTMESH_FLAG_VISITED); } } if( nfacets > max_nfacets ){ max_nfacets = nfacets; fid_start = f; } } //unset flags for(f = 0; f < f_count(); f ++) facet(f).un_set_flag(FTMESH_FLAG_VISITED); //orientate the facets fid_queue.push(fid_start); facet(fid_start).set_flag(FTMESH_FLAG_ORIENTATE); while( !fid_queue.empty()){ fid = fid_queue.front(); fid_queue.pop(); for(int j = 0; j < 3; j ++){ fid_adj = facet(fid).facet(j); if(fid_adj < 0) continue; if( facet(fid_adj).check_flag(FTMESH_FLAG_NMANIFOLD) ) continue; if( facet(fid_adj).check_flag(FTMESH_FLAG_ORIENTATE) ) continue; vid1 = facet(fid).vert( (j + 1) % 3 ); vid2 = facet(fid).vert( (j + 2) % 3 ); ind1 = facet(fid_adj).index(vid1); ind2 = facet(fid_adj).index(vid2); assert( ind1 >= 0 && ind2 >= 0 ); //If the orientation of "fid" and "fid_adj" are consisitent if( (ind2 + 1) % 3 == ind1 ){ if( facet(fid).check_flag(FTMESH_FLAG_REVERSE) ) facet(fid_adj).set_flag(FTMESH_FLAG_REVERSE); } else{ //Otherwise the orientation of "fid" and "fid_adj" are NOT consisitent assert( (ind1 + 1) % 3 == ind2 ); if( !(facet(fid).check_flag(FTMESH_FLAG_REVERSE)) ) facet(fid_adj).set_flag(FTMESH_FLAG_REVERSE); } fid_queue.push(fid_adj); facet(fid_adj).set_flag(FTMESH_FLAG_ORIENTATE); }//for j }//while } void TMesh::PrintMeshTopo() { cout<<"vertex top"<<endl; for(uint i = 0; i < v_count(); i ++){ cout<<"vertex "<<i<<": "<<vertex(i).coord()<<endl; cout<<"\t incident vertex: "; for(unsigned int vit = 0; vit < vertex(i).n_verts(); vit ++) cout<<"\t"<<vertex(i).vert(vit)<<" "; cout<<endl; cout<<"\t incident triangle: "; for(unsigned int fit = 0; fit < vertex(i).n_facets(); fit ++) cout<<"\t"<<vertex(i).facet(fit)<<" "; cout<<endl; } cout<<endl; cout<<"triangle top"<<endl; for(unsigned int i = 0; i < f_count(); i ++){ cout<<"triangle "<<i<<endl; cout<<"\t vert: "; for(int j = 0; j < 3; j ++) cout<<"\t"<<facet(i).vert(j)<<" "; cout<<endl; cout<<"\t adj_facet: "; for(int j = 0; j < 3; j ++) cout<<"\t"<<facet(i).facet(j)<<" "; cout<<endl; } cout<<endl; } bool TMesh::CheckMeshTopo() { //check facet topo bool good = true; for(unsigned int i = 0; i < f_count(); i ++){ for(int j = 0; j < 3; j ++){ int fid = facet(i).facet(j); if(fid < 0) continue; int findex = facet(fid).findex(facet(i).vert((j + 1) % 3), facet(i).vert((j + 2) % 3)); if(findex < 0){ cerr<<"mesh topo check error!"<<endl; cerr<<"fid: "<<i<<" eid: "<<" fid_adj: "<<fid<<endl; good = false; } //assert(findex >= 0); } } //check vertex topo for(unsigned int i = 0; i < v_count(); i ++){ for(unsigned int j = 0; j < vertex(i).n_facets(); j ++){ unsigned int fid = vertex(i).facet(j); int vindex = facet(fid).index(i); if(vindex < 0){ cerr<<"mesh topo check error!"<<endl; cerr<< "vid: "<<i<<" fid: "<<fid<<endl; good = false; } //assert(vindex >= 0); } for(unsigned int j = 0; j < vertex(i).n_verts(); j ++){ unsigned int vid = vertex(i).vert(j); int vindex = vertex(vid).index(i); if(vindex < 0){ cerr<<"mesh topo check error!"<<endl; cerr<<"vid: "<<i<<" vid: "<<vid<<endl; good = false; } //assert(vindex >= 0); } } if(!good){ cerr<<"Warning: the input mesh is not a manifold, which MAY crash the successive computation."<<endl; } return true; } //////////////////////////////////////////////////////////////////////////////////////// //GetBBox //-------- //Get a box which is twice as bigger as the boundding box of the object // void TMesh::GetBBox() { if(v_count() == 0 ){ _pmin = VECTOR3(); _pmax = VECTOR3(); return; } for(int i = 0; i < 3; i ++){ _pmin[i] = (vertex(0).coord())(i); _pmax[i] = (vertex(0).coord())(i); } for(unsigned int i = 1; i < v_count(); i ++){ for(int j = 0; j < 3; j ++){ if( (vertex(i).coord())(j) < _pmin[j] ) _pmin[j] = (vertex(i).coord())(j); else if((vertex(i).coord())(j) > _pmax[j]) _pmax[j] = (vertex(i).coord())(j); }//for j }//for i //cerr<<"BBox: min "<<_pmin[0]<<" "<<_pmin[1]<<" "<<_pmin[2] //<<" max "<<_pmax[0]<<" "<<_pmax[1]<<" "<<_pmax[2]<<endl; } bool TMesh::IsOutBBox(VECTOR3 pt) { if(pt[0] < _pmin[0] || pt[0] > _pmax[0]) return true; if(pt[1] < _pmin[1] || pt[1] > _pmax[1]) return true; if(pt[2] < _pmin[2] || pt[2] > _pmax[2]) return true; return false; } //////////////////////////////////////////////////////////////////////////////////////// //Meshsize //-------- //Estimate mesh size // void TMesh::MeshSize(double& maxs, double& mins, double& aves) { maxs = -FLT_MAX; mins = FLT_MAX; aves = 0; for(unsigned int i = 0; i < f_count(); i ++){ for(unsigned int j = 0; j < 3; j ++){ int vid0 = facet(i).vert(j); int vid1 = facet(i).vert((j + 1) % 3); double length = dot(vertex(vid0).coord() - vertex(vid1).coord(), vertex(vid0).coord() - vertex(vid1).coord()); length = sqrt(fabs(length)); aves += length; if(maxs < length){ maxs = length; } if(mins > length){ mins = length; } } } aves /= 3 * f_count(); cout<<"maxs: "<<maxs<<" mins: "<<mins<<" aves: "<<aves<<endl; } //================================================================ //begin: off file outpur function //================================================================ void TMesh::OutMeshOffFile(char *filename) { FILE *fp; if( (fp = fopen(filename, "w")) == NULL ){ std::cout<<"Failed to open file!"<<std::endl; return; } fprintf(fp, "LIST\n"); fprintf(fp, "appearance {linewidth 7}\n"); fprintf(fp, "{\n"); fprintf(fp, "OFF\n"); fprintf(fp, "%d %d 0\n", v_count(), f_count()); for(unsigned int i = 0; i < v_count(); i ++){ fprintf(fp, "%f %f %f\n", (vertex(i).coord())(0), (vertex(i).coord())(1), (vertex(i).coord())(2)); } for(unsigned int i = 0; i < f_count(); i ++){ if( vertex(facet(i).vert(0)).check_flag(VTMESH_FLAG_SELECTED) && vertex(facet(i).vert(1)).check_flag(VTMESH_FLAG_SELECTED) && vertex(facet(i).vert(2)).check_flag(VTMESH_FLAG_SELECTED)) fprintf(fp, "3 %d %d %d 0.2 0.2 0.2 1\n", facet(i).vert(0), facet(i).vert(1), facet(i).vert(2)); else fprintf(fp, "3 %d %d %d 1 1 1 1\n", facet(i).vert(0), facet(i).vert(1), facet(i).vert(2)); } fprintf(fp, "}\n"); fclose(fp); } void TMesh::OutMeshOffFile(FILE *fp, double r, double g, double b, double a) { if( fp == NULL ){ std::cout<<"Invalid FILE pointer"<<std::endl; return; } fprintf(fp, "{\n"); fprintf(fp, "OFF\n"); fprintf(fp, "%d %d 0\n", v_count(), f_count()); for(unsigned int i = 0; i < v_count(); i ++){ fprintf(fp, "%f %f %f\n", (vertex(i).coord())(0), (vertex(i).coord())(1), (vertex(i).coord())(2)); } for(unsigned int i = 0; i < f_count(); i ++){ if( facet(i).check_flag(FTMESH_FLAG_SELECT) ) fprintf(fp, "3 %d %d %d 1 0 0 1\n", facet(i).vert(0), facet(i).vert(1), facet(i).vert(2)); else fprintf(fp, "3 %d %d %d %f %f %f %f\n", facet(i).vert(0), facet(i).vert(1), facet(i).vert(2), r, g, b, a); } fprintf(fp, "}\n"); } /* void TMesh::OutMeshOffFile(FILE *fp, double r, double g, double b, double a) { if( fp == NULL ){ std::cout<<"Invalid FILE pointer"<<std::endl; return; } fprintf(fp, "{\n"); fprintf(fp, "OFF\n"); fprintf(fp, "%d %d 0\n", v_count(), f_count()); for(unsigned int i = 0; i < v_count(); i ++){ fprintf(fp, "%f %f %f\n", (vertex(i).coord())(0), (vertex(i).coord())(1), (vertex(i).coord())(2)); } for(unsigned int i = 0; i < f_count(); i ++){ fprintf(fp, "3 %d %d %d 1 0 0 1\n", facet(i).vert(0), facet(i).vert(1), facet(i).vert(2)); fprintf(fp, "3 %d %d %d %f %f %f %f\n", facet(i).vert(0), facet(i).vert(1), facet(i).vert(2), r, g, b, a); } fprintf(fp, "}\n"); } */ //================================================================ //end: off file outpur function //================================================================
[ "cl319@duke.edu" ]
cl319@duke.edu
4298c8c146de60fb90e024a6db9fba842f4eba82
e3550d1f2cc802b38c7a8e7da56cb068bf85e57b
/DataStructures/RAPTOR/Entities/ArrivalLabel.h
67a2564e81b3bb324bcca8227d6b3c3584f403d3
[ "MIT" ]
permissive
kit-algo/ULTRA-Trip-Based
6c98006ab8004c9f43999e7fc0e904ed9058bbad
855f79f1cef89a5aa184700e6761edd9e0800f38
refs/heads/master
2022-05-06T08:57:42.036045
2022-03-16T15:58:25
2022-03-16T15:58:25
276,053,058
6
3
null
null
null
null
UTF-8
C++
false
false
2,300
h
/********************************************************************************** Copyright (c) 2020 Jonas Sauer MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. **********************************************************************************/ #pragma once #include <iostream> #include <vector> #include <string> namespace RAPTOR { class ArrivalLabel { public: ArrivalLabel(const int arrivalTime = never, const size_t numberOfTrips = -1) : arrivalTime(arrivalTime), numberOfTrips(numberOfTrips) { } inline bool operator<(const ArrivalLabel& other) const noexcept { return (arrivalTime < other.arrivalTime) || ((arrivalTime == other.arrivalTime) && (numberOfTrips < other.numberOfTrips)); } inline bool operator==(const ArrivalLabel& other) const noexcept { return (arrivalTime == other.arrivalTime) && (numberOfTrips == other.numberOfTrips); } inline bool operator!=(const ArrivalLabel& other) const noexcept { return !(*this == other); } inline friend std::ostream& operator<<(std::ostream& out, const ArrivalLabel& label) noexcept { return out << "arrivalTime: " << label.arrivalTime << ", numberOfTrips: " << label.numberOfTrips; } public: int arrivalTime; size_t numberOfTrips; }; }
[ "zuendorf@kit.edu" ]
zuendorf@kit.edu
f825c3fe161901b08953d42f01e7aa0472c90c50
91ff482968f618098c8faeeca892c6d256ee415c
/cf/617B.cpp
64363ab8796bfe990e847f4b093db4b3f7de6500
[]
no_license
Rajat-Goyal/all-over-again
5728c8d05afc409f103d78f6fbbd3be1bf382793
a5e4192762febf1666808c4068c83502ef7485fb
refs/heads/master
2021-01-20T11:18:17.477916
2018-10-03T12:12:44
2018-10-03T12:12:44
83,948,322
0
1
null
2018-10-03T12:12:46
2017-03-05T05:48:38
C++
UTF-8
C++
false
false
901
cpp
#include<iostream> #include<bits/stdc++.h> #define uint64 unsigned long long int using namespace std; int main(){ ios::sync_with_stdio(false); uint64 n; cin>>n; uint64 arr[n]; for(int i=0;i<n;i++){ cin>>arr[i]; } uint64 l=0,r=0; uint64 flag = 0 ; uint64 ans=0; for(int i=0;i<n;i++){ if(arr[i]==1){ l=i; ans=1; break; } } for(int i=n-1;i>=0;i--){ if(arr[i]==1){ r=i; ans=1; break; } } //cout<<l<<" "<<r<<endl; for(int i=l;i<r;i++){ //cout<<arr[i]<<endl; uint64 cnt = 1; if(arr[i]==1)continue; else if(arr[i]==0){ i+=1; while(arr[i]!=1 && i<=r){ cnt+=1; i+=1; } ans*=(cnt+1); } } cout<<ans<<endl; }
[ "rajat1881@gmail.com" ]
rajat1881@gmail.com
591d08f58de87ed65422e0cc1ce25a0f93bd6e02
ee57390d0b7c7299ab37939a3c9b11e427b470ad
/lib/Target/AMDGPU/SIMachineFunctionInfo.h
8c38cdae5d960087e466bac1630b3909ff8d35af
[ "NCSA" ]
permissive
Hatelix/NyuziToolchain
2bf3af1da8f63f131590d9d245ea4003ebe0a4c8
f7f036b55c1839328ee630a1d81919d1f294e801
refs/heads/master
2020-04-04T14:17:08.192165
2018-05-12T19:33:08
2018-05-12T19:33:08
155,993,376
0
0
NOASSERTION
2018-11-03T14:56:39
2018-11-03T14:56:39
null
UTF-8
C++
false
false
18,529
h
//==- SIMachineFunctionInfo.h - SIMachineFunctionInfo interface --*- C++ -*-==// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // /// \file // //===----------------------------------------------------------------------===// #ifndef LLVM_LIB_TARGET_AMDGPU_SIMACHINEFUNCTIONINFO_H #define LLVM_LIB_TARGET_AMDGPU_SIMACHINEFUNCTIONINFO_H #include "AMDGPUArgumentUsageInfo.h" #include "AMDGPUMachineFunction.h" #include "SIRegisterInfo.h" #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/Optional.h" #include "llvm/ADT/SmallVector.h" #include "llvm/CodeGen/PseudoSourceValue.h" #include "llvm/CodeGen/TargetInstrInfo.h" #include "llvm/MC/MCRegisterInfo.h" #include "llvm/Support/ErrorHandling.h" #include <array> #include <cassert> #include <utility> #include <vector> namespace llvm { class MachineFrameInfo; class MachineFunction; class SIInstrInfo; class TargetRegisterClass; class AMDGPUImagePseudoSourceValue : public PseudoSourceValue { public: // TODO: Is the img rsrc useful? explicit AMDGPUImagePseudoSourceValue(const TargetInstrInfo &TII) : PseudoSourceValue(PseudoSourceValue::TargetCustom, TII) {} bool isConstant(const MachineFrameInfo *) const override { // This should probably be true for most images, but we will start by being // conservative. return false; } bool isAliased(const MachineFrameInfo *) const override { return true; } bool mayAlias(const MachineFrameInfo *) const override { return true; } }; class AMDGPUBufferPseudoSourceValue : public PseudoSourceValue { public: explicit AMDGPUBufferPseudoSourceValue(const TargetInstrInfo &TII) : PseudoSourceValue(PseudoSourceValue::TargetCustom, TII) { } bool isConstant(const MachineFrameInfo *) const override { // This should probably be true for most images, but we will start by being // conservative. return false; } bool isAliased(const MachineFrameInfo *) const override { return true; } bool mayAlias(const MachineFrameInfo *) const override { return true; } }; /// This class keeps track of the SPI_SP_INPUT_ADDR config register, which /// tells the hardware which interpolation parameters to load. class SIMachineFunctionInfo final : public AMDGPUMachineFunction { unsigned TIDReg = AMDGPU::NoRegister; // Registers that may be reserved for spilling purposes. These may be the same // as the input registers. unsigned ScratchRSrcReg = AMDGPU::PRIVATE_RSRC_REG; unsigned ScratchWaveOffsetReg = AMDGPU::SCRATCH_WAVE_OFFSET_REG; // This is the current function's incremented size from the kernel's scratch // wave offset register. For an entry function, this is exactly the same as // the ScratchWaveOffsetReg. unsigned FrameOffsetReg = AMDGPU::FP_REG; // Top of the stack SGPR offset derived from the ScratchWaveOffsetReg. unsigned StackPtrOffsetReg = AMDGPU::SP_REG; AMDGPUFunctionArgInfo ArgInfo; // Graphics info. unsigned PSInputAddr = 0; unsigned PSInputEnable = 0; /// Number of bytes of arguments this function has on the stack. If the callee /// is expected to restore the argument stack this should be a multiple of 16, /// all usable during a tail call. /// /// The alternative would forbid tail call optimisation in some cases: if we /// want to transfer control from a function with 8-bytes of stack-argument /// space to a function with 16-bytes then misalignment of this value would /// make a stack adjustment necessary, which could not be undone by the /// callee. unsigned BytesInStackArgArea = 0; bool ReturnsVoid = true; // A pair of default/requested minimum/maximum flat work group sizes. // Minimum - first, maximum - second. std::pair<unsigned, unsigned> FlatWorkGroupSizes = {0, 0}; // A pair of default/requested minimum/maximum number of waves per execution // unit. Minimum - first, maximum - second. std::pair<unsigned, unsigned> WavesPerEU = {0, 0}; // Stack object indices for work group IDs. std::array<int, 3> DebuggerWorkGroupIDStackObjectIndices = {{0, 0, 0}}; // Stack object indices for work item IDs. std::array<int, 3> DebuggerWorkItemIDStackObjectIndices = {{0, 0, 0}}; DenseMap<const Value *, std::unique_ptr<const AMDGPUBufferPseudoSourceValue>> BufferPSVs; DenseMap<const Value *, std::unique_ptr<const AMDGPUImagePseudoSourceValue>> ImagePSVs; private: unsigned LDSWaveSpillSize = 0; unsigned NumUserSGPRs = 0; unsigned NumSystemSGPRs = 0; bool HasSpilledSGPRs = false; bool HasSpilledVGPRs = false; bool HasNonSpillStackObjects = false; bool IsStackRealigned = false; unsigned NumSpilledSGPRs = 0; unsigned NumSpilledVGPRs = 0; // Feature bits required for inputs passed in user SGPRs. bool PrivateSegmentBuffer : 1; bool DispatchPtr : 1; bool QueuePtr : 1; bool KernargSegmentPtr : 1; bool DispatchID : 1; bool FlatScratchInit : 1; bool GridWorkgroupCountX : 1; bool GridWorkgroupCountY : 1; bool GridWorkgroupCountZ : 1; // Feature bits required for inputs passed in system SGPRs. bool WorkGroupIDX : 1; // Always initialized. bool WorkGroupIDY : 1; bool WorkGroupIDZ : 1; bool WorkGroupInfo : 1; bool PrivateSegmentWaveByteOffset : 1; bool WorkItemIDX : 1; // Always initialized. bool WorkItemIDY : 1; bool WorkItemIDZ : 1; // Private memory buffer // Compute directly in sgpr[0:1] // Other shaders indirect 64-bits at sgpr[0:1] bool ImplicitBufferPtr : 1; // Pointer to where the ABI inserts special kernel arguments separate from the // user arguments. This is an offset from the KernargSegmentPtr. bool ImplicitArgPtr : 1; // The hard-wired high half of the address of the global information table // for AMDPAL OS type. 0xffffffff represents no hard-wired high half, since // current hardware only allows a 16 bit value. unsigned GITPtrHigh; unsigned HighBitsOf32BitAddress; MCPhysReg getNextUserSGPR() const { assert(NumSystemSGPRs == 0 && "System SGPRs must be added after user SGPRs"); return AMDGPU::SGPR0 + NumUserSGPRs; } MCPhysReg getNextSystemSGPR() const { return AMDGPU::SGPR0 + NumUserSGPRs + NumSystemSGPRs; } public: struct SpilledReg { unsigned VGPR = AMDGPU::NoRegister; int Lane = -1; SpilledReg() = default; SpilledReg(unsigned R, int L) : VGPR (R), Lane (L) {} bool hasLane() { return Lane != -1;} bool hasReg() { return VGPR != AMDGPU::NoRegister;} }; struct SGPRSpillVGPRCSR { // VGPR used for SGPR spills unsigned VGPR; // If the VGPR is a CSR, the stack slot used to save/restore it in the // prolog/epilog. Optional<int> FI; SGPRSpillVGPRCSR(unsigned V, Optional<int> F) : VGPR(V), FI(F) {} }; private: // SGPR->VGPR spilling support. using SpillRegMask = std::pair<unsigned, unsigned>; // Track VGPR + wave index for each subregister of the SGPR spilled to // frameindex key. DenseMap<int, std::vector<SpilledReg>> SGPRToVGPRSpills; unsigned NumVGPRSpillLanes = 0; SmallVector<SGPRSpillVGPRCSR, 2> SpillVGPRs; public: SIMachineFunctionInfo(const MachineFunction &MF); ArrayRef<SpilledReg> getSGPRToVGPRSpills(int FrameIndex) const { auto I = SGPRToVGPRSpills.find(FrameIndex); return (I == SGPRToVGPRSpills.end()) ? ArrayRef<SpilledReg>() : makeArrayRef(I->second); } ArrayRef<SGPRSpillVGPRCSR> getSGPRSpillVGPRs() const { return SpillVGPRs; } bool allocateSGPRSpillToVGPR(MachineFunction &MF, int FI); void removeSGPRToVGPRFrameIndices(MachineFrameInfo &MFI); bool hasCalculatedTID() const { return TIDReg != AMDGPU::NoRegister; } unsigned getTIDReg() const { return TIDReg; } void setTIDReg(unsigned Reg) { TIDReg = Reg; } unsigned getBytesInStackArgArea() const { return BytesInStackArgArea; } void setBytesInStackArgArea(unsigned Bytes) { BytesInStackArgArea = Bytes; } // Add user SGPRs. unsigned addPrivateSegmentBuffer(const SIRegisterInfo &TRI); unsigned addDispatchPtr(const SIRegisterInfo &TRI); unsigned addQueuePtr(const SIRegisterInfo &TRI); unsigned addKernargSegmentPtr(const SIRegisterInfo &TRI); unsigned addDispatchID(const SIRegisterInfo &TRI); unsigned addFlatScratchInit(const SIRegisterInfo &TRI); unsigned addImplicitBufferPtr(const SIRegisterInfo &TRI); // Add system SGPRs. unsigned addWorkGroupIDX() { ArgInfo.WorkGroupIDX = ArgDescriptor::createRegister(getNextSystemSGPR()); NumSystemSGPRs += 1; return ArgInfo.WorkGroupIDX.getRegister(); } unsigned addWorkGroupIDY() { ArgInfo.WorkGroupIDY = ArgDescriptor::createRegister(getNextSystemSGPR()); NumSystemSGPRs += 1; return ArgInfo.WorkGroupIDY.getRegister(); } unsigned addWorkGroupIDZ() { ArgInfo.WorkGroupIDZ = ArgDescriptor::createRegister(getNextSystemSGPR()); NumSystemSGPRs += 1; return ArgInfo.WorkGroupIDZ.getRegister(); } unsigned addWorkGroupInfo() { ArgInfo.WorkGroupInfo = ArgDescriptor::createRegister(getNextSystemSGPR()); NumSystemSGPRs += 1; return ArgInfo.WorkGroupInfo.getRegister(); } // Add special VGPR inputs void setWorkItemIDX(ArgDescriptor Arg) { ArgInfo.WorkItemIDX = Arg; } void setWorkItemIDY(ArgDescriptor Arg) { ArgInfo.WorkItemIDY = Arg; } void setWorkItemIDZ(ArgDescriptor Arg) { ArgInfo.WorkItemIDZ = Arg; } unsigned addPrivateSegmentWaveByteOffset() { ArgInfo.PrivateSegmentWaveByteOffset = ArgDescriptor::createRegister(getNextSystemSGPR()); NumSystemSGPRs += 1; return ArgInfo.PrivateSegmentWaveByteOffset.getRegister(); } void setPrivateSegmentWaveByteOffset(unsigned Reg) { ArgInfo.PrivateSegmentWaveByteOffset = ArgDescriptor::createRegister(Reg); } bool hasPrivateSegmentBuffer() const { return PrivateSegmentBuffer; } bool hasDispatchPtr() const { return DispatchPtr; } bool hasQueuePtr() const { return QueuePtr; } bool hasKernargSegmentPtr() const { return KernargSegmentPtr; } bool hasDispatchID() const { return DispatchID; } bool hasFlatScratchInit() const { return FlatScratchInit; } bool hasGridWorkgroupCountX() const { return GridWorkgroupCountX; } bool hasGridWorkgroupCountY() const { return GridWorkgroupCountY; } bool hasGridWorkgroupCountZ() const { return GridWorkgroupCountZ; } bool hasWorkGroupIDX() const { return WorkGroupIDX; } bool hasWorkGroupIDY() const { return WorkGroupIDY; } bool hasWorkGroupIDZ() const { return WorkGroupIDZ; } bool hasWorkGroupInfo() const { return WorkGroupInfo; } bool hasPrivateSegmentWaveByteOffset() const { return PrivateSegmentWaveByteOffset; } bool hasWorkItemIDX() const { return WorkItemIDX; } bool hasWorkItemIDY() const { return WorkItemIDY; } bool hasWorkItemIDZ() const { return WorkItemIDZ; } bool hasImplicitArgPtr() const { return ImplicitArgPtr; } bool hasImplicitBufferPtr() const { return ImplicitBufferPtr; } AMDGPUFunctionArgInfo &getArgInfo() { return ArgInfo; } const AMDGPUFunctionArgInfo &getArgInfo() const { return ArgInfo; } std::pair<const ArgDescriptor *, const TargetRegisterClass *> getPreloadedValue(AMDGPUFunctionArgInfo::PreloadedValue Value) const { return ArgInfo.getPreloadedValue(Value); } unsigned getPreloadedReg(AMDGPUFunctionArgInfo::PreloadedValue Value) const { return ArgInfo.getPreloadedValue(Value).first->getRegister(); } unsigned getGITPtrHigh() const { return GITPtrHigh; } unsigned get32BitAddressHighBits() const { return HighBitsOf32BitAddress; } unsigned getNumUserSGPRs() const { return NumUserSGPRs; } unsigned getNumPreloadedSGPRs() const { return NumUserSGPRs + NumSystemSGPRs; } unsigned getPrivateSegmentWaveByteOffsetSystemSGPR() const { return ArgInfo.PrivateSegmentWaveByteOffset.getRegister(); } /// \brief Returns the physical register reserved for use as the resource /// descriptor for scratch accesses. unsigned getScratchRSrcReg() const { return ScratchRSrcReg; } void setScratchRSrcReg(unsigned Reg) { assert(Reg != AMDGPU::NoRegister && "Should never be unset"); ScratchRSrcReg = Reg; } unsigned getScratchWaveOffsetReg() const { return ScratchWaveOffsetReg; } unsigned getFrameOffsetReg() const { return FrameOffsetReg; } void setStackPtrOffsetReg(unsigned Reg) { StackPtrOffsetReg = Reg; } // Note the unset value for this is AMDGPU::SP_REG rather than // NoRegister. This is mostly a workaround for MIR tests where state that // can't be directly computed from the function is not preserved in serialized // MIR. unsigned getStackPtrOffsetReg() const { return StackPtrOffsetReg; } void setScratchWaveOffsetReg(unsigned Reg) { assert(Reg != AMDGPU::NoRegister && "Should never be unset"); ScratchWaveOffsetReg = Reg; if (isEntryFunction()) FrameOffsetReg = ScratchWaveOffsetReg; } unsigned getQueuePtrUserSGPR() const { return ArgInfo.QueuePtr.getRegister(); } unsigned getImplicitBufferPtrUserSGPR() const { return ArgInfo.ImplicitBufferPtr.getRegister(); } bool hasSpilledSGPRs() const { return HasSpilledSGPRs; } void setHasSpilledSGPRs(bool Spill = true) { HasSpilledSGPRs = Spill; } bool hasSpilledVGPRs() const { return HasSpilledVGPRs; } void setHasSpilledVGPRs(bool Spill = true) { HasSpilledVGPRs = Spill; } bool hasNonSpillStackObjects() const { return HasNonSpillStackObjects; } void setHasNonSpillStackObjects(bool StackObject = true) { HasNonSpillStackObjects = StackObject; } bool isStackRealigned() const { return IsStackRealigned; } void setIsStackRealigned(bool Realigned = true) { IsStackRealigned = Realigned; } unsigned getNumSpilledSGPRs() const { return NumSpilledSGPRs; } unsigned getNumSpilledVGPRs() const { return NumSpilledVGPRs; } void addToSpilledSGPRs(unsigned num) { NumSpilledSGPRs += num; } void addToSpilledVGPRs(unsigned num) { NumSpilledVGPRs += num; } unsigned getPSInputAddr() const { return PSInputAddr; } unsigned getPSInputEnable() const { return PSInputEnable; } bool isPSInputAllocated(unsigned Index) const { return PSInputAddr & (1 << Index); } void markPSInputAllocated(unsigned Index) { PSInputAddr |= 1 << Index; } void markPSInputEnabled(unsigned Index) { PSInputEnable |= 1 << Index; } bool returnsVoid() const { return ReturnsVoid; } void setIfReturnsVoid(bool Value) { ReturnsVoid = Value; } /// \returns A pair of default/requested minimum/maximum flat work group sizes /// for this function. std::pair<unsigned, unsigned> getFlatWorkGroupSizes() const { return FlatWorkGroupSizes; } /// \returns Default/requested minimum flat work group size for this function. unsigned getMinFlatWorkGroupSize() const { return FlatWorkGroupSizes.first; } /// \returns Default/requested maximum flat work group size for this function. unsigned getMaxFlatWorkGroupSize() const { return FlatWorkGroupSizes.second; } /// \returns A pair of default/requested minimum/maximum number of waves per /// execution unit. std::pair<unsigned, unsigned> getWavesPerEU() const { return WavesPerEU; } /// \returns Default/requested minimum number of waves per execution unit. unsigned getMinWavesPerEU() const { return WavesPerEU.first; } /// \returns Default/requested maximum number of waves per execution unit. unsigned getMaxWavesPerEU() const { return WavesPerEU.second; } /// \returns Stack object index for \p Dim's work group ID. int getDebuggerWorkGroupIDStackObjectIndex(unsigned Dim) const { assert(Dim < 3); return DebuggerWorkGroupIDStackObjectIndices[Dim]; } /// \brief Sets stack object index for \p Dim's work group ID to \p ObjectIdx. void setDebuggerWorkGroupIDStackObjectIndex(unsigned Dim, int ObjectIdx) { assert(Dim < 3); DebuggerWorkGroupIDStackObjectIndices[Dim] = ObjectIdx; } /// \returns Stack object index for \p Dim's work item ID. int getDebuggerWorkItemIDStackObjectIndex(unsigned Dim) const { assert(Dim < 3); return DebuggerWorkItemIDStackObjectIndices[Dim]; } /// \brief Sets stack object index for \p Dim's work item ID to \p ObjectIdx. void setDebuggerWorkItemIDStackObjectIndex(unsigned Dim, int ObjectIdx) { assert(Dim < 3); DebuggerWorkItemIDStackObjectIndices[Dim] = ObjectIdx; } /// \returns SGPR used for \p Dim's work group ID. unsigned getWorkGroupIDSGPR(unsigned Dim) const { switch (Dim) { case 0: assert(hasWorkGroupIDX()); return ArgInfo.WorkGroupIDX.getRegister(); case 1: assert(hasWorkGroupIDY()); return ArgInfo.WorkGroupIDY.getRegister(); case 2: assert(hasWorkGroupIDZ()); return ArgInfo.WorkGroupIDZ.getRegister(); } llvm_unreachable("unexpected dimension"); } /// \returns VGPR used for \p Dim' work item ID. unsigned getWorkItemIDVGPR(unsigned Dim) const { switch (Dim) { case 0: assert(hasWorkItemIDX()); return AMDGPU::VGPR0; case 1: assert(hasWorkItemIDY()); return AMDGPU::VGPR1; case 2: assert(hasWorkItemIDZ()); return AMDGPU::VGPR2; } llvm_unreachable("unexpected dimension"); } unsigned getLDSWaveSpillSize() const { return LDSWaveSpillSize; } const AMDGPUBufferPseudoSourceValue *getBufferPSV(const SIInstrInfo &TII, const Value *BufferRsrc) { assert(BufferRsrc); auto PSV = BufferPSVs.try_emplace( BufferRsrc, llvm::make_unique<AMDGPUBufferPseudoSourceValue>(TII)); return PSV.first->second.get(); } const AMDGPUImagePseudoSourceValue *getImagePSV(const SIInstrInfo &TII, const Value *ImgRsrc) { assert(ImgRsrc); auto PSV = ImagePSVs.try_emplace( ImgRsrc, llvm::make_unique<AMDGPUImagePseudoSourceValue>(TII)); return PSV.first->second.get(); } }; } // end namespace llvm #endif // LLVM_LIB_TARGET_AMDGPU_SIMACHINEFUNCTIONINFO_H
[ "jeffbush001@gmail.com" ]
jeffbush001@gmail.com
213ee6d131fe02a9b461df0f6b5a4722a49f3df2
848ef045c5d0911737cb1f82e202916a46c84844
/COffer/2_6_bitree.cpp
8725560e8f934b0f221ae99d37c93e6c4d3c3150
[]
no_license
flydom/funcode
cd41cdc01a617b018fedfd5a1e620760a4aeb066
c9cb3b5ca8eca629ded34a9689d959498179b525
refs/heads/master
2021-01-16T19:32:04.637889
2018-08-12T14:01:22
2018-08-12T14:01:22
28,263,701
0
0
null
null
null
null
UTF-8
C++
false
false
1,811
cpp
BinaryTreeNode* BuildCore(int *startPreorder, int *endPreorder, int *startInorder, int *endInorder) { int rootValue = startPreorder[0]; // 构建树或子树的根节点 BinaryTreeNode *root = new BinaryTreeNode(); if (root == NULL) { return NULL; } root->m_nValue = rootValue; root->m_pLeft = root->m_pRight = NULL; // 只有一个节点 if (startPreorder == endPreorder) { if (startInorder == endInorder && *startPreorder == *startInorder) { return root; } else { printf("Invalid input.!\n"); return NULL; } } // 到中序序列中找根节点 int *rootInorder = startInorder; while (rootInorder <= endInorder && *rootInorder != rootValue) { rootInorder++; } if (rootInorder > endInorder) { printf("Invalid input.!\n"); return NULL; } // 递归构建中序遍历根节点中的左右子树 int leftLength = rootInorder - startInorder; int *leftPreorderEnd = startPreorder + leftLength; if (leftLength > 0) { root->m_pLeft = BuildCore(startPreorder + 1, leftPreorderEnd, startInorder, rootInorder - 1); } if (leftLength < endPreorder - startPreorder) { root->m_pRight = BuildCore(leftPreorderEnd + 1, endPreorder, rootInorder + 1, endInorder); } return root; } BinaryTreeNode* BuildBiTree(int *preorder, int *inorder, int length) { if (preorder == NULL || inorder == NULL || length <= 0) { return NULL; } return BuildCore(preorder, preorder + length - 1, inorder, preorder + length - 1); }
[ "fzy0201k@gmail.com" ]
fzy0201k@gmail.com
2c51b5d79b5de45f874c42f15559982bd6d7933b
e979844d55c1ef0313d9eb6703e48defbcd29aa1
/Terabit/tests/P2_Test/Session.cpp
84e7b3d0cda9bfdd28b6ade5bdb3b8fe01e955f4
[]
no_license
sue602/Terabit4ACE6.x
cfb365d816b77fdf43836d76fa36dcf854da7005
1b1366fc1ae9fd7c42b69f151ece9d1d858ed66f
refs/heads/master
2021-01-01T06:15:04.594124
2017-07-16T15:55:19
2017-07-16T15:55:19
97,391,901
2
1
null
null
null
null
UTF-8
C++
false
false
16,737
cpp
/********************************************************************* ** Copyright (C) 2003 Terabit Pty Ltd. All rights reserved. ** ** This file is part of the POSIX-Proactor module. ** ** ** ** ** ** ** ** **********************************************************************/ // ============================================================================ /** * @file Session.cpp * * * @author Alexander Libman <libman@terabit.com.au> */ // ============================================================================ #include "test_config.h" #include "P2_Test.h" #include "ace/Flag_Manip.h" //add by vincent 170610 // ************************************************************* // Session // ************************************************************* Session::Session (Bridge * bridge) : bridge_ (bridge), rs_ (), ws_ (), handle_ (ACE_INVALID_HANDLE), total_snd_(0), total_rcv_(0), total_w_ (0), total_r_ (0), ref_cnt_w_(0), ref_cnt_r_(0), flags_ (0) { ACE_ASSERT (this->bridge_ != 0); } Session::~Session (void) { this->close (); } void Session::close () { if (this->handle_ != ACE_INVALID_HANDLE) ACE_OS::closesocket (this->handle_); this->handle_= ACE_INVALID_HANDLE; } void Session::cancel () { this->ws_.cancel (); this->rs_.cancel (); #if defined(ACE_WIN32) this->close(); #endif return; } int Session::index (void) const { return this->bridge ()->index (); } int Session::is_open(void) const { return ((this->flags_ & SSN_OPEN) != 0); } void Session::addresses (const ACE_Addr& peer, const ACE_Addr& local) { ACE_TCHAR str_peer [256]; ACE_TCHAR str_local[256]; TRB_Sock_Addr::to_string (peer, str_peer, sizeof (str_peer)/sizeof (ACE_TCHAR)); TRB_Sock_Addr::to_string (local, str_local, sizeof (str_local)/sizeof (ACE_TCHAR)); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("(%t) %s=%d Remote=%s Local=%s\n"), this->get_name(), this->index(), str_peer, str_local)); } void Session::open (ACE_HANDLE handle, ACE_Message_Block & mb) { ACE_UNUSED_ARG(mb); { ACE_GUARD (ACE_SYNCH_MUTEX, monitor, this->bridge_->mutex()); this->open_streams (handle); if (bridge_->check_ref () != 0) return; } this->bridge_->try_destroy (); } int Session::open_streams (ACE_HANDLE handle) { this->handle_ = handle; if (this->handle_ == ACE_INVALID_HANDLE) return -1; TRB_Proactor * proactor = this->bridge ()->acceptor ().proactor(); if (this->ws_.open (*this, this->handle_, 0, // completion key, proactor) == -1) ACE_ERROR_RETURN ((LM_ERROR, ACE_TEXT ("(%t) %s=%d %p\n"), this->get_name(), this->index(), ACE_TEXT (" TRB_Asynch_Write_Stream::open")), -1); if (this->rs_.open (*this, this->handle_, 0, // completion key, proactor) == -1) ACE_ERROR_RETURN ((LM_ERROR, ACE_TEXT ("(%t) %s=%d %p\n"), this->get_name(), this->index(), ACE_TEXT (" TRB_Asynch_Read_Stream::open")), -1); this->flags_ |= SSN_OPEN; return this->on_open(); } int Session::initiate_read_stream (void) { if (this->bridge_->should_finish() || (this->flags_ & SSN_RCV_CLOSED) || this->handle_ == ACE_INVALID_HANDLE) return -1; ACE_Message_Block *mb = 0; size_t r_blksize = this->bridge_->acceptor().task().config().r_blksize(); int loglevel = this->bridge_->acceptor().task().config().loglevel (); ACE_NEW_RETURN (mb, ACE_Message_Block (r_blksize+1), -1); if (loglevel <= 1) { ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("(%t) %s=%d Initiate READ %u bytes\n"), this->get_name (), this->index (), (u_int) r_blksize )); } // Inititiate read if (this->rs_.read (*mb, r_blksize) == -1) { mb->release (); ACE_ERROR_RETURN((LM_ERROR, ACE_TEXT ("(%t) %s=%d attempt read failed\n"), this->get_name(), this->index()), -1); } this->ref_cnt_r_++; this->total_r_++; return 0; } int Session::initiate_write_stream (ACE_Message_Block &mb, size_t nbytes) { int loglevel = this->bridge_->acceptor().task().config().loglevel (); int mb_type = mb.msg_type (); if (this->bridge_->should_finish() || (this->flags_ & SSN_SND_CLOSED) || this->handle_ == ACE_INVALID_HANDLE) { mb.release (); return -1; } if (nbytes == 0 || mb_type == ACE_Message_Block::MB_HANGUP || mb_type == ACE_Message_Block::MB_ERROR) { ACE_OS::shutdown (this->handle_, ACE_SHUTDOWN_WRITE); this->flags_ |= SSN_SND_CLOSED; mb.release (); return -1; //this->cancel (); //ACE_ERROR_RETURN((LM_ERROR, // ACE_TEXT ("(%t) %s=%d attempt write 0 bytes\n"), // this->get_name(), // this->index()), // -1); } if (loglevel <= 1) { ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("(%t) %s=%d Initiate WRITE %u bytes\n"), this->get_name (), this->index (), (u_int) nbytes )); } if (this->ws_.write (mb, nbytes) == -1) { mb.release (); ACE_ERROR_RETURN((LM_ERROR, ACE_TEXT ("(%t) %s=%d attempt write failed\n"), this->get_name(), this->index()), -1); } this->ref_cnt_w_++; this->total_w_++; return 0; } void Session::handle_read_stream (const TRB_Asynch_Read_Stream::Result &result) { { ACE_GUARD (ACE_SYNCH_MUTEX, monitor, this->bridge_->mutex()); int loglevel = this->bridge_->acceptor().task().config().loglevel (); --this->ref_cnt_r_; ACE_Message_Block & mb = result.message_block (); // Reset pointers. mb.rd_ptr ()[result.bytes_transferred ()] = '\0'; if (loglevel == 0) { LogLocker log_lock; ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("(%t) **** %s=%d handle_read_stream() ****\n"), this->get_name(), this->index())); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%s = %d\n"), ACE_TEXT ("bytes_to_read"), result.bytes_to_read ())); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%s = %d\n"), ACE_TEXT ("handle"), result.handle ())); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%s = %d\n"), ACE_TEXT ("bytes_transfered"), result.bytes_transferred ())); /* ------------------------------------------- ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%s = %@\n"), ACE_TEXT ("act"), result.act ())); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%s = %d\n"), ACE_TEXT ("success"), result.success ())); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%s = %@\n"), ACE_TEXT ("completion_key"), result.completion_key ())); ------------------------------------------- */ ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%s = %d\n"), ACE_TEXT ("error"), result.error ())); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%s = %s\n"), ACE_TEXT ("message_block"), mb.rd_ptr ())); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("**** end of message ****************\n"))); } else if (result.error () != 0) { LogLocker log_lock; ACE_Log_Msg::instance ()->errnum (result.error ()); ACE_Log_Msg::instance ()->log (LM_ERROR, ACE_TEXT ("(%t) %s=%d ERROR %p\n"), this->get_name (), this->index (), ACE_TEXT ("read")); } else if ( loglevel ==1 ) { ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("(%t) %s=%d read=%d bytes ok\n"), this->get_name (), this->index (), result.bytes_transferred ())); } if (result.error () == 0 && result.bytes_transferred () > 0) { this->total_rcv_ += result.bytes_transferred (); } else { this->flags_ |= SSN_RCV_CLOSED; mb.msg_type (ACE_Message_Block::MB_HANGUP); mb.wr_ptr (mb.rd_ptr()); } this->on_data_received (mb); if (bridge_->check_ref () != 0) return; } this->bridge_->try_destroy (); } void Session::handle_write_stream (const TRB_Asynch_Write_Stream::Result &result) { { ACE_GUARD (ACE_SYNCH_MUTEX, monitor, this->bridge_->mutex()); int loglevel = this->bridge_->acceptor().task().config().loglevel (); --this->ref_cnt_w_; ACE_Message_Block & mb = result.message_block (); if (loglevel == 0) { LogLocker log_lock; //mb.rd_ptr () [0] = '\0'; mb.rd_ptr (mb.rd_ptr () - result.bytes_transferred ()); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("(%t) **** %s=%d handle_write_stream() ****\n"), this->get_name(), this->index())); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%s = %d\n"), ACE_TEXT ("bytes_to_write"), result.bytes_to_write ())); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%s = %d\n"), ACE_TEXT ("handle"), result.handle ())); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%s = %d\n"), ACE_TEXT ("bytes_transfered"), result.bytes_transferred ())); /* ------------------------------------------- ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%s = %@\n"), ACE_TEXT ("act"), result.act ())); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%s = %d\n"), ACE_TEXT ("success"), result.success ())); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%s = %@\n"), ACE_TEXT ("completion_key"), result.completion_key ())); ------------------------------------------- */ ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%s = %d\n"), ACE_TEXT ("error"), result.error ())); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("%s = %s\n"), ACE_TEXT ("message_block"), mb.rd_ptr ())); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("**** end of message ****************\n"))); } else if (result.error () != 0) { LogLocker log_lock; ACE_Log_Msg::instance ()->errnum (result.error ()); ACE_Log_Msg::instance ()->log (LM_ERROR, ACE_TEXT ("(%t) %s=%d ERROR %p\n"), this->get_name (), this->index (), ACE_TEXT ("write")); } else if ( loglevel ==1 ) { ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("(%t) %s=%d write=%d bytes ok\n"), this->get_name (), this->index (), result.bytes_transferred ())); } if (result.error () == 0 && result.bytes_transferred () > 0) { this->total_snd_ += result.bytes_transferred (); } else { mb.msg_type (ACE_Message_Block::MB_ERROR); mb.wr_ptr (mb.rd_ptr()); } this->on_data_sent (mb); if (bridge_->check_ref () != 0) return; } this->bridge_->try_destroy (); } // ********************************************************* // Receiver // ********************************************************* Receiver::Receiver (Bridge * bridge) : Session (bridge) { } Receiver::~Receiver (void) { if (this->get_ref_cnt () != 0) ACE_ERROR ((LM_WARNING, ACE_TEXT ("(%t) %s=%d deleted with pending ") ACE_TEXT ("W=%d R=%d\n"), this->get_name (), this->index (), this->get_ref_cnt_w (), this->get_ref_cnt_r ())); this->close(); } const ACE_TCHAR * Receiver::get_name (void) const { return ACE_TEXT("RCVR"); } int Receiver::on_open (void) { //int num = 1+(w_size/r_blksize); //for (; num > 0; --num) //this->initiate_read_stream (); //return 0; //this->bridge ()->on_data_sent (&mb, Bridge::Q_S2R); this->bridge ()->on_data_received (0, Bridge::Q_R2S); return 0; } int Receiver::on_data_received(ACE_Message_Block & mb) { return this->bridge ()->on_data_received (&mb, Bridge::Q_R2S); } int Receiver::on_data_sent(ACE_Message_Block & mb) { return this->bridge ()->on_data_sent (&mb, Bridge::Q_S2R); } // ********************************************************* // Sender // ********************************************************* Sender::Sender (Bridge * bridge) : Session (bridge) { ; } Sender::~Sender (void) { if (this->get_ref_cnt () != 0) ACE_ERROR ((LM_WARNING, ACE_TEXT ("(%t) %s=%d deleted with pending ") ACE_TEXT ("W=%d R=%d\n"), this->get_name (), this->index (), this->get_ref_cnt_w (), this->get_ref_cnt_r ())); this->close(); } const ACE_TCHAR * Sender::get_name (void) const { return ACE_TEXT("SNDR"); } int Sender::on_open (void) { //int num = 1+(w_size/r_blksize); //for (; num > 0; --num) //this->initiate_read_stream (); this->bridge ()->on_data_received (0, Bridge::Q_S2R); this->bridge ()->on_data_sent (0, Bridge::Q_R2S); return 0; } int Sender::on_data_received(ACE_Message_Block & mb) { return this->bridge ()->on_data_received (&mb, Bridge::Q_S2R); } int Sender::on_data_sent(ACE_Message_Block & mb) { return this->bridge ()->on_data_sent (&mb, Bridge::Q_R2S); } int Sender::connect(const ACE_Addr & addr) { ACE_ASSERT(this->handle_ == ACE_INVALID_HANDLE); TRB_Proactor * proactor = this->bridge ()->acceptor ().proactor(); if (this->bridge_->should_finish ()) return -1; if (this->asynch_connect_.open (*this, // handler ACE_INVALID_HANDLE, //handle 0, // completion key proactor) == -1) ACE_ERROR_RETURN ((LM_ERROR, ACE_TEXT ("(%t) %s=%d %p\n"), this->get_name(), this->index(), ACE_TEXT (" TRB_Asynch_Connect::open")), -1); if (this->asynch_connect_.connect (ACE_INVALID_HANDLE, addr, // remote sap ACE_Addr::sap_any, // local sap 1, // reuse addr 0) != 0) // act ACE_ERROR_RETURN ((LM_ERROR, ACE_TEXT ("(%t) %s=%d %p\n"), this->get_name(), this->index(), ACE_TEXT (" TRB_Asynch_Connect::open")), -1); ++this->ref_cnt_w_; return 0; } void Sender::handle_connect (const TRB_Asynch_Connect::Result &result) { { ACE_GUARD (ACE_SYNCH_MUTEX, monitor, this->bridge_->mutex()); --this->ref_cnt_w_; ACE_HANDLE handle = result.connect_handle(); if (handle != ACE_INVALID_HANDLE) { ACE::clr_flags (handle, ACE_NONBLOCK); this->parse_address(result); } this->open_streams(handle); if (this->bridge_->check_ref () != 0) return; } this->bridge_->try_destroy (); } void Sender::parse_address (const TRB_Asynch_Connect::Result &result) { const ACE_Addr& remote_address = result.remote_address (); const ACE_Addr& local_address = result.local_address (); this->addresses(remote_address, local_address); }
[ "suyinxiang@onemt.com.cn" ]
suyinxiang@onemt.com.cn
bd17106de54c85256ef0390f2d6cdc749fd19776
e26442d07aa93d7beb8376d4bdfdd803c145ba52
/implement/multicam-win-6.7.0.102256-sampleprograms/Samples/MsVc/DominoSnapshotTrigger/StdAfx.cpp
bdb526903bcdbef5cd1a4ef1e2e937bd356b1043
[]
no_license
Shelro/bracesEraser
c19c10d2cfca36c8c97695f505dc0f5ada77db6e
23331c780f601e921c4d51b2adae57280945a1d3
refs/heads/master
2020-12-30T12:23:15.132672
2017-06-25T06:44:38
2017-06-25T06:44:38
91,428,927
0
0
null
null
null
null
UTF-8
C++
false
false
221
cpp
// stdafx.cpp : source file that includes just the standard includes // DominoSnapshotTrigger.pch will be the pre-compiled header // stdafx.obj will contain the pre-compiled type information #include "stdafx.h"
[ "inyi13zyy@gmail.com" ]
inyi13zyy@gmail.com
925dd9d299374e9815b1b11123792f3d92cfe47c
1786f51414ac5919b4a80c7858e11f7eb12cb1a9
/POJ1179.cpp
09ad3caf987fef8a048d461a3836bbffb62e9cfd
[]
no_license
SetsunaChyan/OI_source_code
206c4d7a0d2587a4d09beeeb185765bca0948f27
bb484131e02467cdccd6456ea1ecb17a72f6e3f6
refs/heads/master
2020-04-06T21:42:44.429553
2019-12-02T09:18:54
2019-12-02T09:18:54
157,811,588
0
0
null
null
null
null
UTF-8
C++
false
false
1,282
cpp
#include <cstdio> #include <memory.h> #include <algorithm> using namespace std; const int INF=0x3f3f3f3f; int n,f[110][110][2],maxn=-INF; struct node { int val; char opt; }e[110]; inline int max(int a,int b){return a>b?a:b;} inline int min(int a,int b){return a<b?a:b;} int main() { scanf("%d",&n); scanf(" %c",&e[n].opt);e[2*n].opt=e[n].opt; for(int i=1;i<n;i++) { scanf("%d %c",&e[i].val,&e[i].opt); e[i+n].val=e[i].val; e[i+n].opt=e[i].opt; f[i][i][0]=f[i+n][i+n][0]=f[i][i][1]=f[i+n][i+n][1]=e[i].val; } scanf("%d",&e[n].val);e[2*n].val=e[n].val; f[n][n][0]=f[2*n][2*n][0]=f[n][n][1]=f[2*n][2*n][1]=e[n].val; for(int len=2;len<=n;len++) for(int l=1;l<=2*n-len+1;l++) { int r=l+len-1; f[l][r][0]=INF;f[l][r][1]=-INF; for(int k=l;k<r;k++) if(e[k].opt=='t') { f[l][r][0]=min(f[l][k][0]+f[k+1][r][0],f[l][r][0]); f[l][r][1]=max(f[l][k][1]+f[k+1][r][1],f[l][r][1]); } else for(int x=0;x<=1;x++) for(int y=0;y<=1;y++) { int z=f[l][k][x]*f[k+1][r][y]; f[l][r][0]=min(z,f[l][r][0]); f[l][r][1]=max(z,f[l][r][1]); } } for(int i=1;i<=n;i++) maxn=max(maxn,f[i][i+n-1][1]); printf("%d\n",maxn); for(int i=1;i<=n;i++) if(f[i][i+n-1][1]==maxn) printf("%d ",i); return 0; }
[ "ctzguozi@163.com" ]
ctzguozi@163.com
906e8d508f5c58031291956d77df5a6b3ba752d2
2578cf213bd9428422f370d8ca9de7d014040a5e
/09-Texture/3D Texture.cpp
4329adca53394a83dba7113a9d502a49d5c4af9b
[]
no_license
Yadnesh-Kulkarni/DirectX11
5294478e8d5ac61a247c3924968a405c5e016335
f4bba6ee7d11e53748398395ddb4700011ae5bc4
refs/heads/master
2023-07-26T10:01:44.971698
2021-09-14T22:17:25
2021-09-14T22:17:25
406,536,327
0
0
null
null
null
null
UTF-8
C++
false
false
39,836
cpp
#include<Windows.h> #include<stdio.h> #include<d3d11.h> #include<d3dcompiler.h> #pragma warning( disable: 4838) #include "XNAMath\xnamath.h" #include "WICTextureLoader.h" #pragma comment(lib,"d3d11.lib") #pragma comment(lib,"USER32.lib") #pragma comment(lib,"GDI32.lib") #pragma comment(lib,"KERNEL32.lib") #pragma comment(lib,"D3dcompiler.lib") #pragma comment(lib,"DirectXTK.lib") #define WIN_WIDTH 800 #define WIN_HEIGHT 600 LRESULT CALLBACK WndProc(HWND,UINT,WPARAM,LPARAM); FILE *gpFile = NULL; char gszLogFileName[] = "Log.txt"; HWND ghwnd = NULL; DWORD dwStyle; WINDOWPLACEMENT wpPrev = {sizeof(WINDOWPLACEMENT)}; bool gbActiveWindow = false; bool gbEscapeKeyIsPressed = false; bool gbFullscreen = false; ID3D11DeviceContext *gpID3D11DeviceContext = NULL; IDXGISwapChain *gpIDXGISwapChain = NULL; ID3D11Device *gpID3D11Device = NULL; ID3D11RenderTargetView *gpID3D11RenderTargetView = NULL; ID3D11VertexShader *gpID3D11VertexShader = NULL; ID3D11PixelShader *gpID3D11PixelShader = NULL; ID3D11Buffer *gpID3D11Buffer_VertexBuffer_Pyramid_Position = NULL; ID3D11Buffer *gpID3D11Buffer_VertexBuffer_Pyramid_Texture = NULL; ID3D11Buffer *gpID3D11Buffer_VertexBuffer_Cube_Position = NULL; ID3D11Buffer *gpID3D11Buffer_VertexBuffer_Cube_Texture = NULL; ID3D11InputLayout *gpID3D11InputLayout = NULL; ID3D11Buffer *gpID3D11Buffer_ConstantBuffer = NULL; ID3D11RasterizerState *gpID3D11RasterizerState = NULL; ID3D11DepthStencilView *gpID3D11DepthStencilView = NULL; ID3D11ShaderResourceView *gpID3D11ShaderResourceView_Texture_Pyramid = NULL; ID3D11ShaderResourceView *gpID3D11ShaderResourceView_Texture_Cube = NULL; ID3D11SamplerState *gpID3D11SamplerState_Texture_Pyramid = NULL; ID3D11SamplerState *gpID3D11SamplerState_Texture_Cube = NULL; float pyramid_rotation = 0.0f; float cube_rotation = 0.0f; struct CBUFFER { XMMATRIX WorldViewProjectionMatrix; }; XMMATRIX gPerspectiveProjectionMatrix; float gClearColor[4]; int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPSTR lpszCmdLine,int iCmdSHow) { HRESULT initialize(); void display(); void uninitialize(); void update(); WNDCLASSEX wndclassex; HWND hwnd; TCHAR szClassName[] = TEXT("MyD3D11 Class"); bool bDone = false; MSG msg; if(fopen_s(&gpFile,gszLogFileName,"w")!=0) { MessageBox(NULL,TEXT("Log File Can Not Be Created...Exiting"),TEXT("ERROR"),MB_ICONERROR); exit(0); } else { fprintf_s(gpFile,"Log File Is Successfully Opened.\n"); fclose(gpFile); } wndclassex.cbSize = sizeof(WNDCLASSEX); wndclassex.cbClsExtra = 0; wndclassex.cbWndExtra = 0; wndclassex.hbrBackground = (HBRUSH)GetStockObject(BLACK_BRUSH); wndclassex.hCursor = LoadCursor(hInstance,IDC_ARROW); wndclassex.hIcon = LoadIcon(hInstance,IDI_APPLICATION); wndclassex.hIconSm = LoadIcon(hInstance,IDI_APPLICATION); wndclassex.hInstance = hInstance; wndclassex.lpfnWndProc = WndProc; wndclassex.lpszClassName = szClassName; wndclassex.lpszMenuName = NULL; wndclassex.style = CS_VREDRAW | CS_HREDRAW; if(!RegisterClassEx(&wndclassex)) { MessageBox(NULL,TEXT("Could Not Register Class...Exiting!!!"),TEXT("Error"),MB_ICONERROR); return 0; } hwnd = CreateWindow(szClassName,TEXT("Plain Window"),WS_OVERLAPPEDWINDOW,100,100,WIN_WIDTH,WIN_HEIGHT,NULL,NULL,hInstance,NULL); if(hwnd == NULL) { MessageBox(NULL,TEXT("Could Not Create Window...Exiting!!!"),TEXT("Error"),MB_ICONERROR); return 0; } ghwnd = hwnd; ShowWindow(hwnd,iCmdSHow); SetForegroundWindow(hwnd); SetFocus(hwnd); HRESULT hr; hr = initialize(); if(FAILED(hr)) { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"initialize() Failed...Exiting!!!.\n"); fclose(gpFile); DestroyWindow(hwnd); hwnd = NULL; } else { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"initialize() Succeeded.\n"); fclose(gpFile); } while(bDone == false) { if(PeekMessage(&msg,NULL,0,0,PM_REMOVE)) { if(msg.message == WM_QUIT) bDone = true; else { TranslateMessage(&msg); DispatchMessage(&msg); } } else { update(); display(); if(gbActiveWindow == true) { if(gbEscapeKeyIsPressed == true) { bDone = true; } } } } uninitialize(); return ((int)msg.wParam); } LRESULT CALLBACK WndProc(HWND hwnd,UINT iMsg,WPARAM wParam,LPARAM lParam) { HRESULT resize(int,int); void ToggleFullscreen(); void uninitialize(); HRESULT hr; switch(iMsg) { case WM_ACTIVATE: if(HIWORD(wParam)==0) gbActiveWindow = true; else gbActiveWindow = false; break; case WM_ERASEBKGND: return(0); case WM_SIZE: if(gpID3D11DeviceContext) { hr = resize(HIWORD(lParam),LOWORD(lParam)); if(FAILED(hr)) { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"resize() Failed...Exiting!!!.\n"); fclose(gpFile); return(hr); } else { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"resize() Succeeded.\n"); fclose(gpFile); } } break; case WM_KEYDOWN: switch(wParam) { case VK_ESCAPE: if(gbEscapeKeyIsPressed == false) { gbEscapeKeyIsPressed = true; } break; case 0x46: if(gbFullscreen == false) { ToggleFullscreen(); gbFullscreen = true; } else { ToggleFullscreen(); gbFullscreen = false; } break; default: break; } break; case WM_LBUTTONDOWN: break; case WM_CLOSE: uninitialize(); break; case WM_DESTROY: PostQuitMessage(0); break; default: break; } return (DefWindowProc(hwnd,iMsg,wParam,lParam)); } void ToggleFullscreen() { MONITORINFO mi; if(gbFullscreen == false) { dwStyle = GetWindowLong(ghwnd,GWL_STYLE); if(dwStyle & WS_OVERLAPPEDWINDOW) { mi = { sizeof(MONITORINFO) }; if(GetWindowPlacement(ghwnd,&wpPrev) && GetMonitorInfo(MonitorFromWindow(ghwnd,MONITORINFOF_PRIMARY),&mi)) { SetWindowLong(ghwnd,GWL_STYLE,dwStyle & ~WS_OVERLAPPEDWINDOW); SetWindowPos(ghwnd,HWND_TOP,mi.rcMonitor.left,mi.rcMonitor.top,mi.rcMonitor.right-mi.rcMonitor.left,mi.rcMonitor.bottom-mi.rcMonitor.top,SWP_NOZORDER | SWP_FRAMECHANGED); } } ShowCursor(FALSE); } else { SetWindowLong(ghwnd,GWL_STYLE,dwStyle | WS_OVERLAPPEDWINDOW); SetWindowPlacement(ghwnd,&wpPrev); SetWindowPos(ghwnd,HWND_TOP,0,0,0,0,SWP_NOMOVE | SWP_NOSIZE | SWP_NOOWNERZORDER | SWP_NOZORDER | SWP_FRAMECHANGED); ShowCursor(TRUE); } } HRESULT initialize() { void uninitialize(); HRESULT LoadD3DTexture(const wchar_t *,ID3D11ShaderResourceView **); HRESULT resize(int,int); HRESULT hr; D3D_DRIVER_TYPE d3dDriverType; D3D_DRIVER_TYPE d3dDriverTypes[] = { D3D_DRIVER_TYPE_HARDWARE , D3D_DRIVER_TYPE_WARP , D3D_DRIVER_TYPE_REFERENCE }; D3D_FEATURE_LEVEL d3dFeatureLevel_required = D3D_FEATURE_LEVEL_11_0; D3D_FEATURE_LEVEL d3dFeatureLevel_acquired = D3D_FEATURE_LEVEL_10_0; UINT createDeviceFlags = 0; UINT numDriverTypes = 0; UINT numFeatureLevels = 1; numDriverTypes = sizeof(d3dDriverTypes) / sizeof(d3dDriverTypes[0]); DXGI_SWAP_CHAIN_DESC dxgiSwapChainDesc; ZeroMemory((void *)&dxgiSwapChainDesc,sizeof(DXGI_SWAP_CHAIN_DESC)); dxgiSwapChainDesc.BufferCount = 1; dxgiSwapChainDesc.BufferDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM; dxgiSwapChainDesc.BufferDesc.Height = WIN_HEIGHT; dxgiSwapChainDesc.BufferDesc.Width = WIN_WIDTH; dxgiSwapChainDesc.BufferDesc.RefreshRate.Numerator = 60; dxgiSwapChainDesc.BufferDesc.RefreshRate.Denominator = 1; dxgiSwapChainDesc.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT; dxgiSwapChainDesc.OutputWindow = ghwnd; dxgiSwapChainDesc.SampleDesc.Count = 4; dxgiSwapChainDesc.SampleDesc.Quality = 1; dxgiSwapChainDesc.Windowed = TRUE; for(UINT driverTypeIndex = 0; driverTypeIndex < numDriverTypes; driverTypeIndex++) { d3dDriverType = d3dDriverTypes[driverTypeIndex]; hr = D3D11CreateDeviceAndSwapChain(NULL,d3dDriverType,NULL,createDeviceFlags,&d3dFeatureLevel_required,numFeatureLevels,D3D11_SDK_VERSION,&dxgiSwapChainDesc,&gpIDXGISwapChain,&gpID3D11Device,&d3dFeatureLevel_acquired,&gpID3D11DeviceContext); if(SUCCEEDED(hr)) break; } if(FAILED(hr)) { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"D3D11CreateDeviceAndSwapChain() Failed...Exiting!!!.\n"); fclose(gpFile); return(hr); } else { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"D3D11CreateDeviceAndSwapChain() Succeeded.\n"); fprintf_s(gpFile,"The Chosen Driver is Of : "); if(d3dDriverType == D3D_DRIVER_TYPE_HARDWARE) { fprintf_s(gpFile,"Hardware Type.\n"); } else if(d3dDriverType == D3D_DRIVER_TYPE_WARP) { fprintf_s(gpFile,"Warp Type.\n"); } else if(d3dDriverType == D3D_DRIVER_TYPE_REFERENCE) { fprintf_s(gpFile,"Reference Type.\n"); } fprintf_s(gpFile,"The Supported Highest Level is : "); if(d3dFeatureLevel_acquired == D3D_FEATURE_LEVEL_11_0) { fprintf_s(gpFile,"11.0\n"); } else if(d3dFeatureLevel_acquired == D3D_FEATURE_LEVEL_10_1) { fprintf_s(gpFile,"10.1\n"); } else if(d3dFeatureLevel_acquired == D3D_FEATURE_LEVEL_10_0) { fprintf_s(gpFile,"10.0\n"); } else { fprintf_s(gpFile,"Unknown\n"); } fclose(gpFile); } //=============================================================VERTEX SHADER========================================================== const char *vertexShaderSourceCode = "cbuffer ConstantBuffer"\ "{"\ "float4x4 worldViewProjectionMatrix;"\ "}"\ "struct vertex_output"\ "{"\ "float4 position : SV_POSITION;"\ "float2 texcoord : TEXCOORD;"\ "};"\ "vertex_output main(float4 pos : POSITION,float4 tex : TEXCOORD)"\ "{"\ "vertex_output vout;"\ "vout.position = mul(worldViewProjectionMatrix,pos);"\ "vout.texcoord = tex;"\ "return(vout);"\ "}"; ID3DBlob *pID3DBlob_VertexShaderCode = NULL; ID3DBlob *pID3DBlob_Error = NULL; hr = D3DCompile(vertexShaderSourceCode, lstrlenA(vertexShaderSourceCode)+1, "VS", NULL, D3D_COMPILE_STANDARD_FILE_INCLUDE, "main", "vs_5_0", 0, 0, &pID3DBlob_VertexShaderCode, &pID3DBlob_Error ); if(FAILED(hr)) { if(pID3DBlob_Error != NULL) { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"D3DCompile() Failed For Vertex Shader : %s\n",(char *)pID3DBlob_Error->GetBufferPointer()); fclose(gpFile); pID3DBlob_Error->Release(); pID3DBlob_Error = NULL; return hr; } } else { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"D3DCompile Succeded for Vertex Shader\n"); fclose(gpFile); } hr = gpID3D11Device->CreateVertexShader(pID3DBlob_VertexShaderCode->GetBufferPointer(),pID3DBlob_VertexShaderCode->GetBufferSize(),NULL,&gpID3D11VertexShader); if(FAILED(hr)) { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"CreateVertexShader() Failed \n"); fclose(gpFile); pID3DBlob_VertexShaderCode->Release(); pID3DBlob_VertexShaderCode = NULL; } else { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"CreateVertexShader Succeded\n"); fclose(gpFile); } gpID3D11DeviceContext->VSSetShader(gpID3D11VertexShader,0,0); //=============================================================PIXEL SHADER=================================================== const char *pixelShaderSourceCode = "Texture2D myTexture2D;"\ "SamplerState mySamplerState;"\ "float4 main(float4 position : SV_POSITION,float2 texcoord : TEXCOORD) : SV_TARGET"\ "{"\ "float4 color = myTexture2D.Sample(mySamplerState,texcoord);"\ "return color;"\ "}"; ID3DBlob *pID3DBlob_PixelShaderCode = NULL; pID3DBlob_Error = NULL; hr = D3DCompile(pixelShaderSourceCode, lstrlenA(pixelShaderSourceCode)+1, "PS", NULL, D3D_COMPILE_STANDARD_FILE_INCLUDE, "main", "ps_5_0", 0, 0, &pID3DBlob_PixelShaderCode, &pID3DBlob_Error); if(FAILED(hr)) { if(pID3DBlob_Error != NULL) { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"D3DCompile() Failed For Pixel Shader : %s\n",(char *)pID3DBlob_Error->GetBufferPointer()); fclose(gpFile); pID3DBlob_Error->Release(); pID3DBlob_Error = NULL; return hr; } } else { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"D3DCompile Succeded for Pixel Shader\n"); fclose(gpFile); } hr = gpID3D11Device->CreatePixelShader(pID3DBlob_PixelShaderCode->GetBufferPointer(),pID3DBlob_PixelShaderCode->GetBufferSize(),NULL,&gpID3D11PixelShader); if(FAILED(hr)) { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"CreatePixelShader() Failed \n"); fclose(gpFile); pID3DBlob_PixelShaderCode->Release(); pID3DBlob_PixelShaderCode = NULL; } else { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"CreatePixelShader Succeded\n"); fclose(gpFile); } gpID3D11DeviceContext->PSSetShader(gpID3D11PixelShader,0,0); pID3DBlob_PixelShaderCode->Release(); pID3DBlob_PixelShaderCode = NULL; //===========================================================INITIALIZATION=============================================== //======================TRIANGLE===================== float vertices_pyramid[] = { // triangle of front side // front-top 0.0f, 1.0f, 0.0f, // front-right 1.0f, -1.0f, -1.0f, // front-left -1.0f, -1.0f, -1.0f, // triangle of right side // right-top 0.0f, 1.0f, 0.0f, // right-right 1.0f, -1.0f, 1.0f, // right-left 1.0f, -1.0f, -1.0f, // triangle of back side // back-top 0.0f, 1.0f, 0.0f, // back-right -1.0f, -1.0f, 1.0f, // back-left 1.0f, -1.0f, 1.0f, // triangle of left side // left-top 0.0f, 1.0f, 0.0f, // left-right -1.0f, -1.0f, -1.0f, // left-left -1.0f, -1.0f, 1.0f, }; float texcoord_pyramid[] = { 0.5, 1.0, // front-right 1.0, 0.0, // front-left 0.0, 0.0, // triangle of right side // right-top 0.5, 1.0, // right-right 0.0, 0.0, // right-left 1.0, 0.0, // triangle of back side // back-top 0.5, 1.0, // back-right 0.0, 0.0, // back-left 1.0, 0.0, // triangle of left side // left-top 0.5, 1.0, // left-right 1.0, 0.0, // left-left 0.0, 0.0, }; //Triangle Position D3D11_BUFFER_DESC bufferDesc; ZeroMemory(&bufferDesc,sizeof(D3D11_BUFFER_DESC)); bufferDesc.Usage = D3D11_USAGE_DYNAMIC; bufferDesc.ByteWidth = sizeof(float)*ARRAYSIZE(vertices_pyramid); bufferDesc.BindFlags = D3D11_BIND_VERTEX_BUFFER; bufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; hr = gpID3D11Device->CreateBuffer(&bufferDesc,NULL,&gpID3D11Buffer_VertexBuffer_Pyramid_Position); if(FAILED(hr)) { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"CreateBuffer() Failed \n"); fclose(gpFile); return (hr); } else { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"CreateBuffer Succeded\n"); fclose(gpFile); } D3D11_MAPPED_SUBRESOURCE mappedSubResource; ZeroMemory(&mappedSubResource,sizeof(D3D11_MAPPED_SUBRESOURCE)); gpID3D11DeviceContext->Map(gpID3D11Buffer_VertexBuffer_Pyramid_Position,NULL,D3D11_MAP_WRITE_DISCARD,NULL,&mappedSubResource); memcpy(mappedSubResource.pData,vertices_pyramid,sizeof(vertices_pyramid)); gpID3D11DeviceContext->Unmap(gpID3D11Buffer_VertexBuffer_Pyramid_Position,NULL); //======================Triangle Color============ ZeroMemory(&bufferDesc,sizeof(D3D11_BUFFER_DESC)); bufferDesc.Usage = D3D11_USAGE_DYNAMIC; bufferDesc.ByteWidth = sizeof(float) * sizeof(texcoord_pyramid); bufferDesc.BindFlags = D3D11_BIND_VERTEX_BUFFER; bufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; hr = gpID3D11Device->CreateBuffer(&bufferDesc,NULL,&gpID3D11Buffer_VertexBuffer_Pyramid_Texture); if(FAILED(hr)) { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"CreateBuffer() Failed \n"); fclose(gpFile); return (hr); } else { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"CreateBuffer Succeded\n"); fclose(gpFile); } ZeroMemory(&mappedSubResource,sizeof(D3D11_MAPPED_SUBRESOURCE)); gpID3D11DeviceContext->Map(gpID3D11Buffer_VertexBuffer_Pyramid_Texture,0,D3D11_MAP_WRITE_DISCARD,0,&mappedSubResource); memcpy(mappedSubResource.pData,texcoord_pyramid,sizeof(texcoord_pyramid)); gpID3D11DeviceContext->Unmap(gpID3D11Buffer_VertexBuffer_Pyramid_Texture,0); //==================QUAD================== float vertices_cube [] = { // SIDE 1 ( TOP ) // triangle 1 -1.0f, +1.0f, +1.0f, +1.0f, +1.0f, +1.0f, -1.0f, +1.0f, -1.0f, // triangle 2 -1.0f, +1.0f, -1.0f, +1.0f, +1.0f, +1.0f, +1.0f, +1.0f, -1.0f, // SIDE 2 ( BOTTOM ) // triangle 1 +1.0f, -1.0f, -1.0f, +1.0f, -1.0f, +1.0f, -1.0f, -1.0f, -1.0f, // triangle 2 -1.0f, -1.0f, -1.0f, +1.0f, -1.0f, +1.0f, -1.0f, -1.0f, +1.0f, // SIDE 3 ( FRONT ) // triangle 1 -1.0f, +1.0f, -1.0f, 1.0f, 1.0f, -1.0f, -1.0f, -1.0f, -1.0f, // triangle 2 -1.0f, -1.0f, -1.0f, 1.0f, 1.0f, -1.0f, +1.0f, -1.0f, -1.0f, // SIDE 4 ( BACK ) // triangle 1 +1.0f, -1.0f, +1.0f, +1.0f, +1.0f, +1.0f, -1.0f, -1.0f, +1.0f, // triangle 2 -1.0f, -1.0f, +1.0f, +1.0f, +1.0f, +1.0f, -1.0f, +1.0f, +1.0f, // SIDE 5 ( LEFT ) // triangle 1 -1.0f, +1.0f, +1.0f, -1.0f, +1.0f, -1.0f, -1.0f, -1.0f, +1.0f, // triangle 2 -1.0f, -1.0f, +1.0f, -1.0f, +1.0f, -1.0f, -1.0f, -1.0f, -1.0f, // SIDE 6 ( RIGHT ) // triangle 1 +1.0f, -1.0f, -1.0f, +1.0f, +1.0f, -1.0f, +1.0f, -1.0f, +1.0f, // triangle 2 +1.0f, -1.0f, +1.0f, +1.0f, +1.0f, -1.0f, +1.0f, +1.0f, +1.0f, }; float texcoord_cube[] = { +0.0f, +0.0f, +0.0f, +1.0f, +1.0f, +0.0f, // triangle 2 +1.0f, +0.0f, +0.0f, +1.0f, +1.0f, +1.0f, // SIDE 2 ( BOTTOM ) // triangle 1 +0.0f, +0.0f, +0.0f, +1.0f, +1.0f, +0.0f, // triangle 2 +1.0f, +0.0f, +0.0f, +1.0f, +1.0f, +1.0f, // SIDE 3 ( FRONT ) // triangle 1 +0.0f, +0.0f, +0.0f, +1.0f, +1.0f, +0.0f, // triangle 2 +1.0f, +0.0f, +0.0f, +1.0f, +1.0f, +1.0f, // SIDE 4 ( BACK ) // triangle 1 +0.0f, +0.0f, +0.0f, +1.0f, +1.0f, +0.0f, // triangle 2 +1.0f, +0.0f, +0.0f, +1.0f, +1.0f, +1.0f, // SIDE 5 ( LEFT ) // triangle 1 +0.0f, +0.0f, +0.0f, +1.0f, +1.0f, +0.0f, // triangle 2 +1.0f, +0.0f, +0.0f, +1.0f, +1.0f, +1.0f, // SIDE 6 ( RIGHT ) // triangle 1 +0.0f, +0.0f, +0.0f, +1.0f, +1.0f, +0.0f, // triangle 2 +1.0f, +0.0f, +0.0f, +1.0f, +1.0f, +1.0f, }; //Quad Position ZeroMemory(&bufferDesc,sizeof(D3D11_BUFFER_DESC)); bufferDesc.Usage = D3D11_USAGE_DYNAMIC; bufferDesc.ByteWidth = sizeof(float) * sizeof(vertices_cube); bufferDesc.BindFlags = D3D11_BIND_VERTEX_BUFFER; bufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; hr = gpID3D11Device->CreateBuffer(&bufferDesc,NULL,&gpID3D11Buffer_VertexBuffer_Cube_Position); if(FAILED(hr)) { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"CreateBuffer() Failed \n"); fclose(gpFile); return (hr); } else { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"CreateBuffer Succeded\n"); fclose(gpFile); } ZeroMemory(&mappedSubResource,sizeof(D3D11_MAPPED_SUBRESOURCE)); gpID3D11DeviceContext->Map(gpID3D11Buffer_VertexBuffer_Cube_Position,0,D3D11_MAP_WRITE_DISCARD,0,&mappedSubResource); memcpy(mappedSubResource.pData,vertices_cube,sizeof(vertices_cube)); gpID3D11DeviceContext->Unmap(gpID3D11Buffer_VertexBuffer_Cube_Position,0); //Cube Color ZeroMemory(&bufferDesc,sizeof(D3D11_BUFFER_DESC)); bufferDesc.Usage = D3D11_USAGE_DYNAMIC; bufferDesc.ByteWidth = sizeof(float) * sizeof(texcoord_cube); bufferDesc.BindFlags = D3D11_BIND_VERTEX_BUFFER; bufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; hr = gpID3D11Device->CreateBuffer(&bufferDesc,NULL,&gpID3D11Buffer_VertexBuffer_Cube_Texture); if(FAILED(hr)) { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"CreateBuffer() Failed \n"); fclose(gpFile); return (hr); } else { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"CreateBuffer Succeded\n"); fclose(gpFile); } ZeroMemory(&mappedSubResource,sizeof(D3D11_MAPPED_SUBRESOURCE)); gpID3D11DeviceContext->Map(gpID3D11Buffer_VertexBuffer_Cube_Texture,0,D3D11_MAP_WRITE_DISCARD,0,&mappedSubResource); memcpy(mappedSubResource.pData,texcoord_cube,sizeof(texcoord_cube)); gpID3D11DeviceContext->Unmap(gpID3D11Buffer_VertexBuffer_Cube_Texture,0); //=========================================Input Layout================================= D3D11_INPUT_ELEMENT_DESC inputElementDesc[2]; ZeroMemory(&inputElementDesc,sizeof(D3D11_INPUT_ELEMENT_DESC)); inputElementDesc[0].SemanticName = "POSITION"; inputElementDesc[0].SemanticIndex = 0; inputElementDesc[0].Format = DXGI_FORMAT_R32G32B32_FLOAT; inputElementDesc[0].InputSlot = 0; inputElementDesc[0].AlignedByteOffset = 0; inputElementDesc[0].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA; inputElementDesc[0].InstanceDataStepRate = 0; inputElementDesc[1].SemanticName = "TEXCOORD"; inputElementDesc[1].SemanticIndex = 0; inputElementDesc[1].Format = DXGI_FORMAT_R32G32_FLOAT; inputElementDesc[1].InputSlot = 1; inputElementDesc[1].AlignedByteOffset = D3D11_APPEND_ALIGNED_ELEMENT; inputElementDesc[1].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA; inputElementDesc[1].InstanceDataStepRate = 0; hr = gpID3D11Device->CreateInputLayout(inputElementDesc,2,pID3DBlob_VertexShaderCode->GetBufferPointer(),pID3DBlob_VertexShaderCode->GetBufferSize(),&gpID3D11InputLayout); if(FAILED(hr)) { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"CreateInputLayout() Failed \n"); fclose(gpFile); pID3DBlob_PixelShaderCode->Release(); pID3DBlob_PixelShaderCode = NULL; } else { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"CreateInputLayout Succeded\n"); fclose(gpFile); } gpID3D11DeviceContext->IASetInputLayout(gpID3D11InputLayout); pID3DBlob_VertexShaderCode->Release(); pID3DBlob_VertexShaderCode = NULL; D3D11_BUFFER_DESC bufferDesc_ConstantBuffer; ZeroMemory(&bufferDesc_ConstantBuffer,sizeof(D3D11_BUFFER_DESC)); bufferDesc_ConstantBuffer.Usage = D3D11_USAGE_DEFAULT; bufferDesc_ConstantBuffer.ByteWidth = sizeof(CBUFFER); bufferDesc_ConstantBuffer.BindFlags = D3D11_BIND_CONSTANT_BUFFER; hr = gpID3D11Device->CreateBuffer(&bufferDesc_ConstantBuffer,nullptr,&gpID3D11Buffer_ConstantBuffer); if(FAILED(hr)) { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"CreateBuffer() Failed for Constant Buffer\n"); fclose(gpFile); return hr; } else { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"CreateBuffer() Succeded for Constant Buffer\n"); fclose(gpFile); } gpID3D11DeviceContext->VSSetConstantBuffers(0,1,&gpID3D11Buffer_ConstantBuffer); D3D11_RASTERIZER_DESC rasterizerDesc; ZeroMemory(&rasterizerDesc,sizeof(D3D11_RASTERIZER_DESC)); rasterizerDesc.AntialiasedLineEnable = FALSE; rasterizerDesc.MultisampleEnable = FALSE; rasterizerDesc.DepthBias = 0; rasterizerDesc.DepthBiasClamp = 0.0f; rasterizerDesc.SlopeScaledDepthBias = 0.0f; rasterizerDesc.CullMode = D3D11_CULL_NONE; rasterizerDesc.DepthClipEnable = TRUE; rasterizerDesc.FillMode = D3D11_FILL_SOLID; rasterizerDesc.FrontCounterClockwise = FALSE; rasterizerDesc.ScissorEnable = FALSE; gpID3D11Device->CreateRasterizerState(&rasterizerDesc,&gpID3D11RasterizerState); gpID3D11DeviceContext->RSSetState(gpID3D11RasterizerState); hr = LoadD3DTexture(L"Stone.bmp",&gpID3D11ShaderResourceView_Texture_Pyramid); if(FAILED(hr)) { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"LoadD3DTexture() Failed for Pyramid\n"); fclose(gpFile); return hr; } else { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"LoadD3DTexture() Succeded for Pyramid\n"); fclose(gpFile); } D3D11_SAMPLER_DESC samplerDesc; ZeroMemory(&samplerDesc,sizeof(D3D11_SAMPLER_DESC)); samplerDesc.Filter = D3D11_FILTER_MIN_MAG_MIP_LINEAR; samplerDesc.AddressU = D3D11_TEXTURE_ADDRESS_WRAP; samplerDesc.AddressV = D3D11_TEXTURE_ADDRESS_WRAP; samplerDesc.AddressW = D3D11_TEXTURE_ADDRESS_WRAP; hr = gpID3D11Device->CreateSamplerState(&samplerDesc,&gpID3D11SamplerState_Texture_Pyramid); if(FAILED(hr)) { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"CreateSamplerState() Failed for Pyramid\n"); fclose(gpFile); return hr; } else { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"CreateSamplerState() Succeded for Pyramid\n"); fclose(gpFile); } hr = LoadD3DTexture(L"Kundali.bmp",&gpID3D11ShaderResourceView_Texture_Cube); if(FAILED(hr)) { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"LoadD3DTexture() Failed for Cube\n"); fclose(gpFile); return hr; } else { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"LoadD3DTexture() Succeded for Cube\n"); fclose(gpFile); } ZeroMemory(&samplerDesc,sizeof(D3D11_SAMPLER_DESC)); samplerDesc.Filter = D3D11_FILTER_MIN_MAG_MIP_LINEAR; samplerDesc.AddressU = D3D11_TEXTURE_ADDRESS_WRAP; samplerDesc.AddressV = D3D11_TEXTURE_ADDRESS_WRAP; samplerDesc.AddressW = D3D11_TEXTURE_ADDRESS_WRAP; hr = gpID3D11Device->CreateSamplerState(&samplerDesc,&gpID3D11SamplerState_Texture_Cube); if(FAILED(hr)) { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"CreateSamplerState() Failed for Cube\n"); fclose(gpFile); return hr; } else { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"CreateSamplerState() Succeded for Cube\n"); fclose(gpFile); } gClearColor[0] = 0.0f; gClearColor[1] = 0.0f; gClearColor[2] = 0.0f; gClearColor[3] = 0.0f; gPerspectiveProjectionMatrix = XMMatrixIdentity(); hr = resize(WIN_WIDTH,WIN_HEIGHT); if(FAILED(hr)) { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"Resize() Failed...Exiting!!!.\n"); fclose(gpFile); return(hr); } else { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"Resize() Succeeded.\n"); fclose(gpFile); } return (S_OK); } HRESULT LoadD3DTexture(const wchar_t *textureFileName,ID3D11ShaderResourceView **ppID3D11ShaderResourceView) { HRESULT hr; hr = DirectX::CreateWICTextureFromFile(gpID3D11Device,gpID3D11DeviceContext,textureFileName,NULL,ppID3D11ShaderResourceView); if(FAILED(hr)) { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"CreateWICTextureFromFile() Failed...Exiting!!!.\n"); fclose(gpFile); return(hr); } else { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"CreateWICTextureFromFile() Succeeded.\n"); fclose(gpFile); } return hr; } HRESULT resize(int width,int height) { HRESULT hr = S_OK; if(gpID3D11DepthStencilView) { gpID3D11DepthStencilView->Release(); gpID3D11DepthStencilView = NULL; } if(gpID3D11RenderTargetView) { gpID3D11RenderTargetView->Release(); gpID3D11RenderTargetView = NULL; } gpIDXGISwapChain->ResizeBuffers(1,width,height,DXGI_FORMAT_R8G8B8A8_UNORM,0); ID3D11Texture2D *pID3D11Texture2D_BackBuffer; gpIDXGISwapChain->GetBuffer(0,__uuidof(ID3D11Texture2D),(LPVOID *)&pID3D11Texture2D_BackBuffer); hr = gpID3D11Device->CreateRenderTargetView(pID3D11Texture2D_BackBuffer,NULL,&gpID3D11RenderTargetView); if(FAILED(hr)) { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"ID3D11Device::CreateRenderTargetView() Failed...Exiting!!!.\n"); fclose(gpFile); return(hr); } else { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"ID3D11Device::CreateRenderTargetView() Succeeded.\n"); fclose(gpFile); } pID3D11Texture2D_BackBuffer->Release(); pID3D11Texture2D_BackBuffer = NULL; D3D11_TEXTURE2D_DESC depthDesc; ZeroMemory(&depthDesc,sizeof(D3D11_TEXTURE2D_DESC)); depthDesc.Width = width; depthDesc.Height = height; depthDesc.ArraySize = 1; depthDesc.MipLevels = 1; depthDesc.SampleDesc.Count = 4; depthDesc.SampleDesc.Quality = 1; depthDesc.Format = DXGI_FORMAT_D32_FLOAT; depthDesc.Usage = D3D11_USAGE_DEFAULT; depthDesc.BindFlags = D3D11_BIND_DEPTH_STENCIL; depthDesc.CPUAccessFlags = 0; depthDesc.MiscFlags = 0; ID3D11Texture2D *pID3D11Texture2D_Depth = NULL; hr = gpID3D11Device->CreateTexture2D(&depthDesc,NULL,&pID3D11Texture2D_Depth); if(FAILED(hr)) { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"ID3D11Device::CreateTexture2D() Failed...Exiting!!!.\n"); fclose(gpFile); return(hr); } else { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"ID3D11Device::CreateTexture2D() Succeeded.\n"); fclose(gpFile); } D3D11_DEPTH_STENCIL_VIEW_DESC dsvDesc; ZeroMemory(&dsvDesc,sizeof(D3D11_DEPTH_STENCIL_VIEW_DESC)); dsvDesc.Format = DXGI_FORMAT_D32_FLOAT; dsvDesc.ViewDimension = D3D11_DSV_DIMENSION_TEXTURE2DMS; hr = gpID3D11Device->CreateDepthStencilView(pID3D11Texture2D_Depth,&dsvDesc,&gpID3D11DepthStencilView); if(FAILED(hr)) { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"ID3D11Device::CreateDepthStencilView() Failed...Exiting!!!.\n"); fclose(gpFile); return(hr); } else { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"ID3D11Device::CreateDepthStencilView() Succeeded.\n"); fclose(gpFile); } pID3D11Texture2D_Depth->Release(); pID3D11Texture2D_Depth = NULL; gpID3D11DeviceContext->OMSetRenderTargets(1,&gpID3D11RenderTargetView,gpID3D11DepthStencilView); D3D11_VIEWPORT d3d11ViewPort; d3d11ViewPort.TopLeftX = 0; d3d11ViewPort.TopLeftY = 0; d3d11ViewPort.Width = (float)width; d3d11ViewPort.Height = (float)height; d3d11ViewPort.MinDepth = 0.0f; d3d11ViewPort.MaxDepth = 1.0f; gpID3D11DeviceContext->RSSetViewports(1,&d3d11ViewPort); gPerspectiveProjectionMatrix = XMMatrixPerspectiveFovLH(XMConvertToRadians(45.0f),(float)width/(float)height,0.1f,100.0f); return hr; } void display() { gpID3D11DeviceContext->ClearRenderTargetView(gpID3D11RenderTargetView,gClearColor); gpID3D11DeviceContext->ClearDepthStencilView(gpID3D11DepthStencilView,D3D11_CLEAR_DEPTH,1.0f,0); //Triangle UINT stride = sizeof(float) * 3; UINT offset = 0; gpID3D11DeviceContext->IASetVertexBuffers(0,1,&gpID3D11Buffer_VertexBuffer_Pyramid_Position,&stride,&offset); stride = sizeof(float) * 2; gpID3D11DeviceContext->IASetVertexBuffers(1,1,&gpID3D11Buffer_VertexBuffer_Pyramid_Texture,&stride,&offset); gpID3D11DeviceContext->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST); gpID3D11DeviceContext->PSSetShaderResources(0,1,&gpID3D11ShaderResourceView_Texture_Pyramid); gpID3D11DeviceContext->PSSetSamplers(0,1,&gpID3D11SamplerState_Texture_Pyramid); XMMATRIX worldMatrix = XMMatrixIdentity(); XMMATRIX viewMatrix = XMMatrixIdentity(); XMMATRIX rotationMatrix = XMMatrixIdentity(); rotationMatrix = XMMatrixRotationY(pyramid_rotation); worldMatrix = XMMatrixTranslation(-1.5f,0.0f,12.0f); worldMatrix = rotationMatrix * worldMatrix; XMMATRIX wvpMatrix = worldMatrix * viewMatrix * gPerspectiveProjectionMatrix; CBUFFER constantBuffer; constantBuffer.WorldViewProjectionMatrix = wvpMatrix; gpID3D11DeviceContext->UpdateSubresource(gpID3D11Buffer_ConstantBuffer,0,NULL,&constantBuffer,0,0); gpID3D11DeviceContext->Draw(3,0); gpID3D11DeviceContext->Draw(3,3); gpID3D11DeviceContext->Draw(3,6); gpID3D11DeviceContext->Draw(3,9); //Quad stride = sizeof(float) * 3; gpID3D11DeviceContext->IASetVertexBuffers(0,1,&gpID3D11Buffer_VertexBuffer_Cube_Position,&stride,&offset); stride = sizeof(float) * 2; gpID3D11DeviceContext->IASetVertexBuffers(1,1,&gpID3D11Buffer_VertexBuffer_Cube_Texture,&stride,&offset); gpID3D11DeviceContext->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST); gpID3D11DeviceContext->PSSetShaderResources(0,1,&gpID3D11ShaderResourceView_Texture_Cube); gpID3D11DeviceContext->PSSetSamplers(0,1,&gpID3D11SamplerState_Texture_Cube); worldMatrix = XMMatrixIdentity(); viewMatrix = XMMatrixIdentity(); rotationMatrix = XMMatrixIdentity(); XMMATRIX rotationMatrixX = XMMatrixIdentity(); XMMATRIX rotationMatrixY = XMMatrixIdentity(); XMMATRIX rotationMatrixZ = XMMatrixIdentity(); rotationMatrixX = XMMatrixRotationX(cube_rotation); rotationMatrixY = XMMatrixRotationY(cube_rotation); rotationMatrixZ = XMMatrixRotationZ(cube_rotation); rotationMatrix = rotationMatrixX * rotationMatrixY * rotationMatrixZ; XMMATRIX scaleMatrix = XMMatrixScaling(0.75f,0.75f,0.75f); worldMatrix = XMMatrixTranslation(1.5f,0.0f,12.0f); worldMatrix = scaleMatrix * rotationMatrix * worldMatrix; wvpMatrix = worldMatrix * viewMatrix * gPerspectiveProjectionMatrix; constantBuffer.WorldViewProjectionMatrix = wvpMatrix; gpID3D11DeviceContext->UpdateSubresource(gpID3D11Buffer_ConstantBuffer,0,NULL,&constantBuffer,0,0); gpID3D11DeviceContext->Draw(6,0); gpID3D11DeviceContext->Draw(6,6); gpID3D11DeviceContext->Draw(6,12); gpID3D11DeviceContext->Draw(6,18); gpID3D11DeviceContext->Draw(6,24); gpID3D11DeviceContext->Draw(6,30); gpIDXGISwapChain->Present(0,0); } void update() { pyramid_rotation = pyramid_rotation + 0.005f; if(pyramid_rotation >= 360.0f) pyramid_rotation = 0.0f; cube_rotation = cube_rotation + 0.005f; if(cube_rotation >= 360.0f) cube_rotation = 0.0f; } void uninitialize() { if(gpID3D11SamplerState_Texture_Cube) { gpID3D11SamplerState_Texture_Cube->Release(); gpID3D11SamplerState_Texture_Cube = NULL; } if(gpID3D11ShaderResourceView_Texture_Cube) { gpID3D11ShaderResourceView_Texture_Cube->Release(); gpID3D11ShaderResourceView_Texture_Cube = NULL; } if(gpID3D11SamplerState_Texture_Pyramid) { gpID3D11SamplerState_Texture_Pyramid->Release(); gpID3D11SamplerState_Texture_Pyramid = NULL; } if(gpID3D11ShaderResourceView_Texture_Pyramid) { gpID3D11ShaderResourceView_Texture_Pyramid->Release(); gpID3D11ShaderResourceView_Texture_Pyramid = NULL; } if(gpID3D11RasterizerState) { gpID3D11RasterizerState->Release(); gpID3D11RasterizerState = NULL; } if(gpID3D11Buffer_ConstantBuffer) { gpID3D11Buffer_ConstantBuffer->Release(); gpID3D11Buffer_ConstantBuffer = NULL; } if(gpID3D11InputLayout) { gpID3D11InputLayout->Release(); gpID3D11InputLayout = NULL; } if(gpID3D11Buffer_VertexBuffer_Cube_Texture) { gpID3D11Buffer_VertexBuffer_Cube_Texture->Release(); gpID3D11Buffer_VertexBuffer_Cube_Texture = NULL; } if(gpID3D11Buffer_VertexBuffer_Cube_Position) { gpID3D11Buffer_VertexBuffer_Cube_Position->Release(); gpID3D11Buffer_VertexBuffer_Cube_Position = NULL; } if(gpID3D11Buffer_VertexBuffer_Pyramid_Texture) { gpID3D11Buffer_VertexBuffer_Pyramid_Texture->Release(); gpID3D11Buffer_VertexBuffer_Pyramid_Texture = NULL; } if(gpID3D11Buffer_VertexBuffer_Pyramid_Position) { gpID3D11Buffer_VertexBuffer_Pyramid_Position->Release(); gpID3D11Buffer_VertexBuffer_Pyramid_Position = NULL; } if(gpID3D11PixelShader) { gpID3D11PixelShader->Release(); gpID3D11PixelShader = NULL; } if(gpID3D11VertexShader) { gpID3D11VertexShader->Release(); gpID3D11VertexShader = NULL; } if(gpID3D11DepthStencilView) { gpID3D11DepthStencilView->Release(); gpID3D11DepthStencilView = NULL; } if(gpID3D11RenderTargetView) { gpID3D11RenderTargetView->Release(); gpID3D11RenderTargetView = NULL; } if(gpIDXGISwapChain) { gpIDXGISwapChain->Release(); gpIDXGISwapChain = NULL; } if(gpID3D11DeviceContext) { gpID3D11DeviceContext->Release(); gpID3D11DeviceContext = NULL; } if(gpID3D11Device) { gpID3D11Device->Release(); gpID3D11Device = NULL; } if(gpFile) { fopen_s(&gpFile,gszLogFileName,"a+"); fprintf_s(gpFile,"Uninitialize() Succeeded!!!.\n"); fprintf_s(gpFile,"Log File is Successfully Closed.\n"); fclose(gpFile); } }
[ "ykulkar2@uncc.edu" ]
ykulkar2@uncc.edu
fb2455bfbae5bc01370b3405025889a3df7af309
a9072e3730a9477bdd9e3b846f5d7ade235624aa
/倒写.cpp
19e949413426366c81d6f2e05b75992fd12a2149
[]
no_license
maZymaZe/cpp_code
c921c978abfceb692620a46b4fce7f59cf39660d
7486fe2a967c7a7ddb0022a052932b92a8c967c3
refs/heads/master
2022-05-30T16:16:56.096698
2022-05-24T04:42:37
2022-05-24T04:42:37
251,477,503
1
0
null
null
null
null
UTF-8
C++
false
false
149
cpp
#include<cstdio> int main(){ int d[5]; for(int i=1;i<=3;i++){ scanf("%1d",&d[i]); } for(int i=3;i>=1;i--){ printf("%1d",d[i]); } return 0; }
[ "782618517@qq.com" ]
782618517@qq.com
c8ccef9343110dcab3189529752fd6daf3e5736d
73f0dcdc5c3f06a1d43dfab55ca40c78fe9ee403
/libgbgui/icon.hpp
3eecb0ddff91011037491a068db7ebb2e88e4a3b
[]
no_license
mugisaku/gamebaby-20180928-dumped
6da84972407ec7e8a66b35e3975924f8e6207008
10a010db9e6369db334c84c73eef06f96e6834c9
refs/heads/master
2021-09-23T00:29:03.519034
2018-09-19T05:08:50
2018-09-19T05:08:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,092
hpp
#ifndef gbgui_icon_hpp #define gbgui_icon_hpp #include"libgbstd/color.hpp" #include<initializer_list> namespace gbgui{ namespace icons{ using namespace gbstd; class icon { public: static constexpr int size = 16; private: color m_data[size][size]={0}; public: icon(std::initializer_list<int> ls) noexcept; icon(std::initializer_list<color> ls) noexcept; void set_color(int x, int y, color i) noexcept{ m_data[y][x] = i;} color get_color(int x, int y ) const noexcept{return m_data[y][x] ;} void print() const noexcept; }; extern const icon checked; extern const icon unchecked; extern const icon radio_checked; extern const icon radio_unchecked; extern const icon up; // static const icon sunken_up; extern const icon left; extern const icon sunken_left; extern const icon right; extern const icon sunken_right; extern const icon down; // static const icon sunken_down; extern const icon plus; extern const icon minus; } using icon = icons::icon; } #endif
[ "lentilspring@gmail.com" ]
lentilspring@gmail.com
a3b8dd84e713de6b68aa9cab34c493c5434212ed
64c511bb0c1a61134966ff03a46d2f2802cda379
/Search_Sort/Union_Intersection.cpp
6e9898fe08ecea5c792b0dcf83b986f16da7850a
[]
no_license
ria28/Data-Structures-And-Algorithms
96f2278e35c4a1bb346d81fbea0e9da0f57c90c0
3225ba1b3dec9c2f77d6b2c9cc5cb9933cbb306d
refs/heads/master
2023-06-08T07:50:57.422775
2021-07-03T11:43:10
2021-07-03T11:43:10
278,084,625
0
0
null
null
null
null
UTF-8
C++
false
false
1,665
cpp
#include <iostream> #include <vector> #include <unordered_set> using namespace std; vector<int> intersection(vector<int> &nums1, vector<int> &nums2) { unordered_set<int> set{nums1.begin(), nums1.end()}; vector<int> intersect; for (auto n : nums2) { if (set.find(n) != set.end()) { intersect.push_back(n); set.erase(n); } } return intersect; } void intersection_three(int arr1[], int arr2[], int arr3[], int & n1, int & n2, int & n3) { int i = 0, j = 0, k = 0; // vector<int> intersect; while (i < n1 && j < n2 && k < n3) { if (arr1[i] == arr2[j] && arr2[j]==arr2[k]) { // intersect.push_back(arr1[i]); cout<<arr1[i]<<" "; i++; j++; k++; } else if(arr1[i]<arr2[j]) i++; else if(arr2[j]<arr3[k]) j++; else k++; } // return intersect; } int main(int args, char **argc) { int ar1[] = {1, 5, 10, 20, 40, 80}; int ar2[] = {6, 7, 20, 80, 100}; int ar3[] = {3, 4, 15, 20, 30, 70, 80, 120}; int n1 = sizeof(ar1) / sizeof(ar1[0]); int n2 = sizeof(ar2) / sizeof(ar2[0]); int n3 = sizeof(ar3) / sizeof(ar3[0]); // vector<int> nums1{1, 2, 3, 4}; // vector<int> nums2{2, 4, 6, 8}; // vector<int> intersect = intersection(nums1, nums2); // for (int i = 0; i < intersect.size(); i++) // { // cout << intersect[i]; // } intersection_three(ar1,ar2,ar3,n1,n2,n3); // for (int i = 0; i < intersect2.size(); i++) // { // cout << intersect2[i]; // } }
[ "riajaiswal28@gmail.com" ]
riajaiswal28@gmail.com
2931eeb622ba6da3f17a6004e00a88f14a8fbfdd
50526cc6fa91669fad19264450f0a88d98af5fa3
/hackerrank/cpp/3_basic_datatypes.cpp
5188f1b504d138fce0cb120d738c2b8b40fa5bcd
[]
no_license
dvogt23/CodeChallenges
e07a6c5b8d58cf7c1be06e3f38d8a218f19cdee7
95513ca9b535cb325390e63c24dabd2ba5475db6
refs/heads/master
2022-12-10T09:02:45.334624
2022-12-01T21:09:41
2022-12-01T21:09:41
151,611,815
0
1
null
null
null
null
UTF-8
C++
false
false
436
cpp
#include <iostream> #include <cstdio> using namespace std; /* Sample input: 3 12345678912345 a 334.23 14049.30493 Sample output: 3 12345678912345 a 334.230 14049.304930000 */ int main() { // Complete the code. int i; long l; char c; float f; double d; scanf("%i %li %c %f %lf", &i, &l, &c, &f, &d); printf("%i\n%li\n%c\n%.3f\n%.9lf", i, l, c, f, d); return 0; }
[ "divogt@live.de" ]
divogt@live.de
b048ca48e8774dcaab43d0b2ad58ec7f592f4bae
2c548b2a481036c51a3bed07a0ebe20a7e59ec45
/String/Quick3String.cpp
5f695a2502c7c387fab9233397a5670b25603318
[]
no_license
yuanmie/Data-Struct-And-Algorithm
2f2e4765ebd491a684bccaec9e2d37e62c19a927
eca4f14075e8c7af0794e48cd260dd816a7b5605
refs/heads/master
2021-01-10T01:09:29.103834
2017-05-08T14:50:55
2017-05-08T14:50:55
44,149,761
0
0
null
null
null
null
UTF-8
C++
false
false
1,920
cpp
/* 快速3向字符串排序,将数组划为小于,等于,大于3类。 然后递归的采用同样的步骤,达到排序的目的。 时间复杂度为: O(n) = n/3 + n/3 + n/3 + O(n/3) + O(n/3) + O(n/3) ==> O(n) = (nlog_3^n) */ #include <iostream> #include <string> #include <cstdio> #include <cassert> using std::string; using std::cout; void _quick3Sort(string* strs, int lo, int hi, int d); int charAt(const std::string& str, int index){ assert(index >= 0); int strLen = str.length(); if(index < strLen){ return (int)str[index]; }else{ return -1; } } void swap(string* str, int src, int dest){ string temp = str[src]; str[src] = str[dest]; str[dest] = temp; } void quick3Sort(string* strs, int length){ assert(length > 0); _quick3Sort(strs, 0, length-1, 0); } void _quick3Sort(string* strs, int lo, int hi, int d){ if(lo >= hi) return; int v = charAt(strs[lo], d); int i = lo + 1; int lt = lo; int gt = hi; while( i <= gt ){ int t = charAt(strs[i], d); if(t < v){ swap(strs, i, lt); ++i; ++lt; }else if(t > v){ swap(strs, i, gt); --gt; }else{ ++i; } } _quick3Sort(strs, lo, lt-1, d); if(v > 0){ _quick3Sort(strs, lt, gt, d+1); } _quick3Sort(strs, gt+1, hi, d); } int main(){ string s1("are"); string s2("by"); string s3("sea"); string s4("seashells"); string s5("seashells"); string s6("sells"); string s7("sells"); string s8("she"); string s9("she"); string s10("shells"); string s11("shore"); string s12("surely"); string s13("the"); string s14("the"); int M = 14; string strs[M] = {s1,s11,s14,s12,s13,s8,s9,s10,s2,s3,s7,s6,s5,s4}; for(int i = 0; i < M; i++){ std::cout << strs[i] << "\t"; } printf("start sort\n"); quick3Sort(strs, 14); printf("after sort\n"); for(int i = 0; i < M; i++){ std::cout << strs[i] << "\t"; } }
[ "1695883544@qq.com" ]
1695883544@qq.com
b95afa84fc3410dafc1b3a4ba8ccb718821444e2
374295882c901ee5c6ced8d17ca2b578cd483dd4
/stack/stack(basic)/nearest smaller to right.cpp
0c2a6cecab4be9598d223721adeddb958ec1a37c
[]
no_license
chinmay021/Interview-Preparation
232dba9d7d952fffa9475f8d8282f0edbf498726
c1b6f3e083025581f7157df887e1b87a9e153e98
refs/heads/master
2022-12-15T17:51:41.570297
2020-09-12T05:28:19
2020-09-12T05:28:19
279,581,708
0
0
null
null
null
null
UTF-8
C++
false
false
614
cpp
vector<long long> v; stack<long long> s; for (long long i = n - 1; i >= 0; i--) // right to left { if (s.size() == 0) { v.push_back(-1); } else if (s.size() > 0 && s.top() < arr[i]) { v.push_back(s.top()); } else if (s.size() > 0 && s.top() >= arr[i]) { while (s.size() > 0 && s.top() >= arr[i]) { s.pop(); } if (s.size() == 0) { v.push_back(-1); } else { v.push_back(s.top()); } } s.push(arr[i]); } reverse(v.begin(), v.end()); // reversal return v;
[ "chinmaykumar021@gmail.com" ]
chinmaykumar021@gmail.com
451d9554cac35b94d5399f33ac69947106b465ed
ee6e6e5ecf3a4e130e46b49dd0868a8b74c703eb
/11th-april-2019/12th-april-2019/poly.cpp
d2a8aafd9d3d51162bc110231a5f815f7dff4691
[]
no_license
ashishcodekul777/cpp
e5045fffd8f7c9c3f8eed1c1f5929f1bcb57af2a
077408bf0a86a3694baf1f72c623f8380cf48780
refs/heads/master
2022-01-08T03:31:03.488322
2019-06-04T12:18:21
2019-06-04T12:18:21
179,631,505
0
0
null
null
null
null
UTF-8
C++
false
false
901
cpp
#include <iostream> using namespace std; class Shape { protected: int width, height; public: Shape( int a = 0, int b = 0){ width = a; height = b; } int area() { cout << "Parent class area :" <<endl; return 0; } }; class Rectangle: public Shape { public: Rectangle( int a = 0, int b = 0):Shape(a, b) { } int area () { cout << "Rectangle class area :" <<endl; return (width * height); } }; class Triangle: public Shape { public: Triangle( int a = 0, int b = 0):Shape(a, b) { } int area () { cout << "Triangle class area :" <<endl; return (width * height / 2); } }; int main() { Shape *shape; Rectangle rect(10,7); Traingle Tri(10,3); shape= &rect; shape->area(); shape= &tri; shape->area(); return 0; }
[ "ashish444rao@gmail.com" ]
ashish444rao@gmail.com
102e5ad322eeb0528c60ed5353b8d68456f93141
e74687a6b394c47ffd8df8a31cfe0409e891078b
/fbgemm_gpu/src/layout_transform_ops_cpu.cpp
2a66482c3f81a23660494a6d0749525c2e4ae4c3
[ "BSD-3-Clause" ]
permissive
LinGongHeng/FBGEMM
b046003125dd0057d002263ac2f5fb08ccf3bd56
6cd2bde4684431fe5a4005edf6d0139abf462956
refs/heads/main
2023-09-04T20:55:48.748202
2021-11-24T21:41:14
2021-11-24T21:42:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,977
cpp
/* * Copyright (c) Facebook, Inc. and its affiliates. * All rights reserved. * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. */ #include <ATen/ATen.h> #include <ATen/core/op_registration/op_registration.h> #include <torch/library.h> #include "ATen/Parallel.h" #include "fbgemm_gpu/sparse_ops_utils.h" namespace fbgemm { at::Tensor recat_embedding_grad_output_mixed_D_cpu( const at::Tensor& grad_output, // [B_local][Sum_T_global(D)] const std::vector<int64_t>& dim_sum_per_rank) { TORCH_CHECK(grad_output.is_contiguous()); const auto B_local = grad_output.sizes()[0]; at::Tensor sharded_grad_output = at::empty({grad_output.numel()}, grad_output.options()); int n = dim_sum_per_rank.size(); std::vector<int64_t> accum_dim_sum(n + 1); accum_dim_sum[0] = 0; std::partial_sum( dim_sum_per_rank.begin(), dim_sum_per_rank.end(), &accum_dim_sum[1]); const auto global_dim_sum = accum_dim_sum[n]; TORCH_CHECK(B_local * global_dim_sum == grad_output.numel()); AT_DISPATCH_FLOATING_TYPES_AND_HALF( grad_output.type(), "recat_embedding_gradients", ([&] { const auto go = grad_output.accessor<scalar_t, 2>(); auto sgo = sharded_grad_output.accessor<scalar_t, 1>(); at::parallel_for( 0, n * B_local, 1, [&](int64_t i_begin, int64_t i_end) { const auto dim_begin = i_begin / B_local; const auto dim_end = (i_end + B_local - 1) / B_local; for (const auto dim : c10::irange(dim_begin, dim_end)) { const auto dim_sum = dim_sum_per_rank[dim]; const auto sgo_offset = B_local * accum_dim_sum[dim]; scalar_t* dst = &sgo[sgo_offset]; const scalar_t* src = &go[0][accum_dim_sum[dim]]; const auto r_begin = (dim == dim_begin) ? i_begin % B_local : 0; const auto r_end = (dim == dim_end - 1 && i_end % B_local != 0) ? i_end % B_local : B_local; for (const auto r : c10::irange(r_begin, r_end)) { memcpy( dst + r * dim_sum, src + r * global_dim_sum, dim_sum * sizeof(scalar_t)); } } }); })); return sharded_grad_output; } } // namespace fbgemm TORCH_LIBRARY_FRAGMENT(fbgemm, m) { m.def( "recat_embedding_grad_output_mixed_D_batch(Tensor grad_output, Tensor dim_sum_per_rank, Tensor cumsum_dim_sum_per_rank) -> Tensor"); m.def( "recat_embedding_grad_output_mixed_D(Tensor grad_output, int[] dim_sum_per_rank) -> Tensor"); m.def( "recat_embedding_grad_output(Tensor grad_output, int[] num_features_per_rank) -> Tensor"); } TORCH_LIBRARY_IMPL(fbgemm, CPU, m) { m.impl( "recat_embedding_grad_output_mixed_D", fbgemm::recat_embedding_grad_output_mixed_D_cpu); }
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
66f4bd5ea0e01721604a6c4a1c01130acf64b7df
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/curl/gumtree/curl_new_log_8228.cpp
579a7e56236524d29a1ecac22c5db84a68cab584
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
524
cpp
fputs( " backend that supports this operation. The c-ares backend is the\n" " only such one. (Added in 7.33.0)\n" "\n" " -e, --referer <URL>\n" " (HTTP) Sends the \"Referer Page\" information to the HTTP server.\n" " This can also be set with the -H, --header flag of course. When\n" " used with -L, --location you can append \";auto\" to the --referer\n" " URL to make curl automatically set the previous URL when it fol-\n" , stdout);
[ "993273596@qq.com" ]
993273596@qq.com
ca43c264bf3395026f6a88c00ba4332cc20d9e0c
ecfadf59abf0c377e4fbaafb8f594420d8d23277
/Docs/cpptut/SOURCE/VIRTUAL3.CPP
ad669a03789dd9f0bc875b968d78452b300b9020
[]
no_license
laurentd75/ggnkua_Atari_ST_Sources_Repository
71fad5fc5ee3ea7bbd807ec6a6d4a99f7ef31334
b51e02ffd546ba8260a5645a51acd90d66c16832
refs/heads/master
2023-08-31T14:13:18.440660
2023-08-24T10:09:58
2023-08-24T10:09:58
164,442,362
0
0
null
2023-09-03T00:24:29
2019-01-07T14:12:47
null
UTF-8
C++
false
false
1,032
cpp
// Chapter 10 - Program 3 #include <iostream.h> class vehicle { int wheels; float weight; public: void message(void) { cout << "Vehicle message\n";} }; class car : public vehicle { int passenger_load; public: void message(void) { cout << "Car message\n";} }; class truck : public vehicle { int passenger_load; float payload; public: int passengers(void) {return passenger_load;} }; class boat : public vehicle { int passenger_load; public: int passengers(void) {return passenger_load;} void message(void) { cout << "Boat message\n";} }; main() { vehicle *unicycle; car *sedan; truck *semi; boat *sailboat; unicycle = new vehicle; unicycle->message(); sedan = new car; sedan->message(); semi = new truck; semi->message(); sailboat = new boat; sailboat->message(); } // Result of execution // // Vehicle message // Car message // Vehicle message // Boat message
[ "ggn.dbug@gmail.com" ]
ggn.dbug@gmail.com
51756f3001d47660de53543acc24929119683c8e
4f8a5913a01276e335b39bbfd366f839dab4fada
/deps/boost/libs/variant/test/auto_visitors.cpp
84c91c9d2fa7c929b1aced29a9dfd139673a2f86
[ "MIT", "GPL-1.0-or-later", "BSL-1.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
teolemon/poedit
d6b08505e0fe3ca46d6686a9e7e70e4923db8f4a
7a61156a6efb884202b0d60a342600cab7b3d1d5
refs/heads/master
2021-07-11T08:20:20.337006
2015-08-22T01:09:24
2015-08-22T01:09:24
41,184,280
0
0
MIT
2021-03-04T13:18:07
2015-08-22T01:07:46
C++
UTF-8
C++
false
false
10,100
cpp
//----------------------------------------------------------------------------- // boost-libs variant/test/auto_visitors.cpp source file // See http://www.boost.org for updates, documentation, and revision history. //----------------------------------------------------------------------------- // // Copyright (c) 2014-2015 Antony Polukhin // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #include "boost/config.hpp" #include "boost/test/minimal.hpp" #include "boost/variant.hpp" #include "boost/variant/multivisitors.hpp" #include "boost/lexical_cast.hpp" struct lex_streamer_explicit: boost::static_visitor<std::string> { template <class T> const char* operator()(const T& ) { return "10"; } template <class T1, class T2> const char* operator()(const T1& , const T2& ) { return "100"; } }; void run_explicit() { typedef boost::variant<int, std::string, double> variant_type; variant_type v2("10"), v1("100"); lex_streamer_explicit visitor_ref; // Must return instance of std::string BOOST_CHECK(boost::apply_visitor(visitor_ref, v2).c_str() == std::string("10")); BOOST_CHECK(boost::apply_visitor(visitor_ref, v2, v1).c_str() == std::string("100")); } // Most part of tests from this file require decltype(auto) #ifdef BOOST_NO_CXX14_DECLTYPE_AUTO void run() { BOOST_CHECK(true); } void run2() { BOOST_CHECK(true); } void run3() { BOOST_CHECK(true); } #else #include <iostream> struct lex_streamer { template <class T> std::string operator()(const T& val) const { return boost::lexical_cast<std::string>(val); } }; struct lex_streamer_void { template <class T> void operator()(const T& val) const { std::cout << val << std::endl; } template <class T1, class T2> void operator()(const T1& val, const T2& val2) const { std::cout << val << '+' << val2 << std::endl; } template <class T1, class T2, class T3> void operator()(const T1& val, const T2& val2, const T3& val3) const { std::cout << val << '+' << val2 << '+' << val3 << std::endl; } }; struct lex_streamer2 { std::string res; template <class T> const char* operator()(const T& val) const { return "fail"; } template <class T1, class T2> const char* operator()(const T1& v1, const T2& v2) const { return "fail2"; } template <class T1, class T2, class T3> const char* operator()(const T1& v1, const T2& v2, const T3& v3) const { return "fail3"; } template <class T> std::string& operator()(const T& val) { res = boost::lexical_cast<std::string>(val); return res; } template <class T1, class T2> std::string& operator()(const T1& v1, const T2& v2) { res = boost::lexical_cast<std::string>(v1) + "+" + boost::lexical_cast<std::string>(v2); return res; } template <class T1, class T2, class T3> std::string& operator()(const T1& v1, const T2& v2, const T3& v3) { res = boost::lexical_cast<std::string>(v1) + "+" + boost::lexical_cast<std::string>(v2) + "+" + boost::lexical_cast<std::string>(v3); return res; } }; #ifndef BOOST_VARIANT_DO_NOT_USE_VARIADIC_TEMPLATES # define BOOST_CHECK_IF_HAS_VARIADIC(x) BOOST_CHECK(x) #else # define BOOST_CHECK_IF_HAS_VARIADIC(x) /**/ #endif void run() { typedef boost::variant<int, std::string, double> variant_type; variant_type v1(1), v2("10"), v3(100.0); lex_streamer lex_streamer_visitor; BOOST_CHECK(boost::apply_visitor(lex_streamer(), v1) == "1"); BOOST_CHECK_IF_HAS_VARIADIC(boost::apply_visitor(lex_streamer_visitor)(v1) == "1"); BOOST_CHECK(boost::apply_visitor(lex_streamer(), v2) == "10"); BOOST_CHECK_IF_HAS_VARIADIC(boost::apply_visitor(lex_streamer_visitor)(v2) == "10"); #ifndef BOOST_NO_CXX14_GENERIC_LAMBDAS BOOST_CHECK(boost::apply_visitor([](auto v) { return boost::lexical_cast<std::string>(v); }, v1) == "1"); BOOST_CHECK(boost::apply_visitor([](auto v) { return boost::lexical_cast<std::string>(v); }, v2) == "10"); // Retun type must be the same in all instances, so this code does not compile //boost::variant<int, short, unsigned> v_diff_types(1); //BOOST_CHECK(boost::apply_visitor([](auto v) { return v; }, v_diff_types) == 1); boost::apply_visitor([](auto v) { std::cout << v << std::endl; }, v1); boost::apply_visitor([](auto v) { std::cout << v << std::endl; }, v2); #endif lex_streamer2 visitor_ref; BOOST_CHECK(boost::apply_visitor(visitor_ref, v1) == "1"); BOOST_CHECK(boost::apply_visitor(visitor_ref, v2) == "10"); #ifndef BOOST_VARIANT_DO_NOT_USE_VARIADIC_TEMPLATES std::string& ref_to_string = boost::apply_visitor(visitor_ref, v1); BOOST_CHECK(ref_to_string == "1"); #endif lex_streamer_void lex_streamer_void_visitor; boost::apply_visitor(lex_streamer_void(), v1); boost::apply_visitor(lex_streamer_void(), v2); #ifndef BOOST_VARIANT_DO_NOT_USE_VARIADIC_TEMPLATES boost::apply_visitor(lex_streamer_void_visitor)(v2); #endif } struct lex_combine { template <class T1, class T2> std::string operator()(const T1& v1, const T2& v2) const { return boost::lexical_cast<std::string>(v1) + "+" + boost::lexical_cast<std::string>(v2); } template <class T1, class T2, class T3> std::string operator()(const T1& v1, const T2& v2, const T3& v3) const { return boost::lexical_cast<std::string>(v1) + "+" + boost::lexical_cast<std::string>(v2) + '+' + boost::lexical_cast<std::string>(v3); } }; void run2() { typedef boost::variant<int, std::string, double> variant_type; variant_type v1(1), v2("10"), v3(100.0); lex_combine lex_combine_visitor; BOOST_CHECK(boost::apply_visitor(lex_combine(), v1, v2) == "1+10"); BOOST_CHECK(boost::apply_visitor(lex_combine(), v2, v1) == "10+1"); BOOST_CHECK_IF_HAS_VARIADIC(boost::apply_visitor(lex_combine_visitor)(v2, v1) == "10+1"); #ifndef BOOST_NO_CXX14_GENERIC_LAMBDAS BOOST_CHECK( boost::apply_visitor( [](auto v1, auto v2) { return boost::lexical_cast<std::string>(v1) + "+" + boost::lexical_cast<std::string>(v2); } , v1 , v2 ) == "1+10" ); BOOST_CHECK( boost::apply_visitor( [](auto v1, auto v2) { return boost::lexical_cast<std::string>(v1) + "+" + boost::lexical_cast<std::string>(v2); } , v2 , v1 ) == "10+1" ); boost::apply_visitor([](auto v1, auto v2) { std::cout << v1 << '+' << v2 << std::endl; }, v1, v2); boost::apply_visitor([](auto v1, auto v2) { std::cout << v1 << '+' << v2 << std::endl; }, v2, v1); #endif lex_streamer2 visitor_ref; BOOST_CHECK(boost::apply_visitor(visitor_ref, v1, v2) == "1+10"); BOOST_CHECK(boost::apply_visitor(visitor_ref, v2, v1) == "10+1"); #ifndef BOOST_VARIANT_DO_NOT_USE_VARIADIC_TEMPLATES std::string& ref_to_string = boost::apply_visitor(visitor_ref)(v1, v2); BOOST_CHECK(ref_to_string == "1+10"); #endif boost::apply_visitor(lex_streamer_void(), v1, v2); boost::apply_visitor(lex_streamer_void(), v2, v1); } #undef BOOST_CHECK_IF_HAS_VARIADIC void run3() { #if !defined(BOOST_VARIANT_DO_NOT_USE_VARIADIC_TEMPLATES) && !defined(BOOST_NO_CXX11_HDR_TUPLE) typedef boost::variant<int, std::string, double> variant_type; variant_type v1(1), v2("10"), v3(100); lex_combine lex_combine_visitor; BOOST_CHECK(boost::apply_visitor(lex_combine(), v1, v2, v3) == "1+10+100"); BOOST_CHECK(boost::apply_visitor(lex_combine(), v2, v1, v3) == "10+1+100"); BOOST_CHECK(boost::apply_visitor(lex_combine_visitor)(v2, v1, v3) == "10+1+100"); #ifndef BOOST_NO_CXX14_GENERIC_LAMBDAS BOOST_CHECK( boost::apply_visitor( [](auto v1, auto v2, auto v3) { return boost::lexical_cast<std::string>(v1) + "+" + boost::lexical_cast<std::string>(v2) + "+" + boost::lexical_cast<std::string>(v3); } , v1 , v2 , v3 ) == "1+10+100" ); BOOST_CHECK( boost::apply_visitor( [](auto v1, auto v2, auto v3) { return boost::lexical_cast<std::string>(v1) + "+" + boost::lexical_cast<std::string>(v2) + "+" + boost::lexical_cast<std::string>(v3); } , v3 , v1 , v3 ) == "100+1+100" ); boost::apply_visitor( [](auto v1, auto v2, auto v3) { std::cout << v1 << '+' << v2 << '+' << v3 << std::endl; }, v1, v2, v3 ); boost::apply_visitor( [](auto v1, auto v2, auto v3) { std::cout << v1 << '+' << v2 << '+' << v3 << std::endl; }, v2, v1, v3 ); #endif lex_streamer2 visitor_ref; BOOST_CHECK(boost::apply_visitor(visitor_ref, v1, v2) == "1+10"); BOOST_CHECK(boost::apply_visitor(visitor_ref)(v2, v1) == "10+1"); std::string& ref_to_string = boost::apply_visitor(visitor_ref, v1, v2); BOOST_CHECK(ref_to_string == "1+10"); lex_streamer_void lex_streamer_void_visitor; boost::apply_visitor(lex_streamer_void(), v1, v2, v1); boost::apply_visitor(lex_streamer_void(), v2, v1, v1); boost::apply_visitor(lex_streamer_void_visitor)(v2, v1, v1); #endif // !defined(BOOST_VARIANT_DO_NOT_USE_VARIADIC_TEMPLATES) && !defined(BOOST_NO_CXX11_HDR_TUPLE) } #endif int test_main(int , char* []) { run_explicit(); run(); run2(); run3(); return 0; }
[ "vaclav@slavik.io" ]
vaclav@slavik.io
f553932a7060a7b1e69bb609114c8777e4fa0c21
95ab8a21dda989fde5b0796d1488c30128a01391
/CodeForces/C++/1204C.cpp
0b0d374dee956af9e4628c171e89db7dcefd5402
[]
no_license
neelaryan2/CompetitiveProgramming
caa20ffcdee57fb2e15ceac0e7ebbe4e7277dc34
959c3092942751f833b489cc91744fc68f8c65d2
refs/heads/master
2021-06-28T14:10:50.545527
2021-02-15T17:34:03
2021-02-15T17:34:03
216,887,910
2
1
null
null
null
null
UTF-8
C++
false
false
1,655
cpp
#include <bits/stdc++.h> using namespace std; #ifdef LOCAL #include "trace.h" #else #define trace(args...) #endif using ll = long long; using ld = long double; using pii = pair<int, int>; using vi = vector<int>; #define mp make_pair #define ub upper_bound #define lb lower_bound #define fi first #define se second #define pb push_back #define eb emplace_back #define all(v) (v).begin(), (v).end() #define rall(v) (v).rbegin(), (v).rend() const int inf = 1e9 + 7; void solve(int test) { int n; cin >> n; vector<vi> dist(n, vi(n)); for (int i = 0; i < n; i++) { string s; cin >> s; for (int j = 0; j < n; j++) { if (i == j) dist[i][j] = 0; else if (s[j] == '1') dist[i][j] = 1; else dist[i][j] = inf; } } for (int k = 0; k < n; k++) for (int i = 0; i < n; i++) for (int j = 0; j < n; j++) dist[i][j] = min(dist[i][j], dist[i][k] + dist[k][j]); trace(dist); int m; cin >> m; vector<int> p(m); for (int& e : p) cin >> e, e--; vector<int> ans(1, 0); for (int i = 1; i < m; i++) { int j = ans.back(); if (dist[p[j]][p[i]] != i - j) ans.eb(i - 1); } ans.eb(m - 1); cout << ans.size() << '\n'; for (int e : ans) cout << p[e] + 1 << ' '; } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int t = 1; // cin >> t; for (int i = 1; i <= t; i++) { // cout << "Case #" << i << ": "; solve(i); cout << '\n'; } }
[ "neelaryan2@gmail.com" ]
neelaryan2@gmail.com
aac6ce90556213e846fe71bd5b69314b48ab206f
0674e81a160161996251fb4b063c801330ccd1e2
/codeforces/April Fool Day Contest 2014/E.cpp
5951b727336d20c8da2782201cdcf638aa3446a1
[]
no_license
joshuabezaleel/cp
8a2c9b44605810da4367efeb981f822ae5e1e9a2
57f365458cca38c3c0fb1f5af1c6b44b74f3b53e
refs/heads/master
2022-07-19T00:39:34.395495
2020-05-23T20:37:20
2020-05-23T20:37:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,826
cpp
#include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <stack> #include <algorithm> #include <utility> #include <numeric> #include <sstream> #include <iostream> #include <iomanip> #include <cstdio> #include <cstring> #include <cmath> #include <cstdlib> #include <ctime> #include <cassert> #include <limits> using namespace std; #ifdef DEBUG #define debug(...) printf(__VA_ARGS__) #define GetTime() fprintf(stderr,"Running time: %.3lf second\n",((double)clock())/CLOCKS_PER_SEC) #else #define debug(...) #define GetTime() #endif //type definitions typedef long long ll; typedef double db; typedef pair<int,int> pii; typedef vector<int> vint; //abbreviations #define A first #define B second #define MP make_pair #define PB push_back //macros #define REP(i,n) for (int i = 0; i < (n); ++i) #define REPD(i,n) for (int i = (n)-1; 0 <= i; --i) #define FOR(i,a,b) for (int i = (a); i <= (b); ++i) #define FORD(i,a,b) for (int i = (a); (b) <= i; --i) #define FORIT(it,c) for (__typeof ((c).begin()) it = (c).begin(); it != (c).end(); it++) #define ALL(a) (a).begin(),(a).end() #define SZ(a) ((int)(a).size()) #define RESET(a,x) memset(a,x,sizeof(a)) #define EXIST(a,s) ((s).find(a) != (s).end()) #define MX(a,b) a = max((a),(b)); #define MN(a,b) a = min((a),(b)); inline void OPEN(const string &s) { freopen((s + ".in").c_str(), "r", stdin); freopen((s + ".out").c_str(), "w", stdout); } /* -------------- end of azaky's template -------------- */ int main(){ db x; cin >> x; FOR(a, 1, 10) FOR(h, 1, 10) { db _a = (db)a / 2.; db _h = (db)h; db hyp = sqrt(_a * _a + _h * _h); db y = _a * _h / hyp; if (fabs(x - y) < 1e-6) { cout << a << " " << h << endl; return 0; } } return 0; }
[ "ahmadzaky003@gmail.com" ]
ahmadzaky003@gmail.com
54fd16728b9a79d526936873920e6b3c6992d590
0813ecdda1a7c00242a3657da8a9a933a7c37a56
/miniFS.Core/src/stream/MFSStreamWriter.cpp
d853a1d3ebf16b178f80d13a6b624882090c61f5
[]
no_license
Lancern/miniFS
ab128b6db008463970e529a94c835ca3de8a0ea6
0e5a59e1dec0357c00d3bfde74bd335ebaacf157
refs/heads/master
2020-03-27T08:54:23.003551
2018-09-16T12:17:12
2018-09-16T12:17:12
146,296,992
1
4
null
null
null
null
UTF-8
C++
false
false
371
cpp
#include "../../include/stream/MFSStreamWriter.h" MFSStreamWriter::MFSStreamWriter(MFSStream * stream) : _stream(stream) { } MFSStream * MFSStreamWriter::GetStream() const { return _stream; } void MFSStreamWriter::Write(const MFSString & string) { _stream->Write(string.GetRawString(), string.GetLength() * sizeof(wchar_t)); this->Write<wchar_t>(0); }
[ "xh19980325@126.com" ]
xh19980325@126.com
d3fbfeed10e274def4d3cef2c5d1b9932b00f2f4
663f25816bac61647fd0ba9e4f55fe4eb6a9b292
/source/code/programs/transcompilers/unilang/unilang_to_code/program_options/program_options.cpp
ca9fdf4304fa8cd3fd992384199c15d6c0a51906
[ "MIT" ]
permissive
luxe/unilang
a318e327cc642fabdcd08f3238aac47e4e65929f
832f4bb1dc078e1f5ab5838b8e0c4bb98ba0e022
refs/heads/main
2023-07-25T06:32:18.993934
2023-07-13T02:22:06
2023-07-13T02:22:06
40,274,795
42
8
MIT
2023-07-19T10:36:56
2015-08-06T00:02:56
Fancy
UTF-8
C++
false
false
3,039
cpp
#include "program_options.hpp" #include <string> #include <iostream> //constructor Program_Options::Program_Options(int const& argc, char** const& argv){ using namespace boost::program_options; //build all the possible flags and add description. options_description desc (Get_Options_Description()); //set positional arguments positional_options_description pod; //build variable map Build_Variable_Map(argc,argv,desc,pod); //process immediate options Process_Immediate_Options(desc); //validate the mandatory flags Check_For_Mandatory_Flags_Not_Passed(); } boost::program_options::options_description Program_Options::Get_Options_Description(void){ using namespace boost::program_options; //Program Description options_description desc("converts unilang file to code json"); //Program Flags desc.add_options() //these are flag descriptions of that can be passed into the class. //the code inserted, are the flags added by the user through the //program_options_maker flag interface ("input_file,i",value<std::string>(),"input file") ("output_file,o",value<std::string>(),"output path") //+----------------------------------------------------------+ //| Obligatory | //+----------------------------------------------------------+ ("help,h","produce this help message") ("version,v","display version") ; return desc; } void Program_Options::Build_Variable_Map(int const& argc, char** const& argv, boost::program_options::options_description const& desc, boost::program_options::positional_options_description const& pod){ using namespace boost::program_options; //store user flag data. crash elegantly if they pass incorrect flags. try{ store(command_line_parser(argc, argv).options(desc).positional(pod).run(), vm); notify(vm); } catch(error& e){ std::cerr << "ERROR: " << e.what() << std::endl; std::cerr << desc << std::endl; exit(EXIT_FAILURE); } return; } void Program_Options::Process_Immediate_Options( boost::program_options::options_description const& desc){ //do not continue the program if the user wanted to see the version or help data if (vm.count("version")){ std::cout << "\nThis is version " << 1 << " of the string tree getter.\n\n"; exit(EXIT_SUCCESS); } else if (vm.count("help")){ std::cout << '\n' << desc << '\n'; exit(EXIT_SUCCESS); } return; } void Program_Options::Check_For_Mandatory_Flags_Not_Passed(){ std::vector<std::string> flags_not_passed; if (!flags_not_passed.empty()){ std::cerr << "you need to pass the following flags still:\n"; for (auto it: flags_not_passed){ std::cerr << '\t' << it << '\n'; } exit(EXIT_FAILURE); } return; } std::string Program_Options::Input_File() const{ std::string data; if (vm.count("input_file")){ data = vm["input_file"].as<std::string>(); } return data; } std::string Program_Options::Output_File() const{ std::string data; if (vm.count("output_file")){ data = vm["output_file"].as<std::string>(); } return data; }
[ "thickey@uber.com" ]
thickey@uber.com
51cb7b98dfd36c601da5d9bb9c40ac0ce1c626d6
6ca8f9a932f25494401c8974b463078745fef963
/Engine/Code/Rectangle.cpp
45e80c90cf9c42bc184ddeed1b97f2bd58fcb430
[]
no_license
jang6556/DungeonDefenders
29cca6047e828d8f2b5c77c0059cfbaace4d53bf
526fe493b89ac4f8e883074f60a05a7b96fa0c43
refs/heads/master
2023-02-01T12:39:34.271291
2020-12-07T16:55:03
2020-12-07T16:55:03
319,384,221
0
0
null
null
null
null
UHC
C++
false
false
8,676
cpp
#include "..\Header\Rectangle.h" CRectangle::CRectangle(LPDIRECT3DDEVICE9 _m_pGraphicDev) :CVIBuffer(_m_pGraphicDev) { } CRectangle::CRectangle(const CRectangle & rhs) :CVIBuffer(rhs) { } HRESULT CRectangle::Initialize() { iVertexSize = 36; iIndexSize = 64; m_pGraphicDev->CreateVertexBuffer(sizeof(VertexNormal) * iVertexSize, D3DUSAGE_WRITEONLY, D3DFVF_XYZ | D3DFVF_NORMAL, D3DPOOL_MANAGED, &VB, 0); m_pGraphicDev->CreateIndexBuffer(sizeof(DWORD) * iIndexSize, D3DUSAGE_WRITEONLY, D3DFMT_INDEX16, D3DPOOL_MANAGED, &IB, 0); VertexNormal* pVertex = nullptr; VB->Lock(0, 0, (void**)&pVertex, 0); //전면 pVertex[0] = VertexNormal(D3DXVECTOR3(-2.f, -3.f, -1.f)); pVertex[1] = VertexNormal(D3DXVECTOR3(-2.f, 3.f, -1.f)); pVertex[2] = VertexNormal(D3DXVECTOR3( 2.f, 3.f, -1.f)); pVertex[0].vNormal = VertexNoramlize(pVertex[0].vPosition, pVertex[1].vPosition, pVertex[2].vPosition); pVertex[1].vNormal = VertexNoramlize(pVertex[0].vPosition, pVertex[1].vPosition, pVertex[2].vPosition); pVertex[2].vNormal = VertexNoramlize(pVertex[0].vPosition, pVertex[1].vPosition, pVertex[2].vPosition); pVertex[3] = VertexNormal(D3DXVECTOR3(-2.f, -3.f, -1.f)); pVertex[4] = VertexNormal(D3DXVECTOR3(2.f, 3.f, -1.f)); pVertex[5] = VertexNormal(D3DXVECTOR3(2.f, -3.f, -1.f)); pVertex[3].vNormal = VertexNoramlize(pVertex[3].vPosition, pVertex[4].vPosition, pVertex[5].vPosition); pVertex[4].vNormal = VertexNoramlize(pVertex[3].vPosition, pVertex[4].vPosition, pVertex[5].vPosition); pVertex[5].vNormal = VertexNoramlize(pVertex[3].vPosition, pVertex[4].vPosition, pVertex[5].vPosition); //후면 pVertex[6] = VertexNormal(D3DXVECTOR3(2.f, -3.f, 1.f)); pVertex[7] = VertexNormal(D3DXVECTOR3(2.f, 3.f, 1.f)); pVertex[8] = VertexNormal(D3DXVECTOR3(-2.f, 3.f, 1.f)); pVertex[6].vNormal = VertexNoramlize(pVertex[6].vPosition, pVertex[7].vPosition, pVertex[8].vPosition); pVertex[7].vNormal = VertexNoramlize(pVertex[6].vPosition, pVertex[7].vPosition, pVertex[8].vPosition); pVertex[8].vNormal = VertexNoramlize(pVertex[6].vPosition, pVertex[7].vPosition, pVertex[8].vPosition); pVertex[9 ] = VertexNormal(D3DXVECTOR3( 2.f, -3.f,1.f)); pVertex[10] = VertexNormal(D3DXVECTOR3(-2.f, 3.f, 1.f)); pVertex[11] = VertexNormal(D3DXVECTOR3(-2.f, -3.f, 1.f)); pVertex[9].vNormal = VertexNoramlize(pVertex[9].vPosition, pVertex[10].vPosition, pVertex[11].vPosition); pVertex[10].vNormal = VertexNoramlize(pVertex[9].vPosition, pVertex[10].vPosition, pVertex[11].vPosition); pVertex[11].vNormal = VertexNoramlize(pVertex[9].vPosition, pVertex[10].vPosition, pVertex[11].vPosition); //우측 pVertex[12] = VertexNormal(D3DXVECTOR3(2.f, -3.f, -1.f)); pVertex[13] = VertexNormal(D3DXVECTOR3(2.f, 3.f, -1.f)); pVertex[14] = VertexNormal(D3DXVECTOR3(2.f, 3.f, 1.f)); pVertex[12].vNormal = VertexNoramlize(pVertex[12].vPosition, pVertex[13].vPosition, pVertex[14].vPosition); pVertex[13].vNormal = VertexNoramlize(pVertex[12].vPosition, pVertex[13].vPosition, pVertex[14].vPosition); pVertex[14].vNormal = VertexNoramlize(pVertex[12].vPosition, pVertex[13].vPosition, pVertex[14].vPosition); pVertex[15] = VertexNormal(D3DXVECTOR3(2.f, -3.f, -1.f)); pVertex[16] = VertexNormal(D3DXVECTOR3(2.f, 3.f, 1.f)); pVertex[17] = VertexNormal(D3DXVECTOR3(2.f, -3.f, 1.f)); pVertex[15].vNormal = VertexNoramlize(pVertex[15].vPosition, pVertex[16].vPosition, pVertex[17].vPosition); pVertex[16].vNormal = VertexNoramlize(pVertex[15].vPosition, pVertex[16].vPosition, pVertex[17].vPosition); pVertex[17].vNormal = VertexNoramlize(pVertex[15].vPosition, pVertex[16].vPosition, pVertex[17].vPosition); //좌측 pVertex[18] = VertexNormal(D3DXVECTOR3(-2.f, -3.f, 1.f)); pVertex[19] = VertexNormal(D3DXVECTOR3(-2.f, 3.f, 1.f)); pVertex[20] = VertexNormal(D3DXVECTOR3(-2.f, 3.f, -1.f)); pVertex[18].vNormal = VertexNoramlize(pVertex[18].vPosition, pVertex[19].vPosition, pVertex[20].vPosition); pVertex[19].vNormal = VertexNoramlize(pVertex[18].vPosition, pVertex[19].vPosition, pVertex[20].vPosition); pVertex[20].vNormal = VertexNoramlize(pVertex[18].vPosition, pVertex[19].vPosition, pVertex[20].vPosition); pVertex[21] = VertexNormal(D3DXVECTOR3(-2.f, -3.f, 1.f)); pVertex[22] = VertexNormal(D3DXVECTOR3(-2.f, 3.f, -1.f)); pVertex[23] = VertexNormal(D3DXVECTOR3(-2.f, -3.f, -1.f)); pVertex[21].vNormal = VertexNoramlize(pVertex[21].vPosition, pVertex[22].vPosition, pVertex[23].vPosition); pVertex[22].vNormal = VertexNoramlize(pVertex[21].vPosition, pVertex[22].vPosition, pVertex[23].vPosition); pVertex[23].vNormal = VertexNoramlize(pVertex[21].vPosition, pVertex[22].vPosition, pVertex[23].vPosition); //위 pVertex[24] = VertexNormal(D3DXVECTOR3(-2.f, 3.f, -1.f)); pVertex[25] = VertexNormal(D3DXVECTOR3(-2.f, 3.f, 1.f)); pVertex[26] = VertexNormal(D3DXVECTOR3(2.f, 3.f, 1.f)); pVertex[24].vNormal = VertexNoramlize(pVertex[24].vPosition, pVertex[25].vPosition, pVertex[26].vPosition); pVertex[25].vNormal = VertexNoramlize(pVertex[24].vPosition, pVertex[25].vPosition, pVertex[26].vPosition); pVertex[26].vNormal = VertexNoramlize(pVertex[24].vPosition, pVertex[25].vPosition, pVertex[26].vPosition); pVertex[27] = VertexNormal(D3DXVECTOR3(-2.f, 3.f, -1.f)); pVertex[28] = VertexNormal(D3DXVECTOR3( 2.f, 3.f, 1.f)); pVertex[29] = VertexNormal(D3DXVECTOR3( 2.f, 3.f, -1.f)); pVertex[27].vNormal = VertexNoramlize(pVertex[27].vPosition, pVertex[28].vPosition, pVertex[29].vPosition); pVertex[28].vNormal = VertexNoramlize(pVertex[27].vPosition, pVertex[28].vPosition, pVertex[29].vPosition); pVertex[29].vNormal = VertexNoramlize(pVertex[27].vPosition, pVertex[28].vPosition, pVertex[29].vPosition); //아래 pVertex[30] = VertexNormal(D3DXVECTOR3(-2.f, -3.f, 1.f)); pVertex[31] = VertexNormal(D3DXVECTOR3(-2.f, -3.f, -1.f)); pVertex[32] = VertexNormal(D3DXVECTOR3( 2.f, -3.f, -1.f)); pVertex[30].vNormal = VertexNoramlize(pVertex[30].vPosition, pVertex[31].vPosition, pVertex[32].vPosition); pVertex[31].vNormal = VertexNoramlize(pVertex[30].vPosition, pVertex[31].vPosition, pVertex[32].vPosition); pVertex[32].vNormal = VertexNoramlize(pVertex[30].vPosition, pVertex[31].vPosition, pVertex[32].vPosition); pVertex[33] = VertexNormal(D3DXVECTOR3(-2.f, -3.f, 1.f)); pVertex[34] = VertexNormal(D3DXVECTOR3(2.f, -3.f, -1.f)); pVertex[35] = VertexNormal(D3DXVECTOR3(2.f, -3.f, 1.f)); pVertex[33].vNormal = VertexNoramlize(pVertex[33].vPosition, pVertex[34].vPosition, pVertex[35].vPosition); pVertex[34].vNormal = VertexNoramlize(pVertex[33].vPosition, pVertex[34].vPosition, pVertex[35].vPosition); pVertex[35].vNormal = VertexNoramlize(pVertex[33].vPosition, pVertex[34].vPosition, pVertex[35].vPosition); VB->Unlock(); WORD* Indices = nullptr; IB->Lock(0, 0, (void**)&Indices, 0); Indices[0] = 0; Indices[1] = 1; Indices[2] = 2; Indices[3] = 3; Indices[4] = 4; Indices[5] = 5; Indices[6] = 6; Indices[7] = 7; Indices[8] = 8; Indices[9] = 9; Indices[10] = 10; Indices[11] = 11; Indices[12] = 12; Indices[13] = 13; Indices[14] = 14; Indices[15] = 15; Indices[16] = 16; Indices[17] = 17; Indices[18] = 18; Indices[19] = 19; Indices[20] = 20; Indices[21] = 21; Indices[22] = 22; Indices[23] = 23; Indices[24] = 24; Indices[25] = 25; Indices[26] = 26; Indices[27] = 27; Indices[28] = 28; Indices[29] = 29; Indices[30] = 30; Indices[31] = 31; Indices[32] = 32; Indices[33] = 33; Indices[34] = 34; Indices[35] = 35; IB->Unlock(); m_Material.Ambient = D3DXCOLOR(1.f, 0.f, 0.f, 1.f); m_Material.Specular = D3DXCOLOR(1.f, 0.f, 0.f, 1.f); m_Material.Diffuse = D3DXCOLOR(1.f, 0.f, 0.f, 1.f); m_Material.Emissive = D3DXCOLOR(0.f, 0.f, 0.f, 0.f); m_Material.Power = 5.f; return NOERROR; } _int CRectangle::Progress(const _float & fTimeDelta) { return _int(); } _int CRectangle::LateProgress(const _float & fTimeDelta) { return _int(); } HRESULT CRectangle::Render(CTransform* pTransform) { D3DMATERIAL9 pOut; m_pGraphicDev->GetMaterial(&pOut); m_pGraphicDev->SetMaterial(&m_Material); m_pGraphicDev->SetStreamSource(0, VB, 0, sizeof(VertexNormal)); m_pGraphicDev->SetIndices(IB); m_pGraphicDev->SetFVF(D3DFVF_XYZ | D3DFVF_NORMAL); m_pGraphicDev->DrawIndexedPrimitive(D3DPT_TRIANGLELIST, 0, 0, iVertexSize, 0, 12); //m_pGraphicDev->SetMaterial(&pOut); return NOERROR; } CRectangle * CRectangle::Create(LPDIRECT3DDEVICE9 _m_pGraphicDev) { CRectangle* pInstance = new CRectangle(_m_pGraphicDev); if (FAILED(pInstance->Initialize())) { _MSGBOX("CRectangle Created Failed"); Safe_Release(pInstance); } return pInstance; } CComponent * CRectangle::Clone() { return new CRectangle(*this); } void CRectangle::Free() { CVIBuffer::Free(); }
[ "jang6556@gitbub.com" ]
jang6556@gitbub.com
8d43b6bf45d6c401fcdb6c2d78cd08a5e4356242
dc927839f4697c048fb5607dc75a0d6d8870c917
/hyphy/trunk/GUIElements/Platform Source/MacOS/WindowClasses/.svn/text-base/HYPlatformDataPanel.cpp.svn-base
1f65f5965be223c3ca6369de7323f596b7e0a4a7
[]
no_license
ReiiSky/OCLHYPHY
1a7637aa456c2427ee013a0c7c9cf9f7919c704e
fc69561b36573795796f8a8790e9bff5fac4a766
refs/heads/master
2023-01-11T01:19:24.270971
2011-09-20T21:33:05
2011-09-20T21:33:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
31,447
/* Mac OS Portions of the data panel class Sergei L. Kosakovsky Pond, Spring 2000 - December 2002. */ #include "HYTreePanel.h" #include "HYDataPanel.h" #include "HYUtils.h" #include "likefunc.h" //__________________________________________________________________ bool _HYDataPanel::_ProcessMenuSelection (long msel) { if (_HYWindow::_ProcessMenuSelection(msel)) return true; long menuChoice = msel&0x0000ffff; MenuHandle treeMenu; _HYSequencePane* sp = (_HYSequencePane*)GetObject (0); _HYSequencePane* sp2 =(_HYSequencePane*)GetObject (4); _String prompt; bool done = false; switch (msel/0xffff) { case 129: // file menu { if (menuChoice==4) // save { SaveDataPanel (savePath.sLength); done = true; } else if (menuChoice==8) // print { _PrintData(); done = true; } HiliteMenu(0); if (done) return true; break; } case 130: // edit { HiliteMenu(0); if (menuChoice==4) // copy { _CopySelectionToClipboard (); } else if (menuChoice==6) // delete selection { //DeleteCurrentSelection(); return true; } else if (menuChoice==3) // cut selection { //CutSelectionToClipboard (); return true; } else if (menuChoice==5) // paste selection { //PasteClipboardTree(); return true; } else if (menuChoice==8) // select all { sp->SelectAll(true); return true; } else if (menuChoice==11) // Find { FindFunction(); return true; } else if (menuChoice==12) // Find { HandleSearchAndReplace(); return true; } return false; } case HY_DATAPANEL_MENU_ID: { switch (menuChoice) { case 1: SelectPartition(); break; case 2: if (sp->selection.lLength) CreatePartition (sp->selection,1,true); break; case 3: InvertSelection(); break; case 11: PartitionPropsMenu (); break; case 12: InputPartitionString (); break; case 15: SimulateDataSet (0,true); break; case 17: HandleFontChange (); break; } HiliteMenu(0); return true; } case HY_DATAPANEL_MENU_ID+1: { switch (menuChoice) { case 1: BuildLikelihoodFunction(); break; case 3: OptimizeLikelihoodFunction(); break; case 5: DisplayParameterTable (); break; case 7: OpenGeneralBSWindow (); break; } HiliteMenu(0); return true; } case HY_DATAPANEL_HMENU_ID: { treeMenu = GetMenuHandle (HY_DATAPANEL_HMENU_ID); long newBlockSize; if (menuChoice==1) newBlockSize = 9; else newBlockSize = 10; if (sp->blockWidth!=newBlockSize) { sp->blockWidth = newBlockSize; sp2->blockWidth = newBlockSize; sp->BuildPane(); sp->_MarkForUpdate(); sp2->BuildPane(); sp2->_MarkForUpdate(); SetItemMark(treeMenu,menuChoice==1?2:1,noMark); SetItemMark(treeMenu,menuChoice,checkMark); InvalMenuBar(); } HiliteMenu(0); return true; } case HY_DATAPANEL_HMENU_ID+1: { treeMenu = GetMenuHandle (HY_DATAPANEL_HMENU_ID+1); bool newDisplay; if (menuChoice==1) newDisplay = false; else newDisplay = true; if (sp->showDots!=newDisplay) { sp->showDots = newDisplay; sp->BuildPane(); sp->_MarkForUpdate(); SetItemMark(treeMenu,menuChoice==1?2:1,noMark); SetItemMark(treeMenu,menuChoice,checkMark); InvalMenuBar(); } HiliteMenu(0); return true; } case HY_DATAPANEL_HMENU_ID+2: { treeMenu = GetMenuHandle (HY_DATAPANEL_HMENU_ID+2); if (menuChoice<=3) { unsigned char newDisplay; switch (menuChoice) { case 1: newDisplay = HY_SEQUENCE_PANE_NAMES_NONE; break; case 2: newDisplay = HY_SEQUENCE_PANE_NAMES_SHORT; break; case 3: newDisplay = HY_SEQUENCE_PANE_NAMES_ALL; } if ((sp->nameDisplayFlags&HY_SEQUENCE_PANE_NAMES_MASK)!=newDisplay) { SetItemMark(treeMenu,(sp->nameDisplayFlags&HY_SEQUENCE_PANE_NAMES_MASK)+1,noMark); sp->SetNameDisplayMode(newDisplay,true); sp2->SetNameDisplayMode(newDisplay,true); BuildThermometer(); BuildMarksPane(); SetItemMark(treeMenu,menuChoice,checkMark); InvalMenuBar(); } } else { if (menuChoice==5) // alphabetize sp->AlphabetizeSpecies(); else if (menuChoice==6) sp->RevertFileOrder(); else if (menuChoice==7) sp->CleanUpSequenceNames(); } HiliteMenu(0); return true; } case HY_DATAPANEL_HMENU_ID+3: // omitted sequences { RestoreOmittedSequence(menuChoice-3); HiliteMenu(0); return true; } case HY_DATAPANEL_HMENU_ID+4: // status lines { if (AdjustStatusLine (menuChoice-1)) CheckMenuItem(GetMenuHandle (HY_DATAPANEL_HMENU_ID+4),menuChoice,true); else CheckMenuItem(GetMenuHandle (HY_DATAPANEL_HMENU_ID+4),menuChoice,false); HiliteMenu(0); return true; } case HY_DATAPANEL_HMENU_ID+5: // likelihood display { ComputeLikelihoodFunction (menuChoice-1); HiliteMenu(0); return true; } case HY_DATAPANEL_HMENU_ID+6: // simulate data set { SimulateDataSet (menuChoice-1); HiliteMenu(0); return true; } case HY_DATAPANEL_HMENU_ID+7: // save/save as { SaveDataPanel (menuChoice==2); HiliteMenu(0); return true; } case HY_DATAPANEL_HMENU_ID+8: // infer { InferTopologies (menuChoice==2); _VerifyInferMenu (); HiliteMenu(0); return true; } case HY_DATAPANEL_HMENU_ID+9: // dataProcs { ExecuteProcessor (menuChoice-1); return true; } HiliteMenu(0); InvalMenuBar(); } return false; } //__________________________________________________________________ void _HYDataPanel::_PaintThermRect(bool update) { navRect = ComputeNavRect(); _HYCanvas* theCanvas = (_HYCanvas*)GetObject (1); GrafPtr savedPort; GetPort(&savedPort); #ifdef OPAQUE_TOOLBOX_STRUCTS SetPort(GetWindowPort(theWindow)); #else SetPort(theWindow); #endif Rect r; r.left = navRect.left+theCanvas->rel.left+thermRect.left+1; r.right = navRect.right+theCanvas->rel.left+thermRect.left-1; r.top = navRect.top+theCanvas->rel.top+thermRect.top+1; r.bottom = navRect.bottom+theCanvas->rel.top+thermRect.top-1; RGBColor saveColor, newColor = {255*256,151*256,51*256}; PenState ps; GetPenState (&ps); GetForeColor (&saveColor); RGBForeColor (&newColor); PenSize (2,2); FrameRect (&r); RGBForeColor (&saveColor); if (update) { RgnHandle oldClip, newClip; oldClip = NewRgn(); newClip = NewRgn(); RectRgn (oldClip,&r); InsetRect (&r,2,2); RectRgn (newClip,&r); DiffRgn (oldClip,newClip,newClip); GetClip (oldClip); DiffRgn (oldClip,newClip,newClip); SetClip (newClip); _HYRect rect; rect.left = componentL.lData[1]; rect.right = componentR.lData[1]; rect.top = componentT.lData[1]; rect.bottom = componentB.lData[1]; theCanvas->_Paint((char*)&rect); SetClip (oldClip); DisposeRgn (oldClip); DisposeRgn (newClip); } SetPenState (&ps); _PaintLFStatus (); SetPort(savedPort); } //__________________________________________________________________ void _HYDataPanel::_PaintLFStatus(void) { GrafPtr savedPort; GetPort(&savedPort); #ifdef OPAQUE_TOOLBOX_STRUCTS SetPort(GetWindowPort(theWindow)); #else SetPort(theWindow); #endif if (lfID<0) { _SimpleList goodP; bool paintOrange = GenerateGoodPartitions (goodP); if (goodP.lLength) _PaintTheCircle (paintOrange?orangeButtonIcon:yellowButtonIcon,theWindow); else _PaintTheCircle (redButtonIcon,theWindow); } else _PaintTheCircle (greenButtonIcon,theWindow); SetPort(savedPort); } //__________________________________________________________________ void _HYDataPanel::_PrintData(void) { _HYSequencePane* sp = (_HYSequencePane*)GetObject (0); GrafPtr savePort; #ifdef TARGET_API_MAC_CARBON PMRect prRect; #else TPrStatus prStatus; TPPrPort printPort; OSErr err; #endif #ifdef TARGET_API_MAC_CARBON OSStatus theStatus; Boolean isAccepted; PMPrintSession hyPC; theStatus = PMCreateSession(&hyPC); if (theStatus != noErr) return; #endif if (!InitPrint(hyPC)) { _String errMsg ("Could not initialize printing variables."); WarnError (errMsg); terminateExecution = false; return; } GetPort(&savePort); #ifdef TARGET_API_MAC_CARBON if (gPrintSettings != kPMNoPrintSettings) theStatus = PMSessionValidatePrintSettings(hyPC,gPrintSettings, kPMDontWantBoolean); else { theStatus = PMCreatePrintSettings(&gPrintSettings); if ((theStatus == noErr) && (gPrintSettings != kPMNoPrintSettings)) theStatus = PMSessionDefaultPrintSettings(hyPC,gPrintSettings); } if (theStatus == noErr) { theStatus = PMSessionPrintDialog(hyPC,gPrintSettings, gPageFormat, &isAccepted); if (isAccepted) { theStatus = PMGetAdjustedPageRect(gPageFormat, &prRect); if (theStatus != noErr) return; theStatus = PMSessionBeginDocument(hyPC,gPrintSettings, gPageFormat); if (theStatus != noErr) return; long printW = prRect.right-prRect.left-2, printH = prRect.bottom-prRect.top-2; UInt32 startPage, endPage; PMGetFirstPage (gPrintSettings,&startPage); PMGetLastPage (gPrintSettings,&endPage); #else PrOpen(); if (err=PrError()) { _String errMsg ("Could not print the data set. Error Code:"); errMsg = errMsg & (long)err; WarnError (errMsg); terminateExecution = false; return; } if (PrJobDialog(prRecHdl)) { printPort = PrOpenDoc(prRecHdl, nil, nil); SetPort((GrafPtr)printPort); long printW = (*prRecHdl)->prInfo.rPage.right-2, printH = (*prRecHdl)->prInfo.rPage.bottom-2, startPage = (*prRecHdl)->prJob.iFstPage, endPage = (*prRecHdl)->prJob.iLstPage; #endif long vOffset = sp->GetSlotHeight()*sp->speciesIndex.lLength+sp->GetSlotHeight()*3/2+1+20*(dataPartitions.lLength>0), cOffset = (printW-sp->headerWidth)/sp->charWidth, pageShift = printH/vOffset, sC = sp->startColumn, lC = sp->endColumn, sR = sp->startRow, lR = sp->endRow, sH = sp->settings.bottom, pageCount; _HYColor c1 = sp->backColor, c2 = sp->headerColor, bc = {0,0,0}; sp->backColor = (_HYColor){255,255,255}; sp->headerColor = (_HYColor){255,255,255}; cOffset -= ((cOffset/sp->blockWidth)*2)/sp->charWidth; cOffset = (cOffset/sp->blockWidth)*sp->blockWidth; pageShift *= cOffset; if (sp->columnStrings.lLength%pageShift==0) pageShift = sp->columnStrings.lLength / pageShift; else pageShift = sp->columnStrings.lLength / pageShift + 1; if (endPage > pageShift) endPage = pageShift; sp->startColumn = 0; sp->endColumn = cOffset; sp->startRow = 0; sp->endRow = sp->speciesIndex.lLength; sp->settings.bottom = vOffset+5+HY_SCROLLER_WIDTH; for (pageCount = 1; pageCount<startPage; pageCount++) { #ifdef TARGET_API_MAC_CARBON theStatus = PMSessionBeginPage(hyPC,gPageFormat,NULL); if (theStatus != noErr) break; theStatus = PMSessionEndPage(hyPC); if (theStatus != noErr) break; #else PrOpenPage (printPort, nil); PrClosePage (printPort); #endif sp->endColumn += printH/vOffset * cOffset; sp->startColumn += printH/vOffset * cOffset; } Rect hangover = {0, sp->headerWidth + cOffset * sp->charWidth + (cOffset * 2)/sp->blockWidth + 1, vOffset, printW}, frame = {0,0,vOffset+1,hangover.left}; if (sp->startColumn< sp->columnStrings.lLength) for (pageCount = startPage; pageCount<=endPage; pageCount++) { pageShift = vOffset; #ifdef TARGET_API_MAC_CARBON theStatus = PMSessionBeginPage(hyPC,gPageFormat, NULL); if (theStatus != noErr) break; GrafPtr ppPort; PMSessionGetGraphicsContext (hyPC, NULL, (void**)&ppPort); SetPort (ppPort); #else PrOpenPage (printPort, nil); #endif SetOrigin (0,0); sp->_HYGraphicPane::SetFont (sp->GetFont()); sp->SetColor (sp->GetColor()); while (pageShift < printH) { sp->BuildPane (false); sp->SetColor (bc); PenSize (1,1); //EraseRect (&hangover); if (dataPartitions.lLength) { _HYRect daFrame; daFrame.top = frame.bottom; daFrame.bottom = frame.bottom + 20; daFrame.left = frame.left + HY_SEQUENCE_PANE_CHAR_SPACING/2 + sp->headerWidth; daFrame.right = daFrame.left + cOffset*sp->charWidth + 2*(cOffset/sp->blockWidth) - HY_SCROLLER_WIDTH; BuildThermometer (&daFrame); } //FrameRect (&frame); sp->startColumn = sp->endColumn; sp->endColumn += cOffset; SetOrigin (0,-pageShift); pageShift += vOffset; if (sp->startColumn>=sp->columnStrings.lLength) break; } #ifdef TARGET_API_MAC_CARBON theStatus = PMSessionEndPage(hyPC); if (theStatus != noErr) break; #else PrClosePage (printPort); #endif } sp->startColumn = sC; sp->endColumn = lC; sp->startRow = sR; sp->endRow = lR; sp->backColor = c1; sp->headerColor = c2; sp->settings.bottom = sH; #ifdef TARGET_API_MAC_CARBON theStatus = PMSessionEndDocument(hyPC); SetPort(savePort); if (theStatus == noErr) { if (gFlattenedFormat != NULL) { DisposeHandle(gFlattenedFormat); gFlattenedFormat = NULL; } theStatus = PMFlattenPageFormat(gPageFormat, &gFlattenedFormat); } if (theStatus == noErr) { if (gFlattenedSettings != NULL) { DisposeHandle(gFlattenedSettings); gFlattenedSettings = NULL; } theStatus = PMFlattenPrintSettings(gPrintSettings, &gFlattenedSettings); } if (gPageFormat != kPMNoPageFormat) { theStatus = PMRelease(gPageFormat); gPageFormat = kPMNoPageFormat; } if (gPrintSettings != kPMNoPrintSettings) { theStatus = PMRelease(gPrintSettings); gPrintSettings = kPMNoPrintSettings; } theStatus = PMRelease(hyPC); #else PrCloseDoc(printPort); if (((*prRecHdl)->prJob.bJDocLoop = bSpoolLoop) && (!PrError() ) ) PrPicFile(prRecHdl, nil, nil, nil, &prStatus); #endif } #ifdef TARGET_API_MAC_CARBON else theStatus = PMRelease(hyPC); #endif #ifdef TARGET_API_MAC_CARBON } #else PrClose(); SetPort(savePort); #endif } //__________________________________________________________________ void _HYDataPanel::_VerifyInferMenu(void) { MenuHandle lfMenu = GetMenuHandle (HY_DATAPANEL_MENU_ID+1), inferSubMenu = GetMenuHandle (HY_DATAPANEL_HMENU_ID+8); _SimpleList gp; if (GenerateGoodPartitions(gp)) { if (!inferSubMenu) { inferSubMenu = NewMenu(HY_DATAPANEL_HMENU_ID+8,"\p"); InsertMenu (inferSubMenu,hierMenu); SetItemCmd (lfMenu,1,hMenuCmd); SetItemMark(lfMenu,1,HY_DATAPANEL_HMENU_ID+8); InsertMenuItem (inferSubMenu,"\pInfer Topology/L",10000); InsertMenuItem (inferSubMenu,"\pInfer Topology with Constraints",10000); SetMenuItemText (lfMenu,1,"\pInference..."); } } else { if (inferSubMenu) { SetItemMark (lfMenu,1,noMark); DeleteMenu (HY_DATAPANEL_HMENU_ID+8); DisposeMenu (inferSubMenu); SetMenuItemText (lfMenu,1,"\pBuild Function"); SetItemCmd (lfMenu,1,'L'); } } } //__________________________________________________________________ void _HYDataPanel::_SetMenuBar(void) { //BufferToConsole ("_HYDataPanel::_SetMenuBar\n"); _HYWindow::_SetMenuBar(); MenuHandle t = GetMenuHandle (130), dM = GetMenuHandle (HY_DATAPANEL_MENU_ID); _HYWindow::_SetMenuBar(); EnableMenuItem (t,4); EnableMenuItem (t,8); if (!dM) { MenuHandle dataMenu = NewMenu(HY_DATAPANEL_MENU_ID,"\pData"), lfMenu = NewMenu (HY_DATAPANEL_MENU_ID+1,"\pLikelihood"), blockMenu = NewMenu(HY_DATAPANEL_HMENU_ID,"\p"), repeatCharMenu = NewMenu(HY_DATAPANEL_HMENU_ID+1,"\p"), nameDisplayMenu = NewMenu(HY_DATAPANEL_HMENU_ID+2,"\p"), omittedSpecies = NewMenu(HY_DATAPANEL_HMENU_ID+3,"\p"), additionalInfo = NewMenu(HY_DATAPANEL_HMENU_ID+4,"\p"), lfDisplayMode = NewMenu(HY_DATAPANEL_HMENU_ID+5,"\p"), simulateData = NewMenu(HY_DATAPANEL_HMENU_ID+6,"\p"), saveSubMenu = NewMenu(HY_DATAPANEL_HMENU_ID+7,"\p"), dataProcMenu = NewMenu(HY_DATAPANEL_HMENU_ID+9,"\p"); if (!(dataMenu&&blockMenu&&repeatCharMenu&&nameDisplayMenu&&omittedSpecies&&additionalInfo)) warnError (-108); InsertMenuItem (dataMenu,"\p(Partition->Selection/1",10000); // 1 InsertMenuItem (dataMenu,"\p(Selection->Partition/2",10000); // 2 InsertMenuItem (dataMenu,"\pInvert Selection/3",10000); // 3 InsertMenuItem (dataMenu,"\p(-",10000); // 4 InsertMenuItem (dataMenu,"\pBlock Width",10000); // 5 InsertMenuItem (dataMenu,"\pRepeating Characters",10000); // 6 InsertMenuItem (dataMenu,"\pName Display",10000); // 7 InsertMenuItem (dataMenu,"\pOmitted Sequences",10000); // 8 InsertMenuItem (dataMenu,"\pAdditional Info",10000); // 9 InsertMenuItem (dataMenu,"\p(-",10000); // 10 InsertMenuItem (dataMenu,"\p(Paritition Properties",10000); // 11 InsertMenuItem (dataMenu,"\pInput Partition",10000); // 12 InsertMenuItem (dataMenu,"\p(-",10000); // 13 InsertMenuItem (dataMenu,"\p(Simulation",10000); // 14 InsertMenuItem (dataMenu,"\p(Ancestors",10000); // 15 InsertMenuItem (dataMenu,"\p(-",10000); // 16 InsertMenuItem (dataMenu,"\pFont Options",10000); // 17 InsertMenuItem (dataMenu,"\p(-",10000); // 18 InsertMenuItem (dataMenu,"\pData Processing",10000); // 19 InsertMenuItem (blockMenu,"\p9",10000); InsertMenuItem (blockMenu,"\p10",10000); InsertMenuItem (lfMenu,"\pBuild Function/L",10000); InsertMenuItem (lfMenu,"\p(Display",10000); InsertMenuItem (lfMenu,"\p(Optimize/T",10000); InsertMenuItem (lfMenu,"\p(-",10000); InsertMenuItem (lfMenu,"\p(Show Parameters/H",10000); InsertMenuItem (lfMenu,"\p(-",10000); InsertMenuItem (lfMenu,"\p(General Bootstrap/B",10000); InsertMenuItem (lfMenu,"\p(-",10000); InsertMenuItem (lfDisplayMode,"\pLog-Lkhd Only",10000); InsertMenuItem (lfDisplayMode,"\pLog-Lkhd & Parameter Values",10000); InsertMenuItem (lfDisplayMode,"\pLog-Lkhd & Concise Trees",10000); InsertMenuItem (lfDisplayMode,"\pParameter Listing",10000); InsertMenuItem (lfDisplayMode,"\pLog-Lkhd & Complete Trees",10000); InsertMenuItem (simulateData,"\pSimulate 1",10000); InsertMenuItem (simulateData,"\pSimulate 1 To File",10000); InsertMenuItem (simulateData,"\pSimulate Many",10000); //SetItemMark (blockMenu,2,checkMark); InsertMenuItem (repeatCharMenu,"\pDisplay Actual Character",10000); InsertMenuItem (repeatCharMenu,"\pDisplay '.'",10000); //SetItemMark (repeatCharMenu,1,checkMark); InsertMenuItem (nameDisplayMenu,"\pNone",10000); InsertMenuItem (nameDisplayMenu,"\pFirst 10 characters",10000); _HYSequencePane *sp = (_HYSequencePane*)GetCellObject(2,0); if (sp->shortHeaderWidth==sp->fullHeaderWidth) DisableMenuItem (nameDisplayMenu,2); InsertMenuItem (nameDisplayMenu,"\pFull Names",10000); InsertMenuItem (nameDisplayMenu,"\p(-",10000); InsertMenuItem (nameDisplayMenu,"\pAlphabetize names",10000); InsertMenuItem (nameDisplayMenu,"\pRevert to file order",10000); InsertMenuItem (nameDisplayMenu,"\pClean up sequence names",10000); //SetItemMark (nameDisplayMenu,3,checkMark); InsertMenuItem (omittedSpecies,"\pRestore All",10000); InsertMenuItem (omittedSpecies,"\p(-",10000); InsertMenuItem (additionalInfo,"\pConsensus Sequence",10000); InsertMenuItem (additionalInfo,"\p(Rate Class",10000); InsertMenuItem (additionalInfo,"\p(Aminoacid Translation",10000); InsertMenuItem (additionalInfo,"\pReference Sequence",10000); InsertMenuItem (saveSubMenu,"\pSave.../S",10000); InsertMenuItem (saveSubMenu,"\pSave As...",10000); InsertMenu (dataMenu,132); InsertMenu (lfMenu,132); InsertMenu (blockMenu,hierMenu); InsertMenu (repeatCharMenu,hierMenu); InsertMenu (nameDisplayMenu,hierMenu); InsertMenu (omittedSpecies,hierMenu); InsertMenu (additionalInfo,hierMenu); InsertMenu (lfDisplayMode,hierMenu); InsertMenu (simulateData,hierMenu); InsertMenu (saveSubMenu,hierMenu); InsertMenu (dataProcMenu,hierMenu); SetItemCmd (lfMenu,2,hMenuCmd); SetItemMark(lfMenu,2,HY_DATAPANEL_HMENU_ID+5); SetItemCmd (dataMenu,5,hMenuCmd); SetItemMark(dataMenu,5,HY_DATAPANEL_HMENU_ID); SetItemCmd (dataMenu,6,hMenuCmd); SetItemMark(dataMenu,6,HY_DATAPANEL_HMENU_ID+1); SetItemCmd (dataMenu,7,hMenuCmd); SetItemMark(dataMenu,7,HY_DATAPANEL_HMENU_ID+2); SetItemCmd (dataMenu,8,hMenuCmd); SetItemMark(dataMenu,8,HY_DATAPANEL_HMENU_ID+3); SetItemCmd (dataMenu,9,hMenuCmd); SetItemMark(dataMenu,9,HY_DATAPANEL_HMENU_ID+4); SetItemCmd (dataMenu,14,hMenuCmd); SetItemMark(dataMenu,14,HY_DATAPANEL_HMENU_ID+6); SetItemCmd (dataMenu,19,hMenuCmd); SetItemMark(dataMenu,19,HY_DATAPANEL_HMENU_ID+9); if (omittedSeqs.lLength==0) DisableMenuItem (dataMenu,8); else _OmitSelectedSpecies(omittedSeqs); if (dataPanelProcessors.lLength == 0) DisableMenuItem (dataMenu,19); else { Str255 buffer; for (long k=0; k<dataPanelProcessors.lLength; k++) { _String *thisItem = (_String*)dataPanelProcessors (k), chopped = thisItem->Cut (thisItem->FindBackwards (':',0,-1)+1,-1); StringToStr255 (chopped,buffer); InsertMenuItem (dataProcMenu, buffer,10000); } } CheckMenuItem (additionalInfo,1,addedLines&HY_DATAPANEL_CONSENSUS); CheckMenuItem (additionalInfo,2,addedLines&HY_DATAPANEL_RATECLASS); CheckMenuItem (additionalInfo,3,addedLines&HY_DATAPANEL_TRANSLATION); CheckMenuItem (additionalInfo,4,addedLines&HY_DATAPANEL_REFERENCE); CheckMenuItem (blockMenu,(sp->blockWidth==10)?2:1,true); if (sp->nameDisplayFlags&HY_SEQUENCE_PANE_NAMES_ALL) CheckMenuItem (nameDisplayMenu,3,true); else if (sp->nameDisplayFlags&HY_SEQUENCE_PANE_NAMES_SHORT) CheckMenuItem (nameDisplayMenu,2,true); else CheckMenuItem (nameDisplayMenu,1,true); if (sp->showDots) CheckMenuItem (repeatCharMenu,2,true); else CheckMenuItem (repeatCharMenu,1,true); if (dataType&HY_DATAPANEL_NUCDATA) EnableMenuItem (additionalInfo,3); _UpdateLFMenu(); if (aquaInterfaceOn) { InsertMenuItem (t,"\p(-", 9); InsertMenuItem (t,"\pFind.../F", 10); InsertMenuItem (t,"\pSearch and Replace...", 11); } else { InsertMenuItem (t,"\pFind.../F", 10); InsertMenuItem (t,"\pSearch and Replace...", 11); InsertMenuItem (t,"\p(-", 12); } } t = GetMenuHandle (129); SetItemCmd (t,4,hMenuCmd); SetItemMark(t,4,HY_DATAPANEL_HMENU_ID+7); _VerifyInferMenu (); InvalMenuBar(); } //__________________________________________________________________ void _HYDataPanel::_UpdateLFMenu (void) { MenuHandle lfMenu = GetMenuHandle (HY_DATAPANEL_MENU_ID+1), dataMenu = GetMenuHandle (HY_DATAPANEL_MENU_ID), addMenu= GetMenuHandle (HY_DATAPANEL_HMENU_ID+4); if (lfMenu && dataMenu && addMenu) { if (lfID>=0) { EnableMenuItem (lfMenu,2); EnableMenuItem (lfMenu,3); EnableMenuItem (lfMenu,5); EnableMenuItem (lfMenu,7); EnableMenuItem (dataMenu,14); EnableMenuItem (dataMenu,15); if (((_LikelihoodFunction*)likeFuncList (lfID))->GetCategoryVars().lLength) { EnableMenuItem (addMenu,2); return; } } else { DisableMenuItem (lfMenu,3); DisableMenuItem (lfMenu,2); DisableMenuItem (lfMenu,5); DisableMenuItem (lfMenu,7); DisableMenuItem (dataMenu,14); DisableMenuItem (dataMenu,15); } DisableMenuItem (addMenu,2); } } //__________________________________________________________________ void _HYDataPanel::_UpdateSelectionChoices (bool toggle) { MenuHandle dataMenu = GetMenuHandle (HY_DATAPANEL_MENU_ID); if (toggle) { EnableMenuItem(dataMenu,2); //EnableMenuItem(dataMenu,3); } else { DisableMenuItem(dataMenu,2); //DisableMenuItem(dataMenu,3); } InvalMenuBar(); } //__________________________________________________________________ void _HYDataPanel::_CopySelectionToClipboard (void) { _HYSequencePane* sp = (_HYSequencePane*)GetObject(0); _String cbStr (128L,true); if (sp->selection.lLength) { for (long m=0; m<sp->speciesIndex.lLength; m++) { long idx = sp->speciesIndex.lData[m]; for (long k=0; k<sp->selection.lLength; k++) { cbStr << ((_String*)(sp->columnStrings(sp->selection.lData[k])))->sData[idx]; if (k&&((k+1)%sp->blockWidth==0)) cbStr << ' '; } cbStr << '\r'; } } else if (sp->vselection.lLength) for (long m=0; m<sp->vselection.lLength; m++) { cbStr << (_String*)(sp->rowHeaders(sp->speciesIndex(sp->vselection.lData[m]))); cbStr << '\r'; } cbStr.Finalize(); if (cbStr.sLength) PlaceStringInClipboard (cbStr,nil); } //__________________________________________________________________ void _HYDataPanel::_OmitSelectedSpecies (_SimpleList& idx) { MenuHandle dataMenu = GetMenuHandle (HY_DATAPANEL_MENU_ID), omittedSpecies = GetMenuHandle (HY_DATAPANEL_HMENU_ID+3); if (omittedSpecies) { _HYSequencePane* sp = (_HYSequencePane*)GetObject(0); for (long k=0; k<idx.lLength; k++) { Str255 buffer; _String* thisSpec = (_String*)sp->rowHeaders(idx.lData[k]); StringToStr255 (*thisSpec, buffer); InsertMenuItem (omittedSpecies,buffer,10000); } EnableMenuItem (dataMenu,8); } } //__________________________________________________________________ void _HYDataPanel::_RestoreOmittedSequence (long index) { MenuHandle dataMenu = GetMenuHandle (HY_DATAPANEL_MENU_ID), omittedSpecies = GetMenuHandle (HY_DATAPANEL_HMENU_ID+3); if (index>=0) { DeleteMenuItem (omittedSpecies,index+3); if (CountMenuItems(omittedSpecies)==2) DisableMenuItem (dataMenu,8); } else { for (long k=0; k< omittedSeqs.lLength; k++) DeleteMenuItem (omittedSpecies,3); DisableMenuItem (dataMenu,8); } } //__________________________________________________________________ void _HYDataPanel::_UpdatePartitionOperations (_SimpleList* sl) { MenuHandle dataMenu = GetMenuHandle (HY_DATAPANEL_MENU_ID); if (sl->lData[0]) { EnableMenuItem (dataMenu,1); EnableMenuItem (dataMenu,11); } else { DisableMenuItem(dataMenu,1); DisableMenuItem(dataMenu,11); } InvalMenuBar(); } //__________________________________________________________________ void _HYDataPanel::_UnsetMenuBar(void) { //BufferToConsole ("_HYDataPanel::_UnsetMenuBar\n"); MenuHandle treeMenu = GetMenuHandle (HY_DATAPANEL_MENU_ID), lfMenu = GetMenuHandle (HY_DATAPANEL_MENU_ID+1), blockMenu = GetMenuHandle (HY_DATAPANEL_HMENU_ID), repeatCharMenu = GetMenuHandle (HY_DATAPANEL_HMENU_ID+1), nameDisplayMenu = GetMenuHandle (HY_DATAPANEL_HMENU_ID+2), omittedSequences = GetMenuHandle (HY_DATAPANEL_HMENU_ID+3), additionalInfo = GetMenuHandle (HY_DATAPANEL_HMENU_ID+4), lfDisplayOptions = GetMenuHandle (HY_DATAPANEL_HMENU_ID+5), simulateData = GetMenuHandle (HY_DATAPANEL_HMENU_ID+6), saveSubMenu = GetMenuHandle (HY_DATAPANEL_HMENU_ID+7), inferSubMenu = GetMenuHandle (HY_DATAPANEL_HMENU_ID+8), dataPanelProc = GetMenuHandle (HY_DATAPANEL_HMENU_ID+9), fMenu = GetMenuHandle (129); DeleteMenu (HY_DATAPANEL_MENU_ID); DeleteMenu (HY_DATAPANEL_MENU_ID+1); DeleteMenu (HY_DATAPANEL_HMENU_ID); DeleteMenu (HY_DATAPANEL_HMENU_ID+1); DeleteMenu (HY_DATAPANEL_HMENU_ID+2); DeleteMenu (HY_DATAPANEL_HMENU_ID+3); DeleteMenu (HY_DATAPANEL_HMENU_ID+4); DeleteMenu (HY_DATAPANEL_HMENU_ID+5); DeleteMenu (HY_DATAPANEL_HMENU_ID+6); DeleteMenu (HY_DATAPANEL_HMENU_ID+7); DeleteMenu (HY_DATAPANEL_HMENU_ID+9); DisposeMenu (treeMenu); DisposeMenu (lfMenu); DisposeMenu (blockMenu); DisposeMenu (repeatCharMenu); DisposeMenu (nameDisplayMenu); DisposeMenu (omittedSequences); DisposeMenu (additionalInfo); DisposeMenu (lfDisplayOptions); DisposeMenu (simulateData); DisposeMenu (saveSubMenu); DisposeMenu (dataPanelProc); if (inferSubMenu) { DeleteMenu (HY_DATAPANEL_HMENU_ID+8); DisposeMenu (inferSubMenu); } SetItemCmd (fMenu,4,'S'); SetItemMark(fMenu,4,noMark); fMenu = GetMenuHandle (130); if (!aquaInterfaceOn) DeleteMenuItem (fMenu,13); DeleteMenuItem (fMenu,12); DeleteMenuItem (fMenu,11); if (aquaInterfaceOn) DeleteMenuItem (fMenu,10); _HYWindow::_UnsetMenuBar(); } //__________________________________________________________________ bool _HYDataPanel::_ProcessOSEvent (Ptr vEvent) { EventRecord* theEvent = (EventRecord*)vEvent; static UInt32 lastClick = 0; static int lastH = 0, lastV = 0; if (!_HYTWindow::_ProcessOSEvent (vEvent)) { if (theEvent->what==mouseDown) { Point localClick = theEvent->where; GrafPtr savedPort; GetPort(&savedPort); #ifdef OPAQUE_TOOLBOX_STRUCTS SetPort(GetWindowPort(theWindow)); #else SetPort(theWindow); #endif GlobalToLocal (&localClick); bool dblClick = (theEvent->when-lastClick<GetDblTime())&&(abs(localClick.h-lastH)<5)&&(abs(localClick.v-lastV)<5); lastClick = theEvent->when; lastH = localClick.h; lastV = localClick.v; int c = FindClickedCell(localClick.h,localClick.v),ch,cv; if (c<0) return false; if (c==1) // navBar { ch = localClick.h-componentL.lData[1]-thermRect.left; cv = localClick.v-componentT.lData[1]-thermRect.top; if (dblClick) { NavBarDblClick (ch); return true; } if (navRect.Contains(ch,cv)) { Point oldPt, newPt,deltaPt; deltaPt.h = (navRect.right+navRect.left)/2-ch; deltaPt.v = (navRect.top+navRect.bottom)/2-cv; oldPt=localClick; if (StillDown()) { while (WaitMouseUp()) { GetMouse( &newPt); //if ( DeltaPoint(oldPt, newPt) ) if ( oldPt.h!=newPt.h ) { oldPt=newPt; ch = newPt.h-componentL.lData[1]+deltaPt.h; cv = newPt.v-componentT.lData[1]+deltaPt.v; ch-=thermRect.left; cv-=thermRect.top; forceUpdateForScrolling = true; SetNavRectCenter (ch,cv); forceUpdateForScrolling = false; } } } } else SetNavRectCenter (ch,cv); return true; } else if ((c==4)&&(theEvent->modifiers&controlKey)) { _HYSequencePane* sp2 = (_HYSequencePane*)components (4); sp2->ProcessContextualPopUp (localClick.h,localClick.v); return true; } } else if ((theEvent->what==keyDown) || (theEvent->what==autoKey)) { unsigned char keyCode = (theEvent->message&keyCodeMask)>>8; if ((keyCode==0x7B)||(keyCode==0x7C)) // left/right arrow { _HYSequencePane* sp = (_HYSequencePane*) GetObject (0); if ((keyCode==0x7B)&&(sp->startColumn)) sp->HScrollPane (-1); else if ((keyCode==0x7C)&&(sp->endColumn<sp->columnStrings.lLength)) sp->HScrollPane (1); return true; } } } else return true; return false; } //EOF
[ "martin.audacis@gmail.com" ]
martin.audacis@gmail.com
fd8a42f58a105a59b89b2ce6117c82746d828ddc
ec2de16739cd71afef4a632a606e83444daf21b1
/DevC++/Code power/lat sach.cpp
b9025d0669f71b36fc8204b851e83b8227c1a66d
[]
no_license
minhcongnguyen1508/Code-Java-C--UET
f96bc409c720cb80aaa2f96da81b3870e0937292
24c8018fac67479e0fc01c2068c9ee1a7a700311
refs/heads/master
2020-04-22T00:21:17.478448
2019-02-10T12:58:07
2019-02-10T12:58:07
169,976,733
0
0
null
null
null
null
UTF-8
C++
false
false
239
cpp
// # include <iostream> # include <algorithm> # include <string> # include <vector> using namespace std; int main(){ int a =- 7, b =- 7, c = 7, d = 7, e; e = d++ || a++ && b++; printf("%d %d %d %d %d", a, b, c, d, e); }
[ "minhcongnguyen1508@gmail.com" ]
minhcongnguyen1508@gmail.com
79b450ad1c3dc10bcbd003576b04c1cd4ebb8ecd
4a83406f95a4ba8f15bb4bfff0bb34f5f36ddcde
/Atcoder/DP contest/B Frog 2.cpp
77d84308084b8e707590c01073d2edc019d8ddba
[]
no_license
2001adarsh/Contests
5d3523ca6a5eb3eab0505733dc9144890eecb45e
a162b2a11b00d70e2b49292854b2ba826ca01311
refs/heads/master
2021-12-15T02:11:30.852367
2021-12-12T11:22:55
2021-12-12T11:22:55
252,377,884
0
0
null
null
null
null
UTF-8
C++
false
false
710
cpp
#include<bits/stdc++.h> using namespace std; #define int long long int #define endl "\n" #define inf 1000000000000000000LL int dp[100005]; int32_t main() { ios_base::sync_with_stdio(false); cin.tie(NULL); #ifndef ONLINE_JUDGE freopen("input.txt", "r", stdin); freopen("output.txt", "w", stdout); #endif int n, K; cin >> n >> K; int arr[n]; for (int i = 0; i < n; ++i) cin >> arr[i]; memset(dp, 0, sizeof dp); for (int i = 1; i < n; i++) { dp[i] = INT_MAX; for (int j = 1; j <= K; j++) { if (j <= i) dp[i] = min(dp[i], dp[i - j] + abs(arr[i - j] - arr[i])); } } cout << dp[n - 1]; return 0; }
[ "2001adarshsingh@gmail.com" ]
2001adarshsingh@gmail.com
342f6d5668384bbfc74c5ca58bb3c57e3daa2d4e
e027dbe3f227f315ce17e995c78c61721d2f97f0
/Engine/ColorShaderClass.h
7ec1422ba9cfaa46b044adbd902d480d0baa0222
[]
no_license
CheesyPanda42/Engine
fb3ce15dbe9bf711db6de402f7c803853a029bcf
17b0bee2d041d3c8a1935dc4c03fc042b3ad38cc
refs/heads/master
2023-04-08T07:50:50.716590
2013-11-06T04:58:12
2013-11-06T04:58:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
918
h
#include <D3D11.h> #include <D3DX10math.h> // write own math #include <D3DX11async.h> #include <fstream> using namespace std; class ColorShaderClass { public: ColorShaderClass(void); ColorShaderClass(const ColorShaderClass&); ~ColorShaderClass(void); bool Initialize(ID3D11Device*, HWND); void Shutdown(); bool Render(ID3D11DeviceContext*, int, D3DXMATRIX, D3DXMATRIX, D3DXMATRIX); private: struct MatrixBufferType { D3DXMATRIX world; D3DXMATRIX view; D3DXMATRIX proj; }; bool InitializeShader(ID3D11Device*, HWND, WCHAR*, WCHAR*); void ShutdownShader(); void OutputShaderErrorMessage(ID3D10Blob*, HWND, WCHAR*); bool SetShaderParameters(ID3D11DeviceContext*, D3DXMATRIX, D3DXMATRIX, D3DXMATRIX); void RenderShader(ID3D11DeviceContext*, int); ID3D11VertexShader* m_vertexShader; ID3D11PixelShader* m_pixelShader; ID3D11InputLayout* m_layout; ID3D11Buffer* m_matrixBuffer; };
[ "cprelerson42@gmail.com" ]
cprelerson42@gmail.com
1f9449af0209d942fece54be541d4ba12a9421d1
03f037d0f6371856ede958f0c9d02771d5402baf
/graphics/VTK-7.0.0/ThirdParty/xdmf3/vtkxdmf3/XdmfAttributeCenter.hpp
58ec56413f952efd3dd7f005dd4c216aa412c427
[ "BSD-3-Clause" ]
permissive
hlzz/dotfiles
b22dc2dc5a9086353ed6dfeee884f7f0a9ddb1eb
0591f71230c919c827ba569099eb3b75897e163e
refs/heads/master
2021-01-10T10:06:31.018179
2016-09-27T08:13:18
2016-09-27T08:13:18
55,040,954
4
0
null
null
null
null
UTF-8
C++
false
false
4,195
hpp
/*****************************************************************************/ /* XDMF */ /* eXtensible Data Model and Format */ /* */ /* Id : XdmfAttributeCenter.hpp */ /* */ /* Author: */ /* Kenneth Leiter */ /* kenneth.leiter@arl.army.mil */ /* US Army Research Laboratory */ /* Aberdeen Proving Ground, MD */ /* */ /* Copyright @ 2011 US Army Research Laboratory */ /* All Rights Reserved */ /* See Copyright.txt for details */ /* */ /* This software is distributed WITHOUT ANY WARRANTY; without */ /* even the implied warranty of MERCHANTABILITY or FITNESS */ /* FOR A PARTICULAR PURPOSE. See the above copyright notice */ /* for more information. */ /* */ /*****************************************************************************/ #ifndef XDMFATTRIBUTECENTER_HPP_ #define XDMFATTRIBUTECENTER_HPP_ // Includes #include "Xdmf.hpp" #include "XdmfItemProperty.hpp" /** * @brief Property describing where XdmfAttribute values are centered. * * XdmfAttributeCenter is a property used by XdmfAttribute to specify * where its values are centered on an XdmfGrid. A specific * XdmfAttributeCenter can be created by calling on of the static * methods in the class, i.e. XdmfAttributeCenter::Cell(). * Xdmf supports the following attribute centers: * * Example of use: * * C++ * * @dontinclude ExampleXdmfAttribute.cpp * @skipline //#initialization * @until //#initialization * @skipline //#setCenter * @until //#setCenter * @skipline //#getCenter * @until //#getCenter * * Python * * @dontinclude XdmfExampleAttribute.py * @skipline #//initialization * @until #//initialization * @skipline #//setCenter * @until #//setCenter * @skipline #//getCenter * @until #//getCenter * * Grid * Cell * Face * Edge * Node */ class XDMF_EXPORT XdmfAttributeCenter : public XdmfItemProperty { public: virtual ~XdmfAttributeCenter(); friend class XdmfAttribute; // Supported Xdmf Attribute Centers static shared_ptr<const XdmfAttributeCenter> Grid(); static shared_ptr<const XdmfAttributeCenter> Cell(); static shared_ptr<const XdmfAttributeCenter> Face(); static shared_ptr<const XdmfAttributeCenter> Edge(); static shared_ptr<const XdmfAttributeCenter> Node(); void getProperties(std::map<std::string, std::string> & collectedProperties) const; protected: /** * Protected constructor for XdmfAttributeCenter. The constructor * is protected because all attribute centers supported by Xdmf * should be accessed through more specific static methods that * construct XdmfAttributeCenters - * i.e. XdmfAttributeCenter::Node(). * * @param name The name of the XdmfAttributeCenter to construct. */ XdmfAttributeCenter(const std::string & name); private: XdmfAttributeCenter(const XdmfAttributeCenter &); // Not implemented. void operator=(const XdmfAttributeCenter &); // Not implemented. static shared_ptr<const XdmfAttributeCenter> New(const std::map<std::string, std::string> & itemProperties); std::string mName; }; #endif /* XDMFATTRIBUTECENTER_HPP_ */
[ "shentianweipku@gmail.com" ]
shentianweipku@gmail.com
ecf121281660570e22fbc149dd5857aaf647d48b
bc7e7c41819aa162cd0b1e595baf9034e3e7aa78
/Project1.cpp
9f7100797cd0f7af9ee3912231cd36759e2e0e5d
[]
no_license
reaganshirk/DataStructuresProfessorPoject1
ce75e2a651fd375468bbf30ddcabe30a538bda9e
5070ba267bf725282163670a50906940f60f2e3a
refs/heads/master
2020-04-23T18:11:55.409412
2019-02-18T21:26:37
2019-02-18T21:26:37
171,358,285
1
0
null
null
null
null
UTF-8
C++
false
false
9,926
cpp
//********************************** // Aditya Narasimhan // Project 1 CS 2413 // Spring 2019 //********************************** #include <iostream> using namespace std; class SparseRow { protected: int row; //Row# int col; //Column# int value; //We will assume that all our values will be integers public: SparseRow (); //default constructor; row=-1;col=-1;value=0 void display(); // print Row#, Column#, value void setRow (int r); void setCol (int c); void setValue (int v); int getRow (); int getCol (); int getValue (); //other methods as you deem fit }; SparseRow::SparseRow () { row = -1; col = -1; value = 0; } void SparseRow::display() { cout << row << ", " << col << ", " << value << endl; } void SparseRow::setRow (int r) { row = r; } void SparseRow::setCol (int c) { col = c; } void SparseRow::setValue (int v) { value = v; } int SparseRow::getRow () { return row; } int SparseRow::getCol () { return col; } int SparseRow::getValue () { return value; } class SparseMatrix { protected: int noRows; //Number of rows of the original matrix int noCols; //Number of columns of the original matrix int commonValue; //read from input int noNonSparseValues; SparseRow* myMatrix; //Array public: SparseMatrix (); SparseMatrix (int n, int m, int cv, int noNSV); void setSparseRow (int pos, int r, int c, int v); SparseMatrix* Transpose (); //Matrix Transpose SparseMatrix* Multiply (SparseMatrix& M); //Matrix Multiply SparseMatrix* Add (SparseMatrix& M); //Matrix Add void display();//Display the sparse matrix void displayMatrix (); //Display the matrix in its original format int getRows(); int getCols(); int getValWithRowandCol(int row, int col); void setnoNSV(int noNSVlocal); //other methods as you deem fit }; SparseMatrix::SparseMatrix () { noRows = 0; noCols = 0; commonValue = -1; noNonSparseValues = 0; myMatrix = NULL; } SparseMatrix::SparseMatrix (int n, int m, int cv, int noNSV) { noRows = n; // cout << "numRows set as:" << noRows << endl; noCols = m; // cout << "numCols set as:" << noCols << endl; commonValue = cv; noNonSparseValues = noNSV; myMatrix = new SparseRow[noNSV]; } int SparseMatrix::getRows(){ return noRows; } int SparseMatrix::getCols(){ return noCols; } void SparseMatrix::setSparseRow (int pos, int r, int c, int v) { myMatrix[pos].setRow(r); myMatrix[pos].setCol(c); myMatrix[pos].setValue(v); } int SparseMatrix::getValWithRowandCol(int row, int col){ for (int i = 0; i < noNonSparseValues; i++) { SparseRow x = myMatrix[i]; if (x.getRow() == row && x.getCol() == col) { return x.getValue(); } } return commonValue; } void SparseMatrix::setnoNSV (int noNSVlocal) { noNonSparseValues = noNSVlocal; } void SparseMatrix::displayMatrix () { // to print in matrix form for(int i = 0; i < this->getRows(); i++){ for(int j = 0; j < this->getCols(); j++){ cout << getValWithRowandCol(i, j) << "\t"; } cout << endl; } } SparseMatrix* SparseMatrix::Transpose() { // initialize the resultant matrix SparseMatrix* transposed = new SparseMatrix (noRows,noCols,commonValue,noNonSparseValues); for (int i=0; i < noNonSparseValues; i++) { ((*transposed).myMatrix[i]).setRow (myMatrix[i].getCol()); //copy the col of A to row of result ((*transposed).myMatrix[i]).setCol (myMatrix[i].getRow()); //copy the row of A to col of result ((*transposed).myMatrix[i]).setValue (myMatrix[i].getValue()); //copy the value of A to value of result } return transposed; } SparseMatrix* SparseMatrix::Add(SparseMatrix& one) { // initializing the new resultant matrix SparseMatrix* sumMatrix = new SparseMatrix (this->getRows(),this->getCols(),this->commonValue+one.commonValue,this->noNonSparseValues + one.noNonSparseValues); int sumVal = 0; int position = 0; // bool flagArray[one.noNonSparseValues]; bool* flagArray = new bool[one.noNonSparseValues]; // parallel bool array to maintain along with SparseRow table of B bool flagFound = false; int rowFirstOne; int columnFirstOne; int resultFirstOne; int rowSecondOne; int columnSecondOne; int resultSecondOne; //setting all of them to false to begin with for(int k = 0; k<one.noNonSparseValues; k++) flagArray[k] = false; for(int i = 0; i<this->noNonSparseValues; i++) //looping through A's sparseRow table { rowFirstOne = this->myMatrix[i].getRow(); columnFirstOne = this->myMatrix[i].getCol(); resultFirstOne = this->myMatrix[i].getValue(); for(int j = 0; j<one.noNonSparseValues; j++) //looping through B's sparseRow table { rowSecondOne = one.myMatrix[j].getRow(); columnSecondOne = one.myMatrix[j].getCol(); resultSecondOne = one.myMatrix[j].getValue(); if(rowFirstOne == rowSecondOne && columnFirstOne == columnSecondOne) //comparing the rows and the cols of both A and B { sumVal = resultFirstOne + resultSecondOne; //adding the sum of two if they match flagArray[j] = true; flagFound = true; if(sumVal != sumMatrix->commonValue) //checking if the result is not the commonvalue of the resultant matrix { (*sumMatrix).setSparseRow (position, rowFirstOne, columnFirstOne, sumVal); //adding it to the sparseRow of the resultant matrix position++; } // sumVal = 0; } //if } //for j if(flagFound == false) // this happens if value exists in A's table but not B's { sumVal = this->commonValue + resultFirstOne; //we add it with the common value and then the check and then add to sparseRow table of result if(sumVal != sumMatrix->commonValue) { (*sumMatrix).setSparseRow(position, rowFirstOne, columnFirstOne, sumVal); position++; } // sumVal = 0; } flagFound = false; } //for i // this is for if a value if existent in B's table but not A's for(int k = 0; k<one.noNonSparseValues; k++) { if(flagArray[k] == false) { resultSecondOne = one.myMatrix[k].getValue(); sumVal = this->commonValue + resultSecondOne; //we add it with the common value and then the check and then add to sparseRow table of result if(sumVal != sumMatrix->commonValue) { (*sumMatrix).setSparseRow(position, rowSecondOne, columnSecondOne, sumVal); position++; } // sumVal = 0; } } // reset the length of the sparseRow table of the result sumMatrix->setnoNSV(position); return sumMatrix; } SparseMatrix* SparseMatrix::Multiply(SparseMatrix& one) { SparseMatrix* multiplymatrix = new SparseMatrix(noRows, one.getCols(), this->commonValue*one.commonValue, this->noRows*one.getRows()*one.getCols()); int counter = 0; for (int i = 0; i < (*multiplymatrix).getRows(); i++) // looping through the rows of A { for (int j = 0; j < (*multiplymatrix).getCols(); j++) // looping through the cols of B { int tempSum = 0; for (int k = 0; k < noNonSparseValues; k++) // looping through the SparseRow table of A { if (myMatrix[k].getRow() == i) // checking if the row of A matches with the myMatrix row from A { for (int l = 0; l < one.noNonSparseValues; l++) // looping through B's SparseRow table { if (one.myMatrix[l].getCol() == j) // checking if the col of B matches with the mymatrix col of B { if ((myMatrix[k].getCol() == one.myMatrix[l].getRow())) // checking if the myMatrix col of A matches with the myMatrix row of B { tempSum += myMatrix[k].getValue() * one.myMatrix[l].getValue(); //cummulative sum } //if col == row } //if col == j } //for l } //if row == i } //for k //Adding the sum to the resultant sparseMatrix if (tempSum != multiplymatrix->commonValue) { multiplymatrix->setSparseRow(counter, i, j, tempSum); counter++; } //if tempSum == cv } //for j } //for i //resetting the length of the resultant matrix (*multiplymatrix).setnoNSV(counter); return multiplymatrix; } void SparseMatrix::display() { // cout << "Inside display numRows:" << this->noRows << endl; // cout << "Inside display numCols:" << this->noCols << endl; for (int i=0; i < noNonSparseValues; i++) { myMatrix[i].display(); } } int main () { int n, m, cv, noNSV; SparseMatrix* temp; int v; int k; cin >> n >> m >> cv >> noNSV; SparseMatrix* firstOne = new SparseMatrix(n, m, cv, noNSV); // cout << n << endl << m << endl << cv << endl << noNSV << endl; //Write the Statements to read in the first matrix k = 0; //position in the matrix for (int i=0; i < n; i++) { for (int j=0; j < m; j++) { cin >> v; if (v != cv) { (*firstOne).setSparseRow (k, i, j, v); k++; } } } cout << "First one in sparse matrix format" << endl; (*firstOne).display(); cout << "First one in normal matrix format" << endl; (*firstOne).displayMatrix(); cin >> n >> m >> cv >> noNSV; SparseMatrix* secondOne = new SparseMatrix(n, m, cv, noNSV); // cout << n << endl << m << endl << cv << endl << noNSV << endl; //Write the Statements to read in the second matrix k = 0; //position in the matrix for (int i=0; i < n; i++) { for (int j=0; j < m; j++) { cin >> v; if (v != cv) { (*secondOne).setSparseRow (k, i, j, v); k++; } } } cout << "Second one in sparse matrix format" << endl; (*secondOne).display(); cout << "Second one in normal matrix format" << endl; (*secondOne).displayMatrix(); temp = (*firstOne).Transpose(); cout << "After Transpose first one" << endl; (*temp).displayMatrix(); temp = (*secondOne).Transpose(); cout << "After Transpose second one" << endl; (*temp).displayMatrix(); cout << "Multiplication of matrices in sparse matrix form:" << endl; temp = (*secondOne).Multiply(*firstOne); (*temp).display(); // (*temp).displayMatrix(); cout << "Addition of matrices in sparse matrix form:" << endl; temp = (*secondOne).Add(*firstOne); (*temp).display(); // (*temp).displayMatrix(); }
[ "reaganshirk@ou.edu" ]
reaganshirk@ou.edu
febc0e8389cf7538dbfe0c2f5ba8021df070da9f
f47b329d81123e4cf3c395b7d1af3c454309dcea
/Data Structures/Linked_list/Linked_list_rev_loop.cpp
c8e685242f30ff19a3fe656da48eb80276bb0efd
[]
no_license
Deepan20/Cpp
7a9ea2074c2460612b65139fcb631ae1678b9eaa
8cbcedfb31f310ebc8116a865039cf7f56999c01
refs/heads/main
2023-07-21T11:50:38.238434
2021-08-16T17:54:29
2021-08-16T17:54:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,388
cpp
#include<iostream> using namespace std; struct node { int data; node* next; }; node* insert(node *head,int a) { node *temp1=new node(); temp1->data=a; temp1->next=NULL; if(head==NULL) { head=temp1; return head; } node *temp2=head; while(temp2->next!=NULL) { temp2=temp2->next; } temp2->next=temp1; return head; } void print(node *head) { node *temp =head; // pointing to first element cout<<"\nThe elements are : "; while(temp!=NULL) { cout<<temp->data<<", "; temp=temp->next; } } node* Reverse(node* head) { node *prev,*current,*next_node; prev=NULL; current=head; while(current!=NULL) { next_node=current->next; // storing the next address in next_node current->next=prev; // linking the current to previous node prev=current; // updating prev pointer current=next_node; // updating current pointer } head =prev; // sice prev points to last node, we point head to this node as last step return head; } int main() { node* head=NULL; int n,a; head =insert(head,1); head =insert(head,2); head =insert(head,3); head =insert(head,4); head =insert(head,5); print(head); head=Reverse(head); print(head); return 0; } // here we have to keep track of the previous node as well as the next node for reversing it
[ "ksasidharan98@gmail.com" ]
ksasidharan98@gmail.com
db2deff590fe84d42a348f04be679f240a346df1
7be8e3636bf08ebdc6662879dc5afec548705537
/ios/Pods/Flipper-Folly/folly/system/MemoryMapping.h
f2f143d4eb4eaa67adeaa604a9077bd15046941e
[ "MIT", "Apache-2.0" ]
permissive
rdhox/react-native-smooth-picker
3c7384f1fed0e37f076361cce96071d01b70e209
ae9316c49512f7ed9824c5a3ad50cdf5e80fffa9
refs/heads/master
2023-01-08T16:59:40.709147
2021-07-03T14:13:21
2021-07-03T14:13:21
160,224,312
230
31
MIT
2023-01-06T01:46:04
2018-12-03T16:54:10
TypeScript
UTF-8
C++
false
false
8,103
h
/* * Copyright (c) Facebook, Inc. and its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include <cassert> #include <folly/File.h> #include <folly/Range.h> namespace folly { /** * Maps files in memory (read-only). * * @author Tudor Bosman (tudorb@fb.com) */ class MemoryMapping { public: /** * Lock the pages in memory? * TRY_LOCK = try to lock, log warning if permission denied * MUST_LOCK = lock, fail assertion if permission denied. */ enum class LockMode { TRY_LOCK, MUST_LOCK, }; struct LockFlags { LockFlags() {} bool operator==(const LockFlags& other) const; /** * Instead of locking all the pages in the mapping before the call returns, * only lock those that are currently resident and mark the others to be * locked at the time they're populated by their first page fault. * * Uses mlock2(flags=MLOCK_ONFAULT). Requires Linux >= 4.4. */ bool lockOnFault = false; }; /** * Map a portion of the file indicated by filename in memory, causing SIGABRT * on error. * * By default, map the whole file. length=-1: map from offset to EOF. * Unlike the mmap() system call, offset and length don't need to be * page-aligned. length is clipped to the end of the file if it's too large. * * The mapping will be destroyed (and the memory pointed-to by data() will * likely become inaccessible) when the MemoryMapping object is destroyed. */ struct Options { Options() {} // Convenience methods; return *this for chaining. Options& setPageSize(off_t v) { pageSize = v; return *this; } Options& setShared(bool v) { shared = v; return *this; } Options& setPrefault(bool v) { prefault = v; return *this; } Options& setReadable(bool v) { readable = v; return *this; } Options& setWritable(bool v) { writable = v; return *this; } Options& setGrow(bool v) { grow = v; return *this; } // Page size. 0 = use appropriate page size. // (On Linux, we use a huge page size if the file is on a hugetlbfs // file system, and the default page size otherwise) off_t pageSize = 0; // If shared (default), the memory mapping is shared with other processes // mapping the same file (or children); if not shared (private), each // process has its own mapping. Changes in writable, private mappings are // not reflected to the underlying file. See the discussion of // MAP_PRIVATE vs MAP_SHARED in the mmap(2) manual page. bool shared = true; // Populate page tables; subsequent accesses should not be blocked // by page faults. This is a hint, as it may not be supported. bool prefault = false; // Map the pages readable. Note that mapping pages without read permissions // is not universally supported (not supported on hugetlbfs on Linux, for // example) bool readable = true; // Map the pages writable. bool writable = false; // When mapping a file in writable mode, grow the file to the requested // length (using ftruncate()) before mapping; if false, truncate the // mapping to the actual file size instead. bool grow = false; // Fix map at this address, if not nullptr. Must be aligned to a multiple // of the appropriate page size. void* address = nullptr; }; // Options to emulate the old WritableMemoryMapping: readable and writable, // allow growing the file if mapping past EOF. static Options writable() { return Options().setWritable(true).setGrow(true); } enum AnonymousType { kAnonymous, }; /** * Create an anonymous mapping. */ MemoryMapping(AnonymousType, off_t length, Options options = Options()); explicit MemoryMapping( File file, off_t offset = 0, off_t length = -1, Options options = Options()); explicit MemoryMapping( const char* name, off_t offset = 0, off_t length = -1, Options options = Options()); explicit MemoryMapping( int fd, off_t offset = 0, off_t length = -1, Options options = Options()); MemoryMapping(const MemoryMapping&) = delete; MemoryMapping(MemoryMapping&&) noexcept; ~MemoryMapping(); MemoryMapping& operator=(const MemoryMapping&) = delete; MemoryMapping& operator=(MemoryMapping&&); void swap(MemoryMapping& other) noexcept; /** * Lock the pages in memory */ bool mlock(LockMode mode, LockFlags flags = {}); /** * Unlock the pages. * If dontneed is true, the kernel is instructed to release these pages * (per madvise(MADV_DONTNEED)). */ void munlock(bool dontneed = false); /** * Hint that these pages will be scanned linearly. * madvise(MADV_SEQUENTIAL) */ void hintLinearScan(); /** * Advise the kernel about memory access. */ void advise(int advice) const; void advise(int advice, size_t offset, size_t length) const; /** * A bitwise cast of the mapped bytes as range of values. Only intended for * use with POD or in-place usable types. */ template <class T> Range<const T*> asRange() const { size_t count = data_.size() / sizeof(T); return Range<const T*>( static_cast<const T*>(static_cast<const void*>(data_.data())), count); } /** * A range of bytes mapped by this mapping. */ ByteRange range() const { return data_; } /** * A bitwise cast of the mapped bytes as range of mutable values. Only * intended for use with POD or in-place usable types. */ template <class T> Range<T*> asWritableRange() const { assert(options_.writable); // you'll segfault anyway... size_t count = data_.size() / sizeof(T); return Range<T*>(static_cast<T*>(static_cast<void*>(data_.data())), count); } /** * A range of mutable bytes mapped by this mapping. */ MutableByteRange writableRange() const { assert(options_.writable); // you'll segfault anyway... return data_; } /** * Return the memory area where the file was mapped. * Deprecated; use range() instead. */ StringPiece data() const { return asRange<const char>(); } bool mlocked() const { return locked_; } int fd() const { return file_.fd(); } private: MemoryMapping(); enum InitFlags { kGrow = 1 << 0, kAnon = 1 << 1, }; void init(off_t offset, off_t length); File file_; void* mapStart_ = nullptr; off_t mapLength_ = 0; Options options_; bool locked_ = false; MutableByteRange data_; }; void swap(MemoryMapping&, MemoryMapping&) noexcept; /** * A special case of memcpy() that always copies memory forwards. * (libc's memcpy() is allowed to copy memory backwards, and will do so * when using SSSE3 instructions). * * Assumes src and dest are aligned to alignof(unsigned long). * * Useful when copying from/to memory mappings after hintLinearScan(); * copying backwards renders any prefetching useless (even harmful). */ void alignedForwardMemcpy(void* dst, const void* src, size_t size); /** * Copy a file using mmap(). Overwrites dest. */ void mmapFileCopy(const char* src, const char* dest, mode_t mode = 0666); /** * mlock2 is Linux-only and exists since Linux 4.4 * On Linux pre-4.4 and other platforms fail with ENOSYS. * glibc added the mlock2 wrapper in 2.27 * https://lists.gnu.org/archive/html/info-gnu/2018-02/msg00000.html */ int mlock2wrapper(const void* addr, size_t len, MemoryMapping::LockFlags flags); } // namespace folly
[ "admin@rdhox.io" ]
admin@rdhox.io
8e0a4c102667151d853adb68ffce25c00f1a67ba
721720964893a2fea43114d4a859812e834fd29c
/oop_Project_Eliyho_Tsuri/Controller.cpp
ba051d98842665f287a0ff5f8cc08ef5ba077f32
[]
no_license
elitsuri/Eliyho_Tsuri_OOP_B-Super_Mario
48a9a2a321064ebb55f1c071014be45acae79c07
71daf191d15b44ec0b7f696f0879ac713fa47f5e
refs/heads/master
2023-06-27T17:03:38.543887
2021-08-04T05:17:56
2021-08-04T05:17:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,387
cpp
#include "Controller.h" #include <iostream> Controller::Controller() { load_musics(); allocEnemies(); initializeEnemies(); } void Controller::load_musics() { m_backs.push_back(Resources::get().get_sprite(0)); m_backs.push_back(Resources::get().get_sprite(4)); m_backs.push_back(Resources::get().get_sprite(6)); m_backs.push_back(Resources::get().get_sprite(8)); m_back_music[0].openFromFile("files/sound/back1.ogg"); m_back_music[1].openFromFile("files/sound/back2.ogg"); m_back_music[2].openFromFile("files/sound/back3.ogg"); m_game_music[0].openFromFile("files/sound/death.ogg"); m_game_music[1].openFromFile("files/sound/jump.ogg"); m_game_music[2].openFromFile("files/sound/kick.ogg"); m_game_music[3].openFromFile("files/sound/powerup.ogg"); m_game_music[4].openFromFile("files/sound/winner.ogg"); m_game_music[5].openFromFile("files/sound/wall.ogg"); m_game_music[6].openFromFile("files/sound/GameOver.ogg"); for (unsigned i = 0; i < 3; ++i) { if (!&m_game_music[i]) { throw (invalid_argument("No such files to build the game\n")); exit(EXIT_FAILURE); } m_back_music[i].setLoop(true); m_back_music[i].setVolume(10); } for (unsigned i = 0; i < 7; ++i) { if (!&m_game_music[i]) { throw (invalid_argument("No such files to build the game\n")); exit(EXIT_FAILURE); } m_game_music[i].setVolume(70); } } void Controller::allocEnemies() { for (unsigned i = 0; i < SIZE; ++i) { m_enemies.push_back(make_shared<Goomba>()); m_enemies.push_back(make_shared<Turtle>()); } } void Controller::initializeEnemies() { unsigned index = 0; for (auto &enemy : m_enemies) { if (index == 0) enemy->set(220 * index + 200, 13 * 23); else if (index % 2 == 0) enemy->set(220 * index + 100, 13 * 23); else enemy->set(220 * index + 100, 13 * 23); index++; } } void Controller::initializeView() { View view = m_window.getDefaultView(); view.zoom(0.47f); view.setCenter({ 474, 811 }); m_window.setView(view); } void Controller::run(const char m_run) { float time; float m_speed = m_run == 'd' ? 1.6f : 3.2f; float m_jump = m_run == 'd' ? -0.30f : -0.52f; m_window.create(VideoMode::getFullscreenModes()[0], "Super-Mario", Style::Fullscreen); for (num_level = 1; num_level < 4 && !m_end ;) { initializeView(); m_win = false; my_level = make_unique<Level>(num_level); m_back_music[num_level - 1].play(); m_mario = make_unique<Mario>(); while (m_window.isOpen()) { clock.restart(); GameBar bar(num_level, m_lives, m_points); time = (float)clock.getElapsedTime().asMicroseconds(); time = time / m_speed; while (m_window.pollEvent(event)) { if (event.key.code == Keyboard::Escape) { m_window.close(); m_end = true; } } if (m_end) continue; if (Keyboard::isKeyPressed(Keyboard::Q)) switch_sound(); if (Keyboard::isKeyPressed(Keyboard::Left)) m_mario->setPos(-0.1f, go_left, true); if (Keyboard::isKeyPressed(Keyboard::Right)) m_mario->setPos(0.1f, go_right, true); if (Keyboard::isKeyPressed(Keyboard::Up)) { if (m_mario->getGround()) { m_game_music[1].play(); m_mario->setPos(m_jump, go_up, true); } } move_objects(my_level, time); draw(my_level, bar); m_window.display(); if (!m_mario->getLife() || m_lives == 0) { game_over(); break; } if (m_win) { winner_over(); break; } } } } void Controller::move_objects(unique_ptr<Level> &my_level, float time) { m_mario->move(my_level->m_map, time, offsetX, offsetY); for (auto &enemy : m_enemies) enemy->move(my_level->m_map, time, offsetX, offsetY); if (m_mario->point > 0) m_points++; for (auto &enemy : m_enemies) { if (m_mario->getRect().intersects(enemy->getRect())) { if (enemy->getLife()) { if (m_mario->getPos().y > 0) { enemy->setPos(0, stop, false); m_mario->setPos(-0.19f, stop, true); enemy->setLife(false); m_game_music[2].play(); m_points += 2; } else m_mario->setLife(false); } } } if (m_points >= 20) m_win = true; if (m_mario->getRect().left > 200) offsetX = m_mario->getRect().left - 200; } void Controller::switch_sound() { if (m_sound_switch) { m_back_music[num_level - 1].setVolume(0); for (unsigned i = 0; i < 7; ++i) m_game_music[i].setVolume(0); m_sound_switch = false; } else { m_back_music[num_level - 1].setVolume(40); for (unsigned i = 0; i < 7; ++i) m_game_music[i].setVolume(70); m_sound_switch = true; } } void Controller::winner_over() { Sleep(50); m_back_music[num_level - 1].stop(); m_game_music[4].play(); m_window.clear(); m_window.draw(m_backs[2]); m_window.display(); m_points = 0; num_level++; m_mario = make_unique<Mario>(); initializeEnemies(); Sleep(7500); if (num_level > 3) m_end = true; } void Controller::game_over() { m_back_music[num_level - 1].stop(); m_game_music[0].play(); m_window.clear(); m_window.draw(m_backs[3]); m_window.display(); Sleep(3300); m_lives--; if (m_lives == 0) m_end = true; else { initializeEnemies(); m_back_music[num_level - 1].play(); } } void Controller::draw(unique_ptr<Level> &my_level, GameBar & bar) { m_window.draw(m_backs[num_level - 1]); bar.draw(m_window); my_level->draw(m_window, offsetX, offsetY); for (auto &enemy : m_enemies) enemy->draw(m_window); m_mario->draw(m_window); }
[ "zelitesuri@gmail.com" ]
zelitesuri@gmail.com
f318c6c2fcde8a6989e34213047dcac04038859d
6383cd8579cfa2a61b46bb77150c10e8413e0f32
/include/trie-node.inl
312f3b852398e226cca6a646a5626fd1cf26c40c
[ "MIT" ]
permissive
gokselgoktas/boggle-solver
8c1510307daeed6204f42433aad30a4394ac5d1f
577ced63526e2e06dc26b0470f8b56d2553241a4
refs/heads/master
2020-05-29T15:41:27.628172
2017-07-27T14:35:09
2017-07-27T14:35:09
60,730,647
0
0
null
null
null
null
UTF-8
C++
false
false
510
inl
#ifndef BOGGLE_TRIE_NODE_INL #define BOGGLE_TRIE_NODE_INL namespace boggle { bool TrieNode::isWordBoundary() const { return isWordBoundary_; } #ifdef BOGGLE_COUNT_NODE_DEPENDENCIES size_t TrieNode::getDependencyCount() const { return dependencyCount_; } #endif TrieNode::Subnodes &TrieNode::getSubnodes() { return subnodes_; } TrieNode::Subnodes const &TrieNode::getSubnodes() const { return subnodes_; } size_t TrieNode::getSubnodeCount() const { return subnodes_.size(); } } #endif
[ "gokselgoktas@gmail.com" ]
gokselgoktas@gmail.com
2b4c148b004e247c1ab55ff12efbe6d966bb18aa
2252a5c24e8be3096eca7603d3e81815126addec
/image_helper.cpp
c359c08766d860dda30c286359323ee6c3389787
[]
no_license
flyish/rsa_license
c6c138640c5a7c2d7a95a58739e394ed109312f9
f0792efce29b5f68328a6e0587799df4cac9e3af
refs/heads/master
2020-03-21T15:20:05.807397
2018-06-26T08:23:11
2018-06-26T08:23:11
138,706,880
1
1
null
null
null
null
GB18030
C++
false
false
3,937
cpp
#include "stdafx.h" #include "image_helper.h" #include <windows.h> bool image_find_section_pointer(void* pModuleBase, const char* lpszSectionName, void** ppPos, size_t* lpSize) { IMAGE_DOS_HEADER *pDosHead; IMAGE_FILE_HEADER *pPEHead; IMAGE_SECTION_HEADER *pSection; *ppPos = NULL; *lpSize = 0; if (::IsBadReadPtr(pModuleBase, sizeof(IMAGE_DOS_HEADER)) || ::IsBadReadPtr(lpszSectionName, 8)) return false; if (strlen(lpszSectionName) >= 16) return false; char szSecName[16]; memset(szSecName, 0, 16); strncpy(szSecName, lpszSectionName, IMAGE_SIZEOF_SHORT_NAME); unsigned char *pszModuleBase = (unsigned char *)pModuleBase; pDosHead = (IMAGE_DOS_HEADER *)pszModuleBase; //跳过DOS头不和DOS stub代码,定位到PE标志位置 DWORD Signature = *(DWORD *)(pszModuleBase + pDosHead->e_lfanew); if (Signature != IMAGE_NT_SIGNATURE) //"PE/0/0" return false; //定位到PE header pPEHead = (IMAGE_FILE_HEADER *)(pszModuleBase + pDosHead->e_lfanew + sizeof(DWORD)); int nSizeofOptionHeader; if (pPEHead->SizeOfOptionalHeader == 0) nSizeofOptionHeader = sizeof(IMAGE_OPTIONAL_HEADER); else nSizeofOptionHeader = pPEHead->SizeOfOptionalHeader; bool bFind = false; //跳过PE header和Option Header,定位到Section表位置 pSection = (IMAGE_SECTION_HEADER *)((unsigned char *)pPEHead + sizeof(IMAGE_FILE_HEADER)+nSizeofOptionHeader); for (int i = 0; i < pPEHead->NumberOfSections; i++) { if (!strncmp(szSecName, (const char*)pSection[i].Name, IMAGE_SIZEOF_SHORT_NAME)) //比较段名称 { *ppPos = (void *)(pszModuleBase + pSection[i].VirtualAddress); //计算实际虚地址 *lpSize = pSection[i].Misc.VirtualSize; //实际大小 bFind = true; break; } } return bFind; } int image_va_to_file_offset(void* pModuleBase, void* pVA) { IMAGE_DOS_HEADER *pDosHead; IMAGE_FILE_HEADER *pPEHead; IMAGE_SECTION_HEADER *pSection; if (::IsBadReadPtr(pModuleBase, sizeof(IMAGE_DOS_HEADER)) || ::IsBadReadPtr(pVA, 4)) return -1; unsigned char *pszModuleBase = (unsigned char *)pModuleBase; pDosHead = (IMAGE_DOS_HEADER *)pszModuleBase; //跳过DOS头不和DOS stub代码,定位到PE标志位置 DWORD Signature = *(DWORD *)(pszModuleBase + pDosHead->e_lfanew); if (Signature != IMAGE_NT_SIGNATURE) //"PE/0/0" return -1; unsigned char *pszVA = (unsigned char *)pVA; int nFileOffset = -1; //定位到PE header pPEHead = (IMAGE_FILE_HEADER *)(pszModuleBase + pDosHead->e_lfanew + sizeof(DWORD)); int nSizeofOptionHeader; if (pPEHead->SizeOfOptionalHeader == 0) nSizeofOptionHeader = sizeof(IMAGE_OPTIONAL_HEADER); else nSizeofOptionHeader = pPEHead->SizeOfOptionalHeader; //跳过PE header和Option Header,定位到Section表位置 pSection = (IMAGE_SECTION_HEADER *)((unsigned char *)pPEHead + sizeof(IMAGE_FILE_HEADER)+nSizeofOptionHeader); for (int i = 0; i < pPEHead->NumberOfSections; i++) { if (!strncmp(".text", (const char*)pSection[i].Name, 5)) //比较段名称 { //代码文件偏移量 = 代码内存虚拟地址 - (代码段内存虚拟地址 - 代码段的文件偏移) nFileOffset = (int)( pszVA - (pszModuleBase + pSection[i].VirtualAddress - pSection[i].PointerToRawData) ); break; } } return nFileOffset; } int image_find_code_tag(void *pStartAddr, unsigned long *pTagLoc, unsigned long lTagValue, int nSerachLength) { int nPos = -1; int i = 0; unsigned char *pAddr = (unsigned char *)pStartAddr; while (i < nSerachLength) { if ((*pAddr == 0xC7) && (*(pAddr + 1) == 0x05))//查找mov指令 { unsigned long *Loc = (unsigned long *)((unsigned char*)pAddr + 2); if (*Loc == (unsigned long)pTagLoc)//此处的数据*Loc就是全局静态变量的地址 { unsigned long *Val = (unsigned long *)((unsigned char*)pAddr + 6); if (*Val == lTagValue)//此处的数据*Val就是常数lTagValue值 { nPos = i; break;//find tag } } } pAddr++; i++; } return nPos; }
[ "lihailuo@126.com" ]
lihailuo@126.com
3989b870616b8b595712119aadaff055effe45af
718d71df2e99b8634127880778dd38cec9bcb4ca
/leetcode/20_valid_parentheses.cpp
b0c4d573098de0c27b7c2fec1224e4230cda34a1
[]
no_license
afcarl/Algorithm_study
57a741136c447feb03bb554f7fd4e21e5dc1f947
4440e2dcb34a61724c0c333f360a12ab90b22712
refs/heads/master
2020-03-25T03:20:42.063373
2016-05-07T17:54:00
2016-05-07T17:56:52
null
0
0
null
null
null
null
UTF-8
C++
false
false
777
cpp
/* * 20_valid_parentheses.cpp * * Author: Qi Haozhi * Copyright (c) 2015 Qi Haozhi * * You can star the project via: * https://github.com/Oh233/Algorithm_study * * You may find the solution tutorial in * http://oh233.github.io/2015/12/26/LeetCode-Report-16-20/ */ class Solution { public: bool isValid(string s) { if (s.size() % 2 == 1) { return false; } stack<char> table; for (int i=0;i<s.size();++i) { if (s[i] == '(' || s[i] == '[' || s[i] == '{') { table.push(s[i]); } else { if (table.empty()) { return false; } else { char t = table.top(); table.pop(); if (s[i] - t <= 2 && t - s[i] >= -2 && s[i] != t) { continue; } else { return false; } } } } return table.empty(); } };
[ "macshqi@gmail.com" ]
macshqi@gmail.com
1cd9c3fff4f6493d42884b8ac5fa3a9819532e5e
0065cefdd3a4f163e92c6499c4f36feb584d99b7
/rogue/cheat/sdk/SDK/StatWrapper_Rogue_DamagePerGamePlayed_parameters.h
ab235e018b9590d6e53bc33b897a4c42f8264a11
[]
no_license
YMY1666527646/Rogue_Company_hack
ecd8461fc6b25a0adca1a6ef09ee57e59181bc84
2a19c81c5bf25b6e245084c073ad7af895a696e4
refs/heads/main
2023-08-20T06:07:14.660871
2021-10-21T20:33:53
2021-10-21T20:33:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,050
h
#pragma once // Name: roguecompany, Version: 425 /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Parameters //--------------------------------------------------------------------------- // Function StatWrapper_Rogue_DamagePerGamePlayed.StatWrapper_Rogue_DamagePerGamePlayed_C.GetStatValueText struct UStatWrapper_Rogue_DamagePerGamePlayed_C_GetStatValueText_Params { class UObject* InWorldContextObject; // 0x0000(0x0008) (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) class AKSPlayerState* InPlayerState; // 0x0008(0x0008) (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) int DescriptorId; // 0x0010(0x0004) (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) struct FString DescriptorString; // 0x0018(0x0010) (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, HasGetValueTypeHash) bool ShouldOverwriteValue; // 0x0028(0x0001) (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor) float OverwriteValue; // 0x002C(0x0004) (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) struct FText ReturnValue; // 0x0030(0x0018) (Parm, OutParm, ReturnParm) }; // Function StatWrapper_Rogue_DamagePerGamePlayed.StatWrapper_Rogue_DamagePerGamePlayed_C.GetStatValue struct UStatWrapper_Rogue_DamagePerGamePlayed_C_GetStatValue_Params { class UObject* InWorldContextObject; // 0x0000(0x0008) (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) class AKSPlayerState* InPlayerState; // 0x0008(0x0008) (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) int DescriptorId; // 0x0010(0x0004) (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) struct FString DescriptorString; // 0x0018(0x0010) (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, HasGetValueTypeHash) bool ShouldOverwriteValue; // 0x0028(0x0001) (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor) float OverwriteValue; // 0x002C(0x0004) (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) float ReturnValue; // 0x0030(0x0004) (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData, NoDestructor, HasGetValueTypeHash) }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "51001754+dmitrysolovev@users.noreply.github.com" ]
51001754+dmitrysolovev@users.noreply.github.com
f0dc4edaa10891f66de42abb340c0990c8e6dd04
ffcf31e66a828eef8f27c0f3268f0a70be1f7458
/course-project/starnav/Helpers.h
d66b654d3f6c1de950d3922f6d939cc3496afd1e
[]
no_license
jdthorne/ensf545
387376ef77a33aa08f3413ecde00d99b0b45bf09
f401a11773b1a2b8d127bb5580cfdb03e62546a8
refs/heads/master
2021-01-13T01:31:17.005242
2012-12-04T16:58:44
2012-12-04T16:58:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
478
h
#pragma once #include <string> #include <sstream> #include <vector> inline std::vector<std::string> &split(const std::string &s, char delim, std::vector<std::string> &elems) { std::stringstream ss(s); std::string item; while(std::getline(ss, item, delim)) { elems.push_back(item); } return elems; } inline std::vector<std::string> split(const std::string &s, char delim) { std::vector<std::string> elems; return split(s, delim, elems); }
[ "jdthorne@ENA0616.eng.ad.ucalgary.ca" ]
jdthorne@ENA0616.eng.ad.ucalgary.ca
99776eb8c6a57b5085910eb59c1ef9bd69688923
d3e7b9d2ebe4d4aae85f05ea83f4b409f7a319f4
/Count Univalue Subtrees.cpp
83c1766794d3ca12f77bed7631d2312dad51d164
[]
no_license
pkuzw/LeetCode-Zhao-Wei-
43c952029b3bf5c142d6307836ea4fe6cf65f3f9
7834590f03daf944b0e6bb5ef9349aa0f36bca99
refs/heads/master
2021-03-22T04:45:40.709649
2018-12-27T14:51:52
2018-12-27T14:51:52
22,886,240
1
0
null
null
null
null
UTF-8
C++
false
false
3,152
cpp
///@file Count Univalue Subtrees ///@author zhaowei ///@date 2016.01.15 ///@version 1.0 ///@date 2016.02.26 ///@version 1.1 #include <vector> using namespace std; struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) {} }; class Solution_v1 { public: ///@brief 统计出二叉树中所有子节点相同的子树数目 ///@param root 根节点 ///@return 返回二叉树中所有子节点相同的子树数目 ///@note 1. 递归; // 2. 递归函数的参数有两个,一个是根节点,另一个是相同子树的数目,另外也需要返回当前根节点的子树是否为全部节点一致的子树; // 3. 对于判定,分成三种情况,一种是叶子节点,肯定是;另一种是只有一个孩子节点,如果孩子和当前节点值相同,则也是;最后一种是有两个 // 孩子节点,只有当两个孩子子树是节点全部相同的子树,且当前节点与两个孩子节点值一样是,才是。 int countUnivalSubtrees(TreeNode* root) { int rslt = 0; isUnivalSubTree(root, rslt); return rslt; } ///@brief 递归辅助函数 ///@param root 根节点 ///@paramt rslt 子节点相同的子树数目 ///@return 返回以root节点为根的子树是否节点全部相同。 bool isUnivalSubTree(TreeNode* root, int& rslt) { if (!root) return true; if (!root->left && !root->right) { rslt++; return true; } bool flg1 = isUnivalSubTree(root->left, rslt); bool flg2 = isUnivalSubTree(root->right, rslt); if (flg1 && flg2) { if (root->left && root->right) { if (root->left->val == root->right->val && root->left->val == root->val) { rslt++; return true; } } else if (root->left && !root->right) { if (root->val == root->left->val) { rslt++; return true; } } else if (root->right && !root->left) { if (root->val == root->right->val) { rslt++; return true; } } } return false; } }; class Solution { public: int countUnivalSubtrees(TreeNode* root) { int rslt = 0; dfs(root, rslt); return rslt; } bool dfs(TreeNode* root, int& cnt) { if (!root) return true; if (!root->left && !root->right) { cnt++; return true; } bool flg1 = dfs(root->left, cnt); bool flg2 = dfs(root->right, cnt); if (flg1 && flg2) { if (root->left && root->right) { if (root->val == root->left->val && root->val == root->right->val) { cnt++; return true; } } else if (!root->left && root->right) { if (root->val == root->right->val) { cnt++; return true; } } else if (!root->right && root->left) { if (root->val == root->left->val) { cnt++; return true; } } } return false; } }; int main() { TreeNode* n[10]; for (int i = 0; i != 10; i++) n[i] = new TreeNode(i); n[0]->left = n[1]; n[0]->right = n[2]; n[1]->left = n[3]; n[1]->right = n[4]; n[2]->right = n[5]; n[0]->val = 5; n[1]->val = 1; n[2]->val = 5; n[3]->val = 5; n[4]->val = 5; n[5]->val = 5; Solution slt; int rslt = slt.countUnivalSubtrees(n[0]); return 0; }
[ "zhaowei.pku@gmail.com" ]
zhaowei.pku@gmail.com
0dc244c68934dcf3e4b6aa5122bb96506787b345
e51e8a6a04d0e57901cca3d866f33e54736053c9
/CodeForces/1159/a/54029171.cpp
b9d2bd59cdc5ec8e791ff1362e6ec7e10d555196
[]
no_license
Nipun4338/Solved-Programming-Problems
7cb638112ef3d135fc6594eac9c6e79c5b0a0592
401a9ecc3157b8b4aa275ceb8c67f4e90213bccd
refs/heads/master
2023-05-17T02:22:57.007396
2021-06-10T17:08:10
2021-06-10T17:08:10
283,442,802
0
0
null
null
null
null
UTF-8
C++
false
false
385
cpp
#include<bits/stdc++.h> using namespace std; int main() { int a,sum=0; char c; cin>>a; for(int i=0; i<a; i++) { cin>>c; if(c=='+') { sum++; } else if(c=='-') { sum--; if(sum<0) { sum=0; } } } cout<<sum<<endl; return 0; }
[ "49658560+Nipun4338@users.noreply.github.com" ]
49658560+Nipun4338@users.noreply.github.com
0bbf268346539072ed1209a4e79764a365cb7456
01ec5fae952211e0a0ab29dfb49a0261a8510742
/backup/source/cpp/[923]三数之和的多种可能.cpp
9e44f91a92431961581907a049794078e437ec21
[]
no_license
algoboy101/LeetCodeCrowdsource
5cbf3394087546f9051c493b1613b5587c52056b
25e93171fa16d6af5ab0caec08be943d2fdd7c2e
refs/heads/master
2021-02-20T00:18:51.225422
2020-06-21T09:04:24
2020-06-21T09:04:24
245,323,834
10
4
null
2020-03-09T02:23:39
2020-03-06T03:43:27
C++
UTF-8
C++
false
false
1,114
cpp
//给定一个整数数组 A,以及一个整数 target 作为目标值,返回满足 i < j < k 且 A[i] + A[j] + A[k] == target 的 //元组 i, j, k 的数量。 // // 由于结果会非常大,请返回 结果除以 10^9 + 7 的余数。 // // // // 示例 1: // // 输入:A = [1,1,2,2,3,3,4,4,5,5], target = 8 //输出:20 //解释: //按值枚举(A[i],A[j],A[k]): //(1, 2, 5) 出现 8 次; //(1, 3, 4) 出现 8 次; //(2, 2, 4) 出现 2 次; //(2, 3, 3) 出现 2 次。 // // // 示例 2: // // 输入:A = [1,1,2,2,2,2], target = 5 //输出:12 //解释: //A[i] = 1,A[j] = A[k] = 2 出现 12 次: //我们从 [1,1] 中选择一个 1,有 2 种情况, //从 [2,2,2,2] 中选出两个 2,有 6 种情况。 // // // // // 提示: // // // 3 <= A.length <= 3000 // 0 <= A[i] <= 100 // 0 <= target <= 300 // // Related Topics 双指针 //leetcode submit region begin(Prohibit modification and deletion) class Solution { public: int threeSumMulti(vector<int>& A, int target) { } }; //leetcode submit region end(Prohibit modification and deletion)
[ "chenwenwen0210@126.com" ]
chenwenwen0210@126.com
577f50e0ca83644766fb781e4f74f80cadf5e4b5
ba55c9f2bb1acaf9f0063a5ac730cb6117bf799d
/epaper-web-image/epaper-web-image.ino
32303cf6683d79686ad46f9518e4ad4ef1703640
[]
no_license
102orion/esp8266
a6e8d99e357bfafcdfeec7a0cbbb1231c67d370f
94bb53c937e2415bdef31a0a783dd0d66de37cd2
refs/heads/master
2020-03-24T10:12:39.461508
2018-06-20T16:14:12
2018-06-20T16:14:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,923
ino
// // Alternate between displaying two images, fetched from a remote URL. // // This script is designed to display a pre-processed image upon a 4.2" // epaper, and is based upon the writeup located here: // // https://steve.fi/Hardware/d1-epaper/ // // To use this you'll need to: // // 1. Find a monochrome image which is 400x300 pixels in size. // // 2. Process it into a series of lines, via the "export.pl" script. // // 3. Upload the result to a remote HTTP-server. // // 4. Point this script at the URL to that file. // // 5. Profit. // // Steve // -- // // // ePaper library. // #include <GxEPD.h> #include <GxGDEW042T2/GxGDEW042T2.cpp> // 4.2" b/w #include <GxIO/GxIO_SPI/GxIO_SPI.cpp> #include <GxIO/GxIO.cpp> // // WiFi manager library, for working as an access-point, etc. // #include "WiFiManager.h" // // WiFi & over the air updates // #include <ESP8266WiFi.h> #include <ArduinoOTA.h> // // Headers for SSL/MAC access. // #include <ESP8266WiFi.h> #include <ESP8266HTTPClient.h> // // Debug messages over the serial console. // #include "debug.h" // // The name of this project. // // Used for the Access-Point name, and for OTA-identification. // #define PROJECT_NAME "EPAPER-IMAGE" // // The helper & object for the epaper display. // GxIO_Class io(SPI, SS, 0, 2); GxEPD_Class display(io); // // Setup, which is called once. // void setup() { // // Setup serial-console & the display. // Serial.begin(115200); display.init(); // // Handle the WiFi connection. // WiFiManager wifiManager; wifiManager.setAPCallback(access_point_callback); wifiManager.autoConnect(PROJECT_NAME); } // // If we're unconfigured we run an access-point. // // Show that, explicitly. // void access_point_callback(WiFiManager* myWiFiManager) { DEBUG_LOG("AccessPoint Mode Enabled.\n"); } // // Fetch and display the image specified at the given URL // void display_url(const char * m_path) { // // Clear the display. // display.fillScreen(GxEPD_WHITE); display.setTextColor(GxEPD_BLACK); // // The host we're going to fetch from. // char m_host[] = "plain.steve.fi"; char m_tmp[50] = { '\0' }; memset(m_tmp, '\0', sizeof(m_tmp)); /* * Create a HTTP client-object. */ WiFiClient m_client; int port = 80; // // Keep track of where we are. // bool finishedHeaders = false; bool currentLineIsBlank = true; String m_body = ""; long now; DEBUG_LOG("About to make the connection to '%s:%d' for %s\n", m_host, port, m_path); // // Connect to the remote host, and send the HTTP request. // if (!m_client.connect(m_host, port)) { DEBUG_LOG("Failed to connect"); return; } DEBUG_LOG("Making HTTP-request\n"); m_client.print("GET "); m_client.print(m_path); m_client.println(" HTTP/1.0"); m_client.print("Host: "); m_client.println(m_host); m_client.println("User-Agent: epaper-web-image/1.0"); m_client.println("Connection: close"); m_client.println(""); DEBUG_LOG("Made HTTP-request\n"); now = millis(); // // Test for timeout waiting for the first byte. // while (m_client.available() == 0) { if (millis() - now > 15000) { Serial.println(">>> Client Timeout !"); m_client.stop(); return; } } int l = 0; // // Now we hope we'll have smooth-sailing, and we'll // read a single character until we've got it all // while (m_client.available()) { char c = m_client.read(); if (finishedHeaders) { // // Here we're reading the body of the response. // // We keep appending characters, but we don't want to // store the whole damn response in a string, because // that would eat all our RAM. // // Instead we read each character until we find a newline // // Once we find a newline we process that input, then // we keep reading more. // if (c == '\n' && strlen(m_tmp) > 5) { l += 1; // // Here we've read a complete line. // // The line will be of the form "x,y,X,Y", so we // need to parse that into four integers, and then // draw the appropriate line on our display. // int line[5] = { 0 }; int i = 0; // // Parse into values. // char* ptr = strtok(m_tmp, ","); while (ptr != NULL && i < 4) { // create next part line[i] = atoi(ptr); i++; ptr = strtok(NULL, ","); } // // Draw the line. // display.drawLine(line[1], line[0], line[3], line[2], GxEPD_BLACK); // // Now we nuke the memory so that we can read // another line. // memset(m_tmp, '\0', sizeof(m_tmp)); } else { // TODO - buffer-overflow. m_tmp[strlen(m_tmp)] = c; } } else { if (currentLineIsBlank && c == '\n') finishedHeaders = true; } if (c == '\n') currentLineIsBlank = true; else if (c != '\r') currentLineIsBlank = false; // Wait for more packetses delay(1); } DEBUG_LOG("Nothing more is available - terminating"); m_client.stop(); DEBUG_LOG("Processed %d lines", l); // // Trigger the update of the display. // display.update(); } void loop() { char *one = "/Hardware/d1-epaper/knot.dat"; char *two = "/Hardware/d1-epaper/skull.dat"; static int i = 0; // // Have we displayed the image? // static bool show = false; // // The time we last displayed the image. static long displayed = 0; // // If we've not shown the image, then do so. // if (show == false) { // // Fetch / display // if (i == 0) { display_url(one); i = 1; } else { display_url(two); i = 0; } // // And never again. // show = true; displayed = millis(); } // // Update the image 60 seconds. // // Do this by pretending we've never updated, even though we have. // if (millis() - displayed > (60 * 1000)) show = false; }
[ "steve@steve.org.uk" ]
steve@steve.org.uk
fd45f4d4b2b3fd38055744616371abfd6838f076
f43abbea7417d01eea1ef353ebf6ed52bfef6986
/MVS2019/RuslanIvanov/mytest/stack/vector/Source.cpp
3d34e2964b8898bf1d8faf636828febdbd500634
[]
no_license
RuslanIvanov/WindowsTraning
dbf1c5f7335c096ca9132881f4f83e433307bb9b
b1c2b7e950b554b760834b54802b56fc99a5d831
refs/heads/master
2022-02-10T07:22:47.604030
2022-02-02T09:06:12
2022-02-02T09:06:12
229,194,648
0
0
null
null
null
null
UTF-8
C++
false
false
433
cpp
#include <vector> #include <iostream> int main() { std::vector<int> c{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; for (auto& i : c) { std::cout << i << " "; } std::cout << '\n'; c.erase(c.begin()); for (auto& i : c) { std::cout << i << " "; } std::cout << '\n'; c.erase(c.begin() + 2, c.begin() + 5); for (auto& i : c) { std::cout << i << " "; } std::cout << '\n'; }
[ "rus_iv@list.ru" ]
rus_iv@list.ru
98973dae25f40c2263f48cd9b0c1304fb7674c7e
12840d008d17df59a37997691774fa87e5f227be
/zhongzihao-personal/codeforces/371/371-2-D.cpp
e167560d8322f74559736582100393ee9ccee3ce
[]
no_license
clatisus/ACM-ICPC-Team-Archive
4b6c3d2dfb300f928f4f201ae156bde5f871a734
7410ddfa81de8750668d8ac2c334987b5af7e613
refs/heads/master
2022-07-21T13:03:22.768792
2020-01-04T11:30:43
2020-01-04T11:30:43
136,951,655
1
0
null
null
null
null
UTF-8
C++
false
false
1,583
cpp
#include<bits/stdc++.h> const int N = 2; const int M = 16; int ans[N][N][N]; int now[N][N]; int n; void solve(int op1, int op2, int op3){ int left, right; left = 1, right = ans[op1][op2][op3]; if (!op3){ std::swap(left, right); right = ans[op1][op2][1]; } while (left < right){ int mid = op3 ? left + right >> 1 : left + right + 1 >> 1; ans[op1][op2][op3] = mid; printf("?"); for (int j = 0; j < N; ++ j){ for (int i = 0; i < N; ++ i){ printf(" %d", ans[op1][i][j]); } } printf("\n"); fflush(stdout); int x; scanf("%d", &x); if (op1){ bool flag = true; for (int i = 0; i < N; ++ i){ for (int j = 0; j < N; ++ j){ if (j){ if (ans[op1][i][j] < ans[0][i][j]){ flag = false; } } else{ if (ans[op1][i][j] > ans[0][i][j]){ flag = false; } } } } if (flag){ -- x; } } if (op3){ if (x){ right = mid; } else{ left = mid + 1; } } else{ if (x){ left = mid; } else{ right = mid - 1; } } } ans[op1][op2][op3] = left; } int main(){ scanf("%d", &n); for (int i = 0; i < N; ++ i){ for (int j = 0; j < N; ++ j){ for (int k = N - 1; ~k; -- k){ ans[i][j][k] = k ? n : 1; } } } for (int i = 0; i < N; ++ i){ for (int j = 0; j < N; ++ j){ for (int k = N - 1; ~k; -- k){ solve(i, j, k); } } } printf("!"); for (int i = 0; i < N; ++ i){ for (int k = 0; k < N; ++ k){ for (int j = 0; j < N; ++ j){ printf(" %d", ans[i][j][k]); } } } printf("\n"); fflush(stdout); return 0; }
[ "clatisus@gmail.com" ]
clatisus@gmail.com
f049bc6c39a58c4b648e81671feba92560419d98
b63a741200c47e3d7cf7f84a3b5497bcd43a77d7
/soccer/src/object_recognition/src/objects/camera_object.cpp
b3787dd80c2ee9c516353f82e70e8111564d87ac
[]
no_license
ThinkerBoy/soccerbot
9fdc8a791862b3e49c31a11c24b346e8aad59e52
b2e325e0d73f0e2e9b8de5cfb955af3ed68ccfac
refs/heads/master
2021-09-09T22:36:58.715753
2018-03-20T02:36:44
2018-03-20T02:36:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
75
cpp
#include "objects/camera_object.hpp" CameraObject::CameraObject() { }
[ "vuwij@me.com" ]
vuwij@me.com
eb0ed378a8a84a634214196edabddfd86ad41def
ba64cf68fa030cc3ee95e758d9b7324901bb71e5
/2019-Robot-Code/src/main/cpp/commands/SpeedTest.cpp
31bbaf54e95e2b2502980f77d555856dbc991278
[]
no_license
PRHS-Robotics/2019-Robot-Code
9c1319a363c753daf938944e25c78877d5464b6d
5818d37bb6c38cc263f6c792da047bd407fe7ce7
refs/heads/master
2020-04-05T02:27:30.696769
2019-03-23T14:02:28
2019-03-23T14:02:36
156,477,559
4
1
null
null
null
null
UTF-8
C++
false
false
589
cpp
#include "commands/SpeedTest.h" #include "Robot.h" #include "subsystems/DriveTrain.h" SpeedTest::SpeedTest(Input *input) : m_input(input), Command("SpeedTest", *static_cast< frc::Subsystem* >(Robot::m_driveTrain.get())) { } void SpeedTest::Initialize() { } void SpeedTest::Execute() { Robot::m_driveTrain->drive(m_input->getInput().t, m_input->getInput().t, buttonValue(m_input->getInput(), "TRIGGER")); } bool SpeedTest::IsFinished() { return false; } void SpeedTest::End() { Robot::m_driveTrain->drive(0.0, 0.0); } void SpeedTest::Interrupted() { End(); }
[ "sciencedude2003@gmail.com" ]
sciencedude2003@gmail.com
90654c6a83d295745498a596b68849a85f611c22
92cee0ea17efeb26c8941c068af958b57566a72c
/Terrain.h
10716ca6eb62905e9c09dab4a1cc19626a5e54b9
[]
no_license
vipnet1/StrategyTest
76b87f5b78def0ec0090e1a19d1b0e5856771da4
7c429e7707656d5dbd5dfdc1bca6c541d32277a1
refs/heads/master
2023-06-15T15:34:35.257086
2021-07-14T15:03:42
2021-07-14T15:03:42
385,967,243
0
0
null
null
null
null
UTF-8
C++
false
false
1,540
h
#pragma once #include "Texture.h" #include "Shader.h" #include "VertexArray.h" #include "VertexBuffer.h" #include "IndexBuffer.h" #define VERTEX_COUNT 64 //should be size of heightMap #define WORLD_SIZE 128.0f struct RenderData { VertexBuffer* vb; IndexBuffer* ib; }; static float barryCentric(glm::vec3 p1, glm::vec3 p2, glm::vec3 p3, glm::vec2 pos) { float det = (p2.z - p3.z) * (p1.x - p3.x) + (p3.x - p2.x) * (p1.z - p3.z); float l1 = ((p2.z - p3.z) * (pos.x - p3.x) + (p3.x - p2.x) * (pos.y - p3.z)) / det; float l2 = ((p3.z - p1.z) * (pos.x - p3.x) + (p1.x - p3.x) * (pos.y - p3.z)) / det; float l3 = 1.0f - l1 - l2; return l1 * p1.y + l2 * p2.y + l3 * p3.y; } class Terrain { private: float gx; float gz; int verticesCount; float **heights; VertexArray* va; VertexBuffer* vb; IndexBuffer* ib; Shader* shader; Texture* black, * red, * green, * blue, * blend; RenderData genVertices(const char* heightMapPath); float getVertexHeight(int x, int z, unsigned char* data, int nrChannels); glm::vec3 calculateNormal(int x, int z, unsigned char* data, int nrChannels); public: Terrain(float x, float z, const char* heightMapPath, const char* texBlack, const char* texRed, const char* texGreen, const char* texBlue, const char* texBlend); inline Shader* getShader() { return shader; } inline int getVerticesCount() const { return verticesCount; } float getHeightOfTerrain(float worldX, float worldZ) const; void Bind() const; void SetDirLightProperties(glm::vec3 dir, glm::vec3 ambient, glm::vec3 diff); };
[ "timur.pichkhadze@gmail.com" ]
timur.pichkhadze@gmail.com
b009b9f39d70114edab54331df16ead8e5ed7855
9e132cf7bd429c8ea78582e0347c9a0084fdae09
/src/ass/ass3.cc
ab64d8543d214005291cc2687da63c77cab30325
[]
no_license
sfcompaz/rmmm
d0cd72341641e1e2f03f8031b0e0ab5ad0715eef
2dbdee000a27cbece43b1380d04294dc3aeaa6b0
refs/heads/master
2020-07-01T23:05:27.143193
2016-02-11T12:58:45
2016-02-11T12:58:45
13,830,028
0
0
null
null
null
null
UTF-8
C++
false
false
194
cc
#include "ass.ih" Ass::Ass(Ass &&tmp) : d_capacity(tmp.d_capacity), d_size(tmp.d_size), d_hashes(tmp.d_hashes) { tmp.d_size = 0; tmp.d_capacity = 0; tmp.d_hashes = 0; }
[ "reneprogrammeert@xs4all.nl" ]
reneprogrammeert@xs4all.nl
5dcc8e26772efe937dc7b4f34af9c2ab544373a8
bdd6985d528d1605633257be6359dec10f0d303a
/Server-Client/Vetorzao.cpp
d025d9203aa9745cc495a9c4d1f878dfe4ca882d
[]
no_license
Uncharacteristically/BD_g8
a64bd2be55b8656d229f5bbad12c7fb9348ab66e
17e87a55dc1cc9a179835f0b3c8e341965ea5de5
refs/heads/master
2021-05-27T00:31:23.023210
2012-11-28T22:54:31
2012-11-28T22:54:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,526
cpp
/* * File: Vetorzao.cpp * Author: alexandre * * Created on October 19, 2012, 8:15 PM */ #include "Vetorzao.h" Vetorzao::Vetorzao() { } void Vetorzao::reset(string Coord) { int w; int vi=0; int term_a=0; char term[20]; for(w=0; w<SIZE; w=w+1) { while(Coord[vi]==' ') vi=vi+1; while(Coord[vi]!=' ') { term[term_a]=Coord[vi]; term_a=term_a+1; vi=vi+1; } term[term_a] = ' '; coordenadas[w] = atof(term); term_a=0; } } void Vetorzao::reset(string Coord, int ind) { indice=ind; reset(Coord); } void Vetorzao::resetNor(const char * myfile) { string initial; ifstream file_nor; // descritor do arquivo string output; // auxiliar de leitura file_nor.open(myfile, ios::out); file_nor >> output; while (!file_nor.eof()) { initial.append(output); initial.append(" "); file_nor >> output; } reset(initial); } double Vetorzao::compararDistancia(Vetorzao Outro) { int w; double sum=0; double aux=0; for(w=0; w<SIZE; w=w+1) { aux=coordenadas[w]-Outro.coordenadas[w]; aux=aux*aux; sum=sum+aux; } return sum; } // Calcula usando a euclidiana double Vetorzao::compararDistancia(Vetorzao Outro, double Max) { int w; int y; double sum=0; double aux=0; for(w=0; w<SIZE; w=w+1) { aux=coordenadas[w]-Outro.coordenadas[w]; aux=aux*aux; sum=sum+aux; if(sum>Max) w=SIZE; } return sum; } void Vetorzao::distribution() { int dominios=10; int space = 1000/dominios; int it; double sum=0; cout << endl; for(it=0; it<SIZE; it=it+1) { sum=sum+coordenadas[it]; if(((it+1)%space)==0) { sum=sum*100; // sum=(sum/1)*100; cout << "De " << ((it+1)/space)-1 << " Até " << (it+1)/space << " : " << sum << endl; sum=sum=0; } } } // Calcula todas as Distancias Euclidianas Normalizadas, devolve resultado no heap double Vetorzao::normalized_Euclidean_distance(vector <Vetorzao> Outros, KMaxHeap * heapzim) { double x_barra_j[SIZE]; double s_barra_j[SIZE]; double zij; double zkj; double sum=0; int i; int j; for(i=0; i<SIZE; i=i+1) { x_barra_j[i]=0; s_barra_j[i]=0; } // Obtem a media for(i=0; i<Outros.size(); i=i+1) { for(j=0; j<SIZE; j=j+1) x_barra_j[j]=x_barra_j[j]+Outros[i].coordenadas[j]; } for(i=0; i<SIZE; i=i+1) x_barra_j[i]=x_barra_j[i]/1000; // Obtem o desvio padrao for(i=0; i<Outros.size(); i=i+1) { for(j=0; j<SIZE; j=j+1) s_barra_j[j]=s_barra_j[j]+((Outros[i].coordenadas[j]-x_barra_j[j])*(Outros[i].coordenadas[j]-x_barra_j[j])); } for(j=0; j<SIZE; j=j+1) s_barra_j[j]=sqrt(s_barra_j[j]/(Outros.size()-1)); // Faz a soma de todos e armazena os melhores no Heap for(i=0; i<Outros.size(); i=i+1) { sum=0; for(j=0; j<SIZE; j=j+1) { zij=(coordenadas[j]-x_barra_j[j])/s_barra_j[j]; zkj=(Outros[i].coordenadas[j]-x_barra_j[j])/s_barra_j[j]; sum=sum+((zij-zkj)*(zij-zkj)); } sum=sqrt(sum); //cout << "Distance(id=" << Outros[i].indice << ") -> " << sum << endl; //heapzim.Attempt(sum, Outros[i].indice); (* heapzim).Attempt(sum, Outros[i].indice); } (* heapzim).OrderHash(); (* heapzim).PrintHash(); } // Calcula todas as Distancias Euclidianas Normalizadas, devolve resultado no heap double Vetorzao::normalized_Euclidean_distance(vector <Vetorzao> Outros, KMaxHeap * heapzim, double * x_barra_j, double * s_barra_j) { double zij; double zkj; double sum=0; int i; int j; // Faz a soma de todos e armazena os melhores no Heap for(i=0; i<Outros.size(); i=i+1) { sum=0; for(j=0; j<SIZE; j=j+1) { zij=(coordenadas[j]-x_barra_j[j])/s_barra_j[j]; zkj=(Outros[i].coordenadas[j]-x_barra_j[j])/s_barra_j[j]; sum=sum+((zij-zkj)*(zij-zkj)); } sum=sqrt(sum); (* heapzim).Attempt(sum, Outros[i].indice); } (* heapzim).OrderHash(); //(* heapzim).PrintHash(); }
[ "alexandre@Alexandres-MacBook-Air.local" ]
alexandre@Alexandres-MacBook-Air.local
7debf79bc442a101416c52076a81d3660a515cdc
ad273708d98b1f73b3855cc4317bca2e56456d15
/aws-cpp-sdk-kms/include/aws/kms/model/ImportKeyMaterialResult.h
70fa66bd2a0ec2d52f511054fed506c72a0819e1
[ "MIT", "Apache-2.0", "JSON" ]
permissive
novaquark/aws-sdk-cpp
b390f2e29f86f629f9efcf41c4990169b91f4f47
a0969508545bec9ae2864c9e1e2bb9aff109f90c
refs/heads/master
2022-08-28T18:28:12.742810
2020-05-27T15:46:18
2020-05-27T15:46:18
267,351,721
1
0
Apache-2.0
2020-05-27T15:08:16
2020-05-27T15:08:15
null
UTF-8
C++
false
false
1,198
h
/* * Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ #pragma once #include <aws/kms/KMS_EXPORTS.h> namespace Aws { template<typename RESULT_TYPE> class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace KMS { namespace Model { class AWS_KMS_API ImportKeyMaterialResult { public: ImportKeyMaterialResult(); ImportKeyMaterialResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); ImportKeyMaterialResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); }; } // namespace Model } // namespace KMS } // namespace Aws
[ "henso@amazon.com" ]
henso@amazon.com
ab3ba6180e327e9091ae75a4893465b82060bce7
4f21cd511b2b9f7a9c944027a2bc643071188d25
/Code Design and Data Structures/Exercises/DynamicArrays/DynamicArrays/main.cpp
e89cb6d7adbeced2063f08b12ffff432bf1c3c45
[]
no_license
MoltenMoustache/AIE_Year_One
f87b5405938c9894b90949e19c7f10376359d67b
5a50c65e120e9c466c718e77ef42c608073a8094
refs/heads/master
2020-04-26T15:03:52.077158
2019-05-18T11:29:07
2019-05-18T11:29:07
173,635,406
0
0
null
null
null
null
UTF-8
C++
false
false
1,583
cpp
#include <iostream> #include "dynamic_array.h" #include "linked_list.h" #include "stack.h" #include "Queue.h" #include <ctime> int main() { srand(time(nullptr)); //// *** DYNAMIC ARRAY *** std::cout << "Dynamic Array:\n"; dynamic_array<int> intArray; // Pushes 10 random numbers between 1 & 50, then displays the current iteration of the array. for (size_t i = 0; i < 10; i++) { intArray.push_back(rand() % 50); } intArray.display(); // sorts array and displays it again intArray.quickSort(); std::cout << "Sorted Array: "; intArray.display(); // Pushes the value '999' to intArray[4] intArray.push_at_index(999, 4); // Removes the value from intArray[4] intArray.remove_at_index(4); intArray.display(); intArray.clear(); /*for (size_t i = 0; i < 10; i++) { intArray.push_front(rand() % 50); }*/ //intArray.push_at_index(999, 1); intArray.push_back(54); intArray.push_front(1500); intArray.push_front(1500); intArray.push_front(1500); int newArray[5] = { 5, 6, 7, 8, 9 }; intArray.push_at_index(newArray, 5, 2); intArray.display(); intArray.clear(); intArray.concadenate(newArray, 5); intArray.concadenate(newArray, 5); intArray.display(); /* [X] Dynamic Array [X] Linked List [X] Binary Tree [X] Search algorithm [X] Sort algorithm [X] 100 Word Document about sort algorithms [X] Hash function [X] Inter process communication [ ] TDD for Simeon Says [X] Game contains at least one button [X] Error checking [X] Version control [ ] Playtest (Simeon Says) [ ] Playtest (Other Games) */ system("pause"); return 0; }
[ "45628513+MoltenMoustache@users.noreply.github.com" ]
45628513+MoltenMoustache@users.noreply.github.com
4ac1c9e3ddf4301351abd8c8b9c834e5ac55d402
b7f3edb5b7c62174bed808079c3b21fb9ea51d52
/components/offline_pages/core/downloads/download_ui_adapter.cc
b1455972579121d839b9a3a093a8f2c447828488
[ "BSD-3-Clause" ]
permissive
otcshare/chromium-src
26a7372773b53b236784c51677c566dc0ad839e4
64bee65c921db7e78e25d08f1e98da2668b57be5
refs/heads/webml
2023-03-21T03:20:15.377034
2020-11-16T01:40:14
2020-11-16T01:40:14
209,262,645
18
21
BSD-3-Clause
2023-03-23T06:20:07
2019-09-18T08:52:07
null
UTF-8
C++
false
false
19,658
cc
// Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/offline_pages/core/downloads/download_ui_adapter.h" #include <utility> #include "base/bind.h" #include "base/bind_helpers.h" #include "base/check.h" #include "base/guid.h" #include "base/metrics/histogram_macros.h" #include "base/notreached.h" #include "base/threading/thread_task_runner_handle.h" #include "base/trace_event/trace_event.h" #include "components/offline_items_collection/core/fail_state.h" #include "components/offline_pages/core/background/request_coordinator.h" #include "components/offline_pages/core/background/request_notifier.h" #include "components/offline_pages/core/background/save_page_request.h" #include "components/offline_pages/core/client_namespace_constants.h" #include "components/offline_pages/core/downloads/offline_item_conversions.h" #include "components/offline_pages/core/offline_page_client_policy.h" #include "components/offline_pages/core/offline_page_model.h" #include "components/offline_pages/core/page_criteria.h" #include "components/offline_pages/core/visuals_decoder.h" #include "ui/gfx/image/image.h" namespace { // Value of this constant doesn't matter, only its address is used. const char kDownloadUIAdapterKey[] = ""; } // namespace namespace offline_pages { namespace { bool RequestsMatchesGuid(const std::string& guid, const SavePageRequest& request) { return request.client_id().id == guid && GetPolicy(request.client_id().name_space).is_supported_by_download; } std::vector<int64_t> FilterRequestsByGuid( std::vector<std::unique_ptr<SavePageRequest>> requests, const std::string& guid) { std::vector<int64_t> request_ids; for (const auto& request : requests) { if (RequestsMatchesGuid(guid, *request)) request_ids.push_back(request->request_id()); } return request_ids; } } // namespace // static DownloadUIAdapter* DownloadUIAdapter::FromOfflinePageModel( OfflinePageModel* model) { DCHECK(model); return static_cast<DownloadUIAdapter*>( model->GetUserData(kDownloadUIAdapterKey)); } // static void DownloadUIAdapter::AttachToOfflinePageModel( std::unique_ptr<DownloadUIAdapter> adapter, OfflinePageModel* model) { DCHECK(adapter); DCHECK(model); model->SetUserData(kDownloadUIAdapterKey, std::move(adapter)); } DownloadUIAdapter::DownloadUIAdapter( OfflineContentAggregator* aggregator, OfflinePageModel* model, RequestCoordinator* request_coordinator, std::unique_ptr<VisualsDecoder> visuals_decoder, std::unique_ptr<Delegate> delegate) : aggregator_(aggregator), model_(model), request_coordinator_(request_coordinator), visuals_decoder_(std::move(visuals_decoder)), delegate_(std::move(delegate)) { delegate_->SetUIAdapter(this); if (aggregator_) aggregator_->RegisterProvider(kOfflinePageNamespace, this); if (model_) model_->AddObserver(this); if (request_coordinator_) request_coordinator_->AddObserver(this); } DownloadUIAdapter::~DownloadUIAdapter() { if (aggregator_) aggregator_->UnregisterProvider(kOfflinePageNamespace); } void DownloadUIAdapter::AddObserver( OfflineContentProvider::Observer* observer) { DCHECK(observer); if (observers_.HasObserver(observer)) return; observers_.AddObserver(observer); } void DownloadUIAdapter::RemoveObserver( OfflineContentProvider::Observer* observer) { DCHECK(observer); if (!observers_.HasObserver(observer)) return; observers_.RemoveObserver(observer); } void DownloadUIAdapter::OfflinePageModelLoaded(OfflinePageModel* model) { // This signal is not used here. } // OfflinePageModel::Observer void DownloadUIAdapter::OfflinePageAdded(OfflinePageModel* model, const OfflinePageItem& added_page) { DCHECK(model == model_); if (!delegate_->IsVisibleInUI(added_page.client_id)) return; const bool is_suggested = GetPolicy(added_page.client_id.name_space).is_suggested; OfflineItem offline_item( OfflineItemConversions::CreateOfflineItem(added_page, is_suggested)); // We assume the pages which are non-suggested and shown in Download Home UI // should be coming from requests, so their corresponding offline items should // have been added to the UI when their corresponding requests were created. // So OnItemUpdated is used for non-suggested pages. // Otherwise, for pages of suggested articles, they'll be added to the UI // since they're added to Offline Page database directly, so OnItemsAdded is // used. for (auto& observer : observers_) { if (!is_suggested) observer.OnItemUpdated(offline_item, base::nullopt); else observer.OnItemsAdded({offline_item}); } } // OfflinePageModel::Observer void DownloadUIAdapter::OfflinePageDeleted(const OfflinePageItem& item) { if (!delegate_->IsVisibleInUI(item.client_id)) return; for (auto& observer : observers_) { observer.OnItemRemoved(ContentId(kOfflinePageNamespace, item.client_id.id)); } } // OfflinePageModel::Observer void DownloadUIAdapter::ThumbnailAdded(OfflinePageModel* model, const int64_t offline_id, const std::string& thumbnail) { model_->GetPageByOfflineId( offline_id, base::BindOnce(&DownloadUIAdapter::OnPageGetForThumbnailAdded, weak_ptr_factory_.GetWeakPtr())); } // RequestCoordinator::Observer void DownloadUIAdapter::OnAdded(const SavePageRequest& added_request) { if (!delegate_->IsVisibleInUI(added_request.client_id())) return; OfflineItem offline_item( OfflineItemConversions::CreateOfflineItem(added_request)); for (auto& observer : observers_) observer.OnItemsAdded({offline_item}); } // RequestCoordinator::Observer void DownloadUIAdapter::OnCompleted( const SavePageRequest& request, RequestNotifier::BackgroundSavePageResult status) { if (!delegate_->IsVisibleInUI(request.client_id())) return; if (delegate_->MaybeSuppressNotification(request.request_origin(), request.client_id())) { return; } OfflineItem item = OfflineItemConversions::CreateOfflineItem(request); if (status == RequestNotifier::BackgroundSavePageResult::SUCCESS) { // If the request is completed successfully, it means there should already // be a OfflinePageAdded fired. So doing nothing in this case. } else if (status == RequestNotifier::BackgroundSavePageResult::USER_CANCELED || status == RequestNotifier::BackgroundSavePageResult:: DOWNLOAD_THROTTLED) { for (auto& observer : observers_) observer.OnItemRemoved(item.id); } else { item.state = offline_items_collection::OfflineItemState::FAILED; // Actual cause could be server or network related, but we need to pick // a fail_state. item.fail_state = offline_items_collection::FailState::SERVER_FAILED; for (auto& observer : observers_) observer.OnItemUpdated(item, base::nullopt); } } // RequestCoordinator::Observer void DownloadUIAdapter::OnChanged(const SavePageRequest& request) { if (!delegate_->IsVisibleInUI(request.client_id())) return; OfflineItem offline_item(OfflineItemConversions::CreateOfflineItem(request)); for (OfflineContentProvider::Observer& observer : observers_) observer.OnItemUpdated(offline_item, base::nullopt); } // RequestCoordinator::Observer void DownloadUIAdapter::OnNetworkProgress(const SavePageRequest& request, int64_t received_bytes) { if (!delegate_->IsVisibleInUI(request.client_id())) return; OfflineItem offline_item(OfflineItemConversions::CreateOfflineItem(request)); offline_item.received_bytes = received_bytes; for (auto& observer : observers_) observer.OnItemUpdated(offline_item, base::nullopt); } void DownloadUIAdapter::GetAllItems( OfflineContentProvider::MultipleItemCallback callback) { std::unique_ptr<OfflineContentProvider::OfflineItemList> offline_items = std::make_unique<OfflineContentProvider::OfflineItemList>(); model_->GetAllPages(base::BindOnce( &DownloadUIAdapter::OnOfflinePagesLoaded, weak_ptr_factory_.GetWeakPtr(), std::move(callback), std::move(offline_items))); } void DownloadUIAdapter::GetVisualsForItem(const ContentId& id, GetVisualsOptions options, VisualsCallback visuals_callback) { PageCriteria criteria; criteria.guid = id.id; criteria.maximum_matches = 1; model_->GetPagesWithCriteria( criteria, base::BindOnce(&DownloadUIAdapter::OnPageGetForVisuals, weak_ptr_factory_.GetWeakPtr(), id, options, std::move(visuals_callback))); } void DownloadUIAdapter::GetShareInfoForItem(const ContentId& id, ShareCallback share_callback) { delegate_->GetShareInfoForItem(id, std::move(share_callback)); } void DownloadUIAdapter::RenameItem(const ContentId& id, const std::string& name, RenameCallback callback) { NOTREACHED(); } void DownloadUIAdapter::ChangeSchedule( const ContentId& id, base::Optional<OfflineItemSchedule> schedule) { NOTREACHED(); } void DownloadUIAdapter::OnPageGetForVisuals( const ContentId& id, GetVisualsOptions options, VisualsCallback visuals_callback, const std::vector<OfflinePageItem>& pages) { if (pages.empty()) { base::ThreadTaskRunnerHandle::Get()->PostTask( FROM_HERE, base::BindOnce(std::move(visuals_callback), id, nullptr)); return; } const OfflinePageItem* page = &pages[0]; VisualResultCallback callback = base::BindOnce(std::move(visuals_callback), id); if (page->client_id.name_space == kSuggestedArticlesNamespace) { // Report PrefetchedItemHasThumbnail along with result callback. auto report_and_callback = [](VisualResultCallback result_callback, std::unique_ptr<offline_items_collection::OfflineItemVisuals> visuals) { UMA_HISTOGRAM_BOOLEAN( "OfflinePages.DownloadUI.PrefetchedItemHasThumbnail", visuals && !visuals->icon.IsEmpty()); std::move(result_callback).Run(std::move(visuals)); }; callback = base::BindOnce(report_and_callback, std::move(callback)); } model_->GetVisualsByOfflineId( page->offline_id, base::BindOnce(&DownloadUIAdapter::OnVisualsLoaded, weak_ptr_factory_.GetWeakPtr(), options, std::move(callback))); } void DownloadUIAdapter::OnVisualsLoaded( GetVisualsOptions options, VisualResultCallback callback, std::unique_ptr<OfflinePageVisuals> visuals) { DCHECK(visuals_decoder_); if (!visuals || (visuals->thumbnail.empty() && visuals->favicon.empty())) { // PostTask not required, GetVisualsByOfflineId does it for us. std::move(callback).Run(nullptr); return; } DecodeThumbnail(std::move(visuals), options, std::move(callback)); } void DownloadUIAdapter::DecodeThumbnail( std::unique_ptr<OfflinePageVisuals> visuals, GetVisualsOptions options, VisualResultCallback callback) { if (!options.get_icon) { DecodeFavicon(std::move(visuals->favicon), options, std::move(callback), gfx::Image()); return; } // If visuals->thumbnail is empty, DecodeAndCropImage will give the // callback an empty gfx::Image. visuals_decoder_->DecodeAndCropImage( visuals->thumbnail, base::BindOnce(&DownloadUIAdapter::DecodeFavicon, weak_ptr_factory_.GetWeakPtr(), std::move(visuals->favicon), options, std::move(callback))); } void DownloadUIAdapter::DecodeFavicon(std::string favicon, GetVisualsOptions options, VisualResultCallback callback, const gfx::Image& thumbnail) { auto make_visuals_lambda = [](VisualResultCallback callback, const gfx::Image& thumbnail, const gfx::Image& favicon) { auto item_visuals = std::make_unique<offline_items_collection::OfflineItemVisuals>( thumbnail, favicon); std::move(callback).Run(std::move(item_visuals)); }; if (!options.get_custom_favicon) { make_visuals_lambda(std::move(callback), thumbnail, gfx::Image()); return; } visuals_decoder_->DecodeAndCropImage( std::move(favicon), base::BindOnce(make_visuals_lambda, std::move(callback), thumbnail)); } void DownloadUIAdapter::OnPageGetForThumbnailAdded( const OfflinePageItem* page) { if (!page) return; auto offline_item = OfflineItemConversions::CreateOfflineItem( *page, GetPolicy(page->client_id.name_space).is_suggested); offline_items_collection::UpdateDelta update_delta; update_delta.visuals_changed = true; for (auto& observer : observers_) observer.OnItemUpdated(offline_item, update_delta); } // TODO(dimich): Remove this method since it is not used currently. If needed, // it has to be updated to fault in the initial load of items. Currently it // simply returns nullopt if the cache is not loaded. void DownloadUIAdapter::GetItemById( const ContentId& id, OfflineContentProvider::SingleItemCallback callback) { PageCriteria criteria; criteria.guid = id.id; criteria.maximum_matches = 1; model_->GetPagesWithCriteria( criteria, base::BindOnce(&DownloadUIAdapter::OnPageGetForGetItem, weak_ptr_factory_.GetWeakPtr(), id, std::move(callback))); } void DownloadUIAdapter::OnPageGetForGetItem( const ContentId& id, OfflineContentProvider::SingleItemCallback callback, const std::vector<OfflinePageItem>& pages) { if (!pages.empty()) { const OfflinePageItem* page = &pages[0]; const bool is_suggested = GetPolicy(page->client_id.name_space).is_suggested; base::ThreadTaskRunnerHandle::Get()->PostTask( FROM_HERE, base::BindOnce(std::move(callback), OfflineItemConversions::CreateOfflineItem( *page, is_suggested))); return; } request_coordinator_->GetAllRequests( base::BindOnce(&DownloadUIAdapter::OnAllRequestsGetForGetItem, weak_ptr_factory_.GetWeakPtr(), id, std::move(callback))); } void DownloadUIAdapter::OnAllRequestsGetForGetItem( const ContentId& id, OfflineContentProvider::SingleItemCallback callback, std::vector<std::unique_ptr<SavePageRequest>> requests) { base::Optional<OfflineItem> offline_item; for (const auto& request : requests) { if (request->client_id().id == id.id) offline_item = OfflineItemConversions::CreateOfflineItem(*request); } base::ThreadTaskRunnerHandle::Get()->PostTask( FROM_HERE, base::BindOnce(std::move(callback), offline_item)); } void DownloadUIAdapter::OpenItem(const OpenParams& open_params, const ContentId& id) { PageCriteria criteria; criteria.guid = id.id; criteria.maximum_matches = 1; model_->GetPagesWithCriteria( criteria, base::BindOnce(&DownloadUIAdapter::OnPageGetForOpenItem, weak_ptr_factory_.GetWeakPtr(), open_params)); } void DownloadUIAdapter::OnPageGetForOpenItem( const OpenParams& open_params, const std::vector<OfflinePageItem>& pages) { if (pages.empty()) return; const OfflinePageItem* page = &pages[0]; const bool is_suggested = GetPolicy(page->client_id.name_space).is_suggested; OfflineItem item = OfflineItemConversions::CreateOfflineItem(*page, is_suggested); delegate_->OpenItem(item, page->offline_id, open_params); } void DownloadUIAdapter::RemoveItem(const ContentId& id) { PageCriteria criteria; criteria.supported_by_downloads = true; criteria.guid = id.id; model_->DeletePagesWithCriteria( criteria, base::BindRepeating(&DownloadUIAdapter::OnDeletePagesDone, weak_ptr_factory_.GetWeakPtr())); } void DownloadUIAdapter::CancelDownload(const ContentId& id) { auto predicate = base::BindRepeating(&RequestsMatchesGuid, id.id); request_coordinator_->RemoveRequestsIf(predicate, base::DoNothing()); } void DownloadUIAdapter::PauseDownload(const ContentId& id) { // TODO(fgorski): Clean this up in a way where 2 round trips + GetAllRequests // is not necessary. request_coordinator_->GetAllRequests( base::BindOnce(&DownloadUIAdapter::PauseDownloadContinuation, weak_ptr_factory_.GetWeakPtr(), id.id)); } void DownloadUIAdapter::PauseDownloadContinuation( const std::string& guid, std::vector<std::unique_ptr<SavePageRequest>> requests) { request_coordinator_->PauseRequests( FilterRequestsByGuid(std::move(requests), guid)); } void DownloadUIAdapter::ResumeDownload(const ContentId& id, bool has_user_gesture) { // TODO(fgorski): Clean this up in a way where 2 round trips + GetAllRequests // is not necessary. if (has_user_gesture) { request_coordinator_->GetAllRequests( base::BindOnce(&DownloadUIAdapter::ResumeDownloadContinuation, weak_ptr_factory_.GetWeakPtr(), id.id)); } else { request_coordinator_->StartImmediateProcessing(base::DoNothing()); } } void DownloadUIAdapter::ResumeDownloadContinuation( const std::string& guid, std::vector<std::unique_ptr<SavePageRequest>> requests) { request_coordinator_->ResumeRequests( FilterRequestsByGuid(std::move(requests), guid)); } void DownloadUIAdapter::OnOfflinePagesLoaded( OfflineContentProvider::MultipleItemCallback callback, std::unique_ptr<OfflineContentProvider::OfflineItemList> offline_items, const MultipleOfflinePageItemResult& pages) { for (const auto& page : pages) { if (delegate_->IsVisibleInUI(page.client_id)) { std::string guid = page.client_id.id; offline_items->push_back(OfflineItemConversions::CreateOfflineItem( page, GetPolicy(page.client_id.name_space).is_suggested)); } } request_coordinator_->GetAllRequests(base::BindOnce( &DownloadUIAdapter::OnRequestsLoaded, weak_ptr_factory_.GetWeakPtr(), std::move(callback), std::move(offline_items))); } void DownloadUIAdapter::OnRequestsLoaded( OfflineContentProvider::MultipleItemCallback callback, std::unique_ptr<OfflineContentProvider::OfflineItemList> offline_items, std::vector<std::unique_ptr<SavePageRequest>> requests) { for (const auto& request : requests) { if (delegate_->IsVisibleInUI(request->client_id())) { std::string guid = request->client_id().id; offline_items->push_back( OfflineItemConversions::CreateOfflineItem(*request.get())); } } OfflineContentProvider::OfflineItemList list = *offline_items; base::ThreadTaskRunnerHandle::Get()->PostTask( FROM_HERE, base::BindOnce(std::move(callback), list)); } void DownloadUIAdapter::OnDeletePagesDone(DeletePageResult result) { // TODO(dimich): Consider adding UMA to record user actions. } } // namespace offline_pages
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
5283f1aeecc61ecfe2af4e3633780ea6c81623a1
f41781fe551719387576f025e2c89579b9eff3a2
/maze/main.cpp
b16d20249516ae6d4934677c93aa4dd5e4c0b9ec
[]
no_license
pragmadox/data_structures
a17842a6f5218b8d4560dfaee9a4a308abcd82f3
24e79cae37f60a0a67b26de0b2e581bad4e5b891
refs/heads/master
2021-01-12T15:02:45.376714
2016-12-12T19:41:20
2016-12-12T19:41:20
71,669,720
0
0
null
null
null
null
UTF-8
C++
false
false
851
cpp
#include <stdio.h> #include <iostream> #include <iomanip> #include <sstream> #include <fstream> #include <string> #include <vector> #include "maze.h" #include "stack6.h" int main() { //Create an object 'maze1' of type Maze; Maze maze1; maze1.coord_stack.initialize_stack(100); //Call each function. maze1.read_data_file(); maze1.print_vector(); cout << endl; maze1.fill_labyrinth(); maze1.print_labyrinth(); //Initialize the public coordinate variables for the entry point of the maze. int x, y; cout << "What are the coordinates for the entry point of your maze?" << endl; cout << "Row index: "; cin >> x; cout << "Column index: "; cin >> y; cout << endl; //Provide the solve function the entrance point. maze1.solve(x,y); maze1.print_coordinates(); return 0; }
[ "jared.x.price@gmail.com" ]
jared.x.price@gmail.com
d57a4ae3a97b943003397a020804760989b6a251
6128206ba3c67400a33b6237a5f1a5a0313b3d09
/Robotics/PointCloud/PointCloudFilter/Filters/RandomRemovalFilterComponent.H
d9eab0729904efc8cb1a062664495516832f3657
[]
no_license
sagargp/nrt-modules
bf9d7776d379cfc316373bd160dc46efe3caa8bd
2b033ca83a499331ee2b694411563faa3901b8fc
refs/heads/master
2021-01-18T09:51:27.255242
2012-05-09T22:24:33
2012-05-09T22:24:33
2,984,223
0
4
null
null
null
null
UTF-8
C++
false
false
3,806
h
/*! @file Algorithms/PointCloud/Filter/RandomRemovalFilterComponent.H A component for radius filtering */ // //////////////////////////////////////////////////////////////////// // // The NRT iLab Neuromorphic Vision C++ Toolkit, Copyright(C) 2000-2011 // // by the University of Southern California (USC) and the iLab at USC. // // See http://iLab.usc.edu for information about this project. // // //////////////////////////////////////////////////////////////////// // // Portions of the NRT iLab Neuromorphic Vision Toolkit are protected // // under the U.S. patent ``Computation of Intrinsic Perceptual Saliency // // in Visual Environments, and Applications'' by Christof Koch and // // Laurent Itti, California Institute of Technology, 2001 (patent // // pending; application number 09/912,225 filed July 23, 2001; see // // http://pair.uspto.gov/cgi-bin/final/home.pl for current status). // // //////////////////////////////////////////////////////////////////// // // This file is part of the NRT iLab Neuromorphic Vision C++ Toolkit. // // // // The NRT iLab Neuromorphic Vision C++ Toolkit 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, or (at your option) any later version. // // // // The NRT iLab Neuromorphic Vision C++ Toolkit 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 the NRT iLab Neuromorphic Vision C++ Toolkit; if not, // // write to the Free Software Foundation, Inc., 59 Temple Place, Suite // // 330, Boston, MA 02111-1307 USA. // // //////////////////////////////////////////////////////////////////// // // // Primary maintainer for this file: Shane Grant <wgrant@usc.edu> #ifndef ALGORITHMS_POINTCLOUD_FILTER_RANDOMREMOVALFILTERCOMPONENT_H_ #define ALGORITHMS_POINTCLOUD_FILTER_RANDOMREMOVALFILTERCOMPONENT_H_ #include "PointCloudFilterType.H" #include <nrt/PointCloud/Filter/RandomRemovalFilter.H> #include <nrt/Core/Model/Parameter.H> namespace pointcloud_filters_random { static nrt::ParameterCategory Options("Random removal filter related parameters"); static nrt::ParameterDef<double> Removal( "removal percentage", "Percentage of points to be removed (0.0 to 1.0)", 0.0, Options ); } //! A component that wraps the passthrough filter with parameters class RandomRemovalFilterComponent : public PointCloudFilterType { public: RandomRemovalFilterComponent( std::string const & instanceID = "passthrough filter" ); //! Sets the input to the underlying filter algorithm void setInput( nrt::GenericCloud const in ); //! Sets the indices (subset) of the current input void setIndices( nrt::DynamicArray<int> const indices ); //! Performs the filtering nrt::GenericCloud filter(); static std::string const id() { return "random"; } static std::string const description() { return "Filters by randomly removing points"; } protected: void removalCallback( double const & percent ); private: nrt::RandomRemovalFilter<nrt::GenericPoint> itsFilter; nrt::Parameter<double> itsRemovalPercent; }; #endif // ALGORITHMS_POINTCLOUD_FILTER_RandomRemovalFilterComponent_H_
[ "voorhies@usc.edu" ]
voorhies@usc.edu
37825876bc03b18bc218648eb31d301e5fb1de88
a850b07742a9573c48e3f655cf66990fd41c32da
/component.h
e36faf0f206b0b6d1e9efcc5965119f566d24cfd
[]
no_license
StewartDouglas/EnigmaMachine
3c2fd7da7c36efa0c752f56157aa4944d1f06452
6a66356b6506c9d21b78886f4eba092d3f477b7d
refs/heads/master
2020-12-09T12:29:59.437468
2016-09-07T11:34:53
2016-09-07T11:34:53
14,539,774
1
0
null
null
null
null
UTF-8
C++
false
false
1,294
h
#ifndef __COMPONENT_H_INCLUDED__ #define __COMPONENT_H_INCLUDED__ #include "enigma.h" /* Component is an abstract class and is the superclass of the classes 'Plugboard', 'Reflector' and 'Rotor'. ** Attributes ** - component_array: records how the component maps the alphabet onto itself. - connection_tracker: is used when configuring the components, to make sure that a user-supplied configuration is valid (e.g. a Rotor cannot map two letters onto one letter. connection_tracker works by having a bit raised if a letter is used for the first time. Each subsequent letterwhich is used is checked against this array to make sure it has not already been used. ** Methods ** - Component: maps each letter of the alphabet onto itself within component_array. - query_forwards: used when the signal within the engima machine is traveling from the user's key-press towards (and through) the reflector. - query_backwards: used when it is moving from the reflector back towards the output. */ using namespace std; class Component { protected: int component_array[26]; bool connection_tracker[26]; public: Component(); int query_forwards(int n); int query_backwards(int n); }; #endif
[ "stewart@Stewarts-MacBook-Air.local" ]
stewart@Stewarts-MacBook-Air.local
8db84a10455416a4db287858897c106b89b728d3
c6a9aebb98fe56696e31232b9e8316ba34907be0
/TM/interface/vertexInfo.h
c9fc1a138256a4293937ed41f45494e968d97c39
[]
no_license
pallabidas/TreeMaker
294cfd1c34aebae9669ee30e92e9bd1793977576
e26d57d43bddc3652238257a3cc9f551dae6159e
refs/heads/master
2023-05-01T00:25:37.437327
2023-04-23T11:06:48
2023-04-23T11:06:48
555,332,894
0
1
null
null
null
null
UTF-8
C++
false
false
1,079
h
#ifndef __VERTEX_INFO_H_ #define __VERTEX_INFO_H_ #include <memory> #include <string> #include <iostream> #include <vector> #include "TTree.h" #include "TVector3.h" #include "TClonesArray.h" #include "FWCore/Framework/interface/Event.h" #include "DataFormats/Common/interface/Handle.h" #include "DataFormats/VertexReco/interface/Vertex.h" #include "DataFormats/VertexReco/interface/VertexFwd.h" #include "RecoVertex/VertexPrimitives/interface/TransientVertex.h" #include "TreeMaker/TM/interface/utils.h" #include "TreeMaker/TM/interface/baseTree.h" class vertexInfo : public baseTree{ public: vertexInfo(std::string name, TTree* tree, bool debug, const edm::ParameterSet& cfg); ~vertexInfo(); void Fill(const edm::Event& iEvent); void SetBranches(); void Clear(); private: vertexInfo(){}; edm::InputTag vertexLabel_; //variables which would become branches int Vertex_n; TClonesArray *Vertex_position; std::vector<float> Vertex_chi2, Vertex_d0; std::vector<int> Vertex_tracksize, Vertex_ndof; std::vector<bool> Vertex_isFake; }; #endif
[ "pallabi91@gmail.com" ]
pallabi91@gmail.com
606293243ad95c09bb447a8e0d3f0899b2c945c4
d51fb8c894b39d6828bf82233d5caec90a67081f
/plugins/gstFpsCount/FpsCount.h
e530c1e5e563ddc669225659d367e8fc00d0db4f
[]
no_license
vchernov/underwater_video_enhancement
bc1f6e0e7a70892af34ae7cb5308bf3e4656219b
939da7b53659a6d568edf4ea3720e924201c096b
refs/heads/master
2021-06-09T04:28:24.485405
2016-10-14T22:01:38
2016-10-14T22:01:38
9,893,199
0
0
null
null
null
null
UTF-8
C++
false
false
872
h
#ifndef FPSCOUNT_H_ #define FPSCOUNT_H_ #define GST_PLUGIN_TYPE GstFpsCount #include <timeutil/FpsCounter.h> #include <gstPluginWrap.h> namespace gstPluginWrap { namespace details { const char* name = "fpscount"; const char* longName = "FPS counter"; const char* classification = "Generic"; const char* description = "Counts frames per second."; const char* originUrl = "https://github.com/vchernov/underwater_video_enhancement"; const char* author = "Vladimir Chernov <vladimir.chernov@student.uva.fi>"; const char* license = "LGPL"; const char* version = "0.2"; } // namespace details const char* allowedCaps = "ANY"; } // namespace gstPluginWrap class FpsCount: public gstPluginWrap::PureFrameHandler { public: FpsCount(); virtual ~FpsCount(); void process(uint8_t* buffer); private: timeutil::FpsCounter fpsCounter; }; #endif // FPSCOUNT_H_
[ "2chernov@gmail.com" ]
2chernov@gmail.com
a51adb26e8ca3d3b1385134f8588ffbfc7e06eb0
69b4f7c49f18fc193f49275a2d32ffbcbe70471d
/C++ Basics/Bai tap/173.cpp
c8fa24f25b78b10b24240b7947843f0fe55fc7cb
[]
no_license
TD2106/Competitive-Programming
05f322a14f1e7a1d62633b713f1416ab0c547b3b
2905c9d5f36909330fc3637f5461aaba8928a154
refs/heads/master
2020-04-03T12:59:49.790124
2019-09-21T14:51:08
2019-09-21T14:51:08
155,270,877
0
0
null
null
null
null
UTF-8
C++
false
false
177
cpp
#include <iostream> using namespace std; int main () { int n,s,nam=0; cin>>n; s=9870; while(1) { s=s+s*0.1; nam++; if(s>n) break; } cout<<nam<<endl; return 0; }
[ "duy.le@ubitec.ch" ]
duy.le@ubitec.ch
494922962299ed1146ac6869d68f7a350e353480
38582d46c7497e617b93e67b382b01c06819152b
/JustinHowellAS4/JustinHowellAS3/src/GfxMgr.cpp
e830013b311fbdcce91b5aecf68c1037c31eeebb
[]
no_license
jhowell702/2020-Spring-CS326-OgreAssignments
23be52844ae17a4d35cde78ca05b2afd2618837d
7ee889c325d810dbf79495e33fc316eb3abd595c
refs/heads/main
2023-08-20T16:30:51.270073
2021-10-18T16:24:11
2021-10-18T16:24:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,459
cpp
#include <GfxMgr.h> #include <OgreEntity.h> #include <OgreCamera.h> #include <OgreViewport.h> #include <OgreSceneManager.h> #include <OgreRenderWindow.h> #include <OgreConfigFile.h> #include <OgreException.h> GfxMgr::GfxMgr(Engine* eng) : Mgr(eng) { mRoot = 0; mWindow = 0; mSceneMgr = 0; mCamera = 0; mInputMgr = 0; mMouse = 0; mKeyboard = 0; mResourcesCfg = Ogre::StringUtil::BLANK; mPluginsCfg = Ogre::StringUtil::BLANK; engine = eng; } GfxMgr::~GfxMgr() { Ogre::WindowEventUtilities::removeWindowEventListener(mWindow, this); windowClosed(mWindow); delete mRoot; } bool GfxMgr::go() { #ifdef _DEBUG mResourcesCfg = "resources_d.cfg"; mPluginsCfg = "plugins_d.cfg"; #else mResourcesCfg = "resources.cfg"; mPluginsCfg = "plugins.cfg"; #endif mRoot = new Ogre::Root(mPluginsCfg); Ogre::ConfigFile cf; cf.load(mResourcesCfg); Ogre::String name, locType; Ogre::ConfigFile::SectionIterator secIt = cf.getSectionIterator(); while (secIt.hasMoreElements()) { Ogre::ConfigFile::SettingsMultiMap* settings = secIt.getNext(); Ogre::ConfigFile::SettingsMultiMap::iterator it; for (it = settings->begin(); it != settings->end(); ++it) { locType = it->first; name = it->second; Ogre::ResourceGroupManager::getSingleton().addResourceLocation(name, locType); } } if (!(mRoot->restoreConfig() || mRoot->showConfigDialog())) return false; mWindow = mRoot->initialise(true, "GfxMgr Render Window"); Ogre::TextureManager::getSingleton().setDefaultNumMipmaps(5); Ogre::ResourceGroupManager::getSingleton().initialiseAllResourceGroups(); mSceneMgr = mRoot->createSceneManager(Ogre::ST_GENERIC); mCamera = mSceneMgr->createCamera("MainCam"); mCamera->setPosition(0, 0, 80); mCamera->lookAt(0, 0, -300); mCamera->setNearClipDistance(5); Ogre::SceneNode* node = mSceneMgr->getRootSceneNode()->createChildSceneNode( "CamNode1", Ogre::Vector3(0, 300, 500)); cameraNode = node; node->attachObject(mCamera); Ogre::Viewport* vp = mWindow->addViewport(mCamera); vp->setBackgroundColour(Ogre::ColourValue(0, 0, 0)); mCamera->setAspectRatio( Ogre::Real(vp->getActualWidth()) / Ogre::Real(vp->getActualHeight())); // OIS Ogre::LogManager::getSingletonPtr()->logMessage("*** Initializing OIS ***"); OIS::ParamList pl; size_t windowHandle = 0; std::ostringstream windowHandleStr; mWindow->getCustomAttribute("WINDOW", &windowHandle); windowHandleStr << windowHandle; pl.insert(std::make_pair(std::string("WINDOW"), windowHandleStr.str())); mInputMgr = OIS::InputManager::createInputSystem(pl); mKeyboard = static_cast<OIS::Keyboard*>( mInputMgr->createInputObject(OIS::OISKeyboard, false)); mMouse = static_cast<OIS::Mouse*>( mInputMgr->createInputObject(OIS::OISMouse, false)); windowResized(mWindow); Ogre::WindowEventUtilities::addWindowEventListener(mWindow, this); mRoot->addFrameListener(this); //mRoot->startRendering(); if(Ogre::Root::getSingletonPtr()->renderOneFrame()){ std::cout << "Rendered one frame" << std::endl; } if(mRoot->renderOneFrame()){ std::cout << "Rendered second frame" << std::endl; } return true; } bool GfxMgr::frameRenderingQueued(const Ogre::FrameEvent& fe) { if (mWindow->isClosed()) return false; mKeyboard->capture(); mMouse->capture(); //std::cout << "Frame rendering queued called" << std::endl; //testNode->yaw(Ogre::Degree(5)); if (mKeyboard->isKeyDown(OIS::KC_ESCAPE)) return false; return true; } void GfxMgr::windowResized(Ogre::RenderWindow* rw) { int left, top; unsigned int width, height, depth; rw->getMetrics(width, height, depth, left, top); const OIS::MouseState& ms = mMouse->getMouseState(); ms.width = width; ms.height = height; } void GfxMgr::windowClosed(Ogre::RenderWindow* rw) { if(rw == mWindow) { if(mInputMgr) { mInputMgr->destroyInputObject(mMouse); mInputMgr->destroyInputObject(mKeyboard); OIS::InputManager::destroyInputSystem(mInputMgr); mInputMgr = 0; } } } void GfxMgr::Tick(float dt){ //std::cout << "Ticking gfx" << std::endl; // if (mKeyboard->isKeyDown(OIS::KC_ESCAPE)){ // engine->keepRunning = false; //} Ogre::WindowEventUtilities::messagePump(); if(Ogre::Root::getSingletonPtr()->renderOneFrame()){ // std::cout << "rendered one frame in gfx loop!" << std::endl; } }
[ "justinhowell@nevada.unr.edu" ]
justinhowell@nevada.unr.edu
85a10e0210be2662d6e3e666e31087522fe41b29
083100943aa21e05d2eb0ad745349331dd35239a
/aws-cpp-sdk-s3/source/model/UploadPartResult.cpp
9feea2896fcb3c476fd12859aa40f9f4629f67cd
[ "JSON", "MIT", "Apache-2.0" ]
permissive
bmildner/aws-sdk-cpp
d853faf39ab001b2878de57aa7ba132579d1dcd2
983be395fdff4ec944b3bcfcd6ead6b4510b2991
refs/heads/master
2021-01-15T16:52:31.496867
2015-09-10T06:57:18
2015-09-10T06:57:18
41,954,994
1
0
null
2015-09-05T08:57:22
2015-09-05T08:57:22
null
UTF-8
C++
false
false
2,645
cpp
/* * Copyright 2010-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ #include <aws/s3/model/UploadPartResult.h> #include <aws/core/utils/xml/XmlSerializer.h> #include <aws/core/AmazonWebServiceResult.h> #include <aws/core/utils/StringUtils.h> #include <aws/core/utils/memory/stl/AWSStringStream.h> #include <utility> using namespace Aws::S3::Model; using namespace Aws::Utils::Xml; using namespace Aws::Utils; using namespace Aws; UploadPartResult::UploadPartResult() { } UploadPartResult::UploadPartResult(const AmazonWebServiceResult<XmlDocument>& result) { *this = result; } UploadPartResult& UploadPartResult::operator =(const AmazonWebServiceResult<XmlDocument>& result) { const XmlDocument& xmlDocument = result.GetPayload(); XmlNode resultNode = xmlDocument.GetRootElement(); if(!resultNode.IsNull()) { } const auto& headers = result.GetHeaderValueCollection(); const auto& serverSideEncryptionIter = headers.find("x-amz-server-side-encryption"); if(serverSideEncryptionIter != headers.end()) { m_serverSideEncryption = ServerSideEncryptionMapper::GetServerSideEncryptionForName(serverSideEncryptionIter->second); } const auto& eTagIter = headers.find("etag"); if(eTagIter != headers.end()) { m_eTag = eTagIter->second; } const auto& sSECustomerAlgorithmIter = headers.find("x-amz-server-side-encryption-customer-algorithm"); if(sSECustomerAlgorithmIter != headers.end()) { m_sSECustomerAlgorithm = sSECustomerAlgorithmIter->second; } const auto& sSECustomerKeyMD5Iter = headers.find("x-amz-server-side-encryption-customer-key-md5"); if(sSECustomerKeyMD5Iter != headers.end()) { m_sSECustomerKeyMD5 = sSECustomerKeyMD5Iter->second; } const auto& sSEKMSKeyIdIter = headers.find("x-amz-server-side-encryption-aws-kms-key-id"); if(sSEKMSKeyIdIter != headers.end()) { m_sSEKMSKeyId = sSEKMSKeyIdIter->second; } const auto& requestChargedIter = headers.find("x-amz-request-charged"); if(requestChargedIter != headers.end()) { m_requestCharged = RequestChargedMapper::GetRequestChargedForName(requestChargedIter->second); } return *this; }
[ "henso@amazon.com" ]
henso@amazon.com
73934ace279f82820d53dda116225995191cd3a2
db106a7dc3312ea892e780aa83effb5ddcbd0acd
/src/MainMenu.cpp
3a7748ad5643458aa190a440c35be5c81d5e14b6
[ "Apache-2.0" ]
permissive
00steve/Lapster
0915f013527619b245dc7b9e9d4b381e942071f5
42c11d7bf96694c36f75d938563031cb08951ff1
refs/heads/master
2021-01-12T06:16:31.465885
2017-01-15T15:46:24
2017-01-15T15:46:24
77,334,276
0
0
null
null
null
null
UTF-8
C++
false
false
712
cpp
#include "MainMenu.h" void MainMenu::Setup(){ } MainMenu::MainMenu(){ Setup(); Draw(); } MainMenu::~MainMenu(){ } void MainMenu::Update(){ if(Button::CheckForScreenPressed()){ if(settingsButton.Pressed()){ Set(MODE_SETTINGS); } if(dataLoggerButton.Pressed()){ Set(MODE_DATA_LOGGER); } if(dashboardButton.Pressed()){ Set(MODE_DASHBOARD); } } } void MainMenu::Draw(){ tft.fillScreen(0x0000); DrawTitle("Lapsterbator"); gMeterButton.Draw(); dataLoggerButton.Draw(); zSixtyButton.Draw(); settingsButton.Draw(); dashboardButton.Draw(); } void MainMenu::Redraw(){ Draw(); }
[ "stevemkrenz@gmail.com" ]
stevemkrenz@gmail.com
04d1d1c33ae527028e90d1d9679d88a849c93e09
9949a7e070e6ce7ad92f069ad9c5574f65f5f0a0
/algorithm/007-reverse_integer/cpp/solution.h
4a0fa163e87de9bafa19e7ca1bbb06a6c28397d4
[]
no_license
Slashyouth/arts
84aa6530cd4427cec3a971de73bdc60ad82a5a84
63ddaabc41f2fcdcce25145454e3bbdc3a8e38cd
refs/heads/master
2020-06-23T13:10:39.599873
2019-07-15T10:13:02
2019-07-15T10:13:02
198,633,331
2
0
null
2019-07-24T12:41:24
2019-07-24T12:41:24
null
UTF-8
C++
false
false
65
h
class Solution { public: // todo: algorithm implementation };
[ "id@philon.cn" ]
id@philon.cn
aecf31eef7ebbeb8a111d4c664c42f24799101f5
73023c191f3afc1f13b39dffea22b7f65a664f7d
/MatrixEngine/Classes/MCocoStudio/Native/ScriptBind_CCArmAnim.h
35070bc3d3055ebfbe9092efa0a04df77659138f
[]
no_license
ugsgame/Matrix
0a2c2abb3be9966c3cf7a4164799ed107c8f2920
1311b77bd9a917ec770e428efb9530ee6038617a
refs/heads/master
2020-09-05T15:45:45.973221
2019-11-07T07:20:38
2019-11-07T07:20:38
220,145,853
0
0
null
null
null
null
UTF-8
C++
false
false
2,154
h
#ifndef __SCRIPTBIND_CCARMANIM__ #define __SCRIPTBIND_CCARMANIM__ #include "ScriptBind_CocoStudio.h" class cocos2d::extension::CCArmature; class cocos2d::extension::CCArmatureAnimation; class cocos2d::extension::CCColliderFilter; class ScriptBind_CCArmAnim:public ScriptBind_CocoStudio { public: ScriptBind_CCArmAnim(); ~ScriptBind_CCArmAnim(); virtual const char* GetClassName(){ return "NativeAnimation";} static cocos2d::extension::CCArmatureAnimation* Create(cocos2d::extension::CCArmature *armature); static void SetAnimScale(cocos2d::extension::CCArmatureAnimation* pArmAnim,float scale); static float GetAnimScale(cocos2d::extension::CCArmatureAnimation* pArmAnim); static void SetSpeedScale(cocos2d::extension::CCArmatureAnimation* pArmAnim,float scale); static float GetSpeedScale(cocos2d::extension::CCArmatureAnimation* pArmAnim); static void PlayWithName(cocos2d::extension::CCArmatureAnimation* pArmAnim,mono::string name,int durationTo , int durationTween , int loop); static void PlayWithIndex(cocos2d::extension::CCArmatureAnimation* pArmAnim,int animationIndex, int durationTo, int durationTween, int loop); static void PlayByIndex(cocos2d::extension::CCArmatureAnimation* pArmAnim,int animationIndex, int durationTo, int durationTween, int loop); static void GotoAndPlay(cocos2d::extension::CCArmatureAnimation* pArmAnim,int frameIndex); static void GotoAndPause(cocos2d::extension::CCArmatureAnimation* pArmAnim,int frameIndex); static void Pause(cocos2d::extension::CCArmatureAnimation* pArmAnim); static void Resume(cocos2d::extension::CCArmatureAnimation* pArmAnim); static void Stop(cocos2d::extension::CCArmatureAnimation* pArmAnim); static int GetMovementCount(cocos2d::extension::CCArmatureAnimation* pArmAnim); static mono::string GetCureentMovementID(cocos2d::extension::CCArmatureAnimation* pArmAnim); static void SetColliderFilter(cocos2d::extension::CCColliderFilter* filter); static void SetMovementEvent(cocos2d::extension::CCArmatureAnimation* pArmAnim,mono::object event); static void SetFrameEvent(cocos2d::extension::CCArmatureAnimation* pArmAnim,mono::object event); }; #endif
[ "670563380@qq.com" ]
670563380@qq.com
b6e80ebad36510f187c652c69c08e0b88c3d1965
74a37a606a86c273bef5193238eda15a28a5d018
/pcl_tutorials/registration/registration_binlang.h
cf32e388483d5b124b8bc23ff790583aff1cd6e9
[]
no_license
mzeybek583/pcl_tutorials
281be18361c592be4001175a384df79dd69fbdae
521453549631e28bedbcf3d461faf52ce147653f
refs/heads/master
2021-04-02T02:27:59.571536
2019-04-26T13:01:52
2019-04-26T13:01:52
null
0
0
null
null
null
null
GB18030
C++
false
false
7,448
h
#pragma once #include <Eigen/Core> #include <pcl/point_types.h> #include <pcl/point_cloud.h> #include <pcl/common/time.h> #include <pcl/console/print.h> #include <pcl/features/normal_3d.h> #include <pcl/features/normal_3d_omp.h> #include <pcl/features/fpfh.h> #include "pcl/features/fpfh_omp.h" #include <pcl/filters/filter.h> #include <pcl/filters/voxel_grid.h> #include <pcl/io/pcd_io.h> #include <pcl/registration/icp.h> /***************************sample_consensus_prerejective****************/ #include <pcl/registration/sample_consensus_prerejective.h> /**************************SampleConsensusInitialAlignment******************/ #include "pcl/registration/ia_ransac.h" #include <pcl/segmentation/sac_segmentation.h> #include <pcl/visualization/pcl_visualizer.h> /***********************sample_consensus*********************************/ #include "pcl/registration/correspondence_rejection_sample_consensus.h" #include "pcl/registration/correspondence_rejection_sample_consensus_2d.h" /************************************************************************/ #include "pcl/features/moment_of_inertia_estimation.h" #include "pcl/filters/extract_indices.h" #include "../feature/featureMomentInvariants.h" #include "pcl/segmentation/segment_differences.h" #include <pcl/common/transforms.h> using namespace std; int registration_binlang() { // Types typedef pcl::PointNormal PointNT; typedef pcl::PointCloud<PointNT> PointCloudT; typedef pcl::FPFHSignature33 FeatureT; typedef pcl::FPFHEstimation<PointNT, PointNT, FeatureT> FeatureEstimationT; typedef pcl::PointCloud<FeatureT> FeatureCloudT; typedef pcl::visualization::PointCloudColorHandlerCustom<PointNT> ColorHandlerT; // Point clouds PointCloudT::Ptr object(new PointCloudT); PointCloudT::Ptr object_aligned(new PointCloudT); PointCloudT::Ptr object_aligned_re(new PointCloudT); PointCloudT::Ptr scene(new PointCloudT); FeatureCloudT::Ptr object_features(new FeatureCloudT); FeatureCloudT::Ptr scene_features(new FeatureCloudT); Eigen::Matrix4f guess; // 加载目标物体和场景点云 pcl::console::print_highlight("Loading point clouds...\n"); if (pcl::io::loadPCDFile<PointNT>("chef.pcd", *object) < 0 || pcl::io::loadPCDFile<PointNT>("rs1.pcd", *scene) < 0) { pcl::console::print_error("Error loading object/scene file!\n"); return (1); } Eigen::Affine3f transform_2 = Eigen::Affine3f::Identity(); transform_2.translation() << 3, 0.0, 0.0; //平移参数 transform_2.rotate(Eigen::AngleAxisf(M_PI_2, Eigen::Vector3f::UnitZ())); //旋转参数 pcl::PointCloud<PointNT>::Ptr transformed_object(new pcl::PointCloud<PointNT>()); pcl::transformPointCloud(*object, *object, transform_2); // 下采样 pcl::console::print_highlight("Downsampling...\n"); pcl::VoxelGrid<PointNT> grid; const float leaf = 0.005f; grid.setLeafSize(leaf, leaf, leaf); grid.setInputCloud(object); grid.filter(*object); grid.setInputCloud(scene); grid.filter(*scene); // 估计场景法线 pcl::console::print_highlight("Estimating scene normals...\n"); pcl::NormalEstimation<PointNT, PointNT> nest; nest.setRadiusSearch(0.01); nest.setInputCloud(scene); nest.compute(*scene); // 特征估计 pcl::console::print_highlight("Estimating features...\n"); FeatureEstimationT fest; fest.setRadiusSearch(0.025); fest.setInputCloud(object); fest.setInputNormals(object); fest.compute(*object_features); fest.setInputCloud(scene); fest.setInputNormals(scene); fest.compute(*scene_features); // 实施配准 pcl::console::print_highlight("Starting alignment...\n"); pcl::SampleConsensusPrerejective<PointNT, PointNT, FeatureT> align; align.setInputSource(object); align.setSourceFeatures(object_features); align.setInputTarget(scene); align.setTargetFeatures(scene_features); align.setMaximumIterations(50000); // 采样一致性迭代次数 align.setNumberOfSamples(3); // 创建假设所需的样本数 align.setCorrespondenceRandomness(5); // 使用的临近特征点的数目 align.setSimilarityThreshold(0.9f); // 多边形边长度相似度阈值 align.setMaxCorrespondenceDistance(2.5f * 0.005); // 判断是否为内点的距离阈值 align.setInlierFraction(0.25f); //接受位姿假设所需的内点比例 { pcl::ScopeTime t("Alignment"); align.align(*object_aligned, guess); } /****************************** show box **************************************/ bool showbox = false; if (showbox) { pcl::PointCloud<pcl::PointXYZ>::Ptr object_aligned_xyz(new pcl::PointCloud<pcl::PointXYZ>); object_aligned_xyz->resize(object_aligned->size()); for (int i = 0; i < object_aligned->size(); i++) { object_aligned_xyz->points[i].x = object_aligned->points[i].x; object_aligned_xyz->points[i].y = object_aligned->points[i].y; object_aligned_xyz->points[i].z = object_aligned->points[i].z; } //pcl::PCDWriter writer; //writer.write("object_aligned.pcd", *object_aligned_xyz); getMomentInvariants(object_aligned_xyz); } /************************************************************************/ //pcl::search::KdTree<PointNT>::Ptr tree(new pcl::search::KdTree<PointNT>); //tree->setInputCloud(scene); //pcl::getPointCloudDifference<PointNT>(*scene, *object_aligned, 0.01, tree, *object_aligned_re); //cout <<"object_aligned_re->size: "<< object_aligned_re->size() << endl; if (align.hasConverged()) // { // Print results printf("\n"); Eigen::Matrix4f transformation = align.getFinalTransformation(); pcl::console::print_info(" | %6.3f %6.3f %6.3f | \n", transformation(0, 0), transformation(0, 1), transformation(0, 2)); pcl::console::print_info("R = | %6.3f %6.3f %6.3f | \n", transformation(1, 0), transformation(1, 1), transformation(1, 2)); pcl::console::print_info(" | %6.3f %6.3f %6.3f | \n", transformation(2, 0), transformation(2, 1), transformation(2, 2)); pcl::console::print_info("\n"); pcl::console::print_info("t = < %0.3f, %0.3f, %0.3f >\n", transformation(0, 3), transformation(1, 3), transformation(2, 3)); pcl::console::print_info("\n"); pcl::console::print_info("Inliers: %i/%i\n", align.getInliers().size(), object->size()); // Show alignment pcl::visualization::PCLVisualizer visu("鲁棒位姿估计"); int v1(0), v2(0); visu.createViewPort(0, 0, 0.5, 1, v1); visu.createViewPort(0.5, 0, 1, 1, v2); visu.setBackgroundColor(255, 255, 255, v1); visu.addCoordinateSystem(1, v2); visu.addPointCloud(scene, ColorHandlerT(scene, 0.0, 255.0, 0.0), "scene", v1); visu.addPointCloud(object_aligned, ColorHandlerT(object_aligned, 0.0, 0.0, 255.0), "object_aligned", v1); //visu.addPointCloud(object_aligned_re, ColorHandlerT(object_aligned_re, 0.0, 0.0, 255.0), "object_aligned_re", v1); visu.addPointCloud(object, ColorHandlerT(object, 0.0, 255.0, 0.0), "object_before_aligned", v2); visu.addPointCloud(scene, ColorHandlerT(scene, 0.0, 0.0, 255.0), "scene_v2", v2); visu.setPointCloudRenderingProperties(pcl::visualization::PCL_VISUALIZER_POINT_SIZE, 3, "scene"); visu.setPointCloudRenderingProperties(pcl::visualization::PCL_VISUALIZER_POINT_SIZE, 3, "object_aligned"); visu.setPointCloudRenderingProperties(pcl::visualization::PCL_VISUALIZER_POINT_SIZE, 3, "object_before_aligned"); visu.setPointCloudRenderingProperties(pcl::visualization::PCL_VISUALIZER_POINT_SIZE, 3, "scene_v2"); visu.spin(); } else { pcl::console::print_error("Alignment failed!\n"); return (1); } return (0); }
[ "jackros1022@users.noreply.github.com" ]
jackros1022@users.noreply.github.com
5e1f77d0ab31d2b8a0334836d8e0053bdc852555
d3667989cbfef8941e11bd445c0573dd91454883
/5_sizeof.cpp
d0a25622b6ab61605e1138e3f348f8ec78e6fe07
[]
no_license
djeriko/cpp_algoritms_and_data_structures
6cb98849378e62b075ff91c47f20c33c584b4376
72b0baedca697b75fa588c3370544694d3716540
refs/heads/master
2021-06-10T19:16:26.854482
2020-07-22T15:19:08
2020-07-22T15:19:08
254,341,750
0
0
null
null
null
null
UTF-8
C++
false
false
559
cpp
#include <iostream> int main() { using namespace std; struct t_Pair { int a; int b; }; bool x; int y; long long int z; float a; double b; t_Pair p; cout << sizeof(x) << '\n'; cout << sizeof(int) << '\n'; cout << sizeof(z) << endl; cout << sizeof(a) << endl; cout << sizeof(b) << endl; cout << sizeof(p) << endl; cout << sizeof(&x) << endl; cout << sizeof(&y) << endl; cout << sizeof(&z) << endl; cout << sizeof(&a) << endl; cout << sizeof(&b) << endl; cout << sizeof(&p) << endl; return 0; }
[ "jerikosalivan@gmail.com" ]
jerikosalivan@gmail.com
b59d6df349201f7a7de283f174792309f8fe94c5
9a3b9d80afd88e1fa9a24303877d6e130ce22702
/src/Providers/UNIXProviders/VolumeSet/UNIX_VolumeSet_VMS.hxx
acacfe756a28cee4cc7fcddc1ccbe2d080a1c1bc
[ "MIT" ]
permissive
brunolauze/openpegasus-providers
3244b76d075bc66a77e4ed135893437a66dd769f
f24c56acab2c4c210a8d165bb499cd1b3a12f222
refs/heads/master
2020-04-17T04:27:14.970917
2015-01-04T22:08:09
2015-01-04T22:08:09
19,707,296
0
0
null
null
null
null
UTF-8
C++
false
false
1,801
hxx
//%LICENSE//////////////////////////////////////////////////////////////// // // Licensed to The Open Group (TOG) under one or more contributor license // agreements. Refer to the OpenPegasusNOTICE.txt file distributed with // this work for additional information regarding copyright ownership. // Each contributor licenses this file to you under the OpenPegasus Open // Source License; you may not use this file except in compliance with the // License. // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // ////////////////////////////////////////////////////////////////////////// // //%///////////////////////////////////////////////////////////////////////// #ifdef PEGASUS_OS_VMS #ifndef __UNIX_VOLUMESET_PRIVATE_H #define __UNIX_VOLUMESET_PRIVATE_H #endif #endif
[ "brunolauze@msn.com" ]
brunolauze@msn.com
de2b5a40e5b588dafa9a57b8dd351d4dd36bf913
a9ba45404a4a1e5782e65225b4fe4aa6c5542b13
/sstcore-6.0.0/src/sst/core/serialization/statics.cc
f588bc87b379250accd167e0623d68ca8a195e3c
[]
no_license
Knoxort/BE-SST
099237bb2d604c46e82950db79758ffa1800fa67
fe47a954489dbe6b361a0776eae0bd65dcb40523
refs/heads/master
2020-04-02T14:33:11.503958
2017-10-05T17:00:26
2017-10-05T17:00:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
966
cc
// Copyright 2009-2016 Sandia Corporation. Under the terms // of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S. // Government retains certain rights in this software. // // Copyright (c) 2009-2016, Sandia Corporation // All rights reserved. // // This file is part of the SST software package. For license // information, see the LICENSE file in the top level directory of the // distribution. #include <sst/core/serialization/statics.h> namespace SST { namespace Core { namespace Serialization { std::list<statics::clear_fxn>* statics::fxns_ = 0; void statics::register_finish(clear_fxn fxn) { if (fxns_ == 0){ fxns_ = new std::list<statics::clear_fxn>; } fxns_->push_back(fxn); } void statics::finish() { if (fxns_ == 0) return; std::list<clear_fxn>::iterator it, end = fxns_->end(); for (it=fxns_->begin(); it != end; ++it){ clear_fxn fxn = *it; fxn(); } fxns_->clear(); delete fxns_; fxns_ = 0; } } } }
[ "chenna@hcs.ufl.edu" ]
chenna@hcs.ufl.edu
3db96e4f6ccae66f56e494fd74d95172fd584c2c
47b88e37be84a08ad1b49120c23fada7493859d7
/V8Parser/out.gn/x64.release.sample/gen/torque-generated/src/builtins/array-tq-csa.cc
6c34e215e6131b6fd307a9cfa821e515c9a1f3ab
[]
no_license
misterpilou/playweb
18283fa9ff6d7b7a72148c2e7bd48cd016ee0699
6c943e362683b83de15bc403945798dfadf9ba97
refs/heads/master
2020-09-23T01:43:43.783684
2019-12-14T11:16:21
2019-12-14T11:16:21
225,369,119
1
0
null
null
null
null
UTF-8
C++
false
false
38,171
cc
#include "src/builtins/builtins-array-gen.h" #include "src/builtins/builtins-bigint-gen.h" #include "src/builtins/builtins-collections-gen.h" #include "src/builtins/builtins-constructor-gen.h" #include "src/builtins/builtins-data-view-gen.h" #include "src/builtins/builtins-iterator-gen.h" #include "src/builtins/builtins-promise-gen.h" #include "src/builtins/builtins-promise.h" #include "src/builtins/builtins-proxy-gen.h" #include "src/builtins/builtins-regexp-gen.h" #include "src/builtins/builtins-string-gen.h" #include "src/builtins/builtins-typed-array-gen.h" #include "src/builtins/builtins-utils-gen.h" #include "src/builtins/builtins.h" #include "src/codegen/code-factory.h" #include "src/heap/factory-inl.h" #include "src/objects/arguments.h" #include "src/objects/bigint.h" #include "src/objects/elements-kind.h" #include "src/objects/free-space.h" #include "src/objects/js-break-iterator.h" #include "src/objects/js-collator.h" #include "src/objects/js-date-time-format.h" #include "src/objects/js-display-names.h" #include "src/objects/js-generator.h" #include "src/objects/js-list-format.h" #include "src/objects/js-locale.h" #include "src/objects/js-number-format.h" #include "src/objects/js-objects.h" #include "src/objects/js-plural-rules.h" #include "src/objects/js-promise.h" #include "src/objects/js-regexp-string-iterator.h" #include "src/objects/js-relative-time-format.h" #include "src/objects/js-segment-iterator.h" #include "src/objects/js-segmenter.h" #include "src/objects/js-weak-refs.h" #include "src/objects/objects.h" #include "src/objects/source-text-module.h" #include "src/objects/stack-frame-info.h" #include "src/objects/synthetic-module.h" #include "src/objects/template-objects.h" #include "torque-generated/src/builtins/array-copywithin-tq-csa.h" #include "torque-generated/src/builtins/array-every-tq-csa.h" #include "torque-generated/src/builtins/array-filter-tq-csa.h" #include "torque-generated/src/builtins/array-find-tq-csa.h" #include "torque-generated/src/builtins/array-findindex-tq-csa.h" #include "torque-generated/src/builtins/array-foreach-tq-csa.h" #include "torque-generated/src/builtins/array-isarray-tq-csa.h" #include "torque-generated/src/builtins/array-join-tq-csa.h" #include "torque-generated/src/builtins/array-lastindexof-tq-csa.h" #include "torque-generated/src/builtins/array-map-tq-csa.h" #include "torque-generated/src/builtins/array-of-tq-csa.h" #include "torque-generated/src/builtins/array-reduce-right-tq-csa.h" #include "torque-generated/src/builtins/array-reduce-tq-csa.h" #include "torque-generated/src/builtins/array-reverse-tq-csa.h" #include "torque-generated/src/builtins/array-shift-tq-csa.h" #include "torque-generated/src/builtins/array-slice-tq-csa.h" #include "torque-generated/src/builtins/array-some-tq-csa.h" #include "torque-generated/src/builtins/array-splice-tq-csa.h" #include "torque-generated/src/builtins/array-unshift-tq-csa.h" #include "torque-generated/src/builtins/array-tq-csa.h" #include "torque-generated/src/builtins/base-tq-csa.h" #include "torque-generated/src/builtins/bigint-tq-csa.h" #include "torque-generated/src/builtins/boolean-tq-csa.h" #include "torque-generated/src/builtins/builtins-string-tq-csa.h" #include "torque-generated/src/builtins/collections-tq-csa.h" #include "torque-generated/src/builtins/cast-tq-csa.h" #include "torque-generated/src/builtins/convert-tq-csa.h" #include "torque-generated/src/builtins/console-tq-csa.h" #include "torque-generated/src/builtins/data-view-tq-csa.h" #include "torque-generated/src/builtins/frames-tq-csa.h" #include "torque-generated/src/builtins/frame-arguments-tq-csa.h" #include "torque-generated/src/builtins/growable-fixed-array-tq-csa.h" #include "torque-generated/src/builtins/internal-coverage-tq-csa.h" #include "torque-generated/src/builtins/iterator-tq-csa.h" #include "torque-generated/src/builtins/math-tq-csa.h" #include "torque-generated/src/builtins/number-tq-csa.h" #include "torque-generated/src/builtins/object-fromentries-tq-csa.h" #include "torque-generated/src/builtins/object-tq-csa.h" #include "torque-generated/src/builtins/promise-abstract-operations-tq-csa.h" #include "torque-generated/src/builtins/promise-constructor-tq-csa.h" #include "torque-generated/src/builtins/proxy-constructor-tq-csa.h" #include "torque-generated/src/builtins/proxy-delete-property-tq-csa.h" #include "torque-generated/src/builtins/proxy-get-property-tq-csa.h" #include "torque-generated/src/builtins/proxy-get-prototype-of-tq-csa.h" #include "torque-generated/src/builtins/proxy-has-property-tq-csa.h" #include "torque-generated/src/builtins/proxy-is-extensible-tq-csa.h" #include "torque-generated/src/builtins/proxy-prevent-extensions-tq-csa.h" #include "torque-generated/src/builtins/proxy-revocable-tq-csa.h" #include "torque-generated/src/builtins/proxy-revoke-tq-csa.h" #include "torque-generated/src/builtins/proxy-set-property-tq-csa.h" #include "torque-generated/src/builtins/proxy-set-prototype-of-tq-csa.h" #include "torque-generated/src/builtins/proxy-tq-csa.h" #include "torque-generated/src/builtins/reflect-tq-csa.h" #include "torque-generated/src/builtins/regexp-exec-tq-csa.h" #include "torque-generated/src/builtins/regexp-match-all-tq-csa.h" #include "torque-generated/src/builtins/regexp-match-tq-csa.h" #include "torque-generated/src/builtins/regexp-replace-tq-csa.h" #include "torque-generated/src/builtins/regexp-search-tq-csa.h" #include "torque-generated/src/builtins/regexp-source-tq-csa.h" #include "torque-generated/src/builtins/regexp-split-tq-csa.h" #include "torque-generated/src/builtins/regexp-test-tq-csa.h" #include "torque-generated/src/builtins/regexp-tq-csa.h" #include "torque-generated/src/builtins/string-endswith-tq-csa.h" #include "torque-generated/src/builtins/string-html-tq-csa.h" #include "torque-generated/src/builtins/string-iterator-tq-csa.h" #include "torque-generated/src/builtins/string-pad-tq-csa.h" #include "torque-generated/src/builtins/string-repeat-tq-csa.h" #include "torque-generated/src/builtins/string-replaceall-tq-csa.h" #include "torque-generated/src/builtins/string-slice-tq-csa.h" #include "torque-generated/src/builtins/string-startswith-tq-csa.h" #include "torque-generated/src/builtins/string-substring-tq-csa.h" #include "torque-generated/src/builtins/string-substr-tq-csa.h" #include "torque-generated/src/builtins/symbol-tq-csa.h" #include "torque-generated/src/builtins/torque-internal-tq-csa.h" #include "torque-generated/src/builtins/typed-array-createtypedarray-tq-csa.h" #include "torque-generated/src/builtins/typed-array-every-tq-csa.h" #include "torque-generated/src/builtins/typed-array-filter-tq-csa.h" #include "torque-generated/src/builtins/typed-array-find-tq-csa.h" #include "torque-generated/src/builtins/typed-array-findindex-tq-csa.h" #include "torque-generated/src/builtins/typed-array-foreach-tq-csa.h" #include "torque-generated/src/builtins/typed-array-from-tq-csa.h" #include "torque-generated/src/builtins/typed-array-of-tq-csa.h" #include "torque-generated/src/builtins/typed-array-reduce-tq-csa.h" #include "torque-generated/src/builtins/typed-array-reduceright-tq-csa.h" #include "torque-generated/src/builtins/typed-array-set-tq-csa.h" #include "torque-generated/src/builtins/typed-array-slice-tq-csa.h" #include "torque-generated/src/builtins/typed-array-some-tq-csa.h" #include "torque-generated/src/builtins/typed-array-sort-tq-csa.h" #include "torque-generated/src/builtins/typed-array-subarray-tq-csa.h" #include "torque-generated/src/builtins/typed-array-tq-csa.h" #include "torque-generated/src/ic/handler-configuration-tq-csa.h" #include "torque-generated/src/objects/allocation-site-tq-csa.h" #include "torque-generated/src/objects/api-callbacks-tq-csa.h" #include "torque-generated/src/objects/arguments-tq-csa.h" #include "torque-generated/src/objects/cell-tq-csa.h" #include "torque-generated/src/objects/code-tq-csa.h" #include "torque-generated/src/objects/contexts-tq-csa.h" #include "torque-generated/src/objects/data-handler-tq-csa.h" #include "torque-generated/src/objects/debug-objects-tq-csa.h" #include "torque-generated/src/objects/descriptor-array-tq-csa.h" #include "torque-generated/src/objects/embedder-data-array-tq-csa.h" #include "torque-generated/src/objects/feedback-cell-tq-csa.h" #include "torque-generated/src/objects/feedback-vector-tq-csa.h" #include "torque-generated/src/objects/fixed-array-tq-csa.h" #include "torque-generated/src/objects/foreign-tq-csa.h" #include "torque-generated/src/objects/free-space-tq-csa.h" #include "torque-generated/src/objects/heap-number-tq-csa.h" #include "torque-generated/src/objects/heap-object-tq-csa.h" #include "torque-generated/src/objects/intl-objects-tq-csa.h" #include "torque-generated/src/objects/js-array-buffer-tq-csa.h" #include "torque-generated/src/objects/js-array-tq-csa.h" #include "torque-generated/src/objects/js-collection-iterator-tq-csa.h" #include "torque-generated/src/objects/js-collection-tq-csa.h" #include "torque-generated/src/objects/js-generator-tq-csa.h" #include "torque-generated/src/objects/js-objects-tq-csa.h" #include "torque-generated/src/objects/js-promise-tq-csa.h" #include "torque-generated/src/objects/js-proxy-tq-csa.h" #include "torque-generated/src/objects/js-regexp-string-iterator-tq-csa.h" #include "torque-generated/src/objects/js-regexp-tq-csa.h" #include "torque-generated/src/objects/js-weak-refs-tq-csa.h" #include "torque-generated/src/objects/literal-objects-tq-csa.h" #include "torque-generated/src/objects/map-tq-csa.h" #include "torque-generated/src/objects/microtask-tq-csa.h" #include "torque-generated/src/objects/module-tq-csa.h" #include "torque-generated/src/objects/name-tq-csa.h" #include "torque-generated/src/objects/oddball-tq-csa.h" #include "torque-generated/src/objects/ordered-hash-table-tq-csa.h" #include "torque-generated/src/objects/primitive-heap-object-tq-csa.h" #include "torque-generated/src/objects/promise-tq-csa.h" #include "torque-generated/src/objects/property-array-tq-csa.h" #include "torque-generated/src/objects/property-cell-tq-csa.h" #include "torque-generated/src/objects/prototype-info-tq-csa.h" #include "torque-generated/src/objects/regexp-match-info-tq-csa.h" #include "torque-generated/src/objects/script-tq-csa.h" #include "torque-generated/src/objects/shared-function-info-tq-csa.h" #include "torque-generated/src/objects/source-text-module-tq-csa.h" #include "torque-generated/src/objects/stack-frame-info-tq-csa.h" #include "torque-generated/src/objects/string-tq-csa.h" #include "torque-generated/src/objects/struct-tq-csa.h" #include "torque-generated/src/objects/synthetic-module-tq-csa.h" #include "torque-generated/src/objects/template-objects-tq-csa.h" #include "torque-generated/src/objects/template-tq-csa.h" #include "torque-generated/src/wasm/wasm-objects-tq-csa.h" #include "torque-generated/test/torque/test-torque-tq-csa.h" #include "torque-generated/third_party/v8/builtins/array-sort-tq-csa.h" namespace v8 { namespace internal { void EnsureWriteableFastElements_0(compiler::CodeAssemblerState* state_, TNode<Context> p_context, TNode<JSArray> p_array) { compiler::CodeAssembler ca_(state_); compiler::CodeAssemblerParameterizedLabel<Context, JSArray> block0(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<Context, JSArray> block5(&ca_, compiler::CodeAssemblerLabel::kDeferred); compiler::CodeAssemblerParameterizedLabel<Context, JSArray> block4(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<Context, JSArray, FixedArrayBase> block6(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<Context, JSArray, FixedArrayBase> block7(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<Context, JSArray, FixedArrayBase> block11(&ca_, compiler::CodeAssemblerLabel::kDeferred); compiler::CodeAssemblerParameterizedLabel<Context, JSArray, FixedArrayBase> block10(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<Context, JSArray, FixedArrayBase, Number> block15(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<Context, JSArray, FixedArrayBase, Number, Smi> block14(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<Context, JSArray, FixedArrayBase, Smi> block19(&ca_, compiler::CodeAssemblerLabel::kDeferred); compiler::CodeAssemblerParameterizedLabel<Context, JSArray, FixedArrayBase, Smi> block18(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<Context, JSArray> block1(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<Context, JSArray> block20(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); ca_.Goto(&block0, p_context, p_array); if (block0.is_used()) { TNode<Context> tmp0; TNode<JSArray> tmp1; ca_.Bind(&block0, &tmp0, &tmp1); TNode<IntPtrT> tmp2 = ca_.IntPtrConstant(JSObject::kElementsOffset); USE(tmp2); TNode<FixedArrayBase>tmp3 = CodeStubAssembler(state_).LoadReference<FixedArrayBase>(CodeStubAssembler::Reference{tmp1, tmp2}); TNode<IntPtrT> tmp4 = ca_.IntPtrConstant(HeapObject::kMapOffset); USE(tmp4); TNode<Map>tmp5 = CodeStubAssembler(state_).LoadReference<Map>(CodeStubAssembler::Reference{tmp3, tmp4}); TNode<Map> tmp6; USE(tmp6); tmp6 = kCOWMap_0(state_); TNode<BoolT> tmp7; USE(tmp7); tmp7 = CodeStubAssembler(state_).TaggedNotEqual(TNode<HeapObject>{tmp5}, TNode<HeapObject>{tmp6}); ca_.Branch(tmp7, &block6, &block7, tmp0, tmp1, tmp3); } if (block5.is_used()) { TNode<Context> tmp8; TNode<JSArray> tmp9; ca_.Bind(&block5, &tmp8, &tmp9); CodeStubAssembler(state_).FailAssert("Torque assert 'IsFastElementsKind(array.map.elements_kind)' failed", "src/builtins/array.tq", 20); } if (block4.is_used()) { TNode<Context> tmp10; TNode<JSArray> tmp11; ca_.Bind(&block4, &tmp10, &tmp11); } if (block6.is_used()) { TNode<Context> tmp12; TNode<JSArray> tmp13; TNode<FixedArrayBase> tmp14; ca_.Bind(&block6, &tmp12, &tmp13, &tmp14); ca_.Goto(&block1, tmp12, tmp13); } if (block7.is_used()) { TNode<Context> tmp15; TNode<JSArray> tmp16; TNode<FixedArrayBase> tmp17; ca_.Bind(&block7, &tmp15, &tmp16, &tmp17); TNode<IntPtrT> tmp18 = ca_.IntPtrConstant(JSArray::kLengthOffset); USE(tmp18); TNode<Number>tmp19 = CodeStubAssembler(state_).LoadReference<Number>(CodeStubAssembler::Reference{tmp16, tmp18}); TNode<Smi> tmp20; USE(tmp20); compiler::CodeAssemblerLabel label0(&ca_); tmp20 = Cast_Smi_0(state_, TNode<Object>{tmp19}, &label0); ca_.Goto(&block14, tmp15, tmp16, tmp17, tmp19, tmp20); if (label0.is_used()) { ca_.Bind(&label0); ca_.Goto(&block15, tmp15, tmp16, tmp17, tmp19); } } if (block11.is_used()) { TNode<Context> tmp21; TNode<JSArray> tmp22; TNode<FixedArrayBase> tmp23; ca_.Bind(&block11, &tmp21, &tmp22, &tmp23); CodeStubAssembler(state_).FailAssert("Torque assert 'IsFastSmiOrTaggedElementsKind(array.map.elements_kind)' failed", "src/builtins/array.tq", 27); } if (block10.is_used()) { TNode<Context> tmp24; TNode<JSArray> tmp25; TNode<FixedArrayBase> tmp26; ca_.Bind(&block10, &tmp24, &tmp25, &tmp26); } if (block15.is_used()) { TNode<Context> tmp27; TNode<JSArray> tmp28; TNode<FixedArrayBase> tmp29; TNode<Number> tmp30; ca_.Bind(&block15, &tmp27, &tmp28, &tmp29, &tmp30); CodeStubAssembler(state_).Unreachable(); } if (block14.is_used()) { TNode<Context> tmp31; TNode<JSArray> tmp32; TNode<FixedArrayBase> tmp33; TNode<Number> tmp34; TNode<Smi> tmp35; ca_.Bind(&block14, &tmp31, &tmp32, &tmp33, &tmp34, &tmp35); TNode<IntPtrT> tmp36 = ca_.IntPtrConstant(JSObject::kElementsOffset); USE(tmp36); TNode<Smi> tmp37; USE(tmp37); tmp37 = FromConstexpr_Smi_constexpr_int31_0(state_, 0); TNode<FixedArrayBase> tmp38; USE(tmp38); tmp38 = CodeStubAssembler(state_).ExtractFixedArray(TNode<FixedArrayBase>{tmp33}, TNode<Smi>{tmp37}, TNode<Smi>{tmp35}, TNode<Smi>{tmp35}, CodeStubAssembler::ExtractFixedArrayFlag::kFixedArrays); CodeStubAssembler(state_).StoreReference(CodeStubAssembler::Reference{tmp32, tmp36}, tmp38); ca_.Goto(&block1, tmp31, tmp32); } if (block19.is_used()) { TNode<Context> tmp39; TNode<JSArray> tmp40; TNode<FixedArrayBase> tmp41; TNode<Smi> tmp42; ca_.Bind(&block19, &tmp39, &tmp40, &tmp41, &tmp42); CodeStubAssembler(state_).FailAssert("Torque assert 'array.elements.map != kCOWMap' failed", "src/builtins/array.tq", 32); } if (block18.is_used()) { TNode<Context> tmp43; TNode<JSArray> tmp44; TNode<FixedArrayBase> tmp45; TNode<Smi> tmp46; ca_.Bind(&block18, &tmp43, &tmp44, &tmp45, &tmp46); } if (block1.is_used()) { TNode<Context> tmp47; TNode<JSArray> tmp48; ca_.Bind(&block1, &tmp47, &tmp48); ca_.Goto(&block20, tmp47, tmp48); } TNode<Context> tmp49; TNode<JSArray> tmp50; ca_.Bind(&block20, &tmp49, &tmp50); } TNode<Object> LoadElementOrUndefined_0(compiler::CodeAssemblerState* state_, TNode<Context> p_context, TNode<FixedArray> p_a, TNode<Smi> p_i) { compiler::CodeAssembler ca_(state_); compiler::CodeAssemblerParameterizedLabel<Context, FixedArray, Smi> block0(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<Context, FixedArray, Smi, FixedArray, IntPtrT, IntPtrT, Smi, Smi, IntPtrT, HeapObject, IntPtrT, IntPtrT, IntPtrT, IntPtrT> block6(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<Context, FixedArray, Smi, FixedArray, IntPtrT, IntPtrT, Smi, Smi, IntPtrT, HeapObject, IntPtrT, IntPtrT, IntPtrT, IntPtrT> block7(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<Context, FixedArray, Smi, Object> block9(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); ca_.Goto(&block0, p_context, p_a, p_i); if (block0.is_used()) { TNode<Context> tmp0; TNode<FixedArray> tmp1; TNode<Smi> tmp2; ca_.Bind(&block0, &tmp0, &tmp1, &tmp2); TNode<IntPtrT> tmp3 = ca_.IntPtrConstant(FixedArray::kObjectsOffset); USE(tmp3); TNode<IntPtrT> tmp4 = ca_.IntPtrConstant(FixedArrayBase::kLengthOffset); USE(tmp4); TNode<Smi>tmp5 = CodeStubAssembler(state_).LoadReference<Smi>(CodeStubAssembler::Reference{tmp1, tmp4}); TNode<IntPtrT> tmp6; USE(tmp6); tmp6 = Convert_intptr_Smi_0(state_, TNode<Smi>{tmp5}); TNode<IntPtrT> tmp7; USE(tmp7); tmp7 = Convert_intptr_Smi_0(state_, TNode<Smi>{tmp2}); TNode<UintPtrT> tmp8; USE(tmp8); tmp8 = Convert_uintptr_intptr_0(state_, TNode<IntPtrT>{tmp7}); TNode<UintPtrT> tmp9; USE(tmp9); tmp9 = Convert_uintptr_intptr_0(state_, TNode<IntPtrT>{tmp6}); TNode<BoolT> tmp10; USE(tmp10); tmp10 = CodeStubAssembler(state_).UintPtrLessThan(TNode<UintPtrT>{tmp8}, TNode<UintPtrT>{tmp9}); ca_.Branch(tmp10, &block6, &block7, tmp0, tmp1, tmp2, tmp1, tmp3, tmp6, tmp2, tmp2, tmp7, tmp1, tmp3, tmp6, tmp7, tmp7); } if (block6.is_used()) { TNode<Context> tmp11; TNode<FixedArray> tmp12; TNode<Smi> tmp13; TNode<FixedArray> tmp14; TNode<IntPtrT> tmp15; TNode<IntPtrT> tmp16; TNode<Smi> tmp17; TNode<Smi> tmp18; TNode<IntPtrT> tmp19; TNode<HeapObject> tmp20; TNode<IntPtrT> tmp21; TNode<IntPtrT> tmp22; TNode<IntPtrT> tmp23; TNode<IntPtrT> tmp24; ca_.Bind(&block6, &tmp11, &tmp12, &tmp13, &tmp14, &tmp15, &tmp16, &tmp17, &tmp18, &tmp19, &tmp20, &tmp21, &tmp22, &tmp23, &tmp24); TNode<IntPtrT> tmp25; USE(tmp25); tmp25 = FromConstexpr_intptr_constexpr_int31_0(state_, kTaggedSize); TNode<IntPtrT> tmp26; USE(tmp26); tmp26 = CodeStubAssembler(state_).IntPtrMul(TNode<IntPtrT>{tmp24}, TNode<IntPtrT>{tmp25}); TNode<IntPtrT> tmp27; USE(tmp27); tmp27 = CodeStubAssembler(state_).IntPtrAdd(TNode<IntPtrT>{tmp21}, TNode<IntPtrT>{tmp26}); TNode<HeapObject> tmp28; USE(tmp28); TNode<IntPtrT> tmp29; USE(tmp29); std::tie(tmp28, tmp29) = UnsafeNewReference_Object_0(state_, TNode<HeapObject>{tmp20}, TNode<IntPtrT>{tmp27}).Flatten(); TNode<Object>tmp30 = CodeStubAssembler(state_).LoadReference<Object>(CodeStubAssembler::Reference{tmp28, tmp29}); TNode<Object> tmp31; USE(tmp31); tmp31 = UnsafeCast_JSReceiver_OR_Smi_OR_HeapNumber_OR_BigInt_OR_String_OR_Symbol_OR_True_OR_False_OR_Null_OR_Undefined_OR_TheHole_0(state_, TNode<Context>{tmp11}, TNode<Object>{tmp30}); TNode<Object> tmp32; USE(tmp32); tmp32 = ReplaceTheHoleWithUndefined_0(state_, TNode<Object>{tmp31}); ca_.Goto(&block9, tmp11, tmp12, tmp13, tmp32); } if (block7.is_used()) { TNode<Context> tmp33; TNode<FixedArray> tmp34; TNode<Smi> tmp35; TNode<FixedArray> tmp36; TNode<IntPtrT> tmp37; TNode<IntPtrT> tmp38; TNode<Smi> tmp39; TNode<Smi> tmp40; TNode<IntPtrT> tmp41; TNode<HeapObject> tmp42; TNode<IntPtrT> tmp43; TNode<IntPtrT> tmp44; TNode<IntPtrT> tmp45; TNode<IntPtrT> tmp46; ca_.Bind(&block7, &tmp33, &tmp34, &tmp35, &tmp36, &tmp37, &tmp38, &tmp39, &tmp40, &tmp41, &tmp42, &tmp43, &tmp44, &tmp45, &tmp46); CodeStubAssembler(state_).Unreachable(); } TNode<Context> tmp47; TNode<FixedArray> tmp48; TNode<Smi> tmp49; TNode<Object> tmp50; ca_.Bind(&block9, &tmp47, &tmp48, &tmp49, &tmp50); return TNode<Object>{tmp50}; } TNode<Object> LoadElementOrUndefined_1(compiler::CodeAssemblerState* state_, TNode<FixedDoubleArray> p_a, TNode<Smi> p_i) { compiler::CodeAssembler ca_(state_); compiler::CodeAssemblerParameterizedLabel<FixedDoubleArray, Smi> block0(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<FixedDoubleArray, Smi, FixedDoubleArray, Smi> block5(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<FixedDoubleArray, Smi, FixedDoubleArray, Smi, Float64T> block4(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<FixedDoubleArray, Smi, Object> block1(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<FixedDoubleArray, Smi, Object> block6(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); ca_.Goto(&block0, p_a, p_i); if (block0.is_used()) { TNode<FixedDoubleArray> tmp0; TNode<Smi> tmp1; ca_.Bind(&block0, &tmp0, &tmp1); TNode<Float64T> tmp2; USE(tmp2); compiler::CodeAssemblerLabel label0(&ca_); tmp2 = CodeStubAssembler(state_).LoadDoubleWithHoleCheck(TNode<FixedDoubleArray>{tmp0}, TNode<Smi>{tmp1}, &label0); ca_.Goto(&block4, tmp0, tmp1, tmp0, tmp1, tmp2); if (label0.is_used()) { ca_.Bind(&label0); ca_.Goto(&block5, tmp0, tmp1, tmp0, tmp1); } } if (block5.is_used()) { TNode<FixedDoubleArray> tmp3; TNode<Smi> tmp4; TNode<FixedDoubleArray> tmp5; TNode<Smi> tmp6; ca_.Bind(&block5, &tmp3, &tmp4, &tmp5, &tmp6); TNode<Oddball> tmp7; USE(tmp7); tmp7 = Undefined_0(state_); ca_.Goto(&block1, tmp3, tmp4, tmp7); } if (block4.is_used()) { TNode<FixedDoubleArray> tmp8; TNode<Smi> tmp9; TNode<FixedDoubleArray> tmp10; TNode<Smi> tmp11; TNode<Float64T> tmp12; ca_.Bind(&block4, &tmp8, &tmp9, &tmp10, &tmp11, &tmp12); TNode<HeapNumber> tmp13; USE(tmp13); tmp13 = CodeStubAssembler(state_).AllocateHeapNumberWithValue(TNode<Float64T>{tmp12}); ca_.Goto(&block1, tmp8, tmp9, tmp13); } if (block1.is_used()) { TNode<FixedDoubleArray> tmp14; TNode<Smi> tmp15; TNode<Object> tmp16; ca_.Bind(&block1, &tmp14, &tmp15, &tmp16); ca_.Goto(&block6, tmp14, tmp15, tmp16); } TNode<FixedDoubleArray> tmp17; TNode<Smi> tmp18; TNode<Object> tmp19; ca_.Bind(&block6, &tmp17, &tmp18, &tmp19); return TNode<Object>{tmp19}; } void StoreArrayHole_0(compiler::CodeAssemblerState* state_, TNode<FixedDoubleArray> p_elements, TNode<Smi> p_k) { compiler::CodeAssembler ca_(state_); compiler::CodeAssemblerParameterizedLabel<FixedDoubleArray, Smi> block0(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<FixedDoubleArray, Smi> block2(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); ca_.Goto(&block0, p_elements, p_k); if (block0.is_used()) { TNode<FixedDoubleArray> tmp0; TNode<Smi> tmp1; ca_.Bind(&block0, &tmp0, &tmp1); CodeStubAssembler(state_).StoreFixedDoubleArrayHoleSmi(TNode<FixedDoubleArray>{tmp0}, TNode<Smi>{tmp1}); ca_.Goto(&block2, tmp0, tmp1); } TNode<FixedDoubleArray> tmp2; TNode<Smi> tmp3; ca_.Bind(&block2, &tmp2, &tmp3); } void StoreArrayHole_1(compiler::CodeAssemblerState* state_, TNode<FixedArray> p_elements, TNode<Smi> p_k) { compiler::CodeAssembler ca_(state_); compiler::CodeAssemblerParameterizedLabel<FixedArray, Smi> block0(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<FixedArray, Smi, FixedArray, IntPtrT, IntPtrT, Smi, Smi, IntPtrT, HeapObject, IntPtrT, IntPtrT, IntPtrT, IntPtrT> block6(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<FixedArray, Smi, FixedArray, IntPtrT, IntPtrT, Smi, Smi, IntPtrT, HeapObject, IntPtrT, IntPtrT, IntPtrT, IntPtrT> block7(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<FixedArray, Smi> block9(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); ca_.Goto(&block0, p_elements, p_k); if (block0.is_used()) { TNode<FixedArray> tmp0; TNode<Smi> tmp1; ca_.Bind(&block0, &tmp0, &tmp1); TNode<IntPtrT> tmp2 = ca_.IntPtrConstant(FixedArray::kObjectsOffset); USE(tmp2); TNode<IntPtrT> tmp3 = ca_.IntPtrConstant(FixedArrayBase::kLengthOffset); USE(tmp3); TNode<Smi>tmp4 = CodeStubAssembler(state_).LoadReference<Smi>(CodeStubAssembler::Reference{tmp0, tmp3}); TNode<IntPtrT> tmp5; USE(tmp5); tmp5 = Convert_intptr_Smi_0(state_, TNode<Smi>{tmp4}); TNode<IntPtrT> tmp6; USE(tmp6); tmp6 = Convert_intptr_Smi_0(state_, TNode<Smi>{tmp1}); TNode<UintPtrT> tmp7; USE(tmp7); tmp7 = Convert_uintptr_intptr_0(state_, TNode<IntPtrT>{tmp6}); TNode<UintPtrT> tmp8; USE(tmp8); tmp8 = Convert_uintptr_intptr_0(state_, TNode<IntPtrT>{tmp5}); TNode<BoolT> tmp9; USE(tmp9); tmp9 = CodeStubAssembler(state_).UintPtrLessThan(TNode<UintPtrT>{tmp7}, TNode<UintPtrT>{tmp8}); ca_.Branch(tmp9, &block6, &block7, tmp0, tmp1, tmp0, tmp2, tmp5, tmp1, tmp1, tmp6, tmp0, tmp2, tmp5, tmp6, tmp6); } if (block6.is_used()) { TNode<FixedArray> tmp10; TNode<Smi> tmp11; TNode<FixedArray> tmp12; TNode<IntPtrT> tmp13; TNode<IntPtrT> tmp14; TNode<Smi> tmp15; TNode<Smi> tmp16; TNode<IntPtrT> tmp17; TNode<HeapObject> tmp18; TNode<IntPtrT> tmp19; TNode<IntPtrT> tmp20; TNode<IntPtrT> tmp21; TNode<IntPtrT> tmp22; ca_.Bind(&block6, &tmp10, &tmp11, &tmp12, &tmp13, &tmp14, &tmp15, &tmp16, &tmp17, &tmp18, &tmp19, &tmp20, &tmp21, &tmp22); TNode<IntPtrT> tmp23; USE(tmp23); tmp23 = FromConstexpr_intptr_constexpr_int31_0(state_, kTaggedSize); TNode<IntPtrT> tmp24; USE(tmp24); tmp24 = CodeStubAssembler(state_).IntPtrMul(TNode<IntPtrT>{tmp22}, TNode<IntPtrT>{tmp23}); TNode<IntPtrT> tmp25; USE(tmp25); tmp25 = CodeStubAssembler(state_).IntPtrAdd(TNode<IntPtrT>{tmp19}, TNode<IntPtrT>{tmp24}); TNode<HeapObject> tmp26; USE(tmp26); TNode<IntPtrT> tmp27; USE(tmp27); std::tie(tmp26, tmp27) = UnsafeNewReference_Object_0(state_, TNode<HeapObject>{tmp18}, TNode<IntPtrT>{tmp25}).Flatten(); TNode<Oddball> tmp28; USE(tmp28); tmp28 = TheHole_0(state_); CodeStubAssembler(state_).StoreReference(CodeStubAssembler::Reference{tmp26, tmp27}, tmp28); ca_.Goto(&block9, tmp10, tmp11); } if (block7.is_used()) { TNode<FixedArray> tmp29; TNode<Smi> tmp30; TNode<FixedArray> tmp31; TNode<IntPtrT> tmp32; TNode<IntPtrT> tmp33; TNode<Smi> tmp34; TNode<Smi> tmp35; TNode<IntPtrT> tmp36; TNode<HeapObject> tmp37; TNode<IntPtrT> tmp38; TNode<IntPtrT> tmp39; TNode<IntPtrT> tmp40; TNode<IntPtrT> tmp41; ca_.Bind(&block7, &tmp29, &tmp30, &tmp31, &tmp32, &tmp33, &tmp34, &tmp35, &tmp36, &tmp37, &tmp38, &tmp39, &tmp40, &tmp41); CodeStubAssembler(state_).Unreachable(); } TNode<FixedArray> tmp42; TNode<Smi> tmp43; ca_.Bind(&block9, &tmp42, &tmp43); } void EnsureArrayLengthWritable_0(compiler::CodeAssemblerState* state_, TNode<Context> p_context, TNode<Map> p_map, compiler::CodeAssemblerLabel* label_Bailout) { compiler::CodeAssembler ca_(state_); compiler::CodeAssemblerParameterizedLabel<Context, Map> block0(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<Context, Map> block3(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<Context, Map> block4(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<Context, Map, DescriptorArray, DescriptorArray, IntPtrT, IntPtrT, IntPtrT, HeapObject, IntPtrT, IntPtrT, IntPtrT, IntPtrT> block9(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<Context, Map, DescriptorArray, DescriptorArray, IntPtrT, IntPtrT, IntPtrT, HeapObject, IntPtrT, IntPtrT, IntPtrT, IntPtrT> block10(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<Context, Map, DescriptorArray, HeapObject, IntPtrT> block15(&ca_, compiler::CodeAssemblerLabel::kDeferred); compiler::CodeAssemblerParameterizedLabel<Context, Map, DescriptorArray, HeapObject, IntPtrT> block14(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<Context, Map, DescriptorArray, HeapObject, IntPtrT, Smi> block16(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<Context, Map, DescriptorArray, HeapObject, IntPtrT, Smi> block17(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<> block1(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<Context, Map> block18(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); ca_.Goto(&block0, p_context, p_map); if (block0.is_used()) { TNode<Context> tmp0; TNode<Map> tmp1; ca_.Bind(&block0, &tmp0, &tmp1); TNode<BoolT> tmp2; USE(tmp2); tmp2 = ConstructorBuiltinsAssembler(state_).IsDictionaryMap(TNode<Map>{tmp1}); ca_.Branch(tmp2, &block3, &block4, tmp0, tmp1); } if (block3.is_used()) { TNode<Context> tmp3; TNode<Map> tmp4; ca_.Bind(&block3, &tmp3, &tmp4); ca_.Goto(&block1); } if (block4.is_used()) { TNode<Context> tmp5; TNode<Map> tmp6; ca_.Bind(&block4, &tmp5, &tmp6); TNode<IntPtrT> tmp7 = ca_.IntPtrConstant(Map::kInstanceDescriptorsOffset); USE(tmp7); TNode<DescriptorArray>tmp8 = CodeStubAssembler(state_).LoadReference<DescriptorArray>(CodeStubAssembler::Reference{tmp6, tmp7}); TNode<IntPtrT> tmp9 = ca_.IntPtrConstant(DescriptorArray::kDescriptorsOffset); USE(tmp9); TNode<IntPtrT> tmp10 = ca_.IntPtrConstant(DescriptorArray::kNumberOfAllDescriptorsOffset); USE(tmp10); TNode<Uint16T>tmp11 = CodeStubAssembler(state_).LoadReference<Uint16T>(CodeStubAssembler::Reference{tmp8, tmp10}); TNode<IntPtrT> tmp12; USE(tmp12); tmp12 = Convert_intptr_uint16_0(state_, TNode<Uint16T>{tmp11}); TNode<IntPtrT> tmp13; USE(tmp13); tmp13 = Convert_intptr_constexpr_int31_0(state_, JSArray::kLengthDescriptorIndex); TNode<UintPtrT> tmp14; USE(tmp14); tmp14 = Convert_uintptr_intptr_0(state_, TNode<IntPtrT>{tmp13}); TNode<UintPtrT> tmp15; USE(tmp15); tmp15 = Convert_uintptr_intptr_0(state_, TNode<IntPtrT>{tmp12}); TNode<BoolT> tmp16; USE(tmp16); tmp16 = CodeStubAssembler(state_).UintPtrLessThan(TNode<UintPtrT>{tmp14}, TNode<UintPtrT>{tmp15}); ca_.Branch(tmp16, &block9, &block10, tmp5, tmp6, tmp8, tmp8, tmp9, tmp12, tmp13, tmp8, tmp9, tmp12, tmp13, tmp13); } if (block9.is_used()) { TNode<Context> tmp17; TNode<Map> tmp18; TNode<DescriptorArray> tmp19; TNode<DescriptorArray> tmp20; TNode<IntPtrT> tmp21; TNode<IntPtrT> tmp22; TNode<IntPtrT> tmp23; TNode<HeapObject> tmp24; TNode<IntPtrT> tmp25; TNode<IntPtrT> tmp26; TNode<IntPtrT> tmp27; TNode<IntPtrT> tmp28; ca_.Bind(&block9, &tmp17, &tmp18, &tmp19, &tmp20, &tmp21, &tmp22, &tmp23, &tmp24, &tmp25, &tmp26, &tmp27, &tmp28); TNode<IntPtrT> tmp29; USE(tmp29); tmp29 = FromConstexpr_intptr_constexpr_int31_0(state_, 12); TNode<IntPtrT> tmp30; USE(tmp30); tmp30 = CodeStubAssembler(state_).IntPtrMul(TNode<IntPtrT>{tmp28}, TNode<IntPtrT>{tmp29}); TNode<IntPtrT> tmp31; USE(tmp31); tmp31 = CodeStubAssembler(state_).IntPtrAdd(TNode<IntPtrT>{tmp25}, TNode<IntPtrT>{tmp30}); TNode<HeapObject> tmp32; USE(tmp32); TNode<IntPtrT> tmp33; USE(tmp33); std::tie(tmp32, tmp33) = UnsafeNewReference_DescriptorEntry_0(state_, TNode<HeapObject>{tmp24}, TNode<IntPtrT>{tmp31}).Flatten(); TNode<IntPtrT> tmp34; USE(tmp34); tmp34 = FromConstexpr_intptr_constexpr_intptr_0(state_, 4); TNode<IntPtrT> tmp35; USE(tmp35); tmp35 = CodeStubAssembler(state_).IntPtrAdd(TNode<IntPtrT>{tmp33}, TNode<IntPtrT>{tmp34}); TNode<Object>tmp36 = CodeStubAssembler(state_).LoadReference<Object>(CodeStubAssembler::Reference{tmp32, tmp35}); TNode<Smi> tmp37; USE(tmp37); tmp37 = UnsafeCast_Smi_0(state_, TNode<Context>{tmp17}, TNode<Object>{tmp36}); TNode<Smi> tmp38; USE(tmp38); tmp38 = FromConstexpr_Smi_constexpr_int31_0(state_, PropertyDetails::kAttributesReadOnlyMask); TNode<Smi> tmp39; USE(tmp39); tmp39 = CodeStubAssembler(state_).SmiAnd(TNode<Smi>{tmp37}, TNode<Smi>{tmp38}); TNode<Smi> tmp40; USE(tmp40); tmp40 = FromConstexpr_Smi_constexpr_int31_0(state_, 0); TNode<BoolT> tmp41; USE(tmp41); tmp41 = CodeStubAssembler(state_).SmiNotEqual(TNode<Smi>{tmp39}, TNode<Smi>{tmp40}); ca_.Branch(tmp41, &block16, &block17, tmp17, tmp18, tmp19, tmp32, tmp33, tmp37); } if (block10.is_used()) { TNode<Context> tmp42; TNode<Map> tmp43; TNode<DescriptorArray> tmp44; TNode<DescriptorArray> tmp45; TNode<IntPtrT> tmp46; TNode<IntPtrT> tmp47; TNode<IntPtrT> tmp48; TNode<HeapObject> tmp49; TNode<IntPtrT> tmp50; TNode<IntPtrT> tmp51; TNode<IntPtrT> tmp52; TNode<IntPtrT> tmp53; ca_.Bind(&block10, &tmp42, &tmp43, &tmp44, &tmp45, &tmp46, &tmp47, &tmp48, &tmp49, &tmp50, &tmp51, &tmp52, &tmp53); CodeStubAssembler(state_).Unreachable(); } if (block15.is_used()) { TNode<Context> tmp54; TNode<Map> tmp55; TNode<DescriptorArray> tmp56; TNode<HeapObject> tmp57; TNode<IntPtrT> tmp58; ca_.Bind(&block15, &tmp54, &tmp55, &tmp56, &tmp57, &tmp58); CodeStubAssembler(state_).FailAssert("Torque assert 'TaggedEqual(descriptor->key, LengthStringConstant())' failed", "src/builtins/array.tq", 75); } if (block14.is_used()) { TNode<Context> tmp59; TNode<Map> tmp60; TNode<DescriptorArray> tmp61; TNode<HeapObject> tmp62; TNode<IntPtrT> tmp63; ca_.Bind(&block14, &tmp59, &tmp60, &tmp61, &tmp62, &tmp63); } if (block16.is_used()) { TNode<Context> tmp64; TNode<Map> tmp65; TNode<DescriptorArray> tmp66; TNode<HeapObject> tmp67; TNode<IntPtrT> tmp68; TNode<Smi> tmp69; ca_.Bind(&block16, &tmp64, &tmp65, &tmp66, &tmp67, &tmp68, &tmp69); ca_.Goto(&block1); } if (block17.is_used()) { TNode<Context> tmp70; TNode<Map> tmp71; TNode<DescriptorArray> tmp72; TNode<HeapObject> tmp73; TNode<IntPtrT> tmp74; TNode<Smi> tmp75; ca_.Bind(&block17, &tmp70, &tmp71, &tmp72, &tmp73, &tmp74, &tmp75); ca_.Goto(&block18, tmp70, tmp71); } if (block1.is_used()) { ca_.Bind(&block1); ca_.Goto(label_Bailout); } TNode<Context> tmp76; TNode<Map> tmp77; ca_.Bind(&block18, &tmp76, &tmp77); } TNode<Object> UnsafeCast_JSReceiver_OR_Smi_OR_HeapNumber_OR_BigInt_OR_String_OR_Symbol_OR_True_OR_False_OR_Null_OR_Undefined_OR_TheHole_0(compiler::CodeAssemblerState* state_, TNode<Context> p_context, TNode<Object> p_o) { compiler::CodeAssembler ca_(state_); compiler::CodeAssemblerParameterizedLabel<Context, Object> block0(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<Context, Object> block5(&ca_, compiler::CodeAssemblerLabel::kDeferred); compiler::CodeAssemblerParameterizedLabel<Context, Object> block4(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); compiler::CodeAssemblerParameterizedLabel<Context, Object, Object> block6(&ca_, compiler::CodeAssemblerLabel::kNonDeferred); ca_.Goto(&block0, p_context, p_o); if (block0.is_used()) { TNode<Context> tmp0; TNode<Object> tmp1; ca_.Bind(&block0, &tmp0, &tmp1); TNode<Object> tmp2; USE(tmp2); tmp2 = (TNode<Object>{tmp1}); ca_.Goto(&block6, tmp0, tmp1, tmp2); } if (block5.is_used()) { TNode<Context> tmp3; TNode<Object> tmp4; ca_.Bind(&block5, &tmp3, &tmp4); CodeStubAssembler(state_).FailAssert("Torque assert 'Is<A>(o)' failed", "src/builtins/base.tq", 914); } if (block4.is_used()) { TNode<Context> tmp5; TNode<Object> tmp6; ca_.Bind(&block4, &tmp5, &tmp6); } TNode<Context> tmp7; TNode<Object> tmp8; TNode<Object> tmp9; ca_.Bind(&block6, &tmp7, &tmp8, &tmp9); return TNode<Object>{tmp9}; } } // namespace internal } // namespace v8
[ "pierrelouis.chevallier60@gmail.com" ]
pierrelouis.chevallier60@gmail.com
3e2f10fedf00d94acd609740b079ea396970b89d
0db28bf724b7d7b54ab8426e2b376a418a2e6d57
/CMC040/cmcfun/outp_finish.cc
58d8e0df41ce71a1982108b2ab6e969038b33cc2
[ "MIT" ]
permissive
khandy21yo/aplus
48ea413a26a4a5e23ab557e6dd3560c6a579aba5
3b4024a2a8315f5dcc78479a24100efa3c4a6504
refs/heads/master
2021-01-11T06:53:05.825792
2019-03-08T23:30:37
2019-03-08T23:30:37
72,404,068
1
0
null
null
null
null
UTF-8
C++
false
false
4,084
cc
//! \file //! \brief Close Out Any Open Report // %SBTTL "OUTP_FINISH" // %IDENT "V3.6a Calico" //// // Source: ../../CMC030/cmcfun/source/outp_finish.bas // Translated from Basic to C++ using btran // on Monday, January 08, 2018 at 12:38:19 // #include <iostream> #include <cstdlib> #include <cstring> #include <unistd.h> #include "basicfun.h" #include "smg/lib.h" #include "preferences.h" #include "cmcfun.h" #include "scopedef.h" #include "database.h" #include "cmcfun/report.h" #include "utl/utl_reportx.h" extern scope_struct scope; //! //! Abstract:HELP //! .b //! .lm +5 //! This subroutine finishes up any REPORT currently open //! .lm -5 //! //! Parameters: //! //! UTL_REPORTX //! The created file that closes any other reports. //! //! Returned value //! It finishes up any report that may still //! be currently open. //! //! Example: //! //! CALL OUTP_FINISH(UTL_REPORTX) //! //! AUTHOR: //! //! 02/23/87 - Kevin Handy //! void outp_finish( utl_reportx_cdd &utl_reportx) { std::vector<std::string> junk; std::string key_name; std::string lib_name; std::string printfinish; std::string prog_name; long smg_status; long st; long temp; std::string tolocal; std::string toscreen; // // Set up variables we will probibly need // writ_string(utl_reportx.printfinish, printfinish); writ_string(utl_reportx.tolocal, tolocal); writ_string(utl_reportx.toscreen, toscreen); // // Finish off report // // ** Converted from a select statement ** // // Display // if (utl_reportx.printto == OUTP_TODISPLAY) { utl_reportx.autoscroll = 0; if (utl_reportx.stat == 0) { reloop:; outp_line("", utl_reportx, junk, "", -12345); utl_reportx.autoscroll = 0; // ** Converted from a select statement ** // // An exit type of key // if ((scope.scope_exit == SMG$K_TRM_F10) || (scope.scope_exit == SMG$K_TRM_CTRLZ) || (scope.scope_exit == 3) || (scope.scope_exit == SMG$K_TRM_F8) || (scope.scope_exit == SMG$K_TRM_DO)) { // // All other keys cause a reloop // } else { goto reloop; } } // // Erase display screen // smg_status = smg$delete_virtual_display(utl_reportx.window); // // Spool // } else if (utl_reportx.printto == OUTP_TOSPOOL) { utl_reportx.chan << printfinish << std::endl; utl_reportx.chan.close(); outp_spool(utl_reportx); // // File // } else if (utl_reportx.printto == OUTP_TOFILE) { utl_reportx.chan << printfinish << std::endl; utl_reportx.chan.close(); // // Word Processing, S2020, DIF // } else if ((utl_reportx.printto == OUTP_TOWP) || (utl_reportx.printto == OUTP_TO2020) || (utl_reportx.printto == OUTP_TOPL)) { utl_reportx.chan.close(); // // Device // } else if (utl_reportx.printto == OUTP_TODEVICE) { utl_reportx.chan << printfinish << std::endl; outp_formff(utl_reportx); utl_reportx.chan.close(); // // Local printer // } else if (utl_reportx.printto == OUTP_TOLOCAL) { utl_reportx.chan << tolocal << printfinish; outp_formff(utl_reportx); utl_reportx.chan << toscreen; utl_reportx.chan.close(); // // Documentation // } else if (utl_reportx.printto == OUTP_TODOCUMENT) { utl_reportx.chan.close(); prog_name = boost::trim_right_copy(utl_reportx.pronam); // // Create key name // key_name = boost::trim_right_copy(prog_name) + "$" + "REPORT"; // // Create library name // temp = ((prog_name + "_").find("_", 0) + 1); lib_name = std::string("SIC:WINDOWS_") + prog_name.substr(0, temp - 1); // // Plop it into library // st = libr_3insert(lib_name, utl_reportx.defout, key_name); // // Delete the file (hope for only one) // smg_status = lib$delete_file(boost::trim_right_copy(utl_reportx.defout) + ";*"); } // // Erase display (option and message) // if (scope.smg_option.win) { smg_status = smg$erase_display(scope.smg_option); } if (scope.smg_message.win) { smg_status = smg$erase_display(scope.smg_message); } // // Change the width // smg_status = smg$change_pbd_characteristics(scope.smg_pbid, 80); }
[ "khandy21yo@gmail.com" ]
khandy21yo@gmail.com
f0208662baa254241ef12e5dd024739d2f47eda0
b3ae5b71c7c08fccd7653f38688ed4ae4fd4c8ea
/GPS_L1_Serch/SignalProcDlg/GnrlDefine.h
ae21244c6073d0dd0e1bcbcfd544a03b712d450f
[]
no_license
shihatakeyama/GPS_L1_Serch
fcb3046e34f9fbe03559078ad4e92a9c6a1abc76
f78a6f251e21ce333461cfed587efe00f616ae43
refs/heads/master
2022-11-16T00:26:17.872848
2020-07-13T00:40:37
2020-07-13T00:40:37
271,734,682
0
1
null
null
null
null
SHIFT_JIS
C++
false
false
2,808
h
/*********************************************************************************** * Gnrlで必要なデファイン * Gnrlをコンパイルするソースは、必ず本ファイルをインクルードして下さい。 * * GnrlDefine.h * (旧 GlobalDefine.h) * * 2013/06/31 Createed ***********************************************************************************/ #ifndef GNRLDEFINE_H #define GNRLDEFINE_H // **** アプリケーションで使用するの機能に応じてデファインを活かして下さい。 **** //#define USE_GNRLLIST //#define USE_GNRLTABLE #define USE_GNRLCONDITION #define USE_GNRLBYTEORDER //#define USE_GNRLEVENT #define USE_STREAM_BUF // **** 使用するPCの環境を定義してください **** #define HAVE_CXX_VOLATILE 1 // コンパイラがvolatileに対応している場合 #define WINDOWS_INTERFACE 1 // WINDOWSで使用する場合 #undef MAX_PATH #define MAX_PATH 260 // 環境に応じて値を増減して下さい #define SIZE_OF_BUF (1024*4) // 文字列操作用バッファーサイズ #if WINDOWS_INTERFACE==1 //#include "stdafx.h" // Microsoft VisualC++使用の場合 #include <windows.h> #endif #define _CRT_SECURE_NO_WARNINGS // CRTの警告を出力しない #pragma warning ( disable : 4996 ) // ********************************************************************************* // 各種マクロ // ********************************************************************************* #if 0 // 大小判定マクロ ※VSで<stdio.h>をインクルードした後に定義するとエラーになる。 template <typename X> X MAX(X arg1, X arg2) { return arg1>arg2 ? arg1 : arg2; } template <typename X> X MIN(X arg1, X arg2) { return arg1<arg2 ? arg1 : arg2; } #endif // 引数が任意の場合のマクロ #define GNRL_VA_LIST va_list #define GNRL_VA_START(a,b) va_start(a,b) #define GNRL_VA_ARG(a,b) va_arg(a,b) #define GNRL_VA_END(a) va_end (a) // 引数が不定の呼び出し //#define GNRL_VSPRINTF _vstprintf // TCHAR.H のルーチン #define GNRL_VSPRINTF vsprintf // _UNICODE & _MBCS が未定義または_MBCS が定義されている場合 //#define GNRL_VSPRINTF vswprintf // _UNICODE が定義されている場合 #if 0 #define ZeroMemory(x,y) memset((x),0,(y)) #endif // キャストは頻繁に呼び出す場合は、 // クラス内に専用メンバ関数を作成した方がよいかもしれない。 // ダウンキャストで使用してください。 #define GNRL_DOWN_CAST(To ,from){ assert(dynamic_cast<To>(from) == static_cast<To>(from) && "GNRL_STATIC_CAST 失敗"); return static_cast<To>(from);} // フレーム解読など、ポインタの型変換で使用してください。 #define GNRL_REINTERPRET_CAST(t ,a) static_cast<t>((pVoid)a) #endif // GNRLDEFINE
[ "57062795+shihatakeyama@users.noreply.github.com" ]
57062795+shihatakeyama@users.noreply.github.com
3f3fa12f61d6668d222f285f680e5a2b572c4891
53b7d017afc59d62e0b22f817efbfa497d03b7e9
/CallKinectSourceData/pch.h
cc91b19c5969301da876f5f5ae28729922461a97
[]
no_license
yangsen228/CallKinectSourceData
9f9427d0f9c6988e7dd356822f9249b8967179d1
60e3874d64aab9c3207fb7c530e86e38f977080a
refs/heads/master
2020-06-09T15:02:15.506630
2019-07-04T14:28:20
2019-07-04T14:28:20
191,879,907
0
0
null
null
null
null
UTF-8
C++
false
false
808
h
// 入门提示: // 1. 使用解决方案资源管理器窗口添加/管理文件 // 2. 使用团队资源管理器窗口连接到源代码管理 // 3. 使用输出窗口查看生成输出和其他消息 // 4. 使用错误列表窗口查看错误 // 5. 转到“项目”>“添加新项”以创建新的代码文件,或转到“项目”>“添加现有项”以将现有代码文件添加到项目 // 6. 将来,若要再次打开此项目,请转到“文件”>“打开”>“项目”并选择 .sln 文件 #include <iostream> #include <time.h> #ifndef PCH_H #define PCH_H template<class Interface> inline void SafeRelease(Interface *& pInterfaceToRelease) { if (pInterfaceToRelease != NULL) { pInterfaceToRelease->Release(); pInterfaceToRelease = NULL; } } #endif //PCH_H
[ "yangsen228@gitee.com" ]
yangsen228@gitee.com
fb12247b25373bce151833c29f4d079fc9375388
2226840e8c92283c73530c6c2bf63f1e8e4af1c6
/LocalStorage/Core/Core/Memory/FMallocBinned.h
6e400851ac1123e50b7ac841540271dd5256ef17
[]
no_license
timur-losev/LocalStorage
b87e44bf39a29f1a1394d0df05badea54f87a67a
4f425c4756039ecc8473339dd73abd810094f63e
refs/heads/master
2021-01-10T02:37:45.453697
2015-12-26T20:57:21
2015-12-26T20:57:21
44,805,112
0
0
null
null
null
null
UTF-8
C++
false
false
26,069
h
// // FMallocBinned.h // PetBuddies // // Created by void on 8/17/15. // Copyright (c) 2015 Catalyst Apps. All rights reserved. // #pragma once #include "FMemoryBase.h" #include "Core/Math/FGenericMath.h" #define MEM_TIME(st) //#define USE_LOCKFREE_DELETE #define USE_INTERNAL_LOCKS #define CACHE_FREED_OS_ALLOCS #ifdef USE_INTERNAL_LOCKS //# define USE_COARSE_GRAIN_LOCKS #endif #if defined USE_LOCKFREE_DELETE # define USE_INTERNAL_LOCKS # define USE_COARSE_GRAIN_LOCKS #endif #if defined CACHE_FREED_OS_ALLOCS # define MAX_CACHED_OS_FREES (32) # define MAX_CACHED_OS_FREES_BYTE_LIMIT (4*1024*1024) #endif #if defined USE_INTERNAL_LOCKS && !defined USE_COARSE_GRAIN_LOCKS # define USE_FINE_GRAIN_LOCKS #endif #define STATS 1 #if STATS #define STAT(x) x #else #define STAT(x) #endif class FMallocBinned : public FMalloc { private: // Counts. enum { PoolCount = 42 }; /** Maximum allocation for the pooled allocator */ enum { extened_page_pool_allocation_count = 2 }; enum { max_pooled_allocation_size = 32768+1 }; enum { page_size_limit = 65536 }; // binned_alloc_pool_size can be increased beyond 64k to cause binned malloc to allocate // the small size bins in bigger chunks. if os allocation is slow, increasing // this number *may* help performance but ymmv. enum { binned_alloc_pool_size = 65536 }; // Forward declares. struct FFreeMem; struct FPoolTable; // Memory pool info. 32 bytes. struct FPoolInfo { /** Number of allocated elements in this pool, when counts down to zero can free the entire pool. */ uint16_t taken; // 2 /** Index of pool. Index into MemSizeToPoolTable[]. Valid when < max_pooled_allocation_size, max_pooled_allocation_size is OsTable. When AllocSize is 0, this is the number of pages to step back to find the base address of an allocation. See FindPoolInfoInternal() */ uint16_t tableIndex; // 4 /** Number of bytes allocated */ uint32_t allocSize; // 8 /** Pointer to first free memory in this pool or the OS Allocation Size in bytes if this allocation is not binned*/ FFreeMem* firstMem; // 12/16 FPoolInfo* next; // 16/24 FPoolInfo** prevLink; // 20/32 #if LS_PLATFORM_32BITS /** Explicit padding for 32 bit builds */ uint8_t padding[12]; // 32 #endif void setAllocationSizes( uint32_t inBytes, UIntPtr_t inOsBytes, uint32_t inTableIndex, uint32_t smallAllocLimt ) { tableIndex = inTableIndex; allocSize = inBytes; if (tableIndex == smallAllocLimt) { firstMem = (FFreeMem*) inOsBytes; } } uint32_t getBytes() const { return allocSize; } UIntPtr_t getOsBytes( uint32_t inPageSize, uint32_t smallAllocLimt ) const { if (tableIndex == smallAllocLimt) { return (UIntPtr_t)firstMem; } else { return FAlign(allocSize, inPageSize); } } void link( FPoolInfo*& before ) { if( before ) { before->prevLink = &next; } next = before; prevLink = &before; before = this; } void unlink() { if( next ) { next->prevLink = prevLink; } *prevLink = next; } }; static_assert(sizeof(FPoolInfo) == 32, "If you get there, this probably means that FPoolInfo is not 32 bit length somehow"); /** Information about a piece of free memory. 8 bytes */ struct FFreeMem { /** Next or MemLastPool[], always in order by pool. */ FFreeMem* next; /** Number of consecutive free blocks here, at least 1. */ uint32_t numFreeBlocks; }; /** Default alignment for binned allocator */ enum { default_binned_allocator_alignment = sizeof(FFreeMem) }; #ifdef CACHE_FREED_OS_ALLOCS /** */ struct FFreePageBlock { void* ptr = nullptr; size_t byteSize = 0; }; #endif /** Pool table. */ struct FPoolTable { FPoolInfo* firstPool = nullptr; FPoolInfo* exhaustedPool = nullptr; uint32_t blockSize = 0; #ifdef USE_FINE_GRAIN_LOCKS std::mutex mutex; #endif #if STATS /** Number of currently active pools */ uint32_t numActivePools = 0; /** Largest number of pools simultaneously active */ uint32_t maxActivePools = 0; /** Number of requests currently active */ uint32_t activeRequests = 0; /** High watermark of requests simultaneously active */ uint32_t maxActiveRequests = 0; /** Minimum request size (in bytes) */ uint32_t minRequest = 0; /** Maximum request size (in bytes) */ uint32_t maxRequest = 0; /** Total number of requests ever */ uint64_t totalRequests = 0; /** Total waste from all allocs in this table */ uint64_t totalWaste = 0; #endif }; /** Hash table struct for retrieving allocation book keeping information */ struct PoolHashBucket { UIntPtr_t key = 0; FPoolInfo* firstPool = nullptr; PoolHashBucket* prev = nullptr; PoolHashBucket* next = nullptr; PoolHashBucket() { prev = this; next = this; } void link( PoolHashBucket* after ) { link(after, prev, this); } static void link( PoolHashBucket* node, PoolHashBucket* before, PoolHashBucket* after ) { node->prev = before; node->next = after; before->next=node; after->prev=node; } void unlink() { next->prev = prev; prev->next = next; prev=this; next=this; } }; uint64_t tableAddressLimit; #ifdef USE_LOCKFREE_DELETE /** We can't call the constructor to TLockFreePointerList in the BinnedMalloc constructor * as it attempts to allocate memory. We push this back and initialize it later but we * set aside the memory before hand */ uint8 PendingFreeListMemory[sizeof(TLockFreePointerList<void>)]; TLockFreePointerList<void>* PendingFreeList; TArray<void*> FlushedFrees; bool bFlushingFrees; bool bDoneFreeListInit; #endif std::mutex accessGuard; // PageSize dependent constants uint64_t maxHashBuckets; uint64_t maxHashBucketBits; uint64_t maxHashBucketWaste; uint64_t maxBookKeepingOverhead; /** Shift to get the reference from the indirect tables */ uint64_t poolBitShift; uint64_t indirectPoolBitShift; uint64_t indirectPoolBlockSize; /** Shift required to get required hash table key. */ uint64_t hashKeyShift; /** Used to mask off the bits that have been used to lookup the indirect table */ uint64_t poolMask; uint64_t binnedSizeLimit; uint64_t binnedOSTableIndex; // Variables. FPoolTable poolTable[PoolCount]; FPoolTable osTable; FPoolTable pagePoolTable[extened_page_pool_allocation_count]; FPoolTable* memSizeToPoolTable[max_pooled_allocation_size + extened_page_pool_allocation_count]; PoolHashBucket* hashBuckets; PoolHashBucket* hashBucketFreeList; uint32_t pageSize; #ifdef CACHE_FREED_OS_ALLOCS FFreePageBlock freedPageBlocks[MAX_CACHED_OS_FREES]; uint32_t freedPageBlocksNum; uint32_t cachedTotal; #endif #if STATS size_t osCurrent; size_t osPeak; size_t wasteCurrent; size_t wastePeak; size_t usedCurrent; size_t usedPeak; size_t currentAllocs; size_t totalAllocs; /** osCurrent - wasteCurrent - usedCurrent. */ size_t slackCurrent; double memTime; #endif //_AttrNoReturn void outOfMemory(uint64_t size, uint32_t alignment=0) { // this is expected not to return } _AttrAlwaysInline void trackStats(FPoolTable* table, uint32_t size) { #if STATS // keep track of memory lost to padding table->totalWaste += table->blockSize - size; table->totalRequests++; table->activeRequests++; table->maxActiveRequests = std::max(table->maxActiveRequests, table->activeRequests); table->maxRequest = size > table->maxRequest ? size : table->maxRequest; table->minRequest = size < table->minRequest ? size : table->minRequest; #endif } /** * Create a 64k page of FPoolInfo structures for tracking allocations */ FPoolInfo* createIndirect() { FAssert(indirectPoolBlockSize * sizeof(FPoolInfo) <= pageSize); FPoolInfo* indirect = (FPoolInfo*)FPlatformMemory_t::binnedAllocFromOS(indirectPoolBlockSize * sizeof(FPoolInfo)); if(unlikely(!indirect)) { outOfMemory(indirectPoolBlockSize * sizeof(FPoolInfo)); } FMemory::memset(indirect, 0, indirectPoolBlockSize*sizeof(FPoolInfo)); #if STATS osPeak = std::max(osPeak, osCurrent += FAlign(indirectPoolBlockSize * sizeof(FPoolInfo), pageSize)); wastePeak = std::max(wastePeak, wasteCurrent += FAlign(indirectPoolBlockSize * sizeof(FPoolInfo), pageSize)); #endif return indirect; } /** * Gets the FPoolInfo for a memory address. If no valid info exists one is created. * NOTE: This function requires a mutex across threads, but its is the callers responsibility to * acquire the mutex before calling */ _AttrAlwaysInline FPoolInfo* getPoolInfo( UIntPtr_t ptr ) { if (!hashBuckets) { // Init tables. hashBuckets = (PoolHashBucket*)FPlatformMemory_t::binnedAllocFromOS(FAlign(maxHashBuckets * sizeof(PoolHashBucket), pageSize)); for (uint32_t i = 0; i < maxHashBuckets; ++i) { new (hashBuckets + i) PoolHashBucket(); } } UIntPtr_t key = ptr >> hashKeyShift; UIntPtr_t hash = key & (maxHashBuckets - 1); UIntPtr_t poolIndex = ((UIntPtr_t)ptr >> poolBitShift) & poolMask; PoolHashBucket* collision= &hashBuckets[hash]; do { if (collision->key == key || !collision->firstPool) { if (!collision->firstPool) { collision->key = key; initializeHashBucket(collision); FAssert(collision->firstPool != nullptr); } return &collision->firstPool[poolIndex]; } collision = collision->next; } while (collision != &hashBuckets[hash]); //Create a new hash bucket entry PoolHashBucket* newBucket = createHashBucket(); newBucket->key = key; hashBuckets[hash].link(newBucket); return &newBucket->firstPool[poolIndex]; } _AttrAlwaysInline FPoolInfo* findPoolInfo(UIntPtr_t ptr1, UIntPtr_t& allocationBase) { uint16_t nextStep = 0; UIntPtr_t ptr = ptr1 &~ ((UIntPtr_t)pageSize-1); for (uint32_t i=0, n=(binned_alloc_pool_size/pageSize) + 1; i < n; ++i) { FPoolInfo* pool = findPoolInfoInternal(ptr, nextStep); if (pool) { allocationBase = ptr; //checkSlow(Ptr1 >= AllocationBase && Ptr1 < AllocationBase+Pool->GetBytes()); return pool; } ptr = ((ptr - (pageSize * nextStep)) - 1) &~ ((UIntPtr_t)pageSize-1); } allocationBase=0; return nullptr; } _AttrAlwaysInline FPoolInfo* findPoolInfoInternal(UIntPtr_t ptr, uint16_t& jumpOffset) { FAssert(!!hashBuckets); UIntPtr_t key = ptr >> hashKeyShift; UIntPtr_t hash = key & (maxHashBuckets-1); UIntPtr_t poolIndex = ((UIntPtr_t)ptr >> poolBitShift) & poolMask; jumpOffset = 0; PoolHashBucket* collision = &hashBuckets[hash]; do { if (collision->key == key) { if (!collision->firstPool[poolIndex].allocSize) { jumpOffset = collision->firstPool[poolIndex].tableIndex; return nullptr; } return &collision->firstPool[poolIndex]; } collision=collision->next; } while (collision!=&hashBuckets[hash]); return nullptr; } /** * Returns a newly created and initialized PoolHashBucket for use. */ _AttrAlwaysInline PoolHashBucket* createHashBucket() { PoolHashBucket* bucket = allocateHashBucket(); initializeHashBucket(bucket); return bucket; } /** * Initializes bucket with valid parameters * @param bucket pointer to be initialized */ _AttrAlwaysInline void initializeHashBucket(PoolHashBucket* bucket) { if (!bucket->firstPool) { bucket->firstPool = createIndirect(); } } /** * Allocates a hash bucket from the free list of hash buckets */ PoolHashBucket* allocateHashBucket() { if (!hashBucketFreeList) { hashBucketFreeList = (PoolHashBucket*)FPlatformMemory_t::binnedAllocFromOS(pageSize); #if STATS osPeak = std::max(osPeak, osCurrent += pageSize); wastePeak = std::max(wastePeak, wasteCurrent += pageSize); #endif for (UIntPtr_t i = 0, n = (pageSize / sizeof(PoolHashBucket)); i < n; ++i) { hashBucketFreeList->link(new (hashBucketFreeList + i) PoolHashBucket()); } } PoolHashBucket* nextFree = hashBucketFreeList->next; PoolHashBucket* free = hashBucketFreeList; free->unlink(); if (nextFree == free) { nextFree = nullptr; } hashBucketFreeList = nextFree; return free; } _AttrAlwaysInline FPoolInfo* allocatePoolMemory(FPoolTable* table, uint32_t poolSize, uint16_t tableIndex) { // Must create a new pool. uint32_t blocks = poolSize / table->blockSize; uint32_t bytes = blocks * table->blockSize; UIntPtr_t osBytes = FAlign(bytes, pageSize); FAssert(blocks >= 1); FAssert(blocks * table->blockSize <= bytes && poolSize >= bytes); // Allocate memory. FFreeMem* free = nullptr; size_t actualPoolSize; //TODO: use this to reduce waste? free = (FFreeMem*) osAlloc(osBytes, actualPoolSize); FAssert(!((UIntPtr_t)free & (pageSize-1))); if( !free ) { outOfMemory(osBytes); } // Create pool in the indirect table. FPoolInfo* pool; { #ifdef USE_FINE_GRAIN_LOCKS std::lock_guard<std::mutex> poolInfoLock(accessGuard); #endif pool = getPoolInfo((UIntPtr_t)free); for (UIntPtr_t i = (UIntPtr_t)pageSize, offset=0; i < osBytes; i += pageSize, ++offset) { FPoolInfo* trailingPool = getPoolInfo(((UIntPtr_t)free) + i); FAssert(!!trailingPool); //Set trailing pools to point back to first pool trailingPool->setAllocationSizes(0, 0, (uint32_t)offset, (uint32_t)binnedOSTableIndex); } } // Init pool. pool->link( table->firstPool ); pool->setAllocationSizes(bytes, (uint32_t)osBytes, tableIndex, (uint32_t)binnedOSTableIndex); #if STATS osPeak = std::max(osPeak, osCurrent += osBytes); wastePeak = std::max(wastePeak, wasteCurrent += osBytes - bytes); pool->taken = 0; pool->firstMem = free; table->numActivePools++; table->maxActivePools = std::max(table->maxActivePools, table->numActivePools); #endif // Create first free item. free->numFreeBlocks = blocks; free->next = nullptr; return pool; } _AttrAlwaysInline FFreeMem* allocateBlockFromPool(FPoolTable* table, FPoolInfo* pool) { // Pick first available block and unlink it. pool->taken++; FAssert(pool->tableIndex < binnedOSTableIndex); // if this is false, FirstMem is actually a size not a pointer FAssert(!!pool->firstMem); FAssert(pool->firstMem->numFreeBlocks > 0); FAssert(pool->firstMem->numFreeBlocks < page_size_limit); FFreeMem* free = (FFreeMem*)((uint8_t*)pool->firstMem + --pool->firstMem->numFreeBlocks * table->blockSize); if( !pool->firstMem->numFreeBlocks ) { pool->firstMem = pool->firstMem->next; if( !pool->firstMem ) { // Move to exhausted list. pool->unlink(); pool->link( table->exhaustedPool ); } } #if STATS usedPeak = std::max(usedPeak, usedCurrent += table->blockSize); #endif return free; } /** * Releases memory back to the system. This is not protected from multi-threaded access and it's * the callers responsibility to Lock AccessGuard before calling this. */ void freeInternal( void* ptr ) { MEM_TIME(memTime -= FPlatformTime::Seconds()); STAT(currentAllocs--); UIntPtr_t basePtr; FPoolInfo* pool = findPoolInfo((UIntPtr_t)ptr, basePtr); #if CC_TARGET_PLATFORM == CC_PLATFORM_IOS if (pool == nullptr) { FLogWarning(("Memory : Attempting to free a pointer we didn't allocate")); return; } #endif FAssert(!!pool); FAssert(pool->getBytes() != 0); if( pool->tableIndex < binnedOSTableIndex ) { FPoolTable* table = memSizeToPoolTable[pool->tableIndex]; #ifdef USE_FINE_GRAIN_LOCKS std::lock_guard<std::mutex> tableLock(table->mutex); #endif STAT(table->activeRequests--); // If this pool was exhausted, move to available list. if( !pool->firstMem ) { pool->unlink(); pool->link( table->firstPool ); } // Free a pooled allocation. FFreeMem* free = (FFreeMem*)ptr; free->numFreeBlocks = 1; free->next = pool->firstMem; pool->firstMem = free; STAT(usedCurrent -= table->blockSize); // Free this pool. FAssert(pool->taken >= 1); if( --pool->taken == 0 ) { #if STATS table->numActivePools--; #endif // Free the OS memory. size_t osBytes = pool->getOsBytes(pageSize, (uint32_t)binnedOSTableIndex); STAT(osCurrent -= osBytes); STAT(wasteCurrent -= osBytes - pool->getBytes()); pool->unlink(); pool->setAllocationSizes(0, 0, 0, (uint32_t)binnedOSTableIndex); osFree((void*)basePtr, osBytes); } } else { // Free an OS allocation. FAssert(!((UIntPtr_t)ptr & (pageSize-1))); size_t osBytes = pool->getOsBytes(pageSize, (uint32_t)binnedOSTableIndex); STAT(usedCurrent -= pool->getBytes()); STAT(osCurrent -= osBytes); STAT(wasteCurrent -= osBytes - pool->getBytes()); osFree(ptr, osBytes); } MEM_TIME(MemTime += FPlatformTime::Seconds()); } void pushFreeLockless(void* origin) { #ifdef USE_LOCKFREE_DELETE PendingFreeList->Push(Ptr); #else #ifdef USE_COARSE_GRAIN_LOCKS FScopeLock ScopedLock(&AccessGuard); #endif freeInternal(origin); #endif } /** * Clear and Process the list of frees to be deallocated. It's the callers * responsibility to Lock AccessGuard before calling this */ void flushPendingFrees() { #ifdef USE_LOCKFREE_DELETE if (!PendingFreeList && !bDoneFreeListInit) { bDoneFreeListInit=true; PendingFreeList = new ((void*)PendingFreeListMemory) TLockFreePointerList<void>(); } // Because a lockless list and TArray calls new/malloc internally, need to guard against re-entry if (bFlushingFrees || !PendingFreeList) { return; } bFlushingFrees=true; PendingFreeList->PopAll(FlushedFrees); for (uint32 i=0, n=FlushedFrees.Num(); i<n; ++i) { FreeInternal(FlushedFrees[i]); } FlushedFrees.Reset(); bFlushingFrees=false; #endif } _AttrAlwaysInline void osFree(void* ptr, size_t size) { #ifdef CACHE_FREED_OS_ALLOCS #ifdef USE_FINE_GRAIN_LOCKS std::lock_guard<std::mutex> mainLock(accessGuard); #endif if ((cachedTotal + size > MAX_CACHED_OS_FREES_BYTE_LIMIT) || (size > binned_alloc_pool_size)) { FPlatformMemory_t::binnedFreeToOS(ptr); return; } if (freedPageBlocksNum >= MAX_CACHED_OS_FREES) { //Remove the oldest one void* freePtr = freedPageBlocks[freedPageBlocksNum - 1].ptr; cachedTotal -= freedPageBlocks[freedPageBlocksNum - 1].byteSize; --freedPageBlocksNum; FPlatformMemory_t::binnedFreeToOS(freePtr); } freedPageBlocks[freedPageBlocksNum].ptr = ptr; freedPageBlocks[freedPageBlocksNum].byteSize = size; cachedTotal += size; ++freedPageBlocksNum; #else (void)size; FPlatformMemory_t::binnedFreeToOS(ptr); #endif } _AttrAlwaysInline void* osAlloc(size_t newSize, size_t& outActualSize) { #ifdef CACHE_FREED_OS_ALLOCS { #ifdef USE_FINE_GRAIN_LOCKS // We want to hold the lock a little as possible so release it // before the big call to the OS std::lock_guard<std::mutex> mainLock(accessGuard); #endif for (uint32_t i = 0; i < freedPageBlocksNum; ++i) { // is it possible (and worth i.e. <25% overhead) to use this block if (freedPageBlocks[i].byteSize >= newSize && freedPageBlocks[i].byteSize * 3 <= newSize * 4) { void* ret = freedPageBlocks[i].ptr; outActualSize = freedPageBlocks[i].byteSize; cachedTotal -= freedPageBlocks[i].byteSize; freedPageBlocks[i] = freedPageBlocks[--freedPageBlocksNum]; return ret; } }; } outActualSize = newSize; void* ptr = FPlatformMemory_t::binnedAllocFromOS(newSize); if (!ptr) { //Are we holding on to much mem? Release it all. flushAllocCache(); ptr = FPlatformMemory_t::binnedAllocFromOS(newSize); } return ptr; #else (void)outActualSize; return FPlatformMemory_t::binnedAllocFromOS(NewSize); #endif } #ifdef CACHE_FREED_OS_ALLOCS void flushAllocCache() { #ifdef USE_FINE_GRAIN_LOCKS std::lock_guard<std::mutex> mainLock(accessGuard); #endif for (int i = 0, n = freedPageBlocksNum; i < n; ++i) { //Remove allocs FPlatformMemory_t::binnedFreeToOS(freedPageBlocks[i].ptr); freedPageBlocks[i].ptr = nullptr; freedPageBlocks[i].byteSize = 0; } freedPageBlocksNum = 0; cachedTotal = 0; } #endif public: // FMalloc interface. // inPageSize - First parameter is page size, all allocs from BinnedAllocFromOS() MUST be aligned to this size // addressLimit - Second parameter is estimate of the range of addresses expected to be returns by BinnedAllocFromOS(). Binned // Malloc will adjust it's internal structures to make look ups for memory allocations O(1) for this range. // It's is ok to go outside this range, look ups will just be a little slower FMallocBinned(uint32_t inPageSize, uint64_t addressLimit); virtual ~FMallocBinned() {} _AttrWarnUnusedResult virtual void* malloc(size_t count, uint32_t alignment = DefaultAlignment) override; _AttrWarnUnusedResult virtual void* realloc(void* origin, size_t newCount, uint32_t alignment = DefaultAlignment) override; virtual void free(void* origin) override; /** * If possible determine the size of the memory allocated at the given address * * @param Original - Pointer to memory we are checking the size of * @param SizeOut - If possible, this value is set to the size of the passed in pointer * @return true if succeeded */ virtual bool getAllocationSize(void *origin, size_t& sizeOut) override; /** * Validates the allocator's heap */ virtual bool validateHeap() override; };
[ "timur.losev@gmail.com" ]
timur.losev@gmail.com