blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
201
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
7
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
260 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
11.4k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
80 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
8
9.86M
extension
stringclasses
52 values
content
stringlengths
8
9.86M
authors
listlengths
1
1
author
stringlengths
0
119
32ae859eb5554ff5b34bcaf63a00cb7a9f25fc7c
d90446e9ae74a19c3e1d60b6d18ec5fa05a0f001
/include/packages/environment/Environment.h
eb7d40f6296f01da08f758ce58029a75eb7f5cdd
[]
no_license
radiganm/cli
3d8326790e509530467686064840029933192e01
61ead684293b27168aae284b2fe0ae60f4bc3e32
refs/heads/master
2021-05-12T17:42:06.200463
2018-01-19T11:02:16
2018-01-19T11:02:16
117,050,958
0
0
null
null
null
null
UTF-8
C++
false
false
934
h
/// Environment.h /// Copyright 2017 Mac Radigan /// All Rights Reserved #include <cstdlib> #include <atomic> #include <stdexcept> #include <cassert> #include <cerrno> #include <iostream> #include <iomanip> #include <map> #pragma once namespace rad::cli { class Environment { public: using string_t = std::string; using map_t = std::map<string_t, string_t>; Environment(); virtual ~Environment(); void initialize(); map_t::iterator begin(); map_t::iterator end(); bool exists(const string_t key) { return env_.count(key) > 0; }; const string_t& operator[](const string_t key) { return env_[key]; }; private: map_t env_; std::pair<const std::string, const std::string> split_pair(std::string str, char delimiter); friend std::ostream& operator<<(std::ostream &os, Environment &o); }; // Environment } // namespace /// *EOF*
[ "mac@radigan.org" ]
mac@radigan.org
59ff49867df14e4e1b120463142c800f167cea7f
829b3f2d0ae685d01fe097c03bf5c1976cbc4723
/deps/boost/include/boost/geometry/srs/projections/proj/bonne.hpp
dd990d3e7d6367aa8c5ce72ba670fe646b7b9b9a
[ "Apache-2.0" ]
permissive
liyoung1992/mediasoup-sfu-cpp
f0f0321f8974beb1f4263c9e658402620d82385f
b76564e068626b0d675f5486e56da3d69151e287
refs/heads/main
2023-08-21T21:40:51.710022
2021-10-14T06:29:18
2021-10-14T06:29:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,541
hpp
// Boost.Geometry - gis-projections (based on PROJ4) // Copyright (c) 2008-2015 Barend Gehrels, Amsterdam, the Netherlands. // This file was modified by Oracle on 2017, 2018, 2019. // Modifications copyright (c) 2017-2019, Oracle and/or its affiliates. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle. // Use, modification and distribution is subject to 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) // This file is converted from PROJ4, http://trac.osgeo.org/proj // PROJ4 is originally written by Gerald Evenden (then of the USGS) // PROJ4 is maintained by Frank Warmerdam // PROJ4 is converted to Boost.Geometry by Barend Gehrels // Last updated version of proj: 5.0.0 // Original copyright notice: // 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. #ifndef BOOST_GEOMETRY_PROJECTIONS_BONNE_HPP #define BOOST_GEOMETRY_PROJECTIONS_BONNE_HPP #include <boost/geometry/srs/projections/impl/base_static.hpp> #include <boost/geometry/srs/projections/impl/base_dynamic.hpp> #include <boost/geometry/srs/projections/impl/factory_entry.hpp> #include <boost/geometry/srs/projections/impl/pj_mlfn.hpp> #include <boost/geometry/srs/projections/impl/pj_param.hpp> #include <boost/geometry/srs/projections/impl/projects.hpp> #include <boost/geometry/util/math.hpp> #include <boost/math/special_functions/hypot.hpp> namespace boost { namespace geometry { namespace projections { #ifndef DOXYGEN_NO_DETAIL namespace detail { namespace bonne { static const double epsilon10 = 1e-10; template <typename T> struct par_bonne { T phi1; T cphi1; T am1; T m1; detail::en<T> en; }; template <typename T, typename Parameters> struct base_bonne_ellipsoid { par_bonne<T> m_proj_parm; // FORWARD(e_forward) ellipsoid // Project coordinates from geographic (lon, lat) to cartesian (x, y) inline void fwd(Parameters const& par, T const& lp_lon, T const& lp_lat, T& xy_x, T& xy_y) const { T rh, E, c; rh = this->m_proj_parm.am1 + this->m_proj_parm.m1 - pj_mlfn(lp_lat, E = sin(lp_lat), c = cos(lp_lat), this->m_proj_parm.en); E = c * lp_lon / (rh * sqrt(1. - par.es * E * E)); xy_x = rh * sin(E); xy_y = this->m_proj_parm.am1 - rh * cos(E); } // INVERSE(e_inverse) ellipsoid // Project coordinates from cartesian (x, y) to geographic (lon, lat) inline void inv(Parameters const& par, T const& xy_x, T xy_y, T& lp_lon, T& lp_lat) const { static const T half_pi = detail::half_pi<T>(); T s, rh; rh = boost::math::hypot(xy_x, xy_y = this->m_proj_parm.am1 - xy_y); lp_lat = pj_inv_mlfn(this->m_proj_parm.am1 + this->m_proj_parm.m1 - rh, par.es, this->m_proj_parm.en); if ((s = fabs(lp_lat)) < half_pi) { s = sin(lp_lat); lp_lon = rh * atan2(xy_x, xy_y) * sqrt(1. - par.es * s * s) / cos(lp_lat); } else if (fabs(s - half_pi) <= epsilon10) lp_lon = 0.; else BOOST_THROW_EXCEPTION( projection_exception(error_tolerance_condition) ); } static inline std::string get_name() { return "bonne_ellipsoid"; } }; template <typename T, typename Parameters> struct base_bonne_spheroid { par_bonne<T> m_proj_parm; // FORWARD(s_forward) spheroid // Project coordinates from geographic (lon, lat) to cartesian (x, y) inline void fwd(Parameters const& , T const& lp_lon, T const& lp_lat, T& xy_x, T& xy_y) const { T E, rh; rh = this->m_proj_parm.cphi1 + this->m_proj_parm.phi1 - lp_lat; if (fabs(rh) > epsilon10) { xy_x = rh * sin(E = lp_lon * cos(lp_lat) / rh); xy_y = this->m_proj_parm.cphi1 - rh * cos(E); } else xy_x = xy_y = 0.; } // INVERSE(s_inverse) spheroid // Project coordinates from cartesian (x, y) to geographic (lon, lat) inline void inv(Parameters const& , T const& xy_x, T xy_y, T& lp_lon, T& lp_lat) const { static const T half_pi = detail::half_pi<T>(); T rh; rh = boost::math::hypot(xy_x, xy_y = this->m_proj_parm.cphi1 - xy_y); lp_lat = this->m_proj_parm.cphi1 + this->m_proj_parm.phi1 - rh; if (fabs(lp_lat) > half_pi) { BOOST_THROW_EXCEPTION( projection_exception(error_tolerance_condition) ); } if (fabs(fabs(lp_lat) - half_pi) <= epsilon10) lp_lon = 0.; else lp_lon = rh * atan2(xy_x, xy_y) / cos(lp_lat); } static inline std::string get_name() { return "bonne_spheroid"; } }; // Bonne (Werner lat_1=90) template <typename Params, typename Parameters, typename T> inline void setup_bonne(Params const& params, Parameters const& par, par_bonne<T>& proj_parm) { static const T half_pi = detail::half_pi<T>(); T c; proj_parm.phi1 = pj_get_param_r<T, srs::spar::lat_1>(params, "lat_1", srs::dpar::lat_1); if (fabs(proj_parm.phi1) < epsilon10) BOOST_THROW_EXCEPTION( projection_exception(error_lat1_is_zero) ); if (par.es != 0.0) { proj_parm.en = pj_enfn<T>(par.es); proj_parm.m1 = pj_mlfn(proj_parm.phi1, proj_parm.am1 = sin(proj_parm.phi1), c = cos(proj_parm.phi1), proj_parm.en); proj_parm.am1 = c / (sqrt(1. - par.es * proj_parm.am1 * proj_parm.am1) * proj_parm.am1); } else { if (fabs(proj_parm.phi1) + epsilon10 >= half_pi) proj_parm.cphi1 = 0.; else proj_parm.cphi1 = 1. / tan(proj_parm.phi1); } } }} // namespace detail::bonne #endif // doxygen /*! \brief Bonne (Werner lat_1=90) projection \ingroup projections \tparam Geographic latlong point type \tparam Cartesian xy point type \tparam Parameters parameter type \par Projection characteristics - Conic - Spheroid - Ellipsoid \par Projection parameters - lat_1: Latitude of first standard parallel (degrees) \par Example \image html ex_bonne.gif */ template <typename T, typename Parameters> struct bonne_ellipsoid : public detail::bonne::base_bonne_ellipsoid<T, Parameters> { template <typename Params> inline bonne_ellipsoid(Params const& params, Parameters const& par) { detail::bonne::setup_bonne(params, par, this->m_proj_parm); } }; /*! \brief Bonne (Werner lat_1=90) projection \ingroup projections \tparam Geographic latlong point type \tparam Cartesian xy point type \tparam Parameters parameter type \par Projection characteristics - Conic - Spheroid - Ellipsoid \par Projection parameters - lat_1: Latitude of first standard parallel (degrees) \par Example \image html ex_bonne.gif */ template <typename T, typename Parameters> struct bonne_spheroid : public detail::bonne::base_bonne_spheroid<T, Parameters> { template <typename Params> inline bonne_spheroid(Params const& params, Parameters const& par) { detail::bonne::setup_bonne(params, par, this->m_proj_parm); } }; #ifndef DOXYGEN_NO_DETAIL namespace detail { // Static projection BOOST_GEOMETRY_PROJECTIONS_DETAIL_STATIC_PROJECTION_FI2(srs::spar::proj_bonne, bonne_spheroid, bonne_ellipsoid) // Factory entry(s) BOOST_GEOMETRY_PROJECTIONS_DETAIL_FACTORY_ENTRY_FI2(bonne_entry, bonne_spheroid, bonne_ellipsoid) BOOST_GEOMETRY_PROJECTIONS_DETAIL_FACTORY_INIT_BEGIN(bonne_init) { BOOST_GEOMETRY_PROJECTIONS_DETAIL_FACTORY_INIT_ENTRY(bonne, bonne_entry); } } // namespace detail #endif // doxygen } // namespace projections }} // namespace boost::geometry #endif // BOOST_GEOMETRY_PROJECTIONS_BONNE_HPP
[ "yanhua133@126.com" ]
yanhua133@126.com
5ba58d6572987ed47dfc35f7244842607b12a85e
4668a89a25ed9b2d80d69f4d1417c8f84d443bb4
/DSA_Complete/LinkedList/reverse_in_group.cpp
8afcee21b783a8e9b28cf985a93d820a2dad800f
[]
no_license
PrajwalNangare/Practice_Le
b761460f2fb35fe7ddeea432adfc3afb5d7022cd
748e33f41ab206500a30929ca669d9d40119926b
refs/heads/main
2023-06-24T14:13:28.222423
2021-07-28T14:43:58
2021-07-28T14:43:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,598
cpp
#include<iostream> #include<vector> using namespace std; class node { public: int data; node *next; }; node *first = NULL; void create_ll(int A[],int n) { first=new node; first->data=A[0]; first->next=NULL; node *last=first; for(int i=1;i<n;i++) { node *ptr=new node; ptr->data=A[i]; ptr->next=NULL; last->next=ptr; last=ptr; } } void display(node *ptr) { while(ptr) { cout<<ptr->data<<"->"; ptr=ptr->next; } cout<<endl; } node *ReverseWithoutUsingExtraSpace(node *front) { node *mid=NULL; node *last=NULL; while(front) { last=mid; mid=front; front=front->next; mid->next=last; } return mid; } void revrseMain(node *head,int k) { node *fir=head; node *sec=head; node *ptr=NULL; for(int i=0;i<k;i++) { ptr=sec; sec=sec->next; } ptr->next=NULL; fir=ReverseWithoutUsingExtraSpace(fir); //display(fir); sec=ReverseWithoutUsingExtraSpace(sec); //display(sec); ptr=fir; while(ptr->next!=NULL) { ptr=ptr->next; } ptr->next=sec; first=fir; } void revrse(node *back, node *forward) { if(forward) { revrse(forward,forward->next); forward->next=back; } else { first=back; } } int main() { //int a[]={1,2,3,4,5,6,7,8,9,10}; int a[]={5 ,9 ,9 ,3 ,5 ,6 ,6 ,2 ,8 ,2}; int size=sizeof(a)/sizeof(a[0]); create_ll(a,size); display(first); revrseMain(first,2); display(first); }
[ "shashwatsingh71@gmail.com" ]
shashwatsingh71@gmail.com
1f2e997f17b1a450d93d7d1d31ff4936c901968b
35aca1291dae461d5562a3b7484e5f659ee80817
/oneflow/core/eager/transport_blob_instruction_type.cpp
91aa663572c7e625aeb66072e94e65a2e431d433
[ "Apache-2.0" ]
permissive
Flowingsun007/oneflow
e6a52cfbf5e82ca4f8b787aa026f40a2f568a10f
c1880c011dd453719a28d880abe15e2dab8d0da1
refs/heads/master
2023-05-11T19:18:59.220269
2021-05-28T20:10:35
2021-05-28T20:10:35
372,195,705
0
0
Apache-2.0
2021-06-02T09:46:51
2021-05-30T11:24:37
null
UTF-8
C++
false
false
8,306
cpp
/* Copyright 2020 The OneFlow Authors. 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 "oneflow/core/eager/transport_blob_instruction_type.h" #include "oneflow/core/vm/instruction_operand.msg.h" #include "oneflow/core/vm/object_wrapper.h" #include "oneflow/core/object_msg/flat_msg_view.h" #include "oneflow/core/eager/eager_blob_object.h" #include "oneflow/core/common/maybe.h" #include "oneflow/core/control/ctrl_client.h" #include "oneflow/core/transport/transport.h" namespace oneflow { namespace vm { namespace { // clang-format off FLAT_MSG_VIEW_BEGIN(SendBlobInstruction); FLAT_MSG_VIEW_DEFINE_PATTERN(vm::SymbolOperand, dst_parallel_desc); FLAT_MSG_VIEW_DEFINE_PATTERN(vm::ConstOperand, src_blob); FLAT_MSG_VIEW_DEFINE_PATTERN(vm::OperandSeparator, header_token_sep); FLAT_MSG_VIEW_DEFINE_REPEATED_PATTERN(uint64_t, header_token); FLAT_MSG_VIEW_DEFINE_PATTERN(vm::OperandSeparator, body_token_sep); FLAT_MSG_VIEW_DEFINE_REPEATED_PATTERN(uint64_t, body_token); FLAT_MSG_VIEW_END(SendBlobInstruction); FLAT_MSG_VIEW_BEGIN(ReceiveBlobInstruction); FLAT_MSG_VIEW_DEFINE_PATTERN(vm::SymbolOperand, src_parallel_desc); FLAT_MSG_VIEW_DEFINE_PATTERN(vm::Mut2Operand, dst_blob); FLAT_MSG_VIEW_DEFINE_PATTERN(vm::OperandSeparator, header_token_sep); FLAT_MSG_VIEW_DEFINE_REPEATED_PATTERN(uint64_t, header_token); FLAT_MSG_VIEW_DEFINE_PATTERN(vm::OperandSeparator, body_token_sep); FLAT_MSG_VIEW_DEFINE_REPEATED_PATTERN(uint64_t, body_token); FLAT_MSG_VIEW_END(ReceiveBlobInstruction); // clang-format on } // namespace void SendBlobInstructionType::Compute(vm::Instruction* instruction) const { CHECK_OK(Send(instruction)); } void ReceiveBlobInstructionType::Compute(vm::Instruction* instruction) const { CHECK_OK(Receive(instruction)); } Maybe<void> SendBlobInstructionType::Send(vm::Instruction* instruction) const { FlatMsgView<SendBlobInstruction> args(instruction->instr_msg().operand()); CHECK_EQ_OR_RETURN(args->body_token_size(), args->header_token_size()); std::function<void()> Callback; { char* data_ptr = instruction->mut_status_buffer()->mut_buffer()->mut_data(); RefCntType* ref_cnt = reinterpret_cast<RefCntType*>(data_ptr); // reference for blob header and blob body *ref_cnt = 2; // `ref_cnt` is safe to be captured before `Callback` finished. Callback = [ref_cnt] { CHECK_GE(--*ref_cnt, 0); }; } const auto* src_parallel_desc = instruction->parallel_desc().get(); int64_t parallel_id = 0; { CHECK_NOTNULL_OR_RETURN(src_parallel_desc) << Error::RwMutexedObjectNotFoundError(); CHECK_EQ_OR_RETURN(src_parallel_desc->parallel_num(), args->body_token_size()); int64_t machine_id = instruction->stream().machine_id(); int64_t device_id = instruction->stream().device_id(); parallel_id = JUST(src_parallel_desc->ParallelId4MachineDeviceId(machine_id, device_id)); } int64_t dst_machine_id = 0; { const auto* parallel_desc_operand = instruction->operand_type(args->dst_parallel_desc()); CHECK_NOTNULL_OR_RETURN(parallel_desc_operand); const auto& dst_parallel_desc = JUST(parallel_desc_operand->Get<vm::ObjectWrapper<ParallelDesc>>()).Get(); CHECK_EQ_OR_RETURN(dst_parallel_desc.device_type(), src_parallel_desc->device_type()); CHECK_EQ_OR_RETURN(dst_parallel_desc.parallel_num(), src_parallel_desc->parallel_num()); dst_machine_id = JUST(dst_parallel_desc.MachineId4ParallelId(parallel_id)); } const char* header_mem_ptr = nullptr; std::size_t header_size = 0; const char* body_mem_ptr = nullptr; std::size_t body_size = 0; { const auto* src_blob_operand = instruction->operand_type(args->src_blob()); CHECK_NOTNULL_OR_RETURN(src_blob_operand) << Error::RwMutexedObjectNotFoundError(); const auto& blob = JUST(src_blob_operand->template Get<BlobObject>()).blob(); header_mem_ptr = blob.header_ptr(); header_size = blob.blob_desc().ByteSizeOfBlobHeader(); body_mem_ptr = blob.dptr<char>(); // get actual byte size of blob body body_size = blob.ByteSizeOfBlobBody(); } JUST( Send(dst_machine_id, args->header_token(parallel_id), header_mem_ptr, header_size, Callback)); JUST(Send(dst_machine_id, args->body_token(parallel_id), body_mem_ptr, body_size, Callback)); return Maybe<void>::Ok(); } Maybe<void> ReceiveBlobInstructionType::Receive(vm::Instruction* instruction) const { FlatMsgView<ReceiveBlobInstruction> args(instruction->instr_msg().operand()); CHECK_EQ_OR_RETURN(args->body_token_size(), args->header_token_size()); std::function<void()> Callback; { char* data_ptr = instruction->mut_status_buffer()->mut_buffer()->mut_data(); RefCntType* ref_cnt = reinterpret_cast<RefCntType*>(data_ptr); // reference for blob header and blob body *ref_cnt = 2; // `ref_cnt` is safe to be captured before `Callback` finished. Callback = [ref_cnt] { CHECK_GE(--*ref_cnt, 0); }; } const auto* dst_parallel_desc = instruction->parallel_desc().get(); int64_t parallel_id = 0; { CHECK_NOTNULL_OR_RETURN(dst_parallel_desc) << Error::RwMutexedObjectNotFoundError(); CHECK_EQ_OR_RETURN(dst_parallel_desc->parallel_num(), args->body_token_size()); int64_t machine_id = instruction->stream().machine_id(); int64_t device_id = instruction->stream().device_id(); parallel_id = JUST(dst_parallel_desc->ParallelId4MachineDeviceId(machine_id, device_id)); } int64_t src_machine_id = 0; { const auto* parallel_desc_operand = instruction->operand_type(args->src_parallel_desc()); CHECK_NOTNULL_OR_RETURN(parallel_desc_operand); const auto& src_parallel_desc = JUST(parallel_desc_operand->Get<vm::ObjectWrapper<ParallelDesc>>()).Get(); CHECK_EQ_OR_RETURN(src_parallel_desc.device_type(), dst_parallel_desc->device_type()); CHECK_EQ_OR_RETURN(src_parallel_desc.parallel_num(), dst_parallel_desc->parallel_num()); src_machine_id = JUST(src_parallel_desc.MachineId4ParallelId(parallel_id)); } char* header_mem_ptr = nullptr; std::size_t header_size = 0; char* body_mem_ptr = nullptr; std::size_t body_size = 0; { auto* dst_blob_operand = instruction->mut_operand_type(args->dst_blob()); CHECK_NOTNULL_OR_RETURN(dst_blob_operand) << Error::RwMutexedObjectNotFoundError(); auto* blob = JUST(dst_blob_operand->template Mut<BlobObject>())->mut_blob(); header_mem_ptr = blob->mut_header_ptr(); header_size = blob->blob_desc().ByteSizeOfBlobHeader(); body_mem_ptr = blob->mut_dptr<char>(); // get capacity byte size of blob body body_size = blob->blob_desc().ByteSizeOfBlobBody(); } JUST(Receive(src_machine_id, args->header_token(parallel_id), header_mem_ptr, header_size, Callback)); JUST(Receive(src_machine_id, args->body_token(parallel_id), body_mem_ptr, body_size, Callback)); return Maybe<void>::Ok(); } Maybe<void> SendBlobInstructionType::Send(int64_t dst_machine_id, uint64_t token, const char* mem_ptr, std::size_t size, const std::function<void()>& Callback) const { Global<Transport>::Get()->Send(token, dst_machine_id, mem_ptr, size, Callback); return Maybe<void>::Ok(); } Maybe<void> ReceiveBlobInstructionType::Receive(int64_t src_machine_id, uint64_t token, char* mem_ptr, std::size_t size, const std::function<void()>& Callback) const { Global<Transport>::Get()->Receive(token, src_machine_id, mem_ptr, size, Callback); return Maybe<void>::Ok(); } COMMAND(vm::RegisterInstructionType<SendBlobInstructionType>("SendBlob")); COMMAND(vm::RegisterInstructionType<ReceiveBlobInstructionType>("ReceiveBlob")); } // namespace vm } // namespace oneflow
[ "noreply@github.com" ]
noreply@github.com
1395970c7c6c3f20c1ad8bee6c4ebb31d64cd745
a0896944e361252fd02cda2002de2fe759f91122
/MoleGameClient/libmole/MolMutex.h
2e9cc1eacdcf48b861bddb1c9b4874ea0b0bae26
[]
no_license
jonaszhu/easygameengine
2f7c94b1cba4574f504436d61d6020bb68b04c8f
a5b5c3ad74bc6a0121da33a8e849b23e75ad9222
refs/heads/master
2016-09-06T06:18:39.307005
2015-03-16T04:05:36
2015-03-16T04:05:36
32,300,424
2
0
null
null
null
null
GB18030
C++
false
false
602
h
#ifndef _MOL_MUTEX_H_INCLUDE #define _MOL_MUTEX_H_INCLUDE /** * MolNet网络引擎 * * 描述:互斥类 * 作者:akinggw * 日期:2010.2.11 */ class Mutex { public: /// 构造函数 Mutex(); /// 析构函数 virtual ~Mutex(); /// 取得临界区 inline void Acquire() { EnterCriticalSection(&cs); } /// 释放临界区 inline void Release() { LeaveCriticalSection(&cs); } /// 试图取得临界区 inline bool AttemptAcquire() { return (TryEnterCriticalSection(&cs) == TRUE) ? true : false; } protected: CRITICAL_SECTION cs; }; #endif
[ "akinggw@126.com@ef192949-d772-56c9-94d9-4668bfd51768" ]
akinggw@126.com@ef192949-d772-56c9-94d9-4668bfd51768
da4ba7633938f7bfecafdcbfb1d246ee0206efdd
c6c782318e1abb21e7e73fefdd35e14d9890ea15
/FileWrapperClass.cpp
dd6026635ce40fa3da9cb1ad897e886153bba4f6
[]
no_license
rupaligaikwad20aug/FileWrap
55ba9e5a0ca5851deb7750f3d8697edee4ee2ab2
2bfab5faf8e9840ea809df0af579c910e5a5f834
refs/heads/master
2020-03-31T02:39:37.260244
2018-10-06T11:42:34
2018-10-06T11:42:34
151,834,295
0
0
null
null
null
null
UTF-8
C++
false
false
651
cpp
#include<iostream> using namespace std; class FileWrap { private: int fd; char fname[80]; int fmode; public: FileWrap(char* filename, char *mode = "read"); FileWrap(FileWrap &ref) { } ~FileWrap() { } void readfile(int size); void readfile(int size, int form); void writefile(char *str) { } int FileGetPosition() { } int FileChangePosition() { } void printInfo() { } friend void operator +(FileWrap obj1, FileWrap obj2); friend bool operator ==(FileWrap obj1, FileWrap obj2); }; int main() { }
[ "noreply@github.com" ]
noreply@github.com
7b049d17e16a2a5a102e5e1ea65b167d05b402df
30bdd8ab897e056f0fb2f9937dcf2f608c1fd06a
/scrape/data/Tokitsukaze and Discard Items/hossain95_TLE.cpp
cacd0267a7b96a6d6fb00024936a618dafa9dc68
[]
no_license
thegamer1907/Code_Analysis
0a2bb97a9fb5faf01d983c223d9715eb419b7519
48079e399321b585efc8a2c6a84c25e2e7a22a61
refs/heads/master
2020-05-27T01:20:55.921937
2019-11-20T11:15:11
2019-11-20T11:15:11
188,403,594
2
1
null
null
null
null
UTF-8
C++
false
false
1,072
cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { long long n, m, k; cin >> n >> m >> k; ll item[m+1] = {}; for(long long i = 0; i < m; i++) { cin >> item[i]; } long long total = 0; long long tem = k; bool ok = true; long long j = 0; while(1) { if(ok == false) { break; } if(j >= m) { break; } long long Count = 0; while(1) { if(j >= m) { break; } if(item[j] > tem) { break; } else { Count++; j++; } } if(Count > 0) { total++; tem += Count; } else if(Count == 0 && j < m) { tem = (tem * (long long)(item[j]/tem)) + k; } } cout << total << endl; return 0; }
[ "harshitagar1907@gmail.com" ]
harshitagar1907@gmail.com
262fd702caf5bab4f2cde8fa66c03921fd56c941
52b4e1540f571dcce7e0941a916a1cd2d4327887
/src/tests/AIKnowledgeTest.cpp
d30378fcb49612ab9e44b081764ef9d352e81885
[]
no_license
blockspacer/Shoot
1f3dd7c9f22d49161e521f944455106070f24194
ceb71cd9b7f45666f36f9e37c96257cd7eaa6cdb
refs/heads/master
2023-03-16T06:41:47.858378
2021-02-27T11:24:35
2021-02-27T11:24:35
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,332
cpp
#include "gtest/gtest.h" #include "Player/PlayerInfo.h" static_assert(game::n_players == 4); TEST(PlayerInfoTest, AllocateAndRelease) { game::InitializePlayerInfo(); game::PlayerInfo* player_info_1 = game::AllocatePlayerInfo(); player_info_1->player_state = game::PlayerState::ALIVE; ASSERT_TRUE(player_info_1 != nullptr); game::PlayerInfo* player_info_2 = game::AllocatePlayerInfo(); player_info_2->player_state = game::PlayerState::ALIVE; ASSERT_TRUE(player_info_2 != nullptr); game::PlayerInfo* player_info_3 = game::AllocatePlayerInfo(); player_info_3->player_state = game::PlayerState::ALIVE; ASSERT_TRUE(player_info_3 != nullptr); game::PlayerInfo* player_info_4 = game::AllocatePlayerInfo(); player_info_4->player_state = game::PlayerState::ALIVE; ASSERT_TRUE(player_info_4 != nullptr); game::PlayerInfo* player_info_5 = game::AllocatePlayerInfo(); ASSERT_FALSE(player_info_5 != nullptr); game::ReleasePlayerInfo(player_info_1); game::PlayerInfo* player_info_6 = game::AllocatePlayerInfo(); ASSERT_TRUE(player_info_6 != nullptr); //bool game::IsPlayer(uint32_t entity_id); } TEST(PlayerInfoTest, FindPlayerInfo) { game::InitializePlayerInfo(); game::PlayerInfo* player_info_1 = game::AllocatePlayerInfo(); player_info_1->player_state = game::PlayerState::ALIVE; player_info_1->entity_id = 666; player_info_1->score = 666; game::PlayerInfo* player_info_2 = game::AllocatePlayerInfo(); player_info_2->player_state = game::PlayerState::ALIVE; player_info_2->entity_id = 777; player_info_2->score = 777; const game::PlayerInfo* found_player_info_1 = game::FindPlayerInfoFromEntityId(666); EXPECT_EQ(found_player_info_1->score, player_info_1->score); const game::PlayerInfo* found_player_info_2 = game::FindPlayerInfoFromEntityId(777); EXPECT_EQ(found_player_info_2->score, player_info_2->score); } TEST(PlayerInfoTest, GetClosestActivePlayer) { game::InitializePlayerInfo(); game::PlayerInfo* player_info_1 = game::AllocatePlayerInfo(); player_info_1->player_state = game::PlayerState::ALIVE; player_info_1->position = math::Vector(0.0f, 0.0f); game::PlayerInfo* player_info_2 = game::AllocatePlayerInfo(); player_info_2->player_state = game::PlayerState::ALIVE; player_info_2->position = math::Vector(1.0f, 0.0f); game::PlayerInfo* player_info_3 = game::AllocatePlayerInfo(); player_info_3->player_state = game::PlayerState::NOT_SPAWNED; player_info_3->position = math::Vector(2.0f, 0.0f); game::PlayerInfo* player_info_4 = game::AllocatePlayerInfo(); player_info_4->player_state = game::PlayerState::ALIVE; player_info_4->position = math::Vector(3.0f, 0.0f); const game::PlayerInfo* found_player_info_1 = game::GetClosestActivePlayer(math::Vector(0.4f, 0.0f)); EXPECT_FLOAT_EQ(found_player_info_1->position.x, player_info_1->position.x); const game::PlayerInfo* found_player_info_2 = game::GetClosestActivePlayer(math::Vector(0.7f, 0.0f)); EXPECT_FLOAT_EQ(found_player_info_2->position.x, player_info_2->position.x); const game::PlayerInfo* found_player_info_3 = game::GetClosestActivePlayer(math::Vector(2.1f, 0.0f)); EXPECT_FLOAT_EQ(found_player_info_3->position.x, player_info_4->position.x); }
[ "niklas.damberg@gmail.com" ]
niklas.damberg@gmail.com
785f43c5fb062fa82e289ab557c648d3bf23071c
cb80a8562d90eb969272a7ff2cf52c1fa7aeb084
/inletTest3/0.055/U
6a99d302f8797eb698e499fbcd64d0e0b113dda4
[]
no_license
mahoep/inletCFD
eb516145fad17408f018f51e32aa0604871eaa95
0df91e3fbfa60d5db9d52739e212ca6d3f0a28b2
refs/heads/main
2023-08-30T22:07:41.314690
2021-10-14T19:23:51
2021-10-14T19:23:51
314,657,843
0
0
null
null
null
null
UTF-8
C++
false
false
403,294
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v2006 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volVectorField; location "0.055"; object U; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 -1 0 0 0 0]; internalField nonuniform List<vector> 16277 ( (48.313 0.00156122 -2.80774e-19) (48.3133 -0.00352272 0) (48.3129 0.00365201 0) (48.3127 -0.00296237 0) (48.3125 0.000482464 -4.1562e-21) (48.311 -0.0012041 -7.06716e-19) (48.3063 -0.00119347 8.83419e-19) (48.2908 -0.00355179 0) (48.2551 -0.00804694 0) (48.1991 -0.0141809 0) (48.1283 -0.0209113 -3.43014e-21) (48.0502 -0.0272686 -6.99147e-21) (47.9697 -0.0329583 1.77024e-21) (47.8887 -0.0379877 0) (47.8071 -0.0425328 0) (47.724 -0.0467519 0) (47.6384 -0.0507548 0) (47.5494 -0.0546002 0) (47.4568 -0.0583056 0) (47.3602 -0.0618731 0) (47.2597 -0.0653009 0) (47.1552 -0.0685926 0) (47.047 -0.0717575 0) (46.9351 -0.0748087 0) (46.8194 -0.0777601 0) (46.7001 -0.080623 0) (46.5772 -0.083406 0) (46.4508 -0.0861143 0) (46.3208 -0.0887504 0) (46.1874 -0.0913141 0) (46.0507 -0.093804 0) (45.9108 -0.0962173 0) (45.7678 -0.0985505 0) (45.6217 -0.1008 0) (45.4728 -0.10296 0) (45.3211 -0.105028 0) (45.1667 -0.106997 0) (45.0099 -0.108863 0) (44.8508 -0.110622 0) (44.6894 -0.112269 0) (44.526 -0.113799 0) (44.3608 -0.115208 0) (44.1938 -0.116492 0) (44.0253 -0.117648 0) (43.8554 -0.118671 0) (43.6844 -0.119558 0) (43.5123 -0.120306 0) (43.3394 -0.120911 0) (43.1659 -0.12137 0) (42.9919 -0.121681 0) (42.8177 -0.121841 0) (42.6435 -0.121847 0) (42.4694 -0.121698 0) (42.2957 -0.121395 0) (42.1226 -0.120935 0) (41.9502 -0.120288 0) (41.7788 -0.119467 0) (41.6086 -0.118506 0) (41.4398 -0.117389 0) (41.2727 -0.116107 0) (41.1073 -0.114658 0) (40.9441 -0.113043 0) (40.783 -0.111265 0) (40.6245 -0.109323 0) (40.4686 -0.107219 0) (40.3156 -0.104952 0) (40.1656 -0.102525 0) (40.019 -0.0999353 0) (39.8757 -0.0971807 0) (39.7361 -0.0942553 0) (39.6004 -0.0911502 0) (39.4686 -0.0878537 0) (39.341 -0.0843534 0) (39.2178 -0.0806396 0) (39.0992 -0.0767081 0) (38.9853 -0.0725571 0) (38.876 -0.0681693 0) (38.7707 -0.0634737 0) (38.6684 -0.0582783 -3.00532e-20) (38.5678 -0.0522673 2.99882e-20) (38.4686 -0.0449805 0) (38.373 -0.0362053 8.95619e-20) (38.289 -0.0265744 -5.91716e-20) (38.23 -0.018194 0) (38.2039 -0.0128839 -1.71869e-18) (38.2033 -0.0105358 1.11682e-18) (38.2136 -0.00963902 0) (38.2257 -0.00943422 0) (38.2355 -0.00935579 0) (38.2345 -0.00738469 1.73895e-17) (38.2272 -0.00459579 -1.0294e-17) (38.2028 -0.0102843 -1.26067e-17) (38.1411 -0.0202371 -3.78934e-18) (38.038 -0.0398372 2.12419e-18) (37.8702 -0.0576762 0) (37.6772 -0.0669742 0) (36.9673 -0.102504 -2.76496e-19) (36.5115 -0.0930302 2.32525e-18) (37.6856 -0.113575 1.73414e-18) (37.9172 -0.0967219 -5.82606e-18) (37.9413 -0.119277 0) (37.6343 -0.133697 1.79694e-18) (35.9973 -0.0920247 1.93194e-18) (35.4886 -0.0845109 7.19828e-19) (37.5735 -0.133343 4.01202e-19) (37.9636 -0.124079 1.33788e-18) (37.9612 -0.121241 1.33884e-18) (37.48 -0.122896 0) (35.0208 -0.0739623 -1.25591e-18) (34.5896 -0.0643151 1.16923e-19) (37.381 -0.112506 0) (37.9471 -0.118005 0) (37.9079 -0.113524 1.65994e-19) (37.253 -0.103538 0) (34.187 -0.0571944 2.47672e-24) (33.8231 -0.0518367 1.35735e-19) (37.1364 -0.0967143 0) (37.867 -0.111145 -1.66838e-19) (37.8075 -0.107654 1.05558e-20) (37.004 -0.0912535 3.94231e-19) (33.4788 -0.0475938 -5.07049e-19) (33.1772 -0.0430721 4.92694e-19) (36.8892 -0.0858052 3.96165e-19) (37.7547 -0.107182 -6.8884e-19) (37.6832 -0.103009 -6.81682e-19) (36.7504 -0.0811025 -7.95379e-19) (32.8849 -0.0400387 0) (32.6241 -0.036411 4.95116e-19) (36.6333 -0.0770821 -4.10844e-19) (37.6187 -0.102234 -1.06795e-20) (37.5367 -0.0979763 6.94691e-19) (36.4914 -0.0731232 -4.11083e-19) (32.3666 -0.0343521 -4.95398e-19) (32.1341 -0.0316044 0) (36.3735 -0.0703013 0) (37.4651 -0.097388 0) (37.3767 -0.0938552 6.84378e-19) (36.2314 -0.0671179 0) (31.9032 -0.0301978 0) (31.6945 -0.0279264 0) (36.1167 -0.0651647 0) (37.3022 -0.093998 0) (37.207 -0.0907353 0) (35.9733 -0.0625674 0) (31.4816 -0.0270659 0) (31.2878 -0.0251976 0) (35.8583 -0.061006 0) (37.1274 -0.0907342 0) (37.0262 -0.0878908 0) (35.7131 -0.0589337 0) (31.0876 -0.0247448 0) (30.9064 -0.0229775 0) (35.5992 -0.0577699 0) (36.9436 -0.0884069 0) (36.84 -0.085767 0) (35.4556 -0.0562176 0) (30.7192 -0.023054 0) (30.5484 -0.021145 0) (35.3434 -0.0551493 0) (36.7555 -0.0866285 0) (36.6488 -0.084306 0) (35.1998 -0.0540728 0) (30.37 -0.0216452 0) (30.2067 -0.0197301 0) (35.0883 -0.0532113 0) (36.5619 -0.0853521 0) (36.4522 -0.083347 0) (34.9445 -0.0524825 0) (30.035 -0.0205117 0) (29.8776 -0.018643 0) (34.8333 -0.0516982 0) (36.3632 -0.0844376 0) (36.2506 -0.0827261 0) (34.6889 -0.0512531 0) (29.7112 -0.019627 0) (29.5583 -0.0177691 0) (34.5777 -0.050548 0) (36.1593 -0.0839341 0) (36.0438 -0.0824975 0) (34.4325 -0.0503635 0) (29.3959 -0.0189301 0) (29.2463 -0.0170651 0) (34.3207 -0.0497121 0) (35.9502 -0.0838081 0) (35.8316 -0.0826188 0) (34.1742 -0.0497625 0) (29.0869 -0.0183845 0) (28.9398 -0.0164962 0) (34.0615 -0.0491404 0) (35.7354 -0.0840139 0) (35.6136 -0.083047 0) (33.9135 -0.0494026 0) (28.7824 -0.0179612 0) (28.6369 -0.0161187 0) (33.7994 -0.0487871 0) (35.5148 -0.0844567 0) (35.3896 -0.0837145 0) (33.6496 -0.0492316 0) (28.4809 -0.017681 0) (28.3365 -0.015815 0) (33.5339 -0.0485899 0) (35.2879 -0.0851547 0) (35.1593 -0.0846192 0) (33.382 -0.049218 0) (28.1813 -0.0174751 0) (28.0374 -0.0156412 0) (33.2644 -0.0485556 0) (35.0546 -0.0860888 0) (34.9224 -0.0857506 6.86197e-19) (33.1102 -0.0493484 0) (27.8826 -0.0173684 0) (27.7386 -0.0155641 0) (32.9902 -0.0486566 0) (34.8144 -0.0872681 0) (34.6783 -0.0871141 0) (32.8335 -0.0496129 0) (27.5837 -0.0173452 0) (27.4394 -0.0155482 0) (32.7109 -0.048833 0) (34.5668 -0.0886752 0) (34.4269 -0.0886238 0) (32.5515 -0.0499577 0) (27.2839 -0.0173831 0) (27.1387 -0.0156015 0) (32.4261 -0.0492161 0) (34.3116 -0.0901187 0) (34.1675 -0.0902395 0) (32.2636 -0.0504457 0) (26.9823 -0.0174587 0) (26.8359 -0.0156823 0) (32.1351 -0.0497387 0) (34.0483 -0.0917531 0) (33.8997 -0.0920583 6.86631e-19) (31.9692 -0.0510674 0) (26.6781 -0.0175697 0) (26.5301 -0.0158034 0) (31.8373 -0.0503783 0) (33.7764 -0.0936047 0) (33.6232 -0.0940836 0) (31.6678 -0.0518077 0) (26.3707 -0.0177255 0) (26.2206 -0.0159682 0) (31.5322 -0.0511359 0) (33.4955 -0.0956669 0) (33.3374 -0.0963074 0) (31.3587 -0.0526631 0) (26.0591 -0.0179253 0) (25.9068 -0.0161743 0) (31.2192 -0.0520092 0) (33.205 -0.097932 0) (33.0419 -0.0987219 0) (31.0415 -0.0536288 0) (25.7428 -0.0181663 0) (25.5877 -0.0164179 0) (30.8976 -0.0529937 0) (32.9046 -0.100391 0) (32.7361 -0.101316 6.87059e-19) (30.7155 -0.0546983 0) (25.421 -0.0184441 0) (25.2629 -0.0166938 0) (30.5671 -0.0540834 0) (32.5937 -0.103032 0) (32.4197 -0.104076 0) (30.3803 -0.0558631 0) (25.0931 -0.0187536 0) (24.9318 -0.016997 0) (30.227 -0.0552683 0) (32.2719 -0.105838 0) (32.0922 -0.106981 0) (30.0353 -0.0571124 0) (24.7586 -0.0190902 0) (24.5938 -0.0173292 0) (29.877 -0.0565272 0) (31.9388 -0.108777 0) (31.7533 -0.110002 0) (29.6802 -0.0584235 0) (24.417 -0.0194508 0) (24.2485 -0.0176832 0) (29.5167 -0.0578364 0) (31.5942 -0.11182 0) (31.4027 -0.113102 6.87501e-19) (29.3147 -0.0597746 0) (24.068 -0.0198283 0) (23.8957 -0.0180493 0) (29.1459 -0.0591702 0) (31.2378 -0.114916 0) (31.0403 -0.11622 0) (28.9387 -0.0611309 0) (23.7114 -0.0202082 0) (23.5353 -0.0184098 0) (28.7645 -0.0604866 0) (30.8695 -0.117995 0) (30.6661 -0.119276 0) (28.5522 -0.0624452 0) (23.3473 -0.0205697 0) (23.1676 -0.0187415 0) (28.3728 -0.0617312 0) (30.4896 -0.120964 0) (30.2805 -0.122175 0) (28.1555 -0.0636636 0) (22.9761 -0.0208986 0) (22.7931 -0.0190355 0) (27.9712 -0.0628526 0) (30.0985 -0.12372 0) (29.884 -0.124809 0) (27.7495 -0.0647321 0) (22.5986 -0.0211776 0) (22.4128 -0.0192665 0) (27.5608 -0.0637875 0) (29.6971 -0.126147 0) (29.4777 -0.127049 0) (27.3351 -0.0655801 0) (22.2159 -0.0213795 0) (22.028 -0.0194055 0) (27.1428 -0.0644553 0) (29.2864 -0.128095 0) (29.0631 -0.128726 0) (26.9141 -0.0661169 0) (21.8295 -0.0214723 0) (21.6406 -0.0194171 0) (26.7191 -0.0647532 0) (28.8683 -0.129373 0) (28.6421 -0.129632 0) (26.4886 -0.0662292 0) (21.4417 -0.0214165 0) (21.2532 -0.0192583 0) (26.2922 -0.0645539 0) (28.4451 -0.129746 0) (28.2174 -0.129511 0) (26.0614 -0.0657782 0) (21.0554 -0.0211656 0) (20.8691 -0.018879 0) (25.8655 -0.0637057 0) (28.0199 -0.12893 0) (27.7925 -0.128064 0) (25.6365 -0.0646051 0) (20.6745 -0.0206639 0) (20.4927 -0.0182191 0) (25.4433 -0.0620375 0) (27.5965 -0.126601 0) (27.3719 -0.12495 0) (25.2186 -0.0625328 0) (20.3038 -0.0198461 0) (20.1294 -0.0172109 0) (25.0311 -0.0593579 0) (27.1802 -0.122388 0) (26.9614 -0.119781 0) (24.8139 -0.0593515 0) (19.9493 -0.018637 0) (19.7858 -0.0157807 0) (24.6355 -0.055436 0) (26.7772 -0.11587 0) (26.5678 -0.112118 0) (24.4297 -0.054821 0) (19.6185 -0.0169465 0) (19.47 -0.0138431 0) (24.2648 -0.0500176 0) (26.3952 -0.10657 0) (26.1997 -0.10152 0) (24.075 -0.0487 0) (19.32 -0.0146703 0) (19.1914 -0.0113299 0) (23.9285 -0.0428972 0) (26.0434 -0.0940946 0) (25.8666 -0.0876256 0) (23.7599 -0.0407884 0) (19.0637 -0.0117819 0) (18.9617 -0.00823224 0) (23.6368 -0.0336643 0) (25.7318 -0.0779612 0) (25.5795 -0.0698336 0) (23.4956 -0.0305299 0) (18.8616 -0.00809353 0) (18.7965 -0.00430075 0) (23.4017 -0.0225057 0) (25.4712 -0.0578626 0) (25.3494 -0.0480166 0) (23.2941 -0.0186779 0) (18.728 -0.00395858 0) (18.7044 0.000152059 0) (23.2368 -0.0102805 0) (25.2759 -0.0337902 0) (25.189 -0.0230981 0) (23.1678 -0.00561045 0) (18.6708 0.000628375 0) (18.6927 0.00493811 0) (23.1518 0.00354417 0) (25.155 -0.00732332 0) (25.1069 0.00335268 0) (23.1251 0.008249 0) (18.6969 0.00516337 0) (18.7656 0.00979291 0) (23.153 0.018011 0) (25.1153 0.0200353 0) (25.1088 0.0304358 0) (23.1706 0.0223185 0) (18.8085 0.00944482 0) (18.9191 0.0139304 6.22024e-20) (23.2395 0.0313628 0) (25.1573 0.0453691 0) (25.1896 0.0568963 0) (23.2973 0.0364603 0) (18.9994 0.0138737 -6.22024e-20) (19.1565 0.018723 6.21978e-20) (23.413 0.0461528 0) (25.2843 0.0733978 0) (25.3607 0.0840491 0) (23.5166 0.0504959 0) (19.2819 0.0190008 -6.21977e-20) (19.4833 0.0237015 6.21915e-20) (23.6802 0.0601257 0) (25.5034 0.100644 0) (25.6218 0.104496 0) (23.8253 0.0598243 0) (19.6442 0.0216348 -6.21916e-20) (19.868 0.0257877 6.21843e-20) (24.0191 0.0681635 0) (25.7959 0.118451 0) (25.9432 0.11849 0) (24.1912 0.0657772 0) (20.0477 0.0230219 -6.21845e-20) (20.2845 0.0264519 6.21764e-20) (24.4069 0.0724234 0) (26.1414 0.129493 0) (26.3094 0.126649 0) (24.5968 0.0685226 0) (20.4732 0.0232022 -6.2177e-20) (20.7146 0.0262777 6.21684e-20) (24.8255 0.0741616 0) (26.5236 0.135688 0) (26.7055 0.130534 0) (25.0257 0.0691031 0) (20.905 0.022655 -6.21693e-20) (21.1448 0.0253977 6.21603e-20) (25.2604 0.0737227 0) (26.9295 0.137654 0) (27.1188 0.130446 0) (25.4643 0.0676436 0) (21.3309 0.0214875 -6.21615e-20) (21.5633 0.0238709 6.21525e-20) (25.6985 0.0712598 0) (27.346 0.135653 0) (27.5365 0.126786 0) (25.8997 0.0643801 0) (21.7392 0.0197427 -6.2154e-20) (21.9591 0.021833 6.2145e-20) (26.1277 0.0670882 0) (27.761 0.130222 0) (27.9472 0.120126 0) (26.3207 0.0596521 0) (22.1202 0.0175771 -6.21469e-20) (22.3237 0.0194276 6.21381e-20) (26.5376 0.0615842 0) (28.164 0.121993 0) (28.3411 0.111056 0) (26.718 0.0538105 0) (22.4665 0.0150996 -6.21403e-20) (22.6507 0.0167559 6.21318e-20) (26.92 0.0550949 0) (28.5461 0.111555 0) (28.7102 0.100181 0) (27.084 0.0471804 0) (22.7727 0.0124197 -6.21343e-20) (22.9359 0.0140257 6.21263e-20) (27.2682 0.0480175 0) (28.9001 0.0995297 0) (29.0482 0.0880767 0) (27.4126 0.0402006 0) (23.0365 0.00989059 -6.21289e-20) (23.1776 0.0114635 5.59107e-19) (27.5771 0.0407851 4.12991e-19) (29.2205 0.0866152 -1.37637e-18) (29.3501 0.0753916 0) (27.6999 0.0332823 0) (23.2585 0.00776343 -6.2124e-20) (23.3764 0.00896888 6.21177e-20) (27.844 0.0334731 0) (29.5035 0.0734383 -6.88125e-19) (29.6143 0.0627345 0) (27.9459 0.0266424 0) (23.4376 0.00552394 -6.21199e-20) (23.5332 0.00652982 6.21145e-20) (28.0697 0.0265183 0) (29.7484 0.0604834 0) (29.8406 0.0505438 0) (28.1511 0.020314 0) (23.5757 0.00344914 -6.21166e-20) (23.6507 0.00435499 6.21121e-20) (28.2553 0.0200333 0) (29.9557 0.0482886 0) (30.0298 0.0392967 0) (28.3174 0.0144227 0) (23.6765 0.00156327 -6.21139e-20) (23.7333 0.00254042 6.21103e-20) (28.4034 0.0143046 0) (30.1268 0.0372184 0) (30.1842 0.0294814 0) (28.448 0.00964879 0) (23.7446 0.000169661 -6.21119e-20) (23.7861 0.00132518 6.2109e-20) (28.518 0.00989258 0) (30.2651 0.0277021 0) (30.3079 0.0211958 0) (28.5474 0.00599525 0) (23.7856 -0.000758858 -6.21105e-20) (23.8146 0.000220691 6.21083e-20) (28.6037 0.00592918 0) (30.3749 0.0197061 0) (30.4049 0.0141518 0) (28.6203 0.00174476 0) (23.805 -0.00210588 -6.21095e-20) (23.8246 -0.000921463 6.21077e-20) (28.6653 0.00205313 0) (30.46 0.0132087 0) (30.4791 0.00870921 0) (28.6713 -0.00126776 0) (23.808 -0.00297347 -6.21085e-20) (23.8205 -0.0013966 6.21072e-20) (28.7071 -0.000233723 0) (30.5244 0.00812249 0) (30.5349 0.00438279 0) (28.7047 -0.0027749 0) (23.7987 -0.00310304 -6.21083e-20) (23.8061 -0.00152312 6.21074e-20) (28.7331 -0.00156161 0) (30.5724 0.0041063 0) (30.5757 0.00108792 0) (28.7242 -0.00356691 0) (23.7806 -0.0029982 -6.21084e-20) (23.7842 -0.0014168 6.21077e-20) (28.7468 -0.00225612 0) (30.6067 0.000862825 0) (30.6044 -0.0011633 0) (28.7327 -0.00365138 0) (23.7562 -0.0027091 -6.21084e-20) (23.7574 -0.00133332 6.21077e-20) (28.751 -0.00275714 0) (30.6306 -0.00139335 0) (30.6239 -0.00308746 0) (28.733 -0.00459513 0) (23.7278 -0.00288922 -6.21082e-20) (23.7275 -0.00161805 6.21077e-20) (28.7481 -0.0038347 0) (30.646 -0.00334871 0) (30.6356 -0.00410081 0) (28.7272 -0.00449583 0) (23.6969 -0.002643 -6.21084e-20) (23.6954 -0.000884716 6.21078e-20) (28.7396 -0.00292284 0) (30.6545 -0.00430242 0) (30.6417 -0.00523581 0) (28.7166 -0.00298594 0) (23.6641 -0.00184143 -6.21085e-20) (23.6624 2.56124e-05 6.21082e-20) (28.7273 -0.00170857 0) (30.6586 -0.00540032 0) (30.6436 -0.00629427 0) (28.7027 -0.00258836 0) (23.6306 -0.00154242 -6.21089e-20) (23.6292 6.34772e-05 6.21083e-20) (28.7122 -0.00214288 0) (30.6586 -0.0070496 0) (30.6418 -0.00623258 0) (28.6865 -0.00228924 0) (23.5976 -0.00132841 -6.21087e-20) (23.5961 0.000217438 6.21083e-20) (28.6951 -0.00180142 0) (30.6559 -0.00651049 0) (30.638 -0.00742261 0) (28.6688 -0.00344754 0) (23.565 -0.00166472 -6.21088e-20) (23.5636 -7.46903e-05 6.21086e-20) (28.6767 -0.00225383 0) (30.651 -0.0060252 -6.88068e-19) (30.6321 -0.00746988 0) (28.6495 -0.00516039 0) (23.5324 -0.00234332 -6.21092e-20) (23.5319 -0.0012706 6.21091e-20) (28.6572 -0.00472469 0) (30.6438 -0.00731142 0) (30.6241 -0.00566689 0) (28.6297 -0.00349097 0) (23.5009 -0.0016098 -6.21101e-20) (23.5006 -0.000543261 6.21107e-20) (28.6374 -0.00360855 0) (30.6362 -0.0073862 0) (30.616 -0.00613204 0) (28.6097 -0.00291794 0) (23.4696 -0.0013578 -6.21116e-20) (23.4707 -0.00144862 6.21116e-20) (28.6187 -0.00467949 0) (30.6293 -0.00691281 0) (30.609 -0.00608366 0) (28.5914 -0.00702421 0) (23.4415 -0.00351126 -6.20813e-20) (23.4427 -0.00212959 6.20193e-20) (28.6003 -0.00656403 0) (30.6217 -0.00505886 -6.86769e-19) (30.6018 -0.00635884 -6.83751e-19) (28.5744 -0.00902587 3.07409e-19) (23.4153 -0.00449451 -5.54049e-19) (23.4173 -0.00115997 0) (28.5842 -0.00358188 4.65098e-25) (30.6194 -0.000765328 0) (30.6048 -0.00353437 -6.67843e-19) (28.5626 -0.00425164 9.95244e-20) (23.3885 -0.00159002 0) (23.4227 0.00213898 -9.67811e-19) (28.5881 0.00320978 -6.24675e-25) (30.634 0.00582211 -6.65964e-19) (30.6297 0.0112932 0) (28.5904 0.00605426 0) (23.4149 0.00158206 9.04856e-19) (23.494 0.0116306 -2.45036e-19) (28.6647 0.0210966 -4.01929e-18) (30.6973 0.0300846 -3.25816e-24) (30.754 0.0668012 5.11507e-18) (28.7471 0.0486472 0) (23.6401 0.0259507 -1.55992e-18) (23.9301 0.0658417 -2.01079e-18) (28.9438 0.094693 1.5957e-17) (30.9366 0.102039 4.94665e-23) (31.4724 0.0692983 -3.71593e-17) (29.7415 0.132804 1.04365e-18) (25.0787 0.125782 0) (24.8322 0.0642715 0) (28.7931 0.128085 -8.81937e-19) (30.6001 0.190631 7.3917e-19) (31.7839 0.285462 -7.49198e-18) (32.6569 0.135655 -4.31979e-22) (33.1618 0.0302371 1.31352e-17) (33.3354 0.00813268 -1.91346e-19) (33.4413 0.018457 -2.83242e-18) (33.6508 0.0239767 2.83666e-18) (33.735 0.0192571 0) (33.8273 0.0212844 0) (33.8688 0.0199351 6.10591e-19) (33.9042 0.0217482 7.87828e-19) (33.912 0.0203981 -1.75616e-19) (33.901 0.0217346 8.90387e-19) (33.8754 0.0197728 -1.44769e-18) (33.8079 0.0198608 7.45449e-19) (33.7379 0.0127682 0) (33.5624 0.011456 -1.27943e-17) (33.4624 0.00562659 -1.48615e-17) (33.3512 0.00615671 0) (33.2142 0.0187134 -5.29022e-19) (32.9797 0.00994023 0) (32.377 -0.0278059 0) (31.0836 -0.0679697 2.67824e-18) (28.3663 -0.0685052 -6.93585e-18) (24.9078 -0.0683643 0) (17.7786 -0.0675638 -3.65579e-19) (17.225 -0.0410045 3.45168e-19) (24.5511 -0.0766783 -8.5369e-18) (28.0804 -0.0836957 2.00772e-17) (27.7892 -0.0780788 8.1175e-19) (24.2134 -0.0456411 2.68972e-18) (16.7758 -0.034753 -2.84143e-18) (16.4908 -0.022878 0) (23.9894 -0.0333346 -1.44005e-18) (27.604 -0.0629494 -3.7042e-18) (27.5162 -0.0432136 0) (23.9036 -0.0296409 9.46343e-19) (16.2883 -0.0168319 0) (16.2587 -0.0118332 0) (23.8614 -0.0188122 2.22539e-19) (27.4772 -0.020854 -1.20518e-18) (27.4381 -0.0109182 5.3831e-25) (23.8241 -0.0124768 -2.22605e-19) (16.1476 -0.00645185 0) (16.1429 0.00122682 0) (23.7991 -0.00101368 0) (27.4413 -0.00135764 -1.68579e-19) (27.4448 0.00445301 0) (23.802 0.00278342 0) (16.1464 0.00105791 0) (16.1559 0.0013618 0) (23.8104 0.00403813 0) (27.4527 0.00649641 0) (27.4625 0.00793577 0) (23.8227 0.00439518 0) (16.1699 0.00146045 0) (16.1863 0.000772293 0) (23.8381 0.00288421 0) (27.4752 0.00635695 0) (27.4873 0.00869591 0) (23.854 0.00376748 0) (16.2043 0.00103818 0) (16.2214 0.00114382 0) (23.87 0.00416938 0) (27.5004 0.00903923 -1.68234e-19) (27.5138 0.0103982 1.68563e-19) (23.8868 0.00474329 0) (16.24 0.0013626 0) (16.2597 0.00127782 0) (23.9052 0.00449051 0) (27.5289 0.00969058 0) (27.5427 0.0106292 0) (23.9229 0.00530599 0) (16.2789 0.00163138 0) (16.2989 0.0018939 0) (23.9416 0.00597987 0) (27.5583 0.0108413 0) (27.5727 0.0121227 0) (23.9595 0.00672214 0) (16.318 0.00225988 0) (16.3391 0.00148364 0) (23.9792 0.00473828 0) (27.5893 0.00999125 0) (27.6048 0.0107823 0) (23.9989 0.00466523 0) (16.3607 0.00138666 0) (16.3818 0.00140324 0) (24.0184 0.00474931 0) (27.6208 0.0106037 0) (27.6368 0.012057 0) (24.0385 0.00536158 0) (16.4039 0.00163087 0) (16.4259 0.00151086 0) (24.0589 0.00493021 0) (27.6536 0.0110089 0) (27.6695 0.0117624 0) (24.0794 0.00575692 0) (16.4489 0.00191288 0) (16.4725 0.00246226 0) (24.1011 0.00718235 0) (27.6871 0.0124599 0) (27.7032 0.0141227 0) (24.1212 0.00894252 0) (16.4947 0.00325654 0) (16.5178 0.00288252 0) (24.1428 0.00793004 0) (27.7213 0.0122408 0) (27.7376 0.0128491 0) (24.1635 0.00815295 0) (16.5407 0.0029786 0) (16.5639 0.00289194 0) (24.1848 0.00808412 0) (27.7551 0.0125007 0) (27.7729 0.0137207 0) (24.2066 0.00843029 0) (16.588 0.00296839 0) (16.611 0.00221542 0) (24.2281 0.00634437 0) (27.7911 0.0114931 0) (27.808 0.011741 0) (24.2494 0.00532795 0) (16.6348 0.00169521 0) (16.6592 0.0016524 0) (24.2718 0.00547939 0) (27.8264 0.0121292 0) (27.8439 0.0135458 0) (24.2935 0.00641016 0) (16.6832 0.00202514 0) (16.7073 0.00181665 0) (24.316 0.00585097 0) (27.8629 0.0122437 0) (27.8807 0.0123862 0) (24.338 0.00549076 0) (16.7319 0.0016797 -1.44092e-19) (16.7574 0.00151704 1.43949e-19) (24.3613 0.00520056 0) (27.9 0.0119421 0) (27.9187 0.0134508 0) (24.3846 0.00596543 0) (16.7833 0.00183788 0) (16.8091 0.00212038 0) (24.4083 0.00657457 0) (27.9383 0.013241 0) (27.9566 0.0149539 0) (24.4309 0.00876094 0) (16.8337 0.00307433 0) (16.8587 0.00334787 0) (24.4544 0.00947648 0) (27.9768 0.0146847 0) (27.9964 0.0147968 0) (24.4777 0.00924969 0) (16.8837 0.00325724 0) (16.9096 0.00236652 0) (24.5019 0.0069444 0) (28.0174 0.0128096 0) (28.0372 0.0128001 0) (24.526 0.00546781 0) (16.9358 0.00164517 0) (16.9627 0.00154335 0) (24.5511 0.00538213 0) (28.0584 0.0126698 0) (28.0791 0.0153204 0) (24.5762 0.00757668 0) (16.9894 0.00241313 0) (17.015 0.00313893 0) (24.6009 0.00901143 0) (28.1008 0.0151818 0) (28.1217 0.0158136 0) (24.625 0.00982374 0) (17.0396 0.0034319 0) (17.0654 0.00279102 0) (24.6505 0.0084114 0) (28.1449 0.0143449 0) (28.1671 0.0142869 0) (24.676 0.00669706 0) (17.0911 0.00202806 0) (17.1175 0.00129925 0) (24.7024 0.00508819 0) (28.1908 0.0129141 0) (28.2137 0.014292 0) (24.7285 0.00549906 0) (17.1429 0.00135584 0) (17.1682 0.0013642 0) (24.7553 0.00571422 0) (28.2384 0.014201 0) (28.2632 0.015234 0) (24.7826 0.00608682 0) (17.1934 0.00145154 0) (17.2186 0.00120671 0) (24.8105 0.00550944 0) (28.2895 0.0144087 0) (28.3152 0.0153421 0) (24.8381 0.00573271 0) (17.2426 0.00120586 0) (17.267 0.00102083 0) (24.867 0.00555976 0) (28.3431 0.0150196 0) (28.3711 0.0158648 0) (24.8965 0.00572913 0) (17.291 0.000992187 0) (17.315 0.000718481 0) (24.9269 0.00512123 0) (28.401 0.0150759 0) (28.4309 0.0158345 0) (24.9577 0.0051737 0) (17.338 0.000636896 0) (17.3614 0.000495976 0) (24.99 0.00518341 0) (28.463 0.0158244 0) (28.4955 0.0174754 0) (25.0233 0.00640482 0) (17.3845 0.000909532 0) (17.4069 0.00163858 0) (25.0575 0.00827405 0) (28.5302 0.0184148 0) (28.5653 0.0201638 0) (25.0919 0.0100868 0) (17.4275 0.00222598 0) (17.4486 0.00202503 0) (25.1285 0.0100037 0) (28.6034 0.01989 0) (28.6426 0.0208695 0) (25.1668 0.0100181 0) (17.4698 0.00186714 0) (17.4904 0.00150125 0) (25.2068 0.0095443 0) (28.6845 0.0205926 0) (28.727 0.0218859 0) (25.2477 0.0100301 0) (17.51 0.00144683 0) (17.5294 0.00110275 0) (25.2911 0.00998073 0) (28.773 0.0221326 0) (28.8205 0.0237518 0) (25.3365 0.0104499 0) (17.5486 0.00105445 0) (17.5673 0.000774632 0) (25.3842 0.0102771 0) (28.8713 0.0238464 0) (28.9238 0.0258346 0) (25.4339 0.0110542 0) (17.5857 0.000794897 0) (17.6046 -0.000186217 0) (25.4868 0.00985824 0) (28.9804 0.0259218 0) (29.0399 0.0270842 0) (25.5443 0.00820492 0) (17.6267 -0.00137546 0) (17.6521 -0.00163513 0) (25.6065 0.0080498 0) (29.1037 0.0284892 0) (29.1691 0.0341818 0) (25.6709 0.0124887 0) (17.678 -4.11352e-05 0) (17.7055 0.00159769 0) (25.7398 0.017156 0) (29.2396 0.0373524 0) (29.3146 0.0401803 0) (25.8143 0.0201358 0) (17.7378 0.00256892 0) (17.7764 0.0022704 0) (25.8955 0.0200926 0) (29.3956 0.0414542 0) (29.4812 0.0437726 0) (25.9839 0.0182179 0) (17.8234 0.000983129 0) (17.8818 -8.94862e-05 0) (26.0814 0.0169759 0) (29.5724 0.0471638 0) (29.668 0.0545459 0) (26.1875 0.021185 0) (17.9521 0.00165859 0) (18.0334 0.00654362 0) (26.3022 0.0330637 0) (29.7692 0.0657305 0) (29.8769 0.0737308 0) (26.4249 0.0435764 0) (18.127 0.0114027 0) (18.2406 0.0135392 0) (26.5616 0.0490809 0) (29.994 0.0788933 1.67925e-19) (30.1178 0.0874908 -1.68248e-19) (26.7113 0.0552598 0) (18.3759 0.0162273 0) (18.5347 0.0199653 0) (26.8748 0.0637457 0) (30.2492 0.0986659 0) (30.3881 0.112681 0) (27.0517 0.0746407 0) (18.7178 0.0249481 0) (18.9319 0.03012 0) (27.2461 0.0848777 0) (30.5383 0.126265 0) (30.7004 0.141252 0) (27.4595 0.0931513 0) (19.1797 0.0354498 0) (19.4767 0.0386165 0) (27.703 0.0929064 0) (30.8815 0.153668 0) (31.088 0.176487 1.68126e-19) (27.9913 0.095213 0) (19.8491 0.0450409 0) (20.3141 0.0751959 0) (28.3225 0.131204 0) (31.318 0.232573 -1.68651e-19) (31.5481 0.348515 -2.70925e-18) (28.6616 0.254694 1.57895e-23) (20.7753 0.176318 2.29282e-18) (21.2115 0.24552 -9.11953e-18) (28.9875 0.349465 -5.06648e-23) (31.7559 0.464578 2.53696e-18) (31.9218 0.627539 -2.52244e-18) (29.2566 0.514792 -7.02539e-18) (21.6347 0.381684 9.03362e-18) (22.0029 0.545533 1.42556e-19) (29.4066 0.699973 -7.00046e-18) (32.0299 0.799141 5.33379e-18) (32.1141 0.965767 -5.46435e-18) (29.6244 0.850593 0) (22.3636 0.658032 0) (22.6942 0.800166 1.80036e-17) (29.7473 1.01119 -1.37473e-17) (32.1804 1.12349 -5.0931e-18) (32.2255 1.27018 0) (29.8842 1.14846 -1.36032e-17) (23.0633 0.919838 1.78725e-17) (23.4546 1.04536 1.77428e-17) (30.0195 1.2914 -4.2197e-19) (32.2735 1.42172 0) (32.2743 1.58401 0) (30.11 1.47065 4.22604e-19) (23.8054 1.20466 -5.53836e-19) (24.1097 1.31784 -1.63638e-17) (30.1928 1.60373 0) (32.2627 1.71748 0) (32.2532 1.82238 -1.02961e-17) (30.2852 1.69645 1.35211e-17) (24.4437 1.40275 -1.82925e-17) (24.805 1.51944 0) (30.3727 1.81563 1.65863e-18) (32.2464 1.93003 0) (32.225 2.05109 -9.74681e-18) (30.4445 1.93584 -1.64292e-18) (25.1787 1.62766 -4.44184e-18) (25.3886 1.71656 2.04801e-17) (30.5036 2.09828 -3.46925e-17) (32.1483 2.21351 2.41392e-17) (31.939 2.12705 2.98814e-17) (30.3732 2.02189 -5.5504e-17) (25.3654 1.59449 -2.03439e-17) (20.2235 1.14722 -3.16276e-17) (27.97 1.58666 -3.12764e-18) (30.896 1.68556 -1.59507e-17) (31.7156 2.26426 -3.52879e-18) (29.054 2.12417 4.69785e-18) (21.4872 1.59176 -3.10559e-18) (21.4704 1.71426 1.39558e-18) (29.1623 2.32174 -2.11725e-18) (31.7295 2.51936 -1.61097e-18) (31.6809 2.63884 5.26215e-17) (29.2236 2.43033 -2.8945e-22) (21.7992 1.81531 -4.46367e-17) (22.2186 1.977 3.33282e-19) (29.2395 2.57413 6.49174e-17) (31.6074 2.76714 7.54073e-23) (31.6221 2.85915 2.46459e-17) (29.3927 2.65224 -3.18296e-17) (22.7266 2.08064 4.18005e-17) (23.2933 2.20517 -3.18535e-19) (29.5056 2.74507 1.20839e-19) (31.6081 2.96025 2.33429e-17) (31.6163 3.0881 -2.38859e-17) (29.6716 2.89845 3.02649e-17) (23.8347 2.37351 -3.09744e-19) (24.3467 2.48894 6.17603e-19) (29.7545 2.97904 2.82982e-17) (31.5636 3.17911 -2.36324e-17) (31.5457 3.30302 -1.80541e-17) (29.8903 3.13855 -2.72466e-17) (24.8538 2.65311 4.04742e-17) (25.321 2.75755 -2.37025e-18) (29.9862 3.23342 0) (31.5149 3.39289 -2.62698e-18) (31.4725 3.51306 0) (30.0865 3.3301 2.41324e-17) (25.7493 2.86695 -6.88289e-17) (25.8866 2.85656 5.08474e-17) (30.0287 3.37019 0) (31.2667 3.49206 -1.26565e-16) (30.4749 3.13349 1.06628e-17) (28.2124 2.8455 -3.14132e-18) (22.3107 2.23193 -3.77025e-18) (23.6777 2.82688 0) (29.2048 3.39608 -2.30869e-18) (31.123 3.61916 -6.95309e-18) (31.1095 3.8436 0) (29.3167 3.6376 -3.2058e-17) (23.9641 3.02552 4.23512e-17) (24.5048 3.1387 6.33084e-19) (29.5296 3.71188 -9.62308e-19) (31.1257 3.93688 0) (31.0888 4.10535 -2.83913e-23) (29.6064 3.93332 2.80047e-17) (24.9013 3.35826 -3.89055e-17) (25.2752 3.47214 3.45885e-17) (29.665 4.01398 3.4923e-18) (31.0457 4.17778 0) (30.9966 4.28808 1.98591e-17) (29.762 4.11383 -1.66741e-18) (25.6879 3.59668 -2.24977e-18) (25.8861 3.74851 4.10925e-18) (29.7353 4.32884 0) (30.865 4.46029 -3.21907e-17) (30.6441 4.43214 -3.70525e-18) (29.6006 4.29013 2.2825e-18) (25.9884 3.70906 4.60443e-17) (22.8621 3.53266 0) (28.0764 4.08779 -3.07774e-18) (29.956 4.10939 7.92355e-18) (30.3926 4.63197 3.78804e-17) (28.8702 4.44506 -7.45214e-17) (23.988 3.77936 9.69747e-17) (24.2922 3.94033 -4.36985e-17) (28.9185 4.58502 -3.19226e-17) (30.3141 4.8023 1.54672e-18) (30.1641 4.97072 -2.39033e-17) (28.9132 4.77851 -3.15803e-17) (24.6784 4.17704 8.41352e-17) (25.0496 4.34514 0) (28.8706 4.87747 3.73127e-18) (30.0037 5.08594 0) (29.8483 5.27483 0) (28.8826 5.05686 9.55064e-18) (25.4535 4.54652 0) (25.5238 4.6953 0) (28.6975 5.26459 -1.98053e-17) (29.5304 5.36596 0) (28.9005 5.20944 -2.50542e-17) (27.3761 4.81984 2.59548e-17) (22.9345 4.03491 0) (24.2268 4.67 1.01013e-16) (28.04 5.23466 2.94784e-19) (29.2775 5.49715 -1.78711e-18) (29.1106 5.80254 -2.44521e-17) (28.0485 5.64326 3.24158e-17) (24.5119 5.05134 -8.72512e-17) (24.8344 5.21812 8.10175e-17) (28.0003 5.73672 -6.00107e-17) (28.9304 5.92809 -2.18148e-17) (28.6968 6.14116 -3.46729e-17) (27.9202 5.99511 8.85866e-17) (25.0215 5.46081 -1.52764e-16) (24.9643 5.5551 2.11449e-16) (27.6298 6.10732 9.80689e-17) (28.3137 6.19482 -2.77301e-22) (27.7509 6.15872 -7.07242e-19) (26.5666 5.69088 -8.27926e-19) (22.811 4.89622 -1.00315e-18) (23.7229 5.80572 1.02249e-16) (26.9101 6.38987 6.00618e-19) (27.87 6.56253 0) (27.4891 6.78408 9.77217e-17) (26.6981 6.60883 -6.65414e-17) (23.7841 6.0762 -2.45551e-18) (24.0156 6.40379 2.48554e-18) (26.4957 6.84048 0) (27.1091 7.02216 -5.61299e-17) (26.5595 7.16491 -3.37815e-17) (26.0609 7.14566 0) (23.8535 6.65608 3.3131e-18) (22.1525 5.96511 -1.39774e-16) (25.1401 6.73296 1.1052e-16) (25.9955 7.2221 0) (25.897 7.61037 -5.7874e-17) (25.177 7.50191 7.73125e-17) (22.8499 7.06239 2.02172e-19) (22.7593 7.34609 8.85019e-17) (24.7907 7.66426 0) (25.3263 7.76679 0) (24.6729 8.01918 0) (24.2522 8.05622 -5.40358e-17) (22.5618 7.82298 1.55661e-16) (22.0982 8.0047 0) (23.5177 8.19605 0) (23.8136 8.07807 -8.03653e-18) (22.8291 8.45143 1.09654e-17) (22.3454 8.30734 0) (20.3964 7.97907 -1.32108e-16) (20.2976 8.61254 -1.20765e-17) (21.7401 8.77933 -1.32779e-16) (22.1188 8.65226 1.14881e-21) (20.8784 8.59302 -4.65622e-18) (20.6339 8.85743 5.9163e-18) (19.5065 8.8025 1.87935e-17) (17.5515 9.02184 -4.51804e-18) (19.0334 9.14179 -1.46877e-17) (19.5021 8.95807 1.79729e-17) (18.3345 8.86363 -8.52763e-17) (17.9749 9.2263 1.2263e-16) (16.9351 9.41487 -1.24259e-17) (15.311 9.40346 2.46794e-16) (16.0022 8.8221 -1.52638e-16) (16.3303 8.12244 0) (13.3841 8.18612 -7.22882e-17) (12.952 8.67894 -1.20309e-17) (12.1204 9.13012 0) (9.31105 7.72853 0) (9.92596 6.85732 1.78647e-17) (10.7054 5.87906 -9.03078e-18) (7.33372 3.94427 -1.32513e-16) (5.87229 4.9073 3.63421e-16) (4.96516 5.15761 -2.4477e-16) (1.89543 0.809041 1.99204e-16) (3.16435 -0.21892 -2.7068e-16) (5.08348 -1.14589 1.83617e-16) (3.76994 -9.54487 0) (1.55805 -9.57275 -4.39459e-17) (-0.182537 -9.83275 1.27293e-16) (3.37764 -18.2993 -9.60541e-19) (5.06802 -17.302 4.64781e-17) (6.51307 -16.5449 -3.20349e-17) (11.7633 -20.983 -9.08897e-19) (11.1996 -21.8587 -1.27572e-18) (9.53146 -23.1744 0) (15.9096 -24.1423 1.86239e-16) (17.2604 -23.1243 3.93094e-20) (17.5541 -22.509 -8.2689e-17) (20.1237 -22.3607 0) (20.4355 -22.0426 -1.67542e-16) (18.8688 -22.8653 2.27816e-16) (21.6149 -22.0651 -7.37151e-18) (22.9934 -21.9984 0) (23.2174 -21.7826 -1.69998e-17) (24.597 -21.0029 -5.16996e-17) (24.6623 -20.5022 -5.7314e-18) (23.0064 -20.5892 0) (24.5441 -19.815 1.41746e-17) (26.0903 -20.2553 5.32879e-18) (26.2552 -20.3852 6.42932e-17) (27.318 -19.5625 9.2415e-17) (26.9809 -19.0733 1.37186e-16) (25.2242 -18.7433 -2.12188e-16) (25.0757 -17.0541 0) (27.2539 -18.1304 3.85031e-18) (27.5618 -19.1054 6.21241e-18) (28.718 -18.4723 1.58379e-17) (28.3623 -18.0472 1.00211e-17) (26.0563 -16.8608 -1.19341e-16) (25.4544 -16.0737 -2.6044e-16) (27.9892 -17.3334 7.73538e-17) (28.7109 -17.8794 -2.72453e-17) (29.5654 -17.7479 -2.37509e-17) (29.0942 -17.3605 5.18031e-18) (26.8951 -16.1713 1.03211e-17) (26.8073 -15.6344 -9.89977e-17) (29.2105 -16.73 1.31976e-16) (29.8855 -17.2396 -6.557e-17) (29.6872 -16.635 7.7192e-17) (28.7597 -16.1102 -1.07097e-16) (26.027 -14.9153 -8.40138e-18) (27.3589 -14.9129 -1.41816e-17) (29.804 -16.1862 -5.53717e-18) (30.3246 -16.6911 8.72185e-18) (30.4784 -16.3138 -8.94781e-17) (29.6811 -15.6971 0) (26.9885 -14.4633 -8.18392e-17) (26.043 -13.8841 4.18038e-18) (29.0205 -15.2397 -1.08407e-16) (30.1343 -15.7472 9.96446e-17) (30.7079 -15.9504 -8.69235e-18) (30.0939 -15.4692 0) (27.4313 -14.1029 -1.16906e-16) (27.0307 -13.7019 -9.32198e-17) (29.936 -15.0085 4.01628e-18) (30.8114 -15.6249 0) (30.3717 -15.0786 -1.09765e-16) (29.1423 -14.5884 1.99007e-16) (25.9359 -13.1247 -2.64583e-16) (27.1838 -13.6208 1.12614e-16) (30.0257 -15.0818 5.47521e-18) (30.8829 -15.4552 -1.2136e-16) (30.8177 -15.3171 7.14776e-17) (29.8038 -14.8691 -1.28349e-16) (26.8672 -13.3798 0) (25.8943 -12.7203 0) (29.119 -14.2242 -1.05466e-16) (30.3733 -14.8191 9.83017e-17) (30.8867 -15.2513 1.37935e-16) (29.9865 -14.8664 -1.73671e-16) (27.1757 -13.3941 0) (26.9314 -13.1958 2.28974e-21) (29.8151 -14.6992 -6.38332e-17) (30.8441 -15.1587 8.73251e-17) (30.4134 -14.6295 0) (29.1833 -14.0209 6.55551e-18) (25.9878 -12.5258 0) (27.0856 -13.0844 0) (29.9568 -14.6424 -5.38167e-18) (30.8626 -15.0562 -1.35796e-16) (30.7871 -15.0534 0) (29.7112 -14.6344 0) (26.7818 -13.0091 -2.83821e-18) (25.9307 -12.3935 1.14445e-22) (29.1137 -13.9424 5.16357e-17) (30.3605 -14.5146 -4.2809e-17) (30.8401 -14.9317 0) (29.994 -14.4896 -1.68886e-16) (27.1366 -12.9659 2.33687e-16) (26.8195 -12.8191 -8.31485e-18) (29.8031 -14.3629 0) (30.8235 -14.8881 -8.49376e-17) (30.3797 -14.33 1.0312e-17) (29.1207 -13.7278 -9.30591e-17) (25.8327 -12.2198 -3.86506e-18) (27.0523 -12.9763 1.0298e-16) (29.9201 -14.4782 -5.03302e-18) (30.8101 -14.8914 -2.62638e-16) (30.7661 -14.9313 0) (29.7547 -14.4275 0) (26.7416 -12.8542 0) (26.3426 -12.5311 0) (29.4705 -14.0629 0) (30.6819 -14.7089 0) (29.9631 -14.0699 0) (28.6263 -13.226 -1.17223e-16) (25.0671 -11.3876 1.41013e-16) (26.1743 -12.457 -2.35814e-16) (29.6627 -14.0605 1.87473e-16) (30.5322 -14.6637 -1.85706e-17) (30.5444 -14.9529 8.53773e-18) (29.3314 -14.2797 0) (25.7805 -12.4753 3.0251e-18) (24.5724 -12.2606 2.12475e-22) (28.3708 -13.9919 1.10245e-16) (30.0402 -14.2728 -8.65427e-17) (30.4887 -14.8893 -1.44773e-16) (29.4163 -14.5432 1.82995e-16) (26.1994 -12.753 1.09994e-17) (25.7963 -12.4691 -1.20811e-17) (29.2108 -14.192 1.32893e-16) (30.4403 -14.7616 -9.11253e-17) (29.7617 -14.3678 -5.80169e-18) (28.3725 -13.5492 6.99365e-18) (24.6213 -11.6091 4.32448e-18) (25.9905 -12.6949 1.10102e-17) (29.4525 -14.4246 -2.8939e-17) (30.3673 -14.9519 4.56786e-18) (30.3829 -15.1063 0) (29.2176 -14.4294 1.25131e-17) (25.6738 -12.6221 -1.21217e-17) (24.4656 -12.2913 0) (28.2688 -14.0186 1.17872e-16) (29.8788 -14.3956 -6.9404e-17) (30.3438 -15.1021 -1.27324e-16) (29.2954 -14.6606 2.28023e-17) (25.9826 -12.826 0) (25.5108 -12.7 1.92892e-16) (29.0656 -14.572 -1.53845e-16) (30.2767 -15.1233 -1.42877e-17) (29.7697 -14.5317 5.81495e-18) (28.0823 -14.2321 1.18344e-16) (24.2833 -12.4809 -1.4306e-16) (25.9854 -13.0099 3.68128e-18) (29.2725 -14.8141 -2.29599e-17) (30.3481 -15.2545 -1.82596e-17) (30.3031 -15.2739 -7.97699e-17) (29.0746 -14.6345 -1.17507e-16) (25.6339 -12.815 1.89473e-16) (24.5853 -12.0053 1.46845e-16) (28.2308 -13.9527 0) (29.6704 -14.8284 0) (30.2567 -15.3863 1.63135e-16) (29.2481 -14.8421 0) (25.8492 -13.0293 1.13898e-16) (25.5111 -13.0093 -1.94319e-16) (28.8845 -14.9112 1.31242e-16) (30.1745 -15.6086 -1.15029e-17) (29.5876 -15.1843 2.93427e-17) (28.183 -14.2888 -1.13711e-16) (24.6045 -12.2408 2.80306e-16) (25.8929 -13.3215 0) (29.2887 -15.1196 1.95555e-16) (30.2462 -15.6493 -2.30116e-16) (30.2936 -15.7707 0) (29.0414 -14.9919 -1.38447e-16) (25.6577 -13.1548 2.988e-16) (24.5699 -12.1184 4.59941e-18) (28.2235 -14.2326 0) (29.5926 -15.1825 0) (30.1857 -15.739 -2.03086e-17) (29.1444 -15.2439 0) (25.5394 -13.3374 0) (24.886 -13.0754 1.17929e-16) (28.4707 -15.0568 0) (29.8119 -15.7471 8.61812e-17) (30.4988 -16.2297 1.2123e-16) (29.5883 -15.8065 -1.77884e-16) (26.5005 -14.0359 0) (26.2967 -13.9297 -8.8217e-17) (29.4216 -15.6478 1.90831e-17) (30.5081 -16.2478 -8.92024e-17) (30.0097 -15.7381 9.45881e-17) (28.6481 -15.1363 -2.10546e-16) (25.3466 -13.4117 1.27926e-16) (26.5955 -14.1072 0) (29.6314 -15.8204 1.48212e-16) (30.5578 -16.3099 -1.00436e-16) (30.4672 -16.3882 -1.62688e-17) (29.3523 -15.7221 -1.09675e-16) (26.1692 -13.9521 9.29507e-17) (25.1099 -13.5992 -1.28519e-16) (28.4892 -15.4443 0) (29.928 -16.0386 -1.06967e-17) (30.5728 -16.686 -1.35892e-16) (29.5797 -16.2788 -1.72315e-16) (26.5448 -14.501 1.06149e-16) (26.3115 -14.4564 0) (29.4104 -16.3193 0) (30.5593 -16.8495 5.46663e-18) (30.0645 -16.351 -2.18254e-17) (28.7033 -15.7461 -9.90772e-17) (25.4225 -13.9035 1.30768e-16) (26.712 -14.6224 -1.12772e-16) (29.7445 -16.4088 -5.48877e-18) (30.6136 -16.9059 8.68457e-18) (30.6043 -16.9005 -5.60121e-18) (29.5338 -16.1801 4.07131e-18) (26.2938 -14.3874 -2.91851e-18) (25.0712 -13.9481 1.38391e-16) (28.5179 -15.8501 -6.79509e-18) (30.0092 -16.4554 -7.87458e-17) (30.5327 -17.1575 1.79518e-17) (29.5335 -16.7431 0) (26.4345 -14.9489 -1.16873e-16) (26.3276 -14.8396 -3.05641e-18) (29.4498 -16.6332 -4.22395e-18) (30.6205 -17.3353 -1.15354e-17) (30.0536 -16.9094 4.81075e-17) (28.8188 -15.9001 1.19345e-16) (25.4622 -13.799 -1.40004e-16) (26.3696 -14.9683 0) (29.7604 -16.9231 1.58447e-17) (30.6896 -17.4031 -1.01872e-16) (30.307 -17.1909 1.74206e-17) (29.0812 -16.5163 -1.13083e-17) (25.6804 -14.5573 -7.42175e-18) (26.8203 -15.2471 -6.59929e-18) (29.942 -17.2007 -1.60189e-16) (30.8398 -17.7104 7.44253e-21) (30.6969 -17.8573 5.37317e-18) (29.565 -17.2608 1.29105e-16) (26.3871 -15.2335 -1.69786e-16) (25.5427 -14.8585 1.36773e-16) (28.8291 -16.8655 -6.70604e-18) (30.2111 -17.4821 -1.4282e-16) (30.861 -18.0604 0) (29.9755 -17.6082 -2.02043e-16) (26.9256 -15.7414 2.26897e-16) (26.6831 -15.5874 -2.89482e-16) (29.8038 -17.4769 1.46337e-16) (30.9161 -18.1308 -9.18248e-17) (30.3236 -17.7138 5.9062e-18) (29.0802 -16.7944 -2.67223e-22) (25.7764 -14.6832 0) (26.7295 -15.7832 -2.38285e-16) (30.0271 -17.7746 2.04929e-16) (30.9409 -18.2184 7.43265e-17) (30.5781 -17.9312 0) (29.3701 -17.2659 -5.52333e-18) (26.0282 -15.277 -1.31348e-16) (27.1352 -16.195 -9.04697e-17) (30.1304 -18.1246 1.41366e-16) (31.0784 -18.5709 1.49678e-16) (31.0168 -18.8008 -1.58298e-17) (29.9204 -18.2288 1.38818e-16) (26.9427 -16.2553 -1.90212e-16) (26.1833 -15.7803 -4.10958e-18) (29.3092 -17.7306 1.05292e-16) (30.6202 -18.3698 -1.40337e-16) (31.1926 -18.9281 6.99819e-17) (30.2874 -18.4907 0) (27.3598 -16.6213 3.56213e-18) (27.115 -16.4835 -1.89325e-16) (30.079 -18.3832 2.65214e-16) (31.1897 -19.0266 -8.52762e-17) (30.6376 -18.6331 -6.46223e-17) (29.4561 -17.6763 -1.13907e-16) (26.269 -15.5398 -8.85115e-18) (27.1236 -16.5617 -2.36061e-16) (30.3802 -18.6061 2.00645e-16) (31.2497 -19.1029 2.50159e-17) (30.8601 -18.8148 -8.61769e-17) (29.6557 -18.0978 0) (26.3475 -16.0286 -1.47081e-17) (27.4015 -17.0538 2.23742e-16) (30.3499 -19.0365 -1.59861e-16) (31.282 -19.4586 3.06334e-17) (31.274 -19.6745 -1.13366e-16) (30.2141 -19.0833 1.25669e-16) (27.2636 -17.0808 -1.8868e-16) (26.476 -16.5641 -8.39988e-18) (29.6243 -18.5779 0) (30.8942 -19.2272 -3.33148e-17) (31.4768 -19.8075 1.78148e-17) (30.645 -19.3231 0) (27.6939 -17.3763 -1.30612e-16) (27.2911 -17.2109 3.0688e-16) (30.4638 -19.2454 -1.36118e-16) (31.4873 -19.8874 -1.1675e-17) (31.0778 -19.1903 0) (29.4332 -18.9334 0) (26.0451 -17.0555 4.54942e-18) (27.5569 -17.347 1.22813e-17) (30.6212 -19.5145 2.04087e-16) (31.5249 -20.0244 -1.62804e-16) (31.1901 -19.5272 0) (30.0356 -18.8921 5.71456e-18) (26.6672 -16.745 -1.50539e-17) (27.7289 -17.7618 -2.14733e-16) (30.7366 -19.8058 1.57933e-16) (31.6378 -20.2714 -9.34269e-17) (31.6335 -20.5043 -1.66084e-17) (30.5277 -19.8466 1.24768e-16) (27.581 -17.8134 -1.87598e-16) (26.7855 -17.016 0) (29.9216 -19.2147 5.94976e-23) (31.1278 -20.0914 3.53906e-17) (31.7691 -20.6453 -8.0579e-17) (30.8698 -20.2045 -1.95901e-16) (27.6797 -18.1117 2.43237e-16) (27.1296 -17.7172 1.12968e-17) (30.3323 -19.8157 -9.0914e-17) (31.4841 -20.5061 6.12246e-17) (32.129 -20.9805 3.8754e-17) (31.3217 -20.4885 1.62299e-16) (28.4321 -18.5064 3.37045e-18) (28.0631 -18.2708 0) (31.0647 -20.2986 0) (32.0389 -20.9727 6.04504e-17) (31.5309 -20.3753 -1.26866e-16) (30.1311 -19.7863 1.11863e-16) (26.9596 -17.8304 2.79055e-16) (27.9861 -18.402 -2.55665e-16) (31.0526 -20.5679 -1.24603e-17) (31.9677 -21.1231 0) (31.5954 -21.0052 0) (30.3907 -20.3376 1.12677e-17) (27.2258 -18.1286 0) (28.6418 -19.1548 4.28828e-16) (31.4604 -21.1103 -1.61725e-16) (32.2714 -21.5748 9.28898e-17) (32.2894 -21.6473 -6.60311e-17) (31.3419 -20.936 0) (28.399 -18.9814 1.80148e-16) (27.2858 -18.6625 4.32583e-16) (30.4167 -20.5379 -2.26685e-16) (31.8668 -21.0561 9.35842e-17) (32.3652 -21.8024 0) (31.5053 -21.2695 -1.26225e-17) (28.5355 -19.1924 0) (27.8641 -18.7339 0) (31.0147 -20.8358 1.14213e-17) (32.1113 -21.5429 7.03363e-17) (32.6815 -22.0697 3.11621e-17) (31.836 -21.5884 5.24623e-21) (28.9862 -19.5518 -2.15488e-16) (28.6649 -19.3733 -1.84624e-16) (31.4817 -21.4314 2.62845e-16) (32.5422 -22.085 -2.76533e-17) (31.9224 -21.6317 -3.48352e-17) (30.7705 -20.6898 -7.10261e-18) (27.7148 -18.4303 -4.40295e-18) (28.4066 -19.7268 0) (31.497 -21.9093 0) (32.3942 -22.2998 0) (32.1619 -22.2099 0) (31.0713 -21.528 0) (27.9819 -19.3696 0) (29.2177 -20.2733 0) (32.0722 -22.3102 -1.6481e-16) (32.8399 -22.759 -3.1544e-17) (32.8484 -22.8172 1.17786e-16) (31.9448 -22.1537 -2.31567e-21) (28.9152 -20.0711 -1.91713e-16) (27.6898 -19.9108 -1.40112e-16) (30.9054 -21.8089 1.98907e-20) (32.4871 -22.1218 1.32014e-16) (32.858 -23.0154 -8.30907e-17) (32.1006 -22.3959 -9.2394e-17) (29.1718 -20.0664 2.54775e-16) (28.2968 -19.7031 -1.18701e-16) (31.5204 -21.9339 -6.03284e-18) (32.6322 -22.5772 3.95813e-21) (33.2136 -23.1336 0) (32.4203 -22.6084 1.76533e-16) (29.4108 -20.4307 -4.93813e-16) (28.6815 -19.896 1.26029e-16) (31.747 -22.0683 8.62397e-17) (32.8362 -22.7925 0) (33.1946 -23.4348 -1.05372e-20) (32.3475 -22.988 -7.86633e-21) (29.5584 -20.8811 2.07152e-16) (29.3949 -20.8728 0) (32.1764 -22.9933 0) (33.1577 -23.6567 0) (32.7712 -23.2061 -9.22324e-17) (31.4763 -22.551 1.11956e-16) (28.5278 -20.4429 2.86557e-16) (29.6157 -21.1778 -2.01994e-17) (32.5331 -23.3484 1.00877e-16) (33.3694 -23.8438 -9.99422e-17) (33.101 -23.64 8.82306e-17) (32.0228 -22.9435 -9.221e-17) (28.9821 -20.7602 2.55972e-16) (30.1311 -21.5441 -4.36851e-16) (32.952 -23.6469 1.87644e-16) (33.7036 -24.1445 0) (33.639 -24.1619 -5.63891e-18) (32.7126 -23.4838 -1.48686e-16) (29.719 -21.319 3.8428e-16) (28.4654 -21.1851 0) (31.6514 -23.157 -1.16981e-16) (33.2637 -23.4597 1.08803e-16) (33.6179 -24.341 0) (32.8916 -23.6669 -1.31647e-17) (29.961 -21.2156 0) (28.9196 -20.739 0) (32.2181 -23.1369 1.08401e-16) (33.3357 -23.8238 -6.50745e-17) (33.7568 -24.5321 -1.49498e-16) (32.8925 -24.0628 1.81794e-16) (29.8152 -21.698 0) (29.2953 -21.4429 0) (32.3677 -23.7706 0) (33.4681 -24.4399 0) (34.1153 -24.9744 0) (33.3331 -24.5338 1.98687e-17) (30.5551 -22.4142 0) (30.3588 -22.292 0) (33.1268 -24.3975 1.12405e-16) (34.1272 -25.0691 -8.2581e-17) (33.6292 -24.7088 -1.16958e-17) (32.5345 -23.7491 1.14115e-16) (29.631 -21.4466 -4.27152e-16) (30.3888 -22.4062 0) (33.4776 -24.675 0) (34.2899 -25.1584 0) (33.9488 -24.9131 -7.31582e-17) (32.8595 -24.1478 0) (29.747 -21.8583 0) (30.7695 -22.7349 -1.48398e-17) (33.7421 -25.0016 -3.62779e-16) (34.5201 -25.4764 7.94422e-21) (34.2497 -25.1557 -6.53667e-17) (33.2399 -24.4523 8.03527e-17) (30.2403 -22.2614 2.12027e-17) (31.1707 -22.9899 -6.56076e-18) (33.9517 -25.143 4.99022e-18) (34.7157 -25.6634 0) (34.5578 -25.7208 0) (33.6244 -24.9791 -1.28203e-16) (30.756 -22.7643 3.70581e-16) (29.5824 -22.5255 4.30425e-16) (32.6402 -24.6815 -1.14418e-16) (34.0849 -25.2362 0) (34.5786 -26.0525 -8.15829e-17) (33.7579 -25.5337 -2.19411e-16) (30.8328 -23.1911 2.59898e-16) (30.1945 -22.7887 0) (33.2882 -25.1051 1.07973e-16) (34.356 -25.8299 -8.28043e-17) (34.9814 -26.3773 -8.68343e-18) (34.2276 -25.9159 -1.81852e-16) (31.2952 -23.6539 2.37876e-16) (30.773 -23.2238 -1.13234e-16) (33.7313 -25.4404 8.61629e-17) (34.7348 -26.1364 -4.90396e-17) (35.3017 -26.6273 5.00865e-21) (34.5645 -26.1616 -1.58109e-16) (31.8551 -24.0564 2.08518e-16) (31.6387 -23.8998 -1.84123e-16) (34.3379 -25.9836 2.5203e-16) (35.2856 -26.6727 -8.73443e-17) (34.8241 -26.2381 0) (33.7321 -25.3205 -1.062e-16) (30.8692 -23.0648 1.40204e-16) (31.5634 -23.9373 0) (34.5721 -26.2284 1.0273e-16) (35.3794 -26.7365 -1.62068e-16) (35.0113 -26.4391 9.07679e-18) (33.93 -25.6421 0) (30.8903 -23.3351 0) (31.6855 -24.2016 -2.37564e-16) (34.6443 -26.5722 1.82348e-16) (35.4625 -27.0702 -1.29996e-16) (35.1613 -26.9124 -8.16606e-17) (34.0878 -26.1976 0) (31.1375 -23.8656 2.25216e-16) (32.2106 -24.8389 0) (34.9242 -27.0192 -1.81192e-16) (35.7207 -27.4536 6.10948e-21) (35.7119 -27.5625 8.86455e-17) (34.6901 -26.8793 1.21119e-17) (32.0405 -24.734 1.87886e-16) (31.3941 -23.6403 1.45762e-16) (34.2542 -26.1337 -1.09226e-16) (35.2111 -27.2327 0) (35.8816 -27.6604 -8.27468e-17) (35.0177 -27.2977 1.04215e-16) (31.8529 -24.9311 -8.43726e-18) (31.4432 -24.2233 1.20199e-17) (34.5632 -26.6196 9.72855e-17) (35.5845 -27.4342 -1.49122e-16) (36.1351 -27.9558 5.29301e-17) (35.4307 -27.4772 1.84946e-16) (32.412 -25.0696 1.13526e-17) (31.8524 -24.5841 -1.45158e-17) (34.8986 -26.9293 -5.4585e-18) (35.8846 -27.6541 1.666e-17) (36.4075 -28.1451 5.72933e-21) (35.6625 -27.6667 -1.76488e-16) (32.9011 -25.4466 0) (32.6468 -25.2541 0) (35.3509 -27.4264 -1.14239e-16) (36.3481 -28.145 8.90705e-17) (35.7438 -27.765 -4.7626e-17) (34.7712 -26.5796 1.15919e-16) (31.8886 -24.037 -1.44775e-16) (32.1799 -25.4933 -8.41565e-18) (35.322 -27.9246 -9.18303e-17) (36.2643 -28.3161 6.22245e-17) (35.9365 -28.227 1.87775e-17) (34.8135 -27.4012 -6.10172e-18) (31.7973 -24.9745 8.05003e-18) (32.9129 -25.9467 0) (35.8535 -28.3349 -5.8588e-18) (36.6294 -28.8237 1.8025e-17) (36.3535 -28.5867 -8.66424e-17) (35.3173 -27.851 0) (32.3756 -25.5369 -3.69518e-18) (33.385 -26.3341 -2.30614e-16) (36.2487 -28.6215 2.21692e-17) (36.9816 -29.0941 -6.81361e-17) (36.7232 -28.8409 -6.45897e-17) (35.7547 -28.1365 6.34305e-17) (32.8729 -25.8901 2.21794e-16) (33.8808 -26.6999 -2.09243e-16) (36.5371 -28.8564 1.59461e-16) (37.2569 -29.3342 -1.19574e-16) (37.1878 -29.3852 -8.8217e-17) (36.3343 -28.6967 0) (33.5832 -26.4957 0) (32.4478 -26.2683 1.48785e-16) (35.3833 -28.2724 -1.23433e-16) (36.8692 -28.7067 0) (37.2081 -29.5496 0) (36.5121 -28.8816 -1.89388e-16) (33.7131 -26.3667 2.57839e-16) (32.796 -25.9245 -1.21137e-16) (35.935 -28.4133 8.50991e-17) (36.9754 -29.1546 7.46017e-17) (37.5107 -29.7242 7.16043e-17) (36.7351 -29.1649 0) (33.6817 -26.6552 1.54989e-17) (32.9613 -26.267 -1.8666e-17) (35.9996 -28.7625 0) (37.1124 -29.5242 6.06072e-17) (37.6907 -30.1005 2.54919e-17) (36.9112 -29.6239 0) (34.047 -27.249 3.67168e-18) (33.5589 -26.8915 2.22547e-16) (36.415 -29.2109 -1.70158e-16) (37.4351 -29.9316 -8.04791e-17) (38.0206 -30.4374 -1.19203e-16) (37.2844 -30.0003 1.5833e-16) (34.6314 -27.8184 -2.11134e-16) (34.465 -27.6559 -1.91777e-16) (37.0848 -29.7945 1.28608e-16) (38.0381 -30.4997 0) (37.5358 -30.1799 9.36421e-17) (36.5792 -29.0728 -9.4415e-21) (33.8069 -26.6061 -1.34735e-16) (34.293 -27.7948 0) (37.3684 -30.1867 1.30405e-17) (38.1986 -30.6049 0) (37.9109 -30.3705 2.18783e-22) (36.8655 -29.5413 8.50138e-17) (33.8334 -27.1405 0) (34.8055 -27.9304 0) (37.7811 -30.38 0) (38.5156 -30.9079 7.09369e-17) (38.1981 -30.6009 6.81912e-17) (37.1796 -29.8369 0) (34.1985 -27.443 -2.35393e-16) (35.1496 -28.2719 0) (38.0081 -30.6314 1.77327e-16) (38.7368 -31.1223 -1.34157e-16) (38.4531 -30.8237 0) (37.4675 -30.0657 1.6846e-16) (34.607 -27.7717 -2.13451e-16) (35.4369 -28.646 -2.03107e-16) (38.1064 -30.8974 3.14018e-16) (38.8779 -31.3781 -2.38664e-16) (38.8115 -31.5146 -3.83168e-21) (37.8194 -30.7967 1.28475e-16) (35.231 -28.5641 -1.73689e-17) (34.6316 -27.5273 1.35076e-17) (37.3533 -30.09 -1.16474e-16) (38.3017 -31.2341 1.00128e-16) (39.0125 -31.6655 5.67846e-17) (38.102 -31.3073 0) (34.9928 -28.896 -4.225e-18) (34.6287 -28.2005 2.57968e-16) (37.6337 -30.6522 0) (38.7012 -31.5073 1.877e-17) (39.3171 -32.0634 0) (38.5733 -31.5798 0) (35.5953 -29.0949 -1.55854e-17) (35.0671 -28.5632 1.51123e-17) (38.0686 -30.9578 9.13132e-17) (39.0654 -31.738 -6.97259e-17) (39.6222 -32.2349 -1.3709e-16) (38.9009 -31.7359 1.79843e-16) (36.0095 -29.3572 -1.48427e-17) (35.4694 -28.8763 -2.10863e-16) (38.3785 -31.2112 1.70789e-16) (39.3646 -31.9686 0) (39.8883 -32.4866 -1.2123e-16) (39.1444 -32.0025 0) (36.4875 -29.7793 1.3299e-17) (36.2079 -29.5337 3.6391e-16) (39.0033 -31.804 -1.34398e-16) (39.8525 -32.5176 -8.32124e-17) (39.5423 -31.7943 -1.48035e-16) (37.9594 -31.4414 2.41018e-16) (34.9374 -29.3787 1.50049e-16) (36.3604 -29.3177 2.57188e-16) (39.1426 -31.9935 -1.05759e-16) (39.8055 -32.7141 7.76764e-17) (39.5634 -32.3832 0) (38.5054 -31.6292 -6.14976e-18) (35.3384 -28.9541 8.05732e-18) (36.3896 -29.9918 0) (39.4171 -32.5407 1.78131e-17) (40.2133 -33.0179 0) (39.9246 -32.7878 -8.76619e-18) (38.8603 -32.0117 -1.94754e-16) (35.8714 -29.5687 2.41755e-16) (36.8858 -30.402 1.51621e-17) (39.8259 -32.8351 -1.81816e-16) (40.5812 -33.3334 2.16471e-16) (40.2896 -33.0576 -7.60799e-17) (39.2831 -32.2946 -1.76261e-16) (36.3404 -29.9193 -1.81874e-17) (37.2707 -30.7005 -2.14493e-16) (40.1217 -33.0788 1.76037e-16) (40.8536 -33.5846 8.42703e-18) (40.5741 -33.3837 6.45452e-17) (39.5881 -32.6434 1.68719e-16) (36.7561 -30.3089 -2.34925e-16) (37.738 -31.1427 0) (40.4075 -33.3942 1.99933e-17) (41.126 -33.8643 3.01031e-17) (41.1174 -33.9185 2.76632e-17) (40.1247 -33.1796 -1.62451e-17) (37.5343 -30.9888 1.82387e-16) (37.0011 -29.6432 1.56536e-16) (39.7637 -32.3131 -2.33225e-16) (40.5907 -33.6254 8.39347e-17) (41.3498 -33.963 0) (40.347 -33.662 0) (37.1083 -31.2535 2.67598e-16) (36.881 -30.339 8.17734e-18) (39.9054 -32.8153 0) (40.9833 -33.7349 0) (41.5034 -34.2886 0) (40.7592 -33.731 -1.9098e-16) (37.7215 -31.124 2.65963e-16) (37.0512 -30.6373 -1.51845e-17) (40.0881 -33.1864 1.83678e-16) (41.1556 -34.0121 0) (41.7485 -34.6127 -8.67763e-17) (40.95 -34.128 0) (38.02 -31.6331 1.511e-17) (37.543 -31.1965 -2.46906e-16) (40.4539 -33.6023 1.77124e-16) (41.4862 -34.3821 1.68634e-17) (42.0861 -34.9281 1.34126e-16) (41.3284 -34.4438 -1.75688e-16) (38.4787 -32.0454 -1.45693e-17) (38.0107 -31.6424 6.92778e-18) (40.8589 -33.994 -8.35329e-17) (41.8467 -34.7412 -1.20301e-16) (42.4548 -35.2415 -3.71165e-17) (41.7289 -34.7794 -1.76422e-16) (39.0927 -32.5648 2.17492e-16) (38.9184 -32.3429 0) (41.5542 -34.5179 2.39612e-17) (42.4819 -35.2719 1.65133e-17) (41.9702 -34.9435 1.51958e-16) (40.979 -33.8567 -1.28423e-16) (38.1918 -31.3547 4.47042e-18) (38.7642 -32.5164 -2.62776e-16) (41.8061 -34.9567 0) (42.6367 -35.412 0) (42.3193 -35.1995 6.50041e-17) (41.2433 -34.3517 -9.10792e-17) (38.2761 -31.9153 -7.99745e-18) (39.3057 -32.7503 -2.48348e-16) (42.2521 -35.2329 -5.8367e-18) (42.9954 -35.7572 2.2203e-16) (42.709 -35.4662 6.0167e-17) (41.6906 -34.6673 5.66412e-18) (38.7318 -32.2395 2.40237e-16) (39.6636 -32.9983 0) (42.5725 -35.4499 1.73729e-16) (43.3088 -35.9801 -1.45068e-16) (42.97 -35.7003 8.30774e-17) (41.9445 -34.9108 1.74241e-16) (39.0592 -32.5156 -4.64156e-16) (39.9412 -33.3881 -1.08495e-17) (42.743 -35.7724 1.74175e-16) (43.5083 -36.2613 -1.32793e-16) (43.2528 -36.0891 1.27777e-16) (42.2785 -35.3476 -2.55201e-16) (39.4772 -33.0042 1.37016e-17) (40.4528 -33.8669 -6.66882e-22) (43.1051 -36.1274 1.63136e-16) (43.8263 -36.5883 0) (43.8272 -36.6753 1.7609e-16) (42.8407 -35.9472 -1.29592e-16) (40.2778 -33.7365 0) (39.7857 -32.4227 1.4451e-16) (42.5133 -35.0874 1.59826e-20) (43.3376 -36.3774 -9.43437e-17) (44.0579 -36.7549 1.65257e-16) (43.0946 -36.4318 -3.15135e-16) (39.8667 -33.9384 2.62224e-16) (39.6018 -33.1794 8.09657e-18) (42.6201 -35.711 -9.83047e-17) (43.7145 -36.6054 7.53076e-17) (44.3642 -37.149 -1.63274e-16) (43.6248 -36.6342 1.8866e-16) (40.5697 -34.0193 0) (39.9797 -33.4465 -2.44481e-16) (43.0868 -36.0028 1.77471e-16) (44.0977 -36.8213 8.7411e-18) (44.7016 -37.3735 1.46666e-16) (43.9464 -36.8894 5.7029e-18) (40.9352 -34.3607 -4.84749e-16) (40.4512 -33.8422 0) (43.457 -36.2755 8.8348e-17) (44.4494 -37.068 -5.92365e-17) (45.0024 -37.5972 1.25598e-16) (44.2682 -37.0827 -2.20118e-17) (41.3661 -34.6366 -2.45528e-16) (40.8593 -34.2415 1.37432e-17) (43.7327 -36.6388 1.88618e-16) (44.725 -37.4041 -7.9618e-18) (45.3308 -37.9069 -5.16902e-17) (44.61 -37.4329 -1.57665e-16) (41.9346 -35.1582 2.09123e-16) (41.724 -34.9947 0) (44.3586 -37.2431 0) (45.3309 -37.9963 5.47759e-18) (44.8477 -37.6652 -1.75392e-17) (43.8907 -36.4952 1.14304e-16) (41.1091 -33.9005 -1.39183e-16) (41.5198 -35.1955 4.19241e-18) (44.6427 -37.7254 1.28892e-17) (45.5227 -38.1517 5.11702e-18) (45.2321 -37.9741 -7.4138e-17) (44.1475 -37.1221 9.11952e-17) (41.1023 -34.5936 -8.05278e-18) (42.1742 -35.4341 0) (45.2166 -38.0062 -1.92557e-16) (45.9566 -38.5294 2.13631e-16) (45.6671 -38.2421 0) (44.6403 -37.4229 -1.80152e-16) (41.5712 -34.8872 2.40478e-16) (42.5352 -35.8196 -2.24676e-16) (45.5096 -38.3325 1.68087e-16) (46.2828 -38.8083 0) (46.0289 -38.532 8.37621e-18) (45.0316 -37.7474 1.09282e-17) (42.0729 -35.3293 -1.44484e-17) (42.9849 -36.1348 0) (45.876 -38.5709 1.75134e-16) (46.626 -39.0696 -7.47693e-17) (46.3663 -38.8723 -5.58641e-17) (45.3775 -38.1021 7.8648e-17) (42.502 -35.7122 0) (43.5282 -36.613 0) (46.2316 -38.9016 4.97901e-18) (46.9577 -39.3652 -7.49522e-18) (46.9701 -39.4254 8.84638e-17) (45.9562 -38.6615 -1.33361e-16) (43.3357 -36.4328 0) (42.8496 -34.988 2.93659e-16) (45.6583 -37.7922 7.30473e-18) (46.438 -39.1819 0) (47.2781 -39.5168 0) (46.2291 -39.2592 0) (42.8483 -36.7819 2.8255e-16) (42.7084 -35.9199 -8.19578e-18) (45.7646 -38.4506 -9.27144e-17) (46.9037 -39.373 9.45723e-18) (47.5599 -39.9166 1.53951e-16) (46.8053 -39.3676 -1.96597e-16) (43.7221 -36.7158 -2.52766e-16) (43.0843 -36.2022 2.44186e-16) (46.1962 -38.8126 -2.77888e-16) (47.2513 -39.6461 5.27774e-17) (47.9357 -40.2011 -5.24616e-17) (47.162 -39.6976 -1.84197e-16) (44.0809 -37.092 2.59089e-16) (43.558 -36.6144 -1.10501e-17) (46.6166 -39.1377 -5.57481e-18) (47.6581 -39.9472 -1.70393e-17) (48.3092 -40.4771 -2.21689e-16) (47.5528 -39.9559 3.76219e-16) (44.5463 -37.4215 -3.71745e-18) (43.9994 -36.9904 -2.24906e-16) (46.9659 -39.462 1.67624e-16) (48.0047 -40.2586 7.43624e-17) (48.6745 -40.7878 -4.10297e-17) (47.9176 -40.3025 -5.40563e-18) (45.0331 -37.8742 1.08016e-17) (44.577 -37.456 -2.31661e-16) (47.4541 -39.8354 8.20819e-17) (48.4434 -40.6002 4.71468e-17) (49.0732 -41.1071 2.90437e-17) (48.3278 -40.6307 0) (45.6748 -38.3904 -2.19568e-16) (45.473 -38.1689 -3.53108e-16) (48.1954 -40.4661 1.26098e-16) (49.0894 -41.2306 -1.08034e-16) (48.7668 -40.6994 -3.99587e-17) (47.5136 -39.9239 0) (44.5928 -37.6132 -4.42286e-18) (45.6024 -38.2844 2.67708e-16) (48.539 -40.8293 -3.06219e-16) (49.3337 -41.3904 7.49761e-17) (49.0763 -41.1771 -9.13205e-18) (48.0177 -40.3517 0) (44.9505 -37.8055 0) (46.0779 -38.7074 0) (49.088 -41.237 -1.84312e-16) (49.8275 -41.7419 6.13567e-17) (49.5755 -41.4591 1.52676e-16) (48.5509 -40.6654 -8.92108e-17) (45.5349 -38.2198 3.67851e-18) (46.5478 -39.0357 2.16057e-16) (49.499 -41.4865 -1.77785e-16) (50.2513 -41.9921 1.51466e-16) (49.9692 -41.7655 -8.20541e-18) (48.9478 -40.9741 5.36105e-18) (46.042 -38.6002 2.47752e-16) (47.0397 -39.3886 4.61776e-16) (49.8872 -41.7614 -1.54243e-16) (50.6279 -42.2668 -2.45078e-17) (50.3678 -42.0854 7.79255e-17) (49.3879 -41.332 -2.65166e-16) (46.5449 -38.982 4.17824e-16) (47.5987 -39.8525 1.28199e-17) (50.2805 -42.1067 0) (51.0009 -42.5737 5.78179e-17) (51.0146 -42.664 -8.63901e-17) (50.0514 -41.9074 0) (47.3571 -39.6461 -1.14172e-17) (46.7111 -38.6929 -1.4217e-16) (49.5495 -41.2534 1.13272e-16) (50.5662 -42.3382 -5.17442e-17) (51.3006 -42.7972 1.06096e-16) (50.439 -42.3603 -3.09874e-16) (47.2962 -39.8497 2.6491e-16) (46.8052 -39.1756 -3.9559e-18) (49.887 -41.7097 0) (50.985 -42.578 -2.76633e-17) (51.6618 -43.1696 8.84539e-18) (50.8723 -42.6874 -1.16073e-17) (47.7971 -40.0992 2.35252e-16) (47.2995 -39.5758 1.4947e-17) (50.3907 -42.0959 1.69642e-17) (51.4179 -42.9136 8.58338e-18) (52.0832 -43.455 -2.55951e-17) (51.321 -42.9679 -5.62576e-18) (48.281 -40.4384 2.36918e-16) (47.7803 -40.0335 3.58244e-18) (50.7775 -42.4904 9.25883e-17) (51.8126 -43.2755 -1.16132e-16) (52.5515 -43.7958 1.314e-16) (51.8067 -43.3297 -1.78674e-16) (48.8706 -40.9104 -3.58688e-18) (48.4374 -40.5162 -2.18587e-16) (51.3694 -42.8935 -8.26945e-17) (52.3477 -43.6417 6.29558e-17) (53.0517 -44.0783 8.70986e-17) (52.3665 -43.5921 -3.10877e-16) (49.647 -41.3534 5.19933e-21) (49.3397 -41.03 1.7631e-16) (52.2031 -43.354 0) (53.0716 -44.1442 2.16397e-17) (52.7336 -43.61 4.00928e-17) (51.3957 -42.8809 -6.98848e-18) (48.3564 -40.5971 1.5072e-16) (49.5644 -41.1444 0) (52.5562 -43.7011 1.91097e-17) (53.3566 -44.3089 -1.49516e-17) (53.0731 -44.076 1.64189e-16) (51.9854 -43.2148 -1.07768e-16) (48.8381 -40.6336 0) (49.9639 -41.5551 0) (53.0568 -44.1303 0) (53.8335 -44.6582 1.74731e-17) (53.5505 -44.4018 -8.46069e-17) (52.4754 -43.5771 2.67178e-16) (49.3876 -41.0789 -2.30759e-16) (50.4372 -42.0265 4.6542e-16) (53.4548 -44.5079 -4.80771e-21) (54.261 -44.9839 -1.34662e-16) (54.0101 -44.7834 -1.38902e-16) (52.978 -43.9882 2.56805e-16) (49.9896 -41.5819 -2.25552e-16) (51.0056 -42.4377 0) (53.9335 -44.8419 2.12971e-17) (54.7043 -45.3216 8.09068e-18) (54.461 -45.1953 0) (53.4509 -44.4306 -2.035e-17) (50.5237 -42.0423 2.14474e-16) (51.6719 -43.0185 1.27745e-17) (54.4172 -45.2731 0) (55.1726 -45.7108 5.75065e-17) (55.2569 -45.8699 5.37941e-18) (54.2828 -45.1111 0) (51.4983 -42.8327 -1.1356e-17) (50.8543 -41.9867 -1.41259e-16) (53.7794 -44.4994 -1.12586e-16) (54.886 -45.5232 -1.14634e-17) (55.6815 -46.0232 6.02283e-17) (54.7921 -45.6168 -1.01978e-16) (51.6361 -43.1367 -2.64972e-16) (51.2507 -42.4618 2.54097e-16) (54.3917 -44.9205 -1.85836e-16) (55.4634 -45.7769 9.15264e-18) (56.2402 -46.2763 8.7516e-18) (55.4861 -45.7348 -5.77796e-18) (52.3446 -43.2007 1.52972e-17) (51.7347 -42.6389 -1.4805e-17) (54.8806 -45.1367 -8.95486e-17) (55.9466 -45.9905 5.95404e-17) (56.6266 -46.5042 8.46033e-18) (55.8407 -45.9813 0) (52.7589 -43.4685 0) (52.1904 -43.029 2.26737e-16) (55.2507 -45.5037 -8.60769e-17) (56.3215 -46.3145 -5.72875e-17) (57.0718 -46.8472 8.10645e-18) (56.2877 -46.3763 -1.7143e-16) (53.3029 -43.951 4.5457e-16) (52.8188 -43.493 2.14716e-16) (55.8313 -45.907 -2.49554e-16) (56.8464 -46.6845 4.64541e-17) (57.5354 -47.2029 2.85552e-17) (56.7689 -46.7582 -1.48139e-16) (53.9505 -44.4575 2.03234e-16) (53.7569 -44.2719 1.7986e-16) (56.6274 -46.6243 -7.78233e-18) (57.6108 -47.3851 5.8668e-17) (57.259 -47.0011 9.55015e-17) (56.1025 -46.0181 -9.66713e-17) (53.1105 -43.4986 2.77002e-16) (53.9262 -44.5694 8.06577e-18) (57.0951 -47.1201 1.24886e-17) (58.0034 -47.5751 4.90402e-18) (57.7202 -47.4281 1.01857e-21) (56.6 -46.5692 -1.05279e-16) (53.4333 -44.0117 -2.55262e-16) (54.6114 -45.0276 -4.77381e-16) (57.739 -47.555 1.79431e-16) (58.5611 -48.0199 5.14967e-17) (58.3276 -47.8889 9.13236e-17) (57.2493 -47.0904 -2.55594e-16) (54.1261 -44.5953 2.31161e-16) (55.4534 -45.6707 2.29446e-16) (58.4538 -48.0279 -3.49486e-16) (59.2244 -48.4291 5.724e-17) (59.13 -48.1637 -4.09044e-21) (58.1834 -47.3924 8.27964e-17) (55.1288 -45.1152 -2.25636e-16) (56.1785 -45.7532 6.47044e-18) (59.1174 -48.0529 0) (59.8146 -48.559 -2.93464e-17) (59.8208 -48.579 2.17421e-17) (58.776 -47.7872 1.26957e-16) (55.8222 -45.462 -1.84308e-16) (55.3027 -44.1886 -4.468e-18) (58.3614 -46.9482 0) (59.3239 -48.2788 -4.62318e-17) (60.1536 -48.7201 -2.00574e-17) (59.2024 -48.3116 0) (55.7443 -45.6856 -2.54021e-16) (55.3226 -45.0142 -2.62314e-16) (58.6629 -47.6426 0) (59.8369 -48.5342 1.83481e-17) (60.6472 -49.116 -5.25429e-17) (59.8272 -48.6045 1.94999e-16) (56.5258 -45.9455 -2.28816e-16) (55.9342 -45.403 -2.51118e-16) (59.2561 -48.0442 1.71717e-16) (60.3686 -48.9025 -8.44214e-18) (61.1694 -49.4605 -2.48236e-17) (60.3389 -48.9735 -5.43166e-18) (57.1563 -46.4291 -2.45899e-16) (56.6158 -45.9521 1.37342e-17) (59.8311 -48.4895 0) (60.9233 -49.3121 1.58084e-17) (61.6923 -49.8837 1.45676e-16) (60.8519 -49.4383 -1.55819e-16) (57.8738 -47.0667 1.29945e-17) (57.7067 -46.8087 1.72122e-16) (60.8576 -49.3085 -1.26995e-16) (61.7946 -50.1218 -2.165e-17) (61.5857 -49.4943 -5.72204e-18) (60.0509 -48.8646 7.04504e-18) (56.7044 -46.5738 -2.79465e-16) (58.2125 -47.1024 2.68493e-16) (61.4016 -49.772 -1.21095e-16) (62.2903 -50.3478 8.4402e-17) (62.1073 -50.2431 0) (60.9697 -49.396 1.19584e-17) (57.557 -46.7034 -2.60679e-16) (59.219 -47.7773 1.50965e-17) (62.5041 -50.3042 1.83264e-16) (63.2337 -50.7831 1.73733e-17) (63.0985 -50.3897 5.03238e-17) (62.0506 -49.5624 0) (58.6875 -47.1303 2.22348e-16) (59.7334 -47.8135 -2.20015e-16) (63.0194 -50.3141 0) (63.8247 -50.8389 0) (63.5273 -50.5947 0) (62.4338 -49.7596 -5.18601e-18) (59.1172 -47.252 -2.34873e-16) (60.3619 -48.1675 -2.09783e-16) (63.4722 -50.592 2.44999e-17) (64.2758 -51.0976 -1.4801e-16) (64.3046 -51.1983 1.14391e-16) (63.1435 -50.3606 -1.47626e-16) (60.0299 -47.9212 -1.84943e-16) (59.5714 -46.6074 -4.3286e-16) (62.7525 -49.5594 7.15486e-18) (63.7644 -51.0213 8.72637e-17) (64.77 -51.4579 7.55065e-17) (63.7599 -51.0621 1.02623e-16) (60.1201 -48.3996 -2.68288e-16) (59.702 -47.6814 1.23209e-16) (63.2144 -50.3606 9.6305e-17) (64.4674 -51.2717 0) (65.318 -51.9001 -1.39517e-16) (64.4217 -51.4134 1.84849e-16) (60.9959 -48.7256 -2.39729e-16) (60.4395 -48.231 -2.35199e-16) (63.8817 -50.8972 -8.33808e-17) (65.0552 -51.7646 6.74537e-17) (66.0311 -52.3621 -1.64548e-17) (65.1663 -51.8847 1.68261e-16) (61.824 -49.3042 -2.16529e-16) (61.2808 -48.8478 -1.37223e-17) (64.6805 -51.4525 1.60896e-16) (65.8259 -52.2805 -5.50105e-17) (66.7122 -52.8458 7.23459e-18) (65.8426 -52.4568 2.41876e-17) (62.6511 -50.0188 0) (62.5896 -49.8971 0) (65.8362 -52.3757 -1.9692e-17) (66.9741 -53.1307 0) (66.7238 -52.8448 -9.67147e-17) (65.5557 -51.7443 1.12361e-16) (62.2626 -49.0307 2.87896e-16) (63.5096 -50.032 -2.66148e-16) (67.0862 -52.6328 1.96172e-16) (67.913 -53.1512 8.39176e-17) (67.6326 -52.7365 -8.06105e-17) (66.4483 -51.8012 1.05757e-16) (62.8085 -49.1672 0) (63.9928 -50.0661 2.39891e-16) (67.515 -52.7412 -1.12346e-17) (68.4056 -53.2755 8.55931e-18) (68.0822 -53.0089 7.40225e-17) (66.9039 -52.1339 1.08585e-17) (63.3493 -49.4769 2.30495e-16) (64.6106 -50.4283 3.4762e-21) (68.064 -53.0495 -1.70968e-16) (68.9427 -53.5655 -7.29997e-17) (68.6529 -53.3977 -6.9675e-17) (67.4792 -52.544 0) (63.9949 -49.9163 6.7379e-18) (65.31 -50.9855 -2.11535e-16) (68.5928 -53.4938 3.0638e-16) (69.4746 -53.9687 -2.2352e-16) (69.5698 -54.1614 -8.01338e-17) (68.4036 -53.3398 1.24511e-16) (65.0458 -50.7709 0) (64.3773 -49.9078 -4.37775e-18) (67.8355 -52.6929 0) (69.1577 -53.799 -1.12512e-17) (70.0867 -54.4013 0) (69.0477 -53.9613 0) (65.4357 -51.2665 1.21463e-17) (64.9042 -50.6746 2.39784e-16) (68.5336 -53.4297 5.79625e-18) (69.8018 -54.337 0) (70.897 -54.9621 -6.6753e-17) (70.0038 -54.5106 -5.48529e-18) (66.4877 -51.8786 0) (65.9564 -51.4025 2.11236e-21) (69.5631 -54.0862 -1.6788e-16) (70.7425 -54.9224 -7.12649e-17) (71.8126 -55.4531 -1.08595e-16) (70.9221 -55.1033 -1.73668e-16) (67.5317 -52.644 2.06084e-16) (67.6616 -52.6313 -1.77922e-16) (71.0491 -55.0991 1.42304e-16) (72.2281 -55.7645 -5.38567e-18) (72.1143 -55.1205 -3.95529e-17) (71.0407 -53.8284 1.11628e-16) (67.5898 -51.2032 -1.49592e-16) (68.448 -52.2419 -2.60575e-16) (72.1744 -54.8803 8.78376e-17) (73.0938 -55.4568 1.61679e-16) (72.7118 -55.0852 8.88595e-18) (71.4343 -54.1244 1.16501e-17) (67.6573 -51.4395 0) (68.9487 -52.4036 2.36807e-16) (72.6417 -55.1269 -4.45306e-21) (73.6009 -55.6819 -2.78874e-16) (73.2618 -55.4791 -6.48355e-17) (71.9921 -54.5704 5.35915e-18) (68.2621 -51.8455 0) (69.6818 -52.9415 0) (73.2859 -55.5921 -2.62207e-17) (74.2217 -56.0851 0) (73.9728 -55.99 -6.78889e-17) (72.7438 -55.132 9.92464e-17) (69.1089 -52.4759 0) (70.6094 -53.5832 0) (74.0125 -56.0873 -1.66539e-16) (74.9411 -56.5695 1.18693e-16) (75.0684 -56.8881 8.32165e-17) (73.9144 -56.0141 -1.06228e-16) (70.3935 -53.3718 -1.8074e-16) (69.6205 -52.8343 8.47168e-18) (73.234 -55.4881 1.07203e-16) (74.7419 -56.4587 -8.68317e-17) (75.7094 -57.1555 5.63895e-17) (74.6863 -56.6334 -9.64967e-17) (71.0896 -53.9237 0) (70.4118 -53.4673 -1.15991e-16) (74.1796 -56.2095 9.04186e-17) (75.492 -57.0969 1.71272e-17) (76.7225 -57.7571 -1.6192e-17) (75.8082 -57.3346 0) (72.1658 -54.7115 2.22965e-16) (71.6923 -54.3822 -6.76161e-18) (75.439 -57.0296 0) (76.6679 -57.8173 1.54098e-17) (77.9677 -58.2741 1.11982e-16) (77.153 -58.0427 0) (73.8907 -55.8726 6.2755e-18) (74.184 -55.3659 2.9802e-20) (77.6985 -57.3833 -3.77592e-18) (78.5911 -58.1405 -7.81769e-17) (78.3103 -57.3419 3.75035e-17) (77.0338 -56.3366 1.19209e-16) (73.1889 -54.152 -3.99151e-16) (74.2227 -54.7154 0) (78.0704 -57.2837 -5.9769e-18) (79.0377 -57.8927 1.39694e-17) (78.6519 -57.673 -1.68501e-17) (77.3339 -56.7411 0) (73.3719 -54.0449 0) (74.934 -55.0989 2.38653e-16) (78.7396 -57.7751 -1.02095e-21) (79.6935 -58.3079 -1.27543e-16) (79.4357 -58.2284 0) (78.1499 -57.35 0) (74.2597 -54.6109 -1.31574e-17) (75.9066 -55.7464 -1.96174e-16) (79.5244 -58.3187 0) (80.4655 -58.8046 -1.37265e-16) (80.6541 -59.1203 2.55486e-17) (79.4476 -58.2257 0) (75.6823 -55.5187 0) (74.8807 -54.9208 -4.12851e-18) (78.7503 -57.6906 -6.51508e-18) (80.3131 -58.7182 -1.05721e-17) (81.3479 -59.3486 1.82263e-17) (80.2422 -58.8581 9.89089e-17) (76.4233 -56.1624 -2.24628e-16) (75.7592 -55.6065 -1.41645e-17) (79.7505 -58.3985 0) (81.1273 -59.3234 -1.62451e-17) (82.4084 -59.9985 0) (81.4053 -59.5867 0) (77.6727 -57.0027 0) (77.6888 -56.9284 1.80272e-16) (81.6019 -59.722 -3.86478e-18) (82.8836 -60.5728 -5.27499e-18) (82.836 -60.2463 1.09769e-17) (81.2788 -59.2739 6.83772e-21) (77.2721 -56.4542 -2.76162e-16) (79.6559 -57.4557 7.92342e-18) (83.5703 -60.047 6.08443e-18) (84.4444 -60.5356 1.89273e-17) (84.4098 -59.8578 5.14635e-17) (83.1759 -58.9228 -1.80936e-16) (78.9921 -56.4398 1.12715e-16) (80.3608 -56.8691 -2.26715e-16) (84.4853 -59.5337 -1.70145e-16) (85.4358 -60.1981 1.28861e-16) (85.0199 -59.8882 7.62036e-18) (83.6378 -58.9196 -8.08632e-17) (79.3975 -56.1433 1.07357e-16) (81.0143 -57.2085 4.23691e-21) (84.9562 -59.8905 -1.48341e-16) (85.985 -60.441 -6.96257e-18) (86.1043 -60.6718 0) (84.7527 -59.7177 -1.2056e-16) (80.6758 -56.9238 1.74856e-16) (79.846 -56.1451 4.15054e-18) (84.0676 -59.1157 1.04746e-16) (85.7012 -60.2845 -9.01246e-17) (86.8872 -60.9596 -6.79787e-17) (85.6866 -60.4657 -1.04582e-16) (81.441 -57.6043 2.55021e-16) (80.7563 -56.9875 -1.41413e-17) (85.1587 -59.9584 1.06455e-17) (86.636 -60.9263 5.64294e-17) (87.9488 -61.626 7.06379e-18) (86.8733 -61.1962 1.88712e-17) (82.7878 -58.4669 0) (82.7248 -58.2775 0) (87.0003 -61.1947 -1.52013e-17) (88.358 -62.1277 0) (88.0872 -61.7661 -4.27509e-17) (86.3773 -60.6845 1.12117e-16) (81.9525 -57.6432 -2.68234e-16) (83.8858 -59.1952 0) (88.2508 -62.0232 -5.87532e-18) (89.4899 -62.4147 -1.83551e-17) (89.4875 -62.6196 -4.94525e-17) (88.0257 -61.7028 1.78417e-16) (83.5717 -58.8403 -1.11716e-16) (86.6587 -60.066 4.13037e-16) (90.6595 -62.4715 -3.14588e-16) (91.4536 -62.8961 -3.79506e-20) (92.1139 -62.4655 -8.48181e-17) (91.0022 -61.5577 1.24472e-16) (86.5716 -59.2845 0) (85.2307 -57.8712 0) (90.0718 -60.3222 0) (91.6908 -61.4567 5.46991e-18) (92.5664 -62.1097 -9.7457e-17) (91.3945 -61.4291 9.53977e-17) (86.7683 -58.6231 -2.56711e-16) (85.7681 -57.838 1.08137e-17) (90.5958 -60.8031 0) (92.1662 -61.8616 8.22328e-17) (93.4004 -62.5557 0) (92.247 -62.0313 0) (87.8386 -59.229 -3.22571e-18) (87.5908 -58.9737 1.80149e-16) (92.1856 -61.9339 -2.47167e-16) (93.6881 -62.9477 7.87386e-17) (93.2929 -62.6114 4.85928e-17) (91.5026 -61.3311 9.99985e-17) (86.7771 -58.1313 -1.39786e-16) (88.6887 -59.7495 2.43595e-16) (93.4337 -62.7631 1.00347e-16) (94.7503 -63.2785 -6.9275e-17) (94.472 -63.354 0) (92.807 -62.3289 8.66475e-17) (87.9308 -59.1944 -1.08309e-16) (90.4281 -60.8644 -1.29563e-17) (94.9256 -63.6689 1.93524e-17) (96.0869 -64.0811 1.16288e-16) (96.7462 -64.7075 -8.45383e-17) (95.2384 -63.7586 1.08856e-16) (90.4903 -60.7407 1.13685e-17) (89.8965 -60.2082 1.37373e-16) (94.8223 -63.3357 -1.11722e-16) (96.6894 -64.4211 3.83411e-17) (98.7762 -64.7993 4.64777e-18) (97.6239 -64.6654 1.48961e-17) (93.1043 -62.2917 2.49987e-16) (93.2209 -60.823 1.16147e-16) (97.9707 -62.9647 8.1486e-17) (99.162 -64.027 -6.57947e-17) (100.568 -64.1703 0) (99.68 -63.3843 -4.74891e-18) (95.1034 -60.8777 0) (94.2881 -60.1214 1.76044e-16) (99.2653 -62.8547 -1.22144e-16) (100.627 -63.9653 -8.29948e-17) (100.028 -63.2828 4.23647e-17) (98.0555 -62.1878 -9.80936e-17) (92.8671 -59.3551 -1.3319e-16) (95.0623 -60.3796 -1.02045e-16) (99.9954 -63.3923 -5.76547e-18) (101.3 -64.0598 -1.79964e-17) (100.984 -63.9422 1.60217e-17) (99.2719 -62.8905 0) (94.0579 -59.7706 -7.03083e-18) (96.4685 -61.2835 -1.06493e-16) (101.238 -64.161 0) (102.468 -64.6622 0) (102.938 -65.1753 0) (101.31 -64.2024 0) (96.3137 -61.1548 0) (95.5368 -60.4256 2.62606e-16) (100.677 -63.6285 -2.06697e-16) (102.655 -64.8422 8.33735e-17) (104.362 -65.5024 1.76135e-17) (102.943 -65.1629 1.13295e-17) (97.9239 -62.2922 0) (97.5134 -61.8966 0) (102.692 -64.8896 -9.28226e-17) (104.402 -65.8604 1.0981e-16) (106.661 -66.3656 -1.08654e-16) (105.578 -66.3089 0) (101.128 -64.032 -1.09077e-16) (102.38 -64.0334 1.79506e-16) (107.054 -66.1036 -1.1649e-16) (108.22 -66.6319 7.96385e-17) (108.685 -65.0435 3.88157e-17) (107.376 -63.8263 -6.02552e-18) (102.296 -61.9885 1.22073e-16) (103.734 -61.8986 -1.31642e-17) (108.719 -64.3643 1.64853e-16) (109.828 -65.1982 -1.38459e-16) (109.745 -64.9916 1.58177e-17) (108.157 -63.9057 -1.23337e-16) (102.714 -61.138 1.93349e-16) (101.245 -60.382 1.26645e-16) (106.919 -63.2898 -1.0424e-20) (109.108 -64.4158 -5.72999e-17) (110.62 -65.275 -2.04174e-16) (109.213 -64.671 1.68342e-16) (103.859 -61.6264 0) (102.914 -61.03 2.05456e-21) (108.602 -64.1657 -1.52404e-16) (110.415 -65.218 -7.6727e-18) (112.204 -65.9292 6.64258e-18) (110.895 -65.5223 1.76818e-17) (105.763 -62.7129 -1.19068e-17) (105.864 -62.7208 9.31527e-17) (111.257 -65.7389 -1.42752e-17) (112.942 -66.6532 4.84975e-18) (112.909 -66.3576 -1.91106e-17) (110.837 -65.2577 0) (105.234 -62.156 0) (108.291 -63.9709 2.06965e-16) (113.46 -66.6043 -1.77273e-16) (114.872 -66.8615 7.58975e-18) (116.185 -67.6391 -1.01848e-20) (114.548 -66.9349 1.90587e-17) (109 -64.0612 8.81533e-17) (109.426 -63.2098 0) (115.131 -65.6999 -6.21541e-18) (116.935 -66.7352 -5.01299e-18) (119.471 -66.2558 -1.21252e-16) (118.535 -65.3191 1.41799e-16) (113.061 -62.7814 0) (111.859 -61.5195 9.03218e-17) (118.137 -64.22 1.39123e-16) (119.768 -65.4568 3.3049e-20) (118.967 -64.4914 -2.0668e-17) (116.566 -63.2739 1.02447e-16) (109.961 -60.4241 -1.30604e-16) (112.685 -61.5669 0) (118.788 -64.5962 0) (120.414 -65.2612 -6.87072e-17) (120.037 -65.1108 -6.02856e-17) (117.964 -63.9933 1.59375e-16) (111.603 -60.8494 -1.1294e-16) (114.869 -62.5891 -7.54972e-17) (120.528 -65.368 2.93344e-16) (122.01 -65.795 -1.03198e-16) (122.824 -66.5668 0) (120.944 -65.6141 -1.38637e-17) (115.033 -62.616 6.5085e-17) (114.498 -62.1887 7.22475e-18) (120.581 -65.2479 -9.60459e-17) (122.87 -66.3502 0) (125.188 -66.7525 0) (123.701 -66.6168 -1.38565e-17) (118.252 -64.175 -9.83711e-17) (119.439 -64.4491 -8.32112e-17) (125.225 -67.0645 1.43741e-17) (126.923 -67.5564 -4.9141e-18) (127.975 -66.4615 -1.85812e-17) (126.268 -65.4612 -9.18123e-17) (120.348 -63.3323 1.17375e-16) (124.16 -62.3954 0) (129.841 -64.631 1.49306e-16) (130.696 -65.6255 -1.07762e-16) (130.988 -64.5009 -5.04956e-20) (129.34 -63.2783 -1.70843e-16) (122.796 -60.9923 8.25375e-17) (120.817 -59.7161 -1.15835e-16) (127.809 -62.2988 0) (130.206 -63.5951 0) (131.783 -64.1746 -2.26763e-16) (130.098 -63.5574 1.46857e-16) (123.869 -60.9015 -1.21969e-17) (123.442 -60.5851 7.6398e-18) (130.117 -63.5311 3.50906e-18) (132.203 -64.5253 4.82423e-18) (132.031 -64.2887 -6.18693e-21) (129.484 -63.0252 -5.61332e-18) (122.564 -59.9585 7.11536e-18) (126.741 -62.0731 -8.70438e-17) (132.922 -64.6755 1.81256e-17) (134.582 -64.9387 6.98942e-18) (136.171 -65.9347 7.674e-17) (134.108 -65.203 9.75973e-17) (127.466 -62.3312 -2.54695e-16) (128.281 -62.298 2.29874e-16) (134.977 -65.0028 -9.42959e-17) (137.184 -65.8669 -8.96112e-18) (141.09 -64.7076 -1.30157e-16) (140.361 -64.16 1.47012e-16) (134.758 -62.4429 0) (134.465 -60.3961 -1.49421e-16) (141.325 -61.529 -1.90641e-19) (142.521 -62.8195 8.76718e-17) (142.705 -61.4118 -1.52657e-18) (140.627 -59.8467 0) (132.656 -58.5024 0) (130.147 -56.497 1.23714e-16) (138.888 -58.6581 -9.85614e-17) (141.712 -60.4181 -2.52619e-18) (143.565 -61.0666 3.68739e-18) (141.638 -60.4053 7.60178e-17) (134.081 -57.8543 -1.00366e-16) (133.708 -57.547 0) (141.866 -60.5211 0) (144.256 -61.6077 0) (144.455 -61.4708 2.70312e-17) (141.473 -60.225 0) (133.072 -57.213 1.13231e-16) (139.547 -59.7429 -9.30159e-17) (146.395 -61.8187 0) (148.053 -61.7498 1.01459e-16) (151.441 -62.1694 6.91235e-17) (149.91 -62.1661 0) (142.632 -60.2777 7.35487e-17) (145.199 -57.1898 -8.99849e-17) (152.991 -57.7758 0) (154.513 -59.1146 0) (154.227 -56.2599 -3.87988e-17) (151.729 -54.3292 4.13145e-17) (142.499 -53.5879 9.26065e-19) (145.433 -53.0706 1.60199e-20) (153.6 -55.2613 -6.66549e-17) (155.53 -56.4081 0) (155.385 -55.8725 0) (152.896 -54.9104 3.16023e-18) (143.678 -52.2834 -7.36425e-17) (142.877 -51.8159 0) (152.578 -54.6298 6.16062e-17) (155.852 -55.6603 -4.80115e-17) (155.809 -55.5538 0) (152.284 -53.8509 2.98086e-18) (142.112 -50.4583 -1.19531e-16) (150.709 -53.8077 0) (158.432 -55.4511 1.24447e-16) (160.032 -55.4461 -1.11911e-16) (164.181 -54.6938 -2.25213e-18) (162.813 -53.9377 -1.3957e-16) (154.487 -53.3056 7.59054e-17) (155.931 -48.9631 -2.60366e-18) (165.172 -48.1529 0) (166.921 -50.3276 3.3352e-18) (165.857 -47.2604 3.20188e-17) (162.833 -44.7556 -1.35468e-16) (151.636 -44.9055 -1.11301e-19) (155.432 -44.8147 -1.89755e-16) (164.754 -46.506 6.72464e-17) (167.044 -47.5852 -2.60286e-17) (167.322 -47.0397 4.44627e-17) (164.622 -46.4645 4.69726e-17) (154.121 -44.3937 8.48862e-18) (154.18 -44.0814 -6.09041e-19) (165.59 -46.2806 0) (168.861 -46.6969 -3.62636e-17) (172.618 -45.7859 7.57064e-17) (169.548 -45.4215 -6.81438e-17) (157.719 -43.0331 7.2049e-19) (159.048 -37.9628 0) (170.597 -38.1045 0) (174.09 -39.8021 0) (176.801 -38.6728 0) (174.349 -36.5075 0) (163.582 -34.447 -8.9248e-17) (160.066 -32.9241 6.68473e-17) (172.715 -35.1483 -4.63737e-17) (176.206 -36.1008 0) (176.352 -34.7949 -1.26419e-18) (172.287 -34.5372 -1.71366e-18) (158.127 -32.3111 0) (159.124 -31.5092 7.9784e-17) (174.32 -33.5258 1.97636e-18) (178.16 -33.1596 1.39476e-18) (180.688 -28.4739 -2.31312e-17) (176.734 -26.3053 3.05775e-17) (160.647 -25.9103 -4.13796e-17) (157.67 -21.7504 -4.63655e-17) (175.831 -21.1215 0) (180.948 -23.8536 1.56017e-17) (177.801 -20.0879 -4.14333e-21) (170.834 -18.8663 -8.15662e-18) (151.783 -19.8348 -5.26285e-17) (162.592 -19.1487 -1.24027e-16) (175.876 -19.7508 6.43428e-17) (179.801 -20.6044 0) (179.299 -16.9662 1.4704e-17) (175.805 -14.9996 0) (162.153 -15.8055 3.00478e-17) (159.184 -11.0225 1.00553e-18) (174.612 -9.21994 0) (178.787 -12.9254 1.09106e-17) (177.068 -9.61101 -1.12109e-17) (171.921 -6.25151 2.36609e-17) (153.333 -8.3292 -1.67363e-17) (147.596 -6.66562 -8.52278e-18) (168.031 -5.01793 5.63307e-18) (173.91 -7.51221 5.71461e-19) (170.106 -5.07739 -1.6833e-18) (163.395 -1.87294 1.47105e-18) (141.072 -3.56624 7.325e-19) (133.453 -2.1033 -4.87442e-19) (158.399 -0.662661 3.64533e-19) (166.208 -3.65936 0) (162.594 -3.08714 1.38559e-19) (153.812 -0.613748 1.35293e-19) (126.806 -1.60553 6.01307e-20) (121.454 -1.29446 0) (149.978 -0.678357 0) (159.581 -2.74488 7.00777e-22) (157.048 -2.44491 -1.37406e-19) (146.661 -0.685813 0) (116.878 -1.05322 0) (112.795 -0.865424 0) (143.635 -0.678552 0) (154.787 -2.18711 -3.44857e-20) (152.701 -1.97502 0) (140.807 -0.672427 0) (109.098 -0.721335 0) (105.761 -0.610273 0) (138.15 -0.667513 0) (150.755 -1.80738 0) (148.924 -1.66518 0) (135.656 -0.654178 0) (102.721 -0.519365 0) (99.9465 -0.441351 0) (133.305 -0.634027 0) (147.189 -1.54362 0) (145.537 -1.43112 -1.39266e-19) (131.085 -0.605513 0) (97.4123 -0.375222 0) (95.0912 -0.322632 0) (128.976 -0.577864 0) (143.952 -1.33004 1.04382e-19) (142.432 -1.22996 0) (126.977 -0.54743 0) (92.9763 -0.278676 0) (91.056 -0.241624 0) (125.088 -0.518903 0) (140.972 -1.14544 0) (139.568 -1.06473 0) (123.306 -0.486222 0) (89.3124 -0.207531 0) (87.7303 -0.177831 0) (121.627 -0.454548 0) (138.215 -0.995246 0) (136.909 -0.924326 0) (120.045 -0.419143 0) (86.2929 -0.151065 0) (84.9899 -0.129192 0) (118.554 -0.387338 0) (135.648 -0.863245 0) (134.428 -0.800207 0) (117.15 -0.353885 0) (83.811 -0.109641 0) (82.7481 -0.0941581 0) (115.829 -0.325685 0) (133.248 -0.747867 0) (132.106 -0.693202 0) (114.587 -0.296262 0) (81.792 -0.0799304 0) (80.9348 -0.0687364 0) (113.42 -0.271863 0) (131 -0.648715 0) (129.929 -0.599911 0) (112.324 -0.244957 0) (80.1684 -0.0574981 0) (79.4869 -0.0485838 0) (111.297 -0.22295 0) (128.893 -0.561238 0) (127.889 -0.518078 0) (110.335 -0.198574 0) (78.8824 -0.0392356 0) (78.3482 -0.0320474 0) (109.434 -0.179326 0) (126.918 -0.485027 0) (125.977 -0.446249 0) (108.591 -0.157194 0) (77.8765 -0.0239964 0) (77.4619 -0.0183468 0) (107.802 -0.140778 0) (125.067 -0.417697 0) (124.189 -0.383095 0) (107.065 -0.122339 0) (77.0981 -0.0124215 0) (76.7807 -0.00873644 0) (106.374 -0.110295 0) (123.34 -0.358922 0) (122.522 -0.328457 0) (105.726 -0.0959008 0) (76.5046 -0.00427642 0) (76.2665 -0.00197706 0) (105.118 -0.0877354 0) (121.735 -0.309004 0) (120.978 -0.282343 0) (104.547 -0.0760149 0) (76.0619 0.00185851 0) (75.8878 0.00356808 0) (104.012 -0.0699834 0) (120.25 -0.266287 0) (119.55 -0.241969 0) (103.51 -0.0596546 0) (75.7403 0.00688341 0) (75.6166 0.00838597 0) (103.039 -0.0547774 0) (118.879 -0.228195 0) (118.236 -0.205637 0) (102.597 -0.0456266 0) (75.5137 0.0113901 0) (75.4291 0.0122518 0) (102.182 -0.0425091 0) (117.621 -0.19426 0) (117.031 -0.174132 0) (101.791 -0.035009 0) (75.3605 0.0147885 0) (75.3058 0.015054 0) (101.424 -0.0334817 0) (116.469 -0.165272 0) (115.932 -0.146531 0) (101.079 -0.0269824 0) (75.2628 0.0171364 0) (75.231 0.017391 0) (100.755 -0.0262329 0) (115.422 -0.139528 0) (114.935 -0.122731 0) (100.448 -0.0209168 0) (75.2103 0.018939 0) (75.1965 0.0186259 0) (100.159 -0.0212763 0) (114.473 -0.117565 0) (114.033 -0.101533 0) (99.8855 -0.0166279 0) (75.192 0.01984 0) (75.1915 0.0191352 0) (99.6289 -0.0178963 0) (113.616 -0.0979788 0) (113.22 -0.0838709 0) (99.3861 -0.0143113 0) (75.1969 0.0199554 0) (75.2028 0.0188938 0) (99.1582 -0.0164072 0) (112.844 -0.0822069 0) (112.488 -0.0686953 0) (98.9424 -0.0129056 0) (75.2129 0.019735 0) (75.2226 0.0186448 0) (98.7406 -0.0150596 0) (112.151 -0.0682129 0) (111.831 -0.056316 0) (98.5498 -0.012075 0) (75.235 0.0193306 0) (75.2449 0.0181179 0) (98.3708 -0.014542 0) (111.529 -0.0572227 0) (111.242 -0.04517 0) (98.2014 -0.0112752 0) (75.257 0.0189465 0) (75.2668 0.0176306 0) (98.0432 -0.013739 0) (110.972 -0.0465241 0) (110.715 -0.0358011 0) (97.8938 -0.0111961 0) (75.2782 0.0181021 0) (75.2857 0.0165712 0) (97.7535 -0.0140859 0) (110.473 -0.0383146 0) (110.243 -0.0267878 0) (97.621 -0.0112164 0) (75.2953 0.0172538 0) (75.3026 0.0157915 0) (97.4981 -0.0138207 0) (110.027 -0.0294285 0) (109.822 -0.0196005 0) (97.3825 -0.0117285 0) (75.3118 0.016213 0) (75.3164 0.0145587 0) (97.2737 -0.0147482 0) (109.628 -0.0239866 0) (109.444 -0.0142517 0) (97.1707 -0.0121639 0) (75.3222 0.0151705 0) (75.3252 0.0137548 0) (97.0747 -0.014386 0) (109.27 -0.0182222 0) (109.105 -0.0100226 0) (96.9844 -0.0121986 0) (75.3296 0.0142064 0) (75.3302 0.0127411 0) (96.8994 -0.0144786 0) (108.949 -0.0149983 0) (108.801 -0.00638347 0) (96.8191 -0.0118407 0) (75.3321 0.0134346 0) (75.3318 0.0121912 0) (96.7443 -0.013595 0) (108.661 -0.0108659 0) (108.528 -0.0035734 0) (96.6738 -0.0115254 0) (75.3331 0.0127785 0) (75.3311 0.0115049 0) (96.6063 -0.0135392 0) (108.401 -0.00903838 0) (108.281 -0.00135217 0) (96.5422 -0.0111488 0) (75.3307 0.0121666 0) (75.3285 0.0109608 0) (96.4818 -0.0127267 0) (108.167 -0.00627872 0) (108.058 0.000179503 0) (96.4248 -0.0108639 0) (75.3278 0.0113812 0) (75.3238 0.0100619 0) (96.37 -0.0127067 0) (107.955 -0.00573063 0) (107.855 0.00140428 0) (96.3178 -0.0104199 0) (75.3212 0.0106181 0) (75.317 0.00942625 0) (96.2688 -0.0117745 0) (107.762 -0.0038042 0) (107.672 0.00218196 0) (96.2225 -0.010012 0) (75.3144 0.0098149 0) (75.3088 0.00853763 0) (96.1778 -0.0116058 0) (107.586 -0.00388804 0) (107.504 0.00291837 0) (96.1353 -0.0094421 0) (75.3045 0.00907761 0) (75.2989 0.00794816 0) (96.0955 -0.010577 0) (107.427 -0.00235057 0) (107.352 0.0033477 0) (96.058 -0.00901338 0) (75.295 0.00833743 0) (75.2886 0.00684285 0) (96.0213 -0.0106048 0) (107.281 -0.0027469 0) (107.213 0.00383153 0) (95.9866 -0.00853435 0) (75.2831 0.00759123 0) (75.2767 0.00642891 0) (95.9539 -0.00954506 0) (107.148 -0.00149463 0) (107.086 0.00402671 0) (95.9235 -0.00801349 0) (75.2719 0.00697279 0) (75.2652 0.00551812 0) (95.8935 -0.00943355 0) (107.027 -0.00198271 0) (106.971 0.00364991 0) (95.8655 -0.00711242 0) (75.2592 0.00616409 0) (75.2525 0.00492649 0) (95.8386 -0.00830732 0) (106.916 -0.001534 0) (106.867 0.00418929 0) (95.8144 -0.00598014 0) (75.2478 0.00565118 0) (75.242 0.00434864 0) (95.791 -0.00754138 0) (106.817 -0.00115939 0) (106.773 0.00366272 0) (95.7695 -0.00529408 0) (75.2372 0.00495732 0) (75.2313 0.00378638 0) (95.7483 -0.00669736 0) (106.727 -0.00107899 0) (106.687 0.00421503 0) (95.7294 -0.00432539 0) (75.2272 0.00457812 0) (75.2225 0.0034973 0) (95.7114 -0.00577478 0) (106.645 -0.000429039 0) (106.61 0.00412884 0) (95.6952 -0.00357055 0) (75.2194 0.00415344 0) (75.2153 0.00312269 0) (95.6794 -0.00497258 0) (106.571 -0.000154439 0) (106.54 0.00467074 0) (95.6657 -0.00266244 0) (75.2135 0.00389764 0) (75.2106 0.002936 0) (95.6527 -0.00408275 0) (106.505 0.000481265 0) (106.478 0.00488324 0) (95.6414 -0.00173067 0) (75.21 0.00345515 0) (75.2081 0.0026229 0) (95.6302 -0.00316686 0) (106.446 0.000939118 0) (106.422 0.00563593 0) (95.6213 -0.000683485 0) (75.2088 0.0031909 0) (75.2086 0.0024222 0) (95.6122 -0.00237387 0) (106.392 0.00157233 0) (106.371 0.00598146 0) (95.6054 8.03395e-05 0) (75.2107 0.00297654 0) (75.212 0.00234167 0) (95.5982 -0.00161977 0) (106.345 0.00216127 0) (106.327 0.00682651 0) (95.5939 0.00105864 0) (75.216 0.00293604 0) (75.2192 0.00218064 0) (95.589 -0.000636855 0) (106.303 0.0031047 0) (106.289 0.00728104 0) (95.5868 0.00186342 0) (75.2248 0.00279475 0) (75.2296 0.00206837 0) (95.5838 0.000320733 0) (106.267 0.00390559 0) (106.256 0.00821593 0) (95.5838 0.00286374 0) (75.237 0.00278361 0) (75.2438 0.00203922 0) (95.583 0.00117605 0) (106.236 0.00477179 0) (106.228 0.00869605 0) (95.585 0.00353979 0) (75.2527 0.00274046 0) (75.261 0.00206891 0) (95.5859 0.00202229 0) (106.211 0.0055767 0) (106.205 0.00961059 0) (95.5898 0.0043925 0) (75.2717 0.00280662 0) (75.2818 0.00210656 0) (95.5927 0.00272418 0) (106.19 0.00639437 0) (106.186 0.010092 0) (95.5982 0.00492874 0) (75.2938 0.00280967 0) (75.3052 0.0021845 0) (95.6026 0.00341013 0) (106.173 0.00714872 0) (106.173 0.0109203 0) (95.61 0.00562571 0) (75.3188 0.00289989 0) (75.3319 0.00226282 0) (95.6162 0.00401871 0) (106.162 0.00791392 0) (106.163 0.0113974 0) (95.625 0.00604421 0) (75.3468 0.00291467 0) (75.3611 0.00233549 0) (95.6326 0.00457363 0) (106.154 0.00860344 0) (106.157 0.0121956 0) (95.6431 0.0066461 0) (75.3773 0.00300806 0) (75.393 0.00241016 0) (95.6523 0.00509163 0) (106.15 0.0093264 0) (106.156 0.0126046 0) (95.664 0.00695007 0) (75.4102 0.00301941 0) (75.4268 0.00249984 0) (95.6744 0.0055822 0) (106.15 0.0099709 0) (106.158 0.0133423 0) (95.6875 0.00745907 0) (75.4452 0.00311488 0) (75.4631 0.00255403 0) (95.6993 0.00597112 0) (106.154 0.0106014 0) (106.163 0.0137351 0) (95.7136 0.00769397 0) (75.4823 0.00312576 0) (75.5009 0.00262866 0) (95.7264 0.00636289 0) (106.16 0.0112096 0) (106.172 0.0144147 0) (95.742 0.00812873 0) (75.5211 0.00321681 0) (75.5408 0.00268099 0) (95.7561 0.00669671 0) (106.171 0.0117994 0) (106.183 0.0147787 0) (95.7726 0.00832077 0) (75.5617 0.00322476 0) (75.5819 0.00273775 0) (95.7877 0.00700436 0) (106.183 0.0123112 0) (106.198 0.015253 0) (95.8053 0.00862646 0) (75.6036 0.00328209 0) (75.6246 0.00277842 0) (95.8213 0.00727371 0) (106.199 0.0126924 0) (106.215 0.0156856 0) (95.8398 0.00884383 0) (75.6469 0.00330144 0) (75.6686 0.00285397 0) (95.8568 0.00761115 0) (106.218 0.0132873 0) (106.235 0.0162098 0) (95.8763 0.00913552 0) (75.6916 0.00336134 0) (75.7142 0.00290882 0) (95.8944 0.00787882 0) (106.239 0.0136607 0) (106.258 0.0166325 0) (95.9148 0.00928548 0) (75.7378 0.00336541 0) (75.7609 0.00297205 0) (95.9338 0.00814413 0) (106.263 0.014221 0) (106.283 0.0171206 0) (95.9552 0.00953359 0) (75.7852 0.0034224 0) (75.8091 0.00302005 0) (95.9752 0.00837975 0) (106.289 0.0145777 0) (106.31 0.0175327 0) (95.9973 0.00966425 0) (75.8339 0.0034225 0) (75.8581 0.00307423 0) (96.018 0.00861617 0) (106.317 0.0151097 0) (106.34 0.0179397 0) (96.0409 0.00985528 0) (75.8834 0.00346396 0) (75.9083 0.00309745 0) (96.0625 0.00876586 0) (106.348 0.0153406 0) (106.372 0.0182056 0) (96.0861 0.00989423 0) (75.9339 0.00343928 0) (75.959 0.00312506 0) (96.1082 0.0089225 0) (106.381 0.0157606 0) (106.406 0.0185707 0) (96.1325 0.0100511 0) (75.985 0.00346645 0) (76.0106 0.00315654 0) (96.1554 0.00904763 0) (106.416 0.0159728 0) (106.441 0.0188481 0) (96.1802 0.0100627 0) (76.0366 0.00341398 0) (76.0623 0.00316271 0) (96.2035 0.00913595 0) (106.452 0.0163511 0) (106.478 0.019117 0) (96.2288 0.0101184 0) (76.0886 0.00341644 0) (76.1144 0.00313815 0) (96.2526 0.00908367 0) (106.49 0.0164229 0) (106.517 0.0193548 0) (96.2783 0.0101984 0) (76.1408 0.00340202 0) (76.1667 0.00313401 0) (96.3025 0.00919568 0) (106.529 0.0167743 0) (106.556 0.0196423 0) (96.3286 0.0103116 0) (76.1931 0.00340638 0) (76.219 0.00309192 0) (96.3531 0.00917732 0) (106.569 0.0168475 0) (106.597 0.0196908 0) (96.3794 0.0102761 0) (76.2454 0.00337541 0) (76.2713 0.00305709 0) (96.4042 0.0091613 0) (106.61 0.0170071 0) (106.639 0.0198176 0) (96.4309 0.0102601 0) (76.2979 0.00334409 0) (76.3238 0.00306588 0) (96.456 0.00916841 0) (106.653 0.0170629 0) (106.682 0.0198493 0) (96.4829 0.0102099 0) (76.3502 0.00332676 0) (76.3762 0.00307008 0) (96.5083 0.00921497 0) (106.696 0.0172681 0) (106.726 0.0199725 0) (96.5355 0.0102149 0) (76.4027 0.00332387 0) (76.4287 0.00306842 0) (96.5612 0.00923949 0) (106.741 0.0173055 0) (106.771 0.020034 0) (96.5888 0.0102477 0) (76.4554 0.00333474 0) (76.4816 0.00306753 0) (96.6148 0.00933319 0) (106.786 0.0176244 0) (106.818 0.020319 0) (96.6428 0.010371 0) (76.5084 0.00336841 0) (76.5347 0.00304177 0) (96.6692 0.00934325 0) (106.833 0.0178043 0) (106.865 0.0205136 0) (96.6976 0.010432 0) (76.5618 0.00338292 0) (76.5883 0.00306428 0) (96.7245 0.00944919 0) (106.881 0.0181587 0) (106.914 0.0208389 0) (96.7534 0.0105853 0) (76.6157 0.00342704 0) (76.6425 0.00304198 0) (96.7808 0.00945802 0) (106.931 0.018403 0) (106.964 0.0211159 0) (96.8102 0.010669 0) (76.6701 0.00344328 0) (76.6973 0.00306546 0) (96.8381 0.00956675 0) (106.981 0.0188278 0) (107.015 0.0214946 0) (96.8682 0.0108366 0) (76.7254 0.00349307 0) (76.7529 0.00306032 0) (96.8968 0.00961005 0) (107.034 0.019076 0) (107.068 0.0217582 0) (96.9274 0.0109432 0) (76.7814 0.00351428 0) (76.8092 0.00308774 0) (96.9565 0.00974119 0) (107.088 0.0194655 0) (107.123 0.0221018 0) (96.9878 0.011111 0) (76.8381 0.00355547 0) (76.8661 0.00304344 0) (97.0174 0.00969749 0) (107.143 0.0196642 0) (107.179 0.0222574 0) (97.0491 0.0111057 0) (76.895 0.00353517 0) (76.923 0.00300168 0) (97.079 0.00963082 0) (107.199 0.0197417 0) (107.236 0.0222627 0) (97.1108 0.0110377 0) (76.9518 0.00349171 0) (76.9793 0.00289942 0) (97.1407 0.00941409 0) (107.256 0.0194767 0) (107.292 0.0219777 0) (97.1723 0.010824 0) (77.0075 0.00339062 0) (77.0345 0.00283807 0) (97.2019 0.00929735 0) (107.313 0.0193273 0) (107.349 0.0217364 0) (97.2334 0.0106658 0) (77.0623 0.00331504 0) (77.0884 0.00266812 0) (97.2624 0.00888364 0) (107.369 0.0186392 0) (107.405 0.0212326 0) (97.293 0.010347 0) (77.115 0.00318157 0) (77.1405 0.00259802 0) (97.3216 0.00876886 0) (107.425 0.0187144 -1.77162e-19) (107.461 0.0214074 1.41721e-19) (97.3527 0.0103063 0) (77.1662 0.00316415 1.21979e-19) (77.192 0.0027033 -1.37606e-24) (97.3816 0.00881517 0) (107.481 0.0190016 0) (107.517 0.0215149 0) (97.4123 0.0102569 0) (77.2194 0.00327517 -1.2197e-19) (77.2435 0.00242211 0) (97.44 0.00792623 0) (107.537 0.0184203 0) (107.578 0.0210656 7.08925e-20) (97.4698 0.00973558 0) (77.268 0.00311538 0) (77.29 0.00318765 0) (97.4953 0.00905079 0) (107.595 0.0187199 0) (107.633 0.0199867 3.5365e-20) (97.5293 0.00970546 -4.61992e-20) (77.3327 0.00371962 0) (77.3594 0.00371138 -1.21118e-19) (97.5592 0.00995471 0) (107.658 0.0183954 0) (107.683 0.022692 1.41856e-19) (97.5964 0.0137084 0) (77.3983 0.00570632 1.2276e-19) (77.4396 0.00836851 2.43263e-19) (97.6112 0.0189927 1.85036e-19) (107.689 0.0286334 1.42164e-19) (107.652 0.0387847 5.95742e-19) (97.5771 0.0215845 1.58164e-18) (77.4654 0.00824179 5.27121e-19) (77.4314 0.00111214 -5.25394e-19) (97.4968 0.00799538 -2.00604e-18) (107.58 0.0320701 -6.18888e-19) (107.772 0.0311823 6.86814e-19) (97.5611 -0.00276615 3.19771e-18) (77.475 -0.00392883 0) (77.8246 0.0184929 0) (97.9557 0.028023 -1.84284e-18) (108.415 0.0629139 -7.18638e-18) (108.791 0.13413 -7.59813e-19) (98.2761 0.0892593 -9.90286e-19) (78.1185 0.0223441 0) (122.429 0.392601 -6.45163e-18) (134.528 0.256692 4.9778e-18) (141.644 -0.0197206 -2.42506e-19) (143.168 0.0519268 -1.68351e-17) (143.888 0.240939 1.71727e-17) (146.203 0.277454 -1.02179e-16) (147.322 0.108199 6.61634e-17) (148.042 -0.0395902 1.5661e-19) (148.698 0.12198 -1.72616e-19) (150.157 0.154901 2.40092e-17) (151.057 0.0831094 0) (152.139 -0.0596542 0) (152.979 -0.102528 0) (153.574 -0.0937693 5.32141e-19) (154.009 -0.0765279 -9.95779e-19) (154.313 -0.0575223 9.6958e-19) (154.526 -0.0412912 -2.35395e-19) (154.678 -0.0280871 1.30201e-19) (154.787 -0.017646 -2.13604e-20) (154.868 -0.00927918 7.01386e-21) (154.929 -0.00267481 0) (154.976 0.00244516 0) (155.014 0.0063274 0) (155.045 0.00912531 0) (155.069 0.0109624 -5.09172e-20) (155.09 0.0119148 0) (155.107 0.0120775 0) (155.121 0.0114577 1.32846e-18) (155.132 0.0102192 -1.96023e-18) (155.14 0.00833268 0) (155.146 0.00612091 -3.38047e-18) (155.149 0.00372975 3.41024e-18) (155.151 0.00120077 0) (155.147 0.00127272 0) (155.146 0.00144734 -8.05505e-19) (155.144 0.00157894 1.07422e-18) (155.141 0.00181164 0) (155.138 0.00196496 0) (155.133 0.00209261 4.38876e-20) (155.127 0.00210141 8.57748e-20) (155.119 0.00197051 -2.13974e-19) (155.109 0.00162751 1.25981e-19) (155.098 0.00100115 4.12292e-20) (155.087 -3.13743e-07 -2.00934e-20) (155.076 -0.00149832 1.98141e-20) (155.064 -0.00366168 0) (155.047 -0.00609241 0) (155.022 -0.00821694 0) (154.991 -0.00977191 0) (154.956 -0.0109273 0) (154.916 -0.0119919 0) (154.874 -0.0131757 0) (154.827 -0.0145603 0) (154.776 -0.0161405 0) (154.721 -0.0178868 0) (154.659 -0.0198154 0) (154.591 -0.0219649 0) (154.516 -0.0243807 0) (154.432 -0.0271328 0) (154.339 -0.0302677 -3.09598e-20) (154.234 -0.0338485 3.11584e-20) (154.117 -0.0379128 -3.13824e-20) (153.985 -0.0425191 3.1545e-20) (153.836 -0.0477041 -3.17372e-20) (153.669 -0.0535413 -1.02836e-23) (153.481 -0.060054 3.20007e-20) (153.269 -0.0673376 -3.21522e-20) (153.031 -0.0754735 3.22338e-20) (152.765 -0.0845322 -3.23659e-20) (152.466 -0.0946094 3.24227e-20) (152.131 -0.105785 -3.2541e-20) (151.757 -0.118165 -2.40407e-23) (151.34 -0.131718 3.26432e-20) (150.874 -0.146621 -3.27496e-20) (150.358 -0.162894 3.27591e-20) (149.785 -0.180546 0) (149.151 -0.199579 0) (148.454 -0.219907 0) (147.688 -0.241649 0) (146.851 -0.264423 0) (145.94 -0.28817 0) (144.954 -0.312716 0) (143.89 -0.337495 0) (142.749 -0.362656 0) (141.533 -0.387742 0) (140.241 -0.412444 -3.32873e-20) (138.879 -0.436461 3.32298e-20) (137.448 -0.459499 -3.33616e-20) (135.954 -0.481307 3.32984e-20) (134.401 -0.50163 -3.34346e-20) (132.797 -0.520306 3.33672e-20) (131.145 -0.537135 -3.35061e-20) (129.454 -0.552063 3.34362e-20) (127.728 -0.564956 -3.35759e-20) (125.975 -0.57587 3.35047e-20) (124.201 -0.584701 -3.36434e-20) (122.413 -0.591571 3.35721e-20) (120.614 -0.596387 0) (118.812 -0.59987 0) (117.012 -0.601313 0) (115.217 -0.600993 0) (113.433 -0.599695 -3.38279e-20) (111.663 -0.596784 3.37609e-20) (109.91 -0.592595 -3.38823e-20) (108.178 -0.587487 -7.3717e-23) (106.468 -0.580938 3.38447e-20) (104.784 -0.573784 -3.39567e-20) (103.128 -0.566044 -6.69926e-23) (101.5 -0.55721 3.39199e-20) (99.9021 -0.548062 -3.40223e-20) (98.3363 -0.538577 3.39652e-20) (96.802 -0.528606 -3.40613e-20) (95.3011 -0.518379 3.40066e-20) (93.8327 -0.507811 -3.40965e-20) (92.3985 -0.497157 3.40441e-20) (90.9973 -0.486296 -3.4128e-20) (89.6304 -0.475456 3.40778e-20) (88.2964 -0.46452 -3.41562e-20) (86.9962 -0.453747 -4.417e-23) (85.7288 -0.442695 3.41216e-20) (84.4939 -0.431831 -3.41921e-20) (83.2917 -0.421154 3.41465e-20) (82.1208 -0.410502 -3.42121e-20) (80.9817 -0.400053 3.4168e-20) (79.8728 -0.389662 -3.42291e-20) (78.7946 -0.379491 3.41864e-20) (77.7456 -0.369351 0) (76.7257 -0.359618 -3.42491e-20) (75.7344 -0.349998 3.42082e-20) (74.7704 -0.340481 0) (73.834 -0.331233 0) (72.9237 -0.322116 -3.42663e-20) (72.0396 -0.31331 -2.4913e-23) (71.1806 -0.304517 3.42301e-20) (70.3461 -0.295965 3.42724e-20) (69.5359 -0.287725 -6.85073e-20) (68.749 -0.279515 3.4235e-20) (67.9849 -0.271473 0) (67.2432 -0.263771 -3.42714e-20) (66.5233 -0.256235 3.42339e-20) (65.8243 -0.248814 -3.42672e-20) (65.1462 -0.24167 -1.73241e-23) (64.488 -0.234584 3.4227e-20) (63.8493 -0.227677 -3.42562e-20) (63.2299 -0.221007 3.42189e-20) (62.6289 -0.214449 0) (62.0462 -0.208135 -3.42309e-20) (61.4809 -0.201884 3.42019e-20) (60.9328 -0.195756 0) (60.4015 -0.189868 0) (59.8866 -0.184132 0) (59.3874 -0.17848 0) (58.9038 -0.173016 0) (58.4351 -0.167641 0) (57.9813 -0.162444 0) (57.5417 -0.157331 0) (57.1162 -0.152404 0) (56.7042 -0.147546 0) (56.3054 -0.142775 0) (55.9197 -0.138155 0) (55.5466 -0.133652 0) (55.1857 -0.129258 0) (54.8369 -0.124971 0) (54.4998 -0.12078 0) (54.1741 -0.116685 0) (53.8596 -0.112687 0) (53.556 -0.108781 0) (53.263 -0.104964 0) (52.9805 -0.101233 0) (52.708 -0.0975855 0) (52.4456 -0.0940184 0) (52.1928 -0.0905286 0) (51.9495 -0.0871136 0) (51.7154 -0.0837705 0) (51.4905 -0.0804974 0) (51.2745 -0.0772935 0) (51.0671 -0.0741521 0) (50.8683 -0.0710705 0) (50.6779 -0.0680494 0) (50.4956 -0.065085 0) (50.3214 -0.0621744 0) (50.1551 -0.0593148 0) (49.9965 -0.0565033 0) (49.8456 -0.0537373 0) (49.7022 -0.0510137 0) (49.5662 -0.0483295 0) (49.4375 -0.0456816 0) (49.316 -0.0430667 0) (49.2016 -0.0404815 0) (49.0942 -0.0379225 0) (48.9938 -0.0353855 0) (48.9003 -0.032865 0) (48.8137 -0.0303573 0) (48.7339 -0.0278569 0) (48.6609 -0.0253549 0) (48.5948 -0.0228417 0) (48.5356 -0.020303 0) (48.4834 -0.0177174 -7.58081e-21) (48.4383 -0.0150554 7.40518e-21) (48.4006 -0.01229 0) (48.3704 -0.0094112 0) (48.3478 -0.00652361 -6.21732e-21) (48.3318 -0.00386864 0) (48.3219 -0.001559 0) (48.3168 -0.00146394 -3.59653e-20) (48.3152 0.00119279 -1.9499e-20) (48.3143 -0.0022676 -1.16406e-19) (48.3138 0.00271299 1.03544e-19) (48.3134 -0.00248954 2.36658e-19) (48.313 -0.000184102 1.46463e-20) (48.3121 -0.00210939 6.22813e-19) (48.3084 -0.00353918 1.9431e-19) (48.2963 -0.00898183 5.67583e-19) (48.2669 -0.0189681 0) (48.2166 -0.0344266 1.83313e-19) (48.149 -0.0539936 -1.83932e-19) (48.0714 -0.0752791 -9.05085e-21) (47.99 -0.09647 0) (47.9078 -0.116798 3.82843e-21) (47.8252 -0.136162 -2.6943e-21) (47.7413 -0.154701 0) (47.655 -0.172564 0) (47.5656 -0.189824 0) (47.4724 -0.206491 3.14001e-21) (47.3752 -0.222539 -3.15209e-21) (47.2741 -0.237938 0) (47.1691 -0.252669 0) (47.0603 -0.266732 0) (46.9479 -0.280148 0) (46.8317 -0.292943 0) (46.712 -0.305156 0) (46.5886 -0.316819 0) (46.4618 -0.327962 0) (46.3315 -0.338614 0) (46.1977 -0.348797 0) (46.0607 -0.35853 0) (45.9204 -0.367826 0) (45.7769 -0.376693 0) (45.6305 -0.385137 0) (45.4812 -0.39316 0) (45.329 -0.400764 0) (45.1743 -0.407943 0) (45.017 -0.414696 0) (44.8574 -0.421015 0) (44.6956 -0.426895 0) (44.5317 -0.432322 0) (44.366 -0.437291 0) (44.1985 -0.441791 0) (44.0294 -0.445812 0) (43.859 -0.449342 0) (43.6874 -0.452377 0) (43.5147 -0.454901 0) (43.3413 -0.456906 0) (43.1672 -0.458385 0) (42.9926 -0.459328 0) (42.8178 -0.459729 0) (42.6429 -0.45958 0) (42.4682 -0.458871 0) (42.2938 -0.457596 0) (42.1201 -0.455746 0) (41.947 -0.453329 0) (41.775 -0.450347 0) (41.6042 -0.44676 0) (41.4347 -0.442542 0) (41.2668 -0.437704 0) (41.1008 -0.432254 0) (40.9368 -0.426194 0) (40.7751 -0.41951 0) (40.6158 -0.41219 0) (40.4592 -0.404225 0) (40.3055 -0.395601 0) (40.1548 -0.386298 0) (40.0074 -0.376292 0) (39.8634 -0.365557 0) (39.723 -0.354058 0) (39.5864 -0.341752 0) (39.4537 -0.328595 0) (39.3251 -0.314541 0) (39.2009 -0.299553 0) (39.0813 -0.283599 0) (38.9663 -0.266643 0) (38.8556 -0.24861 0) (38.7486 -0.229324 0) (38.6439 -0.208454 0) (38.54 -0.185518 4.83797e-20) (38.4369 -0.160194 -5.79475e-20) (38.3388 -0.133079 -2.05378e-19) (38.257 -0.10675 2.03456e-19) (38.2061 -0.0853742 1.58886e-18) (38.1905 -0.0718091 -2.99993e-18) (38.1986 -0.0649794 1.54954e-18) (38.2148 -0.0605278 1.6584e-19) (38.2303 -0.0576956 -6.76372e-19) (38.24 -0.0573838 -2.02025e-18) (38.2372 -0.0648667 0) (38.2289 -0.0966873 0) (38.1872 -0.116918 -1.16549e-23) (38.1954 -0.119196 -5.07268e-19) (38.1963 -0.12213 0) (38.1859 -0.123159 0) (38.1727 -0.126693 4.19614e-18) (38.1482 -0.12532 5.26498e-19) (38.1246 -0.127729 0) (38.0895 -0.124985 0) (38.0577 -0.127003 0) (38.0146 -0.124423 -2.64066e-19) (37.9774 -0.126961 0) (37.9249 -0.124351 0) (37.8807 -0.126821 8.25502e-21) (37.8202 -0.123951 -8.25942e-21) (37.7714 -0.12655 8.2582e-21) (37.706 -0.123651 4.21351e-18) (37.6535 -0.126572 -4.2133e-18) (37.5824 -0.123941 4.21474e-18) (37.5261 -0.126906 1.65276e-20) (37.4496 -0.124552 -4.24086e-18) (37.3897 -0.127513 8.26563e-21) (37.3082 -0.125369 -8.26867e-21) (37.2448 -0.128504 8.26765e-21) (37.1584 -0.126571 -4.2428e-18) (37.0916 -0.129891 8.26952e-21) (37.0003 -0.128161 -8.27217e-21) (36.9301 -0.13165 8.27128e-21) (36.8338 -0.130109 -4.2445e-18) (36.7601 -0.133627 8.27293e-21) (36.6589 -0.13229 -4.24528e-18) (36.5817 -0.135834 4.23652e-18) (36.4756 -0.134706 -4.23775e-18) (36.3947 -0.138341 4.2373e-18) (36.2837 -0.13741 -4.50337e-18) (36.1989 -0.141195 8.27748e-21) (36.0828 -0.140434 -4.24745e-18) (35.9941 -0.144366 8.27891e-21) (35.8727 -0.143701 -4.24814e-18) (35.7797 -0.147623 4.23948e-18) (35.6531 -0.147151 -4.24053e-18) (35.5558 -0.151134 4.24019e-18) (35.4237 -0.150878 -4.50628e-18) (35.3218 -0.154943 8.28305e-21) (35.1841 -0.154895 -4.25015e-18) (35.0774 -0.159039 8.2844e-21) (34.934 -0.159193 -4.25082e-18) (34.8222 -0.163415 4.24226e-18) (34.673 -0.163764 -4.24319e-18) (34.556 -0.168057 4.24295e-18) (34.4007 -0.168592 -4.5091e-18) (34.2782 -0.172946 8.28848e-21) (34.1166 -0.173656 -4.25282e-18) (33.9885 -0.178055 8.28985e-21) (33.8206 -0.178936 4.24258e-25) (33.6866 -0.183365 -8.29122e-21) (33.5123 -0.18438 -4.24589e-18) (33.3723 -0.188811 4.24576e-18) (33.1914 -0.18994 -4.51199e-18) (33.0452 -0.194331 8.29404e-21) (32.8578 -0.195521 -4.25558e-18) (32.7055 -0.199808 8.29547e-21) (32.5115 -0.20099 -4.25629e-18) (32.3532 -0.205089 8.29692e-21) (32.1527 -0.206184 -4.25701e-18) (31.9886 -0.210002 8.29838e-21) (31.7822 -0.210926 -4.25774e-18) (31.6127 -0.214356 8.29986e-21) (31.4006 -0.214999 -8.30084e-21) (31.2263 -0.217908 8.30135e-21) (31.0094 -0.218126 -4.25923e-18) (30.831 -0.220352 8.30285e-21) (30.6101 -0.219962 -4.25998e-18) (30.4289 -0.221303 8.30434e-21) (30.2053 -0.220086 -4.26074e-18) (30.0226 -0.220306 8.30583e-21) (29.7979 -0.218004 -4.26149e-18) (29.6158 -0.216836 8.30728e-21) (29.392 -0.213165 4.24539e-18) (29.2129 -0.210303 8.30912e-21) (28.9926 -0.204904 4.24611e-18) (28.8196 -0.199994 8.31048e-21) (28.6059 -0.192475 -1.66215e-20) (28.4428 -0.185137 1.6623e-20) (28.2396 -0.175152 4.23915e-18) (28.0908 -0.165241 1.66254e-20) (27.9025 -0.15247 4.24806e-18) (27.773 -0.139495 8.31392e-21) (27.6045 -0.1237 4.2486e-18) (27.4993 -0.107004 8.31474e-21) (27.3557 -0.0882885 4.24904e-18) (27.2794 -0.0679833 8.31529e-21) (27.1666 -0.0476781 4.24939e-18) (27.124 -0.0248698 8.31559e-21) (27.0463 -0.00424615 4.24961e-18) (27.0408 0.0200275 8.31563e-21) (27.002 0.0408342 4.24782e-18) (27.032 0.063205 0) (27.0289 0.0844575 4.25799e-18) (27.102 0.111302 0) (27.1407 0.130816 0) (27.2621 0.157622 0) (27.341 0.167888 4.25742e-18) (27.495 0.190258 0) (27.6033 0.192654 4.25694e-18) (27.7844 0.210805 0) (27.9151 0.208321 4.25638e-18) (28.1158 0.223979 0) (28.2632 0.217177 4.25576e-18) (28.4774 0.230125 0) (28.6358 0.219364 4.25509e-18) (28.857 0.229381 0) (29.0204 0.215413 4.2544e-18) (29.2426 0.222515 0) (29.4056 0.206171 4.25371e-18) (29.6232 0.210657 0) (29.7812 0.192703 0) (29.9896 0.194808 0) (30.1385 0.175953 4.25241e-18) (30.3337 0.176001 0) (30.4703 0.156953 4.25182e-18) (30.6496 0.155302 2.65674e-19) (30.7716 0.136721 4.25129e-18) (30.933 0.133817 -3.98462e-18) (31.0386 0.115962 4.25081e-18) (31.1815 0.11237 0) (31.2701 0.0958432 4.2504e-18) (31.3947 0.0920132 0) (31.4669 0.0771192 4.25007e-18) (31.5743 0.0731422 0) (31.6312 0.0604707 4.24981e-18) (31.7231 0.0565606 0) (31.7665 0.0460994 4.24962e-18) (31.8449 0.042673 0) (31.8767 0.0344747 4.24949e-18) (31.9437 0.031529 0) (31.9658 0.0249564 4.24941e-18) (32.0234 0.0222657 0) (32.0374 0.0170581 4.24937e-18) (32.0872 0.0147324 0) (32.0946 0.0107372 4.24936e-18) (32.138 0.00872191 0) (32.1399 0.00572715 4.24937e-18) (32.1785 0.00412639 0) (32.1762 0.00212863 4.24941e-18) (32.2108 0.000870623 0) (32.2051 -0.00075904 4.24946e-18) (32.2369 -0.00204489 0) (32.2281 -0.00366109 4.24952e-18) (32.2572 -0.00471007 0) (32.2464 -0.00567781 4.24959e-18) (32.273 -0.0061151 0) (32.2602 -0.00706732 4.24967e-18) (32.2867 -0.00722608 0) (32.2722 -0.00733769 4.24977e-18) (32.2967 -0.00740024 -3.98385e-18) (32.2823 -0.00720286 4.24985e-18) (32.305 -0.00656881 0) (32.2898 -0.00782963 4.24996e-18) (32.3133 -0.00717484 0) (32.2958 -0.00817738 4.25005e-18) (32.3194 -0.00726951 0) (32.3019 -0.00532645 4.25014e-18) (32.3264 -0.00499595 2.65088e-19) (32.3087 -0.00213908 4.49599e-18) (32.3343 -0.000979 -5.25368e-19) (32.3175 0.00184346 7.78881e-19) (32.3458 0.00535074 -3.58904e-18) (32.3356 0.0139808 -2.01415e-18) (32.3688 0.0319426 3.02694e-18) (32.351 0.0596555 2.00647e-18) (32.4108 0.0829493 -8.30539e-18) (32.4937 0.0458804 1.6181e-17) (32.6954 0.0823492 0) (33.1299 0.00872533 -5.5624e-18) (33.0918 0.00715165 -1.04371e-23) (33.0728 0.0233003 8.53389e-18) (33.3139 0.0175917 0) (33.033 0.0262881 3.94779e-18) (33.0655 0.0186188 -3.47067e-17) (33.2987 0.0176525 1.15146e-17) (33.0135 0.0121214 -2.99982e-17) (33.0513 0.00492169 3.42421e-18) (33.2873 0.0094778 0) (32.9983 0.00404879 -4.98997e-19) (33.0367 -0.00144093 -3.22582e-17) (33.2767 0.00440654 5.78789e-18) (32.9861 -0.000852184 -3.99696e-18) (33.0252 -0.00402222 -3.25306e-17) (33.2671 0.00205031 5.95382e-18) (32.9761 -0.00372828 -4.07733e-18) (33.0146 -0.00388936 0) (33.2576 0.00147303 0) (32.9654 -0.00428103 -4.07716e-18) (33.004 -0.00289624 0) (33.2475 0.00209341 0) (32.954 -0.00415415 -4.07701e-18) (32.9924 -0.00199056 0) (33.2364 0.00356199 0) (32.941 -0.0019777 -4.07686e-18) (32.9788 -0.00136314 4.07623e-18) (33.224 0.00603986 0) (32.9275 2.187e-05 -4.0767e-18) (32.9636 0.000982751 0) (33.2099 0.00932648 0) (32.9118 0.00166517 -4.07656e-18) (32.947 0.00436181 0) (33.1939 0.0134298 0) (32.8929 0.00492441 -4.07643e-18) (32.9269 0.00733126 0) (33.1751 0.0189046 0) (32.8716 0.00833351 -4.0763e-18) (32.9034 0.011759 0) (33.1529 0.0256869 0) (32.8458 0.0126753 -4.07619e-18) (32.8755 0.0176085 0) (33.1264 0.034271 0) (32.8147 0.0187884 -4.0761e-18) (32.8415 0.0250169 0) (33.0944 0.0452987 0) (32.7771 0.0265185 -4.07602e-18) (32.8004 0.0346293 0) (33.0556 0.0592872 0) (32.7313 0.036337 -4.07597e-18) (32.7503 0.0466125 0) (33.0081 0.0768737 0) (32.6752 0.0486024 -4.07596e-18) (32.6888 0.0617996 0) (32.9498 0.0988491 0) (32.6062 0.0639286 -4.07599e-18) (32.6132 0.0807309 0) (32.8778 0.126003 0) (32.5214 0.0829082 -4.07607e-18) (32.5203 0.103913 0) (32.7891 0.159093 0) (32.4172 0.105784 -4.07622e-18) (32.4064 0.131565 0) (32.6799 0.19867 0) (32.2898 0.132662 -4.07645e-18) (32.2676 0.16377 0) (32.5461 0.244732 0) (32.1352 0.163407 -4.07675e-18) (32.0999 0.200085 0) (32.3835 0.296473 0) (31.9492 0.197297 -4.07715e-18) (31.8997 0.239232 0) (32.1887 0.352461 0) (31.7299 0.232946 -4.07765e-18) (31.6656 0.279619 4.07673e-18) (31.9595 0.410054 0) (31.4763 0.268746 -4.07824e-18) (31.3974 0.319257 -3.26179e-17) (31.6955 0.466208 5.9172e-18) (31.1894 0.302847 -4.07891e-18) (31.097 0.3559 0) (31.3984 0.517646 0) (30.8721 0.333267 -4.07965e-18) (30.7683 0.387376 0) (31.0721 0.561088 -5.91849e-18) (30.5296 0.358127 3.26428e-17) (30.4175 0.411549 0) (30.7228 0.593361 0) (30.1691 0.375651 -4.08127e-18) (30.0525 0.426476 0) (30.3588 0.611633 0) (29.7994 0.384267 -4.0821e-18) (29.6829 0.430526 0) (29.9905 0.613669 0) (29.4306 0.382606 -4.08291e-18) (29.3196 0.422288 0) (29.6293 0.597981 0) (29.0744 0.369464 -4.08367e-18) (28.9747 0.400501 0) (29.2879 0.56277 0) (28.743 0.344295 -4.08436e-18) (28.6602 0.365204 0) (28.9786 0.506634 0) (28.4475 0.307064 -4.08496e-18) (28.3859 0.315944 0) (28.7064 0.427996 0) (28.1975 0.253034 -4.08542e-18) (28.1645 0.242805 0) (28.4867 0.321526 -5.92567e-18) (28.0096 0.176881 3.26859e-17) (28.018 0.148406 0) (28.3563 0.189472 0) (27.915 0.0927944 -4.08584e-18) (27.9672 0.0557456 0) (28.3245 0.0578314 -5.92481e-18) (27.9087 0.01411 2.85896e-17) (27.9929 -0.0302831 0) (28.3654 -0.0688831 0) (27.9677 -0.0625207 -4.08559e-18) (28.0884 -0.116085 0) (28.4752 -0.193113 0) (28.0992 -0.136209 -4.08524e-18) (28.2528 -0.195349 0) (28.6555 -0.306314 0) (28.2966 -0.20242 -4.08475e-18) (28.4784 -0.264149 0) (28.8954 -0.403618 0) (28.5499 -0.258884 -4.08415e-18) (28.7549 -0.321396 0) (29.1831 -0.483367 0) (28.8492 -0.304792 -4.08347e-18) (29.0717 -0.366772 0) (29.5077 -0.545981 0) (29.1835 -0.340369 -4.08271e-18) (29.4185 -0.400845 0) (29.8594 -0.592444 -5.9227e-18) (29.5431 -0.366454 3.2656e-17) (29.7867 -0.42482 0) (30.2296 -0.624368 0) (29.9201 -0.384156 -4.08105e-18) (30.1684 -0.440187 0) (30.6105 -0.644128 0) (30.3072 -0.394904 -4.08018e-18) (30.5572 -0.448561 0) (30.9964 -0.654142 0) (30.6989 -0.400006 4.07944e-18) (30.9482 -0.451271 0) (31.3826 -0.656346 0) (31.0905 -0.400557 4.07854e-18) (31.3372 -0.449472 0) (31.7654 -0.652335 0) (31.4784 -0.397523 4.07763e-18) (31.7211 -0.444154 0) (32.142 -0.643482 0) (31.8599 -0.391731 4.07673e-18) (32.0974 -0.436164 0) (32.5102 -0.630964 0) (32.2329 -0.383877 0) (32.4644 -0.426204 0) (32.8683 -0.615748 -5.91651e-18) (32.5957 -0.374531 3.6675e-17) (32.8206 -0.414838 0) (33.2153 -0.598606 0) (32.9472 -0.364138 4.07404e-18) (33.1651 -0.402501 0) (33.5503 -0.58012 0) (33.2867 -0.353046 4.07316e-18) (33.4973 -0.389535 0) (33.8727 -0.560743 0) (33.6137 -0.341544 4.07229e-18) (33.8167 -0.376244 0) (34.1823 -0.54089 0) (33.9278 -0.329902 4.07142e-18) (34.1233 -0.362919 -4.07064e-18) (34.4789 -0.521001 0) (34.229 -0.318332 4.07056e-18) (34.417 -0.349754 0) (34.7626 -0.501359 5.91179e-18) (34.5175 -0.306973 -3.25569e-17) (34.698 -0.336883 0) (35.0336 -0.482135 0) (34.7935 -0.295922 4.06884e-18) (34.9667 -0.324366 0) (35.2921 -0.463431 0) (35.0573 -0.285223 4.06797e-18) (35.2232 -0.312267 -4.067e-18) (35.5385 -0.445313 0) (35.3091 -0.274926 4.0671e-18) (35.468 -0.300626 -3.65949e-17) (35.773 -0.427823 5.90887e-18) (35.5493 -0.265058 4.06623e-18) (35.7013 -0.289462 0) (35.9959 -0.410981 0) (35.7784 -0.255631 4.06534e-18) (35.9235 -0.278781 0) (36.2076 -0.394789 0) (35.9965 -0.246644 4.06444e-18) (36.135 -0.268573 -4.06325e-18) (36.4083 -0.37923 0) (36.2041 -0.238088 4.06352e-18) (36.336 -0.258825 -3.65606e-17) (36.5984 -0.364273 5.90539e-18) (36.4014 -0.229953 4.06257e-18) (36.5269 -0.249523 0) (36.778 -0.349867 0) (36.5888 -0.222236 4.06159e-18) (36.7078 -0.240663 0) (36.9475 -0.335957 0) (36.7665 -0.214874 4.06058e-18) (36.8791 -0.232142 -4.05911e-18) (37.107 -0.322455 0) (36.9345 -0.207836 4.05951e-18) (37.0409 -0.223942 -3.65219e-17) (37.2566 -0.309291 5.90123e-18) (37.0932 -0.201104 4.05839e-18) (37.1933 -0.21609 0) (37.3962 -0.296518 0) (37.2428 -0.194716 4.05719e-18) (37.3364 -0.208623 0) (37.5261 -0.284197 0) (37.3832 -0.188711 0) (37.4704 -0.201538 0) (37.6462 -0.272284 0) (37.5144 -0.183098 4.0545e-18) (37.5951 -0.194776 0) (37.7567 -0.260562 0) (37.6364 -0.177787 0) (37.7105 -0.188267 0) (37.8573 -0.248875 0) (37.7491 -0.172714 4.05121e-18) (37.8165 -0.181911 0) (37.9477 -0.237073 0) (37.8523 -0.167771 -4.04908e-18) (37.9127 -0.175705 4.04666e-18) (38.0276 -0.225104 0) (37.9456 -0.163111 -4.0468e-18) (37.9986 -0.16979 0) (38.0966 -0.212828 4.59665e-20) (38.0288 -0.15867 0) (38.0753 -0.16385 0) (38.1559 -0.19994 -2.29583e-20) (38.1025 -0.153945 0) (38.1401 -0.156641 0) (38.2027 -0.186062 5.89107e-18) (38.1617 -0.148305 -3.22898e-17) (38.1895 -0.149166 0) (38.2348 -0.170636 0) (38.2065 -0.1421 0) (38.226 -0.14134 -3.21403e-17) (38.2546 -0.152784 1.15704e-17) (38.2377 -0.134893 -3.15161e-17) (38.2477 -0.130596 -4.48316e-18) (38.2618 -0.130551 0) (38.2517 -0.124059 0) (38.2505 -0.115668 0) (38.2547 -0.101624 -5.43608e-18) (38.2432 -0.109093 3.02219e-17) (38.2435 -0.0946038 6.92564e-18) (38.2435 -0.13149 0) (38.2367 -0.164991 3.67725e-19) (38.2209 -0.195548 -3.74239e-19) (38.1951 -0.223585 0) (38.1587 -0.250086 0) (38.1121 -0.275986 -4.75163e-20) (38.0556 -0.301005 0) (37.9893 -0.325302 0) (37.9131 -0.349086 0) (37.8275 -0.372589 0) (37.7324 -0.396057 0) (37.6279 -0.419738 0) (37.5138 -0.443828 0) (37.3902 -0.46844 0) (37.2567 -0.493581 0) (37.1135 -0.519239 0) (36.9603 -0.545523 0) (36.7969 -0.572576 0) (36.6232 -0.600514 0) (36.4387 -0.629416 0) (36.2432 -0.659329 0) (36.0363 -0.690277 0) (35.8178 -0.722259 0) (35.5873 -0.755257 0) (35.3446 -0.789225 0) (35.0892 -0.824081 0) (34.821 -0.859692 0) (34.5397 -0.895837 0) (34.245 -0.932091 0) (33.937 -0.967779 0) (33.6159 -1.00228 0) (33.2821 -1.03486 0) (32.936 -1.06453 0) (32.5786 -1.09001 0) (32.211 -1.10966 0) (31.8351 -1.12151 0) (31.4532 -1.12328 0) (31.0686 -1.11235 0) (30.6853 -1.08557 0) (30.3089 -1.03893 0) (29.9472 -0.968447 0) (29.6096 -0.870455 0) (29.3073 -0.741916 0) (29.0533 -0.581159 0) (28.8626 -0.389067 0) (28.75 -0.171413 0) (28.7162 0.0603963 0) (28.771 0.300178 0) (28.9435 0.526796 0) (29.2114 0.716482 0) (29.5307 0.870188 0) (29.8886 0.982798 0) (30.2739 1.05397 0) (30.672 1.08756 0) (31.0688 1.08744 0) (31.4509 1.05641 0) (31.8073 0.998963 0) (32.13 0.920802 0) (32.4143 0.828335 0) (32.6583 0.727657 0) (32.8619 0.624782 0) (33.0273 0.525401 0) (33.1586 0.434129 0) (33.2611 0.35382 0) (33.3408 0.285519 0) (33.4025 0.228869 0) (33.4507 0.182693 0) (33.4886 0.145514 0) (33.5187 0.115868 0) (33.543 0.0924094 0) (33.563 0.0739515 0) (33.5798 0.0594747 0) (33.5943 0.0481313 0) (33.607 0.0392017 0) (33.6183 0.0321681 0) (33.6287 0.0267395 4.81473e-20) (33.6384 0.0226835 -4.8126e-20) (33.6475 0.0199015 0) (33.656 0.0183007 0) (33.6639 0.0179808 4.80475e-20) (33.6706 0.0192731 0) (33.6757 0.022173 3.81301e-19) (33.6794 0.0258326 -1.54444e-18) (33.6861 0.0231852 -4.82468e-18) (33.6495 0.0249653 3.91718e-17) (33.3891 0.0189189 1.2549e-24) (33.3015 0.00556944 -1.85163e-17) (33.3156 0.00198828 5.54552e-18) (33.4191 0.0189735 -2.56362e-18) (33.6486 0.0256688 1.91918e-18) (33.7323 0.0194069 -5.12582e-18) (33.7231 0.0205391 4.44854e-18) (33.8297 0.0193697 -4.46977e-18) (33.8284 0.021077 5.61948e-18) (33.8677 0.0195633 -5.54384e-18) (33.8643 0.0190675 -3.14676e-17) (33.8479 0.0184087 4.92862e-18) (33.8429 0.0204974 1.64714e-18) (33.8402 0.0201801 -4.43909e-19) (33.8362 0.0197827 4.94826e-20) (33.8309 0.0199553 0) (33.8246 0.0209755 0) (33.8177 0.0229382 0) (33.8103 0.0258907 0) (33.8027 0.0300337 4.97882e-20) (33.7948 0.0355542 -4.97843e-20) (33.7865 0.0427411 4.97565e-20) (33.7777 0.0520121 -4.97771e-20) (33.7682 0.0640026 0) (33.7579 0.0795659 0) (33.7462 0.0997479 4.97411e-20) (33.8356 0.113394 -5.06663e-20) (33.8411 0.091887 4.96536e-25) (33.8467 0.0754238 5.06772e-20) (33.8525 0.0628218 0) (33.8586 0.0531393 0) (33.8647 0.0456703 0) (33.871 0.0399237 0) (33.8771 0.0355111 0) (33.8833 0.0321403 0) (33.8894 0.0295664 0) (33.895 0.0275687 0) (33.8997 0.0258438 -5.04125e-20) (33.9033 0.0244047 -1.00506e-19) (33.9054 0.0230372 0) (33.9094 0.0213776 0) (33.9043 0.0214479 0) (33.9044 0.0219029 -6.4387e-19) (33.9118 0.0202566 4.76982e-18) (33.9111 0.0206192 -4.52948e-18) (33.8991 0.0224206 0) (33.9006 0.0221284 3.26137e-19) (33.8765 0.0199617 6.63514e-19) (33.8781 0.021478 1.15781e-18) (33.8915 0.0228794 1.66172e-18) (33.8887 0.0238642 8.10644e-19) (33.8878 0.0263795 2.00924e-19) (33.7718 0.0256328 1.97606e-19) (33.7709 0.0192153 -2.38342e-18) (33.7718 0.0166643 -1.64303e-18) (33.7984 0.018494 2.32406e-24) (33.805 0.0195453 -6.76607e-19) (33.7344 0.0107917 5.53309e-18) (33.737 0.0119619 -1.17899e-18) (33.5079 0.00854368 -9.13266e-18) (33.5364 0.00864206 -1.99162e-23) (33.4239 0.00389323 1.69896e-17) (33.4234 0.011141 3.71237e-17) (33.4411 0.0104099 -5.73871e-18) (33.4321 0.0180858 2.24258e-18) (33.4315 0.0265744 5.29193e-18) (33.4338 0.0315748 -3.80096e-19) (33.7712 0.0306702 1.98482e-19) (33.8854 0.0288875 -1.51283e-19) (33.8817 0.0312285 5.05992e-20) (33.8773 0.0336063 0) (33.8725 0.0363262 -5.06687e-20) (33.7658 0.040573 0) (33.7677 0.0375346 4.98012e-20) (33.7696 0.034395 -2.41658e-25) (33.4379 0.0349867 -4.7614e-20) (33.4428 0.0377155 -3.3382e-24) (33.4486 0.0402726 -9.92951e-25) (33.173 0.0356856 -3.04384e-17) (33.1329 0.0360665 3.04791e-17) (33.1654 0.0339666 -3.03107e-17) (33.1253 0.0344443 3.03572e-17) (33.1589 0.031972 -3.03288e-17) (33.1189 0.0326692 3.03452e-17) (33.1535 0.0298722 -3.02146e-17) (33.1138 0.0300597 -1.1847e-19) (33.1502 0.0257567 -3.02654e-17) (33.111 0.0247438 7.55058e-18) (33.1499 0.017585 -7.74173e-18) (33.1095 0.012905 -7.63273e-18) (33.1576 0.0040508 4.38218e-19) (33.1585 -0.000551412 0) (33.1974 0.00416865 9.28584e-18) (33.2814 0.00643785 -9.17349e-18) (33.1637 0.0197747 5.29516e-19) (33.139 0.0133317 0) (32.888 -0.00974234 3.78132e-18) (32.9223 0.00138031 4.2166e-18) (32.2798 -0.044106 -2.14519e-17) (32.2147 -0.0561906 1.6043e-23) (32.1586 -0.0501951 1.06822e-17) (32.8666 -0.0179594 -9.26181e-18) (32.8087 -0.0218097 1.01351e-18) (32.1044 -0.035015 0) (32.1203 -0.0205645 0) (32.8497 -0.00822356 3.23333e-17) (32.7884 -0.00207216 -3.05494e-17) (32.0937 -0.00732077 -2.34277e-18) (32.1116 -0.00145158 -4.17168e-18) (32.8325 0.00713219 3.95419e-18) (32.7939 0.00859472 3.26283e-17) (32.0955 0.00705537 0) (30.6068 0.00758706 1.37252e-19) (30.6076 -2.80119e-05 -2.74777e-19) (30.6012 -0.00803118 4.12708e-19) (30.6145 -0.0236072 5.53914e-19) (30.6272 -0.0475267 0) (30.6704 -0.0776649 1.17547e-18) (30.7502 -0.0980846 0) (30.8774 -0.0917315 5.30358e-18) (30.6137 0.0088299 0) (32.1124 0.00912506 4.16177e-18) (32.8443 0.0145293 2.83255e-17) (32.7857 0.0176027 -1.92895e-18) (32.0909 0.0154981 2.09184e-18) (32.1122 0.0143298 2.09152e-18) (32.8309 0.0216886 -1.92551e-18) (32.7947 0.019392 -3.27178e-17) (32.0995 0.0168607 0) (32.1204 0.0167374 0) (32.8447 0.0230619 3.24527e-17) (32.7882 0.0233124 -3.48611e-17) (32.1028 0.0208771 2.08902e-18) (32.1238 0.0187088 0) (32.8337 0.026549 3.28994e-17) (32.7991 0.0233903 -2.85349e-17) (32.1122 0.0199913 -4.1711e-18) (30.6558 0.0170346 0) (30.6496 0.0154514 0) (30.6375 0.017763 0) (30.6357 0.0144569 0) (30.6254 0.0147952 0) (30.6244 0.0110971 0) (30.6142 0.0130003 0) (30.6676 0.015948 1.37144e-19) (32.1337 0.0191137 0) (32.8489 0.0266094 3.2537e-17) (32.7937 0.0263243 -3.50253e-17) (32.1168 0.0230579 2.0888e-18) (32.1383 0.0205147 0) (32.8391 0.0288613 3.28949e-17) (32.8057 0.0255018 -2.85309e-17) (32.1281 0.0221331 -4.17066e-18) (32.1497 0.0211376 0) (32.8556 0.0286226 3.25323e-17) (32.8016 0.0279408 -3.49925e-17) (32.1339 0.0247627 2.08858e-18) (32.1556 0.0224075 0) (32.847 0.0306816 3.29163e-17) (32.8142 0.0268205 -2.85268e-17) (32.1459 0.0231764 -4.17021e-18) (30.7287 0.01935 0) (30.7208 0.0180646 0) (30.7076 0.0204573 1.37589e-19) (30.7033 0.0172766 -1.37135e-19) (30.6913 0.0185154 0) (30.6838 0.0164072 0) (30.6708 0.0190573 -1.37598e-19) (30.7419 0.0181637 1.37126e-19) (32.1681 0.0222624 4.16535e-18) (32.8639 0.0301718 2.84615e-17) (32.8106 0.0295641 -3.29293e-17) (32.1526 0.0258772 0) (32.1745 0.0235216 0) (32.8558 0.0319974 3.29114e-17) (32.824 0.028333 -2.85224e-17) (32.1655 0.0247772 -4.16973e-18) (32.1878 0.0231463 4.16486e-18) (32.8734 0.0312794 2.8457e-17) (32.8214 0.0306735 -3.29241e-17) (32.1734 0.0265994 0) (32.1953 0.0245267 0) (32.8663 0.0334298 -3.29062e-17) (33.1414 0.0378983 4.54193e-17) (32.8352 0.0295099 -2.85179e-17) (32.187 0.0253757 -4.16923e-18) (30.8111 0.0206289 0) (30.8024 0.0187671 0) (30.7881 0.0209546 1.37571e-19) (30.7819 0.0181621 -1.37117e-19) (30.7687 0.0199361 0) (30.7606 0.0181741 0) (30.7466 0.0208885 -1.37581e-19) (30.8252 0.0195839 1.37106e-19) (32.2097 0.0242566 4.16434e-18) (32.8844 0.0329881 -3.65815e-17) (33.1818 0.037792 4.55953e-17) (33.4552 0.0428934 -1.21984e-17) (33.7641 0.0439934 0) (33.8677 0.0396876 5.06647e-20) (33.8631 0.0438806 0) (33.8587 0.0492342 -5.06826e-20) (33.8547 0.0562318 5.06528e-20) (33.7616 0.0597509 0) (33.7617 0.0531623 0) (33.7626 0.0480822 0) (33.4626 0.045963 -3.46157e-25) (33.4711 0.0496538 1.59152e-24) (33.481 0.0542405 1.89218e-24) (33.4917 0.0601199 4.03743e-24) (33.7623 0.0683492 0) (33.8512 0.0653653 -5.0674e-20) (33.8487 0.0772357 5.06437e-20) (33.8474 0.0927414 0) (33.8475 0.113111 0) (33.7757 0.110779 0) (33.7687 0.0922641 0) (33.7645 0.0787997 0) (33.5044 0.0678111 7.87329e-24) (33.5218 0.0777466 1.22763e-23) (33.5446 0.0908805 1.85208e-23) (33.2972 0.072488 -3.04192e-17) (33.2522 0.0666494 3.04605e-17) (33.2698 0.0631897 -3.04222e-17) (33.2266 0.0585315 3.04635e-17) (33.248 0.0553406 -3.0425e-17) (33.2062 0.0523054 3.04662e-17) (33.2307 0.0495955 -3.04276e-17) (33.1897 0.0477929 3.04687e-17) (33.216 0.0458877 -3.043e-17) (33.1752 0.0448251 3.0471e-17) (33.2029 0.0425731 -3.04323e-17) (33.1625 0.0419817 3.04731e-17) (33.1917 0.0401403 -3.03159e-17) (33.1514 0.0398335 3.03566e-17) (32.878 0.0350555 3.29008e-17) (32.8334 0.0322711 -3.29188e-17) (32.1958 0.0277487 0) (32.2182 0.0255502 0) (32.2106 0.0266244 4.16871e-18) (32.8481 0.0313709 -3.66597e-17) (32.8968 0.0348903 3.65752e-17) (32.8468 0.0340593 -3.29133e-17) (32.2201 0.0292408 0) (32.2333 0.0256329 -4.16381e-18) (30.8709 0.0202279 0) (30.8563 0.0214564 0) (30.8465 0.0199198 0) (30.8315 0.0224018 -1.3756e-19) (30.8779 0.0233751 0) (30.8933 0.0215695 0) (32.2429 0.0274233 0) (32.8909 0.0368404 3.28952e-17) (32.8621 0.0333284 -2.85083e-17) (32.2362 0.0285557 -4.16817e-18) (30.9039 0.0229385 0) (30.9197 0.0213051 1.37086e-19) (32.2595 0.0276788 4.16326e-18) (32.911 0.036968 2.84424e-17) (32.8626 0.0362609 -3.29076e-17) (32.2474 0.0311738 0) (32.2704 0.0289086 0) (32.9066 0.0392429 3.28894e-17) (32.8789 0.035506 -2.85032e-17) (32.2648 0.0299634 -4.16762e-18) (32.2885 0.0292193 4.1627e-18) (32.9271 0.0392899 2.84371e-17) (32.8801 0.0384494 -3.29016e-17) (32.2778 0.0325616 0) (32.3016 0.0310916 0) (32.924 0.041756 3.28833e-17) (32.8978 0.038318 -2.84978e-17) (32.297 0.0320394 -4.16702e-18) (31.0128 0.0244686 0) (30.9995 0.0233791 0) (30.9818 0.0255712 1.37528e-19) (30.9723 0.0224933 -1.37075e-19) (30.956 0.0234755 0) (30.9441 0.0214099 0) (30.9277 0.0236341 -1.37539e-19) (31.031 0.0232407 1.37063e-19) (32.3213 0.0316064 4.16208e-18) (32.946 0.0424275 2.84315e-17) (32.901 0.0416143 -3.28952e-17) (32.312 0.0350454 0) (32.3365 0.0333223 0) (32.9444 0.0450887 3.28768e-17) (32.9196 0.0420022 -2.8492e-17) (32.3336 0.0346057 -4.16639e-18) (32.3589 0.0344717 4.16143e-18) (32.9677 0.0467535 2.84256e-17) (32.9252 0.0459754 -3.28884e-17) (32.3515 0.0380044 0) (32.3774 0.0370155 0) (32.969 0.0500898 3.287e-17) (32.9466 0.0472282 -2.84859e-17) (32.3767 0.038544 -4.1657e-18) (31.1486 0.0291361 0) (31.1309 0.0271233 0) (31.1094 0.028572 1.37503e-19) (31.0959 0.0256354 -1.3705e-19) (31.076 0.0265279 0) (31.0608 0.0244474 0) (31.0418 0.0262894 -1.37516e-19) (31.1711 0.028406 1.37036e-19) (32.4037 0.0387697 4.16073e-18) (32.995 0.0527216 2.84192e-17) (32.9553 0.0520471 -3.2881e-17) (32.3987 0.0424901 0) (32.4261 0.0417411 0) (32.9995 0.0567343 3.28625e-17) (32.9796 0.0540799 -2.84792e-17) (32.4278 0.043605 -4.16494e-18) (32.4562 0.044352 4.15998e-18) (33.0282 0.0602271 2.84125e-17) (32.9917 0.0592698 -3.28732e-17) (32.454 0.0483112 0) (32.4834 0.0479968 0) (33.0365 0.0645552 -3.28548e-17) (33.2835 0.0760133 4.53899e-17) (33.0194 0.0619842 -2.84723e-17) (32.4879 0.049902 -4.16418e-18) (31.3309 0.0363311 0) (31.3057 0.0342113 0) (31.2781 0.0351717 1.37471e-19) (31.2583 0.0318559 -1.3702e-19) (31.2328 0.0320216 0) (31.2117 0.0299042 0) (31.1874 0.0312837 -1.37487e-19) (31.3607 0.0363332 1.37005e-19) (32.5185 0.0511718 4.15923e-18) (33.0687 0.0689138 -3.65214e-17) (33.3303 0.0838756 4.55649e-17) (33.5723 0.10878 -1.2194e-17) (33.7869 0.136113 0) (33.8495 0.139983 0) (33.8301 0.141496 -5.06863e-20) (33.7324 0.125892 -4.9761e-20) (33.7155 0.159626 4.97327e-20) (33.6939 0.20288 9.30754e-25) (33.6658 0.257874 -4.97474e-20) (33.6282 0.327118 4.97194e-20) (33.5767 0.413074 1.71352e-24) (33.5056 0.517328 -4.97334e-20) (33.4074 0.639512 0) (33.2748 0.776281 0) (33.1017 0.921307 4.9714e-20) (32.8845 1.06676 -4.97079e-20) (32.6219 1.20461 0) (32.3139 1.32667 0) (31.9626 1.42403 0) (31.5724 1.48658 0) (31.151 1.50456 0) (31.5629 1.96055 0) (31.9958 1.91148 0) (32.3775 1.80669 0) (32.7112 1.66211 0) (32.9964 1.49171 -5.06019e-20) (33.2333 1.3054 1.01223e-19) (33.4221 1.11234 -5.06091e-20) (33.5641 0.922662 -5.06134e-20) (33.6632 0.746992 2.49183e-24) (33.7273 0.594139 5.06449e-20) (33.7668 0.467789 0) (33.7908 0.366708 0) (33.806 0.287566 0) (33.8163 0.225945 0) (33.8239 0.178208 5.06545e-20) (33.8534 0.176011 0) (33.859 0.223969 0) (33.8661 0.287156 -5.06321e-20) (33.852 0.27628 0) (33.8243 0.21517 0) (33.8031 0.169808 0) (33.607 0.133183 4.11486e-23) (33.6521 0.166975 5.95641e-23) (33.7103 0.215523 7.52982e-23) (33.7873 0.286151 9.8711e-23) (33.8894 0.358654 0) (33.8742 0.37052 5.05983e-20) (33.8798 0.481823 0) (33.8757 0.626443 0) (33.8493 0.808964 5.05944e-20) (33.9975 0.840123 0) (33.9751 0.62849 0) (33.9334 0.471422 0) (33.8902 0.388243 1.33215e-22) (34.0116 0.542078 6.09276e-18) (34.1154 0.784766 1.22279e-17) (34.0725 0.598073 -2.27124e-17) (33.9571 0.467005 7.57162e-18) (33.8623 0.388739 -3.04009e-17) (33.7566 0.312311 3.04287e-17) (33.699 0.275485 -3.03941e-17) (33.6124 0.225908 3.04356e-17) (33.5786 0.203634 -3.03996e-17) (33.5068 0.169159 3.04412e-17) (33.49 0.154377 -3.04045e-17) (33.4286 0.13215 3.04462e-17) (33.4232 0.122657 -3.04089e-17) (33.3689 0.106409 3.04505e-17) (33.3714 0.0993711 -3.04127e-17) (33.3215 0.0884666 3.04542e-17) (33.081 0.074762 3.28468e-17) (33.0357 0.0681138 -3.2865e-17) (32.5199 0.0553178 0) (32.5516 0.0560166 0) (32.5597 0.059228 4.16337e-18) (33.0674 0.0728017 -3.65978e-17) (33.1178 0.0809452 3.65118e-17) (33.0897 0.0809845 -3.28561e-17) (32.5992 0.0666119 0) (32.5933 0.0615736 -4.15841e-18) (31.4825 0.0434844 1.36989e-19) (31.4479 0.0425509 0) (31.4177 0.0394436 0) (31.3853 0.0397892 -1.37456e-19) (31.513 0.0474938 -1.37438e-19) (31.5508 0.0474756 0) (32.6344 0.0678891 0) (33.1374 0.0895589 3.28379e-17) (33.1286 0.0884477 -2.84568e-17) (32.6474 0.0706476 -4.16246e-18) (31.5875 0.0506355 0) (31.6283 0.0520944 1.3697e-19) (32.6841 0.0735118 4.15753e-18) (33.18 0.0989367 2.83899e-17) (33.1572 0.09916 -3.28461e-17) (32.695 0.0785622 0) (32.7336 0.08205 0) (33.2053 0.110434 3.28283e-17) (33.2024 0.11025 -2.84476e-17) (32.7524 0.0879622 -4.16146e-18) (32.7955 0.0936189 4.15653e-18) (33.2574 0.123875 2.83807e-17) (33.2428 0.125948 -3.28347e-17) (32.814 0.101196 0) (32.8583 0.106502 0) (33.2959 0.140998 3.28174e-17) (33.3015 0.143376 -2.84371e-17) (32.8859 0.114067 -4.16025e-18) (31.963 0.0847285 0) (31.9077 0.0764933 0) (31.8531 0.073782 1.37393e-19) (31.8054 0.068822 -1.36949e-19) (31.7561 0.0660807 0) (31.7115 0.0594531 0) (31.6663 0.0572237 -1.37419e-19) (32.0229 0.09205 1.36921e-19) (32.9353 0.122264 4.15545e-18) (33.3598 0.162265 2.83708e-17) (33.3554 0.165303 -3.2822e-17) (32.9638 0.133261 0) (33.0178 0.142199 0) (33.4138 0.186186 3.28058e-17) (33.4294 0.194001 -2.84253e-17) (33.0561 0.155392 -4.15899e-18) (33.1155 0.169594 4.15425e-18) (33.496 0.220263 2.83598e-17) (33.5072 0.22676 -3.28068e-17) (33.1591 0.184996 0) (33.2256 0.200174 0) (33.5755 0.256179 3.27919e-17) (33.6063 0.271222 -2.84104e-17) (33.2828 0.22035 -4.15727e-18) (32.5428 0.167389 0) (32.454 0.151062 0) (32.3701 0.139828 1.37335e-19) (32.2933 0.126675 -1.36895e-19) (32.219 0.1179 0) (32.1495 0.109372 0) (32.0827 0.10311 -1.37365e-19) (32.64 0.183056 0) (33.3616 0.24394 4.15252e-18) (33.686 0.312645 2.83459e-17) (33.7206 0.332309 -3.28125e-17) (33.4294 0.269494 0) (33.5217 0.30267 0) (33.8062 0.382347 -3.26448e-17) (33.8641 0.420481 -1.26636e-19) (33.6144 0.346178 0) (33.723 0.411136 0) (33.9565 0.495305 -1.26607e-19) (34.0087 0.571265 -3.05347e-17) (33.8153 0.499351 -1.95198e-18) (33.9067 0.610696 -1.2982e-19) (34.0863 0.676429 -1.27616e-19) (34.146 0.782815 -2.26951e-17) (34.1202 0.794457 -3.2222e-17) (33.9683 0.741278 -5.16862e-19) (33.5009 0.688104 1.7707e-18) (33.4079 0.540121 1.90141e-24) (33.2832 0.425497 2.74299e-19) (33.1433 0.327081 1.37042e-19) (32.9966 0.266026 0) (32.8633 0.228012 0) (32.7448 0.2034 0) (33.5662 0.847448 0) (34.0171 0.885399 4.1149e-18) (34.17 0.918403 -4.03199e-18) (34.2064 0.989628 7.54591e-18) (34.15 1.11951 -9.49811e-20) (33.9739 1.10029 0) (33.7853 1.02527 -5.05799e-20) (33.6729 1.26248 0) (33.5086 1.5053 0) (33.2939 1.74113 0) (33.5304 1.97418 0) (33.7375 1.68695 0) (33.8877 1.39064 0) (34.0901 1.49762 6.30765e-18) (33.942 1.8701 -1.89988e-19) (33.725 2.22226 5.69691e-18) (33.4508 2.54564 6.58764e-18) (33.273 2.24212 -1.98304e-19) (33.0308 1.96054 0) (32.7203 2.15578 0) (32.3616 2.31556 0) (31.9456 2.42659 0) (32.2123 2.8837 3.97837e-19) (32.6159 2.70431 9.91071e-20) (32.9688 2.48737 -9.90307e-20) (33.1256 2.83738 0) (32.7471 3.09778 0) (32.3091 3.32601 -1.36492e-17) (32.3816 3.61677 2.80722e-17) (32.6045 3.52129 0) (32.8537 3.32393 0) (33.0365 3.21358 0) (33.2377 3.01011 0) (33.3926 2.88673 -4.64803e-19) (33.5733 2.66108 -2.90864e-17) (33.7042 2.51197 -1.90723e-18) (33.853 2.286 -2.83096e-17) (33.9475 2.11609 7.93423e-18) (34.0548 1.88641 -4.67201e-19) (34.1168 1.70407 -3.7579e-17) (34.1907 1.45079 7.51776e-18) (34.2041 1.24112 7.52999e-18) (34.1941 1.17471 4.04699e-18) (34.1731 1.05542 -3.04874e-17) (34.0368 1.02828 -2.05405e-18) (34.0497 1.17167 -4.07796e-18) (34.0438 1.31099 0) (34.1732 1.31515 -3.20096e-17) (34.1764 1.43295 0) (34.1324 1.57675 -3.31139e-17) (33.9991 1.58884 1.00148e-18) (34.0329 1.4533 0) (33.6241 1.45364 0) (33.6298 1.30527 0) (33.6224 1.15913 2.13534e-18) (33.6026 1.00607 2.15311e-18) (33.5985 1.60328 0) (33.5604 1.73337 0) (33.9633 1.71689 -9.9372e-19) (34.1112 1.67993 3.30613e-17) (34.0555 1.80872 1.98653e-18) (33.9177 1.83267 1.97335e-18) (33.5212 1.84635 2.06895e-18) (33.4852 1.95629 1.60082e-22) (33.877 1.94786 0) (34.0315 1.90386 -2.95427e-18) (33.9653 2.02963 -9.7804e-19) (33.8185 2.05779 2.81488e-18) (33.7813 2.15462 2.24507e-19) (33.9336 2.10943 -2.41761e-19) (33.8902 2.22751 -3.02073e-17) (33.7843 2.23867 -3.71236e-18) (33.814 2.3841 8.52769e-18) (33.8654 2.33685 -2.05387e-18) (33.7745 2.49342 5.83316e-19) (33.6996 2.61762 1.56256e-18) (33.7638 2.50204 -1.09507e-18) (33.6458 2.54807 1.04555e-18) (33.6609 2.38655 -1.31016e-17) (33.4167 2.19629 3.67191e-18) (33.3802 2.20237 3.26775e-18) (33.4278 2.07281 -9.6823e-19) (32.6952 2.07709 6.01441e-18) (33.1769 2.36036 0) (33.2021 2.58246 0) (33.1132 2.70284 -1.00491e-17) (33.5814 2.64855 0) (33.4567 2.78971 0) (32.9994 2.81917 -9.87109e-18) (32.9453 2.92631 -8.49382e-18) (33.4148 2.86989 8.73716e-18) (33.5221 2.84511 -1.74089e-18) (33.3454 3.04012 0) (33.1748 3.21822 -1.18719e-17) (32.996 3.38075 -8.2681e-18) (32.8618 3.43446 3.03703e-17) (32.9117 3.37855 3.11735e-17) (33.0477 3.26568 4.0861e-17) (33.0999 3.20276 -6.57631e-18) (33.2388 3.08072 8.73383e-18) (33.2843 3.00281 -2.20167e-18) (32.8609 3.03131 -8.36838e-18) (32.7976 3.1434 -9.41705e-18) (32.6988 3.2383 2.3274e-18) (32.6292 3.33163 9.06196e-18) (32.5359 3.40847 -9.03136e-18) (32.4722 3.52043 6.93589e-18) (32.4536 3.54431 0) (32.7899 3.53699 3.73362e-18) (32.778 3.62673 2.65781e-17) (32.8138 3.56157 -1.35361e-17) (32.5709 3.73599 0) (32.3225 3.89619 1.69365e-18) (32.0493 4.04703 3.28501e-18) (32.0966 3.80958 2.66051e-17) (31.8489 3.9039 -1.36803e-17) (31.8147 3.52447 3.01424e-18) (31.7386 2.99899 -4.00339e-19) (31.4539 2.45766 0) (31.085 1.94468 0) (30.7135 1.47585 0) (30.2779 1.39614 0) (29.8625 1.25585 0) (29.4812 1.04778 0) (29.147 0.77817 0) (28.9119 0.455561 0) (28.8159 0.110536 0) (28.8317 -0.22542 -6.23422e-21) (28.9433 -0.537412 6.23538e-21) (29.1474 -0.80811 0) (29.4223 -1.0303 0) (29.7475 -1.20412 0) (30.1064 -1.33337 0) (30.4862 -1.42331 0) (30.8771 -1.47943 0) (31.2718 -1.50747 0) (31.3724 -1.91301 0) (30.9619 -1.88513 0) (30.5522 -1.82449 0) (30.1484 -1.72314 0) (29.7615 -1.57166 3.18664e-21) (29.4071 -1.35916 -3.18692e-21) (29.1071 -1.07474 0) (28.8893 -0.712291 2.55079e-20) (28.7831 -0.279762 -5.10225e-20) (28.7942 0.193349 -2.5514e-20) (28.9397 0.663324 0) (29.2437 1.09078 0) (29.6551 1.4368 5.09166e-20) (30.1093 1.68965 -5.08938e-20) (30.5901 1.85639 0) (30.9015 2.37961 0) (30.3295 2.19251 2.04952e-19) (29.7653 1.8923 1.02572e-19) (29.7797 2.48436 1.93416e-23) (30.4997 2.81951 -2.0331e-19) (31.1638 2.98685 0) (31.2334 3.62182 1.61056e-18) (30.4993 3.5814 -3.9694e-19) (29.5832 3.26848 2.98683e-19) (28.6206 2.65691 0) (29.0889 1.95454 0) (29.2475 1.45682 0) (28.8719 0.90904 2.05532e-19) (28.6857 0.308069 5.14412e-20) (28.6545 -0.305904 0) (28.3265 -0.342223 0) (28.3541 0.463767 0) (28.5946 1.25069 -2.04909e-19) (27.9239 1.7484 -4.03233e-19) (27.6229 0.686316 4.09152e-19) (27.655 -0.426643 8.23765e-19) (26.5791 -0.688055 8.11198e-19) (26.3826 0.908023 1.63163e-18) (26.7196 2.44216 -3.03591e-18) (27.7983 3.65959 1.89976e-18) (29.1449 4.33829 -6.7893e-18) (30.2305 4.47738 3.738e-19) (31.0927 4.3308 5.54409e-18) (31.4963 4.11769 -2.08598e-18) (31.4527 4.26368 1.1863e-17) (31.7791 4.1753 -1.02405e-17) (31.7953 4.37214 -9.89026e-19) (31.9105 4.30412 0) (32.0493 4.19479 -5.33567e-23) (32.1663 4.13668 -9.61055e-19) (32.316 4.01302 -2.95341e-18) (32.4254 3.95333 -2.49518e-18) (32.5656 3.82688 4.9893e-19) (32.6564 3.76564 3.29065e-17) (32.5083 3.83868 -2.15121e-18) (32.5894 3.69657 0) (32.1953 3.72323 -7.70788e-18) (31.8493 3.44714 6.0902e-17) (32.1816 3.88482 2.39483e-18) (32.1025 4.00557 0) (32.4189 3.94728 -1.05064e-18) (32.3067 4.04395 5.12268e-18) (32.0111 4.1207 -1.32412e-17) (31.9171 4.2028 8.41263e-18) (32.1915 4.14035 3.95438e-18) (32.0593 4.24067 3.74709e-18) (31.933 4.32691 -1.75899e-18) (31.8243 4.40018 1.79065e-18) (31.5813 4.46448 -1.37415e-22) (31.6713 4.42817 3.20449e-18) (31.7979 4.31306 -7.83789e-18) (31.0838 4.43275 0) (31.2753 4.65921 3.33347e-22) (31.6128 4.59606 1.03194e-18) (31.7375 4.49817 4.73667e-18) (31.5837 4.56768 -3.43494e-17) (31.6155 4.51071 3.38577e-17) (31.4131 4.62705 -5.93113e-18) (31.3043 4.80103 1.74619e-17) (31.4795 4.71232 0) (31.16 4.82763 4.72417e-18) (30.9534 4.96752 2.35512e-17) (30.732 5.07713 -4.42768e-18) (31.0475 4.96729 0) (30.8743 5.01735 0) (31.0191 4.76814 -4.41996e-19) (30.5467 5.02906 -2.86712e-17) (30.4915 5.25355 0) (30.6479 5.19013 0) (30.3639 5.3343 1.5458e-17) (30.5501 5.21377 0) (30.2891 5.44567 0) (30.0533 5.58364 2.11028e-18) (30.2284 5.38734 -2.00162e-18) (29.9971 5.41393 -3.92893e-18) (30.1163 5.08238 7.37148e-18) (29.5428 5.28624 -9.08596e-18) (29.4392 5.61475 1.9894e-18) (29.6905 5.5652 -3.13916e-17) (29.5239 5.79732 -1.84475e-18) (29.8032 5.68148 5.9298e-18) (29.5543 5.87758 8.5232e-18) (29.7981 5.74962 0) (29.975 5.56076 0) (29.8718 5.32376 -2.3393e-17) (29.2946 6.02422 0) (29.0227 6.12242 0) (29.2774 5.86471 -1.86027e-18) (28.9889 5.91193 2.02942e-18) (29.0998 5.77407 -2.74391e-21) (28.6579 5.9095 1.19872e-17) (29.0292 5.28591 1.87366e-18) (28.2966 5.38864 2.92179e-17) (27.8543 6.04104 1.63053e-18) (27.5931 6.53908 -2.40226e-19) (27.9605 6.51935 1.20639e-18) (28.4424 6.30594 -3.34627e-17) (28.8036 6.21189 -4.03559e-18) (28.4408 6.47362 0) (28.5486 6.1639 -4.92775e-17) (28.0692 6.63747 -1.89414e-17) (27.6323 6.82985 2.93288e-17) (27.2141 6.95985 -1.74028e-17) (26.8087 7.03403 2.13194e-18) (27.1321 6.66297 9.70093e-19) (26.6994 6.61277 -5.7511e-18) (27.0533 5.96125 -3.33274e-18) (27.558 5.10757 0) (26.5204 4.66465 -3.34502e-18) (26.1184 5.5693 4.16835e-18) (25.1088 4.77414 6.84886e-19) (25.6857 3.88416 -2.4795e-19) (24.8901 2.63351 -3.36887e-17) (24.1825 1.37111 1.13396e-17) (24.1587 3.35944 -3.0599e-17) (22.5931 4.16314 -1.55552e-18) (24.0337 5.85751 -1.14305e-17) (25.0235 6.25978 3.18004e-17) (25.7179 6.47789 0) (26.177 6.62305 9.45015e-19) (25.7894 7.06233 -3.57867e-18) (26.3251 7.06003 1.11412e-23) (25.8973 7.46718 8.8067e-18) (26.4161 7.38684 0) (26.6878 7.08926 2.57404e-17) (25.2604 7.56527 -3.36944e-18) (24.5661 7.58957 -1.08327e-17) (25.288 6.95078 0) (24.6449 6.67776 3.08247e-17) (23.84 7.3913 7.73305e-18) (22.8718 8.00016 2.08518e-17) (23.6762 7.93651 2.58762e-17) (21.86 7.96652 -3.21375e-18) (22.966 7.1802 -3.99937e-18) (22.0295 6.67551 2.25192e-19) (20.8887 7.44694 -4.55506e-19) (20.0223 6.39089 0) (21.2598 5.71107 0) (20.6385 4.16821 2.32251e-19) (19.433 4.70986 3.46225e-18) (17.5167 5.1717 -3.39636e-18) (18.1785 7.32614 -2.40128e-18) (19.4552 8.06349 9.42674e-19) (20.5844 8.33542 6.28267e-18) (15.8637 7.46363 1.82032e-17) (14.63 5.76952 7.58743e-18) (10.7589 4.52306 8.14847e-18) (11.3955 1.14959 -2.50236e-18) (15.2321 2.31485 -5.98924e-18) (17.5184 2.71204 -4.00013e-22) (19.2868 2.85386 4.50184e-19) (20.359 2.75169 1.22797e-18) (22.0584 2.07545 -5.55437e-18) (22.5598 -0.135044 -4.93812e-19) (20.4385 -0.401188 6.48844e-18) (20.4348 1.09406 3.40404e-17) (19.4991 1.28635 0) (17.9084 0.664064 0) (16.3175 -0.169604 0) (17.5549 -1.98411 -9.03218e-19) (18.4896 -0.942755 -2.95101e-17) (19.4673 -2.78004 0) (20.2837 -4.13255 6.9478e-18) (18.8261 -3.19758 0) (18.0238 -4.72464 0) (16.2811 -3.65096 -8.72845e-19) (14.2032 -1.81428 -6.90637e-18) (11.927 -5.0039 0) (7.63214 -2.84187 -2.6431e-17) (7.15653 -9.55312 0) (11.6905 -9.45276 -2.10121e-18) (13.0569 -13.5751 6.49609e-18) (9.20713 -15.2902 -5.55324e-18) (13.2466 -19.2807 9.93669e-18) (15.6951 -16.7142 4.04585e-18) (18.7335 -18.4134 -1.42232e-17) (17.98 -21.1507 -2.08627e-17) (21.3441 -21.1673 5.64765e-18) (22.8983 -21.3355 5.3898e-19) (24.882 -20.9366 2.36202e-18) (26.1205 -20.3215 3.31474e-18) (27.2551 -19.9415 -3.1797e-18) (28.1659 -19.3312 -3.07578e-17) (28.72 -18.6447 3.32218e-17) (29.4288 -18.439 -2.79161e-18) (29.7545 -17.8732 0) (30.3647 -17.7514 0) (30.6404 -17.3419 0) (30.6174 -16.8885 -1.15458e-17) (31.1026 -16.9028 6.67983e-18) (31.1729 -16.6 2.21364e-17) (31.0502 -16.1625 0) (31.5196 -16.2881 2.95543e-18) (31.4819 -16.0429 6.88716e-18) (31.3062 -15.6019 5.38221e-17) (31.7469 -15.8757 4.23907e-19) (31.6812 -15.6384 -7.85075e-18) (31.3773 -15.3615 -1.16598e-17) (31.8779 -15.564 6.72077e-18) (31.7904 -15.4087 0) (31.4153 -15.1545 5.73272e-17) (31.9368 -15.3564 -6.89533e-18) (31.7991 -15.2808 2.2683e-19) (31.392 -15.0556 1.13515e-17) (31.9459 -15.2653 -8.22611e-18) (31.7822 -15.2359 2.83147e-17) (31.3673 -15.0219 3.30071e-17) (31.9488 -15.277 6.47465e-18) (31.7968 -15.3005 0) (31.5682 -15.1635 2.4601e-18) (31.0378 -14.9071 -3.33761e-18) (31.7573 -15.2855 0) (31.5079 -15.3022 -1.59418e-17) (31.1235 -14.9773 0) (31.7108 -15.3484 -1.85395e-18) (31.4987 -15.313 0) (30.9658 -15.1478 0) (31.7032 -15.4555 -7.61075e-18) (31.4498 -15.4944 -5.98034e-18) (30.9851 -15.2148 4.07459e-17) (31.6667 -15.5896 -1.84779e-18) (31.4185 -15.6184 -3.96949e-18) (30.9811 -15.4089 0) (31.6664 -15.7826 -1.89397e-18) (31.4381 -15.8122 3.37135e-17) (30.9127 -15.5819 -5.32668e-17) (31.6383 -15.9581 0) (31.3703 -16.0554 8.01136e-18) (30.8452 -15.8425 1.93194e-17) (31.6558 -16.2008 -1.1482e-17) (31.3856 -16.2364 1.62979e-17) (30.8317 -15.9068 1.33251e-17) (31.5909 -16.3424 -1.61031e-17) (31.0956 -16.3703 -1.82772e-17) (31.8742 -16.6489 -2.71393e-18) (31.641 -16.71 2.78629e-17) (31.1839 -16.5105 0) (31.8676 -16.8686 -2.45082e-18) (31.5845 -16.9583 -4.5058e-19) (31.1526 -16.8203 3.49695e-17) (31.8584 -17.2136 6.63198e-18) (31.6866 -17.2572 2.27536e-19) (31.2339 -17.0972 -3.63598e-19) (31.8939 -17.415 0) (31.6136 -17.5047 9.44536e-19) (31.1501 -17.314 4.53855e-18) (31.8776 -17.7645 -3.51592e-18) (31.6698 -17.8773 1.9482e-18) (31.2537 -17.5789 -3.25784e-18) (31.9153 -17.9561 7.48019e-18) (31.4424 -17.8901 3.69423e-17) (32.0749 -18.2013 0) (31.8158 -18.348 7.3105e-18) (31.4021 -18.2366 1.76825e-17) (32.0984 -18.5805 -8.57355e-18) (31.9266 -18.6304 3.24772e-17) (31.5077 -18.3612 -2.52981e-17) (32.1795 -18.7817 7.13053e-18) (31.7032 -18.7338 -5.29384e-17) (32.3538 -19.0849 3.0409e-18) (32.1143 -19.2458 1.06203e-17) (31.7421 -19.089 -1.15331e-17) (32.407 -19.4499 0) (32.2316 -19.5115 0) (31.7861 -19.275 1.27724e-17) (32.4072 -19.6199 9.14521e-18) (31.9049 -19.5979 9.11249e-18) (32.5629 -19.9382 0) (32.3413 -20.1218 2.9387e-17) (31.9856 -19.9748 1.19276e-17) (32.6517 -20.3173 1.7409e-18) (32.5016 -20.3698 -1.96155e-18) (32.0929 -20.1198 3.27391e-18) (32.7211 -20.5046 -4.61646e-19) (32.2674 -20.4348 3.68127e-17) (32.9135 -20.8508 3.97928e-19) (32.6729 -21.0049 4.7079e-19) (32.2823 -20.7985 1.20596e-17) (32.9659 -21.1945 -7.37312e-18) (32.6173 -21.1475 9.1968e-18) (33.2142 -21.4417 0) (33.0169 -21.4656 -3.71311e-17) (32.5494 -21.2831 1.25893e-17) (33.2052 -21.6862 3.58658e-18) (32.7651 -21.7441 -4.97058e-17) (33.4344 -22.0673 4.31201e-18) (33.2476 -22.1619 3.36018e-17) (32.8771 -21.9452 -6.38184e-18) (33.4913 -22.3084 5.47455e-18) (33.1666 -22.2245 1.83679e-17) (33.7189 -22.5537 -4.74375e-18) (33.5097 -22.564 -2.80508e-17) (32.9785 -22.4341 1.27174e-17) (33.6921 -22.846 1.35873e-18) (33.2983 -22.9066 4.13009e-17) (33.962 -23.2168 -3.18245e-18) (33.8085 -23.2919 0) (33.4346 -23.0767 -1.64689e-17) (34.0301 -23.4283 -5.70727e-18) (33.6799 -23.2852 -1.96698e-17) (34.1953 -23.6392 0) (33.7504 -23.5898 -3.4811e-17) (34.4012 -23.9717 -1.52838e-18) (34.1842 -24.148 0) (33.8463 -23.9904 0) (34.4785 -24.3467 4.53428e-19) (34.1555 -24.3039 -4.64122e-18) (34.7379 -24.6047 3.45909e-22) (34.583 -24.6408 -1.93509e-18) (34.1996 -24.4203 0) (34.7347 -24.7632 -3.85173e-18) (34.2953 -24.6521 -4.96905e-18) (34.9238 -25.0641 5.03807e-18) (34.561 -25.113 -4.38141e-18) (35.205 -25.4475 0) (35.0704 -25.5313 -7.38145e-18) (34.734 -25.3282 0) (35.373 -25.694 7.27668e-18) (35.0069 -25.6142 4.79688e-17) (35.5587 -25.9086 -1.62544e-18) (35.1949 -25.8447 1.08467e-17) (35.7274 -26.1743 -6.636e-18) (35.4957 -26.2688 0) (35.0833 -26.168 2.56989e-17) (35.7208 -26.5325 7.46937e-18) (35.4038 -26.4927 -9.77264e-18) (36.0431 -26.8181 0) (35.7487 -26.7798 5.17209e-17) (36.3233 -27.087 -1.51444e-18) (36.1804 -27.1426 0) (35.8317 -26.9186 2.52407e-17) (36.4125 -27.2873 -4.51936e-19) (35.987 -27.2173 0) (36.5368 -27.5486 0) (36.1644 -27.5903 4.79758e-17) (36.7517 -27.9264 3.71107e-22) (36.6112 -28.0319 -2.66464e-17) (36.2713 -27.849 0) (36.885 -28.1776 3.82263e-18) (36.5713 -28.0889 -1.15142e-21) (37.1595 -28.3835 0) (36.855 -28.3091 3.54404e-17) (37.4005 -28.6329 0) (37.2198 -28.675 -9.45166e-19) (36.7508 -28.5013 1.46156e-17) (37.4281 -28.9214 -9.37784e-18) (37.0518 -28.9508 9.90112e-18) (37.688 -29.2746 0) (37.3931 -29.2245 3.67812e-17) (37.9767 -29.5325 -1.57067e-18) (37.6875 -29.4908 0) (38.2377 -29.7855 -3.77085e-19) (38.0922 -29.8417 2.9863e-17) (37.7599 -29.6443 0) (38.3087 -29.9924 0) (37.9579 -29.8944 -4.00785e-17) (38.4859 -30.2304 0) (38.1128 -30.2175 -2.33507e-17) (38.7323 -30.5701 3.22126e-18) (38.4403 -30.5827 2.1481e-17) (39.0395 -30.8909 -6.07746e-18) (38.9255 -30.9741 -1.84827e-18) (38.6002 -30.7909 3.20225e-18) (39.2427 -31.1409 4.59806e-18) (38.9356 -31.0562 -3.90256e-17) (39.4895 -31.3493 -3.30569e-18) (39.1681 -31.262 -9.10222e-18) (39.7077 -31.5829 -7.79338e-18) (39.3581 -31.5463 3.37582e-17) (39.9076 -31.8772 6.02041e-18) (39.7196 -32.0216 -3.73759e-17) (39.3679 -31.8689 -2.60847e-17) (40.0081 -32.2338 5.69239e-18) (39.7165 -32.1838 1.26022e-18) (40.2931 -32.4675 -8.67491e-19) (40.0178 -32.3634 4.73668e-18) (40.5917 -32.6778 -3.2769e-18) (40.3089 -32.6326 3.49367e-17) (40.8701 -32.9377 -7.74248e-18) (40.756 -32.9864 3.96875e-17) (40.4155 -32.7973 9.83277e-18) (41.0096 -33.1843 0) (40.6418 -33.153 2.50447e-18) (41.2636 -33.511 -1.70696e-18) (40.9682 -33.4631 -1.87922e-17) (41.5721 -33.7922 0) (41.2778 -33.7208 2.71662e-17) (41.8364 -34.0314 -1.58013e-18) (41.5405 -34.0158 -3.44338e-17) (42.1114 -34.3197 0) (41.9887 -34.4128 0) (41.6538 -34.2121 3.30474e-18) (42.2683 -34.5418 -1.94299e-18) (41.9475 -34.4403 0) (42.5537 -34.7746 -1.05239e-17) (42.194 -34.7383 3.3482e-17) (42.8108 -35.0821 -3.12793e-18) (42.5046 -35.0548 0) (43.1312 -35.3865 0) (42.8597 -35.3881 1.69832e-17) (43.4655 -35.6886 -3.76115e-19) (43.3702 -35.7692 0) (43.0419 -35.6011 -1.27826e-17) (43.7024 -35.9599 7.36711e-18) (43.4069 -35.9029 -2.45841e-17) (44.0072 -36.2098 0) (43.722 -36.1265 -1.85403e-17) (44.3031 -36.4433 0) (43.9653 -36.3971 -1.78424e-17) (44.5364 -36.7163 3.89113e-18) (44.2341 -36.7381 -2.3408e-17) (44.8197 -37.0463 -3.10452e-18) (44.7081 -37.164 -2.09066e-17) (44.3883 -36.9858 -2.96184e-17) (45.0241 -37.318 3.8647e-18) (44.7442 -37.27 -9.55188e-18) (45.3987 -37.5882 -4.3766e-19) (45.1235 -37.4986 2.38996e-18) (45.7134 -37.8142 2.0899e-18) (45.4259 -37.7348 5.5681e-22) (46.0247 -38.0581 1.99669e-18) (45.7451 -38.0657 1.22635e-17) (46.3542 -38.3717 5.35346e-22) (46.2514 -38.4911 1.85852e-18) (45.9234 -38.3302 -3.21e-18) (46.6323 -38.7057 3.7119e-18) (46.3493 -38.6728 -2.47925e-17) (46.9888 -38.9871 3.37435e-18) (46.7057 -38.9253 0) (47.3416 -39.2485 0) (47.0562 -39.2028 -1.80321e-17) (47.6476 -39.5058 -1.57438e-18) (47.3663 -39.514 2.14747e-18) (47.9826 -39.8213 4.6904e-18) (47.8843 -39.94 0) (47.551 -39.7784 -3.31402e-18) (48.2379 -40.1115 -1.95058e-18) (47.964 -40.0518 2.05978e-17) (48.6473 -40.3883 -7.09544e-18) (48.3584 -40.3344 2.90353e-17) (48.9954 -40.6627 0) (48.7196 -40.6148 1.87299e-17) (49.3778 -40.9404 -3.26479e-18) (49.0939 -40.9197 3.698e-22) (49.7204 -41.2278 0) (49.4731 -41.2473 4.18584e-18) (50.1561 -41.5563 2.96146e-18) (50.0862 -41.6946 2.17711e-17) (49.8183 -41.5314 1.27516e-17) (50.4875 -41.8827 -4.19686e-18) (50.2227 -41.8659 2.42337e-17) (50.9103 -42.1738 -3.28887e-18) (50.6595 -42.1217 -2.2816e-17) (51.2907 -42.4249 3.93118e-18) (51.0313 -42.3983 -1.09744e-18) (51.6624 -42.6947 1.12991e-18) (51.4093 -42.7215 -2.67538e-17) (52.0379 -43.0033 4.40937e-18) (51.9543 -43.1426 3.66562e-17) (51.6771 -42.981 1.11521e-17) (52.3408 -43.3208 9.33056e-19) (52.0713 -43.2853 -9.95689e-18) (52.7267 -43.5974 0) (52.4752 -43.5689 0) (53.1752 -43.896 -3.30276e-18) (52.9376 -43.9068 1.81472e-17) (53.6085 -44.193 3.54098e-18) (53.4178 -44.2109 -4.75261e-18) (54.1338 -44.4942 6.18399e-22) (54.0939 -44.6147 7.29435e-18) (53.8348 -44.4569 1.26381e-17) (54.5201 -44.8065 0) (54.2448 -44.7854 -1.94618e-17) (54.9517 -45.1081 -2.06407e-19) (54.682 -45.0983 -4.56602e-18) (55.3704 -45.418 4.2389e-23) (55.1169 -45.437 1.75779e-17) (55.8239 -45.7443 7.53437e-19) (55.5807 -45.8351 -2.45889e-17) (56.3044 -46.1195 5.84547e-18) (56.2699 -46.3143 9.13319e-18) (56.0588 -46.1641 -3.17467e-18) (56.7914 -46.4857 4.64317e-18) (56.6108 -46.4076 0) (57.2747 -46.6814 -1.70339e-18) (57.0398 -46.6205 0) (57.7602 -46.9439 -6.5072e-18) (57.4943 -46.9614 4.47534e-18) (58.184 -47.2695 0) (57.9547 -47.3289 -4.15741e-18) (58.7211 -47.6384 -3.66891e-18) (58.6917 -47.8518 -2.14811e-17) (58.4536 -47.7219 7.73687e-19) (59.2102 -48.0702 -4.47006e-19) (58.9642 -48.1205 1.08348e-21) (59.7758 -48.442 2.42442e-18) (59.5874 -48.4939 1.7894e-17) (60.346 -48.7662 -3.89294e-19) (60.2071 -48.7045 1.74625e-17) (60.8623 -48.9586 6.15564e-18) (60.8321 -49.074 -9.39942e-18) (60.5539 -48.9128 1.77999e-17) (61.2912 -49.244 -9.50963e-19) (61.0426 -49.2335 2.06204e-17) (61.8498 -49.572 6.4212e-18) (61.6061 -49.5726 4.64039e-18) (62.3507 -49.9076 -3.21541e-18) (62.1205 -49.9975 4.28966e-18) (62.9761 -50.324 2.27635e-18) (62.9891 -50.5715 7.3774e-18) (62.8034 -50.4499 0) (63.6484 -50.814 -7.38322e-18) (63.5251 -50.8603 7.33062e-18) (64.4072 -51.1236 1.66044e-18) (64.2826 -50.9579 -1.82595e-17) (64.9757 -51.2389 3.1777e-18) (64.7257 -51.2445 3.44e-17) (65.4671 -51.5674 -6.24975e-18) (65.4316 -51.754 -9.48371e-19) (65.1469 -51.6455 3.26642e-18) (65.9943 -51.9864 6.70903e-18) (65.7609 -52.0003 -1.00449e-17) (66.6839 -52.374 -3.43676e-18) (66.4497 -52.4514 4.64503e-18) (67.3257 -52.8069 3.2125e-18) (67.1491 -52.9307 1.71304e-17) (68.1214 -53.2377 5.2812e-18) (68.2468 -53.5213 -8.25411e-18) (68.2248 -53.3165 -2.37461e-17) (69.0484 -53.5756 7.30732e-18) (68.8961 -53.3987 -4.81816e-18) (69.6879 -53.6904 8.15703e-19) (69.4149 -53.6856 -3.91631e-22) (70.2014 -54.0163 -3.49678e-18) (69.9444 -54.1019 5.09377e-17) (70.7675 -54.423 1.23652e-17) (70.7665 -54.6668 -7.39515e-18) (70.5449 -54.5491 0) (71.4475 -54.9177 0) (71.2714 -55.0319 1.93463e-17) (72.3198 -55.3783 -3.27763e-18) (72.2262 -55.5056 5.58697e-17) (73.2231 -55.7723 -3.02982e-18) (73.4713 -56.0133 1.10408e-17) (73.4986 -55.6413 -1.26072e-17) (74.3371 -55.9379 7.24954e-18) (74.1137 -55.8133 2.86558e-17) (74.9425 -56.1162 0) (74.6924 -56.18 1.75943e-17) (75.6426 -56.5162 1.30973e-18) (75.4206 -56.677 2.51733e-19) (76.3801 -56.9863 6.42676e-18) (76.4208 -57.3172 -7.03754e-18) (76.2357 -57.2418 0) (77.2439 -57.6057 0) (77.1131 -57.7823 0) (78.2159 -58.0779 -3.11522e-18) (78.273 -58.2316 -3.31582e-17) (79.4298 -58.4144 0) (79.7835 -58.3827 0) (79.6151 -58.0466 -1.19218e-17) (80.4398 -58.3675 -1.06916e-19) (80.1787 -58.4172 8.9927e-18) (81.1511 -58.7493 -6.00934e-18) (80.946 -58.908 3.20298e-17) (81.9318 -59.1931 4.94668e-18) (82.037 -59.5262 1.7211e-18) (81.8768 -59.4424 2.64808e-17) (82.9237 -59.7819 -3.2843e-18) (82.8235 -60.0445 4.33848e-18) (84.0749 -60.3412 5.98226e-18) (84.4765 -60.77 1.12261e-19) (84.7011 -60.5857 -1.91584e-19) (85.8396 -60.7278 0) (85.9541 -60.3473 0) (86.7733 -60.5817 -3.12434e-18) (86.5477 -60.5691 8.28944e-18) (87.5386 -60.8609 -2.98121e-18) (87.6261 -61.1692 -3.54447e-18) (87.4345 -61.0854 0) (88.5594 -61.4651 1.72305e-18) (88.4272 -61.6981 -1.73795e-17) (89.7924 -62.0533 0) (90.0864 -62.4978 0) (90.0238 -62.4731 -1.19962e-17) (91.3434 -62.772 -2.62292e-18) (91.6203 -62.9078 4.00897e-17) (92.8492 -63.0283 -6.28784e-18) (93.4313 -62.7318 1.38129e-17) (93.2302 -62.2713 1.54867e-18) (94.219 -62.581 -3.58569e-18) (93.975 -62.6652 -1.79083e-17) (95.2937 -63.004 0) (95.5018 -63.4371 0) (95.3415 -63.3894 -6.09436e-18) (96.646 -63.7959 -1.33044e-18) (96.5507 -64.1107 -3.35767e-17) (98.0771 -64.4362 -1.57952e-18) (98.6777 -64.9027 9.22024e-19) (98.9919 -64.7687 -1.39627e-17) (100.482 -64.8868 0) (100.995 -64.3496 0) (102.096 -64.4785 3.05073e-18) (102.34 -64.3967 3.55951e-17) (102.012 -64.1796 1.19369e-17) (103.215 -64.5555 8.66494e-19) (103.03 -64.7283 0) (104.431 -65.0323 0) (104.871 -65.4985 0) (104.9 -65.5174 0) (106.544 -65.8207 -4.24951e-19) (106.91 -66.1714 1.68826e-17) (108.784 -66.2304 1.44089e-18) (109.896 -66.2759 -3.57896e-17) (110.381 -65.4376 -1.20371e-17) (111.333 -65.5861 0) (111.62 -65.5161 0) (111.325 -65.3594 1.17851e-17) (112.79 -65.671 8.41938e-19) (112.763 -65.9178 1.66336e-17) (114.438 -66.2159 0) (115.108 -66.7831 -2.6736e-17) (115.362 -66.7944 -5.36242e-18) (117.156 -66.9093 9.74603e-18) (118.403 -67.2644 -4.27771e-17) (119.506 -66.5365 0) (120.738 -66.4725 0) (121.575 -65.8574 -3.23347e-17) (121.267 -65.3825 3.49164e-17) (122.752 -65.5793 -6.57978e-18) (122.656 -65.7847 0) (124.379 -66.0291 0) (125.179 -66.6076 0) (125.613 -66.6072 0) (127.619 -66.5579 0) (129.237 -66.8577 1.02123e-19) (130.636 -65.9123 4.95598e-18) (131.844 -65.7315 -7.49375e-19) (132.823 -64.8525 2.62865e-17) (132.627 -64.3023 4.07966e-17) (134.168 -64.3619 1.48389e-18) (134.866 -64.7143 0) (135.131 -64.8542 4.99793e-18) (137.397 -64.9591 -6.28031e-18) (138.958 -65.4653 -2.52008e-17) (140.662 -64.7827 0) (142.245 -64.415 1.52753e-18) (144.164 -62.8654 1.14513e-17) (144.781 -61.7761 0) (144.508 -61.1347 -1.13138e-17) (146.419 -61.2594 4.92741e-18) (147.422 -61.6434 6.8311e-18) (148.251 -61.5564 -4.62398e-17) (150.724 -61.3241 -1.55972e-18) (153.517 -60.8453 -2.8352e-17) (155.955 -58.7895 2.04766e-20) (156.51 -56.7187 1.63324e-17) (157.501 -56.6171 -8.33957e-18) (158.267 -56.0411 0) (159.134 -55.8938 -8.7287e-18) (160.06 -55.34 1.12489e-17) (162.695 -54.9978 6.20725e-22) (166.024 -53.3911 1.28268e-17) (168.282 -50.2061 -1.61967e-20) (168.308 -47.746 1.73107e-17) (169.43 -47.5633 -1.1886e-17) (170.464 -46.5853 -2.48012e-17) (172.139 -45.9649 1.59837e-17) (175.209 -44.4797 -4.6053e-18) (177.307 -39.8916 -5.57446e-18) (177.521 -39.2545 6.83966e-18) (178.804 -36.2406 -3.2563e-18) (179.334 -34.2647 -2.02116e-18) (180.826 -32.0888 2.18991e-18) (182.805 -28.644 8.70404e-18) (183.436 -24.348 -4.50447e-18) (181.839 -20.8343 0) (182.048 -20.458 2.96248e-22) (181.618 -17.2537 -9.0308e-18) (180.937 -13.7689 8.76681e-19) (179.533 -10.1698 -1.78263e-18) (177.143 -7.25909 2.73075e-18) (174.19 -5.07143 -3.61812e-18) (171.194 -3.63308 1.73909e-18) (168.379 -2.92644 0) (165.955 -2.56609 -1.12319e-19) (163.897 -2.35319 1.11584e-19) (162.103 -2.16559 1.39844e-20) (160.489 -2.03395 2.24021e-19) (159.012 -1.93281 0) (157.647 -1.85182 0) (156.376 -1.78384 1.12686e-19) (155.186 -1.71445 -1.12402e-19) (154.07 -1.65316 1.4119e-20) (153.024 -1.58148 2.25798e-19) (152.039 -1.52418 -2.25986e-19) (151.113 -1.45781 0) (150.234 -1.40676 0) (149.404 -1.34295 0) (148.611 -1.29637 0) (147.86 -1.23652 0) (147.137 -1.19585 0) (146.45 -1.14124 0) (145.784 -1.10442 0) (145.149 -1.05147 0) (144.532 -1.0189 0) (143.943 -0.970885 0) (143.365 -0.941716 0) (142.811 -0.895407 0) (142.265 -0.869647 0) (141.741 -0.827216 0) (141.222 -0.804264 0) (140.724 -0.763706 0) (140.228 -0.743679 0) (139.751 -0.705788 0) (139.276 -0.687304 0) (138.818 -0.650552 0) (138.36 -0.634544 0) (137.92 -0.599816 0) (137.478 -0.585594 0) (137.053 -0.552771 0) (136.625 -0.54093 0) (136.214 -0.509389 0) (135.8 -0.499067 0) (135.403 -0.469442 0) (135.001 -0.461044 0) (134.616 -0.431673 0) (134.228 -0.424383 0) (133.856 -0.397243 -2.2999e-19) (133.479 -0.392109 2.30457e-19) (133.12 -0.364888 0) (132.756 -0.360873 0) (132.409 -0.336315 -2.3029e-19) (132.057 -0.334433 2.30743e-19) (131.721 -0.309388 -2.30425e-19) (131.382 -0.30841 2.30873e-19) (131.058 -0.286169 -2.30554e-19) (130.73 -0.286951 2.31e-19) (130.416 -0.263295 0) (130.1 -0.263389 0) (129.799 -0.243701 -2.308e-19) (129.493 -0.245123 2.31238e-19) (129.204 -0.223911 0) (128.909 -0.224425 0) (128.633 -0.206431 0) (128.348 -0.208334 0) (128.083 -0.189485 0) (127.811 -0.190843 0) (127.56 -0.175049 0) (127.298 -0.177713 0) (127.059 -0.160657 0) (126.809 -0.162571 0) (126.585 -0.148405 0) (126.346 -0.151467 0) (126.133 -0.135655 0) (125.906 -0.137917 0) (125.708 -0.125097 0) (125.49 -0.128556 0) (125.303 -0.113771 0) (125.097 -0.11638 0) (124.923 -0.104681 -2.31529e-19) (124.726 -0.108525 2.31955e-19) (124.563 -0.0945833 0) (124.377 -0.0975513 0) (124.225 -0.0866627 0) (124.048 -0.0908883 0) (123.906 -0.0786415 0) (123.738 -0.0816791 0) (123.606 -0.0712672 0) (123.448 -0.075203 0) (123.326 -0.0646236 0) (123.174 -0.0677872 0) (123.061 -0.0577111 0) (122.919 -0.0614167 0) (122.815 -0.0515097 0) (122.68 -0.0547675 0) (122.584 -0.0454004 2.31928e-19) (122.457 -0.0491607 0) (122.369 -0.0400302 0) (122.248 -0.0435655 0) (122.169 -0.0350046 0) (122.054 -0.0390279 0) (121.982 -0.0300263 0) (121.873 -0.0336453 0) (121.808 -0.0252097 0) (121.706 -0.0294723 0) (121.648 -0.0206665 0) (121.551 -0.0246281 0) (121.499 -0.016308 0) (121.408 -0.0208485 0) (121.361 -0.0121897 0) (121.275 -0.0164883 0) (121.234 -0.0083152 0) (121.154 -0.0131763 0) (121.118 -0.00466284 0) (121.041 -0.00925943 0) (121.011 -0.00120555 0) (120.939 -0.00635499 0) (120.913 0.00206581 0) (120.844 -0.00282432 0) (120.823 0.0051328 0) (120.759 -0.000353215 0) (120.741 0.00792073 0) (120.68 0.00266988 0) (120.666 0.0105059 0) (120.609 0.00471775 0) (120.599 0.0129 0) (120.544 0.00739325 0) (120.537 0.0151648 0) (120.486 0.0091529 0) (120.482 0.0172525 0) (120.433 0.011536 0) (120.432 0.0192646 0) (120.386 0.0130291 0) (120.388 0.0211157 0) (120.344 0.0151685 0) (120.348 0.0228583 0) (120.307 0.0163149 0) (120.314 0.0243688 0) (120.275 0.018147 0) (120.284 0.0258551 0) (120.247 0.0190953 0) (120.258 0.0271802 0) (120.223 0.0207438 0) (120.236 0.0284252 0) (120.204 0.0213829 0) (120.218 0.0293953 0) (120.187 0.0227276 0) (120.204 0.0304244 0) (120.175 0.0232368 0) (120.193 0.031245 0) (120.165 0.0244186 0) (120.185 0.032079 0) (120.159 0.0246977 0) (120.179 0.0326115 0) (120.155 0.0256398 0) (120.177 0.0332611 0) (120.154 0.0257519 0) (120.177 0.0335845 0) (120.155 0.0264932 0) (120.179 0.0340691 0) (120.158 0.0264967 0) (120.183 0.0342781 0) (120.164 0.0271367 0) (120.19 0.0346566 0) (120.171 0.0270454 0) (120.199 0.0348627 0) (120.181 0.0278778 0) (120.21 0.03548 0) (120.193 0.0280722 0) (120.223 0.0358815 0) (120.208 0.0289622 0) (120.238 0.0364846 0) (120.224 0.0291926 0) (120.256 0.0369604 0) (120.243 0.0302188 0) (120.275 0.0376996 0) (120.264 0.0305178 0) (120.297 0.0381598 0) (120.287 0.031414 0) (120.322 0.0386425 0) (120.313 0.0313685 0) (120.348 0.038646 0) (120.339 0.031805 0) (120.376 0.0388039 0) (120.368 0.0315189 0) (120.404 0.0385706 0) (120.397 0.0315645 0) (120.434 0.0384061 0) (120.427 0.0310969 -1.15618e-19) (120.467 0.0382916 3.468e-19) (120.46 0.0310951 -2.16532e-19) (120.497 0.0375325 0) (120.491 0.0300612 0) (120.528 0.0369078 0) (120.522 0.0300087 0) (120.562 0.0362579 -2.88822e-20) (120.555 0.0282388 1.15268e-19) (120.601 0.0346085 2.30355e-19) (120.595 0.0271258 -1.14865e-19) (120.635 0.0387834 2.29776e-19) (120.617 0.0430868 2.30614e-19) (120.569 0.0818223 -2.36967e-19) (120.503 0.13027 4.45083e-18) (120.804 0.215122 -6.44877e-18) (121.414 0.331027 9.22098e-18) (134.252 0.260259 0) (141.473 0.0478275 -1.78239e-18) (141.4 0.122384 9.63564e-18) (133.977 0.192912 -9.87492e-18) (133.597 0.109678 -1.83463e-18) (140.845 0.0873587 9.18865e-19) (143.148 0.202658 4.76433e-18) (143.113 0.106365 -1.39843e-17) (143.201 0.217195 -7.7046e-21) (146.996 0.141548 -1.12314e-17) (147.971 0.0311498 0) (148.03 0.107505 6.79844e-18) (148.128 0.106728 -3.48711e-17) (146.932 0.148056 -7.34891e-19) (142.599 0.149935 5.14278e-18) (141.011 0.0634063 -3.208e-23) (133.767 0.0633129 -2.22102e-19) (133.67 0.0267645 -4.37039e-19) (140.551 0.0245677 -2.65925e-17) (140.831 0.0152081 2.73682e-17) (133.849 0.0329479 -2.18451e-19) (133.704 0.0249899 1.09957e-19) (140.481 0.0044188 2.86898e-17) (142.031 0.0731462 -5.60006e-18) (146.463 0.106912 -2.04918e-17) (146.543 0.0517867 -4.82169e-18) (141.876 0.0337175 1.03884e-17) (140.735 0.00342473 -2.87725e-17) (133.836 0.03827 -3.31205e-19) (133.697 0.0343527 9.67069e-25) (140.415 -0.00130827 0) (140.676 -0.00542688 2.20364e-19) (133.835 0.0466754 0) (133.712 0.0419547 -1.77764e-18) (140.432 -0.00138764 1.99205e-18) (141.644 -0.00176658 -4.58591e-23) (146.275 0.00614475 0) (147.393 0.0612216 -5.08521e-18) (147.089 0.0120601 0) (146.36 -0.0151402 -2.95312e-18) (141.734 -0.0128261 4.6807e-18) (140.704 -0.00838456 -2.21095e-18) (133.853 0.0487162 1.77805e-18) (133.735 0.040945 -1.77853e-18) (140.44 -0.00631924 1.77271e-18) (140.712 -0.0148303 0) (133.878 0.0490185 0) (133.764 0.0426669 2.22372e-19) (140.481 -0.00737181 0) (141.659 -0.0254174 1.57512e-18) (146.165 -0.0363274 -2.14717e-18) (146.306 -0.0433142 0) (141.753 -0.0258104 6.3266e-18) (140.757 -0.0152636 -2.83916e-17) (133.912 0.0490953 -2.2237e-19) (133.799 0.0412172 0) (140.507 -0.0101708 0) (140.781 -0.0187978 0) (133.947 0.0481951 0) (133.836 0.0413921 0) (140.555 -0.0102756 2.84299e-17) (141.716 -0.0311041 -7.97415e-18) (146.146 -0.0514031 2.16727e-18) (146.965 -0.0265039 2.79488e-18) (150.129 0.0106336 -2.9199e-18) (150.202 0.0531523 0) (150.344 0.0909428 1.17225e-17) (150.558 0.109861 0) (151.915 -0.0190582 -5.75454e-18) (151.831 -8.61457e-05 -1.47087e-17) (151.778 -0.00400295 1.8748e-19) (151.747 -0.019938 2.60983e-18) (151.734 -0.0390949 3.78744e-19) (150.1 -0.0300031 7.43855e-19) (146.924 -0.0518287 -1.77804e-18) (146.297 -0.0533937 -3.25267e-19) (141.81 -0.0283737 4.95833e-20) (140.829 -0.017869 0) (133.984 0.0476505 1.11298e-19) (133.873 0.0400173 -1.11092e-19) (140.584 -0.0124022 0) (140.857 -0.0207796 0) (134.023 0.0472323 0) (133.914 0.0403863 0) (140.633 -0.0125835 0) (141.783 -0.032347 -4.9599e-20) (146.148 -0.0563582 -1.08663e-19) (146.3 -0.0587164 -2.78273e-17) (141.876 -0.0300567 -6.30265e-18) (140.906 -0.0203504 0) (134.064 0.0464617 -1.11317e-19) (133.954 0.0384908 -1.66663e-18) (140.663 -0.0154417 3.01267e-17) (140.937 -0.024347 0) (134.106 0.0454685 0) (133.999 0.0382388 0) (140.715 -0.0166161 0) (141.853 -0.0354868 0) (146.157 -0.0614718 0) (146.909 -0.0677936 5.64769e-18) (146.908 -0.0787218 -5.75346e-18) (146.311 -0.066917 2.78907e-17) (141.947 -0.034712 -6.35003e-18) (140.987 -0.0248816 0) (134.152 0.0439426 -1.11322e-19) (134.045 0.0354399 -1.6667e-18) (140.748 -0.0206233 3.01254e-17) (141.022 -0.0304171 0) (134.2 0.0419099 0) (134.096 0.0345168 0) (140.804 -0.0226267 0) (141.927 -0.0412996 0) (146.174 -0.0689982 5.4394e-20) (146.328 -0.0757413 -1.08731e-19) (142.023 -0.0412013 -6.35281e-18) (141.075 -0.0310606 0) (134.251 0.0400801 -1.11326e-19) (134.147 0.0315066 -1.66677e-18) (140.84 -0.0265638 3.01242e-17) (141.113 -0.036613 0) (134.305 0.0378111 0) (134.205 0.0304051 0) (140.898 -0.0284543 0) (142.007 -0.048003 0) (146.196 -0.0776815 0) (146.92 -0.086505 0) (150.073 -0.0846828 0) (150.079 -0.0753002 0) (150.088 -0.0592421 -2.82371e-19) (151.73 -0.0578296 -1.91887e-19) (151.728 -0.0723784 0) (151.725 -0.083433 0) (152.77 -0.0842961 0) (152.771 -0.0735771 0) (152.77 -0.0622145 1.93633e-19) (152.77 -0.0513281 -2.86603e-19) (152.774 -0.0413583 -1.60331e-18) (152.784 -0.0362714 0) (152.804 -0.0428306 8.33917e-19) (152.845 -0.0672105 6.77459e-18) (153.498 -0.0759901 -4.73129e-19) (153.476 -0.0593761 0) (153.466 -0.0522438 -1.54174e-18) (153.461 -0.0529211 0) (153.925 -0.0555546 3.77243e-19) (153.93 -0.0557637 1.53383e-18) (153.939 -0.0604107 -1.64735e-18) (153.957 -0.068331 0) (154.274 -0.0558189 -6.70095e-19) (154.258 -0.0536704 1.4199e-18) (154.248 -0.0516456 4.74932e-20) (154.24 -0.0521765 -2.34151e-19) (154.233 -0.0554384 4.7423e-20) (153.922 -0.0587828 -1.90875e-19) (153.46 -0.0578904 5.26447e-19) (153.46 -0.0650404 1.45478e-19) (153.459 -0.074109 2.44187e-20) (153.457 -0.0839069 0) (153.91 -0.0821051 0) (153.915 -0.0728447 -1.21778e-20) (153.919 -0.0648323 -9.67085e-20) (154.227 -0.0610351 0) (154.22 -0.0684484 -1.2106e-20) (154.213 -0.0772983 0) (154.42 -0.0700573 0) (154.43 -0.0615428 0) (154.439 -0.0545041 0) (154.449 -0.0490979 -7.05072e-20) (154.458 -0.0455224 -1.39194e-19) (154.469 -0.0438893 0) (154.48 -0.0436809 4.99454e-20) (154.494 -0.0427192 9.2896e-19) (154.65 -0.030349 5.36554e-20) (154.637 -0.0329704 4.92031e-20) (154.625 -0.0346409 4.64116e-20) (154.614 -0.0371021 -4.5858e-20) (154.728 -0.0281237 5.65363e-21) (154.74 -0.0252807 -2.28685e-20) (154.751 -0.0229337 -7.2666e-20) (154.763 -0.0196936 0) (154.847 -0.0109646 -3.23039e-21) (154.836 -0.0140837 -2.3801e-20) (154.826 -0.0165304 -2.24859e-20) (154.814 -0.0193549 -8.34286e-21) (154.802 -0.0229576 0) (154.716 -0.0319562 -5.7262e-21) (154.602 -0.0409191 2.90421e-20) (154.591 -0.0461735 0) (154.58 -0.0528794 0) (154.569 -0.0610372 0) (154.679 -0.0510181 0) (154.692 -0.0432812 0) (154.704 -0.0369627 0) (154.79 -0.0275727 0) (154.777 -0.0334075 0) (154.764 -0.0406398 0) (154.75 -0.049432 0) (154.666 -0.0602722 0) (154.557 -0.0706623 0) (154.41 -0.0799596 0) (154.205 -0.0873924 0) (153.906 -0.092332 0) (153.455 -0.0940806 0) (152.768 -0.0942285 0) (151.722 -0.0918829 0) (150.068 -0.0919398 0) (146.937 -0.0933611 0) (146.351 -0.0844494 0) (142.105 -0.0478956 -6.35242e-18) (141.169 -0.0370755 0) (134.363 0.0359114 -1.1133e-19) (134.263 0.02745 -1.66681e-18) (140.936 -0.0321841 3.01223e-17) (141.208 -0.0424199 0) (134.423 0.0337715 0) (134.326 0.0265062 0) (140.996 -0.0339334 0) (142.091 -0.0543934 0) (146.223 -0.0859013 0) (146.378 -0.0921219 0) (142.189 -0.0539736 -6.35202e-18) (141.266 -0.0426655 0) (134.487 0.0320312 -1.11332e-19) (134.389 0.023686 -1.66684e-18) (141.037 -0.03736 3.01205e-17) (141.308 -0.0476123 0) (134.552 0.0299621 0) (134.457 0.0227603 0) (141.098 -0.0388001 0) (142.177 -0.0599693 0) (146.252 -0.0927535 0) (146.958 -0.100128 0) (146.98 -0.106273 -5.75863e-18) (146.405 -0.0984214 0) (142.275 -0.0592378 -6.35158e-18) (141.366 -0.0475726 0) (134.621 0.0282292 -1.11333e-19) (134.526 0.0199769 -1.66685e-18) (141.14 -0.0420028 3.01182e-17) (141.409 -0.0523032 0) (134.691 0.0261988 0) (134.599 0.0190895 0) (141.202 -0.0433874 0) (142.265 -0.0649361 0) (146.281 -0.0984653 2.78512e-17) (146.433 -0.103846 2.78447e-17) (142.363 -0.064117 -6.35112e-18) (141.468 -0.0522442 0) (134.765 0.0244973 -1.11332e-19) (134.673 0.016242 -1.66685e-18) (141.245 -0.0467097 3.01158e-17) (141.511 -0.0572225 0) (134.84 0.0222482 0) (134.751 0.0150834 0) (141.308 -0.048288 0) (142.354 -0.069751 0) (146.311 -0.103353 0) (147.002 -0.111772 -5.75865e-18) (150.075 -0.118189 0) (150.07 -0.108938 0) (150.068 -0.099932 0) (151.72 -0.0992103 0) (151.721 -0.107644 0) (151.725 -0.116997 0) (151.731 -0.126833 0) (150.08 -0.127414 0) (147.024 -0.116914 -5.75844e-18) (146.462 -0.10876 0) (142.451 -0.0689688 0) (141.571 -0.057193 1.7778e-18) (134.919 0.0202404 -1.89265e-18) (134.83 0.0118757 1.11125e-19) (141.351 -0.0517741 0) (141.615 -0.062434 0) (134.999 0.017631 0) (134.914 0.0104308 0) (141.415 -0.0536059 0) (142.443 -0.0747766 0) (146.341 -0.108306 2.78491e-17) (146.49 -0.114098 2.78428e-17) (142.539 -0.0742171 0) (141.675 -0.0626343 1.77763e-18) (135.083 0.0153804 -1.89258e-18) (134.998 0.00691487 1.11123e-19) (141.459 -0.0574886 0) (141.72 -0.068408 0) (135.169 0.0123543 0) (135.087 0.00510948 0) (141.524 -0.0595864 0) (142.533 -0.080409 0) (146.372 -0.113926 0) (147.047 -0.122411 -5.75846e-18) (147.071 -0.128568 -5.75823e-18) (146.52 -0.120441 0) (142.629 -0.0800965 0) (141.781 -0.0686425 1.77746e-18) (135.258 0.00981673 -1.89249e-18) (135.176 0.00124628 1.11118e-19) (141.569 -0.0636393 0) (141.826 -0.0748476 0) (135.349 0.0063698 0) (135.271 -0.000909713 0) (141.634 -0.0660826 0) (142.623 -0.0866174 0) (146.405 -0.120425 2.78469e-17) (146.552 -0.127509 2.7841e-17) (142.719 -0.0865282 0) (141.887 -0.0752534 1.77727e-18) (135.444 0.00352334 -1.89238e-18) (135.366 -0.00516075 1.11111e-19) (141.679 -0.0704672 0) (141.934 -0.081897 0) (135.541 -0.000375188 0) (135.466 -0.00770047 0) (141.745 -0.0731551 0) (142.715 -0.0933312 0) (146.439 -0.12767 0) (147.097 -0.135388 -5.75828e-18) (150.104 -0.156423 0) (150.094 -0.146146 0) (150.086 -0.136616 0) (151.737 -0.136781 0) (151.745 -0.1473 0) (151.756 -0.158751 0) (151.77 -0.171353 0) (150.116 -0.167777 0) (147.126 -0.142947 0) (146.586 -0.135373 0) (142.809 -0.0934973 0) (141.995 -0.0823701 1.77708e-18) (135.641 -0.00354342 -1.89224e-18) (135.567 -0.0123693 1.11102e-19) (141.792 -0.0778191 0) (142.043 -0.0895855 0) (135.743 -0.00799826 0) (135.673 -0.0153936 0) (141.859 -0.0808735 0) (142.807 -0.100637 0) (146.475 -0.135658 0) (146.622 -0.144106 0) (142.901 -0.101048 0) (142.105 -0.0901483 1.77686e-18) (135.849 -0.0115698 -1.89208e-18) (135.78 -0.0205385 1.11092e-19) (141.906 -0.0858269 0) (142.153 -0.097838 0) (135.958 -0.0165274 0) (135.891 -0.0238974 0) (141.973 -0.089082 0) (142.9 -0.108509 0) (146.514 -0.144728 0) (147.157 -0.151411 0) (147.191 -0.16099 -5.75776e-18) (146.66 -0.154073 0) (142.994 -0.109146 0) (142.215 -0.0983398 1.77663e-18) (136.069 -0.0203216 -1.89188e-18) (136.003 -0.0293116 1.11079e-19) (142.021 -0.094073 0) (142.264 -0.106227 0) (136.182 -0.0256159 0) (136.119 -0.0328437 0) (142.089 -0.0973478 0) (142.994 -0.116858 0) (146.555 -0.155144 2.78423e-17) (146.701 -0.165262 2.78368e-17) (143.087 -0.117644 0) (142.327 -0.106637 1.7764e-18) (136.298 -0.0296464 -1.89166e-18) (136.236 -0.0388007 1.11065e-19) (142.137 -0.102624 0) (142.376 -0.115168 0) (136.416 -0.0356399 0) (136.357 -0.0429686 0) (142.206 -0.106366 0) (143.088 -0.12558 0) (146.599 -0.166262 0) (147.228 -0.171802 -5.75783e-18) (150.173 -0.211061 0) (150.15 -0.194804 0) (150.132 -0.180474 0) (151.787 -0.185338 0) (151.807 -0.200959 0) (151.83 -0.218476 0) (151.858 -0.238178 0) (150.198 -0.229544 0) (147.268 -0.183834 -5.75747e-18) (146.745 -0.177122 0) (143.181 -0.126547 0) (142.439 -0.115798 1.77615e-18) (136.537 -0.0403154 -1.8914e-18) (136.479 -0.0496433 1.11049e-19) (142.254 -0.11202 0) (142.489 -0.124819 0) (136.66 -0.0469469 0) (136.606 -0.0543106 0) (142.324 -0.116095 0) (143.183 -0.134968 0) (146.646 -0.178378 2.78396e-17) (146.792 -0.190146 0) (143.276 -0.136141 0) (142.552 -0.125674 1.77588e-18) (136.786 -0.052151 -1.89111e-18) (136.733 -0.0616624 1.1103e-19) (142.373 -0.122315 0) (142.604 -0.135513 0) (136.914 -0.0595074 0) (136.864 -0.0670202 0) (142.444 -0.126863 0) (143.279 -0.14556 0) (146.696 -0.191772 0) (147.312 -0.197116 0) (147.361 -0.211573 0) (146.844 -0.204588 0) (143.372 -0.147087 0) (142.669 -0.136662 1.77563e-18) (137.045 -0.0654333 -1.89078e-18) (136.996 -0.0752546 1.1101e-19) (142.495 -0.133718 0) (142.721 -0.147417 0) (137.178 -0.0737766 0) (137.133 -0.0814159 0) (142.567 -0.138808 0) (143.378 -0.157439 0) (146.751 -0.206521 0) (146.9 -0.220577 2.78315e-17) (143.471 -0.15929 0) (142.787 -0.148842 1.77536e-18) (137.314 -0.0803632 -1.89041e-18) (137.27 -0.090403 1.10988e-19) (142.62 -0.146346 0) (142.841 -0.160627 0) (137.453 -0.0895004 0) (137.412 -0.097195 0) (142.694 -0.152003 0) (143.478 -0.170662 0) (146.812 -0.22287 0) (147.416 -0.227615 -5.75721e-18) (150.305 -0.30082 0) (150.264 -0.274091 0) (150.229 -0.250487 0) (151.89 -0.260361 0) (151.928 -0.285373 0) (151.971 -0.313707 0) (153.013 -0.36857 0) (152.972 -0.333232 0) (152.935 -0.302037 0) (152.903 -0.274405 0) (152.876 -0.249857 0) (152.853 -0.227986 0) (152.833 -0.208453 0) (152.816 -0.190927 0) (152.802 -0.175129 0) (152.791 -0.160815 0) (152.783 -0.147703 0) (152.776 -0.135042 0) (152.77 -0.123072 0) (152.767 -0.112333 0) (152.767 -0.103169 0) (153.453 -0.104342 0) (153.452 -0.114455 0) (153.452 -0.125524 0) (153.895 -0.127425 0) (153.898 -0.115147 0) (153.901 -0.103397 0) (154.198 -0.098662 0) (154.19 -0.11111 0) (154.184 -0.124711 -4.8552e-20) (154.179 -0.139459 4.8562e-20) (153.893 -0.140975 0) (153.455 -0.138364 0) (153.461 -0.152788 0) (153.467 -0.168158 0) (153.476 -0.184491 0) (153.901 -0.192671 0) (153.897 -0.17372 0) (153.894 -0.15628 0) (154.174 -0.155696 0) (154.172 -0.173889 0) (154.171 -0.194196 0) (154.351 -0.191504 0) (154.356 -0.170276 0) (154.363 -0.15114 0) (154.372 -0.133721 0) (154.38 -0.118025 0) (154.39 -0.103888 0) (154.4 -0.0912234 0) (154.545 -0.0817882 0) (154.532 -0.0944776 0) (154.52 -0.10882 0) (154.626 -0.0980912 0) (154.639 -0.0837093 0) (154.653 -0.0711368 0) (154.736 -0.0599297 0) (154.722 -0.0722649 -4.5785e-20) (154.707 -0.0865603 4.57357e-20) (154.693 -0.102927 0) (154.612 -0.114385 0) (154.509 -0.12492 0) (154.498 -0.142921 0) (154.488 -0.162933 0) (154.478 -0.185163 0) (154.575 -0.176073 0) (154.587 -0.153236 0) (154.599 -0.132725 0) (154.679 -0.121475 0) (154.665 -0.142329 0) (154.651 -0.165619 0) (154.638 -0.191542 0) (154.564 -0.20143 0) (154.47 -0.209771 0) (154.346 -0.215207 -4.80799e-20) (154.172 -0.216723 0) (153.908 -0.213193 0) (153.487 -0.202452 0) (153.502 -0.22228 0) (153.519 -0.244293 0) (153.54 -0.268812 0) (153.943 -0.288251 0) (153.929 -0.260576 0) (153.917 -0.235636 0) (154.175 -0.241607 0) (154.18 -0.268953 0) (154.187 -0.299125 0) (154.198 -0.332746 0) (153.961 -0.319078 0) (153.564 -0.296181 0) (153.592 -0.326872 0) (153.625 -0.36138 0) (153.663 -0.400352 0) (154.039 -0.43581 0) (154.009 -0.392266 0) (153.983 -0.353578 0) (154.211 -0.370376 0) (154.227 -0.412528 0) (154.248 -0.459897 0) (154.369 -0.474868 0) (154.358 -0.42421 0) (154.351 -0.379147 0) (154.346 -0.338926 0) (154.343 -0.30295 0) (154.342 -0.270643 0) (154.343 -0.241551 4.8073e-20) (154.463 -0.23701 0) (154.457 -0.267301 0) (154.452 -0.301112 0) (154.535 -0.295638 -4.63706e-20) (154.544 -0.260801 0) (154.553 -0.229548 0) (154.626 -0.22033 0) (154.614 -0.252348 0) (154.603 -0.288043 0) (154.592 -0.327945 0) (154.528 -0.334518 9.26139e-20) (154.449 -0.338791 0) (154.447 -0.380935 0) (154.447 -0.428223 0) (154.449 -0.481521 0) (154.511 -0.482661 -4.61189e-20) (154.515 -0.427148 4.61823e-20) (154.521 -0.378093 -4.62619e-20) (154.581 -0.372778 0) (154.572 -0.423448 0) (154.562 -0.481003 0) (154.607 -0.478287 -8.60618e-20) (154.62 -0.419018 2.6827e-24) (154.633 -0.366786 2.33464e-24) (154.646 -0.320651 4.35847e-20) (154.659 -0.279696 0) (154.672 -0.243151 0) (154.686 -0.21042 0) (154.7 -0.181034 0) (154.714 -0.154619 0) (154.728 -0.13094 4.43429e-20) (154.743 -0.109827 -8.88703e-20) (154.758 -0.0911477 8.9064e-20) (154.774 -0.0748061 -4.46258e-20) (154.789 -0.0606873 0) (154.803 -0.0486792 0) (154.818 -0.0386359 0) (154.832 -0.0303885 0) (154.845 -0.0237461 0) (154.857 -0.0184954 0) (154.869 -0.0144109 0) (154.881 -0.0112483 8.54947e-27) (154.892 -0.00873355 -2.75813e-21) (154.901 -0.00650062 0) (154.911 -0.00401266 3.2922e-27) (154.961 0.00148737 -3.09087e-21) (154.952 -0.000265539 0) (154.944 -0.00204749 -8.10264e-21) (154.934 -0.00404497 9.50779e-27) (154.977 0.00212978 2.60995e-21) (154.986 0.00349068 1.05607e-20) (154.993 0.0046466 0) (155.001 0.00575806 -1.80878e-20) (155.033 0.00890966 7.04163e-20) (155.027 0.00838885 -1.30597e-19) (155.02 0.00790375 0) (155.012 0.00721281 0) (155.003 0.00603156 -1.0276e-20) (154.967 0.000235225 0) (154.923 -0.00661814 0) (154.912 -0.0100629 0) (154.899 -0.0146436 0) (154.886 -0.0206222 0) (154.932 -0.0116087 0) (154.944 -0.00634919 0) (154.956 -0.00249871 0) (154.993 0.00403769 0) (154.982 0.000945282 0) (154.97 -0.00356547 0) (155.002 0.00331275 -2.5138e-21) (155.014 0.0070754 0) (155.024 0.00941464 0) (155.033 0.0106816 1.00096e-20) (155.041 0.0111666 7.94539e-20) (155.049 0.0112152 -4.02278e-20) (155.054 0.0110626 -8.48434e-20) (155.06 0.0110568 4.56477e-20) (155.082 0.0122716 0) (155.077 0.012723 4.95483e-19) (155.072 0.0134326 7.84123e-20) (155.066 0.0139494 -1.16065e-19) (155.087 0.0155036 0) (155.092 0.0145421 -3.05223e-19) (155.096 0.0134054 -4.01918e-19) (155.1 0.0126225 8.63934e-20) (155.115 0.0121155 1.68616e-19) (155.112 0.0131036 3.13801e-19) (155.109 0.0145023 2.97218e-19) (155.104 0.0157481 0) (155.098 0.0167702 -2.94016e-19) (155.08 0.016169 1.51388e-19) (155.059 0.0140971 0) (155.05 0.0134977 0) (155.041 0.0118628 -4.89656e-21) (155.03 0.00881448 -4.09668e-26) (155.054 0.012707 4.7158e-21) (155.064 0.0151114 4.74648e-21) (155.073 0.0161315 0) (155.091 0.0171442 0) (155.083 0.0166091 0) (155.074 0.014752 2.28119e-21) (155.091 0.0147949 -3.98263e-20) (155.099 0.0162006 8.99775e-21) (155.107 0.0164026 -2.88981e-19) (155.113 0.0157999 -1.44136e-19) (155.118 0.014625 1.15034e-18) (155.122 0.0132838 2.92826e-19) (155.125 0.0118589 -9.5038e-19) (155.127 0.0108351 1.00869e-18) (155.136 0.00882676 -2.04949e-18) (155.134 0.00978894 1.97421e-20) (155.132 0.0109966 2.97498e-19) (155.128 0.0122411 -8.74099e-19) (155.135 0.00899429 9.20519e-19) (155.139 0.00801945 -3.13915e-19) (155.141 0.00713982 -3.34102e-19) (155.142 0.0064244 1.42338e-18) (155.146 0.00387854 0) (155.144 0.00428941 0) (155.142 0.0047991 -3.35537e-19) (155.14 0.0054126 0) (155.136 0.00593474 0) (155.131 0.00986005 -6.87097e-19) (155.124 0.0133497 -5.0985e-19) (155.118 0.0139929 5.82775e-19) (155.111 0.0139755 -9.06047e-21) (155.103 0.0129481 -2.80146e-22) (155.112 0.00974733 -2.99426e-19) (155.12 0.010445 3.02766e-19) (155.126 0.010393 6.098e-19) (155.131 0.00627756 -4.04058e-20) (155.125 0.00632624 2.79823e-19) (155.117 0.00592404 -3.16384e-19) (155.107 0.00489635 -2.91664e-20) (155.102 0.00802036 -9.21231e-21) (155.093 0.0105383 3.53762e-20) (155.08 0.0117554 3.5237e-20) (155.063 0.0111256 0) (155.043 0.00848299 0) (155.018 0.0039487 0) (154.99 -0.00223917 0) (154.957 -0.0098251 0) (154.918 -0.0185714 0) (154.873 -0.0282541 0) (154.858 -0.0377733 0) (154.843 -0.0493865 0) (154.828 -0.0632621 0) (154.874 -0.052287 0) (154.889 -0.0386854 0) (154.904 -0.0275141 0) (154.943 -0.0181606 0) (154.929 -0.0288679 0) (154.914 -0.0421908 0) (154.898 -0.0583056 0) (154.859 -0.0684676 0) (154.813 -0.0795304 0) (154.797 -0.098302 0) (154.782 -0.119658 0) (154.767 -0.143724 0) (154.812 -0.133491 0) (154.827 -0.108979 0) (154.843 -0.0873413 0) (154.882 -0.0773309 0) (154.867 -0.0993256 0) (154.851 -0.124375 0) (154.886 -0.116661 0) (154.901 -0.0910271 0) (154.917 -0.0685971 0) (154.932 -0.0493534 0) (154.948 -0.0332642 0) (154.962 -0.0202026 0) (154.977 -0.00995926 0) (155.005 -0.00316989 0) (154.992 -0.0129584 0) (154.977 -0.0257716 0) (155.002 -0.0199003 0) (155.017 -0.00736472 0) (155.03 0.00195243 0) (155.051 0.00520536 0) (155.038 -0.00354483 -2.755e-22) (155.024 -0.0156293 0) (155.01 -0.0314126 0) (154.988 -0.0359557 0) (154.962 -0.0418683 0) (154.947 -0.0613632 0) (154.931 -0.084233 0) (154.916 -0.110398 0) (154.944 -0.105223 0) (154.958 -0.0788448 0) (154.973 -0.0556335 0) (154.996 -0.0510013 0) (154.982 -0.0738465 0) (154.967 -0.0987822 0) (154.949 -0.124163 0) (154.928 -0.133898 0) (154.901 -0.139899 0) (154.87 -0.145542 0) (154.836 -0.152578 0) (154.797 -0.161014 0) (154.752 -0.17065 0) (154.737 -0.200674 0) (154.722 -0.234182 0) (154.708 -0.271651 0) (154.75 -0.264545 -4.03985e-20) (154.766 -0.226144 0) (154.781 -0.191771 0) (154.82 -0.184102 0) (154.804 -0.219287 0) (154.788 -0.258414 0) (154.771 -0.301842 3.8795e-20) (154.734 -0.307535 -3.03435e-24) (154.693 -0.313702 0) (154.678 -0.361042 0) (154.663 -0.414428 0) (154.648 -0.474534 0) (154.684 -0.466391 0) (154.702 -0.408893 0) (154.718 -0.355629 3.99468e-20) (154.754 -0.348567 -3.95963e-20) (154.733 -0.398224 0) (154.706 -0.450179 0) (154.703 -0.41887 0) (154.746 -0.376988 0) (154.779 -0.335189 0) (154.803 -0.292964 0) (154.821 -0.252167 0) (154.838 -0.213536 0) (154.854 -0.177719 0) (154.885 -0.172103 0) (154.868 -0.206274 0) (154.847 -0.241531 0) (154.857 -0.220614 0) (154.888 -0.193134 0) (154.91 -0.163828 0) (154.925 -0.148275 0) (154.893 -0.169793 0) (154.853 -0.188933 0) (154.806 -0.207379 0) (154.818 -0.245936 0) (154.819 -0.275852 0) (154.782 -0.308753 0) (154.736 -0.341085 0) (154.682 -0.37523 0) (154.659 -0.326629 0) (154.717 -0.296779 0) (154.77 -0.270553 0) (154.754 -0.227175 0) (154.699 -0.249786 0) (154.639 -0.276016 0) (154.622 -0.223312 0) (154.684 -0.20152 0) (154.741 -0.18248 0) (154.794 -0.16598 0) (154.843 -0.151546 0) (154.888 -0.138094 0) (154.927 -0.123928 0) (154.959 -0.107375 0) (154.983 -0.0879987 0) (155.001 -0.0669323 0) (155.016 -0.0461181 0) (155.029 -0.0275503 0) (155.042 -0.0125865 0) (155.056 -0.00136973 2.67391e-22) (155.069 0.00655364 1.08608e-21) (155.082 0.00626264 -3.80745e-20) (155.069 -0.000404987 0) (155.057 -0.0100706 0) (155.067 -0.00741716 0) (155.079 -8.38863e-05 0) (155.091 0.0048838 1.13056e-21) (155.096 0.00300829 5.83421e-20) (155.084 -6.80443e-06 -1.85871e-20) (155.073 -0.00450183 0) (155.061 -0.010927 0) (155.055 -0.0176794 0) (155.044 -0.023258 0) (155.031 -0.0392551 0) (155.014 -0.0560691 0) (154.991 -0.0714139 0) (154.993 -0.050922 0) (155.02 -0.0413722 0) (155.04 -0.0296989 0) (155.045 -0.0182455 0) (155.022 -0.0248628 0) (154.992 -0.029872 0) (154.957 -0.0335877 0) (154.959 -0.058176 0) (154.961 -0.0839789 0) (154.924 -0.0941924 0) (154.882 -0.103549 0) (154.835 -0.113499 0) (154.831 -0.0775489 0) (154.877 -0.0704982 0) (154.92 -0.0642783 0) (154.917 -0.0369082 0) (154.875 -0.0405237 0) (154.828 -0.0447205 0) (154.778 -0.0495182 0) (154.781 -0.0856587 0) (154.786 -0.124838 0) (154.732 -0.137863 0) (154.673 -0.152634 0) (154.609 -0.169272 0) (154.6 -0.116494 0) (154.666 -0.105063 0) (154.726 -0.0948294 0) (154.722 -0.0548727 0) (154.661 -0.0607943 0) (154.594 -0.067386 0) (154.519 -0.0748112 0) (154.526 -0.129359 0) (154.538 -0.188041 0) (154.554 -0.248091 0) (154.573 -0.306274 0) (154.596 -0.361311 0) (154.623 -0.413697 0) (154.651 -0.462845 0) (154.669 -0.503358 0) (154.663 -0.528267 0) (154.633 -0.540408 0) (154.595 -0.545306 4.28105e-20) (154.554 -0.546634 0) (154.508 -0.545825 0) (154.454 -0.541851 0) (154.382 -0.532008 0) (154.272 -0.513334 0) (154.074 -0.485059 0) (153.706 -0.444568 0) (153.061 -0.408763 0) (152.021 -0.345951 0) (150.353 -0.331283 0) (147.477 -0.245645 -5.75662e-18) (146.963 -0.238357 0) (143.573 -0.172753 0) (142.909 -0.162272 1.77512e-18) (137.594 -0.0967469 -1.89001e-18) (137.555 -0.107026 1.10963e-19) (142.748 -0.160256 0) (142.965 -0.175159 0) (137.738 -0.106695 0) (137.702 -0.114395 0) (142.824 -0.166484 0) (143.583 -0.185339 0) (146.879 -0.241091 2.7833e-17) (147.033 -0.258315 2.78282e-17) (143.679 -0.187791 0) (143.034 -0.177142 1.77487e-18) (137.885 -0.11463 -1.88958e-18) (137.85 -0.125075 1.10936e-19) (142.88 -0.175638 0) (143.093 -0.191313 0) (138.034 -0.125419 0) (138.003 -0.133119 0) (142.958 -0.182729 0) (143.691 -0.201746 0) (146.954 -0.261716 0) (147.547 -0.266034 -5.75675e-18) (147.626 -0.289131 0) (147.112 -0.281015 0) (143.789 -0.20472 0) (143.164 -0.19394 1.77462e-18) (138.186 -0.134024 -1.88911e-18) (138.156 -0.144699 1.10906e-19) (143.016 -0.193166 0) (143.225 -0.209759 -1.77085e-18) (138.339 -0.145769 1.55388e-18) (138.314 -0.153262 0) (143.097 -0.200606 0) (143.805 -0.22014 1.58592e-18) (147.038 -0.285032 -1.73924e-18) (147.201 -0.306666 0) (143.905 -0.223311 -6.34258e-18) (143.299 -0.212208 0) (138.496 -0.15476 -1.11088e-19) (138.472 -0.165437 -1.66305e-18) (143.159 -0.211433 3.00479e-17) (143.364 -0.229167 0) (138.655 -0.167093 0) (138.634 -0.174276 0) (143.244 -0.219206 0) (143.925 -0.240291 0) (147.133 -0.311419 0) (147.716 -0.315263 0) (150.55 -0.451894 0) (150.474 -0.406062 0) (150.409 -0.366126 0) (152.078 -0.382777 0) (152.144 -0.424981 0) (152.219 -0.473483 0) (152.306 -0.529382 0) (150.637 -0.504592 0) (147.819 -0.344863 0) (147.301 -0.335729 0) (144.029 -0.24362 -6.34193e-18) (143.441 -0.231627 0) (138.817 -0.176621 -1.11055e-19) (138.797 -0.188081 -1.66253e-18) (143.309 -0.23127 3.00425e-17) (143.512 -0.250455 0) (138.981 -0.189946 0) (138.965 -0.196525 0) (143.4 -0.239734 0) (144.055 -0.26249 0) (147.241 -0.341047 0) (147.416 -0.368453 2.78193e-17) (144.163 -0.265725 -6.34124e-18) (143.592 -0.253022 0) (139.147 -0.200053 -1.1102e-19) (139.133 -0.213254 -1.66196e-18) (143.469 -0.252759 3.00367e-17) (143.672 -0.273427 0) (139.318 -0.215168 0) (139.307 -0.220361 0) (143.568 -0.262118 0) (144.197 -0.285882 0) (147.364 -0.374699 0) (147.937 -0.378541 -5.75532e-18) (148.074 -0.417153 -5.75396e-18) (147.547 -0.405784 0) (144.312 -0.29041 -6.3405e-18) (143.756 -0.276713 0) (139.488 -0.224224 -1.10981e-19) (139.48 -0.238403 -1.99552e-18) (143.643 -0.276576 3.00304e-17) (143.845 -0.298914 0) (139.666 -0.240514 3.32236e-19) (139.66 -0.246079 0) (143.751 -0.287027 0) (144.354 -0.312517 0) (147.504 -0.41361 2.78169e-17) (147.698 -0.448877 0) (144.477 -0.31792 -6.33969e-18) (143.937 -0.303371 0) (139.842 -0.250364 -1.10941e-19) (139.839 -0.265512 -1.66071e-18) (143.834 -0.303359 3.0024e-17) (144.035 -0.327893 0) (140.026 -0.267961 0) (140.027 -0.274756 0) (143.952 -0.315192 0) (144.53 -0.343258 0) (147.667 -0.458994 0) (148.232 -0.461484 0) (150.998 -0.716519 0) (150.859 -0.635479 0) (150.74 -0.565336 0) (152.407 -0.593984 0) (152.523 -0.668773 0) (152.657 -0.755554 0) (152.811 -0.856507 0) (151.16 -0.810292 0) (148.415 -0.513053 0) (147.873 -0.499314 0) (144.664 -0.348613 -6.33877e-18) (144.139 -0.333364 0) (140.21 -0.279191 -1.10899e-19) (140.214 -0.295093 -1.66003e-18) (144.047 -0.333316 3.00171e-17) (144.249 -0.360177 0) (140.402 -0.297653 0) (140.41 -0.305617 0) (144.177 -0.347008 0) (144.73 -0.376459 0) (147.854 -0.511916 0) (148.076 -0.558449 2.78046e-17) (144.877 -0.382938 -6.33771e-18) (144.366 -0.367429 0) (140.595 -0.310037 -1.10854e-19) (140.607 -0.32676 -1.65933e-18) (144.286 -0.367343 3.001e-17) (144.49 -0.396839 0) (140.798 -0.329297 0) (140.813 -0.33847 0) (144.431 -0.38355 0) (144.958 -0.412945 0) (148.072 -0.573798 0) (148.629 -0.573528 -5.75271e-18) (148.879 -0.644436 -5.75031e-18) (148.311 -0.627743 0) (145.121 -0.421617 -6.33651e-18) (144.623 -0.406666 0) (141.002 -0.342735 -1.10808e-19) (141.023 -0.360266 -1.65858e-18) (144.556 -0.406496 3.00024e-17) (144.764 -0.438951 0) (141.218 -0.362719 0) (141.243 -0.373243 0) (144.719 -0.425363 0) (145.222 -0.454366 0) (148.324 -0.646533 2.77966e-17) (148.584 -0.709301 5.43049e-20) (145.405 -0.465578 -6.33512e-18) (144.916 -0.451505 0) (141.437 -0.377426 -1.10756e-19) (141.468 -0.39608 -1.99117e-18) (144.865 -0.451003 2.99932e-17) (145.079 -0.487149 0) (141.669 -0.398315 3.31556e-19) (141.706 -0.409852 0) (145.05 -0.473692 0) (145.529 -0.501685 0) (148.618 -0.732066 -2.78282e-17) (149.169 -0.72769 5.749e-18) (151.83 -1.1965 0) (151.571 -1.04698 0) (151.35 -0.919419 0) (152.99 -0.974231 0) (153.198 -1.11189 0) (153.437 -1.27323 0) (153.713 -1.46292 0) (152.131 -1.37241 0) (149.507 -0.825942 0) (148.902 -0.805289 5.42899e-20) (145.735 -0.516223 -6.33351e-18) (145.255 -0.503696 0) (141.905 -0.413252 -1.10697e-19) (141.951 -0.432915 -1.99004e-18) (145.221 -0.50294 2.99819e-17) (145.443 -0.543843 0) (142.159 -0.43509 3.31376e-19) (142.214 -0.449825 -3.31854e-19) (145.434 -0.530992 0) (145.889 -0.55654 0) (148.96 -0.832765 -5.42363e-20) (149.273 -0.918494 5.42722e-20) (146.125 -0.57601 -6.33165e-18) (145.652 -0.565547 0) (142.423 -0.452596 2.21108e-19) (142.487 -0.472625 -1.98894e-18) (145.637 -0.565401 2.99685e-17) (145.87 -0.611807 0) (142.704 -0.477049 3.31197e-19) (142.779 -0.49513 0) (145.884 -0.600182 0) (146.313 -0.622868 0) (149.358 -0.952334 -2.78107e-17) (149.903 -0.94265 5.7456e-18) (150.366 -1.08257 0) (149.705 -1.05378 5.42515e-20) (146.586 -0.648362 -6.32944e-18) (146.118 -0.640182 0) (142.999 -0.499118 -1.1057e-19) (143.084 -0.520564 -1.98772e-18) (146.126 -0.641448 2.99526e-17) (146.374 -0.6945 0) (143.314 -0.527685 3.30999e-19) (143.412 -0.548481 0) (146.413 -0.683993 0) (146.817 -0.704027 0) (149.822 -1.09595 -5.41982e-20) (150.208 -1.21686 5.42273e-20) (147.132 -0.737669 -6.3268e-18) (146.666 -0.731046 0) (143.647 -0.55522 -1.10496e-19) (143.758 -0.578714 -1.6537e-18) (146.702 -0.734046 2.99339e-17) (146.97 -0.795602 0) (144.006 -0.589074 0) (144.132 -0.613382 0) (147.039 -0.786285 0) (147.414 -0.804936 0) (150.362 -1.26968 -2.77868e-17) (150.911 -1.25159 5.74077e-18) (153.377 -2.12364 0) (152.895 -1.82763 0) (152.484 -1.58034 0) (154.032 -1.68687 0) (154.399 -1.95259 0) (154.823 -2.26959 0) (155.557 -2.73919 4.87311e-20) (155.193 -2.36534 2.94822e-23) (154.874 -2.04887 2.56397e-23) (154.595 -1.78023 2.22625e-23) (154.351 -1.55127 -4.87746e-20) (154.138 -1.35523 0) (153.953 -1.18699 0) (153.792 -1.04236 0) (153.651 -0.917697 0) (153.529 -0.810201 0) (153.423 -0.717389 0) (153.33 -0.637093 0) (153.249 -0.567531 0) (153.178 -0.507145 0) (153.116 -0.454622 0) (153.755 -0.494884 0) (153.81 -0.552477 0) (153.874 -0.618665 0) (154.213 -0.677595 0) (154.16 -0.604609 0) (154.114 -0.540903 0) (154.301 -0.573733 0) (154.335 -0.64239 0) (154.375 -0.720889 0) (154.421 -0.811319 0) (154.273 -0.761453 4.88301e-20) (153.946 -0.694845 0) (154.028 -0.782761 0) (154.122 -0.884295 0) (154.23 -1.00187 0) (154.51 -1.09845 4.88428e-20) (154.42 -0.969423 0) (154.341 -0.85804 -4.88558e-20) (154.475 -0.915609 0) (154.537 -1.03593 0) (154.608 -1.1756 0) (154.616 -1.24264 0) (154.562 -1.09482 0) (154.516 -0.965135 0) (154.478 -0.851848 0) (154.447 -0.754009 0) (154.421 -0.669936 0) (154.4 -0.596573 0) (154.461 -0.610414 0) (154.471 -0.688797 0) (154.483 -0.77889 0) (154.508 -0.795805 0) (154.507 -0.70115 0) (154.506 -0.61815 0) (154.546 -0.621715 0) (154.539 -0.706901 0) (154.535 -0.801019 0) (154.53 -0.905518 0) (154.515 -0.901905 0) (154.5 -0.883166 0) (154.524 -1.00212 0) (154.555 -1.13536 0) (154.589 -1.28528 0) (154.55 -1.31005 0) (154.538 -1.15533 0) (154.525 -1.02031 0) (154.524 -1.02481 0) (154.514 -1.15964 0) (154.497 -1.31006 0) (154.474 -1.47727 -4.7871e-20) (154.558 -1.48341 0) (154.628 -1.45684 0) (154.678 -1.4114 0) (154.69 -1.33785 0) (154.613 -1.24801 -7.63813e-24) (154.352 -1.13803 0) (154.492 -1.2959 0) (154.653 -1.47966 0) (154.835 -1.69402 0) (155.012 -1.85869 9.76175e-20) (154.862 -1.62342 1.01144e-23) (154.73 -1.4215 -9.76472e-20) (154.782 -1.52474 0) (154.889 -1.73778 0) (155.009 -1.98258 0) (155.14 -2.26201 0) (155.181 -2.13082 -1.31402e-23) (155.043 -1.94433 0) (155.278 -2.2378 0) (155.542 -2.5827 0) (155.84 -2.98694 0) (155.817 -3.22609 0) (155.585 -2.80618 4.88058e-20) (155.372 -2.44386 -9.76044e-20) (155.282 -2.58248 0) (155.438 -2.95508 0) (155.6 -3.38895 0) (155.249 -3.48921 0) (155.17 -3.06033 0) (155.085 -2.68468 0) (154.997 -2.35599 0) (154.908 -2.06916 0) (154.824 -1.81882 0) (154.748 -1.60199 0) (154.67 -1.65292 0) (154.71 -1.87564 4.82902e-20) (154.748 -2.12706 -2.49078e-24) (154.554 -2.13801 0) (154.561 -1.8933 0) (154.562 -1.67661 0) (154.443 -1.66407 4.81416e-20) (154.406 -1.87445 4.83345e-20) (154.361 -2.11268 4.44444e-24) (154.307 -2.38296 -4.8661e-20) (154.541 -2.41514 0) (154.782 -2.41047 -2.45584e-24) (154.811 -2.73218 -4.87838e-20) (154.833 -3.09902 -4.88572e-20) (154.846 -3.51715 4.89381e-20) (154.447 -3.49697 0) (154.489 -3.08925 0) (154.52 -2.73033 0) (154.242 -2.69006 4.87576e-20) (154.164 -3.03878 -4.88696e-20) (154.07 -3.4335 0) (153.956 -3.88051 0) (154.393 -3.95937 0) (154.855 -3.99081 0) (155.321 -3.978 0) (155.759 -3.89384 0) (156.068 -3.71747 0) (156.176 -3.46065 0) (155.973 -3.18303 0) (155.314 -2.65018 0) (153.942 -2.47975 0) (151.553 -1.45721 0) (150.798 -1.41444 5.41989e-20) (147.783 -0.848689 -6.32365e-18) (147.317 -0.842295 0) (144.39 -0.623701 -1.10416e-19) (144.533 -0.649964 -1.65243e-18) (147.386 -0.846683 2.99121e-17) (147.681 -0.918697 0) (144.805 -0.664654 0) (144.968 -0.69387 0) (147.787 -0.910373 0) (148.129 -0.929397 0) (150.996 -1.48114 -5.41459e-20) (151.491 -1.65637 5.41657e-20) (148.564 -0.986052 -6.31987e-18) (148.096 -0.977771 0) (145.254 -0.709062 -1.10322e-19) (145.437 -0.739585 -1.65093e-18) (148.207 -0.983654 2.98857e-17) (148.535 -1.06923 0) (145.741 -0.760478 0) (145.949 -0.797076 0) (148.685 -1.06236 0) (148.99 -1.08406 0) (151.742 -1.74173 -2.77539e-17) (152.31 -1.71118 5.73374e-18) (153.206 -2.02957 0) (152.308 -1.95656 5.41236e-20) (149.507 -1.15778 -6.31526e-18) (149.034 -1.14481 0) (146.273 -0.819796 -1.10213e-19) (146.507 -0.857679 -1.64919e-18) (149.195 -1.15294 2.98534e-17) (149.565 -1.25624 0) (146.854 -0.887776 0) (147.118 -0.934804 0) (149.77 -1.25198 0) (150.031 -1.27843 0) (152.624 -2.06905 -5.40696e-20) (153.278 -2.33718 0) (150.651 -1.37438 0) (150.168 -1.35439 1.76282e-18) (147.491 -0.967826 -1.87206e-18) (147.789 -1.01619 1.09836e-19) (150.392 -1.36637 0) (150.816 -1.49292 0) (148.192 -1.05879 0) (148.529 -1.12059 0) (151.09 -1.49296 0) (151.301 -1.52433 0) (153.676 -2.49241 0) (154.262 -2.44022 0) (156.276 -4.07951 0) (155.385 -3.43169 0) (154.607 -2.90938 0) (155.88 -3.11064 0) (156.521 -3.67622 0) (157.223 -4.38429 0) (157.983 -5.27095 0) (157.267 -4.90588 0) (155.501 -3.00068 0) (154.443 -2.83742 0) (152.055 -1.64958 0) (151.553 -1.62181 1.76045e-18) (148.97 -1.16874 -1.86947e-18) (149.353 -1.23289 1.09669e-19) (151.858 -1.63978 0) (152.355 -1.79765 0) (149.836 -1.29389 0) (150.273 -1.37678 0) (152.72 -1.80443 0) (152.875 -1.83951 0) (154.961 -3.05954 0) (155.889 -3.52327 2.76443e-17) (153.817 -2.00347 0) (153.274 -1.96882 1.7575e-18) (150.809 -1.44605 -1.8663e-18) (151.309 -1.53104 1.09463e-19) (153.685 -1.9946 0) (154.284 -2.19292 0) (151.903 -1.61533 0) (152.476 -1.72291 0) (154.767 -2.21007 0) (154.869 -2.24474 0) (156.596 -3.83546 0) (156.964 -3.81814 -5.7144e-18) (158.784 -5.00226 5.69418e-18) (157.718 -4.47668 5.38571e-20) (156.062 -2.47057 0) (155.437 -2.42258 1.75375e-18) (153.144 -1.82011 -1.86218e-18) (153.807 -1.93711 1.09192e-19) (155.989 -2.4637 0) (156.737 -2.72269 0) (154.568 -2.05354 0) (155.341 -2.19331 2.18082e-19) (157.386 -2.75941 0) (157.42 -2.82111 0) (158.675 -4.87011 -2.75864e-17) (160.03 -5.72957 2.75531e-17) (158.97 -3.20024 0) (158.229 -3.05683 0) (156.214 -2.32985 -1.09293e-19) (157.126 -2.49307 -1.09035e-19) (158.994 -3.11652 0) (159.962 -3.48283 0) (158.145 -2.64979 0) (159.222 -2.8386 0) (160.871 -3.50919 -2.7748e-17) (160.785 -3.82186 6.24798e-18) (161.413 -6.19767 0) (161.268 -6.45703 -5.69796e-18) (162.36 -8.54023 0) (159.947 -7.20732 0) (158.4 -5.95979 0) (158.927 -6.32202 0) (160.366 -7.46476 0) (162.195 -8.80773 0) (163.575 -11.1863 -6.02306e-21) (164.906 -10.3622 -4.68791e-20) (164.708 -7.95398 0) (163.324 -7.25429 0) (162.84 -4.43211 6.25722e-18) (161.961 -3.94094 -2.78484e-17) (160.397 -3.01829 0) (161.658 -3.25639 -1.73355e-18) (163.007 -4.00245 1.94426e-18) (164.243 -4.55676 -2.1713e-19) (163.044 -3.49158 -2.16722e-19) (164.563 -3.83482 0) (165.488 -4.70407 2.76724e-17) (165.193 -5.26063 -6.22131e-18) (165.251 -7.80526 0) (167.479 -9.08122 0) (167.92 -6.29492 0) (166.951 -5.44692 1.08098e-19) (166.281 -4.17853 0) (168.226 -4.70347 1.72835e-18) (168.585 -5.81029 -1.83011e-18) (170.46 -6.86666 0) (170.415 -5.24882 -4.3131e-19) (172.838 -6.16753 1.34795e-18) (172.526 -7.56464 0) (171.251 -7.92016 0) (170.056 -10.5188 1.06538e-19) (168.057 -10.5014 8.88838e-20) (169.76 -15.5605 -5.67496e-18) (171.826 -13.0352 2.90519e-17) (174.327 -10.1766 -7.74353e-18) (174.511 -9.08846 3.12546e-17) (175.271 -7.4153 -4.34545e-18) (177.536 -9.25971 8.62851e-19) (176.562 -10.7969 0) (177.847 -12.991 -4.30128e-18) (179.228 -11.5261 -3.39835e-18) (180.241 -14.5388 8.23375e-19) (178.756 -15.6503 2.95223e-17) (176.034 -14.526 -6.13902e-18) (172.71 -16.8039 0) (173.35 -20.5462 2.78129e-17) (176.391 -19.2798 -6.17328e-18) (179.404 -18.243 2.69933e-17) (180.836 -17.4965 1.95711e-19) (181.069 -20.6362 2.01251e-19) (179.622 -21.556 0) (179.669 -24.4142 0) (181.13 -24.0227 0) (182.89 -24.3398 7.5273e-18) (182.284 -27.939 1.2915e-20) (180.545 -27.3406 -5.4926e-18) (179.201 -30.2579 8.28765e-18) (179.214 -28.0458 1.9453e-18) (175.665 -24.2622 -6.25138e-18) (172.89 -25.1517 2.82915e-17) (169.804 -21.9933 -9.88796e-18) (166.528 -22.5754 1.8975e-19) (166.854 -17.9156 2.81489e-19) (166.4 -13.5759 -1.40574e-19) (164.113 -14.4425 4.78331e-20) (164.12 -18.0808 4.82094e-20) (163.553 -21.8612 -3.83103e-19) (162.08 -25.7748 5.78652e-19) (165.086 -27.3899 -2.26484e-18) (168.162 -28.3983 1.06704e-20) (172.16 -28.7937 4.55697e-19) (174.47 -28.6269 2.96941e-18) (172.637 -32.8439 0) (176.686 -35.0199 -9.96386e-18) (178.952 -35.5002 4.33251e-19) (179.455 -33.6907 -1.58184e-17) (180.933 -30.6515 9.98201e-19) (177.137 -38.8757 2.64275e-17) (175.547 -40.9932 0) (175.441 -42.8634 -3.60988e-18) (172.804 -44.4536 -2.25333e-19) (172.733 -43.3326 0) (173.76 -39.1209 2.08338e-18) (169.273 -36.742 5.02068e-18) (169.477 -43.4583 -2.07217e-17) (171.321 -44.2475 -3.14793e-17) (171.083 -45.5711 3.30805e-18) (169.695 -46.6713 -8.11031e-19) (169.268 -46.2414 0) (167.892 -47.5706 -2.88248e-17) (168.241 -48.1821 1.67674e-18) (168.668 -49.7699 5.27668e-18) (166.597 -51.8304 1.42011e-17) (164.29 -53.1302 -1.03901e-17) (163.586 -50.4911 6.79491e-19) (161.645 -54.195 0) (160.823 -55.082 7.29299e-18) (159.465 -55.3711 0) (158.313 -55.8757 6.01443e-19) (158.36 -55.505 -4.16877e-19) (159.579 -52.5323 -7.55093e-19) (160.243 -54.4411 4.2454e-19) (156.257 -53.8158 3.08867e-18) (157.007 -56.1083 -8.7321e-19) (156.99 -56.7678 6.13059e-19) (156.53 -58.2137 1.50769e-18) (154.445 -59.3626 1.92656e-19) (155.039 -57.1473 0) (152.946 -57.493 -5.33656e-18) (154.53 -57.241 -2.92298e-17) (152.313 -59.7561 0) (150.153 -60.1293 2.83095e-17) (149.277 -60.9084 -3.65975e-21) (148.069 -60.5184 -1.63592e-18) (146.951 -60.3968 -2.4855e-17) (146.018 -61.5214 -6.9473e-18) (144.963 -62.1677 -1.39943e-17) (145.478 -60.6407 5.38391e-18) (143.079 -63.3834 0) (141.748 -63.2807 -2.64581e-17) (140.609 -64.5317 -1.38921e-18) (139.166 -64.0461 -4.57295e-18) (140.014 -63.2449 -1.94029e-17) (142.135 -60.9506 1.56391e-17) (142.598 -59.443 -2.98741e-17) (146.332 -54.7957 2.23807e-17) (146.281 -58.5425 -2.78545e-17) (149.17 -58.0618 -2.12689e-18) (148.829 -59.9474 -2.14162e-19) (146.79 -60.5633 4.54966e-19) (149.759 -54.6551 -2.62737e-17) (153.19 -54.6768 1.69582e-18) (153.014 -53.0448 0) (152.04 -49.2893 7.15185e-18) (148.885 -54.4524 -6.32974e-17) (157.495 -46.6203 2.89447e-20) (159.779 -50.2765 2.90372e-17) (162.585 -48.9625 -1.12067e-20) (162.995 -42.8286 3.51214e-19) (166.789 -45.9198 1.18773e-17) (165.095 -49.6421 -3.0837e-17) (166.055 -49.3514 -1.75942e-18) (161.13 -38.8313 -1.49323e-18) (165.222 -34.1092 1.33524e-18) (162.433 -31.7177 -2.20479e-21) (159.694 -29.4078 0) (156.617 -32.6394 -9.77425e-20) (158.964 -35.5327 1.90461e-19) (154.948 -38.6253 2.89029e-19) (156.567 -42.3852 0) (151.741 -44.9688 -1.89895e-18) (146.896 -46.5961 3.84704e-19) (146.966 -50.9476 0) (141.827 -51.6424 0) (140.508 -55.6273 4.25506e-18) (140.235 -59.2627 0) (139.623 -60.7281 -3.91165e-18) (138.856 -62.8343 1.70144e-18) (138.151 -63.5182 -1.53882e-18) (136.65 -64.4328 1.12927e-21) (135.663 -63.979 -1.80538e-18) (134.742 -63.9035 -2.62464e-17) (133.846 -64.5471 0) (132.882 -64.9099 2.30543e-18) (133.403 -64.2725 -2.59707e-17) (135.797 -62.5622 1.19484e-17) (136.975 -62.9022 0) (137.097 -62.8609 -2.93639e-17) (132.938 -62.3623 -2.48759e-17) (132.363 -64.1016 0) (131.817 -64.8992 -2.33202e-18) (130.62 -66.0819 -1.93242e-19) (129.196 -65.7768 -1.2771e-18) (128.054 -65.4014 2.05117e-19) (126.796 -66.1499 0) (125.976 -65.5679 0) (126.959 -65.1053 -2.01406e-19) (129.597 -63.7741 6.10205e-18) (130.566 -64.3923 -2.35842e-17) (130.72 -64.1317 -9.43048e-19) (130.394 -62.5102 -8.84758e-19) (134.498 -59.3342 1.23076e-17) (137.084 -60.0586 -2.20003e-17) (136.805 -59.6644 -3.07382e-17) (136.091 -55.8989 -3.84108e-19) (131.578 -55.453 3.84131e-19) (129.569 -58.8105 -1.42237e-18) (128.397 -61.8008 1.79364e-18) (127.414 -62.9937 3.09651e-18) (126.19 -64.6056 1.70777e-18) (125.437 -65.028 -1.55376e-18) (124.089 -65.5551 3.05539e-18) (123.491 -65.3857 -7.59165e-19) (122.69 -65.6508 4.98275e-18) (121.965 -65.76 -1.64145e-18) (121.049 -65.561 2.18166e-19) (119.723 -66.6662 1.29877e-17) (118.575 -66.3339 2.11423e-17) (120.233 -65.0637 1.37494e-18) (117.664 -66.0969 -1.04458e-18) (116.642 -66.4914 0) (116.054 -65.8718 -1.58155e-18) (115.633 -65.2627 1.6925e-18) (114.216 -65.6944 -2.29606e-18) (113.784 -65.342 1.71896e-18) (112.785 -65.527 1.06445e-19) (112.461 -65.3932 -1.00224e-19) (113.24 -65.196 0) (115.302 -64.6858 -5.38374e-18) (116.097 -65.171 2.91121e-17) (118.313 -64.3195 -4.52741e-18) (116.988 -65.4988 8.58451e-19) (119.484 -63.2538 4.33546e-18) (123.547 -60.85 3.11704e-21) (121.604 -63.6293 -8.69804e-18) (123.847 -64.1009 -7.3792e-18) (122.558 -65.285 -2.71819e-17) (121.218 -65.394 2.92999e-17) (124.672 -64.5179 2.71579e-17) (124.916 -64.4744 -2.98126e-17) (125.485 -61.9831 -2.01834e-17) (125.596 -61.563 2.70697e-17) (119.556 -59.6582 -1.43487e-18) (118.009 -62.3185 -5.72383e-20) (116.963 -63.3895 -1.64317e-18) (115.422 -62.2363 3.06128e-17) (113.594 -63.8859 0) (112.688 -64.8415 1.94548e-18) (112.026 -65.2426 -2.00623e-19) (110.871 -65.8717 6.77857e-18) (110.007 -65.6796 -3.77551e-19) (109.244 -65.2646 1.03154e-21) (108.303 -65.6059 3.69516e-18) (107.805 -65.0327 2.82241e-17) (106.225 -65.4212 1.63653e-18) (105.666 -64.8892 -1.7161e-18) (107.573 -64.359 1.34565e-18) (105.381 -64.6157 3.35267e-18) (104.462 -64.6473 -4.15039e-18) (104.322 -64.3519 -4.1648e-19) (103.277 -64.4888 -4.66476e-18) (102.951 -64.4156 -4.71548e-18) (102.498 -64.3301 -3.58279e-18) (101.806 -64.5842 3.42546e-18) (101.361 -64.2361 0) (99.9828 -64.7202 -3.39433e-18) (99.3687 -64.2322 3.51838e-18) (101.168 -63.6168 6.14632e-18) (101.81 -64.1 2.99356e-17) (103.869 -63.5969 -1.66809e-17) (104.019 -64.0009 2.69928e-17) (104.425 -63.9711 3.3315e-17) (106.145 -63.4521 -2.8118e-17) (105.04 -64.2012 0) (108.587 -61.7013 1.07057e-17) (109.502 -63.0326 -3.59159e-18) (110.947 -64.1274 2.85185e-18) (108.341 -64.9088 -3.17981e-17) (111.36 -64.7632 8.65429e-19) (111.735 -64.5879 -2.83408e-18) (112.037 -63.1769 -3.19171e-17) (114.198 -61.0201 6.76653e-18) (110.091 -62.5793 -6.00865e-17) (115.837 -61.757 0) (116.51 -58.5259 1.56172e-18) (118.519 -55.7104 -1.96116e-18) (121.92 -56.928 3.07519e-18) (125.775 -58.119 -1.55293e-18) (127.56 -54.8389 1.64434e-21) (123.727 -53.8259 0) (120.173 -52.7657 1.98099e-19) (121.426 -49.6991 2.49007e-19) (124.987 -50.4964 -9.8802e-20) (128.752 -51.1721 -4.91526e-19) (132.764 -51.613 -1.93448e-19) (137.188 -51.8583 9.85049e-22) (137.679 -47.8787 5.88394e-19) (142.164 -47.4681 3.90185e-19) (141.877 -43.6187 -3.92841e-19) (146.219 -42.587 1.95887e-19) (150.629 -40.9683 9.66919e-20) (149.193 -37.445 -4.91384e-20) (153.051 -35.3311 -1.94918e-19) (151.096 -32.3785 -4.93134e-20) (154.284 -30.0285 9.78504e-20) (157.057 -27.275 4.90843e-20) (159.273 -24.219 -1.94652e-19) (160.808 -21.0007 0) (161.616 -17.8639 -4.85208e-20) (161.887 -14.9235 0) (161.823 -12.132 6.06681e-21) (161.32 -9.73535 0) (160.197 -8.11213 0) (158.961 -7.04165 0) (158.115 -6.04215 0) (157.504 -5.12898 0) (156.955 -4.3542 0) (156.441 -3.71353 0) (156.541 -4.02284 0) (156.924 -4.69494 0) (157.336 -5.49067 0) (156.91 -5.74371 0) (156.598 -4.9832 0) (156.33 -4.30045 0) (155.913 -4.47319 0) (156.086 -5.11482 0) (156.335 -5.80833 0) (156.596 -6.64221 0) (157.369 -6.54084 0) (157.859 -6.37567 0) (158.627 -7.29525 0) (159.411 -8.4981 0) (159.822 -10.323 0) (158.163 -10.6188 0) (158.124 -8.91669 0) (157.855 -7.5182 0) (156.732 -7.75916 0) (156.737 -9.09342 0) (156.623 -10.5756 0) (155.212 -10.3315 0) (155.478 -9.00979 0) (155.601 -7.82151 0) (155.633 -6.75847 0) (155.607 -5.86257 0) (155.511 -5.1447 0) (155.401 -4.52723 0) (154.86 -4.52567 0) (154.855 -5.14525 0) (154.824 -5.88533 0) (154.097 -5.78784 0) (154.23 -5.09222 0) (154.324 -4.48708 0) (153.818 -4.38799 0) (153.646 -4.96555 0) (153.427 -5.61987 0) (153.144 -6.35747 0) (153.907 -6.58336 4.92409e-20) (154.739 -6.73592 0) (154.579 -7.69532 0) (154.318 -8.78278 0) (153.925 -9.98642 0) (152.769 -9.55949 0) (153.266 -8.46999 0) (153.637 -7.47586 -4.92251e-20) (152.781 -7.17826 0) (152.319 -8.08251 0) (151.738 -9.06472 0) (151.019 -10.1179 0) (152.123 -10.7377 0) (153.369 -11.3009 0) (154.774 -11.7931 -4.93151e-20) (156.338 -12.1947 0) (158.043 -12.4784 0) (159.889 -12.5101 0) (159.73 -14.8496 0) (159.241 -17.3461 -6.141e-21) (158.243 -20.017 0) (155.905 -18.9562 0) (157.007 -16.6615 6.1318e-21) (157.698 -14.4788 0) (155.813 -13.9759 0) (154.991 -15.8883 0) (153.834 -17.8733 0) (152.326 -19.8598 0) (154.368 -21.2622 0) (156.69 -22.7198 0) (154.612 -25.3066 -4.90384e-20) (152.088 -27.6681 0) (149.219 -29.7271 0) (147.494 -27.3347 0) (150.099 -25.5229 0) (152.415 -23.4787 0) (150.48 -21.7749 0) (148.335 -23.5552 0) (145.942 -25.1537 0) (144.559 -23.1417 0) (146.78 -21.7293 0) (148.789 -20.1721 0) (150.546 -18.5077 0) (152.025 -16.7838 4.9289e-20) (153.213 -15.0562 -4.93859e-20) (154.12 -13.3775 4.9254e-20) (152.622 -12.7091 0) (151.654 -14.186 0) (150.448 -15.6961 0) (149.075 -14.6134 0) (150.292 -13.2893 0) (151.304 -11.9883 0) (150.143 -11.2271 0) (149.098 -12.3737 0) (147.874 -13.5358 0) (146.47 -14.6881 0) (147.649 -15.9285 0) (148.997 -17.1994 0) (147.313 -18.6527 0) (145.414 -20.0193 0) (143.331 -21.2693 0) (142.242 -19.5097 0) (144.214 -18.403 0) (146.023 -17.2013 0) (144.893 -15.8043 0) (143.156 -16.8616 0) (141.275 -17.8405 0) (139.274 -18.7259 0) (140.137 -20.503 0) (141.099 -22.3813 0) (142.17 -24.3847 0) (143.361 -26.5412 0) (144.678 -28.8808 0) (146.114 -31.446 0) (147.644 -34.2857 9.83326e-20) (144.06 -35.7578 4.31335e-20) (145.216 -39.0037 -2.4585e-19) (141.249 -40.0822 -2.47466e-20) (137.37 -40.7641 4.94871e-20) (137.685 -44.2019 -2.46738e-19) (133.678 -44.4067 4.97158e-20) (133.432 -47.8788 4.95166e-20) (129.484 -47.6155 1.92242e-22) (125.772 -47.1879 0) (122.283 -46.5986 -6.09887e-21) (122.914 -43.6221 -4.35838e-20) (126.3 -44.0627 4.99617e-20) (129.887 -44.3354 -9.92997e-20) (130.039 -41.2008 -4.96538e-20) (133.625 -41.1128 4.98066e-20) (133.388 -38.0176 0) (136.874 -37.5741 0) (140.446 -36.8367 2.47307e-20) (139.578 -33.872 0) (142.874 -32.8209 6.17806e-21) (141.727 -30.1513 0) (140.65 -27.7055 0) (137.86 -28.6481 0) (138.705 -31.1541 0) (135.664 -31.9077 0) (136.287 -34.6303 0) (133.045 -35.1308 0) (129.881 -35.4106 0) (130.017 -38.22 0) (126.775 -38.22 0) (126.619 -41.0778 0) (123.367 -40.7846 0) (120.282 -40.3596 0) (119.729 -43.062 0) (119.024 -45.8844 -4.98808e-20) (118.084 -48.7583 4.98234e-20) (116.81 -51.5687 -9.96663e-20) (115.232 -54.3166 0) (113.332 -57.0379 -7.8493e-19) (111.041 -59.587 8.3054e-21) (108.322 -57.8828 7.77319e-19) (105.767 -59.9697 -1.43155e-18) (103.862 -61.9451 3.01388e-17) (102.773 -62.7128 4.21396e-19) (101.768 -61.5617 -3.0662e-17) (99.9843 -62.6656 4.56069e-21) (98.7665 -63.3048 2.95523e-17) (97.9145 -63.4397 -2.94525e-18) (96.6347 -63.5313 5.39849e-22) (96.3883 -63.1084 0) (97.7258 -62.8889 -2.78643e-17) (97.8105 -62.3621 -6.08993e-21) (98.3086 -62.8617 -3.18012e-17) (96.1485 -62.7881 3.28339e-17) (95.4088 -62.7064 -3.44678e-18) (95.3073 -62.521 0) (94.2386 -62.7215 -1.0182e-17) (93.7995 -62.7154 6.14593e-18) (95.2094 -62.2238 -5.46111e-18) (93.4348 -62.5321 1.281e-18) (92.6007 -62.7023 0) (92.3655 -62.3198 1.68126e-18) (91.2101 -62.4894 -8.47478e-19) (90.8986 -62.0451 0) (90.6668 -61.6442 -3.02533e-17) (89.8624 -61.6349 5.01484e-18) (89.8349 -61.2792 2.84666e-17) (88.6122 -61.2828 -3.28489e-18) (88.4579 -60.9355 4.29002e-19) (90.0444 -60.8049 3.46173e-19) (90.4092 -61.2828 -1.8633e-18) (92.2094 -61.262 4.52532e-18) (92.1102 -61.8116 -1.80264e-18) (92.6333 -61.7264 0) (94.1291 -61.4547 2.74658e-17) (93.0966 -62.1119 -4.45985e-19) (96.4971 -60.1068 -1.08e-17) (93.3637 -60.7809 2.9884e-17) (92.5896 -59.79 2.93389e-17) (91.5248 -60.2937 -3.20048e-22) (90.9074 -59.2671 0) (89.3438 -59.9922 -6.29599e-18) (88.3394 -60.4189 0) (87.6852 -60.523 -8.16297e-19) (86.7253 -60.6529 -1.6417e-18) (86.4505 -60.4602 1.58912e-18) (85.627 -60.6358 0) (85.3339 -60.2261 -6.59232e-18) (85.2076 -59.7918 0) (84.0177 -59.8958 -6.23556e-18) (83.8197 -59.5504 -2.16041e-19) (82.9829 -59.5923 -6.80876e-18) (82.9321 -59.2352 0) (83.7062 -59.2296 2.71518e-17) (85.3105 -59.2968 -4.09286e-18) (85.7315 -59.7464 -2.8829e-17) (87.5788 -59.6346 1.7402e-17) (86.0698 -60.0865 1.81409e-18) (87.5157 -60.1566 -2.85799e-17) (88.0001 -60.0808 -1.94386e-20) (86.9296 -58.7139 -1.83992e-18) (86.801 -57.4894 -1.52924e-18) (87.6828 -58.41 0) (90.6556 -58.0349 -1.35962e-18) (88.5627 -59.2 0) (91.6069 -58.914 0) (94.509 -58.286 -4.34786e-18) (92.9215 -56.6761 -1.7821e-21) (91.2037 -54.9445 1.57957e-18) (89.0123 -56.3534 1.95428e-19) (87.5554 -54.5826 -7.80691e-19) (85.3437 -55.723 -4.38168e-18) (83.5723 -56.9283 2.88029e-17) (82.6459 -57.3159 8.57793e-19) (81.3747 -57.7126 4.76835e-18) (81.2435 -58.1388 0) (80.3006 -58.3181 -1.15184e-18) (80.5164 -58.434 2.06983e-18) (81.3472 -58.4289 -1.62771e-18) (81.3519 -58.5637 9.96542e-20) (82.0683 -58.6466 -3.81871e-19) (82.0705 -58.8804 1.13973e-18) (82.9813 -58.8991 8.00507e-19) (82.9511 -58.5675 0) (83.1269 -58.1464 0) (81.9043 -58.3995 1.7691e-18) (81.695 -58.1042 -1.88538e-18) (83.4161 -58.5402 0) (84.5953 -58.4775 -6.79911e-18) (83.6091 -58.8555 2.7307e-17) (84.136 -57.8145 0) (80.1254 -58.0308 -3.07993e-17) (79.4012 -58.0941 4.83718e-18) (79.373 -57.7197 -3.51061e-18) (78.2334 -57.7443 3.19882e-18) (78.1155 -57.44 -3.50393e-18) (77.335 -57.4268 3.41797e-18) (77.3427 -57.081 -1.58893e-18) (78.0908 -57.1127 -2.11537e-19) (79.6412 -57.2537 0) (79.944 -57.6912 1.85693e-18) (80.7607 -56.9539 -9.83137e-22) (82.1609 -56.4086 0) (82.1019 -55.2097 1.37113e-18) (82.8591 -56.0704 0) (80.1469 -56.1387 3.01883e-17) (79.2192 -56.4202 -9.40331e-18) (78.0307 -56.7394 2.19226e-19) (77.4342 -56.755 -9.41243e-22) (76.5656 -56.6861 -3.81228e-19) (76.6221 -56.4474 3.82537e-19) (75.8715 -56.3196 -2.37491e-18) (75.9399 -56.1411 -1.03403e-19) (75.0945 -56.0669 1.77912e-18) (75.0226 -55.9748 -8.12028e-19) (74.3494 -55.9996 -8.74805e-18) (74.2201 -55.7655 -1.68328e-18) (74.2093 -55.4806 1.79731e-18) (73.2426 -55.5018 -5.51995e-22) (73.145 -55.226 0) (72.4646 -55.1454 0) (72.5409 -54.9274 -2.98979e-17) (71.5475 -54.8098 0) (71.5069 -54.5411 2.1096e-17) (72.8893 -54.5969 -3.02225e-21) (73.071 -54.9654 0) (74.4028 -55.1107 1.02615e-18) (74.6768 -55.4685 -3.13771e-17) (76.1408 -55.515 2.04445e-17) (74.8223 -55.7243 -2.857e-17) (75.931 -55.9012 -2.90971e-17) (76.4041 -55.9007 0) (77.5957 -56.0167 1.40575e-18) (76.5236 -56.1825 0) (77.4335 -56.434 1.76698e-18) (77.884 -56.4128 3.12671e-17) (77.0064 -55.2861 -3.77112e-17) (78.9041 -54.535 1.50183e-17) (76.503 -54.5554 -2.76906e-17) (75.7705 -54.7602 -3.68482e-18) (75.8655 -53.7091 6.09743e-18) (73.9025 -54.4129 -3.68305e-22) (73.653 -53.7459 4.45828e-19) (72.7349 -53.9282 1.25787e-17) (71.6938 -54.0895 -2.8541e-17) (71.1729 -54.0388 1.84748e-18) (70.4265 -53.901 -8.07411e-19) (70.4758 -53.7943 0) (69.8515 -53.6964 -3.3733e-18) (69.852 -53.5714 -5.10059e-18) (69.046 -53.5597 0) (68.9468 -53.3081 3.58886e-18) (68.8964 -53.0628 2.67299e-17) (68.2752 -52.9956 8.37463e-19) (68.387 -52.7689 0) (67.4992 -52.6205 -3.30409e-18) (67.5326 -52.4305 0) (66.9203 -52.2572 0) (67.0767 -52.1137 0) (66.1429 -51.9307 -1.76165e-18) (66.1406 -51.7284 8.97325e-18) (67.4833 -51.8521 0) (66.3158 -51.5952 -4.3219e-19) (65.713 -51.4615 0) (65.8364 -51.3358 5.01991e-18) (65.1392 -51.2352 -4.93422e-18) (65.1893 -51.0918 -1.20507e-18) (64.5266 -50.99 1.71022e-18) (64.5796 -50.8151 -1.72847e-18) (63.754 -50.7118 -7.05266e-18) (63.7443 -50.466 -6.45688e-18) (63.7584 -50.2605 -3.31806e-17) (63.1867 -50.1376 8.42261e-19) (63.3416 -49.9853 7.32275e-18) (62.5543 -49.8099 -4.94976e-18) (62.6152 -49.671 -1.87272e-18) (62.0814 -49.5059 1.3469e-21) (62.24 -49.4234 9.34606e-22) (61.4529 -49.2442 -3.50928e-18) (61.4638 -49.1021 0) (62.6029 -49.2404 5.65228e-18) (61.62 -49.0043 0) (61.0613 -48.9001 0) (61.2 -48.7399 -1.65034e-18) (60.5172 -48.6167 -8.06261e-19) (60.6069 -48.4548 1.58162e-18) (59.989 -48.2996 -3.54457e-18) (60.0968 -48.1576 3.57625e-18) (59.3745 -48.0097 0) (59.4118 -47.8081 0) (59.4756 -47.6423 0) (58.9478 -47.499 8.18084e-19) (59.1388 -47.3785 0) (58.4199 -47.19 -1.60329e-18) (58.5229 -47.0847 2.93301e-17) (58.0047 -46.9118 1.04422e-17) (58.188 -46.8333 2.5787e-17) (57.4365 -46.664 -3.3812e-18) (57.4775 -46.5547 7.25311e-18) (56.9358 -46.4593 -1.51376e-17) (57.0212 -46.2703 0) (57.5765 -46.3743 0) (58.5851 -46.6569 -1.36859e-21) (58.6566 -46.928 -3.0811e-17) (59.5314 -47.1812 -1.1004e-17) (59.5975 -47.4571 3.0489e-17) (60.5589 -47.69 -3.45358e-19) (60.1928 -47.9442 -8.98488e-19) (60.652 -47.9972 3.18784e-17) (61.5784 -48.2076 -5.61849e-18) (61.2853 -48.5332 1.80179e-18) (61.7019 -48.5421 -3.3112e-17) (62.5782 -48.714 6.32399e-18) (61.6602 -48.7995 -2.65916e-17) (63.35 -48.6265 -2.87039e-17) (65.1019 -48.7871 5.49365e-18) (63.4296 -49.1859 -7.11438e-18) (63.6883 -49.758 6.8858e-18) (62.6904 -49.5144 -2.96481e-17) (63.8089 -50.0578 -1.97393e-18) (64.9774 -50.2853 5.85782e-18) (64.6348 -50.5619 3.13894e-17) (65.1206 -50.6099 -1.03936e-20) (66.1004 -50.8007 -1.13403e-17) (65.1303 -50.8719 2.95453e-17) (65.8818 -51.1261 -5.92041e-18) (66.2849 -51.1284 1.99207e-18) (67.3396 -51.2485 -4.73582e-18) (66.326 -51.3761 4.48014e-19) (67.2007 -50.6116 3.82165e-18) (67.3962 -49.7063 8.22553e-18) (67.8447 -50.4449 -3.18911e-17) (69.7891 -50.5635 2.73195e-18) (68.1016 -51.1205 1.83826e-18) (68.4495 -51.7673 -1.59956e-18) (68.735 -52.4463 5.52692e-18) (68.8917 -52.8024 3.25562e-17) (70.1244 -52.9438 -9.61546e-18) (69.8455 -53.294 -1.81246e-18) (70.3165 -53.297 3.08209e-17) (71.4519 -53.4242 -1.85518e-17) (71.2224 -53.8057 2.33579e-17) (71.6568 -53.8016 -2.70213e-17) (70.3788 -53.5823 3.27887e-17) (71.0675 -52.7451 -1.15973e-21) (72.2334 -52.4357 -2.84011e-17) (72.5362 -53.2025 -1.32696e-18) (73.3225 -52.9645 3.01404e-17) (74.9171 -52.0936 -1.24558e-17) (72.8918 -52.1797 3.22547e-17) (72.3397 -51.3905 5.51098e-18) (70.6277 -52.0705 -3.75039e-18) (69.8454 -52.2691 3.28489e-18) (69.612 -51.546 1.85342e-18) (70.2784 -51.3359 0) (71.5359 -49.9371 -1.58539e-18) (70.7702 -48.4748 0) (69.0863 -49.1421 -3.16113e-18) (68.4063 -47.7129 -7.96637e-19) (66.759 -48.3136 -8.35342e-19) (66.1706 -46.8852 3.93969e-19) (64.5449 -47.3778 5.88777e-18) (63.1572 -47.9763 1.83471e-18) (62.499 -48.1021 5.54841e-20) (62.3403 -47.4716 1.90225e-18) (61.376 -47.608 -1.63506e-18) (61.1026 -47.0386 -1.88026e-18) (60.4468 -47.128 2.11681e-18) (60.3334 -46.5499 1.85748e-18) (59.3827 -46.6418 0) (59.1531 -46.0904 0) (58.5161 -46.1397 3.17819e-18) (57.6318 -46.1642 0) (57.1838 -46.094 0) (56.5347 -45.9408 0) (56.6836 -45.8026 0) (56.088 -45.6345 -7.9066e-19) (56.2621 -45.5155 1.65317e-18) (55.6069 -45.33 5.09994e-18) (55.7432 -45.2324 -1.60771e-18) (55.1975 -45.0561 0) (55.3385 -44.98 -1.71986e-18) (54.7191 -44.8048 -2.61724e-18) (54.7904 -44.678 2.39543e-18) (54.8753 -44.5582 2.91672e-17) (54.3536 -44.406 -1.66576e-18) (54.5471 -44.3193 -2.93927e-17) (53.8171 -44.1167 -3.26891e-18) (53.9158 -44.0166 5.61591e-18) (53.4218 -43.8487 -1.76477e-18) (53.6281 -43.7849 0) (52.9512 -43.5591 1.02161e-17) (53.0433 -43.4721 -2.55636e-17) (52.5469 -43.3256 -1.43127e-17) (52.6768 -43.1914 3.29346e-18) (53.1804 -43.3403 1.10031e-19) (54.0228 -43.6628 6.95912e-18) (54.0634 -43.8894 0) (54.9497 -44.1907 5.84059e-18) (54.9995 -44.424 1.98055e-18) (55.7488 -44.6786 -4.2087e-18) (55.4479 -44.8422 1.83207e-18) (55.8341 -44.9158 -3.21665e-17) (56.7145 -45.1785 8.87884e-18) (55.7688 -45.0892 -3.71551e-18) (56.3959 -45.3769 -1.83286e-18) (56.8013 -45.4449 3.2082e-17) (57.5441 -45.6836 -7.10794e-18) (56.7228 -45.6324 0) (57.2868 -45.9249 -2.87523e-17) (57.6672 -45.9605 3.20284e-17) (57.3235 -45.1507 3.05512e-17) (58.7593 -44.81 2.19467e-21) (57.2784 -44.5625 -3.0114e-17) (56.6719 -44.6612 -7.59292e-18) (57.0083 -43.9157 7.54219e-18) (55.5806 -44.1964 -2.99608e-17) (55.5836 -43.6368 0) (54.9615 -43.704 2.78829e-17) (55.3371 -43.0099 4.36002e-21) (53.9611 -43.2053 4.33836e-19) (53.2712 -43.1916 0) (52.8598 -43.0829 -2.89826e-18) (52.2779 -42.9022 1.55875e-18) (52.4341 -42.8271 0) (51.9272 -42.6488 5.93253e-19) (52.1041 -42.5845 1.44209e-18) (51.5281 -42.3917 1.6272e-18) (51.6751 -42.3245 3.06476e-22) (51.1555 -42.1318 1.6902e-18) (51.3039 -42.0681 3.40622e-18) (50.6879 -41.8804 4.33149e-19) (50.7668 -41.7511 0) (50.8732 -41.6452 -3.61921e-18) (50.4022 -41.4798 1.64738e-18) (50.6179 -41.4171 -3.61522e-18) (49.9779 -41.1978 -1.61432e-18) (50.1261 -41.1343 9.23711e-19) (49.6582 -40.9424 7.00291e-18) (49.8962 -40.9073 -4.68552e-18) (49.2422 -40.6662 8.54165e-19) (49.3813 -40.6071 -9.55936e-19) (48.9222 -40.4083 3.74635e-18) (49.1441 -40.3849 -3.85115e-18) (48.4508 -40.1374 3.56953e-18) (48.5394 -40.0193 -7.23966e-18) (49.5587 -40.2779 0) (49.5673 -40.4959 9.96737e-19) (50.3267 -40.795 -5.57014e-18) (50.3312 -41.0165 3.22047e-17) (51.0282 -41.2821 0) (51.0429 -41.5087 5.77297e-18) (51.8098 -41.7655 -5.55468e-18) (51.4371 -41.9336 2.90538e-17) (51.848 -42.0112 -2.92527e-17) (52.57 -42.252 1.12172e-17) (52.2449 -42.4704 -1.26074e-22) (52.6215 -42.518 -3.33614e-17) (53.3459 -42.7718 -5.76684e-18) (52.4983 -42.7058 0) (52.9992 -42.9706 2.8969e-17) (53.3775 -43.0195 0) (53.9744 -42.7505 -3.07779e-17) (53.8635 -42.2238 4.72618e-19) (53.3232 -42.2667 0) (53.2651 -41.7571 3.04191e-17) (52.4769 -41.7758 0) (52.3215 -41.3059 -3.20737e-17) (51.7851 -41.3264 0) (51.7645 -40.855 3.09165e-17) (50.9814 -40.8458 -8.07043e-19) (50.8638 -40.3923 -2.99854e-17) (50.3315 -40.383 0) (50.3521 -39.9391 2.77333e-17) (49.5793 -39.906 6.05873e-18) (48.9045 -39.8221 -1.79889e-18) (48.4971 -39.6866 2.51751e-18) (47.9255 -39.4798 1.63141e-18) (48.1046 -39.4274 1.60861e-18) (47.6088 -39.2367 1.66897e-18) (47.7996 -39.191 -4.28986e-18) (47.2426 -38.9681 -6.04595e-18) (47.4044 -38.9215 -1.651e-18) (46.8836 -38.7214 1.7722e-18) (47.0224 -38.6196 5.11965e-18) (47.2455 -38.5675 -2.30136e-18) (46.5992 -38.3211 3.21347e-18) (46.7452 -38.277 1.86625e-18) (46.3128 -38.0896 3.04186e-18) (46.5444 -38.0874 -2.81239e-18) (45.9576 -37.8504 -1.09848e-17) (46.0985 -37.8111 3.81123e-18) (45.6643 -37.6145 3.73209e-18) (45.8826 -37.61 -3.86331e-18) (45.2373 -37.3603 3.54723e-18) (45.3389 -37.2522 0) (46.2981 -37.5294 0) (45.5947 -37.1823 -6.04617e-18) (45.1259 -36.9832 3.27829e-18) (45.3649 -36.9407 -3.32103e-18) (44.8498 -36.7065 4.0356e-18) (45.05 -36.6882 0) (44.5904 -36.4688 0) (44.7936 -36.4503 -4.24245e-19) (44.2644 -36.2191 -3.00403e-18) (44.4218 -36.1987 1.64492e-18) (43.9543 -35.9991 1.76282e-18) (44.086 -35.9298 -2.11982e-18) (44.3035 -35.883 3.04083e-17) (43.7106 -35.652 3.97682e-19) (43.8742 -35.602 0) (43.4348 -35.3926 -3.67385e-18) (43.7004 -35.3851 3.73043e-18) (43.1034 -35.0949 -3.53613e-24) (43.2829 -35.0773 -3.43772e-17) (42.8758 -34.856 1.11783e-17) (43.1268 -34.8798 -2.88272e-18) (42.5032 -34.6149 0) (42.6232 -34.5341 0) (43.5453 -34.8285 6.98939e-19) (43.516 -35.0047 -9.97149e-19) (44.1385 -35.3185 4.87974e-18) (44.1085 -35.5064 0) (44.6929 -35.7849 -1.14155e-17) (44.6859 -35.9781 3.04379e-17) (45.3114 -36.2443 -1.77674e-19) (44.5021 -36.0961 2.97326e-17) (44.9647 -36.3874 -5.52419e-18) (45.3198 -36.4607 -6.14986e-17) (45.893 -36.71 4.61905e-18) (45.5472 -36.8706 0) (45.9013 -36.9382 2.97053e-17) (46.464 -37.1728 -6.37422e-18) (45.73 -37.0882 8.95157e-19) (46.9913 -37.2115 -2.90023e-17) (48.0982 -37.5259 7.52615e-22) (46.9103 -37.6222 2.87245e-17) (46.9348 -38.0125 0) (46.2834 -37.7206 0) (46.9339 -38.1962 3.01452e-17) (47.6351 -38.5043 -7.34324e-18) (47.646 -38.6901 6.49874e-17) (48.2446 -38.9735 -2.83917e-18) (47.481 -38.7952 -2.98933e-17) (47.9517 -39.1115 3.71798e-18) (48.2947 -39.1862 3.26821e-17) (48.9857 -39.4705 2.99471e-18) (48.18 -39.3227 -1.8689e-18) (48.6622 -39.604 -3.14217e-17) (49.0288 -39.6878 -3.03847e-17) (49.0119 -39.0363 -3.07383e-17) (49.3826 -38.3927 -6.89777e-18) (49.5533 -38.9642 0) (50.6974 -39.2557 -2.75675e-18) (49.4985 -39.4899 0) (50.8917 -39.8503 2.00323e-18) (52.0844 -40.1382 2.56789e-21) (52.3062 -40.7501 2.01743e-18) (53.552 -41.0079 5.54911e-18) (53.8046 -41.6365 -6.49956e-17) (55.0406 -41.8069 5.92023e-18) (54.8052 -40.7218 -1.60961e-18) (54.4886 -39.6153 8.06132e-19) (53.2921 -39.9018 1.59733e-18) (53.0235 -38.8085 -2.01066e-18) (51.8644 -39.0574 -1.59469e-18) (51.63 -37.993 -4.02044e-19) (50.5081 -38.2171 -1.59208e-18) (50.2992 -37.1725 4.01033e-19) (49.2049 -37.3781 1.58294e-18) (49.0319 -36.3219 -2.11324e-22) (47.9521 -36.4776 -5.92491e-18) (46.959 -36.7745 1.19325e-19) (46.5208 -36.7779 1.23565e-18) (46.5183 -36.3498 2.69371e-17) (45.8653 -36.3096 3.31852e-18) (45.7841 -35.9063 0) (45.3349 -35.8799 1.83766e-18) (45.3658 -35.4823 -1.88569e-18) (44.7059 -35.4207 1.21506e-18) (44.6628 -35.0342 -3.00665e-17) (44.2063 -34.9792 -8.54796e-19) (44.2813 -34.6085 2.96936e-17) (43.6339 -34.5312 -6.07246e-18) (43.0228 -34.4075 0) (42.655 -34.2589 3.36482e-18) (42.1277 -34.0326 -6.57479e-18) (42.3303 -34.0026 4.05239e-18) (41.864 -33.7872 0) (42.0887 -33.7643 4.32991e-18) (41.5769 -33.4997 4.37832e-18) (41.7795 -33.496 -3.34205e-18) (41.3119 -33.2593 -9.01027e-19) (41.4825 -33.2122 3.47429e-18) (41.7196 -33.2092 -4.66803e-19) (41.1312 -32.9437 1.63483e-18) (41.2861 -32.9308 1.90075e-18) (40.8722 -32.7368 7.12174e-18) (41.1164 -32.7513 -3.78238e-17) (40.5508 -32.4961 -1.72245e-18) (40.7028 -32.4449 -7.28045e-18) (40.262 -32.2495 5.47115e-18) (40.4697 -32.1486 0) (40.9076 -32.3491 2.85121e-17) (41.5274 -32.7186 5.61918e-18) (41.494 -32.8692 -3.46384e-17) (42.0967 -33.1894 -8.88002e-18) (42.0849 -33.3437 3.22252e-17) (42.5816 -33.6382 -1.42817e-18) (41.8939 -33.4127 -3.7838e-18) (42.2735 -33.7231 -3.75528e-18) (42.5952 -33.8157 -3.29521e-17) (43.1652 -34.113 3.0078e-18) (42.4418 -33.9234 -3.76991e-18) (42.8369 -34.2057 -9.28969e-19) (43.1766 -34.2991 6.53022e-17) (43.2413 -33.7462 -3.08808e-17) (43.6223 -33.1902 3.46015e-18) (43.7264 -33.7033 3.27085e-17) (44.6372 -34.0213 -5.53043e-18) (43.6153 -34.1738 -3.88833e-18) (44.7608 -34.5515 -3.22183e-17) (45.7012 -34.8641 9.66695e-18) (45.8458 -35.41 0) (46.8237 -35.7004 -6.96798e-18) (46.9924 -36.2606 3.27998e-17) (46.6939 -34.7342 0) (46.5513 -33.7789 4.03422e-19) (45.5985 -33.9204 -7.22765e-22) (45.4782 -32.9848 0) (44.5575 -33.1063 3.98991e-18) (44.4516 -32.1877 -2.00864e-18) (43.554 -32.2917 1.78678e-18) (42.6381 -32.3636 -4.31682e-18) (41.62 -32.3928 -4.3791e-19) (41.0524 -32.2722 0) (40.7122 -32.1089 1.69377e-18) (40.2288 -31.863 -1.60208e-18) (40.4513 -31.8683 0) (40.0293 -31.6289 1.6341e-18) (40.2516 -31.6461 0) (39.7744 -31.405 -3.42085e-18) (39.9501 -31.4114 1.64433e-18) (39.4991 -31.2008 2.64477e-18) (39.6511 -31.1471 1.6996e-18) (39.8889 -31.1163 0) (39.3038 -30.8561 0) (39.4916 -30.8108 1.86187e-18) (39.0716 -30.5707 -5.25383e-18) (39.3613 -30.5958 1.8694e-18) (38.8079 -30.2942 1.71347e-18) (38.9953 -30.2903 0) (38.5938 -30.0801 0) (38.7916 -30.0309 3.76991e-18) (39.2196 -30.2258 -3.19999e-17) (39.8028 -30.5779 5.60127e-18) (39.7487 -30.7352 0) (40.2979 -31.0485 -5.58966e-18) (40.2659 -31.2227 3.15089e-17) (40.7798 -31.4946 1.33885e-17) (40.4376 -31.6113 -2.95471e-17) (40.7636 -31.6896 -6.39497e-17) (41.264 -31.9711 5.89021e-23) (40.5787 -31.8124 2.95765e-17) (40.9061 -32.0728 0) (41.2287 -32.1563 0) (41.7391 -32.0318 3.11051e-17) (41.7378 -31.6471 -3.09799e-17) (41.3387 -31.6073 -8.8757e-19) (41.3921 -31.24 1.91213e-18) (40.8184 -31.1617 -1.64247e-18) (40.8095 -30.8058 -3.032e-17) (40.3957 -30.7353 0) (40.4994 -30.3936 0) (39.9327 -30.2929 -6.13031e-18) (39.3693 -30.155 2.92196e-17) (39.0276 -30.0032 2.52985e-18) (38.5277 -29.7763 -1.60667e-18) (38.7356 -29.76 -4.01383e-19) (38.281 -29.5446 1.65219e-18) (38.517 -29.5241 3.43939e-18) (38.0132 -29.255 1.73575e-18) (38.2426 -29.2472 2.07949e-18) (37.7772 -28.9762 9.00353e-19) (37.9844 -28.9494 -8.68682e-19) (38.2468 -28.967 -2.99819e-17) (37.681 -28.6766 0) (37.8556 -28.6855 -9.59336e-19) (37.468 -28.4811 -3.67734e-18) (37.715 -28.5214 4.80591e-18) (37.1246 -28.25 -3.54427e-18) (37.2572 -28.1644 -2.89032e-17) (38.1227 -28.4983 -1.40197e-18) (37.5488 -28.1147 -3.31061e-19) (37.1043 -27.8781 0) (37.3782 -27.8805 8.58847e-19) (36.9081 -27.601 1.27531e-18) (37.1347 -27.6339 -8.22613e-19) (36.718 -27.3934 0) (36.9004 -27.3703 1.69256e-18) (37.1523 -27.3745 -2.91365e-17) (36.6035 -27.1127 0) (36.7919 -27.0924 -1.86688e-18) (36.3639 -26.862 1.79277e-18) (36.6606 -26.8743 -3.02445e-17) (36.0346 -26.5529 0) (36.2173 -26.4658 2.25186e-19) (37.127 -26.8522 9.75985e-18) (36.5372 -26.4609 -2.82958e-17) (36.1065 -26.2195 -1.93437e-23) (36.3789 -26.2454 2.12493e-18) (35.9076 -25.9843 -1.69861e-18) (36.1291 -26.0118 0) (35.663 -25.7795 7.91634e-18) (35.8508 -25.7387 -8.57103e-19) (36.1252 -25.7354 3.16003e-17) (35.5249 -25.416 1.6279e-22) (35.7454 -25.4065 -3.84237e-18) (35.3323 -25.1416 -2.08973e-22) (35.6488 -25.2173 3.87019e-18) (35.0726 -24.9013 3.59036e-18) (35.2359 -24.8702 7.82702e-18) (36.0807 -25.2534 -4.22568e-18) (35.5191 -24.8703 -4.51762e-19) (35.0717 -24.6448 -1.97735e-18) (35.3234 -24.6477 0) (34.7836 -24.3895 -2.19559e-19) (34.999 -24.306 0) (35.2335 -24.2796 2.9712e-17) (34.8044 -24.0088 5.13614e-18) (35.1385 -24.0679 -5.58538e-18) (34.5708 -23.7483 3.41782e-18) (34.799 -23.7667 -2.6145e-17) (34.3662 -23.5395 7.53496e-23) (34.5999 -23.5022 0) (35.0564 -23.7226 -2.93988e-17) (35.6099 -24.1037 7.05161e-18) (35.5216 -24.2285 6.57264e-17) (35.9993 -24.5787 -1.13486e-17) (35.5693 -24.6077 1.89174e-18) (35.9215 -24.7285 -4.20775e-18) (36.2691 -25.0129 -2.92117e-17) (35.6924 -24.8335 1.86917e-18) (37.1968 -25.097 9.49671e-18) (36.4803 -24.7052 2.35184e-19) (36.563 -24.4025 2.94095e-17) (36.1752 -24.2966 0) (36.3499 -24.0129 2.82301e-17) (35.8292 -23.8698 -1.5474e-18) (35.2401 -23.6716 4.64812e-19) (34.8734 -23.4789 -1.73313e-18) (34.3147 -23.1859 4.26946e-19) (34.5752 -23.192 0) (34.0898 -22.9026 -1.78252e-18) (34.3281 -22.8973 0) (34.6349 -22.9381 1.85455e-18) (34.0564 -22.6222 4.99319e-18) (34.2636 -22.6255 -3.6873e-18) (33.8291 -22.3964 -2.27311e-18) (34.0659 -22.3574 8.54193e-19) (34.5142 -22.5857 0) (35.0581 -22.9718 -7.06807e-18) (34.989 -23.0832 3.29391e-17) (35.4918 -23.4294 6.02931e-18) (34.7414 -23.1359 -3.05352e-17) (35.1145 -23.4613 1.88872e-18) (35.4459 -23.5821 0) (35.6947 -23.1802 -3.04876e-17) (36.1165 -22.8428 1.13754e-21) (35.2504 -22.7413 1.76324e-18) (34.7063 -22.5451 0) (34.3512 -22.3466 -1.73551e-18) (33.8221 -22.0479 -1.69273e-18) (34.095 -22.0743 -4.15276e-19) (33.6141 -21.7837 7.08387e-18) (33.857 -21.784 3.45392e-18) (34.1707 -21.8266 3.69045e-18) (33.5631 -21.5141 -1.66856e-18) (33.7833 -21.5123 3.70738e-18) (33.314 -21.2659 -3.54802e-18) (33.5856 -21.1955 -5.36967e-19) (34.0662 -21.4493 0) (34.6257 -21.8484 1.41677e-18) (34.5403 -21.9678 -4.0166e-18) (35.0027 -22.3116 6.54709e-18) (34.2733 -22.0306 -1.4161e-18) (34.6094 -22.3437 -2.85451e-17) (34.9281 -22.4579 0) (35.4691 -22.4499 -9.49098e-19) (35.5676 -22.1694 0) (35.1924 -22.0496 -1.7636e-18) (35.381 -21.7912 9.43193e-19) (34.8664 -21.6317 -7.74309e-19) (34.2635 -21.4126 0) (33.8983 -21.1969 -1.73859e-18) (33.34 -20.8852 -1.29036e-18) (33.6075 -20.9219 8.43584e-19) (33.1133 -20.655 -9.17705e-19) (33.3506 -20.6603 4.4806e-18) (33.6394 -20.7037 3.00923e-17) (32.9657 -20.3842 -5.98577e-18) (33.151 -20.2852 2.99807e-17) (34.0869 -20.7144 -1.05772e-17) (33.5103 -20.2866 -4.4916e-19) (33.0262 -19.9973 -2.62783e-18) (33.3389 -20.053 8.80683e-19) (32.7824 -19.7527 0) (33.0009 -19.7565 0) (33.2249 -19.7441 -3.62246e-18) (32.7473 -19.5078 -3.46613e-18) (33.0256 -19.4378 0) (33.5023 -19.6831 4.47988e-19) (34.0766 -20.0828 0) (33.6253 -20.0656 -1.88546e-18) (33.9729 -20.2081 7.62451e-23) (34.3269 -20.5263 -8.73706e-19) (33.7204 -20.2793 2.33773e-18) (35.2216 -20.6924 0) (34.7731 -20.9636 -3.81159e-18) (34.5369 -21.1889 9.04151e-18) (33.7602 -20.8924 9.65463e-19) (34.0051 -20.8311 -3.30955e-17) (34.1532 -21.2108 1.89761e-18) (34.48 -21.3349 0) (34.9824 -21.3642 -2.95866e-17) (35.7489 -21.4314 5.58139e-18) (35.1976 -21.0423 -2.05433e-18) (35.7486 -21.8187 0) (36.2447 -22.1399 -1.48843e-18) (36.3342 -21.4894 -1.61755e-18) (36.8694 -21.5267 0) (36.8285 -22.1937 3.36119e-22) (36.7714 -22.8967 2.39496e-18) (36.7146 -23.6044 -1.20792e-21) (36.7352 -24.0202 -6.32175e-17) (37.2894 -24.3386 7.33749e-23) (37.9411 -24.3681 3.98198e-19) (37.9116 -25.1291 1.79053e-18) (37.8754 -25.8823 -6.93371e-18) (36.9988 -25.876 1.91809e-18) (36.5431 -25.733 -1.48134e-17) (36.0103 -25.37 3.28987e-17) (36.4908 -25.8715 3.47074e-17) (36.9261 -26.1835 5.71869e-18) (36.2628 -25.9476 -3.19364e-17) (36.5946 -26.2419 0) (36.899 -26.3395 0) (37.3395 -26.6091 0) (36.7093 -26.4238 0) (37.5018 -26.3187 0) (37.9095 -26.3139 6.32095e-17) (38.5663 -26.6694 -5.55927e-18) (37.7346 -26.7139 3.18216e-17) (37.6681 -27.0308 1.21888e-18) (37.5516 -27.3252 5.75284e-18) (37.5025 -27.4845 3.17328e-17) (37.9777 -27.7928 -1.28908e-21) (37.2734 -27.5738 0) (37.6029 -27.8661 1.88902e-18) (37.9203 -27.9623 -3.56872e-17) (38.2731 -28.2261 -2.78609e-17) (37.7138 -28.0676 -6.908e-19) (39.23 -28.2502 5.35205e-18) (38.7945 -28.674 1.88071e-18) (38.6281 -28.9644 8.89483e-18) (38.076 -28.635 3.28357e-17) (38.5968 -29.1065 -3.28559e-17) (39.0452 -29.4205 4.2886e-18) (38.3799 -29.172 -4.73427e-19) (38.7197 -29.4924 -3.55535e-17) (39.0341 -29.5864 3.51277e-17) (39.5351 -29.8804 -6.03844e-18) (39.2133 -29.9621 -2.32353e-18) (39.53 -30.054 2.06219e-18) (38.8588 -29.6895 -1.88116e-18) (39.65 -29.5484 3.09445e-17) (40.0295 -29.0553 -7.61588e-18) (39.0828 -29.0927 7.66141e-18) (39.2706 -28.6919 -2.02176e-18) (40.0919 -29.5255 0) (40.8521 -29.8666 0) (40.9344 -30.356 3.23656e-17) (41.7165 -30.6794 5.29931e-22) (41.8218 -31.1827 3.06971e-17) (42.5947 -31.4414 3.541e-22) (42.5649 -30.5999 8.08779e-19) (43.3914 -30.5008 -4.05064e-19) (43.4759 -31.37 3.97737e-19) (44.3353 -31.2673 6.0868e-19) (44.21 -30.3923 -2.04318e-19) (44.075 -29.5324 -2.05524e-19) (43.2823 -29.643 2.04477e-19) (42.4852 -29.7428 1.21518e-18) (41.6749 -29.8231 -3.2077e-18) (41.616 -28.9748 4.03931e-19) (40.8321 -29.0321 3.42302e-22) (40.7878 -28.2021 -1.20749e-18) (40.0245 -28.2394 2.58318e-18) (40.0106 -27.4098 -3.97698e-19) (39.265 -27.4205 1.48661e-18) (38.4886 -27.5478 4.74924e-19) (38.0993 -27.4723 1.97434e-18) (38.2123 -27.1494 -1.89806e-18) (38.6212 -27.1267 -3.27355e-17) (38.4446 -27.8875 -4.69886e-19) (39.2914 -26.6558 -3.23319e-18) (39.2668 -25.8808 0) (38.5829 -25.8972 -1.60224e-18) (38.5805 -25.1356 1.61075e-18) (38.576 -24.3689 8.13485e-19) (39.2158 -24.3578 -2.05241e-19) (39.2428 -25.1102 0) (39.9032 -25.0795 -2.05554e-19) (39.947 -25.8418 2.04691e-19) (39.9875 -26.6183 2.02707e-18) (40.6871 -26.5736 -1.023e-19) (40.7412 -27.3678 0) (41.4691 -27.3135 1.53785e-19) (41.5454 -28.1348 8.15717e-19) (42.2961 -28.0574 -2.05385e-19) (42.394 -28.8909 -4.08602e-19) (43.1653 -28.7962 0) (43.9383 -28.6864 5.14804e-20) (43.8041 -27.8587 0) (43.0478 -27.9658 0) (42.9339 -27.1547 0) (42.199 -27.2423 0) (42.1052 -26.4504 0) (41.3926 -26.5196 5.14183e-20) (41.3171 -25.7455 0) (40.6279 -25.7989 1.02806e-19) (40.5693 -25.0405 0) (40.5147 -24.3014 0) (39.8611 -24.3357 0) (39.8234 -23.6154 0) (39.1915 -23.6339 0) (38.5692 -23.6412 5.11723e-19) (37.956 -23.6431 1.62129e-18) (37.3542 -23.6344 -3.23377e-18) (37.3722 -22.9284 4.03979e-19) (37.9635 -22.9327 8.17139e-23) (37.9704 -22.2401 5.13179e-20) (37.3954 -22.2218 2.03479e-19) (37.4187 -21.5536 -2.04768e-19) (37.9799 -21.5762 5.14644e-20) (37.9913 -20.9358 0) (37.4421 -20.9104 0) (36.9068 -20.879 -4.0892e-19) (36.3827 -20.8464 1.21187e-18) (35.844 -20.7818 7.97647e-19) (35.9319 -20.1527 1.19243e-18) (35.4041 -20.0726 5.19844e-18) (34.7389 -20.0308 -2.8296e-17) (34.3538 -19.8766 0) (33.7037 -19.651 -4.65436e-19) (33.3398 -19.4463 0) (32.7965 -19.1371 0) (33.0825 -19.1927 2.66511e-18) (32.5858 -18.9189 -1.78376e-18) (32.8276 -18.9271 7.03515e-18) (33.1437 -18.9689 -3.75433e-18) (32.4536 -18.6394 -2.55956e-18) (32.6581 -18.5682 -1.82158e-18) (33.6068 -18.9975 4.30891e-18) (33.0356 -18.5856 4.48807e-19) (32.5446 -18.3048 0) (32.8699 -18.3717 0) (32.2931 -18.0928 0) (32.535 -18.0832 0) (33.16 -18.3878 0) (33.5915 -18.4201 -5.70351e-18) (33.5031 -18.5317 3.25433e-17) (33.9498 -18.8416 -4.83493e-18) (33.2577 -18.5893 4.64437e-19) (34.3928 -19.0027 0) (34.9592 -19.4002 -5.57351e-18) (34.5702 -19.6653 3.09986e-17) (33.9723 -19.4531 -7.06437e-19) (33.2586 -19.1667 -7.7648e-18) (33.5126 -19.1044 4.0515e-18) (33.5984 -19.4655 -9.23443e-19) (33.9118 -19.5842 0) (34.1365 -19.2381 -6.40322e-18) (34.9387 -19.7364 -2.05532e-18) (35.1287 -18.8347 -5.95893e-18) (34.5262 -18.7885 3.07801e-17) (34.1733 -18.6382 0) (34.37 -18.4487 -1.87637e-18) (33.852 -18.2615 6.11675e-18) (33.2314 -18.0249 9.31801e-19) (32.8514 -17.8253 -2.60277e-18) (32.2799 -17.5361 4.33209e-19) (32.5 -17.5299 -3.64239e-18) (33.1198 -17.8291 5.52357e-18) (33.5296 -17.8635 1.30203e-17) (33.4458 -17.9662 -3.26941e-17) (32.738 -17.5219 -3.24582e-17) (32.257 -17.2458 3.47206e-18) (32.5394 -17.2347 8.42654e-19) (33.0048 -17.4971 0) (33.2106 -17.4887 9.23549e-19) (32.842 -17.2838 4.72388e-23) (32.282 -16.9826 8.377e-19) (32.5321 -17.0025 -4.0098e-19) (33.115 -17.307 -2.75115e-17) (33.5192 -17.342 5.67927e-18) (33.4358 -17.4406 -2.02051e-18) (33.8286 -17.7118 -1.61494e-18) (34.2282 -17.8614 0) (34.7349 -18.2168 5.57872e-18) (34.0082 -18.0751 -7.47339e-18) (34.7083 -18.5258 -3.08285e-17) (34.897 -17.7236 -7.45643e-18) (34.3507 -17.6767 2.903e-17) (34.0315 -17.5419 0) (34.2093 -17.3858 1.92213e-18) (33.737 -17.2072 -1.64731e-18) (33.1873 -16.9508 7.14251e-19) (32.2287 -16.5357 3.14563e-17) (32.0164 -16.4875 1.8418e-18) (32.7041 -16.8636 -1.31896e-22) (32.3283 -16.7449 4.47946e-18) (32.7887 -17.0293 -3.00004e-17) (33.074 -17.0189 -2.01046e-18) (32.5801 -16.5758 0) (32.0709 -16.3158 -5.83256e-18) (32.3457 -16.3508 1.86762e-18) (32.6911 -16.4316 1.94873e-18) (32.0481 -16.1107 -3.62948e-18) (32.2597 -16.1201 -2.72487e-17) (33.1141 -16.531 1.15487e-17) (32.5756 -16.1652 -2.96856e-17) (32.0929 -15.9181 9.69395e-19) (32.3809 -15.95 1.87582e-18) (32.706 -16.0583 0) (32.0821 -15.727 1.10069e-17) (32.2596 -15.7605 4.02501e-17) (33.1083 -16.1667 -1.03267e-17) (32.5606 -15.8451 -1.45576e-23) (32.113 -15.614 1.94563e-18) (32.3704 -15.6669 8.08418e-24) (32.6777 -15.7594 0) (32.097 -15.4933 1.46141e-17) (32.2666 -15.5272 -3.23729e-17) (33.0234 -15.8899 1.14661e-17) (32.5171 -15.6397 -9.57162e-24) (32.1302 -15.4168 1.02021e-18) (32.2952 -15.5023 0) (32.4942 -15.5431 0) (32.8485 -15.7222 -9.32359e-19) (33.2075 -15.8991 0) (32.6883 -15.6746 9.30372e-19) (33.9156 -16.0614 -1.72812e-19) (33.3948 -15.9272 3.53456e-18) (32.9705 -15.7788 -1.5271e-17) (32.7003 -15.6324 -8.6281e-19) (32.2619 -15.4282 0) (32.4374 -15.5292 1.6005e-18) (32.598 -15.6287 2.8815e-17) (32.233 -15.4691 -8.71202e-19) (32.4142 -15.5884 -4.66706e-24) (32.7475 -15.7261 0) (33.1249 -15.8387 -1.44909e-18) (32.8719 -15.7158 1.84049e-18) (33.0916 -15.831 -3.39615e-17) (33.2152 -15.9304 8.07291e-18) (32.8447 -15.8174 1.83687e-18) (32.5989 -15.7182 3.41156e-18) (32.2013 -15.5764 -1.71643e-18) (32.3233 -15.7342 -1.82246e-23) (32.7154 -15.8338 -1.81604e-18) (32.887 -15.9898 5.65795e-18) (32.9033 -15.9255 -3.40023e-17) (32.4136 -15.8721 9.05652e-19) (32.0843 -15.796 7.05844e-18) (32.1789 -15.967 2.5685e-18) (32.4663 -16.034 -3.23187e-17) (32.4938 -16.1582 1.83019e-18) (32.2665 -16.1407 8.57336e-19) (31.931 -16.1076 -6.92483e-18) (31.9425 -16.311 -2.83615e-18) (32.2675 -16.3031 9.17236e-19) (32.2974 -16.5001 5.76621e-18) (32.4368 -16.342 -3.0196e-18) (32.8205 -16.1644 0) (32.6409 -16.319 0) (33.1055 -16.0171 -6.97198e-18) (32.3759 -16.54 3.30897e-17) (32.0332 -16.7941 -3.2055e-18) (31.6729 -16.9465 4.54989e-19) (31.4146 -17.0809 1.27047e-18) (31.0456 -17.2347 8.4744e-19) (30.8095 -17.526 -7.9989e-19) (31.2393 -17.2543 -2.89588e-17) (31.0936 -17.4359 1.12626e-17) (31.4555 -17.1989 0) (30.5153 -17.7979 -2.75586e-17) (30.1219 -18.0751 -2.63848e-18) (29.7406 -18.3006 -2.99522e-17) (28.9742 -18.8471 0) (28.2748 -19.2371 -2.89256e-17) (29.3947 -18.3203 1.5447e-17) (27.5264 -19.4392 0) (26.4671 -20.1258 0) (25.7588 -19.624 1.69158e-18) (23.9458 -20.3277 -1.61717e-18) (23.5287 -18.7317 -7.00608e-22) (21.4947 -18.9184 8.31249e-18) (21.6895 -16.8119 1.78762e-18) (19.6837 -16.0288 7.04155e-18) (17.6294 -14.5431 4.5488e-19) (15.873 -12.1361 -1.4012e-18) (14.9103 -9.17892 -6.27312e-22) (15.037 -6.11071 1.77522e-18) (17.3666 -6.66351 -8.97473e-19) (19.156 -6.9628 4.82599e-18) (19.3899 -5.41215 -3.72831e-17) (20.7571 -6.40792 0) (22.1387 -6.7112 0) (20.7157 -7.06987 5.30279e-19) (20.687 -8.81231 -5.15658e-19) (19.1656 -8.80957 1.47775e-20) (17.3376 -8.93824 -9.12905e-19) (18.0663 -11.0783 2.25149e-19) (19.2585 -12.9457 0) (20.6366 -14.267 -8.75819e-19) (21.3641 -12.8713 4.11621e-18) (20.5578 -11.7916 -1.44255e-18) (19.7458 -10.3155 -7.09166e-19) (21.1798 -9.76457 0) (22.3465 -9.14683 0) (24.8486 -9.02892 0) (23.4541 -10.3623 1.06879e-17) (21.7772 -11.0138 -2.12223e-17) (22.6904 -11.4693 -7.13826e-17) (23.6205 -13.8811 3.17718e-18) (22.2041 -15.3034 -9.96111e-19) (23.5424 -15.3017 2.17352e-18) (25.4223 -16.4721 2.93707e-18) (23.148 -17.0042 1.92298e-18) (25.1446 -18.4028 -1.87783e-18) (26.1147 -17.7305 -3.23148e-17) (28.1194 -17.6003 3.23389e-18) (26.8443 -18.919 -2.74143e-18) (27.4247 -16.1535 -3.55516e-17) (28.0955 -14.1133 -3.17728e-21) (25.2838 -14.324 4.01211e-17) (26.2982 -12.3672 3.40583e-17) (24.93 -12.0944 1.03538e-18) (26.6984 -11.0489 -4.60107e-18) (28.1855 -9.57692 0) (27.1135 -8.09395 0) (26.7094 -6.29612 2.01819e-19) (26.8925 -4.71052 -8.12077e-19) (27.3908 -3.50381 4.67487e-23) (27.9457 -2.63271 -4.14463e-19) (28.437 -2.03904 -2.07465e-19) (28.7951 -1.62736 1.03628e-19) (28.996 -1.32584 1.28896e-20) (28.7628 -0.862747 0) (28.4897 -1.05321 0) (27.968 -1.3486 -3.10368e-19) (27.2068 -1.84819 4.11899e-19) (26.2472 -2.72901 1.65783e-18) (24.9017 -1.21242 -1.52123e-18) (23.1956 -1.56537 0) (24.1822 -3.22928 2.14204e-18) (25.0676 -4.17251 -1.53676e-18) (23.4703 -3.55405 -4.01504e-18) (21.9765 -2.42002 9.46039e-19) (22.4786 -5.461 -3.70741e-22) (24.2472 -6.3573 0) (29.3218 -1.68634 -1.2891e-20) (29.71 -1.949 0) (29.6338 -2.37574 0) (29.1884 -2.06446 0) (28.9685 -2.53431 0) (29.5172 -2.87037 0) (30.0614 -3.07863 -3.23958e-21) (30.105 -2.57966 0) (30.1335 -2.12777 0) (30.5717 -2.23998 0) (31.011 -2.30153 0) (31.4434 -2.32512 0) (31.5063 -2.76403 0) (31.0524 -2.75432 0) (30.5826 -2.69857 0) (30.5889 -3.18842 3.2386e-21) (31.0931 -3.22715 0) (31.5706 -3.21492 0) (31.646 -3.68389 0) (31.1443 -3.72846 0) (30.6015 -3.72288 0) (30.0122 -3.64475 5.18681e-20) (29.3717 -3.46608 -1.03784e-19) (28.6794 -3.14647 2.07479e-19) (28.3781 -3.95098 5.17351e-19) (29.2402 -4.18928 -2.0742e-19) (29.1889 -5.04358 2.07128e-19) (28.1677 -4.96379 6.17861e-19) (28.177 -6.17132 -2.5651e-19) (29.2874 -6.00575 2.58383e-20) (30.1713 -5.81399 -2.59193e-20) (30.0246 -5.02557 -1.29627e-20) (29.9864 -4.2942 -5.18698e-20) (30.6394 -4.30971 0) (31.2206 -4.26188 0) (31.744 -4.17184 0) (31.8757 -4.67316 0) (31.339 -4.82183 0) (30.7294 -4.94429 1.29657e-20) (30.8988 -5.60801 0) (31.515 -5.39469 0) (32.0504 -5.17788 0) (32.5251 -4.96063 0) (32.3559 -4.5086 0) (32.2197 -4.05451 0) (32.1106 -3.60566 0) (32.0206 -3.16727 0) (31.941 -2.73985 0) (31.8636 -2.31789 0) (31.7787 -1.91494 0) (31.6647 -1.51525 0) (32.0514 -1.50733 0) (32.4292 -1.487 0) (32.796 -1.45716 0) (33.1504 -1.42031 0) (33.4916 -1.37848 0) (33.8191 -1.33326 0) (34.1328 -1.28579 0) (34.4325 -1.23673 0) (34.7185 -1.18653 0) (34.9911 -1.1366 0) (35.2505 -1.0875 0) (35.497 -1.03945 0) (35.7308 -0.992599 0) (35.9523 -0.947029 0) (36.1618 -0.902795 0) (36.2356 -1.1064 0) (36.0321 -1.16218 0) (35.8165 -1.21961 0) (35.5885 -1.27861 0) (35.3479 -1.33909 0) (35.0942 -1.40088 0) (34.8274 -1.46366 0) (34.5475 -1.52687 0) (34.2539 -1.58997 0) (33.9453 -1.65228 0) (33.6214 -1.7126 0) (33.2823 -1.76943 0) (32.9279 -1.82084 0) (32.5585 -1.86442 0) (32.175 -1.89709 0) (32.2685 -2.2873 0) (32.657 -2.23984 0) (33.0284 -2.18043 0) (33.1228 -2.54727 0) (32.7492 -2.62508 0) (32.3554 -2.6911 0) (32.4442 -3.09535 0) (32.8427 -3.00713 0) (33.218 -2.90832 0) (33.5715 -2.80302 0) (33.4772 -2.46172 0) (33.3828 -2.1128 0) (33.7202 -2.03974 0) (34.0414 -1.9634 0) (34.3468 -1.8855 0) (34.4334 -2.18497 0) (34.1315 -2.27863 0) (33.813 -2.37143 0) (33.905 -2.69419 0) (34.2198 -2.58396 0) (34.5171 -2.47385 0) (34.6017 -2.75679 0) (34.31 -2.88416 0) (34 -3.0129 0) (33.6703 -3.14171 0) (33.3189 -3.26874 0) (32.9437 -3.39127 0) (32.542 -3.50544 0) (32.6557 -3.92032 0) (33.0577 -3.77641 0) (33.4305 -3.62761 0) (33.5562 -3.98174 0) (33.1892 -4.15873 0) (32.791 -4.33546 0) (32.9523 -4.74545 0) (33.3415 -4.53419 0) (33.6991 -4.32814 0) (34.0301 -4.12809 0) (33.8966 -3.80667 0) (33.7776 -3.47714 0) (34.1019 -3.32719 0) (34.4057 -3.17923 0) (34.6909 -3.0342 0) (34.7876 -3.30465 0) (34.5099 -3.46742 0) (34.2136 -3.63494 0) (34.3378 -3.93449 0) (34.6252 -3.74753 0) (34.8945 -3.56724 0) (35.1472 -3.39351 0) (35.0484 -3.14691 0) (34.9591 -2.89274 0) (34.8765 -2.63168 0) (34.7979 -2.36491 0) (34.7194 -2.09166 0) (34.6371 -1.80749 0) (34.913 -1.73044 0) (35.1749 -1.65424 0) (35.4232 -1.57927 0) (35.4889 -1.81944 0) (35.2465 -1.90855 0) (34.9903 -1.99941 0) (35.063 -2.2578 0) (35.3133 -2.15292 0) (35.5497 -2.05053 0) (35.7727 -1.95085 0) (35.7179 -1.73242 0) (35.6583 -1.50589 0) (35.8806 -1.43433 0) (36.0906 -1.36473 0) (36.2885 -1.29711 0) (36.3301 -1.48558 0) (36.1381 -1.56543 0) (35.9341 -1.64772 0) (35.9831 -1.854 0) (36.1813 -1.76001 0) (36.3679 -1.66887 0) (36.4053 -1.84482 0) (36.2242 -1.94718 0) (36.0316 -2.05284 0) (35.8271 -2.16189 0) (35.61 -2.27435 0) (35.3797 -2.39021 0) (35.1355 -2.50938 0) (35.2115 -2.7552 0) (35.4492 -2.62178 0) (35.6731 -2.4925 0) (35.7418 -2.7044 0) (35.5245 -2.84685 0) (35.2937 -2.99431 0) (35.3848 -3.22619 0) (35.6084 -3.06502 0) (35.819 -2.90975 0) (36.0174 -2.76008 0) (35.9464 -2.56681 0) (35.884 -2.36734 0) (36.0826 -2.24622 0) (36.2695 -2.12903 0) (36.4452 -2.0156 0) (36.4906 -2.18121 0) (36.3202 -2.30544 0) (36.139 -2.4339 0) (36.2043 -2.6157 0) (36.3802 -2.47633 0) (36.5457 -2.34167 0) (36.6172 -2.49817 0) (36.4551 -2.64256 0) (36.2835 -2.79222 0) (36.1017 -2.94748 0) (35.9091 -3.1087 0) (35.7049 -3.27627 0) (35.4884 -3.45059 0) (35.2586 -3.63209 0) (35.0144 -3.82124 0) (34.7545 -4.01848 0) (34.4772 -4.22429 0) (34.1804 -4.43918 0) (33.8615 -4.66367 0) (33.517 -4.89835 0) (33.1421 -5.14392 0) (32.7305 -5.40134 0) (32.2732 -5.67218 0) (31.7572 -5.95928 0) (31.1634 -6.26791 0) (30.4623 -6.60785 0) (29.6077 -6.99652 0) (28.5294 -7.46519 5.12617e-20) (29.2663 -8.59559 0) (30.1517 -7.89007 -5.17189e-20) (30.8136 -8.60676 5.18091e-20) (30.156 -9.41685 0) (29.4578 -10.4843 -1.64155e-18) (28.6877 -11.9563 -6.81088e-22) (30.2334 -12.2597 -1.78411e-22) (30.027 -13.8392 -1.62099e-18) (30.541 -15.4837 0) (31.0395 -16.6463 0) (30.2736 -17.4658 1.23027e-18) (29.1969 -16.8188 -1.42188e-18) (28.5478 -15.4205 2.06707e-18) (31.6745 -16.9296 0) (32.0155 -16.5118 0) (32.4913 -15.6886 -5.65642e-22) (31.3392 -16.1248 0) (33.2019 -15.1453 -8.0204e-19) (33.6338 -15.6439 1.61285e-18) (33.8664 -15.833 0) (33.469 -15.9359 0) (33.2319 -15.9743 -1.78824e-18) (33.1581 -16.026 -2.91449e-23) (33.3721 -15.9952 2.03535e-18) (33.4958 -15.9399 -9.27121e-19) (33.953 -15.9276 1.87315e-19) (33.4687 -15.9062 9.29943e-19) (34.39 -15.8991 -1.18466e-18) (34.3994 -16.1145 7.98948e-19) (34.3212 -16.3824 1.4809e-18) (33.7423 -16.2776 -9.43944e-19) (33.381 -16.1323 8.25998e-19) (32.7509 -15.8667 9.73351e-19) (32.9473 -15.9107 -3.59279e-17) (33.6 -16.0856 0) (33.8999 -16.1877 0) (33.5987 -16.359 -1.8896e-18) (34.1499 -16.6777 -1.38678e-18) (33.349 -16.4651 0) (32.7634 -16.1888 1.96012e-18) (32.9994 -16.21 3.26026e-17) (33.7529 -16.7756 -1.93111e-18) (33.4889 -16.8745 7.28108e-18) (32.782 -16.579 0) (33.0182 -16.5749 -3.58289e-17) (33.8856 -17.0639 0) (34.5427 -17.1903 1.39194e-18) (34.515 -17.4558 -1.06695e-22) (34.0997 -16.8847 2.04201e-18) (34.6728 -16.7909 1.59396e-18) (35.0795 -16.8669 -8.05528e-19) (35.0069 -17.2763 -1.61402e-18) (35.4021 -17.3428 0) (35.3337 -17.8088 1.59578e-18) (35.2446 -18.3062 -1.60838e-18) (35.6785 -18.3788 1.61735e-18) (35.6081 -18.9184 0) (35.5196 -19.4855 0) (35.998 -19.5552 -8.0785e-19) (36.0603 -18.9798 -2.03452e-19) (36.1199 -18.4378 0) (36.175 -17.9267 0) (35.7455 -17.8695 -2.0343e-19) (35.8035 -17.3952 2.04583e-19) (35.8479 -16.9507 -1.02665e-19) (35.4582 -16.9113 2.0392e-19) (35.4926 -16.5091 -5.11789e-20) (35.1249 -16.4862 8.10306e-19) (34.7525 -16.4431 -1.58525e-18) (34.7838 -16.1374 -4.01675e-19) (34.7571 -15.8514 4.67708e-23) (34.659 -15.5264 0) (34.2917 -15.6807 7.96519e-19) (34.0773 -15.3306 -1.21564e-18) (33.7474 -14.7532 -2.04227e-19) (34.2198 -14.476 4.11577e-19) (34.4697 -15.0774 0) (34.8471 -14.885 5.14716e-20) (35.007 -15.3891 0) (35.1046 -15.7882 0) (35.1382 -16.1353 1.01726e-19) (35.4952 -16.1241 -5.12867e-20) (35.4535 -15.7265 5.13546e-20) (35.3616 -15.2734 -5.14791e-20) (35.7362 -15.1775 0) (35.8173 -15.667 0) (35.8627 -16.1072 0) (35.8706 -16.5265 0) (36.2641 -16.5349 0) (36.253 -16.9831 -5.14671e-20) (36.2211 -17.4437 -5.13909e-20) (36.6552 -17.4822 0) (36.6215 -17.9763 5.14484e-20) (36.5787 -18.4928 -1.0277e-19) (36.531 -19.0356 1.53926e-19) (36.4816 -19.6073 1.02287e-19) (36.4312 -20.2086 2.03285e-19) (36.9424 -20.2522 0) (36.9803 -19.6548 1.7674e-23) (37.018 -19.084 1.02982e-19) (37.5195 -19.1214 0) (37.4933 -19.6935 5.15653e-20) (37.4667 -20.2893 0) (38.0049 -20.3169 0) (38.0199 -19.721 0) (38.0341 -19.1467 0) (38.0454 -18.5917 0) (37.543 -18.5709 0) (37.0537 -18.538 -4.77802e-24) (37.084 -18.0142 -4.8301e-24) (37.1053 -17.5086 5.15306e-20) (37.1137 -17.0155 0) (36.6749 -17.0046 0) (36.6757 -16.5343 0) (36.6543 -16.0587 0) (36.2481 -16.0845 0) (36.2028 -15.6119 0) (36.1346 -15.1011 0) (36.0592 -14.5536 0) (35.6362 -14.6316 0) (35.2329 -14.7396 0) (35.0995 -14.1427 0) (34.6627 -14.2799 -5.15835e-20) (34.504 -13.6209 0) (33.9894 -13.7765 0) (33.4155 -14.0059 1.54274e-19) (32.7224 -14.3413 0) (31.812 -14.8174 3.25449e-18) (31.3957 -13.5483 -4.07704e-19) (32.3993 -13.3227 1.0302e-18) (33.1799 -13.1541 -5.17277e-20) (33.8278 -13.0287 -1.29364e-19) (33.7521 -12.2704 7.76901e-20) (33.0856 -12.2918 5.18106e-20) (32.3146 -12.3144 -1.03453e-19) (31.393 -12.3169 -1.23737e-18) (31.5824 -11.2598 1.03532e-19) (30.6133 -10.9918 4.13115e-19) (31.0421 -9.97033 4.14353e-19) (31.5076 -9.14577 -5.18306e-20) (31.9678 -8.46644 0) (31.4085 -7.96284 5.18481e-20) (30.8908 -7.34011 -3.88748e-20) (31.5189 -6.88505 -1.29615e-20) (32.0632 -6.492 0) (32.543 -6.14125 0) (32.8539 -6.57328 0) (32.4211 -6.97445 0) (31.9419 -7.43018 0) (32.406 -7.89314 0) (32.8166 -7.39831 0) (33.1987 -6.96205 0) (33.5715 -7.30684 0) (33.2381 -7.76405 0) (32.891 -8.27799 0) (32.536 -8.86402 0) (32.1844 -9.54109 5.18619e-20) (31.8575 -10.3332 0) (32.5921 -10.5747 0) (32.4081 -11.4021 -1.03694e-19) (33.127 -11.4853 0) (33.7696 -11.5437 0) (33.866 -10.8635 -5.17853e-20) (33.2555 -10.742 4.53304e-20) (33.4329 -10.0525 -4.533e-20) (32.8261 -9.8327 5.18228e-20) (33.0971 -9.17686 0) (33.3851 -8.59582 0) (33.6779 -8.07729 0) (33.9677 -7.61049 0) (34.3829 -7.87771 0) (34.1305 -8.34601 0) (33.8822 -8.8598 0) (33.6458 -9.42623 0) (34.1809 -9.62946 0) (34.0082 -10.2242 0) (34.5567 -10.3642 0) (34.4374 -10.9605 0) (34.3612 -11.5921 -2.58689e-20) (34.3483 -12.2586 2.58699e-20) (34.3977 -12.9409 0) (34.9249 -12.8861 -2.58471e-20) (34.992 -13.5177 1.2921e-20) (35.4707 -13.4525 0) (35.5417 -14.0485 0) (35.9936 -13.986 0) (35.9485 -13.4142 0) (35.9283 -12.8463 0) (35.4314 -12.8569 0) (35.4253 -12.2677 0) (34.9002 -12.2578 1.2926e-20) (34.9175 -11.6391 0) (34.9811 -11.0455 0) (35.0846 -10.4824 0) (35.5961 -10.5856 0) (35.5061 -11.1236 0) (35.4496 -11.6875 0) (35.9646 -11.7358 0) (35.9342 -12.2861 0) (36.4336 -12.3102 0) (36.4209 -12.8483 0) (36.4286 -13.3945 0) (36.4559 -13.9463 0) (36.5006 -14.499 0) (36.5564 -15.0423 0) (36.6119 -15.5639 0) (37.0433 -15.5237 0) (37.0816 -16.0323 0) (37.1061 -16.5267 0) (37.5548 -16.514 0) (37.569 -17.0172 0) (37.5705 -17.5235 0) (37.561 -18.0396 0) (38.0515 -18.0535 0) (38.0503 -17.5284 0) (38.0402 -17.0116 0) (38.526 -16.9996 0) (38.5438 -17.5244 0) (38.5548 -18.0569 0) (38.5599 -18.601 0) (38.5605 -19.16 0) (38.5584 -19.7367 0) (38.5554 -20.3332 0) (38.5533 -20.9509 -5.15474e-20) (38.5532 -21.5895 5.1582e-20) (38.5552 -22.2505 1.54563e-19) (38.5611 -22.9358 2.57045e-19) (39.17 -22.9317 0) (39.1521 -22.2503 0) (39.1381 -21.5917 0) (39.7334 -21.5821 0) (39.7597 -22.2384 0) (39.7895 -22.9165 0) (40.4184 -22.8892 0) (40.4645 -23.5846 0) (41.1141 -23.5419 0) (41.177 -24.2549 0) (41.2445 -24.9899 0) (41.9285 -24.9265 0) (42.0146 -25.6786 0) (42.7194 -25.5977 0) (42.8244 -26.3657 0) (43.5497 -26.2668 0) (43.6744 -27.0517 0) (44.4203 -26.9341 0) (44.5657 -27.7364 0) (44.7162 -28.5607 -1.03019e-19) (44.8714 -29.4053 1.82943e-23) (45.0282 -30.2674 5.13783e-20) (45.1827 -31.1471 0) (45.3348 -32.0561 2.03592e-19) (46.2066 -31.9089 -2.05085e-19) (46.3853 -32.8348 -2.03815e-19) (47.2819 -32.6649 -2.05129e-19) (47.4855 -33.6078 -4.07946e-19) (47.6765 -34.5681 -2.02088e-18) (47.8496 -35.5317 1.61306e-18) (48.8506 -35.3433 1.61679e-18) (48.6348 -34.3742 8.16784e-19) (48.4068 -33.4148 5.1248e-20) (49.3246 -33.1982 -8.99636e-20) (49.5818 -34.1597 0) (49.8349 -35.1355 2.04136e-19) (50.0726 -36.1256 -6.07379e-19) (51.0907 -35.9001 5.11103e-20) (51.3661 -36.9354 2.03118e-19) (52.4131 -36.6726 3.06829e-19) (52.7265 -37.7299 -1.22799e-22) (53.8031 -37.4337 -2.04657e-19) (54.1533 -38.5132 4.07151e-19) (55.2591 -38.1825 0) (55.6469 -39.2837 1.01847e-18) (56.022 -40.3984 0) (56.3563 -41.5218 3.9531e-19) (56.6752 -42.7345 -2.36792e-18) (58.0145 -42.386 -3.99858e-19) (58.3921 -43.5985 -1.58812e-18) (59.7642 -43.2146 -8.01899e-19) (60.1848 -44.4528 4.7652e-18) (60.5991 -45.703 -1.37146e-18) (59.0621 -45.481 0) (58.4675 -45.6178 -1.92199e-18) (60.9381 -46.3996 -2.00388e-18) (62.5602 -46.5899 5.53014e-18) (62.9405 -47.2954 -6.69459e-17) (62.0768 -45.3026 0) (61.6014 -44.0281 -2.00481e-18) (61.0947 -42.7725 0) (60.5722 -41.5483 -5.10268e-20) (59.3108 -41.9883 6.08189e-19) (58.8463 -40.7943 -2.03725e-19) (57.6189 -41.1802 4.03371e-19) (57.2093 -40.0412 0) (58.378 -39.6442 -5.11477e-20) (59.533 -39.2037 0) (60.0512 -40.3576 5.11281e-20) (61.2392 -39.8726 5.1236e-20) (61.8109 -41.0595 0) (62.3908 -42.2814 1.01942e-19) (62.9725 -43.5348 3.74958e-22) (63.5408 -44.8214 4.02002e-19) (64.0923 -46.1185 0) (65.5825 -45.5713 -4.01233e-19) (64.9459 -44.2674 0) (64.3025 -42.9872 5.09248e-20) (65.6033 -42.3874 -8.94543e-20) (66.3084 -43.6626 -1.01843e-19) (67.0196 -44.9674 -1.01128e-19) (67.7165 -46.2949 2.12567e-22) (69.1976 -45.639 4.05902e-19) (69.9842 -47.0322 -2.01931e-19) (71.4999 -46.2892 5.0708e-20) (72.3842 -47.7157 0) (73.2687 -49.1881 -1.59889e-18) (74.1491 -50.6712 3.18926e-18) (75.9076 -49.8213 -2.39876e-18) (76.8554 -51.3172 3.92514e-19) (77.8296 -52.9495 0) (79.7761 -51.9931 0) (80.895 -53.6224 -7.84914e-19) (82.8739 -52.5433 1.59246e-18) (84.1673 -54.1794 0) (86.1534 -52.9562 0) (84.7226 -51.3332 -8.05131e-19) (86.4524 -50.0354 0) (87.9995 -51.6113 -2.00747e-19) (89.5795 -53.2171 1.19736e-18) (91.4308 -51.7366 -1.0072e-19) (93.2063 -53.3727 -3.99702e-19) (95.0741 -55.067 3.97542e-19) (96.9389 -56.7502 3.85495e-19) (98.9062 -58.5738 -6.20716e-21) (101.164 -60.2603 2.69193e-18) (98.9163 -61.7803 -1.88977e-18) (97.6352 -61.0228 3.91083e-18) (96.9292 -61.3522 -1.82333e-18) (102.406 -61.1261 -3.11303e-17) (103.573 -58.431 1.57201e-18) (101.252 -56.6947 7.88763e-19) (99.0941 -54.9448 -7.92643e-19) (97.0249 -53.3162 -4.00466e-19) (95.0306 -51.7093 9.53088e-23) (93.1403 -50.1563 -1.51398e-19) (91.3358 -48.6542 3.16147e-21) (89.7233 -50.1762 -5.05796e-20) (88.0816 -48.6546 4.42319e-20) (89.6121 -47.1918 6.33342e-21) (87.9689 -45.7727 3.17114e-21) (86.5123 -47.1785 -1.58571e-20) (84.9683 -48.5081 1.26693e-20) (83.3371 -49.7546 0) (81.612 -50.9157 2.01252e-19) (80.3783 -49.354 5.08898e-20) (78.6712 -50.3816 -2.00232e-19) (77.5784 -48.8826 3.02759e-19) (76.4857 -47.4127 1.01399e-19) (74.9136 -48.3355 0) (73.9298 -46.8843 5.07107e-20) (72.9657 -45.4774 -6.37282e-20) (74.3862 -44.6001 6.69359e-20) (75.4208 -45.9837 -1.14555e-19) (76.8617 -45.0166 1.91909e-20) (77.9996 -46.42 9.58652e-23) (79.1753 -47.8675 1.01991e-22) (80.7071 -46.7758 -5.08636e-20) (81.9997 -48.2359 -1.26732e-20) (83.5438 -47.033 1.26978e-20) (85.0104 -45.7503 6.34508e-21) (86.402 -44.4011 -6.34693e-21) (84.9062 -43.0745 0) (83.572 -44.3694 6.35365e-21) (82.173 -45.607 -6.35154e-21) (80.8547 -44.2252 6.35553e-21) (79.4568 -45.3573 1.01717e-19) (78.2511 -43.9832 -5.72396e-20) (77.0906 -42.6554 0) (75.7613 -43.6578 -5.41086e-20) (74.6981 -42.3429 0) (73.3829 -43.2604 -6.37251e-20) (72.027 -44.1178 -3.82968e-20) (70.6321 -44.9117 5.0906e-20) (69.7811 -43.5839 -1.27626e-20) (68.4169 -44.3059 1.27278e-20) (67.6412 -43.004 -5.10739e-20) (66.8798 -41.7378 3.83075e-20) (66.136 -40.5079 3.19784e-21) (64.9095 -41.1466 3.51924e-20) (63.6614 -41.7382 -3.84002e-20) (63.0302 -40.5229 5.12136e-20) (62.4113 -39.3439 -3.83888e-20) (61.8048 -38.1989 1.28022e-20) (60.6754 -38.7216 -5.12154e-20) (60.1208 -37.6006 0) (59.0183 -38.0775 5.12705e-20) (57.9053 -38.517 -4.26144e-23) (56.7821 -38.9191 -1.53461e-19) (56.3518 -37.816 -6.4062e-20) (55.9243 -36.7375 4.49141e-20) (54.868 -37.1025 1.2816e-20) (54.4796 -36.0468 5.13599e-20) (53.45 -36.3761 5.1309e-20) (53.1001 -35.3443 0) (52.0983 -35.6392 5.12818e-20) (51.7839 -34.6353 0) (50.8111 -34.9007 -5.12452e-20) (50.5263 -33.9196 -5.13702e-20) (50.2421 -32.9576 4.49763e-20) (51.1598 -32.6941 4.49682e-20) (51.4699 -33.6533 -3.85514e-20) (52.4121 -33.3616 -1.28481e-20) (52.754 -34.3405 0) (53.7213 -34.0185 0) (54.0973 -35.0186 -3.85072e-20) (55.0896 -34.6637 -1.28387e-20) (55.5028 -35.6866 -3.84886e-20) (56.5198 -35.2957 -1.28332e-20) (56.9733 -36.3411 -6.41594e-21) (57.4358 -37.4146 7.05174e-20) (58.5114 -36.9798 -5.76773e-20) (58.0148 -35.9119 0) (57.5299 -34.8735 0) (57.0572 -33.866 0) (56.0766 -34.2787 0) (55.6441 -33.2911 0) (54.685 -33.6682 0) (54.2902 -32.7 0) (53.3526 -33.0436 0) (52.993 -32.0946 0) (52.0772 -32.4067 0) (51.7505 -31.4771 -3.21379e-21) (50.8564 -31.7594 -3.21525e-21) (49.9621 -32.0186 3.21224e-21) (49.0684 -32.2561 6.75215e-20) (48.1753 -32.4719 3.85357e-20) (47.9458 -31.5486 5.14653e-20) (47.0761 -31.7398 0) (46.873 -30.8362 0) (46.0272 -31.0031 0) (45.8491 -30.122 0) (46.6734 -29.9561 0) (47.5005 -29.7716 0) (47.7207 -30.6481 -5.14563e-20) (48.5701 -30.4405 0) (48.8165 -31.3362 -5.14371e-20) (49.6881 -31.1035 0) (49.4212 -30.2124 0) (49.1619 -29.3454 0) (48.3303 -29.5681 0) (48.0976 -28.7187 0) (47.2862 -28.9173 0) (46.4775 -29.0976 0) (45.6724 -29.2604 0) (45.4996 -28.4187 0) (45.3323 -27.5991 0) (45.1714 -26.8014 0) (45.9268 -26.6532 0) (46.1036 -27.4456 0) (46.2872 -28.2606 0) (47.0786 -28.0851 0) (46.8781 -27.2759 0) (46.6848 -26.4894 0) (47.444 -26.3097 0) (47.6544 -27.0899 0) (47.8722 -27.8927 0) (48.6666 -27.6832 0) (48.9103 -28.5025 0) (49.7228 -28.2683 0) (49.9937 -29.104 0) (50.273 -29.9641 0) (50.5606 -30.8491 0) (51.4327 -30.5737 0) (51.1239 -29.6962 0) (50.8244 -28.8437 0) (50.5339 -28.0153 0) (50.2523 -27.2105 0) (49.4605 -27.456 0) (49.2063 -26.6664 0) (48.431 -26.887 0) (48.2028 -26.1131 0) (48.96 -25.8988 0) (49.7139 -25.667 0) (49.979 -26.4277 0) (50.7478 -26.1705 0) (51.0405 -26.946 0) (51.3419 -27.7431 0) (51.6526 -28.5639 0) (51.9727 -29.4082 0) (52.3028 -30.2776 0) (52.6429 -31.1728 0) (53.5322 -30.8465 0) (53.9057 -31.7595 0) (54.8142 -31.4013 0) (55.2232 -32.3321 0) (56.1507 -31.9399 0) (56.5974 -32.8884 0) (57.5436 -32.4601 0) (58.0305 -33.4262 0) (58.5319 -34.4224 0) (59.0479 -35.4499 0) (59.5776 -36.5095 0) (60.6333 -36.0049 0) (61.2115 -37.0853 0) (62.2893 -36.535 0) (62.9195 -37.6358 -1.28082e-20) (63.5667 -38.7714 -1.28027e-20) (64.2303 -39.9413 -3.83635e-20) (65.4104 -39.3141 -1.27951e-20) (64.7046 -38.1568 0) (64.0186 -37.0364 0) (65.1014 -36.4021 0) (65.8241 -37.5045 0) (66.5701 -38.6441 0) (67.3395 -39.8218 0) (68.1317 -41.0382 0) (68.9462 -42.2928 1.27625e-20) (70.2216 -41.5264 -1.27706e-20) (71.1127 -42.8028 3.82507e-20) (72.4095 -41.9638 1.27616e-20) (73.6713 -41.0725 -3.18793e-21) (72.6808 -39.8446 0) (71.4667 -40.7083 0) (70.5553 -39.4945 0) (69.3571 -40.2887 0) (68.5193 -39.092 0) (67.7088 -37.9348 0) (66.9247 -36.8159 0) (66.1672 -35.7342 0) (67.2142 -35.0345 0) (68.0056 -36.093 0) (68.8257 -37.1882 0) (69.6752 -38.3216 0) (70.8065 -37.5131 0) (71.7262 -38.6586 0) (72.8691 -37.784 0) (73.8639 -38.9387 0) (74.8981 -40.1346 3.18933e-21) (75.9732 -41.3729 0) (77.2088 -40.3558 0) (78.3745 -41.6004 0) (79.589 -42.8898 0) (80.8763 -41.7441 0) (82.1944 -43.0338 -6.35873e-21) (83.4779 -41.792 0) (82.1137 -40.5528 0) (80.8091 -39.3553 0) (79.6142 -40.4987 0) (78.405 -39.2962 0) (77.2457 -38.1346 0) (76.0899 -39.1542 0) (75.0152 -37.9939 0) (73.9824 -36.8729 0) (75.0639 -35.9262 0) (76.1328 -37.0119 0) (77.2147 -35.9945 0) (78.3635 -37.0783 0) (79.5601 -38.1976 0) (80.6724 -37.0623 0) (81.9581 -38.1732 0) (83.301 -39.3209 0) (84.7061 -40.5064 0) (86.1778 -41.7314 0) (87.7216 -42.9973 0) (89.3419 -44.3049 0) (91.0452 -45.6559 0) (92.8366 -47.049 -3.16385e-21) (94.7207 -48.482 3.15837e-21) (96.7029 -49.9559 5.0447e-20) (98.7952 -51.4713 2.50658e-20) (100.999 -53.0147 4.99626e-20) (103.32 -54.6236 0) (105.798 -56.2801 0) (107.72 -53.9714 1.99147e-19) (110.45 -55.4641 -2.2046e-21) (112.215 -52.9393 4.99435e-20) (113.699 -50.3555 0) (110.8 -49.1378 2.5088e-20) (109.378 -51.5865 -2.75275e-19) (106.71 -50.219 -5.02186e-20) (105.126 -52.4614 5.00866e-20) (102.696 -50.9839 -1.0056e-19) (100.4 -49.5372 -2.52786e-20) (98.2291 -48.1161 5.03761e-20) (96.1759 -46.7281 3.15641e-21) (97.5142 -44.9179 -6.31765e-21) (99.6172 -46.2086 0) (101.844 -47.5255 0) (104.204 -48.8642 0) (105.538 -46.6832 0) (108.087 -47.9106 0) (109.279 -45.5671 0) (112.014 -46.6541 0) (114.946 -47.7285 4.99804e-20) (115.955 -45.0679 -3.13272e-21) (113.05 -44.1685 0) (110.316 -43.2184 0) (111.214 -40.8853 0) (113.903 -41.6865 0) (116.733 -42.4144 -1.16287e-24) (117.361 -39.8349 3.13254e-21) (114.596 -39.2361 0) (111.972 -38.573 0) (109.467 -37.8478 0) (108.668 -40.0389 0) (107.755 -42.2528 0) (106.716 -44.4725 0) (104.303 -43.3745 0) (103.14 -45.4637 0) (100.879 -44.257 0) (98.7442 -43.0684 0) (99.8721 -41.1926 0) (102.025 -42.2794 0) (103.062 -40.2875 0) (105.343 -41.2737 0) (106.268 -39.1746 0) (107.087 -37.0866 0) (104.832 -36.305 0) (103.995 -38.2936 0) (101.838 -37.4034 0) (100.902 -39.3012 0) (98.8522 -38.3195 0) (97.8331 -40.1186 0) (96.7247 -41.9011 0) (95.525 -43.6572 0) (94.2308 -45.3776 0) (92.3863 -44.0631 0) (90.6356 -42.7867 0) (88.9718 -41.5482 0) (90.1528 -40.0618 0) (91.8525 -41.2285 0) (93.6405 -42.427 0) (94.8108 -40.7567 0) (92.9937 -39.6368 0) (91.2655 -38.5426 0) (89.6196 -37.4754 0) (88.5353 -38.927 0) (87.388 -40.3468 0) (85.8782 -39.1817 0) (84.4366 -38.0518 0) (83.0594 -36.9563 0) (84.1114 -35.7081 0) (85.5192 -36.7499 0) (86.9924 -37.8231 0) (88.0487 -36.434 0) (86.5484 -35.4193 0) (85.1132 -34.4312 0) (86.0637 -33.1301 0) (87.5227 -34.0638 0) (89.0465 -35.0203 0) (90.6407 -35.9991 0) (92.3096 -36.9989 0) (94.0594 -38.0194 0) (95.8981 -39.06 0) (96.9048 -37.3451 0) (95.0514 -36.383 0) (93.2851 -35.4349 0) (94.1929 -33.8551 0) (95.9706 -34.7327 0) (97.833 -35.6188 0) (99.786 -36.5102 0) (100.638 -34.6992 0) (102.685 -35.5075 0) (103.448 -33.6193 0) (105.579 -34.332 0) (107.814 -35.0229 0) (110.158 -35.6858 0) (112.607 -36.2949 0) (115.173 -36.8501 0) (117.87 -37.3432 0) (120.701 -37.7528 0) (123.669 -38.0544 0) (123.853 -35.4362 0) (126.813 -35.5022 0) (126.768 -32.9238 0) (129.671 -32.7663 0) (132.643 -32.4362 0) (132.212 -29.9155 0) (135.036 -29.3794 0) (134.425 -27.021 0) (137.063 -26.3237 0) (139.657 -25.4464 0) (138.75 -23.3439 0) (136.32 -24.1527 0) (133.841 -24.809 0) (133.288 -22.7215 0) (135.633 -22.1112 0) (137.924 -21.3718 0) (137.175 -19.5079 0) (135 -20.1806 0) (132.772 -20.743 0) (130.51 -21.1969 0) (130.915 -23.2058 0) (131.337 -25.3188 0) (131.773 -27.5493 0) (129.131 -27.9221 0) (129.414 -30.2753 0) (126.664 -30.4788 0) (123.975 -30.5454 0) (123.948 -32.9334 0) (121.218 -32.8174 0) (121.005 -35.2382 0) (118.271 -34.9319 5.02631e-20) (115.651 -34.5369 -5.01309e-20) (113.144 -34.0722 0) (113.599 -31.9025 0) (116.043 -32.2856 0) (118.582 -32.5961 0) (118.817 -30.3408 0) (121.358 -30.4937 0) (121.439 -28.2591 0) (123.951 -28.2616 0) (126.519 -28.1543 0) (126.345 -25.9403 0) (128.833 -25.6921 0) (128.531 -23.5712 0) (128.231 -21.5472 0) (125.952 -21.7994 0) (126.154 -23.8252 0) (123.796 -23.9775 0) (123.888 -26.0755 0) (121.473 -26.1099 0) (119.106 -26.0555 0) (118.988 -28.1612 0) (116.605 -27.9813 0) (116.358 -30.1017 0) (113.979 -29.79 0) (111.685 -29.4186 0) (111.253 -31.461 0) (110.748 -33.5532 0) (108.448 -32.9856 0) (106.242 -32.3764 0) (104.131 -31.7435 0) (104.738 -29.8851 0) (106.828 -30.4458 0) (108.998 -30.975 0) (109.472 -28.9994 0) (107.338 -28.5418 0) (105.279 -28.0457 0) (105.755 -26.2305 0) (107.785 -26.6641 0) (109.88 -27.0629 0) (112.051 -27.4217 0) (114.291 -27.7311 0) (114.546 -25.7235 0) (116.797 -25.9233 0) (116.942 -23.9238 0) (119.183 -24.0167 0) (121.471 -24.0379 0) (121.44 -22.0398 0) (123.685 -21.9609 0) (123.561 -20.0163 0) (125.748 -19.852 0) (127.941 -19.6076 0) (130.127 -19.277 0) (132.292 -18.8562 0) (134.422 -18.342 0) (136.498 -17.7339 0) (138.503 -17.0338 0) (140.417 -16.2471 0) (142.222 -15.3826 0) (143.9 -14.4528 0) (145.437 -13.4737 0) (146.822 -12.4636 0) (148.05 -11.4436 0) (149.12 -10.4338 0) (150.039 -9.45199 0) (150.817 -8.51374 0) (151.467 -7.63227 0) (152.005 -6.81423 4.92406e-20) (152.447 -6.0653 -4.9264e-20) (152.808 -5.3864 0) (153.102 -4.77769 0) (153.344 -4.23521 0) (153.546 -3.75421 0) (153.715 -3.32798 0) (153.858 -2.95027 0) (153.98 -2.61557 0) (154.085 -2.31961 0) (154.175 -2.05821 0) (154.253 -1.82762 0) (154.321 -1.62405 0) (154.381 -1.44401 0) (154.433 -1.28386 0) (154.476 -1.1407 0) (154.511 -1.0125 0) (154.538 -0.897752 0) (154.558 -0.79504 0) (154.571 -0.703521 0) (154.583 -0.620703 0) (154.617 -0.612048 0) (154.595 -0.691038 -4.44255e-20) (154.565 -0.777202 -2.6577e-24) (154.544 -0.741929 0) (154.594 -0.664434 0) (154.633 -0.59398 0) (154.622 -0.55943 0) (154.566 -0.621396 0) (154.504 -0.692006 0) (154.434 -0.773422 0) (154.487 -0.829473 0) (154.525 -0.872615 -3.442e-24) (154.477 -0.979664 -4.24991e-24) (154.419 -1.10022 -5.05786e-24) (154.354 -1.23598 4.77483e-20) (154.265 -1.17143 0) (154.347 -1.04281 0) (154.421 -0.929264 0) (154.356 -0.866926 0) (154.27 -0.973506 0) (154.173 -1.09407 0) (154.084 -1.00539 0) (154.194 -0.894491 0) (154.292 -0.796138 0) (154.379 -0.709508 0) (154.457 -0.633798 0) (154.527 -0.568268 0) (154.592 -0.511805 0) (154.559 -0.458317 0) (154.489 -0.510246 0) (154.412 -0.570246 0) (154.37 -0.501057 0) (154.454 -0.447928 0) (154.528 -0.401548 0) (154.501 -0.340948 0) (154.421 -0.380546 0) (154.332 -0.425647 0) (154.231 -0.476942 0) (154.277 -0.561619 0) (154.326 -0.639077 0) (154.23 -0.717398 0) (154.121 -0.805925 0) (153.999 -0.90554 0) (153.919 -0.79493 0) (154.053 -0.707789 0) (154.172 -0.630297 0) (154.118 -0.535077 0) (153.99 -0.600655 0) (153.846 -0.674373 0) (153.683 -0.757114 0) (153.767 -0.892798 0) (153.86 -1.01749 0) (153.96 -1.13016 -3.00492e-21) (154.064 -1.23005 3.00556e-21) (154.172 -1.31671 0) (154.279 -1.38898 0) (154.196 -1.56166 0) (154.101 -1.75703 0) (153.994 -1.97788 0) (153.816 -1.87419 0) (153.95 -1.66561 0) (154.068 -1.4806 0) (153.941 -1.3831 0) (153.802 -1.55536 0) (153.643 -1.74909 0) (153.463 -1.96657 3.04133e-21) (153.663 -2.10907 0) (153.871 -2.22758 0) (153.73 -2.5092 0) (153.566 -2.82631 4.88479e-20) (153.377 -3.18304 -4.89387e-20) (153.057 -3.00172 0) (153.288 -2.66947 0) (153.488 -2.37314 0) (153.258 -2.21043 0) (153.024 -2.48324 0) (152.756 -2.78801 0) (152.478 -2.54551 0) (152.778 -2.27037 0) (153.042 -2.02332 0) (153.275 -1.802 -3.03932e-21) (153.479 -1.60421 0) (153.66 -1.42762 0) (153.819 -1.27026 0) (153.703 -1.14309 0) (153.526 -1.2839 0) (153.326 -1.44174 0) (153.185 -1.2628 0) (153.403 -1.12535 0) (153.596 -1.00253 0) (153.5 -0.849816 0) (153.293 -0.953459 0) (153.061 -1.06932 0) (152.798 -1.19842 0) (152.94 -1.41619 0) (153.099 -1.61819 0) (152.843 -1.81513 0) (152.553 -2.03439 0) (152.225 -2.27786 0) (151.997 -1.98769 0) (152.35 -1.7772 0) (152.662 -1.58717 0) (152.503 -1.34197 0) (152.172 -1.50118 0) (151.799 -1.67726 0) (151.632 -1.35104 -4.84345e-20) (152.022 -1.21015 0) (152.369 -1.08258 0) (152.679 -0.967325 4.81279e-20) (152.954 -0.863632 -4.80648e-20) (153.2 -0.770487 0) (153.418 -0.68705 0) (153.611 -0.612334 0) (153.783 -0.545587 0) (153.936 -0.486069 0) (154.071 -0.433081 4.70394e-20) (154.191 -0.386139 -9.3642e-20) (154.298 -0.344694 4.65541e-20) (154.393 -0.308251 0) (154.478 -0.276234 0) (154.458 -0.209298 0) (154.37 -0.233503 0) (154.27 -0.261077 0) (154.251 -0.179557 0) (154.353 -0.160592 0) (154.444 -0.143951 0) (154.436 -0.0832442 0) (154.343 -0.0928692 0) (154.239 -0.103839 0) (154.123 -0.116315 0) (154.136 -0.20113 0) (154.159 -0.292444 0) (154.033 -0.327966 0) (153.892 -0.368041 0) (153.733 -0.413026 0) (153.698 -0.283977 0) (153.862 -0.253081 0) (154.007 -0.225547 0) (153.992 -0.130429 0) (153.844 -0.146343 0) (153.678 -0.164194 0) (153.491 -0.184188 0) (153.514 -0.31859 0) (153.554 -0.463445 0) (153.353 -0.519845 0) (153.126 -0.58278 0) (152.871 -0.652978 0) (152.814 -0.448584 0) (153.075 -0.40046 0) (153.307 -0.357293 0) (153.281 -0.206541 0) (153.045 -0.23146 0) (152.78 -0.259234 0) (152.483 -0.290079 0) (152.521 -0.502059 0) (152.585 -0.73103 0) (152.265 -0.817687 0) (151.905 -0.913486 0) (151.503 -1.01912 0) (151.415 -0.699204 0) (151.825 -0.626962 0) (152.192 -0.561402 0) (152.15 -0.324299 0) (151.778 -0.36208 0) (151.363 -0.403691 0) (150.9 -0.449333 0) (150.957 -0.778459 0) (151.054 -1.13506 5.0388e-20) (151.196 -1.5059 4.8471e-20) (151.38 -1.8712 0) (151.6 -2.22003 0) (151.853 -2.54743 0) (152.137 -2.85093 0) (152.451 -3.12746 0) (152.791 -3.37314 0) (153.157 -3.58364 0) (152.899 -4.03342 0) (152.596 -4.53664 0) (152.236 -5.09677 0) (151.712 -4.75897 4.92063e-20) (152.127 -4.24919 0) (152.484 -3.78801 0) (152.1 -3.50487 0) (151.698 -3.92212 0) (151.236 -4.38068 0) (150.705 -4.88141 0) (151.229 -5.31903 -4.92363e-20) (151.809 -5.71637 0) (151.301 -6.39442 0) (150.7 -7.12988 0) (149.994 -7.91691 0) (149.262 -7.28307 -4.93347e-20) (150.014 -6.58453 9.86804e-20) (150.667 -5.92815 -4.93114e-20) (150.097 -5.42312 0) (149.403 -6.00343 4.93704e-20) (148.613 -6.61846 -4.93438e-20) (148.042 -5.92921 0) (148.862 -5.39363 0) (149.591 -4.88598 0) (150.237 -4.40995 0) (150.807 -3.96785 0) (151.308 -3.56099 0) (151.749 -3.18898 0) (151.434 -2.84472 0) (150.959 -3.1706 0) (150.425 -3.52555 0) (150.089 -3.05752 0) (150.652 -2.75457 0) (151.154 -2.47548 0) (150.911 -2.08389 0) (150.387 -2.31565 0) (149.801 -2.56654 0) (149.149 -2.83638 0) (149.459 -3.38423 0) (149.822 -3.90965 0) (149.145 -4.32161 0) (148.387 -4.75926 0) (147.543 -5.21938 0) (147.113 -4.49105 0) (147.976 -4.10331 0) (148.757 -3.73346 0) (148.426 -3.12406 0) (147.627 -3.42795 0) (146.748 -3.74567 0) (145.785 -4.07433 0) (146.162 -4.89324 0) (146.608 -5.69785 0) (147.126 -6.48789 0) (147.721 -7.26225 0) (148.4 -8.01749 0) (149.169 -8.74947 0) (148.216 -9.61602 0) (147.127 -10.5034 0) (145.898 -11.3974 0) (145.088 -10.3364 0) (146.317 -9.55562 0) (147.42 -8.77875 0) (146.72 -7.92683 0) (145.607 -8.60307 0) (144.379 -9.28147 0) (143.038 -9.95134 0) (143.734 -11.1079 0) (144.53 -12.2817 0) (143.027 -13.1393 0) (141.399 -13.9554 0) (139.656 -14.717 0) (138.983 -13.2385 0) (140.673 -12.5705 0) (142.26 -11.8565 0) (141.589 -10.6011 0) (140.035 -11.222 0) (138.389 -11.8042 0) (137.867 -10.4052 0) (139.478 -9.90221 0) (141.002 -9.36708 0) (142.431 -8.80755 0) (143.761 -8.23082 0) (144.988 -7.64632 0) (146.109 -7.06277 0) (145.577 -6.18891 0) (144.451 -6.68638 0) (143.226 -7.18401 0) (142.767 -6.13783 0) (143.99 -5.72163 0) (145.121 -5.3051 0) (144.737 -4.41055 0) (143.602 -4.75017 0) (142.381 -5.0892 0) (141.075 -5.42321 0) (141.455 -6.54806 0) (141.905 -7.67474 0) (140.493 -8.15092 0) (138.993 -8.60682 0) (137.413 -9.03573 0) (137.021 -7.68704 0) (138.576 -7.32765 0) (140.057 -6.94618 0) (139.689 -5.74737 0) (138.225 -6.05815 0) (136.69 -6.35124 0) (136.419 -5.02991 0) (137.938 -4.8002 0) (139.39 -4.55683 0) (140.767 -4.3031 0) (142.067 -4.04169 0) (143.287 -3.77652 0) (144.423 -3.51053 0) (145.478 -3.24674 0) (146.45 -2.98851 0) (147.341 -2.73845 0) (148.155 -2.49899 0) (148.894 -2.27199 0) (149.563 -2.05861 0) (150.167 -1.85958 0) (150.709 -1.67529 0) (150.554 -1.26167 4.9595e-23) (149.998 -1.3993 -5.04715e-20) (149.381 -1.54783 0) (149.257 -1.05984 0) (149.882 -0.958711 4.29762e-22) (150.448 -0.864897 0) (150.385 -0.499108 3.04916e-20) (149.815 -0.553019 -3.10012e-20) (149.184 -0.611 0) (148.488 -0.673102 0) (148.566 -1.16811 0) (148.699 -1.70692 0) (147.948 -1.8757 0) (147.124 -2.05342 0) (146.223 -2.2387 0) (146.07 -1.52891 0) (146.976 -1.40328 0) (147.807 -1.28278 0) (147.724 -0.73889 0) (146.89 -0.808006 0) (145.98 -0.879995 0) (144.995 -0.954096 0) (145.087 -1.6585 0) (145.245 -2.42969 0) (144.186 -2.6247 0) (143.047 -2.82157 0) (141.83 -3.01752 0) (141.669 -2.05652 0) (142.885 -1.92392 0) (144.026 -1.79073 0) (143.932 -1.02966 0) (142.791 -1.10583 0) (141.574 -1.18161 0) (140.282 -1.25624 0) (140.375 -2.18714 0) (140.533 -3.21054 0) (139.163 -3.39789 0) (137.72 -3.57764 0) (136.213 -3.74739 0) (136.073 -2.55056 0) (137.572 -2.43561 0) (139.009 -2.31393 0) (138.919 -1.32868 0) (137.486 -1.3982 0) (135.991 -1.46389 0) (134.436 -1.52518 0) (134.512 -2.65779 0) (134.644 -3.90564 0) (134.836 -5.24388 0) (135.088 -6.6239 0) (135.396 -8.02087 0) (135.759 -9.43337 0) (136.179 -10.8703 0) (136.658 -12.3405 0) (137.202 -13.8518 0) (137.815 -15.4136 0) (135.889 -16.0373 0) (133.896 -16.5832 0) (131.85 -17.0491 0) (131.446 -15.3091 0) (133.42 -14.8901 0) (135.343 -14.4037 0) (134.855 -12.8258 0) (132.991 -13.2558 0) (131.079 -13.6276 0) (129.128 -13.9411 0) (129.435 -15.6593 0) (129.768 -17.4348 0) (127.662 -17.7424 0) (125.546 -17.9749 0) (123.43 -18.1364 0) (123.294 -16.314 0) (125.348 -16.1589 0) (127.398 -15.9418 0) (127.151 -14.1965 0) (125.158 -14.3963 0) (123.159 -14.5416 0) (123.027 -12.813 0) (124.979 -12.6796 0) (126.923 -12.4997 0) (128.848 -12.2718 0) (130.747 -11.9943 0) (132.608 -11.6675 0) (134.423 -11.2919 0) (134.043 -9.79503 0) (132.269 -10.1184 0) (130.452 -10.4009 0) (130.191 -8.83765 0) (131.973 -8.59821 0) (133.712 -8.32524 0) (133.43 -6.87299 0) (131.719 -7.09693 0) (129.967 -7.29395 0) (128.178 -7.46365 0) (128.372 -9.04316 0) (128.596 -10.6423 0) (126.715 -10.842 0) (124.813 -11.001 0) (122.901 -11.1205 0) (122.783 -9.45529 0) (124.661 -9.35075 0) (126.527 -9.21384 0) (126.362 -7.6056 0) (124.527 -7.72015 0) (122.677 -7.80812 0) (120.82 -7.87048 0) (120.899 -9.52817 0) (120.984 -11.2025 0) (121.072 -12.9024 0) (121.16 -14.6362 0) (121.244 -16.411 0) (121.322 -18.2321 0) (121.389 -20.1067 0) (119.24 -20.129 0) (119.225 -22.0442 0) (117.047 -21.9817 0) (114.912 -21.8601 0) (114.75 -23.7679 0) (112.612 -23.5577 0) (112.358 -25.4668 0) (110.232 -25.1616 0) (108.171 -24.8164 0) (106.172 -24.4382 0) (106.536 -22.6705 0) (108.504 -23.0018 0) (110.529 -23.2998 0) (110.781 -21.4692 0) (112.822 -21.6871 0) (112.991 -19.8588 0) (115.036 -19.9988 0) (117.12 -20.0909 0) (117.165 -18.2473 0) (119.232 -18.2672 0) (119.208 -16.4541 0) (119.17 -14.6834 0) (117.194 -14.6869 0) (117.189 -16.448 0) (115.196 -16.3973 0) (115.13 -18.178 0) (113.126 -18.0644 0) (111.16 -17.9123 0) (110.989 -19.6768 0) (109.031 -19.458 0) (108.79 -21.2137 0) (106.85 -20.926 0) (104.962 -20.6114 0) (104.624 -22.3109 0) (104.236 -24.03 0) (103.794 -25.7693 0) (103.295 -27.5261 0) (102.735 -29.3014 0) (102.108 -31.0898 0) (101.41 -32.8908 0) (99.4621 -32.153 0) (98.6844 -33.8867 0) (96.8181 -33.0741 0) (95.0332 -32.2649 0) (93.3234 -31.461 0) (92.4923 -32.9875 0) (91.5981 -34.502 0) (89.9848 -33.5851 0) (88.4416 -32.6867 0) (86.962 -31.8066 0) (87.8079 -30.4642 0) (89.3043 -31.291 0) (90.8641 -32.132 0) (91.6848 -30.6653 0) (90.1116 -29.8797 0) (88.6016 -29.1061 0) (87.1491 -28.3445 0) (86.3702 -29.6528 0) (85.5419 -30.9449 0) (84.6643 -32.2178 0) (83.7377 -33.4688 0) (82.7628 -34.695 0) (81.7404 -35.8935 0) (80.4771 -34.8634 0) (79.441 -35.9868 0) (78.2593 -34.9445 0) (77.1248 -33.9352 0) (76.1119 -34.9462 0) (75.0519 -33.9315 0) (74.0363 -34.876 0) (72.989 -35.7892 0) (71.9118 -36.6686 0) (70.9897 -35.5905 0) (69.9199 -36.4064 0) (69.0651 -35.3368 0) (68.2406 -34.3027 0) (69.2444 -33.5394 0) (70.1012 -34.5478 0) (71.1119 -33.7276 0) (72.0328 -34.7411 0) (73.0475 -33.86 0) (74.0321 -32.9489 0) (73.0501 -31.997 0) (72.0955 -32.8769 0) (71.1776 -31.9243 0) (70.224 -32.7464 0) (69.3671 -31.7957 0) (68.4172 -32.5627 0) (67.4442 -33.3011 0) (66.4494 -34.0099 0) (65.4347 -34.688 0) (64.402 -35.3353 0) (63.3531 -35.9514 0) (62.7084 -34.901 0) (61.6772 -35.4685 0) (61.0835 -34.4356 0) (60.071 -34.9576 0) (59.525 -33.9428 0) (60.5081 -33.4352 0) (61.4792 -32.9003 0) (62.0839 -33.8844 0) (63.0708 -33.3047 0) (63.7256 -34.3036 0) (64.727 -33.6761 0) (64.0424 -32.696 0) (63.3798 -31.7463 0) (62.437 -32.337 0) (61.8236 -31.4 0) (60.8935 -31.9467 0) (59.9502 -32.466 0) (58.9952 -32.9593 0) (58.4815 -32.0061 0) (57.9832 -31.082 0) (57.0712 -31.5232 0) (56.6129 -30.6145 0) (55.7172 -31.0196 0) (55.2965 -30.1268 0) (54.4173 -30.4979 0) (54.0322 -29.621 0) (53.1698 -29.9601 0) (52.818 -29.0993 0) (52.4767 -28.2636 0) (53.2956 -27.9429 0) (53.6584 -28.7696 0) (54.4921 -28.4188 0) (54.8884 -29.2602 0) (55.737 -28.8774 0) (56.1684 -29.733 0) (57.0315 -29.3163 0) (57.5 -30.1858 0) (58.3772 -29.7329 0) (58.8852 -30.6162 0) (59.4095 -31.5269 0) (60.326 -31.0222 0) (59.7758 -30.1255 0) (59.2428 -29.2562 0) (58.7256 -28.4123 0) (57.8842 -28.8759 0) (57.4061 -28.0436 0) (56.5766 -28.4718 0) (56.1352 -27.6516 0) (55.3182 -28.0461 0) (54.9118 -27.2389 0) (54.1076 -27.6016 0) (53.734 -26.8069 0) (52.9432 -27.1393 0) (52.1454 -27.4512 0) (51.8238 -26.662 0) (51.5113 -25.8943 0) (51.2079 -25.1476 0) (50.4636 -25.4166 0) (50.1874 -24.6827 0) (49.4564 -24.9265 0) (48.7209 -25.1521 0) (47.9818 -25.3602 0) (47.2405 -25.551 0) (46.4982 -25.7252 0) (45.7565 -25.8831 0) (45.0169 -26.0257 0) (44.2808 -26.1537 0) (44.1473 -25.3946 0) (43.4305 -25.5032 0) (43.317 -24.7604 0) (42.6195 -24.8503 0) (42.5254 -24.124 0) (41.8475 -24.196 0) (41.7718 -23.4868 0) (41.7008 -22.7983 0) (41.0557 -22.8499 0) (41.0014 -22.1784 0) (40.3764 -22.2145 0) (40.338 -21.5606 0) (40.9506 -21.527 0) (41.5702 -21.4812 0) (41.6338 -22.1301 0) (42.272 -22.069 0) (42.3523 -22.7341 0) (42.4365 -23.4188 0) (43.1067 -23.3378 0) (43.2093 -24.0387 0) (43.8977 -23.9398 0) (44.0197 -24.6567 0) (44.7261 -24.5392 0) (44.8685 -25.2719 0) (45.5927 -25.1347 0) (46.3182 -24.9822 0) (46.1441 -24.2592 0) (45.4347 -24.4068 0) (45.2824 -23.6991 0) (44.5892 -23.8269 0) (44.4575 -23.1342 0) (43.7808 -23.2432 0) (43.6685 -22.5659 0) (43.0087 -22.6568 0) (42.9145 -21.9947 0) (42.8237 -21.3506 0) (42.195 -21.4226 0) (42.1205 -20.7936 0) (41.5091 -20.8507 0) (40.9025 -20.8947 0) (40.3023 -20.9265 0) (39.7099 -20.9465 0) (39.1266 -20.9546 0) (39.1169 -20.3377 0) (39.1078 -19.7406 0) (39.098 -19.1619 0) (39.6454 -19.1523 0) (39.6671 -19.7328 0) (39.6882 -20.3303 0) (40.2683 -20.3113 0) (40.2351 -19.7136 0) (40.2015 -19.1318 0) (40.1666 -18.5641 0) (39.6218 -18.5869 0) (39.0858 -18.5992 0) (39.07 -18.0503 0) (39.0496 -17.5122 0) (39.0244 -16.9817 0) (39.5334 -16.9578 0) (39.5661 -17.4919 0) (39.5956 -18.0342 0) (40.1299 -18.0087 0) (40.0911 -17.4634 0) (40.0508 -16.9271 0) (40.5743 -16.8891 0) (40.6229 -17.4264 0) (40.6711 -17.9732 0) (40.7183 -18.5304 0) (40.7647 -19.0996 0) (40.8103 -19.6824 0) (40.856 -20.2802 0) (41.4497 -20.2369 0) (41.3914 -19.6391 0) (41.3334 -19.0559 0) (41.9063 -19.0005 0) (41.9767 -19.5837 0) (42.0479 -20.181 0) (42.6492 -20.1119 0) (42.7354 -20.7232 0) (43.3523 -20.6395 0) (43.4547 -21.2649 0) (43.5599 -21.9065 0) (44.2067 -21.8041 0) (44.3301 -22.4604 0) (44.9923 -22.3402 0) (45.1351 -23.0107 0) (45.8124 -22.8716 0) (45.9757 -23.5559 0) (46.6679 -23.397 0) (46.8528 -24.0955 0) (47.0436 -24.8135 0) (47.7676 -24.6282 0) (47.5596 -23.9154 0) (47.3578 -23.2219 0) (48.0446 -23.0302 0) (48.2635 -23.7185 0) (48.4889 -24.4259 0) (49.2064 -24.2062 0) (48.9633 -23.5046 0) (48.7273 -22.8219 0) (48.4976 -22.1565 0) (47.8317 -22.3593 0) (47.1616 -22.546 0) (46.4882 -22.7167 0) (46.3137 -22.0542 0) (45.6539 -22.205 0) (45.4997 -21.5554 0) (44.8537 -21.6873 0) (44.7188 -21.0508 0) (44.0868 -21.1649 0) (43.97 -20.5419 0) (43.8561 -19.9343 0) (43.2524 -20.0299 0) (43.1545 -19.4348 -5.15491e-20) (42.5648 -19.5156 0) (42.4818 -18.933 0) (42.4002 -18.3637 0) (41.8366 -18.4305 0) (41.2756 -18.4859 0) (41.2175 -17.928 0) (41.1596 -17.3807 0) (41.1021 -16.8434 0) (41.6327 -16.7891 0) (41.6995 -17.3256 0) (41.7676 -17.8726 0) (42.3199 -17.8065 0) (42.2413 -17.2606 0) (42.1646 -16.7255 0) (42.6969 -16.6524 0) (42.7838 -17.1854 0) (42.8733 -17.7296 0) (42.965 -18.2854 0) (43.0588 -18.8535 5.15517e-20) (43.6362 -18.7617 0) (43.7448 -19.3409 0) (44.3347 -19.2342 0) (44.4595 -19.8252 0) (44.5875 -20.4304 0) (45.2038 -20.3046 0) (45.3498 -20.9221 0) (45.9788 -20.7787 0) (46.1439 -21.4083 0) (46.7855 -21.2463 0) (46.971 -21.888 0) (47.6248 -21.7061 0) (48.2744 -21.5086 0) (48.0574 -20.8767 0) (47.4235 -21.0691 0) (47.2278 -20.4483 0) (46.605 -20.6209 0) (46.4296 -20.011 0) (45.8181 -20.1649 0) (45.6616 -19.566 0) (45.0616 -19.7025 0) (44.9231 -19.1144 0) (44.7883 -18.5405 0) (44.213 -18.6574 0) (44.0944 -18.0935 0) (43.5301 -18.1954 0) (43.4267 -17.6416 0) (43.326 -17.0996 0) (43.2285 -16.5691 0) (43.7586 -16.4755 0) (43.8671 -17.0031 0) (43.9791 -17.5422 0) (44.5298 -17.4314 0) (44.6572 -17.9796 0) (45.2177 -17.8536 0) (45.3615 -18.411 0) (45.5095 -18.9816 0) (46.093 -18.8356 0) (46.2589 -19.416 0) (46.8526 -19.2522 0) (47.0376 -19.843 0) (47.6415 -19.6606 0) (47.8464 -20.2609 0) (48.4603 -20.0588 0) (48.6864 -20.6692 0) (48.9192 -21.2953 0) (49.1586 -21.9375 0) (49.405 -22.597 0) (49.6584 -23.2736 0) (49.9192 -23.9689 0) (50.6264 -23.7141 0) (50.9129 -24.4209 0) (51.632 -24.1409 0) (51.9459 -24.86 0) (52.2688 -25.5986 0) (52.6011 -26.3582 0) (53.3713 -26.0349 0) (53.019 -25.284 0) (52.6766 -24.5537 0) (53.3994 -24.2284 0) (53.7611 -24.9498 0) (54.1336 -25.6915 0) (54.5169 -26.4541 0) (55.2905 -26.081 0) (55.7067 -26.8553 0) (56.4917 -26.4506 0) (56.942 -27.2356 0) (57.7375 -26.7976 0) (58.2242 -27.5934 0) (59.0298 -27.1207 0) (59.5543 -27.9259 0) (60.0955 -28.7557 0) (60.6533 -29.61 0) (61.2293 -30.4913 0) (62.118 -29.9352 0) (62.7389 -30.8268 0) (63.6376 -30.2278 0) (64.3057 -31.1285 0) (64.9966 -32.0588 0) (65.7109 -33.0188 0) (66.6756 -32.3324 0) (65.9325 -31.3938 0) (65.2139 -30.4841 0) (64.5189 -29.6025 0) (63.8461 -28.7474 0) (62.9907 -29.354 0) (62.3642 -28.5062 0) (61.5167 -29.0702 0) (60.934 -28.2314 0) (61.7573 -27.6834 0) (62.5642 -27.1124 0) (63.1949 -27.9177 0) (64.0076 -27.3062 0) (64.6831 -28.117 0) (65.381 -28.9527 0) (66.1021 -29.8138 0) (66.8478 -30.7019 0) (67.6192 -31.6178 0) (68.5404 -30.8754 0) (67.7415 -29.9829 0) (66.9692 -29.117 0) (67.8139 -28.3958 0) (68.6119 -29.2381 0) (69.4375 -30.1061 0) (70.2919 -31.0007 0) (71.1901 -30.1785 0) (72.1035 -31.0739 0) (73.0003 -30.1967 0) (73.9742 -31.0887 0) (74.9849 -32.0084 0) (76.0342 -32.9569 0) (76.9813 -31.9537 0) (78.1006 -32.8946 0) (79.2649 -33.8641 0) (80.2297 -32.7551 0) (81.4703 -33.7111 0) (82.4189 -32.5319 0) (81.1524 -31.6199 0) (79.9353 -30.7324 0) (79.0379 -31.8263 0) (77.8918 -30.9238 0) (76.7885 -30.0467 0) (75.904 -31.0406 0) (74.8664 -30.1541 0) (73.8666 -29.2938 0) (74.7014 -28.3666 0) (75.7258 -29.1945 0) (76.5512 -28.2118 0) (77.6371 -29.0288 0) (78.7644 -29.869 0) (79.5986 -28.7911 0) (80.792 -29.6151 0) (82.0322 -30.4607 0) (83.3219 -31.3282 0) (84.1787 -30.1027 0) (82.8682 -29.2799 0) (81.6074 -28.4765 0) (82.3809 -27.3188 0) (83.6601 -28.0799 0) (84.9889 -28.858 0) (85.7525 -27.5966 0) (84.4078 -26.863 0) (83.1124 -26.1439 0) (81.8637 -25.4398 0) (81.1486 -26.5747 0) (80.3935 -27.6924 0) (79.2238 -26.9275 0) (78.4491 -27.9884 0) (77.3415 -27.2069 0) (76.2729 -26.4455 0) (75.5038 -27.4167 0) (74.4929 -26.6428 0) (73.7127 -27.5613 0) (72.9016 -28.4575 0) (72.0604 -29.3304 0) (71.1539 -28.4903 0) (70.3091 -29.3107 0) (69.4579 -28.4682 0) (68.6351 -27.6502 0) (67.8402 -26.8564 0) (67.0427 -27.5789 0) (66.2227 -28.2774 0) (65.5002 -27.4627 0) (64.8013 -26.6717 0) (64.1246 -25.9037 0) (63.3536 -26.5191 0) (62.7202 -25.7548 0) (61.9532 -26.3306 0) (61.1692 -26.8849 0) (60.3693 -27.4166 0) (59.8218 -26.6259 0) (59.2908 -25.8575 0) (58.5207 -26.3381 0) (58.0272 -25.5783 0) (57.2655 -26.0248 0) (56.8071 -25.2733 0) (56.0543 -25.6872 0) (55.63 -24.9457 0) (54.8867 -25.3287 0) (54.4943 -24.5968 0) (54.1133 -23.8849 0) (54.8176 -23.5226 0) (55.2177 -24.2241 0) (55.9306 -23.8329 0) (56.3624 -24.5433 0) (57.0833 -24.1214 0) (57.5479 -24.8393 0) (58.2763 -24.3854 0) (58.7759 -25.1112 0) (59.5106 -24.6239 0) (60.0465 -25.356 0) (60.5991 -26.1092 0) (61.3611 -25.5711 0) (60.7873 -24.8334 0) (60.2309 -24.1164 0) (59.6915 -23.4195 0) (58.9909 -23.9121 0) (58.487 -23.2206 0) (57.7918 -23.6803 0) (57.3216 -22.9942 0) (56.6321 -23.423 0) (56.1944 -22.7437 0) (55.5116 -23.1423 0) (55.1047 -22.47 0) (54.429 -22.8399 0) (53.7432 -23.1921 0) (53.0479 -23.5264 0) (52.344 -23.8428 0) (52.0209 -23.1513 0) (51.3272 -23.4415 0) (51.0309 -22.7602 0) (50.3478 -23.0255 0) (50.0772 -22.3554 0) (50.7431 -22.0971 0) (51.402 -21.8223 0) (51.7069 -22.4777 0) (52.3751 -22.1783 0) (52.7067 -22.8436 0) (53.384 -22.5184 0) (53.0349 -21.8621 0) (52.6962 -21.2235 0) (52.0532 -21.5311 0) (51.7404 -20.9003 0) (51.1056 -21.1836 0) (50.4633 -21.4509 0) (49.814 -21.7022 0) (49.5585 -21.0663 0) (49.31 -20.4462 0) (49.0687 -19.842 0) (49.6712 -19.6106 0) (49.9275 -20.2083 0) (50.1916 -20.8218 0) (50.8179 -20.5617 0) (50.5384 -19.9554 0) (50.2671 -19.3648 0) (50.8557 -19.1046 0) (51.1419 -19.6877 0) (51.4368 -20.2863 0) (52.0478 -19.9956 0) (52.3671 -20.6013 0) (52.985 -20.2867 0) (53.3302 -20.8998 0) (53.6856 -21.5291 0) (54.052 -22.1759 0) (54.71 -21.8163 0) (54.3266 -21.1796 0) (53.9547 -20.5601 0) (53.5936 -19.9566 0) (53.2433 -19.3691 0) (52.6502 -19.6899 0) (52.325 -19.1081 0) (51.7376 -19.4051 0) (51.4367 -18.8301 0) (52.0096 -18.5415 0) (52.5736 -18.2392 0) (52.9033 -18.7966 0) (53.4722 -18.4709 0) (53.8268 -19.0336 0) (54.1923 -19.6112 0) (54.5691 -20.2047 0) (54.9572 -20.8137 0) (55.3574 -21.4398 0) (55.7696 -22.0827 0) (56.4229 -21.6781 0) (56.8655 -22.3271 0) (57.5239 -21.8934 0) (57.9981 -22.5478 0) (58.6612 -22.0829 0) (59.1684 -22.7419 0) (59.8351 -22.2458 0) (60.3767 -22.9085 0) (60.9355 -23.5902 0) (61.512 -24.2913 0) (62.1065 -25.0124 0) (62.8346 -24.4331 0) (63.4693 -25.1578 0) (64.1997 -24.54 0) (64.8762 -25.2669 0) (65.5748 -26.015 0) (66.2966 -26.7853 0) (67.0711 -26.0855 0) (66.3272 -25.3368 0) (65.6073 -24.6093 0) (64.9103 -23.9025 0) (64.2356 -23.2156 0) (63.5447 -23.8338 0) (62.91 -23.1474 0) (62.2198 -23.729 0) (61.624 -23.0444 0) (62.2952 -22.4803 0) (62.9487 -21.8981 0) (63.5819 -22.5476 0) (64.2346 -21.9293 0) (64.9067 -22.5781 0) (65.6007 -23.2453 0) (66.3174 -23.9316 0) (67.0578 -24.6377 0) (67.8231 -25.3642 0) (68.6142 -26.1122 0) (69.4318 -26.8816 0) (70.2782 -27.6743 0) (71.0717 -26.8573 0) (71.9709 -27.646 0) (72.7591 -26.7792 0) (73.5178 -25.8907 0) (72.5752 -25.1585 0) (71.8376 -26.0185 0) (70.9475 -25.2788 0) (70.2029 -26.0907 0) (69.3632 -25.3464 0) (68.5513 -24.6225 0) (67.7657 -23.9187 0) (67.0056 -23.2347 0) (67.6709 -22.5192 0) (68.4499 -23.1805 0) (69.2548 -23.8604 0) (70.087 -24.5596 0) (70.7846 -23.7536 0) (71.6648 -24.4464 0) (72.3541 -23.5952 0) (73.2837 -24.2793 0) (74.246 -24.9823 0) (75.2413 -25.7038 0) (75.9572 -24.7454 0) (77.0081 -25.4546 0) (78.0963 -26.1819 0) (78.8149 -25.1382 0) (79.9606 -25.8477 0) (80.6592 -24.7509 0) (79.497 -24.0776 0) (78.3744 -23.4194 0) (77.7087 -24.4454 0) (76.6401 -23.7691 0) (75.6085 -23.11 0) (74.9431 -24.055 0) (73.9624 -23.3817 0) (73.0148 -22.726 0) (73.6463 -21.84 0) (74.6106 -22.4668 0) (75.2281 -21.5359 0) (76.2418 -22.1487 0) (77.2895 -22.7762 0) (77.9048 -21.7681 0) (79.0046 -22.3781 0) (80.1422 -23.0017 0) (81.3193 -23.6387 0) (82.5385 -24.2896 0) (83.8017 -24.9539 0) (85.1113 -25.6312 0) (86.4696 -26.3209 0) (87.8791 -27.0224 0) (89.3437 -27.7351 0) (90.8645 -28.457 0) (92.4473 -29.1878 0) (94.0936 -29.9246 0) (95.8086 -30.6664 0) (97.5965 -31.4103 0) (98.3077 -29.7471 0) (100.169 -30.4231 0) (100.808 -28.6999 0) (101.384 -26.9869 0) (99.5414 -26.4325 0) (98.955 -28.0866 0) (97.1723 -27.4654 0) (96.5207 -29.0663 0) (94.8039 -28.384 0) (93.1532 -27.7028 0) (91.5638 -27.0252 0) (90.0348 -26.3537 0) (90.676 -24.9642 0) (92.2107 -25.5867 0) (93.804 -26.213 0) (95.4562 -26.8397 0) (96.0527 -25.2963 0) (97.7654 -25.8678 0) (98.3032 -24.2751 0) (100.07 -24.7868 0) (101.899 -25.2862 0) (102.36 -23.5995 0) (100.545 -23.1515 0) (98.7879 -22.6895 0) (99.2223 -21.1117 0) (100.968 -21.527 0) (102.768 -21.9283 0) (103.126 -20.273 0) (101.342 -19.9161 0) (99.6087 -19.5436 0) (97.9258 -19.1597 0) (97.5304 -20.6848 0) (97.0877 -22.2173 0) (96.5959 -23.7546 0) (94.9464 -23.2286 0) (94.4009 -24.7212 0) (92.8062 -24.1445 0) (91.2676 -23.5694 0) (91.8112 -22.1702 0) (93.3521 -22.6996 0) (93.8499 -21.2541 0) (95.4423 -21.738 0) (95.8907 -20.2499 0) (96.2926 -18.7669 0) (94.7073 -18.3674 0) (94.3011 -19.8098 0) (92.7609 -19.3664 0) (92.3089 -20.7683 0) (90.8167 -20.2824 0) (90.3218 -21.6419 0) (89.7816 -22.9968 0) (89.1946 -24.3462 0) (88.5606 -25.689 0) (87.1404 -25.033 0) (85.7706 -24.3866 0) (84.4489 -23.7507 0) (85.054 -22.5361 0) (86.3862 -23.1312 0) (87.7655 -23.735 0) (88.3454 -22.4287 0) (86.9582 -21.8667 0) (85.6173 -21.3115 0) (84.3209 -20.7641 0) (83.7671 -21.9503 0) (83.173 -23.1259 0) (81.9406 -22.5127 0) (80.7502 -21.9117 0) (79.5991 -21.3227 0) (80.1576 -20.2547 0) (81.3209 -20.8093 0) (82.5232 -21.3744 0) (83.0669 -20.2252 0) (81.8541 -19.6956 0) (80.6799 -19.1753 0) (81.1657 -18.0854 0) (82.3496 -18.5719 0) (83.5718 -19.0665 0) (84.8346 -19.569 0) (86.1391 -20.0786 0) (87.4873 -20.5946 0) (88.8808 -21.1159 0) (89.3724 -19.7977 0) (87.9741 -19.3161 0) (86.6197 -18.8386 0) (87.0597 -17.5926 0) (88.4192 -18.033 0) (89.8209 -18.4761 0) (91.2676 -18.921 0) (91.6755 -17.5577 0) (93.1688 -17.9638 0) (93.5339 -16.5624 0) (95.0698 -16.9274 0) (96.6501 -17.2873 0) (98.2771 -17.6403 0) (99.9503 -17.9842 0) (101.671 -18.3163 0) (103.44 -18.6335 0) (105.256 -18.9322 0) (107.12 -19.2082 0) (107.35 -17.5117 0) (109.234 -17.7267 0) (109.401 -16.023 0) (111.299 -16.1806 0) (113.23 -16.3066 0) (113.309 -14.5786 0) (115.24 -14.6507 0) (115.266 -12.9354 0) (117.186 -12.9605 0) (119.124 -12.9505 0) (119.072 -11.2491 0) (117.166 -11.2628 0) (115.277 -11.2461 0) (115.276 -9.57602 0) (117.141 -9.58605 0) (119.017 -9.57096 0) (118.963 -7.90851 0) (117.111 -7.92344 0) (115.268 -7.91702 0) (113.439 -7.89142 0) (113.427 -9.54221 0) (113.404 -11.2019 0) (113.365 -12.8786 0) (111.492 -12.7934 0) (111.408 -14.4745 0) (109.537 -14.3419 0) (107.702 -14.1846 0) (107.543 -15.8379 0) (105.722 -15.6296 0) (105.508 -17.271 0) (103.711 -17.0094 0) (101.957 -16.7298 0) (100.249 -16.4354 0) (100.508 -14.8969 0) (102.204 -15.1563 0) (103.943 -15.4017 0) (104.139 -13.808 0) (105.901 -14.0055 0) (106.048 -12.3969 0) (107.831 -12.5496 0) (109.645 -12.6826 0) (109.729 -11.0413 0) (111.555 -11.1328 0) (111.599 -9.48684 0) (111.629 -7.84815 0) (109.84 -7.78903 0) (109.793 -9.41232 0) (108.014 -9.32102 0) (107.934 -10.9301 0) (106.168 -10.8013 0) (104.436 -10.6575 5.05991e-20) (104.302 -12.2274 0) (102.591 -12.0433 0) (102.415 -13.594 0) (100.73 -13.3669 0) (99.0854 -13.1292 0) (98.8543 -14.6259 0) (98.5861 -16.1292 0) (96.9661 -15.8135 0) (95.3904 -15.4909 0) (93.8581 -15.1626 0) (94.1431 -13.7651 0) (95.6714 -14.0578 0) (97.2423 -14.3454 0) (97.4807 -12.8828 0) (95.9152 -12.6289 0) (94.3908 -12.3699 0) (94.6036 -10.9776 0) (96.124 -11.2041 0) (97.6841 -11.4257 0) (99.282 -11.6405 0) (100.917 -11.8469 0) (101.073 -10.3335 0) (102.737 -10.5009 -5.05325e-20) (102.856 -8.96417 0) (104.544 -9.09506 0) (106.264 -9.21432 0) (106.338 -7.62996 0) (108.075 -7.71573 0) (108.118 -6.11988 5.01329e-20) (109.872 -6.17653 4.99555e-20) (111.647 -6.22147 -9.9965e-20) (113.443 -6.25352 1.19993e-22) (115.255 -6.27242 9.97893e-20) (117.08 -6.2756 -4.99118e-20) (118.913 -6.26193 0) (120.749 -6.23066 0) (122.584 -6.18057 4.96283e-20) (124.411 -6.11047 -1.33119e-22) (126.223 -6.01908 -4.9687e-20) (128.015 -5.90615 0) (129.781 -5.77171 0) (131.51 -5.61611 0) (133.198 -5.43969 0) (133.021 -4.05058 0) (131.349 -4.18132 0) (129.637 -4.29674 0) (129.538 -2.92334 0) (131.239 -2.84485 0) (132.9 -2.75609 0) (132.829 -1.58139 0) (131.174 -1.63216 0) (129.48 -1.67711 0) (127.751 -1.71611 0) (127.803 -2.99136 0) (127.89 -4.39654 -5.15555e-20) (126.116 -4.48072 5.14442e-20) (124.32 -4.54936 -5.16583e-20) (122.51 -4.60259 5.15473e-20) (122.459 -3.13156 0) (124.256 -3.09532 0) (126.041 -3.04865 0) (125.996 -1.74905 0) (124.218 -1.77595 0) (122.427 -1.79691 0) (120.626 -1.81211 0) (120.651 -3.15782 0) (120.692 -4.64118 0) (118.871 -4.6653 0) (117.053 -4.67609 0) (115.241 -4.67451 0) (115.229 -3.18177 2.82858e-20) (117.032 -3.18232 0) (118.84 -3.17455 0) (118.821 -1.82178 0) (117.019 -1.82635 0) (115.221 -1.82609 0) (113.435 -1.8214 0) (113.438 -3.1732 -2.82427e-20) (113.442 -4.66151 0) (111.658 -4.63802 0) (109.891 -4.605 0) (108.147 -4.56339 -5.2068e-20) (108.165 -3.10733 -2.83157e-20) (109.902 -3.13508 2.83559e-20) (111.662 -3.15729 0) (111.663 -1.81268 0) (109.908 -1.80021 0) (108.175 -1.78443 0) (106.464 -1.76572 0) (106.452 -3.07462 0) (106.428 -4.51452 5.19708e-20) (106.391 -6.0534 1.0689e-22) (104.691 -5.97776 1.03437e-22) (104.628 -7.53325 0) (102.95 -7.42708 5.00766e-20) (101.303 -7.31249 -5.00137e-20) (101.201 -8.82388 0) (99.581 -8.6757 0) (99.4463 -10.1567 0) (97.8551 -9.97234 0) (96.3002 -9.78177 -5.07906e-20) (94.7834 -9.58633 5.07098e-20) (94.933 -8.1941 0) (96.4463 -8.3591 0) (97.996 -8.52013 0) (98.1098 -7.0637 0) (99.6893 -7.19084 0) (99.7729 -5.70931 0) (101.381 -5.80452 0) (103.021 -5.89436 -5.01175e-20) (103.071 -4.39801 -5.20514e-20) (104.735 -4.45917 5.21445e-20) (104.763 -3.03699 0) (104.778 -1.74436 0) (103.121 -1.72076 0) (103.103 -2.99535 -2.84244e-20) (101.472 -2.95053 2.83886e-20) (101.436 -4.33197 0) (99.833 -4.26119 -5.22484e-20) (98.2623 -4.18707 5.21615e-20) (98.1982 -5.60939 0) (96.6571 -5.50561 0) (96.5649 -6.93185 0) (95.055 -6.79623 0) (93.5802 -6.65771 0) (93.4556 -8.02587 0) (93.303 -9.38689 5.08475e-20) (93.1201 -10.7473 0) (92.9048 -12.1068 0) (92.6545 -13.4684 0) (92.3674 -14.8308 0) (92.0416 -16.1943 0) (90.5935 -15.825 0) (90.2276 -17.1514 0) (88.8228 -16.7459 0) (87.4598 -16.3418 0) (86.138 -15.9409 0) (85.7427 -17.1563 0) (85.3084 -18.366 0) (84.038 -17.8993 0) (82.8077 -17.4393 0) (81.6151 -16.9863 0) (82.0282 -15.879 0) (83.2284 -16.2989 0) (84.4658 -16.7247 0) (84.8557 -15.5439 0) (83.6121 -15.1516 0) (82.4053 -14.7644 0) (82.747 -13.6433 0) (83.9595 -13.9984 0) (85.2083 -14.3577 0) (86.4951 -14.7208 0) (87.8207 -15.087 0) (89.1863 -15.4554 0) (89.5114 -14.1629 0) (90.9195 -14.4972 0) (91.2074 -13.1695 0) (91.4589 -11.8414 0) (90.0509 -11.5744 0) (89.7992 -12.8694 0) (88.4296 -12.5691 0) (88.1435 -13.8292 0) (86.815 -13.4969 0) (85.5244 -13.1669 0) (84.2713 -12.84 0) (83.0538 -12.5167 0) (83.3269 -11.3853 0) (84.5485 -11.6774 0) (85.8053 -11.9724 0) (87.0988 -12.2699 0) (87.348 -11.0403 0) (88.6807 -11.307 0) (88.8981 -10.044 0) (90.2681 -10.2795 0) (91.6755 -10.5144 0) (91.8601 -9.18541 -5.07706e-20) (90.4533 -8.98245 0) (89.0836 -8.77856 0) (89.2392 -7.50947 0) (90.6088 -7.68264 0) (92.0146 -7.85515 0) (92.1407 -6.51711 0) (90.7363 -6.37505 0) (89.367 -6.23216 3.93042e-22) (88.0324 -6.08893 0) (87.9044 -7.33584 0) (87.7489 -8.57441 0) (87.5641 -9.80879 0) (86.2665 -9.57451 0) (86.0521 -10.7747 0) (84.7925 -10.5111 0) (83.5675 -10.2498 0) (83.7768 -9.11088 0) (85.0046 -9.34178 0) (85.1866 -8.16853 0) (86.4502 -8.37088 0) (86.6048 -7.16293 0) (86.7323 -5.94589 0) (85.4661 -5.80342 -3.93563e-22) (85.3397 -6.99087 0) (84.1081 -6.81973 0) (83.9566 -7.96759 5.0981e-20) (82.7601 -7.76868 -5.09655e-20) (82.5826 -8.88229 0) (82.3764 -9.99134 0) (82.1397 -11.0966 0) (81.8712 -12.1973 0) (81.5697 -13.2929 0) (81.2342 -14.3826 0) (80.8643 -15.4655 0) (80.4592 -16.5407 0) (80.0188 -17.6074 0) (79.543 -18.6645 0) (79.0319 -19.711 0) (78.4857 -20.7459 0) (77.4095 -20.1822 0) (76.8422 -21.1725 0) (75.814 -20.5904 0) (74.8192 -20.0216 0) (74.2479 -20.9383 0) (73.2997 -20.3553 0) (72.7135 -21.229 0) (72.0985 -22.0873 0) (71.4553 -22.9292 0) (70.586 -22.281 0) (69.9333 -23.0797 0) (69.1098 -22.4239 0) (68.313 -21.7859 0) (68.9309 -21.0357 0) (69.7449 -21.65 0) (70.3544 -20.8595 0) (71.2121 -21.4653 0) (71.8111 -20.6335 0) (72.3821 -19.7868 0) (71.4939 -19.2325 0) (70.9377 -20.0533 0) (70.0922 -19.4879 0) (69.5241 -20.2695 0) (68.7206 -19.6952 0) (68.143 -20.4379 0) (67.5416 -21.1651 0) (66.917 -21.8761 0) (66.2699 -22.5696 -5.12895e-20) (65.5576 -21.9228 5.12502e-20) (64.8677 -21.2938 0) (64.1995 -20.6822 0) (63.5837 -21.2986 0) (62.9527 -20.6848 0) (62.335 -21.2664 0) (61.6992 -21.8314 0) (61.0463 -22.3785 0) (60.4865 -21.7313 0) (59.9437 -21.1018 0) (59.3099 -21.6012 0) (58.8006 -20.9742 0) (58.1692 -21.442 0) (57.6921 -20.8184 0) (57.064 -21.2568 0) (56.6178 -20.6374 0) (55.9936 -21.0468 0) (55.5769 -20.4319 0) (55.1727 -19.8337 0) (55.7649 -19.4475 0) (56.1849 -20.0344 0) (56.7806 -19.6212 0) (57.2295 -20.2118 0) (57.828 -19.7705 0) (58.3067 -20.3639 0) (58.9072 -19.8936 0) (59.4175 -20.4894 0) (60.0192 -19.989 0) (60.5619 -20.5864 0) (61.1217 -21.2003 0) (61.7401 -20.6518 0) (61.1637 -20.0541 0) (60.6051 -19.4725 0) (60.0634 -18.9066 0) (59.493 -19.4076 0) (58.9831 -18.8422 0) (58.4127 -19.3139 0) (57.9329 -18.7494 0) (57.3635 -19.1927 0) (56.9129 -18.6301 0) (56.3452 -19.0463 0) (55.923 -18.4864 0) (55.3575 -18.8758 0) (54.7804 -19.251 0) (54.4 -18.6838 0) (54.031 -18.1312 0) (53.6731 -17.5929 0) (53.1283 -17.9228 0) (52.7945 -17.3885 0) (52.2536 -17.6959 0) (51.7036 -17.9894 0) (51.1448 -18.2698 0) (50.5781 -18.5365 0) (50.0037 -18.7893 0) (49.4223 -19.0282 0) (48.8345 -19.2532 0) (48.2407 -19.4639 0) (48.0272 -18.8835 0) (47.4423 -19.0747 0) (47.2489 -18.5035 0) (46.673 -18.6761 0) (46.4985 -18.1136 0) (45.9317 -18.2687 0) (45.7752 -17.7152 0) (45.6233 -17.1746 0) (45.0781 -17.3089 0) (44.9428 -16.7766 0) (44.4062 -16.8954 0) (44.2866 -16.3712 0) (44.8118 -16.2562 0) (45.3338 -16.1301 0) (45.4762 -16.6463 0) (46.0059 -16.5045 0) (46.165 -17.0284 0) (46.3292 -17.5647 0) (46.879 -17.4017 5.14708e-20) (47.0611 -17.9458 0) (47.619 -17.7651 0) (47.8201 -18.3176 0) (48.3861 -18.1185 0) (48.6069 -18.6786 0) (49.1807 -18.46 0) (49.7481 -18.2279 0) (49.5001 -17.6806 0) (48.9463 -17.9062 0) (48.7189 -17.3658 0) (48.1719 -17.5718 0) (47.9641 -17.0386 0) (47.4242 -17.2263 0) (47.2352 -16.7001 0) (46.7024 -16.8703 -5.14826e-20) (46.5314 -16.3514 0) (46.3658 -15.8445 5.14843e-20) (45.8519 -15.9928 0) (45.7032 -15.493 0) (45.1962 -15.6255 0) (44.6853 -15.7473 0) (44.171 -15.8585 0) (43.6538 -15.9592 0) (43.1342 -16.0497 0) (42.6128 -16.13 0) (42.0904 -16.2008 0) (41.5677 -16.2623 0) (41.0458 -16.3151 0) (40.5258 -16.3599 0) (40.0095 -16.3978 0) (39.4985 -16.4295 0) (38.9951 -16.4562 0) (38.5016 -16.4787 0) (38.0207 -16.4979 0) (37.9933 -15.9825 0) (37.5287 -16.0068 0) (37.4943 -15.4907 0) (37.4582 -14.9657 0) (36.9988 -14.9983 0) (36.9576 -14.4617 -5.16169e-20) (36.9272 -13.9224 5.15996e-20) (36.9112 -13.3866 0) (36.9109 -12.8576 0) (37.3988 -12.8703 0) (37.3958 -13.3856 0) (37.4055 -13.9084 0) (37.427 -14.4362 0) (37.9056 -14.4179 0) (37.9309 -14.9404 0) (37.9617 -15.463 0) (38.442 -15.4383 0) (38.4725 -15.9587 0) (38.9634 -15.934 0) (38.9319 -15.4143 0) (38.9032 -14.8986 0) (38.4136 -14.919 0) (38.3905 -14.4028 5.16059e-20) (38.3746 -13.8925 -1.03187e-19) (37.8886 -13.8996 0) (37.8813 -13.3875 0) (37.8844 -12.8832 0) (37.8978 -12.3873 0) (37.4145 -12.3632 0) (36.9266 -12.3368 0) (36.9584 -11.8259 0) (36.4664 -11.7822 0) (36.5167 -11.2655 0) (36.0174 -11.1972 0) (36.0947 -10.6783 0) (36.1946 -10.1826 0) (35.7094 -10.0721 0) (35.2125 -9.94522 0) (34.703 -9.7995 0) (34.8712 -9.2716 0) (34.3785 -9.08185 0) (34.5913 -8.57803 0) (34.8121 -8.11341 0) (35.2495 -8.32189 0) (35.0555 -8.77999 0) (35.5189 -8.95697 0) (35.3581 -9.43609 0) (35.8375 -9.58003 0) (36.3083 -9.70638 0) (36.4317 -9.24983 0) (35.9783 -9.11267 0) (36.1288 -8.67007 0) (35.6898 -8.50655 0) (35.8667 -8.08288 0) (35.4486 -7.89434 0) (35.0358 -7.68355 0) (34.6343 -7.44842 0) (34.2503 -7.18642 0) (33.8891 -6.89466 0) (33.5541 -6.57042 0) (33.2477 -6.21228 0) (32.9723 -5.82113 0) (33.3611 -5.5245 0) (33.717 -5.24689 0) (34.0453 -4.98537 0) (34.2525 -5.29102 0) (33.9425 -5.5764 0) (33.6089 -5.88207 0) (33.8854 -6.2137 0) (34.1952 -5.88503 0) (34.4859 -5.57954 0) (34.7595 -5.29366 0) (34.5419 -5.02289 0) (34.3501 -4.73791 0) (34.6344 -4.50299 0) (34.9008 -4.27941 0) (35.1511 -4.0662 0) (35.3092 -4.30223 0) (35.0685 -4.53003 0) (34.8132 -4.7698 0) (35.0178 -5.02474 0) (35.2621 -4.77072 0) (35.4938 -4.52998 0) (35.7079 -4.74998 0) (35.485 -5.00192 0) (35.2513 -5.26813 0) (35.006 -5.55036 0) (34.7481 -5.85083 0) (34.4766 -6.17238 0) (34.1906 -6.51869 0) (34.5236 -6.7978 0) (34.7868 -6.43888 0) (35.0394 -6.10517 0) (35.357 -6.34268 0) (35.1228 -6.68521 0) (34.8816 -7.05249 0) (35.259 -7.28428 0) (35.4792 -6.91189 0) (35.6949 -6.56319 0) (35.9051 -6.23545 0) (35.5835 -6.02173 0) (35.2817 -5.79314 0) (35.514 -5.5 0) (35.7367 -5.22354 0) (35.9501 -4.96194 0) (36.2155 -5.16469 0) (36.0127 -5.43468 0) (35.8021 -5.71977 0) (36.1091 -5.92636 0) (36.3065 -5.63399 0) (36.4972 -5.35667 0) (36.681 -5.093 0) (36.4105 -4.90833 0) (36.1547 -4.71371 0) (35.9206 -4.51086 0) (35.714 -4.30122 0) (35.5368 -4.08528 0) (35.3867 -3.86253 0) (35.609 -3.66769 0) (35.819 -3.48104 0) (36.0176 -3.30201 0) (36.1508 -3.49098 0) (35.9567 -3.68039 0) (35.7523 -3.87826 0) (35.9234 -4.08335 0) (36.1229 -3.87546 0) (36.3132 -3.67678 0) (36.495 -3.48665 0) (36.3354 -3.30944 0) (36.2056 -3.13009 0) (36.3837 -2.96483 0) (36.5525 -2.80583 0) (36.7129 -2.65274 0) (36.8385 -2.80722 0) (36.6787 -2.96798 0) (36.5111 -3.13526 0) (36.6687 -3.30446 0) (36.8349 -3.12972 0) (36.994 -2.96195 0) (37.1731 -3.11534 0) (37.0167 -3.28993 0) (36.8533 -3.47178 0) (36.6826 -3.66144 0) (36.5045 -3.85947 0) (36.3184 -4.06654 0) (36.1239 -4.28338 0) (36.3509 -4.4776 0) (36.5389 -4.25256 0) (36.7192 -4.03766 0) (36.9502 -4.20931 0) (36.7777 -4.43164 0) (36.5978 -4.66434 0) (36.8579 -4.84178 0) (37.028 -4.60195 0) (37.1913 -4.37259 0) (37.3478 -4.1529 0) (37.1156 -3.9965 0) (36.892 -3.83211 0) (37.0575 -3.63521 0) (37.2159 -3.44632 0) (37.3673 -3.26486 0) (37.5702 -3.40844 0) (37.4254 -3.59669 0) (37.2739 -3.79251 0) (37.4979 -3.94215 0) (37.6414 -3.7397 0) (37.7786 -3.54498 0) (37.992 -3.67415 0) (37.8625 -3.87485 0) (37.7272 -4.08342 0) (37.5861 -4.30042 0) (37.4389 -4.52647 0) (37.2857 -4.76228 0) (37.1263 -5.00861 0) (36.9609 -5.26636 0) (36.7893 -5.5365 0) (36.6118 -5.82019 0) (36.4286 -6.1187 0) (36.24 -6.43353 0) (36.0466 -6.76639 0) (35.8493 -7.11926 0) (35.6494 -7.49439 0) (36.0466 -7.68393 0) (36.2269 -7.30767 0) (36.406 -6.95213 0) (36.7692 -7.1207 0) (36.6077 -7.47776 0) (36.4459 -7.85403 0) (36.2855 -8.25099 0) (36.7024 -8.4003 0) (36.564 -8.81461 0) (36.9945 -8.94202 0) (36.8787 -9.37033 0) (36.7699 -9.81656 0) (36.6699 -10.2796 0) (36.5842 -10.7627 0) (37.0649 -10.8388 0) (37.0052 -11.3263 0) (37.4842 -11.3793 0) (37.4431 -11.8658 0) (37.9218 -11.9008 0) (37.9561 -11.4248 0) (38.0003 -10.9605 0) (37.5368 -10.9049 0) (37.599 -10.4429 0) (37.1375 -10.3662 0) (37.2233 -9.91203 0) (37.3187 -9.47516 0) (37.42 -9.05379 0) (37.8405 -9.15072 0) (37.7523 -9.56537 0) (37.6708 -9.99576 0) (38.1138 -10.0691 0) (38.0533 -10.5085 0) (38.5007 -10.5624 0) (38.4575 -11.0065 0) (38.4221 -11.4626 0) (38.3952 -11.9298 0) (38.3769 -12.4072 0) (38.3675 -12.8939 0) (38.3668 -13.3892 5.15931e-20) (38.8514 -13.3885 0) (38.862 -13.8844 0) (38.8795 -14.3879 0) (39.3709 -14.3709 0) (39.3975 -14.8765 0) (39.4286 -15.3886 0) (39.463 -15.9067 0) (39.9688 -15.8755 0) (39.93 -15.3597 0) (39.8945 -14.851 0) (39.8633 -14.3498 0) (39.837 -13.857 0) (39.3498 -13.873 0) (39.3347 -13.3833 0) (39.3258 -12.9021 0) (38.848 -12.9007 0) (38.8521 -12.4217 0) (38.8637 -11.952 0) (38.8829 -11.4923 0) (38.9093 -11.0434 0) (39.3563 -11.0712 0) (39.3388 -11.5137 0) (39.3278 -11.9667 0) (39.3235 -12.4297 0) (39.7913 -12.4306 0) (39.8008 -12.8971 0) (39.8161 -13.3726 0) (40.2953 -13.3554 0) (40.323 -13.8349 0) (40.3557 -14.3231 0) (40.3929 -14.8201 0) (40.4342 -15.3254 0) (40.4788 -15.8389 0) (40.9913 -15.7957 0) (40.9397 -15.2848 0) (40.8915 -14.7829 0) (41.3895 -14.7385 0) (41.4455 -15.2371 0) (41.5051 -15.7451 0) (42.0189 -15.6861 0) (41.9508 -15.1811 0) (41.8862 -14.6859 0) (41.8257 -14.2003 0) (41.3374 -14.249 0) (40.8472 -14.2897 0) (40.8073 -13.8057 0) (40.7721 -13.3309 0) (40.7417 -12.8654 0) (40.2728 -12.8851 0) (40.2556 -12.424 0) (40.2439 -11.9724 0) (39.7878 -11.9736 0) (39.7904 -11.5266 0) (39.7988 -11.0899 0) (39.8128 -10.6639 0) (39.3799 -10.6398 0) (38.9426 -10.606 0) (38.9824 -10.1804 0) (38.5509 -10.1307 0) (38.6071 -9.71139 0) (38.1814 -9.64371 0) (38.256 -9.23368 0) (38.336 -8.83845 0) (37.933 -8.7506 0) (37.5263 -8.64875 0) (37.1161 -8.5324 0) (37.2418 -8.14092 0) (36.8448 -8.00592 0) (36.9891 -7.63044 0) (37.1339 -7.27277 0) (37.278 -6.93181 0) (36.9291 -6.78142 0) (36.5825 -6.6155 0) (36.7554 -6.29613 0) (36.924 -5.99255 0) (37.088 -5.70347 0) (37.3911 -5.85744 0) (37.2407 -6.15097 0) (37.0865 -6.45859 0) (37.4205 -6.60648 0) (37.5607 -6.29576 0) (37.698 -5.99869 0) (38.0081 -6.12767 0) (37.8833 -6.42746 0) (37.7565 -6.74043 0) (37.6282 -7.06741 0) (37.499 -7.40924 0) (37.3699 -7.7668 0) (37.7496 -7.88797 0) (37.6366 -8.2603 0) (38.0291 -8.36531 0) (38.4192 -8.45692 0) (38.5051 -8.08887 0) (38.1281 -7.995 0) (38.2289 -7.63926 0) (37.8642 -7.53111 0) (37.9793 -7.18906 0) (38.0942 -6.86113 0) (38.2082 -6.54662 0) (38.3208 -6.24482 0) (38.6358 -6.35058 0) (38.5348 -6.65379 0) (38.4329 -6.96924 0) (38.3308 -7.29753 0) (38.6824 -7.39352 0) (38.593 -7.73452 0) (38.9562 -7.81764 0) (38.8805 -8.17024 0) (38.8065 -8.53528 0) (38.7353 -8.91332 0) (38.6686 -9.30533 0) (39.0783 -9.36618 0) (39.0279 -9.76718 0) (39.4442 -9.81145 0) (39.4094 -10.2197 0) (39.8323 -10.2489 0) (39.8567 -9.84528 0) (39.8857 -9.4531 0) (39.4838 -9.41515 0) (39.5275 -9.03078 0) (39.1328 -8.9775 0) (39.1913 -8.60183 0) (39.2535 -8.23913 0) (39.3181 -7.88891 0) (39.678 -7.94886 0) (39.625 -8.29734 0) (39.5748 -8.65804 0) (39.9555 -8.70329 0) (39.9188 -9.07248 0) (40.3071 -9.10372 0) (40.2844 -9.48082 0) (40.2657 -9.86902 0) (40.2513 -10.2683 0) (40.2417 -10.6784 0) (40.2371 -11.0994 0) (40.2378 -11.5308 0) (40.6813 -11.5262 0) (40.6963 -11.9628 0) (40.7164 -12.4093 0) (41.1738 -12.3863 0) (41.2076 -12.8378 0) (41.2462 -13.2987 0) (41.2896 -13.7692 0) (41.7694 -13.7245 0) (41.7175 -13.2584 0) (41.6703 -12.8017 0) (41.6277 -12.3548 0) (41.59 -11.9177 0) (41.145 -11.9446 0) (41.1211 -11.5128 0) (41.1021 -11.091 0) (40.6715 -11.0997 0) (40.6667 -10.6836 0) (40.6667 -10.2779 0) (40.6712 -9.88288 0) (40.68 -9.49856 0) (41.0723 -9.50656 0) (41.0733 -9.88707 0) (41.0784 -10.278 0) (41.088 -10.6793 0) (41.5056 -10.6659 0) (41.529 -11.0731 0) (41.5571 -11.4904 0) (41.9895 -11.4591 0) (42.0315 -11.8819 0) (42.0782 -12.3145 0) (42.1297 -12.757 0) (42.1858 -13.2093 0) (42.2465 -13.6714 0) (42.3116 -14.1431 0) (42.3811 -14.6248 0) (42.4546 -15.1164 0) (42.532 -15.6181 0) (43.0435 -15.5409 0) (42.9565 -15.0425 0) (42.8736 -14.5547 0) (43.3635 -14.4754 0) (43.456 -14.9593 0) (43.5529 -15.454 0) (44.0597 -15.3571 0) (43.9527 -14.8663 0) (43.8502 -14.3864 0) (43.7522 -13.9167 0) (43.2752 -14.0015 0) (42.7949 -14.0768 0) (42.7206 -13.6092 0) (42.6508 -13.1515 0) (42.5856 -12.7035 0) (43.038 -12.6409 0) (43.1125 -13.0846 0) (43.1915 -13.5379 0) (43.659 -13.4575 0) (43.5705 -13.0084 0) (43.4867 -12.5693 0) (43.9315 -12.4884 0) (44.0246 -12.9229 0) (44.1227 -13.3676 0) (44.2256 -13.8224 0) (44.3335 -14.2878 0) (44.446 -14.7634 0) (44.5634 -15.25 0) (45.0635 -15.1324 0) (44.9357 -14.6503 0) (44.813 -14.1793 0) (45.2883 -14.0607 0) (45.4214 -14.5271 0) (45.5597 -15.0045 0) (46.0515 -14.8661 0) (46.2059 -15.3496 -5.14578e-20) (46.7039 -15.1952 0) (46.875 -15.6849 0) (47.0522 -16.1866 0) (47.5678 -16.0102 0) (47.7628 -16.518 0) (48.2847 -16.3241 0) (48.4984 -16.8386 0) (49.0265 -16.6263 0) (49.2597 -17.147 0) (49.7937 -16.9156 0) (50.0473 -17.4423 0) (50.3086 -17.9825 0) (50.8616 -17.7234 0) (50.5869 -17.1909 0) (50.3206 -16.6716 0) (50.8398 -16.4154 0) (51.1189 -16.9267 0) (51.4067 -17.4513 0) (51.9434 -17.1663 0) (51.6425 -16.6501 0) (51.3509 -16.1469 -5.13958e-20) (51.0681 -15.6562 5.14043e-20) (50.5692 -15.9165 0) (50.0624 -16.1653 0) (49.548 -16.4018 0) (49.31 -15.9006 0) (48.8006 -16.1182 0) (48.5819 -15.6227 0) (48.0779 -15.8222 0) (47.8776 -15.3321 0) (47.3791 -15.5142 0) (47.1967 -15.0301 0) (47.0204 -14.5572 0) (46.5385 -14.7169 0) (46.379 -14.2499 0) (45.9026 -14.3937 0) (45.7592 -13.9322 0) (45.6213 -13.4812 0) (45.1605 -13.6048 0) (44.6952 -13.7185 0) (44.5825 -13.2684 0) (44.4748 -12.8282 0) (44.3722 -12.3983 0) (44.8085 -12.299 0) (44.9206 -12.7241 0) (45.0379 -13.1594 0) (45.4889 -13.0409 0) (45.3618 -12.6105 0) (45.2403 -12.1903 0) (45.124 -11.78 0) (44.7016 -11.8837 0) (44.2746 -11.9783 0) (43.8433 -12.0637 0) (43.4078 -12.14 0) (42.9684 -12.2072 0) (42.5251 -12.2654 0) (42.4693 -11.8371 0) (42.4183 -11.4187 0) (42.3718 -11.0102 0) (41.9523 -11.0462 0) (41.9196 -10.6432 0) (41.8914 -10.2502 0) (41.4867 -10.2687 0) (41.472 -9.88181 0) (41.4615 -9.50505 0) (41.8475 -9.49425 0) (41.8674 -9.86726 0) (42.2593 -9.84358 0) (42.2925 -10.2226 0) (42.33 -10.6115 0) (42.7366 -10.5707 0) (42.7876 -10.9652 0) (42.8432 -11.3694 0) (42.9034 -11.7834 0) (43.3337 -11.7207 0) (43.2643 -11.3111 0) (43.1996 -10.9112 0) (43.1395 -10.521 0) (43.0839 -10.1404 0) (42.6901 -10.186 0) (42.6478 -9.81091 0) (42.6097 -9.44542 0) (42.2303 -9.47432 0) (42.205 -9.11476 0) (41.8315 -9.13115 0) (41.4548 -9.13846 0) (41.0752 -9.13648 0) (40.6926 -9.12498 0) (40.7088 -8.7621 0) (40.3334 -8.73771 0) (40.3628 -8.38272 0) (39.9951 -8.34549 0) (40.0374 -7.99874 0) (40.0818 -7.66323 0) (39.7335 -7.61193 0) (39.3841 -7.55048 0) (39.0336 -7.47765 0) (39.112 -7.1499 0) (38.7724 -7.06532 0) (38.8625 -6.74943 0) (38.9523 -6.44533 0) (39.0413 -6.1525 0) (38.7355 -6.05901 0) (38.4316 -5.95504 0) (38.1303 -5.84026 0) (37.8321 -5.71436 0) (37.5374 -5.57696 0) (37.2468 -5.4277 0) (37.4005 -5.16423 0) (37.5489 -4.91213 0) (37.6918 -4.67057 0) (37.9497 -4.80495 0) (37.8168 -5.05152 0) (37.6794 -5.3086 0) (37.9626 -5.44192 0) (38.0894 -5.18063 0) (38.2123 -4.92976 0) (38.3312 -4.68865 0) (38.0778 -4.56819 0) (37.8294 -4.43882 0) (37.9617 -4.2162 0) (38.0887 -4.00211 0) (38.2106 -3.796 0) (38.4345 -3.91062 0) (38.3202 -4.12159 0) (38.2014 -4.34059 0) (38.446 -4.45669 0) (38.5568 -4.23333 0) (38.6635 -4.01803 0) (38.897 -4.1182 0) (38.7979 -4.33735 0) (38.6952 -4.56456 0) (38.589 -4.80032 0) (38.4792 -5.04517 0) (38.3661 -5.29969 0) (38.2497 -5.5645 0) (38.5403 -5.67661 0) (38.6464 -5.4089 0) (38.75 -5.15131 0) (39.0239 -5.24832 0) (38.9298 -5.50845 0) (38.8336 -5.77849 0) (39.1291 -5.87039 0) (39.2156 -5.59851 0) (39.3004 -5.33633 0) (39.3833 -5.08337 0) (39.1156 -4.99759 0) (38.8506 -4.90327 0) (38.9484 -4.66422 0) (39.043 -4.43366 0) (39.1345 -4.21109 0) (39.3754 -4.29672 0) (39.2915 -4.52226 0) (39.2049 -4.75573 0) (39.4642 -4.83915 0) (39.5429 -4.6032 0) (39.6193 -4.37509 0) (39.8657 -4.44626 0) (39.7967 -4.67655 0) (39.7259 -4.91457 0) (39.6532 -5.16074 0) (39.579 -5.4155 0) (39.5033 -5.67929 0) (39.4263 -5.95256 0) (39.3484 -6.2358 0) (39.2698 -6.52945 0) (39.1909 -6.83399 0) (39.5195 -6.90789 0) (39.4514 -7.22348 0) (39.7903 -7.28636 0) (40.1281 -7.33882 0) (40.176 -7.02489 0) (39.848 -6.97155 0) (39.9065 -6.66716 0) (39.588 -6.60327 0) (39.6565 -6.3092 0) (39.7248 -6.02525 0) (39.7924 -5.75099 0) (39.8592 -5.486 0) (40.1407 -5.54801 0) (40.0826 -5.81384 0) (40.024 -6.0887 0) (39.9652 -6.37302 0) (40.2741 -6.42757 0) (40.2248 -6.72134 0) (40.5424 -6.76605 0) (40.5033 -7.06887 0) (40.4655 -7.38177 0) (40.4292 -7.705 0) (40.3948 -8.03855 0) (40.7503 -8.0681 0) (40.7281 -8.40985 0) (41.0912 -8.42735 0) (41.0816 -8.77677 0) (41.4517 -8.78196 0) (41.4518 -8.43545 0) (41.4549 -8.09881 0) (41.1037 -8.0881 0) (41.1188 -7.75885 0) (40.7749 -7.73668 0) (40.8016 -7.41535 0) (40.83 -7.1039 0) (40.8599 -6.80189 0) (41.1764 -6.829 0) (41.1554 -7.12956 0) (41.1361 -7.43941 0) (41.469 -7.45448 0) (41.4608 -7.77189 0) (41.8008 -7.77601 0) (41.8039 -8.10048 0) (41.8099 -8.43439 0) (41.819 -8.7779 0) (42.1835 -8.76482 0) (42.1654 -8.42438 0) (42.1505 -8.09331 0) (42.4944 -8.07751 0) (42.518 -8.40563 0) (42.545 -8.7429 0) (42.5755 -9.08946 0) (42.9426 -9.0554 0) (42.9856 -9.40771 0) (43.0327 -9.76935 0) (43.4139 -9.71904 0) (43.474 -10.0861 0) (43.5385 -10.4625 0) (43.6076 -10.8483 0) (43.6814 -11.2438 0) (43.7599 -11.6489 0) (44.182 -11.5681 0) (44.0944 -11.1675 0) (44.0116 -10.7766 0) (44.4113 -10.696 0) (44.503 -11.0823 0) (44.5998 -11.4782 0) (45.013 -11.3794 0) (44.9073 -10.9883 0) (44.8066 -10.6066 0) (44.7109 -10.2342 0) (44.3244 -10.319 0) (43.9335 -10.3951 0) (43.8602 -10.0229 0) (43.7913 -9.66009 0) (43.7268 -9.30636 0) (43.358 -9.36131 0) (43.3063 -9.01276 0) (43.2585 -8.67324 0) (42.9034 -8.71232 0) (42.8678 -8.37833 0) (42.8356 -8.05328 0) (42.8066 -7.73703 0) (42.4738 -7.75838 0) (42.1385 -7.77144 0) (42.1292 -7.45861 0) (41.8001 -7.46082 0) (41.8019 -7.15468 0) (41.4794 -7.14639 0) (41.4917 -6.84738 0) (41.5056 -6.55723 0) (41.1988 -6.53757 0) (40.891 -6.50929 0) (40.5827 -6.47273 0) (40.6236 -6.1888 0) (40.3237 -6.14317 0) (40.3735 -5.86804 0) (40.4231 -5.60172 0) (40.4723 -5.34386 0) (40.1981 -5.29084 0) (39.925 -5.22985 0) (39.9895 -4.98212 0) (40.0526 -4.74241 0) (40.1141 -4.51031 0) (40.3644 -4.56731 0) (40.3101 -4.80087 0) (40.2546 -5.04192 0) (40.521 -5.0941 0) (40.569 -4.85205 0) (40.6161 -4.61736 0) (40.8689 -4.66056 0) (40.8288 -4.89606 0) (40.7882 -5.1388 0) (40.7472 -5.38908 0) (40.706 -5.64731 0) (40.6646 -5.91382 0) (40.9558 -5.95119 0) (40.923 -6.22593 0) (41.2223 -6.25485 0) (41.5209 -6.2756 0) (41.5374 -6.00229 0) (41.2469 -5.98059 0) (41.2721 -5.71466 0) (40.9891 -5.6848 0) (41.0225 -5.42662 0) (41.056 -5.17618 0) (41.0894 -4.93303 0) (41.1225 -4.69699 0) (41.3765 -4.72676 0) (41.3503 -4.96298 0) (41.3239 -5.2062 0) (41.2977 -5.45667 0) (41.573 -5.47942 0) (41.5548 -5.73706 0) (41.837 -5.75183 0) (41.8271 -6.01619 0) (41.8185 -6.2884 0) (41.8112 -6.56872 0) (41.8056 -6.85739 0) (42.118 -6.85924 0) (42.1225 -7.15461 0) (42.4411 -7.14638 0) (42.4562 -7.44807 0) (42.7807 -7.42938 0) (42.7575 -7.13017 0) (42.737 -6.83917 0) (42.4285 -6.85311 0) (42.4181 -6.56804 0) (42.1155 -6.57227 0) (42.1148 -6.29345 0) (42.1158 -6.02256 0) (42.1182 -5.75931 0) (42.3983 -5.75968 0) (42.4032 -6.02157 0) (42.4097 -6.29093 0) (42.7029 -6.28101 0) (42.7189 -6.55619 0) (43.0176 -6.53691 0) (43.0433 -6.81762 0) (43.0716 -7.10616 0) (43.1026 -7.40274 0) (43.1367 -7.70756 0) (43.1738 -8.0208 0) (43.2144 -8.34264 0) (43.5577 -8.29874 0) (43.6102 -8.62583 0) (43.6664 -8.96166 0) (44.0229 -8.90225 0) (44.0916 -9.24299 0) (44.1647 -9.59261 0) (44.2422 -9.95122 0) (44.6201 -9.87096 0) (44.534 -9.51671 0) (44.4525 -9.17133 0) (44.3755 -8.83466 0) (44.3027 -8.50657 0) (43.9583 -8.57022 0) (43.8977 -8.24677 0) (43.8409 -7.93173 0) (43.509 -7.98023 0) (43.4638 -7.67014 0) (43.4218 -7.3683 0) (43.383 -7.07452 0) (43.3471 -6.78861 0) (43.6484 -6.7523 0) (43.6917 -7.03542 0) (43.7381 -7.32623 0) (43.7878 -7.62495 0) (44.1085 -7.57212 0) (44.1694 -7.87546 0) (44.2341 -8.18689 0) (44.5667 -8.11924 0) (44.6432 -8.43501 0) (44.724 -8.75904 0) (44.8092 -9.09149 0) (44.899 -9.43252 0) (44.9935 -9.78228 0) (45.0929 -10.1409 0) (45.1973 -10.5086 0) (45.3068 -10.8854 0) (45.4216 -11.2716 0) (45.5417 -11.6672 0) (45.6672 -12.0725 0) (45.7983 -12.4875 0) (45.935 -12.9127 0) (46.0772 -13.3478 0) (46.2253 -13.7936 0) (46.6862 -13.6449 0) (46.8503 -14.0957 0) (47.3161 -13.9312 0) (47.4969 -14.387 0) (47.684 -14.854 0) (48.1653 -14.6668 0) (48.3701 -15.1389 0) (48.8563 -14.9348 0) (49.0795 -15.4119 0) (49.5701 -15.1895 0) (49.8123 -15.6713 0) (50.3072 -15.4302 0) (50.7943 -15.1778 0) (50.5291 -14.7112 5.13826e-20) (50.0534 -14.956 0) (49.8077 -14.4931 0) (49.3356 -14.7194 0) (49.1086 -14.2607 0) (48.6403 -14.4691 0) (48.4316 -14.0148 0) (47.9673 -14.2062 0) (47.776 -13.7564 0) (47.5914 -13.3175 0) (47.1417 -13.4862 0) (46.9735 -13.0516 0) (46.5281 -13.2046 0) (46.376 -12.7749 0) (46.2296 -12.3551 0) (46.0892 -11.9454 0) (46.5058 -11.8091 0) (46.6557 -12.2133 0) (46.8116 -12.6275 0) (47.2415 -12.4707 0) (47.4132 -12.8889 0) (47.8468 -12.7164 0) (48.035 -13.1389 0) (48.2298 -13.5715 0) (48.6771 -13.3766 0) (48.8892 -13.8133 0) (49.3398 -13.601 0) (49.5698 -14.0415 0) (50.0236 -13.8119 0) (50.2722 -14.256 -5.13656e-20) (50.7287 -14.0081 0) (50.9965 -14.4554 0) (51.2731 -14.9139 0) (51.5586 -15.3841 0) (51.8533 -15.8663 0) (52.1573 -16.3607 0) (52.4711 -16.8681 0) (52.9894 -16.5574 0) (53.3259 -17.0683 0) (53.8471 -16.7351 0) (54.2076 -17.2496 0) (54.5792 -17.7774 0) (54.9624 -18.3193 0) (55.5134 -17.9411 0) (55.1162 -17.4102 0) (54.7312 -16.8933 0) (55.2435 -16.524 0) (55.6417 -17.0298 0) (56.0525 -17.5491 0) (56.4762 -18.0826 0) (57.0167 -17.6649 0) (57.4677 -18.1998 0) (58.0089 -17.7556 0) (58.4883 -18.2915 0) (59.0293 -17.8194 0) (59.5385 -18.3559 0) (60.0785 -17.8553 0) (60.6179 -18.3908 0) (61.1747 -18.9413 0) (61.7487 -19.5065 0) (62.3412 -20.0874 0) (62.9244 -19.5072 0) (63.5519 -20.0868 0) (64.1319 -19.4731 0) (64.7954 -20.0495 0) (65.4801 -20.6418 0) (66.1872 -21.2506 0) (66.795 -20.5612 0) (66.0715 -19.9731 0) (65.3709 -19.4011 0) (64.692 -18.8442 0) (64.0342 -18.302 0) (63.489 -18.9121 0) (62.866 -18.366 0) (62.3164 -18.9435 0) (61.7272 -18.395 0) (62.2622 -17.8345 0) (62.779 -17.2603 0) (63.3968 -17.7742 0) (63.9084 -17.1686 0) (64.5596 -17.6778 0) (65.2317 -18.2007 0) (65.9253 -18.7378 0) (66.641 -19.2895 0) (67.38 -19.8562 0) (67.942 -19.1355 0) (67.1881 -18.5906 0) (66.458 -18.0601 0) (66.9683 -17.3688 0) (67.7124 -17.8778 0) (68.4803 -18.4006 0) (69.2736 -18.9374 0) (69.8012 -18.1656 0) (70.634 -18.6923 0) (71.1492 -17.8824 0) (72.023 -18.3973 0) (72.925 -18.9255 0) (73.8568 -19.4668 0) (74.3836 -18.5656 0) (75.3593 -19.0918 0) (76.3674 -19.6306 0) (76.8888 -18.6579 0) (77.9433 -19.179 0) (78.4431 -18.1643 0) (77.377 -17.674 0) (76.3453 -17.1944 0) (75.8683 -18.1486 0) (74.8799 -17.6508 0) (73.9227 -17.1642 0) (73.4385 -18.0514 0) (72.5236 -17.5499 0) (71.637 -17.0602 0) (72.0969 -16.2253 0) (72.9955 -16.6891 0) (73.4379 -15.8179 0) (74.3765 -16.2661 0) (75.3451 -16.7249 0) (75.7792 -15.7878 0) (76.7899 -16.2288 0) (77.8322 -16.6789 0) (78.9086 -17.1387 0) (79.3397 -16.1035 0) (78.2538 -15.674 0) (77.2019 -15.2534 0) (77.5814 -14.2688 0) (78.642 -14.6601 0) (79.7365 -15.0593 0) (80.099 -14.0073 0) (78.9968 -13.6382 0) (77.9282 -13.276 0) (76.8909 -12.9203 0) (76.5519 -13.8848 0) (76.1814 -14.841 0) (75.1924 -14.4375 0) (74.7999 -15.3565 0) (73.8508 -14.9348 0) (72.9303 -14.5227 0) (72.5281 -15.3798 0) (71.6463 -14.9518 0) (71.2262 -15.7727 0) (70.7782 -16.5825 0) (70.303 -17.3803 0) (69.4829 -16.8903 0) (68.9941 -17.6521 0) (68.2128 -17.152 0) (67.4556 -16.6644 0) (66.7216 -16.1894 0) (66.2472 -16.8727 0) (65.7503 -17.5434 0) (65.0646 -17.0401 0) (64.4001 -16.5499 0) (63.756 -16.0725 0) (63.2772 -16.6727 0) (62.6654 -16.1898 0) (62.1803 -16.7599 0) (61.6769 -17.3169 0) (61.1558 -17.8608 0) (60.6023 -17.341 0) (60.0656 -16.8347 0) (59.5552 -17.3337 0) (59.0481 -16.8261 0) (58.5359 -17.2975 0) (58.0572 -16.7889 0) (57.5438 -17.2336 0) (57.0929 -16.7251 0) (56.5791 -17.1437 0) (56.1551 -16.6363 0) (55.7439 -16.1421 0) (56.2321 -15.748 0) (56.6558 -16.2301 0) (57.1435 -15.8115 0) (57.5932 -16.2937 0) (58.0797 -15.85 0) (58.5563 -16.3315 0) (59.0406 -15.8615 0) (59.5452 -16.3418 0) (60.0266 -15.8449 0) (60.5597 -16.3227 0) (61.1097 -16.8133 0) (61.5999 -16.2726 0) (61.0372 -15.7981 0) (60.4918 -15.3359 0) (59.9629 -14.8855 0) (59.5097 -15.3794 0) (59.0089 -14.9263 0) (58.5518 -15.394 0) (58.0776 -14.9384 0) (57.6176 -15.3809 0) (57.1694 -14.9238 0) (56.7074 -15.3418 0) (56.2847 -14.8841 0) (55.8212 -15.2779 0) (55.3451 -15.6604 5.1375e-20) (54.8572 -16.0309 0) (54.3577 -16.3893 0) (53.9958 -15.8984 0) (53.4977 -16.2341 0) (53.1589 -15.7454 0) (52.663 -16.0591 0) (52.3467 -15.5737 0) (52.8307 -15.2695 0) (53.3046 -14.9537 0) (53.6447 -15.4198 0) (54.1199 -15.0826 0) (54.4829 -15.5508 0) (54.9588 -15.1913 -5.13302e-20) (54.5841 -14.7339 0) (54.2212 -14.2884 0) (53.7683 -14.6265 0) (53.4274 -14.1819 0) (52.975 -14.4991 0) (52.5125 -14.8054 0) (52.0402 -15.1004 0) (51.7432 -14.6389 0) (51.4555 -14.1889 0) (51.1768 -13.7498 0) (51.6162 -13.4812 0) (51.9055 -13.9116 0) (52.2042 -14.3528 0) (52.6556 -14.0559 0) (52.3462 -13.6238 0) (52.0465 -13.2023 0) (52.4673 -12.9135 0) (52.7772 -13.3257 0) (53.0971 -13.7483 0) (53.5283 -13.4303 -5.1356e-20) (53.8693 -13.8539 0) (54.3002 -13.5155 0) (54.6628 -13.9394 0) (55.0368 -14.374 0) (55.4228 -14.8201 0) (55.8748 -14.4379 0) (55.4777 -14.0032 0) (55.0929 -13.5798 0) (54.7198 -13.1668 0) (54.3584 -12.7644 0) (53.9489 -13.1022 0) (53.6086 -12.6995 0) (53.1982 -13.0176 5.13113e-20) (52.8783 -12.6149 0) (53.279 -12.3068 0) (53.6692 -11.9892 0) (54.0082 -12.3718 0) (54.3967 -12.0348 0) (54.7565 -12.4167 0) (55.1276 -12.8081 0) (55.5109 -13.2099 0) (55.9062 -13.6218 0) (56.3142 -14.0446 0) (56.7352 -14.4786 0) (57.1724 -14.0621 0) (57.618 -14.4945 0) (58.0523 -14.0544 0) (58.5231 -14.4847 0) (58.9536 -14.0197 0) (59.4506 -14.447 0) (59.8764 -13.957 0) (60.3999 -14.3803 0) (60.9402 -14.8152 0) (61.4975 -15.2614 0) (62.0724 -15.7195 0) (62.5266 -15.1545 0) (63.1317 -15.6074 0) (63.5785 -15.0132 0) (64.2148 -15.46 0) (64.8712 -15.9187 0) (65.5484 -16.3895 0) (66.0104 -15.7265 0) (65.321 -15.2754 0) (64.6528 -14.8359 0) (65.0692 -14.2007 0) (65.7487 -14.6207 0) (66.4497 -15.0517 0) (67.1729 -15.4939 0) (67.919 -15.9476 0) (68.6886 -16.4128 0) (69.1393 -15.6619 0) (69.9457 -16.1163 0) (70.382 -15.3306 0) (70.7913 -14.5339 0) (69.9627 -14.1263 0) (69.5642 -14.8995 0) (68.7716 -14.4791 0) (68.3579 -15.2189 0) (67.6002 -14.7869 0) (66.8657 -14.3656 0) (66.1537 -13.9549 0) (65.4634 -13.5546 0) (65.8346 -12.8984 0) (66.5351 -13.2788 0) (67.2577 -13.6688 0) (68.0029 -14.0689 0) (68.3802 -13.3406 0) (69.1593 -13.7287 0) (69.5208 -12.968 0) (70.3345 -13.3429 0) (71.173 -13.7268 0) (72.0382 -14.1201 0) (72.4018 -13.2791 0) (73.3034 -13.6564 0) (74.2336 -14.0428 0) (74.586 -13.1408 0) (75.554 -13.5088 0) (75.8848 -12.5719 0) (74.9087 -12.2307 0) (73.9616 -11.8967 0) (73.6471 -12.7807 0) (72.7367 -12.4287 0) (71.8529 -12.0843 0) (71.5269 -12.9102 0) (70.6788 -12.5501 0) (69.8559 -12.1981 0) (70.1646 -11.4193 0) (70.9959 -11.7479 0) (71.286 -10.9379 0) (72.151 -11.2503 0) (73.0428 -11.57 0) (73.3209 -10.7034 0) (74.2472 -11.0048 0) (75.2017 -11.3128 0) (76.1853 -11.6273 0) (77.1987 -11.9482 0) (78.2429 -12.2754 0) (79.3188 -12.6087 0) (80.4279 -12.9481 0) (80.7237 -11.8828 0) (79.6086 -11.5729 0) (78.5265 -11.2684 0) (78.7794 -10.2555 0) (79.867 -10.5314 0) (80.9873 -10.812 0) (81.2199 -9.73636 0) (80.0951 -9.48474 0) (79.003 -9.23727 0) (77.9417 -8.99406 0) (77.7232 -9.98434 0) (77.4758 -10.9693 0) (76.4559 -10.6758 0) (75.4658 -10.388 0) (74.5046 -10.106 0) (74.7344 -9.20108 0) (75.7015 -9.45701 0) (76.6975 -9.71813 0) (76.911 -8.75504 0) (75.9099 -8.52048 0) (74.9377 -8.29046 0) (75.1154 -7.37484 0) (76.0921 -7.57898 0) (77.0976 -7.78706 0) (78.1325 -7.99901 0) (79.1982 -8.21478 0) (80.2941 -8.43396 0) (81.4226 -8.65667 0) (81.5969 -7.57236 0) (80.4654 -7.3783 0) (79.3661 -7.18723 0) (79.5084 -6.15341 0) (80.6104 -6.3165 0) (81.7442 -6.48224 0) (82.9098 -6.6501 0) (83.0337 -5.52154 -1.0083e-19) (84.2333 -5.66181 5.04389e-20) (84.3328 -4.50209 5.05781e-20) (85.5663 -4.61412 3.94669e-22) (86.8331 -4.72688 0) (88.1336 -4.84006 3.94316e-22) (89.468 -4.95332 -3.94148e-22) (90.8367 -5.06629 0) (92.2399 -5.17851 0) (93.6778 -5.28951 0) (95.1503 -5.39875 0) (95.2199 -4.03082 -5.22277e-20) (96.724 -4.11016 5.23106e-20) (96.7674 -2.80049 0) (98.3039 -2.85279 0) (99.8717 -2.90303 0) (99.8933 -1.66793 0) (101.492 -1.69517 0) (98.3271 -1.6393 0) (96.7919 -1.60943 0) (95.2907 -1.57864 0) (95.2653 -2.74664 0) (93.7955 -2.6915 0) (93.749 -3.94973 -5.23673e-20) (92.3128 -3.86719 5.22881e-20) (90.9103 -3.78376 -5.24186e-20) (89.5424 -3.69965 5.23428e-20) (89.5914 -2.52156 0) (90.9585 -2.5787 0) (92.3606 -2.63545 0) (92.3875 -1.51497 0) (93.8217 -1.54707 0) (90.9858 -1.48244 0) (89.619 -1.44968 0) (88.2847 -1.41678 0) (88.2569 -2.46417 0) (88.208 -3.61533 -4.09616e-22) (86.9077 -3.5309 0) (85.6406 -3.44699 0) (84.4062 -3.36347 -5.25248e-20) (84.4547 -2.29266 0) (85.6896 -2.3496 0) (86.957 -2.40681 0) (86.9847 -1.3839 0) (85.7173 -1.35113 0) (84.4822 -1.3185 0) (83.2803 -1.28614 0) (83.253 -2.23622 0) (83.2048 -3.2806 5.24564e-20) (83.1321 -4.39095 5.79345e-23) (81.9634 -4.28058 -1.01143e-19) (81.8663 -5.38302 5.03925e-20) (80.7305 -5.24616 0) (79.6264 -5.11106 0) (78.552 -4.97787 0) (78.4364 -5.99272 0) (78.2969 -6.99903 0) (77.2583 -6.81408 0) (76.2492 -6.63246 0) (75.2687 -6.45428 0) (75.3988 -5.52737 0) (76.3825 -5.67959 0) (77.3948 -5.83476 0) (77.508 -4.84684 -5.0528e-20) (76.4933 -4.71816 5.04693e-20) (75.5068 -4.59197 0) (74.5485 -4.46807 0) (74.4433 -5.37807 0) (74.3165 -6.27963 0) (74.1669 -7.17483 0) (73.9936 -8.06505 0) (73.7955 -8.95043 0) (73.5716 -9.82989 0) (72.666 -9.55961 0) (72.4219 -10.4085 0) (71.5495 -10.1202 0) (70.7031 -9.83845 0) (70.447 -10.6328 0) (69.6325 -10.3347 0) (69.3581 -11.0985 0) (69.0579 -11.8547 0) (68.7319 -12.6021 0) (67.9672 -12.2453 0) (67.6249 -12.9619 0) (66.8923 -12.5927 0) (66.1822 -12.2325 0) (66.5058 -11.5573 0) (67.225 -11.8969 0) (67.5333 -11.1925 0) (68.2842 -11.5196 0) (68.5759 -10.7855 0) (68.8425 -10.0435 0) (68.0759 -9.75919 0) (67.8169 -10.4798 0) (67.0805 -10.1813 0) (66.8052 -10.8735 0) (66.0989 -10.562 0) (65.8078 -11.2258 0) (65.4932 -11.8811 0) (65.1551 -12.5274 0) (64.7939 -13.1642 0) (64.4104 -13.7913 0) (64.0051 -14.4077 0) (63.3771 -13.9904 0) (62.9617 -14.5779 0) (62.3638 -14.1538 0) (61.9399 -14.7132 0) (61.3712 -14.2833 0) (61.7841 -13.7406 0) (62.1781 -13.1873 0) (62.7684 -13.5837 0) (63.1527 -13.0034 0) (63.7719 -13.3923 0) (64.1453 -12.7839 0) (63.5161 -12.413 0) (62.9064 -12.0517 0) (62.5525 -12.6244 0) (61.9705 -12.2549 0) (61.606 -12.8012 0) (61.2221 -13.3377 0) (60.8198 -13.8643 0) (60.2856 -13.4564 0) (59.7675 -13.0587 0) (59.3687 -13.5442 0) (58.8766 -13.1422 0) (58.472 -13.6035 0) (58.0051 -13.1976 0) (57.5959 -13.635 0) (57.1535 -13.2265 0) (56.7406 -13.6407 0) (56.3221 -13.2301 0) (55.9166 -12.83 0) (56.3095 -12.4405 0) (56.7249 -12.8284 0) (57.1142 -12.4171 0) (57.5526 -12.8023 0) (57.9373 -12.3684 0) (58.3995 -12.7503 0) (58.7786 -12.2933 0) (59.2655 -12.6711 0) (59.6378 -12.1904 0) (60.1495 -12.563 0) (60.6776 -12.9453 0) (61.0516 -12.4249 0) (60.5138 -12.058 0) (59.9929 -11.7006 0) (59.4877 -11.3519 0) (59.1416 -11.8271 0) (58.6609 -11.473 0) (58.3069 -11.9252 0) (57.8499 -11.5665 -5.12807e-20) (57.4894 -11.9963 0) (57.0551 -11.6334 0) (56.6892 -12.0415 0) (56.2772 -11.6752 0) (55.9068 -12.0621 0) (55.5234 -12.4398 0) (55.1427 -12.0596 0) (54.7737 -11.6887 0) (54.4164 -11.3272 -5.1295e-20) (54.0484 -11.6627 0) (53.7111 -11.2999 0) (53.3409 -11.6163 0) (52.9599 -11.924 0) (52.5686 -12.2223 0) (52.1673 -12.5117 0) (51.7564 -12.7914 0) (51.3362 -13.0616 0) (50.9071 -13.3218 0) (50.4694 -13.5719 0) (50.2186 -13.1466 0) (49.783 -13.3788 0) (49.5505 -12.9564 0) (49.1174 -13.1714 0) (48.9024 -12.7521 0) (48.4721 -12.9504 0) (48.2741 -12.5344 0) (48.0831 -12.1286 0) (47.6655 -12.3043 0) (47.4905 -11.9019 0) (47.0761 -12.0622 0) (46.9169 -11.6637 0) (47.3221 -11.5093 0) (47.7213 -11.346 0) (47.8989 -11.7324 0) (48.3007 -11.554 0) (48.4942 -11.9435 0) (48.6947 -12.3428 0) (49.1083 -12.1419 0) (49.3256 -12.5442 0) (49.7414 -12.3268 0) (49.976 -12.7317 0) (50.3936 -12.4971 0) (50.6462 -12.9043 0) (51.0653 -12.6524 0) (51.4756 -12.3908 0) (51.2039 -12 0) (50.803 -12.2532 0) (50.5494 -11.864 0) (50.1494 -12.1 0) (49.9133 -11.7123 0) (49.5146 -11.9317 0) (49.2955 -11.5463 0) (48.8984 -11.7495 0) (48.6959 -11.3667 0) (48.5004 -10.993 0) (48.1142 -11.1739 0) (47.9343 -10.8029 0) (47.5503 -10.9689 0) (47.16 -11.1262 0) (46.7638 -11.2747 0) (46.3618 -11.4145 0) (45.9544 -11.5453 0) (45.8252 -11.1549 0) (45.7015 -10.7738 0) (45.5832 -10.402 0) (45.9641 -10.2868 0) (46.0911 -10.6535 0) (46.2236 -11.0294 0) (46.6167 -10.8951 0) (46.4754 -10.5247 0) (46.3399 -10.1633 0) (46.21 -9.81071 0) (45.8426 -9.92906 0) (45.4702 -10.0392 0) (45.3623 -9.68528 0) (45.2595 -9.34015 0) (45.1615 -9.00361 0) (45.5093 -8.90781 0) (45.6154 -9.23971 0) (45.7264 -9.58008 0) (46.0855 -9.46678 0) (45.9664 -9.13134 0) (45.8524 -8.80422 0) (46.1906 -8.69298 0) (46.3123 -9.01516 0) (46.4394 -9.34552 0) (46.572 -9.68424 0) (46.7102 -10.0315 0) (46.8542 -10.3874 0) (47.0041 -10.7523 0) (47.3856 -10.6009 0) (47.2272 -10.2418 0) (47.0749 -9.89149 0) (47.4337 -9.74344 0) (47.5942 -10.0879 0) (47.761 -10.441 0) (48.1301 -10.2729 0) (48.3118 -10.6285 0) (48.6826 -10.4457 0) (48.8797 -10.8036 0) (49.084 -11.1705 0) (49.4648 -10.9656 0) (49.6851 -11.3343 0) (50.067 -11.1136 0) (50.3041 -11.4841 0) (50.6867 -11.247 0) (50.941 -11.6189 0) (51.3239 -11.3649 0) (51.5958 -11.7377 0) (51.8769 -12.1199 0) (52.2688 -11.8396 0) (51.9785 -11.4663 0) (51.6977 -11.1023 0) (52.0623 -10.8312 0) (52.3517 -11.1862 0) (52.6509 -11.5505 0) (53.0229 -11.2525 0) (52.7151 -10.8976 0) (52.4171 -10.5517 0) (52.1288 -10.2141 0) (51.7821 -10.4848 0) (51.426 -10.7471 5.12899e-20) (51.0607 -11.0012 0) (50.8064 -10.6466 0) (50.4409 -10.8844 0) (50.2032 -10.5305 0) (49.8379 -10.7522 0) (49.6166 -10.3996 0) (49.2519 -10.6058 0) (49.0464 -10.2547 0) (48.8482 -9.9123 0) (48.4926 -10.0966 0) (48.3093 -9.756 0) (47.955 -9.92594 0) (47.7864 -9.58747 0) (47.6241 -9.2573 0) (47.2793 -9.4074 0) (46.9285 -9.54976 0) (46.7879 -9.21642 0) (46.653 -8.8913 0) (46.5236 -8.57422 0) (46.8513 -8.44808 0) (46.9883 -8.75989 0) (47.1309 -9.07961 0) (47.468 -8.93523 0) (47.3178 -8.62109 0) (47.1735 -8.3147 0) (47.49 -8.17423 0) (47.6415 -8.47503 0) (47.7991 -8.78342 0) (47.9628 -9.09959 0) (48.1328 -9.42372 0) (48.4726 -9.25234 0) (48.657 -9.57823 0) (48.9977 -9.39279 0) (49.1967 -9.72013 0) (49.4029 -10.0557 0) (49.7519 -9.8487 0) (49.9737 -10.1854 0) (50.3227 -9.96319 0) (50.5604 -10.3006 0) (50.9091 -10.0628 0) (51.1632 -10.4007 -5.12568e-20) (51.5112 -10.1468 0) (51.8499 -9.88496 0) (51.5802 -9.5639 0) (51.2492 -9.81714 0) (50.9959 -9.49568 0) (50.6636 -9.73322 0) (50.4262 -9.41171 0) (50.0931 -9.63398 0) (49.8713 -9.31284 0) (49.5378 -9.52025 0) (49.3311 -9.19985 0) (49.1317 -8.88729 0) (48.8057 -9.07348 0) (48.6206 -8.76198 0) (48.295 -8.93444 0) (48.1239 -8.62434 0) (47.9591 -8.32186 0) (47.8006 -8.02682 0) (48.105 -7.87263 0) (48.2704 -8.16174 0) (48.4423 -8.45813 0) (48.7539 -8.28497 0) (48.9394 -8.58239 0) (49.2511 -8.39583 0) (49.4505 -8.69396 0) (49.6572 -8.99956 0) (49.9755 -8.79212 0) (50.197 -9.09808 0) (50.5145 -8.87614 0) (50.7511 -9.18207 0) (51.0673 -8.94526 0) (51.3194 -9.25077 0) (51.6338 -8.99869 0) (51.9019 -9.30331 0) (52.1791 -9.61565 0) (52.4658 -9.93597 0) (52.7621 -10.2643 0) (53.0682 -10.6009 0) (53.3845 -10.946 0) (53.7352 -10.6311 -5.12663e-20) (54.0703 -10.9749 5.12866e-20) (54.4182 -10.6414 0) (54.7728 -10.9833 0) (55.1388 -11.3338 0) (55.5168 -11.6934 0) (55.8783 -11.3184 0) (55.4916 -10.9703 0) (55.1172 -10.631 0) (55.4491 -10.2708 0) (55.8317 -10.5985 0) (56.2267 -10.9348 0) (56.6343 -11.2796 0) (56.9775 -10.8755 5.12537e-20) (57.4068 -11.2166 -1.73475e-23) (57.7434 -10.7914 0) (58.195 -11.128 0) (58.5239 -10.6812 0) (58.9982 -11.0123 0) (59.3181 -10.5434 0) (59.8158 -10.8684 0) (60.3297 -11.2019 0) (60.8596 -11.5439 0) (61.4066 -11.895 0) (61.7419 -11.3559 0) (62.3149 -11.6993 0) (62.6386 -11.1348 0) (63.239 -11.4699 0) (63.858 -11.8134 0) (64.4967 -12.166 0) (64.8255 -11.5388 0) (64.1777 -11.2047 0) (63.55 -10.8793 0) (62.9409 -10.5617 0) (62.3508 -10.2523 0) (62.0568 -10.8083 0) (61.4924 -10.4897 0) (61.1861 -11.021 0) (60.6476 -10.6947 0) (60.9457 -10.1794 0) (61.2237 -9.6562 0) (61.7783 -9.95037 0) (62.0434 -9.40326 0) (62.6236 -9.68833 0) (63.2217 -9.98047 0) (63.8389 -10.2803 0) (64.475 -10.5875 0) (65.1314 -10.9028 0) (65.4142 -10.2584 0) (64.7497 -9.96211 0) (64.1057 -9.6733 0) (64.3504 -9.05907 0) (65.0018 -9.32919 0) (65.6739 -9.60628 0) (66.3664 -9.89018 0) (66.6106 -9.21085 0) (67.332 -9.48164 0) (67.5602 -8.77502 0) (68.3109 -9.03152 0) (69.0844 -9.29421 0) (69.8815 -9.563 0) (70.1061 -8.78471 0) (70.934 -9.03707 0) (71.7872 -9.29531 0) (71.9991 -8.46517 0) (72.8839 -8.70511 0) (73.0768 -7.84428 0) (72.1868 -7.6283 0) (71.3223 -7.41709 0) (71.1401 -8.23033 0) (70.3063 -8.00074 0) (69.4969 -7.77633 0) (69.3023 -8.53799 0) (68.5225 -8.29722 0) (67.7655 -8.06189 0) (67.9488 -7.34304 0) (68.7114 -7.55712 0) (68.8785 -6.81164 0) (69.6689 -7.0088 0) (70.4835 -7.21057 0) (70.6387 -6.41611 0) (71.4819 -6.59958 0) (72.351 -6.7873 0) (73.2454 -6.97902 0) (73.391 -6.10839 0) (72.4927 -5.9408 5.11203e-20) (71.6198 -5.7768 -1.02243e-19) (71.7371 -4.948 0) (72.6131 -5.08828 0) (73.5147 -5.23155 0) (73.6174 -4.34662 0) (72.7131 -4.22773 0) (71.8344 -4.11129 0) (70.9808 -3.99733 0) (70.8861 -4.81072 0) (70.7724 -5.61647 1.02256e-19) (69.9496 -5.45953 -1.02268e-19) (69.8195 -6.23666 0) (69.0247 -6.0614 0) (68.2527 -5.89007 0) (68.1109 -6.61891 0) (67.3663 -6.43078 0) (67.2091 -7.13413 0) (67.0313 -7.83221 0) (66.832 -8.52479 0) (66.1258 -8.28073 0) (65.911 -8.94669 0) (65.232 -8.68879 0) (64.5735 -8.43736 0) (63.9349 -8.19215 0) (63.7184 -8.79543 0) (63.4808 -9.39148 0) (62.8751 -9.11687 0) (62.2876 -8.84887 0) (61.7183 -8.58772 0) (61.4812 -9.12544 0) (60.936 -8.85435 0) (60.6857 -9.36922 0) (60.4154 -9.87664 0) (60.1253 -10.3764 0) (59.6195 -10.0663 0) (59.129 -9.7637 5.12804e-20) (58.8355 -10.2264 0) (58.3678 -9.91722 0) (58.064 -10.3582 0) (57.6187 -10.0434 0) (57.3059 -10.4634 0) (56.8819 -10.1435 0) (56.5615 -10.543 0) (56.1586 -10.2189 0) (55.7681 -9.90266 0) (56.0735 -9.52736 0) (56.4714 -9.83164 0) (56.7691 -9.43711 0) (57.187 -9.73637 0) (57.4759 -9.322 0) (57.9149 -9.61594 0) (58.1935 -9.18129 -5.12429e-20) (58.6539 -9.46876 -5.12566e-20) (58.9215 -9.01322 0) (59.4038 -9.29376 0) (59.9018 -9.58161 0) (60.1645 -9.08952 0) (59.6593 -8.81661 0) (59.1699 -8.55066 0) (58.6956 -8.29121 0) (58.454 -8.73953 0) (58.001 -8.47253 0) (57.7474 -8.90082 -1.66867e-23) (57.3154 -8.62725 -1.60276e-23) (57.0508 -9.03546 0) (56.639 -8.75583 0) (56.3641 -9.14515 0) (55.9719 -8.86037 0) (55.6882 -9.23068 0) (55.3901 -9.59437 -5.12661e-20) (55.0786 -9.95096 0) (54.7544 -10.3001 0) (54.4033 -9.97746 0) (54.075 -10.3082 0) (53.7425 -9.98301 0) (53.4107 -10.2959 5.12703e-20) (53.0967 -9.96898 -5.12475e-20) (53.4208 -9.66605 0) (53.734 -9.35583 0) (54.0631 -9.66269 0) (54.3723 -9.33505 0) (54.7198 -9.63924 0) (55.024 -9.29377 5.12179e-20) (54.6694 -9.00043 0) (54.3263 -8.71444 0) (54.036 -9.03853 0) (53.7103 -8.74914 0) (53.4152 -9.05638 0) (53.1092 -9.35675 0) (52.7927 -9.65007 1.02488e-19) (52.4986 -9.33895 -5.12149e-20) (52.214 -9.03555 0) (51.9389 -8.73965 0) (52.2344 -8.47387 0) (52.5163 -8.76086 0) (52.8079 -9.05517 0) (53.1069 -8.76439 0) (52.8085 -8.47944 0) (52.5199 -8.20158 0) (52.7954 -7.92302 0) (53.0904 -8.19158 0) (53.3953 -8.46698 0) (53.6725 -8.1631 -5.12122e-20) (53.994 -8.4353 0) (54.2656 -8.11525 0) (54.6042 -8.38392 0) (54.9539 -8.65915 0) (55.3151 -8.94135 0) (55.5922 -8.58259 0) (55.2245 -8.31163 0) (54.8686 -8.04727 0) (54.5241 -7.78928 0) (54.1907 -7.53768 0) (53.938 -7.85321 0) (53.6211 -7.59758 0) (53.3614 -7.8976 5.11754e-20) (53.0605 -7.63847 0) (53.3144 -7.3482 0) (53.5562 -7.05262 0) (53.8683 -7.29223 0) (54.1017 -6.98159 0) (54.4294 -7.2167 0) (54.7682 -7.45769 0) (55.1183 -7.70467 0) (55.4802 -7.95779 0) (55.854 -8.21722 0) (56.2402 -8.48317 0) (56.4919 -8.10013 0) (56.897 -8.36042 5.12158e-20) (57.1375 -7.95831 0) (57.5623 -8.21221 0) (57.7911 -7.79118 0) (58.2361 -8.0381 0) (58.4527 -7.59706 -5.12021e-20) (58.9185 -7.83609 1.78217e-23) (59.3994 -8.08116 1.85551e-23) (59.8956 -8.33243 5.12534e-20) (60.4077 -8.59012 0) (60.631 -8.08446 0) (61.1662 -8.33296 0) (61.3765 -7.80444 0) (61.9353 -8.043 0) (62.5113 -8.28746 0) (63.1057 -8.53829 0) (63.3156 -7.95305 0) (62.7148 -7.71963 0) (62.1325 -7.49212 0) (61.5677 -7.27007 0) (61.0203 -7.05361 0) (60.8351 -7.57183 0) (60.3103 -7.34498 -5.12471e-20) (60.1124 -7.84211 0) (59.6098 -7.60576 0) (59.8017 -7.12377 -1.88159e-23) (59.9756 -6.63662 0) (60.4899 -6.84256 0) (60.6516 -6.33439 -5.12434e-20) (61.1875 -6.52965 0) (61.7402 -6.7299 0) (62.3107 -6.93533 0) (62.8987 -7.14579 0) (63.5053 -7.36176 0) (64.1307 -7.58309 0) (64.7755 -7.80995 0) (65.4403 -8.04247 0) (65.6277 -7.38921 0) (66.3191 -7.60808 0) (66.4915 -6.93028 0) (66.6439 -6.24719 0) (65.9425 -6.0679 0) (65.7949 -6.73129 0) (65.119 -6.53709 0) (64.9572 -7.17579 0) (64.3067 -6.96758 0) (63.6757 -6.7645 0) (63.0637 -6.5664 0) (62.4705 -6.37316 0) (62.6127 -5.80607 0) (63.2107 -5.982 0) (63.8276 -6.16248 0) (64.4635 -6.34748 0) (64.6018 -5.72215 0) (65.2619 -5.89288 0) (65.3869 -5.24453 0) (66.0716 -5.40018 0) (66.7771 -5.55959 0) (67.5038 -5.72283 0) (67.6225 -5.0102 0) (68.3753 -5.1564 5.11142e-20) (69.1508 -5.30632 -3.27244e-23) (69.258 -4.54532 0) (70.0603 -4.67655 0) (70.1523 -3.8859 -5.05675e-20) (69.3474 -3.77696 5.0564e-20) (68.5663 -3.67067 0) (68.4796 -4.41711 0) (67.7236 -4.29186 0) (66.99 -4.1697 0) (66.8922 -4.86742 0) (66.1831 -4.72795 0) (65.4948 -4.59176 0) (65.5866 -3.93368 0) (66.2778 -4.0503 0) (66.3567 -3.36599 0) (67.0714 -3.46516 0) (67.8078 -3.56671 0) (67.875 -2.83752 0) (68.6356 -2.92018 0) (69.419 -3.0048 0) (70.2257 -3.0915 5.06958e-20) (71.0564 -3.18003 -5.0725e-20) (71.9122 -3.27054 0) (72.7929 -3.36316 5.06745e-20) (73.6997 -3.45752 -5.06929e-20) (74.6327 -3.55391 0) (75.5934 -3.65227 -5.06194e-20) (76.5819 -3.75263 5.06526e-20) (77.5984 -3.85484 0) (78.6444 -3.95868 -5.05802e-20) (79.7201 -4.06452 1.01206e-19) (80.8263 -4.17171 -5.3353e-23) (80.8971 -3.11765 0) (82.0349 -3.19871 0) (82.0823 -2.18029 0) (82.1093 -1.25406 0) (80.9705 -1.22237 0) (80.9439 -2.12506 0) (79.8354 -2.07052 0) (79.7894 -3.03761 0) (78.7128 -2.95881 0) (77.6652 -2.88129 5.2614e-20) (76.6472 -2.80503 -5.25782e-20) (75.6576 -2.72999 0) (75.7 -1.861 0) (76.6903 -1.912 0) (77.7094 -1.96395 0) (78.758 -2.01682 0) (78.7837 -1.16024 0) (79.8616 -1.19106 0) (77.7347 -1.12987 0) (76.7151 -1.10001 0) (75.7241 -1.07069 0) (74.7603 -1.0419 0) (74.7366 -1.81093 0) (74.6953 -2.65646 0) (73.7608 -2.58443 0) (72.8522 -2.51382 0) (71.97 -2.4447 0) (72.0084 -1.66657 -2.86788e-20) (72.8915 -1.71374 0) (73.8012 -1.76187 0) (73.8242 -1.01371 0) (72.914 -0.986056 0) (72.0303 -0.95899 0) (71.1716 -0.932483 0) (71.1501 -1.62045 2.86611e-20) (71.1126 -2.37704 0) (70.2802 -2.31088 0) (69.4721 -2.24622 0) (68.687 -2.18308 5.26561e-20) (68.7212 -1.48829 0) (69.5073 -1.53138 0) (70.3165 -1.57546 0) (70.3372 -0.906544 0) (69.5274 -0.881199 0) (68.7407 -0.856425 0) (67.9767 -0.832205 0) (67.9577 -1.44618 0) (67.9247 -2.12138 3.12468e-23) (67.1849 -2.06097 -5.26547e-20) (67.1366 -2.75678 0) (66.4198 -2.67792 0) (65.724 -2.60086 -5.07404e-20) (65.6629 -3.26914 0) (64.9899 -3.1747 5.06029e-20) (64.9161 -3.81993 0) (64.8273 -4.4589 0) (64.7229 -5.09269 0) (64.0788 -4.94457 0) (63.9617 -5.55562 0) (63.3403 -5.39305 0) (62.7381 -5.23454 0) (62.8476 -4.65897 0) (63.4536 -4.79997 0) (63.5513 -4.20275 0) (64.1798 -4.32929 0) (64.2657 -3.70895 0) (64.337 -3.08254 -5.05515e-20) (63.7033 -2.99249 5.05983e-20) (63.6343 -3.60059 0) (63.0223 -3.49494 0) (62.9421 -4.07936 0) (62.3508 -3.95892 0) (62.2596 -4.52134 0) (62.1537 -5.07982 0) (62.0325 -5.63435 0) (61.8949 -6.18454 0) (61.3372 -6.00067 0) (60.7963 -5.82123 0) (60.2723 -5.64626 0) (60.1322 -6.14379 1.02454e-19) (59.6288 -5.95802 -5.12105e-20) (59.4774 -6.43568 0) (59.3089 -6.90803 5.12023e-20) (59.1228 -7.37524 0) (58.651 -7.15032 0) (58.1941 -6.93093 0) (58.0016 -7.36395 0) (57.5648 -7.13656 0) (57.3602 -7.55044 0) (56.9428 -7.31551 0) (56.7262 -7.71067 0) (56.3281 -7.46911 0) (56.0997 -7.8462 0) (55.7199 -7.59845 0) (55.3523 -7.35667 0) (55.5695 -7.00321 0) (55.9426 -7.23334 0) (56.1479 -6.86279 0) (56.539 -7.08641 0) (56.7322 -6.69822 0) (57.1417 -6.91462 0) (57.323 -6.50833 0) (57.7515 -6.71709 0) (57.9209 -6.2921 5.12175e-20) (58.3689 -6.49239 0) (58.8313 -6.69762 0) (58.9945 -6.23967 0) (58.5269 -6.04859 0) (58.0738 -5.86208 0) (57.6352 -5.68017 0) (57.4872 -6.09677 -5.11654e-20) (57.0673 -5.90607 0) (56.9081 -6.30463 0) (56.5066 -6.10597 0) (56.3358 -6.48696 0) (55.9522 -6.28076 0) (55.7695 -6.64454 0) (55.4035 -6.43166 0) (55.2087 -6.77876 0) (54.9968 -7.12085 0) (54.6526 -6.89063 0) (54.3199 -6.66606 0) (53.998 -6.44677 0) (53.7845 -6.75204 0) (53.4779 -6.52802 0) (53.2544 -6.81882 0) (53.0177 -7.10482 0) (52.7693 -7.38566 0) (52.5102 -7.66098 0) (52.2408 -7.93047 0) (51.9617 -8.19387 0) (51.6728 -8.45095 0) (51.3746 -8.70148 0) (51.1241 -8.41154 0) (50.8236 -8.64722 0) (50.5882 -8.35648 0) (50.286 -8.57769 0) (50.0653 -8.28654 0) (49.7618 -8.49364 0) (49.5554 -8.20248 0) (49.3563 -7.91844 0) (49.0587 -8.10501 0) (48.8732 -7.82131 0) (48.5752 -7.99484 0) (48.403 -7.71182 0) (48.6945 -7.54456 0) (48.9792 -7.37103 0) (49.1643 -7.64134 0) (49.4482 -7.4551 0) (49.6466 -7.72542 0) (49.8522 -8.00251 0) (50.1412 -7.79612 0) (50.3608 -8.07284 0) (50.6481 -7.85273 0) (50.882 -8.12868 0) (51.1671 -7.89451 0) (51.4156 -8.16929 0) (51.698 -7.92069 0) (51.971 -7.66595 0) (51.7101 -7.40787 0) (51.4432 -7.65417 0) (51.1969 -7.39413 0) (50.9269 -7.62642 0) (50.6949 -7.36487 0) (50.4222 -7.58351 0) (50.2041 -7.32084 0) (49.9293 -7.52616 0) (49.7247 -7.26278 0) (49.5274 -7.00582 0) (49.2569 -7.19138 0) (49.0724 -6.9341 0) (48.8007 -7.10732 0) (48.5222 -7.2746 0) (48.2371 -7.43576 0) (47.9457 -7.59063 0) (47.648 -7.73905 0) (47.3443 -7.88085 0) (47.0349 -8.01588 0) (46.7199 -8.14399 0) (46.3995 -8.26501 0) (46.074 -8.37882 0) (45.7435 -8.48526 0) (45.4082 -8.5842 0) (45.0683 -8.67551 0) (44.9796 -8.35568 0) (44.8953 -8.04397 0) (44.8153 -7.7402 0) (44.4942 -7.81157 0) (44.4257 -7.51183 0) (44.361 -7.21985 0) (44.0512 -7.2767 0) (43.9973 -6.989 0) (43.9468 -6.70885 0) (43.8993 -6.43603 0) (43.608 -6.47668 0) (43.314 -6.51036 0) (43.2835 -6.23956 0) (42.9943 -6.26383 0) (42.9732 -5.99814 0) (42.689 -6.01338 0) (42.677 -5.75306 0) (42.6667 -5.49982 0) (42.3949 -5.50501 0) (42.1218 -5.50344 0) (41.8478 -5.49496 0) (41.8595 -5.24538 0) (41.5919 -5.22919 0) (41.6112 -4.98621 0) (41.6307 -4.75004 0) (41.8849 -4.76691 0) (41.8719 -5.00283 0) (42.1323 -5.01279 0) (42.1266 -5.25469 0) (42.3928 -5.25731 0) (42.6579 -5.25339 0) (42.6505 -5.01352 0) (42.3919 -5.01631 0) (42.392 -4.78172 0) (42.1387 -4.77742 0) (42.1459 -4.54828 0) (41.8983 -4.53732 0) (41.6504 -4.52035 0) (41.4027 -4.49722 0) (41.1552 -4.46776 0) (40.9083 -4.43195 0) (40.6622 -4.38968 0) (40.4174 -4.34087 0) (40.1741 -4.28543 0) (39.9326 -4.22329 0) (39.6933 -4.15438 0) (39.4566 -4.07865 0) (39.2228 -3.99606 0) (38.9925 -3.90661 0) (38.7661 -3.8103 0) (38.5442 -3.7072 0) (38.3273 -3.59736 0) (38.1159 -3.4808 0) (37.9097 -3.35746 0) (37.7084 -3.22725 0) (37.512 -3.09032 0) (37.3228 -2.94753 0) (37.1463 -2.80075 0) (36.9912 -2.65263 0) (36.8652 -2.50524 0) (36.7702 -2.35876 0) (36.7013 -2.21145 0) (36.6504 -2.06097 0) (36.6101 -1.90578 0) (36.5754 -1.74564 0) (36.5432 -1.58051 0) (36.5108 -1.40813 0) (36.4748 -1.2315 0) (36.4275 -1.05227 0) (36.3596 -0.859924 0) (36.546 -0.818415 0) (36.7214 -0.778245 0) (36.886 -0.739366 0) (37.0401 -0.701698 0) (37.1841 -0.665108 0) (37.3182 -0.629387 0) (37.4426 -0.594338 0) (37.5574 -0.559987 0) (37.6627 -0.526355 0) (37.7587 -0.493283 0) (37.8455 -0.460494 0) (37.9233 -0.427666 0) (37.9922 -0.394455 0) (38.0519 -0.36055 0) (38.1025 -0.325813 0) (38.0854 -0.370486 0) (38.0385 -0.414206 0) (37.9831 -0.457211 0) (37.9192 -0.499596 0) (37.8466 -0.541725 0) (37.7653 -0.58398 0) (37.675 -0.626687 0) (37.5756 -0.670133 0) (37.467 -0.714485 0) (37.3491 -0.759563 0) (37.2214 -0.805131 0) (37.0838 -0.851684 0) (36.9358 -0.899556 0) (36.7773 -0.948899 0) (36.6079 -0.999781 0) (36.6498 -1.16784 0) (36.8137 -1.10607 0) (36.967 -1.0461 0) (36.9873 -1.18938 0) (36.839 -1.26015 0) (36.6803 -1.33302 0) (36.7076 -1.49481 0) (36.8615 -1.41165 0) (37.0053 -1.33089 0) (37.1391 -1.25242 0) (37.1255 -1.1206 0) (37.1097 -0.987826 0) (37.2421 -0.931145 0) (37.3643 -0.875994 0) (37.4771 -0.822143 0) (37.4818 -0.925779 0) (37.3724 -0.988751 0) (37.2537 -1.05371 0) (37.2634 -1.17611 0) (37.3783 -1.10185 0) (37.4838 -1.02941 0) (37.4848 -1.1269 0) (37.3834 -1.20855 0) (37.2727 -1.29207 0) (37.1527 -1.37772 0) (37.0232 -1.46572 0) (36.8841 -1.55626 0) (36.7349 -1.64951 0) (36.7646 -1.79935 0) (36.9091 -1.69611 0) (37.0437 -1.59584 0) (37.0713 -1.72177 0) (36.9404 -1.8315 0) (36.8003 -1.94448 0) (36.8475 -2.08539 0) (36.9848 -1.96327 0) (37.1137 -1.84485 0) (37.2347 -1.72999 0) (37.1932 -1.61508 0) (37.1689 -1.49831 0) (37.2849 -1.40328 0) (37.3919 -1.31057 0) (37.4903 -1.21997 0) (37.5099 -1.31169 0) (37.412 -1.41013 0) (37.3067 -1.51124 0) (37.3483 -1.61857 0) (37.4553 -1.51054 0) (37.5562 -1.40588 0) (37.6518 -1.30463 0) (37.601 -1.21588 0) (37.5804 -1.13132 0) (37.5772 -1.0468 0) (37.58 -0.958363 0) (37.5822 -0.864229 0) (37.581 -0.769344 0) (37.6762 -0.717493 0) (37.7624 -0.666438 0) (37.8397 -0.615939 0) (37.8293 -0.684515 0) (37.7559 -0.743791 0) (37.6735 -0.803637 0) (37.6672 -0.888333 0) (37.7455 -0.81912 0) (37.8151 -0.750624 0) (37.8766 -0.682837 0) (37.894 -0.62564 0) (37.9083 -0.56569 0) (37.9683 -0.515256 0) (38.0201 -0.464096 0) (38.0641 -0.412245 0) (38.0397 -0.449566 0) (37.9982 -0.508437 0) (37.95 -0.567031 0) (37.9304 -0.6159 0) (37.9773 -0.550005 0) (38.0181 -0.48493 0) (38.0126 -0.523571 0) (37.9682 -0.593538 0) (37.9192 -0.66526 0) (37.8648 -0.738775 0) (37.804 -0.813888 0) (37.7363 -0.890345 0) (37.6608 -0.967991 0) (37.6628 -1.04454 0) (37.7384 -0.959625 0) (37.8077 -0.876716 0) (37.8408 -0.94476 0) (37.7656 -1.03231 0) (37.686 -1.12273 0) (37.7427 -1.20679 0) (37.8295 -1.11236 0) (37.9125 -1.02134 0) (37.9921 -0.93369 0) (37.9122 -0.860231 0) (37.8717 -0.79604 0) (37.9312 -0.717862 0) (37.987 -0.642351 0) (38.0397 -0.569465 0) (38.1077 -0.625441 0) (38.0454 -0.700669 0) (37.9803 -0.778863 0) (38.0682 -0.849302 0) (38.1404 -0.767957 0) (38.2086 -0.689275 0) (38.2721 -0.612798 0) (38.1671 -0.552832 0) (38.09 -0.499089 0) (38.0534 -0.455336 0) (38.0538 -0.420463 0) (38.0749 -0.390475 0) (38.1006 -0.360115 0) (38.124 -0.326189 5.17079e-20) (38.144 -0.290242 -4.83831e-20) (38.1765 -0.253864 4.66826e-25) (38.2003 -0.216268 2.36779e-19) (38.2161 -0.176953 0) (38.225 -0.136054 1.42951e-18) (38.2297 -0.0947673 -8.31467e-18) (38.2125 -0.0981507 2.45505e-18) (38.2054 -0.142755 8.8003e-20) (38.1942 -0.189485 0) (38.1777 -0.235917 -2.00937e-19) (38.1546 -0.281388 -3.91292e-20) (38.1301 -0.307861 0) (38.1532 -0.255431 0) (38.1706 -0.202463 0) (38.1475 -0.217027 -1.74715e-19) (38.1278 -0.27371 -4.60779e-20) (38.1042 -0.33158 0) (38.0851 -0.356948 0) (38.1129 -0.295039 4.73133e-20) (38.1389 -0.235624 2.80066e-19) (38.1641 -0.179177 3.69067e-19) (38.1648 -0.16214 -3.15289e-19) (38.184 -0.150529 -1.38357e-18) (38.1932 -0.103708 -1.5125e-18) (38.1791 -0.112473 1.37607e-18) (38.187 -0.128275 9.34598e-20) (38.2309 -0.15326 0) (38.1994 -0.206446 0) (38.1644 -0.264573 -4.80145e-20) (38.1284 -0.325508 0) (38.0918 -0.389146 0) (38.1385 -0.431258 0) (38.1851 -0.366041 0) (38.2301 -0.303118 -4.86663e-20) (38.3254 -0.347395 1.52952e-21) (38.2759 -0.414213 0) (38.2233 -0.482529 0) (38.3308 -0.538124 0) (38.3845 -0.46485 0) (38.4339 -0.392532 0) (38.4777 -0.32114 0) (38.3704 -0.281861 -4.97176e-20) (38.2726 -0.242223 4.7981e-20) (38.3094 -0.185044 0) (38.4079 -0.219011 -4.25812e-20) (38.5131 -0.251789 4.87494e-20) (38.6193 -0.282151 0) (38.5865 -0.358142 -3.77566e-22) (38.5452 -0.435705 3.83508e-22) (38.498 -0.514119 0) (38.4462 -0.593265 0) (38.3888 -0.673568 0) (38.3256 -0.755425 0) (38.2567 -0.839162 0) (38.1823 -0.925151 0) (38.1027 -1.01376 0) (38.0184 -1.10531 0) (37.9296 -1.20006 0) (37.8365 -1.29825 0) (37.7393 -1.40008 0) (37.6377 -1.50571 0) (37.5315 -1.61525 0) (37.4203 -1.72878 0) (37.3036 -1.84635 0) (37.1809 -1.96802 0) (37.0514 -2.09388 0) (36.9147 -2.22407 0) (37.0101 -2.36308 0) (37.1483 -2.22603 0) (37.2801 -2.09389 0) (37.4108 -2.22285 0) (37.277 -2.36072 0) (37.1373 -2.50389 0) (37.2921 -2.64573 0) (37.4316 -2.49651 0) (37.5649 -2.35274 0) (37.6922 -2.21409 0) (37.5389 -2.09002 0) (37.406 -1.9665 0) (37.5266 -1.84369 0) (37.642 -1.7253 0) (37.7525 -1.61115 0) (37.8896 -1.71902 0) (37.7783 -1.83838 0) (37.6613 -1.96195 0) (37.8133 -2.08022 0) (37.9284 -1.9508 0) (38.0374 -1.82552 0) (38.1894 -1.92836 0) (38.0845 -2.05981 0) (37.9734 -2.19544 0) (37.8561 -2.33554 0) (37.7324 -2.48044 0) (37.6023 -2.63049 0) (37.4658 -2.78605 0) (37.65 -2.92223 0) (37.7814 -2.76015 0) (37.9064 -2.60367 0) (38.0847 -2.72144 0) (37.9654 -2.88416 0) (37.8401 -3.05263 0) (38.0347 -3.17668 0) (38.1538 -3.0022 0) (38.2672 -2.83362 0) (38.375 -2.6706 0) (38.1978 -2.5641 0) (38.0251 -2.45243 0) (38.1375 -2.30608 0) (38.2439 -2.16432 0) (38.3442 -2.02687 0) (38.5028 -2.12116 0) (38.4068 -2.26426 0) (38.3052 -2.41181 0) (38.4773 -2.51277 0) (38.5744 -2.35983 0) (38.6662 -2.21147 0) (38.753 -2.06741 0) (38.5934 -1.98224 0) (38.4388 -1.89344 0) (38.2882 -1.80081 0) (38.1403 -1.70409 0) (37.9953 -1.60358 0) (37.858 -1.50103 0) (37.9586 -1.39469 0) (38.054 -1.29184 0) (38.1441 -1.19218 0) (38.2771 -1.27778 0) (38.1891 -1.38324 0) (38.0952 -1.49175 0) (38.237 -1.58622 0) (38.3276 -1.47166 0) (38.4121 -1.36015 0) (38.4907 -1.2515 0) (38.3591 -1.1751 0) (38.2286 -1.09544 0) (38.3074 -1.00133 0) (38.3802 -0.909593 0) (38.447 -0.819958 0) (38.5688 -0.881654 0) (38.5049 -0.977246 0) (38.435 -1.07499 0) (38.5635 -1.1455 0) (38.6304 -1.04197 0) (38.6917 -0.940691 0) (38.8177 -0.997513 0) (38.7586 -1.10418 0) (38.6942 -1.21318 0) (38.6243 -1.32475 0) (38.5489 -1.43909 0) (38.4678 -1.55641 0) (38.381 -1.67691 0) (38.5277 -1.76381 0) (38.611 -1.63772 0) (38.6889 -1.51494 0) (38.8337 -1.58796 0) (38.7587 -1.71589 0) (38.6787 -1.84724 0) (38.8348 -1.92736 0) (38.9116 -1.79105 0) (38.9835 -1.65822 0) (39.0507 -1.52859 0) (38.9035 -1.46319 0) (38.7615 -1.39524 0) (38.8289 -1.27841 0) (38.891 -1.1642 0) (38.948 -1.05238 0) (39.0832 -1.10533 0) (39.0283 -1.22213 0) (38.9684 -1.34133 0) (39.113 -1.4019 0) (39.1705 -1.27789 0) (39.2232 -1.15626 0) (39.3677 -1.20502 0) (39.3173 -1.33132 0) (39.2623 -1.45999 0) (39.2027 -1.59132 0) (39.1385 -1.72561 0) (39.0696 -1.86312 0) (38.9961 -2.00415 0) (38.918 -2.14897 0) (38.8351 -2.29787 0) (38.7474 -2.45115 0) (38.6548 -2.60911 0) (38.5573 -2.77207 0) (38.4548 -2.94036 0) (38.3471 -3.11432 0) (38.2342 -3.29433 0) (38.4391 -3.40571 0) (38.5459 -3.22063 0) (38.6479 -3.04171 0) (38.8463 -3.13765 0) (38.75 -3.32114 0) (38.6493 -3.51085 0) (38.8646 -3.60968 0) (38.959 -3.41574 0) (39.0494 -3.22806 0) (39.1358 -3.04627 0) (38.9381 -2.96001 0) (38.7451 -2.86857 0) (38.8377 -2.70084 0) (38.9257 -2.53819 0) (39.0091 -2.38029 0) (39.1879 -2.45856 0) (39.1089 -2.62081 0) (39.0257 -2.78785 0) (39.2182 -2.86999 0) (39.2966 -2.69886 0) (39.3711 -2.53255 0) (39.5581 -2.60215 0) (39.4883 -2.77223 0) (39.4148 -2.94714 0) (39.3377 -3.12723 0) (39.2569 -3.31284 0) (39.1724 -3.50434 0) (39.0843 -3.70213 0) (39.3079 -3.78813 0) (39.3896 -3.58687 0) (39.4681 -3.39188 0) (39.6826 -3.46517 0) (39.6102 -3.66328 0) (39.5348 -3.86764 0) (39.7648 -3.94067 0) (39.8338 -3.73356 0) (39.9002 -3.53267 0) (39.9639 -3.33761 0) (39.7521 -3.27293 0) (39.5432 -3.20279 0) (39.615 -3.01923 0) (39.6835 -2.84084 0) (39.7486 -2.66728 0) (39.9423 -2.72789 0) (39.882 -2.90464 0) (39.8185 -3.08621 0) (40.025 -3.14804 0) (40.0834 -2.9636 0) (40.139 -2.78395 0) (40.1918 -2.60876 0) (39.9996 -2.55562 0) (39.8103 -2.49821 0) (39.6242 -2.43657 0) (39.4416 -2.37073 0) (39.2627 -2.30078 0) (39.088 -2.22681 0) (39.1625 -2.07747 0) (39.2325 -1.93195 0) (39.2981 -1.78996 0) (39.4619 -1.85115 0) (39.3997 -1.99738 0) (39.3333 -2.14716 0) (39.5082 -2.21308 0) (39.5708 -2.05929 0) (39.6295 -1.90905 0) (39.6843 -1.76204 0) (39.5199 -1.70816 0) (39.3593 -1.65122 0) (39.416 -1.51543 0) (39.4684 -1.38229 0) (39.5163 -1.25149 0) (39.6687 -1.29559 0) (39.6233 -1.4307 0) (39.5737 -1.56811 0) (39.7351 -1.61795 0) (39.7819 -1.47647 0) (39.8247 -1.33727 0) (39.984 -1.37647 0) (39.9438 -1.51956 0) (39.8999 -1.66489 0) (39.8522 -1.81279 0) (39.8007 -1.96358 0) (39.7456 -2.1176 0) (39.6867 -2.27516 0) (39.8687 -2.33331 0) (39.9237 -2.17225 0) (39.9752 -2.01471 0) (40.1528 -2.06237 0) (40.1049 -2.22318 0) (40.0538 -2.38749 0) (40.2418 -2.43768 0) (40.2889 -2.27039 0) (40.3331 -2.10656 0) (40.3744 -1.94585 0) (40.1974 -1.90472 0) (40.0233 -1.86036 0) (40.0679 -1.70888 0) (40.109 -1.55994 0) (40.1465 -1.41318 0) (40.3119 -1.44738 0) (40.2771 -1.59757 0) (40.2389 -1.7499 0) (40.4127 -1.78793 0) (40.4479 -1.63245 0) (40.4801 -1.47905 0) (40.5091 -1.32735 0) (40.3434 -1.29892 0) (40.1803 -1.26821 0) (40.0203 -1.23522 0) (39.8633 -1.19996 0) (39.7097 -1.16244 0) (39.5596 -1.12269 0) (39.4133 -1.08076 0) (39.271 -1.03671 0) (39.1331 -0.990642 0) (38.9998 -0.942686 0) (38.8714 -0.892953 0) (38.7474 -0.841454 0) (38.6268 -0.787998 0) (38.5077 -0.73216 0) (38.5626 -0.645933 0) (38.6119 -0.560845 0) (38.6566 -0.476378 0) (38.7689 -0.514951 0) (38.7263 -0.605203 0) (38.6791 -0.696012 0) (38.7977 -0.743956 0) (38.843 -0.647655 0) (38.8839 -0.551875 0) (38.9188 -0.456504 0) (38.8055 -0.425377 0) (38.6953 -0.392727 0) (38.7259 -0.310201 0) (38.8344 -0.336444 0) (38.9462 -0.361252 0) (39.0623 -0.384801 0) (39.0362 -0.486286 0) (39.0029 -0.587366 0) (38.9636 -0.688524 0) (38.9198 -0.790149 0) (39.0466 -0.834725 0) (39.0888 -0.727902 0) (39.1265 -0.621462 0) (39.2546 -0.654105 0) (39.2186 -0.765736 0) (39.178 -0.877646 0) (39.3141 -0.918806 0) (39.3528 -0.801929 0) (39.3872 -0.685216 0) (39.4157 -0.567548 0) (39.2848 -0.541852 0) (39.1582 -0.514749 0) (39.183 -0.407138 0) (39.3083 -0.428262 0) (39.4379 -0.448173 0) (39.5716 -0.466884 0) (39.5507 -0.591816 0) (39.5238 -0.714734 0) (39.4912 -0.836395 0) (39.4543 -0.958097 0) (39.5986 -0.995437 0) (39.6335 -0.869076 0) (39.6642 -0.74263 0) (39.8084 -0.768894 0) (39.7794 -0.89994 0) (39.7465 -1.03078 0) (39.898 -1.06408 0) (39.9289 -0.928972 0) (39.956 -0.793534 0) (39.9783 -0.656138 0) (39.8322 -0.636087 0) (39.6896 -0.614656 0) (39.7092 -0.484428 0) (39.8505 -0.500843 0) (39.9953 -0.516172 0) (40.1436 -0.530456 0) (40.1277 -0.674842 0) (40.1069 -0.816565 0) (40.0816 -0.95617 0) (40.0527 -1.09535 0) (40.2106 -1.12456 0) (40.2375 -0.981537 0) (40.261 -0.838003 0) (40.418 -0.85787 0) (40.3963 -1.00509 0) (40.3714 -1.15172 0) (40.535 -1.17684 0) (40.5579 -1.02684 0) (40.5778 -0.876195 0) (40.5944 -0.723166 0) (40.436 -0.708333 0) (40.2804 -0.692232 0) (40.2951 -0.543734 0) (40.4496 -0.556034 0) (40.607 -0.567366 0) (40.767 -0.577748 0) (40.7554 -0.736753 0) (40.7403 -0.892998 0) (40.722 -1.04684 0) (40.7012 -1.19994 0) (40.6775 -1.3535 0) (40.6509 -1.50821 0) (40.6214 -1.66457 0) (40.589 -1.82295 0) (40.5539 -1.98372 0) (40.516 -2.14724 0) (40.4755 -2.31383 0) (40.4323 -2.48385 0) (40.3865 -2.65761 0) (40.3382 -2.83545 0) (40.2874 -3.01771 0) (40.2341 -3.20473 0) (40.1784 -3.39684 0) (40.1204 -3.59439 0) (40.06 -3.79773 0) (39.9974 -4.00724 0) (40.2322 -4.06739 0) (40.2885 -3.85582 0) (40.3429 -3.65034 0) (40.5674 -3.70056 0) (40.519 -3.90785 0) (40.4689 -4.12117 0) (40.7073 -4.16864 0) (40.7511 -3.95389 0) (40.7936 -3.74509 0) (40.8347 -3.54189 0) (40.6141 -3.49895 0) (40.3953 -3.45061 0) (40.4456 -3.25627 0) (40.4938 -3.06697 0) (40.5398 -2.88238 0) (40.7435 -2.92474 0) (40.7023 -3.11137 0) (40.6591 -3.30267 0) (40.8744 -3.34395 0) (40.9125 -3.15095 0) (40.949 -2.96254 0) (41.1561 -2.9958 0) (41.1243 -3.18571 0) (41.0911 -3.38016 0) (41.0568 -3.57946 0) (41.0212 -3.78396 0) (40.9845 -3.99398 0) (40.9469 -4.20987 0) (41.1874 -4.24494 0) (41.219 -4.02819 0) (41.2499 -3.81723 0) (41.4794 -3.84496 0) (41.4543 -4.05659 0) (41.4286 -4.27394 0) (41.6703 -4.29685 0) (41.69 -4.07923 0) (41.7094 -3.86721 0) (41.7286 -3.6605 0) (41.504 -3.63871 0) (41.2799 -3.61172 0) (41.3091 -3.41132 0) (41.3373 -3.2157 0) (41.3644 -3.02455 0) (41.5737 -3.04883 0) (41.5512 -3.24096 0) (41.528 -3.43749 0) (41.7475 -3.45872 0) (41.7659 -3.26153 0) (41.7838 -3.06868 0) (41.801 -2.87984 0) (41.5953 -2.86079 0) (41.3903 -2.83755 0) (41.1865 -2.81009 0) (40.9839 -2.7784 0) (40.7829 -2.74242 0) (40.5837 -2.70216 0) (40.6252 -2.52599 0) (40.6644 -2.35351 0) (40.7013 -2.18441 0) (40.8887 -2.21807 0) (40.8555 -2.38943 0) (40.8202 -2.5641 0) (41.017 -2.59819 0) (41.0484 -2.42157 0) (41.0779 -2.24822 0) (41.1054 -2.0778 0) (40.9197 -2.0497 0) (40.7357 -2.01834 0) (40.7677 -1.85496 0) (40.7971 -1.69391 0) (40.8239 -1.53485 0) (40.9991 -1.55898 0) (40.9749 -1.72051 0) (40.9484 -1.88396 0) (41.1311 -1.90996 0) (41.1547 -1.74435 0) (41.1762 -1.58062 0) (41.355 -1.59978 0) (41.3361 -1.76546 0) (41.3154 -1.93297 0) (41.2929 -2.10267 0) (41.2687 -2.27489 0) (41.2428 -2.44997 0) (41.2154 -2.62826 0) (41.4151 -2.65436 0) (41.4387 -2.47464 0) (41.4609 -2.29807 0) (41.6542 -2.31781 0) (41.6356 -2.49561 0) (41.6159 -2.67649 0) (41.8176 -2.6947 0) (41.8334 -2.51291 0) (41.8485 -2.33414 0) (41.8626 -2.15806 0) (41.6717 -2.14277 0) (41.4817 -2.12431 0) (41.5011 -1.95303 0) (41.5189 -1.78387 0) (41.5353 -1.61649 0) (41.7168 -1.63077 0) (41.703 -1.79959 0) (41.688 -1.97014 0) (41.8759 -1.98434 0) (41.8881 -1.81265 0) (41.8993 -1.64265 0) (42.0827 -1.65216 0) (42.074 -1.82309 0) (42.0645 -1.99567 0) (42.0543 -2.17022 0) (42.0434 -2.34708 0) (42.0319 -2.52658 0) (42.0199 -2.70902 0) (42.0074 -2.89476 0) (41.9944 -3.08413 0) (41.9811 -3.27745 0) (41.9675 -3.475 0) (41.9536 -3.67712 0) (41.9397 -3.8841 0) (41.9259 -4.09626 0) (41.912 -4.31387 0) (42.1536 -4.32515 0) (42.1617 -4.10774 0) (42.1701 -3.89568 0) (42.4003 -3.90197 0) (42.3973 -4.11369 0) (42.3948 -4.33068 0) (42.393 -4.55326 0) (42.6394 -4.55237 0) (42.6444 -4.77993 0) (42.8958 -4.77217 0) (42.908 -5.00453 0) (42.9217 -5.24305 0) (42.9371 -5.48799 0) (42.9542 -5.7396 0) (43.2295 -5.71944 0) (43.2554 -5.976 0) (43.5354 -5.94711 0) (43.5704 -6.20836 0) (43.8548 -6.17036 0) (43.8131 -5.91161 0) (43.774 -5.65959 0) (43.5029 -5.69273 0) (43.4726 -5.44497 0) (43.2058 -5.46966 0) (43.184 -5.22641 0) (43.1641 -4.98946 0) (43.1458 -4.75855 0) (43.3944 -4.73917 0) (43.4185 -4.96843 0) (43.4446 -5.20362 0) (43.7032 -5.17479 0) (43.7374 -5.41405 0) (43.9999 -5.37704 0) (44.0427 -5.62016 0) (44.0882 -5.86965 0) (44.1365 -6.12571 0) (44.1878 -6.38856 0) (44.2422 -6.6584 0) (44.2999 -6.93543 0) (44.5991 -6.87486 0) (44.6673 -7.15583 0) (44.7393 -7.44422 0) (45.0491 -7.36942 0) (45.1323 -7.66151 0) (45.2198 -7.96122 0) (45.3117 -8.26873 0) (45.6394 -8.17429 0) (45.5401 -7.87113 0) (45.4453 -7.57563 0) (45.3549 -7.2876 0) (45.2687 -7.00687 0) (44.9699 -7.08479 0) (44.8947 -6.80742 0) (44.8232 -6.53713 0) (44.5344 -6.60112 0) (44.4732 -6.33442 0) (44.4153 -6.07457 0) (44.3605 -5.82136 0) (44.3088 -5.57459 0) (44.572 -5.523 0) (44.6299 -5.76688 0) (44.691 -6.01706 0) (44.7554 -6.27374 0) (45.0341 -6.20668 0) (45.1085 -6.46659 0) (45.1866 -6.73326 0) (45.4747 -6.65254 0) (45.5634 -6.92223 0) (45.6564 -7.19889 0) (45.7538 -7.48271 0) (45.8558 -7.77385 0) (45.9624 -8.0725 0) (46.2807 -7.9635 0) (46.1668 -7.66952 0) (46.0578 -7.38289 0) (46.3571 -7.27633 0) (46.473 -7.55828 0) (46.5938 -7.84744 0) (46.9018 -7.72447 0) (46.7741 -7.44029 0) (46.6515 -7.16316 0) (46.534 -6.89292 0) (46.2462 -7.00141 0) (45.9536 -7.10345 0) (45.8539 -6.831 0) (45.7586 -6.5654 0) (45.6676 -6.30644 0) (45.39 -6.38965 0) (45.3093 -6.13337 0) (45.2324 -5.88351 0) (44.9634 -5.95332 0) (44.8962 -5.70634 0) (44.8323 -5.46553 0) (44.7716 -5.2307 0) (44.5172 -5.28523 0) (44.2599 -5.33405 0) (44.2137 -5.09953 0) (43.9596 -5.14005 0) (43.9218 -4.90899 0) (43.6712 -4.94157 0) (43.6413 -4.71415 0) (43.6133 -4.4923 0) (43.372 -4.51558 0) (43.1291 -4.53342 0) (42.8849 -4.54572 0) (42.8752 -4.32492 0) (42.6354 -4.33056 0) (42.6324 -4.11424 0) (42.6301 -3.9031 0) (42.6285 -3.69686 0) (42.4038 -3.69523 0) (42.1788 -3.68866 0) (42.1876 -3.48646 0) (42.1965 -3.28878 0) (42.2053 -3.09527 0) (42.4163 -3.10212 0) (42.4119 -3.29561 0) (42.4077 -3.49321 0) (42.6276 -3.49525 0) (42.6271 -3.29797 0) (42.6271 -3.10474 0) (42.8376 -3.10319 0) (42.8419 -3.29594 0) (42.8469 -3.49266 0) (42.8526 -3.69363 0) (42.8592 -3.89915 0) (42.8667 -4.10949 0) (43.1 -4.09952 0) (43.1139 -4.31384 0) (43.3513 -4.29742 0) (43.5873 -4.27577 0) (43.563 -4.06432 0) (43.3322 -4.08444 0) (43.3145 -3.87636 0) (43.0874 -3.89021 0) (43.0759 -3.68563 0) (43.0655 -3.48552 0) (43.0561 -3.28958 0) (43.0475 -3.09754 0) (43.2567 -3.08786 0) (43.2694 -3.27897 0) (43.2832 -3.4739 0) (43.2982 -3.67294 0) (43.5193 -3.65564 0) (43.5404 -3.8577 0) (43.7647 -3.83431 0) (43.7922 -4.03929 0) (43.8215 -4.249 0) (43.8528 -4.46369 0) (43.8862 -4.68361 0) (44.1291 -4.64766 0) (44.1701 -4.87081 0) (44.4161 -4.82715 0) (44.4652 -5.05335 0) (44.714 -5.00164 0) (44.6594 -4.77814 0) (44.6076 -4.56001 0) (44.3696 -4.60642 0) (44.3257 -4.39094 0) (44.0903 -4.42987 0) (44.0539 -4.2172 0) (44.0196 -4.00942 0) (43.9874 -3.80628 0) (44.2081 -3.77372 0) (44.245 -3.97482 0) (44.2842 -4.18048 0) (44.5122 -4.13895 0) (44.5586 -4.34701 0) (44.789 -4.29821 0) (44.843 -4.50853 0) (44.9 -4.7239 0) (44.9599 -4.94452 0) (45.023 -5.17059 0) (45.0894 -5.40231 0) (45.1591 -5.63989 0) (45.4185 -5.56766 0) (45.4977 -5.80775 0) (45.5806 -6.05395 0) (45.848 -5.96857 0) (45.941 -6.21711 0) (46.0382 -6.47197 0) (46.1399 -6.73335 0) (46.4213 -6.6294 0) (46.3134 -6.37242 0) (46.2101 -6.1218 0) (46.1112 -5.87738 0) (46.0166 -5.63898 0) (45.7591 -5.7262 0) (45.6742 -5.48979 0) (45.5932 -5.25917 0) (45.3431 -5.33348 0) (45.2712 -5.10503 0) (45.2027 -4.88212 0) (45.1375 -4.66455 0) (45.0755 -4.45212 0) (45.305 -4.39089 0) (45.3719 -4.60021 0) (45.4422 -4.81457 0) (45.5159 -5.03416 0) (45.757 -4.95811 0) (45.8396 -5.17952 0) (45.9261 -5.40642 0) (46.1739 -5.31769 0) (46.2698 -5.54625 0) (46.3701 -5.78052 0) (46.4747 -6.02067 0) (46.584 -6.26688 0) (46.698 -6.51931 0) (46.8169 -6.77815 0) (46.9408 -7.04355 0) (47.0699 -7.31569 0) (47.2044 -7.59473 0) (47.5013 -7.45838 0) (47.3602 -7.18463 0) (47.2247 -6.91764 0) (47.5032 -6.78559 0) (47.645 -7.04728 0) (47.7924 -7.31557 0) (48.0775 -7.16647 0) (47.9238 -6.90379 0) (47.776 -6.64756 0) (47.6338 -6.39761 0) (47.367 -6.53033 0) (47.0946 -6.65723 0) (46.9696 -6.40325 0) (46.8497 -6.15551 0) (46.7347 -5.91386 0) (46.9897 -5.80153 0) (47.1104 -6.03847 0) (47.2361 -6.28135 0) (47.4972 -6.15378 0) (47.3659 -5.9159 0) (47.2398 -5.68383 0) (47.4846 -5.56091 0) (47.616 -5.78798 0) (47.7527 -6.0207 0) (47.895 -6.25922 0) (48.0429 -6.50372 0) (48.1966 -6.75434 0) (48.3563 -7.01124 0) (48.6288 -6.85006 0) (48.4632 -6.59908 0) (48.3037 -6.35423 0) (48.5582 -6.19926 0) (48.7232 -6.4382 0) (48.8946 -6.68309 0) (49.1536 -6.51052 0) (49.3371 -6.75512 0) (49.5945 -6.57057 0) (49.7904 -6.81453 0) (49.9936 -7.06457 0) (50.2546 -6.86067 0) (50.4709 -7.10967 0) (50.7293 -6.89285 0) (50.959 -7.14041 0) (51.2144 -6.91034 0) (51.458 -7.15605 0) (51.7099 -6.9124 0) (51.9676 -7.15582 0) (52.2343 -7.4053 0) (52.4878 -7.13898 0) (52.2156 -6.89829 0) (51.9525 -6.66341 0) (52.1853 -6.40936 0) (52.4534 -6.63555 0) (52.7308 -6.86732 0) (52.9625 -6.59065 0) (52.6803 -6.36796 0) (52.4075 -6.15062 0) (52.1438 -5.93849 0) (51.9261 -6.18863 0) (51.6982 -6.4342 0) (51.4608 -6.67486 0) (51.2202 -6.44307 0) (50.9791 -6.67058 0) (50.7519 -6.43662 0) (50.5074 -6.65129 0) (50.2933 -6.41557 0) (50.0458 -6.61772 0) (49.8444 -6.38065 0) (49.6501 -6.14932 0) (49.4055 -6.33253 0) (49.2233 -6.10026 0) (48.9767 -6.27186 0) (48.8063 -6.039 0) (48.6422 -5.81178 0) (48.3993 -5.96613 0) (48.1502 -6.11534 0) (48.0025 -5.88227 0) (47.8605 -5.65485 0) (47.724 -5.43294 0) (47.9578 -5.30008 0) (48.0993 -5.51669 0) (48.2464 -5.73866 0) (48.4842 -5.59005 0) (48.3321 -5.37367 0) (48.1858 -5.1625 0) (48.0451 -4.95639 0) (47.8217 -5.08868 0) (47.5928 -5.21638 0) (47.3584 -5.33934 0) (47.1187 -5.45739 0) (46.874 -5.57037 0) (46.6244 -5.67813 0) (46.5187 -5.44815 0) (46.4174 -5.22375 0) (46.3205 -5.00476 0) (46.0821 -5.09467 0) (45.9944 -4.87702 0) (45.9105 -4.66455 0) (45.6782 -4.74201 0) (45.6029 -4.53102 0) (45.5312 -4.32496 0) (45.7541 -4.25446 0) (45.8305 -4.45709 0) (46.0543 -4.37856 0) (46.1391 -4.58234 0) (46.2278 -4.79101 0) (46.457 -4.70023 0) (46.5546 -4.90992 0) (46.6566 -5.12473 0) (46.763 -5.34482 0) (47.0026 -5.23643 0) (46.8911 -5.02079 0) (46.7843 -4.81031 0) (46.682 -4.60482 0) (46.584 -4.40418 0) (46.3636 -4.4955 0) (46.2743 -4.29556 0) (46.189 -4.10023 0) (45.9734 -4.17951 0) (45.8962 -3.985 0) (45.6813 -4.05647 0) (45.4629 -4.12365 0) (45.2413 -4.18641 0) (45.0166 -4.24463 0) (44.9607 -4.04189 0) (44.7377 -4.09272 0) (44.6892 -3.89184 0) (44.4683 -3.93559 0) (44.4268 -3.73672 0) (44.3877 -3.5421 0) (44.1734 -3.57696 0) (43.9571 -3.60756 0) (43.739 -3.63382 0) (43.715 -3.43755 0) (43.4997 -3.45789 0) (43.4816 -3.26417 0) (43.4648 -3.07422 0) (43.4493 -2.88774 0) (43.245 -2.9003 0) (43.0398 -2.90911 0) (42.8339 -2.9141 0) (42.6275 -2.91522 0) (42.4208 -2.91242 0) (42.214 -2.90561 0) (42.2225 -2.7195 0) (42.2309 -2.53663 0) (42.2389 -2.35666 0) (42.4346 -2.36294 0) (42.43 -2.54313 0) (42.4254 -2.72619 0) (42.6282 -2.72913 0) (42.6292 -2.54614 0) (42.6303 -2.36596 0) (42.6316 -2.18826 0) (42.439 -2.18528 0) (42.2465 -2.17928 0) (42.2538 -2.00415 0) (42.2605 -1.83094 0) (42.2668 -1.65933 0) (42.4512 -1.6642 0) (42.4474 -1.83624 0) (42.4433 -2.00982 0) (42.633 -2.01272 0) (42.6344 -1.83901 0) (42.6358 -1.66681 0) (42.8205 -1.66717 0) (42.8214 -1.83929 0) (42.8226 -2.01288 0) (42.8241 -2.18827 0) (42.826 -2.36577 0) (42.8282 -2.54569 0) (42.8308 -2.72837 0) (43.0329 -2.72397 0) (43.0267 -2.54183 0) (43.0212 -2.36239 0) (43.2159 -2.35589 0) (43.2247 -2.53461 0) (43.2344 -2.71598 0) (43.435 -2.70446 0) (43.4219 -2.52408 0) (43.4099 -2.34631 0) (43.399 -2.17083 0) (43.208 -2.17951 0) (43.0163 -2.18534 0) (43.012 -2.01035 0) (43.0082 -1.83711 0) (43.0049 -1.66531 0) (43.189 -1.66127 0) (43.1946 -1.83251 0) (43.2009 -2.00515 0) (43.3891 -1.99734 0) (43.3803 -1.82552 0) (43.3724 -1.65508 0) (43.3655 -1.48569 0) (43.184 -1.49111 0) (43.0021 -1.49462 0) (42.8197 -1.49619 0) (42.6372 -1.49578 0) (42.4547 -1.49339 0) (42.2724 -1.489 0) (42.0906 -1.48254 0) (41.9095 -1.474 0) (41.7292 -1.46334 0) (41.55 -1.45053 0) (41.3721 -1.43556 0) (41.1956 -1.41839 0) (41.0209 -1.399 0) (40.8481 -1.37738 0) (40.8697 -1.22103 0) (40.8886 -1.06507 0) (40.9051 -0.908303 0) (41.0722 -0.92214 0) (41.0574 -1.08157 0) (41.0403 -1.24011 0) (41.2129 -1.25721 0) (41.2281 -1.09634 0) (41.2413 -0.934534 0) (41.2523 -0.770303 0) (41.0846 -0.760297 0) (40.9189 -0.74912 0) (40.9295 -0.587207 0) (41.0942 -0.595765 0) (41.2609 -0.603437 0) (41.4294 -0.610228 0) (41.4219 -0.779153 0) (41.4122 -0.945515 0) (41.4006 -1.10942 0) (41.3873 -1.27235 0) (41.5631 -1.28556 0) (41.5747 -1.12085 0) (41.5846 -0.955116 0) (41.7585 -0.963347 0) (41.75 -1.13062 0) (41.7403 -1.29686 0) (41.9186 -1.30627 0) (41.9265 -1.13877 0) (41.9334 -0.970213 0) (41.9392 -0.799069 0) (41.7655 -0.793513 0) (41.593 -0.786876 0) (41.5995 -0.616133 0) (41.771 -0.621187 0) (41.9438 -0.625422 0) (42.1175 -0.62884 0) (42.1139 -0.803539 0) (42.1094 -0.975733 0) (42.104 -1.14532 0) (42.0977 -1.31383 0) (42.2776 -1.31955 0) (42.2821 -1.15029 0) (42.286 -0.979932 0) (42.4632 -0.982835 0) (42.4607 -1.1537 0) (42.4578 -1.32345 0) (42.6384 -1.32556 0) (42.6396 -1.15556 0) (42.6407 -0.984449 0) (42.6416 -0.810624 0) (42.4653 -0.809298 0) (42.2893 -0.806942 0) (42.292 -0.631446 0) (42.467 -0.633247 0) (42.6424 -0.634256 -3.08409e-21) (42.8179 -0.634484 2.64283e-25) (42.818 -0.810928 0) (42.8182 -0.984774 0) (42.8185 -1.1559 0) (42.819 -1.32597 0) (42.9995 -1.32466 0) (42.9974 -1.15479 0) (42.9957 -0.983851 0) (43.1728 -0.981713 0) (43.1759 -1.15222 0) (43.1797 -1.32164 0) (43.3594 -1.31695 0) (43.354 -1.14823 0) (43.3495 -0.978368 0) (43.346 -0.80579 0) (43.1704 -0.808495 0) (42.9944 -0.810213 0) (42.9933 -0.633935 2.6505e-25) (43.1685 -0.632622 3.08195e-21) (43.3433 -0.630557 0) (43.5174 -0.627751 0) (43.5209 -0.802126 0) (43.5255 -0.973839 0) (43.5313 -1.14281 0) (43.5383 -1.31061 0) (43.5461 -1.47838 0) (43.5551 -1.64677 0) (43.5652 -1.81618 0) (43.5765 -1.98694 0) (43.5891 -2.15934 0) (43.6029 -2.33369 0) (43.6181 -2.5103 0) (43.6346 -2.68947 0) (43.6525 -2.8715 0) (43.6718 -3.05667 0) (43.6926 -3.24526 0) (43.9022 -3.22232 0) (43.9287 -3.41299 0) (44.1408 -3.38427 0) (44.3509 -3.35149 0) (44.3163 -3.16465 0) (44.1102 -3.19542 0) (44.0815 -3.01016 0) (43.8774 -3.03529 0) (43.8543 -2.85163 0) (43.8329 -2.67107 0) (43.8131 -2.49331 0) (43.7948 -2.31808 0) (43.9854 -2.29954 0) (44.0068 -2.47318 0) (44.0298 -2.64931 0) (44.0547 -2.82821 0) (44.2535 -2.80129 0) (44.2839 -2.98134 0) (44.4843 -2.94891 0) (44.5205 -3.13008 0) (44.559 -3.31472 0) (44.5999 -3.50307 0) (44.6433 -3.69537 0) (44.8573 -3.64978 0) (44.9076 -3.84367 0) (45.1233 -3.79119 0) (45.1808 -3.98658 0) (45.3979 -3.92689 0) (45.3361 -3.73449 0) (45.2775 -3.54624 0) (45.0688 -3.60003 0) (45.0172 -3.41291 0) (44.8098 -3.45998 0) (44.7649 -3.27406 0) (44.7225 -3.09179 0) (44.6827 -2.91294 0) (44.8789 -2.87352 0) (44.9223 -3.04987 0) (44.9683 -3.22959 0) (45.1692 -3.18141 0) (45.2219 -3.36195 0) (45.4237 -3.30722 0) (45.4832 -3.48851 0) (45.5459 -3.67369 0) (45.6119 -3.86295 0) (45.8226 -3.79486 0) (45.7525 -3.6089 0) (45.6859 -3.42694 0) (45.8853 -3.36163 0) (45.9558 -3.54023 0) (46.0298 -3.72274 0) (46.1075 -3.90935 0) (46.3151 -3.82964 0) (46.4007 -4.01675 0) (46.4903 -4.20821 0) (46.7021 -4.11666 0) (46.8001 -4.30851 0) (46.9025 -4.50493 0) (47.0094 -4.70606 0) (47.1209 -4.91207 0) (47.2372 -5.12311 0) (47.4667 -5.00503 0) (47.3458 -4.79873 0) (47.2297 -4.59733 0) (47.445 -4.48427 0) (47.5655 -4.68092 0) (47.691 -4.88234 0) (47.9098 -4.7552 0) (47.7799 -4.55879 0) (47.6552 -4.36702 0) (47.5355 -4.17974 0) (47.3294 -4.29224 0) (47.1184 -4.40068 0) (47.0117 -4.20863 0) (46.9095 -4.02103 0) (46.8117 -3.83773 0) (46.6083 -3.92921 0) (46.5187 -3.746 0) (46.4331 -3.56688 0) (46.2334 -3.64671 0) (46.1555 -3.46778 0) (46.0813 -3.2927 0) (46.0108 -3.12128 0) (45.8184 -3.18678 0) (45.6226 -3.24879 0) (45.5627 -3.07426 0) (45.3674 -3.1296 0) (45.3141 -2.95546 0) (45.1195 -3.0044 0) (45.0727 -2.83071 0) (45.0286 -2.6601 0) (44.8382 -2.70029 0) (44.6454 -2.73727 0) (44.4504 -2.77096 0) (44.4188 -2.59597 0) (44.2252 -2.62426 0) (44.1989 -2.44995 0) (44.1746 -2.27811 0) (44.1522 -2.10843 0) (43.9659 -2.12809 0) (43.7781 -2.14508 0) (43.7629 -1.97399 0) (43.7491 -1.80453 0) (43.7368 -1.63637 0) (43.9174 -1.6239 0) (43.9319 -1.79058 0) (43.948 -1.95854 0) (44.1318 -1.94062 0) (44.1133 -1.77438 0) (44.0966 -1.6094 0) (44.2744 -1.59288 0) (44.2931 -1.75595 0) (44.314 -1.92026 0) (44.337 -2.08612 0) (44.3621 -2.25383 0) (44.3893 -2.42369 0) (44.5779 -2.39444 0) (44.6105 -2.56452 0) (44.8 -2.52996 0) (44.9874 -2.49236 0) (44.9488 -2.32723 0) (44.7645 -2.36227 0) (44.7315 -2.19696 0) (44.5478 -2.22677 0) (44.52 -2.06122 0) (44.4945 -1.89751 0) (44.4713 -1.73533 0) (44.4505 -1.57439 0) (44.6247 -1.55393 0) (44.6476 -1.71256 0) (44.6731 -1.8724 0) (44.701 -2.03376 0) (44.88 -2.0038 0) (44.9131 -2.16447 0) (45.0924 -2.12934 0) (45.1309 -2.28938 0) (45.1723 -2.45178 0) (45.2166 -2.61677 0) (45.2639 -2.78459 0) (45.4524 -2.73526 0) (45.5059 -2.90315 0) (45.6948 -2.84754 0) (45.7549 -3.01548 0) (45.9439 -2.95336 0) (45.8806 -2.78874 0) (45.8207 -2.62725 0) (45.638 -2.68278 0) (45.5845 -2.521 0) (45.402 -2.57038 0) (45.3546 -2.4083 0) (45.3104 -2.24879 0) (45.2692 -2.09162 0) (45.4435 -2.05138 0) (45.4873 -2.20552 0) (45.5343 -2.36198 0) (45.7111 -2.3129 0) (45.7642 -2.4687 0) (45.9408 -2.41358 0) (46.0001 -2.56876 0) (46.0631 -2.72683 0) (46.1296 -2.88799 0) (46.1998 -3.05241 0) (46.2738 -3.22025 0) (46.3515 -3.39169 0) (46.5437 -3.31205 0) (46.6289 -3.48339 0) (46.7182 -3.65856 0) (46.9135 -3.56745 0) (47.0107 -3.74244 0) (47.1124 -3.92147 0) (47.2186 -4.10469 0) (47.4206 -3.99682 0) (47.3106 -3.81811 0) (47.2052 -3.64348 0) (47.395 -3.541 0) (47.504 -3.7111 0) (47.6177 -3.88517 0) (47.7364 -4.06334 0) (47.8601 -4.24574 0) (47.9889 -4.43251 0) (48.1231 -4.62378 0) (48.2626 -4.81968 0) (48.4078 -5.02037 0) (48.5588 -5.22596 0) (48.7156 -5.43661 0) (48.8785 -5.65244 0) (49.0477 -5.87361 0) (49.2822 -5.7033 0) (49.4628 -5.92359 0) (49.6949 -5.74204 0) (49.8872 -5.96109 0) (50.0866 -6.18556 0) (50.3208 -5.98549 0) (50.5325 -6.2083 0) (50.7635 -5.9961 0) (50.9878 -6.21686 0) (51.2152 -5.99222 0) (51.4525 -6.21052 0) (51.6756 -5.97319 0) (51.8889 -5.73143 0) (51.6428 -5.52931 0) (51.4337 -5.76292 0) (51.2 -5.55769 0) (50.986 -5.77915 0) (50.7648 -5.5712 0) (50.5469 -5.78065 0) (50.3379 -5.57036 0) (50.1165 -5.76804 0) (49.9195 -5.55582 0) (49.7295 -5.34868 0) (49.5096 -5.52826 0) (49.3309 -5.31961 0) (49.1082 -5.48832 0) (48.9405 -5.27851 0) (48.7791 -5.07373 0) (48.6237 -4.87385 0) (48.8333 -4.72313 0) (48.9929 -4.91718 0) (49.1587 -5.11596 0) (49.3699 -4.94915 0) (49.5464 -5.1465 0) (49.7545 -4.96919 0) (49.9419 -5.16476 0) (50.1363 -5.36511 0) (50.3453 -5.17008 0) (50.5513 -5.36822 0) (50.7566 -5.16181 0) (50.9744 -5.35736 0) (51.1753 -5.13942 0) (51.4049 -5.33201 0) (51.5997 -5.10256 0) (51.8412 -5.29181 0) (52.0911 -5.48565 0) (52.3499 -5.68421 0) (52.6177 -5.88759 0) (52.8947 -6.09593 0) (53.1814 -6.30936 0) (53.386 -6.02381 0) (53.6868 -6.23274 0) (53.8798 -5.93321 0) (54.1954 -6.13702 0) (54.5219 -6.34581 0) (54.8595 -6.55961 0) (55.0494 -6.22378 0) (54.7071 -6.02098 0) (54.3761 -5.82291 0) (54.5399 -5.50448 0) (54.8754 -5.69163 0) (55.2223 -5.88325 0) (55.5812 -6.07965 0) (55.7422 -5.72286 0) (56.118 -5.91204 0) (56.2676 -5.53855 1.36771e-23) (56.6609 -5.72009 5.11553e-20) (56.7996 -5.32959 0) (57.2105 -5.5027 0) (57.3387 -5.09485 0) (57.7677 -5.25904 0) (58.2109 -5.42735 0) (58.6686 -5.59991 0) (59.1411 -5.77666 0) (59.272 -5.30913 0) (59.7642 -5.47554 0) (59.8843 -4.98891 5.12145e-20) (60.3966 -5.1443 0) (60.9249 -5.30357 0) (61.4702 -5.46695 0) (61.5875 -4.92899 0) (61.0381 -4.78176 0) (60.506 -4.63823 0) (59.9899 -4.49818 0) (59.4898 -4.36154 0) (59.3879 -4.83732 -5.12132e-20) (58.9071 -4.68939 0) (58.7951 -5.14672 0) (58.333 -4.98821 0) (58.4411 -4.54506 0) (58.5359 -4.09826 0) (59.0054 -4.22831 0) (59.0909 -3.76382 0) (59.5785 -3.88235 0) (60.0819 -4.00391 0) (60.6013 -4.12851 0) (61.1369 -4.25619 0) (61.6897 -4.38716 0) (61.7778 -3.84148 0) (61.222 -3.72686 0) (60.6834 -3.61512 0) (60.753 -3.09739 0) (61.2942 -3.19308 0) (61.8527 -3.29124 0) (62.4283 -3.3918 0) (62.4927 -2.81901 0) (63.0889 -2.90473 -5.05471e-20) (63.1421 -2.31106 0) (63.7586 -2.38089 0) (64.394 -2.45245 0) (65.0491 -2.52571 5.06885e-20) (65.0932 -1.88821 -5.26558e-20) (65.7695 -1.94439 0) (66.4667 -2.00196 0) (66.4979 -1.36492 0) (67.2169 -1.40506 0) (67.2352 -0.808547 0) (66.5157 -0.785444 0) (65.8169 -0.762871 0) (65.7996 -1.3257 0) (65.1224 -1.28744 0) (64.465 -1.25009 0) (64.4367 -1.83336 5.26275e-20) (63.7997 -1.7799 -5.26754e-20) (63.182 -1.72768 5.26212e-20) (63.2085 -1.17805 0) (63.827 -1.21362 0) (63.8426 -0.698384 0) (64.4811 -0.719364 0) (65.1391 -0.74086 0) (63.2235 -0.677925 0) (62.6226 -0.657948 0) (62.6081 -1.14332 0) (62.5826 -1.67678 0) (62.5442 -2.24291 0) (61.9643 -2.17645 0) (61.9147 -2.73547 0) (61.3542 -2.65386 0) (60.8109 -2.57435 0) (60.284 -2.49672 -5.0539e-20) (60.2282 -3.00399 0) (60.161 -3.50607 0) (59.6547 -3.39969 0) (59.1644 -3.29596 0) (58.6891 -3.19464 0) (58.6183 -3.64811 0) (58.1608 -3.53528 0) (58.0814 -3.9714 0) (57.9899 -4.40429 0) (57.8857 -4.83363 0) (57.4526 -4.68282 0) (57.0334 -4.53572 0) (56.9234 -4.93468 0) (56.5214 -4.77833 0) (56.4018 -5.16059 0) (56.0168 -4.99561 0) (55.8871 -5.36147 -5.11123e-20) (55.5191 -5.18851 0) (55.3786 -5.5381 0) (55.0272 -5.35785 0) (54.6874 -5.18179 0) (54.8194 -4.85495 0) (55.1634 -5.01976 0) (55.2848 -4.67755 0) (55.6446 -4.83464 0) (55.7562 -4.47677 0) (56.1324 -4.62569 0) (56.2347 -4.25193 0) (56.6275 -4.39212 0) (56.7209 -4.00228 0) (57.1303 -4.13304 0) (57.5531 -4.26698 0) (57.6413 -3.84765 0) (57.2151 -3.72698 0) (56.8025 -3.60916 0) (56.4032 -3.49413 0) (56.3247 -3.87463 0) (55.9415 -3.75008 0) (55.8549 -4.11516 0) (55.4876 -3.9817 0) (55.3926 -4.33143 0) (55.0408 -4.18948 0) (54.9368 -4.52411 0) (54.6006 -4.3743 0) (54.487 -4.69404 0) (54.3591 -5.0099 0) (54.2158 -5.32176 0) (54.0562 -5.62954 0) (53.7471 -5.44073 0) (53.5748 -5.73423 0) (53.2801 -5.53992 0) (53.0952 -5.81983 0) (52.8142 -5.62068 0) (52.9954 -5.35017 0) (53.1601 -5.07622 0) (53.4485 -5.25633 0) (53.6002 -4.96905 0) (53.9026 -5.14333 0) (54.042 -4.84204 0) (53.7357 -4.67808 0) (53.4401 -4.5179 0) (53.3082 -4.79881 0) (53.0264 -4.63248 0) (52.8818 -4.90028 0) (52.7204 -5.16485 0) (52.5427 -5.42622 0) (52.2804 -5.23633 0) (52.0271 -5.05091 0) (51.7824 -4.86982 0) (51.951 -4.6343 0) (52.1985 -4.80703 0) (52.4549 -4.98384 0) (52.6131 -4.72838 0) (52.3538 -4.56042 0) (52.1036 -4.39628 0) (52.2394 -4.15581 0) (52.4923 -4.31109 0) (52.7545 -4.46995 0) (52.8796 -4.20843 0) (53.1548 -4.36139 0) (53.268 -4.08692 0) (53.5567 -4.23345 0) (53.856 -4.3834 0) (54.166 -4.53689 0) (54.2758 -4.22801 0) (53.9622 -4.08511 0) (53.6595 -3.94551 0) (53.3674 -3.8091 0) (53.0856 -3.67579 0) (52.9896 -3.94372 0) (52.7211 -3.80373 0) (52.6143 -4.05891 0) (52.3586 -3.91273 0) (52.4624 -3.66684 0) (52.5524 -3.41802 0) (52.8141 -3.54546 0) (52.8947 -3.28416 0) (53.1693 -3.40471 0) (53.4542 -3.52803 0) (53.7495 -3.65422 0) (54.0556 -3.78336 0) (54.3727 -3.91555 0) (54.701 -4.05089 0) (54.7892 -3.72402 0) (55.1324 -3.8513 0) (55.2126 -3.50985 0) (55.5709 -3.62852 0) (55.6435 -3.27235 0) (56.017 -3.38189 0) (56.0823 -3.0108 0) (56.4712 -3.11066 0) (56.8733 -3.21299 0) (57.2887 -3.31782 0) (57.7178 -3.42523 0) (57.7833 -2.99957 0) (58.2289 -3.09588 0) (58.2866 -2.65273 0) (58.7491 -2.73728 0) (59.2266 -2.82399 0) (59.7194 -2.91285 0) (59.7732 -2.42097 -1.78387e-23) (59.2784 -2.34716 5.05032e-20) (58.7989 -2.27517 0) (58.8386 -1.8104 0) (59.3197 -1.86777 5.06376e-20) (59.8163 -1.92649 -5.06647e-20) (60.3286 -1.98667 0) (60.857 -2.04843 0) (61.4021 -2.11164 0) (61.4377 -1.57865 0) (62.0014 -1.62706 0) (62.0261 -1.10941 -2.86651e-20) (62.0402 -0.638467 0) (61.4751 -0.619453 0) (61.4615 -1.07634 2.86488e-20) (60.9141 -1.0442 2.86689e-20) (60.8913 -1.53138 0) (60.3617 -1.48525 0) (59.8481 -1.44024 0) (59.3503 -1.3963 -5.2613e-20) (58.8682 -1.35346 5.25576e-20) (58.8878 -0.922922 0) (59.3707 -0.952105 0) (59.8693 -0.982048 0) (60.3836 -1.01279 -2.86525e-20) (60.3961 -0.582811 0) (60.9271 -0.600904 0) (59.8814 -0.565157 0) (59.3823 -0.54793 0) (58.899 -0.531135 0) (58.4305 -0.514742 0) (58.4198 -0.894438 0) (58.4009 -1.31171 -5.25875e-20) (58.3726 -1.7545 0) (58.3344 -2.2049 0) (57.8845 -2.13634 0) (57.8387 -2.57028 0) (57.4049 -2.48976 0) (57.3517 -2.90556 0) (56.9338 -2.81381 0) (56.9849 -2.41116 0) (57.0271 -2.00417 0) (57.4489 -2.06944 0) (57.4841 -1.64676 0) (57.9212 -1.69997 0) (57.9485 -1.27094 5.25314e-20) (57.5102 -1.23119 -5.25578e-20) (57.086 -1.19236 5.25006e-20) (57.0609 -1.59483 0) (56.6512 -1.54416 0) (56.6189 -1.94047 0) (56.5784 -2.33443 0) (56.5293 -2.72425 0) (56.1381 -2.63688 0) (55.7597 -2.55162 0) (55.7062 -2.91334 0) (55.3424 -2.81825 0) (55.2823 -3.16544 0) (54.9332 -3.06102 0) (54.8663 -3.39398 0) (54.5316 -3.28082 0) (54.4576 -3.59974 0) (54.1373 -3.47834 0) (53.8281 -3.35975 0) (53.8963 -3.06233 0) (54.2084 -3.1703 0) (54.2699 -2.85948 0) (54.5958 -2.95906 0) (54.6509 -2.63468 0) (54.9907 -2.72538 0) (55.0397 -2.38707 0) (55.3936 -2.46836 0) (55.4367 -2.11529 0) (55.8047 -2.18659 0) (56.1851 -2.2596 0) (56.224 -1.87832 0) (55.8419 -1.81766 0) (55.4722 -1.75842 0) (55.1148 -1.70059 0) (55.0809 -2.04568 0) (54.737 -1.97771 0) (54.6977 -2.3077 0) (54.3673 -2.23018 0) (54.3226 -2.5461 0) (54.0055 -2.45957 0) (53.9552 -2.76221 0) (53.6514 -2.66717 0) (53.5951 -2.95684 0) (53.5297 -3.24388 0) (53.2419 -3.13063 0) (52.9644 -3.01994 0) (52.697 -2.91171 0) (52.6301 -3.16628 0) (52.3752 -3.05099 0) (52.3004 -3.29338 0) (52.2133 -3.53296 0) (52.1123 -3.76977 0) (51.9957 -4.00398 0) (51.8624 -4.23585 0) (51.7122 -4.46555 0) (51.5462 -4.69298 0) (51.3665 -4.91778 0) (51.1413 -4.73737 0) (50.9536 -4.9514 0) (50.7396 -4.76784 0) (50.5465 -4.97091 0) (50.3437 -4.78455 0) (50.1467 -4.97666 0) (49.9551 -4.78784 0) (49.7705 -4.60348 0) (49.5739 -4.77827 0) (49.3999 -4.59187 0) (49.1999 -4.75649 0) (49.0363 -4.56841 0) (49.2324 -4.40987 0) (49.4214 -4.24769 0) (49.5927 -4.42347 0) (49.7783 -4.25144 0) (49.9598 -4.42493 0) (50.1483 -4.60259 0) (50.3339 -4.41363 0) (50.5331 -4.58862 0) (50.7141 -4.38922 0) (50.9239 -4.56122 0) (51.0979 -4.3516 0) (51.3181 -4.52027 0) (51.4817 -4.30068 0) (51.6297 -4.07905 0) (51.4054 -3.92577 0) (51.2593 -4.1396 0) (51.0447 -3.98223 0) (50.8854 -4.18686 0) (50.6804 -4.02598 0) (50.5117 -4.22126 0) (50.3165 -4.05726 0) (50.1419 -4.24277 0) (49.9568 -4.07591 0) (49.7786 -3.91295 0) (49.6034 -4.08201 0) (49.4351 -3.91654 0) (49.2566 -4.07604 0) (49.0711 -4.23216 0) (48.8787 -4.38477 0) (48.6797 -4.53369 0) (48.4743 -4.67872 0) (48.3305 -4.48823 0) (48.1923 -4.30223 0) (48.0595 -4.12059 0) (48.2533 -3.99173 0) (48.3898 -4.16812 0) (48.5319 -4.34873 0) (48.7271 -4.20546 0) (48.5814 -4.03036 0) (48.4413 -3.85934 0) (48.3067 -3.69228 0) (48.1222 -3.81945 0) (47.932 -3.94319 0) (47.8097 -3.7699 0) (47.6924 -3.60058 0) (47.58 -3.43512 0) (47.76 -3.32599 0) (47.8757 -3.4867 0) (47.9964 -3.65115 0) (48.1775 -3.52908 0) (48.0536 -3.36961 0) (47.9348 -3.21377 0) (48.1043 -3.09862 0) (48.226 -3.2495 0) (48.353 -3.40388 0) (48.4854 -3.56187 0) (48.6232 -3.72359 0) (48.7666 -3.88914 0) (48.9159 -4.05862 0) (49.0979 -3.90839 0) (48.9454 -3.74464 0) (48.7987 -3.58468 0) (48.9677 -3.44278 0) (49.1174 -3.59703 0) (49.2732 -3.75491 0) (49.4418 -3.5983 0) (49.607 -3.75378 0) (49.7722 -3.58788 0) (49.9469 -3.74067 0) (50.1283 -3.89709 0) (50.2918 -3.7154 0) (50.4826 -3.86886 0) (50.6379 -3.67827 0) (50.8376 -3.82848 0) (50.9806 -3.62945 0) (51.1891 -3.77593 0) (51.3168 -3.56828 0) (51.5346 -3.71031 0) (51.7609 -3.85551 0) (51.8751 -3.62992 0) (51.6468 -3.4931 0) (51.4271 -3.3592 0) (51.5209 -3.14832 0) (51.7428 -3.2738 0) (51.9735 -3.40198 0) (52.0579 -3.17144 0) (51.8246 -3.05209 0) (51.6003 -2.93525 0) (51.3849 -2.82081 0) (51.3078 -3.02545 0) (51.2158 -3.22814 0) (51.107 -3.42934 0) (50.905 -3.29343 0) (50.7797 -3.48627 0) (50.5859 -3.34632 0) (50.4453 -3.53153 0) (50.2595 -3.38819 0) (50.1078 -3.56553 0) (49.9305 -3.41915 0) (49.7597 -3.27618 0) (49.604 -3.43864 0) (49.4422 -3.29285 0) (49.2829 -3.4464 0) (49.1302 -3.298 0) (48.9835 -3.15299 0) (48.8238 -3.29208 0) (48.6578 -3.42841 0) (48.5225 -3.27573 0) (48.3926 -3.12653 0) (48.2681 -2.98073 0) (48.4261 -2.86027 0) (48.5532 -3.00091 0) (48.6857 -3.14482 0) (48.8427 -3.01128 0) (48.7075 -2.87278 0) (48.578 -2.73742 0) (48.7239 -2.61225 0) (48.8559 -2.74222 0) (48.9936 -2.87517 0) (49.1371 -3.0112 0) (49.2866 -3.1504 0) (49.437 -3.00009 0) (49.5952 -3.13652 0) (49.7414 -2.97786 0) (49.9077 -3.11143 0) (50.0804 -3.24818 0) (50.2191 -3.07587 0) (50.3992 -3.20953 0) (50.5233 -3.03039 0) (50.7105 -3.16046 0) (50.8173 -2.97419 0) (51.0126 -3.09982 0) (51.103 -2.9051 0) (51.1781 -2.70869 0) (50.9798 -2.59879 0) (50.9064 -2.78717 0) (50.7178 -2.67159 0) (50.6296 -2.85116 0) (50.4492 -2.73069 0) (50.343 -2.90318 0) (50.1694 -2.77879 0) (50.0455 -2.94528 0) (49.8782 -2.8177 0) (49.717 -2.6931 0) (49.5811 -2.8474 0) (49.4269 -2.71997 0) (49.2849 -2.86678 0) (49.1389 -2.73652 0) (48.9986 -2.60922 0) (48.8642 -2.48479 0) (48.9996 -2.35502 0) (49.1362 -2.47387 0) (49.2787 -2.59549 0) (49.412 -2.45258 0) (49.5616 -2.57141 0) (49.6856 -2.42223 0) (49.8409 -2.53834 0) (50.0021 -2.65718 0) (50.1091 -2.49728 0) (50.2758 -2.61274 0) (50.3634 -2.44721 0) (50.5369 -2.55829 0) (50.6076 -2.38532 0) (50.7897 -2.49103 0) (50.848 -2.30881 0) (51.04 -2.40852 0) (51.2405 -2.51018 0) (51.4495 -2.61389 0) (51.6673 -2.71973 0) (51.8941 -2.82781 0) (52.13 -2.93819 0) (52.1915 -2.70229 0) (52.4394 -2.80585 0) (52.4942 -2.55811 0) (52.7543 -2.65446 0) (53.0244 -2.75299 0) (53.3046 -2.85375 0) (53.3583 -2.57429 0) (53.0757 -2.48351 0) (52.8033 -2.39475 0) (52.8447 -2.13274 0) (53.1193 -2.21168 0) (53.4042 -2.29243 0) (53.6995 -2.37504 0) (53.7401 -2.08048 0) (54.0482 -2.15446 0) (54.0839 -1.84649 0) (54.4048 -1.91133 0) (54.4356 -1.58898 0) (54.7694 -1.64413 0) (54.7951 -1.30844 0) (55.1418 -1.35335 0) (55.5005 -1.39935 0) (55.8715 -1.44647 0) (56.2549 -1.49472 0) (56.2778 -1.11758 0) (56.6752 -1.15453 0) (56.6912 -0.787216 0) (57.1027 -0.813061 0) (57.5276 -0.839539 0) (57.9666 -0.86666 0) (57.9769 -0.498758 0) (57.5374 -0.483155 0) (57.1122 -0.467935 0) (56.7003 -0.453076 0) (56.3016 -0.438581 0) (56.293 -0.762085 2.85823e-20) (55.9078 -0.737528 -2.85572e-20) (55.8934 -1.08151 0) (55.5214 -1.04628 0) (55.5352 -0.713477 0) (55.5431 -0.410618 0) (55.9161 -0.424432 0) (55.1824 -0.397129 0) (55.1749 -0.690032 0) (55.1617 -1.01191 0) (54.8141 -0.978335 0) (54.4781 -0.945555 0) (54.4601 -1.26458 0) (54.1364 -1.22173 0) (54.1132 -1.53512 0) (53.8019 -1.48249 0) (53.7741 -1.78314 0) (53.4751 -1.72124 0) (53.4428 -2.00819 0) (53.1561 -1.93754 0) (52.8796 -1.86846 0) (52.9085 -1.6016 0) (53.1866 -1.66074 0) (53.2116 -1.38081 0) (53.5014 -1.43107 0) (53.5223 -1.13898 0) (53.8239 -1.17988 0) (53.8402 -0.882258 0) (54.1536 -0.913539 0) (54.1649 -0.622979 -7.12184e-21) (54.49 -0.644806 3.56293e-21) (54.8266 -0.66715 0) (54.8338 -0.383962 0) (54.4968 -0.371102 3.95132e-21) (54.1713 -0.358541 -3.94838e-21) (53.857 -0.346273 0) (53.8509 -0.601651 7.11675e-21) (53.5477 -0.580816 -7.11282e-21) (53.5376 -0.851691 0) (53.2457 -0.821817 0) (53.2312 -1.09901 0) (52.9506 -1.05993 0) (52.932 -1.33168 0) (52.6626 -1.28364 0) (52.6404 -1.54376 0) (52.6131 -1.80092 0) (52.5802 -2.05555 0) (52.5408 -2.30796 0) (52.2881 -2.22305 0) (52.2438 -2.46385 0) (52.0029 -2.37162 0) (51.953 -2.60095 0) (51.7238 -2.50173 0) (51.7713 -2.28132 0) (51.8111 -2.05864 0) (52.045 -2.13997 0) (52.0802 -1.90616 0) (52.3254 -1.98004 0) (52.3565 -1.73485 0) (52.1095 -1.67021 0) (51.8719 -1.60694 0) (51.8444 -1.83384 0) (51.6178 -1.76303 0) (51.5865 -1.97901 0) (51.5488 -2.1929 0) (51.5036 -2.40457 0) (51.2922 -2.30937 0) (51.0895 -2.21606 0) (50.8954 -2.12454 0) (50.934 -1.93812 0) (51.1303 -2.02137 0) (51.3351 -2.10628 0) (51.3707 -1.901 0) (51.1638 -1.82455 0) (50.9654 -1.74959 0) (50.991 -1.55908 0) (51.1912 -1.62571 0) (51.4001 -1.69367 0) (51.4242 -1.48432 0) (51.6435 -1.54499 0) (51.6646 -1.32465 0) (51.8945 -1.37768 0) (52.1336 -1.43185 0) (52.3822 -1.48719 0) (52.403 -1.23665 0) (52.1531 -1.19067 0) (51.9127 -1.14568 0) (51.6815 -1.10163 0) (51.4593 -1.0585 0) (51.4437 -1.27271 0) (51.2317 -1.22182 0) (51.2136 -1.42487 0) (51.0117 -1.3666 0) (51.0283 -1.17194 0) (51.0414 -0.974812 0) (51.2461 -1.01623 0) (51.2571 -0.809069 0) (51.4714 -0.842676 0) (51.6946 -0.87698 0) (51.9269 -0.912008 0) (52.1684 -0.947789 0) (52.4194 -0.984351 0) (52.68 -1.02172 0) (52.6928 -0.764057 0) (52.9642 -0.792613 0) (52.9732 -0.540543 3.55096e-21) (53.2553 -0.560448 -6.46969e-25) (53.2607 -0.322564 0) (53.5535 -0.33428 0) (52.9782 -0.311104 0) (52.706 -0.299903 0) (52.7012 -0.521076 -3.54864e-21) (52.4392 -0.502038 7.09137e-21) (52.4313 -0.736127 0) (52.1795 -0.708802 0) (51.9372 -0.682062 0) (51.944 -0.465181 -7.07853e-21) (52.1868 -0.483407 5.48347e-25) (52.191 -0.278232 3.92563e-21) (52.4436 -0.288947 0) (51.9478 -0.26774 -3.92131e-21) (51.7139 -0.257474 0) (51.7104 -0.447334 7.07078e-21) (51.7042 -0.655885 0) (51.4802 -0.63025 0) (51.2651 -0.605134 0) (51.0587 -0.580522 0) (51.0515 -0.776133 0) (50.8544 -0.743839 0) (50.8453 -0.934194 0) (50.8335 -1.12303 0) (50.8183 -1.30944 0) (50.7993 -1.49372 0) (50.7755 -1.67606 0) (50.7461 -1.85643 0) (50.7095 -2.03474 0) (50.6642 -2.21098 0) (50.4884 -2.11492 0) (50.4333 -2.28157 0) (50.2666 -2.17972 0) (50.1971 -2.3383 0) (50.0376 -2.23154 0) (49.9488 -2.38429 0) (49.7945 -2.27377 0) (49.646 -2.16574 0) (49.536 -2.30885 0) (49.3918 -2.19815 0) (49.2681 -2.33653 0) (49.1298 -2.2232 0) (49.253 -2.09011 0) (49.3652 -1.95716 0) (49.503 -2.0602 0) (49.5967 -1.92411 0) (49.7377 -2.02442 0) (49.8846 -2.12691 0) (49.9549 -1.98152 0) (50.1072 -2.07972 0) (50.1603 -1.92782 0) (50.3205 -2.02056 0) (50.3623 -1.85995 0) (50.5319 -1.94658 0) (50.5664 -1.77623 0) (50.5939 -1.60387 0) (50.4205 -1.53298 0) (50.3949 -1.69745 0) (50.2313 -1.62 0) (50.2006 -1.77478 0) (50.0466 -1.69099 0) (50.0076 -1.83662 0) (49.8621 -1.74691 0) (49.8092 -1.8851 0) (49.67 -1.79047 0) (49.5367 -1.69767 0) (49.4611 -1.82601 0) (49.3307 -1.73017 0) (49.2325 -1.85661 0) (49.1194 -1.98466 0) (48.9969 -2.11251 0) (48.8685 -2.23887 0) (48.7354 -2.36314 0) (48.5974 -2.4852 0) (48.4538 -2.60509 0) (48.3043 -2.7228 0) (48.1488 -2.83821 0) (47.9876 -2.95115 0) (47.821 -3.06144 0) (47.6492 -3.16891 0) (47.4724 -3.27338 0) (47.2907 -3.37472 0) (47.1044 -3.47279 0) (47.008 -3.30589 0) (46.8206 -3.39635 0) (46.7319 -3.229 0) (46.6474 -3.06525 0) (46.4625 -3.14439 0) (46.3852 -2.98026 0) (46.3118 -2.81949 0) (46.2422 -2.66192 0) (46.1763 -2.50738 0) (46.3491 -2.44323 0) (46.4178 -2.59409 0) (46.4904 -2.74795 0) (46.5669 -2.90495 0) (46.7446 -2.82659 0) (46.8282 -2.98293 0) (46.916 -3.14265 0) (47.0958 -3.05314 0) (47.191 -3.21215 0) (47.3695 -3.11524 0) (47.2711 -2.96058 0) (47.1773 -2.80928 0) (47.0049 -2.89757 0) (46.9183 -2.7453 0) (46.836 -2.5962 0) (46.6651 -2.67348 0) (46.5897 -2.52346 0) (46.5182 -2.37639 0) (46.4507 -2.23211 0) (46.2842 -2.2952 0) (46.1141 -2.35572 0) (46.0556 -2.20674 0) (45.8849 -2.26113 0) (45.8326 -2.11119 0) (45.6614 -2.15963 0) (45.6151 -2.00868 0) (45.5721 -1.85982 0) (45.4029 -1.89934 0) (45.2311 -1.93654 0) (45.0567 -1.97138 0) (45.024 -1.81525 0) (44.8496 -1.84496 0) (44.822 -1.68765 0) (44.797 -1.53155 0) (44.9672 -1.50726 0) (44.9941 -1.66064 0) (45.164 -1.63157 0) (45.196 -1.78329 0) (45.3656 -1.74913 0) (45.5325 -1.7128 0) (45.4962 -1.56736 0) (45.3314 -1.60046 0) (45.3005 -1.45304 0) (45.1351 -1.48108 0) (45.1092 -1.33147 0) (44.9431 -1.35474 0) (44.7748 -1.37632 0) (44.6043 -1.3962 0) (44.4319 -1.41434 0) (44.2577 -1.43073 0) (44.0818 -1.44535 0) (43.9045 -1.45818 0) (43.7259 -1.4692 0) (43.7163 -1.30263 0) (43.7078 -1.13599 0) (43.7006 -0.968147 0) (43.8747 -0.961304 0) (43.8832 -1.1278 0) (43.8932 -1.29304 0) (44.0688 -1.28185 0) (44.0573 -1.11824 0) (44.0475 -0.953325 0) (44.0398 -0.785551 0) (43.868 -0.791996 0) (43.695 -0.797526 0) (43.6906 -0.624215 0) (43.8628 -0.619964 0) (44.0338 -0.615011 0) (44.2034 -0.609366 0) (44.2102 -0.778203 0) (44.219 -0.944223 0) (44.23 -1.10733 0) (44.243 -1.2691 0) (44.4155 -1.25479 0) (44.4011 -1.0951 0) (44.3888 -0.934013 0) (44.5568 -0.922703 0) (44.5704 -1.08154 0) (44.5863 -1.23894 0) (44.7551 -1.22158 0) (44.7377 -1.06668 0) (44.723 -0.910304 0) (44.7113 -0.750854 0) (44.5461 -0.760844 0) (44.379 -0.769964 0) (44.3714 -0.603044 0) (44.5377 -0.596053 0) (44.7022 -0.588405 0) (44.8645 -0.580108 0) (44.8744 -0.740001 0) (44.8871 -0.896822 0) (44.903 -1.05052 0) (44.9218 -1.20271 0) (45.0862 -1.18234 0) (45.066 -1.03307 0) (45.0489 -0.882261 0) (45.2084 -0.866623 0) (45.2266 -1.01433 0) (45.2483 -1.16049 0) (45.2729 -1.30652 0) (45.434 -1.27991 0) (45.4634 -1.42317 0) (45.6237 -1.3915 0) (45.6584 -1.53228 0) (45.6967 -1.67436 0) (45.7385 -1.81804 0) (45.7838 -1.96357 0) (45.9495 -1.91611 0) (46.0008 -2.06027 0) (46.1657 -2.00695 0) (46.2231 -2.14983 0) (46.3871 -2.09047 0) (46.3274 -1.95129 0) (46.2715 -1.81442 0) (46.1121 -1.86637 0) (46.0623 -1.7279 0) (45.9019 -1.77404 0) (45.858 -1.63385 0) (45.8177 -1.49528 0) (45.7811 -1.35804 0) (45.9356 -1.32284 0) (45.974 -1.45639 0) (46.0162 -1.59132 0) (46.1714 -1.54682 0) (46.2195 -1.67966 0) (46.3734 -1.6294 0) (46.4275 -1.76033 0) (46.4855 -1.89339 0) (46.5476 -2.02874 0) (46.6136 -2.16655 0) (46.6837 -2.30697 0) (46.7578 -2.45013 0) (46.9219 -2.37421 0) (47.0027 -2.51622 0) (47.0878 -2.6612 0) (47.253 -2.5744 0) (47.3452 -2.71818 0) (47.4419 -2.86512 0) (47.5432 -3.01532 0) (47.7121 -2.91252 0) (47.608 -2.76688 0) (47.5086 -2.62442 0) (47.4138 -2.48503 0) (47.3236 -2.34861 0) (47.1653 -2.43365 0) (47.0819 -2.29581 0) (47.0029 -2.16077 0) (46.8453 -2.23506 0) (46.7728 -2.09861 0) (46.7044 -1.96475 0) (46.6402 -1.83332 0) (46.58 -1.70418 0) (46.7289 -1.64604 0) (46.7911 -1.77117 0) (46.8575 -1.89857 0) (46.9281 -2.02839 0) (47.0794 -1.956 0) (47.1564 -2.0842 0) (47.2378 -2.21503 0) (47.3893 -2.132 0) (47.4774 -2.26122 0) (47.57 -2.39323 0) (47.6672 -2.52812 0) (47.7692 -2.666 0) (47.876 -2.80698 0) (48.0346 -2.69888 0) (47.9253 -2.56266 0) (47.821 -2.42943 0) (47.9695 -2.32853 0) (48.0761 -2.45702 0) (48.1877 -2.58841 0) (48.3349 -2.47574 0) (48.2213 -2.34927 0) (48.1126 -2.2256 0) (48.009 -2.10468 0) (47.8678 -2.20288 0) (47.7214 -2.29912 0) (47.6265 -2.17162 0) (47.5363 -2.04684 0) (47.4507 -1.9247 0) (47.3057 -2.00547 0) (47.2266 -1.88153 0) (47.1518 -1.76006 0) (47.0067 -1.83031 0) (46.9382 -1.70702 0) (46.8741 -1.586 0) (46.8142 -1.46712 0) (46.6709 -1.52306 0) (46.5239 -1.57717 0) (46.4719 -1.45212 0) (46.3233 -1.5004 0) (46.2773 -1.37312 0) (46.1272 -1.41566 0) (46.0871 -1.28591 0) (46.0509 -1.15726 0) (45.9011 -1.19032 0) (45.7482 -1.2218 0) (45.5925 -1.25167 0) (45.5647 -1.11239 0) (45.4078 -1.13718 0) (45.3847 -0.994316 0) (45.3653 -0.849906 0) (45.3498 -0.702285 0) (45.1938 -0.715718 0) (45.0353 -0.72829 0) (45.0247 -0.571172 0) (45.1824 -0.561602 0) (45.3377 -0.551406 0) (45.4903 -0.54058 0) (45.5032 -0.688002 0) (45.5196 -0.832117 0) (45.5402 -0.973022 0) (45.6929 -0.950446 0) (45.7188 -1.08614 0) (45.8701 -1.05845 0) (46.0183 -1.02931 0) (45.9896 -0.901461 0) (45.8428 -0.926592 0) (45.8199 -0.793315 0) (45.6712 -0.813256 0) (45.6538 -0.672872 0) (45.6402 -0.529124 0) (45.7871 -0.517032 0) (45.8015 -0.656883 0) (45.9462 -0.640022 0) (45.9656 -0.772288 0) (46.1082 -0.750164 0) (46.1334 -0.875054 0) (46.1635 -0.998746 0) (46.1976 -1.12264 0) (46.2354 -1.24731 0) (46.3805 -1.20706 0) (46.4241 -1.32883 0) (46.5674 -1.28284 0) (46.617 -1.40205 0) (46.7586 -1.35025 0) (46.7073 -1.23521 0) (46.6605 -1.12181 0) (46.5222 -1.16521 0) (46.4812 -1.04885 0) (46.341 -1.08649 0) (46.3054 -0.966778 0) (46.274 -0.847375 0) (46.2476 -0.726934 0) (46.3837 -0.702592 0) (46.4113 -0.818432 0) (46.4441 -0.933423 0) (46.5794 -0.898709 0) (46.618 -1.00975 0) (46.7512 -0.969231 0) (46.7952 -1.0769 0) (46.8436 -1.186 0) (46.8965 -1.29679 0) (46.9538 -1.40945 0) (47.0154 -1.52414 0) (47.0815 -1.64097 0) (47.2207 -1.57311 0) (47.2929 -1.68792 0) (47.3695 -1.80509 0) (47.5081 -1.72681 0) (47.5911 -1.84201 0) (47.6787 -1.95969 0) (47.7709 -2.07996 0) (47.9101 -1.98641 0) (47.8161 -1.87072 0) (47.7268 -1.75755 0) (47.6421 -1.64682 0) (47.5621 -1.53846 0) (47.4297 -1.61401 0) (47.3558 -1.50354 0) (47.2864 -1.39531 0) (47.1529 -1.46054 0) (47.0896 -1.35012 0) (47.0306 -1.24174 0) (46.9762 -1.13527 0) (46.9263 -1.03056 0) (47.0538 -0.98283 0) (47.1051 -1.0831 0) (47.161 -1.18519 0) (47.2214 -1.28922 0) (47.3492 -1.22685 0) (47.4156 -1.32855 0) (47.4866 -1.43239 0) (47.6128 -1.35981 0) (47.6897 -1.46143 0) (47.7712 -1.56531 0) (47.8574 -1.67152 0) (47.9483 -1.78011 0) (48.044 -1.89115 0) (48.1446 -2.00469 0) (48.2501 -2.1208 0) (48.3606 -2.23955 0) (48.4764 -2.36099 0) (48.6122 -2.24421 0) (48.4944 -2.12792 0) (48.3819 -2.01421 0) (48.5087 -1.90579 0) (48.6232 -2.01433 0) (48.7431 -2.12533 0) (48.8696 -2.00437 0) (48.7477 -1.89871 0) (48.6313 -1.79544 0) (48.5201 -1.6945 0) (48.3995 -1.79967 0) (48.2746 -1.90303 0) (48.1724 -1.79431 0) (48.0751 -1.688 0) (47.9828 -1.58406 0) (48.1029 -1.49526 0) (48.1967 -1.59445 0) (48.2956 -1.6959 0) (48.4143 -1.59583 0) (48.3137 -1.49937 0) (48.2183 -1.40508 0) (48.33 -1.31333 0) (48.4271 -1.40258 0) (48.5295 -1.49395 0) (48.6371 -1.58747 0) (48.7499 -1.68323 0) (48.8679 -1.78129 0) (48.9911 -1.88174 0) (49.1046 -1.75856 0) (48.9816 -1.66298 0) (48.8633 -1.56981 0) (48.9673 -1.45672 0) (49.084 -1.5455 0) (49.205 -1.63666 0) (49.2866 -1.51779 0) (49.409 -1.60675 0) (49.466 -1.48646 0) (49.5916 -1.57182 0) (49.7235 -1.65865 0) (49.7611 -1.5272 0) (49.9001 -1.60849 0) (49.9276 -1.46877 0) (50.0756 -1.5438 0) (50.0974 -1.39474 0) (50.255 -1.46329 0) (50.2733 -1.30467 0) (50.4406 -1.36658 0) (50.6158 -1.42957 0) (50.6332 -1.25335 0) (50.4563 -1.19828 0) (50.2874 -1.14417 0) (50.2983 -0.981623 0) (50.4686 -1.02791 0) (50.6469 -1.07503 0) (50.6576 -0.894344 0) (50.478 -0.855227 0) (50.3065 -0.816805 0) (50.1429 -0.779042 0) (50.1359 -0.936121 0) (50.1265 -1.09097 0) (50.114 -1.24379 0) (49.9624 -1.18387 0) (49.9476 -1.32726 0) (49.8055 -1.26075 0) (49.7872 -1.39481 0) (49.6542 -1.32184 0) (49.6292 -1.44707 0) (49.5042 -1.36806 0) (49.3859 -1.29016 0) (49.3463 -1.40261 0) (49.2321 -1.32036 0) (49.1689 -1.43089 0) (49.0557 -1.34616 0) (48.9466 -1.26369 0) (48.855 -1.37033 0) (48.7498 -1.47899 0) (48.6411 -1.39045 0) (48.5374 -1.3041 0) (48.4387 -1.21988 0) (48.5441 -1.1251 0) (48.6432 -1.20459 0) (48.7469 -1.28631 0) (48.8414 -1.18355 0) (48.74 -1.10578 0) (48.6424 -1.03039 0) (48.5488 -0.957328 0) (48.4495 -1.04777 0) (48.3451 -1.13771 0) (48.2379 -1.22613 0) (48.1279 -1.31293 0) (48.0139 -1.39831 0) (47.8952 -1.48243 0) (47.8123 -1.38308 0) (47.7341 -1.28596 0) (47.6606 -1.19102 0) (47.5404 -1.2604 0) (47.4727 -1.16314 0) (47.4095 -1.06795 0) (47.2873 -1.12722 0) (47.23 -1.02957 0) (47.1774 -0.933791 0) (47.2971 -0.883529 0) (47.351 -0.974775 0) (47.4677 -0.91884 0) (47.5274 -1.00751 0) (47.5917 -1.09822 0) (47.7059 -1.03227 0) (47.7759 -1.12057 0) (47.8505 -1.211 0) (47.9298 -1.30357 0) (48.0425 -1.22291 0) (47.9619 -1.13498 0) (47.8862 -1.04915 0) (47.8153 -0.965401 0) (47.749 -0.883727 0) (47.6406 -0.946056 0) (47.5799 -0.861911 0) (47.524 -0.779795 0) (47.4128 -0.832153 0) (47.3625 -0.747287 0) (47.248 -0.794023 0) (47.1294 -0.839671 0) (47.0071 -0.884136 0) (46.881 -0.927343 0) (46.8397 -0.825324 0) (46.7113 -0.862664 0) (46.6758 -0.756798 0) (46.5453 -0.788234 0) (46.5165 -0.677132 0) (46.493 -0.563564 0) (46.3613 -0.584065 0) (46.2262 -0.60363 0) (46.0878 -0.622277 0) (46.0718 -0.490908 0) (45.931 -0.504298 0) (46.2094 -0.476848 0) (46.3437 -0.462097 0) (46.4746 -0.446634 3.03154e-21) (46.602 -0.430431 -3.02661e-21) (46.6213 -0.542108 0) (46.6459 -0.650552 0) (46.7717 -0.622855 0) (46.8029 -0.724144 0) (46.9264 -0.690299 0) (46.9645 -0.78673 0) (47.0856 -0.746931 0) (47.0464 -0.655302 0) (47.0128 -0.564154 0) (46.8941 -0.594049 0) (46.8674 -0.496276 0) (46.7461 -0.519683 0) (46.726 -0.413461 0) (46.8464 -0.395696 0) (46.9632 -0.377111 0) (46.9851 -0.471882 0) (47.0992 -0.446505 0) (47.1279 -0.533198 0) (47.1626 -0.6192 0) (47.203 -0.705991 0) (47.3166 -0.66399 0) (47.2751 -0.582062 0) (47.2393 -0.501231 0) (47.3467 -0.468324 0) (47.3836 -0.543981 0) (47.426 -0.621035 0) (47.4729 -0.699582 0) (47.5788 -0.651045 0) (47.6308 -0.726599 0) (47.6875 -0.804129 0) (47.7906 -0.745582 0) (47.8529 -0.820577 0) (47.9201 -0.897632 0) (47.9922 -0.976724 0) (48.0691 -1.05784 0) (48.151 -1.14098 0) (48.2565 -1.05754 0) (48.1731 -0.97934 0) (48.0947 -0.903096 0) (48.1949 -0.827996 0) (48.2748 -0.899277 0) (48.3597 -0.972521 0) (48.4592 -0.886539 0) (48.3739 -0.817941 0) (48.2931 -0.751452 0) (48.2171 -0.687006 0) (48.12 -0.758655 0) (48.0213 -0.828812 0) (47.953 -0.756509 0) (47.8895 -0.686225 0) (47.8311 -0.618013 0) (47.733 -0.67267 0) (47.6803 -0.601791 0) (47.632 -0.532757 0) (47.5312 -0.57725 0) (47.4879 -0.505068 0) (47.4501 -0.434575 0) (47.4187 -0.364808 0) (47.3161 -0.392911 0) (47.2096 -0.420167 0) (47.1858 -0.337407 -2.99365e-21) (47.0763 -0.357684 0) (47.2915 -0.316291 2.98527e-21) (47.3933 -0.29437 0) (47.4911 -0.271701 0) (47.5171 -0.335949 0) (47.5494 -0.400096 0) (47.588 -0.465447 0) (47.6839 -0.425204 0) (47.7286 -0.487623 0) (47.7776 -0.551863 0) (47.8714 -0.501157 0) (47.9259 -0.562467 0) (47.9855 -0.625842 0) (48.0502 -0.691259 0) (48.1459 -0.624565 0) (48.0797 -0.564126 0) (48.0187 -0.505731 0) (47.9629 -0.449406 0) (47.9121 -0.395065 0) (47.8216 -0.441797 0) (47.7761 -0.384341 0) (47.7358 -0.32928 0) (47.6445 -0.364985 0) (47.6116 -0.306428 0) (47.5848 -0.248356 0) (47.6749 -0.224388 0) (47.7022 -0.276298 0) (47.7898 -0.245524 0) (47.8242 -0.292899 0) (47.8655 -0.342722 0) (47.9533 -0.300071 0) (48.0011 -0.347138 0) (48.0533 -0.39633 0) (48.1104 -0.447595 0) (48.1726 -0.501022 0) (48.2396 -0.556619 0) (48.3112 -0.6144 0) (48.387 -0.674416 0) (48.4668 -0.736745 0) (48.5502 -0.801464 0) (48.6371 -0.868625 0) (48.7273 -0.938243 0) (48.8207 -1.01028 0) (48.9176 -1.08465 0) (49.0182 -1.16123 0) (49.1229 -1.23985 0) (49.1676 -1.13788 0) (49.2738 -1.21341 0) (49.2984 -1.10823 0) (49.41 -1.1786 0) (49.5286 -1.2498 0) (49.5438 -1.13035 0) (49.6709 -1.19515 0) (49.6822 -1.06663 0) (49.8185 -1.12484 0) (49.8278 -0.987063 0) (49.9733 -1.03862 0) (49.9812 -0.891358 0) (49.987 -0.741899 0) (49.8388 -0.705338 0) (49.8343 -0.847285 0) (49.6949 -0.803853 0) (49.6898 -0.936239 0) (49.5594 -0.886081 0) (49.5534 -1.00916 0) (49.432 -0.952341 0) (49.4241 -1.06628 0) (49.3115 -1.00286 0) (49.2061 -0.94002 0) (49.1934 -1.03867 0) (49.0946 -0.969971 0) (49.0668 -1.06371 0) (48.9708 -0.991074 0) (48.8791 -0.920182 0) (48.7912 -0.851266 0) (48.8311 -0.770461 0) (48.914 -0.835663 0) (49.0017 -0.902245 0) (49.0155 -0.815991 0) (49.1075 -0.877728 0) (49.1116 -0.784972 0) (49.2112 -0.84033 0) (49.318 -0.896093 0) (49.3206 -0.787477 0) (49.4363 -0.83652 0) (49.4384 -0.718688 0) (49.5629 -0.761006 0) (49.5649 -0.633795 0) (49.6981 -0.669317 0) (49.7001 -0.533337 0) (49.8418 -0.561948 0) (49.991 -0.590996 0) (50.1479 -0.62051 0) (50.3125 -0.650522 0) (50.485 -0.681061 0) (50.6656 -0.712157 0) (50.6713 -0.532723 0) (50.8608 -0.556394 0) (50.865 -0.37952 -3.51892e-21) (51.0634 -0.395967 3.52356e-21) (51.2703 -0.412743 0) (51.4859 -0.429862 -3.53184e-21) (51.4891 -0.247415 0) (51.2732 -0.237567 0) (51.066 -0.227915 0) (50.8673 -0.218449 0) (50.677 -0.209167 4.86288e-22) (50.675 -0.363385 3.07502e-21) (50.4931 -0.347552 -3.50881e-21) (50.49 -0.509491 0) (50.3167 -0.486677 0) (50.3193 -0.332003 3.50338e-21) (50.3208 -0.191112 0) (50.4949 -0.200056 0) (50.1546 -0.182322 0) (50.1534 -0.316727 -3.49712e-21) (50.1513 -0.46426 0) (49.9937 -0.442216 0) (49.8437 -0.420524 0) (49.7013 -0.39916 0) (49.7018 -0.272368 3.47569e-21) (49.8448 -0.286925 3.4835e-21) (49.9953 -0.301705 -3.49071e-21) (49.9962 -0.173681 0) (49.8454 -0.165178 -3.85282e-21) (49.7021 -0.156807 3.84251e-21) (49.5662 -0.148554 0) (49.5663 -0.258023 -6.93471e-21) (49.5662 -0.378101 0) (49.5659 -0.505128 0) (49.4389 -0.477287 0) (49.439 -0.598725 0) (49.3204 -0.564059 0) (49.3211 -0.676837 0) (49.2111 -0.635382 0) (49.2122 -0.738873 0) (49.111 -0.690619 0) (49.017 -0.642629 0) (49.0189 -0.729955 0) (48.9332 -0.675255 0) (48.9298 -0.754879 0) (48.8498 -0.69454 0) (48.854 -0.620902 0) (48.8501 -0.547165 0) (48.9301 -0.594828 0) (48.9243 -0.51261 0) (49.0127 -0.553355 0) (49.1083 -0.594249 0) (49.1048 -0.495717 0) (49.209 -0.529743 0) (49.2067 -0.422561 0) (49.3192 -0.449778 0) (49.318 -0.336794 0) (49.4385 -0.357321 0) (49.438 -0.243867 6.9153e-21) (49.4377 -0.140415 0) (49.3163 -0.132374 0) (49.3169 -0.229889 -3.44742e-21) (49.203 -0.216065 3.43598e-21) (49.2046 -0.316492 0) (49.0983 -0.296385 0) (49.1013 -0.395592 0) (49.003 -0.36882 0) (49.0077 -0.461912 0) (48.9177 -0.42825 0) (48.8349 -0.394644 0) (48.8429 -0.471932 0) (48.7686 -0.431254 0) (48.7769 -0.499638 0) (48.7809 -0.567005 0) (48.7751 -0.635199 0) (48.7524 -0.706916 0) (48.7067 -0.784548 0) (48.6252 -0.720222 0) (48.5465 -0.658431 0) (48.4706 -0.599254 0) (48.5356 -0.529187 0) (48.6051 -0.586001 0) (48.6772 -0.645331 0) (48.7051 -0.577157 0) (48.639 -0.520766 0) (48.5763 -0.466401 0) (48.5164 -0.414429 0) (48.4685 -0.475092 0) (48.3977 -0.54271 0) (48.328 -0.488768 0) (48.2619 -0.437374 0) (48.1999 -0.388485 0) (48.2826 -0.330176 0) (48.3418 -0.375535 0) (48.4039 -0.42385 0) (48.4589 -0.365178 0) (48.4036 -0.318924 0) (48.3504 -0.275892 0) (48.3959 -0.228773 0) (48.4415 -0.270036 0) (48.4894 -0.314364 0) (48.5399 -0.361341 0) (48.5938 -0.410529 0) (48.6514 -0.46148 0) (48.7136 -0.513765 0) (48.7102 -0.452323 0) (48.6496 -0.405393 0) (48.5945 -0.359138 0) (48.5859 -0.309399 0) (48.6404 -0.349883 0) (48.7012 -0.390554 0) (48.6903 -0.327257 0) (48.7591 -0.361006 0) (48.7502 -0.289038 0) (48.8274 -0.31562 0) (48.9117 -0.342186 0) (48.9067 -0.256611 0) (48.999 -0.276438 0) (48.9962 -0.188804 -3.40849e-21) (49.0961 -0.202378 -3.42301e-21) (49.0948 -0.116554 0) (49.202 -0.124425 0) (48.9945 -0.108752 0) (48.9012 -0.101002 0) (48.9032 -0.17532 6.78365e-21) (48.8172 -0.161896 -3.37261e-21) (48.8214 -0.236857 0) (48.743 -0.217115 0) (48.6716 -0.197309 0) (48.68 -0.262348 0) (48.6169 -0.235461 0) (48.6286 -0.29336 0) (48.5736 -0.259349 0) (48.525 -0.22538 0) (48.5373 -0.269388 0) (48.5444 -0.313948 0) (48.4986 -0.270293 0) (48.4565 -0.22869 0) (48.4175 -0.18967 0) (48.4208 -0.156818 0) (48.4553 -0.192546 0) (48.494 -0.230265 0) (48.4826 -0.191758 3.51564e-22) (48.4456 -0.15895 0) (48.4135 -0.127549 0) (48.4019 -0.100069 -4.28034e-20) (48.4327 -0.126364 0) (48.4691 -0.153513 -9.48181e-27) (48.5117 -0.180952 0) (48.5608 -0.208322 0) (48.55 -0.157135 3.00368e-21) (48.6072 -0.177349 -3.03964e-21) (48.6005 -0.121558 0) (48.6658 -0.13507 0) (48.738 -0.148494 0) (48.7352 -0.0855957 3.68987e-21) (48.8148 -0.0932899 0) (48.6624 -0.0778942 -3.65777e-21) (48.5965 -0.0701546 3.61911e-21) (48.5376 -0.0623289 -3.57064e-21) (48.5422 -0.107875 0) (48.491 -0.0939262 0) (48.4998 -0.136598 0) (48.4566 -0.115751 -7.25273e-22) (48.4201 -0.0947843 0) (48.39 -0.0741461 -9.28657e-20) (48.3802 -0.0503735 5.81517e-21) (48.4101 -0.0650396 -1.36602e-20) (48.447 -0.0796392 1.29068e-20) (48.441 -0.0461466 1.37026e-20) (48.4857 -0.0543514 0) (48.4036 -0.0376632 -1.15832e-20) (48.3736 -0.0289636 0) (48.3507 -0.0203553 5.79045e-21) (48.3567 -0.0361851 0) (48.3656 -0.0545307 -8.34065e-20) (48.3762 -0.0753282 1.18923e-19) (48.3859 -0.0981925 -3.71046e-20) (48.3899 -0.123661 2.204e-20) (48.3813 -0.153735 0) (48.3524 -0.190926 0) (48.2996 -0.236217 0) (48.2268 -0.287747 0) (48.1423 -0.342043 0) (48.0893 -0.297921 0) (48.0403 -0.256143 0) (47.9965 -0.217168 0) (47.9108 -0.255614 0) (47.8753 -0.213945 0) (47.8464 -0.174487 0) (47.7617 -0.199796 0) (47.9299 -0.148286 -1.08917e-21) (47.9598 -0.18135 3.61055e-22) (48.0438 -0.147699 7.19274e-22) (48.0813 -0.177636 -2.93268e-21) (48.1256 -0.211236 0) (48.1745 -0.248103 0) (48.2512 -0.199876 0) (48.205 -0.166945 -2.96278e-21) (48.1622 -0.138036 2.91089e-21) (48.1254 -0.11356 0) (48.0946 -0.0931277 7.17124e-20) (48.0129 -0.121069 -2.38486e-20) (48.1709 -0.0657523 -6.21127e-20) (48.1993 -0.0807769 -4.49815e-20) (48.2326 -0.100874 1.14572e-20) (48.2705 -0.126414 2.91347e-21) (48.3108 -0.156704 0) (48.3474 -0.121296 -2.2785e-20) (48.3149 -0.0928909 -1.12842e-20) (48.2844 -0.06953 -2.216e-20) (48.3138 -0.0461439 -8.31636e-20) (48.3367 -0.0673797 -8.55016e-20) (48.3621 -0.0936106 -1.08797e-20) (48.3621 -0.0715239 4.12496e-20) (48.3416 -0.04842 7.93829e-20) (48.3246 -0.0302067 1.50128e-19) (48.3118 -0.0180672 -5.63212e-19) (48.2947 -0.0314689 -2.22314e-24) (48.2577 -0.0524823 2.60682e-19) (48.2348 -0.0415022 -1.7446e-19) (48.2792 -0.0231585 2.46197e-24) (48.3027 -0.0116453 6.9538e-24) (48.3114 -0.00551301 -1.95692e-19) (48.3163 -0.0100428 -2.27067e-19) (48.3248 -0.0193346 5.26639e-19) (48.3378 -0.0338168 -2.2087e-19) (48.355 -0.0529104 7.89927e-20) (48.3463 -0.0367979 -1.55818e-19) (48.3315 -0.0220831 2.784e-19) (48.3217 -0.0114315 5.7393e-20) (48.3189 -0.00624147 -4.79732e-20) (48.3264 -0.0129077 -1.10272e-18) (48.3389 -0.0233137 5.93865e-19) (48.334 -0.0124179 4.0362e-20) (48.3231 -0.00635765 3.13468e-20) (48.3176 -0.0021897 4.08194e-20) (48.3151 -0.00205265 1.09783e-20) (48.3155 -0.00230985 3.76581e-19) (48.3161 -0.00541492 -1.65703e-19) (48.3134 -0.00231355 -5.01138e-19) (48.3138 -0.0020718 -7.29016e-20) (48.3141 0.0007441 6.79325e-21) (30.0808 -18.1314 -3.11597e-17) (31.4996 -16.843 1.69563e-18) (31.5966 -16.5763 7.05295e-18) (31.8885 -16.5255 -2.93843e-17) (31.776 -16.7907 -3.57275e-18) (32.564 -17.7781 -1.301e-18) (32.2892 -17.7985 -4.54489e-19) (32.7743 -18.068 2.96785e-17) (33.0385 -18.0469 1.82391e-18) (34.5951 -20.2658 0) (39.9505 -29.9595 0) (37.0567 -27.0055 0) (36.7517 -25.4619 -2.44732e-17) (37.2093 -25.502 -4.05733e-18) (35.9229 -23.5799 0) (36.1192 -23.2279 3.28656e-17) (40.0539 -31.328 0) (42.2233 -32.8592 0) (42.7268 -32.8523 0) (42.5728 -33.2896 -2.48305e-17) (42.4163 -34.289 3.30772e-18) (42.8877 -34.485 -6.97831e-18) (48.173 -38.563 2.65544e-17) (48.2652 -38.0766 3.01004e-17) (47.7146 -38.1071 -3.00423e-22) (45.1553 -36.6032 1.84356e-18) (48.273 -39.7526 -4.12507e-18) (48.7885 -39.9396 3.4786e-18) (51.7257 -42.1979 -5.49722e-18) (67.6054 -52.1994 -3.10184e-17) (65.7379 -50.1762 0) (65.5252 -49.5259 -1.98748e-18) (64.8358 -49.6499 -1.23279e-21) (60.592 -48.2505 2.5453e-17) (71.0277 -54.2335 2.83015e-18) (71.6775 -54.3566 4.21584e-19) (78.901 -55.6086 -2.65737e-17) (79.583 -55.3573 -6.33732e-17) (87.7284 -60.6983 3.98947e-18) (88.4967 -60.7492 -2.68544e-17) (95.7287 -62.6032 3.08676e-17) (98.0505 -63.8972 2.95633e-18) (99.0789 -63.8387 -3.05726e-17) (104.975 -62.9046 -8.99441e-19) (155.721 -52.3151 -2.45079e-17) (170.155 -33.8775 0) (38.1625 -0.112538 -8.26861e-24) (38.2058 -0.0874206 0) (38.1836 -0.0696251 0) (38.1293 -0.103399 -5.04753e-19) (38.0856 -0.0834513 0) (38.1553 -0.0486096 0) (38.2287 -0.0341152 0) (38.2375 -0.029847 6.56456e-19) (38.2282 -0.0305655 -4.59798e-18) (38.2144 -0.0320949 5.23576e-18) (38.2017 -0.0346824 3.28214e-18) (38.1988 -0.0396333 -1.63575e-18) (38.2205 -0.0498851 -1.84782e-18) (38.2765 -0.0661003 -2.7774e-19) (38.3601 -0.0854992 3.07948e-19) (38.4571 -0.104588 -5.61364e-20) (38.5581 -0.121647 3.51359e-21) (38.66 -0.136547 0) (38.7632 -0.149765 0) (38.8691 -0.16178 0) (38.9789 -0.172909 0) (39.0931 -0.183316 0) (39.2121 -0.193075 0) (39.3356 -0.202222 0) (39.4635 -0.210788 0) (39.5956 -0.218806 0) (39.7316 -0.226312 0) (39.8715 -0.233339 0) (40.015 -0.239914 0) (40.1619 -0.24606 0) (40.3121 -0.25179 0) (40.4653 -0.257116 0) (40.6214 -0.262048 0) (40.7802 -0.266592 0) (40.9415 -0.270749 0) (41.105 -0.274523 0) (41.2706 -0.277915 0) (41.438 -0.280929 0) (41.607 -0.283578 0) (41.7775 -0.285846 0) (41.9491 -0.287722 0) (42.1217 -0.289229 0) (42.295 -0.290378 0) (42.469 -0.291165 0) (42.6433 -0.291594 0) (42.8177 -0.29167 0) (42.9921 -0.291399 0) (43.1663 -0.290784 0) (43.34 -0.289832 0) (43.5131 -0.288549 0) (43.6854 -0.286939 0) (43.8567 -0.285012 0) (44.0267 -0.282768 0) (44.1954 -0.280222 0) (44.3626 -0.277375 0) (44.528 -0.274237 0) (44.6915 -0.270814 0) (44.853 -0.267116 0) (45.0124 -0.263145 0) (45.1693 -0.258913 0) (45.3238 -0.254424 0) (45.4756 -0.249688 0) (45.6247 -0.244705 0) (45.7709 -0.239484 0) (45.914 -0.234027 0) (46.0541 -0.228334 0) (46.1909 -0.222405 0) (46.3243 -0.216237 0) (46.4544 -0.209821 0) (46.5809 -0.20315 0) (46.7039 -0.196202 0) (46.8234 -0.188962 0) (46.9391 -0.1814 0) (47.0512 -0.173489 0) (47.1596 -0.165197 0) (47.2641 -0.156498 0) (47.3648 -0.147374 0) (47.4616 -0.137818 0) (47.5544 -0.127833 0) (47.6435 -0.117416 0) (47.7294 -0.106533 0) (47.8127 -0.095101 -4.1959e-22) (47.8947 -0.0829688 0) (47.9762 -0.0699618 -1.65562e-21) (48.0572 -0.0560047 -9.17268e-20) (48.1353 -0.0414215 1.0616e-19) (48.205 -0.0272775 -3.9723e-19) (48.259 -0.0153645 3.69131e-19) (48.2924 -0.00709963 -3.09685e-19) (48.3071 -0.00287348 -4.04169e-19) (48.3113 -0.000867484 2.17217e-19) (48.3126 -0.00182866 2.20189e-20) (38.2057 -0.0219622 1.01964e-17) (38.149 -0.0348835 3.34437e-18) (38.0596 -0.0589273 -2.12417e-18) (38.2302 -0.0135488 -1.92725e-17) ) ; boundaryField { bottomEmptyFaces { type empty; } topEmptyFaces { type empty; } inlet { type pressureInletOutletVelocity; value nonuniform List<vector> 95 ( (48.3127 0 0) (48.3125 0 0) (48.311 0 0) (48.3063 0 0) (48.2908 0 0) (48.2551 0 0) (48.1991 0 0) (48.1283 0 0) (48.0502 0 0) (47.9697 0 0) (47.8887 0 0) (47.8071 0 0) (47.724 0 0) (47.6384 0 0) (47.5494 0 0) (47.4568 0 0) (47.3602 0 0) (47.2597 0 0) (47.1552 0 0) (47.047 0 0) (46.9351 0 0) (46.8194 0 0) (46.7001 0 0) (46.5772 0 0) (46.4508 0 0) (46.3208 0 0) (46.1874 0 0) (46.0507 0 0) (45.9108 0 0) (45.7678 0 0) (45.6217 0 0) (45.4728 0 0) (45.3211 0 0) (45.1667 0 0) (45.0099 0 0) (44.8508 0 0) (44.6894 0 0) (44.526 0 0) (44.3608 0 0) (44.1938 0 0) (44.0253 0 0) (43.8554 0 0) (43.6844 0 0) (43.5123 0 0) (43.3394 0 0) (43.1659 0 0) (42.9919 0 0) (42.8177 0 0) (42.6435 0 0) (42.4694 0 0) (42.2957 0 0) (42.1226 0 0) (41.9502 0 0) (41.7788 0 0) (41.6086 0 0) (41.4398 0 0) (41.2727 0 0) (41.1073 0 0) (40.9441 0 0) (40.783 0 0) (40.6245 0 0) (40.4686 0 0) (40.3156 0 0) (40.1656 0 0) (40.019 0 0) (39.8757 0 0) (39.7361 0 0) (39.6004 0 0) (39.4686 0 0) (39.341 0 0) (39.2178 0 0) (39.0992 0 0) (38.9853 0 0) (38.876 0 0) (38.7707 0 0) (38.6684 0 0) (38.5678 0 0) (38.4686 0 0) (38.373 0 0) (38.289 0 0) (38.23 0 0) (38.2039 0 0) (38.2033 0 0) (38.2136 0 0) (38.2272 0 0) (38.2345 0 0) (38.2028 0 0) (38.1411 0 0) (38.038 0 0) (38.2257 0 0) (38.2355 0 0) (48.3129 0 0) (36.9673 0 0) (37.6772 0 0) (37.8702 0 0) ) ; } outlet { type zeroGradient; } walls { type fixedValue; value uniform (0 0 0); } rightWall { type zeroGradient; } symmetryLine { type symmetryPlane; } } // ************************************************************************* //
[ "mhoeper3234@gmail.com" ]
mhoeper3234@gmail.com
8649acf22f2160ad71142d3753214e43b7c8f24e
9ab0c1b9dff0d7e41038484134ecc121abe93d68
/BreakoutC++/Boarders.h
8104245bf7d65932337555d8b902729458412edd
[]
no_license
shenrique38/BreakoutC_Viking
ac30e20869e046b8bd51c5b80a5225938587b91e
6354e4bafdf33b14e7af9ba2bf368fab73ef5e0a
refs/heads/master
2021-01-05T00:18:46.322644
2020-02-16T11:14:21
2020-02-16T11:14:21
240,811,581
0
0
null
null
null
null
UTF-8
C++
false
false
145
h
#pragma once #include "GameObject.h" class Boarders : public GameObject { public: Side side; Boarders(Side side); virtual ~Boarders(); };
[ "shenrique38@gmail.com" ]
shenrique38@gmail.com
4322bf9a8677337c10730f1f928a70db9830edea
bc39c34a319f5efbc3c351edf8ab28e8489dbed0
/36/36-2.cpp
5ad227c13dbcb92b0c7360b0cc166902858fd019
[]
no_license
Cyber-SiKu/nowcoder
b730d7eea0cd0835d3c198fc5e3269d49360341d
bf7beb6d38c6db40151cd2dd18c46e04df3d2562
refs/heads/master
2022-12-17T05:23:42.668303
2020-09-21T02:37:17
2020-09-21T02:37:17
194,038,434
0
0
null
null
null
null
UTF-8
C++
false
false
986
cpp
/** * dp * 时间复杂度过大 * 80.0% */ #include <iostream> #include <vector> using namespace std; const unsigned MAX = 2147483647; class Solution { private: int outs; public: Solution(unsigned n); ~Solution(); friend ostream& operator<<(ostream& os, const Solution& s); inline unsigned get_1_number(unsigned n); }; Solution::Solution(unsigned n) : outs(0) { // dp 1到 i-1 有多少 1 int dp = 0; // memset(dp, 0, sizeof(dp)); for (unsigned i = 1; i <= n; i++) { dp += this->get_1_number(i); } outs = dp; } Solution::~Solution() { } ostream& operator<<(ostream& os, const Solution& s) { os << s.outs; return os; } unsigned Solution::get_1_number(unsigned n) { unsigned ret = 0; while (n != 0) { ret += (n % 10 == 1 ? 1 : 0); n /= 10; } return ret; } int main(int argc, char* argv[]) { unsigned n; cin >> n; Solution s(n); cout << s << endl; return 0; }
[ "Cyber-SiKu@outlook.com" ]
Cyber-SiKu@outlook.com
59c69b91439766fa328e16352726e25aa2003c11
457fe07d8f17d644089b8c52cbbceb3124c2a77c
/CircleImageUI.cpp
73bd710392a18f364d5e34b05095054d7621cd82
[]
no_license
chaoyingLi/Live-APP
52c4dc3cee6d7aa63907cd3d43648cbeceb03b0b
ce6bc725801093800f3bf3d3093ec836cbf7e787
refs/heads/master
2023-01-21T22:38:33.373256
2020-12-06T08:30:49
2020-12-06T08:30:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,886
cpp
#include "StdAfx.h" #include "CircleImageUI.h" #include <atlconv.h> #include <Shlwapi.h> CCircleImageUI::CCircleImageUI() { m_pImagePathBitmap = NULL; } CCircleImageUI::~CCircleImageUI() { if (m_pImagePathBitmap) { delete m_pImagePathBitmap; m_pImagePathBitmap = NULL; } } LPCTSTR CCircleImageUI::GetClass() const { return _T("CircleImageUI"); } LPVOID CCircleImageUI::GetInterface(LPCTSTR pstrName) { if (_tcscmp(pstrName, _T("CircleImage")) == 0) return static_cast<CCircleImageUI*>(this); return CLabelUI::GetInterface(pstrName); } void CCircleImageUI::SetAttribute(LPCTSTR pstrName, LPCTSTR pstrValue) { if( _tcsicmp(pstrName, _T("imagepath")) == 0 ) { TImageInfo * pInfo = CRenderEngine::LoadImage(pstrValue); if (pInfo) { if (m_pImagePathBitmap) { delete m_pImagePathBitmap; m_pImagePathBitmap = NULL; } m_pImagePathBitmap = Gdiplus::Bitmap::FromHBITMAP(pInfo->hBitmap,NULL); if (pInfo->hBitmap) { DeleteObject(pInfo->hBitmap); } delete pInfo; } Invalidate(); } else CLabelUI::SetAttribute(pstrName, pstrValue); } void CCircleImageUI::PaintBkImage(HDC hDC) { CLabelUI::PaintBkImage(hDC); Gdiplus::Graphics graphics(hDC); if (m_pImagePathBitmap) { Gdiplus::TextureBrush tBrush2(m_pImagePathBitmap); Gdiplus::REAL cx = (Gdiplus::REAL)(m_rcItem.right - m_rcItem.left); Gdiplus::REAL cy = (Gdiplus::REAL)(m_rcItem.bottom - m_rcItem.top); Gdiplus::RectF rc((Gdiplus::REAL)m_rcItem.left, (Gdiplus::REAL)m_rcItem.top, cx, cy); graphics.SetClip(rc); tBrush2.SetWrapMode(Gdiplus::WrapModeTile); graphics.SetSmoothingMode(Gdiplus::SmoothingMode::SmoothingModeAntiAlias); tBrush2.TranslateTransform(rc.GetLeft(), rc.GetTop()); tBrush2.ScaleTransform(cx / m_pImagePathBitmap->GetWidth(), cy / m_pImagePathBitmap->GetHeight()); graphics.FillEllipse(&tBrush2, rc); } }
[ "1071307515@qq.com" ]
1071307515@qq.com
9e10744f435616845413ac97893eaac60993880d
9e1fb87d6aa5084c850d3165ea749da67d0add59
/codeforces/417_E_DIV2_CODEFORCES.cpp
d7310333c8ac5a10cbd82a10f292d5a55e475e6f
[]
no_license
Yang-33/competitive-programming
673d57bc95efb559f8e2905bad758cd576505761
f85ef9f1a5763334e4d26f9206154e4f7c0a85ac
refs/heads/master
2021-01-12T03:19:17.961860
2019-10-06T15:35:48
2019-10-06T15:35:48
78,174,818
3
0
null
null
null
null
UTF-8
C++
false
false
3,092
cpp
#include "bits/stdc++.h" using namespace std; typedef long long ll; typedef pair<int, int> pii; typedef pair<ll, ll> pll; #define FOR(i, s, e) for (ll(i) = (s); (i) < (e); (i)++) #define FORR(i, s, e) for (ll(i) = (s); (i) > (e); (i)--) #define debug(x) cout << #x << ": " << x << endl #define mp make_pair #define pb push_back const ll MOD = 1000000007; const int INF = 1e9; const ll LINF = 1e16; const double PI = acos(-1.0); int dx[8] = { 0, 0, 1, -1, 1, 1, -1, -1 }; int dy[8] = { 1, -1, 0, 0, 1, -1, 1, -1 }; /* ----- 2017/09/14 Problem: codeforces 417 div2 E LINK: http://codeforces.com/contest/812/problem/E ----- */ /* ------問題------ A,Bが根1の木のノード上にあるリンゴを使ってゲームを行う。 ノードの上にリンゴがあるものを選択し、任意の個数を以下の操作に従って移動させる ・ノードが葉ならリンゴを取り除く ・ノードに子があるならリンゴを移動させる 後手のプレイヤーはゲーム開始前にこっそり任意の2頂点を交換できる。 このときこの2頂点の選び方は何通りあるか。 -----問題ここまで----- */ /* -----解説等----- 高さ2、根のリンゴが0のときを考えると完全にNim。 1-2のような木では根から下ってきたリンゴは葉で取り除けるので根のリンゴはNimには関係しなさそう出ることが分かる 同様に他の高さ2の木でも同じことがいえる 1-2-3のような木では葉の手前でこれが成り立っていたことが分かる この時は3を葉とすれば1のノードを操作することに意味があるので、帰納的に1-3のように葉からの距離が偶数のノードの値がgrundy数を変えることが分かる。 したがってまずこの木のgrundy数を求め、奇数の距離のノードと、grundy(xor)EVENnode[i]==ODDnode[j]となるような数を求めればよい。 これはmap等の配列で前計算ができる。 grundy==0のときは交換したくない気持ちになるので、ノードの対を計算する。 ----解説ここまで---- */ ll N; int a[100005]; ll ans = 0LL; vector<vector<int>>G; int mad; int dep[100005]; void dfs(int cur,int d) { mad = max(mad, d); dep[cur] = d; FOR(i, 0, G[cur].size()) { dfs(G[cur][i], d + 1); } } int main() { cin.tie(0); ios_base::sync_with_stdio(false); cin >> N; G = vector<vector<int>>(N, vector<int>()); FOR(i, 0, N) { cin >> a[i]; } FOR(i, 0, N - 1) { int c; cin >> c; G[c-1].pb(i+1); } dfs(0, 0); // nodeの深さを記録 map<int, int>ma; int grundy = 0; FOR(i, 0, N) { if (dep[i] % 2 == mad % 2) { grundy ^= a[i]; } else { ma[a[i]]++; } } ans = 0; if (grundy == 0) { //a[i]!=0なのでゲーム値が0なら交換可能な組を求める n(n+1)/2 ll num[2] = {}; FOR(i, 0, N) { if (dep[i] % 2 == mad % 2) ans += num[0], num[0]++; else ans += num[1], num[1]++; } } else { FOR(i, 0, N) { if (dep[i] % 2 == mad % 2) { ans += ma[grundy^a[i]]; } } } cout << ans << endl; return 0; }
[ "kasai.yuta0810@gmail.com" ]
kasai.yuta0810@gmail.com
7fe325cf21b3a29a9102bb64532a3d59aeb61a5b
481080a3d4d893bc175f94bf1daa862130acec29
/src/qt/rpcconsole.cpp
1e46adc367a8e6482cf955ba8acfe9551e0d51e0
[ "MIT" ]
permissive
destopay/Destocoin
cc1c23478c90e14b32c2fa5def4fe9ea6510fbfa
ec67256433590a3f0871651e2e311c6017716901
refs/heads/master
2020-12-19T11:20:39.958271
2020-01-23T03:45:25
2020-01-23T03:45:25
235,717,610
0
0
null
null
null
null
UTF-8
C++
false
false
27,843
cpp
// Copyright (c) 2011-2014 The Bitcoin developers // Copyright (c) 2014-2015 The Dash developers // Copyright (c) 2015-2017 The PIVX developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "rpcconsole.h" #include "ui_rpcconsole.h" #include "clientmodel.h" #include "guiutil.h" #include "peertablemodel.h" #include "chainparams.h" #include "main.h" #include "rpcclient.h" #include "rpcserver.h" #include "util.h" #include <openssl/crypto.h> #include <univalue.h> #ifdef ENABLE_WALLET #include <db_cxx.h> #endif #include <QDir> #include <QKeyEvent> #include <QScrollBar> #include <QThread> #include <QTime> #include <QStringList> #if QT_VERSION < 0x050000 #include <QUrl> #endif // TODO: add a scrollback limit, as there is currently none // TODO: make it possible to filter out categories (esp debug messages when implemented) // TODO: receive errors and debug messages through ClientModel const int CONSOLE_HISTORY = 50; const QSize ICON_SIZE(24, 24); const int INITIAL_TRAFFIC_GRAPH_MINS = 30; // Repair parameters const QString SALVAGEWALLET("-salvagewallet"); const QString RESCAN("-rescan"); const QString ZAPTXES1("-zapwallettxes=1"); const QString ZAPTXES2("-zapwallettxes=2"); const QString UPGRADEWALLET("-upgradewallet"); const QString REINDEX("-reindex"); const QString RESYNC("-resync"); const struct { const char* url; const char* source; } ICON_MAPPING[] = { {"cmd-request", ":/icons/tx_input"}, {"cmd-reply", ":/icons/tx_output"}, {"cmd-error", ":/icons/tx_output"}, {"misc", ":/icons/tx_inout"}, {NULL, NULL}}; /* Object for executing console RPC commands in a separate thread. */ class RPCExecutor : public QObject { Q_OBJECT public slots: void request(const QString& command); signals: void reply(int category, const QString& command); }; #include "rpcconsole.moc" /** * Split shell command line into a list of arguments. Aims to emulate \c bash and friends. * * - Arguments are delimited with whitespace * - Extra whitespace at the beginning and end and between arguments will be ignored * - Text can be "double" or 'single' quoted * - The backslash \c \ is used as escape character * - Outside quotes, any character can be escaped * - Within double quotes, only escape \c " and backslashes before a \c " or another backslash * - Within single quotes, no escaping is possible and no special interpretation takes place * * @param[out] args Parsed arguments will be appended to this list * @param[in] strCommand Command line to split */ bool parseCommandLine(std::vector<std::string>& args, const std::string& strCommand) { enum CmdParseState { STATE_EATING_SPACES, STATE_ARGUMENT, STATE_SINGLEQUOTED, STATE_DOUBLEQUOTED, STATE_ESCAPE_OUTER, STATE_ESCAPE_DOUBLEQUOTED } state = STATE_EATING_SPACES; std::string curarg; foreach (char ch, strCommand) { switch (state) { case STATE_ARGUMENT: // In or after argument case STATE_EATING_SPACES: // Handle runs of whitespace switch (ch) { case '"': state = STATE_DOUBLEQUOTED; break; case '\'': state = STATE_SINGLEQUOTED; break; case '\\': state = STATE_ESCAPE_OUTER; break; case ' ': case '\n': case '\t': if (state == STATE_ARGUMENT) // Space ends argument { args.push_back(curarg); curarg.clear(); } state = STATE_EATING_SPACES; break; default: curarg += ch; state = STATE_ARGUMENT; } break; case STATE_SINGLEQUOTED: // Single-quoted string switch (ch) { case '\'': state = STATE_ARGUMENT; break; default: curarg += ch; } break; case STATE_DOUBLEQUOTED: // Double-quoted string switch (ch) { case '"': state = STATE_ARGUMENT; break; case '\\': state = STATE_ESCAPE_DOUBLEQUOTED; break; default: curarg += ch; } break; case STATE_ESCAPE_OUTER: // '\' outside quotes curarg += ch; state = STATE_ARGUMENT; break; case STATE_ESCAPE_DOUBLEQUOTED: // '\' in double-quoted text if (ch != '"' && ch != '\\') curarg += '\\'; // keep '\' for everything but the quote and '\' itself curarg += ch; state = STATE_DOUBLEQUOTED; break; } } switch (state) // final state { case STATE_EATING_SPACES: return true; case STATE_ARGUMENT: args.push_back(curarg); return true; default: // ERROR to end in one of the other states return false; } } void RPCExecutor::request(const QString& command) { std::vector<std::string> args; if (!parseCommandLine(args, command.toStdString())) { emit reply(RPCConsole::CMD_ERROR, QString("Parse error: unbalanced ' or \"")); return; } if (args.empty()) return; // Nothing to do try { std::string strPrint; // Convert argument list to JSON objects in method-dependent way, // and pass it along with the method name to the dispatcher. UniValue result = tableRPC.execute( args[0], RPCConvertValues(args[0], std::vector<std::string>(args.begin() + 1, args.end()))); // Format result reply if (result.isNull()) strPrint = ""; else if (result.isStr()) strPrint = result.get_str(); else strPrint = result.write(2); emit reply(RPCConsole::CMD_REPLY, QString::fromStdString(strPrint)); } catch (UniValue& objError) { try // Nice formatting for standard-format error { int code = find_value(objError, "code").get_int(); std::string message = find_value(objError, "message").get_str(); emit reply(RPCConsole::CMD_ERROR, QString::fromStdString(message) + " (code " + QString::number(code) + ")"); } catch (std::runtime_error&) // raised when converting to invalid type, i.e. missing code or message { // Show raw JSON object emit reply(RPCConsole::CMD_ERROR, QString::fromStdString(objError.write())); } } catch (std::exception& e) { emit reply(RPCConsole::CMD_ERROR, QString("Error: ") + QString::fromStdString(e.what())); } } RPCConsole::RPCConsole(QWidget* parent) : QDialog(parent), ui(new Ui::RPCConsole), clientModel(0), historyPtr(0), cachedNodeid(-1) { ui->setupUi(this); GUIUtil::restoreWindowGeometry("nRPCConsoleWindow", this->size(), this); #ifndef Q_OS_MAC ui->openDebugLogfileButton->setIcon(QIcon(":/icons/export")); #endif // Install event filter for up and down arrow ui->lineEdit->installEventFilter(this); ui->messagesWidget->installEventFilter(this); connect(ui->clearButton, SIGNAL(clicked()), this, SLOT(clear())); connect(ui->btnClearTrafficGraph, SIGNAL(clicked()), ui->trafficGraph, SLOT(clear())); // Wallet Repair Buttons connect(ui->btn_salvagewallet, SIGNAL(clicked()), this, SLOT(walletSalvage())); connect(ui->btn_rescan, SIGNAL(clicked()), this, SLOT(walletRescan())); connect(ui->btn_zapwallettxes1, SIGNAL(clicked()), this, SLOT(walletZaptxes1())); connect(ui->btn_zapwallettxes2, SIGNAL(clicked()), this, SLOT(walletZaptxes2())); connect(ui->btn_upgradewallet, SIGNAL(clicked()), this, SLOT(walletUpgrade())); connect(ui->btn_reindex, SIGNAL(clicked()), this, SLOT(walletReindex())); connect(ui->btn_resync, SIGNAL(clicked()), this, SLOT(walletResync())); // set library version labels ui->openSSLVersion->setText(SSLeay_version(SSLEAY_VERSION)); #ifdef ENABLE_WALLET ui->berkeleyDBVersion->setText(DbEnv::version(0, 0, 0)); ui->wallet_path->setText(QString::fromStdString(GetDataDir().string() + QDir::separator().toLatin1() + GetArg("-wallet", "wallet.dat"))); #else ui->label_berkeleyDBVersion->hide(); ui->berkeleyDBVersion->hide(); #endif startExecutor(); setTrafficGraphRange(INITIAL_TRAFFIC_GRAPH_MINS); ui->peerHeading->setText(tr("Select a peer to view detailed information.")); clear(); } RPCConsole::~RPCConsole() { GUIUtil::saveWindowGeometry("nRPCConsoleWindow", this); emit stopExecutor(); delete ui; } bool RPCConsole::eventFilter(QObject* obj, QEvent* event) { if (event->type() == QEvent::KeyPress) // Special key handling { QKeyEvent* keyevt = static_cast<QKeyEvent*>(event); int key = keyevt->key(); Qt::KeyboardModifiers mod = keyevt->modifiers(); switch (key) { case Qt::Key_Up: if (obj == ui->lineEdit) { browseHistory(-1); return true; } break; case Qt::Key_Down: if (obj == ui->lineEdit) { browseHistory(1); return true; } break; case Qt::Key_PageUp: /* pass paging keys to messages widget */ case Qt::Key_PageDown: if (obj == ui->lineEdit) { QApplication::postEvent(ui->messagesWidget, new QKeyEvent(*keyevt)); return true; } break; case Qt::Key_Return: case Qt::Key_Enter: // forward these events to lineEdit if(obj == autoCompleter->popup()) { QApplication::postEvent(ui->lineEdit, new QKeyEvent(*keyevt)); return true; } break; default: // Typing in messages widget brings focus to line edit, and redirects key there // Exclude most combinations and keys that emit no text, except paste shortcuts if (obj == ui->messagesWidget && ((!mod && !keyevt->text().isEmpty() && key != Qt::Key_Tab) || ((mod & Qt::ControlModifier) && key == Qt::Key_V) || ((mod & Qt::ShiftModifier) && key == Qt::Key_Insert))) { ui->lineEdit->setFocus(); QApplication::postEvent(ui->lineEdit, new QKeyEvent(*keyevt)); return true; } } } return QDialog::eventFilter(obj, event); } void RPCConsole::setClientModel(ClientModel* model) { clientModel = model; ui->trafficGraph->setClientModel(model); if (model) { // Keep up to date with client setNumConnections(model->getNumConnections()); connect(model, SIGNAL(numConnectionsChanged(int)), this, SLOT(setNumConnections(int))); setNumBlocks(model->getNumBlocks()); connect(model, SIGNAL(numBlocksChanged(int)), this, SLOT(setNumBlocks(int))); setMasternodeCount(model->getMasternodeCountString()); connect(model, SIGNAL(strMasternodesChanged(QString)), this, SLOT(setMasternodeCount(QString))); updateTrafficStats(model->getTotalBytesRecv(), model->getTotalBytesSent()); connect(model, SIGNAL(bytesChanged(quint64, quint64)), this, SLOT(updateTrafficStats(quint64, quint64))); // set up peer table ui->peerWidget->setModel(model->getPeerTableModel()); ui->peerWidget->verticalHeader()->hide(); ui->peerWidget->setEditTriggers(QAbstractItemView::NoEditTriggers); ui->peerWidget->setSelectionBehavior(QAbstractItemView::SelectRows); ui->peerWidget->setSelectionMode(QAbstractItemView::SingleSelection); ui->peerWidget->setColumnWidth(PeerTableModel::Address, ADDRESS_COLUMN_WIDTH); ui->peerWidget->setColumnWidth(PeerTableModel::Subversion, SUBVERSION_COLUMN_WIDTH); ui->peerWidget->setColumnWidth(PeerTableModel::Ping, PING_COLUMN_WIDTH); // connect the peerWidget selection model to our peerSelected() handler connect(ui->peerWidget->selectionModel(), SIGNAL(selectionChanged(const QItemSelection&, const QItemSelection&)), this, SLOT(peerSelected(const QItemSelection&, const QItemSelection&))); connect(model->getPeerTableModel(), SIGNAL(layoutChanged()), this, SLOT(peerLayoutChanged())); // Provide initial values ui->clientVersion->setText(model->formatFullVersion()); ui->clientName->setText(model->clientName()); ui->buildDate->setText(model->formatBuildDate()); ui->startupTime->setText(model->formatClientStartupTime()); ui->networkName->setText(QString::fromStdString(Params().NetworkIDString())); //Setup autocomplete and attach it QStringList wordList; std::vector<std::string> commandList = tableRPC.listCommands(); for (size_t i = 0; i < commandList.size(); ++i) { wordList << commandList[i].c_str(); } autoCompleter = new QCompleter(wordList, this); ui->lineEdit->setCompleter(autoCompleter); // clear the lineEdit after activating from QCompleter autoCompleter->popup()->installEventFilter(this); } } static QString categoryClass(int category) { switch (category) { case RPCConsole::CMD_REQUEST: return "cmd-request"; break; case RPCConsole::CMD_REPLY: return "cmd-reply"; break; case RPCConsole::CMD_ERROR: return "cmd-error"; break; default: return "misc"; } } /** Restart wallet with "-salvagewallet" */ void RPCConsole::walletSalvage() { buildParameterlist(SALVAGEWALLET); } /** Restart wallet with "-rescan" */ void RPCConsole::walletRescan() { buildParameterlist(RESCAN); } /** Restart wallet with "-zapwallettxes=1" */ void RPCConsole::walletZaptxes1() { buildParameterlist(ZAPTXES1); } /** Restart wallet with "-zapwallettxes=2" */ void RPCConsole::walletZaptxes2() { buildParameterlist(ZAPTXES2); } /** Restart wallet with "-upgradewallet" */ void RPCConsole::walletUpgrade() { buildParameterlist(UPGRADEWALLET); } /** Restart wallet with "-reindex" */ void RPCConsole::walletReindex() { buildParameterlist(REINDEX); } /** Restart wallet with "-resync" */ void RPCConsole::walletResync() { QString resyncWarning = tr("This will delete your local blockchain folders and the wallet will synchronize the complete Blockchain from scratch.<br /><br />"); resyncWarning += tr("This needs quite some time and downloads a lot of data.<br /><br />"); resyncWarning += tr("Your transactions and funds will be visible again after the download has completed.<br /><br />"); resyncWarning += tr("Do you want to continue?.<br />"); QMessageBox::StandardButton retval = QMessageBox::question(this, tr("Confirm resync Blockchain"), resyncWarning, QMessageBox::Yes | QMessageBox::Cancel, QMessageBox::Cancel); if (retval != QMessageBox::Yes) { // Resync canceled return; } // Restart and resync buildParameterlist(RESYNC); } /** Build command-line parameter list for restart */ void RPCConsole::buildParameterlist(QString arg) { // Get command-line arguments and remove the application name QStringList args = QApplication::arguments(); args.removeFirst(); // Remove existing repair-options args.removeAll(SALVAGEWALLET); args.removeAll(RESCAN); args.removeAll(ZAPTXES1); args.removeAll(ZAPTXES2); args.removeAll(UPGRADEWALLET); args.removeAll(REINDEX); // Append repair parameter to command line. args.append(arg); // Send command-line arguments to BitcoinGUI::handleRestart() emit handleRestart(args); } void RPCConsole::clear() { ui->messagesWidget->clear(); history.clear(); historyPtr = 0; ui->lineEdit->clear(); ui->lineEdit->setFocus(); // Add smoothly scaled icon images. // (when using width/height on an img, Qt uses nearest instead of linear interpolation) for (int i = 0; ICON_MAPPING[i].url; ++i) { ui->messagesWidget->document()->addResource( QTextDocument::ImageResource, QUrl(ICON_MAPPING[i].url), QImage(ICON_MAPPING[i].source).scaled(ICON_SIZE, Qt::IgnoreAspectRatio, Qt::SmoothTransformation)); } // Set default style sheet ui->messagesWidget->document()->setDefaultStyleSheet( "table { }" "td.time { color: #808080; padding-top: 3px; } " "td.message { font-family: Courier, Courier New, Lucida Console, monospace; font-size: 12px; } " // Todo: Remove fixed font-size "td.cmd-request { color: #006060; } " "td.cmd-error { color: red; } " "b { color: #006060; } "); message(CMD_REPLY, (tr("Welcome to the Destocoin RPC console.") + "<br>" + tr("Use up and down arrows to navigate history, and <b>Ctrl-L</b> to clear screen.") + "<br>" + tr("Type <b>help</b> for an overview of available commands.")), true); } void RPCConsole::reject() { // Ignore escape keypress if this is not a seperate window if (windowType() != Qt::Widget) QDialog::reject(); } void RPCConsole::message(int category, const QString& message, bool html) { QTime time = QTime::currentTime(); QString timeString = time.toString(); QString out; out += "<table><tr><td class=\"time\" width=\"65\">" + timeString + "</td>"; out += "<td class=\"icon\" width=\"32\"><img src=\"" + categoryClass(category) + "\"></td>"; out += "<td class=\"message " + categoryClass(category) + "\" valign=\"middle\">"; if (html) out += message; else out += GUIUtil::HtmlEscape(message, true); out += "</td></tr></table>"; ui->messagesWidget->append(out); } void RPCConsole::setNumConnections(int count) { if (!clientModel) return; QString connections = QString::number(count) + " ("; connections += tr("In:") + " " + QString::number(clientModel->getNumConnections(CONNECTIONS_IN)) + " / "; connections += tr("Out:") + " " + QString::number(clientModel->getNumConnections(CONNECTIONS_OUT)) + ")"; ui->numberOfConnections->setText(connections); } void RPCConsole::setNumBlocks(int count) { ui->numberOfBlocks->setText(QString::number(count)); if (clientModel) ui->lastBlockTime->setText(clientModel->getLastBlockDate().toString()); } void RPCConsole::setMasternodeCount(const QString& strMasternodes) { ui->masternodeCount->setText(strMasternodes); } void RPCConsole::on_lineEdit_returnPressed() { QString cmd = ui->lineEdit->text(); ui->lineEdit->clear(); if (!cmd.isEmpty()) { message(CMD_REQUEST, cmd); emit cmdRequest(cmd); // Remove command, if already in history history.removeOne(cmd); // Append command to history history.append(cmd); // Enforce maximum history size while (history.size() > CONSOLE_HISTORY) history.removeFirst(); // Set pointer to end of history historyPtr = history.size(); // Scroll console view to end scrollToEnd(); } } void RPCConsole::browseHistory(int offset) { historyPtr += offset; if (historyPtr < 0) historyPtr = 0; if (historyPtr > history.size()) historyPtr = history.size(); QString cmd; if (historyPtr < history.size()) cmd = history.at(historyPtr); ui->lineEdit->setText(cmd); } void RPCConsole::startExecutor() { QThread* thread = new QThread; RPCExecutor* executor = new RPCExecutor(); executor->moveToThread(thread); // Replies from executor object must go to this object connect(executor, SIGNAL(reply(int, QString)), this, SLOT(message(int, QString))); // Requests from this object must go to executor connect(this, SIGNAL(cmdRequest(QString)), executor, SLOT(request(QString))); // On stopExecutor signal // - queue executor for deletion (in execution thread) // - quit the Qt event loop in the execution thread connect(this, SIGNAL(stopExecutor()), executor, SLOT(deleteLater())); connect(this, SIGNAL(stopExecutor()), thread, SLOT(quit())); // Queue the thread for deletion (in this thread) when it is finished connect(thread, SIGNAL(finished()), thread, SLOT(deleteLater())); // Default implementation of QThread::run() simply spins up an event loop in the thread, // which is what we want. thread->start(); } void RPCConsole::on_tabWidget_currentChanged(int index) { if (ui->tabWidget->widget(index) == ui->tab_console) { ui->lineEdit->setFocus(); } } void RPCConsole::on_openDebugLogfileButton_clicked() { GUIUtil::openDebugLogfile(); } void RPCConsole::scrollToEnd() { QScrollBar* scrollbar = ui->messagesWidget->verticalScrollBar(); scrollbar->setValue(scrollbar->maximum()); } void RPCConsole::on_sldGraphRange_valueChanged(int value) { const int multiplier = 5; // each position on the slider represents 5 min int mins = value * multiplier; setTrafficGraphRange(mins); } QString RPCConsole::FormatBytes(quint64 bytes) { if (bytes < 1024) return QString(tr("%1 B")).arg(bytes); if (bytes < 1024 * 1024) return QString(tr("%1 KB")).arg(bytes / 1024); if (bytes < 1024 * 1024 * 1024) return QString(tr("%1 MB")).arg(bytes / 1024 / 1024); return QString(tr("%1 GB")).arg(bytes / 1024 / 1024 / 1024); } void RPCConsole::setTrafficGraphRange(int mins) { ui->trafficGraph->setGraphRangeMins(mins); ui->lblGraphRange->setText(GUIUtil::formatDurationStr(mins * 60)); } void RPCConsole::updateTrafficStats(quint64 totalBytesIn, quint64 totalBytesOut) { ui->lblBytesIn->setText(FormatBytes(totalBytesIn)); ui->lblBytesOut->setText(FormatBytes(totalBytesOut)); } void RPCConsole::showInfo() { ui->tabWidget->setCurrentIndex(0); show(); } void RPCConsole::showConsole() { ui->tabWidget->setCurrentIndex(1); show(); } void RPCConsole::showNetwork() { ui->tabWidget->setCurrentIndex(2); show(); } void RPCConsole::showPeers() { ui->tabWidget->setCurrentIndex(3); show(); } void RPCConsole::showRepair() { ui->tabWidget->setCurrentIndex(4); show(); } void RPCConsole::showConfEditor() { GUIUtil::openConfigfile(); } void RPCConsole::showMNConfEditor() { GUIUtil::openMNConfigfile(); } void RPCConsole::peerSelected(const QItemSelection& selected, const QItemSelection& deselected) { Q_UNUSED(deselected); if (!clientModel || selected.indexes().isEmpty()) return; const CNodeCombinedStats* stats = clientModel->getPeerTableModel()->getNodeStats(selected.indexes().first().row()); if (stats) updateNodeDetail(stats); } void RPCConsole::peerLayoutChanged() { if (!clientModel) return; const CNodeCombinedStats* stats = NULL; bool fUnselect = false; bool fReselect = false; if (cachedNodeid == -1) // no node selected yet return; // find the currently selected row int selectedRow; QModelIndexList selectedModelIndex = ui->peerWidget->selectionModel()->selectedIndexes(); if (selectedModelIndex.isEmpty()) selectedRow = -1; else selectedRow = selectedModelIndex.first().row(); // check if our detail node has a row in the table (it may not necessarily // be at selectedRow since its position can change after a layout change) int detailNodeRow = clientModel->getPeerTableModel()->getRowByNodeId(cachedNodeid); if (detailNodeRow < 0) { // detail node dissapeared from table (node disconnected) fUnselect = true; cachedNodeid = -1; ui->peerHeading->setText(tr("Select a peer to view detailed information.")); } else { if (detailNodeRow != selectedRow) { // detail node moved position fUnselect = true; fReselect = true; } // get fresh stats on the detail node. stats = clientModel->getPeerTableModel()->getNodeStats(detailNodeRow); } if (fUnselect && selectedRow >= 0) { ui->peerWidget->selectionModel()->select(QItemSelection(selectedModelIndex.first(), selectedModelIndex.last()), QItemSelectionModel::Deselect); } if (fReselect) { ui->peerWidget->selectRow(detailNodeRow); } if (stats) updateNodeDetail(stats); } void RPCConsole::updateNodeDetail(const CNodeCombinedStats* stats) { // Update cached nodeid cachedNodeid = stats->nodeStats.nodeid; // update the detail ui with latest node information QString peerAddrDetails(QString::fromStdString(stats->nodeStats.addrName)); if (!stats->nodeStats.addrLocal.empty()) peerAddrDetails += "<br />" + tr("via %1").arg(QString::fromStdString(stats->nodeStats.addrLocal)); ui->peerHeading->setText(peerAddrDetails); ui->peerServices->setText(GUIUtil::formatServicesStr(stats->nodeStats.nServices)); ui->peerLastSend->setText(stats->nodeStats.nLastSend ? GUIUtil::formatDurationStr(GetTime() - stats->nodeStats.nLastSend) : tr("never")); ui->peerLastRecv->setText(stats->nodeStats.nLastRecv ? GUIUtil::formatDurationStr(GetTime() - stats->nodeStats.nLastRecv) : tr("never")); ui->peerBytesSent->setText(FormatBytes(stats->nodeStats.nSendBytes)); ui->peerBytesRecv->setText(FormatBytes(stats->nodeStats.nRecvBytes)); ui->peerConnTime->setText(GUIUtil::formatDurationStr(GetTime() - stats->nodeStats.nTimeConnected)); ui->peerPingTime->setText(GUIUtil::formatPingTime(stats->nodeStats.dPingTime)); ui->peerVersion->setText(QString("%1").arg(stats->nodeStats.nVersion)); ui->peerSubversion->setText(QString::fromStdString(stats->nodeStats.cleanSubVer)); ui->peerDirection->setText(stats->nodeStats.fInbound ? tr("Inbound") : tr("Outbound")); ui->peerHeight->setText(QString("%1").arg(stats->nodeStats.nStartingHeight)); // This check fails for example if the lock was busy and // nodeStateStats couldn't be fetched. if (stats->fNodeStateStatsAvailable) { // Ban score is init to 0 ui->peerBanScore->setText(QString("%1").arg(stats->nodeStateStats.nMisbehavior)); // Sync height is init to -1 if (stats->nodeStateStats.nSyncHeight > -1) ui->peerSyncHeight->setText(QString("%1").arg(stats->nodeStateStats.nSyncHeight)); else ui->peerSyncHeight->setText(tr("Unknown")); } else { ui->peerBanScore->setText(tr("Fetching...")); ui->peerSyncHeight->setText(tr("Fetching...")); } ui->detailWidget->show(); } void RPCConsole::resizeEvent(QResizeEvent* event) { QWidget::resizeEvent(event); } void RPCConsole::showEvent(QShowEvent* event) { QWidget::showEvent(event); if (!clientModel) return; // start PeerTableModel auto refresh clientModel->getPeerTableModel()->startAutoRefresh(); } void RPCConsole::hideEvent(QHideEvent* event) { QWidget::hideEvent(event); if (!clientModel) return; // stop PeerTableModel auto refresh clientModel->getPeerTableModel()->stopAutoRefresh(); } void RPCConsole::showBackups() { GUIUtil::showBackups(); }
[ "waihong@the7ech.com" ]
waihong@the7ech.com
c16b1d9f8b522b231963ef011debc6d6e59b56c3
0df48df9ed35e5995af25812137dc0d9d42f96dc
/Arduino_package/history_folders/hardware_v2_SDK3.5/libraries/GTimer/examples/timer_oneshot/timer_oneshot.ino
a77fdecef9a815711a66b63d273dbad3f6d06964
[]
no_license
ambiot/amb1_arduino
81539be6ba18a13cc2a33ec37021c5b27684e047
16720c2dcbcffa2acee0c9fe973a959cafc3ba8c
refs/heads/dev
2023-06-08T15:27:52.848876
2023-06-07T02:38:24
2023-06-07T02:38:24
232,280,578
9
7
null
2022-06-01T08:51:01
2020-01-07T08:37:52
C
UTF-8
C++
false
false
709
ino
/* This sketch shows how to use several hardware timers in invoke handler only once for each timer. */ #include <GTimer.h> void myhandler(uint32_t data) { Serial.print("I am timer "); Serial.println(data); } void setup() { // timerid 0, period 1s, invoke myhandler, invoke only once, user data is 0 GTimer.begin(0, 1 * 1000 * 1000, myhandler, false, 0); // timerid 1, period 2s, invoke myhandler, invoke only once, user data is 1 GTimer.begin(1, 2 * 1000 * 1000, myhandler, false, 1); GTimer.begin(2, 3 * 1000 * 1000, myhandler, false, 2); GTimer.begin(3, 4 * 1000 * 1000, myhandler, false, 3); GTimer.begin(4, 5 * 1000 * 1000, myhandler, false, 4); } void loop() { delay(1000); }
[ "zhangzhenwu@realtek-sg.com" ]
zhangzhenwu@realtek-sg.com
cfe51917b9248db015458129ab1794e84c2aff47
63811ccbf5d9320f0cbf6d64b57fda863f76a4a9
/TT_RemoteTranslationServer/BB_TTRTS/maininstance.cpp
cf21c70c2fb0805c16e37b4e1868371dede10c6a
[]
no_license
valikl/remote-translator
ec211fb6ce73926d38eec79356dcaea6df185208
d3d1b0506311abf213ba1c4244488bbf80ea2171
refs/heads/master
2021-01-21T00:00:42.703109
2014-11-07T02:54:50
2014-11-07T02:54:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
312
cpp
#include "maininstance.h" MainInstance::MainInstance(const BB_InstanceContext &context) : BB_Instance(context) { } MainInstance::~MainInstance(void) { } void MainInstance::init() { BB_Instance::init(); } void MainInstance::finalize() { BB_Instance::finalize(); } void MainInstance::run(){ }
[ "alexander.levashov@gmail.com" ]
alexander.levashov@gmail.com
a5885376807adaa7c757fb31acdd35a1a527070d
0dfb5613ebedc4abc15a58057052bcc02be795d7
/src/nmranet/TractionTrain.cxx
7342539ee8c30a8f89a59f478a5ac98df70d4603
[ "BSD-2-Clause" ]
permissive
dpharris/openmrn-1
31ceb27a46836199bfdc28d85fff080f7614926a
789d062d41fbe1363a88d2e0f1c73b1417c0016f
refs/heads/master
2021-01-16T21:30:39.050143
2015-11-28T19:29:32
2015-11-28T19:29:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
16,409
cxx
/** \copyright * Copyright (c) 2014, Balazs Racz * 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. * * 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 HOLDER 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. * * \file TractionTrain.cxx * * Defines an NMRAnet Train node. * * @author Balazs Racz * @date 5 May 2014 */ //#define LOGLEVEL VERBOSE #include "nmranet/TractionTrain.hxx" #include "utils/logging.h" #include "nmranet/If.hxx" namespace nmranet { TrainNode::TrainNode(TrainService *service, TrainImpl *train) : isInitialized_(0) , service_(service) , train_(train) , controllerNodeId_({0, 0}) { service_->register_train(this); } NodeID TrainNode::node_id() { /** @TODO(balazs.racz) revise how to specify the nodeid for non-DCC * trains. */ return TractionDefs::NODE_ID_DCC | train_->legacy_address(); } If *TrainNode::iface() { return service_->iface(); } /// Implementation structure for TrainService. Holds ownership of the various /// flows that are necessary for the correct operation, but do not need to be /// exposed on the external API. struct TrainService::Impl { class TractionRequestFlow; Impl(TrainService *parent) : traction_(parent) { } /// Handler for incoming OpenLCB messages of MTI == Traction Protocol /// Request. class TractionRequestFlow : public IncomingMessageStateFlow { public: TractionRequestFlow(TrainService *service) : IncomingMessageStateFlow(service->iface()) , reserved_(0) , trainService_(service) , response_(nullptr) { iface()->dispatcher()->register_handler( this, Defs::MTI_TRACTION_CONTROL_COMMAND, 0xffff); } ~TractionRequestFlow() { iface()->dispatcher()->unregister_handler( this, Defs::MTI_TRACTION_CONTROL_COMMAND, 0xffff); } protected: TrainNode *train_node() { return static_cast<TrainNode *>(nmsg()->dstNode); } Action maybe_alloc_response(Callback c) { if (response_) { return call_immediately(c); } else { return allocate_and_call( iface()->addressed_message_write_flow(), c); } } void ensure_response_exists() { if (!response_) { response_ = get_allocation_result( iface()->addressed_message_write_flow()); } } Action entry() OVERRIDE { // If the message is not for a local node, ignore. if (!nmsg()->dstNode) { LOG(VERBOSE, "Traction message for unknown node."); return release_and_exit(); } // Checks if destination is a local traction-enabled node. if (trainService_->nodes_.find(train_node()) == trainService_->nodes_.end()) { LOG(VERBOSE, "Traction message for node %p that is not " "traction enabled.", train_node()); /** @TODO(balazs.racz): This is probably not the good solution * here; since this is an addressed message we should rather * send a reject response. */ return release_and_exit(); } // No command byte? if (size() < 1) { LOG(VERBOSE, "Traction message with no command byte."); return reject_permanent(); } uint8_t cmd = payload()[0]; switch (cmd) { /** @TODO(balazs.racz) need to validate caller of mutating * functions. The mutating options should be factored into a * separate flow state. */ case TractionDefs::REQ_SET_SPEED: { SpeedType sp = fp16_to_speed(payload() + 1); train_node()->train()->set_speed(sp); return release_and_exit(); } case TractionDefs::REQ_SET_FN: { uint32_t address = payload()[1]; address <<= 8; address |= payload()[2]; address <<= 8; address |= payload()[3]; uint16_t value = payload()[4]; value <<= 8; value |= payload()[5]; train_node()->train()->set_fn(address, value); return release_and_exit(); } case TractionDefs::REQ_EMERGENCY_STOP: { train_node()->train()->set_emergencystop(); return release_and_exit(); } case TractionDefs::REQ_QUERY_SPEED: // fall through case TractionDefs::REQ_QUERY_FN: { // Need a response message first. return maybe_alloc_response(STATE(handle_query)); } case TractionDefs::REQ_CONTROLLER_CONFIG: { return maybe_alloc_response( STATE(handle_controller_config)); } case TractionDefs::REQ_TRACTION_MGMT: { return maybe_alloc_response(STATE(handle_traction_mgmt)); } default: { LOG(VERBOSE, "Rejecting unknown traction message."); return reject_permanent(); } } } Action handle_query() { Payload *p = initialize_response(); uint8_t cmd = payload()[0]; switch (cmd) { case TractionDefs::REQ_QUERY_SPEED: { p->resize(8); uint8_t *d = reinterpret_cast<uint8_t *>(&(*p)[0]); d[0] = TractionDefs::RESP_QUERY_SPEED; speed_to_fp16(train_node()->train()->get_speed(), d + 1); d[3] = 0; // status byte: reserved. speed_to_fp16(train_node()->train()->get_commanded_speed(), d + 4); speed_to_fp16(train_node()->train()->get_actual_speed(), d + 6); return send_response(); } case TractionDefs::REQ_QUERY_FN: { p->resize(6); uint8_t *d = reinterpret_cast<uint8_t *>(&(*p)[0]); d[0] = TractionDefs::RESP_QUERY_FN; d[1] = payload()[1]; d[2] = payload()[2]; d[3] = payload()[3]; uint32_t address = payload()[1]; address <<= 8; address |= payload()[2]; address <<= 8; address |= payload()[3]; uint16_t fn_value = train_node()->train()->get_fn(address); d[4] = fn_value >> 8; d[5] = fn_value & 0xff; return send_response(); } } DIE("unexpected call to handle_query."); } Action handle_controller_config() { Payload &p = *initialize_response(); uint8_t subcmd = payload()[1]; switch (subcmd) { case TractionDefs::CTRLREQ_ASSIGN_CONTROLLER: { p.resize(3); p[0] = TractionDefs::RESP_CONTROLLER_CONFIG; p[1] = TractionDefs::CTRLRESP_ASSIGN_CONTROLLER; NodeHandle supplied_controller = {0, 0}; if (size() < 9) return reject_permanent(); supplied_controller.id = data_to_node_id(payload() + 3); if (size() >= 11 && (payload()[2] & 0x01)) { uint16_t alias = payload()[9]; alias <<= 8; alias |= payload()[10]; supplied_controller.alias = alias; } NodeHandle existing_controller = train_node()->get_controller(); if (existing_controller.id && !iface()->matching_node(existing_controller, supplied_controller)) { /** @TODO (balazs.racz): we need to implement stealing * a train from the existing controller. */ p[2] = TractionDefs::CTRLRESP_ASSIGN_ERROR_CONTROLLER; return send_response(); } train_node()->set_controller(supplied_controller); p[2] = 0; return send_response(); } case TractionDefs::CTRLREQ_QUERY_CONTROLLER: { NodeHandle h = train_node()->get_controller(); p.reserve(11); p.resize(9); p[0] = TractionDefs::RESP_CONTROLLER_CONFIG; p[1] = TractionDefs::CTRLRESP_QUERY_CONTROLLER; p[2] = 0; node_id_to_data(h.id, &p[3]); if (h.alias) { p[2] |= 1; p.push_back(h.alias >> 8); p.push_back(h.alias & 0xff); } return send_response(); } case TractionDefs::CTRLREQ_RELEASE_CONTROLLER: { NodeHandle supplied_controller = {0, 0}; if (size() < 9) return reject_permanent(); supplied_controller.id = data_to_node_id(payload() + 3); if (size() >= 11 && (payload()[2] & 0x01)) { uint16_t alias = payload()[9]; alias <<= 8; alias |= payload()[10]; supplied_controller.alias = alias; } NodeHandle existing_controller = train_node()->get_controller(); if (!iface()->matching_node(existing_controller, supplied_controller)) { LOG(WARNING, "Tried to release a train that was not held: " "train's controller %012" PRIx64 ", release command's controller %012" PRIx64, existing_controller.id, supplied_controller.id); return release_and_exit(); } existing_controller = {0, 0}; train_node()->set_controller(existing_controller); return release_and_exit(); } } LOG(VERBOSE, "Rejecting unknown traction message."); return reject_permanent(); } Action handle_traction_mgmt() { Payload &p = *initialize_response(); uint8_t cmd = payload()[1]; switch (cmd) { case TractionDefs::MGMTREQ_RESERVE: { uint8_t code = 0xff; if (reserved_) { code = 0x1; } else { code = 0; reserved_ = 1; } p.push_back(TractionDefs::RESP_TRACTION_MGMT); p.push_back(TractionDefs::MGMTRESP_RESERVE); p.push_back(code); return send_response(); } case TractionDefs::MGMTREQ_RELEASE: { reserved_ = 0; return release_and_exit(); } default: LOG(VERBOSE, "Unknown Traction proxy manage subcommand %x", cmd); return reject_permanent(); } } /** Takes the allocation result of a response buffer (addressed write * flow) and fills in src, dest as a response message for traction * protocol. The caller only needs to provide the payload. */ Payload *initialize_response() { ensure_response_exists(); response_->data()->reset(Defs::MTI_TRACTION_CONTROL_REPLY, train_node()->node_id(), nmsg()->src, EMPTY_PAYLOAD); return &response_->data()->payload; } /** Sends off the response buffer to the client. */ Action send_response() { iface()->addressed_message_write_flow()->send(response_); response_ = nullptr; return release_and_exit(); } /** Returns the size of the incoming message payload. */ size_t size() { return nmsg()->payload.size(); } /** Returns the incoming message payload (bytes). */ const uint8_t *payload() { return reinterpret_cast<const uint8_t *>(nmsg()->payload.data()); } /** Rejects the incoming message with a permanent error. */ Action reject_permanent() { return maybe_alloc_response(STATE(send_reject_permanent)); } Action send_reject_permanent() { ensure_response_exists(); // An alternative would be to send TERMINATE_DUE_TO_ERROR here. response_->data()->reset( Defs::MTI_OPTIONAL_INTERACTION_REJECTED, nmsg()->dstNode->node_id(), nmsg()->src, error_to_buffer(Defs::ERROR_PERMANENT, nmsg()->mti)); return send_response(); } private: unsigned reserved_ : 1; TrainService *trainService_; Buffer<NMRAnetMessage> *response_; }; TractionRequestFlow traction_; }; TrainService::TrainService(If *iface) : Service(iface->executor()) , iface_(iface) { impl_ = new Impl(this); } TrainService::~TrainService() { delete impl_; } void TrainService::register_train(TrainNode *node) { iface_->add_local_node(node); extern void StartInitializationFlow(Node * node); StartInitializationFlow(node); AtomicHolder h(this); nodes_.insert(node); LOG(VERBOSE, "Registered node %p for traction.", node); HASSERT(nodes_.find(node) != nodes_.end()); } } // namespace nmranet
[ "balazs.racz@gmail.com" ]
balazs.racz@gmail.com
799cd0d6b832b0d845dbdeaf6934ff494b141b1e
343991667d37fba873674d8dc157f59f108c4370
/bin/mac64.build/cpp/src/resources/__res_4.cpp
77614dd02edec6ae56865493d6a593ba76c2ba2a
[]
no_license
PlumpMath/StarSlam
7718152d348de29dc68c759a81fa9cfefe9647b9
4a05d1575a763ffab76db259050bfe3b9a16a910
refs/heads/master
2021-01-18T20:24:31.646389
2015-09-20T20:11:56
2015-09-20T20:11:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
380
cpp
namespace hx { unsigned char __res_4[] = { 0xff, 0xff, 0xff, 0xff, 118,97,114,121,105,110,103,32,118,101, 99,50,32,116,99,111,111,114,100,59, 10,118,97,114,121,105,110,103,32,118, 101,99,52,32,99,111,108,111,114,59, 10,10,118,111,105,100,32,109,97,105, 110,40,41,32,123,10,32,32,32,32, 103,108,95,70,114,97,103,67,111,108, 111,114,32,61,32,99,111,108,111,114, 59,10,125,0x00 }; }
[ "aledoux6@gatech.edu" ]
aledoux6@gatech.edu
73e0e58c081daa2c6a6b99808fdcf09bc7bec424
1d928c3f90d4a0a9a3919a804597aa0a4aab19a3
/c++/json/2018/4/unit-regression.cpp
c66caa9071043981f57919b15ecaebbde1af7452
[ "MIT" ]
permissive
rosoareslv/SED99
d8b2ff5811e7f0ffc59be066a5a0349a92cbb845
a062c118f12b93172e31e8ca115ce3f871b64461
refs/heads/main
2023-02-22T21:59:02.703005
2021-01-28T19:40:51
2021-01-28T19:40:51
306,497,459
1
1
null
2020-11-24T20:56:18
2020-10-23T01:18:07
null
UTF-8
C++
false
false
55,975
cpp
/* __ _____ _____ _____ __| | __| | | | JSON for Modern C++ (test suite) | | |__ | | | | | | version 3.1.2 |_____|_____|_____|_|___| https://github.com/nlohmann/json Licensed under the MIT License <http://opensource.org/licenses/MIT>. Copyright (c) 2013-2018 Niels Lohmann <http://nlohmann.me>. 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. */ #include "catch.hpp" #define private public #include <nlohmann/json.hpp> using nlohmann::json; #include "fifo_map.hpp" #include <fstream> #include <list> #include <cstdio> ///////////////////////////////////////////////////////////////////// // for #972 ///////////////////////////////////////////////////////////////////// template<class K, class V, class dummy_compare, class A> using my_workaround_fifo_map = nlohmann::fifo_map<K, V, nlohmann::fifo_map_compare<K>, A>; using my_json = nlohmann::basic_json<my_workaround_fifo_map>; ///////////////////////////////////////////////////////////////////// // for #977 ///////////////////////////////////////////////////////////////////// namespace ns { struct foo { int x; }; template <typename, typename SFINAE = void> struct foo_serializer; template<typename T> struct foo_serializer<T, typename std::enable_if<std::is_same<foo, T>::value>::type> { template <typename BasicJsonType> static void to_json(BasicJsonType& j, const T& value) { j = BasicJsonType{{"x", value.x}}; } template <typename BasicJsonType> static void from_json(const BasicJsonType& j, T& value) // !!! { nlohmann::from_json(j.at("x"), value.x); } }; template<typename T> struct foo_serializer < T, typename std::enable_if < !std::is_same<foo, T>::value >::type > { template <typename BasicJsonType> static void to_json(BasicJsonType& j, const T& value) noexcept { ::nlohmann::to_json(j, value); } template <typename BasicJsonType> static void from_json(const BasicJsonType& j, T& value) //!!! { ::nlohmann::from_json(j, value); } }; } using foo_json = nlohmann::basic_json<std::map, std::vector, std::string, bool, std::int64_t, std::uint64_t, double, std::allocator, ns::foo_serializer>; ///////////////////////////////////////////////////////////////////// // for #805 ///////////////////////////////////////////////////////////////////// namespace { struct nocopy { nocopy() = default; nocopy(const nocopy&) = delete; int val = 0; friend void to_json(json& j, const nocopy& n) { j = {{"val", n.val}}; } }; } ///////////////////////////////////////////////////////////////////// // for #1021 ///////////////////////////////////////////////////////////////////// using float_json = nlohmann::basic_json<std::map, std::vector, std::string, bool, std::int64_t, std::uint64_t, float>; TEST_CASE("regression tests") { SECTION("issue #60 - Double quotation mark is not parsed correctly") { SECTION("escape_dobulequote") { auto s = "[\"\\\"foo\\\"\"]"; json j = json::parse(s); auto expected = R"(["\"foo\""])"_json; CHECK(j == expected); } } SECTION("issue #70 - Handle infinity and NaN cases") { // previously, NAN/INFINITY created a null value; now, the values are // properly stored, but are dumped as "null" SECTION("NAN value") { CHECK(json(NAN).dump() == "null"); CHECK(json(json::number_float_t(NAN)).dump() == "null"); } SECTION("infinity") { CHECK(json(INFINITY).dump() == "null"); CHECK(json(json::number_float_t(INFINITY)).dump() == "null"); } // With 3.0.0, the semantics of this changed: NAN and infinity are // stored properly inside the JSON value (no exception or conversion // to null), but are serialized as null. SECTION("NAN value") { json j1 = NAN; CHECK(j1.is_number_float()); json::number_float_t f1 = j1; CHECK(std::isnan(f1)); json j2 = json::number_float_t(NAN); CHECK(j2.is_number_float()); json::number_float_t f2 = j2; CHECK(std::isnan(f2)); } SECTION("infinity") { json j1 = INFINITY; CHECK(j1.is_number_float()); json::number_float_t f1 = j1; CHECK(not std::isfinite(f1)); json j2 = json::number_float_t(INFINITY); CHECK(j2.is_number_float()); json::number_float_t f2 = j2; CHECK(not std::isfinite(f2)); } } SECTION("pull request #71 - handle enum type") { enum { t = 0, u = 102}; json j = json::array(); j.push_back(t); // maybe this is not the place to test this? json j2 = u; auto anon_enum_value = j2.get<decltype(u)>(); CHECK(u == anon_enum_value); // check if the actual value was stored CHECK(j2 == 102); static_assert(std::is_same<decltype(anon_enum_value), decltype(u)>::value, ""); j.push_back(json::object( { {"game_type", t} })); } SECTION("issue #76 - dump() / parse() not idempotent") { // create JSON object json fields; fields["one"] = std::string("one"); fields["two"] = std::string("two three"); fields["three"] = std::string("three \"four\""); // create another JSON object by deserializing the serialization std::string payload = fields.dump(); json parsed_fields = json::parse(payload); // check individual fields to match both objects CHECK(parsed_fields["one"] == fields["one"]); CHECK(parsed_fields["two"] == fields["two"]); CHECK(parsed_fields["three"] == fields["three"]); // check individual fields to match original input CHECK(parsed_fields["one"] == std::string("one")); CHECK(parsed_fields["two"] == std::string("two three")); CHECK(parsed_fields["three"] == std::string("three \"four\"")); // check equality of the objects CHECK(parsed_fields == fields); // check equality of the serialized objects CHECK(fields.dump() == parsed_fields.dump()); // check everything in one line CHECK(fields == json::parse(fields.dump())); } SECTION("issue #82 - lexer::get_number return NAN") { const auto content = R"( { "Test":"Test1", "Number":100, "Foo":42.42 })"; std::stringstream ss; ss << content; json j; ss >> j; std::string test = j["Test"]; CHECK(test == "Test1"); int number = j["Number"]; CHECK(number == 100); float foo = j["Foo"]; CHECK(foo == Approx(42.42)); } SECTION("issue #89 - nonstandard integer type") { // create JSON class with nonstandard integer number type using custom_json = nlohmann::basic_json<std::map, std::vector, std::string, bool, int32_t, uint32_t, float>; custom_json j; j["int_1"] = 1; // we need to cast to int to compile with Catch - the value is int32_t CHECK(static_cast<int>(j["int_1"]) == 1); // tests for correct handling of non-standard integers that overflow the type selected by the user // unsigned integer object creation - expected to wrap and still be stored as an integer j = 4294967296U; // 2^32 CHECK(static_cast<int>(j.type()) == static_cast<int>(custom_json::value_t::number_unsigned)); CHECK(j.get<uint32_t>() == 0); // Wrap // unsigned integer parsing - expected to overflow and be stored as a float j = custom_json::parse("4294967296"); // 2^32 CHECK(static_cast<int>(j.type()) == static_cast<int>(custom_json::value_t::number_float)); CHECK(j.get<float>() == 4294967296.0f); // integer object creation - expected to wrap and still be stored as an integer j = -2147483649LL; // -2^31-1 CHECK(static_cast<int>(j.type()) == static_cast<int>(custom_json::value_t::number_integer)); CHECK(j.get<int32_t>() == 2147483647); // Wrap // integer parsing - expected to overflow and be stored as a float with rounding j = custom_json::parse("-2147483649"); // -2^31 CHECK(static_cast<int>(j.type()) == static_cast<int>(custom_json::value_t::number_float)); CHECK(j.get<float>() == -2147483650.0f); } SECTION("issue #93 reverse_iterator operator inheritance problem") { { json a = {1, 2, 3}; json::reverse_iterator rit = a.rbegin(); ++rit; CHECK(*rit == json(2)); CHECK(rit.value() == json(2)); } { json a = {1, 2, 3}; json::reverse_iterator rit = ++a.rbegin(); CHECK(*rit == json(2)); CHECK(rit.value() == json(2)); } { json a = {1, 2, 3}; json::reverse_iterator rit = a.rbegin(); ++rit; json b = {0, 0, 0}; std::transform(rit, a.rend(), b.rbegin(), [](json el) { return el; }); CHECK(b == json({0, 1, 2})); } { json a = {1, 2, 3}; json b = {0, 0, 0}; std::transform(++a.rbegin(), a.rend(), b.rbegin(), [](json el) { return el; }); CHECK(b == json({0, 1, 2})); } } SECTION("issue #100 - failed to iterator json object with reverse_iterator") { json config = { { "111", 111 }, { "112", 112 }, { "113", 113 } }; std::stringstream ss; for (auto it = config.begin(); it != config.end(); ++it) { ss << it.key() << ": " << it.value() << '\n'; } for (auto it = config.rbegin(); it != config.rend(); ++it) { ss << it.key() << ": " << it.value() << '\n'; } CHECK(ss.str() == "111: 111\n112: 112\n113: 113\n113: 113\n112: 112\n111: 111\n"); } SECTION("issue #101 - binary string causes numbers to be dumped as hex") { int64_t number = 10; std::string bytes{"\x00" "asdf\n", 6}; json j; j["int64"] = number; j["binary string"] = bytes; // make sure the number is really printed as decimal "10" and not as // hexadecimal "a" CHECK(j.dump() == "{\"binary string\":\"\\u0000asdf\\n\",\"int64\":10}"); } SECTION("issue #111 - subsequent unicode chars") { std::string bytes{0x7, 0x7}; json j; j["string"] = bytes; CHECK(j["string"] == "\u0007\u0007"); } SECTION("issue #144 - implicit assignment to std::string fails") { json o = {{"name", "value"}}; std::string s1 = o["name"]; CHECK(s1 == "value"); std::string s2; s2 = o["name"]; CHECK(s2 == "value"); } SECTION("issue #146 - character following a surrogate pair is skipped") { CHECK(json::parse("\"\\ud80c\\udc60abc\"").get<json::string_t>() == u8"\U00013060abc"); } SECTION("issue #171 - Cannot index by key of type static constexpr const char*") { json j; // Non-const access with key as "char []" char array_key[] = "Key1"; CHECK_NOTHROW(j[array_key] = 1); CHECK(j[array_key] == json(1)); // Non-const access with key as "const char[]" const char const_array_key[] = "Key2"; CHECK_NOTHROW(j[const_array_key] = 2); CHECK(j[const_array_key] == json(2)); // Non-const access with key as "char *" char _ptr_key[] = "Key3"; char* ptr_key = &_ptr_key[0]; CHECK_NOTHROW(j[ptr_key] = 3); CHECK(j[ptr_key] == json(3)); // Non-const access with key as "const char *" const char* const_ptr_key = "Key4"; CHECK_NOTHROW(j[const_ptr_key] = 4); CHECK(j[const_ptr_key] == json(4)); // Non-const access with key as "static constexpr const char *" static constexpr const char* constexpr_ptr_key = "Key5"; CHECK_NOTHROW(j[constexpr_ptr_key] = 5); CHECK(j[constexpr_ptr_key] == json(5)); const json j_const = j; // Const access with key as "char []" CHECK(j_const[array_key] == json(1)); // Const access with key as "const char[]" CHECK(j_const[const_array_key] == json(2)); // Const access with key as "char *" CHECK(j_const[ptr_key] == json(3)); // Const access with key as "const char *" CHECK(j_const[const_ptr_key] == json(4)); // Const access with key as "static constexpr const char *" CHECK(j_const[constexpr_ptr_key] == json(5)); } SECTION("issue #186 miloyip/nativejson-benchmark: floating-point parsing") { json j; j = json::parse("-0.0"); CHECK(j.get<double>() == -0.0); j = json::parse("2.22507385850720113605740979670913197593481954635164564e-308"); CHECK(j.get<double>() == 2.2250738585072009e-308); j = json::parse("0.999999999999999944488848768742172978818416595458984374"); CHECK(j.get<double>() == 0.99999999999999989); j = json::parse("1.00000000000000011102230246251565404236316680908203126"); CHECK(j.get<double>() == 1.00000000000000022); j = json::parse("7205759403792793199999e-5"); CHECK(j.get<double>() == 72057594037927928.0); j = json::parse("922337203685477529599999e-5"); CHECK(j.get<double>() == 9223372036854774784.0); j = json::parse("1014120480182583464902367222169599999e-5"); CHECK(j.get<double>() == 10141204801825834086073718800384.0); j = json::parse("5708990770823839207320493820740630171355185151999e-3"); CHECK(j.get<double>() == 5708990770823838890407843763683279797179383808.0); // create JSON class with nonstandard float number type // float nlohmann::basic_json<std::map, std::vector, std::string, bool, int32_t, uint32_t, float> j_float = 1.23e25f; CHECK(j_float.get<float>() == 1.23e25f); // double nlohmann::basic_json<std::map, std::vector, std::string, bool, int64_t, uint64_t, double> j_double = 1.23e35; CHECK(j_double.get<double>() == 1.23e35); // long double nlohmann::basic_json<std::map, std::vector, std::string, bool, int64_t, uint64_t, long double> j_long_double = 1.23e45L; CHECK(j_long_double.get<long double>() == 1.23e45L); } SECTION("issue #228 - double values are serialized with commas as decimal points") { json j1a = 2312.42; json j1b = json::parse("2312.42"); json j2a = 2342e-2; //issue #230 //json j2b = json::parse("2342e-2"); json j3a = 10E3; json j3b = json::parse("10E3"); json j3c = json::parse("10e3"); // class to create a locale that would use a comma for decimals class CommaDecimalSeparator : public std::numpunct<char> { protected: char do_decimal_point() const override { return ','; } char do_thousands_sep() const override { return '.'; } std::string do_grouping() const override { return "\03"; } }; // change locale to mess with decimal points auto orig_locale = std::locale::global(std::locale(std::locale(), new CommaDecimalSeparator)); CHECK(j1a.dump() == "2312.42"); CHECK(j1b.dump() == "2312.42"); // check if locale is properly reset std::stringstream ss; ss.imbue(std::locale(std::locale(), new CommaDecimalSeparator)); ss << 4712.11; CHECK(ss.str() == "4.712,11"); ss << j1a; CHECK(ss.str() == "4.712,112312.42"); ss << 47.11; CHECK(ss.str() == "4.712,112312.4247,11"); CHECK(j2a.dump() == "23.42"); //issue #230 //CHECK(j2b.dump() == "23.42"); CHECK(j3a.dump() == "10000.0"); CHECK(j3b.dump() == "10000.0"); CHECK(j3c.dump() == "10000.0"); //CHECK(j3b.dump() == "1E04"); // roundtrip error //CHECK(j3c.dump() == "1e04"); // roundtrip error std::locale::global(orig_locale); } SECTION("issue #378 - locale-independent num-to-str") { setlocale(LC_NUMERIC, "de_DE.UTF-8"); // verify that dumped correctly with '.' and no grouping const json j1 = 12345.67; CHECK(json(12345.67).dump() == "12345.67"); setlocale(LC_NUMERIC, "C"); } SECTION("issue #379 - locale-independent str-to-num") { setlocale(LC_NUMERIC, "de_DE.UTF-8"); // verify that parsed correctly despite using strtod internally CHECK(json::parse("3.14").get<double>() == 3.14); // check a different code path CHECK(json::parse("1.000000000000000000000000000000000000000000000000000000000000000000000000").get<double>() == 1.0); } SECTION("issue #233 - Can't use basic_json::iterator as a base iterator for std::move_iterator") { json source = {"a", "b", "c"}; json expected = {"a", "b"}; json dest; std::copy_n(std::make_move_iterator(source.begin()), 2, std::back_inserter(dest)); CHECK(dest == expected); } SECTION("issue #235 - ambiguous overload for 'push_back' and 'operator+='") { json data = {{"key", "value"}}; data.push_back({"key2", "value2"}); data += {"key3", "value3"}; CHECK(data == json({{"key", "value"}, {"key2", "value2"}, {"key3", "value3"}})); } SECTION("issue #269 - diff generates incorrect patch when removing multiple array elements") { json doc = R"( { "arr1": [1, 2, 3, 4] } )"_json; json expected = R"( { "arr1": [1, 2] } )"_json; // check roundtrip CHECK(doc.patch(json::diff(doc, expected)) == expected); } SECTION("issue #283 - value() does not work with _json_pointer types") { json j = { {"object", {{"key1", 1}, {"key2", 2}}}, }; int at_integer = j.at("/object/key2"_json_pointer); int val_integer = j.value("/object/key2"_json_pointer, 0); CHECK(at_integer == val_integer); } SECTION("issue #304 - Unused variable warning") { // code triggered a "warning: unused variable" warning and is left // here to avoid the warning in the future json object; json patch = json::array(); object = object.patch(patch); } SECTION("issue #306 - Parsing fails without space at end of file") { for (auto filename : { "test/data/regression/broken_file.json", "test/data/regression/working_file.json" }) { CAPTURE(filename); json j; std::ifstream f(filename); CHECK_NOTHROW(f >> j); } } SECTION("issue #310 - make json_benchmarks no longer working in 2.0.4") { for (auto filename : { "test/data/regression/floats.json", "test/data/regression/signed_ints.json", "test/data/regression/unsigned_ints.json" }) { CAPTURE(filename); json j; std::ifstream f(filename); CHECK_NOTHROW(f >> j); } } SECTION("issue #323 - add nested object capabilities to pointers") { json j; j["/this/that/2"_json_pointer] = 27; CHECK(j == json({{"this", {{"that", {nullptr, nullptr, 27}}}}})); } SECTION("issue #329 - serialized value not always can be parsed") { CHECK_THROWS_AS(json::parse("22e2222"), json::out_of_range&); CHECK_THROWS_WITH(json::parse("22e2222"), "[json.exception.out_of_range.406] number overflow parsing '22e2222'"); } SECTION("issue #360 - Loss of precision when serializing <double>") { auto check_roundtrip = [](double number) { CAPTURE(number); json j = number; CHECK(j.is_number_float()); std::stringstream ss; ss << j; CHECK_NOTHROW(ss >> j); CHECK(j.is_number_float()); CHECK(j.get<json::number_float_t>() == number); }; check_roundtrip(100000000000.1236); check_roundtrip(std::numeric_limits<json::number_float_t>::max()); // Some more numbers which fail to roundtrip when serialized with digits10 significand digits (instead of max_digits10) check_roundtrip(1.541888611948064e-17); check_roundtrip(5.418771028591015e-16); check_roundtrip(9.398685592608595e-15); check_roundtrip(8.826843952762347e-14); check_roundtrip(8.143291313475335e-13); check_roundtrip(4.851328172762508e-12); check_roundtrip(6.677850998084358e-11); check_roundtrip(3.995398518174525e-10); check_roundtrip(1.960452605645124e-9); check_roundtrip(3.551812586302883e-8); check_roundtrip(2.947988411689261e-7); check_roundtrip(8.210166748056192e-6); check_roundtrip(6.104889704266753e-5); check_roundtrip(0.0008629954631330876); check_roundtrip(0.004936993881051611); check_roundtrip(0.08309725102608073); check_roundtrip(0.5210494268499783); check_roundtrip(6.382927930939767); check_roundtrip(59.94947245358671); check_roundtrip(361.0838651266122); check_roundtrip(4678.354596181877); check_roundtrip(61412.17658956043); check_roundtrip(725696.0799057782); check_roundtrip(2811732.583399828); check_roundtrip(30178351.07533605); check_roundtrip(689684880.3235844); check_roundtrip(5714887673.555147); check_roundtrip(84652038821.18808); check_roundtrip(156510583431.7721); check_roundtrip(5938450569021.732); check_roundtrip(83623297654460.33); check_roundtrip(701466573254773.6); check_roundtrip(1369013370304513); check_roundtrip(96963648023094720); check_roundtrip(3.478237409280108e+17); } SECTION("issue #366 - json::parse on failed stream gets stuck") { std::ifstream f("file_not_found.json"); CHECK_THROWS_AS(json::parse(f), json::parse_error&); CHECK_THROWS_WITH(json::parse(f), "[json.exception.parse_error.101] parse error at 1: syntax error - unexpected end of input; expected '[', '{', or a literal"); } SECTION("issue #367 - calling stream at EOF") { std::stringstream ss; json j; ss << "123"; CHECK_NOTHROW(ss >> j); // see https://github.com/nlohmann/json/issues/367#issuecomment-262841893: // ss is not at EOF; this yielded an error before the fix // (threw basic_string::append). No, it should just throw // a parse error because of the EOF. CHECK_THROWS_AS(ss >> j, json::parse_error&); CHECK_THROWS_WITH(ss >> j, "[json.exception.parse_error.101] parse error at 1: syntax error - unexpected end of input; expected '[', '{', or a literal"); } SECTION("issue #367 - behavior of operator>> should more closely resemble that of built-in overloads") { SECTION("(empty)") { std::stringstream ss; json j; CHECK_THROWS_AS(ss >> j, json::parse_error&); CHECK_THROWS_WITH(ss >> j, "[json.exception.parse_error.101] parse error at 1: syntax error - unexpected end of input; expected '[', '{', or a literal"); } SECTION("(whitespace)") { std::stringstream ss; ss << " "; json j; CHECK_THROWS_AS(ss >> j, json::parse_error&); CHECK_THROWS_WITH(ss >> j, "[json.exception.parse_error.101] parse error at 1: syntax error - unexpected end of input; expected '[', '{', or a literal"); } SECTION("one value") { std::stringstream ss; ss << "111"; json j; CHECK_NOTHROW(ss >> j); CHECK(j == 111); CHECK_THROWS_AS(ss >> j, json::parse_error&); CHECK_THROWS_WITH(ss >> j, "[json.exception.parse_error.101] parse error at 1: syntax error - unexpected end of input; expected '[', '{', or a literal"); } SECTION("one value + whitespace") { std::stringstream ss; ss << "222 \t\n"; json j; CHECK_NOTHROW(ss >> j); CHECK(j == 222); CHECK_THROWS_AS(ss >> j, json::parse_error&); CHECK_THROWS_WITH(ss >> j, "[json.exception.parse_error.101] parse error at 1: syntax error - unexpected end of input; expected '[', '{', or a literal"); } SECTION("whitespace + one value") { std::stringstream ss; ss << "\n\t 333"; json j; CHECK_NOTHROW(ss >> j); CHECK(j == 333); CHECK_THROWS_AS(ss >> j, json::parse_error&); CHECK_THROWS_WITH(ss >> j, "[json.exception.parse_error.101] parse error at 1: syntax error - unexpected end of input; expected '[', '{', or a literal"); } SECTION("three values") { std::stringstream ss; ss << " 111 \n222\n \n 333"; json j; CHECK_NOTHROW(ss >> j); CHECK(j == 111); CHECK_NOTHROW(ss >> j); CHECK(j == 222); CHECK_NOTHROW(ss >> j); CHECK(j == 333); CHECK_THROWS_AS(ss >> j, json::parse_error&); CHECK_THROWS_WITH(ss >> j, "[json.exception.parse_error.101] parse error at 1: syntax error - unexpected end of input; expected '[', '{', or a literal"); } SECTION("literals without whitespace") { std::stringstream ss; ss << "truefalsenull\"\""; json j; CHECK_NOTHROW(ss >> j); CHECK(j == true); CHECK_NOTHROW(ss >> j); CHECK(j == false); CHECK_NOTHROW(ss >> j); CHECK(j == nullptr); CHECK_NOTHROW(ss >> j); CHECK(j == ""); CHECK_THROWS_AS(ss >> j, json::parse_error&); CHECK_THROWS_WITH(ss >> j, "[json.exception.parse_error.101] parse error at 1: syntax error - unexpected end of input; expected '[', '{', or a literal"); } SECTION("example from #529") { std::stringstream ss; ss << "{\n \"one\" : 1,\n \"two\" : 2\n}\n{\n \"three\" : 3\n}"; json j; CHECK_NOTHROW(ss >> j); CHECK(j == json({{"one", 1}, {"two", 2}})); CHECK_NOTHROW(ss >> j); CHECK(j == json({{"three", 3}})); CHECK_THROWS_AS(ss >> j, json::parse_error&); CHECK_THROWS_WITH(ss >> j, "[json.exception.parse_error.101] parse error at 1: syntax error - unexpected end of input; expected '[', '{', or a literal"); } SECTION("second example from #529") { std::string str = "{\n\"one\" : 1,\n\"two\" : 2\n}\n{\n\"three\" : 3\n}"; { std::ofstream file("test.json"); file << str; } std::ifstream stream("test.json", std::ifstream::in); json val; size_t i = 0; while (stream.peek() != EOF) { CAPTURE(i); CHECK_NOTHROW(stream >> val); CHECK(i < 2); if (i == 0) { CHECK(val == json({{"one", 1}, {"two", 2}})); } if (i == 1) { CHECK(val == json({{"three", 3}})); } ++i; } std::remove("test.json"); } } SECTION("issue #389 - Integer-overflow (OSS-Fuzz issue 267)") { // original test case json j1 = json::parse("-9223372036854775808"); CHECK(j1.is_number_integer()); CHECK(j1.get<json::number_integer_t>() == INT64_MIN); // edge case (+1; still an integer) json j2 = json::parse("-9223372036854775807"); CHECK(j2.is_number_integer()); CHECK(j2.get<json::number_integer_t>() == INT64_MIN + 1); // edge case (-1; overflow -> floats) json j3 = json::parse("-9223372036854775809"); CHECK(j3.is_number_float()); } SECTION("issue #380 - bug in overflow detection when parsing integers") { json j = json::parse("166020696663385964490"); CHECK(j.is_number_float()); CHECK(j.get<json::number_float_t>() == 166020696663385964490.0); } SECTION("issue #405 - Heap-buffer-overflow (OSS-Fuzz issue 342)") { // original test case std::vector<uint8_t> vec {0x65, 0xf5, 0x0a, 0x48, 0x21}; CHECK_THROWS_AS(json::from_cbor(vec), json::parse_error&); CHECK_THROWS_WITH(json::from_cbor(vec), "[json.exception.parse_error.110] parse error at 6: unexpected end of input"); } SECTION("issue #407 - Heap-buffer-overflow (OSS-Fuzz issue 343)") { // original test case: incomplete float64 std::vector<uint8_t> vec1 {0xcb, 0x8f, 0x0a}; CHECK_THROWS_AS(json::from_msgpack(vec1), json::parse_error&); CHECK_THROWS_WITH(json::from_msgpack(vec1), "[json.exception.parse_error.110] parse error at 4: unexpected end of input"); // related test case: incomplete float32 std::vector<uint8_t> vec2 {0xca, 0x8f, 0x0a}; CHECK_THROWS_AS(json::from_msgpack(vec2), json::parse_error&); CHECK_THROWS_WITH(json::from_msgpack(vec2), "[json.exception.parse_error.110] parse error at 4: unexpected end of input"); // related test case: incomplete Half-Precision Float (CBOR) std::vector<uint8_t> vec3 {0xf9, 0x8f}; CHECK_THROWS_AS(json::from_cbor(vec3), json::parse_error&); CHECK_THROWS_WITH(json::from_cbor(vec3), "[json.exception.parse_error.110] parse error at 3: unexpected end of input"); // related test case: incomplete Single-Precision Float (CBOR) std::vector<uint8_t> vec4 {0xfa, 0x8f, 0x0a}; CHECK_THROWS_AS(json::from_cbor(vec4), json::parse_error&); CHECK_THROWS_WITH(json::from_cbor(vec4), "[json.exception.parse_error.110] parse error at 4: unexpected end of input"); // related test case: incomplete Double-Precision Float (CBOR) std::vector<uint8_t> vec5 {0xfb, 0x8f, 0x0a}; CHECK_THROWS_AS(json::from_cbor(vec5), json::parse_error&); CHECK_THROWS_WITH(json::from_cbor(vec5), "[json.exception.parse_error.110] parse error at 4: unexpected end of input"); } SECTION("issue #408 - Heap-buffer-overflow (OSS-Fuzz issue 344)") { // original test case std::vector<uint8_t> vec1 {0x87}; CHECK_THROWS_AS(json::from_msgpack(vec1), json::parse_error&); CHECK_THROWS_WITH(json::from_msgpack(vec1), "[json.exception.parse_error.110] parse error at 2: unexpected end of input"); // more test cases for MessagePack for (auto b : { 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, // fixmap 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, // fixarray 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, // fixstr 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf }) { std::vector<uint8_t> vec(1, static_cast<uint8_t>(b)); CHECK_THROWS_AS(json::from_msgpack(vec), json::parse_error&); } // more test cases for CBOR for (auto b : { 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, // UTF-8 string 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, // array 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf, 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7 // map }) { std::vector<uint8_t> vec(1, static_cast<uint8_t>(b)); CHECK_THROWS_AS(json::from_cbor(vec), json::parse_error&); } // special case: empty input std::vector<uint8_t> vec2; CHECK_THROWS_AS(json::from_cbor(vec2), json::parse_error&); CHECK_THROWS_WITH(json::from_cbor(vec2), "[json.exception.parse_error.110] parse error at 1: unexpected end of input"); CHECK_THROWS_AS(json::from_msgpack(vec2), json::parse_error&); CHECK_THROWS_WITH(json::from_msgpack(vec2), "[json.exception.parse_error.110] parse error at 1: unexpected end of input"); } SECTION("issue #411 - Heap-buffer-overflow (OSS-Fuzz issue 366)") { // original test case: empty UTF-8 string (indefinite length) std::vector<uint8_t> vec1 {0x7f}; CHECK_THROWS_AS(json::from_cbor(vec1), json::parse_error&); CHECK_THROWS_WITH(json::from_cbor(vec1), "[json.exception.parse_error.110] parse error at 2: unexpected end of input"); // related test case: empty array (indefinite length) std::vector<uint8_t> vec2 {0x9f}; CHECK_THROWS_AS(json::from_cbor(vec2), json::parse_error&); CHECK_THROWS_WITH(json::from_cbor(vec2), "[json.exception.parse_error.110] parse error at 2: unexpected end of input"); // related test case: empty map (indefinite length) std::vector<uint8_t> vec3 {0xbf}; CHECK_THROWS_AS(json::from_cbor(vec3), json::parse_error&); CHECK_THROWS_WITH(json::from_cbor(vec3), "[json.exception.parse_error.110] parse error at 2: unexpected end of input"); } SECTION("issue #412 - Heap-buffer-overflow (OSS-Fuzz issue 367)") { // original test case std::vector<uint8_t> vec { 0xab, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x00, 0x00, 0x00, 0x60, 0xab, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x98, 0x00, 0x00, 0x00, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0xa0, 0x9f, 0x9f, 0x97, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60, 0x60 }; CHECK_THROWS_AS(json::from_cbor(vec), json::parse_error&); CHECK_THROWS_WITH(json::from_cbor(vec), "[json.exception.parse_error.113] parse error at 2: expected a CBOR string; last byte: 0x98"); // related test case: nonempty UTF-8 string (indefinite length) std::vector<uint8_t> vec1 {0x7f, 0x61, 0x61}; CHECK_THROWS_AS(json::from_cbor(vec1), json::parse_error&); CHECK_THROWS_WITH(json::from_cbor(vec1), "[json.exception.parse_error.110] parse error at 4: unexpected end of input"); // related test case: nonempty array (indefinite length) std::vector<uint8_t> vec2 {0x9f, 0x01}; CHECK_THROWS_AS(json::from_cbor(vec2), json::parse_error&); CHECK_THROWS_WITH(json::from_cbor(vec2), "[json.exception.parse_error.110] parse error at 3: unexpected end of input"); // related test case: nonempty map (indefinite length) std::vector<uint8_t> vec3 {0xbf, 0x61, 0x61, 0x01}; CHECK_THROWS_AS(json::from_cbor(vec3), json::parse_error&); CHECK_THROWS_WITH(json::from_cbor(vec3), "[json.exception.parse_error.110] parse error at 5: unexpected end of input"); } SECTION("issue #414 - compare with literal 0)") { #define CHECK_TYPE(v) \ CHECK((json(v) == v));\ CHECK((v == json(v)));\ CHECK_FALSE((json(v) != v));\ CHECK_FALSE((v != json(v))); CHECK_TYPE(nullptr); CHECK_TYPE(0); CHECK_TYPE(0u); CHECK_TYPE(0L); CHECK_TYPE(0.0); CHECK_TYPE(""); #undef CHECK_TYPE } SECTION("issue #416 - Use-of-uninitialized-value (OSS-Fuzz issue 377)") { // original test case std::vector<uint8_t> vec1 { 0x94, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0x3a, 0x96, 0x96, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0x71, 0xb4, 0xb4, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0x3a, 0x96, 0x96, 0xb4, 0xb4, 0xfa, 0x94, 0x94, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0xfa }; CHECK_THROWS_AS(json::from_cbor(vec1), json::parse_error&); CHECK_THROWS_WITH(json::from_cbor(vec1), "[json.exception.parse_error.113] parse error at 13: expected a CBOR string; last byte: 0xB4"); // related test case: double-precision std::vector<uint8_t> vec2 { 0x94, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0x3a, 0x96, 0x96, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0xb4, 0x71, 0xb4, 0xb4, 0xfa, 0xfa, 0xfa, 0xfa, 0xfa, 0x3a, 0x96, 0x96, 0xb4, 0xb4, 0xfa, 0x94, 0x94, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0x61, 0xfb }; CHECK_THROWS_AS(json::from_cbor(vec2), json::parse_error&); CHECK_THROWS_WITH(json::from_cbor(vec2), "[json.exception.parse_error.113] parse error at 13: expected a CBOR string; last byte: 0xB4"); } SECTION("issue #452 - Heap-buffer-overflow (OSS-Fuzz issue 585)") { std::vector<uint8_t> vec = {'-', '0', '1', '2', '2', '7', '4'}; CHECK_THROWS_AS(json::parse(vec), json::parse_error&); } SECTION("issue #454 - doubles are printed as integers") { json j = R"({"bool_value":true,"double_value":2.0,"int_value":10,"level1":{"list_value":[3,"hi",false],"tmp":5.0},"string_value":"hello"})"_json; CHECK(j["double_value"].is_number_float()); } SECTION("issue #464 - VS2017 implicit to std::string conversion fix") { json v = "test"; std::string test; test = v; CHECK(v == "test"); } SECTION("issue #465 - roundtrip error while parsing 1000000000000000010E5") { json j1 = json::parse("1000000000000000010E5"); std::string s1 = j1.dump(); json j2 = json::parse(s1); std::string s2 = j2.dump(); CHECK(s1 == s2); } SECTION("issue #473 - inconsistent behavior in conversion to array type") { json j_array = {1, 2, 3, 4}; json j_number = 42; json j_null = nullptr; SECTION("std::vector") { auto create = [](const json & j) { std::vector<int> v = j; }; CHECK_NOTHROW(create(j_array)); CHECK_THROWS_AS(create(j_number), json::type_error&); CHECK_THROWS_WITH(create(j_number), "[json.exception.type_error.302] type must be array, but is number"); CHECK_THROWS_AS(create(j_null), json::type_error&); CHECK_THROWS_WITH(create(j_null), "[json.exception.type_error.302] type must be array, but is null"); } SECTION("std::list") { auto create = [](const json & j) { std::list<int> v = j; }; CHECK_NOTHROW(create(j_array)); CHECK_THROWS_AS(create(j_number), json::type_error&); CHECK_THROWS_WITH(create(j_number), "[json.exception.type_error.302] type must be array, but is number"); CHECK_THROWS_AS(create(j_null), json::type_error&); CHECK_THROWS_WITH(create(j_null), "[json.exception.type_error.302] type must be array, but is null"); } SECTION("std::forward_list") { auto create = [](const json & j) { std::forward_list<int> v = j; }; CHECK_NOTHROW(create(j_array)); CHECK_THROWS_AS(create(j_number), json::type_error&); CHECK_THROWS_WITH(create(j_number), "[json.exception.type_error.302] type must be array, but is number"); CHECK_THROWS_AS(create(j_null), json::type_error&); CHECK_THROWS_WITH(create(j_null), "[json.exception.type_error.302] type must be array, but is null"); } } SECTION("issue #486 - json::value_t can't be a map's key type in VC++ 2015") { // the code below must compile with MSVC std::map<json::value_t, std::string> jsonTypes ; jsonTypes[json::value_t::array] = "array"; } SECTION("issue #494 - conversion from vector<bool> to json fails to build") { std::vector<bool> boolVector = {false, true, false, false}; json j; j["bool_vector"] = boolVector; CHECK(j["bool_vector"].dump() == "[false,true,false,false]"); } SECTION("issue #504 - assertion error (OSS-Fuzz 856)") { std::vector<uint8_t> vec1 = {0xf9, 0xff, 0xff, 0x4a, 0x3a, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x37, 0x02, 0x38}; json j1 = json::from_cbor(vec1, false); // step 2: round trip std::vector<uint8_t> vec2 = json::to_cbor(j1); // parse serialization json j2 = json::from_cbor(vec2); // NaN is dumped to "null" CHECK(j2.is_number_float()); CHECK(std::isnan(j2.get<json::number_float_t>())); CHECK(j2.dump() == "null"); // check if serializations match CHECK(json::to_cbor(j2) == vec2); } SECTION("issue #512 - use of overloaded operator '<=' is ambiguous") { json j; j["a"] = 5; // json op scalar CHECK(j["a"] == 5); CHECK(j["a"] != 4); CHECK(j["a"] <= 7); CHECK(j["a"] < 7); CHECK(j["a"] >= 3); CHECK(j["a"] > 3); CHECK(not(j["a"] <= 4)); CHECK(not(j["a"] < 4)); CHECK(not(j["a"] >= 6)); CHECK(not(j["a"] > 6)); // scalar op json CHECK(5 == j["a"]); CHECK(4 != j["a"]); CHECK(7 >= j["a"]); CHECK(7 > j["a"]); CHECK(3 <= j["a"]); CHECK(3 < j["a"]); CHECK(not(4 >= j["a"])); CHECK(not(4 > j["a"])); CHECK(not(6 <= j["a"])); CHECK(not(6 < j["a"])); } SECTION("issue #575 - heap-buffer-overflow (OSS-Fuzz 1400)") { std::vector<uint8_t> vec = {'"', '\\', '"', 'X', '"', '"'}; CHECK_THROWS_AS(json::parse(vec), json::parse_error&); } SECTION("issue #600 - how does one convert a map in Json back to std::map?") { SECTION("example 1") { // create a map std::map<std::string, int> m1 {{"key", 1}}; // create and print a JSON from the map json j = m1; // get the map out of JSON std::map<std::string, int> m2 = j; // make sure the roundtrip succeeds CHECK(m1 == m2); } SECTION("example 2") { // create a map std::map<std::string, std::string> m1 {{"key", "val"}}; // create and print a JSON from the map json j = m1; // get the map out of JSON std::map<std::string, std::string> m2 = j; // make sure the roundtrip succeeds CHECK(m1 == m2); } } SECTION("issue #602 - BOM not skipped when using json:parse(iterator)") { std::string i = "\xef\xbb\xbf{\n \"foo\": true\n}"; CHECK_NOTHROW(json::parse(i.begin(), i.end())); } SECTION("issue #702 - conversion from valarray<double> to json fails to build") { SECTION("original example") { std::valarray<double> v; nlohmann::json j; j["test"] = v; } SECTION("full example") { std::valarray<double> v = {1.2, 2.3, 3.4, 4.5}; json j = v; std::valarray<double> vj = j; CHECK(j == json(vj)); CHECK(v.size() == vj.size()); for (size_t i = 0; i < v.size(); ++i) { CHECK(v[i] == vj[i]); CHECK(v[i] == j[i]); } CHECK_THROWS_AS(json().get<std::valarray<double>>(), json::type_error&); CHECK_THROWS_WITH(json().get<std::valarray<double>>(), "[json.exception.type_error.302] type must be array, but is null"); } } SECTION("issue #367 - Behavior of operator>> should more closely resemble that of built-in overloads.") { SECTION("example 1") { std::istringstream i1_2_3( "{\"first\": \"one\" }{\"second\": \"two\"}3" ); json j1, j2, j3; i1_2_3 >> j1; i1_2_3 >> j2; i1_2_3 >> j3; std::map<std::string, std::string> m1 = j1; std::map<std::string, std::string> m2 = j2; int i3 = j3; CHECK( m1 == ( std::map<std::string, std::string> {{ "first", "one" }} )); CHECK( m2 == ( std::map<std::string, std::string> {{ "second", "two" }} )); CHECK( i3 == 3 ); } } SECTION("issue #714 - throw std::ios_base::failure exception when failbit set to true") { { std::ifstream is; is.exceptions( is.exceptions() | std::ios_base::failbit | std::ios_base::badbit ); // handle different exceptions as 'file not found', 'permission denied' is.open("test/data/regression/working_file.json"); CHECK_NOTHROW(nlohmann::json::parse(is)); } { std::ifstream is; is.exceptions( is.exceptions() | std::ios_base::failbit | std::ios_base::badbit ); // handle different exceptions as 'file not found', 'permission denied' is.open("test/data/json_nlohmann_tests/all_unicode.json.cbor", std::ios_base::in | std::ios_base::binary); CHECK_NOTHROW(nlohmann::json::from_cbor(is)); } } SECTION("issue #805 - copy constructor is used with std::initializer_list constructor.") { nocopy n; json j; j = {{"nocopy", n}}; CHECK(j["nocopy"]["val"] == 0); } SECTION("issue #838 - incorrect parse error with binary data in keys") { uint8_t key1[] = { 103, 92, 117, 48, 48, 48, 55, 92, 114, 215, 126, 214, 95, 92, 34, 174, 40, 71, 38, 174, 40, 71, 38, 223, 134, 247, 127 }; std::string key1_str(key1, key1 + sizeof(key1) / sizeof(key1[0])); json j = key1_str; CHECK_THROWS_AS(j.dump(), json::type_error&); CHECK_THROWS_WITH(j.dump(), "[json.exception.type_error.316] invalid UTF-8 byte at index 10: 0x7E"); } SECTION("issue #843 - converting to array not working") { json j; std::array<int, 4> ar = {{1, 1, 1, 1}}; j = ar; ar = j; } SECTION("issue #894 - invalid RFC6902 copy operation succeeds") { auto model = R"({ "one": { "two": { "three": "hello", "four": 42 } } })"_json; CHECK_THROWS_AS(model.patch(R"([{"op": "move", "from": "/one/two/three", "path": "/a/b/c"}])"_json), json::out_of_range&); CHECK_THROWS_WITH(model.patch(R"([{"op": "move", "from": "/one/two/three", "path": "/a/b/c"}])"_json), "[json.exception.out_of_range.403] key 'a' not found"); CHECK_THROWS_AS(model.patch(R"([{"op": "copy", "from": "/one/two/three", "path": "/a/b/c"}])"_json), json::out_of_range&); CHECK_THROWS_WITH(model.patch(R"([{"op": "copy", "from": "/one/two/three", "path": "/a/b/c"}])"_json), "[json.exception.out_of_range.403] key 'a' not found"); } SECTION("issue #961 - incorrect parsing of indefinite length CBOR strings") { std::vector<uint8_t> v_cbor = { 0x7F, 0x64, 'a', 'b', 'c', 'd', 0x63, '1', '2', '3', 0xFF }; json j = json::from_cbor(v_cbor); CHECK(j == "abcd123"); } SECTION("issue #962 - Timeout (OSS-Fuzz 6034)") { std::vector<uint8_t> v_ubjson = {'[', '$', 'Z', '#', 'L', 0x78, 0x28, 0x00, 0x68, 0x28, 0x69, 0x69, 0x17}; CHECK_THROWS_AS(json::from_ubjson(v_ubjson), json::out_of_range&); //CHECK_THROWS_WITH(json::from_ubjson(v_ubjson), // "[json.exception.out_of_range.408] excessive array size: 8658170730974374167"); v_ubjson[0] = '{'; CHECK_THROWS_AS(json::from_ubjson(v_ubjson), json::out_of_range&); //CHECK_THROWS_WITH(json::from_ubjson(v_ubjson), // "[json.exception.out_of_range.408] excessive object size: 8658170730974374167"); } SECTION("issue #972 - Segmentation fault on G++ when trying to assign json string literal to custom json type") { my_json foo = R"([1, 2, 3])"_json; } SECTION("issue #977 - Assigning between different json types") { foo_json lj = ns::foo{3}; ns::foo ff = lj; CHECK(lj.is_object()); CHECK(lj.size() == 1); CHECK(lj["x"] == 3); CHECK(ff.x == 3); nlohmann::json nj = lj; // This line works as expected } SECTION("issue #1001 - Fix memory leak during parser callback") { auto geojsonExample = R"( { "type": "FeatureCollection", "features": [ { "type": "Feature", "geometry": {"type": "Point", "coordinates": [102.0, 0.5]}, "properties": {"prop0": "value0"} }, { "type": "Feature", "geometry": { "type": "LineString", "coordinates": [ [102.0, 0.0], [103.0, 1.0], [104.0, 0.0], [105.0, 1.0] ] }, "properties": { "prop0": "value0", "prop1": 0.0 } }, { "type": "Feature", "geometry": { "type": "Polygon", "coordinates": [ [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] ] ] }, "properties": { "prop0": "value0", "prop1": {"this": "that"} } } ] })"; json::parser_callback_t cb = [&](int, json::parse_event_t event, json & parsed) { // skip uninteresting events if (event == json::parse_event_t::value and !parsed.is_primitive()) { return false; } switch (event) { case json::parse_event_t::key: { return true; } case json::parse_event_t::value: { return false; } case json::parse_event_t::object_start: { return true; } case json::parse_event_t::object_end: { return false; } case json::parse_event_t::array_start: { return true; } case json::parse_event_t::array_end: { return false; } default: { return true; } } }; auto j = json::parse(geojsonExample, cb, true); CHECK(j == json()); } SECTION("issue #1021 - to/from_msgpack only works with standard typization") { float_json j = 1000.0; CHECK(float_json::from_cbor(float_json::to_cbor(j)) == j); CHECK(float_json::from_msgpack(float_json::to_msgpack(j)) == j); CHECK(float_json::from_ubjson(float_json::to_ubjson(j)) == j); float_json j2 = {1000.0, 2000.0, 3000.0}; CHECK(float_json::from_ubjson(float_json::to_ubjson(j2, true, true)) == j2); } }
[ "rodrigosoaresilva@gmail.com" ]
rodrigosoaresilva@gmail.com
6e02491c535cc5cb079dd33f7b4e9624ea33fb08
51635c1a1135b979b47e4fc35fdf2b5421192d96
/lava/framework/core/options/commandpooloptions.h
90e8f771745b7f6f91b158100a5b246564954995
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
BalderOdinson/LavaVk
4b980166f44945e62b0f401d4da8e8ce94cf316a
f3241e1077bbfc8bbf14267d35e9c72272fceefa
refs/heads/master
2020-12-15T16:50:08.354426
2020-01-24T05:09:57
2020-01-24T05:09:57
235,183,993
0
0
null
null
null
null
UTF-8
C++
false
false
918
h
// // Created by dorian on 09. 12. 2019.. // #ifndef LAVAVK_COMMANDPOOLOPTIONS_H #define LAVAVK_COMMANDPOOLOPTIONS_H #include <numeric> #include "lava/framework/object.h" #include "lava/framework/core/commandbuffer.h" #include "lava/framework/rendering/renderframe.h" namespace LavaVk::Core { class CommandPoolOptions : public virtual Object { public: explicit CommandPoolOptions(CommandBuffer::ResetMode resetMode, bool releaseOnReset, uint32_t queueFamilyIndex, uint32_t threadIndex, SharedRenderFrame frame = nullptr); CommandBuffer::ResetMode resetMode; uint32_t queueFamilyIndex; /// Set to true if pool should release resources on reset. bool releaseOnReset; uint32_t threadIndex; SharedRenderFrame frame; std::type_index getType() const override; }; } #endif //LAVAVK_COMMANDPOOLOPTIONS_H
[ "dorianb2@hotmail.com" ]
dorianb2@hotmail.com
933e4c6d1191acc134f4302de503110d47d9249a
5472b7908072725312fdc0661eedde0f26d5c773
/Learner.h
ddd113a6719295951be863469f155065c19c71be
[]
no_license
grizzlytheodore/simple-chatter-bot
2c79abf275fc19438462b995688eddfe033a55c0
27196e323f52f79801089f13a9b3671e2bc44fb3
refs/heads/master
2020-07-09T23:10:39.682019
2017-06-13T22:32:27
2017-06-13T22:32:27
94,263,583
0
0
null
null
null
null
UTF-8
C++
false
false
396
h
#ifndef _LEARNER_H #define _LEARNER_H #include <iostream> #include <fstream> #include "voice.h" using namespace std; class Learner { public: void respond(string phrase); //used to get, or teach a response void say(string phrase); // used to textually and audibly communicate a phrase Voice voice; //the Learner's voice that will audibly communicate a response }; #endif
[ "noreply@github.com" ]
noreply@github.com
29059365e867cb262cef70808756625b91483641
93f328e10b5b02ac0cdb4afdf1a84db83bcadfa5
/dex/7/29.cpp
0e95a4908a7e840e343093e39070d204d7a06e04
[]
no_license
missingjs/mustard
184eba4e9abe698716a3f540b7518c5da73055e9
ad4cf820a6bdfa8535c07dbdfdaf57f0e3caed96
refs/heads/master
2022-02-27T12:34:32.393355
2016-08-21T16:00:21
2016-08-21T16:00:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
374
cpp
// @mission: 以邻接矩阵方式存储的有向图G中求点i到顶点j的不含回路的、长度为k的路径数 #include "29.def.h" int main() { graph_t * g = graph::read_graph<graph_t>(); char i, j; int k = -1; std::cin >> i >> j >> k; int r = find_num_of_path(g, i, j, k); std::cout << '[' << r << ']' << '\n'; delete g; return 0; }
[ "venux021@outlook.com" ]
venux021@outlook.com
8550ae723919d8af09b4a9b892126cb4f62a6854
ab295cf93eb119b01d6fe86f318734d8a2a2ae3c
/src/main.cc
9885c8708f9fa8e320157701af644bf3699bd1e3
[ "MIT" ]
permissive
sakshiigupta/betweenness-centrality
ac235d262e98e2c59238b898bd790f5095f01c4b
66805ed0e290ac52a7bf951851976dbb9a734673
refs/heads/master
2021-06-10T01:53:37.381158
2017-01-08T11:27:56
2017-01-08T11:27:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,212
cc
#include <iostream> #include <fstream> #include <string> #include "brandes.h" #include "graph.h" #include "utils.h" int main(int argc, char* argv[]) { if (argc != 4) { std::cerr << "Invalid parameters!" << std::endl << "Usage: " << argv[0] << " [number of threads] [input file] [output file]" << std::endl; return -1; } int threads = std::stoi(argv[1]); if (threads <= 0) { std::cerr << "Number of threads must be more than 0" << std::endl; return -1; } std::ifstream in_file; std::ofstream out_file; in_file.open(argv[2]); out_file.open(argv[3]); if (!in_file.good()) { std::cerr << "[ERROR] " << "Error while opening input file" << std::endl; return -1; } if (!out_file.good()) { std::cerr << "[ERROR] " << "Error while opening output file" << std::endl; return -1; } Graph<int> g; loadGraph(in_file, g); in_file.close(); Brandes<int> brandes(g); brandes.run(threads); for (auto p : brandes.get_result_vector()) { out_file << p.first << " " << p.second << std::endl; } out_file.close(); }
[ "hubert.jasudowicz@gmail.com" ]
hubert.jasudowicz@gmail.com
79ab60e1fb389f6f0bc0fd1a4493b1141a9a3319
0fe91382573236552628c0ceeedd027ee7c7b776
/cracking-the-coding-interview/trees-and-graphs/4.3-minimal_height.cpp
3469e2a565d1d0ea857b6041567e57b398613494
[]
no_license
mysteryDate/programming-exercises
3f7e2715a03e90899ad7368e208a7c675dc9e980
517437da46be3cb5ab29232041b2f06071796ef3
refs/heads/master
2020-03-18T20:39:48.753145
2018-06-03T22:49:31
2018-06-03T22:49:31
135,230,354
0
0
null
null
null
null
UTF-8
C++
false
false
154
cpp
// 43 Given a sorted (increasing order) array, write an algorithm to create a binary tree with minimal height class TreeNode { public: int value; }
[ "ak@aaronk.is" ]
ak@aaronk.is
dd8121d04eaccf65b441c1924d70e16cbaaedbb8
c079199a88410ddf8bc4ce70bc672759c7744e0d
/Challenge 27/c27_intermediate.cpp
d9b8816f9a990b5c2df5566fc701ad9720f435d3
[]
no_license
BaronDaugherty/DailyProgrammer
72f4b886efd800c528999cf101607512bb2498b0
21926c6d347ac0f87dc8ee029428e8ecfec21cba
refs/heads/master
2021-01-19T06:18:06.733307
2015-10-04T01:50:06
2015-10-04T01:50:06
28,156,275
0
0
null
null
null
null
UTF-8
C++
false
false
960
cpp
/* Daily Programmer Challenge 27 : Intermediate @author: Baron Daugherty @date: 2015-09-18 @desc: Write a program that accepts a year as input and outputs what day St. Patrick's day falls on. Bonus: Print out the number of times St. Patrick's day falls on a Saturday for this century. */ /* INCLUDES and NAMESPACES */ #include<iostream> #include "weekday.h" //calculate function #include<string> using namespace std; /* FUNCTIONS */ int main() { //SPD is 3/17, year, and days of week const uint16_t MONTH = 3; const uint16_t DAY = 17; uint16_t year; string days_of_week[7] = { "SUNDAY", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY" }; //get the year (1900 is lowest acceptable in weekday.h) cout << "Please enter a year(>=1900): "; cin >> year; //output cout << days_of_week[calculate(year, MONTH, DAY)] << endl; //hunk-dory system("pause"); return 0; } //END main
[ "bd4430@gmail.com" ]
bd4430@gmail.com
ebe05270d3d2966e1743961f32e6817f7674c1ab
aa333a8367cbc303d5d34a10f8290395ce2ff843
/composition/generator_range.h
3d3d8ba4e1af1a0a9fbb42b1d12ebbbee1d19392
[ "BSL-1.0" ]
permissive
snawaz/foam
7c3f99e45bd4f570260e4ba9202b6d09b800bb82
e471c5af3fe62b012071042f0b4f07d49128ed7e
refs/heads/master
2021-01-10T03:33:26.995241
2013-12-13T04:47:11
2013-12-13T04:47:11
8,515,107
6
3
null
null
null
null
UTF-8
C++
false
false
2,963
h
/* * * (C) Copyright Sarfaraz Nawaz 2013-14, sir_nawaz959@yahoo.com * * * 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) * */ #pragma once #include <iterator> #include <utility> #include <type_traits> #include "utility.h" #include "container_traits.h" #include "range_iterator.h" #include "../optional.h" namespace foam { namespace composition { template<typename Range> class from_range { typedef from_range<Range> self_type; typedef typename container_traits<Range>::iterator iiterator; public: typedef range_iterator<self_type, iiterator> iterator; typedef typename container_traits<Range>::value_type value_type; from_range(Range * range) : _range(range) {} iterator begin() { return { this, ibegin() }; } iterator end() { return { this, iend() }; } template<typename PipelineBuilder> auto operator | (PipelineBuilder builder) -> decltype(std::declval<PipelineBuilder>()(std::declval<self_type>())) { return builder(*this); } private: friend iterator; iiterator ibegin() { using std::begin; return begin(*_range); } iiterator iend() { using std::end; return end(*_range); } iiterator next(iiterator it) { return ++it; } value_type value(iiterator it) { return *it; } private: Range *_range; }; template<typename UnaryGenerator> class generate_range { typedef generate_range<UnaryGenerator> self_type; typedef typename functor_traits<UnaryGenerator>::result_type result_type; typedef result_type arg_type; typedef optional<result_type> iiterator; public: typedef range_iterator<self_type, iiterator> iterator; typedef result_type value_type; generate_range(arg_type start, UnaryGenerator generator) : _start(start), _generator(generator) {} iterator begin() { using std::begin; return { this, iiterator(_start) }; } iterator end() { using std::end; return { this, iiterator() }; } template<typename PipelineBuilder> auto operator | (PipelineBuilder builder) -> decltype(std::declval<PipelineBuilder>()(std::declval<self_type>())) { return builder(*this); } private: friend iterator; iiterator next(iiterator it) { it.value() = _generator(it.value()); return it; } value_type value(iiterator it) { return it.value(); } private: arg_type _start; UnaryGenerator _generator; }; } }
[ "sir_nawaz959@yahoo.com" ]
sir_nawaz959@yahoo.com
7c0280e8b23d72202a7ca233ad9c8ddbd8ea88bc
bb6ebff7a7f6140903d37905c350954ff6599091
/components/bookmarks/browser/bookmark_node_data.h
9fdf9751bf9c8577849036701538a366fbbd3804
[ "BSD-3-Clause" ]
permissive
PDi-Communication-Systems-Inc/lollipop_external_chromium_org
faa6602bd6bfd9b9b6277ce3cd16df0bd26e7f2f
ccadf4e63dd34be157281f53fe213d09a8c66d2c
refs/heads/master
2022-12-23T18:07:04.568931
2016-04-11T16:03:36
2016-04-11T16:03:36
53,677,925
0
1
BSD-3-Clause
2022-12-09T23:46:46
2016-03-11T15:49:07
C++
UTF-8
C++
false
false
5,643
h
// Copyright 2014 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. #ifndef COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_NODE_DATA_H_ #define COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_NODE_DATA_H_ #include <vector> #include "base/files/file_path.h" #include "base/strings/string16.h" #include "base/time/time.h" #include "components/bookmarks/browser/bookmark_node.h" #include "ui/base/clipboard/clipboard_types.h" #include "url/gurl.h" #if defined(TOOLKIT_VIEWS) #include "ui/base/dragdrop/os_exchange_data.h" #endif class BookmarkModel; class Pickle; class PickleIterator; // BookmarkNodeData is used to represent the following: // // . A single URL. // . A single node from the bookmark model. // . A set of nodes from the bookmark model. // // BookmarkNodeData is used by bookmark related views to represent a dragged // bookmark or bookmarks. // // Typical usage when writing data for a drag is: // BookmarkNodeData data(node_user_is_dragging); // data.Write(os_exchange_data_for_drag); // // Typical usage to read is: // BookmarkNodeData data; // if (data.Read(os_exchange_data)) // // data is valid, contents are in elements. struct BookmarkNodeData { // Element represents a single node. struct Element { Element(); explicit Element(const BookmarkNode* node); ~Element(); // If true, this element represents a URL. bool is_url; // The URL, only valid if is_url is true. GURL url; // Title of the entry, used for both urls and folders. base::string16 title; // Date of when this node was created. base::Time date_added; // Date of the last modification. Only used for folders. base::Time date_folder_modified; // Children, only used for non-URL nodes. std::vector<Element> children; // Meta info for the bookmark node. BookmarkNode::MetaInfoMap meta_info_map; int64 id() const { return id_; } private: friend struct BookmarkNodeData; // For reading/writing this Element. void WriteToPickle(Pickle* pickle) const; bool ReadFromPickle(Pickle* pickle, PickleIterator* iterator); // ID of the node. int64 id_; }; // The MIME type for the clipboard format for BookmarkNodeData. static const char* kClipboardFormatString; BookmarkNodeData(); // Created a BookmarkNodeData populated from the arguments. explicit BookmarkNodeData(const BookmarkNode* node); explicit BookmarkNodeData(const std::vector<const BookmarkNode*>& nodes); ~BookmarkNodeData(); #if defined(TOOLKIT_VIEWS) static const ui::OSExchangeData::CustomFormat& GetBookmarkCustomFormat(); #endif static bool ClipboardContainsBookmarks(); // Reads bookmarks from the given vector. bool ReadFromVector(const std::vector<const BookmarkNode*>& nodes); // Creates a single-bookmark DragData from url/title pair. bool ReadFromTuple(const GURL& url, const base::string16& title); // Writes bookmarks to the specified clipboard. void WriteToClipboard(ui::ClipboardType type); // Reads bookmarks from the specified clipboard. Prefers data written via // WriteToClipboard() but will also attempt to read a plain bookmark. bool ReadFromClipboard(ui::ClipboardType type); #if defined(TOOLKIT_VIEWS) // Writes elements to data. If there is only one element and it is a URL // the URL and title are written to the clipboard in a format other apps can // use. // |profile_path| is used to identify which profile the data came from. Use an // empty path to indicate that the data is not associated with any profile. void Write(const base::FilePath& profile_path, ui::OSExchangeData* data) const; // Restores this data from the clipboard, returning true on success. bool Read(const ui::OSExchangeData& data); #endif // Writes the data for a drag to |pickle|. void WriteToPickle(const base::FilePath& profile_path, Pickle* pickle) const; // Reads the data for a drag from a |pickle|. bool ReadFromPickle(Pickle* pickle); // Returns the nodes represented by this DragData. If this DragData was // created from the same profile then the nodes from the model are returned. // If the nodes can't be found (may have been deleted), an empty vector is // returned. std::vector<const BookmarkNode*> GetNodes( BookmarkModel* model, const base::FilePath& profile_path) const; // Convenience for getting the first node. Returns NULL if the data doesn't // match any nodes or there is more than one node. const BookmarkNode* GetFirstNode(BookmarkModel* model, const base::FilePath& profile_path) const; // Do we contain valid data? bool is_valid() const { return !elements.empty(); } // Returns true if there is a single url. bool has_single_url() const { return is_valid() && elements[0].is_url; } // Number of elements. size_t size() const { return elements.size(); } // Clears the data. void Clear(); // Sets |profile_path_|. This is useful for the constructors/readers that // don't set it. This should only be called if the profile path is not // already set. void SetOriginatingProfilePath(const base::FilePath& profile_path); // Returns true if this data is from the specified profile path. bool IsFromProfilePath(const base::FilePath& profile_path) const; // The actual elements written to the clipboard. std::vector<Element> elements; private: // Path of the profile we originated from. base::FilePath profile_path_; }; #endif // COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_NODE_DATA_H_
[ "mrobbeloth@pdiarm.com" ]
mrobbeloth@pdiarm.com
435c2efd61d9041a3582a21a4430a291873e706d
a2ae5459100439a48989e8c176347608a4e324b7
/bubble.cpp
2aa7821258c0f27f8ec5620919c18622caf43469
[]
no_license
solankidivyam/Assignment1
d69fc9b106c18757c21fbdf65f246281b352c2a9
edf18a650c3d1959b3f9a23497bdaf1e1ef529ec
refs/heads/main
2023-02-16T11:22:00.197916
2021-01-12T09:59:56
2021-01-12T09:59:56
328,718,404
0
1
null
null
null
null
UTF-8
C++
false
false
808
cpp
#include <iostream> using namespace std; void swap(int *xp, int *yp) { int temp = *xp; *xp = *yp; *yp = temp; } //Implementing the bubble sort algorithm void bubbleSort(int arr[], int n) { int i, j; for (i = 0; i < n-1; i++) // Last i elements are already in place for (j = 0; j < n-i-1; j++) if (arr[j] > arr[j+1]) swap(&arr[j], &arr[j+1]); } //Funtion to print the array void printArray(int arr[], int size) { int i; for (i = 0; i < size; i++) cout << arr[i] << " \n"; cout << endl; } int main() { int arr[] = {64, 34, 25, 12, 22, 11, 90, 88, 54, 10}; bubbleSort(arr, 10); cout<<"Sorted array: \n"; printArray(arr, 10); return 0; }
[ "noreply@github.com" ]
noreply@github.com
e210fa357f49ebf16e473a6d6176a82a2583e1d0
1a3aa372805a65da6c28b84daedaaa11af935ca0
/homeBaseType.cpp
a0efaaa91039e05e8c54a20bb175611f755b96d1
[]
no_license
IbrohimI/Smart-Dust-Simulation
fa5750d124aef766a62c829fa55a858bb80e1a08
0e7265eb4ef335357b59f300272efe507caea341
refs/heads/master
2022-10-16T05:32:31.375750
2020-06-12T15:32:58
2020-06-12T15:32:58
271,830,424
0
0
null
null
null
null
UTF-8
C++
false
false
5,488
cpp
#include <iostream> #include <cstdlib> #include <ctime> #include <string> #include <cmath> #include <fstream> #include <list> #include <random> #include "homeBaseType.h" using namespace std; void homeBaseType::plot() { fstream comfout; comfout.open("command.txt",ios::out); comfout<<"set xlabel \"x location\""<<endl; comfout<<"set ylabel \"y location\""<<endl; comfout<<"set xrange [0:100]"<<endl; comfout<<"set yrange [100:0]"<<endl; comfout<<"set terminal png"<<endl; comfout<<"set output \'0.png\'"<<endl; comfout<<"plot \"0.txt\" using 2:1:3 with points pt 7 lc palette notitle, \"\" using 4:5 with points pt 10 notitle, \"\" using 6:7:(sqrt($8)) with circles notitle"<<endl; comfout<<"set output \'5.png\'"<<endl; comfout<<"plot \"5.txt\" using 2:1:3 with points pt 7 lc palette notitle, \"\" using 4:5 with points pt 10 notitle, \"\" using 6:7:(sqrt($8)) with circles notitle"<<endl; comfout<<"set output \'10.png\'"<<endl; comfout<<"plot \"10.txt\" using 2:1:3 with points pt 7 lc palette notitle, \"\" using 4:5 with points pt 10 notitle, \"\" using 6:7:(sqrt($8)) with circles notitle"<<endl; comfout<<"set output \'15.png\'"<<endl; comfout<<"plot \"15.txt\" using 2:1:3 with points pt 7 lc palette notitle, \"\" using 4:5 with points pt 10 notitle, \"\" using 6:7:(sqrt($8)) with circles notitle"<<endl; comfout<<"set output \'20.png\'"<<endl; comfout<<"plot \"20.txt\" using 2:1:3 with points pt 7 lc palette notitle, \"\" using 4:5 with points pt 10 notitle, \"\" using 6:7:(sqrt($8)) with circles notitle"<<endl; comfout<<"set output \'25.png\'"<<endl; comfout<<"plot \"25.txt\" using 2:1:3 with points pt 7 lc palette notitle, \"\" using 4:5 with points pt 10 notitle, \"\" using 6:7:(sqrt($8)) with circles notitle"<<endl; comfout<<"set output \'30.png\'"<<endl; comfout<<"plot \"30.txt\" using 2:1:3 with points pt 7 lc palette notitle, \"\" using 4:5 with points pt 10 notitle, \"\" using 6:7:(sqrt($8)) with circles notitle"<<endl; comfout<<"set output \'35.png\'"<<endl; comfout<<"plot \"35.txt\" using 2:1:3 with points pt 7 lc palette notitle, \"\" using 4:5 with points pt 10 notitle, \"\" using 6:7:(sqrt($8)) with circles notitle"<<endl; comfout<<"set output \'40.png\'"<<endl; comfout<<"plot \"40.txt\" using 2:1:3 with points pt 7 lc palette notitle, \"\" using 4:5 with points pt 10 notitle, \"\" using 6:7:(sqrt($8)) with circles notitle"<<endl; comfout<<"set output \'45.png\'"<<endl; comfout<<"plot \"45.txt\" using 2:1:3 with points pt 7 lc palette notitle, \"\" using 4:5 with points pt 10 notitle, \"\" using 6:7:(sqrt($8)) with circles notitle"<<endl; comfout<<"set output \'50.png\'"<<endl; comfout<<"plot \"50.txt\" using 2:1:3 with points pt 7 lc palette notitle, \"\" using 4:5 with points pt 10 notitle, \"\" using 6:7:(sqrt($8)) with circles notitle"<<endl; comfout<<"set output \'55.png\'"<<endl; comfout<<"plot \"55.txt\" using 2:1:3 with points pt 7 lc palette notitle, \"\" using 4:5 with points pt 10 notitle, \"\" using 6:7:(sqrt($8)) with circles notitle"<<endl; comfout<<"set output \'60.png\'"<<endl; comfout<<"plot \"60.txt\" using 2:1:3 with points pt 7 lc palette notitle, \"\" using 4:5 with points pt 10 notitle, \"\" using 6:7:(sqrt($8)) with circles notitle"<<endl; comfout<<"set output \'65.png\'"<<endl; comfout<<"plot \"65.txt\" using 2:1:3 with points pt 7 lc palette notitle, \"\" using 4:5 with points pt 10 notitle, \"\" using 6:7:(sqrt($8)) with circles notitle"<<endl; comfout<<"set output \'70.png\'"<<endl; comfout<<"plot \"70.txt\" using 2:1:3 with points pt 7 lc palette notitle, \"\" using 4:5 with points pt 10 notitle, \"\" using 6:7:(sqrt($8)) with circles notitle"<<endl; comfout<<"set output \'75.png\'"<<endl; comfout<<"plot \"75.txt\" using 2:1:3 with points pt 7 lc palette notitle, \"\" using 4:5 with points pt 10 notitle, \"\" using 6:7:(sqrt($8)) with circles notitle"<<endl; comfout<<"set output \'80.png\'"<<endl; comfout<<"plot \"80.txt\" using 2:1:3 with points pt 7 lc palette notitle, \"\" using 4:5 with points pt 10 notitle, \"\" using 6:7:(sqrt($8)) with circles notitle"<<endl; comfout<<"set output \'85.png\'"<<endl; comfout<<"plot \"85.txt\" using 2:1:3 with points pt 7 lc palette notitle, \"\" using 4:5 with points pt 10 notitle, \"\" using 6:7:(sqrt($8)) with circles notitle"<<endl; comfout<<"set output \'90.png\'"<<endl; comfout<<"plot \"90.txt\" using 2:1:3 with points pt 7 lc palette notitle, \"\" using 4:5 with points pt 10 notitle, \"\" using 6:7:(sqrt($8)) with circles notitle"<<endl; comfout<<"set output \'95.png\'"<<endl; comfout<<"plot \"95.txt\" using 2:1:3 with points pt 7 lc palette notitle, \"\" using 4:5 with points pt 10 notitle, \"\" using 6:7:(sqrt($8)) with circles notitle"<<endl; comfout<<"pause -1"<<endl; comfout.close(); system("gnuplot command.txt"); return; }
[ "noreply@github.com" ]
noreply@github.com
a68a04d2090ac229ab8f3303588539373b7153bf
00f31e0ba1b8de4f7b15524726ac9a47fd2e1737
/Pandemic/ShuttleFlightAction.cpp
dcd796d8cfea8326fc7ff5fe697212ebfb5fcce0
[]
no_license
simonma1/Comp345-Pandemic
4b3ae611f3da73b27475af758876487e32f397b9
57b9c34aa3a53d6f5434ebd96e292d833b477ab9
refs/heads/master
2021-03-16T08:53:49.514965
2017-04-19T00:48:09
2017-04-19T00:48:09
80,246,903
0
1
null
2017-04-19T00:48:10
2017-01-27T21:20:25
C++
UTF-8
C++
false
false
413
cpp
#include "ShuttleFlightAction.h" void ShuttleFlightAction::act(Player *player) { cout << player->getRole()->getName() << " Is taking a shuttle flight" << endl; } string ShuttleFlightAction::toString() { return "You can perform a shuttle flight"; } ShuttleFlightAction::ShuttleFlightAction(){} ShuttleFlightAction::ShuttleFlightAction(int otherRSLocationId) { this->otherRSLocationId = otherRSLocationId; }
[ "harrison1993@gmail.com" ]
harrison1993@gmail.com
ae473e002d53a44f8c9d71b5a4975b41b71eef19
ddd64761ee9b75f269abb91353a9b2b65b433336
/src/test/timedata_tests.cpp
389be0830f1c5905cbb61a464273bc934dd708d3
[ "MIT" ]
permissive
faridsany/deuscoin-core
1ec6c7dbe4c41427f8cf3253b3d6e08c6e1014db
907e444d2b3bb5424665efabd692f02c4bccd8de
refs/heads/master
2020-04-09T17:30:27.626145
2017-11-15T16:23:10
2017-11-15T16:23:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,021
cpp
// Copyright (c) 2011-2015 The Deuscoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. // #include "timedata.h" #include "test/test_deuscoin.h" #include <boost/test/unit_test.hpp> using namespace std; BOOST_FIXTURE_TEST_SUITE(timedata_tests, BasicTestingSetup) BOOST_AUTO_TEST_CASE(util_MedianFilter) { CMedianFilter<int> filter(5, 15); BOOST_CHECK_EQUAL(filter.median(), 15); filter.input(20); // [15 20] BOOST_CHECK_EQUAL(filter.median(), 17); filter.input(30); // [15 20 30] BOOST_CHECK_EQUAL(filter.median(), 20); filter.input(3); // [3 15 20 30] BOOST_CHECK_EQUAL(filter.median(), 17); filter.input(7); // [3 7 15 20 30] BOOST_CHECK_EQUAL(filter.median(), 15); filter.input(18); // [3 7 18 20 30] BOOST_CHECK_EQUAL(filter.median(), 18); filter.input(0); // [0 3 7 18 30] BOOST_CHECK_EQUAL(filter.median(), 7); } BOOST_AUTO_TEST_SUITE_END()
[ "a987@mac.com" ]
a987@mac.com
ac4eaf3e3832374b8e2a1765ad39878ef862969c
afb34911535a8dc8f4dd5356085f4ff4a83fbe3d
/MotorOla_Solution/Src/PhysXProject/PhysXLib.cpp
b710649a5cbf151701820bfb28370b352f2c2d0f
[]
no_license
GDV-Proyectos3/Motor-Ola
0a2744641c29cc5ec78770fdbf92b5574e0e6f8d
34c5b209e98ce182e2869891dc603335f69f87fa
refs/heads/main
2022-07-26T00:20:27.770649
2022-05-05T20:17:07
2022-05-05T20:17:07
459,509,935
1
1
null
2022-03-08T09:35:12
2022-02-15T09:25:42
C++
WINDOWS-1250
C++
false
false
183
cpp
// PhysXLib.cpp : Define las funciones de la biblioteca estática. // #include "pch.h" #include "framework.h" // TODO: Ejemplo de una función de biblioteca void fnStaticLib1() { }
[ "pablocub@ucm.es" ]
pablocub@ucm.es
57db947a1f73e40028e7ad695b3078e6aff0f5dd
789fec9a91741469ca313b6223b7fdea58e0f7ef
/Graph/cycleindirectedgraph.cpp
bf1502d0ad64717f13d6ad4ea26dd6074acb5149
[]
no_license
vinay-12345678/Cplus
f020b1b4457f95ada524e53c3b84083316422b04
a5ee42b7ada3f040fef36810680c690696ed870c
refs/heads/master
2023-02-25T00:21:21.966557
2021-02-02T19:07:22
2021-02-02T19:07:22
280,246,612
0
0
null
null
null
null
UTF-8
C++
false
false
1,155
cpp
#include <bits/stdc++.h> using namespace std; class graph{ map <int,vector <int> > m; int count=0; public: void addedge(int a,int b){ m[a].push_back(b); } void __dfs(vector <bool> &visited,int parent,vector <int> &path){ visited[parent]=1; // cout<<parent<<endl; path[parent]=1; for(auto child:m[parent]){ if(visited[child]==0){ __dfs(visited,child,path); } else if(path[child]==1) count++; } path[parent]=0; } void dfs(int parent){ vector <bool> visited(100,0); vector <int> path(100,0); __dfs(visited,parent,path); for(auto i:m){ parent=i.first; if(visited[parent]==0) __dfs(visited,parent,path); } cout<<count<<endl; } }; int main(){ #ifndef ONLINE_JUDGE freopen("input.txt","r",stdin); freopen("output.txt","w",stdout); #endif graph g; g.addedge(1,2); g.addedge(2,5); g.addedge(6,5); g.addedge(3,2); g.addedge(4,3); g.addedge(4,6); g.addedge(5,4); g.addedge(7,8); g.addedge(8,9); g.addedge(9,7); g.dfs(1); // g.bfs(7); // cout<<g.dfs(1); }
[ "vinay55bansal@gmail.com" ]
vinay55bansal@gmail.com
fb153b18de8e4098a6cc6d1468a9dd530db5a0f7
5a6f8361dd4b6d7add57940dccca4c5729be6922
/DailyManagement/calendarPage.cpp
c170909cc84850531e5946c012ce49e811f2e7cf
[]
no_license
YuJieROOT/DailyManagement
4d5a70953f62e4a6282b097236f0fe713d354587
44978b6fce43a5dd29224da5900547239fb4cf5d
refs/heads/master
2023-03-04T05:04:55.007406
2021-01-16T14:43:42
2021-01-16T14:43:42
326,620,428
2
0
null
null
null
null
UTF-8
C++
false
false
1,218
cpp
#include "calendarPage.h" #include "ui_calendarPage.h" #include <QMessageBox> calendarPage::calendarPage(QWidget *parent) : QMainWindow(parent), ui(new Ui::calendarPage) { ui->setupUi(this); } calendarPage::~calendarPage() { delete ui; } void calendarPage::on_todo_button_clicked() { todoPage *w = new todoPage; w->show(); this->close(); delete this; } void calendarPage::on_user_button_clicked() { userPage *w = new userPage; w->show(); this->close(); delete this; } void calendarPage::on_count_down_button_clicked() { countDownPage *w = new countDownPage; w->show(); this->close(); delete this; } void calendarPage::on_dustbin_button_clicked() { dustbinPage *w = new dustbinPage; w->show(); this->close(); delete this; } void calendarPage::on_search_button_clicked() { searchPage *w = new searchPage; w->show(); this->close(); delete this; } void calendarPage::on_log_button_clicked() { logPage *w = new logPage; w->show(); this->close(); delete this; } void calendarPage::on_setting_button_clicked() { settingPage *w = new settingPage; w->show(); this->close(); delete this; }
[ "836498184@qq.com" ]
836498184@qq.com
df54f789befbb25caae6a92cc719045e3a6064fe
cff3039323137a1cb7557a0d80802a70e7e3efd3
/AreaWise/Graphs/BreadthFirstTraversal.cpp
7d1c3abcb13a4a150e3f294f2210b900c111115b
[]
no_license
abhi6691/GFG-Must-do-questions
fa650a0f2ea08315df159d17694d8e32c251bc1c
790bbe9fd8a7221d485b4e0a4cb42f86280a9ecd
refs/heads/master
2020-08-24T00:12:31.331128
2019-11-08T07:00:02
2019-11-08T07:00:02
216,730,144
0
0
null
null
null
null
UTF-8
C++
false
false
1,333
cpp
/*********************************************************************************** Author: Abhishek Singh Problem link/description: https://www.geeksforgeeks.org/breadth-first-search-or-bfs-for-a-graph/ ***********************************************************************************/ #include <bits/stdc++.h> using namespace std; typedef vector <int> vi; template <typename T> void swap(T *a, T *b) { T t = *a; *a = *b; *b = t;} void printVec(vi v){for(int i = 0; i < v.size(); i++) cout<<v[i]<<" "; cout<<endl;} class Graph { int V; list<int> *adj; public: Graph(int v) { V = v; adj = new list<int>[V]; } void addEdge(int src, int dest) { adj[src].push_back(dest); } void addEdgeBi(int u, int v) { adj[u].push_back(v); adj[v].push_back(u); } void BFS(int src); }; void Graph::BFS(int s) { vector<bool> visited(V, false); list<int> queue; list<int>::iterator it; queue.push_back(s); while (!queue.empty()) { s = queue.front(); queue.pop_front(); printf("%d ", s); for (it = adj[s].begin(); it != adj[s].end(); it++) if (!visited[*it]) queue.push_back(*it); } } int main() { freopen("D://inputf.in", "r", stdin); freopen("D://outputf.in", "w", stdout); Graph g(5); g.addEdge(0, 1); g.addEdge(0, 2); g.addEdge(0, 3); g.addEdge(2, 4); g.BFS(0); return 0; }
[ "abhi6691@gmail.com" ]
abhi6691@gmail.com
d2f16b71b3fb82d56768d3a43c7ede849b331e94
53789b79bfc889c8284e0c42639affa1909f9a23
/algorithms.h
d36fb3ef892cb4481ddd64de8edc093cda832c09
[]
no_license
jamarFraction/HW4_CPTS223
7226646764fc264a37243219e9f6acdab98fbda2
42dfeeb121e437066c0fc3d7e530fca507f477a3
refs/heads/master
2021-04-29T17:18:28.633924
2018-02-16T21:01:11
2018-02-16T21:01:11
121,666,945
0
0
null
null
null
null
UTF-8
C++
false
false
327
h
#include <iostream> #include <vector> using namespace std; int maxSubSum1(const vector<int> &a); int maxSubSum2(const vector<int> &a); int maxSumRec(const vector<int> &a, int left, int right); int maxSubSum3(const vector<int> &a); int max3(int leftSum, int rightSum, int borderSums); int maxSubSum4(const vector<int> &a);
[ "heatxonxmyxfeet@gmail.com" ]
heatxonxmyxfeet@gmail.com
e06b8d21736f96a7814f896c92d522aeb149943d
56f7b1cdc2ba96392d2a9454bba88b6e21cdfa0c
/kepala.h
66a192d5cec16523d31de2567b193a6135c554fd
[]
no_license
AwanSaputra/LinkedList
fa3ad6ba719407e1d5c8c0de6b9dce420c88fcab
58376ce7acf0fe67f05bf93711733c9ca80fc7c6
refs/heads/master
2022-04-01T01:23:30.187049
2020-01-13T11:27:44
2020-01-13T11:27:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
876
h
#include <iostream> #include <string> using namespace std; #define nil NULL #define info(P) P->info #define nextC(P) P->nextC #define first(L) ((L).first) typedef struct ANAKS infotypeC; struct ANAKS { string namaA, IDA, jabatan; int lemburA; long gajiC; }; typedef struct nodeA *addressA; struct nodeA { infotypeC info; addressA nextC; }; struct list_anak { addressA first; }; void createListChild(list_anak &L); void insertLastChild(list_anak &L, addressA P); void deleteFirstChild(list_anak &L, addressA &P); void deleteAfterChild(list_anak &L, addressA &P, addressA Q); void deleteLastChild(list_anak &L, addressA &P); void deleteChild(list_anak &L, addressA &P); addressA alokasi_Child(string nama, string ID, string jabatan, int lembur); addressA findElm(list_anak L, string x); void printInfoChild(list_anak L);
[ "noreply@github.com" ]
noreply@github.com
9e280176c68e33606339e4d63b0fba521d7886c7
579d1b8d7166bf800369b5c96c80642c6d4c187a
/cc150/c4_recursive.cpp
82c0ec7114e0a3d26910aecb891b11e3ed25b5aa
[]
no_license
zephyr-bj/algorithm
bd1914d9d518ae2b8cccb0d6c3d1c9ba98dbe7bc
e2a52c533ba9bbd6d9530b672cb685ed3d9c4467
refs/heads/master
2022-10-14T01:41:45.221235
2022-09-26T08:47:51
2022-09-26T08:47:51
81,426,931
0
0
null
null
null
null
UTF-8
C++
false
false
4,948
cpp
#include <stdio.h> #include <stack> #include <vector> #include <list> #include <iostream> using namespace std; //print all permutations of a string //power sets (recursive and non-recursive algorithms), //Print all possible combinations of r elements in a given array of size n //Print all possible combinations with a given sum of key words ?? //eight queens //sum of coins //paths in a matrix //valid parentheses //print all permutations of a string void permute(char *a, int i, int n) { int j; if(i == n){ printf("%s\n", a); } else{ for(j = i; j <= n; j++){ char tmp; tmp = *(a+i); *(a+i)= *(a+j); *(a+j) = tmp; permute(a, i+1, n); tmp = *(a+i); *(a+i)= *(a+j); *(a+j) = tmp; //backtrack } } } //Power set typedef vector<vector<int> > vvi; typedef vector<int> vi; vvi get_subsets(int a[], int n){ //O(n2^n) vvi subsets; int max = 1<<n; for(int i=0; i<max; ++i){ vi subset; int idx = 0; int j = i; while(j > 0){ if(j&1){ subset.push_back(a[idx]); } j >>= 1; ++idx; } subsets.push_back(subset); } return subsets; } vvi get_subsets1(int a[], int idx, int n){ vvi subsets; if(idx == n){ vi subset; subsets.push_back(subset); //empty set } else{ vvi rsubsets = get_subsets1(a, idx+1, n); int v = a[idx]; for(int i=0; i<rsubsets.size(); ++i){ vi subset = rsubsets[i]; subsets.push_back(subset); subset.push_back(v); subsets.push_back(subset); } } return subsets; } //prints all combinations of size r void printCombination(int arr[], int n, int r) { int *data = new int[r]; combinationUtil(arr, data, 0, n-1, 0, r); } void combinationUtil(int arr[], int data[], int start, int end, int index, int r) { if (index == r){ for (int j=0; j<r; j++) printf("%d ", data[j]); printf("\n"); return; } for (int i=start; i<=end && end-i+1 >= r-index; i++){ data[index] = arr[i]; combinationUtil(arr, data, i+1, end, index+1, r); } } //8 queens int Qmap[8];int cnt=0; void search(int r){ if(r == 8){ ++cnt; return; } for(int i=0; i<8; ++i){ Qmap[r] = i; int ok = 1; for(int j=0; j<r; ++j) if(Qmap[r]==Qmap[j] || r-j==Qmap[r]-Qmap[j] || r-j==Qmap[j]-Qmap[r]){ ok = 0; break; } if(ok) search(r+1); } } //sum of coins int sum_n(int sum, int c, int n){ int ways = 0; if(sum <= n){ if(sum == n) return 1; if(c >= 25) ways += sum_n(sum+25, 25, n); if(c >= 10) ways += sum_n(sum+10, 10, n); if(c >= 5) ways += sum_n(sum+5, 5, n); if(c >= 1) ways += sum_n(sum+1, 1, n); } return ways; } std::list<int> comb; int sumN2(int * superset, int L, int sum1, int c, int sum2){ int ways = 0; if(sum1 >= sum2){ if(sum1 == sum2) { //do something with comb; return 1; } return 0; } else{ for(int i = L-1; i>=0; i--){ if(c >= i){ comb.push_back(superset[i]); ways += sumN2(superset,L,sum1+superset[i], i, sum2); comb.pop_back(); } } } return ways; } //paths in a matrix typedef struct point{ int x, y; }point; stack<point> sp; const int MAXN = 20; int g[MAXN][MAXN]; point vp[MAXN+MAXN]; bool get_path(int m, int n){ point p; p.x=n; p.y=m; sp.push(p); if(n==1 && m==1) return true; bool suc = false; if(m>1 && g[m-1][n]) suc = get_path(m-1, n); if(!suc && n>1 && g[m][n-1]) suc = get_path(m, n-1); if(!suc) sp.pop(); //back tracking return suc; } void print_paths(int m, int n, int M, int N, int len){ if(g[m][n] == 0 || m>M || n>N) return; point p; p.x=n; p.y=m; vp[len++] = p; if(m == M && n == N){ for(int i=0; i<len; ++i) cout<<"("<<vp[i].y<<", "<<vp[i].x<<")"<<" "; cout<<endl; } else{ print_paths(m, n+1, M, N, len); print_paths(m+1, n, M, N, len); } } //valid parentheses void print_pare(int l, int r, char str[], int cnt){//we know the length of the string before start, so set a c string with fixed length if(l<0 || r<l) return; if(l==0 && r==0){ for(int i=0; i<cnt; ++i){ cout<<str[i]; } cout<<", "; } else{ if(l > 0){ str[cnt] = '('; print_pare(l-1, r, str, cnt+1); } if(r > l){ str[cnt] = ')'; print_pare(l, r-1, str, cnt+1); } } }
[ "noreply@github.com" ]
noreply@github.com
76e11b7811f031e31beecefe7328ed9c1a109ca4
2017a0f091b512c9ec43efdd1b3e755d221f2177
/VSO4R/VSO4R/ODBOProviderProxy.h
cad771625cb5ae904c5e893c9417a9b0faafc0ec
[]
no_license
norrislee/O4R
c0765dc265ab191703aa0a95aec935d38ca1ec95
bcdca837290649ac6170e5696704e0a7db50e64f
refs/heads/master
2021-01-01T19:39:23.558139
2013-08-30T23:31:17
2013-08-30T23:31:17
12,471,187
1
0
null
null
null
null
UTF-8
C++
false
false
2,665
h
/////////////////////////////////////////////////////////////////////////////////////////////////// /// @file ODBOProviderProxy.h /// /// Implements the client side proxy class for all ODBO Providers. Implements the /// required COM interfaces for communicating with a generic ODBO provider. /// /// Copyright: Copyright (C) 2013 Simba Technologies Incorporated /////////////////////////////////////////////////////////////////////////////////////////////////// #ifndef _ODBO_PROVIDER_PROXY_INCLUDE_ #define _ODBO_PROVIDER_PROXY_INCLUDE_ #include <oledb.h> #include <map> #include "IQueryRowset.h" #include "VariantProxy.h" #include "ParameterMap.h" typedef std::pair< ::DBPROPID, ::VARTYPE> PropertyIDTypePair; typedef std::map<std::wstring, PropertyIDTypePair> PropertyIDTypeMap; typedef std::pair<std::wstring, PropertyIDTypePair> PropertyPair; namespace Simba { namespace Test { namespace ODBO { class ODBOProviderProxy { public: ODBOProviderProxy(); virtual ~ODBOProviderProxy(); bool Initialize( const std::wstring& provider, const std::wstring& properties ); bool IsInitialized() { return m_initialized; } void GetRowset( ::GUID rowsetGuid, IQueryRowset* queryRowset ); void GetRowset( ::GUID rowsetGuid, VariantVector& restrictionVector, IQueryRowset* queryRowset ); void GetRowset( std::wstring& mdxQuery, IQueryRowset* queryRowset ); const std::wstring& GetProviderName() { return m_provider; } void executeDataset( std::wstring& mdxQuery, ::IUnknown ** dataset ); ::IDBInitialize* GetDbInitialize(); ::IDBProperties* GetDbProperties(); ::IDBCreateCommand* GetDbCreateCommand(); ::IDBSchemaRowset* GetDbSchemaRowset(); private: void ProviderConnect( const std::wstring& provider, const std::wstring& properties ); void ProviderDisconnect(); void InitializePropertyIDTypeMap(); private: bool m_initialized; std::wstring m_provider; PropertyIDTypeMap m_referencePropertyValues; ParameterValueMap m_currentParameterSettings; private: ::IDBInitialize* m_dbInitialize; ::IDBProperties* m_dbProperties; ::IDBCreateSession* m_dbCreateSession; ::IDBCreateCommand* m_dbCreateCommand; ::IDBSchemaRowset* m_dbSchemaRowset; private: // Helper class that releases and allocates memory in the DBPROP object. class DBPROPProxy { public: DBPROPProxy() { ; } DBPROPProxy( const DBPROPProxy& proxy ); ~DBPROPProxy(); public: // Do not add ANY new data members to this class!! // This class is intended as a proxy for DBPROP and // must only have the memory footprint of the DBPROP // object. ::DBPROP prop; }; }; } // end namespace ODBO } // end namespace Test } // end namespace Simba #endif
[ "norrislee18@hotmail.com" ]
norrislee18@hotmail.com
f6af69c61174a0eaca904a122498a25f8e084668
1742cd526f243de44a84769c07266c473648ecd6
/cdf/765a.cpp
afb91ed3697558d0333f550bc8b1d7db0f264f2c
[]
no_license
filipeabelha/gym-solutions
0d555f124fdb32508f6406f269a67eed5044d9c6
4eb8ad60643d7923780124cba3d002c5383a66a4
refs/heads/master
2021-01-23T05:09:38.962238
2020-11-29T07:14:31
2020-11-29T07:14:31
86,275,942
2
0
null
null
null
null
UTF-8
C++
false
false
1,232
cpp
#include <bits/stdc++.h> using namespace std; mt19937_64 llrand(random_device{}()); #define st first #define nd second #define mp make_pair #define pb push_back #define cl(x, v) memset((x), (v), sizeof(x)) #define db(x) cerr << #x << " == " << x << endl #define dbs(x) cerr << x << endl #define _ << ", " << #define gcd(x, y) __gcd((x), (y)) typedef long long ll; typedef long double ld; typedef pair<int, int> pii; typedef pair<int, pii> piii; typedef pair<ll, ll> pll; typedef pair<ll, pll> plll; typedef vector<int> vi; typedef vector<vi> vii; const ld EPS = 1e-9, PI = acos(-1.); const ll LINF = 0x3f3f3f3f3f3f3f3f, LMOD = 1011112131415161719ll; const int INF = 0x3f3f3f3f, MOD = 1e9+7; const int N = 1e5+5; int n; string s, t, a, b; map <string, int> m; int main () { ios_base::sync_with_stdio(false); cin.tie(NULL); cin >> n >> s; while (n--) { cin >> t; a.clear(); a += t[0]; a += t[1]; a += t[2]; b.clear(); b += t[5]; b += t[6]; b += t[7]; if (a != s) m[a]++; if (b != s) m[b]++; } int ok = 1; for (auto p : m) if (p.nd&1) ok = 0; cout << (ok ? "home" : "contest") << endl; return 0; }
[ "me@filipeabelha.com" ]
me@filipeabelha.com
45f5949a55e58c0c44360aff76c4dfa25d121378
1adb3d1240d07b5c7a793ea83e080b4abdcc7456
/build-Aeropuerto-Desktop_Qt_5_4_1_clang_64bit-Debug/moc_crearavion.cpp
2b04e4b5b2d837c2e732fe561d13669525f7474e
[]
no_license
dariovillalta/Proyecto2_Aeropuerto
708dbd1bf159446d854f203a1724a399d01b64f4
99d468bc1278cb432d4d7d7b6f259d1a88b10939
refs/heads/master
2021-01-10T21:30:25.940758
2015-03-26T03:46:14
2015-03-26T03:46:14
32,838,479
0
0
null
null
null
null
UTF-8
C++
false
false
3,318
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'crearavion.h' ** ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.4.1) ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ #include "../crearavion.h" #include <QtCore/qbytearray.h> #include <QtCore/qmetatype.h> #if !defined(Q_MOC_OUTPUT_REVISION) #error "The header file 'crearavion.h' doesn't include <QObject>." #elif Q_MOC_OUTPUT_REVISION != 67 #error "This file was generated using the moc from 5.4.1. It" #error "cannot be used with the include files from this version of Qt." #error "(The moc has changed too much.)" #endif QT_BEGIN_MOC_NAMESPACE struct qt_meta_stringdata_CrearAvion_t { QByteArrayData data[3]; char stringdata[34]; }; #define QT_MOC_LITERAL(idx, ofs, len) \ Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ qptrdiff(offsetof(qt_meta_stringdata_CrearAvion_t, stringdata) + ofs \ - idx * sizeof(QByteArrayData)) \ ) static const qt_meta_stringdata_CrearAvion_t qt_meta_stringdata_CrearAvion = { { QT_MOC_LITERAL(0, 0, 10), // "CrearAvion" QT_MOC_LITERAL(1, 11, 21), // "on_pushButton_clicked" QT_MOC_LITERAL(2, 33, 0) // "" }, "CrearAvion\0on_pushButton_clicked\0" }; #undef QT_MOC_LITERAL static const uint qt_meta_data_CrearAvion[] = { // content: 7, // revision 0, // classname 0, 0, // classinfo 1, 14, // methods 0, 0, // properties 0, 0, // enums/sets 0, 0, // constructors 0, // flags 0, // signalCount // slots: name, argc, parameters, tag, flags 1, 0, 19, 2, 0x08 /* Private */, // slots: parameters QMetaType::Void, 0 // eod }; void CrearAvion::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) { if (_c == QMetaObject::InvokeMetaMethod) { CrearAvion *_t = static_cast<CrearAvion *>(_o); switch (_id) { case 0: _t->on_pushButton_clicked(); break; default: ; } } Q_UNUSED(_a); } const QMetaObject CrearAvion::staticMetaObject = { { &QDialog::staticMetaObject, qt_meta_stringdata_CrearAvion.data, qt_meta_data_CrearAvion, qt_static_metacall, Q_NULLPTR, Q_NULLPTR} }; const QMetaObject *CrearAvion::metaObject() const { return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; } void *CrearAvion::qt_metacast(const char *_clname) { if (!_clname) return Q_NULLPTR; if (!strcmp(_clname, qt_meta_stringdata_CrearAvion.stringdata)) return static_cast<void*>(const_cast< CrearAvion*>(this)); return QDialog::qt_metacast(_clname); } int CrearAvion::qt_metacall(QMetaObject::Call _c, int _id, void **_a) { _id = QDialog::qt_metacall(_c, _id, _a); if (_id < 0) return _id; if (_c == QMetaObject::InvokeMetaMethod) { if (_id < 1) qt_static_metacall(this, _c, _id, _a); _id -= 1; } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { if (_id < 1) *reinterpret_cast<int*>(_a[0]) = -1; _id -= 1; } return _id; } QT_END_MOC_NAMESPACE
[ "root@Darios-MacBook-Air.local" ]
root@Darios-MacBook-Air.local
4077804612efd44629783a227b0c22c83ff9a22f
249cd0c7e676650144bbd4fd50c3a66af2b6fe1d
/Source/VR_TestJob/CPP_VR_MotionController.h
6d29b3d247222a23c9a72bf8bfb88fe50368c2f9
[]
no_license
LShemetov/TestJob
75864758eac6d0cc8eaf4a8154552b886fff4830
ebe18fedcfcb963e7f1aa2bece35822b64f3427c
refs/heads/main
2023-08-06T23:56:12.721164
2021-09-30T06:58:12
2021-09-30T06:58:12
411,953,712
0
0
null
null
null
null
UTF-8
C++
false
false
562
h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include "GameFramework/Actor.h" #include "CPP_VR_MotionController.generated.h" UCLASS() class VR_TESTJOB_API ACPP_VR_MotionController : public AActor { GENERATED_BODY() public: // Sets default values for this actor's properties ACPP_VR_MotionController(); protected: // Called when the game starts or when spawned virtual void BeginPlay() override; public: // Called every frame virtual void Tick(float DeltaTime) override; };
[ "l.shemetov@mail.ru" ]
l.shemetov@mail.ru
9753072cd5a38036f188b1966dc457fa97f60e00
bb99e6ad8c4f6b5322669b4abe0d04feb6b8ada1
/myInsertModifyAccount.cpp
b4be06c9f0f24a3c7d53270739a012e6f14010e9
[]
no_license
Imrono/myFinance
0030fa83ae612779b1dfa553106d03a6db37ccae
264cafdca6d61531f3282645bacfbf4ba8f00ad9
refs/heads/master
2020-12-15T01:07:45.902642
2016-08-22T13:41:36
2016-08-22T13:41:36
50,245,397
0
0
null
null
null
null
UTF-8
C++
false
false
805
cpp
#include "myInsertModifyAccount.h" #include "ui_myInsertModifyAccount.h" myInsertModifyAccount::myInsertModifyAccount(QWidget *parent) : QDialog(parent), ui(new Ui::myInsertAccount) { ui->setupUi(this); } myInsertModifyAccount::~myInsertModifyAccount() { delete ui; } void myInsertModifyAccount::on_buttonBox_accepted() { data.code = ui->lineEditCode->text(); data.name = ui->lineEditName->text(); data.type = ui->lineEditType->text(); data.note = ui->lineEditNote->text(); } void myInsertModifyAccount::setUI(myAccountData accountData) { ui->lineEditCode->setText(accountData.code); ui->lineEditName->setText(accountData.name); ui->lineEditType->setText(accountData.type); ui->lineEditNote->setText(accountData.note); }
[ "rono_back@163.com" ]
rono_back@163.com
04d98f41f7ff0d8119ec4233169d8c863460c399
8d70ce4859d88586ff0ac7522bfe6c2619e7e829
/semesterprojekt/software/modules/qjsonrpc/qjsonrpcclient.cpp
d646fb4e918b542b556da31a6095739f29678a51
[]
no_license
kruemel123456789/EES_ALL
2e343d90f251a7eda5c15a28cafbd8da2dc68281
39d8e58a7ac1b4e47a64ef0c9bcf234e2f4b560f
refs/heads/master
2021-05-06T03:32:27.837744
2017-12-20T15:47:32
2017-12-20T15:47:32
114,902,827
0
0
null
null
null
null
UTF-8
C++
false
false
9,471
cpp
#include "qjsonrpcclient.h" #include <QtWebSockets> Q_LOGGING_CATEGORY(MODULES_QJSONRPC_CLIENT, "modules.qjsonrpc.client", QtWarningMsg) #ifdef QDISCOVERYSERVICE_USED #include "qdiscoveryservice.h" #endif class QJsonRpcClient::PrivateData { public: QWebSocket socket; QMap<QString, QJsonObject> pendingResults; bool binary; bool async; QTimer callTimeout; bool connected; //sync calls QMap<QString, QEventLoop*> syncEventLoops; #ifdef QDISCOVERYSERVICE_USED QDiscoveryService remoteService; #endif }; QJsonRpcClient::QJsonRpcClient(QObject *parent) : QObject(parent) ,d_data(new PrivateData) { d_data->connected = false; d_data->binary = true; d_data->async = false; QObject::connect(&d_data->socket, &QWebSocket::stateChanged, [this](QAbstractSocket::SocketState state){ setConnected(state == QAbstractSocket::ConnectedState); }); QObject::connect(&d_data->socket, &QWebSocket::textMessageReceived, [this](const QString& message) { QJsonParseError error; const QJsonObject messageObject = QJsonDocument::fromJson(message.toUtf8(), &error).object(); if(error.error != QJsonParseError::NoError) { qCWarning(MODULES_QJSONRPC_CLIENT) << "Invalid JSON message received. Parsing error" << error.errorString() << "in Message:" << message; return; } onNewMessageReceived(messageObject); }); QObject::connect(&d_data->socket, &QWebSocket::binaryMessageReceived, [this](const QByteArray& message) { const QJsonObject messageObject = QJsonDocument::fromBinaryData(message).object(); if(messageObject.isEmpty()) { qCWarning(MODULES_QJSONRPC_CLIENT) << "Invalid binary JSON message received: " << message; return; } onNewMessageReceived(messageObject); }); QObject::connect(&d_data->callTimeout, &QTimer::timeout, [this]() { if(d_data->pendingResults.isEmpty()) return; QDateTime now = QDateTime::currentDateTime(); foreach(QString id, d_data->pendingResults.keys()) { QJsonObject pendingResult = d_data->pendingResults.value(id); QDateTime sent = QDateTime::fromString(pendingResult.value(QStringLiteral("sent")).toString(), "yyyyMMdd-hh:mm:ss.zzz"); QDateTime deadline = sent.addMSecs(pendingResult.value(QStringLiteral("timeout")).toInt()); if(now < deadline) continue; qCWarning(MODULES_QJSONRPC_CLIENT) << "Method call (" << pendingResult.value(QStringLiteral("method")).toString() << ") timed out."; //create an error object QJsonObject errorObject; errorObject.insert(QStringLiteral("code"), ErrorCodeTimeout); errorObject.insert(QStringLiteral("message"), QStringLiteral("Method call timed out.")); pendingResult.insert(QStringLiteral("error"),errorObject); //forward the error 'reply' to the onNewMessageReceived() function onNewMessageReceived(pendingResult); } }); d_data->callTimeout.start(250); #ifdef QDISCOVERYSERVICE_USED QObject::connect(&d_data->remoteService, &QDiscoveryService::serviceInfoChanged, [this](QJsonObject serviceInfo) { if(d_data->socket.state() != QAbstractSocket::UnconnectedState) return; QString remoteAddress = serviceInfo.value("_metaData").toObject().value("remoteAddress").toString(); quint16 port = serviceInfo.value("port").toInt(); qCDebug(MODULES_QJSONRPC_CLIENT) << "Service discovered. Trying to connect to" << remoteAddress << "on port" << QString::number(port); d_data->socket.open(QString("ws://") + remoteAddress + ":" + QString::number(port)); }); #endif } QJsonRpcClient::~QJsonRpcClient() { close(); } bool QJsonRpcClient::isConnected() const { return d_data->socket.state() == QAbstractSocket::ConnectedState; } void QJsonRpcClient::setConnected(bool arg) { if(d_data->connected == arg) return; d_data->connected = arg; emit connectedChanged(arg); } bool QJsonRpcClient::isBinary() const { return d_data->binary; } void QJsonRpcClient::setBinary(bool arg) { if(d_data->binary == arg) return; d_data->binary = arg; emit binaryChanged(arg); } bool QJsonRpcClient::isAsync() const { return d_data->async; } void QJsonRpcClient::setAsync(bool arg) { if(d_data->async == arg) return; d_data->async = arg; emit asyncChanged(arg); } void QJsonRpcClient::sendMessage(const QJsonObject &messageObject) { // Roboter-Gruppe erwartet Strings /* if(d_data->binary) d_data->socket.sendBinaryMessage(QJsonDocument(messageObject).toBinaryData()); else d_data->socket.sendTextMessage(QString::fromUtf8(QJsonDocument(messageObject).toJson())); */ d_data->socket.sendTextMessage(QString::fromUtf8(QJsonDocument(messageObject).toJson())); d_data->socket.flush(); } void QJsonRpcClient::onNewMessageReceived(const QJsonObject& messageObject) { const QString jsonrpc = messageObject.value(QStringLiteral("jsonrpc")).toString(); //mandatory const QString id = messageObject.value(QStringLiteral("id")).toString(); //in case of a valid result or error const QString methodName = messageObject.value(QStringLiteral("method")).toString(); //in case of a notification const QJsonValue paramsObject = messageObject.value(QStringLiteral("params")); //in case of a notification const QJsonValue resultObject = messageObject.value(QStringLiteral("result")); //in case of a valid result const QJsonObject errorObject = messageObject.value(QStringLiteral("error")).toObject(); //in case of an error //invalid message if(jsonrpc != QStringLiteral("2.0")) { qCWarning(MODULES_QJSONRPC_CLIENT) << "Invalid rpc protocol:" << messageObject; return; } //no id means notification if(id.isEmpty()) { emit notificationReceived(methodName, paramsObject); return; } //check if a pending call is waiting on that message if(!d_data->pendingResults.contains(id)) { qCWarning(MODULES_QJSONRPC_CLIENT) << "Unknown/timed out reply ( ID:" << id << ") received."; return; } //take the corresponding pending call QJsonObject pendingResult = d_data->pendingResults.take(id); pendingResult.insert(QStringLiteral("received"), QDateTime::currentDateTime().toString("yyyyMMdd-hh:mm:ss.zzz")); pendingResult.insert("error", errorObject); pendingResult.insert("result", resultObject); //handle possible sync calls if(d_data->syncEventLoops.contains(id)) { QEventLoop* syncWaitLoop = d_data->syncEventLoops.value(id); syncWaitLoop->setProperty("result", QVariant(resultObject)); syncWaitLoop->exit(errorObject.isEmpty() ? 0 : errorObject.value(QStringLiteral("code")).toInt()); } //check if an error was returned if(!errorObject.isEmpty()) { qCWarning(MODULES_QJSONRPC_CLIENT) << "Method" << pendingResult.value(QStringLiteral("method")).toString() << "returned with an error:" << errorObject; emit errorReceived(methodName, errorObject, id); return; } //emit received data emit resultReceived(methodName, resultObject, id); } QJsonValue QJsonRpcClient::callMethod(const QString &methodName, QJsonValue params, int timeout) { if(!isConnected()) { qCWarning(MODULES_QJSONRPC_CLIENT) << "Unable to call remote method (" << methodName << "). Not connected."; return QJsonValue(); } QString id = QUuid::createUuid().toString(); QJsonObject messageObject; messageObject.insert(QStringLiteral("jsonrpc"), QStringLiteral("2.0")); messageObject.insert(QStringLiteral("method"), methodName); messageObject.insert(QStringLiteral("params"), params); messageObject.insert(QStringLiteral("id"), id); QJsonObject internalMessageObject(messageObject); internalMessageObject.insert(QStringLiteral("sent"), QDateTime::currentDateTime().toString("yyyyMMdd-hh:mm:ss.zzz")); internalMessageObject.insert(QStringLiteral("timeout"), timeout); internalMessageObject.insert(QStringLiteral("sync"), !d_data->async); d_data->pendingResults.insert(id, internalMessageObject); sendMessage(messageObject); //return immediately if this is an async call if(d_data->async) return id; //start event loop and wait for result or timeout on a sync call QScopedPointer<QEventLoop> syncEventLoop(new QEventLoop()); d_data->syncEventLoops.insert(id, syncEventLoop.data()); //blocking wait int syncRetValue = syncEventLoop->exec(); QJsonValue syncResult = QJsonValue::fromVariant(syncEventLoop->property("result")); d_data->syncEventLoops.remove(id); return syncRetValue != 0 ? QJsonValue() : syncResult; } void QJsonRpcClient::open(QString serverName) { #ifdef QDISCOVERYSERVICE_USED if(!serverName.contains("ws://") && !serverName.contains("wss://")) { d_data->remoteService.setServiceName(serverName); d_data->remoteService.startDiscovery(); return; } #endif qDebug() << "Connecting..."; d_data->socket.open(serverName); } void QJsonRpcClient::test() { } void QJsonRpcClient::close() { #ifdef QDISCOVERYSERVICE_USED d_data->remoteService.stopDiscovery(); #endif d_data->socket.close(); }
[ "ees17" ]
ees17
b63819956bd0edc4fde06cada1e38cfbff6eb4cf
ea6b169a24f3584978f159ec7f44184f9e84ead8
/include/reflect/function/FunctionSignature.hpp
e1ebc3aae4546edb8f4d8c46fd3885b15ae4d04e
[]
no_license
sparecycles/reflect
e2051e5f91a7d72375dd7bfa2635cf1d285d8ef7
bec1b6e6521080ad4d932ee940073d054c8bf57f
refs/heads/master
2020-06-05T08:34:52.453196
2011-08-18T16:33:47
2011-08-18T16:33:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
95,733
hpp
#ifndef REFLECT_FUNCTION_FUNCTIONSIGNATURE_HPP_ #define REFLECT_FUNCTION_FUNCTIONSIGNATURE_HPP_ #include <reflect/Variant.h> namespace reflect { namespace function { // File: FunctionSignature.hpp // Generated template bindings for reflecting functions. // // This is the first stage in creating a run-time interface for functions, // it takes the inconsistent compile-time interface of function calls, and // makes it into a more consistent (if awkward) templated compile-time interface. // // The second stage is in reflect/function/Function.hpp which // takes the template interface and wraps it in virtual functions. // // The third stage is in reflect/function/Function.{h,cpp} which defines the // run-time interface and provides some wrappers. // Class: VariantAliasRef // The VariantAliasRef automates // flushing modified by-reference parameters // back into their source values. // // * When it destructs, it updates the values of any <Variant::Alias>-ed variants, and // * You can view its value in a debugger. (optional) template<typename T> class VariantAliasRef { public: VariantAliasRef(Variant &var) : mVar(var) #ifndef NO_DEBUG_FUNCTION_ALIAS , mValue(var.AsRef<T>()) #endif {} operator T &() const { #ifndef NO_DEBUG_FUNCTION_ALIAS return mValue; #else return var.AsRef<T>(); #endif } ~VariantAliasRef() { mVar.UpdateAliases(); } private: Variant &mVar; #ifndef NO_DEBUG_FUNCTION_ALIAS T &mValue; #endif }; template<typename Type_> struct ParameterHelper { typedef Type_ Type; typedef const Type &ArgType; static inline const Type &Arg(Variant &variant) { return variant.AsConstRef<Type>(); } enum { MutableParameter = false }; }; template<typename Type_> struct ParameterHelper<const Type_> { typedef Type_ Type; typedef const Type &ArgType; static inline const Type &Arg(Variant &variant) { return variant.AsConstRef<Type>(); } enum { MutableParameter = false }; }; template<typename Type_> struct ParameterHelper<Type_&> { typedef Type_ Type; typedef VariantAliasRef<Type> ArgType; static inline Variant &Arg(Variant &variant) { return variant; } enum { MutableParameter = true }; }; template<typename Type_> struct ParameterHelper<const Type_ &> { typedef Type_ Type; typedef const Type &ArgType; static inline const Type &Arg(Variant &variant) { return variant.AsConstRef<Type>(); } enum { MutableParameter = false }; }; template<> struct ParameterHelper<void> { typedef void Type; static inline const void Arg(Variant &) { return; } }; template<typename FunctionType> class FunctionSignature; template<typename ResultType> class FunctionSignature<ResultType (*)()> { typedef ResultType (*FunctionType)(); public: enum { ParameterCount = 0, MemberFunction = false, ConstMemberFunction = false }; static const Type *GetParameterType(int, bool *) { return 0; } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef void TheClassType; static const Type *GetClassType() { return 0; } static ResultType Call(const FunctionType &function, const Variant &, Variant *) { return (*function)(); } }; template<typename ResultType, typename A0> class FunctionSignature<ResultType (*)(A0)> { typedef FunctionSignature<void (*)()> BaseFunctionSignature; typedef ResultType (*FunctionType)(A0); public: enum { ParameterCount = 1, MemberFunction = false, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef P0 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef void TheClassType; static const Type *GetClassType() { return 0; } static ResultType Call(const FunctionType &function, const Variant &, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); return (*function)(arg0); } }; template<typename ResultType, typename A0, typename A1> class FunctionSignature<ResultType (*)(A0, A1)> { typedef FunctionSignature<void (*)(A0)> BaseFunctionSignature; typedef ResultType (*FunctionType)(A0, A1); public: enum { ParameterCount = 2, MemberFunction = false, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef P1 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef void TheClassType; static const Type *GetClassType() { return 0; } static ResultType Call(const FunctionType &function, const Variant &, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); return (*function)(arg0, arg1); } }; template<typename ResultType, typename A0, typename A1, typename A2> class FunctionSignature<ResultType (*)(A0, A1, A2)> { typedef FunctionSignature<void (*)(A0, A1)> BaseFunctionSignature; typedef ResultType (*FunctionType)(A0, A1, A2); public: enum { ParameterCount = 3, MemberFunction = false, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef P2 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef void TheClassType; static const Type *GetClassType() { return 0; } static ResultType Call(const FunctionType &function, const Variant &, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); return (*function)(arg0, arg1, arg2); } }; template<typename ResultType, typename A0, typename A1, typename A2, typename A3> class FunctionSignature<ResultType (*)(A0, A1, A2, A3)> { typedef FunctionSignature<void (*)(A0, A1, A2)> BaseFunctionSignature; typedef ResultType (*FunctionType)(A0, A1, A2, A3); public: enum { ParameterCount = 4, MemberFunction = false, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef P3 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef void TheClassType; static const Type *GetClassType() { return 0; } static ResultType Call(const FunctionType &function, const Variant &, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); return (*function)(arg0, arg1, arg2, arg3); } }; template<typename ResultType, typename A0, typename A1, typename A2, typename A3, typename A4> class FunctionSignature<ResultType (*)(A0, A1, A2, A3, A4)> { typedef FunctionSignature<void (*)(A0, A1, A2, A3)> BaseFunctionSignature; typedef ResultType (*FunctionType)(A0, A1, A2, A3, A4); public: enum { ParameterCount = 5, MemberFunction = false, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef P4 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef void TheClassType; static const Type *GetClassType() { return 0; } static ResultType Call(const FunctionType &function, const Variant &, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); return (*function)(arg0, arg1, arg2, arg3, arg4); } }; template<typename ResultType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5> class FunctionSignature<ResultType (*)(A0, A1, A2, A3, A4, A5)> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4)> BaseFunctionSignature; typedef ResultType (*FunctionType)(A0, A1, A2, A3, A4, A5); public: enum { ParameterCount = 6, MemberFunction = false, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef P5 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef void TheClassType; static const Type *GetClassType() { return 0; } static ResultType Call(const FunctionType &function, const Variant &, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); return (*function)(arg0, arg1, arg2, arg3, arg4, arg5); } }; template<typename ResultType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6> class FunctionSignature<ResultType (*)(A0, A1, A2, A3, A4, A5, A6)> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5)> BaseFunctionSignature; typedef ResultType (*FunctionType)(A0, A1, A2, A3, A4, A5, A6); public: enum { ParameterCount = 7, MemberFunction = false, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef P6 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef void TheClassType; static const Type *GetClassType() { return 0; } static ResultType Call(const FunctionType &function, const Variant &, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); return (*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6); } }; template<typename ResultType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7> class FunctionSignature<ResultType (*)(A0, A1, A2, A3, A4, A5, A6, A7)> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5, A6)> BaseFunctionSignature; typedef ResultType (*FunctionType)(A0, A1, A2, A3, A4, A5, A6, A7); public: enum { ParameterCount = 8, MemberFunction = false, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef ParameterHelper<A7> P7; typedef P7 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef void TheClassType; static const Type *GetClassType() { return 0; } static ResultType Call(const FunctionType &function, const Variant &, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); typename P7::ArgType arg7 = P7::Arg(args[7]); return (*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); } }; template<typename ResultType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7, typename A8> class FunctionSignature<ResultType (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8)> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5, A6, A7)> BaseFunctionSignature; typedef ResultType (*FunctionType)(A0, A1, A2, A3, A4, A5, A6, A7, A8); public: enum { ParameterCount = 9, MemberFunction = false, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef ParameterHelper<A7> P7; typedef ParameterHelper<A8> P8; typedef P8 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef void TheClassType; static const Type *GetClassType() { return 0; } static ResultType Call(const FunctionType &function, const Variant &, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); typename P7::ArgType arg7 = P7::Arg(args[7]); typename P8::ArgType arg8 = P8::Arg(args[8]); return (*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); } }; template<typename ResultType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7, typename A8, typename A9> class FunctionSignature<ResultType (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9)> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8)> BaseFunctionSignature; typedef ResultType (*FunctionType)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9); public: enum { ParameterCount = 10, MemberFunction = false, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef ParameterHelper<A7> P7; typedef ParameterHelper<A8> P8; typedef ParameterHelper<A9> P9; typedef P9 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef void TheClassType; static const Type *GetClassType() { return 0; } static ResultType Call(const FunctionType &function, const Variant &, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); typename P7::ArgType arg7 = P7::Arg(args[7]); typename P8::ArgType arg8 = P8::Arg(args[8]); typename P9::ArgType arg9 = P9::Arg(args[9]); return (*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9); } }; template<typename ResultType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7, typename A8, typename A9, typename A10> class FunctionSignature<ResultType (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10)> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9)> BaseFunctionSignature; typedef ResultType (*FunctionType)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10); public: enum { ParameterCount = 11, MemberFunction = false, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef ParameterHelper<A7> P7; typedef ParameterHelper<A8> P8; typedef ParameterHelper<A9> P9; typedef ParameterHelper<A10> P10; typedef P10 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef void TheClassType; static const Type *GetClassType() { return 0; } static ResultType Call(const FunctionType &function, const Variant &, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); typename P7::ArgType arg7 = P7::Arg(args[7]); typename P8::ArgType arg8 = P8::Arg(args[8]); typename P9::ArgType arg9 = P9::Arg(args[9]); typename P10::ArgType arg10 = P10::Arg(args[10]); return (*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10); } }; template<typename ResultType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7, typename A8, typename A9, typename A10, typename A11> class FunctionSignature<ResultType (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11)> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10)> BaseFunctionSignature; typedef ResultType (*FunctionType)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11); public: enum { ParameterCount = 12, MemberFunction = false, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef ParameterHelper<A7> P7; typedef ParameterHelper<A8> P8; typedef ParameterHelper<A9> P9; typedef ParameterHelper<A10> P10; typedef ParameterHelper<A11> P11; typedef P11 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef void TheClassType; static const Type *GetClassType() { return 0; } static ResultType Call(const FunctionType &function, const Variant &, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); typename P7::ArgType arg7 = P7::Arg(args[7]); typename P8::ArgType arg8 = P8::Arg(args[8]); typename P9::ArgType arg9 = P9::Arg(args[9]); typename P10::ArgType arg10 = P10::Arg(args[10]); typename P11::ArgType arg11 = P11::Arg(args[11]); return (*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11); } }; template<typename ResultType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7, typename A8, typename A9, typename A10, typename A11, typename A12> class FunctionSignature<ResultType (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12)> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11)> BaseFunctionSignature; typedef ResultType (*FunctionType)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12); public: enum { ParameterCount = 13, MemberFunction = false, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef ParameterHelper<A7> P7; typedef ParameterHelper<A8> P8; typedef ParameterHelper<A9> P9; typedef ParameterHelper<A10> P10; typedef ParameterHelper<A11> P11; typedef ParameterHelper<A12> P12; typedef P12 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef void TheClassType; static const Type *GetClassType() { return 0; } static ResultType Call(const FunctionType &function, const Variant &, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); typename P7::ArgType arg7 = P7::Arg(args[7]); typename P8::ArgType arg8 = P8::Arg(args[8]); typename P9::ArgType arg9 = P9::Arg(args[9]); typename P10::ArgType arg10 = P10::Arg(args[10]); typename P11::ArgType arg11 = P11::Arg(args[11]); typename P12::ArgType arg12 = P12::Arg(args[12]); return (*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12); } }; template<typename ResultType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7, typename A8, typename A9, typename A10, typename A11, typename A12, typename A13> class FunctionSignature<ResultType (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13)> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12)> BaseFunctionSignature; typedef ResultType (*FunctionType)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13); public: enum { ParameterCount = 14, MemberFunction = false, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef ParameterHelper<A7> P7; typedef ParameterHelper<A8> P8; typedef ParameterHelper<A9> P9; typedef ParameterHelper<A10> P10; typedef ParameterHelper<A11> P11; typedef ParameterHelper<A12> P12; typedef ParameterHelper<A13> P13; typedef P13 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef void TheClassType; static const Type *GetClassType() { return 0; } static ResultType Call(const FunctionType &function, const Variant &, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); typename P7::ArgType arg7 = P7::Arg(args[7]); typename P8::ArgType arg8 = P8::Arg(args[8]); typename P9::ArgType arg9 = P9::Arg(args[9]); typename P10::ArgType arg10 = P10::Arg(args[10]); typename P11::ArgType arg11 = P11::Arg(args[11]); typename P12::ArgType arg12 = P12::Arg(args[12]); typename P13::ArgType arg13 = P13::Arg(args[13]); return (*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13); } }; template<typename ResultType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7, typename A8, typename A9, typename A10, typename A11, typename A12, typename A13, typename A14> class FunctionSignature<ResultType (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14)> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13)> BaseFunctionSignature; typedef ResultType (*FunctionType)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14); public: enum { ParameterCount = 15, MemberFunction = false, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef ParameterHelper<A7> P7; typedef ParameterHelper<A8> P8; typedef ParameterHelper<A9> P9; typedef ParameterHelper<A10> P10; typedef ParameterHelper<A11> P11; typedef ParameterHelper<A12> P12; typedef ParameterHelper<A13> P13; typedef ParameterHelper<A14> P14; typedef P14 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef void TheClassType; static const Type *GetClassType() { return 0; } static ResultType Call(const FunctionType &function, const Variant &, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); typename P7::ArgType arg7 = P7::Arg(args[7]); typename P8::ArgType arg8 = P8::Arg(args[8]); typename P9::ArgType arg9 = P9::Arg(args[9]); typename P10::ArgType arg10 = P10::Arg(args[10]); typename P11::ArgType arg11 = P11::Arg(args[11]); typename P12::ArgType arg12 = P12::Arg(args[12]); typename P13::ArgType arg13 = P13::Arg(args[13]); typename P14::ArgType arg14 = P14::Arg(args[14]); return (*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14); } }; template<typename ResultType, typename ClassType> class FunctionSignature<ResultType (ClassType::*)()> { typedef ResultType (ClassType::*FunctionType)(); public: enum { ParameterCount = 0, MemberFunction = true, ConstMemberFunction = false }; static const Type *GetParameterType(int, bool *) { return 0; } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *) { ClassType &self = object.AsRef<ClassType>(); return (self.*function)(); } }; template<typename ResultType, typename ClassType, typename A0> class FunctionSignature<ResultType (ClassType::*)(A0)> { typedef FunctionSignature<void (*)()> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0); public: enum { ParameterCount = 1, MemberFunction = true, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef P0 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); ClassType &self = object.AsRef<ClassType>(); return (self.*function)(arg0); } }; template<typename ResultType, typename ClassType, typename A0, typename A1> class FunctionSignature<ResultType (ClassType::*)(A0, A1)> { typedef FunctionSignature<void (*)(A0)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1); public: enum { ParameterCount = 2, MemberFunction = true, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef P1 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); ClassType &self = object.AsRef<ClassType>(); return (self.*function)(arg0, arg1); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2)> { typedef FunctionSignature<void (*)(A0, A1)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2); public: enum { ParameterCount = 3, MemberFunction = true, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef P2 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); ClassType &self = object.AsRef<ClassType>(); return (self.*function)(arg0, arg1, arg2); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2, typename A3> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2, A3)> { typedef FunctionSignature<void (*)(A0, A1, A2)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2, A3); public: enum { ParameterCount = 4, MemberFunction = true, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef P3 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); ClassType &self = object.AsRef<ClassType>(); return (self.*function)(arg0, arg1, arg2, arg3); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2, typename A3, typename A4> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2, A3, A4)> { typedef FunctionSignature<void (*)(A0, A1, A2, A3)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2, A3, A4); public: enum { ParameterCount = 5, MemberFunction = true, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef P4 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); ClassType &self = object.AsRef<ClassType>(); return (self.*function)(arg0, arg1, arg2, arg3, arg4); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2, A3, A4, A5)> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2, A3, A4, A5); public: enum { ParameterCount = 6, MemberFunction = true, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef P5 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); ClassType &self = object.AsRef<ClassType>(); return (self.*function)(arg0, arg1, arg2, arg3, arg4, arg5); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2, A3, A4, A5, A6)> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2, A3, A4, A5, A6); public: enum { ParameterCount = 7, MemberFunction = true, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef P6 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); ClassType &self = object.AsRef<ClassType>(); return (self.*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2, A3, A4, A5, A6, A7)> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5, A6)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2, A3, A4, A5, A6, A7); public: enum { ParameterCount = 8, MemberFunction = true, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef ParameterHelper<A7> P7; typedef P7 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); typename P7::ArgType arg7 = P7::Arg(args[7]); ClassType &self = object.AsRef<ClassType>(); return (self.*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7, typename A8> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2, A3, A4, A5, A6, A7, A8)> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5, A6, A7)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2, A3, A4, A5, A6, A7, A8); public: enum { ParameterCount = 9, MemberFunction = true, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef ParameterHelper<A7> P7; typedef ParameterHelper<A8> P8; typedef P8 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); typename P7::ArgType arg7 = P7::Arg(args[7]); typename P8::ArgType arg8 = P8::Arg(args[8]); ClassType &self = object.AsRef<ClassType>(); return (self.*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7, typename A8, typename A9> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9)> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9); public: enum { ParameterCount = 10, MemberFunction = true, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef ParameterHelper<A7> P7; typedef ParameterHelper<A8> P8; typedef ParameterHelper<A9> P9; typedef P9 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); typename P7::ArgType arg7 = P7::Arg(args[7]); typename P8::ArgType arg8 = P8::Arg(args[8]); typename P9::ArgType arg9 = P9::Arg(args[9]); ClassType &self = object.AsRef<ClassType>(); return (self.*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7, typename A8, typename A9, typename A10> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10)> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10); public: enum { ParameterCount = 11, MemberFunction = true, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef ParameterHelper<A7> P7; typedef ParameterHelper<A8> P8; typedef ParameterHelper<A9> P9; typedef ParameterHelper<A10> P10; typedef P10 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); typename P7::ArgType arg7 = P7::Arg(args[7]); typename P8::ArgType arg8 = P8::Arg(args[8]); typename P9::ArgType arg9 = P9::Arg(args[9]); typename P10::ArgType arg10 = P10::Arg(args[10]); ClassType &self = object.AsRef<ClassType>(); return (self.*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7, typename A8, typename A9, typename A10, typename A11> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11)> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11); public: enum { ParameterCount = 12, MemberFunction = true, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef ParameterHelper<A7> P7; typedef ParameterHelper<A8> P8; typedef ParameterHelper<A9> P9; typedef ParameterHelper<A10> P10; typedef ParameterHelper<A11> P11; typedef P11 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); typename P7::ArgType arg7 = P7::Arg(args[7]); typename P8::ArgType arg8 = P8::Arg(args[8]); typename P9::ArgType arg9 = P9::Arg(args[9]); typename P10::ArgType arg10 = P10::Arg(args[10]); typename P11::ArgType arg11 = P11::Arg(args[11]); ClassType &self = object.AsRef<ClassType>(); return (self.*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7, typename A8, typename A9, typename A10, typename A11, typename A12> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12)> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12); public: enum { ParameterCount = 13, MemberFunction = true, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef ParameterHelper<A7> P7; typedef ParameterHelper<A8> P8; typedef ParameterHelper<A9> P9; typedef ParameterHelper<A10> P10; typedef ParameterHelper<A11> P11; typedef ParameterHelper<A12> P12; typedef P12 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); typename P7::ArgType arg7 = P7::Arg(args[7]); typename P8::ArgType arg8 = P8::Arg(args[8]); typename P9::ArgType arg9 = P9::Arg(args[9]); typename P10::ArgType arg10 = P10::Arg(args[10]); typename P11::ArgType arg11 = P11::Arg(args[11]); typename P12::ArgType arg12 = P12::Arg(args[12]); ClassType &self = object.AsRef<ClassType>(); return (self.*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7, typename A8, typename A9, typename A10, typename A11, typename A12, typename A13> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13)> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13); public: enum { ParameterCount = 14, MemberFunction = true, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef ParameterHelper<A7> P7; typedef ParameterHelper<A8> P8; typedef ParameterHelper<A9> P9; typedef ParameterHelper<A10> P10; typedef ParameterHelper<A11> P11; typedef ParameterHelper<A12> P12; typedef ParameterHelper<A13> P13; typedef P13 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); typename P7::ArgType arg7 = P7::Arg(args[7]); typename P8::ArgType arg8 = P8::Arg(args[8]); typename P9::ArgType arg9 = P9::Arg(args[9]); typename P10::ArgType arg10 = P10::Arg(args[10]); typename P11::ArgType arg11 = P11::Arg(args[11]); typename P12::ArgType arg12 = P12::Arg(args[12]); typename P13::ArgType arg13 = P13::Arg(args[13]); ClassType &self = object.AsRef<ClassType>(); return (self.*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7, typename A8, typename A9, typename A10, typename A11, typename A12, typename A13, typename A14> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14)> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14); public: enum { ParameterCount = 15, MemberFunction = true, ConstMemberFunction = false }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef ParameterHelper<A7> P7; typedef ParameterHelper<A8> P8; typedef ParameterHelper<A9> P9; typedef ParameterHelper<A10> P10; typedef ParameterHelper<A11> P11; typedef ParameterHelper<A12> P12; typedef ParameterHelper<A13> P13; typedef ParameterHelper<A14> P14; typedef P14 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); typename P7::ArgType arg7 = P7::Arg(args[7]); typename P8::ArgType arg8 = P8::Arg(args[8]); typename P9::ArgType arg9 = P9::Arg(args[9]); typename P10::ArgType arg10 = P10::Arg(args[10]); typename P11::ArgType arg11 = P11::Arg(args[11]); typename P12::ArgType arg12 = P12::Arg(args[12]); typename P13::ArgType arg13 = P13::Arg(args[13]); typename P14::ArgType arg14 = P14::Arg(args[14]); ClassType &self = object.AsRef<ClassType>(); return (self.*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14); } }; template<typename ResultType, typename ClassType> class FunctionSignature<ResultType (ClassType::*)() const> { typedef ResultType (ClassType::*FunctionType)() const; public: enum { ParameterCount = 0, MemberFunction = true, ConstMemberFunction = true }; static const Type *GetParameterType(int, bool *) { return 0; } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *) { const ClassType &self = object.AsConstRef<const ClassType>(); return (self.*function)(); } }; template<typename ResultType, typename ClassType, typename A0> class FunctionSignature<ResultType (ClassType::*)(A0) const> { typedef FunctionSignature<void (*)()> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0) const; public: enum { ParameterCount = 1, MemberFunction = true, ConstMemberFunction = true }; typedef ParameterHelper<A0> P0; typedef P0 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); const ClassType &self = object.AsConstRef<const ClassType>(); return (self.*function)(arg0); } }; template<typename ResultType, typename ClassType, typename A0, typename A1> class FunctionSignature<ResultType (ClassType::*)(A0, A1) const> { typedef FunctionSignature<void (*)(A0)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1) const; public: enum { ParameterCount = 2, MemberFunction = true, ConstMemberFunction = true }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef P1 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); const ClassType &self = object.AsConstRef<const ClassType>(); return (self.*function)(arg0, arg1); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2) const> { typedef FunctionSignature<void (*)(A0, A1)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2) const; public: enum { ParameterCount = 3, MemberFunction = true, ConstMemberFunction = true }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef P2 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); const ClassType &self = object.AsConstRef<const ClassType>(); return (self.*function)(arg0, arg1, arg2); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2, typename A3> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2, A3) const> { typedef FunctionSignature<void (*)(A0, A1, A2)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2, A3) const; public: enum { ParameterCount = 4, MemberFunction = true, ConstMemberFunction = true }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef P3 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); const ClassType &self = object.AsConstRef<const ClassType>(); return (self.*function)(arg0, arg1, arg2, arg3); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2, typename A3, typename A4> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2, A3, A4) const> { typedef FunctionSignature<void (*)(A0, A1, A2, A3)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2, A3, A4) const; public: enum { ParameterCount = 5, MemberFunction = true, ConstMemberFunction = true }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef P4 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); const ClassType &self = object.AsConstRef<const ClassType>(); return (self.*function)(arg0, arg1, arg2, arg3, arg4); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2, A3, A4, A5) const> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2, A3, A4, A5) const; public: enum { ParameterCount = 6, MemberFunction = true, ConstMemberFunction = true }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef P5 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); const ClassType &self = object.AsConstRef<const ClassType>(); return (self.*function)(arg0, arg1, arg2, arg3, arg4, arg5); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2, A3, A4, A5, A6) const> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2, A3, A4, A5, A6) const; public: enum { ParameterCount = 7, MemberFunction = true, ConstMemberFunction = true }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef P6 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); const ClassType &self = object.AsConstRef<const ClassType>(); return (self.*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2, A3, A4, A5, A6, A7) const> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5, A6)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2, A3, A4, A5, A6, A7) const; public: enum { ParameterCount = 8, MemberFunction = true, ConstMemberFunction = true }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef ParameterHelper<A7> P7; typedef P7 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); typename P7::ArgType arg7 = P7::Arg(args[7]); const ClassType &self = object.AsConstRef<const ClassType>(); return (self.*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7, typename A8> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2, A3, A4, A5, A6, A7, A8) const> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5, A6, A7)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2, A3, A4, A5, A6, A7, A8) const; public: enum { ParameterCount = 9, MemberFunction = true, ConstMemberFunction = true }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef ParameterHelper<A7> P7; typedef ParameterHelper<A8> P8; typedef P8 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); typename P7::ArgType arg7 = P7::Arg(args[7]); typename P8::ArgType arg8 = P8::Arg(args[8]); const ClassType &self = object.AsConstRef<const ClassType>(); return (self.*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7, typename A8, typename A9> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9) const> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9) const; public: enum { ParameterCount = 10, MemberFunction = true, ConstMemberFunction = true }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef ParameterHelper<A7> P7; typedef ParameterHelper<A8> P8; typedef ParameterHelper<A9> P9; typedef P9 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); typename P7::ArgType arg7 = P7::Arg(args[7]); typename P8::ArgType arg8 = P8::Arg(args[8]); typename P9::ArgType arg9 = P9::Arg(args[9]); const ClassType &self = object.AsConstRef<const ClassType>(); return (self.*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7, typename A8, typename A9, typename A10> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10) const> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10) const; public: enum { ParameterCount = 11, MemberFunction = true, ConstMemberFunction = true }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef ParameterHelper<A7> P7; typedef ParameterHelper<A8> P8; typedef ParameterHelper<A9> P9; typedef ParameterHelper<A10> P10; typedef P10 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); typename P7::ArgType arg7 = P7::Arg(args[7]); typename P8::ArgType arg8 = P8::Arg(args[8]); typename P9::ArgType arg9 = P9::Arg(args[9]); typename P10::ArgType arg10 = P10::Arg(args[10]); const ClassType &self = object.AsConstRef<const ClassType>(); return (self.*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7, typename A8, typename A9, typename A10, typename A11> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11) const> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11) const; public: enum { ParameterCount = 12, MemberFunction = true, ConstMemberFunction = true }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef ParameterHelper<A7> P7; typedef ParameterHelper<A8> P8; typedef ParameterHelper<A9> P9; typedef ParameterHelper<A10> P10; typedef ParameterHelper<A11> P11; typedef P11 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); typename P7::ArgType arg7 = P7::Arg(args[7]); typename P8::ArgType arg8 = P8::Arg(args[8]); typename P9::ArgType arg9 = P9::Arg(args[9]); typename P10::ArgType arg10 = P10::Arg(args[10]); typename P11::ArgType arg11 = P11::Arg(args[11]); const ClassType &self = object.AsConstRef<const ClassType>(); return (self.*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7, typename A8, typename A9, typename A10, typename A11, typename A12> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12) const> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12) const; public: enum { ParameterCount = 13, MemberFunction = true, ConstMemberFunction = true }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef ParameterHelper<A7> P7; typedef ParameterHelper<A8> P8; typedef ParameterHelper<A9> P9; typedef ParameterHelper<A10> P10; typedef ParameterHelper<A11> P11; typedef ParameterHelper<A12> P12; typedef P12 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); typename P7::ArgType arg7 = P7::Arg(args[7]); typename P8::ArgType arg8 = P8::Arg(args[8]); typename P9::ArgType arg9 = P9::Arg(args[9]); typename P10::ArgType arg10 = P10::Arg(args[10]); typename P11::ArgType arg11 = P11::Arg(args[11]); typename P12::ArgType arg12 = P12::Arg(args[12]); const ClassType &self = object.AsConstRef<const ClassType>(); return (self.*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7, typename A8, typename A9, typename A10, typename A11, typename A12, typename A13> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13) const> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13) const; public: enum { ParameterCount = 14, MemberFunction = true, ConstMemberFunction = true }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef ParameterHelper<A7> P7; typedef ParameterHelper<A8> P8; typedef ParameterHelper<A9> P9; typedef ParameterHelper<A10> P10; typedef ParameterHelper<A11> P11; typedef ParameterHelper<A12> P12; typedef ParameterHelper<A13> P13; typedef P13 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); typename P7::ArgType arg7 = P7::Arg(args[7]); typename P8::ArgType arg8 = P8::Arg(args[8]); typename P9::ArgType arg9 = P9::Arg(args[9]); typename P10::ArgType arg10 = P10::Arg(args[10]); typename P11::ArgType arg11 = P11::Arg(args[11]); typename P12::ArgType arg12 = P12::Arg(args[12]); typename P13::ArgType arg13 = P13::Arg(args[13]); const ClassType &self = object.AsConstRef<const ClassType>(); return (self.*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13); } }; template<typename ResultType, typename ClassType, typename A0, typename A1, typename A2, typename A3, typename A4, typename A5, typename A6, typename A7, typename A8, typename A9, typename A10, typename A11, typename A12, typename A13, typename A14> class FunctionSignature<ResultType (ClassType::*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14) const> { typedef FunctionSignature<void (*)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13)> BaseFunctionSignature; typedef ResultType (ClassType::*FunctionType)(A0, A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, A11, A12, A13, A14) const; public: enum { ParameterCount = 15, MemberFunction = true, ConstMemberFunction = true }; typedef ParameterHelper<A0> P0; typedef ParameterHelper<A1> P1; typedef ParameterHelper<A2> P2; typedef ParameterHelper<A3> P3; typedef ParameterHelper<A4> P4; typedef ParameterHelper<A5> P5; typedef ParameterHelper<A6> P6; typedef ParameterHelper<A7> P7; typedef ParameterHelper<A8> P8; typedef ParameterHelper<A9> P9; typedef ParameterHelper<A10> P10; typedef ParameterHelper<A11> P11; typedef ParameterHelper<A12> P12; typedef ParameterHelper<A13> P13; typedef ParameterHelper<A14> P14; typedef P14 LastParamType; static const Type *GetParameterType(int index, bool *is_mutable = 0) { return index == ParameterCount-1 ? ((is_mutable ? (void)(*is_mutable = LastParamType::MutableParameter) : (void)0), TypeOf<typename LastParamType::Type>()) : BaseFunctionSignature::GetParameterType(index, is_mutable); } typedef ResultType TheResultType; static const Type *GetResultType() { return TypeOf<typename ParameterHelper<ResultType>::Type>(); } typedef ClassType TheClassType; static const Type *GetClassType() { return TypeOf<typename ParameterHelper<ClassType>::Type>(); } static ResultType Call(const FunctionType &function, const Variant &object, Variant *args) { typename P0::ArgType arg0 = P0::Arg(args[0]); typename P1::ArgType arg1 = P1::Arg(args[1]); typename P2::ArgType arg2 = P2::Arg(args[2]); typename P3::ArgType arg3 = P3::Arg(args[3]); typename P4::ArgType arg4 = P4::Arg(args[4]); typename P5::ArgType arg5 = P5::Arg(args[5]); typename P6::ArgType arg6 = P6::Arg(args[6]); typename P7::ArgType arg7 = P7::Arg(args[7]); typename P8::ArgType arg8 = P8::Arg(args[8]); typename P9::ArgType arg9 = P9::Arg(args[9]); typename P10::ArgType arg10 = P10::Arg(args[10]); typename P11::ArgType arg11 = P11::Arg(args[11]); typename P12::ArgType arg12 = P12::Arg(args[12]); typename P13::ArgType arg13 = P13::Arg(args[13]); typename P14::ArgType arg14 = P14::Arg(args[14]); const ClassType &self = object.AsConstRef<const ClassType>(); return (self.*function)(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14); } }; } } #endif // REFLECT_FUNCTION_FUNCTIONSIGNATURE_HPP_
[ "adam.freidin@gmail.com" ]
adam.freidin@gmail.com
ab2a00bfca830e6f7f0ce09b262ac4aedeaa0644
17f39146383b30a8aa5a199dd4cd821ced9d5e8e
/blinkdisp.h
4e6c91d9f692998afce3c4d1dc48874568f0e730
[]
no_license
jendralhxr/blinkie-reconst
494d785606511cb9602b38dbfb0020857d180bf3
a80064d7ec5332711c2d353e9048d7a704888120
refs/heads/master
2020-04-05T23:17:18.908790
2015-08-04T02:09:45
2015-08-04T02:09:45
40,158,210
0
0
null
null
null
null
UTF-8
C++
false
false
913
h
#ifndef BLINKDISP_H #define BLINKDISP_H #include <QWidget> #include <QImage> #include <QPainter> #include <QPixmap> #include <QLabel> #include <QString> #include <opencv2/opencv.hpp> #ifndef IMG_SIZE #define IMAGE_WIDTH 512 #define IMAGE_HEIGHT 96 #endif class blinkDisp : public QLabel { Q_OBJECT public: explicit blinkDisp(QWidget *parent = 0); ~blinkDisp(); signals: public slots: void renderImage(); void drawOverlay(); void setAxisY0(int y); void setAxisX0(int x); void setAxisX1(int x); void setAxisX2(int x); void setAxisX3(int x); void setAxisX4(int x); void setAxisX5(int x); void setAxisX6(int x); void setAxisX7(int x); void updateImage(QImage newdisplay); private: cv::Mat image, tmp; QImage disp; QPainter painter; int axisY; int axisX[8]; }; #endif // BLINKDISP_H
[ "jendral.hxr@gmail.com" ]
jendral.hxr@gmail.com
b9d38ee60885ff8a1eb6f17d3383d887d3f8e2f1
ff6436e32561aab9b481cb74ad71f5d27d8aff87
/Learning_CPP/chp14/complex.h
7d8436e3bf2b42446178dc3a1bfb0ccd5fbbda0d
[ "MIT" ]
permissive
chuanhao01/CS_CPP
9f9c59d5b04c0527a9781a7a97bdfcd8101b958f
32da9a1902ca02d126a68f5666625fb0c9b8e8f4
refs/heads/master
2020-09-06T10:28:47.902821
2020-09-03T03:24:55
2020-09-03T03:27:40
220,399,223
0
0
null
null
null
null
UTF-8
C++
false
false
798
h
class Complex{ // Private here private: // Instance variables // For the cartesian cords double real, imag; // For polar cords double theta, mag; // Bool to check if mode is done bool polar, cartesian; // Helper functions // Calculating stuff void calculateCartesian(); void calculatePolar(); public: Complex (){}; // Setter functions void setCartesian(double r, double i); void setPolar(double t, double m); // Getter functions // Cartesian double getReal(); double getImaginary(); // Polar double getTheta(); double getMagnitude(); // Helper functions // Print functions void printPolar(); void printCartesian(); };
[ "chuanhaolim@gmail.com" ]
chuanhaolim@gmail.com
d027a3a96d43aaef8ee0da8f3d09b49a2e8836c5
642742cd1138f8e0fd9bb19271af676d1ae5facc
/core/basics/tests/stringutilsTest.h
2ce43301c66859eea13e927a11626d4042eef87d
[]
no_license
cvjena/nice-core
d64f3b1b873047eb383ad116323f3f8617978886
d9578e23f5f9818e7c777f6976eab535b74dc62f
refs/heads/master
2021-01-20T05:32:01.068843
2019-02-01T16:17:13
2019-02-01T16:17:13
3,012,683
4
4
null
2018-10-22T20:37:52
2011-12-19T15:01:13
C++
UTF-8
C++
false
false
451
h
#ifndef TIMERTEST_H #define TIMERTEST_H #include <cppunit/extensions/HelperMacros.h> #include "core/basics/stringutils.h" /** * CppUnit-Testcase. * Tests for stringutils. */ class stringutilsTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( stringutilsTest ); CPPUNIT_TEST( teststringutils ); CPPUNIT_TEST_SUITE_END(); private: public: void setUp(); void tearDown(); void teststringutils(); }; #endif // TIMERTEST_H
[ "Erik.Rodner@uni-jena.de" ]
Erik.Rodner@uni-jena.de
d0021f5bf25040d656ece4dec19600ae39c93944
e72bffe29acdb230132a19076f600a8831879b8e
/servo/include/servoController.h
5e2d488e041cbec537f6c641200dc13c69b3a755
[]
no_license
SurgicalRoboticsUMA/servoController
a43fb8a366a763bda2a43b649f8f6d0f88ef6b3b
04c240d0b4aacebe44792307595d4eef623bf025
refs/heads/master
2021-11-11T15:42:07.757326
2021-11-08T12:24:52
2021-11-08T12:24:52
237,019,588
1
1
null
null
null
null
UTF-8
C++
false
false
3,045
h
#if !defined(_SERVOCONTROLLER_H) #define _SERVOCONTROLLER_H #include <iostream> #include <libusb.h> #include <cstdlib> #include "protocol.h" using namespace std; namespace srcHals { class servoController{ private: bool deviceMatchesVendorProduct(libusb_device *device, unsigned short idVendor, unsigned short idProduct); unsigned short vendorId; unsigned short productIDArray[4]; libusb_device_handle *device_handle; libusb_context *ctx; // Represents the current status of a channel. struct ServoStatus { // The position in units of quarter-microseconds. unsigned short position; // The target position in units of quarter-microseconds. unsigned short target; // The speed limit. unsigned short speed; // The acceleration limit. unsigned char acceleration; }; typedef struct ServoStatus ServoStatus; // Represents the non-channel-specific variables that can be read from // a Micro Maestro using REQUEST_GET_VARIABLES. struct MicroMaestroVariables { // The number of values on the data stack (0-32). A value of 0 means the stack is empty. unsigned char stackPointer; // The number of return locations on the call stack (0-10). A value of 0 means the stack is empty. unsigned char callStackPointer; // The error register. Each bit stands for a different error (see uscError). // If the bit is one, then it means that error occurred some time since the last // GET_ERRORS serial command or CLEAR_ERRORS USB command. unsigned short errors; // The address (in bytes) of the next bytecode instruction that will be executed. unsigned short programCounter; // Meaningless bytes to protect the program from stack underflows. unsigned short buffer[3]; // The data stack used by the script. The values in locations 0 through stackPointer-1 // are on the stack. unsigned short stack[32]; // The call stack used by the script. The addresses in locations 0 through // callStackPointer-1 are on the call stack. The next return will make the // program counter go to callStack[callStackPointer-1]. unsigned short callStack[10]; // 0 = script is running. // 1 = script is done. // 2 = script will be done as soon as it executes one more instruction // (used to implement step-through debugging features) unsigned char scriptDone; // Meaningless byte to protect the program from call stack overflows. unsigned char buffer2; // Container for channel information. The struct is 1 byte too large (should be 7, not 8) ServoStatus ServoSettings[6]; }; typedef struct MicroMaestroVariables MicroMaestroVariables; // void getVariablesMicroMaestro(MaestroVariables variables, short* stack, short* callStack, ServoStatus* servos); public: servoController(); ~ servoController(); void setTarget(int position, int servo); void getServoPosition(short* positions, short numServos); }; }; #endif
[ "noreply@github.com" ]
noreply@github.com
477272ea7bd0fcaecdc271a2515951e6f1a93e4e
64e4fabf9b43b6b02b14b9df7e1751732b30ad38
/src/chromium/gen/gen_combined/mojo/public/interfaces/bindings/tests/test_structs.mojom.cc
415999c4535e8843da309cdb0ef59b4210c9ef7f
[ "BSD-3-Clause" ]
permissive
ivan-kits/skia-opengl-emscripten
8a5ee0eab0214c84df3cd7eef37c8ba54acb045e
79573e1ee794061bdcfd88cacdb75243eff5f6f0
refs/heads/master
2023-02-03T16:39:20.556706
2020-12-25T14:00:49
2020-12-25T14:00:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
69,701
cc
// Copyright 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. #if defined(__clang__) #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wunused-private-field" #elif defined(_MSC_VER) #pragma warning(push) #pragma warning(disable:4056) #pragma warning(disable:4065) #pragma warning(disable:4756) #endif #include "mojo/public/interfaces/bindings/tests/test_structs.mojom.h" #include <math.h> #include <stdint.h> #include <utility> #include "base/location.h" #include "base/logging.h" #include "base/run_loop.h" #include "base/task/common/task_annotator.h" #include "mojo/public/cpp/bindings/lib/message_internal.h" #include "mojo/public/cpp/bindings/lib/serialization_util.h" #include "mojo/public/cpp/bindings/lib/unserialized_message_context.h" #include "mojo/public/cpp/bindings/lib/validate_params.h" #include "mojo/public/cpp/bindings/lib/validation_context.h" #include "mojo/public/cpp/bindings/lib/validation_errors.h" #include "mojo/public/interfaces/bindings/interface_control_messages.mojom.h" #include "mojo/public/interfaces/bindings/tests/test_structs.mojom-params-data.h" #include "mojo/public/interfaces/bindings/tests/test_structs.mojom-shared-message-ids.h" #include "mojo/public/interfaces/bindings/tests/test_structs.mojom-import-headers.h" #ifndef MOJO_PUBLIC_INTERFACES_BINDINGS_TESTS_TEST_STRUCTS_MOJOM_JUMBO_H_ #define MOJO_PUBLIC_INTERFACES_BINDINGS_TESTS_TEST_STRUCTS_MOJOM_JUMBO_H_ #include "mojo/public/cpp/bindings/tests/rect_chromium_traits.h" #include "mojo/public/cpp/bindings/tests/shared_rect_traits.h" #endif namespace mojo { namespace test { const char DefaultFieldValues::kFoo[] = "foo"; constexpr int32_t ScopedConstants::TEN; constexpr int32_t ScopedConstants::ALSO_TEN; constexpr double FloatNumberValues::V0; constexpr double FloatNumberValues::V1; constexpr double FloatNumberValues::V2; constexpr float FloatNumberValues::V3; constexpr float FloatNumberValues::V4; constexpr float FloatNumberValues::V5; constexpr float FloatNumberValues::V6; constexpr double FloatNumberValues::V7; constexpr double FloatNumberValues::V8; constexpr double FloatNumberValues::V9; constexpr int8_t IntegerNumberValues::V0; constexpr int8_t IntegerNumberValues::V1; constexpr int8_t IntegerNumberValues::V2; constexpr int8_t IntegerNumberValues::V3; constexpr int8_t IntegerNumberValues::V4; constexpr int16_t IntegerNumberValues::V5; constexpr int16_t IntegerNumberValues::V6; constexpr int16_t IntegerNumberValues::V7; constexpr int16_t IntegerNumberValues::V8; constexpr int16_t IntegerNumberValues::V9; constexpr int32_t IntegerNumberValues::V10; constexpr int32_t IntegerNumberValues::V11; constexpr int32_t IntegerNumberValues::V12; constexpr int32_t IntegerNumberValues::V13; constexpr int32_t IntegerNumberValues::V14; constexpr int64_t IntegerNumberValues::V15; constexpr int64_t IntegerNumberValues::V16; constexpr int64_t IntegerNumberValues::V17; constexpr int64_t IntegerNumberValues::V18; constexpr int64_t IntegerNumberValues::V19; constexpr uint8_t UnsignedNumberValues::V0; constexpr uint8_t UnsignedNumberValues::V1; constexpr uint8_t UnsignedNumberValues::V2; constexpr uint16_t UnsignedNumberValues::V3; constexpr uint16_t UnsignedNumberValues::V4; constexpr uint16_t UnsignedNumberValues::V5; constexpr uint32_t UnsignedNumberValues::V6; constexpr uint32_t UnsignedNumberValues::V7; constexpr uint32_t UnsignedNumberValues::V8; constexpr uint64_t UnsignedNumberValues::V9; constexpr uint64_t UnsignedNumberValues::V10; constexpr uint64_t UnsignedNumberValues::V11; NamedRegion::NamedRegion() : name(), rects() {} NamedRegion::NamedRegion( const base::Optional<std::string>& name_in, base::Optional<std::vector<::mojo::test::RectPtr>> rects_in) : name(std::move(name_in)), rects(std::move(rects_in)) {} NamedRegion::~NamedRegion() = default; bool NamedRegion::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } RectPair::RectPair() : first(), second() {} RectPair::RectPair( ::mojo::test::RectPtr first_in, ::mojo::test::RectPtr second_in) : first(std::move(first_in)), second(std::move(second_in)) {} RectPair::~RectPair() = default; bool RectPair::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } EmptyStruct::EmptyStruct() {} EmptyStruct::~EmptyStruct() = default; size_t EmptyStruct::Hash(size_t seed) const { return seed; } bool EmptyStruct::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } NoDefaultFieldValues::NoDefaultFieldValues() : f0(), f1(), f2(), f3(), f4(), f5(), f6(), f7(), f8(), f9(), f10(), f11(), f12(), f13(), f14(), f15(), f16(), f17(), f18(), f19(), f20(), f21(), f22(), f23(), f24(), f25(), f26(), f27(), f28() {} NoDefaultFieldValues::NoDefaultFieldValues( bool f0_in, int8_t f1_in, uint8_t f2_in, int16_t f3_in, uint16_t f4_in, int32_t f5_in, uint32_t f6_in, int64_t f7_in, uint64_t f8_in, float f9_in, double f10_in, const std::string& f11_in, const base::Optional<std::string>& f12_in, mojo::ScopedMessagePipeHandle f13_in, mojo::ScopedDataPipeConsumerHandle f14_in, mojo::ScopedDataPipeProducerHandle f15_in, mojo::ScopedMessagePipeHandle f16_in, mojo::ScopedDataPipeConsumerHandle f17_in, mojo::ScopedDataPipeProducerHandle f18_in, mojo::ScopedHandle f19_in, mojo::ScopedHandle f20_in, mojo::ScopedSharedBufferHandle f21_in, mojo::ScopedSharedBufferHandle f22_in, const std::vector<std::string>& f23_in, const std::vector<base::Optional<std::string>>& f24_in, const base::Optional<std::vector<std::string>>& f25_in, const base::Optional<std::vector<base::Optional<std::string>>>& f26_in, EmptyStructPtr f27_in, EmptyStructPtr f28_in) : f0(std::move(f0_in)), f1(std::move(f1_in)), f2(std::move(f2_in)), f3(std::move(f3_in)), f4(std::move(f4_in)), f5(std::move(f5_in)), f6(std::move(f6_in)), f7(std::move(f7_in)), f8(std::move(f8_in)), f9(std::move(f9_in)), f10(std::move(f10_in)), f11(std::move(f11_in)), f12(std::move(f12_in)), f13(std::move(f13_in)), f14(std::move(f14_in)), f15(std::move(f15_in)), f16(std::move(f16_in)), f17(std::move(f17_in)), f18(std::move(f18_in)), f19(std::move(f19_in)), f20(std::move(f20_in)), f21(std::move(f21_in)), f22(std::move(f22_in)), f23(std::move(f23_in)), f24(std::move(f24_in)), f25(std::move(f25_in)), f26(std::move(f26_in)), f27(std::move(f27_in)), f28(std::move(f28_in)) {} NoDefaultFieldValues::~NoDefaultFieldValues() = default; bool NoDefaultFieldValues::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } DefaultFieldValues::DefaultFieldValues() : f0(true), f1(100), f2(100U), f3(100), f4(100U), f5(100), f6(100U), f7(100), f8(100ULL), f9(100), f10(100.0f), f11(100), f12(100.0), f13(DefaultFieldValues::kFoo), f14(DefaultFieldValues::kFoo), f15(::mojo::test::Rect::New()), f16(::mojo::test::Rect::New()) {} DefaultFieldValues::DefaultFieldValues( bool f0_in, int8_t f1_in, uint8_t f2_in, int16_t f3_in, uint16_t f4_in, int32_t f5_in, uint32_t f6_in, int64_t f7_in, uint64_t f8_in, float f9_in, float f10_in, double f11_in, double f12_in, const std::string& f13_in, const base::Optional<std::string>& f14_in, ::mojo::test::RectPtr f15_in, ::mojo::test::RectPtr f16_in) : f0(std::move(f0_in)), f1(std::move(f1_in)), f2(std::move(f2_in)), f3(std::move(f3_in)), f4(std::move(f4_in)), f5(std::move(f5_in)), f6(std::move(f6_in)), f7(std::move(f7_in)), f8(std::move(f8_in)), f9(std::move(f9_in)), f10(std::move(f10_in)), f11(std::move(f11_in)), f12(std::move(f12_in)), f13(std::move(f13_in)), f14(std::move(f14_in)), f15(std::move(f15_in)), f16(std::move(f16_in)) {} DefaultFieldValues::~DefaultFieldValues() = default; bool DefaultFieldValues::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } ScopedConstants::ScopedConstants() : f0(ScopedConstants_EType::E0), f1(ScopedConstants_EType::E1), f2(ScopedConstants_EType::E2), f3(ScopedConstants_EType::E3), f4(ScopedConstants_EType::E4), f5(ScopedConstants::TEN), f6(ScopedConstants::ALSO_TEN) {} ScopedConstants::ScopedConstants( ScopedConstants::EType f0_in, ScopedConstants::EType f1_in, ScopedConstants::EType f2_in, ScopedConstants::EType f3_in, ScopedConstants::EType f4_in, int32_t f5_in, int32_t f6_in) : f0(std::move(f0_in)), f1(std::move(f1_in)), f2(std::move(f2_in)), f3(std::move(f3_in)), f4(std::move(f4_in)), f5(std::move(f5_in)), f6(std::move(f6_in)) {} ScopedConstants::~ScopedConstants() = default; size_t ScopedConstants::Hash(size_t seed) const { seed = mojo::internal::Hash(seed, this->f0); seed = mojo::internal::Hash(seed, this->f1); seed = mojo::internal::Hash(seed, this->f2); seed = mojo::internal::Hash(seed, this->f3); seed = mojo::internal::Hash(seed, this->f4); seed = mojo::internal::Hash(seed, this->f5); seed = mojo::internal::Hash(seed, this->f6); return seed; } bool ScopedConstants::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } MapKeyTypes::MapKeyTypes() : f1(), f2(), f3(), f4(), f5(), f6(), f7(), f8(), f9(), f10(), f11() {} MapKeyTypes::MapKeyTypes( const base::flat_map<int8_t, int8_t>& f1_in, const base::flat_map<uint8_t, uint8_t>& f2_in, const base::flat_map<int16_t, int16_t>& f3_in, const base::flat_map<uint16_t, uint16_t>& f4_in, const base::flat_map<int32_t, int32_t>& f5_in, const base::flat_map<uint32_t, uint32_t>& f6_in, const base::flat_map<int64_t, int64_t>& f7_in, const base::flat_map<uint64_t, uint64_t>& f8_in, const base::flat_map<float, float>& f9_in, const base::flat_map<double, double>& f10_in, const base::flat_map<std::string, std::string>& f11_in) : f1(std::move(f1_in)), f2(std::move(f2_in)), f3(std::move(f3_in)), f4(std::move(f4_in)), f5(std::move(f5_in)), f6(std::move(f6_in)), f7(std::move(f7_in)), f8(std::move(f8_in)), f9(std::move(f9_in)), f10(std::move(f10_in)), f11(std::move(f11_in)) {} MapKeyTypes::~MapKeyTypes() = default; bool MapKeyTypes::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } MapValueTypes::MapValueTypes() : f0(), f1(), f2(), f3(), f4(), f5(), f6(), f7(), f8(), f9(), f10(), f11() {} MapValueTypes::MapValueTypes( const base::flat_map<std::string, std::vector<std::string>>& f0_in, const base::flat_map<std::string, base::Optional<std::vector<std::string>>>& f1_in, const base::flat_map<std::string, std::vector<base::Optional<std::string>>>& f2_in, const base::flat_map<std::string, std::vector<std::string>>& f3_in, const base::flat_map<std::string, std::vector<base::Optional<std::vector<std::string>>>>& f4_in, const base::flat_map<std::string, std::vector<std::vector<std::string>>>& f5_in, base::flat_map<std::string, ::mojo::test::RectPtr> f6_in, const base::flat_map<std::string, base::flat_map<std::string, std::string>>& f7_in, const base::flat_map<std::string, std::vector<base::flat_map<std::string, std::string>>>& f8_in, base::flat_map<std::string, mojo::ScopedHandle> f9_in, base::flat_map<std::string, std::vector<mojo::ScopedHandle>> f10_in, base::flat_map<std::string, base::flat_map<std::string, mojo::ScopedHandle>> f11_in) : f0(std::move(f0_in)), f1(std::move(f1_in)), f2(std::move(f2_in)), f3(std::move(f3_in)), f4(std::move(f4_in)), f5(std::move(f5_in)), f6(std::move(f6_in)), f7(std::move(f7_in)), f8(std::move(f8_in)), f9(std::move(f9_in)), f10(std::move(f10_in)), f11(std::move(f11_in)) {} MapValueTypes::~MapValueTypes() = default; bool MapValueTypes::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } ArrayValueTypes::ArrayValueTypes() : f0(), f1(), f2(), f3(), f4(), f5(), f6(), f7() {} ArrayValueTypes::ArrayValueTypes( const std::vector<int8_t>& f0_in, const std::vector<int16_t>& f1_in, const std::vector<int32_t>& f2_in, const std::vector<int64_t>& f3_in, const std::vector<float>& f4_in, const std::vector<double>& f5_in, std::vector<mojo::PendingRemote<SomeInterface>> f6_in, std::vector<mojo::PendingReceiver<SomeInterface>> f7_in) : f0(std::move(f0_in)), f1(std::move(f1_in)), f2(std::move(f2_in)), f3(std::move(f3_in)), f4(std::move(f4_in)), f5(std::move(f5_in)), f6(std::move(f6_in)), f7(std::move(f7_in)) {} ArrayValueTypes::~ArrayValueTypes() = default; bool ArrayValueTypes::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } FloatNumberValues::FloatNumberValues() : f0(FloatNumberValues::V0), f1(FloatNumberValues::V1), f2(FloatNumberValues::V2), f3(FloatNumberValues::V3), f4(FloatNumberValues::V4), f5(FloatNumberValues::V5), f6(FloatNumberValues::V6), f7(FloatNumberValues::V7), f8(FloatNumberValues::V8), f9(FloatNumberValues::V9) {} FloatNumberValues::FloatNumberValues( double f0_in, double f1_in, double f2_in, float f3_in, float f4_in, float f5_in, float f6_in, double f7_in, double f8_in, double f9_in) : f0(std::move(f0_in)), f1(std::move(f1_in)), f2(std::move(f2_in)), f3(std::move(f3_in)), f4(std::move(f4_in)), f5(std::move(f5_in)), f6(std::move(f6_in)), f7(std::move(f7_in)), f8(std::move(f8_in)), f9(std::move(f9_in)) {} FloatNumberValues::~FloatNumberValues() = default; size_t FloatNumberValues::Hash(size_t seed) const { seed = mojo::internal::Hash(seed, this->f0); seed = mojo::internal::Hash(seed, this->f1); seed = mojo::internal::Hash(seed, this->f2); seed = mojo::internal::Hash(seed, this->f3); seed = mojo::internal::Hash(seed, this->f4); seed = mojo::internal::Hash(seed, this->f5); seed = mojo::internal::Hash(seed, this->f6); seed = mojo::internal::Hash(seed, this->f7); seed = mojo::internal::Hash(seed, this->f8); seed = mojo::internal::Hash(seed, this->f9); return seed; } bool FloatNumberValues::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } IntegerNumberValues::IntegerNumberValues() : f0(IntegerNumberValues::V0), f1(IntegerNumberValues::V1), f2(IntegerNumberValues::V2), f3(IntegerNumberValues::V3), f4(IntegerNumberValues::V4), f5(IntegerNumberValues::V5), f6(IntegerNumberValues::V6), f7(IntegerNumberValues::V7), f8(IntegerNumberValues::V8), f9(IntegerNumberValues::V9), f10(IntegerNumberValues::V10), f11(IntegerNumberValues::V11), f12(IntegerNumberValues::V12), f13(IntegerNumberValues::V13), f14(IntegerNumberValues::V14), f15(IntegerNumberValues::V15), f16(IntegerNumberValues::V16), f17(IntegerNumberValues::V17), f18(IntegerNumberValues::V18), f19(IntegerNumberValues::V19) {} IntegerNumberValues::IntegerNumberValues( int8_t f0_in, int8_t f1_in, int8_t f2_in, int8_t f3_in, int8_t f4_in, int16_t f5_in, int16_t f6_in, int16_t f7_in, int16_t f8_in, int16_t f9_in, int32_t f10_in, int32_t f11_in, int32_t f12_in, int32_t f13_in, int32_t f14_in, int64_t f15_in, int64_t f16_in, int64_t f17_in, int64_t f18_in, int64_t f19_in) : f0(std::move(f0_in)), f1(std::move(f1_in)), f2(std::move(f2_in)), f3(std::move(f3_in)), f4(std::move(f4_in)), f5(std::move(f5_in)), f6(std::move(f6_in)), f7(std::move(f7_in)), f8(std::move(f8_in)), f9(std::move(f9_in)), f10(std::move(f10_in)), f11(std::move(f11_in)), f12(std::move(f12_in)), f13(std::move(f13_in)), f14(std::move(f14_in)), f15(std::move(f15_in)), f16(std::move(f16_in)), f17(std::move(f17_in)), f18(std::move(f18_in)), f19(std::move(f19_in)) {} IntegerNumberValues::~IntegerNumberValues() = default; size_t IntegerNumberValues::Hash(size_t seed) const { seed = mojo::internal::Hash(seed, this->f0); seed = mojo::internal::Hash(seed, this->f1); seed = mojo::internal::Hash(seed, this->f2); seed = mojo::internal::Hash(seed, this->f3); seed = mojo::internal::Hash(seed, this->f4); seed = mojo::internal::Hash(seed, this->f5); seed = mojo::internal::Hash(seed, this->f6); seed = mojo::internal::Hash(seed, this->f7); seed = mojo::internal::Hash(seed, this->f8); seed = mojo::internal::Hash(seed, this->f9); seed = mojo::internal::Hash(seed, this->f10); seed = mojo::internal::Hash(seed, this->f11); seed = mojo::internal::Hash(seed, this->f12); seed = mojo::internal::Hash(seed, this->f13); seed = mojo::internal::Hash(seed, this->f14); seed = mojo::internal::Hash(seed, this->f15); seed = mojo::internal::Hash(seed, this->f16); seed = mojo::internal::Hash(seed, this->f17); seed = mojo::internal::Hash(seed, this->f18); seed = mojo::internal::Hash(seed, this->f19); return seed; } bool IntegerNumberValues::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } UnsignedNumberValues::UnsignedNumberValues() : f0(UnsignedNumberValues::V0), f1(UnsignedNumberValues::V1), f2(UnsignedNumberValues::V2), f3(UnsignedNumberValues::V3), f4(UnsignedNumberValues::V4), f5(UnsignedNumberValues::V5), f6(UnsignedNumberValues::V6), f7(UnsignedNumberValues::V7), f8(UnsignedNumberValues::V8), f9(UnsignedNumberValues::V9), f10(UnsignedNumberValues::V10), f11(UnsignedNumberValues::V11) {} UnsignedNumberValues::UnsignedNumberValues( uint8_t f0_in, uint8_t f1_in, uint8_t f2_in, uint16_t f3_in, uint16_t f4_in, uint16_t f5_in, uint32_t f6_in, uint32_t f7_in, uint32_t f8_in, uint64_t f9_in, uint64_t f10_in, uint64_t f11_in) : f0(std::move(f0_in)), f1(std::move(f1_in)), f2(std::move(f2_in)), f3(std::move(f3_in)), f4(std::move(f4_in)), f5(std::move(f5_in)), f6(std::move(f6_in)), f7(std::move(f7_in)), f8(std::move(f8_in)), f9(std::move(f9_in)), f10(std::move(f10_in)), f11(std::move(f11_in)) {} UnsignedNumberValues::~UnsignedNumberValues() = default; size_t UnsignedNumberValues::Hash(size_t seed) const { seed = mojo::internal::Hash(seed, this->f0); seed = mojo::internal::Hash(seed, this->f1); seed = mojo::internal::Hash(seed, this->f2); seed = mojo::internal::Hash(seed, this->f3); seed = mojo::internal::Hash(seed, this->f4); seed = mojo::internal::Hash(seed, this->f5); seed = mojo::internal::Hash(seed, this->f6); seed = mojo::internal::Hash(seed, this->f7); seed = mojo::internal::Hash(seed, this->f8); seed = mojo::internal::Hash(seed, this->f9); seed = mojo::internal::Hash(seed, this->f10); seed = mojo::internal::Hash(seed, this->f11); return seed; } bool UnsignedNumberValues::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } BitArrayValues::BitArrayValues() : f0(), f1(), f2(), f3(), f4(), f5(), f6() {} BitArrayValues::BitArrayValues( const std::vector<bool>& f0_in, const std::vector<bool>& f1_in, const std::vector<bool>& f2_in, const std::vector<bool>& f3_in, const std::vector<std::vector<bool>>& f4_in, const std::vector<base::Optional<std::vector<bool>>>& f5_in, const std::vector<base::Optional<std::vector<bool>>>& f6_in) : f0(std::move(f0_in)), f1(std::move(f1_in)), f2(std::move(f2_in)), f3(std::move(f3_in)), f4(std::move(f4_in)), f5(std::move(f5_in)), f6(std::move(f6_in)) {} BitArrayValues::~BitArrayValues() = default; bool BitArrayValues::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } MultiVersionStruct::MultiVersionStruct() : f_int32(), f_rect(), f_string(), f_array(), f_message_pipe(), f_bool(), f_int16() {} MultiVersionStruct::MultiVersionStruct( int32_t f_int32_in) : f_int32(std::move(f_int32_in)), f_rect(), f_string(), f_array(), f_message_pipe(), f_bool(), f_int16() {} MultiVersionStruct::MultiVersionStruct( int32_t f_int32_in, ::mojo::test::RectPtr f_rect_in) : f_int32(std::move(f_int32_in)), f_rect(std::move(f_rect_in)), f_string(), f_array(), f_message_pipe(), f_bool(), f_int16() {} MultiVersionStruct::MultiVersionStruct( int32_t f_int32_in, ::mojo::test::RectPtr f_rect_in, const base::Optional<std::string>& f_string_in) : f_int32(std::move(f_int32_in)), f_rect(std::move(f_rect_in)), f_string(std::move(f_string_in)), f_array(), f_message_pipe(), f_bool(), f_int16() {} MultiVersionStruct::MultiVersionStruct( int32_t f_int32_in, ::mojo::test::RectPtr f_rect_in, const base::Optional<std::string>& f_string_in, const base::Optional<std::vector<int8_t>>& f_array_in) : f_int32(std::move(f_int32_in)), f_rect(std::move(f_rect_in)), f_string(std::move(f_string_in)), f_array(std::move(f_array_in)), f_message_pipe(), f_bool(), f_int16() {} MultiVersionStruct::MultiVersionStruct( int32_t f_int32_in, ::mojo::test::RectPtr f_rect_in, const base::Optional<std::string>& f_string_in, const base::Optional<std::vector<int8_t>>& f_array_in, mojo::ScopedMessagePipeHandle f_message_pipe_in, bool f_bool_in) : f_int32(std::move(f_int32_in)), f_rect(std::move(f_rect_in)), f_string(std::move(f_string_in)), f_array(std::move(f_array_in)), f_message_pipe(std::move(f_message_pipe_in)), f_bool(std::move(f_bool_in)), f_int16() {} MultiVersionStruct::MultiVersionStruct( int32_t f_int32_in, ::mojo::test::RectPtr f_rect_in, const base::Optional<std::string>& f_string_in, const base::Optional<std::vector<int8_t>>& f_array_in, mojo::ScopedMessagePipeHandle f_message_pipe_in, bool f_bool_in, int16_t f_int16_in) : f_int32(std::move(f_int32_in)), f_rect(std::move(f_rect_in)), f_string(std::move(f_string_in)), f_array(std::move(f_array_in)), f_message_pipe(std::move(f_message_pipe_in)), f_bool(std::move(f_bool_in)), f_int16(std::move(f_int16_in)) {} MultiVersionStruct::~MultiVersionStruct() = default; bool MultiVersionStruct::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } MultiVersionStructV0::MultiVersionStructV0() : f_int32() {} MultiVersionStructV0::MultiVersionStructV0( int32_t f_int32_in) : f_int32(std::move(f_int32_in)) {} MultiVersionStructV0::~MultiVersionStructV0() = default; size_t MultiVersionStructV0::Hash(size_t seed) const { seed = mojo::internal::Hash(seed, this->f_int32); return seed; } bool MultiVersionStructV0::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } MultiVersionStructV1::MultiVersionStructV1() : f_int32(), f_rect() {} MultiVersionStructV1::MultiVersionStructV1( int32_t f_int32_in) : f_int32(std::move(f_int32_in)), f_rect() {} MultiVersionStructV1::MultiVersionStructV1( int32_t f_int32_in, ::mojo::test::RectPtr f_rect_in) : f_int32(std::move(f_int32_in)), f_rect(std::move(f_rect_in)) {} MultiVersionStructV1::~MultiVersionStructV1() = default; bool MultiVersionStructV1::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } MultiVersionStructV3::MultiVersionStructV3() : f_int32(), f_rect(), f_string() {} MultiVersionStructV3::MultiVersionStructV3( int32_t f_int32_in) : f_int32(std::move(f_int32_in)), f_rect(), f_string() {} MultiVersionStructV3::MultiVersionStructV3( int32_t f_int32_in, ::mojo::test::RectPtr f_rect_in) : f_int32(std::move(f_int32_in)), f_rect(std::move(f_rect_in)), f_string() {} MultiVersionStructV3::MultiVersionStructV3( int32_t f_int32_in, ::mojo::test::RectPtr f_rect_in, const base::Optional<std::string>& f_string_in) : f_int32(std::move(f_int32_in)), f_rect(std::move(f_rect_in)), f_string(std::move(f_string_in)) {} MultiVersionStructV3::~MultiVersionStructV3() = default; bool MultiVersionStructV3::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } MultiVersionStructV5::MultiVersionStructV5() : f_int32(), f_rect(), f_string(), f_array() {} MultiVersionStructV5::MultiVersionStructV5( int32_t f_int32_in) : f_int32(std::move(f_int32_in)), f_rect(), f_string(), f_array() {} MultiVersionStructV5::MultiVersionStructV5( int32_t f_int32_in, ::mojo::test::RectPtr f_rect_in) : f_int32(std::move(f_int32_in)), f_rect(std::move(f_rect_in)), f_string(), f_array() {} MultiVersionStructV5::MultiVersionStructV5( int32_t f_int32_in, ::mojo::test::RectPtr f_rect_in, const base::Optional<std::string>& f_string_in) : f_int32(std::move(f_int32_in)), f_rect(std::move(f_rect_in)), f_string(std::move(f_string_in)), f_array() {} MultiVersionStructV5::MultiVersionStructV5( int32_t f_int32_in, ::mojo::test::RectPtr f_rect_in, const base::Optional<std::string>& f_string_in, const base::Optional<std::vector<int8_t>>& f_array_in) : f_int32(std::move(f_int32_in)), f_rect(std::move(f_rect_in)), f_string(std::move(f_string_in)), f_array(std::move(f_array_in)) {} MultiVersionStructV5::~MultiVersionStructV5() = default; bool MultiVersionStructV5::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } MultiVersionStructV7::MultiVersionStructV7() : f_int32(), f_rect(), f_string(), f_array(), f_message_pipe(), f_bool() {} MultiVersionStructV7::MultiVersionStructV7( int32_t f_int32_in) : f_int32(std::move(f_int32_in)), f_rect(), f_string(), f_array(), f_message_pipe(), f_bool() {} MultiVersionStructV7::MultiVersionStructV7( int32_t f_int32_in, ::mojo::test::RectPtr f_rect_in) : f_int32(std::move(f_int32_in)), f_rect(std::move(f_rect_in)), f_string(), f_array(), f_message_pipe(), f_bool() {} MultiVersionStructV7::MultiVersionStructV7( int32_t f_int32_in, ::mojo::test::RectPtr f_rect_in, const base::Optional<std::string>& f_string_in) : f_int32(std::move(f_int32_in)), f_rect(std::move(f_rect_in)), f_string(std::move(f_string_in)), f_array(), f_message_pipe(), f_bool() {} MultiVersionStructV7::MultiVersionStructV7( int32_t f_int32_in, ::mojo::test::RectPtr f_rect_in, const base::Optional<std::string>& f_string_in, const base::Optional<std::vector<int8_t>>& f_array_in) : f_int32(std::move(f_int32_in)), f_rect(std::move(f_rect_in)), f_string(std::move(f_string_in)), f_array(std::move(f_array_in)), f_message_pipe(), f_bool() {} MultiVersionStructV7::MultiVersionStructV7( int32_t f_int32_in, ::mojo::test::RectPtr f_rect_in, const base::Optional<std::string>& f_string_in, const base::Optional<std::vector<int8_t>>& f_array_in, mojo::ScopedMessagePipeHandle f_message_pipe_in, bool f_bool_in) : f_int32(std::move(f_int32_in)), f_rect(std::move(f_rect_in)), f_string(std::move(f_string_in)), f_array(std::move(f_array_in)), f_message_pipe(std::move(f_message_pipe_in)), f_bool(std::move(f_bool_in)) {} MultiVersionStructV7::~MultiVersionStructV7() = default; bool MultiVersionStructV7::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } ReorderedStruct::ReorderedStruct() : a(3), b(6), c(1) {} ReorderedStruct::ReorderedStruct( int32_t c_in) : a(3), b(6), c(std::move(c_in)) {} ReorderedStruct::ReorderedStruct( int32_t a_in, int32_t c_in) : a(std::move(a_in)), b(6), c(std::move(c_in)) {} ReorderedStruct::ReorderedStruct( int32_t a_in, int32_t b_in, int32_t c_in) : a(std::move(a_in)), b(std::move(b_in)), c(std::move(c_in)) {} ReorderedStruct::~ReorderedStruct() = default; size_t ReorderedStruct::Hash(size_t seed) const { seed = mojo::internal::Hash(seed, this->a); seed = mojo::internal::Hash(seed, this->b); seed = mojo::internal::Hash(seed, this->c); return seed; } bool ReorderedStruct::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } ContainsInterface::ContainsInterface() : some_interface() {} ContainsInterface::ContainsInterface( mojo::PendingRemote<SomeInterface> some_interface_in) : some_interface(std::move(some_interface_in)) {} ContainsInterface::~ContainsInterface() = default; bool ContainsInterface::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } ContainsOther::ContainsOther() : other() {} ContainsOther::ContainsOther( int32_t other_in) : other(std::move(other_in)) {} ContainsOther::~ContainsOther() = default; size_t ContainsOther::Hash(size_t seed) const { seed = mojo::internal::Hash(seed, this->other); return seed; } bool ContainsOther::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } ContainsInterfaceRequest::ContainsInterfaceRequest() : request() {} ContainsInterfaceRequest::ContainsInterfaceRequest( mojo::PendingReceiver<SomeInterface> request_in) : request(std::move(request_in)) {} ContainsInterfaceRequest::~ContainsInterfaceRequest() = default; bool ContainsInterfaceRequest::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } SingleBoolStruct::SingleBoolStruct() : value() {} SingleBoolStruct::SingleBoolStruct( bool value_in) : value(std::move(value_in)) {} SingleBoolStruct::~SingleBoolStruct() = default; size_t SingleBoolStruct::Hash(size_t seed) const { seed = mojo::internal::Hash(seed, this->value); return seed; } bool SingleBoolStruct::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } ContainsHashable::ContainsHashable() : rect() {} ContainsHashable::ContainsHashable( const mojo::test::RectChromium& rect_in) : rect(std::move(rect_in)) {} ContainsHashable::~ContainsHashable() = default; size_t ContainsHashable::Hash(size_t seed) const { seed = mojo::internal::Hash(seed, this->rect); return seed; } bool ContainsHashable::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } SimpleNestedStruct::SimpleNestedStruct() : nested() {} SimpleNestedStruct::SimpleNestedStruct( ContainsOtherPtr nested_in) : nested(std::move(nested_in)) {} SimpleNestedStruct::~SimpleNestedStruct() = default; size_t SimpleNestedStruct::Hash(size_t seed) const { seed = mojo::internal::Hash(seed, this->nested); return seed; } bool SimpleNestedStruct::Validate( const void* data, mojo::internal::ValidationContext* validation_context) { return Data_::Validate(data, validation_context); } const char SomeInterface::Name_[] = "mojo.test.SomeInterface"; class SomeInterface_SomeMethod_ForwardToCallback : public mojo::MessageReceiver { public: SomeInterface_SomeMethod_ForwardToCallback( SomeInterface::SomeMethodCallback callback ) : callback_(std::move(callback)) { } bool Accept(mojo::Message* message) override; private: SomeInterface::SomeMethodCallback callback_; DISALLOW_COPY_AND_ASSIGN(SomeInterface_SomeMethod_ForwardToCallback); }; SomeInterfaceProxy::SomeInterfaceProxy(mojo::MessageReceiverWithResponder* receiver) : receiver_(receiver) { } class SomeInterfaceProxy_SomeMethod_Message : public mojo::internal::UnserializedMessageContext { public: static const mojo::internal::UnserializedMessageContext::Tag kMessageTag; explicit SomeInterfaceProxy_SomeMethod_Message( uint32_t message_flags , RectPairPtr param_pair ) : mojo::internal::UnserializedMessageContext( &kMessageTag, internal::kSomeInterface_SomeMethod_Name, message_flags) , param_pair_(std::move(param_pair)){} ~SomeInterfaceProxy_SomeMethod_Message() override = default; static mojo::Message Build( bool serialize, bool expects_response, bool is_sync, RectPairPtr param_pair) { const uint32_t kFlags = ((expects_response) ? mojo::Message::kFlagExpectsResponse : 0) | ((is_sync) ? mojo::Message::kFlagIsSync : 0); if (!serialize) { return mojo::Message(std::make_unique<SomeInterfaceProxy_SomeMethod_Message>( kFlags , std::move(param_pair) )); } DCHECK(serialize); mojo::Message message( internal::kSomeInterface_SomeMethod_Name, kFlags, 0, 0, nullptr); auto* buffer = message.payload_buffer(); ::mojo::test::internal::SomeInterface_SomeMethod_Params_Data::BufferWriter params; mojo::internal::SerializationContext serialization_context; params.Allocate(buffer); typename decltype(params->pair)::BaseType::BufferWriter pair_writer; mojo::internal::Serialize<::mojo::test::RectPairDataView>( param_pair, buffer, &pair_writer, &serialization_context); params->pair.Set( pair_writer.is_null() ? nullptr : pair_writer.data()); MOJO_INTERNAL_DLOG_SERIALIZATION_WARNING( params->pair.is_null(), mojo::internal::VALIDATION_ERROR_UNEXPECTED_NULL_POINTER, "null pair in SomeInterface.SomeMethod request"); message.AttachHandlesFromSerializationContext( &serialization_context); return message; } void Dispatch(SomeInterface* impl, SomeInterface::SomeMethodCallback callback) { impl->SomeMethod( std::move(param_pair_), std::move(callback)); } private: // mojo::internal::UnserializedMessageContext: void Serialize(mojo::internal::SerializationContext* serialization_context, mojo::internal::Buffer* buffer) override { ::mojo::test::internal::SomeInterface_SomeMethod_Params_Data::BufferWriter params; params.Allocate(buffer); typename decltype(params->pair)::BaseType::BufferWriter pair_writer; mojo::internal::Serialize<::mojo::test::RectPairDataView>( param_pair_, buffer, &pair_writer, serialization_context); params->pair.Set( pair_writer.is_null() ? nullptr : pair_writer.data()); MOJO_INTERNAL_DLOG_SERIALIZATION_WARNING( params->pair.is_null(), mojo::internal::VALIDATION_ERROR_UNEXPECTED_NULL_POINTER, "null pair in SomeInterface.SomeMethod request"); } RectPairPtr param_pair_; DISALLOW_COPY_AND_ASSIGN(SomeInterfaceProxy_SomeMethod_Message); }; const mojo::internal::UnserializedMessageContext::Tag SomeInterfaceProxy_SomeMethod_Message::kMessageTag = {}; void SomeInterfaceProxy::SomeMethod( RectPairPtr in_pair, SomeMethodCallback callback) { #if BUILDFLAG(MOJO_TRACE_ENABLED) TRACE_EVENT0("mojom", "<class 'jinja2::utils::Namespace'>::SomeInterface::SomeMethod"); #endif const bool kExpectsResponse = true; const bool kIsSync = false; const bool kSerialize = receiver_->PrefersSerializedMessages(); auto message = SomeInterfaceProxy_SomeMethod_Message::Build( kSerialize, kExpectsResponse, kIsSync, std::move(in_pair)); #if defined(ENABLE_IPC_FUZZER) message.set_interface_name(SomeInterface::Name_); message.set_method_name("SomeMethod"); #endif std::unique_ptr<mojo::MessageReceiver> responder( new SomeInterface_SomeMethod_ForwardToCallback( std::move(callback))); ignore_result(receiver_->AcceptWithResponder(&message, std::move(responder))); } class SomeInterface_SomeMethod_ProxyToResponder { public: static SomeInterface::SomeMethodCallback CreateCallback( uint64_t request_id, bool is_sync, std::unique_ptr<mojo::MessageReceiverWithStatus> responder) { std::unique_ptr<SomeInterface_SomeMethod_ProxyToResponder> proxy( new SomeInterface_SomeMethod_ProxyToResponder( request_id, is_sync, std::move(responder))); return base::BindOnce(&SomeInterface_SomeMethod_ProxyToResponder::Run, std::move(proxy)); } ~SomeInterface_SomeMethod_ProxyToResponder() { #if DCHECK_IS_ON() if (responder_) { // If we're being destroyed without being run, we want to ensure the // binding endpoint has been closed. This checks for that asynchronously. // We pass a bound generated callback to handle the response so that any // resulting DCHECK stack will have useful interface type information. responder_->IsConnectedAsync(base::BindOnce(&OnIsConnectedComplete)); } #endif // If the Callback was dropped then deleting the responder will close // the pipe so the calling application knows to stop waiting for a reply. responder_ = nullptr; } private: SomeInterface_SomeMethod_ProxyToResponder( uint64_t request_id, bool is_sync, std::unique_ptr<mojo::MessageReceiverWithStatus> responder) : request_id_(request_id), is_sync_(is_sync), responder_(std::move(responder)) { } #if DCHECK_IS_ON() static void OnIsConnectedComplete(bool connected) { DCHECK(!connected) << "SomeInterface::SomeMethodCallback was destroyed without " << "first either being run or its corresponding binding being closed. " << "It is an error to drop response callbacks which still correspond " << "to an open interface pipe."; } #endif void Run( RectPairPtr in_other_pair); uint64_t request_id_; bool is_sync_; std::unique_ptr<mojo::MessageReceiverWithStatus> responder_; DISALLOW_COPY_AND_ASSIGN(SomeInterface_SomeMethod_ProxyToResponder); }; class SomeInterface_SomeMethod_Response_Message : public mojo::internal::UnserializedMessageContext { public: static const mojo::internal::UnserializedMessageContext::Tag kMessageTag; explicit SomeInterface_SomeMethod_Response_Message( uint32_t message_flags , RectPairPtr param_other_pair ) : mojo::internal::UnserializedMessageContext( &kMessageTag, internal::kSomeInterface_SomeMethod_Name, message_flags) , param_other_pair_(std::move(param_other_pair)){} ~SomeInterface_SomeMethod_Response_Message() override = default; static mojo::Message Build( bool serialize, bool is_sync, RectPairPtr param_other_pair) { const uint32_t kFlags = mojo::Message::kFlagIsResponse | ((is_sync) ? mojo::Message::kFlagIsSync : 0); if (!serialize) { return mojo::Message(std::make_unique<SomeInterface_SomeMethod_Response_Message>( kFlags , std::move(param_other_pair) )); } DCHECK(serialize); mojo::Message message( internal::kSomeInterface_SomeMethod_Name, kFlags, 0, 0, nullptr); auto* buffer = message.payload_buffer(); ::mojo::test::internal::SomeInterface_SomeMethod_ResponseParams_Data::BufferWriter params; mojo::internal::SerializationContext serialization_context; params.Allocate(buffer); typename decltype(params->other_pair)::BaseType::BufferWriter other_pair_writer; mojo::internal::Serialize<::mojo::test::RectPairDataView>( param_other_pair, buffer, &other_pair_writer, &serialization_context); params->other_pair.Set( other_pair_writer.is_null() ? nullptr : other_pair_writer.data()); MOJO_INTERNAL_DLOG_SERIALIZATION_WARNING( params->other_pair.is_null(), mojo::internal::VALIDATION_ERROR_UNEXPECTED_NULL_POINTER, "null other_pair in SomeInterface.SomeMethod response"); message.AttachHandlesFromSerializationContext( &serialization_context); return message; } void Dispatch(SomeInterface::SomeMethodCallback* callback) { std::move(*callback).Run( std::move(param_other_pair_)); } private: // mojo::internal::UnserializedMessageContext: void Serialize(mojo::internal::SerializationContext* serialization_context, mojo::internal::Buffer* buffer) override { ::mojo::test::internal::SomeInterface_SomeMethod_ResponseParams_Data::BufferWriter params; params.Allocate(buffer); typename decltype(params->other_pair)::BaseType::BufferWriter other_pair_writer; mojo::internal::Serialize<::mojo::test::RectPairDataView>( param_other_pair_, buffer, &other_pair_writer, serialization_context); params->other_pair.Set( other_pair_writer.is_null() ? nullptr : other_pair_writer.data()); MOJO_INTERNAL_DLOG_SERIALIZATION_WARNING( params->other_pair.is_null(), mojo::internal::VALIDATION_ERROR_UNEXPECTED_NULL_POINTER, "null other_pair in SomeInterface.SomeMethod response"); } RectPairPtr param_other_pair_; DISALLOW_COPY_AND_ASSIGN(SomeInterface_SomeMethod_Response_Message); }; const mojo::internal::UnserializedMessageContext::Tag SomeInterface_SomeMethod_Response_Message::kMessageTag = {}; bool SomeInterface_SomeMethod_ForwardToCallback::Accept( mojo::Message* message) { #if BUILDFLAG(MOJO_TRACE_ENABLED) TRACE_EVENT1("mojom", "<class 'jinja2::utils::Namespace'>::SomeInterface::SomeMethodCallback", "message", message->name()); #endif mojo::internal::MessageDispatchContext dispatch_context(message); if (!message->is_serialized()) { auto context = message->TakeUnserializedContext<SomeInterface_SomeMethod_Response_Message>(); if (!context) { // The Message was not of the expected type. It may be a valid message // which was build using a different variant of these bindings. Force // serialization before dispatch in this case. message->SerializeIfNecessary(); } else { if (!callback_.is_null()) context->Dispatch(&callback_); return true; } } DCHECK(message->is_serialized()); internal::SomeInterface_SomeMethod_ResponseParams_Data* params = reinterpret_cast< internal::SomeInterface_SomeMethod_ResponseParams_Data*>( message->mutable_payload()); mojo::internal::SerializationContext serialization_context; serialization_context.TakeHandlesFromMessage(message); bool success = true; RectPairPtr p_other_pair{}; SomeInterface_SomeMethod_ResponseParamsDataView input_data_view(params, &serialization_context); if (!input_data_view.ReadOtherPair(&p_other_pair)) success = false; if (!success) { ReportValidationErrorForMessage( message, mojo::internal::VALIDATION_ERROR_DESERIALIZATION_FAILED, SomeInterface::Name_, 0, true); return false; } if (!callback_.is_null()) std::move(callback_).Run( std::move(p_other_pair)); return true; } void SomeInterface_SomeMethod_ProxyToResponder::Run( RectPairPtr in_other_pair) { const bool kSerialize = responder_->PrefersSerializedMessages(); auto message = SomeInterface_SomeMethod_Response_Message::Build(kSerialize, is_sync_, std::move(in_other_pair)); #if BUILDFLAG(MOJO_TRACE_ENABLED) TRACE_EVENT1("mojom", "(Impl)<class 'jinja2::utils::Namespace'>::SomeInterface::SomeMethodCallback", "message", message.name()); #endif #if defined(ENABLE_IPC_FUZZER) message.set_interface_name(SomeInterface::Name_); message.set_method_name("SomeMethod"); #endif message.set_request_id(request_id_); ignore_result(responder_->Accept(&message)); // TODO(darin): Accept() returning false indicates a malformed message, and // that may be good reason to close the connection. However, we don't have a // way to do that from here. We should add a way. responder_ = nullptr; } // static bool SomeInterfaceStubDispatch::Accept( SomeInterface* impl, mojo::Message* message) { switch (message->header()->name) { case internal::kSomeInterface_SomeMethod_Name: { break; } } return false; } // static bool SomeInterfaceStubDispatch::AcceptWithResponder( SomeInterface* impl, mojo::Message* message, std::unique_ptr<mojo::MessageReceiverWithStatus> responder) { switch (message->header()->name) { case internal::kSomeInterface_SomeMethod_Name: { #if BUILDFLAG(MOJO_TRACE_ENABLED) TRACE_EVENT1( "mojom", "(Impl)<class 'jinja2::utils::Namespace'>::SomeInterface::SomeMethod", "message", message->name()); #endif base::TaskAnnotator::ScopedSetIpcProgramCounter scoped_ipc_pc( base::GetProgramCounter()); mojo::internal::MessageDispatchContext context(message); if (!message->is_serialized()) { auto context = message->TakeUnserializedContext< SomeInterfaceProxy_SomeMethod_Message>(); if (!context) { // The Message was not of the expected type. It may be a valid message // which was built using a different variant of these bindings. Force // serialization before dispatch in this case. message->SerializeIfNecessary(); } else { SomeInterface::SomeMethodCallback callback = SomeInterface_SomeMethod_ProxyToResponder::CreateCallback( message->request_id(), message->has_flag(mojo::Message::kFlagIsSync), std::move(responder)); context->Dispatch(impl, std::move(callback)); return true; } } internal::SomeInterface_SomeMethod_Params_Data* params = reinterpret_cast< internal::SomeInterface_SomeMethod_Params_Data*>( message->mutable_payload()); mojo::internal::SerializationContext serialization_context; serialization_context.TakeHandlesFromMessage(message); bool success = true; RectPairPtr p_pair{}; SomeInterface_SomeMethod_ParamsDataView input_data_view(params, &serialization_context); if (!input_data_view.ReadPair(&p_pair)) success = false; if (!success) { ReportValidationErrorForMessage( message, mojo::internal::VALIDATION_ERROR_DESERIALIZATION_FAILED, SomeInterface::Name_, 0, false); return false; } SomeInterface::SomeMethodCallback callback = SomeInterface_SomeMethod_ProxyToResponder::CreateCallback( message->request_id(), message->has_flag(mojo::Message::kFlagIsSync), std::move(responder)); // A null |impl| means no implementation was bound. DCHECK(impl); impl->SomeMethod( std::move(p_pair), std::move(callback)); return true; } } return false; } bool SomeInterfaceRequestValidator::Accept(mojo::Message* message) { if (!message->is_serialized() || mojo::internal::ControlMessageHandler::IsControlMessage(message)) { return true; } mojo::internal::ValidationContext validation_context( message->payload(), message->payload_num_bytes(), message->handles()->size(), message->payload_num_interface_ids(), message, "SomeInterface RequestValidator"); switch (message->header()->name) { case internal::kSomeInterface_SomeMethod_Name: { if (!mojo::internal::ValidateMessageIsRequestExpectingResponse( message, &validation_context)) { return false; } if (!mojo::internal::ValidateMessagePayload< internal::SomeInterface_SomeMethod_Params_Data>( message, &validation_context)) { return false; } return true; } default: break; } // Unrecognized message. ReportValidationError( &validation_context, mojo::internal::VALIDATION_ERROR_MESSAGE_HEADER_UNKNOWN_METHOD); return false; } bool SomeInterfaceResponseValidator::Accept(mojo::Message* message) { if (!message->is_serialized() || mojo::internal::ControlMessageHandler::IsControlMessage(message)) { return true; } mojo::internal::ValidationContext validation_context( message->payload(), message->payload_num_bytes(), message->handles()->size(), message->payload_num_interface_ids(), message, "SomeInterface ResponseValidator"); if (!mojo::internal::ValidateMessageIsResponse(message, &validation_context)) return false; switch (message->header()->name) { case internal::kSomeInterface_SomeMethod_Name: { if (!mojo::internal::ValidateMessagePayload< internal::SomeInterface_SomeMethod_ResponseParams_Data>( message, &validation_context)) { return false; } return true; } default: break; } // Unrecognized message. ReportValidationError( &validation_context, mojo::internal::VALIDATION_ERROR_MESSAGE_HEADER_UNKNOWN_METHOD); return false; } } // namespace test } // namespace mojo namespace mojo { // static bool StructTraits<::mojo::test::NamedRegion::DataView, ::mojo::test::NamedRegionPtr>::Read( ::mojo::test::NamedRegion::DataView input, ::mojo::test::NamedRegionPtr* output) { bool success = true; ::mojo::test::NamedRegionPtr result(::mojo::test::NamedRegion::New()); if (!input.ReadName(&result->name)) success = false; if (!input.ReadRects(&result->rects)) success = false; *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::RectPair::DataView, ::mojo::test::RectPairPtr>::Read( ::mojo::test::RectPair::DataView input, ::mojo::test::RectPairPtr* output) { bool success = true; ::mojo::test::RectPairPtr result(::mojo::test::RectPair::New()); if (!input.ReadFirst(&result->first)) success = false; if (!input.ReadSecond(&result->second)) success = false; *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::EmptyStruct::DataView, ::mojo::test::EmptyStructPtr>::Read( ::mojo::test::EmptyStruct::DataView input, ::mojo::test::EmptyStructPtr* output) { bool success = true; ::mojo::test::EmptyStructPtr result(::mojo::test::EmptyStruct::New()); *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::NoDefaultFieldValues::DataView, ::mojo::test::NoDefaultFieldValuesPtr>::Read( ::mojo::test::NoDefaultFieldValues::DataView input, ::mojo::test::NoDefaultFieldValuesPtr* output) { bool success = true; ::mojo::test::NoDefaultFieldValuesPtr result(::mojo::test::NoDefaultFieldValues::New()); result->f0 = input.f0(); result->f1 = input.f1(); result->f2 = input.f2(); result->f3 = input.f3(); result->f4 = input.f4(); result->f5 = input.f5(); result->f6 = input.f6(); result->f7 = input.f7(); result->f8 = input.f8(); result->f9 = input.f9(); result->f10 = input.f10(); if (!input.ReadF11(&result->f11)) success = false; if (!input.ReadF12(&result->f12)) success = false; result->f13 = input.TakeF13(); result->f14 = input.TakeF14(); result->f15 = input.TakeF15(); result->f16 = input.TakeF16(); result->f17 = input.TakeF17(); result->f18 = input.TakeF18(); result->f19 = input.TakeF19(); result->f20 = input.TakeF20(); result->f21 = input.TakeF21(); result->f22 = input.TakeF22(); if (!input.ReadF23(&result->f23)) success = false; if (!input.ReadF24(&result->f24)) success = false; if (!input.ReadF25(&result->f25)) success = false; if (!input.ReadF26(&result->f26)) success = false; if (!input.ReadF27(&result->f27)) success = false; if (!input.ReadF28(&result->f28)) success = false; *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::DefaultFieldValues::DataView, ::mojo::test::DefaultFieldValuesPtr>::Read( ::mojo::test::DefaultFieldValues::DataView input, ::mojo::test::DefaultFieldValuesPtr* output) { bool success = true; ::mojo::test::DefaultFieldValuesPtr result(::mojo::test::DefaultFieldValues::New()); result->f0 = input.f0(); result->f1 = input.f1(); result->f2 = input.f2(); result->f3 = input.f3(); result->f4 = input.f4(); result->f5 = input.f5(); result->f6 = input.f6(); result->f7 = input.f7(); result->f8 = input.f8(); result->f9 = input.f9(); result->f10 = input.f10(); result->f11 = input.f11(); result->f12 = input.f12(); if (!input.ReadF13(&result->f13)) success = false; if (!input.ReadF14(&result->f14)) success = false; if (!input.ReadF15(&result->f15)) success = false; if (!input.ReadF16(&result->f16)) success = false; *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::ScopedConstants::DataView, ::mojo::test::ScopedConstantsPtr>::Read( ::mojo::test::ScopedConstants::DataView input, ::mojo::test::ScopedConstantsPtr* output) { bool success = true; ::mojo::test::ScopedConstantsPtr result(::mojo::test::ScopedConstants::New()); if (!input.ReadF0(&result->f0)) success = false; if (!input.ReadF1(&result->f1)) success = false; if (!input.ReadF2(&result->f2)) success = false; if (!input.ReadF3(&result->f3)) success = false; if (!input.ReadF4(&result->f4)) success = false; result->f5 = input.f5(); result->f6 = input.f6(); *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::MapKeyTypes::DataView, ::mojo::test::MapKeyTypesPtr>::Read( ::mojo::test::MapKeyTypes::DataView input, ::mojo::test::MapKeyTypesPtr* output) { bool success = true; ::mojo::test::MapKeyTypesPtr result(::mojo::test::MapKeyTypes::New()); if (!input.ReadF1(&result->f1)) success = false; if (!input.ReadF2(&result->f2)) success = false; if (!input.ReadF3(&result->f3)) success = false; if (!input.ReadF4(&result->f4)) success = false; if (!input.ReadF5(&result->f5)) success = false; if (!input.ReadF6(&result->f6)) success = false; if (!input.ReadF7(&result->f7)) success = false; if (!input.ReadF8(&result->f8)) success = false; if (!input.ReadF9(&result->f9)) success = false; if (!input.ReadF10(&result->f10)) success = false; if (!input.ReadF11(&result->f11)) success = false; *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::MapValueTypes::DataView, ::mojo::test::MapValueTypesPtr>::Read( ::mojo::test::MapValueTypes::DataView input, ::mojo::test::MapValueTypesPtr* output) { bool success = true; ::mojo::test::MapValueTypesPtr result(::mojo::test::MapValueTypes::New()); if (!input.ReadF0(&result->f0)) success = false; if (!input.ReadF1(&result->f1)) success = false; if (!input.ReadF2(&result->f2)) success = false; if (!input.ReadF3(&result->f3)) success = false; if (!input.ReadF4(&result->f4)) success = false; if (!input.ReadF5(&result->f5)) success = false; if (!input.ReadF6(&result->f6)) success = false; if (!input.ReadF7(&result->f7)) success = false; if (!input.ReadF8(&result->f8)) success = false; if (!input.ReadF9(&result->f9)) success = false; if (!input.ReadF10(&result->f10)) success = false; if (!input.ReadF11(&result->f11)) success = false; *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::ArrayValueTypes::DataView, ::mojo::test::ArrayValueTypesPtr>::Read( ::mojo::test::ArrayValueTypes::DataView input, ::mojo::test::ArrayValueTypesPtr* output) { bool success = true; ::mojo::test::ArrayValueTypesPtr result(::mojo::test::ArrayValueTypes::New()); if (!input.ReadF0(&result->f0)) success = false; if (!input.ReadF1(&result->f1)) success = false; if (!input.ReadF2(&result->f2)) success = false; if (!input.ReadF3(&result->f3)) success = false; if (!input.ReadF4(&result->f4)) success = false; if (!input.ReadF5(&result->f5)) success = false; if (!input.ReadF6(&result->f6)) success = false; if (!input.ReadF7(&result->f7)) success = false; *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::FloatNumberValues::DataView, ::mojo::test::FloatNumberValuesPtr>::Read( ::mojo::test::FloatNumberValues::DataView input, ::mojo::test::FloatNumberValuesPtr* output) { bool success = true; ::mojo::test::FloatNumberValuesPtr result(::mojo::test::FloatNumberValues::New()); result->f0 = input.f0(); result->f1 = input.f1(); result->f2 = input.f2(); result->f3 = input.f3(); result->f4 = input.f4(); result->f5 = input.f5(); result->f6 = input.f6(); result->f7 = input.f7(); result->f8 = input.f8(); result->f9 = input.f9(); *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::IntegerNumberValues::DataView, ::mojo::test::IntegerNumberValuesPtr>::Read( ::mojo::test::IntegerNumberValues::DataView input, ::mojo::test::IntegerNumberValuesPtr* output) { bool success = true; ::mojo::test::IntegerNumberValuesPtr result(::mojo::test::IntegerNumberValues::New()); result->f0 = input.f0(); result->f1 = input.f1(); result->f2 = input.f2(); result->f3 = input.f3(); result->f4 = input.f4(); result->f5 = input.f5(); result->f6 = input.f6(); result->f7 = input.f7(); result->f8 = input.f8(); result->f9 = input.f9(); result->f10 = input.f10(); result->f11 = input.f11(); result->f12 = input.f12(); result->f13 = input.f13(); result->f14 = input.f14(); result->f15 = input.f15(); result->f16 = input.f16(); result->f17 = input.f17(); result->f18 = input.f18(); result->f19 = input.f19(); *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::UnsignedNumberValues::DataView, ::mojo::test::UnsignedNumberValuesPtr>::Read( ::mojo::test::UnsignedNumberValues::DataView input, ::mojo::test::UnsignedNumberValuesPtr* output) { bool success = true; ::mojo::test::UnsignedNumberValuesPtr result(::mojo::test::UnsignedNumberValues::New()); result->f0 = input.f0(); result->f1 = input.f1(); result->f2 = input.f2(); result->f3 = input.f3(); result->f4 = input.f4(); result->f5 = input.f5(); result->f6 = input.f6(); result->f7 = input.f7(); result->f8 = input.f8(); result->f9 = input.f9(); result->f10 = input.f10(); result->f11 = input.f11(); *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::BitArrayValues::DataView, ::mojo::test::BitArrayValuesPtr>::Read( ::mojo::test::BitArrayValues::DataView input, ::mojo::test::BitArrayValuesPtr* output) { bool success = true; ::mojo::test::BitArrayValuesPtr result(::mojo::test::BitArrayValues::New()); if (!input.ReadF0(&result->f0)) success = false; if (!input.ReadF1(&result->f1)) success = false; if (!input.ReadF2(&result->f2)) success = false; if (!input.ReadF3(&result->f3)) success = false; if (!input.ReadF4(&result->f4)) success = false; if (!input.ReadF5(&result->f5)) success = false; if (!input.ReadF6(&result->f6)) success = false; *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::MultiVersionStruct::DataView, ::mojo::test::MultiVersionStructPtr>::Read( ::mojo::test::MultiVersionStruct::DataView input, ::mojo::test::MultiVersionStructPtr* output) { bool success = true; ::mojo::test::MultiVersionStructPtr result(::mojo::test::MultiVersionStruct::New()); result->f_int32 = input.f_int32(); if (!input.ReadFRect(&result->f_rect)) success = false; if (!input.ReadFString(&result->f_string)) success = false; if (!input.ReadFArray(&result->f_array)) success = false; result->f_message_pipe = input.TakeFMessagePipe(); result->f_bool = input.f_bool(); result->f_int16 = input.f_int16(); *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::MultiVersionStructV0::DataView, ::mojo::test::MultiVersionStructV0Ptr>::Read( ::mojo::test::MultiVersionStructV0::DataView input, ::mojo::test::MultiVersionStructV0Ptr* output) { bool success = true; ::mojo::test::MultiVersionStructV0Ptr result(::mojo::test::MultiVersionStructV0::New()); result->f_int32 = input.f_int32(); *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::MultiVersionStructV1::DataView, ::mojo::test::MultiVersionStructV1Ptr>::Read( ::mojo::test::MultiVersionStructV1::DataView input, ::mojo::test::MultiVersionStructV1Ptr* output) { bool success = true; ::mojo::test::MultiVersionStructV1Ptr result(::mojo::test::MultiVersionStructV1::New()); result->f_int32 = input.f_int32(); if (!input.ReadFRect(&result->f_rect)) success = false; *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::MultiVersionStructV3::DataView, ::mojo::test::MultiVersionStructV3Ptr>::Read( ::mojo::test::MultiVersionStructV3::DataView input, ::mojo::test::MultiVersionStructV3Ptr* output) { bool success = true; ::mojo::test::MultiVersionStructV3Ptr result(::mojo::test::MultiVersionStructV3::New()); result->f_int32 = input.f_int32(); if (!input.ReadFRect(&result->f_rect)) success = false; if (!input.ReadFString(&result->f_string)) success = false; *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::MultiVersionStructV5::DataView, ::mojo::test::MultiVersionStructV5Ptr>::Read( ::mojo::test::MultiVersionStructV5::DataView input, ::mojo::test::MultiVersionStructV5Ptr* output) { bool success = true; ::mojo::test::MultiVersionStructV5Ptr result(::mojo::test::MultiVersionStructV5::New()); result->f_int32 = input.f_int32(); if (!input.ReadFRect(&result->f_rect)) success = false; if (!input.ReadFString(&result->f_string)) success = false; if (!input.ReadFArray(&result->f_array)) success = false; *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::MultiVersionStructV7::DataView, ::mojo::test::MultiVersionStructV7Ptr>::Read( ::mojo::test::MultiVersionStructV7::DataView input, ::mojo::test::MultiVersionStructV7Ptr* output) { bool success = true; ::mojo::test::MultiVersionStructV7Ptr result(::mojo::test::MultiVersionStructV7::New()); result->f_int32 = input.f_int32(); if (!input.ReadFRect(&result->f_rect)) success = false; if (!input.ReadFString(&result->f_string)) success = false; if (!input.ReadFArray(&result->f_array)) success = false; result->f_message_pipe = input.TakeFMessagePipe(); result->f_bool = input.f_bool(); *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::ReorderedStruct::DataView, ::mojo::test::ReorderedStructPtr>::Read( ::mojo::test::ReorderedStruct::DataView input, ::mojo::test::ReorderedStructPtr* output) { bool success = true; ::mojo::test::ReorderedStructPtr result(::mojo::test::ReorderedStruct::New()); result->c = input.c(); result->a = input.a(); result->b = input.b(); *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::ContainsInterface::DataView, ::mojo::test::ContainsInterfacePtr>::Read( ::mojo::test::ContainsInterface::DataView input, ::mojo::test::ContainsInterfacePtr* output) { bool success = true; ::mojo::test::ContainsInterfacePtr result(::mojo::test::ContainsInterface::New()); result->some_interface = input.TakeSomeInterface<decltype(result->some_interface)>(); *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::ContainsOther::DataView, ::mojo::test::ContainsOtherPtr>::Read( ::mojo::test::ContainsOther::DataView input, ::mojo::test::ContainsOtherPtr* output) { bool success = true; ::mojo::test::ContainsOtherPtr result(::mojo::test::ContainsOther::New()); result->other = input.other(); *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::ContainsInterfaceRequest::DataView, ::mojo::test::ContainsInterfaceRequestPtr>::Read( ::mojo::test::ContainsInterfaceRequest::DataView input, ::mojo::test::ContainsInterfaceRequestPtr* output) { bool success = true; ::mojo::test::ContainsInterfaceRequestPtr result(::mojo::test::ContainsInterfaceRequest::New()); result->request = input.TakeRequest<decltype(result->request)>(); *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::SingleBoolStruct::DataView, ::mojo::test::SingleBoolStructPtr>::Read( ::mojo::test::SingleBoolStruct::DataView input, ::mojo::test::SingleBoolStructPtr* output) { bool success = true; ::mojo::test::SingleBoolStructPtr result(::mojo::test::SingleBoolStruct::New()); result->value = input.value(); *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::ContainsHashable::DataView, ::mojo::test::ContainsHashablePtr>::Read( ::mojo::test::ContainsHashable::DataView input, ::mojo::test::ContainsHashablePtr* output) { bool success = true; ::mojo::test::ContainsHashablePtr result(::mojo::test::ContainsHashable::New()); if (!input.ReadRect(&result->rect)) success = false; *output = std::move(result); return success; } // static bool StructTraits<::mojo::test::SimpleNestedStruct::DataView, ::mojo::test::SimpleNestedStructPtr>::Read( ::mojo::test::SimpleNestedStruct::DataView input, ::mojo::test::SimpleNestedStructPtr* output) { bool success = true; ::mojo::test::SimpleNestedStructPtr result(::mojo::test::SimpleNestedStruct::New()); if (!input.ReadNested(&result->nested)) success = false; *output = std::move(result); return success; } } // namespace mojo #if defined(__clang__) #pragma clang diagnostic pop #elif defined(_MSC_VER) #pragma warning(pop) #endif
[ "trofimov_d_a@magnit.ru" ]
trofimov_d_a@magnit.ru
df69e6bfa8a4c58fd04d8078e0f487b1f17d23db
962d13134dd48d6261e56828c8f69bfb575ff3e7
/kernel/arch/arm64/arch.cpp
f47f88bb417f8e47d4ddc09095a219e2fdd1805a
[]
no_license
saltstar/smartnix
a61295a49450087a7640c76774f15fb38f07e950
8cb77436763db43f70dbe49ea035f5f7e29becac
refs/heads/master
2021-01-17T21:23:58.604835
2019-12-27T01:21:38
2019-12-27T01:21:38
35,830,495
2
0
null
null
null
null
UTF-8
C++
false
false
9,009
cpp
#include <arch.h> #include <arch/arm64.h> #include <arch/arm64/feature.h> #include <arch/arm64/registers.h> #include <arch/arm64/mmu.h> #include <arch/mp.h> #include <arch/ops.h> #include <assert.h> #include <bits.h> #include <debug.h> #include <inttypes.h> #include <kernel/cmdline.h> #include <kernel/thread.h> #include <lk/init.h> #include <lk/main.h> #include <platform.h> #include <stdlib.h> #include <string.h> #include <trace.h> #include <zircon/errors.h> #include <zircon/types.h> #define LOCAL_TRACE 0 // Counter-timer Kernel Control Register, EL1. static constexpr uint64_t CNTKCTL_EL1_ENABLE_VIRTUAL_COUNTER = 1 << 1; // Initial value for MSDCR_EL1 when starting userspace, which disables all debug exceptions. // Instruction Breakpoint Exceptions (software breakpoints) cannot be disabled and MDSCR does not // affect single-step behaviour. // TODO(donosoc): Enable HW exceptions when debug context switch is implemented. static constexpr uint32_t MSDCR_EL1_INITIAL_VALUE = 0; // Performance Monitors Count Enable Set, EL0. static constexpr uint64_t PMCNTENSET_EL0_ENABLE = 1UL << 31; // Enable cycle count register. // Performance Monitor Control Register, EL0. static constexpr uint64_t PMCR_EL0_ENABLE_BIT = 1 << 0; static constexpr uint64_t PMCR_EL0_LONG_COUNTER_BIT = 1 << 6; // Performance Monitors User Enable Regiser, EL0. static constexpr uint64_t PMUSERENR_EL0_ENABLE = 1 << 0; // Enable EL0 access to cycle counter. // System Control Register, EL1. static constexpr uint64_t SCTLR_EL1_UCI = 1 << 26; // Allow certain cache ops in EL0. static constexpr uint64_t SCTLR_EL1_UCT = 1 << 15; // Allow EL0 access to CTR register. static constexpr uint64_t SCTLR_EL1_DZE = 1 << 14; // Allow EL0 to use DC ZVA. static constexpr uint64_t SCTLR_EL1_SA0 = 1 << 4; // Enable Stack Alignment Check EL0. static constexpr uint64_t SCTLR_EL1_SA = 1 << 3; // Enable Stack Alignment Check EL1. static constexpr uint64_t SCTLR_EL1_AC = 1 << 1; // Enable Alignment Checking for EL1 EL0. struct arm64_sp_info_t { uint64_t mpid; void* sp; // This part of the struct itself will serve temporarily as the // fake arch_thread in the thread pointer, so that safe-stack // and stack-protector code can work early. The thread pointer // (TPIDR_EL1) points just past arm64_sp_info_t. uintptr_t stack_guard; void* unsafe_sp; }; static_assert(sizeof(arm64_sp_info_t) == 32, "check arm64_get_secondary_sp assembly"); static_assert(offsetof(arm64_sp_info_t, sp) == 8, "check arm64_get_secondary_sp assembly"); static_assert(offsetof(arm64_sp_info_t, mpid) == 0, "check arm64_get_secondary_sp assembly"); #define TP_OFFSET(field) \ ((int)offsetof(arm64_sp_info_t, field) - (int)sizeof(arm64_sp_info_t)) static_assert(TP_OFFSET(stack_guard) == ZX_TLS_STACK_GUARD_OFFSET, ""); static_assert(TP_OFFSET(unsafe_sp) == ZX_TLS_UNSAFE_SP_OFFSET, ""); #undef TP_OFFSET // SMP boot lock. static spin_lock_t arm_boot_cpu_lock = (spin_lock_t){1}; static volatile int secondaries_to_init = 0; // one for each secondary CPU, indexed by (cpu_num - 1). static thread_t _init_thread[SMP_MAX_CPUS - 1]; // one for each CPU arm64_sp_info_t arm64_secondary_sp_list[SMP_MAX_CPUS]; extern uint64_t arch_boot_el; // Defined in start.S. uint64_t arm64_get_boot_el() { return arch_boot_el >> 2; } zx_status_t arm64_create_secondary_stack(uint cpu_num, uint64_t mpid) { // Allocate a stack, indexed by CPU num so that |arm64_secondary_entry| can find it. DEBUG_ASSERT_MSG(cpu_num > 0 && cpu_num < SMP_MAX_CPUS, "cpu_num: %u", cpu_num); kstack_t* stack = &_init_thread[cpu_num - 1].stack; DEBUG_ASSERT(stack->base == 0); zx_status_t status = vm_allocate_kstack(stack); if (status != ZX_OK) { return status; } // Get the stack pointers. void* sp = reinterpret_cast<void*>(stack->top); void* unsafe_sp = nullptr; #if __has_feature(safe_stack) DEBUG_ASSERT(stack->unsafe_base != 0); unsafe_sp = reinterpret_cast<void*>(stack->unsafe_base + stack->size); #endif // Find an empty slot for the low-level stack info. uint32_t i = 0; while ((i < SMP_MAX_CPUS) && (arm64_secondary_sp_list[i].mpid != 0)) { i++; } if (i == SMP_MAX_CPUS) return ZX_ERR_NO_RESOURCES; // Store it. LTRACEF("set mpid 0x%lx sp to %p\n", mpid, sp); #if __has_feature(safe_stack) LTRACEF("set mpid 0x%lx unsafe-sp to %p\n", mpid, unsafe_sp); #endif arm64_secondary_sp_list[i].mpid = mpid; arm64_secondary_sp_list[i].sp = sp; arm64_secondary_sp_list[i].stack_guard = get_current_thread()->arch.stack_guard; arm64_secondary_sp_list[i].unsafe_sp = unsafe_sp; return ZX_OK; } zx_status_t arm64_free_secondary_stack(uint cpu_num) { DEBUG_ASSERT(cpu_num > 0 && cpu_num < SMP_MAX_CPUS); kstack_t* stack = &_init_thread[cpu_num - 1].stack; zx_status_t status = vm_free_kstack(stack); return status; } static void arm64_cpu_early_init() { // Make sure the per cpu pointer is set up. arm64_init_percpu_early(); // Set the vector base. __arm_wsr64("vbar_el1", (uint64_t)&arm64_el1_exception_base); __isb(ARM_MB_SY); // Set some control bits in sctlr. uint64_t sctlr = __arm_rsr64("sctlr_el1"); sctlr |= SCTLR_EL1_UCI | SCTLR_EL1_UCT | SCTLR_EL1_DZE | SCTLR_EL1_SA0 | SCTLR_EL1_SA; sctlr &= ~SCTLR_EL1_AC; // Disable alignment checking for EL1, EL0. __arm_wsr64("sctlr_el1", sctlr); __isb(ARM_MB_SY); // Save all of the features of the cpu. arm64_feature_init(); // Enable cycle counter. __arm_wsr64("pmcr_el0", PMCR_EL0_ENABLE_BIT | PMCR_EL0_LONG_COUNTER_BIT); __isb(ARM_MB_SY); __arm_wsr64("pmcntenset_el0", PMCNTENSET_EL0_ENABLE); __isb(ARM_MB_SY); // Enable user space access to cycle counter. __arm_wsr64("pmuserenr_el0", PMUSERENR_EL0_ENABLE); __isb(ARM_MB_SY); // Enable Debug Exceptions by Disabling the OS Lock. The OSLAR_EL1 is a WO // register with only the low bit defined as OSLK. Write 0 to disable. __arm_wsr64("oslar_el1", 0x0); __isb(ARM_MB_SY); // Enable user space access to virtual counter (CNTVCT_EL0). __arm_wsr64("cntkctl_el1", CNTKCTL_EL1_ENABLE_VIRTUAL_COUNTER); __isb(ARM_MB_SY); __arm_wsr64("mdscr_el1", MSDCR_EL1_INITIAL_VALUE); __isb(ARM_MB_SY); arch_enable_fiqs(); } void arch_early_init() { arm64_cpu_early_init(); platform_init_mmu_mappings(); } void arch_init() TA_NO_THREAD_SAFETY_ANALYSIS { arch_mp_init_percpu(); dprintf(INFO, "ARM boot EL%lu\n", arm64_get_boot_el()); arm64_feature_debug(true); uint32_t max_cpus = arch_max_num_cpus(); uint32_t cmdline_max_cpus = cmdline_get_uint32("kernel.smp.maxcpus", max_cpus); if (cmdline_max_cpus > max_cpus || cmdline_max_cpus <= 0) { printf("invalid kernel.smp.maxcpus value, defaulting to %u\n", max_cpus); cmdline_max_cpus = max_cpus; } secondaries_to_init = cmdline_max_cpus - 1; lk_init_secondary_cpus(secondaries_to_init); LTRACEF("releasing %d secondary cpus\n", secondaries_to_init); // Release the secondary cpus. spin_unlock(&arm_boot_cpu_lock); // Flush the release of the lock, since the secondary cpus are running without cache on. arch_clean_cache_range((addr_t)&arm_boot_cpu_lock, sizeof(arm_boot_cpu_lock)); } __NO_RETURN int arch_idle_thread_routine(void*) { for (;;) __asm__ volatile("wfi"); } // Switch to user mode, set the user stack pointer to user_stack_top, put the svc stack pointer to // the top of the kernel stack. void arch_enter_uspace(uintptr_t pc, uintptr_t sp, uintptr_t arg1, uintptr_t arg2) { thread_t* ct = get_current_thread(); // Set up a default spsr to get into 64bit user space: // - Zeroed NZCV. // - No SS, no IL, no D. // - All interrupts enabled. // - Mode 0: EL0t. // // TODO: (hollande,travisg) Need to determine why some platforms throw an // SError exception when first switching to uspace. uint32_t spsr = 1 << 8; // Mask SError exceptions (currently unhandled). arch_disable_ints(); LTRACEF("arm_uspace_entry(%#" PRIxPTR ", %#" PRIxPTR ", %#x, %#" PRIxPTR ", %#" PRIxPTR ", 0, %#" PRIxPTR ")\n", arg1, arg2, spsr, ct->stack.top, sp, pc); arm64_uspace_entry(arg1, arg2, pc, sp, ct->stack.top, spsr, MSDCR_EL1_INITIAL_VALUE); __UNREACHABLE; } // called from assembly. extern "C" void arm64_secondary_entry() { arm64_cpu_early_init(); spin_lock(&arm_boot_cpu_lock); spin_unlock(&arm_boot_cpu_lock); uint cpu = arch_curr_cpu_num(); thread_secondary_cpu_init_early(&_init_thread[cpu - 1]); // Run early secondary cpu init routines up to the threading level. lk_init_level(LK_INIT_FLAG_SECONDARY_CPUS, LK_INIT_LEVEL_EARLIEST, LK_INIT_LEVEL_THREADING - 1); arch_mp_init_percpu(); arm64_feature_debug(false); lk_secondary_cpu_entry(); }
[ "376305680@qq.com" ]
376305680@qq.com
6d6e13283a4f43742bc42c69d171082999e4a3e3
b326a0e61caebdff46b2e70781e35737142b0d0f
/particleGrowthMD/particleGrowthMDv2D.cpp
b0fe17e3e7203225eb7d0467fe4b1b566f7d2939
[]
no_license
toshirokubota/VentricleSegmentation
ef28dc8c4de9aecc8666c22ef9d7e0d2180b3f5f
b6aa9e7549975523b52c087e0f3dc5a6da5ab04e
refs/heads/master
2021-01-20T07:54:28.849123
2017-07-09T23:23:10
2017-07-09T23:23:10
90,064,348
0
0
null
null
null
null
UTF-8
C++
false
false
25,292
cpp
#include <iostream> using namespace std; #include <stdio.h> #ifdef MEX_DLL #include <mex.h> #include "mexFileIO.h" #endif #include <vector> #include <algorithm> #include <set> #include <map> using namespace std; #include <szMexUtility.h> #include <szMexUtilityTemplate.h> #include <szMyNeighborOp.h> #include <szDefaultParam.h> #include <szConvolutionTemplate.h> #include <szMiscOperations.h> #include <DisjointSet.h> #include <szParticle4D.h> #include <szDistanceTransform.h> #include <szConnectedComponent.h> #include <szLocalExtrema.h> #include <szDistanceTransformNonIsotropic.h> #include <Graph.h> #include <GraphFactory.h> struct particle_cluster; struct CoreParticle { CoreParticle(int x0 = 0, int y0 = 0, int z0 = 0, int t0 = 0, int gen0 = 0, int lb = 0, int id0 = 0) { x = x0; y = y0; gen = gen0; label = lb; id = id0; z = z0; t = t0; cluster = NULL; } int x; int y; int z; int t; int label; int gen; //generation int id; set<CoreParticle*> ascendents; set<CoreParticle*> descendents; particle_cluster* cluster; }; struct CoreParticleFactory { public: static CoreParticleFactory& getInstance() { static CoreParticleFactory instance; return instance; } CoreParticle* makeParticle(int x = 0, int y = 0, int z = 0, int t = 0, int gen = 0, int lb = 0) { CoreParticle* particle = new CoreParticle(x, y, z, t, gen, lb, _id++); particles.push_back(particle); return particle; } void clean() { for (int i = 0; i < particles.size(); ++i) { delete particles[i]; } particles.clear(); _id = 0; } vector<CoreParticle*> particles; private: int _id; CoreParticleFactory() { _id = 0; } ~CoreParticleFactory() { clean(); } CoreParticleFactory(CoreParticleFactory& f){} CoreParticleFactory operator=(CoreParticleFactory& f){} }; struct cluster_pair; struct particle_cluster { particle_cluster(vector<CoreParticle*>& vp, int gen0, int id0) { particles = vp; gen = gen0; id = id0; width = 0; label = 0; value = 0.f; } CParticle4D centroid() { CParticle4D c; for (int i = 0; i < particles.size(); ++i) { c.m_X += particles[i]->x; c.m_Y += particles[i]->y; c.m_Z += particles[i]->z; c.m_T += particles[i]->t; } c.m_X /= particles.size(); c.m_Y /= particles.size(); c.m_Z /= particles.size(); c.m_T /= particles.size(); return c; } vector<CoreParticle*> particles; vector<cluster_pair*> pairs; set<particle_cluster*> ascendents; set<particle_cluster*> descendents; int size() { return particles.size(); } int width; int gen; //generation int id; int label; //for general purpose float value; //for general purpose }; struct cluster_pair { cluster_pair() { u = NULL; v = NULL; cut = std::numeric_limits<float>::infinity(); length = 0; } particle_cluster* u; particle_cluster* v; float cut; float length; float weight() { return (float)length * sqrt(u->width*v->width) / (float)cut * Min(u->size(), v->size()); // / Max(u->size(), v->size()); } }; struct CoreClusterFactory { public: static CoreClusterFactory& getInstance() { static CoreClusterFactory instance; return instance; } particle_cluster* makeCoreCluster(vector<CoreParticle*>& vp, int gen) { particle_cluster* c = new particle_cluster(vp, gen, _id++); clusters.push_back(c); return c; } cluster_pair* makeClusterPair(particle_cluster* a, particle_cluster* b) { cluster_pair* p = new cluster_pair(); p->u = a; p->v = b; pairs.push_back(p); return p; } void clean() { for (int i = 0; i < clusters.size(); ++i) { delete clusters[i]; } clusters.clear(); for (int i = 0; i < pairs.size(); ++i) { delete pairs[i]; } pairs.clear(); _id = 0; } vector<particle_cluster*> clusters; vector<cluster_pair*> pairs; private: int _id; CoreClusterFactory() { _id = 0; } ~CoreClusterFactory() { clean(); } CoreClusterFactory(CoreClusterFactory& f){} CoreClusterFactory operator=(CoreClusterFactory& f){} }; struct NeighborhoodFactory { public: static NeighborhoodFactory& getInstance(int n = 0) { static NeighborhoodFactory instance(n); if (n > 0 && n != instance.ndim) { instance.neighbor4 = MakeFourNeighborhood(n); instance.neighbor8 = MakeEightNeighborhood(n); instance.ndim = n; } return instance; } vector<vector<int>> neighbor4; vector<vector<int>> neighbor8; private: int ndim; NeighborhoodFactory(int n) { ndim = n; if (ndim > 0) { neighbor4 = MakeFourNeighborhood(n); neighbor8 = MakeEightNeighborhood(n); } } ~NeighborhoodFactory() { } NeighborhoodFactory(NeighborhoodFactory& f){} NeighborhoodFactory operator=(NeighborhoodFactory& f){} }; /*particle_cluster* merge_cores(particle_cluster* a, particle_cluster* b) { CoreClusterFactory& factory = CoreClusterFactory::getInstance(); particle_cluster* c = factory.makeCoreCluster(); c->particles = a->particles; c->particles.insert(c->particles.end(), b->particles.begin(), b->particles.end()); c->width = Max(a->width, b->width); //Is this right?? for (int i = 0; i < a->pairs.size(); ++i) { if (a->pairs[i]->v != b) { a->pairs[i]->u = c; particle_cluster* v = a->pairs[i]->v; for (int j = 0; j < v->pairs.size(); ++j) { if (v->pairs[j]->v == a) { v->pairs[j]->v = c; } } c->pairs.push_back(a->pairs[i]); } } for (int i = 0; i < b->pairs.size(); ++i) { if (b->pairs[i]->v != a) { b->pairs[i]->u = c; particle_cluster* v = b->pairs[i]->v; for (int j = 0; j < v->pairs.size(); ++j) { if (v->pairs[j]->v == b) { v->pairs[j]->v = c; } } c->pairs.push_back(b->pairs[i]); } } return c; }*/ CoreParticle* coreParticleNdim(vector<int>& loc, int ndim) { CoreParticleFactory& factory = CoreParticleFactory::getInstance(); switch (ndim) { case 1: return factory.makeParticle(loc[0]); case 2: return factory.makeParticle(loc[0], loc[1]); case 3: return factory.makeParticle(loc[0], loc[1], loc[2]); case 4: return factory.makeParticle(loc[0], loc[1], loc[2], loc[3]); default: mexErrMsgTxt("particleNdim: unsupported number of dimensions. It has to be between 1 and 4."); return NULL; } } vector<int> coreParticle2Index(CoreParticle* p, int ndim) { vector<int> idx(ndim); if (ndim == 1) { idx[0] = p->x; } else if (ndim == 2) { idx[0] = p->x; idx[1] = p->y; } else if (ndim == 3) { idx[0] = p->x; idx[1] = p->y; idx[2] = p->z; } else if (ndim == 4) { idx[0] = p->x; idx[1] = p->y; idx[2] = p->z; idx[3] = p->t; } else { mexErrMsgTxt("SetVoxel: unsupported number of dimensions. It has to be between 1 and 4."); } return idx; } template<class T> bool SetVoxel(vector<T>& A, const CParticle4D& p, T value, int ndim, const int* dims) { if (ndim == 1) { return SetData(A, p.m_X, value); } else if (ndim == 2) { return SetData2(A, p.m_X, p.m_Y, dims[0], dims[1], value); } else if (ndim == 3) { return SetData3(A, p.m_X, p.m_Y, p.m_Z, dims[0], dims[1], dims[2], value); } else if (ndim == 4) { return SetData4(A, p.m_X, p.m_Y, p.m_Z, p.m_T, dims[0], dims[1], dims[2], dims[3], value); } else { mexErrMsgTxt("SetVoxel: unsupported number of dimensions. It has to be between 1 and 4."); return false; } } template<class T> T GetVoxel(const vector<T>& A, const CParticle4D& p, T defaultValue, int ndim, const int* dims) { if (ndim == 1) { return GetData(A, p.m_X, defaultValue); } else if (ndim == 2) { return GetData2(A, p.m_X, p.m_Y, dims[0], dims[1], defaultValue); } else if (ndim == 3) { return GetData3(A, p.m_X, p.m_Y, p.m_Z, dims[0], dims[1], dims[2], defaultValue); } else if (ndim == 4) { return GetData4(A, p.m_X, p.m_Y, p.m_Z, p.m_T, dims[0], dims[1], dims[2], dims[3], defaultValue); } else { mexErrMsgTxt("SetVoxel: unsupported number of dimensions. It has to be between 1 and 4."); return defaultValue; } } template<class T> bool SetVoxel(vector<T>& A, const CoreParticle* p, T value, int ndim, const int* dims) { if (ndim == 1) { return SetData(A, p->x, value); } else if (ndim == 2) { return SetData2(A, p->x, p->y, dims[0], dims[1], value); } else if (ndim == 3) { return SetData3(A, p->x, p->y, p->z, dims[0], dims[1], dims[2], value); } else if (ndim == 4) { return SetData4(A, p->x, p->y, p->z, p->t, dims[0], dims[1], dims[2], dims[3], value); } else { mexErrMsgTxt("SetVoxel: unsupported number of dimensions. It has to be between 1 and 4."); return false; } } template<class T> T GetVoxel(const vector<T>& A, const CoreParticle* p, T defaultValue, int ndim, const int* dims) { if (ndim == 1) { return GetData(A, p->x, defaultValue); } else if (ndim == 2) { return GetData2(A, p->x, p->y, dims[0], dims[1], defaultValue); } else if (ndim == 3) { return GetData3(A, p->x, p->y, p->z, dims[0], dims[1], dims[2], defaultValue); } else if (ndim == 4) { return GetData4(A, p->x, p->y, p->z, p->t, dims[0], dims[1], dims[2], dims[3], defaultValue); } else { mexErrMsgTxt("SetVoxel: unsupported number of dimensions. It has to be between 1 and 4."); return defaultValue; } } /* onSurface3 with a general neighborhood */ template<class T> bool onSurface(const vector<T>& A, const vector<int>& sub, const vector<vector<int>>& nbh, int ndim, const int* dims) { for (int m = 0; m < nbh.size(); ++m) { if (NeighborCheck(sub.begin(), nbh[m].begin(), ndim, dims) && A[Sub2Ind(sub, nbh[m], ndim, dims)] == 0) { return true; } } return false; } vector<CoreParticle*> ExtactSurface(const vector<unsigned char>& L, int ndim, const int* dims) { int nvoxels = numberOfElements(ndim, dims); vector<CoreParticle*> front; vector<vector<int>>& nbh = NeighborhoodFactory::getInstance(ndim).neighbor4; //MakeEightNeighborhood(ndim, dims); for (int i = 0; i < nvoxels; ++i) { if (L[i]) { vector<int> sub = Ind2Sub(i, ndim, dims); if (onSurface(L, sub, nbh, ndim, dims)) { front.push_back(coreParticleNdim(sub, ndim)); } } } return front; } float Length(float x, float y, float z = 0, float t = 0) { return sqrt(x*x + y*y + z*z + t*t); } float Length(vector<int>& idx, int ndim) { float sum = 0; for (int i = 0; i < ndim; ++i) { sum += idx[i] * idx[i]; } return sqrt(sum); } float Distance(CoreParticle* p, CoreParticle* q) { return Length(p->x - q->x, p->y - q->y, p->z - q->z, p->t - q->t); } set<particle_cluster*> collectAscendents(particle_cluster* c) { //collect all ascendents of pc including itself. set<particle_cluster*> all; set<particle_cluster*> next; next.insert(c); while (next.empty() == false) { set<particle_cluster*> Q; for (set<particle_cluster*>::iterator it = next.begin(); it != next.end(); ++it) { all.insert(*it); for (set<particle_cluster*>::iterator jt = (*it)->ascendents.begin(); jt != (*it)->ascendents.end(); ++jt) { Q.insert(*it); } } next = Q; } return all; } bool noCommonAscendents(particle_cluster* a, particle_cluster* b) { set<particle_cluster*> sa = collectAscendents(a); set<particle_cluster*> sb = collectAscendents(b); vector<particle_cluster*> diff; set_difference(sa.begin(), sa.end(), sb.begin(), sb.end(), std::inserter(diff, diff.begin())); return diff.empty(); } int numDisjointClusters(set<particle_cluster*>& P) { set<CoreParticle*> S; for (set<particle_cluster*>::iterator it = P.begin(); it != P.end(); ++it) { S.insert((*it)->particles.begin(), (*it)->particles.end()); } vector<Node<CoreParticle*>*> nodes; for (set<CoreParticle*>::iterator it = S.begin(); it != S.end(); ++it) { nodes.push_back(makeset(*it)); } for (int i = 0; i < nodes.size(); ++i) { CoreParticle* p = nodes[i]->key; for (int j =i+1; j < nodes.size(); ++j) { CoreParticle* q = nodes[j]->key; if (Abs(p->x - q->x) <= 1 && Abs(p->y - q->y) <= 1 && Abs(p->z - q->z) <= 1 && Abs(p->t - q->t) <= 1) { merge(nodes[i], nodes[j]); } } } vector<Node<CoreParticle*>*> reps = clusters(nodes); int nc = reps.size(); for (int i = 0; i < nodes.size(); ++i) { delete nodes[i]; } return nc; } bool isAdjacent(CoreParticle* p, vector<CoreParticle*>& particles) { for (int i = 0; i < particles.size(); ++i) { CoreParticle* q = particles[i]; int cnt = 0; cnt += Abs(p->x - q->x); cnt += Abs(p->y - q->y); cnt += Abs(p->z - q->z); cnt += Abs(p->t - q->t); if (cnt == 1) { return true; } } return false; } vector<particle_cluster*> pickCore(vector<particle_cluster*>& pclusters, float thres) { vector<particle_cluster*> core; for (int i = 0; i < pclusters.size(); ++i) { //set of ascendents set<CoreParticle*> aset; for (set<particle_cluster*>::iterator it = pclusters[i]->ascendents.begin(); it != pclusters[i]->ascendents.end(); ++it) { particle_cluster* pc = *it; for (int j = 0; j < pc->particles.size(); ++j) { if (isAdjacent(pc->particles[j], pclusters[i]->particles)) { aset.insert(pc->particles[j]); } } } //set of descendents set<CoreParticle*> dset; for (set<particle_cluster*>::iterator it = pclusters[i]->descendents.begin(); it != pclusters[i]->descendents.end(); ++it) { particle_cluster* pc = *it; for (int j = 0; j < pc->particles.size(); ++j) { if (isAdjacent(pc->particles[j], pclusters[i]->particles)) { dset.insert(pc->particles[j]); } } } float measure = (float)dset.size() / (float)aset.size(); pclusters[i]->value = measure; //printf("corenesss: %d %d %d %f\n", i, dset.size(), aset.size(), measure); if (aset.size() > 0 && measure < thres) { core.push_back(pclusters[i]); pclusters[i]->label = 1; } else { pclusters[i]->label = 0; } } vector<particle_cluster*> core2; for (int i = 0; i < core.size(); ++i) { bool bCore = true; for (set<particle_cluster*>::iterator it = core[i]->descendents.begin(); it != core[i]->descendents.end(); ++it) { if ((*it)->label == 1) { bCore = false; break; } } if (bCore) { core2.push_back(core[i]); } } printf("Cores reduced from %d to %d clusters.\n", core.size(), core2.size()); return core2; } /* Cluster particles using disjoint set. */ vector<vector<CoreParticle*>> clusterParticles(vector<CoreParticle*>& particles, float thres) { vector<Node<CoreParticle*>*> nodes; for (int i = 0; i < particles.size(); ++i) { nodes.push_back(makeset(particles[i])); } for (int i = 0; i < nodes.size(); ++i) { CoreParticle* p = nodes[i]->key; for (int j = i + 1; j < nodes.size(); ++j) { CoreParticle* q = nodes[j]->key; if (Distance(p, q) <= thres) { merge(nodes[i], nodes[j]); } } } vector<Node<CoreParticle*>*> rep = clusters(nodes); vector<vector<CoreParticle*>> group(rep.size()); for (int i = 0; i < nodes.size(); ++i) { int k = distance(rep.begin(), find(rep.begin(), rep.end(), findset(nodes[i]))); group[k].push_back(nodes[i]->key); } for (int i = 0; i < nodes.size(); ++i) { delete nodes[i]; } return group; } /* from each surface particle, move towrad the center and establish ascendent/descendent relation. */ vector<particle_cluster*> propagateParticles(vector<int>& S, vector<unsigned char>& L, vector<CoreParticle*>& front, int mincore, int ndim, const int* dims) { CoreClusterFactory& cfactory = CoreClusterFactory::getInstance(); CoreParticleFactory& factory = CoreParticleFactory::getInstance(); vector<CoreParticle*> particles; vector<particle_cluster*> pclusters; vector<CoreParticle*> mp(L.size(), NULL); //map to resolve uniqueness at each pixel vector<CoreParticle*> Q; for (int i = 0; i < front.size(); ++i) { Q.push_back(front[i]); SetVoxel(mp, front[i], front[i], ndim, dims); particles.push_back(front[i]); } vector<unsigned char> F(numberOfElements(ndim, dims)); //for connected components vector<int> C(numberOfElements(ndim, dims)); //for connected component labels //int mincore = 5; vector<vector<int>>& nbh = NeighborhoodFactory::getInstance(ndim).neighbor4; //MakeEightNeighborhood(ndim, dims); int gen = 1; while (Q.empty() == false) { for (int i = 0; i < F.size(); ++i) { F[i] = 0; C[i] = 0; } vector<CoreParticle*> core; for (int i = 0; i < Q.size(); ++i) { SetVoxel(S, Q[i], gen, ndim, dims); SetVoxel(F, Q[i], (unsigned char)1, ndim, dims); } int nc = ConnectedComponentAnalysisBigger(C, F, NeighborhoodFour, (unsigned char)0, ndim, dims); vector<vector<CoreParticle*>> vvp(nc); for (int i = 0; i < C.size(); ++i) { if (C[i] > 0) { CoreParticle* p = mp[i]; vvp[C[i] - 1].push_back(p); } } vector<particle_cluster*> vpc; for (int i = 0; i < nc; ++i) { if (vvp[i].empty()) continue; particle_cluster* pc = cfactory.makeCoreCluster(vvp[i], gen); for (int j = 0; j < vvp[i].size(); ++j) { vvp[i][j]->cluster = pc; } vpc.push_back(pc); } for (int i = 0; i < vpc.size(); ++i) { set<particle_cluster*> spc; for (int j = 0; j < vpc[i]->particles.size(); ++j) { CoreParticle* p = vpc[i]->particles[j]; for (set<CoreParticle*>::iterator it = p->ascendents.begin(); it != p->ascendents.end(); ++it) { CoreParticle* q = *it; spc.insert(q->cluster); } } for (set<particle_cluster*>::iterator jt = spc.begin(); jt != spc.end(); ++jt) { vpc[i]->ascendents.insert(*jt); (*jt)->descendents.insert(vpc[i]); } } pclusters.insert(pclusters.end(), vpc.begin(), vpc.end()); vector<CoreParticle*> Q2; for (int i = 0; i < Q.size(); ++i) { vector<int> sub = coreParticle2Index(Q[i], ndim); for (int n = 0; n < nbh.size(); ++n) { if (NeighborCheck(sub.begin(), nbh[n].begin(), ndim, dims)) { int idx = Sub2Ind(sub, nbh[n], ndim, dims); if (L[idx] && S[idx] == 0) { CoreParticle* p = mp[idx]; if (p == NULL) { p = coreParticleNdim(SubWithOffset(sub, nbh[n], ndim, dims), ndim); p->gen = gen; mp[idx] = p; Q2.push_back(p); particles.push_back(p); } if (p->ascendents.find(Q[i]) == p->ascendents.end()) { p->ascendents.insert(Q[i]); Q[i]->descendents.insert(p); } } } } } Q = Q2; gen++; } return pclusters; } float bondingStrength(particle_cluster* a, particle_cluster* b, vector<vector<int>>& nbh, vector<CoreParticle*>& pm, int ndim, const int* dims) { int count = 0; set<CoreParticle*> pset; for (int i = 0; i < a->particles.size(); ++i) { vector<int> sub = coreParticle2Index(a->particles[i], ndim); bool bneighbor = false; for (int n = 0; n < nbh.size(); ++n) { if (NeighborCheck(sub.begin(), nbh[n].begin(), ndim, dims)) { int idx = Sub2Ind(sub, nbh[n], ndim, dims); if (pm[idx] != NULL && pm[idx]->cluster == b) { pset.insert(pm[idx]); bneighbor = true; } } } count += bneighbor ? 1 : 0; } //return (float)(count + pset.size()) / (a->size() + b->size()); return (float)(count) / (a->size()); } void colorParticles(vector<particle_cluster*>& clusters, vector<particle_cluster*>& cores, int ndim, const int* dims) { vector<CoreParticle *> pm(numberOfElements(ndim, dims), (CoreParticle*)NULL); for (int i = 0; i < clusters.size(); ++i) { particle_cluster* pc = clusters[i]; for (int j = 0; j < pc->size(); ++j) { CoreParticle* p = pc->particles[j]; SetVoxel(pm, p, p, ndim, dims); } } map<particle_cluster*, particle_cluster*> cmap; for (int i = 0; i < clusters.size(); ++i) { particle_cluster* pc = clusters[i]; pc->value = 0; //used to store the bonding strength pc->label = 0; cmap[pc] = NULL; } set<particle_cluster*> Q; for (int i = 0; i < cores.size(); ++i) { cores[i]->value = 1.0f; //core has the maximum bonding to begin with, so that its ownership won't change cmap[cores[i]] = cores[i]; Q.insert(cores[i]); cores[i]->label = (i+1); } vector<vector<int>>& nbh = NeighborhoodFactory::getInstance(ndim).neighbor4; //MakeEightNeighborhood(ndim, dims); while (Q.empty() == false) { set<particle_cluster*> Q2; for (set<particle_cluster*>::iterator it = Q.begin(); it != Q.end(); ++it) { particle_cluster* pc = *it; //if (pc->id == 5754) continue; //TK - skip this one for debuggin.. for (set<particle_cluster*>::iterator jt = pc->ascendents.begin(); jt != pc->ascendents.end(); ++jt) { particle_cluster* qc = *jt; float bval = bondingStrength(pc, qc, nbh, pm, ndim, dims); if (bval > qc->value) { qc->value = bval; cmap[qc] = pc; // cmap[pc]; qc->label = pc->label; Q2.insert(qc); } } } Q = Q2; } for (int i = 0; i < clusters.size(); ++i) { particle_cluster* pc = clusters[i]; while (pc != NULL && pc != cmap[pc]) { pc = cmap[pc]; } for (int j = 0; j < clusters[i]->particles.size(); ++j) { clusters[i]->particles[j]->label = pc == NULL ? -1: pc->label; } } } void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]) { if (nrhs < 1 || nlhs < 0) { mexErrMsgTxt("Usage: [S] = particleGrowth(L, [thres mincore])"); return; } //load figure-ground segmentation int ndimL; const int* dimsL; mxClassID classL; vector<unsigned char> L; LoadData(L, prhs[0], classL, ndimL, &dimsL); //int nclusters = 2; float costCutoff = 0.3f; if (nrhs >= 2) { mxClassID classMode; ReadScalar(costCutoff, prhs[1], classMode); } int minsize = 5; if (nrhs >= 3) { mxClassID classMode; ReadScalar(minsize, prhs[2], classMode); } CoreParticleFactory& factory = CoreParticleFactory::getInstance(); int nvoxels = numberOfElements(ndimL, dimsL); vector<int> S(nvoxels, 0); vector<CoreParticle*> front = ExtactSurface(L, ndimL, dimsL); vector<particle_cluster*> clusters = propagateParticles(S, L, front, minsize, ndimL, dimsL); vector<particle_cluster*> core = pickCore(clusters, costCutoff); colorParticles(clusters, core, ndimL, dimsL); vector<int> T(nvoxels, 0); for (int i = 0; i < clusters.size(); ++i) { for (int j = 0; j < clusters[i]->particles.size(); ++j) { CoreParticle* p = clusters[i]->particles[j]; SetVoxel(T, p, p->label, ndimL, dimsL); } } if (nlhs >= 1) { int count = 0; for (int i = 0; i < core.size(); ++i) { count += core[i]->size(); } int dims[] = { count, 8 }; vector<int> F(dims[0] * dims[1]); for (int i = 0, k = 0; i < core.size(); ++i) { for (int j = 0; j < core[i]->size(); ++j, ++k) { CoreParticle* p = core[i]->particles[j]; SetData2(F, k, 0, dims[0], dims[1], p->x); SetData2(F, k, 1, dims[0], dims[1], p->y); SetData2(F, k, 2, dims[0], dims[1], p->z); SetData2(F, k, 3, dims[0], dims[1], p->t); SetData2(F, k, 4, dims[0], dims[1], p->label); SetData2(F, k, 5, dims[0], dims[1], p->gen); SetData2(F, k, 6, dims[0], dims[1], p->id); SetData2(F, k, 7, dims[0], dims[1], p->cluster->id); } } plhs[0] = StoreData(F, mxINT32_CLASS, 2, dims); } if (nlhs >= 2) { int count = 0; for (int i = 0; i < clusters.size(); ++i) { count += clusters[i]->size(); } int dims[] = { count, 8 }; vector<int> F(dims[0] * dims[1]); for (int i = 0, k = 0; i < clusters.size(); ++i) { for (int j = 0; j < clusters[i]->size(); ++j, ++k) { CoreParticle* p = clusters[i]->particles[j]; SetData2(F, k, 0, dims[0], dims[1], p->x); SetData2(F, k, 1, dims[0], dims[1], p->y); SetData2(F, k, 2, dims[0], dims[1], p->z); SetData2(F, k, 3, dims[0], dims[1], p->t); SetData2(F, k, 4, dims[0], dims[1], p->label); SetData2(F, k, 5, dims[0], dims[1], p->gen); SetData2(F, k, 6, dims[0], dims[1], p->id); SetData2(F, k, 7, dims[0], dims[1], p->cluster->id); } } plhs[1] = StoreData(F, mxINT32_CLASS, 2, dims); } if (nlhs >= 3) { plhs[2] = StoreData(S, mxINT32_CLASS, ndimL, dimsL); } if (nlhs >= 4) { plhs[3] = StoreData(T, mxINT32_CLASS, ndimL, dimsL); } if (nlhs >= 5) { vector<int> T2(nvoxels, 0); for (int i = 0; i < clusters.size(); ++i) { for (int j = 0; j < clusters[i]->particles.size(); ++j) { CoreParticle* p = clusters[i]->particles[j]; SetVoxel(T2, p, clusters[i]->id, ndimL, dimsL); } } plhs[4] = StoreData(T2, mxINT32_CLASS, ndimL, dimsL); } mexUnlock(); factory.clean(); CoreClusterFactory::getInstance().clean(); }
[ "kubota@susqu.edu" ]
kubota@susqu.edu
a6453ac1c5fe960131fa69808eb2e8be4ccc1533
182adfdfa907d3efc0395e293dcdbc46898d88eb
/Temp/il2cppOutput/il2cppOutput/mscorlib_System_Collections_Generic_List_1_Enumera2871575855.h
da472a3ceff9699637291c6d70f678190b3a1dc5
[]
no_license
Launchable/1.1.3New
d1962418cd7fa184300c62ebfd377630a39bd785
625374fae90e8339cec0007d4d7202328bfa03d9
refs/heads/master
2021-01-19T07:40:29.930695
2017-09-15T17:20:45
2017-09-15T17:20:45
100,642,705
0
0
null
null
null
null
UTF-8
C++
false
false
2,479
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include "mscorlib_System_ValueType3507792607.h" // System.Collections.Generic.List`1<SA.Fitness.LoginApi> struct List_1_t3336846181; // SA.Fitness.LoginApi struct LoginApi_t3967725049; #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1/Enumerator<SA.Fitness.LoginApi> struct Enumerator_t2871575855 { public: // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::l List_1_t3336846181 * ___l_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::next int32_t ___next_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::ver int32_t ___ver_2; // T System.Collections.Generic.List`1/Enumerator::current LoginApi_t3967725049 * ___current_3; public: inline static int32_t get_offset_of_l_0() { return static_cast<int32_t>(offsetof(Enumerator_t2871575855, ___l_0)); } inline List_1_t3336846181 * get_l_0() const { return ___l_0; } inline List_1_t3336846181 ** get_address_of_l_0() { return &___l_0; } inline void set_l_0(List_1_t3336846181 * value) { ___l_0 = value; Il2CppCodeGenWriteBarrier(&___l_0, value); } inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Enumerator_t2871575855, ___next_1)); } inline int32_t get_next_1() const { return ___next_1; } inline int32_t* get_address_of_next_1() { return &___next_1; } inline void set_next_1(int32_t value) { ___next_1 = value; } inline static int32_t get_offset_of_ver_2() { return static_cast<int32_t>(offsetof(Enumerator_t2871575855, ___ver_2)); } inline int32_t get_ver_2() const { return ___ver_2; } inline int32_t* get_address_of_ver_2() { return &___ver_2; } inline void set_ver_2(int32_t value) { ___ver_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2871575855, ___current_3)); } inline LoginApi_t3967725049 * get_current_3() const { return ___current_3; } inline LoginApi_t3967725049 ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(LoginApi_t3967725049 * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier(&___current_3, value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif
[ "zk.launchable@gmail.com" ]
zk.launchable@gmail.com
54d987c7f78874fb27317ee372c96b7d6749c8a6
ef7bf794088abe99e2eff8a0e40337ed1d2e7867
/Hmwk/Assignment1/Gaddis_7thEd_Chap2_Prob5/main.cpp
b35f810ac65b788e326aa4702c06f5e03d8f78d1
[]
no_license
zach5456/zs2311972
b6f9d555d0faa122c7c134273d15f0c8b3f4c81a
e66f6dbbac2e45716af748c8478e64608c7b6cc5
refs/heads/master
2021-01-20T00:50:46.216327
2014-08-01T23:58:57
2014-08-01T23:58:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
442
cpp
/* * File: main.cpp * Author: Stewart, Zach * Class: 46024 * * Created on June 26, 2014, 11:22 PM */ #include <iostream> using namespace std; int main() { float apples = 28, oranges = 37, pears = 24, grapes = 32, peaches = 33, sum; float totalEaten; sum = apples + oranges + pears + grapes + peaches; totalEaten = sum / 5; cout << "The average fruit eaten is " << totalEaten << endl; return 0; }
[ "zstewart3@student.rcc.edu" ]
zstewart3@student.rcc.edu
0d44c06f08f4971a51988d6f852411bb0efd0a6d
5d6681668bcaaa078ab90fd0ebdaa0f59345c642
/src/qt/blockexplorer.cpp
8b978514044583f878a07430e4d18932451fbf30
[ "MIT" ]
permissive
shadow-coin/shadow
5687cdcc9d103265adfa21a751ea8debc1d8c601
48206da873800336eb295cbb27ccdf3b5625ec95
refs/heads/master
2020-03-20T15:15:18.704942
2018-06-15T18:04:30
2018-06-15T18:04:30
137,468,534
0
0
null
null
null
null
UTF-8
C++
false
false
19,492
cpp
#include "blockexplorer.h" #include "bitcoinunits.h" #include "chainparams.h" #include "clientmodel.h" #include "core_io.h" #include "main.h" #include "net.h" #include "txdb.h" #include "ui_blockexplorer.h" #include "ui_interface.h" #include "util.h" #include "utilstrencodings.h" #include <QDateTime> #include <QKeyEvent> #include <QMessageBox> #include <set> extern double GetDifficulty(const CBlockIndex* blockindex = NULL); inline std::string utostr(unsigned int n) { return strprintf("%u", n); } static std::string makeHRef(const std::string& Str) { return "<a href=\"" + Str + "\">" + Str + "</a>"; } static CAmount getTxIn(const CTransaction& tx) { if (tx.IsCoinBase()) return 0; CAmount Sum = 0; for (unsigned int i = 0; i < tx.vin.size(); i++) Sum += getPrevOut(tx.vin[i].prevout).nValue; return Sum; } static std::string ValueToString(CAmount nValue, bool AllowNegative = false) { if (nValue < 0 && !AllowNegative) return "<span>" + _("unknown") + "</span>"; QString Str = BitcoinUnits::formatWithUnit(BitcoinUnits::Shadow, nValue); if (AllowNegative && nValue > 0) Str = '+' + Str; return std::string("<span>") + Str.toUtf8().data() + "</span>"; } static std::string ScriptToString(const CScript& Script, bool Long = false, bool Highlight = false) { if (Script.empty()) return "unknown"; CTxDestination Dest; CBitcoinAddress Address; if (ExtractDestination(Script, Dest) && Address.Set(Dest)) { if (Highlight) return "<span class=\"addr\">" + Address.ToString() + "</span>"; else return makeHRef(Address.ToString()); } else return Long ? "<pre>" + FormatScript(Script) + "</pre>" : _("Non-standard script"); } static std::string TimeToString(uint64_t Time) { QDateTime timestamp; timestamp.setTime_t(Time); return timestamp.toString("yyyy-MM-dd hh:mm:ss").toUtf8().data(); } static std::string makeHTMLTableRow(const std::string* pCells, int n) { std::string Result = "<tr>"; for (int i = 0; i < n; i++) { Result += "<td class=\"d" + utostr(i) + "\">"; Result += pCells[i]; Result += "</td>"; } Result += "</tr>"; return Result; } static const char* table = "<table>"; static std::string makeHTMLTable(const std::string* pCells, int nRows, int nColumns) { std::string Table = table; for (int i = 0; i < nRows; i++) Table += makeHTMLTableRow(pCells + i * nColumns, nColumns); Table += "</table>"; return Table; } static std::string TxToRow(const CTransaction& tx, const CScript& Highlight = CScript(), const std::string& Prepend = std::string(), int64_t* pSum = NULL) { std::string InAmounts, InAddresses, OutAmounts, OutAddresses; int64_t Delta = 0; for (unsigned int j = 0; j < tx.vin.size(); j++) { if (tx.IsCoinBase()) { InAmounts += ValueToString(tx.GetValueOut()); InAddresses += "coinbase"; } else { CTxOut PrevOut = getPrevOut(tx.vin[j].prevout); InAmounts += ValueToString(PrevOut.nValue); InAddresses += ScriptToString(PrevOut.scriptPubKey, false, PrevOut.scriptPubKey == Highlight).c_str(); if (PrevOut.scriptPubKey == Highlight) Delta -= PrevOut.nValue; } if (j + 1 != tx.vin.size()) { InAmounts += "<br/>"; InAddresses += "<br/>"; } } for (unsigned int j = 0; j < tx.vout.size(); j++) { CTxOut Out = tx.vout[j]; OutAmounts += ValueToString(Out.nValue); OutAddresses += ScriptToString(Out.scriptPubKey, false, Out.scriptPubKey == Highlight); if (Out.scriptPubKey == Highlight) Delta += Out.nValue; if (j + 1 != tx.vout.size()) { OutAmounts += "<br/>"; OutAddresses += "<br/>"; } } std::string List[8] = { Prepend, makeHRef(tx.GetHash().GetHex()), InAddresses, InAmounts, OutAddresses, OutAmounts, "", ""}; int n = sizeof(List) / sizeof(std::string) - 2; if (!Highlight.empty()) { List[n++] = std::string("<font color=\"") + ((Delta > 0) ? "green" : "red") + "\">" + ValueToString(Delta, true) + "</font>"; *pSum += Delta; List[n++] = ValueToString(*pSum); return makeHTMLTableRow(List, n); } return makeHTMLTableRow(List + 1, n - 1); } CTxOut getPrevOut(const COutPoint& out) { CTransaction tx; uint256 hashBlock; if (GetTransaction(out.hash, tx, hashBlock, true)) return tx.vout[out.n]; return CTxOut(); } void getNextIn(const COutPoint& Out, uint256& Hash, unsigned int& n) { // Hash = 0; // n = 0; // if (paddressmap) // paddressmap->ReadNextIn(Out, Hash, n); } const CBlockIndex* getexplorerBlockIndex(int64_t height) { std::string hex = getexplorerBlockHash(height); uint256 hash = uint256S(hex); return mapBlockIndex[hash]; } std::string getexplorerBlockHash(int64_t Height) { std::string genesisblockhash = "0000041e482b9b9691d98eefb48473405c0b8ec31b76df3797c74a78680ef818"; CBlockIndex* pindexBest = mapBlockIndex[chainActive.Tip()->GetBlockHash()]; if ((Height < 0) || (Height > pindexBest->nHeight)) { return genesisblockhash; } CBlock block; CBlockIndex* pblockindex = mapBlockIndex[chainActive.Tip()->GetBlockHash()]; while (pblockindex->nHeight > Height) pblockindex = pblockindex->pprev; return pblockindex->GetBlockHash().GetHex(); // pblockindex->phashBlock->GetHex(); } std::string BlockToString(CBlockIndex* pBlock) { if (!pBlock) return ""; CBlock block; ReadBlockFromDisk(block, pBlock); CAmount Fees = 0; CAmount OutVolume = 0; CAmount Reward = 0; std::string TxLabels[] = {_("Hash"), _("From"), _("Amount"), _("To"), _("Amount")}; std::string TxContent = table + makeHTMLTableRow(TxLabels, sizeof(TxLabels) / sizeof(std::string)); for (unsigned int i = 0; i < block.vtx.size(); i++) { const CTransaction& tx = block.vtx[i]; TxContent += TxToRow(tx); CAmount In = getTxIn(tx); CAmount Out = tx.GetValueOut(); if (tx.IsCoinBase()) Reward += Out; else if (In < 0) Fees = -Params().MaxMoneyOut(); else { Fees += In - Out; OutVolume += Out; } } TxContent += "</table>"; CAmount Generated; if (pBlock->nHeight == 0) Generated = OutVolume; else Generated = GetBlockValue(pBlock->nHeight - 1); std::string BlockContentCells[] = { _("Height"), itostr(pBlock->nHeight), _("Size"), itostr(GetSerializeSize(block, SER_NETWORK, PROTOCOL_VERSION)), _("Number of Transactions"), itostr(block.vtx.size()), _("Value Out"), ValueToString(OutVolume), _("Fees"), ValueToString(Fees), _("Generated"), ValueToString(Generated), _("Timestamp"), TimeToString(block.nTime), _("Difficulty"), strprintf("%.4f", GetDifficulty(pBlock)), _("Bits"), utostr(block.nBits), _("Nonce"), utostr(block.nNonce), _("Version"), itostr(block.nVersion), _("Hash"), "<pre>" + block.GetHash().GetHex() + "</pre>", _("Merkle Root"), "<pre>" + block.hashMerkleRoot.GetHex() + "</pre>", // _("Hash Whole Block"), "<pre>" + block.hashWholeBlock.GetHex() + "</pre>" // _("Miner Signature"), "<pre>" + block.MinerSignature.ToString() + "</pre>" }; std::string BlockContent = makeHTMLTable(BlockContentCells, sizeof(BlockContentCells) / (2 * sizeof(std::string)), 2); std::string Content; Content += "<h2><a class=\"nav\" href="; Content += itostr(pBlock->nHeight - 1); Content += ">◄&nbsp;</a>"; Content += _("Block"); Content += " "; Content += itostr(pBlock->nHeight); Content += "<a class=\"nav\" href="; Content += itostr(pBlock->nHeight + 1); Content += ">&nbsp;►</a></h2>"; Content += BlockContent; Content += "</br>"; /* if (block.nHeight > getThirdHardforkBlock()) { std::vector<std::string> votes[2]; for (int i = 0; i < 2; i++) { for (unsigned int j = 0; j < block.vvotes[i].size(); j++) { votes[i].push_back(block.vvotes[i][j].hash.ToString() + ':' + itostr(block.vvotes[i][j].n)); } } Content += "<h3>" + _("Votes +") + "</h3>"; Content += makeHTMLTable(&votes[1][0], votes[1].size(), 1); Content += "</br>"; Content += "<h3>" + _("Votes -") + "</h3>"; Content += makeHTMLTable(&votes[0][0], votes[0].size(), 1); Content += "</br>"; } */ Content += "<h2>" + _("Transactions") + "</h2>"; Content += TxContent; return Content; } std::string TxToString(uint256 BlockHash, const CTransaction& tx) { CAmount Input = 0; CAmount Output = tx.GetValueOut(); std::string InputsContentCells[] = {_("#"), _("Taken from"), _("Address"), _("Amount")}; std::string InputsContent = makeHTMLTableRow(InputsContentCells, sizeof(InputsContentCells) / sizeof(std::string)); std::string OutputsContentCells[] = {_("#"), _("Redeemed in"), _("Address"), _("Amount")}; std::string OutputsContent = makeHTMLTableRow(OutputsContentCells, sizeof(OutputsContentCells) / sizeof(std::string)); if (tx.IsCoinBase()) { std::string InputsContentCells[] = { "0", "coinbase", "-", ValueToString(Output)}; InputsContent += makeHTMLTableRow(InputsContentCells, sizeof(InputsContentCells) / sizeof(std::string)); } else for (unsigned int i = 0; i < tx.vin.size(); i++) { COutPoint Out = tx.vin[i].prevout; CTxOut PrevOut = getPrevOut(tx.vin[i].prevout); if (PrevOut.nValue < 0) Input = -Params().MaxMoneyOut(); else Input += PrevOut.nValue; std::string InputsContentCells[] = { itostr(i), "<span>" + makeHRef(Out.hash.GetHex()) + ":" + itostr(Out.n) + "</span>", ScriptToString(PrevOut.scriptPubKey, true), ValueToString(PrevOut.nValue)}; InputsContent += makeHTMLTableRow(InputsContentCells, sizeof(InputsContentCells) / sizeof(std::string)); } uint256 TxHash = tx.GetHash(); for (unsigned int i = 0; i < tx.vout.size(); i++) { const CTxOut& Out = tx.vout[i]; uint256 HashNext = uint256S("0"); unsigned int nNext = 0; bool fAddrIndex = false; getNextIn(COutPoint(TxHash, i), HashNext, nNext); std::string OutputsContentCells[] = { itostr(i), (HashNext == uint256S("0")) ? (fAddrIndex ? _("no") : _("unknown")) : "<span>" + makeHRef(HashNext.GetHex()) + ":" + itostr(nNext) + "</span>", ScriptToString(Out.scriptPubKey, true), ValueToString(Out.nValue)}; OutputsContent += makeHTMLTableRow(OutputsContentCells, sizeof(OutputsContentCells) / sizeof(std::string)); } InputsContent = table + InputsContent + "</table>"; OutputsContent = table + OutputsContent + "</table>"; std::string Hash = TxHash.GetHex(); std::string Labels[] = { _("In Block"), "", _("Size"), itostr(GetSerializeSize(tx, SER_NETWORK, PROTOCOL_VERSION)), _("Input"), tx.IsCoinBase() ? "-" : ValueToString(Input), _("Output"), ValueToString(Output), _("Fees"), tx.IsCoinBase() ? "-" : ValueToString(Input - Output), _("Timestamp"), "", _("Hash"), "<pre>" + Hash + "</pre>", }; // std::map<uint256, CBlockIndex*>::iterator iter = mapBlockIndex.find(BlockHash); BlockMap::iterator iter = mapBlockIndex.find(BlockHash); if (iter != mapBlockIndex.end()) { CBlockIndex* pIndex = iter->second; Labels[0 * 2 + 1] = makeHRef(itostr(pIndex->nHeight)); Labels[5 * 2 + 1] = TimeToString(pIndex->nTime); } std::string Content; Content += "<h2>" + _("Transaction") + "&nbsp;<span>" + Hash + "</span></h2>"; Content += makeHTMLTable(Labels, sizeof(Labels) / (2 * sizeof(std::string)), 2); Content += "</br>"; Content += "<h3>" + _("Inputs") + "</h3>"; Content += InputsContent; Content += "</br>"; Content += "<h3>" + _("Outputs") + "</h3>"; Content += OutputsContent; return Content; } std::string AddressToString(const CBitcoinAddress& Address) { std::string TxLabels[] = { _("Date"), _("Hash"), _("From"), _("Amount"), _("To"), _("Amount"), _("Delta"), _("Balance")}; std::string TxContent = table + makeHTMLTableRow(TxLabels, sizeof(TxLabels) / sizeof(std::string)); std::set<COutPoint> PrevOuts; /* CScript AddressScript; AddressScript.SetDestination(Address.Get()); CAmount Sum = 0; bool fAddrIndex = false; if (!fAddrIndex) return ""; // it will take too long to find transactions by address else { std::vector<CDiskTxPos> Txs; paddressmap->GetTxs(Txs, AddressScript.GetID()); BOOST_FOREACH (const CDiskTxPos& pos, Txs) { CTransaction tx; CBlock block; uint256 bhash = block.GetHash(); GetTransaction(pos.nTxOffset, tx, bhash); std::map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(block.GetHash()); if (mi == mapBlockIndex.end()) continue; CBlockIndex* pindex = (*mi).second; if (!pindex || !chainActive.Contains(pindex)) continue; std::string Prepend = "<a href=\"" + itostr(pindex->nHeight) + "\">" + TimeToString(pindex->nTime) + "</a>"; TxContent += TxToRow(tx, AddressScript, Prepend, &Sum); } } */ TxContent += "</table>"; std::string Content; Content += "<h1>" + _("Transactions to/from") + "&nbsp;<span>" + Address.ToString() + "</span></h1>"; Content += TxContent; return Content; } BlockExplorer::BlockExplorer(QWidget* parent) : QMainWindow(parent), ui(new Ui::BlockExplorer), m_NeverShown(true), m_HistoryIndex(0) { ui->setupUi(this); connect(ui->pushSearch, SIGNAL(released()), this, SLOT(onSearch())); connect(ui->content, SIGNAL(linkActivated(const QString&)), this, SLOT(goTo(const QString&))); connect(ui->back, SIGNAL(released()), this, SLOT(back())); connect(ui->forward, SIGNAL(released()), this, SLOT(forward())); } BlockExplorer::~BlockExplorer() { delete ui; } void BlockExplorer::keyPressEvent(QKeyEvent* event) { switch ((Qt::Key)event->key()) { case Qt::Key_Enter: case Qt::Key_Return: onSearch(); return; default: return QMainWindow::keyPressEvent(event); } } void BlockExplorer::showEvent(QShowEvent*) { if (m_NeverShown) { m_NeverShown = false; CBlockIndex* pindexBest = mapBlockIndex[chainActive.Tip()->GetBlockHash()]; setBlock(pindexBest); QString text = QString("%1").arg(pindexBest->nHeight); ui->searchBox->setText(text); m_History.push_back(text); updateNavButtons(); if (!GetBoolArg("-txindex", false)) { QString Warning = tr("Not all transactions will be shown. To view all transactions you need to set txindex=1 in the configuration file (shadow.conf)."); QMessageBox::warning(this, "Shadow Blockchain Explorer", Warning, QMessageBox::Ok); } } } bool BlockExplorer::switchTo(const QString& query) { bool IsOk; int64_t AsInt = query.toInt(&IsOk); // If query is integer, get hash from height if (IsOk && AsInt >= 0 && AsInt <= chainActive.Tip()->nHeight) { std::string hex = getexplorerBlockHash(AsInt); uint256 hash = uint256S(hex); CBlockIndex* pIndex = mapBlockIndex[hash]; if (pIndex) { setBlock(pIndex); return true; } } // If the query is not an integer, assume it is a block hash uint256 hash = uint256S(query.toUtf8().constData()); // std::map<uint256, CBlockIndex*>::iterator iter = mapBlockIndex.find(hash); BlockMap::iterator iter = mapBlockIndex.find(hash); if (iter != mapBlockIndex.end()) { setBlock(iter->second); return true; } // If the query is neither an integer nor a block hash, assume a transaction hash CTransaction tx; uint256 hashBlock = 0; if (GetTransaction(hash, tx, hashBlock, true)) { setContent(TxToString(hashBlock, tx)); return true; } // If the query is not an integer, nor a block hash, nor a transaction hash, assume an address CBitcoinAddress Address; Address.SetString(query.toUtf8().constData()); if (Address.IsValid()) { std::string Content = AddressToString(Address); if (Content.empty()) return false; setContent(Content); return true; } return false; } void BlockExplorer::goTo(const QString& query) { if (switchTo(query)) { ui->searchBox->setText(query); while (m_History.size() > m_HistoryIndex + 1) m_History.pop_back(); m_History.push_back(query); m_HistoryIndex = m_History.size() - 1; updateNavButtons(); } } void BlockExplorer::onSearch() { goTo(ui->searchBox->text()); } void BlockExplorer::setBlock(CBlockIndex* pBlock) { setContent(BlockToString(pBlock)); } void BlockExplorer::setContent(const std::string& Content) { QString CSS = "body {font-size:12px; background-color: #C8E5E2; color:#444;}\n a, span { font-family: monospace; }\n span.addr {color:#13BE5D; font-weight: bold;}\n table tr td {padding: 3px; border: none; background-color: #A1CDC8;}\n td.d0 {font-weight: bold; color:#f8f8f8;}\n h2, h3 { white-space:nowrap; color:#1B7884;}\n a { text-decoration:none; }\n a.nav {color:green;}\n"; QString FullContent = "<html><head><style type=\"text/css\">" + CSS + "</style></head>" + "<body>" + Content.c_str() + "</body></html>"; // printf(FullContent.toUtf8()); ui->content->setText(FullContent); } void BlockExplorer::back() { int NewIndex = m_HistoryIndex - 1; if (0 <= NewIndex && NewIndex < m_History.size()) { m_HistoryIndex = NewIndex; ui->searchBox->setText(m_History[NewIndex]); switchTo(m_History[NewIndex]); updateNavButtons(); } } void BlockExplorer::forward() { int NewIndex = m_HistoryIndex + 1; if (0 <= NewIndex && NewIndex < m_History.size()) { m_HistoryIndex = NewIndex; ui->searchBox->setText(m_History[NewIndex]); switchTo(m_History[NewIndex]); updateNavButtons(); } } void BlockExplorer::updateNavButtons() { ui->back->setEnabled(m_HistoryIndex - 1 >= 0); ui->forward->setEnabled(m_HistoryIndex + 1 < m_History.size()); }
[ "noreply@github.com" ]
noreply@github.com
17e7e24a00b7884d22134bdbd248052cce19c844
c40667ac2710705b10ce0bf31cbb2170264bab6d
/Project1/base_socket.cpp
fadfab5c836de64a88c7ccdb0f6b15a0ae223d2d
[]
no_license
zhifengxingyue/Framework-Study
1dc68b9080dd251ba20447b91c0e56e4438b32f1
406a99a31f4fb1eb9b73f9e4145bf3aa0cd76f94
refs/heads/master
2022-04-07T21:16:29.366577
2020-01-18T15:43:37
2020-01-18T15:43:37
null
0
0
null
null
null
null
GB18030
C++
false
false
2,970
cpp
#include "base_socket.h" #include "base_log.h" socket_operator::socket_operator(){ LOGI("create default socket_operator object ~"); } socket_operator::socket_operator(int port){ this->port = port; LOGI("port : %d",this->port); init_socket(); } int socket_operator::init_socket(){ LOGD("start open socket ~"); int socketId = socket(AF_INET, SOCK_STREAM, 0); if (-1 == socketId){ LOGE("open socket failed ~"); return FAILED; } this->socketId = socketId; return SUCCESSFUL; } int socket_operator::bind_socket(){ //将socket绑定到某一个端口号 struct sockaddr_in address; //绑定 socket 地址 memset(&address, 0, sizeof(address)); address.sin_family = AF_INET; //绑定到所有地址 address.sin_addr.s_addr = htonl(INADDR_ANY); //将端口转换为网络字节顺序 address.sin_port = htonl(this->port); if (-1 == bind(this->socketId, (struct sockaddr*) &address, sizeof(address))){ LOGE("bind socket failed ~"); return FAILED; } return SUCCESSFUL; } unsigned short socket_operator::get_socket_port(){ unsigned short port = 0; struct sockaddr_in address; socklen_t addressLength = sizeof(address); //获取socket 地址 if (-1 == getsockname(this->socketId, (struct sockaddr*) &address, &addressLength)){ LOGE("get sock name failed ~"); } else{ //将端口转换为主机字节顺序 port = ntohs(address.sin_port); } return port; } void socket_operator::listen_socket(int backlog){ LOGI("Listening on socket ..."); if (-1 == listen(this->socketId, backlog)){ LOGE("listen failed ~"); } } int socket_operator::accept_socket(){ struct sockaddr_in address; socklen_t addressLength = sizeof(address); //阻塞和等待进来的客户连接 LOGI("Wait for a client connection..."); int clientSocket = accept(this->socketId, (struct sockaddr*) &address, &addressLength); //如果客户socket 无效 if (-1 == clientSocket){ LOGE(" client is invalid socket ..."); } else{ LOGD("Client connection from : %d", &address); } return clientSocket; } ssize_t socket_operator::receive_from_socket(int sd, char* buffer, size_t buffersize){ LOGI("Receiving from the socket ..."); ssize_t recvSize = recv(sd, buffer, buffersize - 1, 0); //如果接受失败 if (-1 == recvSize){ LOGE("receive from socket failed ~"); } else{ //以NULL结尾缓冲区形成一个字符串 buffer[recvSize] = NULL; //如果数据接受成功 if (recvSize > 0){ LOGI("Received %d bytes : %s",recvSize,buffer); } else{ LOGD("Client disconnected"); } } return recvSize; } ssize_t socket_operator::send_to_socket(int sd,void* buffer, size_t bufferLength){ LOGI("Sending to the socket..."); ssize_t sentSize = send(sd, buffer, bufferLength,0); if (-1 == sentSize){ LOGE("send to socket failed ~"); } else{ if (sentSize > 0){ LOGI("Sent %d bytes : %s",sentSize,buffer); } else{ LOGE("Client disconnected"); } } return sentSize; }
[ "nipuream@163.com" ]
nipuream@163.com
36f9b3be9c5c2e3f223f2caa3cc567b9d5ce2124
96c5e24c3b20f02654d0ed1340ad87486f8110d9
/Pagedgeometry/include/GrassLoader.h
f291f1920b06a442a9cea5d330e38bbf69655beb
[]
no_license
whztt07/OgreClient
2e837658814f961cf5c4e2636511c08f53f4259d
306687286c07d83bc74551eaf499bb7823b2fcd8
refs/heads/master
2020-12-07T15:42:41.514573
2014-07-01T13:18:22
2014-07-01T13:18:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
29,486
h
/*------------------------------------------------------------------------------------- Copyright (c) 2006 John Judnich This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. -------------------------------------------------------------------------------------*/ #ifndef __GrassLoader_H__ #define __GrassLoader_H__ #include "PagedGeometry.h" #include "PropertyMaps.h" #include "RandomTable.h" #include "OgrePrerequisites.h" #include "OgreMaterial.h" #include "OgrePixelFormat.h" #include "OgreStringConverter.h" namespace Forests { class GrassLayer; /** \brief A PageLoader-derived object you can use with PagedGeometry to produce realistic grass. Using a GrassLoader is simple - simply create an instance, attach it to your PagedGeometry object with PagedGeometry::setPageLoader(), and add your grass. Important: For best performance, it is recommended that you use GrassPage (included in GrassLoader.h) to display geometry loaded by GrassLoader. This page type is designed for best performance with this grass system. BatchPage will work, although performance will be reduced slightly, and ImpostorPage will run extremely slow. To add grass, just call addLayer(). addLayer() returns a GrassLayer object pointer, which you should use to further configure your newly added grass. Properties like size, density, color, animation, etc. can be controlled through the GrassLayer class. \note By default, the GrassLoader doesn't know what shape your terrain so all grass will be placed at 0 height. To inform GrassLoader of the shape of your terrain, you must specify a height function that returns the height (y coordinate) of your terrain at the given x and z coordinates. See the TreeLoader2D::setHeightFunction() documentation for more information. \warning If you attempt to use Ogre's scene queries to get the terrain height, keep in mind that calculating the height of Ogre's built-in terrain this way can be VERY slow if not done properly, and may cause stuttering due to long paging delays. */ class GrassLoader: public PageLoader { public: /** \brief Creates a new GrassLoader object. \param geom The PagedGeometry object that this GrassLoader will be assigned to.*/ GrassLoader(PagedGeometry *geom); ~GrassLoader(); /** \brief Adds a grass layer to the scene. \param material The initial grass texture to use (this can be changed later). Since all grass is potentially infinite, it is not added like normal entities which have a specific position. Instead you add a grass "layer" to the scene. A grass layer is a "carpet" of a single type of grass that gets applied everywhere in your world. If you want multiple types of grass with different appearances, you'll have to add a multiple grass layers for each style. Of course, a grass layer is not completely uniform. The GrassLayer class contains functions to vary grass size and density levels as desired. \see GrassLayer class for more information. */ GrassLayer *addLayer(const Ogre::String &material); /** \brief Removes and deletes a grass layer from the scene This function simply deletes a GrassLayer previously created with addLayer(). */ void deleteLayer(GrassLayer *layer); /** \brief Returns a list of added grass layers. This function returns a std::list<GrassLayer*> reference, which contains all grass layers which have been added to this GrassLoader. */ inline std::list<GrassLayer*> &getLayerList() { return layerList; } /** \brief Sets the global wind direction for this GrassLoader. GrassLayer animation properties are used to configure the most of the animation behavior (sway length, speed, etc.), but wind direction is not included in GrassLayer since this is really a global property. Using this function, you can set the "global" wind direction which affects all animated grass associated with this PageLoader. Default value is Vector3::UNIT_X. \note This only affects grass layers which have breeze animations enabled. */ inline void setWindDirection(Ogre::Vector3 &dir) { windDir = dir; } inline void setBuildEdgesEnabled(bool value) { autoEdgeBuildEnabled=value; } inline bool getBuildEdgesEnabled() { return autoEdgeBuildEnabled; } /** \brief Returns the global wind direction for this GrassLoader. \see setWindDirection() for more information about the wind direction. */ inline Ogre::Vector3 &getWindDirection() { return windDir; } /** \brief Returns the global wind direction for this GrassLoader. */ unsigned int getVisibilityFlags() { return mVisibilityFlags; } /** \brief Sets the global density factor for this GrassLoader. This function can be used to up-scale or down-scale the density of all grass associated with this GrassLoader. This is typically used to provide the user the option to reduce grass density for better performance on slower machines. Final density values are calculated by multiplying the layer density by this density factor. For example, a layer with .4 density and a density factor of .5 will result in a final density of .2 (.5 * .4) By default, the density factor is set to 1.0 so the layer density is not modified. */ inline void setDensityFactor(float density) { densityFactor = density; } /** \brief Returns the global density factor for this GrassLoader. \see setDensityFactor() for more information about the density factor. */ inline float getDensityFactor() { return densityFactor; } /** \brief Sets the render queue group the grass will be rendered through \param queueID Enumerated value of the queue group to use Like Ogre's MovableObject::setRenderQueueGroup(), this allows you to customize the rendering order of your scene. Since grass is transparent, it's likely that you may encounter alpha-sorting issues between grass and your particle effects, for example. In this case you can use this function to adjust the rendering order of the grass to fix the problem. If you don't call this function, the RENDER_QUEUE_6 queue will be used. \note Once grass is loaded and being rendered, this won't have any effect on it. Be sure to call this function before the scene begins rendering, otherwise you will have to call PagedGeometry::reloadGeometry() to force a reload in order for the changes to take effect. */ inline void setRenderQueueGroup(Ogre::uint8 queueID) { renderQueue = queueID; } inline Ogre::uint8 getRenderQueueGroup() { return renderQueue; } /** \brief Sets the height function used to calculate grass Y coordinates \param heightFunction A pointer to a height function Unless you want all your grass placed at 0 height, you need to specify a height function so GrassLoader will be able to calculate the Y coordinate. The height function given to setHeightFunction() should use the following prototype (although you can name the function anything you want): \code Real getHeightAt(Real x, Real z, void *userData); \endcode \note If you're not using the default coordinate system (where x = right, z = back), the x/z parameters will actually be representing the appropriate equivalents. The userData parameter allows you to include any additional data you want when your height function is called, and is completely optional (although you can't actually omit it from the declaration, you can ignore it). Any userData value you choose to supply to setHeightFunction() will be passed on to your height function every time it is called. After you've defined a height function, using setHeightFunction is easy: \code pageLoader2D->setHeightFunction(&getHeightAt); //Or (if you want to pass additional data on to your height function)... pageLoader2D->setHeightFunction(&getHeightAt, myUserData); \endcode In most cases, you may not even need to use the extra "userData" parameter, but it's there in the event that your height function needs extra contextual data. */ void setHeightFunction(Ogre::Real (*heightFunction)(Ogre::Real x, Ogre::Real z, void *userData), void *userData = NULL) { this->heightFunction = heightFunction; heightFunctionUserData = userData; } /** INTERNAL FUNCTION - DO NOT USE */ void loadPage(PageInfo &page); /** INTERNAL FUNCTION - DO NOT USE */ void unloadPage(PageInfo &page); /** INTERNAL FUNCTION - DO NOT USE */ void frameUpdate(); static float getRangeRandom(float start, float end); void setVisibilityFlags(unsigned int flags) { mVisibilityFlags = flags; } private: friend class GrassLayer; //Helper functions Ogre::Mesh *generateGrass_QUAD(PageInfo &page, GrassLayer *layer, float *grassPositions, unsigned int grassCount); Ogre::Mesh *generateGrass_CROSSQUADS(PageInfo &page, GrassLayer *layer, float *grassPositions, unsigned int grassCount); Ogre::Mesh *generateGrass_SPRITE(PageInfo &page, GrassLayer *layer, float *grassPositions, unsigned int grassCount); //List of grass types std::list<GrassLayer*> layerList; unsigned int mVisibilityFlags; //Height data Ogre::Real (*heightFunction)(Ogre::Real x, Ogre::Real z, void *userData); //Pointer to height function void *heightFunctionUserData; //Misc. PagedGeometry *geom; Ogre::uint8 renderQueue; float densityFactor; // random table RandomTable *rTable; //Animation Ogre::Timer windTimer; Ogre::Vector3 windDir; unsigned long lastTime; bool autoEdgeBuildEnabled; static unsigned long GUID; static inline Ogre::String getUniqueID() { return "GrassLDR" + Ogre::StringConverter::toString(++GUID); } }; /** \brief A technique used to render grass. Passed to GrassLayer::setRenderTechnique(). */ enum GrassTechnique { /// Grass constructed of randomly placed and rotated quads GRASSTECH_QUAD, /// Grass constructed of two quads forming a "X" cross shape GRASSTECH_CROSSQUADS, /// Grass constructed of camera-facing billboard quads GRASSTECH_SPRITE }; /** \brief A technique used to fade grass into the distance. Passed to GrassLayer::setFadeTechnique(). */ enum FadeTechnique { /// Grass that fades into the distance with transparency. Fairly effective in most cases. FADETECH_ALPHA, /// Grass that fades in by "growing" up out of the ground. Very effective when grass fades in against the sky, or with alpha-rejected grass. FADETECH_GROW, /// Grass that fades in by slowly becoming opaque while it "grows" up out of the ground. Effective with alpha grass fading in against the sky. FADETECH_ALPHAGROW }; /** \brief A data structure giving you full control over grass properties. Grass is added to the scene through GrassLoader::addLayer(). Through this class you can configure your grass layer any way you like - size, density, render technique, animation, etc. Simply call the appropriate "set" member function to set the desired property. Remember that you cannot create or delete layers directly. Layers can only be created with GrassLoader::addLayer(), and may not be deleted manually (they will be deleted when the associated GrassLoader is deleted). */ class GrassLayer { public: /** \brief Sets the enable flag for this layer */ void setEnabled(bool value){ enabled = value; }; /** \brief Gets the enable flag for this layer */ bool getEnabled(){ return enabled; }; /** \brief Sets the ID of the grassLayer */ void setId(int value){ id = value; }; /** \brief Gets the ID of the grassLayer */ int getId(){ return id; }; /** \brief Sets the material that is applied to all grass billboards/quads */ void setMaterialName(const Ogre::String &matName); /** \brief Sets the minimum size that grass quads/billboards will be */ void setMinimumSize(float width, float height); /** \brief Sets the maximum size that grass quads/billboards will be */ void setMaximumSize(float width, float height); /** \brief Sets the maximum density (measured in grass quads/billboards per square unit) of grass */ void setDensity(float density) { this->density = density; } /** \brief Sets a minimum / maximum height where grass may appear \param minHeight Sets the minimum height grass may have. 0 = no minimum \param maxHeight Sets the maximum height grass may have. 0 = no maximum By default grass appears at all altitudes. You can use this function to restrict grass to a certain height range. For example, if sea level is at 100 units Y, you might restrict this layer to display only above 100 units (so your grass doesn't grow under water). It's possible to use density maps (see setDensityMap()) to achieve similar results, but if your density map is extremely low resolution, this function may be the only practical option to prevent grass from growing under water (when used in combination with your density map). Setting minHeight to 0 means grass has no minimum height - it can grow as low as necessary. Similarly, setting maxHeight to 0 means grass has no maximum height - it can grow as high as necessary. */ void setHeightRange(float minHeight, float maxHeight = 0) { minY = minHeight; maxY = maxHeight; } /** \brief Set the maximum slope a grass of blade can be placed on. \param maxSlopeRatio The maximum slope (h/w ratio) a grass blade is allowed to be placed on. This function can be used to set the maximum slope you want your grass to be placed on (although it doesn't work for sprite grass). By default grass is allowed on any slope. This version of setMaxSlope() accepts a slope ratio value, where ATan(maxSlopeRatio) = maxSlopeAngle. If you wish to provide a maximum slope as an angle, either use the other overload of this function, or convert your angle to a slope ratio first with Tan().*/ void setMaxSlope(const float maxSlopeRatio) { maxSlope = maxSlopeRatio; } void setMaxSlope(Ogre::Radian maxSlopeAngle) { if (maxSlopeAngle > Ogre::Degree(89.99f)) maxSlopeAngle = Ogre::Degree(89.99f); if (maxSlopeAngle < Ogre::Degree(0)) maxSlopeAngle = Ogre::Degree(0); maxSlope = Ogre::Math::Tan(maxSlopeAngle); } /** \brief Get the maximum slope a grass blade can be placed on (as set by setMaxSlope()). \returns The currently set maximum slope ratio value (not an angle). This returns the currently set maximum slope which is used to determine what ground is too steep for grass to be placed on. Note that this returns the slope as a slope ratio, not an angle. If you need an angle value, convert with ATan() (maxSlopeAngle = ATan(maxSlopeRatio)).*/ float getMaxSlope() const { return maxSlope; } /** \brief Gets the channel for the density map */ MapChannel getDensityMapChannel(){ return densityMapChannel; }; /** \brief Gives back the value of blending. T/F */ bool getBlendValue(){ return blend;}; /** \brief Gives back if lighting is enabled for grass. T/F */ bool getLightingEnabled(){ return lighting; } /** \brief Gets the map bounds */ TBounds getMapBounds(){ return mapBounds; } /** \brief Gets the parent grassLoader of this layer */ GrassLoader* getParentGrassLoader() { return parent; } /** \brief Sets the density map used for this grass layer \param mapFile The density map image \param channel The color channel(s) to from the image to interpret as density A density map is simply a greyscale image, similar to a heightmap, that specifies the grass density on your map. Full pixel intensity indicates that grass should be fully dense at that point (the maximum density is specified by GrassLayer::setDensity()), while no pixel intensity indicates that no grass should appear at that location. The channel parameter allows you to extract the density information from the image's red, green, blue, alpha, or color values. For example, you may store density values in the alpha channel, in which case you would use CHANNEL_ALPHA. By default, CHANNEL_COLOR is used, which means the image color is converted to greyscale internally and used as a density map. Note that GrassLayer by default has no idea of your terrain/world boundaries, so you must specify a rectangular/square area of your world that is affected by density/color maps. To do this, use the setMapBounds() function. Normally this is set to your terrain's bounds so the density/color map is aligned to your heightmap, but you could apply it anywhere you want. */ void setDensityMap(const Ogre::String &mapFile, MapChannel channel = CHANNEL_COLOR); /** \brief Sets the density map used for this grass layer Overloaded to accept a Texture object. See the original setDensityMap() documentation above for more detailed information on density maps. \note The texture data you provide is copied into the GrassLayer's own memory space, so you can delete the texture after calling this function without risk of crashing. */ void setDensityMap(Ogre::TexturePtr map, MapChannel channel = CHANNEL_COLOR); /** \brief Sets the filtering mode used for density maps This function can be used to set the filtering mode used for your density map when generating grass. By default, bilinear filtering is used (MAPFILTER_BILINEAR). If you disable filtering by using MAPFILTER_NONE, the resulting layout of your grass may look square and blocky, depending on the resolution of your density map. MAPFILTER_NONE is slightly faster than MAPFILTER_BILINEAR, so use it if you don't notice any considerable blockiness. */ void setDensityMapFilter(MapFilter filter); /** \brief Sets the color map used for this grass layer \param mapFile The color map image \param channel The color channel(s) to from the image to use A color map is simply a texture that allows you to vary the color and shading of grass across your world for a more realistic look. For example, adding a dark spot to the center of your color map will make grass near the center of your terrain look darker, as long as you have the color map aligned to your terrain (see setMapBounds()). The channel parameter allows you to extract the color information from the image's red, green, blue, alpha, or color values. For example, you may store the desired shade of your grass in the red channel of an image, in which case you would use CHANNEL_RED (when you choose a single channel, it is converted to a greyscale color). By default, CHANNEL_COLOR is used, which uses the full color information available in the image. Remember that GrassLayer by default has no idea of your terrain/world boundaries, so you must specify a rectangular/square area of your world that is affected by density/color maps. To do this, use the setMapBounds() function. Normally this is set to your terrain's bounds so the density/color map is aligned to your heightmap, but you could apply it anywhere you want. */ void setColorMap(const Ogre::String &mapFile, MapChannel channel = CHANNEL_COLOR); /** \brief Sets the color map used for this grass layer Overloaded to accept a Texture object. See the original setColorMap() documentation above for more detailed information on color maps. \note The texture data you provide is copied into RAM, so you can delete the texture after calling this function without risk of crashing. */ void setColorMap(Ogre::TexturePtr map, MapChannel channel = CHANNEL_COLOR); /** \brief Sets the filtering mode used for color maps This function can be used to set the filtering mode used for your color map when generating grass. By default, bilinear filtering is used (MAPFILTER_BILINEAR). If you disable filtering by using MAPFILTER_NONE, the resulting grass coloration may appear slightly pixelated, depending on the resolution of your color map. MAPFILTER_NONE is slightly faster than MAPFILTER_BILINEAR, so use it if you don't notice any considerable pixelation. */ void setColorMapFilter(MapFilter filter); /** \brief Sets the boundaries of the density/color maps \param bounds The map boundary By default, the GrassLayer has no knowledge of your terrain/world boundaries, so you must use this function to specify a rectangular/square area of your world, otherwise density/color maps won't work properly. The boundary given to this function defines the area where density/color maps take effect. Normally this is set to your terrain's bounds so the density/color map is aligned to your heightmap, but you could apply it anywhere you want. \note The grass system is infinite, so there's no need to worry about using too expansive boundaries. This setting simply configures the behavior of density and color maps. */ void setMapBounds(const TBounds &bounds) { mapBounds = bounds; } /** \brief Gets a pointer to the density map being used You can use this function to access the internal density map object used by the GrassLoader. Through this object you can directly manipulate the pixels of the density map, among other things. Note that although you can edit the density map in real-time through this class, the changes won't be uploaded to your video card until you call PagedGeometry::reloadGeometry(). If you don't, the grass you see will remain unchanged. */ DensityMap *getDensityMap() { return densityMap; } /** \brief Gets a pointer to the color map being used You can use this function to access the internal color map object used by the GrassLoader. Through this object you can directly manipulate the pixels of the color map, among other things. Note that although you can edit the color map in real-time through this class, the changes won't be uploaded to your video card until you call PagedGeometry::reloadGeometry(). If you don't, the grass you see will remain unchanged. */ ColorMap *getColorMap() { return colorMap; } /** \brief Sets the technique used to render this grass layer \param style The GrassTechnique style used to display grass. \param blendBase Whether or not grass base blending is enabled. The "style" setting allows you to choose from various construction methods, such as sprite-style grass quads, plain 3D quads, etc. See the GrassTechnique documentation for more information about this option. GRASSTECH_QUAD is used by default. Setting "blendBase" to true will enable grass base blending, a technique which helps reduce the unnatural flat appearance of grass quads near the camera. Since the flatness is most obvious where the grass intersects the terrain, this technique attempts to smoothly blend the base of near-by grass into the terrain. \note Base blending does not work well with alpha-rejected textures. */ void setRenderTechnique(GrassTechnique style, bool blendBase = false); /** \brief Sets the technique used when fading out distant grass \param style The FadeTechnique style used to fade grass. This "style" setting allows you to choose from various fade techniques. Depending on your scene, certain techniques may look better than others. The most compatible method is FADETECH_ALPHA (used by default), although better results can usually be achieved with other methods. See the FadeTechnique documentation for more information. */ void setFadeTechnique(FadeTechnique style); /** \brief Enables/disables animation on this layer Always use this function to disable animation, rather than setting SwayLength or SwaySpeed to 0. This function will use a different vertex shader which means improved performance when animation is disabled. */ void setAnimationEnabled(bool enabled); /** \brief Enables/disables lighting on this layer */ void setLightingEnabled(bool enabled); /** \brief Sets how far grass should sway back and forth \note Since this is measured in world units, you may have to adjust this depending on the size of your grass as set by setMinimumSize() and setMaximumSize().*/ void setSwayLength(float mag) { animMag = mag; } /** \brief Sets the sway speed of the grass (measured in "sways-per-second") */ void setSwaySpeed(float speed) { animSpeed = speed; } /** \brief Sets the smooth distribution (positional phase shift) of the grass swaying animation If you set this to 0, grass animation will look very unnatural, since all the grass sway motions will be in perfect synchronization (everything sways to the right, then everything sways to the left, etc.) This sets the "positional phase shift", which gives the grass a "wave" like phase distribution. The higher this value is, the more "chaotic" the wind will appear. Lower values give a smoother breeze appearance, but values too high can look unrealistic. */ void setSwayDistribution(float freq) { animFreq = freq; } private: friend class GrassLoader; /** \brief Do not create a GrassLayer directly - use GrassLoader->addLayer() */ GrassLayer(PagedGeometry *geom, GrassLoader *ldr); /** \brief Do not delete a GrassLayer yourself - the GrassLoader will do this automatically when it's deleted */ ~GrassLayer(); //Updates the vertex shader used by this layer based on the animate enable status void _updateShaders(); //Used by GrassLoader::loadPage() - populates an array with a uniform distribution of grass //Returns the final number of grasses, which will always be <= grassCount unsigned int _populateGrassList_Uniform(PageInfo page, float *posBuff, unsigned int grassCount); //Used by GrassLoader::loadPage() - populates an array of grass positions based on the density map //Returns the final number of grasses, which will always be <= grassCount unsigned int _populateGrassList_UnfilteredDM(PageInfo page, float *posBuff, unsigned int grassCount); //Variation of _populateGrassList(), using bilinear filtering on the density map lookups //Returns the final number of grasses, which will always be <= grassCount unsigned int _populateGrassList_BilinearDM(PageInfo page, float *posBuff, unsigned int grassCount); GrassLoader *parent; bool enabled; // the layer is updated only if it is enabled int id; // it is just a tag, it's not checked if a grassLayer is existing with this ID //Grass material/shape properties Ogre::MaterialPtr material; float density; MapChannel densityMapChannel; // this one is not irreplaceble float minWidth, maxWidth; float minHeight, maxHeight; float minY, maxY; float maxSlope; FadeTechnique fadeTechnique; GrassTechnique renderTechnique; //Property maps TBounds mapBounds; DensityMap *densityMap; MapFilter densityMapFilter; ColorMap *colorMap; MapFilter colorMapFilter; //Grass shader properties bool animate, blend, lighting, shaderNeedsUpdate; float animMag, animSpeed, animFreq; //Current frame of animation for this layer float waveCount; PagedGeometry *geom; }; /** \brief A custom page type designed specifically for use with GrassLoader. You can use this in your own project if you want, but remember that no optimizations are performed. The given entity is simply cloned and attached to a new scene node as quickly and simply as possible (this means there's no batching overhead as in BatchPage, but it also means potentially poor performance if you don't know what you're doing). */ class GrassPage: public GeometryPage { public: void init(PagedGeometry *geom, const Ogre::Any &data); ~GrassPage(); void addEntity(Ogre::Entity *ent, const Ogre::Vector3 &position, const Ogre::Quaternion &rotation, const Ogre::Vector3 &scale, const Ogre::ColourValue &color); void removeEntities(); void setFade(bool enabled, Ogre::Real visibleDist, Ogre::Real invisibleDist) {} void setVisible(bool visible); private: Ogre::SceneManager *sceneMgr; Ogre::SceneNode *rootNode; std::list<Ogre::SceneNode*> nodeList; static unsigned long GUID; static inline Ogre::String getUniqueID() { return "GrassPage" + Ogre::StringConverter::toString(++GUID); } }; } #endif
[ "ylmbtm@163.com" ]
ylmbtm@163.com
734e8f4b9a8027e7cd8ffdddad4e9a37b9b483c8
911c3f12cb1e48929ccbc10313452df043ff30fb
/mpmc__project/mpmc__project.ino
1610e94e9f32f3b42abb3a77075cf2d6107c6b50
[]
no_license
karthiks1701/mpmc_project1
f03104e34126ea9a0b599e00ad90ad61d1001ad7
07ff5fd6de88b7f1e4ea796c56d0f1cc7842447e
refs/heads/master
2020-05-19T21:23:22.613779
2019-05-10T16:56:07
2019-05-10T16:56:07
185,222,807
0
0
null
null
null
null
UTF-8
C++
false
false
2,028
ino
#include<avr/io.h> #include<util/delay.h> char ch; void usart_init(void) { UCSR0C=(1<<UCSZ01)|(1<<UCSZ00); UCSR0B=(1<<RXEN0)|(1<<TXEN0); UBRR0L=0x67; UCSR0A=0x00; } void usart_send(char a) { while(UCSR0A!=(UCSR0A|1<<UDRE0)); UDR0=a; } char usart_receive() { while(UCSR0A!=(UCSR0A|1<<RXC0)); ch=UDR0; return ch; } void armmov(int up) { if(!up) { OCR0B = 22; _delay_ms(500); } else if(up) { OCR0B = 10; _delay_ms(500); } } void basemov(int left) { if(left) { OCR2B = 30; _delay_ms(500); } else if(left==0) { OCR2B = 8; _delay_ms(500); } } void gripmov(int pick) { if(pick) { OCR0A = 26; _delay_ms(500); } else if(pick==0) { OCR0A = 14; _delay_ms(500); } } void timer02() { DDRD |= (1 << 5) | (1 << 6) | (1 << 3); //Initila duty cycle 0 OCR0A = 20; //gripper initially released OCR0B = 16; //arm initially postion TCCR0A |= (1 << COM0A1) | (1 << COM0B1); //Non-inverting mode //Fast PWM TCCR0A |= (1 << WGM00) | (1 << WGM01); TCCR0B |= (1 << CS02) | (1 << CS00); //Start the Timer with 1024 prescaler OCR2B = 19; // base initially facing the center TCCR2A |= (1 << COM2B1); //Non-inverting mode //Fast PWM TCCR2A |= (1 << WGM20) | (1 << WGM21); TCCR2B |= (1 << CS22) | (1 << CS21) | (1 << CS20); // 1024 prescaler for timer 2 } int main() { char data; int left,up,pick; usart_init(); timer02(); usart_send('a'); while(1) { data = usart_receive(); usart_send(data); if (data == '2') { basemov(1); } else if (data == '3') { basemov(0); } if (data == '1') { armmov(1); } else if (data == '0') { armmov(0); } } _delay_ms(500); //armmov(0); //basemov(0); //gripmov(1); return 0; }
[ "karthiks1701@gmail.com" ]
karthiks1701@gmail.com
cf811aecb10d4c595b07147c367c7d3c51f90abf
85adc80b8294d33e2bde1cfc669d9091e56b598e
/DFS/stack/DFS_with_stack.cpp
c99da91578a89289352ad963e4ec40f38ddc8258
[]
no_license
lia2353/Algorithms
6e7e4e691bc4b3e8d155425e2ca658db6b9e84db
249e567d97f7317a1e03ece1cace81eb025ad052
refs/heads/main
2023-02-15T12:04:34.940548
2021-01-12T16:22:01
2021-01-12T16:22:01
308,596,095
0
0
null
null
null
null
UTF-8
C++
false
false
1,604
cpp
#include <iostream> #include <vector> #include <stack> using namespace std; /** * Add the edge (u,v) in undirected graph. * * @param adj graph * @param u vertex at the end of the edge to be added * @param v vertex at the end of the edge to be added * */ void addEdge(vector<int> adj[], int u, int v) { adj[u].push_back(v); adj[v].push_back(u); } /** * depth first search algorithm implemented with stack * * @param adj adjacency list of graph * @param start vertex from where DFS starts traversing * */ void itarativeDFS(vector<int> adj[], int start) { vector<bool> visited(adj->size(), false); //creates vector with size = number of vertices stack<int> stack; stack.push(start); visited[start] = true; int curVertex, adjVertex; while (!stack.empty()) { curVertex = stack.top(); stack.pop(); cout << curVertex << " "; for (int i=adj[curVertex].size()-1; i>=0; --i) { adjVertex = adj[curVertex][i]; if(!visited[adjVertex]) { stack.push(adjVertex); visited[adjVertex] = true; } } } } int main() { int V = 12; vector<int> adj[V]; addEdge(adj, 0, 1); addEdge(adj, 0, 2); addEdge(adj, 0, 3); addEdge(adj, 2, 4); addEdge(adj, 3, 5); addEdge(adj, 3, 6); addEdge(adj, 5, 7); addEdge(adj, 5, 8); addEdge(adj, 5, 9); addEdge(adj, 6, 9); addEdge(adj, 6, 10); addEdge(adj, 8, 10); itarativeDFS(adj, 0); return 0; }
[ "noreply@github.com" ]
noreply@github.com
6e6f3e8ecb692ad5728880635b086b5c9c02ef63
2b41590bc020431d3af4f2a8b67d30a8e1a58162
/sdmy/sadan_done_dots/sadan_done_dots/moc/moc_qmlapplicationviewer.cpp
d512d198cc4b1364288be4ff81d374780e019a7e
[]
no_license
sandeepraju/smartdots2
0a129b250103532f961f0ebe3e40e4e0dbbbf636
c1e86a6659be26a934bcc7ced489c6a593082b5b
refs/heads/master
2021-05-06T01:07:58.868562
2017-12-15T17:39:19
2017-12-15T17:39:19
114,395,741
0
0
null
null
null
null
UTF-8
C++
false
false
2,254
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'qmlapplicationviewer.h' ** ** Created: Fri Nov 11 16:16:12 2011 ** by: The Qt Meta Object Compiler version 62 (Qt 4.7.3) ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ #include "../qmlapplicationviewer/qmlapplicationviewer.h" #if !defined(Q_MOC_OUTPUT_REVISION) #error "The header file 'qmlapplicationviewer.h' doesn't include <QObject>." #elif Q_MOC_OUTPUT_REVISION != 62 #error "This file was generated using the moc from 4.7.3. It" #error "cannot be used with the include files from this version of Qt." #error "(The moc has changed too much.)" #endif QT_BEGIN_MOC_NAMESPACE static const uint qt_meta_data_QmlApplicationViewer[] = { // content: 5, // revision 0, // classname 0, 0, // classinfo 0, 0, // methods 0, 0, // properties 0, 0, // enums/sets 0, 0, // constructors 0, // flags 0, // signalCount 0 // eod }; static const char qt_meta_stringdata_QmlApplicationViewer[] = { "QmlApplicationViewer\0" }; const QMetaObject QmlApplicationViewer::staticMetaObject = { { &QDeclarativeView::staticMetaObject, qt_meta_stringdata_QmlApplicationViewer, qt_meta_data_QmlApplicationViewer, 0 } }; #ifdef Q_NO_DATA_RELOCATION const QMetaObject &QmlApplicationViewer::getStaticMetaObject() { return staticMetaObject; } #endif //Q_NO_DATA_RELOCATION const QMetaObject *QmlApplicationViewer::metaObject() const { return QObject::d_ptr->metaObject ? QObject::d_ptr->metaObject : &staticMetaObject; } void *QmlApplicationViewer::qt_metacast(const char *_clname) { if (!_clname) return 0; if (!strcmp(_clname, qt_meta_stringdata_QmlApplicationViewer)) return static_cast<void*>(const_cast< QmlApplicationViewer*>(this)); return QDeclarativeView::qt_metacast(_clname); } int QmlApplicationViewer::qt_metacall(QMetaObject::Call _c, int _id, void **_a) { _id = QDeclarativeView::qt_metacall(_c, _id, _a); if (_id < 0) return _id; return _id; } QT_END_MOC_NAMESPACE
[ "me@sandeepraju.in" ]
me@sandeepraju.in
9237c0bb948b950778d33cc115cb223e4f98a768
c78c926155760aa63d24ad26b3356f6d19398f69
/NEUQOJ/蓝桥杯练习/第7次作业/舞伴的考验宁神.cpp
7bbbe9c5f717d2c0d75f4ab48883a17d8518ffff
[]
no_license
fhyPayaso/ACM
34c26aff0697ef0e7956cd03e30f13739a286466
0c7f4bf298e9a164f8a5ae140f30f441ccc226dc
refs/heads/master
2021-08-30T05:04:53.518780
2017-12-16T03:39:10
2017-12-16T03:39:10
114,429,801
1
1
null
null
null
null
UTF-8
C++
false
false
250
cpp
#include<iostream> using namespace std; int main() { int mod=1000000; int n,i,sum=1; cin>>n; for(i=1;i<=n;i++) { sum*=i; while(sum%10==0) sum/=10; if(sum>mod) sum%=mod; } while(sum%10==0) sum/=10; cout<<sum%10<<endl; return 0; }
[ "410619823@qq.com" ]
410619823@qq.com
6416b567d3a3268a867e4d530f348e8bf4f458bf
d829d426e100e5f204bab15661db4e1da15515f9
/tst/EnergyPlus/unit/Plant/Subcomponent.unit.cc
d7e8cc701ac9f6bf819b4f8b2d8af8c37d1df088
[ "BSD-2-Clause" ]
permissive
VB6Hobbyst7/EnergyPlus2
a49409343e6c19a469b93c8289545274a9855888
622089b57515a7b8fbb20c8e9109267a4bb37eb3
refs/heads/main
2023-06-08T06:47:31.276257
2021-06-29T04:40:23
2021-06-29T04:40:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,789
cc
// EnergyPlus, Copyright (c) 1996-2020, The Board of Trustees of the University of Illinois, // The Regents of the University of California, through Lawrence Berkeley National Laboratory // (subject to receipt of any required approvals from the U.S. Dept. of Energy), Oak Ridge // National Laboratory, managed by UT-Battelle, Alliance for Sustainable Energy, LLC, and other // contributors. All rights reserved. // // NOTICE: This Software was developed under funding from the U.S. Department of Energy and the // U.S. Government consequently retains certain rights. As such, the U.S. Government has been // granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable, // worldwide license in the Software to reproduce, distribute copies to the public, prepare // derivative works, and perform publicly and display publicly, and to permit others to do so. // // Redistribution and use in source and binary forms, with or without modification, are permitted // provided that the following conditions are met: // // (1) Redistributions of source code must retain the above copyright notice, this list of // conditions and the following disclaimer. // // (2) 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. // // (3) Neither the name of the University of California, Lawrence Berkeley National Laboratory, // the University of Illinois, U.S. Dept. of Energy nor the names of its contributors may be // used to endorse or promote products derived from this software without specific prior // written permission. // // (4) Use of EnergyPlus(TM) Name. If Licensee (i) distributes the software in stand-alone form // without changes from the version obtained under this License, or (ii) Licensee makes a // reference solely to the software portion of its product, Licensee must refer to the // software as "EnergyPlus version X" software, where "X" is the version number Licensee // obtained under this License and may not use a different name for the software. Except as // specifically required in this Section (4), Licensee shall not use in a company name, a // product name, in advertising, publicity, or other promotional activities any name, trade // name, trademark, logo, or other designation of "EnergyPlus", "E+", "e+" or confusingly // similar designation, without the U.S. Department of Energy's prior written consent. // // 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 OWNER 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. // EnergyPlus::Boilers Unit Tests // Google Test Headers #include <gtest/gtest.h> // EnergyPlus Headers #include <EnergyPlus/Plant/Subcomponents.hh> #include "../Fixtures/EnergyPlusFixture.hh" using namespace EnergyPlus; TEST_F(EnergyPlusFixture, Plant_Topology_Subcomponent) { EnergyPlus::DataPlant::SubcomponentData sc; EnergyPlus::DataPlant::SubSubcomponentData ssc; // Could test default constructor I guess... }
[ "ffeng@tamu.edu" ]
ffeng@tamu.edu
26d00d26c4ecd4e2d768e1a4a9a6f12fde67ac84
7ded1bdc37fe2426c8fb272279c53e26654684f8
/build-openCVtest-Desktop_Qt_5_5_0_GCC_64bit-Debug/moc_morphology.cpp
43dee6648a51862717be2ea40c0ae243f1446352
[]
no_license
manromao/openCV-demo
938ec5d5821902d4676945a1a605d127b52e7edb
e5f0eb0e31cfd7857ab27df5e5f390faca4ef933
refs/heads/master
2021-01-21T13:08:08.028510
2015-10-13T19:58:17
2015-10-13T19:58:17
41,546,779
0
0
null
null
null
null
UTF-8
C++
false
false
2,640
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'morphology.h' ** ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.5.0) ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ #include "../openCV-demo/operations/morphology.h" #include <QtCore/qbytearray.h> #include <QtCore/qmetatype.h> #if !defined(Q_MOC_OUTPUT_REVISION) #error "The header file 'morphology.h' doesn't include <QObject>." #elif Q_MOC_OUTPUT_REVISION != 67 #error "This file was generated using the moc from 5.5.0. It" #error "cannot be used with the include files from this version of Qt." #error "(The moc has changed too much.)" #endif QT_BEGIN_MOC_NAMESPACE struct qt_meta_stringdata_Morphology_t { QByteArrayData data[1]; char stringdata0[11]; }; #define QT_MOC_LITERAL(idx, ofs, len) \ Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ qptrdiff(offsetof(qt_meta_stringdata_Morphology_t, stringdata0) + ofs \ - idx * sizeof(QByteArrayData)) \ ) static const qt_meta_stringdata_Morphology_t qt_meta_stringdata_Morphology = { { QT_MOC_LITERAL(0, 0, 10) // "Morphology" }, "Morphology" }; #undef QT_MOC_LITERAL static const uint qt_meta_data_Morphology[] = { // content: 7, // revision 0, // classname 0, 0, // classinfo 0, 0, // methods 0, 0, // properties 0, 0, // enums/sets 0, 0, // constructors 0, // flags 0, // signalCount 0 // eod }; void Morphology::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) { Q_UNUSED(_o); Q_UNUSED(_id); Q_UNUSED(_c); Q_UNUSED(_a); } const QMetaObject Morphology::staticMetaObject = { { &Function::staticMetaObject, qt_meta_stringdata_Morphology.data, qt_meta_data_Morphology, qt_static_metacall, Q_NULLPTR, Q_NULLPTR} }; const QMetaObject *Morphology::metaObject() const { return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; } void *Morphology::qt_metacast(const char *_clname) { if (!_clname) return Q_NULLPTR; if (!strcmp(_clname, qt_meta_stringdata_Morphology.stringdata0)) return static_cast<void*>(const_cast< Morphology*>(this)); return Function::qt_metacast(_clname); } int Morphology::qt_metacall(QMetaObject::Call _c, int _id, void **_a) { _id = Function::qt_metacall(_c, _id, _a); if (_id < 0) return _id; return _id; } QT_END_MOC_NAMESPACE
[ "sanromajan@gmail.com" ]
sanromajan@gmail.com
8a44343dcd13ca84af40f64155b3c10fc9533a74
98760f5869b7da892ff83eeab47a9e128303449c
/content/browser/renderer_host/input/mouse_wheel_event_queue.cc
7124e73de4b6aeb5b9e421f5a5dce3aed976cdf2
[ "BSD-3-Clause" ]
permissive
eunchong/chromium-1
671f6c3a9a7bfe43738de96a2245085dec92d050
1a4e2a74d44cfacc77aa10b95fc6dc1f9af7ab03
refs/heads/master
2023-01-10T12:55:01.146176
2016-05-17T07:50:30
2016-05-17T07:50:30
59,000,223
0
0
null
2016-05-17T07:30:05
2016-05-17T07:30:04
null
UTF-8
C++
false
false
11,770
cc
// Copyright 2016 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 "content/browser/renderer_host/input/mouse_wheel_event_queue.h" #include "base/metrics/histogram_macros.h" #include "base/stl_util.h" #include "base/trace_event/trace_event.h" using blink::WebGestureEvent; using blink::WebInputEvent; using blink::WebMouseWheelEvent; using ui::LatencyInfo; namespace content { // This class represents a single queued mouse wheel event. Its main use // is that it is reported via trace events. class QueuedWebMouseWheelEvent : public MouseWheelEventWithLatencyInfo { public: QueuedWebMouseWheelEvent(const MouseWheelEventWithLatencyInfo& original_event) : MouseWheelEventWithLatencyInfo(original_event) { TRACE_EVENT_ASYNC_BEGIN0("input", "MouseWheelEventQueue::QueueEvent", this); } ~QueuedWebMouseWheelEvent() { TRACE_EVENT_ASYNC_END0("input", "MouseWheelEventQueue::QueueEvent", this); } private: DISALLOW_COPY_AND_ASSIGN(QueuedWebMouseWheelEvent); }; MouseWheelEventQueue::MouseWheelEventQueue(MouseWheelEventQueueClient* client, bool send_gestures, int64_t scroll_transaction_ms) : client_(client), needs_scroll_begin_(true), needs_scroll_end_(false), send_gestures_(send_gestures), scroll_transaction_ms_(scroll_transaction_ms), scrolling_device_(blink::WebGestureDeviceUninitialized) { DCHECK(client); } MouseWheelEventQueue::~MouseWheelEventQueue() { if (!wheel_queue_.empty()) STLDeleteElements(&wheel_queue_); } void MouseWheelEventQueue::QueueEvent( const MouseWheelEventWithLatencyInfo& event) { TRACE_EVENT0("input", "MouseWheelEventQueue::QueueEvent"); if (event_sent_for_gesture_ack_ && !wheel_queue_.empty()) { QueuedWebMouseWheelEvent* last_event = wheel_queue_.back(); if (last_event->CanCoalesceWith(event)) { last_event->CoalesceWith(event); TRACE_EVENT_INSTANT2("input", "MouseWheelEventQueue::CoalescedWheelEvent", TRACE_EVENT_SCOPE_THREAD, "total_dx", last_event->event.deltaX, "total_dy", last_event->event.deltaY); return; } } wheel_queue_.push_back(new QueuedWebMouseWheelEvent(event)); TryForwardNextEventToRenderer(); LOCAL_HISTOGRAM_COUNTS_100("Renderer.WheelQueueSize", wheel_queue_.size()); } void MouseWheelEventQueue::ProcessMouseWheelAck( InputEventAckState ack_result, const LatencyInfo& latency_info) { TRACE_EVENT0("input", "MouseWheelEventQueue::ProcessMouseWheelAck"); if (!event_sent_for_gesture_ack_) return; event_sent_for_gesture_ack_->latency.AddNewLatencyFrom(latency_info); client_->OnMouseWheelEventAck(*event_sent_for_gesture_ack_, ack_result); // If event wasn't consumed then generate a gesture scroll for it. if (send_gestures_ && ack_result != INPUT_EVENT_ACK_STATE_CONSUMED && event_sent_for_gesture_ack_->event.canScroll && event_sent_for_gesture_ack_->event.resendingPluginId == -1 && (scrolling_device_ == blink::WebGestureDeviceUninitialized || scrolling_device_ == blink::WebGestureDeviceTouchpad)) { WebGestureEvent scroll_update; scroll_update.timeStampSeconds = event_sent_for_gesture_ack_->event.timeStampSeconds; scroll_update.x = event_sent_for_gesture_ack_->event.x; scroll_update.y = event_sent_for_gesture_ack_->event.y; scroll_update.globalX = event_sent_for_gesture_ack_->event.globalX; scroll_update.globalY = event_sent_for_gesture_ack_->event.globalY; scroll_update.type = WebInputEvent::GestureScrollUpdate; scroll_update.sourceDevice = blink::WebGestureDeviceTouchpad; scroll_update.resendingPluginId = -1; scroll_update.data.scrollUpdate.deltaX = event_sent_for_gesture_ack_->event.deltaX; scroll_update.data.scrollUpdate.deltaY = event_sent_for_gesture_ack_->event.deltaY; // Only OSX populates the momentumPhase; so expect this to // always be PhaseNone on all other platforms. scroll_update.data.scrollUpdate.inertial = event_sent_for_gesture_ack_->event.momentumPhase != blink::WebMouseWheelEvent::PhaseNone; if (event_sent_for_gesture_ack_->event.scrollByPage) { scroll_update.data.scrollUpdate.deltaUnits = WebGestureEvent::Page; // Turn page scrolls into a *single* page scroll because // the magnitude the number of ticks is lost when coalescing. if (scroll_update.data.scrollUpdate.deltaX) scroll_update.data.scrollUpdate.deltaX = scroll_update.data.scrollUpdate.deltaX > 0 ? 1 : -1; if (scroll_update.data.scrollUpdate.deltaY) scroll_update.data.scrollUpdate.deltaY = scroll_update.data.scrollUpdate.deltaY > 0 ? 1 : -1; } else { scroll_update.data.scrollUpdate.deltaUnits = event_sent_for_gesture_ack_->event.hasPreciseScrollingDeltas ? WebGestureEvent::PrecisePixels : WebGestureEvent::Pixels; if (event_sent_for_gesture_ack_->event.railsMode == WebInputEvent::RailsModeVertical) scroll_update.data.scrollUpdate.deltaX = 0; if (event_sent_for_gesture_ack_->event.railsMode == WebInputEvent::RailsModeHorizontal) scroll_update.data.scrollUpdate.deltaY = 0; } bool current_phase_ended = false; bool has_phase_info = false; if (event_sent_for_gesture_ack_->event.phase != blink::WebMouseWheelEvent::PhaseNone || event_sent_for_gesture_ack_->event.momentumPhase != blink::WebMouseWheelEvent::PhaseNone) { has_phase_info = true; current_phase_ended = event_sent_for_gesture_ack_->event.phase == blink::WebMouseWheelEvent::PhaseEnded || event_sent_for_gesture_ack_->event.phase == blink::WebMouseWheelEvent::PhaseCancelled || event_sent_for_gesture_ack_->event.momentumPhase == blink::WebMouseWheelEvent::PhaseEnded || event_sent_for_gesture_ack_->event.momentumPhase == blink::WebMouseWheelEvent::PhaseCancelled; } bool needs_update = scroll_update.data.scrollUpdate.deltaX != 0 || scroll_update.data.scrollUpdate.deltaY != 0; // If there is no update to send and the current phase is ended yet a GSB // needs to be sent, this event sequence doesn't need to be generated // because the events generated will be a GSB (non-synthetic) and GSE // (non-synthetic). This situation arises when OSX generates double // phase end information. bool empty_sequence = !needs_update && needs_scroll_begin_ && current_phase_ended; if (needs_update || !empty_sequence) { if (needs_scroll_begin_) { // If no GSB has been sent, it will be a non-synthetic GSB. SendScrollBegin(scroll_update, false); } else if (has_phase_info) { // If a GSB has been sent, generate a synthetic GSB if we have phase // information. This should be removed once crbug.com/526463 is fully // implemented. SendScrollBegin(scroll_update, true); } if (needs_update) { ui::LatencyInfo latency = ui::LatencyInfo(); latency.AddLatencyNumber( ui::INPUT_EVENT_LATENCY_GENERATE_SCROLL_UPDATE_FROM_MOUSE_WHEEL, 0, 0); client_->ForwardGestureEventWithLatencyInfo(scroll_update, latency); } if (current_phase_ended) { // Non-synthetic GSEs are sent when the current phase is canceled or // ended. SendScrollEnd(scroll_update, false); } else if (has_phase_info) { // Generate a synthetic GSE for every update to force hit testing so // that the non-latching behavior is preserved. Remove once // crbug.com/526463 is fully implemented. SendScrollEnd(scroll_update, true); } else { scroll_end_timer_.Start( FROM_HERE, base::TimeDelta::FromMilliseconds(scroll_transaction_ms_), base::Bind(&MouseWheelEventQueue::SendScrollEnd, base::Unretained(this), scroll_update, false)); } } } event_sent_for_gesture_ack_.reset(); TryForwardNextEventToRenderer(); } void MouseWheelEventQueue::OnGestureScrollEvent( const GestureEventWithLatencyInfo& gesture_event) { if (gesture_event.event.type == blink::WebInputEvent::GestureScrollBegin) { // If there is a current scroll going on and a new scroll that isn't // wheel based cancel current one by sending a ScrollEnd. if (scroll_end_timer_.IsRunning() && gesture_event.event.sourceDevice != blink::WebGestureDeviceTouchpad) { base::Closure task = scroll_end_timer_.user_task(); scroll_end_timer_.Reset(); task.Run(); } scrolling_device_ = gesture_event.event.sourceDevice; } else if (scrolling_device_ == gesture_event.event.sourceDevice && (gesture_event.event.type == blink::WebInputEvent::GestureScrollEnd || gesture_event.event.type == blink::WebInputEvent::GestureFlingStart)) { scrolling_device_ = blink::WebGestureDeviceUninitialized; if (scroll_end_timer_.IsRunning()) scroll_end_timer_.Reset(); } } void MouseWheelEventQueue::TryForwardNextEventToRenderer() { TRACE_EVENT0("input", "MouseWheelEventQueue::TryForwardNextEventToRenderer"); if (wheel_queue_.empty() || event_sent_for_gesture_ack_) return; event_sent_for_gesture_ack_.reset(wheel_queue_.front()); wheel_queue_.pop_front(); client_->SendMouseWheelEventImmediately(*event_sent_for_gesture_ack_); } void MouseWheelEventQueue::SendScrollEnd(WebGestureEvent update_event, bool synthetic) { DCHECK((synthetic && !needs_scroll_end_) || needs_scroll_end_); WebGestureEvent scroll_end(update_event); scroll_end.timeStampSeconds = (base::TimeTicks::Now() - base::TimeTicks()).InSecondsF(); scroll_end.type = WebInputEvent::GestureScrollEnd; scroll_end.resendingPluginId = -1; scroll_end.data.scrollEnd.synthetic = synthetic; scroll_end.data.scrollEnd.inertial = update_event.data.scrollUpdate.inertial; scroll_end.data.scrollEnd.deltaUnits = update_event.data.scrollUpdate.deltaUnits; if (!synthetic) { needs_scroll_begin_ = true; needs_scroll_end_ = false; if (scroll_end_timer_.IsRunning()) scroll_end_timer_.Reset(); } client_->ForwardGestureEventWithLatencyInfo(scroll_end, ui::LatencyInfo()); } void MouseWheelEventQueue::SendScrollBegin( const WebGestureEvent& gesture_update, bool synthetic) { DCHECK((synthetic && !needs_scroll_begin_) || needs_scroll_begin_); WebGestureEvent scroll_begin(gesture_update); scroll_begin.type = WebInputEvent::GestureScrollBegin; scroll_begin.data.scrollBegin.synthetic = synthetic; scroll_begin.data.scrollBegin.inertial = gesture_update.data.scrollUpdate.inertial; scroll_begin.data.scrollBegin.deltaXHint = gesture_update.data.scrollUpdate.deltaX; scroll_begin.data.scrollBegin.deltaYHint = gesture_update.data.scrollUpdate.deltaY; scroll_begin.data.scrollBegin.targetViewport = false; scroll_begin.data.scrollBegin.deltaHintUnits = gesture_update.data.scrollUpdate.deltaUnits; needs_scroll_begin_ = false; needs_scroll_end_ = true; client_->ForwardGestureEventWithLatencyInfo(scroll_begin, ui::LatencyInfo()); } } // namespace content
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
e43625623917d8afce701dd356043b056368e857
4dc014b06a9a0b4bd6fe25f9e27fd45b08cdffb7
/AdmirerSender.cpp
7b296510f8f00ddc2db95e2275c35054f82004a2
[]
no_license
pangpangcc/AdmirerSender
405f0bf2bc044e76731e6d11ed464b83915f3ce3
5de4e6c941c9b59c4b5c57ce7aba3de32248c682
refs/heads/master
2021-01-13T15:48:50.264304
2016-08-29T08:42:41
2016-08-29T08:42:41
76,842,477
1
0
null
2016-12-19T08:20:32
2016-12-19T08:20:32
null
UTF-8
C++
false
false
25,632
cpp
/* * AdmirerSender.cpp * * Created on: 2015-1-13 * Author: Max.Chiu * Email: Kingsleyyau@gmail.com */ #include "AdmirerSender.h" #define MIN(A,B) ((A)<(B)?(A):(B)) #define MAX(A,B) ((A)>(B)?(A):(B)) /* send thread */ class SendLetterRunnable : public KRunnable { public: SendLetterRunnable(AdmirerSender *container) { mContainer = container; } virtual ~SendLetterRunnable() { mContainer = NULL; } protected: void onRun() { mContainer->SendRunnableHandle(); } private: AdmirerSender *mContainer; }; /* state thread */ class StateRunnable : public KRunnable { public: StateRunnable(AdmirerSender *container) { mContainer = container; } virtual ~StateRunnable() { mContainer = NULL; } protected: void onRun() { mContainer->StateRunnableHandle(); } private: AdmirerSender *mContainer; }; AdmirerSender::AdmirerSender() { // TODO Auto-generated constructor stub mpStateRunnable = new StateRunnable(this); mpSendRunnable = new SendLetterRunnable(this); } AdmirerSender::~AdmirerSender() { // TODO Auto-generated destructor stub if( mpStateRunnable ) { delete mpStateRunnable; } if( mpSendRunnable ) { delete mpSendRunnable; } } bool AdmirerSender::Run(const string& config) { if( config.length() > 0 ) { mConfigFile = config; // Reload config if( Reload() ) { if( miDebugMode == 1 ) { LogManager::LogSetFlushBuffer(0); } else { LogManager::LogSetFlushBuffer(1 * BUFFER_SIZE_1K * BUFFER_SIZE_1K); } return Run(); } else { printf("# Match Server can not load config file exit. \n"); } } else { printf("# No config file can be use exit. \n"); } return false; } bool AdmirerSender::Run() { /* log system */ LogManager::GetLogManager()->Start(1000, miLogLevel, mLogDir); LogManager::GetLogManager()->Log( LOG_WARNING, "AdmirerSender::Run( " "############## Admirer Sender ############## " ")" ); LogManager::GetLogManager()->Log( LOG_WARNING, "AdmirerSender::Run( " "Version : %s " ")", VERSION_STRING ); LogManager::GetLogManager()->Log( LOG_WARNING, "AdmirerSender::Run( " "Build date : %s %s " ")", __DATE__, __TIME__ ); LogManager::GetLogManager()->Log( LOG_MSG, "AdmirerSender::Run( " "miPort : %d, " "miMaxClient : %d, " "miMaxMemoryCopy : %d, " "miMaxHandleThread : %d, " "miMaxQueryPerThread : %d, " "miTimeout : %d, " "miStateTime, %d, " "miDbCount : %d, " "miLogLevel : %d, " "mlogDir : %s " ")", miPort, miMaxClient, miMaxMemoryCopy, miMaxHandleThread, miMaxQueryPerThread, miTimeout, miStateTime, miDbCount, miLogLevel, mLogDir.c_str() ); bool bFlag = false; mTotal = 0; mHit = 0; mResponed = 0; mIsRunning = true; /* db manager */ mDBManager.SetDBManagerCallback(this); bFlag = mDBManager.Init( mDbMan, miDbCount, mDbLady, mDbEmail ); if( !bFlag ) { printf("# Admirer Sender can not initialize database exit. \n"); LogManager::GetLogManager()->Log(LOG_STAT, "AdmirerSender::Run( Database Init fail )"); return false; } LogManager::GetLogManager()->Log(LOG_STAT, "AdmirerSender::Run( Database Init OK )"); /* admirer sender */ mClientTcpServer.SetTcpServerObserver(this); /** * 预估相应时间,内存数目*超时间隔*每秒处理的任务 */ mClientTcpServer.SetHandleSize(miMaxMemoryCopy * miTimeout * miMaxQueryPerThread); if( mClientTcpServer.Start(miMaxClient, miPort, miMaxHandleThread) ) { LogManager::GetLogManager()->Log(LOG_STAT, "AdmirerSender::Run( TcpServer Init OK )"); } else { printf("# Admirer Sender can not start tcp server exit. \n"); LogManager::GetLogManager()->Log(LOG_STAT, "AdmirerSender::Run( TcpServer Init fail )"); return false; } /* start send thread */ mpSendThread = new KThread(mpSendRunnable); if( mpSendThread->start() != 0 ) { LogManager::GetLogManager()->Log(LOG_STAT, "AdmirerSender::Run( Create send thread OK )"); } else { printf("# Admirer Sender can not create send thread exit. \n"); return false; } mpStateThread = new KThread(mpStateRunnable); if( mpStateThread->start() != 0 ) { LogManager::GetLogManager()->Log(LOG_STAT, "AdmirerSender::Run( Create state thread OK )"); } else { printf("# Admirer Sender can not create state thread exit. \n"); return false; } mDBManager.SyncForce(); for(int i = 0; i < miDbCount; i++) { mDBManager.SyncLadyForce(mDbLady[i].miSiteId); } printf("# AdmirerSender start OK. \n"); LogManager::GetLogManager()->Log(LOG_WARNING, "AdmirerSender::Run( Init OK )"); return true; } bool AdmirerSender::Reload() { bool bFlag = false; mConfigMutex.lock(); if( mConfigFile.length() > 0 ) { ConfFile conf; conf.InitConfFile(mConfigFile.c_str(), ""); if ( conf.LoadConfFile() ) { // BASE miPort = atoi(conf.GetPrivate("BASE", "PORT", "9876").c_str()); miMaxClient = atoi(conf.GetPrivate("BASE", "MAXCLIENT", "100000").c_str()); miMaxMemoryCopy = atoi(conf.GetPrivate("BASE", "MAXMEMORYCOPY", "1").c_str()); miMaxHandleThread = atoi(conf.GetPrivate("BASE", "MAXHANDLETHREAD", "2").c_str()); miMaxQueryPerThread = atoi(conf.GetPrivate("BASE", "MAXQUERYPERCOPY", "10").c_str()); miTimeout = atoi(conf.GetPrivate("BASE", "TIMEOUT", "10").c_str()); miStateTime = atoi(conf.GetPrivate("BASE", "STATETIME", "30").c_str()); // DB mDbMan.mHost = conf.GetPrivate("DB", "DBHOST", "localhost"); mDbMan.mPort = atoi(conf.GetPrivate("DB", "DBPORT", "3306").c_str()); mDbMan.mDbName = conf.GetPrivate("DB", "DBNAME", "qpidnetwork_online"); mDbMan.mUser = conf.GetPrivate("DB", "DBUSER", "root"); mDbMan.mPasswd = conf.GetPrivate("DB", "DBPASS", "123456"); mDbMan.miMaxDatabaseThread = atoi(conf.GetPrivate("DB", "MAXDATABASETHREAD", "4").c_str()); mDbMan.miSyncTime = 60 * atoi(conf.GetPrivate("DB", "SYNCTIME", "30").c_str()); miDbCount = atoi(conf.GetPrivate("DB", "DB_COUNT", "0").c_str()); // [DB_EMAIL] mDbEmail.mHost = conf.GetPrivate("DB_EMAIL", "DBHOST", "localhost"); mDbEmail.mPort = atoi(conf.GetPrivate("DB_EMAIL", "DBPORT", "3306").c_str()); mDbEmail.mDbName = conf.GetPrivate("DB_EMAIL", "DBNAME", "qpidnetwork_online"); mDbEmail.mUser = conf.GetPrivate("DB_EMAIL", "DBUSER", "root"); mDbEmail.mPasswd = conf.GetPrivate("DB_EMAIL", "DBPASS", "123456"); mDbEmail.miMaxDatabaseThread = atoi(conf.GetPrivate("DB_EMAIL", "MAXDATABASETHREAD", "4").c_str()); char domain[4] = {'\0'}; for(int i = 0; i < miDbCount; i++) { sprintf(domain, "DB_%d", i); mDbLady[i].mHost = conf.GetPrivate(domain, "DBHOST", "localhost"); mDbLady[i].mPort = atoi(conf.GetPrivate(domain, "DBPORT", "3306").c_str()); mDbLady[i].mDbName = conf.GetPrivate(domain, "DBNAME", "qpidnetwork_online"); mDbLady[i].mUser = conf.GetPrivate(domain, "DBUSER", "root"); mDbLady[i].mPasswd = conf.GetPrivate(domain, "DBPASS", "123456"); mDbLady[i].miMaxDatabaseThread = atoi(conf.GetPrivate(domain, "MAXDATABASETHREAD", "4").c_str()); mDbLady[i].miSiteId = atoi(conf.GetPrivate(domain, "SITEID", "-1").c_str()); mDbLady[i].miOverValue = atoi(conf.GetPrivate(domain, "OVERVALUE", "0").c_str()); mDbLady[i].mPostfix = conf.GetPrivate(domain, "DBPOSTFIX", ""); mDbLady[i].mMember = conf.GetPrivate(domain, "MEMBER", ""); } // LOG miLogLevel = atoi(conf.GetPrivate("LOG", "LOGLEVEL", "5").c_str()); mLogDir = conf.GetPrivate("LOG", "LOGDIR", "log"); miDebugMode = atoi(conf.GetPrivate("LOG", "DEBUGMODE", "0").c_str()); // Reload config mClientTcpServer.SetHandleSize(miMaxMemoryCopy * miTimeout * miMaxQueryPerThread); LogManager::GetLogManager()->Log( LOG_WARNING, "AdmirerSender::Reload( " "miPort : %d, " "miMaxClient : %d, " "miMaxMemoryCopy : %d, " "miMaxHandleThread : %d, " "miMaxQueryPerThread : %d, " "miTimeout : %d, " "miStateTime, %d, " "miDbCount : %d, " "miLogLevel : %d, " "mlogDir : %s " ")", miPort, miMaxClient, miMaxMemoryCopy, miMaxHandleThread, miMaxQueryPerThread, miTimeout, miStateTime, miDbCount, miLogLevel, mLogDir.c_str() ); bFlag = true; } } mConfigMutex.unlock(); return bFlag; } bool AdmirerSender::IsRunning() { return mIsRunning; } /** * New request */ bool AdmirerSender::OnAccept(TcpServer *ts, int fd, char* ip) { return true; } void AdmirerSender::OnDisconnect(TcpServer *ts, int fd) { LogManager::GetLogManager()->Log(LOG_STAT, "AdmirerSender::OnDisconnect( " "tid : %d, " "fd : [%d], " "start " ")", (int)syscall(SYS_gettid), fd ); LogManager::GetLogManager()->Log(LOG_STAT, "AdmirerSender::OnDisconnect( " "tid : %d, " "fd : [%d], " "end " ")", (int)syscall(SYS_gettid), fd ); } void AdmirerSender::OnClose(TcpServer *ts, int fd) { } void AdmirerSender::OnRecvMessage(TcpServer *ts, Message *m) { LogManager::GetLogManager()->Log(LOG_STAT, "AdmirerSender::OnRecvMessage( " "tid : %d, " "m->fd : [%d], " "start " ")", (int)syscall(SYS_gettid), m->fd ); Message *sm = ts->GetIdleMessageList()->PopFront(); if( sm != NULL ) { sm->fd = m->fd; sm->wr = m->wr; int ret = -1; if( &mClientTcpServer == ts ) { // 外部服务请求 mCountMutex.lock(); mTotal++; mCountMutex.unlock(); ret = HandleRecvMessage(m, sm); if( 0 != ret ) { // Process finish, send respond ts->SendMessageByQueue(sm); } else { // receive continue ts->GetIdleMessageList()->PushBack(sm); } } } else { LogManager::GetLogManager()->Log( LOG_WARNING, "AdmirerSender::OnRecvMessage( " "tid : %d, " "m->fd : [%d], " "No idle message can be use " ")", (int)syscall(SYS_gettid), m->fd ); // 断开连接 ts->Disconnect(m->fd); } LogManager::GetLogManager()->Log( LOG_STAT, "AdmirerSender::OnRecvMessage( " "tid : %d, " "m->fd : [%d], " "end " ")", (int)syscall(SYS_gettid), m->fd ); } void AdmirerSender::OnSendMessage(TcpServer *ts, Message *m) { LogManager::GetLogManager()->Log(LOG_STAT, "AdmirerSender::OnSendMessage( tid : %d, m->fd : [%d], start )", (int)syscall(SYS_gettid), m->fd); // 发送成功,断开连接 ts->Disconnect(m->fd); LogManager::GetLogManager()->Log(LOG_STAT, "AdmirerSender::OnSendMessage( tid : %d, m->fd : [%d], end )", (int)syscall(SYS_gettid), m->fd); } void AdmirerSender::OnTimeoutMessage(TcpServer *ts, Message *m) { LogManager::GetLogManager()->Log(LOG_STAT, "AdmirerSender::OnTimeoutMessage( tid : %d, m->fd : [%d], start )", (int)syscall(SYS_gettid), m->fd); Message *sm = ts->GetIdleMessageList()->PopFront(); if( sm != NULL ) { sm->fd = m->fd; sm->wr = m->wr; HandleTimeoutMessage(m, sm); // Process finish, send respond ts->SendMessageByQueue(sm); } else { LogManager::GetLogManager()->Log( LOG_WARNING, "AdmirerSender::OnTimeoutMessage( " "tid : %d, " "m->fd : [%d], " "No idle message can be use " ")", (int)syscall(SYS_gettid), m->fd ); // 断开连接 ts->Disconnect(m->fd); } LogManager::GetLogManager()->Log(LOG_STAT, "AdmirerSender::OnTimeoutMessage( tid : %d, m->fd : [%d], end )", (int)syscall(SYS_gettid), m->fd); } int AdmirerSender::HandleRecvMessage(Message *m, Message *sm) { int ret = -1; int code = 200; char reason[16] = {"OK"}; string param; Json::FastWriter writer; Json::Value rootSend; rootSend["ret"] = 0; if( m == NULL ) { return ret; } LogManager::GetLogManager()->Log( LOG_WARNING, "AdmirerSender::HandleRecvMessage( " "tid : %d, " "[收到请求], " "m->fd: [%d], " "request : \n%s\n" ")", (int)syscall(SYS_gettid), m->fd, m->buffer ); DataHttpParser dataHttpParser; if ( DiffGetTickCount(m->starttime, GetTickCount()) < miTimeout * 1000 ) { if( m->buffer != NULL ) { ret = dataHttpParser.ParseData(m->buffer, m->len); } } else { param = writer.write(rootSend); } if( ret == 1 ) { ret = -1; const char* pPath = dataHttpParser.GetPath().c_str(); HttpType type = dataHttpParser.GetType(); LogManager::GetLogManager()->Log( LOG_WARNING, "AdmirerSender::HandleRecvMessage( " "tid : %d, " "[收到请求], " "pPath : %s " ")", (int)syscall(SYS_gettid), pPath ); if( type == GET ) { if( strcmp(pPath, "/SYNCLADYLIST") == 0 ) { // 增量获取发送女士 LogManager::GetLogManager()->Log( LOG_WARNING, "AdmirerSender::HandleRecvMessage( " "tid : %d, " "[收到请求, 增量获取发送女士] " ")", (int)syscall(SYS_gettid) ); const char* pSiteId = dataHttpParser.GetParam("SITEID").c_str(); if( pSiteId != NULL ) { SyncLadyList(pSiteId, m); rootSend["ret"] = 1; ret = 1; } param = writer.write(rootSend); } else if( strcmp(pPath, "/GETAGENTSENDSTATUS") == 0 ) { const char* pAgentId = dataHttpParser.GetParam("AGENTID").c_str(); LogManager::GetLogManager()->Log( LOG_WARNING, "AdmirerSender::HandleRecvMessage( " "tid : %d, " "[收到请求, 获取机构状态], " "pAgentId : %s " ")", (int)syscall(SYS_gettid), pAgentId ); if( pAgentId != NULL ) { Json::Value statusNode; GetAgentSendStatus(statusNode, (char*)pAgentId, m); rootSend["status"] = statusNode; rootSend["ret"] = 1; ret = 1; } param = writer.write(rootSend); } else if( strcmp(pPath, "/CLEARLETTERSENDLIST") == 0 ) { LogManager::GetLogManager()->Log( LOG_WARNING, "AdmirerSender::HandleRecvMessage( " "tid : %d, " "[收到请求, 清空发送女士] " ")", (int)syscall(SYS_gettid) ); ClearLetterSendList(m); rootSend["ret"] = 1; ret = 1; param = writer.write(rootSend); } else { code = 404; sprintf(reason, "Not Found"); param = "404 Not Found"; } } else { code = 404; sprintf(reason, "Not Found"); param = "404 Not Found"; } } else { param = writer.write(rootSend); } LogManager::GetLogManager()->Log( LOG_WARNING, "AdmirerSender::HandleRecvMessage( " "tid : %d, " "[收到请求, 发送返回], " "m->fd: [%d], " "ret : %d, " "respond : \n%s\n" ")", (int)syscall(SYS_gettid), m->fd, ret, param.c_str() ); snprintf(sm->buffer, MAX_BUFFER_LEN - 1, "HTTP/1.1 %d %s\r\nContext-Length:%d\r\n\r\n%s", code, reason, (int)param.length(), param.c_str() ); sm->len = strlen(sm->buffer); return ret; } int AdmirerSender::HandleTimeoutMessage(Message *m, Message *sm) { int ret = -1; Json::FastWriter writer; Json::Value rootSend, womanListNode, womanNode; if( m == NULL ) { return ret; } printf("#AdmirerSender::HandleTimeoutMessage( buffer : %s )", m->buffer); LogManager::GetLogManager()->Log( LOG_WARNING, "AdmirerSender::HandleTimeoutMessage( " "tid : %d, " "m->fd: [%d] " ")", (int)syscall(SYS_gettid), m->fd ); string param = writer.write(rootSend); snprintf(sm->buffer, MAX_BUFFER_LEN - 1, "HTTP/1.1 200 ok\r\nContext-Length:%d\r\n\r\n%s", (int)param.length(), param.c_str()); sm->len = strlen(sm->buffer); return ret; } void AdmirerSender::SyncLadyList( const char* siteId, Message *m ) { LogManager::GetLogManager()->Log( LOG_MSG, "AdmirerSender::SyncLadyList( " "tid : %d, " "m->fd: [%d], " "siteId : %s " ")", (int)syscall(SYS_gettid), m->fd, siteId ); mDBManager.SyncLadyForce(atoi(siteId)); } void AdmirerSender::GetAgentSendStatus( Json::Value& statusNode, const char* agentId, Message *m ) { LogManager::GetLogManager()->Log( LOG_MSG, "AdmirerSender::GetAgentSendStatus( " "tid : %d, " "m->fd: [%d], " "agentId : %s, " "start " ")", (int)syscall(SYS_gettid), m->fd, agentId ); bool bFlag = false; mAgentMap.Lock(); AgentMap::iterator itr = mAgentMap.Find(agentId); if( itr != mAgentMap.End() ) { if( itr->second > 0 ) { bFlag = true; } } mAgentMap.Unlock(); LogManager::GetLogManager()->Log( LOG_MSG, "AdmirerSender::GetAgentSendStatus( " "tid : %d, " "m->fd: [%d], " "agentId : %s, " "end " ")", (int)syscall(SYS_gettid), m->fd, agentId ); statusNode = (int)bFlag; } void AdmirerSender::ClearLetterSendList( Message *m ) { LogManager::GetLogManager()->Log( LOG_MSG, "AdmirerSender::ClearLetterSendList( " "tid : %d, " "m->fd: [%d] " ")", (int)syscall(SYS_gettid), m->fd ); // bool bFlag = false; // 标记数据库信件为已完成 mDBManager.SetAllLetterDelete(); // 清空内存信件(三期) mLadyLetterSendListMap.Lock(); for(LadyLetterSendListMap::iterator itr = mLadyLetterSendListMap.Begin(); itr != mLadyLetterSendListMap.End();) { ILetterSender* sender; while( (sender = itr->second.PopFront()) != NULL ) { delete sender; } mLadyLetterSendListMap.Erase(itr++); } mLadyLetterSendListMap.Unlock(); // // 清空内存信件(二期) // ILetterSender* sender; // while( (sender = mLadyLetterList.PopFront()) != NULL ) { // delete sender; // } mAgentMap.Lock(); mAgentMap.Clear(); mAgentMap.Unlock(); } void AdmirerSender::OnSyncLady( DBManager* pDBManager, const Lady& item ) { // 增加女士到机构 // AddLadyToAgent(item.mAgentId); // 生成信件 ILetterSender *sender = new LadyDBLetterSender(item, pDBManager); // // 增加信件(二期) // mLadyLetterList.PushBack(sender); // 增加信件到女士(三期) mLadyLetterSendListMap.Lock(); LadyLetterSendListMap::iterator itr = mLadyLetterSendListMap.Find(item.mWomanId); if( itr != mLadyLetterSendListMap.End() ) { itr->second.PushBack(sender); } else { LetterSendList ladyLetterList; ladyLetterList.PushBack(sender); mLadyLetterSendListMap.Insert(item.mWomanId, ladyLetterList); } mLadyLetterSendListMap.Unlock(); } void AdmirerSender::OnGetLady( DBManager* pDBManager, const Lady& item ) { // 发送信件(三期) LogManager::GetLogManager()->Log( LOG_STAT, "AdmirerSender::OnGetLady( " "tid : %d, " "womanid : %s, " "siteid : %d, " "sort : %d " ")", (int)syscall(SYS_gettid), item.mWomanId.c_str(), item.mSiteId, item.iSort ); mLadyLetterSendListMap.Lock(); LadyLetterSendListMap::iterator itr = mLadyLetterSendListMap.Find(item.mWomanId); if( itr != mLadyLetterSendListMap.End() ) { ILetterSender* sender = itr->second.PopFront(); if( sender != NULL ) { unsigned int iHandleTime = GetTickCount(); bool bFlag = sender->CanSendLetter(); if( bFlag ) { // Send letter bFlag = sender->SendLetter(); if( !bFlag ) { // Check error code switch( sender->GetErrorCode() ) { case SEND_FIAL_TOO_MORE_TIME: { // Can't send any more }break; default:{ bFlag = true; }break; } } } if( bFlag ) { // Push back into send list itr->second.PushBack(sender); } else { // Can't send any more sender->FinishLetter(); // Remove sender from Agent // RemoveLadyFromAgent(item.mAgentId); // Drop sender delete sender; sender = NULL; if( itr->second.Empty() ) { // 在内存表更新女士能否收信(三期) mDBManager.UpdateLadyCanSend(itr->first, false); // 删除女士(三期) mLadyLetterSendListMap.Erase(itr); } } iHandleTime = GetTickCount() - iHandleTime; LogManager::GetLogManager()->Log( LOG_STAT, "AdmirerSender::OnGetLady( " "tid : %d, " "iHandleTime : %u ms " ")", (int)syscall(SYS_gettid), iHandleTime ); LogManager::GetLogManager()->Log( LOG_STAT, "AdmirerSender::OnGetLady( " "tid : %d " "######################################## " ")", (int)syscall(SYS_gettid) ); iHandleTime = MAX(50 * 1000, iHandleTime); iHandleTime = MIN(1000 * 1000, iHandleTime); usleep(iHandleTime); } else { // Noting to send sleep(1); } } mLadyLetterSendListMap.Unlock(); } void AdmirerSender::AddLadyToAgent(const string& agentId) { int iCount = 1; mAgentMap.Lock(); AgentMap::iterator itr = mAgentMap.Find(agentId); if( itr != mAgentMap.End() ) { iCount = ++(itr->second); } else { mAgentMap.Insert(agentId, (int)1); } mAgentMap.Unlock(); LogManager::GetLogManager()->Log( LOG_STAT, "AdmirerSender::AddLadyToAgent( " "tid : %d, " "agentId: %s, " "iCount : %d " ")", (int)syscall(SYS_gettid), agentId.c_str(), iCount ); } void AdmirerSender::RemoveLadyFromAgent(const string& agentId) { int iCount = 0; LogManager::GetLogManager()->Log( LOG_MSG, "AdmirerSender::RemoveLadyFromAgent( " "tid : %d, " "agentId: %s " ")", (int)syscall(SYS_gettid), agentId.c_str() ); mAgentMap.Lock(); AgentMap::iterator itr = mAgentMap.Find(agentId); if( itr != mAgentMap.End() ) { iCount = --(itr->second); if( itr->second == 0 ) { mAgentMap.Erase(itr); } } mAgentMap.Unlock(); LogManager::GetLogManager()->Log( LOG_STAT, "AdmirerSender::RemoveLadyFromAgent( " "tid : %d, " "agentId: %s, " "iCount : %d " ")", (int)syscall(SYS_gettid), agentId.c_str(), iCount ); } void AdmirerSender::StateRunnableHandle() { unsigned int iCount = 0; unsigned int iTotal = 0; double iSecondTotal = 0; unsigned int iHit = 0; double iSecondHit = 0; double iResponed = 0; unsigned int iStateTime = miStateTime; while( IsRunning() ) { if ( iCount < iStateTime ) { iCount++; } else { iCount = 0; iSecondTotal = 0; iSecondHit = 0; iResponed = 0; mCountMutex.lock(); iTotal = mTotal; iHit = mHit; if( iStateTime != 0 ) { iSecondTotal = 1.0 * iTotal / iStateTime; iSecondHit = 1.0 * iHit / iStateTime; } if( iTotal != 0 ) { iResponed = 1.0 * mResponed / iTotal; } mHit = 0; mTotal = 0; mResponed = 0; mCountMutex.unlock(); // LogManager::GetLogManager()->Log(LOG_WARNING, // "AdmirerSender::StateRunnable( tid : %d, TcpServer::GetHandleMessageList() : %d )", // (int)syscall(SYS_gettid), // (MessageList*) mClientTcpServer.GetHandleMessageList()->Size() // ); LogManager::GetLogManager()->Log(LOG_WARNING, "AdmirerSender::StateRunnable( " "tid : %d, " "[内存待发送信件女士数量] : %d, " "[内存允许收信男士数量] : %d " ")", (int)syscall(SYS_gettid), mLadyLetterSendListMap.Size(), mDBManager.GetManCanRecvCount() ); // LogManager::GetLogManager()->Log(LOG_WARNING, // "AdmirerSender::StateRunnable( " // "tid : %d, " // "iTotal : %u, " // "iHit : %u, " // "iSecondTotal : %.1lf, " // "iSecondHit : %.1lf, " // "iResponed : %.1lf, " // "iStateTime : %u " // ")", // (int)syscall(SYS_gettid), // iTotal, // iHit, // iSecondTotal, // iSecondHit, // iResponed, // iStateTime // ); // LogManager::GetLogManager()->Log(LOG_WARNING, // "AdmirerSender::StateRunnable( " // "tid : %d, " // "过去%u秒共收到%u个请求, " // "成功处理%u个请求, " // "平均收到%.1lf个/秒, " // "平均处理%.1lf个/秒, " // "平均响应时间%.1lf毫秒/个" // ")", // (int)syscall(SYS_gettid), // iStateTime, // iTotal, // iHit, // iSecondTotal, // iSecondHit, // iResponed // ); iStateTime = miStateTime; } sleep(1); } } void AdmirerSender::SendRunnableHandle() { LogManager::GetLogManager()->Log( LOG_STAT, "AdmirerSender::SendRunnableHandle( " "tid : %d " ")", (int)syscall(SYS_gettid) ); while( IsRunning() ) { // 发送信件(三期) if( !mDBManager.GetLadyList() ) { // Noting to send sleep(1); } // // 发送信件(二期) // ILetterSender* sender = mLadyLetterList.PopFront(); // if( sender != NULL ) { // LogManager::GetLogManager()->Log( // LOG_STAT, // "AdmirerSender::SendRunnableHandle( " // "tid : %d, " // "start " // ")", // (int)syscall(SYS_gettid) // ); // // unsigned int iHandleTime = GetTickCount(); // // bool bFlag = sender->CanSendLetter(); // if( bFlag ) { // // Send letter // bFlag = sender->SendLetter(); // // if( !bFlag ) { // // Check error code // switch( sender->GetErrorCode() ) { // case SEND_FIAL_TOO_MORE_TIME: { // // Can't send any more // }break; // default:{ // bFlag = true; // }break; // } // } // // } // // if( bFlag ) { // // Push back into send list // mLadyLetterList.PushBack(sender); // // } else { // // Can't send any more // sender->FinishLetter(); // // // Remove sender from Agent // RemoveLadyFromAgent(sender->GetAgentId()); // // // Drop sender // delete sender; // sender = NULL; // } // // iHandleTime = GetTickCount() - iHandleTime; // // LogManager::GetLogManager()->Log( // LOG_STAT, // "AdmirerSender::SendRunnableHandle( " // "tid : %d, " // "iHandleTime : %u ms, " // "end " // ")", // (int)syscall(SYS_gettid), // iHandleTime // ); // // LogManager::GetLogManager()->Log( // LOG_STAT, // "AdmirerSender::SendRunnableHandle( " // "tid : %d " // "######################################## " // ")", // (int)syscall(SYS_gettid) // ); // // iHandleTime = MAX(50, iHandleTime); // iHandleTime = MIN(1000, iHandleTime); // // usleep(iHandleTime); // // } else { // // Noting to send // sleep(1); // } } }
[ "Kingsleyyau@gmail.com" ]
Kingsleyyau@gmail.com
694a73ab13fac703455365ff362a3ac3e43b3572
4195b53a7105b629b6be3b4b86032cd4e9c5c8ae
/HW2/HW2_terminal/p1.cpp
ef48213365f6c41267fa35f5f5ce655460504336
[]
no_license
rmboyle/Computer-Vision
f4eafcdd364aa10e05dc43516d3a769c95265d1b
49a865cb6fa0f5b02903cc0f4f6ae1e52c768327
refs/heads/master
2021-01-13T01:29:43.583456
2012-01-03T17:13:42
2012-01-03T17:13:42
3,095,703
0
0
null
null
null
null
UTF-8
C++
false
false
1,089
cpp
//============================================================================ // Name : p1.cpp // Author : Richard Boyle // uni : rmb2189 // Description : Converts image to binary based on a threshold value. //============================================================================ #include <iostream> #include "vision_utilities.h" using namespace std; int main(int argc, char *argv[]) { //check for arguments if(argc!=4){ cout<<"usage: "<< argv[0] <<" <input binaray image><threshold>"; cout<<"<output binary image>\n"; return -1; } //name of image const char *name = argv[1]; Image *im = (Image *) malloc(sizeof(Image)); readImage(im,name); int nCols = getNCols(im); int nRows = getNRows(im); int thresh = atoi(argv[2]); //based on threshold create binary image for(int i = 0;i<nRows;i++){ for(int j = 0; j<nCols;j++){ if(getPixel(im,i,j)>thresh) setPixel(im,i,j,1); else setPixel(im,i,j,0); } } setColors(im,1); const char *newIm = argv[3]; //write image to new file name writeImage(im,newIm); return 0; }
[ "rmichaelboyle@gmail.com" ]
rmichaelboyle@gmail.com
14172ad06ab3219c41c7492f2ea66f43cdb230ed
b5e2b46c189c17b24add63050227ed7a4d88e6f9
/include/velocypack/include/velocypack/Iterator.h
49ce73f81dacea3fcea457f65e90b1d4f08a7c8e
[ "Apache-2.0" ]
permissive
quannh0308/shemaless_serializers_benchmark
f7a934acbec3ce34385d2d7fe30e7b38b4cd8b75
93226b50e748ac25d9118898c0b6c05c77fd5160
refs/heads/master
2021-01-11T14:25:16.082562
2017-02-09T02:54:44
2017-02-09T02:54:44
81,401,251
0
0
null
null
null
null
UTF-8
C++
false
false
8,535
h
//////////////////////////////////////////////////////////////////////////////// /// @brief Library to build up VPack documents. /// /// DISCLAIMER /// /// Copyright 2015 ArangoDB GmbH, Cologne, Germany /// /// 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. /// /// Copyright holder is ArangoDB GmbH, Cologne, Germany /// /// @author Max Neunhoeffer /// @author Jan Steemann /// @author Copyright 2015, ArangoDB GmbH, Cologne, Germany //////////////////////////////////////////////////////////////////////////////// #ifndef VELOCYPACK_ITERATOR_H #define VELOCYPACK_ITERATOR_H 1 #include <iosfwd> #include <functional> #include "velocypack/velocypack-common.h" #include "velocypack/Exception.h" #include "velocypack/Slice.h" #include "velocypack/ValueType.h" namespace arangodb { namespace velocypack { class ArrayIterator { public: ArrayIterator() = delete; explicit ArrayIterator(Slice const& slice) : _slice(slice), _size(_slice.length()), _position(0), _current(nullptr) { if (slice.type() != ValueType::Array) { throw Exception(Exception::InvalidValueType, "Expecting Array slice"); } reset(); } ArrayIterator(ArrayIterator const& other) : _slice(other._slice), _size(other._size), _position(other._position), _current(other._current) {} ArrayIterator& operator=(ArrayIterator const& other) { _slice = other._slice; _size = other._size; _position = other._position; _current = other._current; return *this; } // prefix ++ ArrayIterator& operator++() { ++_position; if (_position <= _size && _current != nullptr) { _current += Slice(_current).byteSize(); } else { _current = nullptr; } return *this; } // postfix ++ ArrayIterator operator++(int) { ArrayIterator result(*this); ++(*this); return result; } bool operator!=(ArrayIterator const& other) const { return _position != other._position; } Slice operator*() const { if (_current != nullptr) { return Slice(_current); } return _slice.at(_position); } ArrayIterator begin() { return ArrayIterator(_slice); } ArrayIterator begin() const { return ArrayIterator(_slice); } ArrayIterator end() { auto it = ArrayIterator(_slice); it._position = it._size; return it; } ArrayIterator end() const { auto it = ArrayIterator(_slice); it._position = it._size; return it; } inline bool valid() const noexcept { return (_position < _size); } inline Slice value() const { if (_position >= _size) { throw Exception(Exception::IndexOutOfBounds); } return operator*(); } inline void next() noexcept { operator++(); } inline ValueLength index() const noexcept { return _position; } inline ValueLength size() const noexcept { return _size; } inline bool isFirst() const noexcept { return (_position == 0); } inline bool isLast() const noexcept { return (_position + 1 >= _size); } inline void forward(ValueLength count) { if (_position + count >= _size) { // beyond end of data _current = nullptr; _position = _size; } else { auto h = _slice.head(); if (h == 0x13) { while (count-- > 0) { _current += Slice(_current).byteSize(); ++_position; } } else { _position += count; _current = _slice.at(_position).start(); } } } inline void reset() { _position = 0; _current = nullptr; if (_size > 0) { auto h = _slice.head(); if (h == 0x13) { _current = _slice.at(0).start(); } else { _current = _slice.begin() + _slice.findDataOffset(h); } } } private: Slice _slice; ValueLength _size; ValueLength _position; uint8_t const* _current; }; class ObjectIterator { public: struct ObjectPair { ObjectPair(Slice const& key, Slice const& value) : key(key), value(value) {} Slice const key; Slice const value; }; ObjectIterator() = delete; explicit ObjectIterator(Slice const& slice, bool allowRandomIteration = false) : _slice(slice), _size(_slice.length()), _position(0), _current(nullptr), _allowRandomIteration(allowRandomIteration) { if (!slice.isObject()) { throw Exception(Exception::InvalidValueType, "Expecting Object slice"); } if (_size > 0) { auto h = slice.head(); if (h == 0x14) { _current = slice.keyAt(0, false).start(); } else if (allowRandomIteration) { _current = slice.begin() + slice.findDataOffset(h); } } } ObjectIterator(ObjectIterator const& other) : _slice(other._slice), _size(other._size), _position(other._position), _current(other._current), _allowRandomIteration(other._allowRandomIteration) {} ObjectIterator& operator=(ObjectIterator const& other) { _slice = other._slice; _size = other._size; _position = other._position; _current = other._current; _allowRandomIteration = other._allowRandomIteration; return *this; } // prefix ++ ObjectIterator& operator++() { ++_position; if (_position <= _size && _current != nullptr) { // skip over key _current += Slice(_current).byteSize(); // skip over value _current += Slice(_current).byteSize(); } else { _current = nullptr; } return *this; } // postfix ++ ObjectIterator operator++(int) { ObjectIterator result(*this); ++(*this); return result; } bool operator!=(ObjectIterator const& other) const { return _position != other._position; } ObjectPair operator*() const { if (_current != nullptr) { Slice key = Slice(_current); return ObjectPair(key.makeKey(), Slice(_current + key.byteSize())); } return ObjectPair(_slice.getNthKey(_position, true), _slice.getNthValue(_position)); } ObjectIterator begin() { return ObjectIterator(_slice, _allowRandomIteration); } ObjectIterator begin() const { return ObjectIterator(_slice, _allowRandomIteration); } ObjectIterator end() { auto it = ObjectIterator(_slice, _allowRandomIteration); it._position = it._size; return it; } ObjectIterator end() const { auto it = ObjectIterator(_slice, _allowRandomIteration); it._position = it._size; return it; } inline bool valid() const noexcept { return (_position < _size); } inline Slice key(bool translate = true) const { if (_position >= _size) { throw Exception(Exception::IndexOutOfBounds); } if (_current != nullptr) { Slice s(_current); return translate ? s.makeKey() : s; } return _slice.getNthKey(_position, translate); } inline Slice value() const { if (_position >= _size) { throw Exception(Exception::IndexOutOfBounds); } if (_current != nullptr) { Slice key = Slice(_current); return Slice(_current + key.byteSize()); } return _slice.getNthValue(_position); } inline void next() noexcept { operator++(); } inline ValueLength index() const noexcept { return _position; } inline ValueLength size() const noexcept { return _size; } inline bool isFirst() const noexcept { return (_position == 0); } inline bool isLast() const noexcept { return (_position + 1 >= _size); } private: Slice _slice; ValueLength _size; ValueLength _position; uint8_t const* _current; bool _allowRandomIteration; }; } // namespace arangodb::velocypack } // namespace arangodb std::ostream& operator<<(std::ostream&, arangodb::velocypack::ArrayIterator const*); std::ostream& operator<<(std::ostream&, arangodb::velocypack::ArrayIterator const&); std::ostream& operator<<(std::ostream&, arangodb::velocypack::ObjectIterator const*); std::ostream& operator<<(std::ostream&, arangodb::velocypack::ObjectIterator const&); #endif
[ "quannh22@viettel.com.vn" ]
quannh22@viettel.com.vn
a02f38c8624f12b6ce5e0000a9838691c85dc444
55719398d0e335cddc4100d34b312825cccb0ed0
/TestDrive/TestDriveView.cpp
b8882cd4e1ee6244159bcb08e85b43f51a17e50e
[ "BSD-3-Clause", "MIT" ]
permissive
15831944/src-1
fc1894afa8bf1414e6a91b53193531a88f5a8002
6b925489270286122952d91e7d2ca9ad1a08daef
refs/heads/master
2023-04-13T22:55:53.340272
2021-05-04T02:48:57
2021-05-04T02:48:57
null
0
0
null
null
null
null
UHC
C++
false
false
2,016
cpp
// TestDriveView.cpp : CTestDriveView 클래스의 구현 // #include "stdafx.h" // SHARED_HANDLERS는 미리 보기, 축소판 그림 및 검색 필터 처리기를 구현하는 ATL 프로젝트에서 정의할 수 있으며 // 해당 프로젝트와 문서 코드를 공유하도록 해 줍니다. #ifndef SHARED_HANDLERS #include "Main.h" #endif #include "TestDriveDoc.h" #include "TestDriveView.h" #ifdef _DEBUG #define new DEBUG_NEW #endif // CTestDriveView IMPLEMENT_DYNCREATE(CTestDriveView, CView) BEGIN_MESSAGE_MAP(CTestDriveView, CView) ON_WM_CONTEXTMENU() ON_WM_RBUTTONUP() END_MESSAGE_MAP() // CTestDriveView 생성/소멸 CTestDriveView::CTestDriveView() { // TODO: 여기에 생성 코드를 추가합니다. } CTestDriveView::~CTestDriveView() { } BOOL CTestDriveView::PreCreateWindow(CREATESTRUCT& cs) { // TODO: CREATESTRUCT cs를 수정하여 여기에서 // Window 클래스 또는 스타일을 수정합니다. return CView::PreCreateWindow(cs); } // CTestDriveView 그리기 void CTestDriveView::OnDraw(CDC* /*pDC*/) { CTestDriveDoc* pDoc = GetDocument(); ASSERT_VALID(pDoc); if (!pDoc) return; // TODO: 여기에 원시 데이터에 대한 그리기 코드를 추가합니다. } void CTestDriveView::OnRButtonUp(UINT /* nFlags */, CPoint point) { ClientToScreen(&point); OnContextMenu(this, point); } void CTestDriveView::OnContextMenu(CWnd* /* pWnd */, CPoint point) { #ifndef SHARED_HANDLERS //theApp.GetContextMenuManager()->ShowPopupMenu(IDR_POPUP_EDIT, point.x, point.y, this, TRUE); #endif } // CTestDriveView 진단 #ifdef _DEBUG void CTestDriveView::AssertValid() const { CView::AssertValid(); } void CTestDriveView::Dump(CDumpContext& dc) const { CView::Dump(dc); } CTestDriveDoc* CTestDriveView::GetDocument() const // 디버그되지 않은 버전은 인라인으로 지정됩니다. { ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CTestDriveDoc))); return (CTestDriveDoc*)m_pDocument; } #endif //_DEBUG // CTestDriveView 메시지 처리기
[ "clonextop@gmail.com" ]
clonextop@gmail.com
a0c66f638507883f1fdb6b12b544cb13958d120b
91dfc9d1a5c94107cef89603c5c0a1a0b4155df3
/QT_04/MyselfQQ/dialoglist.cpp
98c01f1cbfcb49ae74e8ab816d5b6ad332d38e84
[]
no_license
robotchaoX/Qt-tutorial-code
b6d3df92a2d6e730674213bf1fa2d6c787de1dbc
deabe96cf575cb4538ea8694c7146ea1570e3ac9
refs/heads/master
2021-07-15T00:34:32.189120
2020-10-07T15:38:06
2020-10-07T15:38:06
216,152,951
0
0
null
null
null
null
UTF-8
C++
false
false
2,813
cpp
#include "dialoglist.h" #include "ui_dialoglist.h" #include <QToolButton> #include "widget.h" #include <QMessageBox> DialogList::DialogList(QWidget *parent) : QWidget(parent), ui(new Ui::DialogList) { ui->setupUi(this); //设置标题 setWindowTitle("MySelfQQ 2017"); //设置图标 setWindowIcon(QPixmap(":/images/qq.png")); //准备图标 QList<QString>nameList; //昵称列表 nameList << "斧头帮主" << "忆梦如澜" <<"北京出版人"<<"Cherry"<<"淡然" <<"娇娇girl"<<"落水无痕"<<"青墨暖暖"<<"无语"; QStringList iconNameList; //图标资源列表 iconNameList << "ftbz"<< "ymrl" <<"qq" <<"Cherry"<< "dr" <<"jj"<<"lswh"<<"qmnn"<<"wy"; QVector <QToolButton *> vToolBtn; // 添加好友 for(int i = 0 ; i < 9 ; i++) { //设置头像 QToolButton * btn = new QToolButton; //设置文字 btn->setText(nameList[i]); //设置头像 QString str = QString(":/images/%1.png").arg(iconNameList.at(i)); btn->setIcon(QPixmap(str)); //设置头像大小 btn->setIconSize( QPixmap(str).size() ); //设置按钮风格 透明 btn->setAutoRaise(true); //设置文字和图片一起显示 btn->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); //加到 垂直布局中 ui->vLayout->addWidget(btn); //容器保存住9个按钮,方便以后再次操作 vToolBtn.push_back(btn); //9个标示默认初始化 isShow.push_back(false); } //对9个按钮 进行添加信号槽 for(int i = 0 ; i < vToolBtn.size();i++) { //点击头像 connect(vToolBtn[i],&QToolButton::clicked,[=](){ //如果被打开了,就不要再次打开 if(isShow[i]) { QString str = QString("%1窗口已经被打开了").arg(vToolBtn[i]->text()); QMessageBox::warning(this,"警告",str); return; } isShow[i] = true; //弹出聊天对话框 //构造聊天窗口时候 告诉这个窗口他的名字 参数1 顶层方式弹出 参数2 窗口名字 //注意! 自定义Widget构造函数 并没有这两个参数 Widget * widget = new Widget(0,vToolBtn[i]->text());//创建自定义Widget //设置窗口标题 widget->setWindowTitle(vToolBtn[i]->text()); widget->setWindowIcon(vToolBtn[i]->icon()); widget->show();//显示自定义Widget //关闭聊天对话框 connect(widget,&Widget::closeWidget,[=](){ isShow[i] = false; }); }); } } DialogList::~DialogList() { delete ui; }
[ "948037851@qq.com" ]
948037851@qq.com
95819ba826b2de32e86343e2ecb414d9b3577141
1d4204c6766449214544a6511e138782712c0806
/Src/Simulation/ODESimulation/SimulationCore/Actuators/Slider.cpp
9fc93470f5d20769cf55b49b3f6c242c4c877c81
[]
no_license
spyfree/tjNaoBackup
2d0291a83f8473346546567ae7856634f6c5a292
0c7dd47f65e23be6e9d82a31f15ef69a3ce386cb
refs/heads/master
2016-09-06T08:20:52.068351
2014-01-31T03:33:19
2014-01-31T03:33:19
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,044
cpp
/** * @file Slider.cpp * * Implementation of class Slider * * @author <A href="mailto:kspiess@informatik.uni-bremen.de">Kai Spiess</A> */ #include "Slider.h" #include "Motor.h" #include "MotorController.h" #include "../Simulation/Sensorport.h" #include "../Simulation/Actuatorport.h" #include "../Simulation/Simulation.h" #include "../PhysicalObjects/PhysicalObject.h" #include "../Simulation/PhysicsParameterSet.h" #include "../Tools/SimGraphics.h" Slider::Slider() { } Slider::Slider(const AttributeSet& attributes) { name = ParserUtilities::getValueFor(attributes, "name"); } bool Slider::parseAttributeElements(const std::string& name, const AttributeSet& attributes, int line, int column, ErrorManager* errorManager) { if(name == "Axis") { parseAxis(name, attributes); axis = &axes[0]; } else if(name == "AngularMotor") { parseMotor(name, attributes); } else if(name == "VelocityMotor") { parseMotor(name, attributes); } else if(name == "Deflection") { axes.back().minValue = (ParserUtilities::toDouble(ParserUtilities::getValueFor(attributes, "min"))); axes.back().maxValue = (ParserUtilities::toDouble(ParserUtilities::getValueFor(attributes, "max"))); axes.back().limited = true; } else if(name == "PController") { axis->motor->parseController(name, attributes); } else if(name == "PIDController") { axis->motor->parseController(name, attributes); ((PIDController*)axis->motor->getMotorController())->setTimeStep(simulation->getStepLength()); } else if(name == "Friction") { if(!axes.empty()) axis->friction = ParserUtilities::toDouble(ParserUtilities::getValueFor(attributes, "value")); } return true; } SimObject* Slider::clone() const { Slider* newSlider = new Slider(); //copy SimObject members newSlider->copyStandardMembers(this); bool createsNewMovID = newSlider->adjustMovableID(); //copy joint members //axes std::vector<AxisDescription>::const_iterator axesIter; for(axesIter = axes.begin(); axesIter != axes.end(); ++axesIter) { newSlider->axes.push_back(*axesIter); if(axesIter->motor != NULL) { newSlider->motors.push_back(axesIter->motor->clone()); newSlider->axes.back().motor = newSlider->motors.back(); } } //currentMotor if(!newSlider->motors.empty()) newSlider->currentMotor = newSlider->motors.back(); //copy slider members newSlider->axis = &(newSlider->axes[0]); //copy child nodes newSlider->childNodes.clear(); std::list<SimObject*>::const_iterator pos; for(pos = childNodes.begin(); pos != childNodes.end(); ++pos) { SimObject* childNode = (*pos)->clone(); newSlider->addChildNode(childNode, false); } if(createsNewMovID) this->simulation->removeCurrentMovableID(); SimObject* newObject = newSlider; return newObject; } void Slider::addToLists(std::vector<Sensorport*>& sensorportList, std::vector<Actuatorport*>& actuatorportList, std::vector<Actuator*>& actuatorList) { if(this->axis != 0) { Sensorport* valueSensor = new Sensorport ("jointSensorValue", AXIS_JOINT, doubleSensor, this, axis->minValue, axis->maxValue); sensorportList.push_back(valueSensor); if(this->axis->motor != 0) { std::string actuatorDescription; std::string sensorDescription; double minVal=0.0, maxVal=0.0; if(this->axis->motor->getMotorType() == VELOCITY) { actuatorDescription = "motorVelocity"; sensorDescription = "motorVelocitySensor"; minVal = -this->axis->motor->getMaxVelocity(); maxVal = this->axis->motor->getMaxVelocity(); } else if(this->axis->motor->getMotorType() == ANGULAR) { actuatorDescription = "motorPosition"; sensorDescription = "motorPositionSensor"; minVal = this->axis->minValue; maxVal = this->axis->maxValue; } Actuatorport* value = new Actuatorport(actuatorDescription, this, AXIS_MOTOR, minVal, maxVal); actuatorportList.push_back(value); Sensorport* valueSensor = new Sensorport(sensorDescription, AXIS_MOTOR, doubleSensor, this, minVal, maxVal); sensorportList.push_back(valueSensor); actuatorList.push_back(this); } } } void Slider::addToDescriptions(std::vector<ObjectDescription>& objectDescriptionTree, int depth) { SimSensor::addToDescriptions(objectDescriptionTree, depth); //Add Sensorports: ObjectDescription valueDesc; valueDesc.name = "jointSensorValue"; valueDesc.fullName = fullName + ".jointSensorValue"; valueDesc.depth = depth + 1; valueDesc.type = OBJECT_TYPE_SENSORPORT; objectDescriptionTree.push_back(valueDesc); if(this->axis->motor !=0) { std::string actuatorDescription; std::string sensorDescription; if(this->axis->motor->getMotorType() == VELOCITY) { actuatorDescription = "motorVelocity"; sensorDescription = "motorVelocitySensor"; } else if(this->axis->motor->getMotorType() == ANGULAR) { actuatorDescription = "motorPosition"; sensorDescription = "motorPositionSensor"; } //Add Actuatorport: valueDesc.name = actuatorDescription; valueDesc.fullName = fullName + "." + actuatorDescription; valueDesc.depth = depth + 1; valueDesc.type = OBJECT_TYPE_ACTUATORPORT; objectDescriptionTree.push_back(valueDesc); //Add Sensorport: valueDesc.name = sensorDescription; valueDesc.fullName = fullName + "." + sensorDescription; valueDesc.depth = depth + 1; valueDesc.type = OBJECT_TYPE_SENSORPORT; objectDescriptionTree.push_back(valueDesc); } } void Slider::setValue(double value, int port) { /* TEMPORARY FIX */ if(port == AXIS_MOTOR) { double newValue = value; if(this->axis->motor->getMotorType() == ANGULAR) { if(value == this->axis->maxValue || value == this->axis->minValue) { if(value == 0.0 && this->axis->minValue == 0.0) { newValue = -0.01; } else if(value == 0.0 && this->axis->maxValue == 0.0) { newValue = 0.01; } else newValue -= (value *dReal(0.01)); } } this->axis->motor->setValue(newValue, port); } } void Slider::act(bool initial) { if(!initial) { if(this->axis->motor->getMotorType() == VELOCITY) { dReal desiredVelocity = dReal(this->axis->motor->getDesiredVelocity()); dJointSetSliderParam(this->physicalJoint, dParamFMax, dReal(this->axis->motor->getMaxForce())); dJointSetSliderParam(this->physicalJoint, dParamVel, desiredVelocity); } else if(this->axis->motor->getMotorType() == ANGULAR) { double controllerOutput = this->axis->motor->getControllerOutput(dJointGetSliderPosition(this->physicalJoint)); dJointSetSliderParam(this->physicalJoint, dParamFMax, dReal(this->axis->motor->getMaxForce())); dJointSetSliderParam(this->physicalJoint, dParamVel, dReal(controllerOutput)); } } } void Slider::computeValue(double& value, int portId) { if(portId == AXIS_JOINT) value = (dJointGetSliderPosition(this->physicalJoint)); else if(portId == AXIS_MOTOR) { if(this->axis->motor->getMotorType() == VELOCITY) value = (dJointGetSliderParam(this->physicalJoint, dParamVel)); else value = (dJointGetSliderPosition(this->physicalJoint)); } } void Slider::createJointPhysics() { Vector3d physAxis = this->axis->direction; physAxis.rotate(this->rotation); this->physicalJoint = dJointCreateSlider(*this->simulation->getPhysicalWorld(), 0); PhysicalObject* o1 = this->getPhysicalParentObject(); PhysicalObject* o2 = this->getPhysicalChildObject(this); assert (o1 != NULL && o2 != NULL); if(o1 && o2) { dJointAttach(this->physicalJoint, *(o2->getBody()), *(o1->getBody())); //set slider joint parameter dJointSetSliderAxis(this->physicalJoint, dReal(this->axis->direction.v[0]), dReal(this->axis->direction.v[1]), dReal(this->axis->direction.v[2])); if(this->axis->cfm != -1.0) dJointSetSliderParam(this->physicalJoint, dParamCFM, dReal(this->axis->cfm)); if(this->axis->limited || (this->axis->motor != 0 && this->axis->motor->getMotorType() == ANGULAR)) { dJointSetSliderParam(this->physicalJoint, dParamLoStop, dReal(this->axis->minValue)); dJointSetSliderParam(this->physicalJoint, dParamHiStop, dReal(this->axis->maxValue)); // this has to be done due to the way ODE sets joint stops dJointSetSliderParam(this->physicalJoint, dParamLoStop, dReal(this->axis->minValue)); if(this->axis->fullScaleDeflectionCFM != -1.0) dJointSetSliderParam(this->physicalJoint, dParamStopCFM, dReal(this->axis->fullScaleDeflectionCFM)); if(this->axis->fullScaleDeflectionERP != -1.0) dJointSetSliderParam(this->physicalJoint, dParamStopERP, dReal(this->axis->fullScaleDeflectionERP)); } } } void Slider::createMotorPhysics() { } void Slider::applyFriction(bool initial) { if(!initial) { if(this->motors.size()== 0) { double fmax = axis->friction * fabs((simulation->getPhysicsParameters())->getGravity()); double velocity = 0.0; dJointSetSliderParam(physicalJoint, dParamFMax, dReal(fmax)); dJointSetSliderParam(physicalJoint, dParamVel, dReal(velocity)); } } } void Slider::drawObject(const VisualizationParameterSet& visParams) { if(visParams.surfaceStyle == VisualizationParameterSet::PHYSICS_WIREFRAME || visParams.surfaceStyle == VisualizationParameterSet::PHYSICS_FLAT || visParams.surfaceStyle == VisualizationParameterSet::PHYSICS_SMOOTH || visParams.surfaceStyle == VisualizationParameterSet::MIXED_APPEARANCE || visParams.surfaceStyle == VisualizationParameterSet::MIXED_PHYSICS) { dVector3 tempA; dJointGetSliderAxis(physicalJoint, tempA); Vector3d tempAxis(tempA[0], tempA[1], tempA[2]); tempAxis *= 0.1; dBodyID b2 = dJointGetBody(physicalJoint, 0); if(b2 == NULL) b2 = dJointGetBody(physicalJoint, 1); const dReal* b2Pos = dBodyGetPosition(b2); Vector3d pos(b2Pos[0], b2Pos[1], b2Pos[2]); if(visParams.surfaceStyle == VisualizationParameterSet::MIXED_APPEARANCE) { glPolygonMode(GL_FRONT_AND_BACK,GL_LINE); glShadeModel(GL_FLAT); GLHelper::getGLH()->drawSlider(pos, tempAxis, true); glPolygonMode(GL_FRONT_AND_BACK,GL_FILL); glShadeModel(GL_SMOOTH); } else GLHelper::getGLH()->drawSlider(pos, tempAxis, false); } }
[ "srlixin@gmail.com" ]
srlixin@gmail.com
3cd62caabcf738fbb569dcfba3dd030984dbdcb3
24f26275ffcd9324998d7570ea9fda82578eeb9e
/net/proxy_resolution/proxy_resolver_winhttp.cc
58012bc631e4f6364d747822485f48d196cbaa85
[ "BSD-3-Clause" ]
permissive
Vizionnation/chromenohistory
70a51193c8538d7b995000a1b2a654e70603040f
146feeb85985a6835f4b8826ad67be9195455402
refs/heads/master
2022-12-15T07:02:54.461083
2019-10-25T15:07:06
2019-10-25T15:07:06
217,557,501
2
1
BSD-3-Clause
2022-11-19T06:53:07
2019-10-25T14:58:54
null
UTF-8
C++
false
false
7,892
cc
// Copyright (c) 2011 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/proxy_resolution/proxy_resolver_winhttp.h" #include <windows.h> #include <winhttp.h> #include "base/macros.h" #include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" #include "net/base/net_errors.h" #include "net/proxy_resolution/proxy_info.h" #include "net/proxy_resolution/proxy_resolver.h" #include "url/gurl.h" using base::TimeDelta; using base::TimeTicks; namespace net { namespace { static void FreeInfo(WINHTTP_PROXY_INFO* info) { if (info->lpszProxy) GlobalFree(info->lpszProxy); if (info->lpszProxyBypass) GlobalFree(info->lpszProxyBypass); } static Error WinHttpErrorToNetError(DWORD win_http_error) { switch (win_http_error) { case ERROR_WINHTTP_AUTO_PROXY_SERVICE_ERROR: case ERROR_WINHTTP_INTERNAL_ERROR: case ERROR_WINHTTP_INCORRECT_HANDLE_TYPE: return ERR_FAILED; case ERROR_WINHTTP_LOGIN_FAILURE: return ERR_PROXY_AUTH_UNSUPPORTED; case ERROR_WINHTTP_BAD_AUTO_PROXY_SCRIPT: return ERR_PAC_SCRIPT_FAILED; case ERROR_WINHTTP_INVALID_URL: case ERROR_WINHTTP_OPERATION_CANCELLED: case ERROR_WINHTTP_UNABLE_TO_DOWNLOAD_SCRIPT: case ERROR_WINHTTP_UNRECOGNIZED_SCHEME: return ERR_HTTP_RESPONSE_CODE_FAILURE; case ERROR_NOT_ENOUGH_MEMORY: return ERR_INSUFFICIENT_RESOURCES; default: return ERR_FAILED; } } class ProxyResolverWinHttp : public ProxyResolver { public: ProxyResolverWinHttp(const scoped_refptr<PacFileData>& script_data); ~ProxyResolverWinHttp() override; // ProxyResolver implementation: int GetProxyForURL(const GURL& url, ProxyInfo* results, CompletionOnceCallback /*callback*/, std::unique_ptr<Request>* /*request*/, const NetLogWithSource& /*net_log*/) override; private: bool OpenWinHttpSession(); void CloseWinHttpSession(); // Proxy configuration is cached on the session handle. HINTERNET session_handle_; const GURL pac_url_; DISALLOW_COPY_AND_ASSIGN(ProxyResolverWinHttp); }; ProxyResolverWinHttp::ProxyResolverWinHttp( const scoped_refptr<PacFileData>& script_data) : session_handle_(nullptr), pac_url_(script_data->type() == PacFileData::TYPE_AUTO_DETECT ? GURL("http://wpad/wpad.dat") : script_data->url()) {} ProxyResolverWinHttp::~ProxyResolverWinHttp() { CloseWinHttpSession(); } int ProxyResolverWinHttp::GetProxyForURL(const GURL& query_url, ProxyInfo* results, CompletionOnceCallback /*callback*/, std::unique_ptr<Request>* /*request*/, const NetLogWithSource& /*net_log*/) { // If we don't have a WinHTTP session, then create a new one. if (!session_handle_ && !OpenWinHttpSession()) return ERR_FAILED; // Windows' system resolver does not support WebSocket URLs in proxy.pac. This // was tested in version 10.0.16299, and is also implied by the description of // the ERROR_WINHTTP_UNRECOGNIZED_SCHEME error code in the Microsoft // documentation at // https://docs.microsoft.com/en-us/windows/desktop/api/winhttp/nf-winhttp-winhttpgetproxyforurl. // See https://crbug.com/862121. GURL mutable_query_url = query_url; if (query_url.SchemeIsWSOrWSS()) { GURL::Replacements replacements; replacements.SetSchemeStr(query_url.SchemeIsCryptographic() ? "https" : "http"); mutable_query_url = query_url.ReplaceComponents(replacements); } // If we have been given an empty PAC url, then use auto-detection. // // NOTE: We just use DNS-based auto-detection here like Firefox. We do this // to avoid WinHTTP's auto-detection code, which while more featureful (it // supports DHCP based auto-detection) also appears to have issues. // WINHTTP_AUTOPROXY_OPTIONS options = {0}; options.fAutoLogonIfChallenged = FALSE; options.dwFlags = WINHTTP_AUTOPROXY_CONFIG_URL; base::string16 pac_url16 = base::ASCIIToUTF16(pac_url_.spec()); options.lpszAutoConfigUrl = base::as_wcstr(pac_url16); WINHTTP_PROXY_INFO info = {0}; DCHECK(session_handle_); // Per http://msdn.microsoft.com/en-us/library/aa383153(VS.85).aspx, it is // necessary to first try resolving with fAutoLogonIfChallenged set to false. // Otherwise, we fail over to trying it with a value of true. This way we // get good performance in the case where WinHTTP uses an out-of-process // resolver. This is important for Vista and Win2k3. BOOL ok = WinHttpGetProxyForUrl( session_handle_, base::as_wcstr(base::ASCIIToUTF16(mutable_query_url.spec())), &options, &info); if (!ok) { if (ERROR_WINHTTP_LOGIN_FAILURE == GetLastError()) { options.fAutoLogonIfChallenged = TRUE; ok = WinHttpGetProxyForUrl( session_handle_, base::as_wcstr(base::ASCIIToUTF16(mutable_query_url.spec())), &options, &info); } if (!ok) { DWORD error = GetLastError(); // If we got here because of RPC timeout during out of process PAC // resolution, no further requests on this session are going to work. if (ERROR_WINHTTP_TIMEOUT == error || ERROR_WINHTTP_AUTO_PROXY_SERVICE_ERROR == error) { CloseWinHttpSession(); } return WinHttpErrorToNetError(error); } } int rv = OK; switch (info.dwAccessType) { case WINHTTP_ACCESS_TYPE_NO_PROXY: results->UseDirect(); break; case WINHTTP_ACCESS_TYPE_NAMED_PROXY: // According to MSDN: // // The proxy server list contains one or more of the following strings // separated by semicolons or whitespace. // // ([<scheme>=][<scheme>"://"]<server>[":"<port>]) // // Based on this description, ProxyInfo::UseNamedProxy() isn't // going to handle all the variations (in particular <scheme>=). // // However in practice, it seems that WinHTTP is simply returning // things like "foopy1:80;foopy2:80". It strips out the non-HTTP // proxy types, and stops the list when PAC encounters a "DIRECT". // So UseNamedProxy() should work OK. results->UseNamedProxy(base::WideToUTF8(info.lpszProxy)); break; default: NOTREACHED(); rv = ERR_FAILED; } FreeInfo(&info); return rv; } bool ProxyResolverWinHttp::OpenWinHttpSession() { DCHECK(!session_handle_); session_handle_ = WinHttpOpen(nullptr, WINHTTP_ACCESS_TYPE_NO_PROXY, WINHTTP_NO_PROXY_NAME, WINHTTP_NO_PROXY_BYPASS, 0); if (!session_handle_) return false; // Since this session handle will never be used for WinHTTP connections, // these timeouts don't really mean much individually. However, WinHTTP's // out of process PAC resolution will use a combined (sum of all timeouts) // value to wait for an RPC reply. BOOL rv = WinHttpSetTimeouts(session_handle_, 10000, 10000, 5000, 5000); DCHECK(rv); return true; } void ProxyResolverWinHttp::CloseWinHttpSession() { if (session_handle_) { WinHttpCloseHandle(session_handle_); session_handle_ = nullptr; } } } // namespace ProxyResolverFactoryWinHttp::ProxyResolverFactoryWinHttp() : ProxyResolverFactory(false /*expects_pac_bytes*/) { } int ProxyResolverFactoryWinHttp::CreateProxyResolver( const scoped_refptr<PacFileData>& pac_script, std::unique_ptr<ProxyResolver>* resolver, CompletionOnceCallback callback, std::unique_ptr<Request>* request) { resolver->reset(new ProxyResolverWinHttp(pac_script)); return OK; } } // namespace net
[ "rjkroege@chromium.org" ]
rjkroege@chromium.org
cde3c557e906ce18b939ff0c20051f7aac4b6f2b
412a08f5d43fcd9dc5e06d2f587efa578ea40e8a
/BOJ/Implementation/boj16503_괄호_없는_사칙연산.cpp
ea12ff11275ea6ffafc6d90e258043ead1d86e22
[]
no_license
onww1/Problem-Solving
19b920f5f4caec50a3aded971e1f1e630e8b6c46
86cc8854ef0457f8f7741cbae401af5038f8ae05
refs/heads/master
2022-06-07T15:47:45.685775
2022-05-25T12:59:59
2022-05-25T12:59:59
130,528,244
6
0
null
null
null
null
UTF-8
C++
false
false
539
cpp
#include <iostream> using namespace std; int calc(int A, char op, int B) { if (op == '+') { return A + B; } else if (op == '-') { return A - B; } else if (op == '*') { return A * B; } else { return A / B; } } int main(int argc, char const *argv[]) { int A, B, C; char op1, op2; cin >> A >> op1 >> B >> op2 >> C; int res1 = calc(calc(A, op1, B), op2, C); int res2 = calc(A, op1, calc(B, op2, C)); if (res1 < res2) cout << res1 << '\n' << res2 << '\n'; else cout << res2 << '\n' << res1 << '\n'; return 0; }
[ "sewon.dev@gmail.com" ]
sewon.dev@gmail.com
253ad13f26d88029ea6bcd1da572a68b58d05ce3
9dff7c49a63e276b51d3ec1f00f4b2a1aaa9a61b
/jni/core/core.h
d04b80941d377af97bd9423acbeeff99c0ececd7
[]
no_license
juanwinsor/dubEngine
514ef8964e3407e3a323d83d5eb6576c9308a0f9
c291d7c7ed2cb95169f079c07fdcfc6fe34aebf5
refs/heads/master
2021-01-09T06:52:16.352515
2014-02-24T06:08:42
2014-02-24T06:08:42
17,126,961
0
0
null
null
null
null
UTF-8
C++
false
false
471
h
#ifndef __CORE_H #define __CORE_H class DeviceInfo; class Game; struct GameTime { GameTime() { deltaTime = 0; totalTime = 0; fixedStep = 1.0f / 60.0f; } float deltaTime; float totalTime; float fixedStep; }; class core { public: ~core(); void initialize(DeviceInfo* deviceInfo); void update(GameTime* gameTime); void fixedUpdate(GameTime* gameTime); void preDraw(); void draw(); protected: DeviceInfo* m_DeviceInfo; Game* m_Game; }; #endif
[ "juan.winsor@gmail.com" ]
juan.winsor@gmail.com
b40d5e7992f21ed66d1cd01a3d23f7c11421147e
d1f89c97354458d5574ef1e7fcdd65e5df68973a
/experiments/process_sandbox/include/process_sandbox/platform/platform.h
08146fe4f89a0b4ae126bead0ac7402bc66671db
[ "MIT" ]
permissive
mjp41/verona
d3c1155c75c97784eda01baa4ac7ed03a1b87236
056723e70ed736c3a491417cf1ab46597e9932d1
refs/heads/master
2023-08-09T11:00:35.344091
2021-09-29T13:49:24
2021-09-29T13:52:44
235,103,347
0
0
MIT
2022-04-05T13:37:13
2020-01-20T13:05:44
C++
UTF-8
C++
false
false
4,378
h
// Copyright Microsoft and Project Verona Contributors. // SPDX-License-Identifier: MIT /** * Platform interface. This is the top-level include for anything * platform-specific. */ #include <pal/pal.h> #ifdef __unix__ # include <fcntl.h> #endif #include <assert.h> #include <functional> #ifdef __linux__ # include <sys/personality.h> #endif #pragma once namespace sandbox { namespace platform { #ifdef __unix__ /** * The `handle_t` type represents a handle used to access OS resources. On * POSIX systems, this is a file descriptor or, more accurately, an integer * index into the process's file-descriptor table. */ using handle_t = int; /** * Class encapsulating a file descriptor. This handles deallocation. */ struct Handle { /** * The file descriptor that this wraps. POSIX file descriptors are * indexes into a file descriptor table. Negative indexes are invalid and * so -1 is used as a default invalid value. * * This field is specific to the POSIX implementation and so should be * used only in POSIX-specific code paths. */ handle_t fd = -1; /** * Check if this is a valid file descriptor. This should be used only to * check whether this class has been initialised with a valid descriptor: * even if the file descriptor is valid at the call, another thread could * manipulate the file descriptor table and invalidate it immediately * after this function returns. * * In debug builds, this will check if the file descriptor refers to a * valid entry in the file descriptor table, though the above caveats * still apply. */ bool is_valid() { assert( ((fd < 0) || (fcntl(fd, F_GETFD) >= 0)) && "File descriptor is a valid index but does not refer to a valid file " "descriptor"); return fd >= 0; } void reset(handle_t new_fd) { if (is_valid()) { close(fd); } fd = new_fd; } Handle() = default; /** * Construct a `Handle` from the raw OS handle. This is explicit to * avoid accidentally taking ownership of a handle and closing it when a * temporary `Handle` is destroyed. */ explicit Handle(handle_t new_fd) : fd(new_fd) {} /** * Copy constructor is deleted. File descriptors are not reference * counted and so must have a single deleter. If a file descriptor needs * to be multiply owned, this should be done via a * `std::shared_ptr<Handle>`. */ Handle(const Handle&) = delete; /** * Move constructor. Takes ownership of a file descriptor. */ Handle(Handle&& other) : fd(other.fd) { other.fd = -1; } Handle& operator=(Handle&& other) { reset(other.fd); other.fd = -1; return *this; } Handle& operator=(handle_t new_fd) { reset(new_fd); return *this; } bool operator==(const handle_t other_fd) const { return fd == other_fd; } bool operator==(const Handle& other) const { return fd == other.fd; } /** * Extract the raw OS handle. The caller is responsible for any cleanup. * This can be done by constructing a new `Handle` from the result of this * function. */ handle_t take() { handle_t ret = fd; fd = -1; return ret; } /** * Destructor, closes the file descriptor if it is valid. */ ~Handle() { reset(-1); } }; #else # error Handle type not defined for your platform #endif void disable_aslr() { #ifdef __linux__ int p = personality(0xffffffff); personality(p | ADDR_NO_RANDOMIZE); #endif } } } namespace std { template<> struct hash<sandbox::platform::Handle> { size_t operator()(const sandbox::platform::Handle& x) const { return std::hash<sandbox::platform::handle_t>()(x.fd); } }; } #include "child_process.h" #include "onebitsem.h" #include "poller.h" #include "safe_syscalls.h" #include "sandbox.h" #include "shm.h" #include "socketpair.h" #include "syscall_context.h"
[ "noreply@github.com" ]
noreply@github.com
bb62a78b068ce2a7e2ec52ac7d59e088c2568e9d
6f9b2a506aab60d5a4e722c055d5fc9cf202fbec
/agency/detail/unwrap_tuple_if_not_scoped.hpp
776d5d723a09df042516fddeb106087e39d8ff1b
[]
no_license
brycelelbach/agency
b0427a3f695b03990803edc3707004ae809e9c23
aef6649ea4e8cce334dd47c346d42b3c9eaf1222
refs/heads/master
2021-06-25T22:39:13.937094
2017-09-06T21:29:00
2017-09-06T21:29:00
104,397,282
0
1
null
2017-09-21T20:47:04
2017-09-21T20:47:04
null
UTF-8
C++
false
false
1,033
hpp
#pragma once #include <agency/execution/execution_categories.hpp> #include <agency/tuple.hpp> #include <utility> namespace agency { namespace detail { template<class ExecutionCategory, class Tuple> __AGENCY_ANNOTATION static auto unwrap_tuple_if_not_scoped_impl(ExecutionCategory, Tuple&& t) -> decltype(agency::get<0>(std::forward<Tuple>(t))) { return agency::get<0>(std::forward<Tuple>(t)); } template<class ExecutionCategory1, class ExecutionCategory2, class Tuple> __AGENCY_ANNOTATION static auto unwrap_tuple_if_not_scoped_impl(scoped_execution_tag<ExecutionCategory1,ExecutionCategory2>, Tuple&& t) -> decltype(std::forward<Tuple>(t)) { return std::forward<Tuple>(t); } template<class ExecutionCategory, class Tuple> __AGENCY_ANNOTATION auto unwrap_tuple_if_not_scoped(Tuple&& t) -> decltype( unwrap_tuple_if_not_scoped_impl(ExecutionCategory(), std::forward<Tuple>(t)) ) { return unwrap_tuple_if_not_scoped_impl(ExecutionCategory(), std::forward<Tuple>(t)); } } // end detail } // end agency
[ "jaredhoberock@gmail.com" ]
jaredhoberock@gmail.com
820056f714824892b1c64d4c44b802e5de3f2b76
8ef23641d100db199a34b81fc15f3b779a2aa306
/src/Item.h
42b22dd92b9c3460ae2d0163d0f81b05306007eb
[]
no_license
ThomasHarper1982/AngryCreeps
c5c34485811f13e55fc223a4cf19f19f5cce10f7
752cd0f0843fad0f54781111c54bda9b89e2810e
refs/heads/master
2022-07-31T13:18:34.987194
2020-05-16T18:23:36
2020-05-16T18:23:36
264,489,196
1
0
null
null
null
null
UTF-8
C++
false
false
375
h
#include "GameObject.h" #ifndef ITEM_H #define ITEM_H class Item: public GameObject{ protected: Item(float x, float y); Item (const Item& i2); //copy constructor bool taken{false}; }; class TeleportToken: public Item{ public: TeleportToken(float x, float y); }; class TimeTravelToken: public Item{ public: TimeTravelToken(float x, float y); }; #endif
[ "ThomasHarper1982" ]
ThomasHarper1982
80afe6af809c41d032fc82b12be05240fc406d2e
6ced41da926682548df646099662e79d7a6022c5
/aws-cpp-sdk-awstransfer/include/aws/awstransfer/model/ListedWorkflow.h
f99046a72e42a899412d60548ce3946f5ca1b556
[ "Apache-2.0", "MIT", "JSON" ]
permissive
irods/aws-sdk-cpp
139104843de529f615defa4f6b8e20bc95a6be05
2c7fb1a048c96713a28b730e1f48096bd231e932
refs/heads/main
2023-07-25T12:12:04.363757
2022-08-26T15:33:31
2022-08-26T15:33:31
141,315,346
0
1
Apache-2.0
2022-08-26T17:45:09
2018-07-17T16:24:06
C++
UTF-8
C++
false
false
5,506
h
/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/awstransfer/Transfer_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Transfer { namespace Model { /** * <p>Contains the ID, text description, and Amazon Resource Name (ARN) for the * workflow.</p><p><h3>See Also:</h3> <a * href="http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/ListedWorkflow">AWS * API Reference</a></p> */ class AWS_TRANSFER_API ListedWorkflow { public: ListedWorkflow(); ListedWorkflow(Aws::Utils::Json::JsonView jsonValue); ListedWorkflow& operator=(Aws::Utils::Json::JsonView jsonValue); Aws::Utils::Json::JsonValue Jsonize() const; /** * <p>A unique identifier for the workflow.</p> */ inline const Aws::String& GetWorkflowId() const{ return m_workflowId; } /** * <p>A unique identifier for the workflow.</p> */ inline bool WorkflowIdHasBeenSet() const { return m_workflowIdHasBeenSet; } /** * <p>A unique identifier for the workflow.</p> */ inline void SetWorkflowId(const Aws::String& value) { m_workflowIdHasBeenSet = true; m_workflowId = value; } /** * <p>A unique identifier for the workflow.</p> */ inline void SetWorkflowId(Aws::String&& value) { m_workflowIdHasBeenSet = true; m_workflowId = std::move(value); } /** * <p>A unique identifier for the workflow.</p> */ inline void SetWorkflowId(const char* value) { m_workflowIdHasBeenSet = true; m_workflowId.assign(value); } /** * <p>A unique identifier for the workflow.</p> */ inline ListedWorkflow& WithWorkflowId(const Aws::String& value) { SetWorkflowId(value); return *this;} /** * <p>A unique identifier for the workflow.</p> */ inline ListedWorkflow& WithWorkflowId(Aws::String&& value) { SetWorkflowId(std::move(value)); return *this;} /** * <p>A unique identifier for the workflow.</p> */ inline ListedWorkflow& WithWorkflowId(const char* value) { SetWorkflowId(value); return *this;} /** * <p>Specifies the text description for the workflow.</p> */ inline const Aws::String& GetDescription() const{ return m_description; } /** * <p>Specifies the text description for the workflow.</p> */ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** * <p>Specifies the text description for the workflow.</p> */ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** * <p>Specifies the text description for the workflow.</p> */ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** * <p>Specifies the text description for the workflow.</p> */ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** * <p>Specifies the text description for the workflow.</p> */ inline ListedWorkflow& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** * <p>Specifies the text description for the workflow.</p> */ inline ListedWorkflow& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** * <p>Specifies the text description for the workflow.</p> */ inline ListedWorkflow& WithDescription(const char* value) { SetDescription(value); return *this;} /** * <p>Specifies the unique Amazon Resource Name (ARN) for the workflow.</p> */ inline const Aws::String& GetArn() const{ return m_arn; } /** * <p>Specifies the unique Amazon Resource Name (ARN) for the workflow.</p> */ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** * <p>Specifies the unique Amazon Resource Name (ARN) for the workflow.</p> */ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** * <p>Specifies the unique Amazon Resource Name (ARN) for the workflow.</p> */ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** * <p>Specifies the unique Amazon Resource Name (ARN) for the workflow.</p> */ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** * <p>Specifies the unique Amazon Resource Name (ARN) for the workflow.</p> */ inline ListedWorkflow& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** * <p>Specifies the unique Amazon Resource Name (ARN) for the workflow.</p> */ inline ListedWorkflow& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** * <p>Specifies the unique Amazon Resource Name (ARN) for the workflow.</p> */ inline ListedWorkflow& WithArn(const char* value) { SetArn(value); return *this;} private: Aws::String m_workflowId; bool m_workflowIdHasBeenSet; Aws::String m_description; bool m_descriptionHasBeenSet; Aws::String m_arn; bool m_arnHasBeenSet; }; } // namespace Model } // namespace Transfer } // namespace Aws
[ "aws-sdk-cpp-automation@github.com" ]
aws-sdk-cpp-automation@github.com
05588b2d88a6d4cf91ae65e4a694d68af1c45559
9639afa8d2c0a7ab4c058f5e5dbf6ca98f268b0c
/Source/215_Kth Largest Element in an Array.cpp
95f8879c8d311d1112470031981f3c140fc84525
[]
no_license
LuuuuuG/MyLeetCode
4681cd5425b21696135f5b722e6b89fc70033261
2fade93db3e041b4616c5b48dbb2d28394c82798
refs/heads/master
2021-06-14T08:09:47.409278
2021-02-05T06:46:54
2021-02-05T06:46:54
141,512,907
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
841
cpp
#include <iostream> #include <vector> #include <functional> #include <queue> using namespace std; /* Find the kth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not the kth distinct element. Example 1: Input: [3,2,1,5,6,4] and k = 2 Output: 5 Example 2: Input: [3,2,3,1,2,4,5,5,6] and k = 4 Output: 4 Note: You may assume k is always valid, 1 ¡Ü k ¡Ü array's length. 215. Kth Largest Element in an Array: https://leetcode.com/problems/kth-largest-element-in-an-array/description/ */ class Solution { public: int findKthLargest(vector<int>& nums, int k) { priority_queue<int, vector<int>, greater<int> > p; for (auto num : nums) { if (p.size() < k) { p.push(num); } else if (num > p.top()) { p.pop(); p.push(num); } } return p.top(); } };
[ "776881718@qq.com" ]
776881718@qq.com
0d93c8e770704e5863f5cfbd043cd839e2fb7f8b
5d83739af703fb400857cecc69aadaf02e07f8d1
/Archive2/a3/aa42a77a1506b1/main.cpp
5d519d4613c13e1d641f11cf7e6990be011b291c
[]
no_license
WhiZTiM/coliru
3a6c4c0bdac566d1aa1c21818118ba70479b0f40
2c72c048846c082f943e6c7f9fa8d94aee76979f
refs/heads/master
2021-01-01T05:10:33.812560
2015-08-24T19:09:22
2015-08-24T19:09:22
56,789,706
3
0
null
null
null
null
UTF-8
C++
false
false
1,295
cpp
#include <iostream> #include <fstream> #include <vector> #include <iterator> #include <cstdlib> // our movie class class Movie { // friend an ostream extraction operator for instances of Movie friend std::istream& operator >>(std::istream& inp, Movie& obj); // members variables here std::string title; public: Movie() {} void load(std::istream& inp) { // TODO: load a movie here, **including title** if (std::getline(inp, title)) { // ... other members ... } } // getters/setters here. const std::string& getTitle() const { return title; } }; // friended extraction operator std::istream& operator >>(std::istream& inp, Movie& obj) { obj.load(inp); // loads movie from file. return inp; } //////////////////////////////////////////////////////////////////////////////// int main(int argc, char *argv[]) { // pass movie file as first parameter to program if (argc < 2) return EXIT_FAILURE; // will hold our movie smart pointers std::ifstream inf(argv[1]); // load vector of movies. std::vector<Movie> movies { std::istream_iterator<Movie>(inf), std::istream_iterator<Movie>() }; // vector loaded. use your movies }
[ "francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df" ]
francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df
2e8e55b0f466934b6a404f1b10f179d0a6a67971
02b87cef237d92926cffdfb17fd071810ad47308
/src/hed/dmc/gridftp/DataPointGridFTPHelper.h
649b5bc91829f2d018736737cf7902c45170abda
[ "MIT", "LicenseRef-scancode-warranty-disclaimer", "Apache-2.0" ]
permissive
nordugrid/arc
1a7bf10f00a5d62c30aece7ae14a34c3073d420a
170dc8e8a2a2eb0d4734a475c9ca16843483e7cb
refs/heads/master
2023-08-31T05:11:54.609507
2023-08-17T10:40:48
2023-08-17T10:40:48
176,701,676
9
11
Apache-2.0
2022-06-03T12:54:51
2019-03-20T09:42:06
C++
UTF-8
C++
false
false
5,450
h
// -*- indent-tabs-mode: nil -*- #ifndef __ARC_DATAPOINTGRIDFTPHELPER_H__ #define __ARC_DATAPOINTGRIDFTPHELPER_H__ #include <list> #include <string> #include <globus_common.h> #include <globus_ftp_client.h> #include <arc/Thread.h> #include <arc/URL.h> #include <arc/data/DataPoint.h> #include <arc/globusutils/GSSCredential.h> namespace ArcDMCGridFTP { using namespace Arc; class Lister; /** * GridFTP is essentially the FTP protocol with GSI security. This class * uses libraries from the Globus Toolkit. It can also be used for regular * FTP. * * This class is a loadable module and cannot be used directly. The DataHandle * class loads modules at runtime and should be used instead of this. */ class DataPointGridFTPHelper { private: class CBArg { private: Glib::Mutex lock; DataPointGridFTPHelper* arg; CBArg(void); CBArg(const CBArg&); public: CBArg(DataPointGridFTPHelper* a); ~CBArg(void) {}; DataPointGridFTPHelper* acquire(void); void release(void); void abandon(void); }; bool ftp_active; URL url; UserConfig usercfg; std::istream& instream; std::ostream& outstream; bool is_secure; CBArg* cbarg; globus_ftp_client_handle_t ftp_handle; globus_ftp_client_operationattr_t ftp_opattr; globus_thread_t ftp_control_thread; // Configuration parameters bool force_secure; bool force_passive; int ftp_threads; // Number of transmisison threads/buffers to register unsigned long long int ftp_bufsize; // Size of each buffer passed to Globus code unsigned long long int range_start; unsigned long long int range_end; bool allow_out_of_order; bool stream_mode; bool autodir; DataExternalComm::DataChunkClientList delayed_chunks; unsigned long long int max_offset; // Current state representation SimpleCondition cond; DataStatus callback_status; GSSCredential *credential; bool ftp_eof_flag; // set to true when data callback reports eof int check_received_length; bool data_error; // set to true when data callback reports error SimpleCounter data_counter; // counts number of buffers passed to Globus code SimpleCondition data_counter_change; Lister* lister; static void ftp_complete_callback(void *arg, globus_ftp_client_handle_t *handle, globus_object_t *error); static void ftp_get_complete_callback(void *arg, globus_ftp_client_handle_t *handle, globus_object_t *error); static void ftp_put_complete_callback(void *arg, globus_ftp_client_handle_t *handle, globus_object_t *error); static void ftp_read_callback(void *arg, globus_ftp_client_handle_t *handle, globus_object_t *error, globus_byte_t *buffer, globus_size_t length, globus_off_t offset, globus_bool_t eof); static void ftp_check_callback(void *arg, globus_ftp_client_handle_t *handle, globus_object_t *error, globus_byte_t *buffer, globus_size_t length, globus_off_t offset, globus_bool_t eof); static void ftp_write_callback(void *arg, globus_ftp_client_handle_t *handle, globus_object_t *error, globus_byte_t *buffer, globus_size_t length, globus_off_t offset, globus_bool_t eof); bool mkdir_ftp(); char ftp_buf[16]; bool check_credentials(); void set_attributes(); DataStatus RemoveFile(); DataStatus RemoveDir(); DataStatus do_more_stat(FileInfo& f, DataPoint::DataPointInfoType verb); DataPointGridFTPHelper(DataPointGridFTPHelper const&); DataPointGridFTPHelper& operator=(DataPointGridFTPHelper const&); public: DataPointGridFTPHelper(const URL& url, const UserConfig& usercfg, std::istream& instream, std::ostream& outstream); virtual ~DataPointGridFTPHelper(); operator bool(void) const { return ftp_active; }; bool operator!(void) const { return !ftp_active; }; void SetBufferSize(unsigned long long int size) { ftp_bufsize = size; }; void SetStreams(int streams) { ftp_threads = streams; }; void SetRange(unsigned long long int start, unsigned long long int end) { range_start = start; range_end = end; }; void SetSecure(bool secure) { force_secure = secure; }; void SetPassive(bool passive) { force_passive = passive; }; void ReadOutOfOrder(bool out_of_order) { allow_out_of_order = out_of_order; } DataStatus Read(); DataStatus Write(); DataStatus Check(); DataStatus Remove(); DataStatus CreateDirectory(bool with_parents=false); DataStatus Stat(DataPoint::DataPointInfoType verb = DataPoint::INFO_TYPE_ALL); DataStatus List(DataPoint::DataPointInfoType verb = DataPoint::INFO_TYPE_ALL); DataStatus Rename(const URL& newurl); static Logger logger; }; } // namespace ArcDMCGridFTP #endif // __ARC_DATAPOINTGRIDFTPHELPER_H__
[ "akonstantinov@yahoo.com" ]
akonstantinov@yahoo.com
df86fdd10993ebbd3b1bbe189c33eab4a0a4e857
81a942d959f8712491be7a92e535020f24c7096d
/test/common/common/containers_test.cc
5bc2c5aec62d8cf7021ab30050a9d7c68cfb5d51
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
siepkes/envoy-smartos
c83d4498a11eb6e866f81b19bfe0b439af9a3a8b
e5ffbbb24f7b53d594f6acf6b3f74df82b1c972d
refs/heads/smartos-v1.18.4
2023-08-16T11:33:19.306548
2021-10-21T07:58:51
2021-10-21T07:58:51
135,030,335
7
0
Apache-2.0
2021-10-05T23:36:57
2018-05-27T08:51:09
C++
UTF-8
C++
false
false
1,273
cc
#include "common/common/containers.h" #include "gtest/gtest.h" namespace Envoy { namespace Common { TEST(ApplyToAllWithCompletionCallbackTest, BasicUsage) { { std::vector<int> container{1, 2, 3}; std::vector<int> cb_invoked_with; bool done_cb_called = false; applyToAllWithCleanup<int>( container, [&cb_invoked_with, &done_cb_called](int i, std::shared_ptr<Cleanup>) { cb_invoked_with.emplace_back(i); EXPECT_FALSE(done_cb_called); }, [&done_cb_called]() { done_cb_called = true; }); EXPECT_TRUE(done_cb_called); } std::vector<int> container{1, 2, 3}; std::vector<int> cb_invoked_with; bool done_cb_called = false; std::shared_ptr<Cleanup> delayed_cleanup; applyToAllWithCleanup<int>( container, [&cb_invoked_with, &done_cb_called, &delayed_cleanup](int i, std::shared_ptr<Cleanup> cleanup) { cb_invoked_with.emplace_back(i); EXPECT_FALSE(done_cb_called); delayed_cleanup = cleanup; }, [&done_cb_called]() { done_cb_called = true; }); EXPECT_FALSE(done_cb_called); delayed_cleanup.reset(); EXPECT_TRUE(done_cb_called); } } // namespace Common } // namespace Envoy
[ "noreply@github.com" ]
noreply@github.com
4295165c24b7fefe457ba808276cc3389fe6b6b4
d113765b2dd3ef72b60012e63eca260cfbe18b00
/main.cpp
e4b31a9b3bc18c024d96114b70b1e41bbaf048dd
[]
no_license
abhijitvalluri/set-solver
f36c322d700cf77d4b92a6d6cd321c08de2bf571
3e1ea7f19e4d7827cb7f724f26c3a3621b51ffa6
refs/heads/master
2021-07-19T11:39:06.575670
2017-10-29T04:28:11
2017-10-29T04:30:01
108,705,105
0
0
null
null
null
null
UTF-8
C++
false
false
5,102
cpp
#include "set.h" #include "card.h" #include <vector> #include <iostream> #include <fstream> #include <sstream> #include <exception> using namespace avalluri; class InputError: public std::exception { public: InputError(std::string error) : d_error(error) { } virtual const char* what() const throw() { return d_error.c_str(); } private: std::string d_error; }; std::vector<Card> getAllCards() { std::vector<Card> cards; Card::Color colors[] = {Card::red, Card::green, Card::purple}; Card::Shape shapes[] = {Card::oval, Card::squiggle, Card::diamond}; Card::Number numbers[] = {Card::one, Card::two, Card::three}; Card::Shading shadings[] = {Card::solid, Card::striped, Card::open}; for (int i = 0; i != 3; ++i) { for (int j = 0; j != 3; ++j) { for (int k = 0; k != 3; ++k) { for (int l = 0; l != 3; ++l) { cards.push_back(Card(colors[i], shapes[j], numbers[k], shadings[l])); } } } } return cards; } bool isValidSet(Card card1, Card card2, Card card3) { bool isColorOk = (card1.color() == card2.color() && card1.color() == card3.color()) || (card1.color() != card2.color() && card1.color() != card3.color() && card2.color() != card3.color()); bool isShapeOk = (card1.shape() == card2.shape() && card1.shape() == card3.shape()) || (card1.shape() != card2.shape() && card1.shape() != card3.shape() && card2.shape() != card3.shape()); bool isNumberOk = (card1.number() == card2.number() && card1.number() == card3.number()) || (card1.number() != card2.number() && card1.number() != card3.number() && card2.number() != card3.number()); bool isShadingOk = (card1.shading() == card2.shading() && card1.shading() == card3.shading()) || (card1.shading() != card2.shading() && card1.shading() != card3.shading() && card2.shading() != card3.shading()); return isColorOk && isShapeOk && isNumberOk && isShadingOk; } Card::Color parseColor(std::string& color) { if (color == "red") { return Card::red; } else if (color == "green") { return Card::green; } else if (color == "purple") { return Card::purple; } throw InputError("Invalid Color '" + color + "' in input"); } Card::Number parseNumber(std::string& number) { if (number == "one") { return Card::one; } else if (number == "two") { return Card::two; } else if (number == "three") { return Card::three; } throw InputError("Invalid Number '" + number + "' in input"); } Card::Shape parseShape(std::string& shape) { if (shape == "oval" || shape == "ovals") { return Card::oval; } else if (shape == "squiggle" || shape == "squiggles") { return Card::squiggle; } else if (shape == "diamond" || shape == "diamonds") { return Card::diamond; } throw InputError("Invalid Shape '" + shape + "' in input"); } Card::Shading parseShading(std::string& shading) { if (shading == "solid") { return Card::solid; } else if (shading == "striped") { return Card::striped; } else if (shading == "open") { return Card::open; } throw InputError("Invalid Shading '" + shading + "' in input"); } std::vector<Card> getCardsFromInput(std::fstream& puzzle) { std::string line; std::vector<Card> cards; while (std::getline(puzzle, line)) { std::string number, color, shading, shape; std::istringstream iss(line); if (!(iss >> number >> color >> shading >> shape)) { break; } cards.push_back(Card(parseColor(color), parseShape(shape), parseNumber(number), parseShading(shading))); } return cards; } std::vector<Set> getAllSets(std::vector<Card>& cards) { std::vector<Set> sets; for (size_t i = 0; i != cards.size(); ++i) { for (size_t j = i + 1; j != cards.size(); ++j) { for (size_t k = j + 1; k != cards.size(); ++k) { if (isValidSet(cards[i], cards[j], cards[k])) { sets.push_back(Set(cards[i], cards[j], cards[k])); } } } } return sets; } int main (int argc, char* argv[]) { if (argc != 2) { std::cerr << "Invalid number of arguments!\n" << "Usage: set_solver <puzzle_file>" << std::endl; return 1; } std::fstream puzzle(argv[1], std::ios::in); if (!puzzle.is_open()) { std::cerr << "Unable to open puzzle file" << std::endl; return 2; } std::vector<Card> cards; try { cards = getCardsFromInput(puzzle); } catch(InputError& e) { std::cerr << "Error while reading input: " << e.what() << std::endl; return 3; } std::vector<Set> sets = getAllSets(cards); for (size_t i = 0; i != sets.size(); ++i) { std::cout << "Set #" << i << " " << sets[i].toString() << std::endl; } return 0; }
[ "me@abhijitvalluri.com" ]
me@abhijitvalluri.com
22ecabba7bf1ace29cb1e063ae1500427c10ea6f
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/git/gumtree/git_repos_function_1371_git-2.11.4.cpp
408ef81aba91fbff8d27bb2d7fff1c4be8d9c624
[]
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
69
cpp
void init_diff_ui_defaults(void) { diff_detect_rename_default = 1; }
[ "993273596@qq.com" ]
993273596@qq.com
e4a96e43dd3eeefe3a8f28e418a072424c3a521a
d9bf0d3862cd47bfa78fc31f831f90be19b039cb
/core/bigint/bigunsigned.hpp
684490160426ffc7cfac66a9dd3d98ead0668549
[ "Apache-2.0" ]
permissive
kinglezhuang/zxingpp
3c3aea95d41ac00eaec43a2ec56ff2b1d77495c7
a82041843524d8883ba9abb19964fa433454d39a
refs/heads/master
2021-09-16T00:57:46.010103
2018-06-14T01:00:51
2018-06-14T01:00:51
114,210,167
1
1
null
null
null
null
UTF-8
C++
false
false
154
hpp
// // bigunsigned.hpp // zxingpp // // Created by Kingle Zhuang on 6/12/18. // Copyright © 2018 Kingle Zhuang. All rights reserved. // #pragma once
[ "kingle.zhuang@ringcentral.com" ]
kingle.zhuang@ringcentral.com
b07d51b52ef5b7ab63171453626f7d20f759b636
0150d34d5ced4266b6606c87fbc389f23ed19a45
/Cpp/SDK/W_SquadCreate_functions.cpp
db2c06fab39560a56b0d12d0fe295f1a08c461ce
[ "Apache-2.0" ]
permissive
joey00186/Squad-SDK
9aa1b6424d4e5b0a743e105407934edea87cbfeb
742feb5991ae43d6f0cedd2d6b32b949923ca4f9
refs/heads/master
2023-02-05T19:00:05.452463
2021-01-03T19:03:34
2021-01-03T19:03:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,883
cpp
// Name: S, Version: b #include "../SDK.h" #ifdef _MSC_VER #pragma pack(push, 0x01) #endif /*!!HELPER_DEF!!*/ /*!!DEFINE!!*/ namespace UFT { //--------------------------------------------------------------------------- // Functions //--------------------------------------------------------------------------- // Function W_SquadCreate.W_SquadCreate_C.Get_ButtonLocked_ToolTipWidget_1 // (Public, HasOutParms, BlueprintCallable, BlueprintEvent, BlueprintPure) // Parameters: // class UWidget* ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash) class UWidget* UW_SquadCreate_C::Get_ButtonLocked_ToolTipWidget_1() { static auto fn = UObject::FindObject<UFunction>("Function W_SquadCreate.W_SquadCreate_C.Get_ButtonLocked_ToolTipWidget_1"); UW_SquadCreate_C_Get_ButtonLocked_ToolTipWidget_1_Params params; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function W_SquadCreate.W_SquadCreate_C.Refresh Widget // (Public, HasDefaults, BlueprintCallable, BlueprintEvent) void UW_SquadCreate_C::Refresh_Widget() { static auto fn = UObject::FindObject<UFunction>("Function W_SquadCreate.W_SquadCreate_C.Refresh Widget"); UW_SquadCreate_C_Refresh_Widget_Params params; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function W_SquadCreate.W_SquadCreate_C.BIND - Num Player // (Public, HasOutParms, HasDefaults, BlueprintCallable, BlueprintEvent, BlueprintPure) // Parameters: // struct FText ReturnValue (Parm, OutParm, ReturnParm) struct FText UW_SquadCreate_C::BIND___Num_Player() { static auto fn = UObject::FindObject<UFunction>("Function W_SquadCreate.W_SquadCreate_C.BIND - Num Player"); UW_SquadCreate_C_BIND___Num_Player_Params params; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function W_SquadCreate.W_SquadCreate_C.Construct // (BlueprintCosmetic, Event, Public, BlueprintEvent) void UW_SquadCreate_C::Construct() { static auto fn = UObject::FindObject<UFunction>("Function W_SquadCreate.W_SquadCreate_C.Construct"); UW_SquadCreate_C_Construct_Params params; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function W_SquadCreate.W_SquadCreate_C.BndEvt__CreateSquad_TextBox_K2Node_ComponentBoundEvent_60_OnEditableTextBoxChangedEvent__DelegateSignature // (HasOutParms, BlueprintEvent) // Parameters: // struct FText Text (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, OutParm, ReferenceParm) void UW_SquadCreate_C::BndEvt__CreateSquad_TextBox_K2Node_ComponentBoundEvent_60_OnEditableTextBoxChangedEvent__DelegateSignature(const struct FText& Text) { static auto fn = UObject::FindObject<UFunction>("Function W_SquadCreate.W_SquadCreate_C.BndEvt__CreateSquad_TextBox_K2Node_ComponentBoundEvent_60_OnEditableTextBoxChangedEvent__DelegateSignature"); UW_SquadCreate_C_BndEvt__CreateSquad_TextBox_K2Node_ComponentBoundEvent_60_OnEditableTextBoxChangedEvent__DelegateSignature_Params params; params.Text = Text; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function W_SquadCreate.W_SquadCreate_C.BndEvt__Create_K2Node_ComponentBoundEvent_37_OnButtonClickedEvent__DelegateSignature // (BlueprintEvent) void UW_SquadCreate_C::BndEvt__Create_K2Node_ComponentBoundEvent_37_OnButtonClickedEvent__DelegateSignature() { static auto fn = UObject::FindObject<UFunction>("Function W_SquadCreate.W_SquadCreate_C.BndEvt__Create_K2Node_ComponentBoundEvent_37_OnButtonClickedEvent__DelegateSignature"); UW_SquadCreate_C_BndEvt__Create_K2Node_ComponentBoundEvent_37_OnButtonClickedEvent__DelegateSignature_Params params; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function W_SquadCreate.W_SquadCreate_C.BndEvt__Leave_K2Node_ComponentBoundEvent_107_OnButtonClickedEvent__DelegateSignature // (BlueprintEvent) void UW_SquadCreate_C::BndEvt__Leave_K2Node_ComponentBoundEvent_107_OnButtonClickedEvent__DelegateSignature() { static auto fn = UObject::FindObject<UFunction>("Function W_SquadCreate.W_SquadCreate_C.BndEvt__Leave_K2Node_ComponentBoundEvent_107_OnButtonClickedEvent__DelegateSignature"); UW_SquadCreate_C_BndEvt__Leave_K2Node_ComponentBoundEvent_107_OnButtonClickedEvent__DelegateSignature_Params params; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function W_SquadCreate.W_SquadCreate_C.BndEvt__ButtonLocked_K2Node_ComponentBoundEvent_117_OnClicked__DelegateSignature // (BlueprintEvent) // Parameters: // bool bSelected (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor) // class UMainMenu_Button_C* Button (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, InstancedReference, IsPlainOldData, NoDestructor, HasGetValueTypeHash) void UW_SquadCreate_C::BndEvt__ButtonLocked_K2Node_ComponentBoundEvent_117_OnClicked__DelegateSignature(bool bSelected, class UMainMenu_Button_C* Button) { static auto fn = UObject::FindObject<UFunction>("Function W_SquadCreate.W_SquadCreate_C.BndEvt__ButtonLocked_K2Node_ComponentBoundEvent_117_OnClicked__DelegateSignature"); UW_SquadCreate_C_BndEvt__ButtonLocked_K2Node_ComponentBoundEvent_117_OnClicked__DelegateSignature_Params params; params.bSelected = bSelected; params.Button = Button; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function W_SquadCreate.W_SquadCreate_C.Update Lock Icon // (BlueprintCallable, BlueprintEvent) void UW_SquadCreate_C::Update_Lock_Icon() { static auto fn = UObject::FindObject<UFunction>("Function W_SquadCreate.W_SquadCreate_C.Update Lock Icon"); UW_SquadCreate_C_Update_Lock_Icon_Params params; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function W_SquadCreate.W_SquadCreate_C.BndEvt__CreateSquad_TextBox_K2Node_ComponentBoundEvent_0_OnEditableTextBoxCommittedEvent__DelegateSignature // (HasOutParms, BlueprintEvent) // Parameters: // struct FText Text (ConstParm, BlueprintVisible, BlueprintReadOnly, Parm, OutParm, ReferenceParm) // TEnumAsByte<ETextCommit> CommitMethod (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) void UW_SquadCreate_C::BndEvt__CreateSquad_TextBox_K2Node_ComponentBoundEvent_0_OnEditableTextBoxCommittedEvent__DelegateSignature(const struct FText& Text, TEnumAsByte<ETextCommit> CommitMethod) { static auto fn = UObject::FindObject<UFunction>("Function W_SquadCreate.W_SquadCreate_C.BndEvt__CreateSquad_TextBox_K2Node_ComponentBoundEvent_0_OnEditableTextBoxCommittedEvent__DelegateSignature"); UW_SquadCreate_C_BndEvt__CreateSquad_TextBox_K2Node_ComponentBoundEvent_0_OnEditableTextBoxCommittedEvent__DelegateSignature_Params params; params.Text = Text; params.CommitMethod = CommitMethod; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function W_SquadCreate.W_SquadCreate_C.OnAddedToFocusPath // (BlueprintCosmetic, Event, Public, BlueprintEvent) // Parameters: // struct FFocusEvent InFocusEvent (BlueprintVisible, BlueprintReadOnly, Parm, NoDestructor) void UW_SquadCreate_C::OnAddedToFocusPath(const struct FFocusEvent& InFocusEvent) { static auto fn = UObject::FindObject<UFunction>("Function W_SquadCreate.W_SquadCreate_C.OnAddedToFocusPath"); UW_SquadCreate_C_OnAddedToFocusPath_Params params; params.InFocusEvent = InFocusEvent; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function W_SquadCreate.W_SquadCreate_C.ExecuteUbergraph_W_SquadCreate // (Final, HasDefaults) // Parameters: // int EntryPoint (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash) void UW_SquadCreate_C::ExecuteUbergraph_W_SquadCreate(int EntryPoint) { static auto fn = UObject::FindObject<UFunction>("Function W_SquadCreate.W_SquadCreate_C.ExecuteUbergraph_W_SquadCreate"); UW_SquadCreate_C_ExecuteUbergraph_W_SquadCreate_Params params; params.EntryPoint = EntryPoint; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "tahmaniak@gmail.com" ]
tahmaniak@gmail.com
c02733c26f957e74e4c5bd163f300c438aafbdd9
225bd6680b8b4cf39c9dc40a882fdf40c7adcc86
/Classes/RequestListScene.h
6d327472ef178958354939a906a2139bf44501e8
[]
no_license
ezibyte/EziSocialDemo-Cocos2dx-3x
32731f33634482aadfe70f336b692bcd79432be1
d5184962c51a7a8107bc63abe02770e831274f26
refs/heads/master
2021-01-25T10:34:26.656520
2014-07-04T01:37:25
2014-07-04T01:37:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,596
h
// // RequestListScene.h // EziSocialPluginDevelopment // // Created by Paras Mendiratta on 10/09/13. // // #ifndef __EziSocialPluginDevelopment__RequestListScene__ #define __EziSocialPluginDevelopment__RequestListScene__ #include "cocos2d.h" #include "extensions/cocos-ext.h" #include "EziSocialDelegate.h" #include "EziFBIncomingRequest.h" USING_NS_CC; USING_NS_CC_EXT; enum FRIEND_CIRCLE { ALL_FRIENDS = 0, INSTALLED_ONLY = 1, NON_PLAYING_ONLY = 2, MY_DEVICE_ONLY = 3 }; class RequestListScene : public Layer, public TableViewDataSource, public TableViewDelegate, public EziFacebookDelegate { public: // Here's a difference. Method 'init' in cocos2d-x returns bool, instead of returning 'id' in cocos2d-iphone virtual bool init(); virtual void onEnterTransitionDidFinish(); // there's no 'id' in cpp, so we recommand to return the exactly class pointer static cocos2d::Scene* scene(); // implement the "static node()" method manually CREATE_FUNC(RequestListScene); // TableView Delegate Methods... virtual void scrollViewDidScroll(ScrollView* view) {}; virtual void scrollViewDidZoom(ScrollView* view) {} virtual void tableCellTouched(TableView* table, TableViewCell* cell); virtual Size cellSizeForTable(TableView *table); virtual TableViewCell* tableCellAtIndex(TableView *table, ssize_t idx); virtual ssize_t numberOfCellsInTableView(TableView *table); // Facebook Delegate Methods... //virtual void fbFriendsCallback(int responseCode, const char* responseMessage, cocos2d::CCArray* friends); virtual void fbUserPhotoCallback(const char *userPhotoPath, const char* fbID); virtual void onKeyBackClicked(); virtual void onExit(); private: std::vector<EziFBIncomingRequest*> _fbMessagesList; std::map<std::string, EziFacebookFriend*> _friendDictionary; TableView* _tableView; int _downloadCount; void useRequest(Node* sender); void backButtonPressed(Ref* sender); void buildScene(); void acceptAllCheckboxPressed(Ref* sender); void acceptButtonPressed(Ref* sender); std::string getFancyMessage(EziFBIncomingRequest *request); std::string getFancyTitle(EziFBIncomingRequest *request); std::string getRequetIconFrameName(EziFBIncomingRequest *request); MenuItemImage* _allButton; bool _allSelected; std::unordered_map<std::string, EziFBIncomingRequest*> _selectedRequestItems; }; #endif /* defined(__EziSocialPluginDevelopment__RequestListScene__) */
[ "paras@ezibyte.com" ]
paras@ezibyte.com
b11969d2e3ab31573e9e13b7a597dec64c96a65f
6ea6691636a1a5072f12efe0aad9d778d32f126c
/OGLplus_build/include/eglplus/enums/color_buffer_type.ipp
74a6ce3a6a6b770b247052e75846d5164217cf95
[ "BSL-1.0" ]
permissive
pm990320/OpenGLLearning
6c63234da5f00193bf3799ee4b97b16bd14cdc6b
d4f83a047dbfe816631d59ea1115176514d9fad6
refs/heads/master
2021-01-10T06:21:34.592102
2014-07-04T10:42:52
2014-07-04T10:42:52
54,271,323
1
0
null
null
null
null
UTF-8
C++
false
false
576
ipp
/* * .file eglplus/enums/color_buffer_type.ipp * * Automatically generated header file. DO NOT modify manually, * edit 'source/enums/eglplus/color_buffer_type.txt' instead. * * Copyright 2010-2013 Matus Chochlik. 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) */ #if EGLPLUS_DOCUMENTATION_ONLY /// RGB_BUFFER RGBBuffer, /// LUMINANCE_BUFFER LuminanceBuffer #else // !EGLPLUS_DOCUMENTATION_ONLY #include <eglplus/enums/color_buffer_type_def.ipp> #endif
[ "patmenlove@gmail.com" ]
patmenlove@gmail.com
df4b0144d1df5e3b5c45fd068a412b34a30b3f1a
f3df44a9fdba592ae9709bdbf1f20ce87005cde9
/Lumos/src/Editor/SceneWindow.cpp
f8987c0c86f1053c10f4de3cae6750ea36492533
[ "MIT", "LicenseRef-scancode-public-domain" ]
permissive
Y-Gwork/Lumos
b2c666c608b61610ecc8ffa92479c23c1d81e11d
4363c446bf36d17bf31c2fe88d91317e8e70f1f8
refs/heads/master
2022-12-02T04:33:03.558120
2020-08-21T13:43:08
2020-08-21T13:43:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
19,118
cpp
#include "lmpch.h" #include "SceneWindow.h" #include "Editor.h" #include "Graphics/Camera/Camera.h" #include "Core/Application.h" #include "Scene/SceneManager.h" #include "Core/Engine.h" #include "Graphics/API/GraphicsContext.h" #include "Graphics/API/Texture.h" #include "Graphics/RenderManager.h" #include "Graphics/GBuffer.h" #include "Graphics/Light.h" #include "Scene/Component/SoundComponent.h" #include "Graphics/Layers/LayerStack.h" #include "Graphics/Renderers/GridRenderer.h" #include "Physics/LumosPhysicsEngine/LumosPhysicsEngine.h" #include "Physics/B2PhysicsEngine/B2PhysicsEngine.h" #include "Core/OS/Input.h" #include "Graphics/Renderers/DebugRenderer.h" #include "EditorCamera.h" #include <box2d/box2d.h> #include <imgui/imgui_internal.h> #include <imgui/plugins/ImGuizmo.h> #include <IconFontCppHeaders/IconsMaterialDesignIcons.h> namespace Lumos { SceneWindow::SceneWindow() { m_Name = ICON_MDI_GAMEPAD_VARIANT " Scene###scene"; m_SimpleName = "Scene"; m_CurrentScene = nullptr; m_ShowComponentGizmoMap[typeid(Graphics::Light).hash_code()] = true; m_ShowComponentGizmoMap[typeid(Camera).hash_code()] = true; m_ShowComponentGizmoMap[typeid(SoundComponent).hash_code()] = true; m_AspectRatio = 1.0; m_Width = 1280; m_Height = 800; } void SceneWindow::OnImGui() { Application& app = Application::Get(); auto flags = ImGuiWindowFlags_NoCollapse | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoScrollWithMouse; ImGui::SetNextWindowBgAlpha(0.0f); ImGui::Begin(m_Name.c_str(), &m_Active, flags); Camera* camera = nullptr; Maths::Transform* transform = nullptr; bool gameView = false; if(app.GetEditorState() == EditorState::Preview) { camera = m_Editor->GetCamera(); transform = &m_Editor->GetEditorCameraTransform(); auto sceneLayers = app.GetSceneLayers(); for(auto layer : *sceneLayers) { layer->SetOverrideCamera(camera, transform); } DebugRenderer::SetOverrideCamera(camera, transform); } else { gameView = true; auto sceneLayers = app.GetSceneLayers(); for(auto layer : *sceneLayers) { layer->SetOverrideCamera(nullptr, nullptr); } DebugRenderer::SetOverrideCamera(nullptr, nullptr); auto& registry = m_CurrentScene->GetRegistry(); auto cameraView = registry.view<Camera>(); if(!cameraView.empty()) { camera = &registry.get<Camera>(cameraView.front()); } } if(!gameView) ToolBar(); if(!camera) return; ImGuizmo::SetDrawlist(); auto sceneViewSize = ImGui::GetContentRegionAvail(); auto sceneViewPosition = ImGui::GetWindowPos(); auto viewportOffset = ImGui::GetCursorPos(); sceneViewPosition.x = viewportOffset.x + ImGui::GetWindowPos().x; sceneViewPosition.y = viewportOffset.y + ImGui::GetWindowPos().y; m_Editor->m_SceneWindowPos = {sceneViewPosition.x, sceneViewPosition.y}; sceneViewSize.x = ImGui::GetWindowContentRegionMax().x - ImGui::GetWindowContentRegionMin().x; sceneViewSize.y = ImGui::GetWindowContentRegionMax().y - ImGui::GetWindowContentRegionMin().y; sceneViewSize.x -= static_cast<int>(sceneViewSize.x) % 2 != 0 ? 1.0f : 0.0f; sceneViewSize.y -= static_cast<int>(sceneViewSize.y) % 2 != 0 ? 1.0f : 0.0f; if(sceneViewSize.x == 0.0f || sceneViewSize.y == 0.0f) { sceneViewSize = ImVec2(80.0f, 60.0f); } float aspect = static_cast<float>(sceneViewSize.x) / static_cast<float>(sceneViewSize.y); if(!Maths::Equals(aspect, camera->GetAspectRatio())) { camera->SetAspectRatio(aspect); } Resize(static_cast<u32>(sceneViewSize.x), static_cast<u32>(sceneViewSize.y)); ImGuiHelpers::Image(m_GameViewTexture.get(), sceneViewSize); auto windowSize = ImGui::GetWindowSize(); ImVec2 minBound = sceneViewPosition; minBound.x += viewportOffset.x; minBound.y += viewportOffset.y; ImVec2 maxBound = {minBound.x + windowSize.x, minBound.y + windowSize.y}; bool updateCamera = ImGui::IsMouseHoveringRect(minBound, maxBound); app.SetSceneActive(ImGui::IsWindowFocused() && !ImGuizmo::IsUsing() && updateCamera); if(gameView) { ImGui::End(); return; } ImGuizmo::SetRect(sceneViewPosition.x, sceneViewPosition.y, sceneViewSize.x, sceneViewSize.y); if(m_Editor->ShowGrid()) { if(camera->IsOrthographic()) { m_Editor->Draw2DGrid(ImGui::GetWindowDrawList(), { transform->GetWorldPosition().x, transform->GetWorldPosition().y}, sceneViewPosition, {sceneViewSize.x, sceneViewSize.y}, 1.0f, 1.5f); } } m_Editor->OnImGuizmo(); if(!gameView && app.GetSceneActive() && !ImGuizmo::IsUsing() && Input::GetInput()->GetMouseClicked(InputCode::MouseKey::ButtonLeft)) { auto clickPos = Input::GetInput()->GetMousePosition() - Maths::Vector2(sceneViewPosition.x, sceneViewPosition.y); m_Editor->SelectObject(m_Editor->GetScreenRay(int(clickPos.x), int(clickPos.y), camera, int(sceneViewSize.x), int(sceneViewSize.y))); } DrawGizmos(sceneViewSize.x, sceneViewSize.y, 0.0f, 40.0f, app.GetSceneManager()->GetCurrentScene()); // Not sure why 40 if(m_ShowStats && ImGui::IsWindowFocused()) { static bool p_open = true; const float DISTANCE = 5.0f; static int corner = 0; if(corner != -1) { ImVec2 window_pos = ImVec2((corner & 1) ? (sceneViewPosition.x + sceneViewSize.x - DISTANCE) : (sceneViewPosition.x + DISTANCE), (corner & 2) ? (sceneViewPosition.y + sceneViewSize.y - DISTANCE) : (sceneViewPosition.y + DISTANCE)); ImVec2 window_pos_pivot = ImVec2((corner & 1) ? 1.0f : 0.0f, (corner & 2) ? 1.0f : 0.0f); ImGui::SetNextWindowPos(window_pos, ImGuiCond_Always, window_pos_pivot); } ImGui::SetNextWindowBgAlpha(0.35f); // Transparent background if(ImGui::Begin("Example: Simple overlay", &p_open, (corner != -1 ? ImGuiWindowFlags_NoMove : 0) | ImGuiWindowFlags_NoDocking | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoSavedSettings | ImGuiWindowFlags_NoFocusOnAppearing | ImGuiWindowFlags_NoNav)) { ImGui::Text("%.2f ms (%i FPS)", 1000.0f / (float)Engine::Get().GetFPS(), Engine::Get().GetFPS()); ImGui::Separator(); ImGuiIO& io = ImGui::GetIO(); if(ImGui::IsMousePosValid()) ImGui::Text("Mouse Position: (%.1f,%.1f)", io.MousePos.x, io.MousePos.y); else ImGui::TextUnformatted("Mouse Position: <invalid>"); if(ImGui::BeginPopupContextWindow()) { if(ImGui::MenuItem("Custom", NULL, corner == -1)) corner = -1; if(ImGui::MenuItem("Top-left", NULL, corner == 0)) corner = 0; if(ImGui::MenuItem("Top-right", NULL, corner == 1)) corner = 1; if(ImGui::MenuItem("Bottom-left", NULL, corner == 2)) corner = 2; if(ImGui::MenuItem("Bottom-right", NULL, corner == 3)) corner = 3; if(p_open && ImGui::MenuItem("Close")) p_open = false; ImGui::EndPopup(); } } ImGui::End(); } const ImGuiPayload* payload = ImGui::GetDragDropPayload(); if(ImGui::BeginDragDropTarget()) { auto data = ImGui::AcceptDragDropPayload("selectable", ImGuiDragDropFlags_AcceptNoDrawDefaultRect); if(data) { std::string file = (char*)data->Data; m_Editor->FileOpenCallback(file); } ImGui::EndDragDropTarget(); } ImGui::End(); } void SceneWindow::DrawGizmos(float width, float height, float xpos, float ypos, Scene* scene) { Camera* camera = m_Editor->GetCamera(); Maths::Transform& cameraTransform = m_Editor->GetEditorCameraTransform(); auto& registry = scene->GetRegistry(); Maths::Matrix4 view = cameraTransform.GetWorldMatrix().Inverse(); Maths::Matrix4 proj = camera->GetProjectionMatrix(); #ifdef LUMOS_RENDER_API_VULKAN if(Graphics::GraphicsContext::GetRenderAPI() == Graphics::RenderAPI::VULKAN) proj.m11_ *= -1.0f; #endif Maths::Matrix4 viewProj = proj * view; const Maths::Frustum& f = camera->GetFrustum(view); ShowComponentGizmo<Graphics::Light>(width, height, xpos, ypos, viewProj, f, registry); ShowComponentGizmo<Camera>(width, height, xpos, ypos, viewProj, f, registry); ShowComponentGizmo<SoundComponent>(width, height, xpos, ypos, viewProj, f, registry); } void SceneWindow::ToolBar() { ImGui::Indent(); ImGui::PushStyleColor(ImGuiCol_Button, ImVec4(0.7f, 0.7f, 0.7f, 0.0f)); bool selected = false; { selected = m_Editor->GetImGuizmoOperation() == 4; if(selected) ImGui::PushStyleColor(ImGuiCol_Text, ImVec4(0.28f, 0.56f, 0.9f, 1.0f)); ImGui::SameLine(); if(ImGui::Button(ICON_MDI_CURSOR_DEFAULT, ImVec2(19.0f, 19.0f))) m_Editor->SetImGuizmoOperation(4); if(selected) ImGui::PopStyleColor(); ImGuiHelpers::Tooltip("Select"); } ImGui::SameLine(); ImGui::SeparatorEx(ImGuiSeparatorFlags_Vertical); ImGui::SameLine(); { selected = m_Editor->GetImGuizmoOperation() == ImGuizmo::TRANSLATE; if(selected) ImGui::PushStyleColor(ImGuiCol_Text, ImVec4(0.28f, 0.56f, 0.9f, 1.0f)); ImGui::SameLine(); if(ImGui::Button(ICON_MDI_ARROW_ALL, ImVec2(19.0f, 19.0f))) m_Editor->SetImGuizmoOperation(ImGuizmo::TRANSLATE); if(selected) ImGui::PopStyleColor(); ImGuiHelpers::Tooltip("Translate"); } { selected = m_Editor->GetImGuizmoOperation() == ImGuizmo::ROTATE; if(selected) ImGui::PushStyleColor(ImGuiCol_Text, ImVec4(0.28f, 0.56f, 0.9f, 1.0f)); ImGui::SameLine(); if(ImGui::Button(ICON_MDI_ROTATE_ORBIT, ImVec2(19.0f, 19.0f))) m_Editor->SetImGuizmoOperation(ImGuizmo::ROTATE); if(selected) ImGui::PopStyleColor(); ImGuiHelpers::Tooltip("Rotate"); } { selected = m_Editor->GetImGuizmoOperation() == ImGuizmo::SCALE; if(selected) ImGui::PushStyleColor(ImGuiCol_Text, ImVec4(0.28f, 0.56f, 0.9f, 1.0f)); ImGui::SameLine(); if(ImGui::Button(ICON_MDI_ARROW_EXPAND_ALL, ImVec2(19.0f, 19.0f))) m_Editor->SetImGuizmoOperation(ImGuizmo::SCALE); if(selected) ImGui::PopStyleColor(); ImGuiHelpers::Tooltip("Scale"); } ImGui::SameLine(); ImGui::SeparatorEx(ImGuiSeparatorFlags_Vertical); ImGui::SameLine(); { selected = m_Editor->GetImGuizmoOperation() == ImGuizmo::BOUNDS; if(selected) ImGui::PushStyleColor(ImGuiCol_Text, ImVec4(0.28f, 0.56f, 0.9f, 1.0f)); ImGui::SameLine(); if(ImGui::Button(ICON_MDI_BORDER_NONE, ImVec2(19.0f, 19.0f))) m_Editor->SetImGuizmoOperation(ImGuizmo::BOUNDS); if(selected) ImGui::PopStyleColor(); ImGuiHelpers::Tooltip("Bounds"); } ImGui::SameLine(); ImGui::SeparatorEx(ImGuiSeparatorFlags_Vertical); ImGui::SameLine(); ImGui::SameLine(); { selected = (m_Editor->SnapGuizmo() == true); if(selected) ImGui::PushStyleColor(ImGuiCol_Text, ImVec4(0.28f, 0.56f, 0.9f, 1.0f)); if(ImGui::Button(ICON_MDI_MAGNET, ImVec2(19.0f, 19.0f))) m_Editor->SnapGuizmo() = !selected; if(selected) ImGui::PopStyleColor(); ImGuiHelpers::Tooltip("Snap"); } ImGui::SameLine(); ImGui::SeparatorEx(ImGuiSeparatorFlags_Vertical); ImGui::SameLine(); if(ImGui::Button("Gizmos " ICON_MDI_CHEVRON_DOWN)) ImGui::OpenPopup("GizmosPopup"); if(ImGui::BeginPopup("GizmosPopup")) { { ImGui::Checkbox("Grid", &m_Editor->ShowGrid()); ImGui::Checkbox("Selected Gizmos", &m_Editor->ShowGizmos()); ImGui::Checkbox("View Selected", &m_Editor->ShowViewSelected()); ImGui::Separator(); ImGui::Checkbox("Camera", &m_ShowComponentGizmoMap[typeid(Camera).hash_code()]); ImGui::Checkbox("Light", &m_ShowComponentGizmoMap[typeid(Graphics::Light).hash_code()]); ImGui::Checkbox("Audio", &m_ShowComponentGizmoMap[typeid(SoundComponent).hash_code()]); ImGui::Separator(); auto physics2D = Application::Get().GetSystem<B2PhysicsEngine>(); if(physics2D) { u32 flags = physics2D->GetDebugDrawFlags(); bool show2DShapes = flags & b2Draw::e_shapeBit; if(ImGui::Checkbox("Shapes (2D)", &show2DShapes)) { if(show2DShapes) flags += b2Draw::e_shapeBit; else flags -= b2Draw::e_shapeBit; } bool showCOG = flags & b2Draw::e_centerOfMassBit; if(ImGui::Checkbox("Centre of Mass (2D)", &showCOG)) { if(showCOG) flags += b2Draw::e_centerOfMassBit; else flags -= b2Draw::e_centerOfMassBit; } bool showJoint = flags & b2Draw::e_jointBit; if(ImGui::Checkbox("Joint Connection (2D)", &showJoint)) { if(showJoint) flags += b2Draw::e_jointBit; else flags -= b2Draw::e_jointBit; } bool showAABB = flags & b2Draw::e_aabbBit; if(ImGui::Checkbox("AABB (2D)", &showAABB)) { if(showAABB) flags += b2Draw::e_aabbBit; else flags -= b2Draw::e_aabbBit; } bool showPairs = static_cast<bool>(flags & b2Draw::e_pairBit); if(ImGui::Checkbox("Broadphase Pairs (2D)", &showPairs)) { if(showPairs) flags += b2Draw::e_pairBit; else flags -= b2Draw::e_pairBit; } physics2D->SetDebugDrawFlags(flags); } auto physics3D = Application::Get().GetSystem<LumosPhysicsEngine>(); if(physics3D) { u32 flags = physics3D->GetDebugDrawFlags(); bool showCollisionShapes = flags & PhysicsDebugFlags::COLLISIONVOLUMES; if(ImGui::Checkbox("Collision Volumes", &showCollisionShapes)) { if(showCollisionShapes) flags += PhysicsDebugFlags::COLLISIONVOLUMES; else flags -= PhysicsDebugFlags::COLLISIONVOLUMES; } bool showConstraints = static_cast<bool>(flags & PhysicsDebugFlags::CONSTRAINT); if(ImGui::Checkbox("Constraints", &showConstraints)) { if(showConstraints) flags += PhysicsDebugFlags::CONSTRAINT; else flags -= PhysicsDebugFlags::CONSTRAINT; } bool showManifolds = static_cast<bool>(flags & PhysicsDebugFlags::MANIFOLD); if(ImGui::Checkbox("Manifolds", &showManifolds)) { if(showManifolds) flags += PhysicsDebugFlags::MANIFOLD; else flags -= PhysicsDebugFlags::MANIFOLD; } bool showCollisionNormals = flags & PhysicsDebugFlags::COLLISIONNORMALS; if(ImGui::Checkbox("Collision Normals", &showCollisionNormals)) { if(showCollisionNormals) flags += PhysicsDebugFlags::COLLISIONNORMALS; else flags -= PhysicsDebugFlags::COLLISIONNORMALS; } bool showAABB = flags & PhysicsDebugFlags::AABB; if(ImGui::Checkbox("AABB", &showAABB)) { if(showAABB) flags += PhysicsDebugFlags::AABB; else flags -= PhysicsDebugFlags::AABB; } bool showLinearVelocity = flags & PhysicsDebugFlags::LINEARVELOCITY; if(ImGui::Checkbox("Linear Velocity", &showLinearVelocity)) { if(showLinearVelocity) flags += PhysicsDebugFlags::LINEARVELOCITY; else flags -= PhysicsDebugFlags::LINEARVELOCITY; } bool LINEARFORCE = flags & PhysicsDebugFlags::LINEARFORCE; if(ImGui::Checkbox("Linear Force", &LINEARFORCE)) { if(LINEARFORCE) flags += PhysicsDebugFlags::LINEARFORCE; else flags -= PhysicsDebugFlags::LINEARFORCE; } bool BROADPHASE = flags & PhysicsDebugFlags::BROADPHASE; if(ImGui::Checkbox("Broadphase", &BROADPHASE)) { if(BROADPHASE) flags += PhysicsDebugFlags::BROADPHASE; else flags -= PhysicsDebugFlags::BROADPHASE; } bool showPairs = flags & PhysicsDebugFlags::BROADPHASE_PAIRS; if(ImGui::Checkbox("Broadphase Pairs", &showPairs)) { if(showPairs) flags += PhysicsDebugFlags::BROADPHASE_PAIRS; else flags -= PhysicsDebugFlags::BROADPHASE_PAIRS; } physics3D->SetDebugDrawFlags(flags); } ImGui::EndPopup(); } } ImGui::SameLine(); ImGui::SeparatorEx(ImGuiSeparatorFlags_Vertical); ImGui::SameLine(); { selected = m_ShowStats; if(selected) ImGui::PushStyleColor(ImGuiCol_Text, ImVec4(0.28f, 0.56f, 0.9f, 1.0f)); ImGui::SameLine(); if(ImGui::Button("Stats")) { m_ShowStats = !m_ShowStats; } if(selected) ImGui::PopStyleColor(); ImGuiHelpers::Tooltip("Show Statistics"); } ImGui::SameLine(); ImGui::SeparatorEx(ImGuiSeparatorFlags_Vertical); ImGui::SameLine(); //Editor Camera Settings auto& camera = *m_Editor->GetCamera(); bool ortho = camera.IsOrthographic(); selected = !ortho; if(selected) ImGui::PushStyleColor(ImGuiCol_Text, ImVec4(0.28f, 0.56f, 0.9f, 1.0f)); if(ImGui::Button(ICON_MDI_AXIS_ARROW" 3D")) { if(ortho) { camera.SetIsOrthographic(false); m_Editor->GetEditorCameraController().SetMode(false); } } if(selected) ImGui::PopStyleColor(); ImGui::SameLine(); selected = ortho; if(selected) ImGui::PushStyleColor(ImGuiCol_Text, ImVec4(0.28f, 0.56f, 0.9f, 1.0f)); if(ImGui::Button(ICON_MDI_ANGLE_RIGHT "2D")) { if(!ortho) { camera.SetIsOrthographic(true); m_Editor->GetEditorCameraTransform().SetLocalOrientation(Maths::Quaternion::EulerAnglesToQuaternion(0.0f, 0.0f, 0.0f)); m_Editor->GetEditorCameraController().SetMode(true); } } if(selected) ImGui::PopStyleColor(); ImGui::PopStyleColor(); ImGui::Unindent(); } void SceneWindow::OnNewScene(Scene* scene) { m_AspectRatio = 1.0f; m_CurrentScene = scene; auto sceneLayers = Application::Get().GetSceneLayers(); for(auto layer : *sceneLayers) { layer->SetRenderTarget(m_GameViewTexture.get(), true); layer->SetOverrideCamera(m_Editor->GetCamera(), &m_Editor->GetEditorCameraTransform()); } DebugRenderer::SetRenderTarget(m_GameViewTexture.get(), true); DebugRenderer::SetOverrideCamera(m_Editor->GetCamera(), &m_Editor->GetEditorCameraTransform()); } void SceneWindow::Resize(u32 width, u32 height) { bool resize = false; LUMOS_ASSERT(width > 0 && height > 0, "Scene View Dimensions 0"); Application::Get().SetSceneViewDimensions(width, height); if(m_Width != width || m_Height != height) { resize = true; m_Width = width; m_Height = height; } if(!m_GameViewTexture) m_GameViewTexture = Ref<Graphics::Texture2D>(Graphics::Texture2D::Create()); if(resize) { Graphics::GraphicsContext::GetContext()->WaitIdle(); m_GameViewTexture->BuildTexture(Graphics::TextureFormat::RGBA32, m_Width, m_Height, false, false); auto sceneLayers = Application::Get().GetSceneLayers(); for(auto layer : *sceneLayers) { layer->SetRenderTarget(m_GameViewTexture.get(), true, false); //Prevent framebuffer being rebuilt as it needs resizing after } DebugRenderer::SetRenderTarget(m_GameViewTexture.get(), false); if(!m_Editor->GetGridRenderer()) m_Editor->CreateGridRenderer(); m_Editor->GetGridRenderer()->SetRenderTarget(m_GameViewTexture.get(), false); m_Editor->GetGridRenderer()->OnResize(m_Width, m_Height); WindowResizeEvent e(width, height); auto& app = Application::Get(); app.GetRenderManager()->OnResize(width, height); for(auto layer : *sceneLayers) { layer->OnEvent(e); } DebugRenderer::OnResize(width, height); Graphics::GraphicsContext::GetContext()->WaitIdle(); } } }
[ "jmorton06@live.co.uk" ]
jmorton06@live.co.uk
7e73e4991e80bb33b5b1abe0c40d52a68ca606fa
3fbbe55cfe4ad15a89e87531e9216437cfa71afc
/Algorithm/链表测试2.cpp
f58981504825a0aceb026c20776b016a82f89463
[]
no_license
Chenyuacey/Data-Structure
0d776518542844c8cdc01f4770926d7c16d2126a
026be5147cb663308dd3ac05e988359d388a51f9
refs/heads/master
2021-01-23T04:14:11.150442
2017-07-02T12:29:58
2017-07-02T12:29:58
92,920,298
1
0
null
null
null
null
GB18030
C++
false
false
1,788
cpp
#include<stdio.h> #include<stdlib.h> #include<string.h> #include<time.h> #define maxn 5 typedef int ElementType; typedef struct LNode *List; struct LNode{ ElementType data; List next; }; struct LNode L; List Ptrl; void create(List *l,int n){ List p,r; int i; srand(time(0)); *l=(List)malloc(sizeof(struct LNode)); (*l)->data=rand()%100+1; r=*l; for(i=0;i<n;i++){ p=(List)malloc(sizeof(struct LNode)); p->data=rand()%100+1; r->next=p; r=p; } r->next=NULL; } void print(List l,int n){ int i; for(i=0;i<n;i++){ printf("%d\n",(l)->data); l=(l)->next; } } List FindKth(int k,List l){ List p=l; int i=1; while(p!=NULL&&i<k){ p=p->next; i++; } if(i==k) return p; else return NULL; } List Insert(List l,int place,int m){ List p,s; if(place==1){ p=(List)malloc(sizeof(struct LNode)); p->data=m; p->next=l; return p; } s=FindKth(place-1,l); if(s==NULL) { printf("error\n"); return NULL; } else{ p=(List)malloc(sizeof(struct LNode)); p->data=m; p->next=s->next; s->next=p; return l; } } List Delete(List l,int place){ List p,s; if(place==1) { s=l; if(l!=NULL) l=l->next; else return NULL; free(s); return l; } p=FindKth(place-1,l); if(p==NULL) { printf("%d not ex",place-1); }else if(p->next==NULL) { printf("%d not ex",place); } else { s=p->next; p->next=s->next; free(s); return l; } } int main(){ List temp; create(&Ptrl,5); print(Ptrl,5); printf("\n"); Ptrl=Insert(Ptrl,3,80);//潜在危险。。若找不到place,返回NULL,打印出错,程序崩溃。 位置数为6,7的时候不对。 print(Ptrl,6); printf("\n"); Ptrl=Delete(Ptrl,4); print(Ptrl,5); return 0; }
[ "noreply@github.com" ]
noreply@github.com
fb3e5da06e2fed382fa7bd4931c1c0f7fbd4bf55
43994f789cccbd1b3e72468cfb7977f5fa6de633
/nfsuclient/servers.h
7520c44ea1f5e6d884447ed9f1a09c3437828d0e
[]
no_license
UTINKA/NFS-U-Client.Server
4686e5c8cbfa5b288237c2fdebd35b74b6181e47
49d61b273e8cca5a401a2d76d7e6a5e2645233c8
refs/heads/master
2021-01-24T07:55:27.591619
2018-02-26T12:13:09
2018-02-26T12:13:09
122,964,890
0
1
null
null
null
null
UTF-8
C++
false
false
632
h
#include <winsock2.h> #include <windows.h> class ClServerClass { public: char IP[100]; unsigned long ip; unsigned int Rooms, Users; unsigned long TimeOnline; bool IsWin32; char Name[100]; bool IsOnline; bool IsFav; ClServerClass *Next; void Update (); char Version[100]; }; class ClServersClass { public: ClServerClass *First; ClServerClass *Last; unsigned int Count; void AddServer (ClServerClass * Server); void RemoveServer (ClServerClass * Server); void Save (); void Load (); void Clear (); void Update (); void UpdateFromWeb (); ClServerClass * ServerFromIP (unsigned long ip); };
[ "harpywar@gmail.com" ]
harpywar@gmail.com
484c58da33891063d1f8733f391bf2399e2ffc8a
e89222ba4acb35b2c9c4e8b8e400e8eeb0880c2f
/capd_tubex/tubex_TubeVectorODE.cpp
4e630983fd936d9cd1d3896810b94f3da0d5dbb5
[]
no_license
bneveu/tubex-capd
54029883dc8fbec216129dadd4426a9b9be4eeff
6539f754effece232ed18d5a200792735901027f
refs/heads/master
2023-06-20T11:15:43.425253
2021-06-14T09:16:22
2021-06-14T09:16:22
343,825,798
0
0
null
null
null
null
UTF-8
C++
false
false
913
cpp
/** * TubeVectorODE class * ---------------------------------------------------------------------------- * \date 2020 * \author Julien Damers * \copyright Copyright 2020 Tubex * \license This program is distributed under the terms of * the GNU Lesser General Public License (LGPL). */ #include "tubex_TubeVectorODE.h" #include "tubex_Exception.h" using namespace std; using namespace ibex; using namespace tubex; namespace tubex { TubeVector TubeVectorODE(const Interval& domain, const TFunction& f, const IntervalVector& x0, double timestep, int mode) { switch(mode) { case CAPD_MODE: return capd2tubex(domain, domain, f, x0, timestep); // Additional integration tools might be added in the future default: throw Exception("TubeVectorODE", "integration tool not available"); } } }
[ "Bertrand.Neveu@enpc.fr" ]
Bertrand.Neveu@enpc.fr
227a90bc4b18c56c4ab6bc70e6358e15179b7ef1
301e73e83ffb3fdc36e057806552972a88235be5
/dhcp/send_packet.h
cdb8ddaea6cc4bee5b6104d9ef8022856d95c77c
[]
no_license
IMyoungho/Network
1121b42be6de214b7cfc9767a4e69fb17c34b0a5
7b7e43c23435acf50ffcf16f6ea5155b6787f259
refs/heads/master
2022-11-24T02:18:15.729917
2022-11-22T12:46:56
2022-11-22T12:46:56
126,545,894
0
1
null
2022-11-22T12:40:24
2018-03-23T22:44:59
C++
UTF-8
C++
false
false
359
h
#ifndef SEND_PACKET_H #define SEND_PACKET_H #include <iostream> #include <pcap.h> #include <unistd.h> #include <netinet/ether.h> #include <netinet/ip.h> #include <netinet/udp.h> #include <thread> #include <pthread.h> #include "parse.h" #include <atomic> using namespace std; void send_arp(parse *ps); void send_dhcp_offer(parse *ps); #endif // SEND_PACKET_H
[ "root@localhost.localdomain" ]
root@localhost.localdomain
cc450d30825111d29ca79fda3ec6a1006b25e499
a35b30a7c345a988e15d376a4ff5c389a6e8b23a
/boost/asio/windows/basic_handle.hpp
532fe0d8b4c2ee24762475ef3fcc4b5c09c28032
[]
no_license
huahang/thirdparty
55d4cc1c8a34eff1805ba90fcbe6b99eb59a7f0b
07a5d64111a55dda631b7e8d34878ca5e5de05ab
refs/heads/master
2021-01-15T14:29:26.968553
2014-02-06T07:35:22
2014-02-06T07:35:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
71
hpp
#include "thirdparty/boost_1_55_0/boost/asio/windows/basic_handle.hpp"
[ "liuhuahang@xiaomi.com" ]
liuhuahang@xiaomi.com
e925e65d1daf77a9add06702184a435ad8b7cb91
7379860525085cd6ba8d50b9d4da333ee1ebbe39
/20181006_기능대회다시/StartButton.h
f5ca6201b903a12a481287ed42b1b99df722ebbf
[]
no_license
Dead-DogBird/2018technic
fdff7b8a2ec2f55759ea84547a27762e538c5557
6996e65cf9aa0a9d52e615600be3275c4b5748b3
refs/heads/master
2020-09-04T21:07:24.672929
2019-11-06T02:11:32
2019-11-06T02:11:32
219,892,118
1
0
null
null
null
null
UTF-8
C++
false
false
165
h
#pragma once #include "Button.h" class StartButton : public Button { public: StartButton(); ~StartButton(); void Start(); void LateUpdate(); void Click(); };
[ "48205134+Dead-DogBird@users.noreply.github.com" ]
48205134+Dead-DogBird@users.noreply.github.com
89badafefebf75b1bc9e207269a55d1e32347eb5
72678e7004ded7ec50f413c11f9e29e6569e96c4
/Financiera.cpp
a3237875dee80912c90060e985144508987256af
[]
no_license
alejandrorp154/TareaPAv
4f7d275de6d6e6912192f9442db253d7fb8f4654
b6c3e2b32098f0c6055cf3d57eea0ad8ef27d477
refs/heads/main
2023-07-18T22:36:06.904352
2021-09-15T22:49:10
2021-09-15T22:49:10
406,944,542
0
0
null
null
null
null
UTF-8
C++
false
false
278
cpp
#include "Financiera.h" Financiera::Financiera(){} Financiera::Financiera(string n,float d){ nombre=n; descuento=d; } Financiera::~Financiera(){} string Financiera::getNombre(){ return this->nombre; } float Financiera::getDescuento(){ return this->descuento; }
[ "alejandro.rp154@gmail.com" ]
alejandro.rp154@gmail.com
524a32331aaafccf9fa8b9c11b140c1130869132
e604ec021b876caf30886b40afdc821f440ae038
/Codes/success/Artist_place.h
f6c056555b965848a2c8c907debcf21c34bdfc6d
[ "MIT" ]
permissive
hamedsteiner/Gerdabify_web
66da8d476e7bd6d561351939c539a14eec529729
78af9a38668b4026692fa6f44d459b253b305107
refs/heads/master
2022-12-08T15:28:54.814990
2020-09-05T02:06:05
2020-09-05T02:06:05
292,717,644
0
0
null
null
null
null
UTF-8
C++
false
false
892
h
#ifndef ARTISTPLACE_H #define ARTISTPLACE_H #include <cstdlib> #include <vector> #include <cmath> #include <string> #include <vector> #include <cmath> #include <sstream> #include <iostream> #include <algorithm> #include "place.h" #include "static_declare.h" class Artist; using namespace std; class Artistplace: public Place { public: Artistplace(Artist* pointed_artist, UserData user ); Place* goToHome(); Place* goToPlaylists(); Place* goToLibrary(); Place* goToAlbum(); Place* goToArtist(); List list(); List listMusics(); //void play(); //void addTo(string music_thing); //void remove(string music_name); void rate(int rate); string getArtist(); string getAlbum(); string getName(); string getCompleteName(); int getRate(); int getUserRate(); int getCriticRate(); private: Artist* pointed_artist; UserData current_user; }; #endif // ARTISTPLACE_H
[ "hamedsteiner@hamedsteiner.local" ]
hamedsteiner@hamedsteiner.local
9d9ed92c144e74f920b5d8b418623df35376c5c1
82815230eeaf24d53f38f2a3f144dd8e8d4bc6b5
/Airfoil/wingMotion/wingMotion2D_pimpleFoam/0.89/U
dfb6a32eb0af6ef6acce8ec54b72e840894700e9
[ "MIT" ]
permissive
ishantja/KUHPC
6355c61bf348974a7b81b4c6bf8ce56ac49ce111
74967d1b7e6c84fdadffafd1f7333bf533e7f387
refs/heads/main
2023-01-21T21:57:02.402186
2020-11-19T13:10:42
2020-11-19T13:10:42
312,429,902
0
0
null
null
null
null
UTF-8
C++
false
false
477,266
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v1912 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volVectorField; location "0.89"; object U; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 1 -1 0 0 0 0]; internalField nonuniform List<vector> 12556 ( (99.99873482 0.00304128906 -3.802030695e-21) (99.99836265 0.01013778855 2.840616162e-25) (99.99731728 0.0210448672 -3.794082334e-21) (99.99557893 0.03821314362 -3.76823595e-21) (99.99979388 0.02977960757 3.62944471e-21) (99.99781205 0.04848124264 0) (99.99666051 0.07738891126 0) (99.99631645 0.1170506849 -6.334563711e-21) (99.99529269 0.1693783131 7.364042576e-22) (99.99460353 0.2328455834 -4.760677669e-21) (99.99477682 0.3000080418 6.384238867e-22) (99.99628516 0.3571361805 0) (99.99895984 0.3881511207 0) (100.0021672 0.3825445601 1.184803414e-21) (100.0043174 0.3441277245 -1.669852217e-21) (100.0051984 0.2863812901 9.270455226e-22) (100.0050023 0.2238479836 0) (100.0044952 0.1667723834 1.474423853e-21) (100.0041724 0.1181577386 6.047405278e-21) (100.0022338 0.08286288818 -1.686511684e-21) (100.0089051 0.09441741196 -1.463379316e-20) (100.0060929 0.05823607144 0) (100.0044526 0.0309521092 -1.833939739e-21) (100.0042716 0.009744406708 -1.290896714e-20) (99.98875099 0.008046071817 1.523588675e-20) (99.98445829 0.02718835918 3.804417591e-21) (99.97478102 0.05704182818 2.656367319e-20) (99.95819126 0.1043695758 -1.137662315e-20) (99.96105521 0.1402608753 3.65763793e-21) (99.93572644 0.2307617442 -4.526615326e-23) (99.90256273 0.368603511 0) (99.88450536 0.4929368849 -6.378829187e-21) (99.84755493 0.7215457817 -5.887993978e-21) (99.81889264 1.007117239 -1.017811431e-20) (99.81458191 1.320103203 -4.157288243e-21) (99.85027354 1.599076188 -7.621835087e-21) (99.92709292 1.762147835 8.560230238e-23) (100.0179601 1.754618813 3.867874524e-22) (100.0921386 1.588365899 -5.468461655e-22) (100.1293144 1.323816955 4.755465508e-21) (100.1336146 1.034084763 -9.13116268e-21) (100.1153953 0.7722179342 0) (100.1205691 0.5785821511 -2.558564846e-20) (100.0855993 0.3936608069 4.92159784e-20) (100.0836654 0.2695536287 1.416908561e-20) (100.0583233 0.1657091096 2.915246751e-20) (100.0434767 0.08837574424 -2.923887406e-20) (100.0379215 0.02787914464 1.474385311e-20) (99.97006235 0.01020092883 -1.520198193e-20) (99.95795909 0.03535083619 -3.053349453e-20) (99.93168142 0.07638220625 -6.841780606e-20) (99.88767816 0.1436151991 9.10154483e-20) (99.86625571 0.2192812271 -7.510215778e-21) (99.79038021 0.371765334 -7.294714117e-21) (99.68839914 0.6063948844 -1.265511082e-20) (99.63059816 0.8628701616 0) (99.51191771 1.296123761 2.442284509e-20) (99.41634073 1.855550967 3.268458817e-20) (99.40531009 2.491746583 0) (99.54293569 3.078937983 0) (99.83029589 3.445379764 -3.622326474e-21) (100.173401 3.440392045 1.532801871e-20) (100.4335889 3.080978115 -1.981662769e-20) (100.5495736 2.531127553 3.793999771e-21) (100.5391296 1.94077016 -9.785274834e-21) (100.4608394 1.414295073 -2.281439973e-20) (100.3987932 0.9875630378 -1.535428131e-19) (100.2907394 0.6629087944 -3.398270777e-20) (100.2312952 0.4082051546 -1.451552701e-20) (100.1637526 0.2490680219 3.297565324e-20) (100.1228505 0.1328718558 -3.703738582e-21) (100.1051226 0.04174356608 0) (99.94883819 0.007822770162 -7.665923829e-21) (99.92569457 0.02938856588 5.36590961e-20) (99.87629003 0.07065947463 -1.535258858e-20) (99.79536425 0.1417092731 0) (99.73091953 0.2470302297 0) (99.58329683 0.4410787027 -5.905953806e-20) (99.37666659 0.7501502969 -1.181133034e-19) (99.2107694 1.126685247 2.769963536e-20) (98.93361117 1.753831209 -3.973269563e-20) (98.69228874 2.592983328 1.956334425e-19) (98.61064472 3.622827872 -1.741440726e-19) (98.86326729 4.703775751 1.41206148e-19) (99.5565211 5.441653941 5.76171007e-21) (100.4348467 5.436771956 3.605159714e-21) (101.0610543 4.736149661 -1.444239346e-20) (101.2811786 3.736550785 0) (101.2197002 2.769244384 8.81351494e-20) (101.0249493 1.961834279 0) (100.8263215 1.302364363 5.56572559e-20) (100.5999008 0.8541389325 -4.293977141e-20) (100.4377467 0.4885354131 -3.713231058e-20) (100.3114893 0.2943631772 1.878980201e-20) (100.2329717 0.1551901167 -3.770097735e-21) (100.1971868 0.04835498779 0) (99.93592647 -0.0001255293875 0) (99.90000348 0.005818630259 0) (99.82402898 0.03385990207 7.758087096e-21) (99.69898875 0.09138914982 1.170624204e-20) (99.58240704 0.2107310469 1.93373588e-20) (99.34102888 0.4154900248 0) (99.00132269 0.7450995031 0) (98.66870559 1.209568821 -1.740139126e-19) (98.15626773 1.975634571 -1.163580665e-19) (97.63565982 3.06733061 0) (97.26755463 4.622189465 -6.954743778e-21) (97.53352487 6.564233423 -2.972214894e-19) (98.96427986 8.11068752 -1.012382401e-19) (100.9638832 8.079045397 1.311650194e-19) (102.2208551 6.669260812 -1.730027158e-20) (102.5012038 4.905764688 -1.573586449e-19) (102.2316577 3.425996175 -2.50708643e-20) (101.8034379 2.331033098 -4.548280213e-22) (101.3799974 1.467170113 -9.168859365e-20) (100.9882342 0.9353466459 7.628474796e-21) (100.6773056 0.4888793426 0) (100.478047 0.2896183486 3.8418609e-21) (100.3535266 0.1486874852 -2.885140813e-21) (100.2956586 0.04565083051 -9.568734686e-22) (99.94334839 -0.01396693397 0) (99.89443261 -0.03643600211 0) (99.79225564 -0.03765473733 -1.553415377e-20) (99.62124289 -0.01017847253 3.16572742e-20) (99.44564357 0.1007185496 0) (99.10357432 0.2759730568 0) (98.6101594 0.5754725645 2.471803346e-20) (98.07850251 1.056565212 0) (97.27724418 1.80998691 0) (96.26045143 3.028542515 -4.139644724e-19) (95.15839183 5.123933402 0) (94.82126955 8.612943652 2.494040478e-19) (97.62324117 12.34586135 0) (102.3416365 11.97488443 0) (104.4578626 8.798844331 0) (104.4197291 5.860255387 -2.411761755e-19) (103.6146689 3.776772763 0) (102.7504551 2.415722105 -3.051619629e-20) (102.0147187 1.426060262 2.356116721e-20) (101.4112076 0.8713794293 -1.57740632e-20) (100.9198176 0.3969272959 0) (100.6365336 0.2263538496 0) (100.4618017 0.1089649877 -9.70157559e-22) (100.3800365 0.03244358993 -2.910647068e-21) (99.98260925 -0.03333029992 3.803299528e-21) (99.92208425 -0.09581958701 -3.83172876e-21) (99.79749362 -0.1411506587 7.816174436e-21) (99.58658171 -0.1623772329 -2.857196611e-20) (99.34691972 -0.08312650892 6.03952978e-23) (98.91577997 0.02359863492 2.441612413e-20) (98.28216306 0.2370270966 -4.191386356e-20) (97.56411953 0.6297617551 0) (96.45297512 1.223008162 -1.516302833e-19) (94.82431586 2.248929712 0) (92.39223567 4.228442792 -7.684495247e-20) (88.93112103 9.269789976 2.012415632e-19) (93.24831751 20.31349425 1.871111895e-20) (107.0752218 17.80770926 -4.551655401e-19) (108.6086733 10.4680034 -3.520127756e-19) (107.1301534 6.066394955 -1.607516648e-19) (105.3005745 3.549343816 4.773444258e-21) (103.7831483 2.103727491 0) (102.6325137 1.119179087 0) (101.8135182 0.6305901511 8.593417272e-21) (101.1240052 0.2117007097 2.546274229e-21) (100.7565801 0.099510325 -3.012887903e-21) (100.534497 0.03541723464 -3.430264701e-21) (100.4294836 0.008723934423 8.261035036e-21) (100.0635429 -0.0570825528 -3.803708127e-21) (99.99426789 -0.1686651773 3.833113484e-21) (99.85358584 -0.2694010246 -4.865067138e-21) (99.61424719 -0.3537170171 -3.271708004e-21) (99.32069812 -0.3279352841 1.394173023e-20) (98.82261605 -0.3204400701 8.303245338e-21) (98.09040999 -0.2482350542 -2.093414557e-21) (97.24800138 -0.02816180513 1.444932903e-19) (95.91523225 0.251031309 0) (93.88201937 0.7041952792 0) (90.52703445 1.340205405 -2.090661582e-19) (83.93680521 2.176839729 -1.361505484e-19) (120.3014538 21.74539135 3.901619152e-20) (114.7595062 9.304267895 0) (110.2215407 4.750232167 -2.0449557e-19) (106.9661075 2.501331148 -6.534391013e-21) (104.7247777 1.31654752 -1.550740474e-19) (103.1166334 0.5367195184 -4.558617885e-21) (102.1204808 0.2256562304 1.941244931e-20) (101.243672 -0.0622689062 -3.104340653e-21) (100.8079812 -0.08248800159 2.540878432e-21) (100.5484932 -0.06744894947 -4.834384568e-22) (100.4238575 -0.02445845954 -7.762766896e-21) (100.1932976 -0.08353032108 -1.837268099e-21) (100.1191374 -0.2497267243 -1.380980478e-21) (99.97041534 -0.4124642235 -4.730490572e-22) (99.71710944 -0.5682428756 1.434064213e-21) (99.3847387 -0.6109968862 -2.614949853e-23) (98.85363651 -0.7197467296 0) (98.08113913 -0.8139687443 1.093199467e-20) (97.19421158 -0.8049419497 1.472767273e-19) (95.81004876 -0.8811773723 0) (93.79980389 -1.035301159 9.533006864e-20) (90.92053076 -1.589489738 0) (87.57263589 -3.394485962 -3.490283649e-19) (133.354256 8.501633684 0) (119.4665794 3.62880818 -3.372267219e-19) (112.4612559 1.652198778 0) (108.1059038 0.6311534292 -1.919809797e-19) (105.3231447 0.1154830511 0) (103.362616 -0.2575507377 -4.6613418e-21) (102.2535028 -0.3121166026 1.091888302e-20) (101.244005 -0.3988295613 1.06645075e-21) (100.7664704 -0.3032791797 0) (100.4842176 -0.1909258849 3.915962835e-21) (100.3467049 -0.06442706972 3.870416378e-21) (100.3753764 -0.1106683925 3.622052359e-21) (100.3005983 -0.3328410172 5.322474814e-23) (100.1525677 -0.558836946 0) (99.90080468 -0.788106328 1.895100787e-22) (99.54797066 -0.9064250864 -1.919273021e-21) (99.01861677 -1.132878904 2.043903461e-21) (98.26373512 -1.391130034 0) (97.40176873 -1.580975829 -1.836353556e-20) (96.0984409 -1.948754684 -4.085290144e-19) (94.30820698 -2.480640992 -1.1356e-20) (92.02516546 -3.375840629 9.853605764e-20) (89.86764796 -4.674589579 -9.18094516e-23) (132.0421457 -6.816205692 1.226567177e-20) (119.7227082 -3.54911719 -5.393610402e-19) (112.7702853 -2.255687307 7.616353817e-20) (108.2770047 -1.650659985 0) (105.381641 -1.305383801 -4.060679785e-20) (103.2931865 -1.152849119 3.951496994e-20) (102.1667662 -0.9170823055 0) (101.1038487 -0.7613652656 -1.044694911e-21) (100.6173826 -0.5403705194 -4.33280817e-21) (100.329919 -0.3232847484 4.836059485e-22) (100.1880206 -0.1073669862 0) (100.609324 -0.1365613949 -1.784628964e-21) (100.5379423 -0.4119359564 1.800496793e-21) (100.3985671 -0.6973172976 1.758741567e-21) (100.1639633 -0.9963324298 -1.64341675e-21) (99.80674356 -1.189502684 -1.895962562e-21) (99.30952405 -1.521723407 0) (98.6163832 -1.923691667 -1.826664235e-20) (97.82541198 -2.279584721 1.032874981e-19) (96.65806904 -2.857640604 0) (95.08328509 -3.6072902 0) (93.10819354 -4.602738535 0) (91.23419435 -5.629713403 2.624037672e-19) (124.2986503 -15.7367442 0) (116.4865541 -9.06443244 4.415562349e-19) (111.2227082 -5.653128121 0) (107.4446195 -3.763198622 0) (104.8644667 -2.667046778 -1.948123054e-20) (102.8970905 -2.011222217 0) (101.8560456 -1.506134324 -2.588616197e-20) (100.8200682 -1.109730772 -1.309597618e-20) (100.3585376 -0.7690511834 9.874327591e-22) (100.0834681 -0.4516317569 -3.13045425e-21) (99.94574364 -0.1491520466 4.583403544e-22) (100.8909192 -0.1595032277 6.560090908e-21) (100.8264606 -0.4815781655 0) (100.7018647 -0.8167282736 -1.755310358e-21) (100.4955119 -1.183011923 0) (100.1446202 -1.440284376 0) (99.70750595 -1.856828419 -5.649828605e-21) (99.10585521 -2.373394018 -1.725657116e-20) (98.41250283 -2.85922215 3.30114924e-20) (97.40393409 -3.589800421 -7.279084426e-20) (96.01829491 -4.503455502 -7.783963945e-20) (94.19559706 -5.641980107 -2.404685784e-19) (92.32235045 -6.720547642 1.023390382e-19) (115.6480347 -19.25603192 -1.300929413e-19) (111.8008563 -11.97630621 0) (108.5987745 -7.821507434 8.489206584e-20) (105.9126341 -5.297694205 -7.820700251e-20) (103.8978797 -3.746677541 7.14281658e-20) (102.2302401 -2.718354038 2.072485254e-21) (101.3541237 -2.01001182 -3.15632254e-20) (100.4107109 -1.413545658 7.749939662e-21) (100.0008473 -0.9667717139 0) (99.75213609 -0.5644552709 3.605289565e-21) (99.62578809 -0.1860881969 0) (101.21316 -0.1788683059 6.551720906e-21) (101.1578068 -0.5407380123 1.035252993e-19) (101.0509642 -0.9165244373 -2.086314966e-19) (100.8760833 -1.335478606 -6.38691905e-22) (100.5634819 -1.640293568 -1.652819084e-21) (100.1910042 -2.118756464 0) (99.69945391 -2.718023874 -7.32760991e-21) (99.11619197 -3.294205336 -2.407822744e-19) (98.2905316 -4.131455751 9.251358689e-22) (97.11939838 -5.190003122 -6.762888382e-20) (95.50169019 -6.577530501 1.970525278e-19) (93.69015855 -7.983004537 5.945600307e-20) (104.0017657 -28.61361355 -3.142077651e-19) (107.4583313 -18.14305078 -7.119881033e-21) (107.1674865 -12.51910544 1.122510495e-19) (105.7226748 -8.675513871 0) (104.0892309 -6.119730269 0) (102.6842578 -4.433953297 0) (101.3920792 -3.205655953 -6.317166263e-20) (100.7154474 -2.381211126 0) (99.91079079 -1.647579508 0) (99.56491615 -1.119190843 1.129710705e-20) (99.35070256 -0.6539230858 2.082118376e-21) (99.24066664 -0.2155296497 -6.752772523e-21) (101.5666603 -0.1928228054 0) (101.521792 -0.5839499657 0) (101.4356665 -0.9883355972 0) (101.2943165 -1.437754767 0) (101.0228913 -1.789511145 0) (100.7163299 -2.314279952 0) (100.3323864 -2.966814689 0) (99.8789503 -3.590386342 -7.946455133e-20) (99.25036287 -4.482431918 0) (98.34885444 -5.630686999 2.883894698e-20) (97.1466778 -7.269143231 3.157662937e-21) (95.86140495 -9.66571018 -5.49707207e-20) (96.90815136 -18.54285547 7.705361874e-20) (102.4365302 -14.95667541 -3.444904569e-20) (103.5498849 -11.44335905 -9.27517515e-20) (103.1831877 -8.508656764 -6.600599908e-20) (102.3153324 -6.313904833 1.117039636e-19) (101.4110651 -4.732272808 -5.132206969e-20) (100.4871962 -3.468776669 -8.788145821e-20) (100.0041536 -2.611124939 -3.307773337e-20) (99.35532307 -1.79506309 -1.839470078e-20) (99.07483009 -1.222942004 1.812738408e-20) (98.8984468 -0.7162850876 0) (98.80704705 -0.2360521874 1.810777562e-20) (101.9417875 -0.2012771198 0) (101.908228 -0.6103933125 0) (101.8449856 -1.031794447 0) (101.7388186 -1.492763052 0) (101.5084344 -1.870832215 0) (101.278725 -2.414306137 0) (101.0010264 -3.067990246 5.812353382e-21) (100.669505 -3.715832714 1.885951387e-19) (100.2454556 -4.589924458 0) (99.64107601 -5.692546205 9.470429894e-20) (99.00814343 -7.192904097 6.931386825e-20) (98.56356841 -9.354582562 5.07673372e-20) (98.26710752 -11.85255407 0) (100.363443 -11.45221776 -3.762429763e-21) (101.2457767 -9.710762518 0) (101.2361172 -7.764921385 -3.710115977e-20) (100.788023 -6.074594688 -8.739892878e-20) (100.229413 -4.734343225 -2.341606747e-20) (99.59351131 -3.541844648 0) (99.28081301 -2.714008557 0) (98.77400154 -1.862436844 -3.422492294e-20) (98.55487119 -1.277902017 1.688966539e-20) (98.41586459 -0.7505724011 7.073577444e-22) (98.34300158 -0.2473919013 -1.247270972e-20) (102.328293 -0.2044418477 0) (102.305501 -0.6202354345 0) (102.2641119 -1.047313449 0) (102.1911953 -1.50576956 0) (101.9999101 -1.895132265 0) (101.8389046 -2.432808304 0) (101.6540376 -3.058045422 -3.299583622e-22) (101.4249036 -3.698249412 1.21870768e-19) (101.1643072 -4.499206448 0) (100.7801361 -5.454095463 -3.187674299e-19) (100.4744494 -6.608862756 2.237022666e-19) (97.59587561 -7.575399831 1.543207153e-19) (99.05967353 -8.997409997 -2.204879653e-20) (99.64235508 -8.944922544 -6.491632586e-20) (99.92087676 -8.067729154 1.536663512e-19) (99.85402456 -6.832562784 -2.809326426e-20) (99.56452567 -5.600155922 -8.589116886e-20) (99.20221268 -4.523930606 0) (98.77795313 -3.472882793 -2.883592467e-20) (98.58320862 -2.705935755 4.387802398e-20) (98.19434798 -1.862754438 1.064419475e-20) (98.02839419 -1.28958963 1.816521551e-20) (97.92219886 -0.7593841894 -2.063411111e-20) (97.8657325 -0.2503377479 0) (102.7164684 -0.2029746918 0) (102.7030677 -0.6154674436 0) (102.6803147 -1.03816473 0) (102.6358652 -1.482997725 0) (102.4796954 -1.870892231 0) (102.3756165 -2.384336659 0) (102.263674 -2.960632759 0) (102.1123932 -3.559730954 0) (101.9492777 -4.269535644 -1.325898401e-19) (101.6844323 -5.043715617 -2.581704584e-19) (101.4665692 -5.865393002 -6.018499276e-21) (96.06599927 -6.124938193 -1.673452526e-19) (99.49601732 -7.221499159 6.592135436e-21) (99.3202195 -7.21424295 -3.113742699e-20) (99.13375459 -6.713008546 0) (98.89994662 -5.92028363 1.246497862e-20) (98.62378751 -5.045558173 -4.569209926e-22) (98.35385312 -4.202514389 0) (98.05497546 -3.302995144 0) (97.9355382 -2.614764911 0) (97.6379049 -1.811103567 3.68426339e-20) (97.51403131 -1.265741428 -3.446597394e-20) (97.433689 -0.7467114522 -2.329248411e-21) (97.39026722 -0.2465268277 2.336931873e-21) (103.0978389 -0.1977120544 0) (103.092164 -0.5987808085 0) (103.0841824 -1.008882161 0) (103.0622837 -1.431428984 0) (102.9358134 -1.807224241 0) (102.8743172 -2.284797653 0) (102.8128843 -2.802890727 0) (102.7105624 -3.338351641 0) (102.5947603 -3.940237504 5.281791253e-20) (102.3568297 -4.554245498 2.359314987e-20) (102.1413526 -5.147758501 -5.75984026e-22) (95.34481976 -5.179291946 -6.698378274e-21) (99.69062988 -5.978341166 -9.027321222e-20) (99.10880147 -5.959383462 4.090100225e-20) (98.6227217 -5.643975883 9.132643603e-20) (98.23453096 -5.11652458 -1.772261166e-20) (97.913982 -4.48525963 0) (97.66613941 -3.827435394 0) (97.42796027 -3.069533968 0) (97.3498815 -2.465458604 0) (97.1168967 -1.720503162 0) (97.02357629 -1.213113791 0) (96.96260869 -0.7180376342 0) (96.92883183 -0.2380324693 0) (103.4657398 -0.1895038108 0) (103.4660671 -0.5729181339 0) (103.4689844 -0.9642136923 0) (103.4635522 -1.358820241 0) (103.360101 -1.714845093 0) (103.3272309 -2.150706651 0) (103.295733 -2.608845468 0) (103.2176206 -3.076419134 0) (103.1121476 -3.570217237 0) (102.8588094 -4.050917587 -2.304464998e-21) (102.5663558 -4.485263444 1.409099472e-21) (95.60628723 -4.526402951 -3.555572588e-20) (99.77365308 -5.034269346 5.149723053e-22) (98.95787919 -5.010253648 1.404083166e-20) (98.27936942 -4.796475346 0) (97.76131983 -4.427023405 0) (97.37499363 -3.957108044 0) (97.11162039 -3.439536312 0) (96.89386055 -2.806285573 0) (96.83161428 -2.28422805 0) (96.63865124 -1.606341592 0) (96.56495011 -1.141710576 0) (96.51651003 -0.6775607059 0) (96.4900744 -0.2251747165 0) (103.815287 -0.1791855662 0) (103.8199184 -0.5405568452 0) (103.830048 -0.9087758124 0) (103.835374 -1.272555956 0) (103.7484821 -1.604072524 0) (103.7321257 -1.996359815 0) (103.7145583 -2.399192969 0) (103.6421751 -2.800370748 0) (103.5242489 -3.203770241 0) (103.2405196 -3.578229676 0) (102.8346573 -3.896337491 0) (96.08897854 -3.957001174 0) (99.82741323 -4.285561203 0) (98.86167363 -4.263417871 0) (98.04003855 -4.108716224 0) (97.4134805 -3.837018307 0) (96.95954898 -3.478767105 0) (96.66267644 -3.066502959 0) (96.44180421 -2.537141363 0) (96.37768816 -2.089317323 0) (96.20591072 -1.480358176 0) (96.14276786 -1.059517602 0) (96.1010936 -0.6302289456 0) (96.07907744 -0.2098830299 0) (104.143221 -0.1675382403 0) (104.1505955 -0.5041777837 0) (104.1646386 -0.846746763 0) (104.1757243 -1.178951345 0) (104.0998844 -1.483579344 0) (104.090337 -1.833425941 0) (104.074019 -2.186806423 0) (103.9965079 -2.527641374 0) (103.8537289 -2.857879913 0) (103.5333238 -3.15285907 0) (103.0107656 -3.389380497 0) (96.51666305 -3.457327248 0) (99.85716419 -3.680310293 -3.448422291e-35) (98.78911208 -3.658648975 0) (97.86272834 -3.540820235 0) (97.14980645 -3.333849788 0) (96.63372391 -3.054466029 0) (96.29702798 -2.722557343 0) (96.05875314 -2.277722711 0) (95.98197875 -1.893696491 0) (95.81798724 -1.350989932 0) (95.75832686 -0.972740839 0) (95.71888109 -0.5797688382 0) (95.69908267 -0.1934930775 0) (104.4476911 -0.1552328157 0) (104.4564803 -0.465913396 0) (104.471704 -0.7817039372 0) (104.4844082 -1.082925143 0) (104.4154253 -1.360127534 0) (104.405352 -1.670433004 0) (104.3815539 -1.979681517 0) (104.2923663 -2.26838634 0) (104.1191722 -2.540098358 0) (103.7615759 -2.775459494 0) (103.1297691 -2.954741945 0) (96.88883381 -3.028558833 0) (99.86863671 -3.18236936 0) (98.73078772 -3.160125039 0) (97.72612434 -3.066820234 0) (96.94450221 -2.904489025 0) (96.37379144 -2.682109629 0) (95.9971166 -2.411593992 0) (95.73296802 -2.035909677 0) (95.63753185 -1.705564867 0) (95.47218999 -1.224155153 0) (95.41088473 -0.8859640013 0) (95.37036594 -0.5289512136 0) (95.35108291 -0.1769230278 0) (104.7280464 -0.1428044283 0) (104.7371824 -0.4274528466 0) (104.7514882 -0.7164982117 0) (104.7626034 -0.9881952286 0) (104.6971996 -1.238672724 0) (104.6815108 -1.513121983 0) (104.6444501 -1.782647727 0) (104.5401013 -2.028183134 0) (104.33495 -2.253047484 0) (103.9424297 -2.443189994 0) (103.2111299 -2.581211126 0) (97.21043826 -2.660588317 0) (99.86817193 -2.766489331 -4.355372645e-35) (98.6821727 -2.743867612 0) (97.61760545 -2.667860604 0) (96.78096837 -2.537468785 0) (96.16306868 -2.357259868 0) (95.7483778 -2.133966547 0) (95.4550522 -1.814905198 0) (95.33753792 -1.529738127 0) (95.16488146 -1.103771215 0) (95.09847092 -0.8023306177 0) (95.05463791 -0.479706046 0) (95.03462524 -0.160806798 0) (104.9845849 -0.1306595479 0) (104.9932393 -0.3900519335 0) (105.0051088 -0.6532389501 0) (105.0123168 -0.8974351744 0) (104.948007 -1.122643919 0) (104.9233977 -1.365035685 0) (104.8701694 -1.599209051 0) (104.7482057 -1.809330113 0) (104.5119699 -1.996669913 0) (104.0878328 -2.152121562 0) (103.2676712 -2.259791616 0) (97.48848555 -2.343768772 0) (99.85968146 -2.415878098 0) (98.64068142 -2.393188905 0) (97.52933229 -2.329972983 0) (96.64817509 -2.223204044 0) (95.98975317 -2.074908682 0) (95.53992549 -1.888456894 0) (95.21678228 -1.6159111 0) (95.07578025 -1.368751303 0) (94.89213565 -0.9922053072 0) (94.81843933 -0.7238550156 0) (94.76986164 -0.4333020993 0) (94.74824714 -0.1455659316 0) (105.218275 -0.1190956385 0) (105.2258247 -0.3546042203 0) (105.2342098 -0.5934034123 0) (105.2359352 -0.8124662818 0) (105.1708895 -1.014280106 0) (105.1353151 -1.228251759 0) (105.0645795 -1.431913176 0) (104.9239431 -1.612434231 0) (104.6585483 -1.769661448 0) (104.2061467 -1.898204109 0) (103.3078113 -1.983211647 0) (97.73044062 -2.070610148 0) (99.84566144 -2.11867558 1.408471844e-35) (98.60467156 -2.096120898 0) (97.45621428 -2.042699868 0) (96.53860876 -1.953909137 0) (95.84541265 -1.830264458 0) (95.36359868 -1.672971137 0) (95.01135886 -1.438805422 0) (94.84675666 -1.223629385 0) (94.65005129 -0.8907013372 0) (94.56781954 -0.6517267217 0) (94.51366471 -0.390516716 0) (94.48986756 -0.1314642064 0) (105.4305363 -0.1083209124 0) (105.4365295 -0.3217176748 0) (105.4407463 -0.5379737995 0) (105.4359886 -0.7344383967 0) (105.3689131 -0.9149259636 0) (105.3212474 -1.103966838 0) (105.232532 -1.281559667 0) (105.0732208 -1.437199285 0) (104.7810987 -1.570159064 0) (104.3033924 -1.67756054 0) (103.3370702 -1.745439992 0) (97.94314936 -1.835035536 0) (99.82777016 -1.866029517 0) (98.57300166 -1.843730691 0) (97.39477252 -1.798009423 0) (96.44698193 -1.72322651 0) (95.72386574 -1.618957142 0) (95.21315988 -1.48502726 0) (94.83322041 -1.282693046 0) (94.64566705 -1.094442347 0) (94.43490273 -0.7997378981 0) (94.34353827 -0.5865442314 0) (94.28340488 -0.3517659115 0) (94.25706633 -0.1186483267 0) (105.6230927 -0.09847085616 0) (105.6272164 -0.2917756952 0) (105.6268579 -0.4875543913 0) (105.6150442 -0.6639984696 0) (105.5450204 -0.8253090854 0) (105.4847733 -0.9926678204 0) (105.3782147 -1.148116711 0) (105.2008084 -1.282797952 0) (104.8845483 -1.396134483 0) (104.3840305 -1.486729073 0) (103.3591336 -1.541564319 0) (98.13277269 -1.632184781 0) (99.8071616 -1.651190522 0) (98.54484646 -1.629224481 0) (97.34253957 -1.589676897 0) (96.3694776 -1.52600492 0) (95.62049688 -1.4371695 0) (95.08377799 -1.322132342 0) (94.6778314 -1.146314537 0) (94.46838516 -0.9807198832 0) (94.24321215 -0.7193017478 0) (94.14255309 -0.5284972511 0) (94.07633384 -0.3172081099 0) (94.04725634 -0.1071804423 0) (105.7978663 -0.08962427814 0) (105.7999142 -0.2649900005 0) (105.794776 -0.4424661702 0) (105.7756391 -0.6014294312 0) (105.7020261 -0.7456884517 0) (105.6291222 -0.8943473591 0) (105.5052219 -1.031070542 0) (105.3106087 -1.148104784 0) (104.9727214 -1.245541641 0) (104.4514833 -1.322666551 0) (103.3765209 -1.367536562 0) (98.30455669 -1.45812313 0) (99.78464425 -1.468887138 0) (98.51958182 -1.447294663 0) (97.29768432 -1.412763514 0) (96.30323376 -1.358011552 0) (95.53174972 -1.281580638 0) (94.97160912 -1.181908866 0) (94.54140775 -1.028233197 0) (94.311307 -0.8816689744 0) (94.07177111 -0.6490743802 0) (93.96192872 -0.4775065533 0) (93.8897018 -0.286829261 0) (93.85779783 -0.09706532462 0) (105.9568531 -0.08181994771 0) (105.9566984 -0.2414520268 0) (105.9467173 -0.4028349324 0) (105.9201993 -0.5467825115 0) (105.842545 -0.6760404614 0) (105.7571646 -0.8087186399 0) (105.6166066 -0.9296734597 0) (105.4058372 -1.031908503 0) (105.04861 -1.116478152 0) (104.5084303 -1.182778411 0) (103.3909437 -1.220034983 0) (98.46257681 -1.309691007 0) (99.76081464 -1.31499975 0) (98.49671295 -1.293789233 0) (97.25880056 -1.263351382 0) (96.24604623 -1.215798432 0) (95.4548305 -1.149372585 0) (94.87355327 -1.062209333 0) (94.420788 -0.927017056 0) (94.17130736 -0.7963721856 0) (93.91766812 -0.5885852893 0) (93.79891064 -0.4333382946 0) (93.72086101 -0.2605138126 0) (93.68611552 -0.08827350593 0) (106.1021276 -0.07506758265 0) (106.0996942 -0.2211688137 0) (106.084895 -0.3686527332 0) (106.0510768 -0.499948315 0) (105.9690036 -0.6161682641 0) (105.8714758 -0.7353551663 0) (105.714882 -0.8429033275 0) (105.4892049 -0.9330524577 0) (105.1146141 -1.007219048 0) (104.5570146 -1.064829707 0) (103.4035247 -1.096260427 0) (98.61002699 -1.184252732 0) (99.73613356 -1.18625079 0) (98.47581299 -1.165400916 0) (97.22475336 -1.138281326 0) (96.19614997 -1.096527034 0) (95.38747072 -1.038155042 0) (94.78701245 -0.9611180463 0) (94.31329116 -0.8413207562 0) (94.04564188 -0.7238932572 0) (93.77820745 -0.5372879711 0) (93.65088447 -0.3956749535 0) (93.56724553 -0.2380877531 0) (93.52968259 -0.08075457423 0) (106.2355721 -0.06936393844 0) (106.2308312 -0.2041046279 0) (106.211297 -0.3398290277 0) (106.1703506 -0.4607837522 0) (106.0836357 -0.5657714307 0) (105.9743949 -0.6737282262 0) (105.8024841 -0.7697543448 0) (105.5628943 -0.8504415366 0) (105.1726823 -0.9162373606 0) (104.5989661 -0.9669198868 0) (103.4149793 -0.9939180714 0) (98.74939924 -1.079645581 0) (99.71097463 -1.080021258 -1.903079343e-36) (98.45649336 -1.059486802 0) (97.19459267 -1.035008252 0) (96.15209435 -0.9978733479 0) (95.32780534 -0.9459375935 0) (94.70980845 -0.8771899671 0) (94.21656066 -0.7700426625 0) (93.93187128 -0.6633233481 0) (93.6510691 -0.4946750621 0) (93.51555804 -0.364168564 0) (93.42658174 -0.2193625386 0) (93.38625978 -0.07445418823 0) (106.3596838 -0.06468162313 0) (106.3525836 -0.1901738132 0) (106.3283811 -0.3162176066 0) (106.2804891 -0.4289580179 0) (106.1885482 -0.5245144195 0) (106.0680306 -0.6232406383 0) (105.8817331 -0.7098381739 0) (105.6287842 -0.7829960716 0) (105.2244467 -0.8421884782 0) (104.6357112 -0.8874381076 0) (103.4257955 -0.9111195958 0) (98.88256925 -0.9941246197 0) (99.68565354 -0.99420662 0) (98.4383947 -0.9739367937 0) (97.16749333 -0.9514871547 0) (96.11264987 -0.9179376101 0) (95.27428403 -0.8710402562 0) (94.64030111 -0.8090496761 0) (94.12839914 -0.7121982827 0) (93.82780418 -0.6138613243 0) (93.533621 -0.460130379 0) (93.39027927 -0.3384706572 0) (93.29616899 -0.2041268262 0) (93.25310721 -0.06930248609 0) (106.4744663 -0.06104001989 0) (106.4650993 -0.179374586 0) (106.4363847 -0.2977102187 0) (106.3818161 -0.4046466201 0) (106.2856906 -0.4919685436 0) (106.1542893 -0.5833406253 0) (105.9546207 -0.6632947692 0) (105.6886252 -0.7296485946 0) (105.2713404 -0.783914897 0) (104.668448 -0.8250349598 0) (103.4363352 -0.8463041041 0) (99.01085206 -0.9262667088 0) (99.66046556 -0.9270986136 0) (98.42118 -0.907055458 0) (97.14270593 -0.8860646418 0) (96.07672108 -0.8551609699 0) (95.22550539 -0.8120247039 0) (94.57684542 -0.7549696425 0) (94.04704826 -0.6665377327 0) (93.73138027 -0.5745747609 0) (93.42540509 -0.4336112877 0) (93.27461881 -0.318291814 0) (93.17563132 -0.1922785022 0) (93.12998976 -0.0652874231 0) (106.589023 -0.05829388137 0) (106.5770347 -0.1714256874 0) (106.5436177 -0.2840561861 0) (106.4817326 -0.3858402136 0) (106.3773986 -0.4679694485 0) (106.2348422 -0.5539056501 0) (106.0222243 -0.6293458099 0) (105.7440774 -0.6898196819 0) (105.3146314 -0.7405124742 0) (104.698213 -0.7786578911 0) (103.4468332 -0.798280507 0) (99.13513784 -0.8750504117 0) (99.63570405 -0.8773866588 0) (98.40452752 -0.857521362 0) (97.11953662 -0.8374405901 0) (96.04331466 -0.8083151601 0) (95.18017474 -0.7677927347 0) (94.51759372 -0.7141578079 0) (93.97108892 -0.6321951497 0) (93.6409443 -0.5455487434 0) (93.31898178 -0.4128795656 0) (93.1602329 -0.3032511539 0) (93.05624555 -0.1834446172 0) (93.00767967 -0.06222661159 0) (106.6772761 -0.05684991217 0) (106.663605 -0.1669948332 0) (106.6265748 -0.2760289893 0) (106.5601368 -0.3771753165 0) (106.4632813 -0.4518469327 0) (106.3111243 -0.5343235184 0) (106.0860329 -0.6071740148 0) (105.7964072 -0.6629170008 0) (105.3554286 -0.7112468683 0) (104.7259398 -0.7474524836 0) (103.4574351 -0.7661013567 0) (99.25612265 -0.839694578 0) (99.61162732 -0.844112271 0) (98.38810115 -0.82434315 0) (97.09731907 -0.8046201655 0) (96.01151926 -0.7764516985 0) (95.1371684 -0.737503789 0) (94.46141689 -0.6860595897 0) (93.89902274 -0.6087337494 0) (93.5551761 -0.5258631753 0) (93.23487674 -0.4026070834 0) (93.07090476 -0.2941241467 0) (92.96308774 -0.1783473595 0) (92.9126835 -0.06056726979 0) (106.8458803 -0.0554075731 0) (106.8285816 -0.1636571356 0) (106.7845199 -0.2702459471 0) (106.705373 -0.3670293826 0) (106.5433558 -0.4443558659 0) (106.3809647 -0.5247394035 0) (106.144814 -0.596885087 0) (105.846764 -0.6484437033 0) (105.3946814 -0.6954985226 0) (104.7524645 -0.7306848749 0) (103.4683031 -0.7491050021 0) (99.37402937 -0.8197734639 0) (99.5884857 -0.8266189711 0) (98.3715638 -0.8068111404 0) (97.07541721 -0.7868645195 0) (95.98050518 -0.7588599676 0) (95.09547237 -0.7205068123 0) (94.40719786 -0.6701391164 0) (93.83267201 -0.5958823132 0) (93.47696501 -0.5153701124 0) (93.08077671 -0.3900146458 0) (92.90329444 -0.2868014118 0) (92.78816622 -0.1739058476 0) (92.73384386 -0.0587196403 0) (87.11095003 -3.124210762 2.341483556e-19) (135.2254515 11.60804302 -6.621268992e-19) (121.0971101 24.41762695 6.854488132e-19) (89.66701382 -4.543020886 1.226569717e-19) (134.7486145 -5.86696151 1.488450246e-19) (135.9743659 9.179043022 -7.843516113e-20) (91.08811334 -5.514756979 -6.775479695e-20) (126.4562424 -16.15956169 4.30230461e-19) (133.946242 -7.600679788 -1.449659877e-19) (92.18040666 -6.566027688 2.08615178e-20) (117.1621537 -20.22084425 -1.506858162e-19) (125.2867514 -16.94855003 -4.289414e-19) (93.59192773 -7.888051612 -4.258254721e-22) (103.8636537 -29.38414058 0) (104.7098071 -28.95734557 1.536377594e-20) (108.5880759 -19.97892373 -1.597136699e-19) (116.0295715 -20.41107372 0) (95.60549165 -9.425226971 6.41595886e-22) (95.62089857 -19.68253684 7.807474474e-20) (103.5062122 -29.26475088 1.686578846e-19) (97.099207 -19.90406249 -6.712919545e-20) (102.7234353 -17.03154032 0) (107.6404153 -19.774916 1.412521279e-19) (84.05485791 3.459502701 7.962770676e-19) (91.71511021 18.99215611 0) (118.2276247 24.73864876 -1.266492944e-18) (105.2415124 19.21603229 0) (141.4780742 30.1619842 -8.168490919e-21) (121.8437018 41.76338108 -7.256715491e-19) (132.6173996 10.63343951 0) (120.9484316 6.413461819 -1.459635973e-20) (116.1404885 11.11364938 0) (91.74401285 -3.003733894 -1.979535459e-19) (89.89820789 -4.320812137 -9.882706603e-20) (87.95241897 -2.975837581 2.245453326e-19) (146.9096459 -0.4264330797 5.000670114e-19) (148.2821902 12.35750038 -3.460596719e-21) (132.7146203 -5.210622925 -1.086383802e-18) (122.4706206 -2.128702373 -1.482784556e-20) (121.8913607 4.338616452 -3.853986753e-19) (92.84299083 -4.322974259 -9.050690108e-20) (91.29333413 -5.360323729 -8.813369829e-20) (90.09952493 -4.465077219 0) (90.43294237 -5.056059603 0) (89.70593512 -5.723987945 0) (88.9621327 -5.31797811 1.319348684e-19) (135.5897751 -17.71674624 0) (141.6984193 -11.37468963 0) (125.3741494 -14.96487059 -4.309319355e-19) (119.2724413 -9.059525561 5.231145505e-19) (122.0067912 -4.122739326 1.196843964e-18) (93.91303645 -5.390464378 1.66853615e-19) (92.39217789 -6.418698773 1.612852338e-19) (91.43836656 -5.480731769 -8.035446116e-22) (91.64395676 -5.997018976 -1.706811366e-19) (90.68872538 -6.436723599 1.243013294e-19) (90.40457794 -6.067372664 -2.095116937e-20) (123.8006399 -24.07931397 0) (128.8802072 -22.02996251 6.370402514e-19) (95.14239046 -6.357185872 -1.446276273e-19) (93.70360409 -7.695492257 -9.303665096e-20) (92.5351103 -6.569098022 -2.42243068e-19) (92.87402288 -7.209972002 1.890755724e-19) (91.34353841 -7.793164238 1.214465735e-19) (91.03932949 -7.125792736 1.245826477e-19) (109.1000413 -30.43717698 8.802105023e-20) (112.6897731 -25.35227579 4.473796365e-19) (117.4976103 -25.36219074 -1.339363134e-19) (96.70454835 -7.160724863 9.690197836e-19) (95.66166636 -9.122454795 3.04756722e-20) (93.9010401 -7.863133246 7.112289702e-20) (94.46494124 -8.608347834 0) (91.42615576 -9.355788915 2.410598402e-19) (91.63385519 -8.595164207 2.387027059e-19) (98.85313218 -9.472923336 -5.049114975e-21) (97.18364625 -12.25302757 -4.482569741e-20) (95.60144895 -18.92245263 -1.343488567e-19) (82.3148558 -5.748700371 6.360727973e-20) (86.543631 -5.656322397 1.141275621e-19) (74.97769179 2.167163909 0) (81.37151062 -5.483508766 1.417497538e-19) (148.2107982 13.33324889 -3.360659033e-20) (142.272432 29.15062371 5.152045119e-19) (131.0544064 18.56553257 1.478895015e-21) (140.9148464 27.43697739 0) (147.118682 13.2079095 3.051035469e-19) (88.86837795 -5.248816283 -4.419584887e-20) (88.23738263 -4.980710733 1.80730047e-19) (88.96282487 -4.121520178 1.081499956e-19) (88.10723384 -5.087532441 -1.875971777e-19) (88.73479793 -5.335209954 2.614489116e-19) (86.84870178 -5.553007218 1.947441302e-19) (88.00695486 -5.095925695 2.334307416e-19) (142.0669238 -10.82525358 4.933934839e-19) (146.6928798 -1.180136677 -1.002206088e-18) (135.8759121 0.5348671448 8.288272491e-21) (146.0948241 -0.918164474 -2.416496704e-21) (141.7302374 -10.44801075 4.143223577e-21) (147.2301812 12.25792471 -2.428974798e-19) (146.2924543 -0.1854425118 9.810677411e-19) (135.9603694 1.598118252 1.050096073e-18) (90.34217342 -6.023658699 -4.20330469e-20) (89.80347313 -5.763083113 8.447696482e-20) (90.60888995 -5.174240704 0) (89.64184401 -5.831991136 1.361791978e-19) (90.19685122 -6.07910515 -1.32262862e-19) (88.78021931 -5.37615068 -1.30574896e-19) (89.59322764 -5.810614649 0) (129.6173906 -21.64645824 -3.273447121e-19) (135.1676514 -18.06438028 1.990690656e-19) (129.8823117 -13.20461915 2.405328317e-19) (134.6955215 -17.52888221 -1.286626104e-19) (129.3654637 -20.89046798 6.350123296e-19) (141.3728961 -10.99330125 4.677737166e-19) (135.510855 -16.90156085 -5.085998933e-19) (130.9777019 -11.99899159 0) (91.01158687 -7.082290774 0) (90.70465973 -6.471500166 -2.492679187e-19) (91.77555418 -6.130639233 4.46637294e-19) (90.54905938 -6.484357416 1.297851304e-19) (90.77978393 -7.108600215 0) (90.22602737 -6.103683395 -6.610856022e-20) (90.53776103 -6.45031475 2.512693613e-22) (118.1911679 -25.29102737 1.337910528e-19) (123.0885314 -24.29013704 -3.387544793e-19) (91.61651471 -8.542560605 -1.17393547e-19) (91.36318078 -7.846994285 -1.815911293e-19) (92.95573138 -7.29738144 -1.871380836e-19) (107.1517477 -30.44967633 3.325110277e-19) (90.96533072 -7.862154891 -1.242443924e-19) (90.83092058 -8.536439703 1.231251737e-19) (90.80553261 -7.151539552 -2.54252993e-19) (90.95926064 -7.810860481 2.48219826e-19) (106.8836534 -30.35237119 0) (107.7719045 -24.57134185 -1.531846359e-19) (112.0085297 -25.34146 4.230295819e-19) (108.9895545 -30.42668286 4.171535363e-20) (80.5197743 -9.156631058 6.117164054e-20) (91.43245622 -9.423566257 -1.227813921e-19) (94.59168686 -8.710958822 0) (97.96034825 -25.0375768 -6.344883731e-20) (89.89025809 -9.323599509 3.631266835e-20) (48.70600089 -8.519634931 -6.94941526e-20) (90.83156299 -8.584569257 -1.262968904e-19) (89.89297551 -9.255354927 -3.586070233e-20) (98.50231012 -25.72063498 1.043432526e-19) (90.69182366 -0.9788945368 0) (87.56257683 -2.663791817 0) (85.25660763 2.201261285 2.521076075e-19) (84.93211745 -1.038893052 -1.312349325e-19) (81.81889336 -4.567805953 2.23030841e-21) (76.79749361 2.367585684 -5.553102731e-19) (143.4110983 52.40788582 6.117111522e-18) (118.0464283 62.4422505 0) (88.67545393 -3.969613291 -3.191155422e-19) (88.12598599 -4.980891025 -1.816997727e-19) (86.8328938 -5.248194186 2.00348817e-19) (123.029654 -25.59067385 -1.122476217e-17) (116.7045168 -19.04559832 -5.649103377e-19) (114.0332562 -12.88077509 0) (118.0623306 -10.31016331 1.597422908e-19) (106.3093892 -29.34694786 0) (114.9134545 -28.43658366 0) (117.3078987 -28.14119672 -1.104413451e-19) (99.47743636 -25.17880135 -8.921903499e-20) (103.3319526 -22.07495087 -8.95031907e-20) (106.5579987 -24.06503294 -6.422624348e-20) (86.49731998 -5.286145369 -5.193302924e-19) (82.61959535 -4.888088955 5.271608371e-19) (85.48372893 -1.771191912 -1.240843107e-19) (85.23747267 -8.018508225 -1.805099498e-18) (62.48451059 2.033912305 0) (72.05119701 -10.18014681 -8.42727083e-20) (121.7586689 38.34347254 7.071659144e-19) (139.369024 29.43381863 0) (128.9772102 20.55881766 5.423724909e-19) (117.6638274 -28.05950268 -2.274193311e-19) (120.0392921 -27.66245155 -6.271252008e-20) (120.6209643 -19.24963927 9.233438515e-21) (122.8980244 -23.54943002 5.351269961e-21) (118.0676482 -24.54964585 1.320581545e-19) (128.6343568 -21.26874671 -2.193015199e-19) (123.6028864 -23.33351608 -1.676301147e-19) (121.7855398 -18.78693192 -1.777745198e-19) (106.1245271 -30.31579245 -1.24895334e-19) (89.38298389 -28.35839318 -1.615091934e-19) (101.0105151 -28.01499215 6.525988724e-20) (83.66848629 27.44119487 0) (80.87743147 13.49008831 -2.469722218e-18) (74.94212912 4.100933761 6.900206646e-19) (118.3211587 41.46995227 3.890716834e-19) (102.8561207 32.39505391 -2.153120249e-19) (85.73424983 30.00868646 2.389495467e-19) (145.0165102 49.52575833 -3.673297887e-17) (135.012348 37.53562197 -5.14635249e-19) (143.7365155 49.55263548 1.629643098e-17) (118.6086918 58.38267092 0) (141.4431448 51.78367202 -4.743999495e-18) (132.0946454 39.20031675 1.094879019e-18) (147.8546007 5.162993291 -1.773443612e-18) (147.9662467 6.008043994 5.87320074e-19) (138.5199031 -15.16666436 -9.012866929e-19) (138.9348182 -14.73107753 4.502601539e-19) (122.7286621 -26.92790193 1.242498186e-18) (123.5117369 -25.71383062 8.893343736e-18) (125.9575849 -23.33000317 0) (125.2728101 -25.61736036 0) (123.2639765 -26.57341273 0) (126.4712594 -24.2018766 0) (125.3950976 -25.4977354 6.514830452e-19) (126.6831802 -23.03937315 1.910792161e-19) (91.23145988 -7.449537379 1.304458448e-19) (92.08984945 -7.275686735 4.047001194e-22) (92.31201984 -7.545173696 -7.131222263e-20) (112.0788778 -28.27134595 -4.095228353e-19) (114.2115758 -28.43794423 0) (107.2766253 -29.54613762 5.495606434e-18) (91.79888927 -8.984257654 3.306480716e-20) (93.45958005 -8.788816547 -6.636523137e-20) (93.77343225 -9.117734392 -4.809748009e-20) (93.08251497 -8.385724635 6.878788409e-20) (93.36250309 -8.684105107 0) (91.79049823 -8.917337847 -3.264941811e-20) (82.21700184 -10.42695087 -5.454066719e-18) (84.93654827 -8.300298651 1.740144906e-18) (84.5967019 -5.942779141 2.354451033e-19) (85.03779397 -8.090123708 -1.502713033e-18) (82.14485571 -9.703835752 -4.005942826e-19) (86.3399869 -6.530491643 1.084988105e-18) (85.31424252 -7.849519425 0) (85.18644023 -5.891952107 -2.832467948e-19) (77.09805335 -2.608679819 1.307386341e-18) (72.73635478 -8.653312755 -7.894314263e-20) (64.97903094 2.102858058 0) (81.4466922 -9.82701694 0) (74.07814752 -9.253187877 0) (78.1794007 -3.700845207 0) (73.62104356 -10.73862948 3.695126367e-20) (81.58193901 -10.55122228 0) (146.5082006 20.38901172 -3.646153771e-20) (146.1472656 21.47911525 1.32558609e-19) (88.42077174 -5.112244258 0) (87.05467472 -5.288537548 -3.433577901e-22) (88.45845122 -5.132224329 6.459601413e-20) (87.48191994 -5.267354485 1.905548501e-19) (86.88018692 -5.638187597 0) (86.39652298 -6.39868906 3.785582064e-19) (87.05635316 -5.288826263 0) (86.91039236 -5.54573941 -7.804919422e-19) (87.6372885 -5.201440834 1.881177268e-19) (144.3861461 -6.596487595 8.293988853e-19) (144.6794192 -5.951637997 -1.397893675e-19) (144.2637031 -5.672581552 -2.336833483e-21) (140.0519482 -3.790434385 0) (140.9972973 -0.1887742267 6.069170019e-19) (138.2249805 -8.065889881 -8.175748692e-21) (139.6516438 -4.922582336 2.074719634e-20) (143.9808686 -6.315498072 -7.884817491e-19) (147.2394097 6.092869696 2.78973729e-19) (141.5286211 6.542845308 -6.193486414e-19) (141.0289967 10.94492973 6.144243776e-19) (141.2145863 1.092313825 0) (141.542048 5.135053155 6.182307171e-19) (147.160922 5.256083091 5.596114267e-19) (89.93982469 -5.935838197 0) (89.97674957 -5.955082398 1.298590017e-19) (89.15416792 -5.620963492 -3.129160437e-22) (89.21090035 -5.654974148 0) (131.9977618 -20.1151493 2.191731228e-21) (126.7743107 -23.93496502 3.575291469e-18) (132.3821653 -19.84337501 -1.807985974e-19) (90.67035657 -6.76650699 -1.402472088e-22) (90.68731983 -6.804222803 1.997020451e-19) (90.40374857 -6.247794084 6.240285964e-20) (90.4241578 -6.272026791 0) (122.9175726 -26.67311204 2.871057229e-19) (120.5721861 -27.23626859 -2.51711034e-19) (120.9748478 -24.81957859 -3.089311229e-19) (120.356393 -27.58976295 0) (122.4223961 -27.04137153 0) (91.62401763 -8.256289736 6.50330763e-20) (92.72948353 -8.0120073 1.404645313e-19) (92.9932141 -8.289654986 1.381230066e-19) (92.39082865 -7.639147332 2.141310523e-19) (92.64177355 -7.919905831 7.119433276e-20) (91.5852395 -8.213696167 2.576101405e-19) (106.3787273 -30.40688228 0) (91.15496579 -8.23940636 -5.425097248e-19) (91.19298568 -8.278652269 0) (90.95711299 -7.416556272 -2.707025182e-19) (90.96874127 -7.459807006 -2.732010445e-19) (103.9202711 -29.11208577 -1.40200495e-17) (107.1073747 -30.0986799 2.575631237e-19) (109.2163471 -27.76371618 3.222092042e-19) (111.3623224 -28.17672278 -3.878970503e-19) (93.8888893 -9.233535506 0) (94.25711044 -9.595790735 -8.949592119e-19) (92.11568763 -10.33544755 -6.379383862e-18) (91.79409325 -10.42541308 8.697249721e-18) (89.92397699 -23.3556098 0) (89.63547122 -26.37599837 3.527923734e-20) (90.96944362 -8.873994198 0) (82.497577 -27.05175322 -3.383288812e-19) (89.33773532 -26.66381464 -2.233157933e-20) (83.84970202 -27.15378804 -7.547958224e-19) (90.97091444 -8.948013255 0) (100.3385419 -27.5148014 2.031821653e-19) (90.05737887 -28.29035144 0) (92.18378759 -26.85953976 2.215335171e-20) (109.628461 82.74296708 0) (114.6230654 -29.56882315 4.33752099e-19) (115.189001 -29.31618049 -4.356399544e-19) (98.56413069 -7.277457706 -1.657065282e-19) (98.424495 -9.002686715 2.964180364e-20) (96.0222407 -9.248099085 -1.148038192e-19) (97.18803795 -9.783861539 -1.033382049e-19) (81.48028535 -8.606429499 -2.127840569e-19) (78.25461955 -8.891276567 -1.306285159e-19) (98.00265684 -12.88254907 -9.258083385e-21) (100.1918193 -12.61765523 1.713599666e-20) (101.7568296 -15.85915791 -5.048806325e-20) (44.76824285 1.136227251 1.278867762e-17) (115.1437872 -29.1841707 1.23450503e-19) (114.8797669 -28.7330443 3.482674137e-20) (106.4503145 -26.84290384 3.231542427e-21) (108.5118299 -27.57458763 0) (106.7918453 -30.00499217 3.715804423e-19) (100.4332293 -18.60804735 4.07441633e-20) (102.44587 -21.25565261 -6.455843811e-20) (98.93811464 -24.5499482 4.884682912e-20) (69.54286357 36.20897188 5.687021114e-19) (69.89817182 18.07977318 1.238200205e-18) (62.33786036 4.684157235 0) (113.6902433 61.1684869 -1.088910381e-18) (96.750277 47.42845028 7.804180262e-19) (75.19036438 43.14239255 0) (147.3965965 1.92228084 7.644324894e-18) (150.5929757 12.3171513 -5.767484699e-18) (150.2342947 9.203320627 -3.314070497e-21) (148.2870562 9.533439425 1.136452723e-18) (136.8357958 -16.73507264 4.111745928e-19) (136.9244798 -18.13131109 1.234055076e-20) (135.7031607 -19.07251098 0) (141.8285497 -12.74334725 0) (140.4858946 -14.36486234 1.089310774e-18) (140.5482785 -12.90909872 0) (90.55442588 -6.250974218 0) (91.08577433 -6.077083771 0) (91.2621606 -6.260016737 -7.523219716e-20) (90.82733662 -5.861941533 3.372243521e-22) (91.02418396 -6.020595375 7.472187826e-20) (90.53147104 -6.228164532 0) (91.81508719 -6.93847498 -7.735538253e-23) (92.01995115 -7.188711661 -1.445639874e-19) (91.21289461 -7.404555539 3.229409567e-19) (91.52080741 -9.21538045 -8.101202031e-19) (93.02936587 -9.142244831 -2.758171423e-21) (93.14758881 -9.331592856 2.133557636e-19) (52.80222145 -8.707719592 1.962435415e-19) (77.36747498 -11.8249401 3.017555671e-21) (96.06568345 -15.04887502 -9.966161862e-20) (147.6735546 16.29087045 -1.350112411e-18) (150.3080337 16.59102421 -3.219225314e-17) (150.6996499 13.38573137 -2.744220014e-18) (145.096647 21.02723209 -1.364704788e-19) (138.306576 18.6469812 -5.753180717e-19) (135.2345439 23.15977999 1.077501611e-18) (140.6891041 12.4676987 0) (139.069686 17.09118493 0) (145.4222039 19.99662777 -9.877278242e-20) (143.1200293 -9.090182956 2.109463724e-18) (143.4982702 -10.30143094 0) (142.2678759 -12.17682683 1.001115163e-17) (145.9076063 -3.354336646 6.025325341e-18) (90.13910499 -5.905282488 1.683584308e-19) (90.53398128 -5.664402619 0) (90.75758887 -5.810997449 7.610558435e-20) (89.63102137 -6.148965461 -7.631554954e-20) (89.5779947 -6.087532421 -7.410225087e-19) (90.10898794 -6.021468533 2.697135761e-22) (135.2690052 -19.3868236 0) (133.9688711 -20.2155528 8.176604919e-19) (133.9449841 -18.85840093 3.90269537e-19) (132.348513 -19.14435773 0) (130.569885 -16.84768219 8.830397553e-19) (132.5949413 -15.18923004 -4.80328598e-19) (138.6917139 -14.31426958 -2.219145419e-19) (135.8941637 -11.65521132 1.062859547e-18) (137.6808907 -9.031090058 -5.577921485e-19) (133.2698716 -14.5649113 -2.446942872e-19) (135.2562539 -12.44643898 -2.549785046e-19) (138.2906274 -14.74630096 -4.275944854e-19) (90.86787571 -6.784428194 -1.578490354e-20) (91.55789922 -6.619445926 -1.472768499e-19) (91.74870231 -6.856664155 5.234724842e-22) (91.3196731 -6.327178464 -7.487323637e-20) (91.49664051 -6.543154674 1.482029745e-19) (90.84631017 -6.744886124 0) (90.58920977 -6.602845072 2.657560911e-19) (89.47231161 -6.601388802 -6.137622124e-19) (89.50032734 -6.44980656 7.426029367e-19) (88.62771279 -7.069585844 -8.210705901e-19) (88.63420792 -6.936228755 6.085011228e-19) (90.71649568 -6.968626757 4.987391001e-19) (90.3108824 -6.16439409 0) (89.70793834 -6.239058011 3.88067325e-20) (89.65354655 -6.172895917 3.072864276e-19) (89.51539354 -6.417833149 1.711960288e-23) (89.53881398 -6.35820472 5.718723118e-19) (90.49863165 -6.365077235 3.806330813e-19) (120.2785115 -24.96263401 0) (120.2382966 -27.31214283 3.781550175e-19) (118.0169946 -27.50576483 7.200028504e-20) (96.85080449 -29.30077942 2.651892241e-18) (107.1436076 -30.55528662 -3.810722113e-19) (91.0168009 -8.014723107 -6.486778702e-19) (91.08172798 -8.398666477 1.247108607e-19) (90.88492126 -7.268956936 3.927509529e-19) (88.76446245 -7.233110923 -1.324967075e-18) (88.64537763 -7.126678368 8.234813884e-19) (88.66167124 -7.617057787 1.661152771e-18) (91.00141188 -7.671882758 6.670077977e-20) (104.9881634 -29.75426481 4.953110062e-18) (90.42045061 -9.243203458 7.226033358e-18) (94.24256932 -9.783855282 -3.655652295e-18) (94.66485641 -10.31160547 -2.61904344e-21) (93.19219236 -9.397228099 -1.064616198e-19) (93.35277945 -9.597785 -5.348739932e-20) (91.53830874 -9.693622555 -4.878950598e-19) (92.18178882 -26.5046294 -2.480701758e-20) (92.08594155 -23.56968554 -9.708787528e-20) (96.63577739 -22.82291183 0) (89.99052648 -9.610996299 0) (67.22399716 -21.50133234 -9.30017967e-19) (88.25077053 -18.78854271 0) (89.8188024 -22.83977318 4.581042752e-19) (86.17297048 -9.83844006 -1.662556212e-17) (90.94289096 -8.736982667 1.108614759e-18) (90.08571296 -9.196682836 -1.736981659e-22) (134.2324057 60.36371856 5.807903704e-20) (112.2568754 79.27501225 -3.124746579e-18) (130.5221373 62.38281884 0) (124.1950874 -25.07722874 0) (124.4664122 -24.93213319 0) (113.7212297 -29.66259782 0) (114.4496762 -29.58004368 -4.192793012e-19) (106.1900185 -28.94265096 -3.790591241e-18) (85.76917409 -7.305277601 -5.616600463e-20) (85.93984679 -7.133425471 -1.016182913e-18) (65.46235863 -5.250766118 0) (57.81407375 -12.13781117 0) (51.047267 2.108433986 -3.741728399e-18) (61.16519317 -13.37011856 0) (67.00617126 -6.996157833 0) (116.8497278 -28.26626661 0) (117.0169799 -28.68774566 2.529662862e-19) (119.0362674 -27.85683662 0) (114.2610118 -28.47659237 0) (113.9620852 -28.03305947 0) (99.07829704 -30.03423357 9.759499178e-22) (100.6245694 -30.36200958 4.774561799e-19) (105.2065933 -29.98521063 6.786375637e-21) (96.57355821 -29.70809463 -2.499094643e-19) (94.6967139 -29.3055074 -2.346020734e-18) (98.38312663 -30.07568599 9.339199902e-20) (96.97127814 -29.84070521 8.11015805e-19) (86.30873914 -28.0002663 8.3362605e-19) (98.93291681 -29.78820606 8.887164759e-21) (98.69852227 -30.10828004 -4.283066193e-20) (98.23122887 -28.97034855 -2.794170598e-21) (98.8325722 -29.62479786 -2.91937226e-21) (87.44836534 -28.08351989 -3.315367887e-18) (147.6656532 42.25845787 -3.678742264e-17) (143.042741 39.72310988 0) (138.2251145 43.72437902 0) (147.3564549 34.07665666 -1.382147349e-19) (144.3459513 38.32504389 0) (136.3785393 44.97877851 0) (130.0655591 48.07543801 0) (133.216277 57.04901837 9.795407543e-19) (149.2520537 4.61441959 -7.333651444e-19) (148.3725281 2.022193199 -5.156404002e-18) (147.5092871 2.704334152 5.276702008e-19) (148.2357516 8.62091689 -1.15528352e-18) (150.049935 8.215670986 -1.452300905e-18) (149.4608567 5.497524055 7.320956297e-19) (138.7821379 -16.45631254 -2.634731155e-19) (137.3781776 -17.76011886 -9.260768892e-19) (137.2610873 -16.37323496 1.269275972e-18) (136.5690213 -18.35269501 -4.373430912e-18) (138.2040465 -16.99578442 4.930512657e-18) (135.2684506 -19.4653654 3.200025843e-21) (136.0988328 -18.72970981 0) (138.6626932 -16.4250631 0) (140.1527637 -13.37942159 4.448904862e-19) (140.0265244 -14.78953242 -3.893236518e-18) (139.2154449 -15.96311525 -5.418047008e-19) (123.223205 -26.56222313 0) (123.408033 -26.37745166 -3.3122859e-19) (124.5140235 -26.14691449 0) (125.1235587 -24.97423334 2.993253745e-19) (126.1909964 -24.62099953 -3.131042703e-19) (126.3846915 -24.7953529 -2.018582548e-19) (127.9988856 -23.82392689 -3.373556621e-19) (129.0832681 -23.29684903 -3.457168579e-19) (126.5440396 -24.43980205 3.100521631e-19) (127.6348233 -23.99059693 0) (126.1665318 -24.98132255 -1.749891527e-18) (108.5058018 -30.20892573 3.837153038e-19) (112.4843366 -29.65586351 1.782488667e-19) (113.4267269 -29.65859717 0) (92.88109835 -8.923094255 5.625561145e-20) (92.98901942 -9.085496074 -5.452845077e-20) (91.64069895 -9.156425582 3.005197161e-20) (91.76131756 -8.77813046 1.254110924e-19) (92.7354687 -8.713789816 1.118081956e-19) (92.84501191 -8.862286349 -5.666848367e-20) (83.63000054 -9.433555146 1.726740981e-18) (83.99418465 -9.100106441 0) (84.08369146 -8.796259609 0) (83.82535501 -7.434830466 0) (84.95119707 -7.142012595 1.765780377e-19) (81.84903351 -7.62221321 1.082048707e-19) (83.38553544 -7.513151641 5.791884108e-19) (83.69503076 -9.052222647 0) (86.08264257 -7.041332022 1.528111425e-18) (86.15127248 -6.515008467 7.658347879e-19) (86.602465 -6.172844709 0) (85.26060069 -7.023977109 0) (85.96686006 -6.639340184 -3.955535188e-20) (85.90637592 -7.202260494 0) (78.80614653 -10.12910322 2.433742082e-19) (79.16295682 -7.376632639 4.960929624e-19) (81.25000306 -7.605988164 1.657532985e-21) (77.74433 -11.38719044 0) (78.91584288 -11.2722583 2.440567448e-19) (150.0516288 21.36358513 2.268972002e-18) (150.2655557 17.80283319 5.178930558e-18) (147.4219917 17.28437618 1.651760839e-18) (150.8128836 17.79849385 0) (150.7893249 21.37307059 1.170896538e-17) (150.6536761 16.54266963 8.119123164e-17) (149.5459911 28.21279841 0) (148.153129 32.59170074 7.242312675e-19) (150.7400504 22.58063366 -1.088498096e-17) (149.8467015 26.83090001 0) (144.8035225 24.70818444 0) (148.8316587 26.37713539 0) (149.8981095 22.5742645 -1.00582804e-18) (87.17181508 -5.274214746 1.053968119e-18) (87.89841047 -5.225773155 7.141083355e-19) (87.92984195 -5.233374256 -7.230097235e-19) (87.7581543 -5.239763954 0) (87.86720328 -5.228225923 6.032586687e-20) (87.14293997 -5.301426537 -1.017722981e-19) (87.99804861 -5.361087295 -1.474925078e-19) (88.06658925 -5.501587921 -6.06413315e-19) (87.9322121 -5.252787786 1.432638297e-19) (87.980155 -5.327444036 -1.465908162e-19) (86.71914666 -5.907469177 1.934793847e-19) (87.12518383 -5.720281622 2.948458659e-19) (87.34326655 -5.519388192 -1.497924028e-19) (86.72347331 -6.071249696 0) (87.0377104 -5.800172695 -1.457098654e-19) (86.66052646 -6.018837676 -1.939618428e-19) (86.98441355 -5.408804544 8.87131756e-19) (87.59791688 -5.315702229 0) (87.7224947 -5.25052949 7.920549399e-20) (87.402723 -5.463593581 1.505065667e-19) (87.55116819 -5.34390689 0) (86.94029084 -5.43372101 -9.916481137e-20) (144.9508388 -7.606856037 2.396265672e-18) (143.8911044 -9.637010605 0) (143.4525297 -8.483716527 -1.054516757e-18) (145.5996616 -4.026502236 -2.03897737e-18) (146.0130175 -5.055589303 7.90641558e-17) (145.2431053 -6.904356516 6.916827298e-19) (88.98078546 -6.024137376 1.471628127e-19) (89.0625646 -6.065782782 0) (88.86443258 -6.049319993 -2.8078134e-19) (88.96201643 -6.021855888 4.371319264e-19) (89.17741953 -6.085356061 5.425546652e-19) (89.2089861 -6.152273827 0) (89.09785812 -6.073895851 1.506215871e-19) (89.16935818 -6.077005236 3.078132375e-19) (88.33116302 -5.757596622 0) (88.51945836 -5.861107361 7.973809946e-20) (88.10279766 -5.560293023 0) (88.26920697 -5.716742607 -1.557177325e-19) (88.81629064 -5.987596299 -6.510084631e-19) (88.85056043 -6.036438197 1.407714459e-18) (88.58229124 -5.890002641 -4.036796031e-19) (88.76515635 -5.965477014 -1.587356893e-19) (130.8327553 -22.3210191 0) (131.9118999 -21.71104423 -1.624699117e-18) (129.4494585 -23.10878935 0) (130.5088672 -22.50419686 -3.632221984e-19) (127.2333446 -23.251192 0) (133.5784184 -20.57723235 -3.422822608e-18) (134.871861 -19.77480926 4.215429925e-18) (132.2641173 -21.47223798 -3.954728953e-19) (133.1944027 -20.82979491 0) (89.54898054 -6.784064145 -6.384484495e-19) (89.4859342 -6.662722885 0) (90.60744541 -6.645604035 -1.330386006e-19) (88.46497044 -6.633131224 7.892468184e-19) (88.55679042 -6.738258734 7.548904576e-19) (88.51442696 -6.380950646 1.644097124e-21) (88.44512383 -6.557795633 1.310612569e-18) (88.52587474 -6.76421743 8.809017803e-19) (90.71058464 -6.92065319 1.726503934e-22) (88.77299625 -6.892343449 5.54956613e-18) (89.51990013 -6.820596749 1.011563025e-20) (89.53455679 -6.310276268 0) (89.7184012 -6.270186242 7.43840425e-20) (90.33600181 -6.188053524 -1.305183494e-19) (89.2650831 -6.274290698 2.62853541e-18) (88.61455772 -6.28241886 0) (89.22960837 -6.178916622 0) (89.2581973 -6.248980748 0) (88.58659444 -6.308750427 -6.74187822e-19) (88.5422646 -6.352403511 6.831681454e-19) (88.59356479 -6.283389699 8.117863073e-19) (88.59100504 -6.299522486 0) (90.48246627 -6.340570562 3.787547702e-19) (89.53966003 -6.344892604 0) (89.52805086 -6.322840371 -2.731956592e-19) (113.4224476 -27.81931417 0) (121.3213855 -27.36656389 0) (116.2805224 -27.53330563 0) (116.3086533 -28.02857197 -1.821822736e-18) (116.4628132 -27.4067097 -2.653633088e-18) (121.6181416 -27.26547354 2.820819682e-19) (93.89379173 -29.11959436 1.774227663e-17) (107.0432461 -30.54880694 3.719589908e-19) (97.3864156 -29.49392447 -1.83617792e-18) (97.86196994 -29.74935045 3.66905832e-18) (91.03897383 -8.075860464 -1.308430654e-19) (91.2233028 -8.401155502 -3.318243632e-20) (88.79846908 -7.31096089 -1.25989125e-18) (88.78857133 -7.251418193 0) (90.90779472 -7.304431383 1.319547697e-19) (90.99666845 -7.613565197 -1.3720666e-19) (88.66921239 -7.548749886 1.454317782e-18) (88.78037301 -7.339549653 6.762406328e-19) (103.9485606 -29.54563647 -1.567333274e-18) (91.55618185 -9.798865821 2.361499087e-19) (93.41270481 -9.65964679 5.373913574e-20) (93.50895334 -9.804403229 0) (70.40388228 -20.84424005 -6.359947239e-19) (68.83473911 -21.42596356 1.087333472e-19) (89.9793572 -9.752168398 1.200353151e-18) (71.79856242 -23.29371463 -5.172506214e-19) (76.03836043 -23.26923954 2.075856438e-19) (90.04649332 -25.23347382 1.76187695e-20) (90.98135783 -8.751308481 6.590659593e-20) (82.94849137 -27.33265674 -1.176096698e-17) (87.8823532 -27.27431038 0) (72.28257935 -23.61779795 4.106813963e-19) (87.07198466 -27.34013952 -4.1622654e-21) (90.29345556 -9.154119426 0) (117.8931514 22.12155617 3.189566103e-19) (114.1447936 11.89426874 0) (108.7156465 11.99958418 4.378373161e-19) (109.3612111 -28.94611494 -4.948528285e-18) (109.6194567 -28.84855028 0) (108.6932667 -19.04650162 3.169591991e-19) (108.6337971 -13.87014032 -5.225639984e-19) (112.6428295 -13.36847038 0) (109.0541776 -28.62701542 1.698995224e-17) (104.8741406 -29.89898133 -6.780905251e-21) (100.8043204 -30.41878455 0) (100.9788598 -30.19871534 4.775305078e-20) (117.3908486 -24.63568825 -1.320928804e-19) (113.0172714 -24.37300778 5.719702608e-19) (112.6999549 -20.61600524 0) (55.2525244 45.32651701 5.295597603e-18) (56.13746425 23.42316057 0) (46.05360566 10.21675461 -7.822491126e-18) (97.50310186 84.99113213 0) (85.44464083 63.55735907 0) (60.80091804 54.19773617 -1.451756096e-18) (110.9776252 23.19561579 -6.420037394e-19) (106.0944124 30.20764177 0) (118.7422746 38.18066988 -7.072579199e-19) (138.6729951 33.54270163 -4.890192267e-19) (142.563844 36.97232262 0) (145.7096399 33.00182364 0) (89.38631857 -5.579167699 0) (89.8124172 -5.254403462 7.803687153e-20) (90.10343368 -5.419393849 1.550832607e-19) (89.41292274 -5.007939603 -2.392438146e-19) (89.71262016 -5.194747227 0) (89.27629962 -5.520119789 9.553024833e-23) (111.1192708 -29.53738128 1.649522758e-19) (112.1473553 -29.68578669 -9.085068581e-20) (108.7955971 -30.26266375 0) (117.3128981 -27.58882207 6.202312971e-19) (115.1941753 -27.67025001 5.994618102e-20) (115.4255725 -25.47324679 -9.947085271e-19) (92.5788172 -8.515586701 0) (92.69660893 -8.659528248 -5.609455839e-20) (91.73040031 -8.745213125 4.938700213e-19) (146.5870331 31.70015772 5.527838469e-19) (148.3771106 27.65578788 0) (144.2556084 25.75933968 0) (90.19565153 -5.470653439 7.714838469e-20) (90.45395871 -5.616292302 0) (90.06269249 -5.869573185 1.422745706e-22) (89.77991242 -5.874045281 2.570058114e-19) (89.31738701 -6.002560348 -2.746977682e-19) (89.19322949 -5.990043007 -2.69897933e-19) (89.15754889 -5.975228689 -1.228701218e-18) (89.03655739 -5.92871665 -3.774283877e-19) (89.43616881 -5.756550037 6.52686389e-20) (91.67541592 -8.399803854 0) (92.44004549 -8.322439418 5.623864412e-20) (92.5422219 -8.46073978 -5.588477474e-20) (103.8826268 -30.0114396 -1.908754462e-18) (104.2042805 -30.19686685 0) (107.2285745 -30.54678541 -2.151238077e-20) (89.38651919 -8.425509963 1.030866178e-18) (89.4393257 -8.387811303 0) (90.86019679 -8.488120931 0) (106.5251117 -30.29639114 -3.708730854e-19) (101.9511053 -29.57501169 -5.748495199e-18) (102.9539712 -29.74014316 1.405997442e-19) (108.3270739 -30.35150931 6.029401277e-19) (109.7107758 -29.30912312 -5.616190391e-22) (110.7613039 -29.53714012 0) (89.90760521 -9.408300315 0) (90.84920724 -8.644091741 1.027599296e-18) (89.38988304 -8.578902616 9.497555928e-21) (89.37246234 -8.486183526 1.506994258e-19) (89.91773096 -9.185264675 0) (141.325989 54.83155381 0) (123.4415298 -25.42737322 0) (110.6170474 -29.94051495 0) (110.4814973 -29.7738449 0) (106.7300178 -29.24445035 4.017912002e-18) (116.329746 -29.11959594 4.786358184e-19) (115.4353193 -29.25942985 -6.450945502e-19) (116.2650147 -28.17191499 0) (85.47266751 -7.722811079 1.175301408e-21) (133.9237255 24.57327725 -5.308165594e-19) (129.1370992 28.16951427 -1.172720382e-19) (133.1824342 34.80240975 0) (118.7017996 -27.95865074 -1.209237973e-19) (117.0547258 -28.81740053 2.586882984e-19) (116.5479376 -29.05932366 -6.918263741e-22) (89.25701818 -28.54448427 1.255747992e-18) (88.45000729 -28.40458835 -6.217927355e-18) (85.86912134 -27.89247331 0) (90.18997321 -28.64566262 -1.317749515e-19) (88.97528238 -28.51055138 3.738318515e-19) (109.6620258 37.79806822 -1.163062988e-18) (101.4298737 45.22072075 -7.868413089e-19) (115.0504949 57.50443798 0) (145.5200385 47.14493574 -1.017582462e-17) (143.5400221 46.27632186 5.722281593e-19) (141.6716951 48.20811513 -1.114694599e-18) (149.3510263 34.6198066 3.865410551e-17) (149.00239 36.58101825 -1.689676229e-18) (122.9784193 -26.77822705 0) (121.403603 -26.89730556 0) (121.3098026 -27.06734915 -9.941296241e-19) (121.2383769 -25.67049239 0) (121.7071514 -25.9373717 8.507720424e-18) (123.7952563 -25.94595508 -5.387843602e-19) (123.6785541 -25.4338934 2.807177736e-19) (124.7553217 -25.13967298 0) (124.1933873 -26.26560748 0) (126.0065033 -24.47632462 -5.791454351e-18) (127.9572192 -24.22753905 3.502686056e-19) (128.191266 -23.98340163 0) (108.1228119 -29.8415046 -8.776112235e-19) (111.0287974 -30.11828582 1.977573674e-19) (110.8551809 -29.99826971 0) (82.77888616 -10.14321304 6.270928193e-18) (82.00572106 -10.62180782 0) (84.62471805 -8.549820421 -1.756145639e-18) (84.74086223 -8.317438058 2.829817129e-18) (84.75005885 -7.977381606 -1.427467515e-18) (85.04992295 -7.774229418 0) (86.28508656 -6.688715209 -1.321583815e-18) (86.40311181 -6.575700182 0) (86.50270258 -6.437834551 0) (85.32335862 -7.568614425 0) (85.56475437 -7.366432803 0) (85.55033609 -7.603027682 0) (75.88944946 -6.003935044 -5.520089133e-21) (78.37368117 -7.080501472 -2.907543109e-21) (77.73730665 -10.1230282 0) (75.094858 -11.1788075 -2.236574736e-18) (75.05979705 -13.07380238 9.490155378e-18) (73.22163933 -12.2533742 0) (81.50999077 -10.96862297 0) (80.84242327 -11.37488154 0) (80.83259261 -10.79788359 0) (86.98682059 -5.212102204 0) (87.34578418 -5.227650629 -2.246905854e-18) (87.25319386 -5.236532657 2.876360159e-18) (87.40443078 -5.295372246 -7.107842175e-19) (87.43015376 -5.294559838 -6.273893882e-19) (87.06909603 -5.295565227 -1.006364933e-19) (87.14738037 -5.438878292 -7.587077284e-19) (87.14208503 -5.513682346 -1.123518199e-22) (87.19258113 -5.253255048 -3.472919869e-19) (87.17871183 -5.268433741 -1.824678072e-19) (86.82314957 -5.738512605 7.785444822e-19) (87.06381685 -5.720464864 -1.62830615e-19) (87.120442 -5.63885945 -5.013815805e-19) (86.59530059 -6.319162881 3.163115043e-19) (86.69117097 -6.210569413 -9.636413014e-19) (86.48030581 -6.276716412 7.716326667e-19) (87.05613493 -5.312175039 -8.906072596e-19) (87.36719486 -5.329082204 1.484896978e-18) (87.38659656 -5.30433574 6.168143359e-19) (87.16321671 -5.561062705 6.700011923e-19) (87.19117498 -5.500512051 8.448083412e-19) (86.91438768 -5.484935483 -2.102395213e-21) (89.44580933 -6.045853038 0) (89.34901677 -6.009385671 0) (89.8219423 -5.892661422 -1.931813713e-19) (90.07835556 -6.000459179 0) (89.56036562 -6.075693576 1.465839758e-19) (89.47994094 -6.055351332 0) (88.73963934 -5.802723633 -3.776895216e-19) (88.55749236 -5.699263725 2.969552893e-19) (88.9856118 -5.52595625 -4.35165705e-23) (87.55525499 -5.922931981 9.522273962e-20) (87.61636092 -5.951966007 6.669073253e-19) (87.15938216 -5.612837704 4.820894547e-19) (87.21376757 -5.70261851 7.687969941e-19) (87.66948361 -6.079572701 0) (87.67619526 -5.977669153 7.627318423e-19) (87.73418596 -6.00013497 -7.631561549e-19) (89.3812241 -5.729389312 6.582634404e-20) (88.98167231 -5.90789788 -4.786903808e-21) (88.80100217 -5.832148819 7.551821509e-20) (129.4683686 -22.49312636 1.152932502e-17) (129.9153801 -22.27321209 -8.350622529e-18) (128.4860675 -23.75976168 3.160922706e-18) (128.8165822 -23.5421595 2.106200849e-19) (127.1675798 -23.71434685 1.226704654e-19) (130.2177563 -22.02888047 9.730453714e-18) (130.0373954 -21.76793072 0) (133.5437731 -19.16065914 3.754967144e-19) (133.5689941 -20.46321003 -7.747737938e-19) (132.4516696 -21.08495196 7.704757958e-19) (92.285833 -8.14528438 5.700791566e-20) (92.40453634 -8.273616919 -8.468021831e-20) (91.68899122 -8.374692318 0) (91.4704852 -8.058063028 0) (92.12118917 -7.953325797 1.712586013e-19) (92.24412413 -8.094652611 0) (90.43020799 -8.239977177 5.659002406e-19) (90.37514914 -8.196424814 -1.127299681e-18) (91.111532 -8.193578299 5.345811287e-19) (91.22217473 -8.316834325 2.761605745e-19) (90.50124854 -8.305149118 2.558910236e-19) (90.47253351 -8.273585798 3.576152177e-20) (104.5138388 -29.34858385 1.348342329e-18) (91.21529213 -9.979725001 0) (92.47548392 -9.843589752 0) (92.48008441 -10.07022321 3.057330339e-18) (43.49383012 -15.15256379 3.944081209e-17) (89.41596302 -10.1820795 -1.619266519e-18) (90.04763077 -24.85354675 -4.871625843e-21) (77.13768623 -22.9914296 -6.120417896e-20) (79.09320408 -22.28499789 -1.192922121e-18) (89.55827834 -8.780263659 -1.2627209e-18) (89.58185481 -8.711094106 -1.236604795e-18) (90.97938965 -8.812516718 0) (83.07045213 -27.19832745 4.109218487e-19) (78.89166396 -26.3037672 1.871822688e-18) (79.5923079 -26.32153867 -1.41884565e-19) (85.37291179 -27.33913295 1.077897361e-19) (90.9411326 -9.025664559 3.547083815e-20) (89.55143771 -8.929082968 0) (89.56306722 -8.858639277 9.895733065e-21) (91.6039512 -28.01318951 -2.329405984e-20) (97.19812396 -27.79094131 -1.40312129e-19) (97.96862303 -28.75425819 -1.624269105e-22) (108.577193 -29.17367422 -8.947885824e-18) (109.0272535 -29.05576323 -2.193355422e-18) (112.7933906 -29.16329931 2.729958662e-19) (112.8261503 -29.34409678 4.447876841e-18) (115.0530076 -29.44931315 -6.132762026e-20) (46.58743479 -4.756614902 -4.703400679e-18) (36.09443314 3.528687391 0) (49.67203061 -9.679443573 0) (115.0384909 -29.10502445 0) (111.3702769 -28.72202278 0) (112.1770138 -28.90657092 -6.92206096e-18) (111.84598 -28.44351464 -6.291100637e-18) (111.8035724 -28.57045051 1.54585845e-19) (114.9941745 -28.92085721 -3.396147134e-20) (103.9231895 55.74543946 0) (91.82589583 61.7751774 -1.849930078e-18) (105.0996859 77.20210253 0) (148.0824382 0.5553093972 -3.814878079e-20) (148.1915475 1.359533563 1.755379988e-17) (147.6314229 -0.9630569604 6.506175426e-19) (147.8753543 -0.2068077115 -5.995178521e-19) (150.4818937 11.27484493 -5.689065663e-18) (149.9275366 11.42667757 5.586594693e-18) (150.0018317 12.43342434 0) (149.7327958 9.449561137 2.492366384e-18) (149.8409277 10.43236541 -6.240275773e-19) (150.3710282 10.24285263 7.211270277e-19) (141.3901073 -13.32917933 0) (141.7623631 -12.72214918 2.029452099e-18) (142.167734 -12.16261175 -2.087987169e-18) (140.925458 -13.76168566 9.41897953e-19) (141.3471772 -13.26412724 -3.439206881e-20) (140.9243014 -13.89764961 1.153282528e-18) (150.5508426 15.57678231 0) (149.8887018 15.64046325 -3.465080206e-20) (149.7133861 16.69145087 0) (150.0462979 13.47053995 2.372802633e-18) (150.0150361 14.55044238 -2.345140097e-19) (150.7093625 14.50422626 -3.2151393e-19) (143.0983989 -10.9104693 0) (143.3165917 -10.38101114 -5.63493613e-19) (143.6792811 -9.766050983 2.864287245e-19) (142.5656079 -11.5900859 -2.759883361e-18) (142.9476544 -10.9903762 7.466732289e-18) (142.6956063 -11.54848238 8.531186129e-20) (147.1665736 -2.599422498 6.347445678e-19) (147.4110109 -1.756215125 -6.484409112e-19) (146.5079372 -4.0581844 -2.719443878e-17) (146.8704652 -3.366847271 4.759207428e-18) (89.47431059 -6.541237371 1.515386732e-19) (90.02507721 -6.567375885 -2.885683072e-19) (90.03002782 -6.617673988 7.301510125e-20) (88.61743763 -7.023136173 -1.629325214e-19) (89.78749693 -7.082963516 5.432998082e-19) (89.80159837 -7.12204367 4.126904166e-19) (89.79254726 -6.994734149 -2.630641943e-19) (89.77716886 -7.04407849 4.020277857e-19) (88.605803 -6.980723409 4.798586708e-19) (99.96472374 -29.46776158 0) (99.99775206 -29.39196229 2.049217392e-18) (100.6141023 -29.79161507 -1.308554542e-19) (99.55303805 -29.56858944 3.263714545e-19) (88.94375084 -7.856603301 -1.273400845e-18) (88.92969741 -7.91783791 -8.01080909e-20) (88.95680646 -7.788480784 0) (88.95358596 -7.815995429 1.258885574e-18) (88.71600226 -8.27653188 -2.076244126e-17) (90.95022243 -8.43346585 -1.085661034e-18) (89.60720079 -8.365907602 -3.040084354e-18) (89.85858301 -8.348598498 1.064294661e-17) (88.72609893 -7.210722097 6.60314484e-19) (89.87599802 -7.245165582 -7.093762371e-19) (89.90464477 -7.272818487 0) (89.81897063 -7.166285981 -5.590415485e-19) (89.84469703 -7.209896871 -4.231480734e-19) (88.68055656 -7.177430632 -6.641580848e-19) (89.12322926 -7.748027836 -3.744561177e-18) (88.98833784 -7.766737963 -1.174766732e-18) (89.86353276 -7.695524818 -1.932428101e-20) (89.32646894 -7.71930125 3.778607805e-18) (88.23815599 -7.660032849 2.434936877e-18) (101.3680114 -29.2815571 -1.233787141e-17) (102.1802732 -29.50399185 0) (106.0108914 -30.05272903 0) (99.3767603 -29.1887567 1.196378844e-17) (93.31773208 -9.845417916 0) (92.85042661 -10.29251262 2.411466296e-19) (79.56866933 -9.250484172 -1.130068212e-18) (91.48693676 -9.595653976 1.071390697e-18) (92.40178585 -9.610784497 -4.706633296e-19) (92.45440078 -9.695487352 5.074867235e-19) (89.94165461 -9.515434317 1.037119715e-20) (67.94497963 -21.91691914 -2.691227714e-19) (67.29696029 -22.03346417 0) (46.25810483 -3.558796243 2.050609334e-18) (66.39553656 -16.75601961 0) (70.47094905 -20.26728727 -1.442903352e-18) (89.55657233 -8.677445036 -1.174028669e-18) (89.46087487 -8.657843389 -1.213849626e-18) (90.88930557 -8.702757834 3.923567257e-19) (89.96631733 -9.175869374 1.06553589e-18) (136.34597 62.09241781 1.897484947e-17) (140.3022297 58.07069386 0) (138.3590941 57.76679158 -8.423751078e-19) (122.5748757 74.54432779 -9.423295661e-17) (121.9454206 72.32349347 0) (114.8972317 73.61869783 0) (133.5939906 65.57648472 0) (128.1920621 68.96779065 0) (123.7658219 -25.2495152 0) (124.2051981 -24.72340066 0) (106.7947944 -29.15181501 -2.428237066e-18) (110.2820222 -29.59645873 -2.93321944e-20) (109.4952164 -29.34505009 6.02220254e-18) (85.63005503 -7.484212201 1.880442346e-18) (86.01900577 -6.886137754 0) (54.60769106 -9.404471734 0) (58.2887125 -5.808773205 0) (60.54877551 -8.509820189 0) (68.79438368 -13.99542651 -5.166507529e-18) (70.96879955 -14.04179145 0) (63.26750375 -10.65934193 0) (66.17935787 -13.24602682 0) (64.55734107 -14.2577619 4.608264983e-17) (113.4785142 -28.300156 0) (111.275549 -28.21717294 0) (113.9005386 -28.15552775 0) (95.50123381 -29.46012118 -9.78070334e-20) (91.53026315 -28.78994859 0) (92.08791628 -28.92757272 0) (94.42028829 -29.328619 -2.658473796e-18) (97.85260299 -30.00280304 -9.134372537e-20) (92.7203249 -29.10943487 5.142157091e-18) (94.06489545 -29.3917412 2.049977663e-19) (91.97661434 -28.91610851 -4.190655161e-18) (91.4857269 -28.92239308 -2.316697871e-18) (97.31868739 -29.9821622 3.095567898e-19) (92.33451607 -29.13577764 1.740427529e-19) (91.54463818 -28.91978057 0) (86.631567 -28.03884744 -1.606177216e-18) (88.58044863 -28.26454497 -7.191696742e-19) (93.44926923 -29.14245503 2.282199281e-19) (92.95109125 -29.12507766 -1.587707572e-19) (146.6534843 42.15905964 1.535786561e-17) (145.2112829 44.34053396 5.68595676e-19) (146.8258572 44.90284203 0) (146.4630235 35.43841965 0) (147.9642309 36.35680046 1.635764753e-20) (148.6937867 34.58531048 -1.469119067e-17) (148.4747866 38.22343692 -5.507106234e-18) (147.7539156 40.13343342 -2.823808471e-19) (149.0194635 3.78460253 7.666120353e-19) (148.7829623 4.09554428 -2.643880497e-18) (148.9495043 4.945504455 -1.315999032e-18) (148.3101043 2.218247328 -1.613502022e-17) (148.6589711 3.268678925 -9.173016319e-18) (148.8062786 3.033646006 1.391115656e-17) (149.8447472 7.298324351 -2.211057193e-18) (149.435492 7.577774017 -2.547032055e-18) (149.5948039 8.494278234 2.522163037e-18) (149.1117069 5.80547378 0) (149.2738495 6.685018543 -1.283780126e-18) (149.6547631 6.391272185 2.213531057e-18) (138.3277433 -16.93497153 4.370425604e-18) (138.4139 -16.52543892 -4.78966488e-19) (138.8579164 -16.07298034 1.247290026e-19) (137.1057363 -17.95308311 -4.84943189e-18) (137.6670689 -17.5271334 -9.149314404e-18) (135.4991421 -19.18319023 -1.864423981e-19) (134.2807407 -19.53463158 0) (134.2734629 -19.87198323 6.023270847e-18) (135.5610843 -19.05794284 0) (139.0081344 -15.94287147 0) (139.0829265 -15.52088248 0) (139.9252441 -15.04907928 0) (140.130592 -14.68254148 -4.755783012e-19) (140.5233771 -14.22837205 -4.714148152e-19) (139.2950475 -15.61273095 3.82355566e-19) (139.7251501 -15.14858628 -1.963421874e-18) (139.6184272 -15.49148648 0) (120.5811405 -26.60801774 2.550788064e-18) (121.0745147 -26.71005515 -2.107614503e-18) (123.1128866 -26.6451309 1.852394327e-18) (118.5506835 -26.62646627 2.180693586e-17) (118.7743469 -26.97553122 6.342683546e-18) (119.008091 -26.8378958 0) (123.6709643 -26.18032389 3.498233769e-19) (121.4791066 -26.18093291 -6.572424586e-21) (121.1058004 -26.421622 2.652222407e-18) (127.4904406 -24.5753519 -5.409414385e-19) (127.7380909 -24.39004155 1.405178585e-18) (126.2991319 -24.59047129 3.017846685e-19) (83.22739081 -9.792516985 0) (84.31952299 -8.803310457 0) (86.13677365 -6.876331854 -1.462543623e-18) (86.28225476 -6.727418757 -1.229525595e-18) (86.1804453 -6.86194063 2.296519535e-21) (85.73997676 -7.383006068 3.858824705e-19) (85.77322514 -7.180774494 -3.602776108e-19) (85.95879385 -7.018155902 0) (77.83692158 -12.79603111 6.472402589e-18) (76.5882887 -13.0842739 6.270808071e-18) (76.46137178 -11.37219877 0) (72.92349639 -13.90400576 -6.660869654e-18) (74.5874578 -13.78527657 -3.56467438e-17) (79.94941066 -11.06153946 -2.506600116e-19) (80.01608376 -11.85868742 0) (78.99565734 -12.36436666 0) (150.1572959 20.18262455 1.888687643e-18) (149.2409424 19.93876414 -2.450510158e-18) (149.0545167 21.09864559 -2.079631266e-18) (149.5500681 17.69989366 -2.473633604e-18) (149.3938702 18.79605396 1.20459223e-18) (150.2235156 18.9728228 3.346589874e-18) (150.8848764 18.93425452 3.25997965e-18) (150.8540839 20.17743768 0) (149.2398783 29.61357569 0) (150.2240915 29.688061 0) (150.3761993 28.26350132 -1.127103514e-17) (149.4255488 32.93429032 8.427129993e-18) (149.9471131 31.27309341 -1.106063971e-17) (148.7899296 31.09090904 0) (150.5536471 23.83871921 0) (150.571732 26.9725382 -1.805421184e-18) (150.7315126 25.20847357 -4.091638385e-17) (150.1706201 25.21447824 0) (87.52535275 -5.280588552 5.092104323e-19) (87.54097858 -5.261607117 0) (87.17533832 -5.233004043 0) (87.09966348 -5.30533912 2.014795399e-19) (87.4637875 -5.295801545 -4.52282232e-19) (87.50177781 -5.292613114 -4.576310866e-20) (87.16657854 -5.342300845 7.525107985e-19) (87.15706511 -5.382970296 1.702461761e-18) (87.17801591 -5.286687525 0) (87.17394369 -5.311161172 7.487591997e-19) (86.94345977 -5.88949306 4.937811908e-19) (87.00421492 -5.800683322 6.620058996e-19) (86.7668094 -5.820263802 -1.945182063e-19) (86.57744847 -6.147710607 1.925526713e-19) (86.78732115 -6.101182838 -6.501890185e-19) (86.87304857 -5.991466306 1.627371567e-19) (87.29151273 -5.401035387 -8.642417614e-20) (87.33494721 -5.365855424 0) (87.03221998 -5.360930555 9.850003562e-20) (86.9181881 -5.451479544 -7.861803866e-19) (87.21641159 -5.458805392 -8.534811762e-19) (87.24927085 -5.429161393 7.724514832e-19) (144.624753 -8.309622697 2.665031415e-18) (144.6972412 -7.822240825 -2.447210215e-18) (144.9986101 -7.149255703 -1.222307135e-18) (144.029564 -9.127317856 2.936833749e-19) (144.3692599 -8.478839911 -2.700313484e-18) (144.2638568 -8.962367278 2.635186754e-18) (145.8311927 -5.598981825 1.294637715e-17) (145.9213739 -5.175553075 -1.025974454e-17) (146.2946341 -4.519545324 -2.286874432e-17) (145.2817171 -6.485138502 0) (145.5792693 -5.829240122 1.603690686e-19) (145.5414184 -6.239296322 2.92362694e-18) (89.00176262 -6.03571056 -1.037165013e-18) (88.25931392 -6.029245511 1.401568399e-18) (88.25197197 -6.015336681 1.746231096e-19) (88.31681859 -6.065834082 0) (88.28130762 -6.050273228 0) (89.02921989 -6.051578147 -7.454487651e-19) (88.899742 -6.045345701 -3.551460349e-19) (88.21021881 -6.063568164 6.7823579e-19) (88.18541381 -6.089009875 3.242243846e-19) (88.25144343 -6.014302893 -8.682819237e-19) (88.2405069 -6.032441251 1.024685228e-21) (88.93648673 -6.031379317 -5.759452711e-19) (89.18416574 -6.101982861 -7.03751462e-19) (88.40722142 -6.069017867 6.238554568e-19) (88.41493039 -6.051893493 -7.096169574e-19) (88.4134141 -6.12879313 0) (88.40499291 -6.095659563 -6.265219144e-19) (89.19395062 -6.125035477 -6.307382505e-19) (89.12953733 -6.076436506 -6.074047375e-19) (88.39279541 -6.06521358 7.913801316e-19) (88.357351 -6.069530511 -8.773240653e-20) (88.42131156 -6.046522842 -7.064373083e-19) (88.4154968 -6.053881506 1.408366671e-18) (89.15393913 -6.075827774 -9.163004225e-19) (87.42965229 -5.853507524 0) (87.49268177 -5.890837839 0) (88.39344553 -5.795276521 1.572416386e-19) (88.06094943 -5.849307253 -1.664033771e-19) (87.99675644 -5.812434033 3.304429357e-19) (88.19005826 -5.912292755 -5.877850619e-19) (88.12568429 -5.882292321 -8.327944121e-20) (88.4563892 -5.829702721 -1.590146656e-19) (87.29139345 -5.763088267 1.625697137e-18) (87.36483018 -5.81018502 7.652324219e-19) (87.87521798 -6.060333603 0) (87.90617852 -6.065417876 -9.276132659e-19) (88.86597322 -6.017247092 -7.788142398e-20) (88.53068713 -6.064285367 0) (88.47573365 -6.038313458 7.006898082e-19) (88.21492491 -6.098471265 0) (88.28241745 -6.08554538 -2.102178825e-18) (88.85304401 -6.021933764 2.422847761e-18) (88.64450857 -5.916529525 3.252787798e-19) (88.31622793 -5.965008401 1.344617696e-21) (88.25370806 -5.939881636 -1.433239547e-21) (88.43536619 -6.012947851 8.62229093e-20) (88.3764496 -5.989336739 -2.567416108e-19) (88.70567022 -5.941443136 3.267847009e-19) (87.78875108 -6.022667436 0) (87.84252638 -6.041890126 -7.737624546e-19) (128.7437196 -22.90119801 1.514700016e-17) (129.1240661 -22.68881616 3.539241218e-18) (127.4495956 -23.51611068 -9.250093363e-18) (129.0689801 -23.30466106 -2.105184737e-19) (129.0313068 -23.04393547 -1.300180706e-17) (133.9849944 -20.3134619 0) (132.8300397 -20.74653837 -2.622742533e-19) (132.3612712 -21.02255638 3.965192551e-18) (133.8568006 -20.20242319 -5.166978068e-18) (133.3224388 -20.49030215 2.69383016e-19) (134.4173983 -20.05433933 -3.761686438e-18) (132.5622485 -21.24964965 -3.860342535e-19) (131.5962775 -21.57025805 0) (131.5609063 -21.78590599 0) (131.9544717 -21.27711085 3.639113131e-18) (131.4708033 -21.49028441 -3.220987687e-18) (132.8593518 -21.06898605 0) (89.53552462 -6.750549566 -7.872702287e-20) (90.08346241 -6.755840835 0) (90.09828323 -6.793885542 0) (90.04325209 -6.669140007 -1.542420351e-22) (90.06326171 -6.715598896 2.228779735e-19) (89.51205446 -6.712409135 7.765969618e-20) (88.50678226 -6.682633971 -7.012765675e-19) (88.54157778 -6.714399371 -7.035441469e-19) (88.48461835 -6.422196939 0) (88.45598095 -6.478787305 -6.964685249e-19) (88.48524628 -6.775370942 6.421695578e-19) (88.04793798 -6.806170101 -1.273135646e-18) (88.99000713 -6.856015838 -5.85172853e-18) (89.96651512 -6.890027793 2.116822229e-18) (89.8616842 -6.933861562 -1.847476174e-18) (90.09350099 -6.83057072 -3.384423993e-19) (90.08498473 -6.879397756 -2.21260445e-18) (89.50155447 -6.858648213 1.26528387e-18) (88.86737547 -6.26765075 -8.00100005e-18) (88.08135121 -6.232848739 2.074935108e-17) (88.43436946 -6.22169568 -2.640549599e-18) (88.71466238 -6.278840345 5.693825112e-19) (89.25088621 -6.20237987 0) (88.45395992 -6.17780673 8.128647753e-19) (88.43285048 -6.157134495 6.297879924e-19) (88.45141198 -6.21498389 0) (88.46866049 -6.194181807 7.308147981e-19) (89.26979674 -6.224042824 0) (88.57864159 -6.319281203 0) (88.56413729 -6.332669885 -6.796887693e-19) (88.59539242 -6.285991628 9.931804906e-19) (88.59448399 -6.291665311 -8.345872774e-19) (116.0169166 -27.69066925 0) (118.8928182 -27.88927291 1.139645938e-18) (119.057813 -27.74972389 0) (118.8726898 -28.14464631 2.652001383e-18) (118.8386436 -28.06011776 -8.099583233e-19) (115.5853064 -27.86630722 2.739592481e-19) (117.9882465 -27.26783648 -2.383276168e-18) (118.4435669 -27.12637308 8.33209926e-18) (119.0805952 -27.5793117 -6.425594701e-19) (118.623201 -27.38423823 -7.915856276e-18) (115.9192436 -27.19910601 2.538008031e-17) (97.22976224 -29.53081453 0) (101.8193811 -30.27748403 0) (101.5471516 -30.09890294 -1.645340638e-19) (102.4773063 -30.46789053 0) (102.0612165 -30.43724062 -2.786376292e-19) (96.71603055 -29.56377908 -6.674536184e-18) (89.05934966 -8.165954466 1.206683573e-18) (89.14062774 -8.202975109 4.071940828e-20) (88.93489815 -8.007113865 -1.285270855e-18) (88.98043701 -8.100208593 8.525201634e-21) (90.46678442 -8.373370659 -1.168248847e-18) (90.4794585 -8.339507946 0) (91.22651196 -8.352485772 3.428365521e-20) (89.22661945 -8.27195282 1.91309993e-19) (89.20448725 -8.270578721 2.942141618e-18) (89.19850447 -8.229093216 4.053100663e-20) (89.23693989 -8.250544388 -1.982835076e-18) (88.80431637 -7.289281105 -2.089377365e-18) (89.94375783 -7.349521738 1.175155192e-18) (89.94377579 -7.380757593 5.188452725e-19) (89.92504704 -7.297309751 -1.43900886e-19) (89.93755989 -7.322228163 1.456149645e-19) (88.8007584 -7.269684436 0) (88.71540631 -7.451963391 -6.926457922e-19) (89.90912195 -7.531386275 5.94393178e-19) (89.86792564 -7.612797309 -9.889568777e-21) (89.9373624 -7.418528959 7.518264364e-20) (89.92384247 -7.468302003 3.812885568e-20) (88.75031156 -7.386385861 -6.834484519e-19) (104.4154431 -29.45403204 1.760051878e-18) (92.500229 -9.773364637 -2.68433512e-19) (92.58737179 -9.871940541 0) (91.68781797 -9.938311647 0) (71.3054256 -21.28159916 1.456533165e-18) (60.99770362 -19.14708399 9.371154971e-20) (57.99284182 -18.05272529 -1.261055972e-18) (62.06401536 -20.05396303 1.141774634e-18) (62.37685118 -19.78232013 -7.715070558e-19) (70.30590682 -21.35288874 -7.11225008e-20) (90.11113596 -9.91324558 0) (73.25415508 -23.2339825 -3.218916745e-20) (80.73002424 -24.68325656 3.73721642e-20) (79.76359969 -24.89441752 0) (90.9891628 -8.771916607 -5.346386054e-19) (89.61175245 -8.67315791 1.220072396e-18) (89.61434655 -8.666238204 1.173744485e-18) (83.33493436 -27.36909571 -6.461465997e-19) (75.62122998 -24.8287381 1.093287394e-19) (76.09941302 -25.08814613 -4.486526495e-20) (78.70266263 -24.85811785 8.844289738e-20) (76.99922134 -24.78803541 1.946417262e-22) (71.5198784 -23.6946763 -2.52602689e-18) (75.37476088 -25.10681714 1.023755143e-18) (86.26066409 -27.45496496 0) (79.17356751 -26.10310695 0) (80.50751071 -26.0999039 -1.239672264e-19) (89.0327238 -9.082263378 2.225108128e-18) (89.52597697 -8.965062385 -3.031820698e-18) (90.92395167 -9.091845506 -3.514760023e-20) (99.71211865 0.7774494331 -1.286066139e-20) (99.64667117 1.054035605 6.070204382e-21) (99.88025787 0.6508131564 6.073846255e-21) (99.62067524 1.159851266 -1.817601537e-20) (99.56812342 1.517386389 -5.590627025e-21) (99.85747149 0.9219613405 -3.315077889e-22) (99.54924884 1.648101238 -1.070527574e-20) (99.54114396 2.061078937 -1.878154875e-20) (99.85524366 1.231698742 4.156517878e-21) (99.54262505 2.200028504 0) (99.61901929 2.586601287 5.501269867e-20) (99.88889934 1.527768765 -1.525134986e-21) (99.65078468 2.699315391 0) (99.81520864 2.954383763 3.082722454e-20) (99.96270468 1.730897986 -1.91860751e-22) (99.87061064 3.004420076 -1.364452819e-20) (100.0741443 3.032020362 1.958049965e-22) (100.0541319 1.775324385 -3.867841711e-22) (100.1296035 2.999374454 -3.022039295e-22) (100.2956391 2.795130244 1.585461329e-20) (100.1317947 1.649443636 0) (100.3286736 2.698531388 -1.021859492e-20) (100.4136824 2.355574139 2.174307938e-22) (100.1711065 1.404202142 0) (100.419682 2.229435519 1.928266574e-21) (100.4271539 1.843771241 4.886700061e-21) (100.1735988 1.115058821 -4.056723848e-21) (100.4133488 1.718646749 -2.299539549e-21) (100.3751545 1.366801064 0) (100.1515151 0.8407592972 -1.025018872e-20) (99.32912396 1.07428333 -1.373926367e-20) (99.15796403 1.492039056 -1.335892006e-20) (99.54320474 1.175845258 0) (99.0994809 1.655658025 1.013202729e-20) (98.94186526 2.220393383 0) (99.43801067 1.705280882 0) (98.90164586 2.428933063 0) (98.84566816 3.106757496 0) (99.39933366 2.332243155 3.872351761e-20) (98.85265245 3.346116889 1.969737758e-20) (98.98954189 4.059557502 3.828606628e-21) (99.49738536 2.945089835 0) (99.07813393 4.278493229 -6.781043049e-21) (99.47867388 4.793778688 -7.899848671e-20) (99.75195955 3.385082976 6.077862295e-20) (99.64593428 4.898097588 -5.749629209e-21) (100.1841939 4.959150893 -4.41637257e-22) (100.0948663 3.479402289 -1.451691562e-20) (100.3530056 4.893598107 3.255819301e-20) (100.7689594 4.487426072 8.837071502e-20) (100.3857956 3.195884246 0) (100.8664963 4.299699735 -8.402424303e-20) (101.0394491 3.657366583 0) (100.5375973 2.676701044 1.010452935e-20) (101.0603682 3.433654731 0) (101.0477863 2.783053819 -2.006618726e-20) (100.553734 2.085197653 -1.844393293e-20) (101.0229342 2.578468338 8.657840379e-20) (100.9070173 2.004894109 -2.749694914e-19) (100.4852407 1.536594707 -1.105705101e-20) (98.81292592 1.209942088 4.523217328e-19) (98.47781617 1.743190561 -1.147755571e-19) (99.00447066 1.57662923 2.668543527e-20) (98.36340636 1.953017299 -1.158040835e-19) (98.03557974 2.690667895 2.291179996e-19) (98.74180749 2.365689898 5.168794148e-20) (97.93335812 2.982270197 -5.558610861e-20) (97.70065917 4.007574907 2.395387151e-19) (98.60822172 3.350810111 -8.824492868e-21) (97.66708155 4.396946693 -1.846090512e-19) (97.80405468 5.654879076 -3.329862515e-19) (98.75892664 4.446747722 -1.260814433e-19) (97.9550917 6.074043123 2.945856806e-19) (98.77789685 7.1252273 0) (99.34914883 5.316289938 2.532652215e-20) (99.15786985 7.348138981 1.077228339e-19) (100.4030019 7.468899685 0) (100.2252653 5.515043829 4.302219996e-21) (100.7892587 7.330279997 -1.112937128e-20) (101.6730495 6.513711282 -1.12286387e-19) (100.9436479 4.956173571 -9.386159783e-20) (101.8597702 6.157425289 1.119642308e-19) (102.1270449 5.009499901 -1.807244266e-19) (101.260034 3.992514286 0) (102.1365409 4.626000157 1.99681342e-20) (102.0176964 3.5870202 5.852776418e-20) (101.2521498 2.999046693 1.028836491e-20) (101.9448704 3.282281014 3.063558732e-22) (101.6832952 2.490003277 0) (101.0803581 2.14627379 0) (98.22430197 1.120254805 0) (97.6939928 1.664648159 -1.309916958e-19) (98.28695246 1.756683429 -3.498649774e-19) (97.50022249 1.887717071 -1.307796455e-19) (96.85892221 2.737936539 0) (97.76305617 2.755128464 5.87723633e-20) (96.62770415 3.100853643 0) (95.95309084 4.500385001 -4.650380949e-19) (97.32464397 4.187147319 0) (95.76546773 5.085438433 -9.886990233e-22) (95.5559046 7.264742358 2.810373134e-19) (97.37068783 6.068093894 3.402623873e-19) (95.70207613 8.107726198 -2.252771748e-19) (97.214879 10.50218383 -6.040704214e-20) (98.50080216 7.837490768 -2.427346248e-20) (98.07853187 11.04166319 0) (101.0016383 11.22196557 -6.979986196e-21) (100.4938399 8.253099332 -1.158670168e-20) (101.8437047 10.83216746 -2.097909082e-20) (103.4786993 8.977979309 1.474038796e-19) (102.0095568 7.089637844 0) (103.7483436 8.26483119 9.191642492e-20) (103.950318 6.259911893 1.726354845e-19) (102.4994155 5.336200465 9.927929122e-21) (103.868703 5.664997573 0) (103.4188736 4.149268863 5.708433297e-20) (102.3271616 3.759569722 -6.992070595e-22) (103.2347888 3.730980884 0) (102.6761013 2.703785175 -2.39664935e-22) (101.9112208 2.571682128 -2.747004541e-20) (97.67777419 0.7612878373 0) (96.93678639 1.216168031 -1.449327552e-19) (97.49618624 1.588890042 1.37102976e-19) (96.64197396 1.410789241 1.513076943e-19) (95.58085379 2.181684484 0) (96.53127844 2.660561625 5.6213287e-19) (95.16076887 2.523303019 -3.287229542e-19) (93.66686781 3.953675614 0) (95.42158339 4.485596771 1.044329033e-18) (93.09537949 4.640527616 2.536478842e-19) (91.3002268 7.877133198 1.472178622e-18) (94.72378625 7.59502153 -7.731850754e-19) (90.85252105 9.607638477 -3.607057857e-19) (92.8968019 17.60973422 1.035699817e-19) (96.54015517 11.64899539 0) (94.10485136 18.70497021 0) (103.5858112 17.74480729 0) (101.3245935 12.50147955 0) (105.2284621 16.25625569 6.338900412e-19) (107.3020236 11.53760673 -1.266837891e-20) (104.1859646 9.639046178 0) (107.3562397 10.19307505 1.475015261e-19) (106.728754 6.966708627 0) (104.5469425 6.517660613 -1.407336531e-20) (106.3835705 6.131440117 -1.482490135e-19) (105.2405176 4.173512341 9.059668855e-20) (103.8388772 4.221079675 0) (104.8636918 3.67533762 6.919451705e-20) (103.8301673 2.51795822 -1.722994314e-19) (102.9547378 2.700182546 -3.515501019e-20) (97.30401895 0.1528383837 -1.166609786e-21) (96.38703981 0.408012405 -1.771935111e-21) (96.77190146 1.044418214 1.508313662e-19) (96.01211244 0.5189608385 0) (94.61857396 0.9516470529 -8.713975632e-20) (95.29199132 1.933173251 -3.250629415e-19) (94.03996806 1.137396537 1.843457668e-19) (91.77919611 1.870342851 -2.469612793e-21) (93.09590726 3.581850283 3.430934661e-19) (90.76986556 2.185761885 -2.156361963e-19) (85.37706832 3.24852095 -5.244609134e-19) (89.85994985 7.467996717 7.671732175e-19) (86.72333055 7.575236932 4.456457529e-19) (84.22034076 12.0757619 -4.913669421e-20) (89.09274971 12.52741462 7.064485909e-19) (88.83584576 27.763239 -3.264383357e-20) (101.1674018 29.13524994 0) (99.25482709 21.70576978 -1.676936067e-20) (109.8756614 20.49879656 7.088254796e-19) (110.3214545 16.66655378 1.12880882e-20) (108.1287874 15.73048537 0) (113.1614104 10.03219892 -4.715980759e-19) (110.3290517 6.148047656 2.515190642e-20) (107.5809685 6.946960452 -8.250722671e-21) (109.471856 5.255863289 0) (107.2199273 3.313296195 1.777519202e-19) (105.7404131 4.052668598 -2.267057275e-19) (106.577781 2.847828827 -1.711798322e-19) (104.9580272 1.811903266 1.172660343e-19) (104.1239405 2.392427612 7.00944579e-20) (97.18221521 -0.6058628544 -1.84216917e-19) (96.19499668 -0.6016892635 8.193907693e-20) (96.30216665 0.1665098826 2.365539844e-19) (95.7951275 -0.5979584319 -3.215193533e-22) (94.33707817 -0.60182599 0) (94.47812317 0.5724797156 8.983909528e-20) (93.74772675 -0.6188877294 2.146463822e-19) (91.57345231 -0.8120947798 1.029626182e-19) (91.55914938 1.168835191 3.121195945e-19) (90.45650962 0.499553816 -3.31011786e-19) (89.27911413 0.4978733781 2.815499143e-19) (89.30890636 1.500827679 0) (84.08642181 0.9652065564 0) (82.66769856 0.6752875598 -1.46229586e-19) (82.39270288 2.107755088 1.45712409e-19) (126.9634583 18.34947392 4.411681888e-19) (122.367207 13.30282245 -3.65994532e-19) (118.0672208 15.84925295 0) (118.6695582 5.349838519 3.311592084e-19) (113.4238074 3.082986365 0) (111.2240761 5.593881118 -1.431037685e-20) (112.059184 2.556185659 0) (108.7764414 1.423888113 0) (107.6748919 2.932658771 -4.422941278e-23) (107.9013892 1.158584245 -1.862427788e-19) (105.7841038 0.5843860819 1.249964688e-19) (105.205577 1.548192858 -1.553183471e-19) (97.32754894 -1.391567352 0) (96.37524465 -1.610578103 0) (96.20753967 -0.8603252935 0) (95.99660316 -1.69517677 1.644920514e-19) (94.66296264 -2.014001615 -4.571653868e-20) (94.37345541 -0.9791572476 0) (94.1476547 -2.152714384 1.015550764e-19) (92.38690513 -2.73216459 -1.68306187e-21) (91.73169926 -1.370974544 -1.01705975e-19) (91.18330775 -2.122276378 0) (90.4163953 -2.435211545 2.747086744e-20) (90.06292673 -1.87566572 0) (87.98490157 -3.615641178 -1.114982642e-19) (87.73518094 -4.075615117 -2.282771438e-19) (87.27648889 -3.91797959 6.098195383e-19) (134.1826908 2.256607869 -1.28419628e-19) (127.99526 2.097583418 -9.361670371e-19) (127.0541273 6.702163335 4.380466157e-19) (120.0670902 -1.828355308 -9.283593115e-19) (114.3832678 -1.367811072 1.490415735e-19) (113.9011217 2.03346256 0) (112.8880152 -1.282482731 -1.312428131e-19) (109.2898085 -1.115548616 -2.057917246e-19) (109.0182619 0.8250961368 2.024284847e-19) (108.3344391 -1.074759118 0) (106.0340436 -0.9732791741 -1.482883671e-19) (105.9077561 0.2139046181 -1.694506664e-19) (97.70215343 -2.11458531 -1.749042565e-20) (96.83844632 -2.501368119 -3.810735986e-20) (96.46818822 -1.846674863 -7.793344448e-20) (96.49830493 -2.646714792 0) (95.32028632 -3.152583199 8.42935733e-20) (94.80444624 -2.323444626 0) (94.87330863 -3.350115028 -8.692860945e-20) (93.37721288 -4.050883577 1.803239469e-19) (92.6300955 -3.102076934 -2.181067174e-21) (92.30237708 -3.715034752 9.689144255e-20) (91.73426652 -4.020031989 -2.947386647e-19) (91.42653315 -3.689559755 5.001717699e-19) (90.06121253 -4.805196141 2.137111429e-19) (89.82981782 -5.088959727 1.526126765e-19) (89.5308642 -4.903551935 -1.549415356e-19) (129.4665168 -10.95005719 0) (125.2547197 -8.358243788 -2.134445469e-19) (126.9626763 -4.962127635 4.533916969e-19) (117.5049042 -7.923491595 -3.345767669e-19) (113.0048379 -5.488951582 -7.472111157e-21) (114.2341611 -2.486635792 -5.365140372e-19) (111.7446163 -4.903441069 -5.447691714e-20) (108.5955889 -3.599837085 0) (109.2235213 -1.768530533 -9.862385352e-20) (107.7332406 -3.27760415 1.882311002e-19) (105.6156731 -2.535363275 0) (105.9905749 -1.37681073 1.71268314e-19) (98.25287894 -2.726824175 1.652375321e-20) (97.50079552 -3.235402353 2.881086973e-19) (96.98788455 -2.700301716 1.506069992e-19) (97.20290312 -3.423678651 7.44332559e-20) (96.16654152 -4.059371755 -7.784734559e-20) (95.51650045 -3.39904149 4.010608908e-20) (95.76985471 -4.298097266 4.869088922e-21) (94.41384556 -5.099189741 -1.998605558e-21) (93.62975637 -4.32972376 -1.886482573e-21) (93.37280691 -4.872054435 0) (92.85542177 -5.155852238 0) (92.58603188 -4.887462457 2.303336109e-20) (91.37480545 -5.747529222 -3.485334012e-19) (91.14099149 -5.953407378 -7.320696884e-20) (90.93907487 -5.790006228 -1.457925073e-19) (121.0309965 -17.58005717 3.472008302e-19) (118.8577135 -14.41718273 -1.564864924e-19) (121.4226285 -12.75065981 -3.603508118e-19) (113.0164101 -11.48923869 0) (110.1744517 -8.238020875 1.925533349e-22) (112.3902029 -6.323825026 4.508784631e-20) (109.307687 -7.406740306 1.208853402e-20) (107.0036487 -5.475993589 3.448464897e-19) (108.2642318 -4.140799913 0) (106.3389724 -4.980782026 0) (104.6456952 -3.814650241 9.664380209e-21) (105.4171356 -2.890612798 0) (98.93188205 -3.200550525 1.215548686e-19) (98.30873395 -3.795422287 5.54430392e-20) (97.69068797 -3.392579159 -2.823998057e-19) (98.05823669 -4.01529088 -1.330766993e-19) (97.17324444 -4.759448987 -1.034511876e-19) (96.40310417 -4.254370872 -3.840032117e-20) (96.82831179 -5.04036442 -8.942633209e-21) (95.61294147 -6.000994925 0) (94.69156546 -5.338655228 1.572347528e-19) (94.49272865 -5.88369595 1.599252414e-19) (93.92610772 -6.372657113 -1.453928938e-19) (93.68405333 -5.949772563 -4.113440142e-20) (92.46910708 -6.879346904 -1.617159939e-19) (92.17704487 -7.11396721 7.009453988e-20) (91.96561018 -6.868399029 -1.418334989e-19) (112.503268 -19.47769379 0) (112.4332766 -17.03525885 0) (114.1823611 -16.77320027 0) (108.2611315 -12.57425387 4.29450178e-19) (106.91348 -9.419654982 0) (109.3648203 -8.676243969 0) (106.4273317 -8.573257493 0) (104.9972965 -6.524516648 1.453350498e-19) (106.5219521 -5.816519313 -3.305784818e-19) (104.5512099 -5.978675303 -7.11322793e-20) (103.351312 -4.654720141 0) (104.3426398 -4.068421044 0) (99.6871412 -3.531532946 1.137320017e-19) (99.20665191 -4.177176728 -3.579910655e-19) (98.52830893 -3.905165368 -1.302909219e-19) (99.00946458 -4.417083166 9.546207491e-19) (98.3094484 -5.237785625 -5.145333987e-19) (97.44838644 -4.899225662 1.18915698e-19) (98.03608586 -5.553888359 1.555556675e-20) (97.07188159 -6.680071043 -1.112717463e-18) (95.95466833 -6.194640743 -2.088749007e-19) (95.88877381 -6.779922671 6.730011068e-20) (95.41329159 -7.380436849 1.28093086e-19) (94.79309206 -7.023776695 1.336920553e-19) (94.00207608 -8.242269935 5.78598224e-20) (93.5681651 -8.580598261 0) (93.27364183 -8.288606292 0) (101.9248511 -27.39700459 1.870094185e-20) (103.8611626 -25.4099299 -2.338454086e-21) (105.7795564 -26.52970695 -7.136700016e-21) (103.3824828 -15.88575405 -1.715843275e-19) (104.2962384 -12.75153759 -9.998503768e-20) (107.4124975 -13.7471455 7.239122084e-20) (104.3263931 -11.80724961 -1.097304706e-19) (103.9769064 -9.327986202 -3.104831135e-20) (106.1274383 -9.497214789 0) (103.7662887 -8.620970878 0) (103.0069994 -6.817767857 1.108673314e-19) (104.4850635 -6.661930423 1.3223748e-19) (102.7404465 -6.314053351 -1.185678674e-19) (101.9672437 -5.04457884 5.604102705e-20) (103.0059849 -4.791769258 6.327843256e-20) (100.4740908 -3.698378686 -9.618534084e-20) (100.142084 -4.343970246 -1.007094253e-19) (99.4337759 -4.240569748 -2.262154009e-19) (100.0012598 -4.583556968 -1.014239134e-19) (99.51085875 -5.398006494 -2.462792774e-20) (98.60095531 -5.310825685 -1.429664439e-20) (99.32719009 -5.710054475 -9.997762858e-20) (98.74514025 -6.82228524 -1.203863322e-19) (97.47226053 -6.778704497 -1.157590939e-19) (97.62018951 -7.318310452 2.173176983e-19) (97.37701742 -7.8402863 1.653043147e-19) (96.61331047 -7.894688638 2.190861607e-19) (96.28167831 -9.774602504 3.459215969e-20) (96.11010286 -10.54488534 -3.916666781e-21) (95.27088296 -10.21922735 1.084735422e-19) (97.1152234 -15.26636881 8.41861617e-20) (99.19474385 -15.2749051 6.308377845e-21) (100.0036551 -17.70395578 7.154202146e-21) (100.6895793 -12.23811485 0) (101.5859108 -10.71448254 0) (103.468355 -12.2847394 6.775771837e-21) (101.7108903 -10.15184709 0) (101.7420413 -8.499791138 -4.170962795e-20) (103.3484427 -9.170989935 3.880526523e-20) (101.6656965 -7.981283374 1.689022425e-19) (101.2935394 -6.579313749 1.81118925e-19) (102.5465951 -6.797321824 0) (101.1426836 -6.164751118 -1.823349279e-19) (100.6679693 -5.077117589 0) (101.6288783 -5.081733058 -8.366064947e-20) (101.2412221 -3.715214353 -1.253648262e-19) (101.0368749 -4.317390841 1.686302681e-19) (100.3731006 -4.353442554 1.933459084e-19) (100.9465206 -4.536373064 -1.693269706e-19) (100.6282307 -5.265448396 3.099830769e-19) (99.80390957 -5.388678673 1.177067788e-21) (100.5157099 -5.534578996 -1.034666407e-20) (100.2154815 -6.441755416 1.0709031e-19) (99.14600813 -6.763047312 1.12845557e-19) (100.158752 -6.782273814 -1.473273803e-19) (100.2593267 -7.896386284 -5.656716264e-24) (99.08914509 -8.789346636 8.45430846e-20) (97.93909369 -8.014857868 -5.805299331e-20) (98.36592548 -9.186208802 -3.769325701e-20) (97.26928408 -11.26167905 -2.936250097e-20) (98.89205571 -9.578455027 4.651722182e-20) (99.57364981 -9.612293113 -2.771263523e-20) (99.95180174 -11.73604494 -2.010942004e-21) (99.764154 -9.484547179 6.998202254e-21) (100.1305751 -8.767652896 5.073578886e-21) (101.1297686 -10.19748617 -3.679089668e-20) (100.1855924 -8.455440617 -3.386662381e-21) (100.1965925 -7.421597991 2.817959188e-20) (101.2965735 -8.237528254 1.078167037e-19) (100.1546104 -7.068201139 -3.216929811e-20) (99.93474059 -6.048844496 -2.488781648e-19) (100.9197444 -6.464411425 0) (99.84207798 -5.730929224 1.478479639e-19) (99.54094286 -4.856327444 0) (100.3681052 -5.039763784 0) (101.9484225 -3.604119403 0) (101.8233743 -4.148296779 0) (101.2436914 -4.287969031 -1.620427385e-19) (101.7659126 -4.338645465 -3.094804205e-19) (101.5567699 -4.943493987 0) (100.8804431 -5.198201874 1.989782499e-20) (101.4817719 -5.156996255 -2.342284924e-19) (101.28245 -5.824032083 -2.192175516e-19) (100.5225023 -6.30277885 1.669306733e-20) (101.2521011 -6.051134253 2.194352979e-19) (100.4133 -6.688051126 0) (100.4471085 -7.588213858 -7.417738723e-20) (96.41850998 -6.437847207 0) (99.24341549 -7.411713736 -1.95511272e-19) (98.63702248 -8.673669944 6.771995112e-20) (99.41531259 -7.601889629 7.396620412e-20) (99.39098725 -7.647414885 -2.848527783e-20) (99.51069752 -9.046577721 3.334599482e-21) (99.3854684 -7.592521846 3.050167661e-20) (99.32971442 -7.205307665 -2.04346169e-20) (99.88786528 -8.338469202 -1.518051922e-19) (99.29776775 -7.022549886 2.572370559e-19) (99.1641353 -6.375104119 7.848237901e-20) (99.8972917 -7.152638809 -5.444129089e-20) (99.10706396 -6.14002205 6.96971811e-20) (98.90748433 -5.422152593 2.159488265e-20) (99.64931736 -5.89595499 -9.67213029e-20) (98.83513613 -5.186596843 -1.041485389e-20) (98.6171584 -4.504799449 0) (99.29076452 -4.775931608 0) (102.5697311 -3.398934656 0) (102.4889821 -3.868512903 0) (102.0016368 -4.086673404 1.319743674e-19) (102.4461588 -4.028738978 9.676113705e-20) (102.2746304 -4.51636799 -1.264117978e-20) (101.755271 -4.843889902 5.226475941e-19) (102.2072869 -4.679877449 -2.500235253e-20) (102.0178126 -5.164657261 1.776800618e-19) (101.4921824 -5.658459702 -2.156291427e-19) (101.9983267 -5.322529431 0) (99.39414159 -5.589256883 2.360498081e-19) (100.2282645 -6.397487485 1.502313472e-19) (95.40982298 -5.376940333 -2.364753934e-19) (99.68374206 -6.14368575 -7.725619508e-21) (99.3877182 -7.058362775 3.00941277e-20) (99.65686889 -6.254979813 2.683235433e-21) (99.27099223 -6.273911671 1.021044628e-21) (99.35930684 -7.260787435 2.665444679e-20) (99.15562937 -6.239710122 5.266784497e-22) (98.83064655 -6.002880626 -2.752453217e-21) (99.18459222 -6.874751101 0) (98.73219321 -5.887927658 -3.060704199e-21) (98.462696 -5.465252798 -3.101839248e-20) (98.96341948 -6.133168365 1.020678595e-20) (98.37955743 -5.306007761 -3.734184031e-20) (98.145837 -4.798548997 0) (98.69477639 -5.263701738 -7.018966401e-21) (98.0732368 -4.623445568 0) (97.87845047 -4.095596879 0) (98.4161493 -4.405908808 0) (103.0990369 -3.144165328 0) (103.0330024 -3.533377044 0) (102.6358979 -3.787500582 0) (102.9936171 -3.663413867 0) (102.8196494 -4.049790663 -1.019093322e-20) (102.4250135 -4.401268137 -8.734715416e-20) (102.745844 -4.175494302 1.021625009e-20) (102.5300975 -4.53546356 -6.986400799e-20) (102.1637992 -5.003331113 0) (102.479313 -4.644896029 -9.582359668e-22) (98.4326853 -4.728216126 8.939838947e-20) (99.09986143 -5.349062879 -1.222377131e-19) (95.492884 -4.676914887 -8.890113993e-20) (99.87079178 -5.182275137 -3.44783831e-20) (99.7469474 -5.87948733 9.081581611e-20) (99.75773894 -5.249152598 3.382720304e-20) (99.17305478 -5.250138517 6.110578883e-23) (99.24392678 -5.991280273 0) (98.99003435 -5.225141305 1.81721256e-20) (98.4969036 -5.067885002 -2.630529958e-20) (98.73425199 -5.74732257 -8.578657966e-20) (98.35287058 -4.991231479 9.451720934e-21) (97.97549935 -4.702232945 0) (98.32417267 -5.26168448 5.107229854e-20) (97.86580104 -4.589649773 0) (97.57879748 -4.217347359 0) (97.98842417 -4.648334025 0) (97.49657177 -4.084875421 0) (97.29223739 -3.673974849 0) (97.71904887 -3.989700313 0) (103.5430911 -2.869764394 0) (103.4725015 -3.189638408 0) (103.151888 -3.447182708 0) (103.4297916 -3.293905879 0) (103.2374505 -3.596005335 0) (102.9347007 -3.933391599 0) (103.1545384 -3.692128508 0) (102.889791 -3.960353703 0) (102.63188 -4.385783276 0) (102.7780009 -4.035927117 0) (98.24317836 -4.078947144 0) (98.31320179 -4.551503008 4.695058127e-20) (95.97264101 -4.092795539 0) (99.9563777 -4.423209135 0) (99.89782876 -4.97655869 1.682719308e-22) (99.81632266 -4.457944497 0) (99.10834341 -4.453110824 0) (99.15252 -5.03292519 -1.21689462e-21) (98.88291891 -4.435033582 0) (98.27242033 -4.322858658 0) (98.43320478 -4.866493889 0) (98.09293982 -4.268211058 0) (97.62522154 -4.058896607 0) (97.87741991 -4.531032483 0) (97.49126689 -3.975854381 0) (97.14900834 -3.695298874 0) (97.46028794 -4.080979671 0) (97.0538857 -3.593305104 0) (96.82441229 -3.269705587 0) (97.16535679 -3.57018183 0) (103.9138472 -2.59507379 0) (103.8274954 -2.857965632 0) (103.5684279 -3.105058323 0) (103.7780139 -2.941903792 0) (103.5601793 -3.180237244 0) (103.3259368 -3.488198241 0) (103.4669899 -3.254637551 0) (103.1448301 -3.456126109 0) (102.961835 -3.827383697 0) (102.9730374 -3.508847342 0) (98.29922684 -3.534843571 0) (98.25250869 -3.934471053 0) (96.41505359 -3.57534412 0) (100.0051927 -3.803005403 0) (99.97108323 -4.256282782 0) (99.85177663 -3.820300349 0) (99.0621288 -3.81307041 0) (99.09585025 -4.280371164 0) (98.80567191 -3.798725228 0) (98.10860751 -3.714043919 0) (98.22688906 -4.159346488 0) (97.90259633 -3.673117093 0) (97.36380445 -3.515437743 0) (97.55289822 -3.914368364 0) (97.20943791 -3.452231381 0) (96.81664633 -3.235537757 0) (97.05802832 -3.574590199 0) (96.70821512 -3.155525931 0) (96.44774996 -2.897266098 0) (96.72261321 -3.172874519 0) (104.2232869 -2.331829308 0) (104.1156066 -2.548649132 0) (103.9051781 -2.77828908 0) (104.0579641 -2.616704632 0) (103.8129671 -2.80693718 0) (103.6291164 -3.082900848 0) (103.709524 -2.865436141 0) (103.3296346 -3.020015599 0) (103.1966018 -3.3411015 0) (103.1041707 -3.057272609 0) (98.39651101 -3.076002575 0) (98.32047034 -3.412670668 0) (96.80077006 -3.129624277 0) (100.0283933 -3.290678849 2.897994398e-35) (100.0130153 -3.665940504 3.457134338e-35) (99.86708321 -3.298355063 -2.890781458e-35) (99.02320096 -3.288275006 0) (99.05185342 -3.672321831 0) (98.74432588 -3.276255259 0) (97.98333182 -3.209486944 0) (98.07427748 -3.579134732 0) (97.75725173 -3.177643458 0) (97.16258239 -3.054987892 0) (97.30869664 -3.393146347 0) (96.99137891 -3.005566871 0) (96.55451324 -2.834451386 0) (96.74537749 -3.129980299 0) (96.43360575 -2.770552112 0) (96.1416459 -2.561570211 0) (96.3653223 -2.809484094 0) (104.4821946 -2.086523057 0) (104.351057 -2.266267251 0) (104.1789228 -2.475436747 0) (104.2850145 -2.321902091 0) (104.013914 -2.475541216 0) (103.8674851 -2.720242177 0) (103.9009342 -2.52223474 0) (103.4656983 -2.642707153 0) (103.3675758 -2.920512201 0) (103.1935289 -2.669390821 0) (98.52034895 -2.68768049 0) (98.42539107 -2.972888033 0) (97.13441641 -2.747450859 0) (100.0342463 -2.861880269 0) (100.0312189 -3.176405519 0) (99.86916326 -2.863787624 0) (98.98899323 -2.851597083 0) (99.01426713 -3.171684782 0) (98.69357863 -2.841228156 0) (97.88415009 -2.786913848 0) (97.95644558 -3.096874616 0) (97.64258934 -2.761398225 0) (97.00364194 -2.663463578 0) (97.11942136 -2.951133986 0) (96.81861131 -2.623935953 0) (96.34399654 -2.48617082 0) (96.49763043 -2.742676195 0) (96.21184885 -2.434292529 0) (95.89000403 -2.262848716 0) (96.0741706 -2.483136635 0) (104.6994748 -1.862223396 0) (104.5449346 -2.012083038 0) (104.4030508 -2.200078029 0) (104.4708582 -2.057945639 0) (104.1759204 -2.183444366 0) (104.0576517 -2.398955021 0) (104.0543014 -2.221246971 0) (103.5671273 -2.316279075 0) (103.4938603 -2.556607879 0) (103.2553435 -2.335679145 0) (98.66149657 -2.356679581 0) (98.55431095 -2.599994917 0) (97.42264321 -2.418613495 0) (100.0284038 -2.499845627 -3.700450928e-35) (100.0337125 -2.765648528 4.366030797e-35) (99.86240214 -2.498120189 3.691519057e-35) (98.95830283 -2.484528019 0) (98.98102355 -2.753890581 0) (98.65048667 -2.475424524 0) (97.80355833 -2.430241002 0) (97.86248101 -2.692090986 0) (97.54981427 -2.409337292 0) (96.87536365 -2.329492364 0) (96.96905348 -2.574965091 0) (96.67894725 -2.297275227 0) (96.17217827 -2.184509527 0) (96.29782297 -2.406619645 0) (96.03008055 -2.141779104 0) (95.68074663 -1.999382207 0) (95.83411887 -2.19348052 0) (104.8827005 -1.659813122 0) (104.7058432 -1.785615878 0) (104.5879604 -1.952909684 0) (104.6243787 -1.82375701 0) (104.308235 -1.927429164 0) (104.2114837 -2.116190051 0) (104.1787472 -1.958418322 0) (103.6436859 -2.034175099 0) (103.5882884 -2.241832974 0) (103.298974 -2.048502378 0) (98.81339994 -2.073201847 0) (98.69866792 -2.281676335 0) (97.67294928 -2.135160437 0) (100.0145369 -2.192561617 0) (100.0255766 -2.41828711 0) (99.84958387 -2.188493971 0) (98.93042689 -2.173988422 0) (98.95109195 -2.402019737 0) (98.61322895 -2.165892163 0) (97.73678626 -2.127666224 0) (97.78571602 -2.349916584 0) (97.47328397 -2.110246958 0) (96.76999232 -2.044059268 0) (96.84711573 -2.253893902 0) (96.56414167 -2.017386752 0) (96.02998731 -1.923776594 0) (96.13414449 -2.115698747 0) (95.8791504 -1.888138522 0) (95.50491454 -1.768562799 0) (95.63395556 -1.938473501 0) (105.0381066 -1.47920202 0) (104.8405189 -1.585556393 0) (104.7417435 -1.733186996 0) (104.7524236 -1.617564494 0) (104.417549 -1.704133685 0) (104.3375032 -1.868667793 0) (104.2807919 -1.729797277 0) (103.7022221 -1.790781119 0) (103.6597921 -1.969897586 0) (103.3305502 -1.801528186 0) (98.97149805 -1.829847622 0) (98.85249245 -2.008853608 0) (97.89236708 -1.890688079 0) (99.99513096 -1.930998355 -1.203178095e-35) (100.0101261 -2.12318718 -1.411818458e-35) (99.83253578 -1.925410547 1.200355072e-35) (98.90486611 -1.910315584 0) (98.92383609 -2.103996862 0) (98.58056141 -1.903038978 0) (97.6806186 -1.870266053 0) (97.72185158 -2.059379745 0) (97.40918598 -1.855553998 0) (96.68216759 -1.799946351 0) (96.74656174 -1.979405545 0) (96.46843443 -1.777575087 0) (95.91088327 -1.698925154 0) (95.99825979 -1.864381743 0) (95.75238844 -1.668875198 0) (95.35576355 -1.56747313 0) (95.46535389 -1.715393975 0) (105.1707195 -1.319669936 0) (104.95421 -1.410254558 0) (104.8707304 -1.539479317 0) (104.8602513 -1.437365529 0) (104.5087428 -1.510375914 0) (104.4418852 -1.653044459 0) (104.3652262 -1.531816203 0) (103.7475772 -1.581386019 0) (103.7146404 -1.735412203 0) (103.3541388 -1.589590505 0) (99.13232588 -1.620867029 0) (99.01156643 -1.774573344 0) (98.08722424 -1.680058962 0) (99.97192112 -1.708237902 0) (99.98963085 -1.871904805 0) (99.81251977 -1.701665967 0) (98.88124848 -1.686208789 0) (98.89879197 -1.850825694 0) (98.55159259 -1.679611584 0) (97.63279762 -1.651204303 0) (97.667954 -1.812138552 0) (97.35484321 -1.638640732 0) (96.60807863 -1.591393719 0) (96.66248169 -1.744674152 0) (96.38769932 -1.572419182 0) (95.81005613 -1.505630584 0) (95.88412245 -1.647798417 0) (95.64484431 -1.480039354 0) (95.22815088 -1.393262281 0) (95.32201825 -1.521313266 0) (105.2846392 -1.180145763 0) (105.0510521 -1.257922012 0) (104.9798595 -1.370087777 0) (104.9519332 -1.281103302 0) (104.5855 -1.343259623 0) (104.5291621 -1.466204224 0) (104.4356979 -1.361324705 0) (103.7832642 -1.40203588 0) (103.7572908 -1.53387019 0) (103.3725068 -1.408440544 0) (99.29313078 -1.441838467 0) (99.1726241 -1.573450524 0) (98.26304031 -1.499126952 0) (99.9461157 -1.518863502 0) (99.96567395 -1.657948362 0) (99.7904177 -1.511658283 0) (98.85928241 -1.495998866 0) (98.87561214 -1.635670033 0) (98.52565619 -1.489970389 0) (97.59166424 -1.465111747 0) (97.62194208 -1.601772896 0) (97.3082899 -1.454278934 0) (96.54490806 -1.413731625 0) (96.59135566 -1.544243476 0) (96.31886986 -1.397473345 0) (95.72385464 -1.340189567 0) (95.787257 -1.461790273 0) (95.55273084 -1.318187021 0) (95.11804599 -1.243262535 0) (95.19912312 -1.353420077 0) (105.3832406 -1.059419004 0) (105.1343257 -1.126804458 0) (105.0730322 -1.223216383 0) (105.0306495 -1.146823769 0) (104.6506873 -1.20024992 0) (104.6027853 -1.305334559 0) (104.4950532 -1.215612413 0) (103.8118728 -1.249444567 0) (103.7909959 -1.361491258 0) (103.387546 -1.254585118 0) (99.45174604 -1.289282629 0) (99.33306518 -1.401334035 0) (98.4241758 -1.344547838 0) (99.91861691 -1.358598439 0) (99.93936851 -1.476210056 0) (99.76686819 -1.350999505 0) (98.8387227 -1.335247572 0) (98.85401901 -1.453195952 0) (98.50222975 -1.329694392 0) (97.55595078 -1.307738749 0) (97.58226987 -1.423217347 0) (97.26802751 -1.298310581 0) (96.49050395 -1.263171209 0) (96.53055656 -1.373678087 0) (96.25959686 -1.249099734 0) (95.64943812 -1.199473369 0) (95.70424062 -1.302799393 0) (95.47308314 -1.180370792 0) (95.02222943 -1.115077231 0) (95.09286327 -1.209106543 0) (105.4693501 -0.9563039814 0) (105.2066638 -1.015288235 0) (105.153344 -1.097147697 0) (105.0989269 -1.032763518 0) (104.7065906 -1.079167572 0) (104.6654544 -1.168002499 0) (104.5455521 -1.092369113 0) (103.8353067 -1.120859229 0) (103.8181547 -1.21514614 0) (103.4005076 -1.125113218 0) (99.60655689 -1.160373486 0) (99.49085714 -1.254938125 0) (98.57401115 -1.213583174 0) (99.89014603 -1.224053047 0) (99.91156516 -1.322668179 0) (99.74236199 -1.216234036 0) (98.81934513 -1.200459276 0) (98.8337761 -1.299236958 0) (98.48087515 -1.195297483 0) (97.52464491 -1.175704797 0) (97.5477466 -1.272471855 0) (97.23286617 -1.167414938 0) (96.44316784 -1.13663992 0) (96.47806619 -1.229393155 0) (96.20802414 -1.124328803 0) (95.5845395 -1.08086889 0) (95.6324001 -1.167841917 0) (95.40352252 -1.064106524 0) (94.9380666 -1.006613754 0) (95.00019141 -1.086059984 0) (105.5452742 -0.8697068008 0) (105.2702064 -0.9219107384 0) (105.2232997 -0.990297773 0) (105.1588162 -0.9373452515 0) (104.7550707 -0.9781273735 0) (104.7193416 -1.0520961 0) (104.5890179 -0.9896104282 0) (103.8549532 -1.01396672 0) (103.8405279 -1.092183146 0) (103.4121918 -1.017602014 0) (99.75639128 -1.052793965 0) (99.64451954 -1.131558963 0) (98.71520577 -1.103943913 0) (99.86131269 -1.112493621 0) (99.88294979 -1.194102561 0) (99.71729106 -1.10458922 0) (98.80092731 -1.08883116 0) (98.81465934 -1.170477464 0) (98.46119512 -1.083980861 0) (97.4968955 -1.066279363 0) (97.51740456 -1.146323175 0) (97.20181502 -1.058901566 0) (96.40150545 -1.031617675 0) (96.43226941 -1.108455613 0) (96.16263056 -1.020713405 0) (95.52729646 -0.982188853 0) (95.56957616 -1.054407813 0) (95.3420886 -0.9673059738 0) (94.86333723 -0.9161109454 0) (94.91857841 -0.9822540245 0) (105.6129516 -0.7985336074 0) (105.3267255 -0.8453587607 0) (105.284931 -0.9012439385 0) (105.2120155 -0.8591804844 0) (104.7976654 -0.8955254655 0) (104.7662166 -0.9558061543 0) (104.6269441 -0.9056598925 0) (103.8718575 -0.9268593732 0) (103.8594012 -0.9904035427 0) (103.423129 -0.9300789785 0) (99.90035927 -0.9647199016 0) (99.79296174 -1.029010334 0) (98.84978353 -1.013799871 0) (99.832648 -1.021726269 0) (99.85411177 -1.087929294 1.907277395e-36) (99.691983 -1.013846539 0) (98.78325113 -0.9981294132 0) (98.79644707 -1.06427124 0) (98.44282372 -0.9935146429 0) (97.47196497 -0.9772782758 0) (97.49042567 -1.042190088 0) (97.17402323 -0.9706125048 0) (96.36434249 -0.9460595274 0) (96.3918353 -1.008474967 0) (96.12214041 -0.9362577609 0) (95.47616532 -0.9016177017 0) (95.51399598 -0.9604132985 0) (95.28716636 -0.8882242215 0) (94.79629892 -0.8420738276 0) (94.84592097 -0.8960395557 0) (105.6741301 -0.7417332954 0) (105.3777715 -0.7844683315 0) (105.3399428 -0.8287094047 0) (105.2600015 -0.7970574631 0) (104.8356798 -0.829996673 0) (104.8075517 -0.8775900926 0) (104.6605811 -0.839096128 0) (103.88683 -0.8579331558 0) (103.8757546 -0.9079780934 0) (103.4337104 -0.8608915679 0) (100.0377944 -0.8946682919 0) (99.93534927 -0.9455694494 0) (98.97919704 -0.9416355217 0) (99.80462883 -0.9499514481 0) (99.82556449 -1.002064031 0) (99.66673348 -0.9421995935 0) (98.76610961 -0.926553932 0) (98.77892324 -0.9785041078 0) (98.42541828 -0.9221031206 0) (97.44918351 -0.9069362327 0) (97.46609309 -0.958004065 0) (97.14872451 -0.9007994613 0) (96.33064074 -0.8782907186 0) (96.35563083 -0.9275073942 0) (96.08542935 -0.8693184127 0) (95.42978596 -0.8376165633 0) (95.4641757 -0.8841177343 0) (95.23732884 -0.825355905 0) (94.73539274 -0.7830531354 0) (94.78056115 -0.8259271031 0) (105.7305559 -0.6985712641 0) (105.4247347 -0.7383198574 0) (105.3898451 -0.7715794401 0) (105.3040836 -0.7500110981 0) (104.8702437 -0.7804575404 0) (104.8446029 -0.81614985 0) (104.6909977 -0.7887989935 0) (103.9005038 -0.8059536854 0) (103.8903486 -0.8433912513 0) (103.4442023 -0.8087673665 0) (100.1683461 -0.8414670394 0) (100.0710778 -0.8798291604 0) (99.1044152 -0.8863389173 0) (99.77771378 -0.8957691493 6.871226438e-36) (99.79777973 -0.9348029294 0) (99.64183979 -0.888241784 -6.856568839e-36) (98.74931143 -0.8726954891 0) (98.76188542 -0.911476031 0) (98.40865602 -0.8683383556 0) (97.42792953 -0.8538615017 0) (97.4437504 -0.8920965346 0) (97.12521402 -0.8480812551 0) (96.29945945 -0.8269816756 0) (96.32264419 -0.8639658412 0) (96.05148079 -0.8185893747 0) (95.38691197 -0.7889660441 0) (95.41878485 -0.8240552027 0) (95.19124754 -0.7775134896 0) (94.67893414 -0.7379693075 0) (94.72091972 -0.7704600001 0) (105.7835488 -0.668488595 0) (105.4688106 -0.7061894199 0) (105.4359811 -0.7289992274 0) (105.3454077 -0.7172733692 0) (104.9023707 -0.7460393466 0) (104.8784666 -0.7704659532 0) (104.7191518 -0.7538726205 0) (103.9133891 -0.7699446302 0) (103.9037819 -0.795488328 0) (103.4547637 -0.772701945 0) (100.2920816 -0.8042236487 0) (100.1999049 -0.8306912239 0) (99.22618167 -0.8470779482 0) (99.75231293 -0.8581472756 -2.214379278e-36) (99.77120639 -0.8848442768 0) (99.61756942 -0.8509301216 2.209713923e-36) (98.73264906 -0.8354867369 0) (98.7451418 -0.8618667735 0) (98.39220537 -0.8311471079 0) (97.40760379 -0.8169784546 0) (97.42278424 -0.8431578185 0) (97.10281987 -0.8113874436 0) (96.26993062 -0.7910975265 0) (96.29195491 -0.8165989238 0) (96.01936419 -0.7830551644 0) (95.34643472 -0.7547356391 0) (95.37660855 -0.7790883134 0) (95.14775946 -0.74380742 0) (94.62565122 -0.706118813 0) (94.66536236 -0.7287667943 0) (105.8343065 -0.6509553582 0) (105.511054 -0.6874663017 0) (105.4795043 -0.7002731624 0) (105.384987 -0.6981992542 0) (104.9329811 -0.7260070712 0) (104.9101305 -0.7397096719 0) (104.745921 -0.7335639627 0) (103.925955 -0.7491495983 0) (103.9165413 -0.7633436999 0) (103.4655617 -0.7519562034 0) (100.4093348 -0.782352881 0) (100.3219642 -0.7973326294 0) (99.34513288 -0.8232713729 0) (99.72877972 -0.8363794782 0) (99.74624365 -0.8512400766 0) (99.59414009 -0.8295411821 0) (98.71588073 -0.8141680937 0) (98.72847815 -0.8286911898 0) (98.37570846 -0.8097609142 0) (97.38760571 -0.7954971093 0) (97.40259809 -0.8101899662 0) (97.08088063 -0.7899266749 0) (96.24123558 -0.769863185 0) (96.26271048 -0.7844410875 0) (95.9882119 -0.7619526983 0) (95.30734389 -0.734210117 0) (95.33657085 -0.7483430706 0) (95.10580973 -0.7235389002 0) (94.57438298 -0.6868303227 0) (94.61268602 -0.70011229 0) (105.88991 -0.6453252537 0) (105.5572056 -0.6814845099 0) (105.5214061 -0.6848196036 0) (105.4281905 -0.6920537222 0) (104.9664327 -0.7193940562 0) (104.940464 -0.7231622683 0) (104.7753022 -0.7268792304 0) (103.9407562 -0.7430704488 0) (103.9290883 -0.7462631575 0) (103.478785 -0.7465124681 0) (100.5329399 -0.7763259064 0) (100.4372827 -0.7792180667 0) (99.47467779 -0.8141964866 0) (99.70514301 -0.8297290647 -9.375163177e-38) (99.72326141 -0.8333717428 0) (99.56917377 -0.8236117916 9.361144605e-38) (98.69659364 -0.8083409483 0) (98.71167612 -0.8112496391 0) (98.35663426 -0.8037126331 0) (97.36479368 -0.7887448678 0) (97.3826134 -0.7924566978 0) (97.05600436 -0.782980082 0) (96.20913945 -0.7624960596 0) (96.23412754 -0.7667695603 0) (95.95347902 -0.7544956725 0) (95.26406326 -0.7266040146 0) (95.29770298 -0.7311542431 0) (95.05944099 -0.7159129505 0) (94.51786864 -0.6791345318 0) (94.56176127 -0.683876572 0) (86.74346428 -3.707155459 -2.368167125e-19) (86.1283547 -3.410494335 6.306988669e-20) (86.60079258 -2.782882585 -2.475565055e-19) (134.1726674 14.01575566 5.828404523e-19) (137.4499057 16.35778775 0) (139.0553956 12.06286999 5.848518639e-19) (121.8185022 27.4605422 0) (125.30464 26.52961406 1.479672281e-20) (123.9282264 23.53412363 0) (89.43073258 -4.839288123 1.54574103e-19) (89.12135832 -4.669034439 1.565413761e-19) (89.45399217 -4.409156582 -9.969665342e-20) (135.4453117 -3.999337211 -7.895873738e-22) (138.3955786 -4.529751145 2.003529533e-20) (137.1054284 -7.534366314 0) (139.4060018 10.61896259 -5.849448816e-19) (139.9756625 6.483846541 -5.937069208e-19) (136.423108 6.785199352 -1.590056736e-19) (90.86808669 -5.735547792 2.19111219e-19) (90.64175112 -5.582536211 0) (90.93564029 -5.401433016 1.554919112e-19) (127.6137284 -15.26765452 -1.179964596e-19) (129.3286237 -16.64995676 -4.337600414e-19) (127.3784818 -17.96704809 3.94537629e-19) (136.6091813 -8.474478372 0) (134.9614221 -11.01441226 5.145529483e-19) (133.0296119 -9.198774673 -5.332743947e-19) (91.89740508 -6.786144589 2.11928832e-19) (91.6999801 -6.554401174 -2.845651915e-19) (92.04245423 -6.415697993 -2.103602015e-20) (118.3048919 -19.96187565 4.567378676e-19) (118.8007731 -21.22392824 0) (117.5973731 -21.46501564 0) (126.2276123 -18.17687679 4.829988773e-19) (124.9656655 -18.88637767 -3.039879762e-19) (124.1183377 -17.64148077 4.099444422e-19) (93.17997437 -8.194372295 -6.639673602e-20) (92.90645128 -7.919389131 6.74820794e-20) (93.3078553 -7.635874143 0) (104.1980504 -29.59775978 6.084344873e-21) (103.5777427 -29.91672987 2.008893631e-19) (103.2660311 -29.75026014 1.147319307e-20) (105.4095774 -28.25155318 -2.441250696e-19) (106.1219196 -28.54785172 -2.494992958e-19) (105.4227073 -29.26402961 2.441394136e-19) (111.6312391 -20.55232895 4.101290559e-19) (111.7545398 -24.23855507 1.101370319e-19) (108.0998145 -23.35648971 6.825470333e-19) (116.4005565 -21.63583169 1.480363427e-19) (115.2112821 -21.74551414 -3.831535643e-19) (114.9041386 -20.54149584 1.029288511e-18) (95.03744724 -10.09045194 -1.936004758e-21) (94.5786869 -9.642661188 1.099282157e-19) (95.1319747 -9.153321829 -3.474484909e-18) (96.31617835 -22.01959547 -4.171305969e-20) (91.99090712 -22.50735155 2.203462793e-19) (91.28950081 -19.28989546 7.819571342e-20) (100.9225828 -30.09947861 8.560612503e-20) (100.3713662 -29.62032417 0) (102.3983035 -28.92488791 -2.260070856e-19) (98.47804255 -19.56493518 0) (98.99283139 -20.77221586 0) (97.28502695 -21.79529765 -7.187266453e-20) (104.4499103 -18.07342669 -2.321010553e-19) (103.112933 -20.38803916 -3.052718762e-20) (101.1287974 -18.08966679 1.902418836e-20) (106.9637133 -22.90751967 0) (103.9568568 -21.10761004 1.540792001e-19) (105.1809765 -18.46030443 -9.659068485e-20) (76.80179358 3.957736749 5.917323959e-19) (82.24373889 11.09740248 3.069087992e-18) (85.85911243 6.788022052 4.886009526e-19) (36.78689228 50.60323452 -1.362204342e-17) (34.1494445 34.0122378 4.902039889e-18) (28.10248186 22.46167315 0) (89.11981837 14.07825552 -6.546556875e-19) (83.4746176 14.48117322 -1.022670613e-18) (85.44194547 24.546361 6.396172144e-20) (63.13187659 80.40154013 0) (47.24834853 67.95209019 -9.16487426e-19) (115.5146251 24.59369021 1.133020071e-18) (115.1377077 27.4589752 5.99680015e-19) (118.3529981 27.74107845 -6.398427195e-19) (101.1077669 21.29071023 1.250385986e-19) (104.0416598 27.60955758 7.624582729e-19) (109.1448096 22.18239064 1.474440229e-18) (140.569914 31.3116145 -5.088980238e-19) (141.8474222 32.27663133 -5.085518044e-19) (142.7272655 31.12320651 0) (121.7685406 45.65012945 0) (126.1039245 45.31225689 -9.880386755e-19) (125.4240685 41.41866143 0) (126.435364 8.138587856 4.358095615e-19) (123.600812 12.29724993 0) (128.7834607 16.64317793 0) (119.6388757 8.297981501 0) (122.0490599 9.989598508 0) (123.6549652 7.708793742 8.300570898e-19) (117.6284136 13.26995458 4.212367236e-20) (120.0054334 11.88511447 -1.675265009e-19) (118.0099842 9.895776284 -1.716678131e-19) (91.10406762 -3.324135075 -2.15363702e-20) (90.76645272 -2.911331297 -1.813288794e-19) (91.46147502 -2.589541175 0) (89.20484401 -3.842918939 0) (90.15500634 -3.117372835 0) (90.72742957 -3.690745505 0) (89.29127498 -2.058846428 1.081754797e-19) (89.9498529 -2.870939042 -1.027431247e-19) (88.93394722 -3.662244971 -2.135724383e-19) (147.1067937 0.3422786201 -2.030562821e-18) (147.70032 0.149967479 1.563283288e-18) (147.4819473 -0.6218377186 0) (149.2233284 12.41469074 5.667002619e-19) (149.1928933 11.42497243 8.523928218e-19) (148.3122116 11.40347334 -3.01047681e-19) (127.3827523 -3.615029569 -8.991378093e-19) (128.020684 0.593774903 4.666857581e-19) (134.0439845 0.2720385234 5.475829551e-19) (122.6325841 -0.01290387326 4.115345219e-19) (125.5190714 -0.01787354792 2.09836809e-20) (125.2378826 -2.502778009 -5.542669442e-19) (124.7681009 5.191825036 -9.928660278e-19) (125.3797824 2.578312495 5.660323483e-19) (122.4498655 2.166935613 4.040796911e-19) (92.31171154 -4.612195693 0) (92.02869439 -4.325102185 -9.457507697e-20) (92.57486279 -4.028735533 9.471955524e-20) (90.8222344 -4.995981163 0) (91.55382039 -4.496785714 1.802230067e-19) (91.99339934 -4.897963011 -8.677448658e-20) (90.90347843 -3.879680745 0) (91.39942033 -4.337043093 -1.806495142e-19) (90.65199412 -4.868859075 1.861670758e-19) (90.21347579 -5.321209436 -2.994870374e-19) (89.92801876 -5.151039893 -7.594944067e-20) (90.24973257 -4.9329559 -9.561959925e-20) (89.60312056 -5.680945366 -6.413067857e-20) (89.7554201 -5.57245039 3.509671612e-22) (89.85525489 -5.619142635 0) (89.13478846 -5.216058868 2.559222749e-19) (89.23454577 -5.281863836 -2.553772575e-19) (89.06224646 -5.388064441 -4.399374834e-20) (135.9989333 -17.45528545 -3.084769772e-19) (136.1218421 -17.86408888 -1.02475815e-19) (135.6957485 -18.1673511 -6.206592391e-19) (141.9840154 -11.83324386 1.51580412e-18) (141.5937876 -12.37816535 -5.048395609e-19) (141.3215347 -11.90584586 0) (122.2563834 -11.93743869 1.835670639e-19) (124.55747 -9.445544366 -1.021594577e-18) (128.4900578 -12.10357469 -4.845141973e-19) (120.3603517 -7.607508436 -1.740858944e-19) (122.5121116 -8.769676279 -9.971679477e-20) (121.1886776 -10.38117854 -3.65659128e-19) (124.5990339 -4.813460321 -8.03521782e-20) (123.6687486 -6.910442174 2.058291235e-19) (121.2873125 -5.957321023 0) (93.3981435 -5.684920511 -2.568831256e-19) (93.12448003 -5.421032621 1.727469531e-19) (93.63982471 -5.133993492 0) (91.98280286 -5.990937752 8.377767289e-20) (92.67097582 -5.574984737 -1.830366645e-21) (93.08042878 -5.96742292 -7.532988234e-22) (92.13206401 -5.044626854 0) (92.53794775 -5.429064753 1.638973637e-19) (91.84946639 -5.857331775 -3.365267112e-19) (91.3901791 -6.197276877 -7.165731365e-20) (91.20491103 -6.012901962 -7.2755698e-20) (91.5109769 -5.869545275 1.736396576e-19) (90.63771338 -6.348622412 -2.264245707e-22) (90.90840817 -6.308190257 1.588064251e-19) (90.9553791 -6.370439718 -5.335132428e-22) (90.569245 -6.001698947 -1.616870523e-19) (90.63302023 -6.048610214 2.426533073e-19) (90.46488086 -6.111669697 1.455700211e-19) (124.5164402 -23.84871318 0) (124.5927768 -24.6006705 9.286209671e-20) (123.8711841 -24.83289398 8.601394797e-20) (129.1541908 -22.91759235 3.389689676e-19) (128.0515087 -23.44084956 3.255917366e-19) (128.1449577 -22.38890054 4.107180088e-19) (94.60483986 -6.892754496 -2.071487952e-19) (94.0864865 -6.504775066 -1.446120089e-19) (94.80570269 -6.125096983 -7.556233154e-20) (93.16129217 -7.199806891 -3.048156607e-19) (93.84241467 -6.667851487 9.542142036e-22) (94.36381744 -7.090139903 0) (93.22160746 -6.119470173 1.546573309e-19) (93.68363102 -6.52357869 0) (92.99643625 -7.036884557 -1.726845494e-19) (92.48164327 -7.462615496 6.85250821e-20) (92.24964003 -7.201261596 0) (92.62173125 -7.043204857 6.163632352e-20) (91.30264607 -7.646636827 0) (91.79400501 -7.599556641 1.143034151e-19) (91.94180984 -7.706589263 6.00046546e-24) (91.4332043 -7.071853044 -7.795602095e-20) (91.49493423 -7.154968394 5.84167606e-23) (91.12308032 -7.246305039 -2.515044233e-19) (110.1851509 -30.21239586 8.335733714e-20) (110.4408262 -30.23688988 1.764793536e-21) (109.1483165 -30.4473247 1.781691109e-19) (114.7449105 -25.55509967 5.673203652e-19) (114.4838192 -27.66105666 -5.993507192e-20) (112.3494838 -27.53149832 3.794039684e-19) (117.5294158 -26.09353468 6.045196457e-19) (116.8293926 -26.15143108 5.159098622e-19) (116.8034112 -25.41625097 -4.417165702e-19) (96.34411039 -7.823812434 3.485062049e-21) (95.64178862 -7.491170958 -6.110986358e-20) (96.30085724 -6.97134531 3.26162491e-20) (94.81592416 -8.541886326 6.802650391e-20) (95.42681014 -7.739843811 -1.857380784e-19) (96.16596856 -8.118556148 0) (94.55546468 -7.227638221 -6.896555328e-20) (95.18969726 -7.621134527 -6.467924109e-20) (94.56236488 -8.373672463 -1.161428875e-19) (94.00508694 -8.999950355 6.267348463e-20) (93.67139705 -8.681968647 6.363524119e-20) (94.11147319 -8.341357611 -1.262198664e-21) (91.43224469 -9.302293463 1.174406143e-19) (92.28954696 -9.321774348 -2.257628952e-19) (92.30708185 -9.38313341 2.268338798e-19) (92.08451 -8.58138358 0) (92.11596933 -8.633254524 -1.165215722e-19) (91.65967958 -8.649848327 -1.212478651e-19) (82.03950764 -7.793773906 -1.363430832e-19) (81.69686711 -8.572528031 0) (97.64350631 -9.742614617 -1.857720568e-19) (96.37418543 -14.20253454 -4.9380372e-20) (79.78094528 -11.40266553 0) (85.14017152 -11.08045974 -1.289160917e-19) (91.7613823 -18.40313394 3.942556346e-20) (92.90595271 -16.17679978 -1.511846853e-19) (95.41785171 -17.18055525 -4.066329763e-20) (83.16770012 -5.897040037 -1.293638691e-19) (83.32410262 -7.03885949 -1.690447271e-21) (81.85552194 -7.045746883 3.250341662e-19) (86.62044656 -6.027087722 1.425920317e-19) (86.14854516 -6.332488506 0) (86.15837614 -5.744328366 1.055223264e-19) (75.39215347 0.3558761752 0) (73.39699339 -0.2864693748 0) (72.77741916 1.991792417 0) (81.06938731 -6.645370142 -3.452360404e-20) (79.84949526 -6.341555021 -3.665013936e-19) (80.35778155 -5.094372013 4.380018155e-19) (148.0844094 14.31796857 0) (149.1416869 14.45781362 5.505561429e-19) (149.2147331 13.42629751 -2.768321413e-19) (143.5399345 29.92655146 0) (144.2706834 28.75793006 3.298503552e-20) (143.0046825 27.97500859 4.968544095e-19) (133.7972381 21.92319453 0) (136.7111613 17.80858483 0) (132.786452 16.35797993 -7.329574647e-20) (142.2129984 25.3997803 4.192339998e-20) (140.0757863 24.10847207 0) (138.7989652 25.92115151 0) (144.3892131 13.24892513 3.417913581e-19) (143.9919513 15.00768165 -1.704675581e-19) (146.5607582 16.05486174 5.565410606e-19) (88.61094306 -5.077094089 2.215391298e-20) (89.01295028 -4.774932726 -7.99510267e-20) (89.31370104 -4.945587868 1.591572109e-19) (88.55876338 -4.616027254 8.417381221e-20) (88.91019165 -4.72518514 -8.078341299e-20) (88.52609058 -5.037546815 1.782259308e-19) (89.2218265 -4.269063406 1.797127235e-19) (89.01275051 -4.618593952 1.57941399e-19) (88.76476527 -4.43493601 -2.599012097e-20) (88.19947659 -5.090316937 4.614362287e-20) (87.98729681 -5.191884582 7.498931778e-20) (87.86973318 -5.202487956 0) (88.2998076 -5.467628062 1.443791941e-19) (88.20831863 -5.339719515 -1.412127296e-19) (88.61068703 -5.234164032 1.299491692e-19) (87.09393999 -5.448135977 -3.855720792e-19) (87.07911888 -5.697733322 0) (86.74876752 -5.937226908 7.013199549e-20) (87.82905267 -5.211983191 -1.486493081e-19) (87.69153724 -5.267940628 -1.466795378e-19) (87.89630411 -5.117156438 3.757903367e-19) (142.4265637 -10.2613068 -1.002938399e-18) (142.7371385 -10.68720631 -2.644420583e-18) (142.3659929 -11.26956797 -2.068262328e-18) (147.2528243 -1.388161448 -5.318963785e-19) (147.0079242 -2.162957064 2.086918097e-18) (146.4589439 -1.926121619 -5.083052117e-19) (139.5918628 0.04939844074 -5.848319751e-19) (138.7499851 -3.42176902 5.644586324e-19) (135.473771 -2.414295611 5.159935402e-19) (145.3794241 -3.050975461 -2.975016259e-18) (143.353546 -2.305414671 2.558109834e-19) (143.7664176 -0.371069967 -5.008475438e-19) (140.6823899 -9.279825598 1.522459231e-19) (141.2935492 -8.195921932 -5.984663998e-19) (142.7540962 -8.756700666 -2.501438543e-19) (147.3764759 9.536265681 -5.471291908e-19) (144.8630985 9.82879804 6.719061995e-19) (144.6776099 11.51922871 -1.707884124e-18) (143.9012791 0.3265899345 0) (144.2001448 2.409505868 2.571991507e-19) (146.7492813 2.103491502 -2.586019691e-18) (135.9169034 4.898033524 1.062601306e-18) (140.0046193 5.161049664 5.825171674e-19) (139.771385 1.269353751 0) (90.2780937 -5.981557322 4.203103852e-20) (90.43540163 -5.910981871 0) (90.50343594 -5.955630955 0) (89.95111192 -5.662938179 -1.647815835e-19) (90.0425432 -5.70466767 1.646172234e-19) (89.89556118 -5.799281104 -8.403563602e-20) (90.7761882 -5.288527336 0) (90.56138156 -5.530171325 7.373840408e-20) (90.30430775 -5.376794856 7.517685962e-20) (89.68964331 -5.84406309 -1.283912336e-19) (89.57831625 -5.895581294 -1.287344041e-19) (89.53115003 -5.881933219 -1.375501762e-19) (90.06307852 -6.108202144 1.367892791e-19) (90.03628551 -6.08749325 0) (90.16775878 -6.060905468 1.316768769e-19) (88.9316575 -5.486152088 -1.31237975e-19) (88.49834948 -5.659229616 2.952458622e-19) (88.33995631 -5.517747607 -1.456494141e-19) (89.48343549 -5.865510372 3.905096397e-19) (89.43409213 -5.849858852 1.318664127e-19) (89.54250556 -5.7969051 0) (130.3609219 -21.24040862 5.665107841e-20) (130.6093734 -22.12567138 7.20360731e-19) (129.5199646 -22.72381544 0) (135.2745599 -18.4763181 2.067869723e-19) (134.8504529 -18.76344475 -4.032499422e-19) (134.7560952 -18.30983692 6.003432864e-19) (131.8844541 -14.50371461 -6.860581315e-19) (129.9649502 -16.15111396 2.051109661e-19) (128.7575961 -14.29139913 3.661252627e-19) (133.8990696 -18.10874338 -1.195727495e-19) (133.3617515 -17.30073272 4.852576125e-19) (134.1244557 -16.72241332 -7.362457011e-19) (127.8898031 -18.64570627 -2.044906017e-19) (129.8983001 -17.33712496 -4.714018466e-21) (131.5899759 -19.61597804 -3.42723809e-19) (140.2563187 -12.50211708 0) (139.3625646 -11.29075211 -1.463820246e-19) (140.0373549 -10.31230521 0) (134.8945884 -16.10038362 5.147512569e-19) (135.6695035 -15.42524488 -1.317512204e-19) (136.6579937 -16.28920791 -2.013048281e-19) (132.0316238 -10.66448018 0) (134.3712892 -11.7973217 4.965399527e-19) (132.5157207 -13.87575774 0) (90.93804229 -6.948694342 1.223049828e-19) (91.3143561 -6.90388722 -9.84609981e-21) (91.37235257 -6.988095888 7.80334032e-20) (91.00172995 -6.43787799 -3.57973175e-19) (91.04934648 -6.509993769 1.199630833e-19) (90.75712629 -6.584948689 -1.895286589e-19) (91.90783133 -6.27037385 -1.695765667e-19) (91.63636826 -6.47761736 -7.173220144e-20) (91.45094889 -6.265771123 -4.360545832e-22) (90.56074437 -6.521268934 2.621302975e-19) (90.34562627 -6.527938937 -2.727921173e-19) (90.34032051 -6.489954572 2.710689306e-19) (90.42689409 -7.123519539 -3.920996398e-19) (90.4049798 -7.079868996 -3.881442116e-19) (90.75441429 -7.064724167 -1.260713789e-19) (90.25523507 -6.122203541 6.633423232e-20) (90.11800785 -6.151464897 6.893043133e-20) (90.09043209 -6.130526738 -3.436981499e-19) (90.33544269 -6.456269856 0) (90.32964051 -6.426711117 2.661781017e-19) (90.52598231 -6.419504434 -9.205516538e-23) (118.8866506 -25.19981069 5.68301075e-19) (118.9298377 -25.92544363 -7.126943391e-19) (118.2297273 -26.01818894 -2.756703187e-19) (123.1557324 -25.04675003 -8.858478524e-20) (122.4442916 -25.23310486 -8.452777582e-19) (122.3779292 -24.48302043 6.630321087e-19) (91.61684203 -8.488729199 1.1624696e-19) (92.03889108 -8.474534392 -1.146810089e-19) (92.05742793 -8.528322883 0) (91.97383679 -7.757212709 -2.839609151e-19) (92.08295776 -7.899553874 -1.709057526e-19) (91.44106297 -8.002391981 0) (93.21737838 -7.543695631 -6.18783719e-20) (92.8172863 -7.828369395 -6.734943814e-20) (92.56227808 -7.554411267 0) (90.98220841 -7.909603818 8.820443065e-19) (90.27027649 -7.894821293 -5.29602136e-19) (90.26673148 -7.861061111 0) (90.83205802 -7.193056426 -2.563305389e-19) (90.47404972 -7.210261905 0) (90.44928916 -7.16759928 0) (90.28249659 -7.821354206 -2.550063814e-19) (90.34868663 -7.768102485 1.277544363e-19) (90.97251224 -7.756768708 -6.214958014e-19) (109.030994 -24.99504575 7.059535102e-20) (108.8484268 -26.86786555 -1.941370574e-20) (106.8232007 -26.15285557 4.81814435e-19) (111.6445715 -27.44635912 2.088075193e-21) (109.5364291 -27.03882264 1.971242441e-20) (110.0567886 -24.87781038 0) (108.8159947 -30.42732964 4.16081316e-20) (109.6108579 -30.14355345 -1.227161466e-21) (109.9062647 -30.17573187 -1.243883364e-19) (79.33659947 -9.312220866 1.26498792e-19) (92.98392361 -10.52647756 -1.425529829e-20) (93.02478977 -11.26152613 -1.43690057e-19) (92.33057482 -9.453107797 0) (92.36191001 -9.529117839 4.697372203e-19) (91.45407145 -9.502287494 -5.564644739e-19) (95.00896474 -9.002046041 4.86307707e-20) (94.52316478 -9.466791277 1.686344625e-18) (94.12669498 -9.110136658 0) (96.79047577 -25.51002285 2.236672649e-20) (96.29429539 -24.74604333 -4.311816251e-20) (97.46363814 -24.33370236 -2.364001131e-20) (69.34923933 -15.56271005 9.326349355e-20) (68.89847086 -16.41065998 0) (46.09890453 -4.323446256 -1.396416281e-19) (99.08334289 -26.36561196 -1.236634699e-19) (97.90769378 -26.90573829 1.286103612e-19) (97.33127206 -26.22909808 -1.233045415e-20) (89.72613684 -1.210203364 -2.884282991e-20) (89.44406518 -0.4205695138 0) (90.52518632 -0.2821585194 1.084743206e-19) (86.27885268 -1.259554261 2.548851945e-19) (88.44627271 -0.4375221052 2.270886564e-19) (89.06678557 -1.698670529 2.188993056e-19) (88.23013255 1.90052494 2.26948977e-19) (88.30571213 0.0896853587 -4.533641884e-19) (85.87962296 -0.576548358 2.564134188e-19) (83.9140513 -1.627844677 -1.412021942e-19) (83.20247209 -0.5947612467 1.410923368e-19) (84.44425681 -0.1236306842 0) (79.21972343 -2.719880744 0) (81.94624539 -0.9416693706 1.984320191e-21) (83.34827289 -2.535053141 0) (80.40493197 2.076578249 2.8614354e-20) (81.60361214 -0.1865245225 -2.782913985e-19) (78.3850707 -1.710453761 -5.588029559e-19) (117.004278 67.63661892 0) (122.0928873 68.52126028 0) (122.5448057 63.21718426 3.765180342e-19) (88.47318679 -4.324325166 -8.216305607e-20) (88.13136266 -4.205869141 3.539296906e-19) (88.35084482 -3.803647375 -1.098353863e-19) (87.71900692 -5.045226275 1.843349034e-19) (87.92247622 -4.481980181 1.838924724e-19) (88.42421799 -4.574330924 -8.600681721e-20) (86.97461929 -4.303705058 2.043085605e-19) (87.71649956 -4.426673272 -4.710279996e-19) (87.54796334 -5.090752816 3.726079727e-19) (115.9957207 -16.27333286 -1.517077233e-19) (117.9869792 -14.98701472 -1.543928792e-19) (119.939855 -18.05062419 0) (115.4150453 -12.2154438 2.951033962e-19) (116.6492792 -13.80075274 -2.150806704e-19) (115.0565815 -14.48706397 -1.32943639e-19) (119.7454213 -11.74962434 0) (118.2215125 -12.8802844 -1.590663167e-19) (116.7659763 -11.36055668 -4.588484353e-19) (115.6155198 -28.4051613 1.316365413e-19) (115.1381085 -29.28287869 2.121708782e-19) (114.1776405 -29.31587962 0) (117.1279172 -28.46091602 1.13953107e-19) (116.7796893 -28.49049804 -4.399153136e-19) (116.9612011 -28.13398462 4.939759271e-19) (101.5438998 -23.57946696 -1.861521538e-19) (103.2499708 -25.05231016 2.343131591e-21) (101.2733246 -26.90331642 0) (104.3185673 -22.82796869 0) (103.6238151 -23.89837627 1.814897022e-20) (102.5560188 -23.05383618 3.534731748e-20) (106.1862958 -25.86887469 1.327724624e-20) (104.7963672 -24.66522274 5.421289189e-20) (105.399045 -23.49257314 2.230023544e-19) (85.1959888 -5.348049229 -3.092114963e-21) (85.61753366 -3.928323089 2.228958435e-21) (86.67853579 -4.215572693 1.793103394e-21) (83.83746369 -2.97046097 -2.482859012e-19) (85.2126446 -3.725321566 -6.972546491e-19) (84.64766431 -5.318506585 -2.886264614e-21) (86.05115225 -2.342203635 2.487125343e-19) (85.43466591 -2.993316295 6.49607789e-20) (84.6833272 -2.415281631 6.874508791e-20) (63.15906063 -0.5938359695 0) (60.14132792 -1.273378124 0) (59.44975002 1.965774566 1.709637368e-18) (71.32495727 -11.78809888 0) (69.37127238 -11.18696893 0) (70.37701665 -9.396370179 4.933824254e-19) (130.5930486 36.20754415 9.358313574e-19) (127.3142194 29.05062132 -5.227939046e-20) (121.3341439 30.76065987 0) (137.3211499 27.68602741 2.823542872e-19) (135.6328142 29.36350034 1.360568848e-19) (137.5650265 31.33925742 0) (126.5843843 22.23941568 -4.466833184e-19) (128.2440186 26.22610461 0) (132.5706372 23.21346535 2.426488482e-19) (118.0117066 -28.05980718 -2.303795682e-19) (117.8103725 -28.37938201 1.171478449e-19) (117.4647101 -28.4135069 -1.138848005e-19) (119.6878503 -28.00321688 -6.770791802e-20) (119.4019317 -28.08639579 -2.577361077e-19) (119.7121751 -27.73608216 1.24724849e-19) (121.2428326 -20.53020493 1.836114712e-19) (120.0150598 -20.9160138 -3.333971755e-19) (119.4588621 -19.64029743 5.022861494e-19) (120.8153097 -24.08643448 1.579460696e-19) (120.5276561 -22.22325159 0) (122.0181637 -21.4562114 0) (117.9559666 -22.81536424 3.125367211e-19) (119.2310657 -22.5552479 -7.445796178e-20) (120.1326155 -24.23865398 4.461900429e-19) (126.4571812 -22.27444953 -7.008411006e-21) (125.2682726 -20.05520084 -3.661836759e-19) (127.2360457 -19.10974887 0) (122.662349 -21.1531897 -3.337604886e-19) (124.605931 -20.4295913 -5.389662204e-19) (125.7392675 -22.56637555 3.729209466e-19) (122.9524948 -18.25156282 -3.905090588e-19) (123.7192181 -19.51098557 3.899784479e-19) (122.4783556 -20.05493664 -1.833480772e-19) (105.0083949 -30.54878383 -6.31231959e-20) (104.875969 -30.49023999 -5.952809212e-20) (105.8439891 -30.22388292 -2.944382063e-20) (93.90241901 -29.01868765 -1.96900741e-19) (93.719169 -29.13204988 -3.283830837e-21) (88.97883056 -28.30773941 0) (101.7022056 -28.49157729 -1.564639707e-19) (100.1267219 -29.43740139 2.208007761e-19) (99.2521087 -28.75298455 1.23291392e-20) (80.59397585 20.63329082 2.337886825e-19) (73.11911613 19.6571077 1.100121648e-18) (74.86633363 33.59817617 -1.545947611e-18) (77.97062228 10.55684245 3.029875206e-19) (74.25507975 16.422514 2.303569185e-18) (80.79517997 18.20674931 4.989565583e-19) (66.28464609 5.427358499 5.070011192e-20) (71.70113398 14.81776779 1.351295777e-18) (76.91110407 9.293344615 3.079653545e-19) (115.0639913 40.58227789 0) (113.6536221 43.99639241 2.284815222e-19) (117.492288 45.21075743 -9.021398792e-19) (96.83245503 33.09630639 6.885692901e-21) (99.28904079 41.5802248 -3.781983118e-19) (107.5037636 36.23769166 7.118565704e-19) (78.95696957 38.51973895 -3.656969132e-19) (95.20282686 42.88667427 8.379607575e-20) (94.27526843 33.23262098 0) (136.925174 41.98357747 7.25997651e-19) (141.33478 38.26996389 -1.266441583e-19) (137.6049884 35.56976756 -4.342795297e-19) (129.8459034 57.93943223 1.055781248e-18) (127.8274766 48.4530263 0) (121.446235 50.20661046 -2.602314039e-20) (139.6605076 49.66687503 -3.20820253e-20) (137.3769928 51.20193898 1.540000435e-21) (139.0600942 53.86519171 2.659814926e-19) (128.8864403 40.48508599 0) (130.205749 44.24668272 9.823662378e-19) (135.2921571 43.09029173 6.940972919e-19) (148.440891 5.025024815 1.873572844e-18) (148.3077553 4.180826297 1.885457381e-18) (147.7379764 4.330637157 -2.28446767e-18) (148.0697715 6.8612974 0) (148.7117329 6.752082096 1.253628294e-18) (148.5763872 5.880491594 0) (138.7213743 -15.60475681 1.164653e-18) (138.2909963 -16.03467097 -4.561192751e-19) (138.1031343 -15.58731969 0) (139.3462556 -14.28653403 -5.208950167e-22) (139.5718752 -14.72626783 2.119621528e-18) (139.149363 -15.16639065 -4.721249951e-19) (126.0467366 -24.06889517 1.925615573e-19) (125.3183213 -24.34596233 1.841102385e-19) (125.2358298 -23.59920568 -3.753455335e-19) (125.1147521 -25.79341081 3.362191763e-19) (125.5742361 -25.46089893 -4.885900556e-22) (125.8757284 -25.32121278 3.138758893e-19) (123.4873168 -26.19937409 2.898974231e-19) (123.8359637 -26.08854833 1.362699357e-20) (123.5913603 -26.45611592 -3.114906596e-19) (126.1680946 -25.20609706 -7.940106064e-20) (126.4756534 -25.0745079 1.326036526e-18) (125.5711877 -25.31435464 -2.043113169e-18) (127.4115601 -22.72353766 0) (127.6888351 -23.60949449 -3.259166418e-19) (126.5712574 -24.06841351 0) (91.672757 -7.412270281 7.815229531e-20) (91.73089405 -7.505020733 -2.076814298e-20) (91.28581243 -7.594514634 6.483604478e-20) (92.16129513 -7.363680612 4.191805242e-22) (91.97028981 -7.437841059 0) (91.90335141 -7.34729715 0) (92.11262749 -7.62269696 3.708945236e-20) (92.03982132 -7.530434477 -7.503083812e-20) (92.23530834 -7.453555386 7.208100161e-20) (112.7932582 -28.3516293 2.40414622e-20) (112.3852551 -29.08794464 4.353074904e-19) (111.6803873 -29.02911455 -2.661691194e-20) (113.8431066 -29.32258789 1.895133451e-19) (112.7920743 -29.31012197 0) (113.5049168 -28.41299667 -4.798428075e-19) (92.30278343 -8.977784961 -6.181712785e-20) (92.31883541 -9.037324584 0) (91.79432559 -9.050798927 0) (93.55993089 -8.896132695 6.869452745e-22) (93.27620029 -8.99548074 0) (93.18518289 -8.88577671 6.962754318e-20) (93.38432283 -9.28533129 1.02835847e-19) (93.25392196 -9.108583822 1.073813295e-19) (93.66493251 -9.003901863 4.906205268e-20) (93.17404347 -8.483280279 6.762192335e-20) (92.92724292 -8.575141347 -7.056092392e-20) (92.84213219 -8.476578459 7.107563879e-20) (93.09937476 -8.778182931 -3.449910643e-20) (93.01353341 -8.675064418 -1.048968249e-19) (93.26761149 -8.582489586 -6.783388288e-20) (91.78548517 -8.859269569 6.455669901e-20) (92.2643457 -8.862553385 -3.057366477e-19) (92.28302636 -8.917495878 -1.848198754e-19) (84.85626496 -6.787546174 1.005361676e-21) (83.75056751 -6.992725313 0) (83.92709585 -5.951681064 2.449195913e-19) (81.97173706 -8.970569722 2.086979164e-19) (82.60431911 -8.882362703 3.888981279e-19) (82.73879708 -9.520454234 3.827166309e-19) (85.70437327 -5.820491236 0) (85.95148824 -6.432730945 7.744356695e-20) (85.17411131 -6.708864596 -1.725421837e-19) (75.72161966 -3.754426754 -5.815141e-19) (74.43210068 -2.259247576 0) (76.13100242 -1.253755587 0) (68.47458927 -5.52063525 0) (72.40017182 -3.468075368 -1.955196618e-19) (75.09144127 -5.333331611 0) (70.0368417 1.684855444 0) (70.88863095 -1.137980019 2.027348582e-19) (67.22087861 -3.94411734 2.078594604e-20) (80.65000263 -9.925508813 0) (80.52973661 -9.070746888 -1.15129283e-19) (81.27717243 -9.03226202 3.366037526e-19) (74.72495747 -7.936460528 -1.439386308e-19) (75.81026023 -8.432107881 4.216943826e-19) (75.34727701 -9.68560527 -2.761997666e-19) (79.28334974 -4.516075181 0) (78.52207236 -5.7872575 0) (77.11412812 -4.928421441 -1.654942313e-19) (147.8153061 20.76105923 1.701766221e-18) (148.0983521 19.65498832 -2.318068515e-18) (146.846961 19.3243013 4.19914985e-19) (145.7714596 22.53263041 2.655188201e-19) (147.0758493 23.02271274 -5.532357925e-19) (147.4790446 21.89128214 -2.858374255e-19) (88.09347377 -5.211200333 5.624013051e-19) (88.02209647 -5.192885008 -2.224273455e-19) (88.2835397 -5.102998435 -1.83607344e-19) (88.57197318 -5.201363523 1.297397088e-19) (88.18248401 -5.306630307 0) (88.1113446 -5.229830502 1.391126246e-19) (87.40689893 -5.450432604 0) (87.17195397 -5.627920741 1.419880197e-19) (87.3027387 -5.349673709 4.968215509e-20) (87.77391236 -5.151759683 -3.297877301e-19) (87.64057506 -5.293556252 -1.46434916e-19) (87.47250448 -5.402272347 2.880303161e-19) (144.7599801 -6.924791065 1.191048195e-18) (144.4528918 -7.581915601 -1.443942886e-18) (144.0869421 -7.235416146 1.109439971e-18) (144.9771664 -5.312133477 0) (145.3627248 -5.627355682 2.978040562e-19) (145.0569601 -6.271602103 0) (142.8880817 -4.648707568 6.331291379e-19) (143.344904 -3.37555086 4.07181838e-20) (145.1099327 -3.740309042 1.037069697e-18) (140.412145 -2.629159302 -1.351612439e-20) (141.8127719 -3.031794034 1.246237407e-18) (141.4187295 -4.237854628 -6.195481617e-19) (142.4997436 -0.4447767516 1.609536903e-19) (142.1800162 -1.778273971 -6.23784254e-19) (140.7283375 -1.432907323 -5.073390647e-21) (138.7371136 -7.060179162 1.129936553e-18) (139.9853001 -7.623822504 1.19592408e-18) (139.4278167 -8.662180477 0) (140.9849365 -5.409569852 -5.979054863e-19) (140.5058434 -6.539734364 -5.95502751e-19) (139.2137783 -6.010737689 5.698477416e-19) (143.07677 -8.15538576 1.772857043e-18) (141.8680981 -7.061449945 -7.807431399e-19) (142.4012699 -5.87786857 -8.173265281e-21) (144.970769 6.582493963 -8.625720153e-20) (144.9575954 8.182198332 8.633813452e-20) (147.3742806 8.640682558 -5.605600106e-19) (141.4423694 7.978209889 6.185714129e-19) (143.1495166 8.094943763 0) (143.2014382 6.574926889 0) (142.7969741 11.2450806 3.285275515e-19) (143.0173815 9.652490398 3.148101754e-19) (141.2781783 9.450370446 -1.231782701e-18) (141.3786869 2.410442205 -6.174497751e-19) (142.9497475 2.26512256 7.99455313e-19) (142.7593362 0.8935944208 -7.994116042e-19) (143.1806432 5.094123616 0) (143.0906439 3.644432514 -6.560608166e-19) (141.4888871 3.753668572 -2.324430308e-21) (146.8706455 2.871537768 -5.187420385e-19) (144.7838126 3.521442783 7.291546516e-19) (144.920607 5.025963337 1.717446483e-19) (89.82275915 -5.975659522 1.319530879e-19) (89.78549397 -5.961672534 -2.622531295e-19) (89.90156031 -5.923544916 1.293893841e-19) (90.01239352 -5.967461733 0) (89.89332231 -6.003604823 1.330249957e-19) (89.85888603 -5.99033195 -2.643461292e-19) (89.03965119 -5.682158474 1.355678207e-19) (88.98152248 -5.651248765 -2.696948738e-19) (89.09714954 -5.593707667 1.314630464e-19) (89.26821953 -5.678672392 -1.311298571e-19) (89.15647581 -5.739817352 0) (89.09804355 -5.712788696 0) (132.0778633 -21.30479005 0) (130.9611255 -21.91885907 -7.218762383e-19) (130.9123574 -20.70889644 7.005256185e-19) (132.7630685 -19.65025192 -3.704225349e-19) (132.8489118 -20.04680291 -3.679989415e-19) (132.4623266 -20.26995235 4.156120181e-19) (90.43679091 -6.783895616 -1.421605889e-19) (90.4191309 -6.745261748 1.417505846e-19) (90.64979357 -6.72776345 -6.738958486e-20) (90.69953814 -6.842491419 2.609071129e-19) (90.44692063 -6.860789888 1.163256439e-18) (90.44613285 -6.820284793 9.562795423e-22) (90.23207342 -6.27166144 6.384730339e-20) (90.21915184 -6.248460602 -2.081713017e-22) (90.38221692 -6.225232812 0) (90.44458496 -6.295042135 -1.250289764e-19) (90.26789027 -6.315736219 -1.278805485e-19) (90.24886698 -6.295069805 1.270363357e-19) (121.9249562 -26.91847068 0) (122.3920043 -25.96641283 4.287456269e-19) (123.3148243 -25.58027518 -6.892853664e-19) (120.9852465 -26.30635233 0) (121.6864213 -26.14589546 0) (121.5983252 -27.01459654 0) (121.673985 -24.65890352 -4.87203366e-21) (121.7384564 -25.40147042 4.923303752e-19) (121.0350376 -25.55542837 0) (120.673497 -27.52270384 0) (120.1658399 -27.87158901 -5.234830788e-19) (119.9356456 -27.92640192 0) (121.0874757 -27.20179218 2.994571075e-19) (120.9748299 -27.35171206 -5.848060292e-19) (122.138124 -27.12117312 5.654148244e-19) (91.91052614 -8.222905573 6.145577382e-20) (91.94740924 -8.264954452 6.186452768e-20) (91.65728911 -8.296712852 -6.484046675e-20) (92.81751681 -8.103525912 1.391336892e-19) (92.59862138 -8.192126843 -7.162413694e-20) (92.51438124 -8.101137901 -1.75548836e-20) (92.76008038 -8.378943182 -1.457283989e-19) (92.68006221 -8.283831719 0) (92.90530778 -8.1956295 -1.382955723e-19) (92.47202613 -7.733201967 1.420843584e-19) (92.26436232 -7.816624823 0) (92.18647082 -7.719389645 -5.479308307e-20) (92.42897326 -8.008515601 -1.449272492e-19) (92.34522543 -7.913380798 0) (92.55572768 -7.82686344 -7.107042632e-20) (91.54418946 -8.166480039 -5.766240575e-19) (91.82974379 -8.130807757 -6.125723542e-20) (91.87062002 -8.178404869 -2.460756622e-19) (106.6302147 -30.48911378 -4.101135639e-19) (105.0919444 -30.66873792 8.165200276e-19) (105.0612914 -30.60315904 -2.660437781e-19) (90.57763606 -7.413854049 -6.414825303e-19) (90.57112128 -7.377285689 -4.930207424e-19) (90.94344907 -7.377087902 6.721795894e-20) (90.97925744 -7.507310899 0) (90.58029957 -7.504225393 -1.09534706e-19) (90.58047446 -7.455330203 7.200071066e-20) (108.2811538 -29.24480504 0) (109.0008225 -29.41050548 1.774958693e-22) (108.0560865 -30.31369016 -2.202794779e-19) (109.9303031 -27.9233547 0) (109.5374134 -28.67390521 -1.126003415e-20) (108.8137067 -28.50210907 0) (110.9712698 -28.94167994 -2.544207107e-20) (110.2569696 -28.82280852 -3.83272245e-19) (110.6457732 -28.06115117 3.200653999e-19) (94.01050087 -9.348396692 -1.588976169e-20) (93.60473293 -9.536739315 1.022376764e-19) (93.43414629 -9.348834468 6.30210601e-22) (93.79539088 -9.763278613 8.942997386e-20) (93.6662522 -9.597639187 5.086416468e-20) (94.13429328 -9.463263423 -1.247182823e-19) (89.98134129 -23.89627238 0) (87.72401389 -23.7396168 2.38692264e-19) (87.64835703 -23.26874097 -2.479007565e-19) (85.60386473 -25.88971628 -4.111172468e-20) (86.17334949 -25.62007703 0) (89.83194225 -26.0377544 5.320040975e-21) (88.95384218 -26.92878995 1.83628433e-21) (83.98889194 -26.12974221 6.668755302e-22) (84.89202175 -26.02360773 -8.980591287e-22) (99.15615814 -28.13852984 -2.040232201e-19) (98.51857705 -27.54774146 1.852996629e-19) (99.69531384 -26.96776414 4.146205198e-20) (90.76218772 -28.28377899 0) (94.3052821 -28.63985983 2.808654412e-20) (94.11671508 -28.82531748 6.828999772e-20) (95.76754149 -26.73629766 3.224176052e-20) (96.89586911 -27.51550973 -5.687003811e-20) (91.8838914 -27.77117411 5.650422139e-21) (114.8263662 -29.53085042 0) (112.6990124 -29.4686298 -2.41625349e-19) (112.7340809 -29.62375113 4.368326193e-19) (98.43707106 -7.781288127 0) (97.91548489 -7.842219856 0) (98.09803864 -7.321032362 4.372685529e-20) (97.5724894 -9.363673924 1.851555006e-19) (97.78034081 -8.437282724 -2.617171177e-20) (98.37430468 -8.345206212 -9.018625213e-20) (96.45521303 -8.195612781 0) (97.35682538 -8.286081067 0) (97.19910887 -9.39006198 1.015991579e-19) (97.27795584 -10.40884711 9.955737232e-20) (96.72171287 -10.42528129 -2.42075969e-19) (96.72868417 -9.800423792 3.18113908e-19) (81.61847232 -8.688130137 1.123674338e-19) (95.74888977 -11.16160448 1.089972198e-19) (95.3638002 -11.055338 -1.00942308e-19) (94.94012263 -10.44929631 -1.158901892e-19) (96.05476707 -10.90011561 2.086167646e-19) (72.96233355 -7.15207728 -9.800615066e-20) (98.903187 -13.0057939 1.270650995e-20) (98.88233881 -14.23122032 -1.4236296e-20) (97.26487813 -14.44650326 -3.857120762e-20) (100.5353833 -13.6047146 -6.973042801e-22) (99.8161806 -14.01171194 4.874495512e-21) (99.60876 -12.88994339 -2.594248813e-21) (100.6926165 -17.30151677 0) (100.173514 -15.30978524 -6.907328304e-21) (101.0394825 -14.69631114 6.674386175e-20) (107.1302532 -27.11706229 2.605596338e-19) (106.6749668 -27.8227732 0) (105.9805118 -27.53715702 -3.845790011e-21) (108.091047 -28.30343864 -3.023348742e-19) (107.37824 -28.0783609 -2.806713268e-19) (107.81522 -27.36433331 -1.804550624e-21) (106.1315002 -29.53487134 2.300921836e-21) (106.8392275 -28.81094308 1.836294661e-20) (107.5593765 -29.04288194 2.869182588e-19) (100.9882756 -19.49599486 0) (100.1017593 -20.1384569 2.551178757e-20) (99.56168314 -19.10239022 -1.025205198e-19) (101.6106911 -22.13586724 -1.925741233e-20) (100.7907493 -21.15880304 1.366978902e-19) (101.6619223 -20.39152011 0) (97.60978545 -22.51637511 8.284037308e-21) (99.69948582 -21.93929027 -9.53360714e-20) (100.5549172 -23.07366948 -7.546044286e-21) (67.78034994 28.96141187 0) (59.63109528 25.49342563 5.101337439e-18) (61.32571192 43.22827927 2.30448975e-19) (66.36847331 15.39404184 3.940705592e-19) (61.53612488 21.21226904 -1.014772579e-17) (68.21605652 22.62278826 0) (51.43277146 7.481607757 1.067108316e-17) (58.4619695 19.16975198 0) (64.69092624 12.00234712 0) (109.9244608 59.40529637 1.379778259e-18) (107.309533 63.19640956 2.022262938e-18) (111.8688594 65.68974137 0) (90.67397637 48.60481827 0) (90.1282669 57.28454393 0) (99.47163016 52.33205264 0) (65.48192303 49.90741146 -6.790430177e-19) (84.92338567 58.03354812 0) (83.21014445 47.5565837 0) (147.9581113 1.757775648 -4.672161541e-18) (147.8643492 0.9472552559 -3.088970132e-18) (147.2697852 1.131393674 2.082235072e-18) (148.3126402 10.45961214 5.587178474e-19) (149.1399361 10.44981943 0) (149.0645484 9.48982863 -2.421537049e-18) (136.9815699 -17.19342707 4.186829858e-19) (136.5474581 -17.53340431 -8.350136596e-19) (136.4110341 -17.07948739 -5.024927881e-21) (136.5052917 -18.47435905 0) (136.6131564 -18.03990924 4.174418488e-19) (137.0515137 -17.71088242 1.728595679e-18) (135.754734 -18.6303109 4.238659034e-19) (136.182081 -18.33635654 0) (136.1039558 -18.76206119 0) (140.9381638 -12.41909083 4.551363538e-19) (141.1965486 -12.90193688 -2.846971764e-18) (140.7929323 -13.39408328 9.125128286e-19) (90.80677489 -6.196256591 2.987604899e-19) (90.85910796 -6.250515333 -1.39536685e-19) (90.61853634 -6.321791514 -1.220508563e-19) (91.14573425 -6.1352485 0) (91.01206984 -6.195531204 -3.094758593e-19) (90.95542669 -6.138879273 1.546444129e-19) (91.12013861 -6.318246651 -2.317828617e-19) (91.06678722 -6.255121722 3.091064092e-19) (91.20438406 -6.196437085 1.487651961e-19) (90.89503685 -5.91343153 1.500870348e-19) (90.77211448 -5.982185882 7.811095637e-20) (90.70614423 -5.932837023 -2.337723038e-19) (90.89671833 -6.084369125 0) (90.83563028 -6.032636543 7.792182051e-20) (90.96065055 -5.966520182 -1.50444767e-19) (90.52186092 -6.156122859 -2.052595793e-19) (90.69394894 -6.096221318 3.40144207e-22) (90.75235353 -6.144384432 -1.593424083e-19) (91.88262878 -7.020506511 1.457638789e-19) (91.70736222 -7.089911729 -7.591377465e-20) (91.64232957 -7.006947601 1.519269597e-19) (91.83780323 -7.259199678 0) (91.77258687 -7.173727749 -5.629752599e-22) (91.95093839 -7.104137124 -7.298450962e-20) (91.14861036 -7.285648062 2.532426083e-19) (91.55572688 -7.238130355 1.168838454e-19) (91.6146712 -7.323406293 -7.779625046e-20) (92.29245248 -9.20440483 0) (92.28144619 -9.265644119 2.223923757e-19) (91.45330941 -9.266177499 -2.304796013e-19) (93.06827355 -9.203187039 1.19440974e-19) (92.75519262 -9.243194079 -9.48212699e-20) (92.73372237 -9.180331855 1.096855526e-19) (92.81631158 -9.370557521 -2.194395707e-19) (92.78316873 -9.306596676 -1.356370427e-22) (93.10674136 -9.267377951 -2.122526311e-19) (62.6086134 -10.56571583 2.01560833e-19) (91.12261858 -15.91401706 -7.638159094e-21) (89.10301872 -17.90758919 -4.188263304e-20) (91.62138773 -13.86992981 -4.364973265e-21) (90.45624115 -14.62070723 -1.169848239e-19) (74.55091809 -12.43095563 1.928113916e-19) (95.74173637 -16.028236 1.090478379e-19) (93.99753973 -15.58586699 -5.168132514e-20) (94.59396424 -14.64523382 2.102718578e-19) (148.8052978 16.51445295 -2.757462726e-19) (148.9984198 15.4933245 2.695453019e-19) (147.9000856 15.30799787 -2.693956022e-19) (142.0974981 20.42473749 0) (141.1759381 22.26809168 0) (143.3519378 23.34912845 3.154083992e-21) (137.4190728 20.17851302 2.969541639e-19) (139.198934 21.21478819 -6.034084089e-19) (140.1180349 19.53864024 1.220080914e-18) (136.9006308 24.50693609 0) (138.130235 22.87962224 0) (136.3981057 21.69535137 -5.463330658e-19) (140.2530419 13.99657056 0) (142.0605735 14.50893385 0) (142.4797399 12.86690764 3.269714389e-19) (140.8938824 17.85072636 3.262137872e-19) (141.5355908 16.16934778 -6.243081896e-19) (139.7162778 15.54246891 0) (146.3213387 17.03103464 -1.651874646e-18) (143.4873419 16.78937361 0) (142.8637126 18.60171216 -3.163514775e-19) (143.4525647 -9.485006399 -1.902852562e-18) (143.0992945 -10.09256501 5.344899159e-19) (142.7779322 -9.681607908 5.097914548e-19) (146.197795 -2.654959832 0) (146.7218409 -2.91323851 -4.683209755e-18) (146.3986685 -3.62080558 4.249977645e-18) (90.28998575 -5.82654668 0) (90.36450298 -5.868045525 8.126232064e-20) (90.21085766 -5.942235316 0) (90.61117113 -5.712403291 -7.570433254e-20) (90.49462449 -5.791128315 -7.870056886e-20) (90.4184778 -5.746069482 -1.578942399e-19) (90.63805864 -5.884390871 0) (90.56767457 -5.837215553 -7.825543205e-20) (90.68562104 -5.761502506 -7.520245527e-20) (89.61128441 -6.125380061 9.819911518e-19) (89.86300262 -6.110257318 -2.155939182e-19) (89.88670668 -6.132135967 0) (89.81811473 -6.072668699 0) (89.84049037 -6.090107317 -3.563710175e-19) (89.59412241 -6.104432902 8.976918001e-19) (90.13863126 -6.037585686 0) (90.00988818 -6.06688198 0) (89.98317961 -6.049153698 -1.347264476e-19) (134.8206888 -19.67772306 3.565017789e-18) (134.8903457 -19.21242224 -4.179472259e-19) (135.3237899 -18.92629579 0) (134.0539522 -19.74537099 -7.855224253e-19) (134.4660822 -19.48455654 -4.010791903e-19) (134.3853093 -19.95109201 -8.448772204e-19) (134.344032 -18.63404375 0) (134.4378215 -19.04766029 7.993818917e-19) (134.028683 -19.30845646 -3.765659268e-19) (131.8566934 -18.34966133 6.862600485e-19) (132.6055641 -17.84167713 -7.182201899e-19) (133.1175487 -18.64464264 7.186065757e-19) (131.2436508 -16.32775291 -6.835820296e-19) (131.9204539 -17.05508911 2.293419098e-19) (131.2087112 -17.57226966 -2.293015043e-19) (133.3562904 -15.91991625 9.720589663e-19) (132.6368064 -16.50530432 0) (131.9189042 -15.7761059 -4.589014725e-19) (137.9380519 -13.08929685 2.793674768e-19) (138.6620876 -12.21504597 2.764360045e-19) (139.8738656 -12.98019607 -4.385807602e-19) (136.5128342 -10.82384322 -5.154498714e-19) (137.5708272 -11.49459454 -1.104112543e-18) (136.9019841 -12.34567625 -7.998451204e-19) (138.8367091 -9.654397065 0) (138.2164005 -10.59883579 -5.530361413e-19) (137.1091602 -9.949565139 5.540927074e-19) (133.9405104 -13.90036213 6.462925742e-21) (134.7957094 -14.62897168 -5.3084936e-21) (134.0772595 -15.296239 -2.509777809e-19) (136.2128571 -13.15334404 5.417188596e-19) (135.5089446 -13.91526108 5.183344554e-19) (134.6037005 -13.19473134 5.026308702e-19) (137.0663791 -15.92584774 -6.220936351e-19) (136.4359111 -14.6927364 2.679102832e-19) (137.1944931 -13.91695077 -8.011770841e-19) (91.20615857 -6.740627497 1.98349098e-20) (91.25973079 -6.820809858 0) (90.92091153 -6.903125414 -3.070798339e-20) (91.62022334 -6.696781153 2.212406673e-19) (91.45601117 -6.761099832 1.525094595e-19) (91.39702634 -6.682269652 0) (91.5783528 -6.924202279 -3.046914155e-19) (91.51621439 -6.842017186 7.527413534e-20) (91.68373991 -6.77632201 -2.210664371e-19) (91.37759339 -6.396646888 2.228647741e-19) (91.22678912 -6.456011937 7.766216051e-20) (91.173117 -6.385383264 5.767873511e-22) (91.33889325 -6.605078462 0) (91.2819748 -6.529585782 7.720703983e-20) (91.43648553 -6.469147044 -2.964843828e-19) (90.7778015 -6.626393466 1.90234741e-19) (91.0995783 -6.585383277 4.027506305e-20) (91.15239491 -6.662399672 3.976348839e-20) (90.36374407 -6.614843099 -3.478765779e-19) (90.35291991 -6.569911435 4.144984316e-19) (90.5738458 -6.561162365 0) (90.02937496 -6.482715333 4.179633663e-22) (90.02577605 -6.52213077 -1.428276784e-19) (89.48556255 -6.490866993 -1.498547033e-19) (90.73162239 -7.018024434 -1.247150925e-19) (90.3864124 -7.034025782 0) (90.38274207 -6.982596731 -5.070890571e-19) (90.16902702 -6.192375729 1.362978536e-19) (90.14480069 -6.173021182 -3.325384935e-20) (90.2836836 -6.146540313 9.925453741e-20) (89.69886758 -6.217898397 -2.917709884e-20) (89.9618559 -6.197768277 -1.028634957e-20) (89.98105611 -6.216990376 0) (89.91174868 -6.154610167 -7.32497996e-20) (89.93739816 -6.176472042 -2.195973452e-19) (89.67696046 -6.195559661 3.099638014e-19) (89.52739675 -6.393222072 -1.455657803e-19) (90.03607396 -6.42209984 -4.142479074e-19) (90.03349275 -6.449604967 7.901159105e-23) (90.03265475 -6.378180913 -5.422824134e-19) (90.03586439 -6.398730079 0) (89.53517953 -6.374008566 0) (90.51306057 -6.391124659 0) (90.32201899 -6.400492876 0) (90.31223119 -6.376888556 -2.611262048e-19) (120.331687 -25.69407638 0) (119.6302578 -25.8170534 7.288874905e-20) (119.5816926 -25.09062972 0) (119.181563 -27.50720224 -2.398894343e-19) (119.5831063 -26.5741365 0) (120.2832442 -26.44849266 0) (118.1786244 -26.75270764 3.525436509e-19) (118.8816598 -26.67181325 -7.206255035e-20) (118.7201438 -27.40014782 7.329679686e-20) (107.1998841 -30.57897634 -3.200598135e-19) (104.4581086 -30.38072811 -2.146589818e-21) (104.8060927 -30.45376145 0) (90.27600168 -7.992026852 5.44841291e-19) (90.27301386 -7.93653385 0) (90.99962185 -7.959244004 3.820324143e-19) (90.52553492 -7.281436239 -5.427686795e-19) (90.50066066 -7.24822706 -5.371029349e-19) (90.85909744 -7.232368254 5.187260203e-19) (90.99341402 -7.711734571 -5.144722775e-19) (90.45040786 -7.724262556 9.28977559e-19) (90.56555779 -7.702603757 0) (92.18993466 -9.50829508 7.300146364e-19) (90.57891983 -8.292989749 -2.370877985e-18) (81.58882583 -7.633867624 -1.094909976e-18) (94.28593468 -9.975161344 -2.546441945e-23) (93.6659145 -10.07790099 -8.122830162e-20) (93.66885226 -9.816155881 -8.603289945e-20) (94.23850999 -10.67669397 1.83473377e-19) (93.82483666 -10.39548621 -3.004290922e-20) (94.43262641 -10.16314504 2.410710483e-19) (93.24095967 -9.463956502 2.151104504e-19) (92.89478001 -9.508126243 -2.225817101e-19) (92.853056 -9.437815239 -1.110217667e-19) (92.99864177 -9.653539532 0) (92.94285525 -9.580821705 4.510760794e-19) (93.29447793 -9.531613097 0) (91.93211986 -25.3132961 -1.929528225e-19) (94.8170479 -25.13150984 9.734590029e-20) (95.27634739 -25.96486721 -5.404796695e-21) (94.03216907 -23.35877988 0) (94.41415953 -24.25875914 -2.608880987e-20) (92.39802099 -24.55157759 7.69538231e-20) (97.02027099 -23.58877656 0) (95.85297848 -23.94204652 -5.010922263e-20) (95.47009722 -23.10618103 5.018950277e-20) (87.3915757 -19.81687437 -2.6283592e-20) (79.94932995 -18.78604986 2.639677537e-20) (82.16459607 -17.73949785 0) (78.45476689 -21.56753018 2.627272068e-19) (74.9910463 -19.00006556 0) (87.27394077 -21.25323495 1.234596796e-20) (23.41912742 -11.51363749 0) (34.56465124 -13.84741535 1.670114094e-19) (126.8033942 62.89090602 0) (126.9400984 66.64211057 0) (131.9822991 64.91206977 -1.398266409e-17) (114.0086212 -29.65057875 0) (112.935294 -29.90912697 0) (112.7904296 -29.95306025 0) (112.9014166 -29.68046614 -4.354556399e-19) (113.0045919 -29.79658008 2.721804507e-20) (114.2551799 -29.61190773 4.221574228e-19) (63.23246341 -6.832834727 -1.661224334e-20) (61.44246868 -4.273840072 4.180784238e-19) (64.16028326 -3.088395132 0) (55.74693396 1.800551499 0) (56.59927198 -2.339923239 0) (52.37188382 -3.244070526 -4.159797786e-18) (68.67303254 -8.354626539 0) (67.37275941 -10.27104825 0) (65.27436779 -8.816687458 -3.968059313e-19) (116.9202226 -28.44267386 5.526418418e-19) (118.6959864 -28.40371226 -2.662576725e-19) (118.853006 -28.27567533 5.331498482e-19) (118.2645904 -28.5167946 -1.294136934e-19) (118.4799997 -28.4790438 0) (116.9336257 -28.61396311 -2.704836e-19) (119.376231 -27.80014561 -2.452733191e-19) (119.0892138 -28.14943285 2.482396219e-19) (118.7733271 -28.20010549 -1.281608161e-19) (99.73285908 -30.26863907 -3.136273621e-20) (103.081087 -30.60270245 -1.243303426e-19) (102.8832354 -30.55264134 2.574980273e-19) (103.1002949 -30.48467806 5.535196479e-20) (103.1295909 -30.54668764 1.794348069e-19) (100.2284407 -30.2965006 -9.603002963e-20) (105.52409 -30.16853379 1.461403754e-19) (104.6713631 -30.41100332 -2.022136547e-19) (104.4258429 -30.29823637 2.85903745e-20) (98.94098465 -29.90448075 -1.194261787e-19) (96.0460999 -29.68833527 3.745384859e-20) (96.42712688 -29.7057277 -1.642386266e-20) (94.82764043 -29.61617939 -1.141155025e-20) (95.45921942 -29.63594701 1.550583985e-19) (98.85918633 -30.01683776 3.969439065e-20) (98.46740002 -29.2186663 -9.98535773e-20) (96.71834573 -29.32045717 0) (96.64082042 -29.11237101 0) (96.63359523 -29.60178628 -2.114497213e-21) (96.72488345 -29.46786269 -2.129378784e-19) (98.66495109 -29.43125739 2.22939056e-19) (141.5781837 41.06703659 0) (143.4249107 42.8652516 -1.382371993e-18) (144.8889828 41.39239354 0) (139.9129364 45.75474855 0) (141.7429617 44.35508109 2.695821342e-19) (139.9671607 42.42958419 0) (146.1423116 39.67987136 4.237658813e-19) (147.1349402 37.98760362 4.686667417e-18) (145.4671557 36.87462399 0) (134.415699 46.10878036 0) (135.7520845 48.43020278 -2.202636821e-19) (137.9352555 47.09017519 3.221847094e-20) (130.8867101 50.48898679 4.516776438e-19) (133.3928748 49.57097251 4.734531564e-19) (132.3289973 47.08590368 0) (136.2650158 55.96690745 -2.57220892e-19) (134.812138 52.46307057 -2.463321214e-19) (132.0054871 53.39283953 -4.396389387e-19) (147.6226439 3.504006711 -4.489728599e-18) (148.1958719 3.356017919 4.666218483e-18) (148.0493328 2.548636459 5.491786198e-19) (148.9641594 8.550981308 -2.455974832e-18) (148.8428483 7.639821887 1.269834685e-18) (148.1611134 7.733014667 1.75987765e-18) (137.5006854 -17.3470772 -2.651822711e-18) (137.9586257 -16.95207678 4.205156778e-18) (137.8520177 -17.364275 -3.884174475e-18) (137.683835 -15.99054961 8.56927644e-19) (137.8560551 -16.44531323 4.483473654e-19) (137.4181075 -16.8317784 8.831759711e-19) (140.3885226 -13.85316738 -9.11716795e-19) (139.9836481 -14.28990232 0) (139.7518833 -13.83569778 -4.507850715e-19) (124.8871456 -25.75347684 -3.083144347e-19) (125.243639 -25.61379064 -8.052524349e-22) (124.8447755 -25.98724272 0) (125.4826532 -24.88611174 -3.042213796e-19) (125.4075068 -25.24039549 9.139489201e-19) (125.0439555 -25.37180127 -3.031452471e-19) (126.094512 -24.95653816 -6.275517702e-19) (125.7525122 -25.09192914 0) (125.8447125 -24.70972398 0) (128.3616053 -23.65351601 3.347035146e-19) (128.2033831 -24.04605857 -1.041324783e-18) (127.862152 -24.20843542 3.423765012e-19) (128.8673447 -23.70476423 -3.591527895e-19) (128.5353471 -23.88936671 -3.48169415e-19) (128.7220214 -23.47936991 4.006476794e-21) (126.9039652 -24.29752798 0) (126.7793105 -24.67682583 0) (126.4311248 -24.81334163 7.059059741e-19) (127.5051589 -24.37587614 -4.757188859e-21) (127.1390816 -24.5326342 3.403495911e-19) (127.2678468 -24.14982604 6.531117922e-19) (125.8491672 -25.15013131 3.641566841e-18) (126.814327 -24.92682422 -4.160354e-18) (127.1695274 -24.76298943 1.630928311e-18) (110.8850438 -30.26492314 0) (111.0040109 -30.23128968 -3.113896044e-21) (108.3475147 -30.0361211 -4.047784055e-19) (112.815898 -29.66430314 1.875279352e-19) (112.2412339 -29.9996902 -5.609220629e-19) (111.9605985 -29.99372182 5.497723872e-19) (112.6440484 -29.94950178 0) (112.4735839 -29.97080621 0) (113.1274448 -29.65976609 -1.873064893e-19) (92.91770197 -8.973384446 -5.619552934e-20) (92.66652541 -9.010122433 0) (92.63781833 -8.95425485 5.86724866e-20) (92.71443107 -9.123175672 -5.59684669e-19) (92.69203273 -9.069165519 0) (92.95384051 -9.0354828 -5.54766746e-20) (91.78560063 -9.127110837 -3.169690173e-20) (92.3265747 -9.100421491 0) (92.31567044 -9.147379777 4.598930227e-19) (92.21836231 -8.771502129 0) (92.24420109 -8.814112043 4.857146165e-19) (91.77848295 -8.813231121 -1.078644452e-18) (92.77311509 -8.757900487 -1.127991773e-19) (92.55003842 -8.792188288 1.155920644e-19) (92.51738398 -8.746275312 0) (92.60842576 -8.896116178 2.931320753e-19) (92.57963957 -8.843620196 4.083914046e-19) (92.80919647 -8.814420146 -5.694540711e-20) (84.06046117 -8.37706689 1.847800022e-19) (84.42328951 -8.177260957 1.808162681e-19) (84.42746774 -8.548103932 1.867020559e-19) (84.23254314 -7.346249201 -7.37675295e-19) (84.35084012 -7.778585052 3.622482057e-19) (83.94933765 -7.915933683 0) (85.02875722 -7.472933055 3.461299836e-19) (84.71024863 -7.629665048 -5.305582875e-19) (84.60760304 -7.247391594 1.803027417e-19) (82.40071505 -7.613454888 5.136207e-20) (82.44999971 -8.229861605 -3.994158684e-19) (81.84737839 -8.278315006 -1.064993328e-19) (83.50034292 -8.03948838 -7.50989651e-19) (83.001651 -8.147560704 0) (82.91117996 -7.573322976 -1.962711049e-19) (83.24984581 -9.298440703 1.163429269e-20) (83.16072449 -8.747089112 -1.159365905e-20) (83.64387368 -8.572015456 5.104385669e-21) (86.31897826 -6.395982776 -1.506369961e-19) (86.30980649 -6.562921054 1.238198732e-18) (86.14837295 -6.696138404 -4.88533649e-19) (86.57165045 -6.312736524 0) (86.44988284 -6.433700657 4.554230903e-19) (86.4689449 -6.281221312 -5.86468451e-19) (85.53178845 -6.896842159 0) (85.55609741 -7.141227141 -8.563412578e-20) (85.30879517 -7.309472327 -8.718650071e-20) (85.96876404 -6.830917678 0) (85.77403973 -6.978851061 0) (85.7636548 -6.767118305 0) (78.841221 -9.078265311 6.100940436e-20) (79.72227067 -9.09746575 -6.1471904e-20) (79.77420951 -10.04524371 -2.478271192e-19) (79.91143076 -7.453254849 -4.899949091e-19) (79.75801596 -8.227130725 2.415197699e-19) (78.93961235 -8.139671049 0) (81.20421373 -8.2959053 -3.331069574e-19) (80.51315032 -8.280907243 1.161226921e-19) (80.60795892 -7.614419919 -1.171269787e-19) (147.1498753 18.28910318 0) (148.3484162 18.57865969 -1.162627663e-18) (148.5832687 17.53074938 -1.735032518e-18) (146.0842838 25.24233581 0) (146.6099195 24.13223119 0) (145.3396432 23.57063446 -8.151787187e-19) (149.2686098 25.14579092 2.871750434e-19) (148.0154994 24.65714583 -5.547786186e-19) (147.4865153 25.82068879 1.14250366e-18) (148.8068978 22.27796982 1.999528558e-18) (148.4634573 23.47284537 -8.351317069e-19) (149.6390209 23.85360149 -2.822481379e-19) (87.92085702 -5.226061718 1.156854639e-18) (87.76223201 -5.253366533 -1.321012153e-18) (87.74340131 -5.255073128 -1.286514975e-18) (87.69217245 -5.249120606 -2.255523639e-18) (87.72674245 -5.240176511 2.498858302e-18) (87.92947944 -5.224737299 0) (87.79414808 -5.233877336 8.010898417e-20) (87.64546588 -5.265325887 0) (87.61387914 -5.269517898 8.483620262e-20) (87.71595862 -5.260671153 1.000064556e-22) (87.68039737 -5.26331472 3.445655225e-19) (87.83105215 -5.230587439 -3.220957272e-19) (88.01707686 -5.401147699 0) (87.69489713 -5.40962252 -4.769630305e-19) (87.68814338 -5.368691318 -7.879053324e-19) (87.72025675 -5.52316891 3.20780413e-19) (87.70441785 -5.46082591 6.405024283e-19) (88.03912826 -5.44803985 0) (87.94416442 -5.275438445 8.989946429e-21) (87.66738328 -5.292014757 -1.616285339e-19) (87.66877917 -5.27165119 4.499651168e-19) (87.68214796 -5.336481653 -1.571215729e-19) (87.67507161 -5.311671277 0) (87.96188905 -5.299507283 0) (87.20434131 -5.64746866 5.942714583e-19) (87.12902686 -5.723900866 -9.323520812e-19) (87.05729799 -5.805697425 -9.256711167e-19) (87.2561735 -5.579488602 6.28617452e-19) (87.19532425 -5.649727359 -3.1098304e-19) (87.27687005 -5.580747264 -2.979858099e-19) (86.83590842 -5.976140599 0) (86.78618086 -6.096661741 0) (86.68176562 -6.20134123 0) (86.97680639 -5.896862945 3.073148535e-19) (86.88568505 -5.995019994 9.122291638e-19) (86.94101142 -5.885651225 -4.372035451e-19) (87.64313388 -5.290170254 0) (87.51719979 -5.328096527 2.03109892e-22) (87.47442938 -5.357592319 -8.185424832e-20) (87.58508497 -5.279920962 -6.714703967e-19) (87.55441197 -5.300200452 -6.65151666e-19) (87.68483314 -5.267561469 -7.84423136e-20) (87.45551083 -5.415718212 1.519970284e-19) (87.35126335 -5.46076956 -3.206409277e-19) (87.30821403 -5.51460529 -3.180210336e-19) (87.43109311 -5.386738788 0) (87.39046771 -5.419351792 6.455848202e-19) (87.50407526 -5.376328187 -1.533214656e-19) (143.7755339 -7.866614194 0) (144.1299248 -8.228679876 2.866815636e-19) (143.7956753 -8.862647753 -2.791204047e-19) (146.0523879 -4.316268941 8.62619747e-18) (145.698023 -4.982686838 -2.829500161e-19) (145.2859307 -4.672312515 0) (88.1504315 -5.619083798 6.150569796e-19) (87.79936781 -5.667903178 -6.505151686e-19) (87.74968314 -5.59594937 1.623671605e-19) (87.93204014 -5.771715956 -1.640683701e-19) (87.86449857 -5.725813089 -6.559884854e-19) (88.20776186 -5.671519204 1.540907711e-19) (131.1683694 -22.13056092 -7.575126796e-19) (130.6024222 -22.43864018 0) (130.3636083 -22.65578511 7.391033807e-19) (131.2852959 -22.0234671 1.524933957e-18) (130.9249502 -22.2393948 -1.467662908e-18) (131.5320806 -21.92993379 -7.963414433e-19) (129.8191059 -22.91086269 1.844909147e-19) (129.5765313 -23.30482615 -3.843607945e-19) (129.2160858 -23.50987054 7.46105745e-19) (130.152822 -22.8471625 2.070832486e-18) (129.9043967 -23.07698595 1.945671963e-19) (130.1749777 -22.70459927 -1.827780786e-19) (90.62814206 -6.687390077 -2.680970571e-19) (90.39870635 -6.704641146 6.962092418e-20) (90.37926115 -6.66076889 -7.025245655e-20) (90.40184835 -6.930001629 1.277986496e-19) (90.43067723 -6.890074362 1.314713067e-19) (90.70725133 -6.879836221 -3.829338324e-19) (89.57603808 -6.285256088 0) (89.98570844 -6.266417947 1.310073884e-19) (89.98113232 -6.290306171 5.996148421e-23) (89.9939099 -6.239086532 0) (89.99512988 -6.249756389 9.439411803e-19) (89.64119367 -6.267734016 -1.191957781e-18) (90.35869488 -6.205296014 3.878240157e-19) (90.20634333 -6.229988867 -1.307972743e-19) (90.18958125 -6.212913762 -6.701679663e-20) (90.3001598 -6.355221146 -1.292903162e-19) (90.28547404 -6.335148818 2.075733956e-22) (90.46436472 -6.31759319 -1.25370368e-19) (89.5387824 -6.334496021 5.619513246e-19) (90.01771456 -6.342659615 0) (90.0266817 -6.359575337 0) (89.98983683 -6.311101906 -2.606836977e-19) (90.00479766 -6.327250774 -2.6302429e-19) (89.53473436 -6.327942146 2.77348727e-19) (120.68461 -27.68538038 -5.702390452e-19) (120.4160372 -27.79346092 -5.512648206e-19) (120.997172 -27.45286875 2.714785425e-19) (121.8812741 -27.17927445 -1.408745557e-18) (120.9498941 -27.41689106 5.723221688e-19) (120.8855254 -27.54243724 0) (105.0756903 -30.57501499 2.346169141e-19) (105.1291906 -30.66559874 7.489349483e-20) (106.8641933 -30.54179698 4.249345313e-19) (91.07070722 -8.137889091 1.357858029e-19) (90.32350152 -8.135004014 5.633610036e-19) (90.28976664 -8.061498462 1.109513058e-18) (90.92721611 -7.339932065 -3.320687832e-19) (90.56063854 -7.343962899 1.391361156e-19) (90.54565048 -7.312538124 -1.372261742e-19) (90.5682057 -7.625584349 0) (90.57958152 -7.56220806 3.689079882e-20) (90.98949466 -7.559882755 6.915841392e-20) (93.47132836 -9.717834463 0) (93.11530004 -9.787691999 5.525181176e-20) (93.05567283 -9.719332642 -5.594770656e-20) (93.06277241 -9.877039612 1.866209215e-19) (93.1207735 -9.798838053 1.671431122e-18) (93.49490857 -9.761403979 -1.615303903e-18) (82.46141226 -24.36363644 0) (81.69832707 -24.53576622 0) (75.00598456 -23.27570935 0) (89.96810896 -25.65128387 0) (86.65493231 -25.31210091 1.860164441e-20) (87.04485708 -24.97682641 3.511004887e-20) (82.11725601 -26.21763033 0) (83.09558416 -26.29545184 1.392503018e-20) (88.49073084 -27.17050134 1.439719306e-21) (116.5942106 16.1397357 -6.861245159e-20) (113.0280239 17.12724539 -1.248542521e-19) (111.5766916 21.22364552 -3.724582184e-19) (112.1744702 12.25630692 0) (112.6744035 14.44995057 5.88999206e-20) (115.1060534 14.11607062 3.133126896e-19) (108.598488 13.75652802 -8.359299474e-20) (110.4903503 14.26592808 0) (110.3453064 12.26725055 -8.513979314e-20) (109.123662 -16.91952529 -1.836596488e-19) (110.7429032 -17.06996929 1.05401098e-19) (111.504787 -19.4550401 -4.092347332e-19) (109.9239959 -13.85692637 0) (110.4076957 -15.34605881 0) (108.951757 -15.29315359 3.541837495e-19) (113.4772314 -14.95539145 1.329459019e-19) (111.9247422 -15.23625133 0) (111.2668401 -13.69150866 -2.139716738e-19) (104.1691989 -30.19295067 -2.584425596e-20) (103.8764791 -30.05798695 2.010000642e-19) (104.5445962 -29.70349338 -6.100748162e-21) (100.8761163 -30.39175941 -2.007633793e-19) (102.8265773 -30.31743846 -3.044598103e-19) (102.9974431 -30.4197009 4.95723116e-20) (102.4107432 -30.03511099 6.754597914e-20) (102.627783 -30.1778589 -2.348300889e-19) (100.9444392 -30.29078621 -9.113472547e-20) (115.3411097 -24.76498887 5.826990205e-19) (115.4476131 -23.10961125 -1.327235587e-20) (116.693802 -22.99840546 -1.454292479e-19) (112.9924574 -23.05196962 -9.113099647e-19) (114.214315 -23.114514 3.697797065e-19) (114.3053762 -24.41977673 -5.63423629e-19) (53.39194397 36.73105907 -4.754647312e-18) (46.62877999 35.20230887 5.473074645e-18) (47.75758021 47.25352284 -2.92579961e-18) (52.36099956 20.3107525 0) (49.00761209 26.4536209 0) (54.19492529 29.44524881 -5.48879113e-18) (38.66311069 13.75893444 0) (44.14086882 21.27136832 0) (48.5924714 16.05878837 0) (92.24912692 77.57561668 0) (78.50019195 83.94884821 0) (88.67364047 88.3473732 0) (77.41725836 63.54783084 0) (78.64386776 71.30686783 0) (87.9392186 69.90478472 0) (54.84770166 59.86452172 1.329592447e-18) (65.69880367 68.73514578 -1.419181928e-19) (68.77944543 60.75461807 5.603858414e-19) (109.0105201 32.75108165 -3.339031026e-19) (111.054247 29.54278463 -1.09067866e-19) (108.4004387 27.75144263 1.716887231e-19) (119.3927954 30.64161735 0) (114.466387 30.85136901 -7.01196857e-20) (111.0909782 35.48643222 7.986011415e-19) (139.9597753 34.48690195 2.571252041e-19) (140.9531676 33.44308982 5.119346538e-19) (139.6229858 32.27766867 0) (143.6935522 35.63107159 5.209962003e-19) (142.1098024 34.52018726 -5.301551697e-19) (141.0779731 35.72935689 -2.51356247e-19) (144.047633 31.99744074 0) (143.1016982 33.24919332 1.068173926e-18) (144.7354308 34.29039074 -1.050009109e-18) (89.54754036 -5.467432632 0) (89.65243336 -5.521996408 8.349241452e-20) (89.4959303 -5.632784038 2.160577097e-20) (89.91130031 -5.31141482 1.558452118e-19) (89.78871052 -5.41524365 -5.049635917e-22) (89.68734615 -5.359423624 -1.624927846e-19) (89.98548528 -5.518204128 -1.595225092e-19) (89.88837617 -5.468172502 -8.067615047e-20) (90.00851522 -5.36671658 -2.322232815e-19) (89.51254496 -5.070631885 0) (89.38225254 -5.176100689 2.465765331e-19) (89.28265721 -5.112546235 -8.202910902e-20) (89.5852692 -5.300583376 1.621054666e-19) (89.4833216 -5.239280069 4.147055256e-22) (89.61250989 -5.133623905 7.904048189e-20) (89.16765788 -5.456069309 -4.384065316e-20) (89.33735983 -5.346642344 -8.44759089e-20) (89.44209444 -5.408801721 0) (111.4620657 -29.62154108 0) (111.0809042 -29.92749438 -8.382304357e-20) (110.7522389 -29.88729877 8.422160347e-20) (111.6755707 -29.97702469 -3.57076366e-19) (111.3815455 -29.94073661 0) (111.813004 -29.6074005 0) (109.0643325 -30.36915623 8.922799863e-20) (110.6353578 -30.23662471 4.568778293e-21) (110.7685205 -30.24158679 -8.715560819e-20) (116.6086101 -27.64878419 -6.795703901e-20) (116.7654753 -26.8729794 -5.852266038e-19) (117.472846 -26.82130001 -1.0211593e-18) (115.3484049 -26.92862605 -6.135027746e-20) (116.0571725 -26.90955613 -4.427042585e-19) (115.9026369 -27.66834756 5.093919559e-19) (92.61738837 -8.560689261 0) (92.4070987 -8.600325266 0) (92.37159271 -8.550860253 -1.132152943e-19) (92.48155785 -8.698383999 0) (92.44404564 -8.651325343 0) (92.65662399 -8.615476441 5.580377376e-20) (91.69293892 -8.702847312 3.683799525e-19) (92.15028965 -8.683611689 1.178863397e-19) (92.1859239 -8.729512564 -4.75373052e-19) (147.321704 30.35469194 0) (145.6842684 29.50611325 -2.749704713e-19) (144.9172002 30.75352144 0) (146.9341556 27.02029906 0) (146.3474136 28.25139277 -8.659043314e-19) (147.9058148 28.99494696 1.147139146e-18) (143.6486762 26.92771943 -6.636127306e-19) (144.9266211 27.55956437 0) (145.5266758 26.40670519 0) (90.28489864 -5.519922374 0) (90.16973427 -5.612002023 -2.388568457e-19) (90.07940369 -5.566017566 1.59347074e-19) (90.33909011 -5.701441057 2.367439113e-19) (90.25626031 -5.656989015 0) (90.37098247 -5.56860274 0) (89.98177165 -5.834313693 1.901988753e-19) (90.12931499 -5.745350757 1.636430347e-19) (90.21165678 -5.785803108 -4.097682359e-19) (89.66767147 -5.920220785 -2.590253164e-19) (89.62418714 -5.908893775 2.583405981e-19) (89.73556195 -5.863312383 -2.562995123e-19) (89.28017872 -6.000380678 0) (89.48185754 -5.956753181 0) (89.52358963 -5.964700021 3.986236888e-19) (89.39052709 -5.935666366 -2.640645486e-19) (89.43650226 -5.947884199 0) (89.23656775 -5.998335448 3.384062259e-19) (89.12591954 -5.961935028 -1.405074653e-19) (89.300953 -5.905638598 -2.722463876e-19) (89.34611196 -5.920641635 4.009267162e-19) (89.19881126 -5.869983397 4.261190611e-19) (89.25174237 -5.889537805 -5.289257769e-22) (89.08668084 -5.950365541 7.341094947e-20) (89.49047549 -5.773151178 -1.303998822e-19) (89.38228583 -5.831218781 4.856752074e-22) (89.32808849 -5.812038659 -1.343036621e-19) (92.02012535 -8.382678805 0) (92.02936078 -8.424165677 -4.615956132e-19) (91.64197549 -8.436591379 4.678101744e-19) (92.47401829 -8.363365032 -2.799163178e-20) (92.28446312 -8.398487335 2.817059258e-20) (92.25855032 -8.355473562 -1.139941669e-19) (92.33873171 -8.498404558 1.683270143e-19) (92.30985102 -8.448271852 0) (92.50729944 -8.415695377 1.388313305e-20) (108.972015 -30.04221191 -2.609102539e-19) (109.2993228 -30.09953726 -3.912991682e-20) (108.5856347 -30.40188557 0) (110.0477048 -29.43173823 0) (109.7478454 -29.755615 0) (109.3710861 -29.71218522 0) (110.4223374 -29.85256801 0) (110.0803843 -29.79993095 0) (110.4150429 -29.44108197 0) (116.0590789 -29.19256941 0) (116.5155939 -28.854235 0) (116.8414576 -28.80360498 0) (115.8318471 -28.91591973 0) (116.1765825 -28.89268733 0) (115.7488664 -29.23974738 0) (116.599009 -28.20948359 5.379726258e-20) (116.4378823 -28.53025633 0) (116.0555494 -28.56244218 0) (132.4646193 25.89869087 -2.590366231e-19) (133.9388699 27.57146519 -9.386704402e-19) (135.5050661 26.07913589 2.562573201e-19) (135.512878 33.13029753 0) (133.7281087 30.91957146 0) (131.619584 32.34247646 0) (118.4659729 -28.26654658 -1.167726332e-19) (118.1420096 -28.31921501 2.373457456e-19) (118.3660223 -27.96688892 -2.377873839e-19) (116.9384374 -28.94877692 2.523056782e-19) (117.7704644 -28.65920175 1.225406421e-19) (118.0390969 -28.58200625 -5.100940128e-19) (117.1539647 -28.75703561 -1.180357967e-19) (117.4673762 -28.71477735 -1.187379483e-19) (116.7467315 -29.02416136 -3.710445956e-19) (107.5976129 40.16465259 -8.098549672e-19) (110.3501012 42.22848307 1.836902702e-18) (112.1811876 39.31641749 4.431182288e-19) (104.5459524 49.03869798 0) (107.9860685 45.49543006 -9.524601023e-19) (105.028035 42.67225116 1.064317611e-18) (116.2284515 49.51873617 0) (111.7427091 47.87335127 1.482193171e-18) (108.8615684 52.46081192 -9.645976848e-19) (124.0329708 -25.36670751 1.417258066e-19) (123.9708408 -25.72209144 2.896524498e-19) (123.611886 -25.82285982 5.653847684e-19) (124.6844372 -25.50025167 -2.973627499e-19) (124.3220328 -25.60820816 9.654247447e-22) (124.3970332 -25.21418788 -5.797790998e-19) (123.8931379 -26.35147069 9.016748878e-19) (124.179505 -25.98034608 -2.932425859e-19) (124.5294956 -25.87179349 0) (76.72531236 -6.388683293 4.159259524e-19) (76.17034664 -7.36595833 0) (75.1886602 -6.900613929 2.877110249e-19) (78.05725878 -7.967784846 4.593743436e-21) (77.12635378 -7.730882022 -2.628844164e-19) (77.54476323 -6.866442519 1.289666341e-19) (76.57418576 -9.98126543 0) (76.86722288 -8.77682618 0) (77.88488069 -8.983845745 0) (89.41174907 -6.033586931 2.824675133e-19) (89.63374215 -5.999548005 1.35586155e-19) (89.66970623 -6.012600866 0) (89.56158629 -5.974437431 -2.67346773e-19) (89.59778715 -5.986363548 4.041109552e-19) (89.37953207 -6.0205319 2.802440151e-19) (89.86247523 -5.904270276 1.291875253e-19) (89.74749795 -5.946666855 -1.306260312e-19) (89.70847109 -5.93348643 3.906825619e-19) (89.95533876 -6.032254017 1.343013075e-19) (89.92549033 -6.018035997 -5.336753041e-19) (90.04617307 -5.986879364 1.303981873e-19) (89.53858502 -6.068135831 2.906012622e-19) (89.76787767 -6.046365994 2.779982875e-19) (89.79438865 -6.058251791 -1.403726475e-19) (89.70485986 -6.024627683 0) (89.73792518 -6.035585069 -1.38021218e-19) (89.51156541 -6.062215855 0) (88.67839079 -5.770926135 -3.004914184e-19) (88.84573957 -5.710731152 2.849692282e-19) (88.9053324 -5.742611574 2.863550426e-19) (88.72851404 -5.640052315 -2.834492225e-19) (88.78667894 -5.676452705 1.417525024e-19) (88.61754476 -5.736464183 0) (89.04123529 -5.556577366 1.314252446e-19) (88.92400544 -5.616677449 -1.346274572e-19) (88.86734289 -5.582014461 1.348381051e-19) (89.27204594 -5.789483654 -1.016647193e-19) (89.21456146 -5.766443902 6.769722837e-20) (89.32465852 -5.709313822 4.733780888e-22) (88.92259818 -5.884466223 -7.685459226e-20) (89.08434288 -5.825482432 7.184366585e-20) (89.14272865 -5.848868322 -3.605167314e-20) (88.96519694 -5.772406383 -2.872735738e-19) (89.02496142 -5.799959679 0) (88.86209587 -5.859316313 3.824170872e-19) (133.6311791 -19.5688214 3.818782703e-19) (133.2346379 -19.80742264 0) (133.1544461 -19.36704165 -4.555696564e-21) (133.1863478 -20.68353997 3.870344968e-19) (133.2589712 -20.22590795 3.789374902e-19) (133.6527404 -19.99276406 0) (132.4902781 -20.67208666 -4.177792977e-19) (132.8721289 -20.44910351 -7.524407448e-19) (132.8168338 -20.87760035 7.543706333e-19) (92.32716992 -8.185564643 -1.947726311e-22) (92.15944705 -8.227461428 1.167446977e-19) (92.11991534 -8.18478521 -2.344816467e-19) (92.22922663 -8.312197679 5.754897633e-20) (92.19614799 -8.271103625 -5.831300284e-20) (92.36668406 -8.234336404 8.481304482e-20) (91.67935943 -8.333768792 0) (91.97877925 -8.305004718 2.432448204e-22) (92.00296386 -8.344920782 6.004315762e-20) (91.75334613 -8.026886392 0) (91.79011878 -8.079738264 -1.833068357e-19) (91.50486966 -8.113895356 7.620830763e-19) (92.16112959 -7.998666659 5.684643708e-20) (91.99695496 -8.040743456 0) (91.9582913 -7.990892781 -1.161228548e-19) (92.07884699 -8.138150749 1.169977842e-19) (92.03741279 -8.091608796 5.82558447e-20) (92.20202202 -8.051673381 -1.71137032e-19) (87.33309731 -24.59592765 1.076112086e-19) (87.57042387 -24.19625203 2.044584612e-19) (90.05913216 -24.34288722 -1.407636392e-19) (77.84224789 -22.76405191 -1.666579737e-20) (83.59805702 -23.71696635 -2.240072809e-19) (83.13865626 -24.03520231 4.187542705e-22) (84.19642751 -22.88911307 5.568800789e-19) (84.07645145 -23.34926782 -1.309883236e-19) (78.63800181 -22.55888476 -2.599510987e-19) (94.39819606 -28.1637595 0) (94.39945262 -28.43033311 0) (91.2513431 -28.21936418 1.773480078e-20) (97.46093134 -28.15613659 0) (96.27789934 -28.36498537 0) (96.08521699 -28.05924047 4.210125139e-20) (96.54149819 -28.88506372 0) (96.42115902 -28.62423651 -1.22652043e-19) (97.72436145 -28.40484675 6.357238667e-20) (100.8887575 57.35915215 0) (103.7144395 60.34798157 -1.778628999e-18) (106.7184968 57.48274902 4.244134686e-19) (94.60665844 66.77893127 1.80514422e-18) (99.93766823 63.47140135 0) (96.93602497 59.65431579 0) (109.4655825 70.8525312 0) (104.0801945 67.35580979 0) (99.54457736 71.93247101 0) (93.12156942 -9.833223029 -3.577236293e-18) (92.57802645 -9.48282776 3.731644591e-18) (92.86984856 -9.808291211 -1.805118393e-19) (92.04945739 -10.50459174 -5.943536297e-20) (92.10374774 -9.995535651 0) (92.89766391 -10.00644016 -1.121315626e-19) (79.6693538 -8.987228769 -8.079285558e-18) (89.43559725 -9.579724574 -1.338869651e-20) (89.77264188 -10.52536546 7.979021561e-19) (31.11447991 -9.912382312 0) (21.94912218 -8.836235175 0) (43.77142845 -4.085255849 1.445966185e-17) (64.85042891 -17.81816916 0) (49.96856653 -15.97177556 0) (54.12518766 -15.47162107 0) (57.17774623 -18.05456387 -2.172537385e-18) (50.77973707 -17.01703465 0) (66.88221901 -19.50897208 2.698946334e-18) (99.97782513 0.1426326656 3.603407795e-21) (99.97245187 0.1815597567 -8.793212695e-21) (99.99727067 0.0614240874 1.756532779e-21) (99.96601069 0.2300002547 3.492670265e-21) (99.9561695 0.2854994969 0) (99.99674121 0.09587151393 0) (99.94795313 0.3479490094 0) (99.94035221 0.4214276766 -4.524735997e-21) (99.99579801 0.1415886086 4.781891886e-21) (99.93310634 0.5048777041 5.345445729e-21) (99.92697385 0.5972084774 -2.835298982e-21) (99.99487802 0.2000413834 0) (99.92298045 0.6963004696 5.446426645e-21) (99.92218173 0.7988764859 2.354596719e-21) (99.99454138 0.2666972541 2.374641268e-24) (99.92553255 0.9001682142 -3.757037254e-21) (99.93373904 0.9942747938 1.167177373e-21) (99.99535401 0.3308505099 3.557219983e-21) (99.94694623 1.074704672 -1.539519176e-21) (99.96459082 1.135028618 0) (99.99752846 0.3767846124 0) (99.98551144 1.170091502 2.633900859e-22) (100.0062406 1.176130123 0) (100.0007037 0.3900837324 0) (100.026985 1.153251384 -1.206271087e-21) (100.0447798 1.104812165 -7.904572676e-22) (100.0033856 0.3667151234 7.805675425e-22) (100.0582211 1.035827167 4.195694584e-22) (100.0671312 0.9522332105 7.680624416e-22) (100.0049108 0.3166828764 -7.665936696e-22) (100.0716621 0.8601015232 2.862402565e-21) (100.0724085 0.7647589035 -1.788477016e-21) (100.0052113 0.2549414117 0) (100.070199 0.6707220207 0) (100.0659631 0.5814587276 2.690254459e-21) (100.004676 0.194216325 0) (100.0593681 0.4997110193 1.403743107e-21) (100.0480966 0.4228183128 0) (100.0047771 0.1413224033 -8.92421591e-21) (100.0415818 0.3521160205 0) (100.0352354 0.2914366726 0) (100.0034994 0.09829288269 0) (99.9194476 0.1810522763 -7.406347869e-21) (99.89748792 0.2385510961 -7.302485394e-21) (99.94888466 0.1797783155 3.637314403e-21) (99.87222243 0.3083610102 -7.299463583e-21) (99.84283864 0.3941698145 7.222857008e-21) (99.92056712 0.2938796211 -3.734972308e-23) (99.80926771 0.4965790858 0) (99.73657149 0.6979324826 0) (99.91071264 0.4407486257 6.377394428e-21) (99.84049466 0.5908781196 -1.274399262e-20) (99.84026401 0.6519585739 3.328587183e-21) (99.89477403 0.5373360638 -1.950519519e-22) (99.78965689 0.870558375 -1.752618574e-20) (99.79651731 0.9501350442 1.118447432e-20) (99.86732042 0.7796259104 1.774548198e-22) (99.7515758 1.221797114 1.014015205e-20) (99.77056451 1.314955874 0) (99.85273129 1.074467965 -2.415213027e-21) (99.74851913 1.610891405 8.205506827e-21) (99.78542527 1.703071508 0) (99.86690913 1.385981783 -1.859488514e-21) (99.80412593 1.960902071 1.003995799e-20) (99.861031 2.026593306 -1.004104607e-20) (99.92128723 1.646375973 2.471083103e-21) (99.91862371 2.165892819 8.766059376e-21) (99.98537438 2.184149684 6.71874521e-22) (100.0083566 1.774649528 0) (100.05211 2.159945093 -1.63782998e-21) (100.1162629 2.127400422 4.714524721e-21) (100.0966343 1.731686614 -2.039999209e-21) (100.1575336 1.955334146 5.447170798e-22) (100.2066582 1.883465977 7.946434993e-21) (100.1565955 1.536914429 4.879832804e-21) (100.2074653 1.625872925 3.479106445e-21) (100.2384625 1.53828689 -1.146861154e-20) (100.1762681 1.260919818 -3.652600184e-21) (100.2085926 1.265877978 4.720359388e-21) (100.2250424 1.181668496 -4.719469131e-21) (100.1649494 0.9731716702 4.680034929e-21) (100.3538014 1.257734693 0) (100.2761053 0.9475901745 0) (100.1389518 0.6884449862 0) (100.2405878 0.7920702391 5.157768165e-20) (100.2058 0.6529450722 -2.65161506e-20) (100.1027072 0.4783332382 -2.711518855e-20) (100.1740746 0.5341660267 -8.126766921e-20) (100.1444927 0.432345442 6.129339074e-20) (100.0678781 0.3253452785 -3.388211858e-21) (99.80180673 0.2348898948 -1.039847127e-19) (99.75232383 0.3171616129 1.180574038e-19) (99.83104257 0.2857509497 0) (99.69317463 0.4170873771 5.865534029e-20) (99.62362717 0.5406003609 -5.949278914e-20) (99.74291546 0.4780122192 2.182216039e-20) (99.54264694 0.6931924464 -5.94645119e-20) (99.3825258 0.9570264574 0) (99.66004249 0.77444867 0) (99.53947622 0.9414064546 1.333634565e-20) (99.50334098 1.048686666 0) (99.60282496 0.9593804608 -1.280544427e-20) (99.38891995 1.425092745 -1.23175954e-20) (99.35424574 1.569850328 -1.229171539e-20) (99.48642678 1.424893971 5.905117458e-21) (99.26412977 2.056858323 -4.467479454e-20) (99.2471565 2.23405958 -2.182300336e-20) (99.40561091 2.011603971 0) (99.24698789 2.779463083 -2.17491196e-19) (99.27141673 2.961481301 1.418806828e-19) (99.42833837 2.648344183 6.280699616e-20) (99.41374873 3.467619313 -3.200362714e-21) (99.49114146 3.610519516 2.460884164e-22) (99.60665187 3.199223092 8.03233292e-20) (99.78052773 3.905198774 2.451676984e-21) (99.89456179 3.948591409 -4.543824895e-21) (99.92074708 3.481294149 1.471863437e-21) (100.2241908 3.90031235 -1.446528074e-20) (100.3259978 3.826668035 0) (100.2548306 3.378479652 0) (100.5561112 3.47397655 -2.553890744e-21) (100.6113725 3.324228198 0) (100.4802718 2.953848329 1.828566327e-20) (100.6977226 2.831064643 8.269143341e-21) (100.7085627 2.661696077 -2.100433901e-20) (100.5606324 2.382640134 8.429143645e-21) (100.6820136 2.159397993 0) (100.662746 1.999898141 -1.03358677e-20) (100.5261506 1.800444671 2.054536882e-20) (100.8624363 1.834446597 9.148459694e-20) (100.6837482 1.404116225 0) (100.4573335 1.188221045 1.019467775e-19) (100.5948597 1.160220715 0) (100.5105257 0.9490161428 2.776021239e-20) (100.3426085 0.811871749 8.064097738e-20) (100.4333132 0.7686746954 -2.084134898e-20) (100.3641775 0.6142872408 7.031628184e-21) (100.2424106 0.5419252091 -1.39598551e-20) (99.6558392 0.2318130568 2.669232562e-20) (99.56939069 0.327646723 -3.047954362e-20) (99.66381032 0.3321915652 0) (99.46419068 0.4418100419 0) (99.34028829 0.5849031261 -6.011556569e-20) (99.4885258 0.5768793623 1.78371273e-19) (99.19501012 0.7671287731 0) (98.91303234 1.06458258 -2.273214963e-19) (99.27456061 1.001979381 0) (99.08436037 1.168195494 4.242770312e-20) (99.005597 1.313928514 1.385168935e-20) (99.14420507 1.263645667 -1.386513715e-20) (98.75455638 1.837954107 -5.55434104e-20) (98.67195556 2.042957729 1.077020722e-19) (98.86474735 1.945269494 0) (98.46171325 2.741629786 2.098562045e-19) (98.40760657 3.007112742 0) (98.6522765 2.833625679 -1.963785091e-19) (98.33477276 3.892444183 1.614509141e-21) (98.35516635 4.208644245 -1.165730911e-20) (98.63480975 3.89975294 1.528848696e-19) (98.60965347 5.144119056 -2.523910638e-19) (98.76876061 5.423952949 4.226620435e-19) (98.99823511 4.940027678 -2.008320323e-19) (99.44828043 6.025367174 -1.320032416e-20) (99.72139297 6.117091062 0) (99.7780291 5.517309453 0) (100.531868 6.018782807 4.5746943e-20) (100.7680591 5.871658684 0) (100.6282744 5.313588637 -5.684112475e-20) (101.2875309 5.190493134 -9.523344391e-20) (101.3933959 4.913077021 0) (101.1525709 4.497754308 1.014316323e-19) (101.5321556 4.039456059 -1.46470444e-19) (101.5310718 3.752751324 -2.059020364e-20) (101.2852582 3.483769636 -3.479655949e-20) (101.4380377 2.949844239 -2.620830566e-19) (101.3889794 2.713261882 0) (101.1797275 2.551587716 4.059543099e-19) (101.5911362 2.259920522 -6.776945201e-21) (101.2659683 1.73601441 7.728948545e-21) (100.9556551 1.588974832 -2.059283869e-20) (101.0893861 1.406638665 -8.743499761e-20) (100.929379 1.137052867 1.400718325e-20) (100.7071742 1.05930164 1.475911378e-20) (100.7864479 0.9101393663 1.445846664e-20) (100.6631699 0.7155231431 1.488668879e-20) (100.5051728 0.6897347437 2.903350448e-20) (99.51178251 0.1601991802 -1.562620681e-20) (99.37880322 0.2508845801 2.338858422e-20) (99.47311717 0.3009635068 -3.864071826e-20) (99.21900795 0.3606590166 -3.172496295e-20) (99.02816443 0.5042853271 1.579714845e-20) (99.18449242 0.5616540827 7.879794751e-21) (98.80373252 0.6811715939 -8.133032719e-21) (98.38765611 0.9727857545 0) (98.78372974 1.062652044 0) (98.52103775 1.195773772 -2.935984353e-20) (98.38273012 1.361925853 0) (98.54681801 1.37338215 2.416483966e-21) (97.94493 1.968605254 -3.614108231e-19) (97.79154941 2.214348643 4.811910725e-19) (98.02602503 2.211518869 2.396496358e-19) (97.31650872 3.122846502 -2.469332079e-19) (97.16561701 3.489637815 3.079036361e-19) (97.51620704 3.409465004 -1.172229538e-19) (96.8190931 4.82046779 2.406119818e-19) (96.77177694 5.342985882 -2.009430024e-19) (97.24880406 5.085308984 -6.211240577e-21) (97.03075322 7.069775056 1.89674195e-19) (97.30139002 7.644723728 0) (97.77589252 7.040341803 0) (98.72810439 8.963224616 -3.738112378e-20) (99.35056419 9.165809619 -4.001643611e-20) (99.46856281 8.276328268 1.008992837e-19) (101.1841477 8.903909337 -3.014208641e-20) (101.6803675 8.572232783 -1.193588482e-19) (101.3791993 7.813966395 -5.528330415e-20) (102.645271 7.193185763 -2.08379076e-20) (102.8024336 6.678321274 1.201296176e-19) (102.3684047 6.230536888 -4.392643731e-21) (102.9130138 5.179727162 1.82775968e-19) (102.8568727 4.730217489 4.545903666e-20) (102.4690051 4.502343588 -1.66401524e-20) (102.5422714 3.551157357 1.616721871e-19) (102.4143405 3.21834566 -8.232343547e-20) (102.1277145 3.117168363 -2.622586444e-20) (102.5006713 2.426176711 3.069658994e-20) (101.9811886 1.847852314 4.763692652e-20) (101.6106085 1.826950685 -2.189980223e-20) (101.6921986 1.476915698 2.927226161e-20) (101.4296421 1.172885983 3.057480826e-20) (101.1724261 1.176782598 5.898698701e-20) (101.1987004 0.9236642391 -1.525019931e-20) (101.0042814 0.7085637015 -1.326208048e-22) (100.8302936 0.7410053708 -1.491907774e-20) (99.38834479 0.01518121251 -1.583024251e-20) (99.21262248 0.07970203225 -1.609992737e-20) (99.29021342 0.1752065451 0) (99.00051314 0.1634151036 -2.046294711e-22) (98.7433836 0.2792356028 2.47630634e-20) (98.87846997 0.4101197252 -1.440018956e-22) (98.43278728 0.4276265991 8.42538751e-21) (97.89545099 0.64051879 9.958488357e-20) (98.25744689 0.9123112245 3.201703271e-20) (97.93728548 0.9757347485 0) (97.73706543 1.12939037 0) (97.89191071 1.217185313 -6.489669764e-20) (97.0578407 1.704856698 0) (96.79375349 1.949032035 -1.421016718e-19) (97.04284812 2.058537619 1.41320367e-19) (95.88649403 2.911478811 -2.218392022e-19) (95.55014465 3.329642342 1.519123384e-19) (95.98301809 3.445214311 2.692877271e-19) (94.50457961 5.071301025 -5.890494766e-19) (94.18604402 5.864010733 5.359290645e-19) (94.93876372 5.847329896 -1.793339256e-20) (93.75003979 9.069671036 1.8966626e-20) (94.01424434 10.40760323 3.180306503e-19) (95.12996609 9.680374588 -5.850453141e-20) (97.05976322 13.90858176 5.848148546e-20) (98.66168341 14.40143601 0) (98.86302175 12.73428479 2.232392349e-20) (103.01416 13.25321883 3.518023022e-20) (103.943984 12.33171699 3.754163036e-20) (103.1505918 11.28016494 -7.328160083e-20) (105.2925738 9.321766816 2.72451893e-20) (105.3736661 8.391847829 2.460582873e-19) (104.5939508 7.994812734 0) (105.022845 6.011864704 0) (104.7997791 5.361389454 -6.708037242e-20) (104.2510544 5.259749349 2.408479198e-19) (104.0149979 3.786036837 1.305735275e-19) (103.7486595 3.368779849 -1.107392051e-19) (103.3895615 3.377738994 6.338233261e-20) (103.5250368 2.226380617 -3.297306618e-20) (102.7546032 1.656061811 1.763068449e-20) (102.3657714 1.792076383 -2.399046912e-20) (102.3330931 1.308172406 8.283763268e-21) (101.9516563 1.011436725 0) (101.6926642 1.118890597 0) (101.6185719 0.7749053753 0) (101.3351521 0.5728053718 -1.592387066e-20) (101.1733877 0.6712204662 3.950020524e-20) (99.32304434 -0.1981825318 -5.947997865e-21) (99.11130421 -0.175869144 0) (99.15152553 -0.0403734963 0) (98.85501777 -0.138801803 -1.23628457e-20) (98.54431271 -0.0788438553 0) (98.62998835 0.1145831299 1.715021171e-20) (98.16572953 0.009027129849 0) (97.55576264 0.08797596723 3.462746403e-20) (97.79187656 0.5197894418 0) (97.46305984 0.4844451978 0) (97.21038245 0.5906090546 -1.450704368e-19) (97.32408642 0.7511531336 1.433845791e-19) (96.28296408 1.009948881 1.575051675e-19) (95.90656342 1.192025174 0) (96.10235331 1.427692836 0) (94.51762687 1.922584373 -3.506331612e-19) (93.94506523 2.249832968 2.601322613e-19) (94.30626721 2.617263451 -2.112415028e-20) (91.74183788 3.674465339 0) (90.77912417 4.397528882 0) (91.60710545 5.042244947 -3.695187312e-19) (92.12339081 22.26580582 0) (94.58923394 23.39871641 0) (95.23913036 21.22267444 -7.336165757e-20) (110.0135035 10.56972663 8.452697614e-20) (109.5633823 9.113548041 5.731048796e-19) (108.3523505 9.1299229 -1.790891251e-19) (107.9063914 5.905675315 0) (107.3337839 5.122832321 8.661008005e-20) (106.6632419 5.297922322 -3.781361248e-20) (105.7368101 3.371041452 6.626881807e-21) (105.2624023 2.937015423 -7.529596038e-20) (104.8826978 3.11000332 1.480025711e-19) (104.5111664 1.560122904 0) (103.4775921 1.141747963 -5.950861507e-20) (103.1329359 1.439947015 5.588809739e-20) (102.8984154 0.8598329724 -4.766658047e-21) (102.4090616 0.6281749715 -1.197365034e-22) (102.195012 0.8466164466 -8.630836526e-21) (101.9846631 0.4498847441 -2.324857264e-20) (101.6215575 0.3017533516 4.885502736e-23) (101.4873738 0.4636212931 8.27091518e-21) (99.34035804 -0.4606735959 2.97611153e-21) (99.10546746 -0.4924300313 -2.032009294e-21) (99.09520675 -0.3303858965 -1.994525585e-21) (98.82148707 -0.5154378025 -4.157386457e-21) (98.4775784 -0.527721375 0) (98.49219976 -0.2950707931 4.324009035e-21) (98.06142224 -0.5254488406 -2.242484074e-21) (97.4479839 -0.6024905559 0) (97.50553405 -0.07819156892 0) (97.20923566 -0.21589911 -7.382420303e-20) (96.92035164 -0.1790891209 -7.683927763e-22) (96.96540093 0.02753154086 -1.499966631e-19) (95.84702312 -0.02759546657 1.669262678e-19) (95.40967495 0.03618567659 -5.096884952e-19) (95.48629468 0.3464714588 0) (93.78252328 0.2592025526 1.827113373e-19) (93.10499672 0.3372061217 -1.96076071e-19) (93.20883969 0.8481023043 0) (122.6688952 20.95143993 -3.678516447e-19) (121.5640406 18.70842787 0) (119.555861 19.41717616 0) (116.2626321 8.249729229 0) (114.7130101 6.903513896 1.502436295e-19) (113.4854207 7.816617006 1.031831937e-20) (110.9199623 4.122688978 -2.131873254e-19) (109.8851439 3.481110005 3.17257197e-19) (109.2983852 4.039211067 3.003511408e-19) (107.3238645 2.100861012 7.547862757e-21) (106.62677 1.771667954 2.594833015e-19) (106.3212198 2.132112959 -8.475385834e-20) (105.2192613 0.4505081076 4.133927609e-20) (103.9849303 0.3100496852 -9.082190318e-21) (103.7674687 0.7613921322 0) (103.2751311 0.1601556561 1.940129053e-20) (102.7010776 0.05059280021 -3.38674735e-21) (102.5811704 0.359632743 6.857873547e-21) (102.2125231 -0.02642368549 -9.843761091e-21) (101.7900477 -0.08882803595 0) (101.7235692 0.1231203529 -1.03921967e-22) (99.45386732 -0.7483479063 0) (99.21153012 -0.83880985 0) (99.14414712 -0.666174642 0) (98.91952859 -0.9269874815 -2.043682203e-21) (98.5679153 -1.016016652 0) (98.50270614 -0.7703254937 -2.164507656e-21) (98.14933483 -1.105091714 -8.778518635e-21) (97.58529312 -1.325099231 2.740757167e-22) (97.46000866 -0.7868984288 0) (97.22304907 -1.002420717 -1.469656083e-19) (96.9288702 -1.038793251 -4.362197898e-22) (96.89815572 -0.8233432505 1.52011107e-19) (95.85056343 -1.1599329 0) (95.42129182 -1.210258984 -1.712825845e-19) (95.37436204 -0.9061366763 -2.592789313e-19) (93.88825737 -1.430524495 -9.182243045e-20) (93.28515695 -1.543222677 0) (93.17102506 -1.113074093 2.754422382e-20) (133.8392106 6.352597225 0) (131.5112354 5.974219581 -1.422688886e-20) (131.0183262 7.872522408 5.205852864e-19) (119.962263 1.814135133 -3.451593193e-19) (117.8003679 1.480403455 1.728846939e-20) (117.3673496 3.012392513 6.439061616e-19) (112.7371036 0.6940574818 -1.963386733e-19) (111.415577 0.4992191256 1.463521907e-21) (111.1805633 1.328568984 2.280019774e-21) (108.2487462 0.07612012006 -1.010188621e-19) (107.4106038 -0.0225719572 -1.846309853e-19) (107.2900158 0.4673639163 9.168381519e-20) (105.4231494 -0.9408025453 2.112234838e-20) (104.1446146 -0.7347918481 -9.675696535e-21) (104.1150401 -0.1957100802 -9.716475435e-21) (103.3698378 -0.7012717976 0) (102.7530855 -0.6557830299 0) (102.7603301 -0.2924411089 2.428021557e-21) (102.2390398 -0.6082619765 0) (101.7924778 -0.5591489647 0) (101.8132694 -0.3211478707 -8.501389275e-21) (99.66618961 -1.035614526 9.504951174e-22) (99.43112088 -1.182297016 0) (99.30767661 -1.015011678 0) (99.14931554 -1.332298567 0) (98.81288419 -1.492638711 0) (98.67204391 -1.258569029 0) (98.42076532 -1.665794584 0) (97.93607702 -1.99766006 1.728198378e-20) (97.65466094 -1.503001894 1.401843701e-19) (97.4895019 -1.764567434 1.434591696e-19) (97.21408014 -1.861894477 -3.760043666e-20) (97.12008543 -1.664171516 1.312396616e-19) (96.21716648 -2.192068696 1.629970743e-19) (95.82853672 -2.320161883 -3.324816913e-19) (95.69864851 -2.060586285 -1.748034375e-21) (94.48431937 -2.788351169 -8.225817632e-20) (93.97563098 -2.98135492 0) (93.77888451 -2.659807475 -4.643353364e-20) (131.2604148 -8.30856545 1.060105316e-18) (129.5622795 -7.465810206 4.850981546e-19) (130.2370281 -6.064337895 0) (119.1570865 -5.153895808 1.712307327e-19) (117.2400996 -4.520887759 -1.603110968e-19) (117.6885342 -3.118092768 8.131847333e-19) (112.5311767 -3.192682488 1.89163363e-19) (111.2595726 -2.887508857 5.586994641e-20) (111.4572728 -2.065284226 -1.09240432e-19) (108.1556558 -2.214689624 -2.351897583e-20) (107.322586 -2.048473998 2.062799149e-19) (107.4286834 -1.548003158 1.403135882e-19) (105.0425217 -2.342197147 0) (103.8863613 -1.818001584 -4.442596095e-20) (104.0676955 -1.283136228 9.045423982e-20) (103.1338803 -1.594650218 7.276308972e-20) (102.5340665 -1.391427113 -3.761679497e-20) (102.6772684 -1.027095914 -3.822196502e-20) (102.0381199 -1.214912157 0) (101.6068127 -1.051577614 4.103629733e-21) (101.7231893 -0.818912639 0) (99.96781321 -1.300215565 1.325605508e-23) (99.75330167 -1.494466422 -9.265945335e-22) (99.58049792 -1.345992473 1.89453159e-21) (99.49652488 -1.697503461 3.770404487e-21) (99.19274634 -1.917869162 -3.860884023e-21) (98.98759696 -1.713620803 2.041060888e-21) (98.84617422 -2.16058142 1.635800592e-20) (98.45428948 -2.57231609 -2.034496422e-20) (98.051728 -2.15448773 0) (97.95860682 -2.436619896 -1.038836204e-19) (97.71425065 -2.579822528 1.411995575e-19) (97.57250124 -2.412381816 3.559345977e-20) (96.82916874 -3.057564582 -1.516387627e-19) (96.48559867 -3.236681067 -7.745597288e-20) (96.30330409 -3.025596441 -8.047569389e-20) (95.30267068 -3.850470546 -1.276149171e-21) (94.8554331 -4.083862628 0) (94.62327675 -3.831409837 -8.662697113e-20) (123.2136071 -16.42584321 0) (122.3020996 -15.32298511 0) (123.3032816 -14.63911406 0) (115.3812476 -10.03803062 2.873478611e-19) (114.0785927 -8.904793718 1.198981773e-19) (115.0210552 -8.01313475 -4.276111038e-19) (110.6313944 -6.32164461 -1.327041268e-20) (109.6392048 -5.679773777 1.138496664e-19) (110.148508 -5.075866007 5.181885197e-20) (107.1120994 -4.211698152 0) (106.4085593 -3.839660392 1.683132962e-19) (106.7004283 -3.433841797 -1.982070016e-19) (104.1705237 -3.50765952 0) (103.2485286 -2.769143516 3.585032846e-20) (103.6089312 -2.318993415 -2.90551504e-20) (102.5919647 -2.389342275 -3.622281601e-20) (102.0629952 -2.055710741 -3.320836245e-20) (102.3270701 -1.738149767 3.636644581e-20) (101.6257468 -1.769500725 2.491242385e-20) (101.2414263 -1.508757168 3.887786344e-21) (101.4446629 -1.308511134 -9.96987422e-22) (100.3458414 -1.524278412 0) (100.1618456 -1.749589821 3.585121759e-21) (99.94746875 -1.63292503 3.589262523e-21) (99.93917836 -1.9977199 0) (99.67962513 -2.264391908 9.27894874e-22) (99.42486492 -2.102170134 7.666525936e-21) (99.39065306 -2.56001703 -1.626576328e-20) (99.09452968 -3.020515963 1.186293984e-19) (98.6046323 -2.699448004 0) (98.57873753 -2.983169311 0) (98.37223055 -3.159237954 -2.000504257e-19) (98.19588893 -3.028352023 -3.60512946e-20) (97.61373865 -3.74409636 2.1040744e-19) (97.31619014 -3.961501234 1.50102982e-21) (97.09443671 -3.798450739 7.453622828e-20) (96.27716822 -4.6961811 1.343495389e-19) (95.87601542 -4.971561464 -1.149597883e-19) (95.60525892 -4.767364125 1.15510267e-19) (114.581484 -19.37033818 -3.788483207e-19) (114.2664697 -18.32291276 0) (115.2592135 -18.27927688 0) (110.5924322 -12.31406931 2.113856906e-19) (109.9119462 -11.08276746 0) (110.9745011 -10.7385484 0) (107.8750078 -8.151101631 -1.645810761e-19) (107.2285979 -7.38569047 -1.07528397e-20) (107.8675008 -7.068949259 5.695820664e-21) (105.4676903 -5.568767935 3.075528587e-19) (104.9502843 -5.093535259 0) (105.3470327 -4.838409632 -7.908776031e-20) (102.9982428 -4.297607462 3.281885102e-20) (102.3430752 -3.473497749 -3.431756596e-20) (102.8210508 -3.156232742 8.938819586e-21) (101.8254528 -2.991760477 3.389873136e-20) (101.4007438 -2.573296048 -3.178426272e-20) (101.7508906 -2.335953515 3.209439378e-20) (101.0475569 -2.209597306 4.827665736e-22) (100.7321976 -1.884571261 -2.940685717e-20) (101.0038639 -1.736741953 -3.887443163e-21) (100.7884948 -1.699875455 4.182481863e-19) (100.6335849 -1.952097106 0) (100.394776 -1.857434094 0) (100.4486601 -2.230261287 0) (100.2374388 -2.526214391 4.389837858e-19) (99.95633456 -2.401055919 0) (100.0114762 -2.864124686 -3.314262226e-19) (99.80827332 -3.334653294 1.085791884e-19) (99.26819049 -3.111709663 -2.743866828e-21) (99.30613554 -3.376651324 -5.592281203e-20) (99.14359755 -3.574671407 -5.861598551e-20) (98.94198845 -3.487866754 -1.248052297e-19) (98.53079907 -4.2323909 2.524505075e-19) (98.28676581 -4.478117461 -6.411822245e-20) (98.03204328 -4.37152651 1.311699897e-19) (97.42362268 -5.319801566 1.302333453e-19) (97.08518832 -5.64262069 -6.458972313e-20) (96.76236378 -5.501368925 0) (93.79156409 -8.063573034 -5.948013423e-20) (93.67096151 -8.173877985 1.20688937e-19) (93.57054387 -8.085270406 -6.05945162e-20) (103.2970413 -28.24784797 1.826001116e-19) (104.0162492 -27.5608093 1.915940212e-19) (104.7070745 -27.92281254 4.228680428e-19) (105.9148925 -17.49250565 -3.793084433e-19) (106.1977016 -16.12993477 3.848578311e-19) (107.5975987 -16.59925812 -7.113620209e-20) (106.1412477 -12.36427456 -3.606623622e-20) (105.9367369 -11.32402567 2.604496073e-20) (106.8634098 -11.4117979 -7.594801159e-20) (105.0391125 -8.709891856 -6.413758284e-20) (104.6915974 -7.993316838 0) (105.3088864 -7.934112521 1.799195124e-19) (103.6311007 -6.220918804 -9.204081104e-20) (103.2928278 -5.737507532 0) (103.709471 -5.630982907 -1.350098849e-19) (101.7251778 -4.684507258 0) (101.3160514 -3.900311755 -1.515284555e-20) (101.8347784 -3.723561813 7.853283453e-20) (100.9429592 -3.36307046 9.300083603e-22) (100.6281101 -2.91365761 2.790066223e-20) (101.0231 -2.76582793 0) (100.3647914 -2.508869165 -2.116091372e-20) (100.1204161 -2.149556618 0) (100.4371727 -2.063699899 0) (101.2639016 -1.811225372 0) (101.1394487 -2.084709386 0) (100.8817633 -2.029654703 0) (100.9955445 -2.375639387 0) (100.8333606 -2.682573814 0) (100.5288516 -2.617705622 0) (100.6655304 -3.032515231 6.19388505e-21) (100.5575092 -3.500861107 4.98401867e-20) (99.99080364 -3.394246487 -1.209373971e-19) (100.0779697 -3.636402441 3.232661974e-21) (99.96062633 -3.841849555 -5.128345469e-20) (99.74967803 -3.795640567 -1.369837454e-20) (99.50145418 -4.530557931 1.079113976e-19) (99.31765799 -4.788382746 0) (99.05070252 -4.739794684 5.857167394e-20) (98.67638141 -5.680622945 1.348848804e-20) (98.43150593 -6.029996732 2.757686765e-20) (98.07720229 -5.979299907 -5.9152134e-20) (96.8907574 -17.30186318 -3.55435999e-20) (98.01175312 -17.25982164 1.340527337e-20) (98.16718789 -18.37357353 0) (101.6941139 -14.00756563 0) (102.2034539 -13.28852287 0) (102.9601693 -14.07574705 2.915228735e-20) (102.8555602 -11.02964576 -8.675033824e-20) (102.8880913 -10.31235693 3.938938003e-20) (103.5449412 -10.63806919 4.670068689e-20) (102.6386274 -8.360649998 0) (102.4793078 -7.783671032 -5.124664377e-20) (102.987557 -7.891785946 1.039827102e-19) (101.9063559 -6.287186387 0) (101.7021858 -5.858386234 5.027280395e-20) (102.0827519 -5.868222906 6.768448745e-21) (100.5108814 -4.755528304 2.341917766e-20) (100.290018 -4.043493363 -2.487100518e-20) (100.7983511 -4.003347253 4.053989632e-20) (100.0338526 -3.526171305 6.529208331e-21) (99.8223706 -3.084318154 6.049046021e-21) (100.2245588 -3.019179914 5.314331782e-20) (99.64100725 -2.67618615 -2.460713397e-20) (99.45884267 -2.298737009 -3.115528767e-21) (99.79009151 -2.271488998 3.147921996e-21) (101.7551948 -1.862350056 0) (101.664328 -2.143162312 0) (101.4017159 -2.123624926 0) (101.5607286 -2.43316603 0) (101.4466872 -2.738792422 0) (101.1414932 -2.722281215 0) (101.3316777 -3.07570346 -2.554929703e-21) (101.2944293 -3.525893676 8.335189706e-20) (100.7448793 -3.520481868 9.174810248e-20) (100.8629539 -3.724400421 -9.242734369e-20) (100.7886067 -3.92342513 8.994398349e-20) (100.5864628 -3.917054743 0) (100.4852548 -4.583601834 0) (100.3606419 -4.828254744 4.528228695e-20) (100.1073511 -4.839764622 0) (99.94509601 -5.65600642 1.791679885e-19) (99.79933165 -5.970939363 -1.674224843e-19) (99.47362613 -6.020490669 2.331844781e-20) (99.42350351 -7.077093641 3.961410156e-20) (99.37955225 -7.511896862 0) (98.92818608 -7.664686044 0) (98.41652049 -8.928323713 -7.152160405e-20) (88.94221878 -7.909273126 1.268331304e-19) (88.27412135 -8.202498727 -5.03212161e-20) (98.49098079 -10.99040335 -1.635416546e-20) (99.01707743 -11.06766691 -1.042725392e-20) (98.95203333 -11.9644217 0) (100.1123506 -10.7333521 -5.618396898e-20) (100.3868607 -10.44158552 -6.059708518e-20) (100.6996307 -11.08738951 -2.580410876e-20) (100.8409198 -9.278776802 1.133420632e-19) (100.8979127 -8.844768978 -1.128369404e-19) (101.3085284 -9.216950964 0) (100.8424992 -7.537768142 3.711475141e-20) (100.7682404 -7.12103396 -7.215190575e-20) (101.1489551 -7.310819743 8.093095553e-20) (100.4533093 -5.970550114 -3.993950372e-20) (100.3316596 -5.62493289 -4.174333409e-20) (100.6506398 -5.708150894 4.358763509e-20) (99.44210727 -4.5887097 0) (99.33621772 -3.976450032 0) (99.79962808 -4.030512509 1.221243963e-20) (99.1742303 -3.522698188 0) (99.045887 -3.109353939 -2.22638506e-20) (99.42850415 -3.112480278 5.285212841e-21) (98.92668995 -2.720574256 8.323268877e-21) (98.79988896 -2.346845573 2.082541109e-20) (99.12720274 -2.36829058 0) (102.242865 -1.861683805 0) (102.181173 -2.138213037 0) (101.9248326 -2.148645944 0) (102.1112283 -2.416363195 0) (102.0370308 -2.709694759 0) (101.7459287 -2.733830113 0) (101.9655577 -3.018527416 0) (101.9778675 -3.430552878 -4.531980892e-21) (101.471331 -3.513263677 -1.400100737e-19) (101.6043028 -3.673969313 0) (101.5587773 -3.860543681 0) (101.3729737 -3.888910528 0) (101.3729652 -4.454145777 -1.538088595e-19) (101.2940806 -4.667050282 0) (101.0754576 -4.72089956 0) (101.0300271 -5.363311086 -2.815029711e-19) (100.943731 -5.616203406 2.859869912e-19) (100.6828858 -5.722897279 7.984961865e-21) (100.7581359 -6.425215088 -2.667520086e-19) (100.7722826 -6.705959382 -2.542496647e-19) (100.4758889 -6.92138661 -2.581271546e-19) (97.2097267 -7.164938679 3.184641136e-19) (91.28955775 -6.876375005 -1.727139357e-19) (90.74024673 -7.108722524 0) (99.20015602 -8.482254457 9.971493878e-20) (99.31050592 -8.514823111 1.099732721e-20) (99.24543492 -9.032866831 -2.512209078e-20) (99.54246477 -8.452899226 0) (99.60704921 -8.319746162 -8.176044608e-20) (99.75177528 -8.785670384 6.154936152e-20) (99.68739013 -7.699257088 -2.106444923e-20) (99.68299573 -7.441887085 3.376228415e-19) (99.93304012 -7.775644723 1.192073743e-20) (99.58134127 -6.598067368 5.451082487e-20) (99.52360089 -6.309041252 2.802854713e-20) (99.79679743 -6.514214326 -1.572460296e-19) (99.30398269 -5.464837253 3.386592059e-20) (99.22147883 -5.198120761 -1.150047951e-20) (99.47524557 -5.314944676 -6.679303397e-21) (98.54976582 -4.288410428 0) (98.50385643 -3.784348967 0) (98.90410065 -3.892189845 0) (98.40469955 -3.398547924 3.921921048e-20) (98.32700092 -3.024455255 0) (98.67777234 -3.077986173 -5.121733934e-20) (98.25201644 -2.668476458 -3.885451887e-20) (98.16792652 -2.313526851 3.87314242e-20) (98.47952398 -2.372372274 -1.920150709e-20) (102.7119364 -1.817361118 0) (102.6739877 -2.081232975 0) (102.4313517 -2.116118001 0) (102.6303697 -2.340211059 0) (102.5861178 -2.613129896 0) (102.3177036 -2.668545318 0) (102.5464716 -2.887716783 0) (102.5848655 -3.248015183 0) (102.1372643 -3.39224465 0) (102.2706345 -3.51032046 0) (102.2448263 -3.677052397 -1.254166657e-20) (102.0825671 -3.732144545 -3.338368015e-20) (102.1236883 -4.194217009 2.671466559e-21) (102.0680712 -4.372618199 1.223905841e-19) (101.8897013 -4.456613136 2.869437885e-19) (101.8721866 -4.92561548 0) (101.8033693 -5.114189764 -2.247800304e-19) (101.6141648 -5.246784545 0) (101.6616678 -5.681676406 2.031996454e-19) (101.6892309 -5.872220266 0) (101.4994956 -6.074982453 0) (95.77202479 -5.845605132 1.710113753e-20) (93.63725962 -6.099200263 0) (93.03465671 -6.277540696 1.586664993e-20) (99.56167422 -6.873141029 1.142450429e-19) (99.48712518 -6.892139364 -3.199183348e-21) (99.45587233 -7.244234457 0) (99.26080729 -6.86472643 2.441031131e-21) (99.19271813 -6.789325021 -8.834252852e-22) (99.27897811 -7.128685371 0) (98.9861904 -6.421400285 1.04539055e-19) (98.91836364 -6.260654452 8.37040559e-21) (99.08039016 -6.533030358 1.283745078e-19) (98.71086359 -5.707898743 1.719921052e-20) (98.63998022 -5.509745702 -8.398848004e-20) (98.83345307 -5.702741353 0) (98.42703331 -4.90421298 0) (98.3574405 -4.702370193 0) (98.5527725 -4.829393868 0) (97.82413617 -3.922768948 0) (97.79435779 -3.515247406 0) (98.13394382 -3.656691109 0) (97.72937566 -3.191837359 0) (97.68126994 -2.860966108 0) (97.99459746 -2.949831263 0) (97.63390578 -2.544350111 0) (97.58019901 -2.218772402 0) (97.8681579 -2.304120961 0) (103.1527263 -1.739308316 0) (103.1318975 -1.985598169 0) (102.9077218 -2.038097975 0) (103.10674 -2.221418105 0) (103.0823089 -2.469299359 0) (102.8411704 -2.545821903 0) (103.0625389 -2.709026599 0) (103.1083374 -3.016429201 0) (102.7235261 -3.194209066 0) (102.8456565 -3.275533811 0) (102.8294344 -3.417093943 0) (102.6927884 -3.4863106 0) (102.7353297 -3.849119156 0) (102.6864545 -3.994669569 -6.351486138e-21) (102.5452403 -4.093743399 -4.665685124e-20) (102.4957307 -4.427875081 -1.142973459e-20) (102.422978 -4.569187657 0) (102.2860371 -4.705883585 0) (102.2684532 -4.976427365 5.750319013e-22) (102.1808982 -5.099737296 -1.316555212e-21) (102.0959849 -5.287054473 1.067976731e-21) (95.34668439 -4.999737376 -8.859274628e-20) (95.83236916 -5.399394661 8.597370819e-21) (95.34298172 -5.576405798 -1.557738426e-19) (99.71763039 -5.719755267 -9.970255298e-22) (99.55041212 -5.725754125 0) (99.5414116 -5.986946881 0) (99.06561699 -5.697881791 -3.044238581e-23) (98.91842104 -5.650498913 1.707595128e-22) (98.97788174 -5.906511685 -4.101293387e-20) (98.52345525 -5.413852151 4.863854862e-20) (98.40793135 -5.308353035 -4.871134297e-20) (98.51766652 -5.527269399 5.806274252e-20) (98.10138375 -4.934187852 0) (98.01007526 -4.794809091 0) (98.14877274 -4.965099017 0) (97.76531886 -4.349199723 0) (97.69378881 -4.19510218 0) (97.84380582 -4.320543478 0) (97.23926699 -3.53572895 0) (97.20026483 -3.211960838 0) (97.4837356 -3.365492952 0) (97.14986924 -2.939999227 0) (97.11470165 -2.653094326 0) (97.38808907 -2.76037055 0) (97.08208347 -2.376485431 0) (97.0461887 -2.083213576 0) (97.30616444 -2.183974156 0) (103.5592226 -1.638142026 0) (103.5494329 -1.864203187 0) (103.3458414 -1.928030966 0) (103.5356704 -2.075552839 0) (103.5224899 -2.296869724 0) (103.309393 -2.385638253 0) (103.5129462 -2.504986135 0) (103.5523125 -2.762591438 0) (103.2264232 -2.954877529 0) (103.3310071 -3.008029445 0) (103.3167773 -3.126095576 0) (103.203433 -3.200122904 0) (103.2240992 -3.477373611 0) (103.1733895 -3.592732523 0) (103.0624751 -3.692545242 0) (102.9641895 -3.928597721 0) (102.8812814 -4.035843722 0) (102.7784748 -4.16590542 2.312187065e-21) (102.6443846 -4.33034134 1.299515749e-20) (102.3723315 -4.398302241 -1.3962704e-20) (102.3351816 -4.565031519 8.561509645e-22) (95.72937544 -4.379535751 1.474822832e-22) (97.20336352 -4.682584857 2.356681708e-22) (96.95074475 -4.860413251 5.844933783e-21) (99.78860855 -4.831504379 7.386208021e-21) (99.57133181 -4.831929172 5.570450347e-22) (99.5658982 -5.035309455 -2.642286565e-21) (98.9304401 -4.807568686 5.400352681e-23) (98.73472472 -4.77430555 0) (98.77277776 -4.974132528 -8.670817352e-21) (98.21202351 -4.611539585 0) (98.06001045 -4.538163874 0) (98.13585362 -4.716658815 0) (97.66456175 -4.270651408 0) (97.55113982 -4.168298133 0) (97.65330335 -4.316763316 0) (97.2610835 -3.832530401 0) (97.18078639 -3.713469554 0) (97.29724873 -3.830293137 0) (96.76625138 -3.157977425 0) (96.70758699 -2.903980447 0) (96.94224232 -3.057440817 0) (96.65838679 -2.671348384 0) (96.62450621 -2.426222953 0) (96.86050738 -2.540416246 0) (96.59669288 -2.186671218 0) (96.56892908 -1.925851623 0) (96.8003833 -2.032963393 0) (103.9289154 -1.523303009 0) (103.9250902 -1.728170154 0) (103.7424438 -1.798017432 0) (103.9168784 -1.915626089 0) (103.9079912 -2.11045702 0) (103.7218478 -2.204551425 0) (103.9012612 -2.292771689 0) (103.9268954 -2.505112332 0) (103.6521013 -2.698120853 0) (103.7368661 -2.731563675 0) (103.7197376 -2.829614629 0) (103.6261043 -2.903243924 0) (103.6135642 -3.114960779 0) (103.5564165 -3.20651731 0) (103.4689688 -3.300709807 0) (103.3209722 -3.467322909 0) (103.2267162 -3.548820881 0) (103.149245 -3.665410651 0) (102.8855094 -3.762079512 0) (102.4909887 -3.802427518 0) (102.4679562 -3.94152431 0) (96.20126204 -3.825403045 0) (97.85155884 -4.038784958 0) (97.71594452 -4.187837324 0) (99.83700205 -4.122259455 0) (99.59228751 -4.122533409 0) (99.58838239 -4.285799132 0) (98.84181903 -4.100564367 0) (98.61056347 -4.075866716 0) (98.63819581 -4.236953755 0) (97.99093148 -3.956665154 0) (97.81008795 -3.902747208 0) (97.86569161 -4.050711956 0) (97.34088198 -3.703609348 0) (97.20741351 -3.626226423 0) (97.28476385 -3.754246877 0) (96.87076287 -3.367636854 0) (96.77914648 -3.274185983 0) (96.8708582 -3.379630964 0) (96.38149446 -2.806203093 0) (96.29983915 -2.605398572 0) (96.49416313 -2.75300651 0) (96.24245993 -2.405594295 0) (96.20274617 -2.197435124 0) (96.40566463 -2.310927656 0) (96.17276409 -1.990265911 0) (96.14588905 -1.760207285 0) (96.35065957 -1.867443959 0) (104.2621202 -1.40240004 0) (104.2601065 -1.586344096 0) (104.0975111 -1.658026816 0) (104.2529921 -1.751772896 0) (104.2434534 -1.921703793 0) (104.0816225 -2.015756871 0) (104.2338082 -2.082205186 0) (104.2422285 -2.256176312 0) (104.0109065 -2.441506505 0) (104.0755254 -2.461518636 0) (104.0526853 -2.542931318 0) (103.9752685 -2.613105016 0) (103.9254704 -2.775627411 0) (103.8600113 -2.848889123 0) (103.7904245 -2.935271165 0) (103.5956667 -3.054082014 0) (103.489207 -3.117001361 0) (103.4299071 -3.219871707 0) (103.0449727 -3.274406825 0) (102.555017 -3.300485848 0) (102.5424582 -3.418510453 0) (96.61477528 -3.343824486 0) (98.28238133 -3.503876857 0) (98.18902295 -3.629007336 0) (99.86143687 -3.546932201 -3.249625025e-35) (99.60029933 -3.546268618 0) (99.59936433 -3.679945158 0) (98.77341969 -3.525141887 0) (98.51657017 -3.505800739 0) (98.53793569 -3.638175347 0) (97.82536023 -3.414344573 0) (97.6224244 -3.373148133 0) (97.66478896 -3.496898821 0) (97.09377382 -3.220060594 0) (96.94310584 -3.159999852 0) (97.00317079 -3.27000549 0) (96.56331008 -2.956652458 0) (96.46001537 -2.882126642 0) (96.53331198 -2.975717324 0) (96.06671329 -2.486904237 0) (95.95976694 -2.324322363 0) (96.12235239 -2.46215936 0) (95.88931601 -2.154397611 0) (95.84011029 -1.977063441 0) (96.01462119 -2.085451807 0) (95.80359845 -1.797734153 0) (95.77288016 -1.595574794 0) (95.95320698 -1.698879426 0) (104.5604005 -1.281176002 0) (104.5571625 -1.445377961 0) (104.4131474 -1.515866896 0) (104.5480031 -1.591028255 0) (104.5345474 -1.738548235 0) (104.3941872 -1.829018152 0) (104.5181197 -1.879723248 0) (104.5080607 -2.022717091 0) (104.3129791 -2.195651403 0) (104.358449 -2.206667816 0) (104.328512 -2.274472992 0) (104.2642786 -2.339562727 0) (104.1772941 -2.465424745 0) (104.1031572 -2.524630425 0) (104.04719 -2.602483728 0) (103.8106911 -2.688307133 0) (103.6924273 -2.737748946 0) (103.646197 -2.827888467 0) (103.153046 -2.856017192 0) (102.5899374 -2.872612914 0) (102.5830345 -2.973340272 0) (96.97372663 -2.9312851 0) (98.58301244 -3.052696986 0) (98.51743072 -3.158591684 0) (99.86945468 -3.071471555 0) (99.59858807 -3.069576809 0) (99.59973313 -3.180769718 0) (98.7178473 -3.049101024 0) (98.4420372 -3.03335556 0) (98.45922439 -3.14359662 0) (97.69672964 -2.960662682 0) (97.47667589 -2.928179725 0) (97.50996284 -3.032437338 0) (96.90020937 -2.807297092 0) (96.73507312 -2.759610666 0) (96.78274588 -2.854069047 0) (96.31702858 -2.596638412 0) (96.202687 -2.536271834 0) (96.26212777 -2.618565087 0) (95.80634561 -2.200965722 0) (95.67358157 -2.067135061 0) (95.81060952 -2.192538206 0) (95.58857204 -1.922728265 0) (95.52784573 -1.77081551 0) (95.67820521 -1.871638237 0) (95.48223405 -1.615420787 0) (95.4448307 -1.437979353 0) (95.60333502 -1.534883236 0) (104.826278 -1.16372523 0) (104.8197611 -1.309820793 0) (104.6925149 -1.377088511 0) (104.8064641 -1.437989719 0) (104.7871223 -1.566137008 0) (104.6652861 -1.650757282 0) (104.7615438 -1.689014892 0) (104.7323941 -1.808408245 0) (104.5677204 -1.966745768 0) (104.5955336 -1.971676189 0) (104.5580276 -2.028356985 0) (104.5044893 -2.087649508 0) (104.3824749 -2.186116492 0) (104.3000334 -2.234440445 0) (104.2545263 -2.303841642 0) (103.9817265 -2.366721417 0) (103.8523698 -2.406194189 0) (103.8157831 -2.484894304 0) (103.227201 -2.496280928 0) (102.6099113 -2.506828869 0) (102.6057973 -2.593015075 0) (97.28373488 -2.576912271 0) (98.79563235 -2.669528978 0) (98.74905587 -2.759626557 0) (99.86668549 -2.673248367 0) (99.59037527 -2.670324871 0) (99.59290245 -2.763799742 0) (98.6712078 -2.650584428 0) (98.38101277 -2.637420686 0) (98.39522537 -2.730128753 0) (97.59387424 -2.578124119 0) (97.36035402 -2.551870886 0) (97.38716719 -2.64022704 0) (96.74523031 -2.454290879 0) (96.56798527 -2.415691897 0) (96.60655137 -2.496841273 0) (96.11661067 -2.282883389 0) (95.99219287 -2.23328566 0) (96.04107193 -2.30522781 0) (95.5886935 -1.9475435 0) (95.4312449 -1.835918609 0) (95.54748643 -1.94825869 0) (95.33141922 -1.712673062 0) (95.25815101 -1.581853898 0) (95.38813099 -1.673799858 0) (95.20211995 -1.446889609 0) (95.15643724 -1.291062129 0) (95.29576455 -1.380215624 0) (105.0627104 -1.052818806 0) (105.0516174 -1.182587527 0) (104.9392839 -1.245360939 0) (105.0328495 -1.295331727 0) (105.0064844 -1.406967834 0) (104.9006651 -1.484775725 0) (104.9709735 -1.513465275 0) (104.9225875 -1.614206296 0) (104.7828774 -1.757420552 0) (104.7949237 -1.75826741 0) (104.7499529 -1.805928776 0) (104.7050781 -1.859270231 0) (104.551189 -1.937231812 0) (104.4611578 -1.97706808 0) (104.4237599 -2.038437443 0) (104.119683 -2.085316386 0) (103.9798627 -2.117223325 0) (103.9505737 -2.185738772 0) (103.2789881 -2.186698646 0) (102.6230447 -2.193508571 0) (102.6201172 -2.267369511 0) (97.55207768 -2.271645355 0) (98.94744736 -2.342853732 0) (98.9140799 -2.419748061 0) (99.85661916 -2.33695875 0) (99.57785014 -2.333235914 0) (99.58129822 -2.4123364 0) (98.63121627 -2.314288467 0) (98.32991453 -2.303072293 0) (98.34190071 -2.381532228 0) (97.50978958 -2.253759465 0) (97.2654994 -2.232130596 0) (97.28752228 -2.307305834 0) (96.61884352 -2.151935653 0) (96.43145225 -2.120180811 0) (96.46315656 -2.1899071 0) (95.95122533 -2.010392535 0) (95.81777598 -1.969130058 0) (95.8584649 -2.031749247 0) (95.40499709 -1.724716868 0) (95.22460166 -1.630489066 0) (95.32390017 -1.730042737 0) (95.11033775 -1.524693421 0) (95.02432858 -1.411456575 0) (95.13713885 -1.494077949 0) (94.95739442 -1.293841619 0) (94.90268345 -1.156786883 0) (95.02530248 -1.237609201 0) (105.2727649 -0.9502068797 0) (105.2563241 -1.06543909 0) (105.1571285 -1.122969412 0) (105.2312992 -1.164682065 0) (105.1972075 -1.262214839 0) (105.1051478 -1.332719124 0) (105.1515852 -1.354606067 0) (105.0846777 -1.440328489 0) (104.9655269 -1.568357557 0) (104.96354 -1.566819407 0) (104.9114439 -1.607143656 0) (104.8735893 -1.654631376 0) (104.6912233 -1.717286326 0) (104.5944416 -1.75046139 0) (104.5633744 -1.804356242 0) (104.2322368 -1.84006781 0) (104.0825428 -1.866108954 0) (104.0588644 -1.925579523 0) (103.3159769 -1.92034094 0) (102.6337259 -1.924902181 0) (102.6311343 -1.988228081 0) (97.786107 -2.008403119 0) (99.05674968 -2.063729226 0) (99.0326398 -2.129468507 0) (99.84149944 -2.051632287 0) (99.56242079 -2.047289501 0) (99.56649419 -2.114473322 0) (98.59638394 -2.029132195 0) (98.28641051 -2.019434733 0) (98.29667247 -2.08607631 0) (97.43986961 -1.977805961 0) (97.18683548 -1.959716132 0) (97.20520473 -2.023807075 0) (96.51419015 -1.892839388 0) (96.31825958 -1.866355511 0) (96.34467972 -1.926228002 0) (95.81309212 -1.774472089 0) (95.67161133 -1.739764707 0) (95.70585051 -1.794056566 0) (95.24859395 -1.530059885 0) (95.04717851 -1.44960718 0) (95.13258922 -1.537081745 0) (94.91918298 -1.358223468 0) (94.82072446 -1.259691657 0) (94.91907381 -1.333067287 0) (94.74291315 -1.156771239 0) (94.67897624 -1.035946777 0) (94.7871308 -1.108378174 0) (105.4594546 -0.8568938142 0) (105.4372614 -0.9593102281 0) (105.3495492 -1.011219472 0) (105.4056024 -1.046849881 0) (105.3635068 -1.132345258 0) (105.2831701 -1.195387007 0) (105.3079186 -1.212749206 0) (105.223579 -1.28633004 0) (105.1213989 -1.399560245 0) (105.1069864 -1.396863143 0) (105.0482334 -1.431199982 0) (105.0160851 -1.473079127 0) (104.8085858 -1.524345782 0) (104.7058813 -1.552254423 0) (104.6798019 -1.599273051 0) (104.3249601 -1.627184573 0) (104.1660183 -1.648620626 0) (104.1467014 -1.7000475 0) (103.3431457 -1.691465683 0) (102.6442458 -1.694744465 0) (102.6415567 -1.748969674 0) (97.99249486 -1.781423393 0) (99.13626028 -1.825095695 0) (99.1186323 -1.881279759 0) (99.82283637 -1.809003944 0) (99.54500473 -1.804181551 0) (99.54950681 -1.861315552 0) (98.56566051 -1.786782609 0) (98.24887804 -1.778298081 0) (98.25777104 -1.834966736 0) (97.3809314 -1.742730586 0) (97.12070445 -1.727414896 0) (97.13621877 -1.782059318 0) (96.42640728 -1.670964349 0) (96.22324272 -1.64861678 0) (96.24551772 -1.699933471 0) (95.69647374 -1.570881582 0) (95.54786931 -1.541398048 0) (95.57696269 -1.588272497 0) (95.11434935 -1.361070543 0) (94.89380729 -1.291593648 0) (94.96776555 -1.367853337 0) (94.75293556 -1.212148908 0) (94.64258669 -1.125939396 0) (94.7287415 -1.19043318 0) (94.55422487 -1.035442156 0) (94.48120294 -0.9285944877 0) (94.57688306 -0.9928756609 0) (105.6256626 -0.7733515344 0) (105.5975645 -0.8645654206 0) (105.5197933 -0.9107384247 0) (105.5591598 -0.9420478817 0) (105.5090664 -1.01729997 0) (105.4386673 -1.072966056 0) (105.4438501 -1.087586241 0) (105.3433336 -1.151356085 0) (105.255166 -1.250460048 0) (105.2297908 -1.247480798 0) (105.1649099 -1.276923723 0) (105.1374095 -1.313513392 0) (104.9078943 -1.356367738 0) (104.7999956 -1.380078014 0) (104.777887 -1.42080874 0) (104.4020141 -1.443313233 0) (104.2344883 -1.46110928 0) (104.2185875 -1.50535734 0) (103.3638398 -1.495400558 0) (102.6557099 -1.49802374 0) (102.6527215 -1.544306516 0) (98.17721357 -1.586106505 0) (99.19500928 -1.621395403 0) (99.18187766 -1.669309967 0) (99.80168515 -1.602743601 0) (99.52622854 -1.597553671 0) (99.5310238 -1.646083309 0) (98.5382804 -1.580868392 0) (98.21614544 -1.573370633 0) (98.22393091 -1.621498041 0) (97.33069506 -1.542672351 0) (97.06448255 -1.529569956 0) (97.07772547 -1.576065547 0) (96.35195662 -1.481414136 0) (96.14261614 -1.462358592 0) (96.16159356 -1.506193574 0) (95.59705979 -1.395935358 0) (95.4421337 -1.370655297 0) (95.46708184 -1.410920022 0) (94.99820031 -1.215332321 0) (94.76031064 -1.154632668 0) (94.82480469 -1.220596663 0) (94.60745912 -1.085098041 0) (94.48590086 -1.009217586 0) (94.5617932 -1.065353403 0) (94.3874749 -0.9291988598 0) (94.30570156 -0.8343422381 0) (94.39069225 -0.8909019052 0) (105.7741035 -0.6996851433 0) (105.7401115 -0.7811929159 0) (105.6708779 -0.8216741188 0) (105.6950165 -0.8501085684 0) (105.6371004 -0.9166842785 0) (105.5750909 -0.9652006878 0) (105.562696 -0.9784691296 0) (105.4472993 -1.034358459 0) (105.3706845 -1.120132133 0) (105.3356689 -1.117507316 0) (105.2652039 -1.142952401 0) (105.2414903 -1.174597375 0) (104.9927425 -1.211328585 0) (104.8802496 -1.23166921 0) (104.8613277 -1.266657284 0) (104.4666131 -1.285521676 0) (104.2911786 -1.300432065 0) (104.277963 -1.3382368 0) (103.3803518 -1.328292307 0) (102.6685912 -1.330652382 0) (102.6652287 -1.369936003 0) (98.34521519 -1.418722935 0) (99.23950187 -1.448085594 0) (99.2294334 -1.488774948 0) (99.77879005 -1.427892426 0) (99.50652696 -1.422425688 0) (99.51152028 -1.463482001 0) (98.51365747 -1.406395883 0) (98.18732562 -1.399709872 0) (98.19420427 -1.440420173 0) (97.28745172 -1.372967674 0) (97.0162027 -1.361651038 0) (97.02761696 -1.401035151 0) (96.28816318 -1.320162334 0) (96.07350253 -1.303750495 0) (96.08983229 -1.34099148 0) (95.5115075 -1.246437668 0) (95.35095517 -1.224559423 0) (95.37254423 -1.258916978 0) (94.89687716 -1.090629499 0) (94.64325736 -1.036931975 0) (94.69991843 -1.093483197 0) (94.47929989 -0.9756227719 0) (94.34724589 -0.9083857638 0) (94.41451622 -0.9567381993 0) (94.23931112 -0.8371715811 0) (94.14921453 -0.7525537205 0) (94.2250916 -0.8018992852 0) (105.9072972 -0.635780007 0) (105.8675202 -0.7089592142 0) (105.8055459 -0.7438885921 0) (105.8158857 -0.770660009 0) (105.7503942 -0.8299368113 0) (105.6954304 -0.8715953685 0) (105.667238 -0.8845460483 0) (105.5383454 -0.9342720379 0) (105.4711621 -1.007512886 0) (105.4276974 -1.005728347 0) (105.3521696 -1.027923712 0) (105.3315303 -1.054960933 0) (105.0659551 -1.087369348 0) (104.9493504 -1.104998333 0) (104.9329938 -1.134730903 0) (104.5212869 -1.151313911 0) (104.338606 -1.163937478 0) (104.3275008 -1.195924745 0) (103.394228 -1.186965028 0) (102.6829666 -1.189285094 0) (102.6792386 -1.222351112 0) (98.50032437 -1.276268697 0) (99.27444383 -1.301533242 0) (99.26639747 -1.33583525 0) (99.75470829 -1.280567877 0) (99.48621046 -1.274900537 0) (99.49133406 -1.309376116 0) (98.49131899 -1.259450629 0) (98.16171629 -1.253431687 0) (98.1678516 -1.287616073 0) (97.24987493 -1.229910474 0) (96.97434107 -1.220039709 0) (96.98427643 -1.253147391 0) (96.23294966 -1.183928487 0) (96.01366046 -1.169646217 0) (96.02785703 -1.201026276 0) (95.4371733 -1.119684498 0) (95.27158953 -1.100560901 0) (95.29045409 -1.129613646 0) (94.80768421 -0.9849932658 0) (94.53980345 -0.9368144999 0) (94.5899882 -0.9847760892 0) (94.36555168 -0.8823248619 0) (94.22368969 -0.822290508 0) (94.28375044 -0.8634292728 0) (94.10680965 -0.7584243876 0) (94.00884713 -0.6824953572 0) (94.07701567 -0.7251544473 0) (106.0275647 -0.5813806845 0) (105.9821845 -0.6474967295 0) (105.9262983 -0.677075829 0) (105.9242241 -0.7032307085 0) (105.8514691 -0.7565446232 0) (105.8023065 -0.791585233 0) (105.7598652 -0.8046579852 0) (105.6187568 -0.8502072782 0) (105.5593538 -0.9116063789 0) (105.5084605 -0.9110116449 0) (105.4283406 -0.9305652035 0) (105.4101906 -0.9533023619 0) (105.1298085 -0.982813536 0) (105.0094789 -0.9982626347 0) (104.9951838 -1.023168849 0) (104.5680651 -1.038538557 0) (104.3787587 -1.049353396 0) (104.3693096 -1.07605718 0) (103.4064722 -1.068742221 0) (102.6986836 -1.071131841 0) (102.6946424 -1.098626828 0) (98.6455505 -1.156218811 0) (99.30332478 -1.178775008 0) (99.29651496 -1.207375059 0) (99.72987492 -1.157669534 0) (99.46549664 -1.151865695 0) (99.4707034 -1.180475671 0) (98.4708489 -1.136903397 0) (98.13872269 -1.131423631 0) (98.14425585 -1.159797648 0) (97.21688196 -1.110504627 0) (96.93766056 -1.101798741 0) (96.94640496 -1.129308074 0) (96.18463847 -1.070009082 0) (95.96127777 -1.057436479 0) (95.97376128 -1.083562249 0) (95.37189638 -1.01338714 0) (95.20177967 -0.9964853775 0) (95.21844547 -1.020741702 0) (94.72830284 -0.8967840992 0) (94.44764069 -0.8526257077 0) (94.49243437 -0.8928425284 0) (94.26372278 -0.8039502174 0) (94.11267106 -0.7498474231 0) (94.16676271 -0.7842988155 0) (93.9873872 -0.6920321497 0) (93.88201952 -0.6234085952 0) (93.94372777 -0.6599025214 0) (106.1370888 -0.5361885388 0) (106.0863077 -0.5963642035 0) (106.0354302 -0.6208122054 0) (106.022251 -0.6472408538 0) (105.942612 -0.6958954493 0) (105.8981534 -0.7246578608 0) (105.8430097 -0.7381478798 0) (105.6905116 -0.781119891 0) (105.6374212 -0.8315147068 0) (105.5800325 -0.8322562791 0) (105.4957691 -0.8496916026 0) (105.4796296 -0.8684187462 0) (105.1861556 -0.8961867346 0) (105.0624164 -0.9098985003 0) (105.0497695 -0.9303456778 0) (104.6085902 -0.9453796711 0) (104.4132198 -0.9547769194 0) (104.4050627 -0.9766387915 0) (103.4177267 -0.9714538487 0) (102.7154749 -0.9739593393 0) (102.7111923 -0.9963916919 0) (98.78321746 -1.056537957 0) (99.32881043 -1.077440339 0) (99.32263741 -1.100877938 0) (99.7046481 -1.056727243 -1.789834427e-36) (99.44454258 -1.050841303 0) (99.4497968 -1.074151117 0) (98.45186772 -1.036263348 0) (98.11782266 -1.031206164 0) (98.12287816 -1.054334402 0) (97.18756116 -1.012347391 0) (96.90512719 -1.004565088 0) (96.91292305 -1.027016133 0) (96.14184554 -0.9762013941 0) (95.91486239 -0.9649858398 0) (95.92597965 -0.9863488475 0) (95.31390525 -0.9256503731 0) (95.13967783 -0.9105324581 0) (95.15456867 -0.9304109229 0) (94.65702084 -0.824687251 0) (94.36462872 -0.7827705124 0) (94.40514163 -0.8159679062 0) (94.17153136 -0.7395276797 0) (94.01191217 -0.690072156 0) (94.06114569 -0.7183207767 0) (93.87872819 -0.6371329847 0) (93.76636643 -0.5745992621 0) (93.82278297 -0.6053892855 0) (106.2377893 -0.4997833149 0) (106.1818923 -0.5550915449 0) (106.1350445 -0.5746626328 0) (106.1119689 -0.6020979284 0) (106.0257788 -0.6471841957 0) (105.9850846 -0.6700957498 0) (105.9189036 -0.6849041433 0) (105.7553798 -0.7259063144 0) (105.7072869 -0.7661608122 0) (105.6442374 -0.7684008486 0) (105.556237 -0.7841795556 0) (105.5416828 -0.7991716839 0) (105.236574 -0.8261811667 0) (105.1096766 -0.8385377778 0) (105.0983189 -0.8548504456 0) (104.6442284 -0.8702823334 0) (104.4432851 -0.8785854227 0) (104.4361194 -0.8959874948 0) (103.4284442 -0.8932821175 0) (102.7330968 -0.8959296618 0) (102.728625 -0.9137303462 0) (98.91506539 -0.97555008 0) (99.35294608 -0.995585895 0) (99.34694656 -1.014316083 0) (99.67933242 -0.9757341366 0) (99.42347016 -0.9698178799 0) (99.42874283 -0.9882928513 0) (98.43402084 -0.9555241496 0) (98.09853907 -0.9507821788 0) (98.10323322 -0.9691257245 0) (97.16110766 -0.9334914334 0) (96.8758352 -0.9264169071 0) (96.88290025 -0.9442548891 0) (96.10337861 -0.9006884843 0) (95.87313401 -0.8905205836 0) (95.88319116 -0.9075351862 0) (95.26169795 -0.8548471839 0) (95.08373036 -0.8411277182 0) (95.09721979 -0.8570064952 0) (94.59227002 -0.7671965814 0) (94.28842617 -0.7266772326 0) (94.3258157 -0.7529945697 0) (94.08695867 -0.687948479 0) (93.91937319 -0.6419677082 0) (93.96473385 -0.664510552 0) (93.77876727 -0.5929025869 0) (93.6599206 -0.535331944 0) (93.71194003 -0.5609284906 0) (106.3321559 -0.4720289612 0) (106.2709564 -0.5233456032 0) (106.2271404 -0.5380602625 0) (106.1951999 -0.5674408453 0) (106.1025728 -0.609580076 0) (106.0648724 -0.626994734 0) (105.9889946 -0.6448140814 0) (105.8153461 -0.6837795048 0) (105.7707846 -0.7142337589 0) (105.7028497 -0.7184761903 0) (105.6114063 -0.7330394459 0) (105.5980237 -0.7445102913 0) (105.2824553 -0.7717008849 0) (105.1525826 -0.7830420673 0) (105.1421982 -0.7954805024 0) (104.6761297 -0.8119743349 0) (104.4700245 -0.8194587956 0) (104.4635992 -0.8326999389 0) (103.4389558 -0.8327644827 0) (102.7513668 -0.8355552526 0) (102.7467532 -0.8490609426 0) (99.04228006 -0.9119349517 0) (99.37727689 -0.9316533219 0) (99.37111219 -0.9460245267 0) (99.6542245 -0.9130829337 0) (99.40240112 -0.9071913006 0) (99.40766111 -0.9211958203 0) (98.41697692 -0.89309014 0) (98.08042552 -0.8885616571 0) (98.08486762 -0.9024830042 0) (97.13678823 -0.8723780016 0) (96.84896494 -0.8658125242 0) (96.85549766 -0.8793898011 0) (96.06816983 -0.841997637 0) (95.83494507 -0.832596108 0) (95.84421899 -0.8455927973 0) (95.21389573 -0.7996161617 0) (95.03248303 -0.786927238 0) (95.04493245 -0.7991102533 0) (94.5320666 -0.723071901 0) (94.21753862 -0.6842713725 0) (94.25234712 -0.7038570288 0) (94.00849076 -0.6479824569 0) (93.83324385 -0.6048356125 0) (93.8756103 -0.6219225543 0) (93.68541882 -0.5587133194 0) (93.56004418 -0.5052268273 0) (93.60920072 -0.5258014818 0) (106.4214089 -0.4518708967 0) (106.3547353 -0.5011154228 0) (106.3133477 -0.5112743374 0) (106.2735292 -0.5429876924 0) (106.1746944 -0.5828373847 0) (106.1390833 -0.5948647574 0) (106.0546035 -0.6167924753 0) (105.8716532 -0.6543928763 0) (105.8297191 -0.6753530493 0) (105.7574039 -0.6819336664 0) (105.6627278 -0.6956059973 0) (105.650191 -0.7037088286 0) (105.3250239 -0.7318968729 0) (105.1923017 -0.7425201047 0) (105.182612 -0.7512891727 0) (104.7053013 -0.7694644202 0) (104.4943624 -0.7763755448 0) (104.4884564 -0.7856906725 0) (103.4494661 -0.7887816652 0) (102.7700636 -0.7916958621 0) (102.7653673 -0.8011659515 0) (99.16568914 -0.864748735 0) (99.40285088 -0.8845034597 0) (99.39629924 -0.894769155 0) (99.62961147 -0.8675575298 -5.610177186e-36) (99.38145154 -0.8617404635 0) (99.3866727 -0.8715467072 0) (98.4004132 -0.8477254538 0) (98.0630519 -0.8433081068 0) (98.06734976 -0.8530861147 0) (97.1139187 -0.8277865477 0) (96.8237579 -0.8215426984 0) (96.82994364 -0.831133554 0) (96.03524898 -0.7989762614 0) (95.79925612 -0.7900861363 0) (95.80799701 -0.7993199392 0) (95.16924696 -0.7589422252 0) (94.98460533 -0.7469694643 0) (94.99632181 -0.7556685151 0) (94.47524731 -0.6918601766 0) (94.15090965 -0.654200809 0) (94.18382244 -0.6677621948 0) (93.93455942 -0.6191410984 0) (93.75200399 -0.5782206128 0) (93.79214337 -0.5901921904 0) (93.59748095 -0.5343892225 0) (93.46542414 -0.4829918647 0) (93.51204669 -0.4996156061 0) (106.5057725 -0.4423408039 0) (106.4360056 -0.487777046 0) (106.3950392 -0.4935266517 0) (106.3493296 -0.5283003014 0) (106.2443918 -0.5665993482 0) (106.2092624 -0.573428825 0) (106.1179171 -0.6001170715 0) (105.925555 -0.6372448099 0) (105.8853261 -0.6490548189 0) (105.8091431 -0.6581908683 0) (105.7114082 -0.6712834601 0) (105.6994236 -0.6761568932 0) (105.3653559 -0.7060648548 0) (105.229872 -0.7162346526 0) (105.2206287 -0.7215070968 0) (104.7326546 -0.7419350443 0) (104.5171291 -0.7484975404 0) (104.5115417 -0.7540814179 0) (103.4601156 -0.7604462303 0) (102.789001 -0.763479402 0) (102.7842586 -0.7691043329 0) (99.28595406 -0.8332634183 0) (99.43039834 -0.8532910813 0) (99.42329137 -0.8596353853 0) (99.60574168 -0.8382803135 3.280056824e-36) (99.36070237 -0.8325776967 0) (99.36586798 -0.8383780864 0) (98.38398804 -0.8185172042 0) (98.0459777 -0.8141025379 0) (98.05024337 -0.8199386233 0) (97.09183611 -0.7987942034 0) (96.79948972 -0.7926892027 0) (96.80550768 -0.7984976243 0) (96.00372117 -0.7707395213 0) (95.76511845 -0.7621240311 0) (95.77355663 -0.7677890461 0) (95.12665727 -0.7320300768 0) (94.93896405 -0.7204876475 0) (94.95022393 -0.7258796233 0) (94.42060516 -0.672909416 0) (94.08641264 -0.6355108206 0) (94.11888433 -0.6435746231 0) (93.86298246 -0.6009188039 0) (93.67337204 -0.5615170575 0) (93.71293799 -0.5685451952 0) (93.51234872 -0.519175404 0) (93.37647265 -0.4717430359 0) (93.42123516 -0.4815477944 0) (106.6129738 -0.4308710337 0) (106.5332485 -0.4808894379 0) (106.4694981 -0.4847839942 0) (106.4399136 -0.5220427333 0) (106.3276519 -0.5597792145 0) (106.2736212 -0.5625349187 0) (106.1924882 -0.5934463319 0) (105.9848218 -0.6313714276 0) (105.9387626 -0.6349204549 0) (105.8593434 -0.6467764983 0) (105.7586604 -0.6595964364 0) (105.7468184 -0.6613383454 0) (105.4044975 -0.693612604 0) (105.2663091 -0.703548933 0) (105.2571656 -0.7054766683 0) (104.7591542 -0.7286631358 0) (104.5392425 -0.7351095055 0) (104.5336313 -0.7371371834 0) (103.4712492 -0.7472264418 0) (102.808313 -0.7504544161 0) (102.8032875 -0.7522327127 0) (99.40463142 -0.8170591356 0) (99.46079721 -0.8374599826 0) (99.45258135 -0.8401374661 0) (99.58264989 -0.8246488972 0) (99.34005452 -0.8190932835 0) (99.34533419 -0.8210129699 0) (98.36723053 -0.8048234894 0) (98.02863986 -0.8002900126 0) (98.03311254 -0.8023208562 0) (97.06979038 -0.7847188076 0) (96.7753625 -0.7785701786 0) (96.78150161 -0.7807445217 0) (95.97265475 -0.7566321978 0) (95.73155442 -0.7480686581 0) (95.74002171 -0.7503038337 0) (95.08500367 -0.7182788772 0) (94.89438906 -0.7068911907 0) (94.90558142 -0.7091051376 0) (94.36018058 -0.6648642891 0) (94.00995989 -0.6262343516 0) (94.05882378 -0.6311956166 0) (93.77713868 -0.5915993001 0) (93.57924809 -0.5526292584 0) (93.64026038 -0.5570031318 0) (93.41033414 -0.5096635457 0) (93.26273337 -0.4574527316 0) (93.33591452 -0.4722501891 0) (93.47259807 -7.993248631 6.096105785e-20) (93.37653683 -7.906402511 1.236289781e-19) (93.4950961 -7.808368609 0) (109.5708526 -20.2362663 -8.261160552e-20) (109.5294989 -21.32853471 -9.049162714e-20) (108.4794365 -21.04026419 -7.381133272e-20) (95.49067837 -9.653013247 2.10584905e-19) (95.28664648 -9.551080241 2.039911037e-21) (95.41309832 -9.368835109 -2.049767398e-19) (95.79445726 -20.47985956 -1.52920084e-19) (94.53893924 -20.5145226 -4.882474146e-20) (94.47620137 -19.62019436 1.030504189e-19) (102.9684743 -29.59147416 0) (102.6241149 -29.42985353 -1.393532184e-19) (103.1860211 -29.03056474 1.433942333e-19) (107.4842369 -20.72316819 7.386333656e-20) (106.5425574 -20.31909019 0) (106.7750924 -19.3093041 6.771748327e-20) (82.4778658 3.761206134 -5.307336187e-19) (82.95922025 5.355884044 5.092546015e-19) (84.44790304 4.707396847 -1.993536093e-19) (90.42899026 17.46939014 0) (88.7464343 18.58866677 0) (90.18794911 20.57998483 0) (130.3142133 9.761494899 0) (129.3865083 11.59940067 2.550482223e-19) (131.6154611 12.73262806 -2.54875876e-19) (89.68410518 -4.17012551 9.367673219e-22) (89.9425729 -3.939499991 9.972812182e-20) (90.14998796 -4.103339408 1.941174519e-19) (88.36767545 -2.617727738 0) (88.67725349 -2.902648962 -1.696871054e-21) (88.31044293 -3.237658419 -2.217307958e-19) (130.8152125 -4.566711988 0) (131.2847729 -2.992665537 0) (133.2727691 -3.505356658 5.485348514e-19) (91.14274634 -5.240543215 0) (91.36278364 -5.079235932 8.954074427e-20) (91.50991022 -5.205229182 0) (90.34669477 -4.259254453 -1.934988547e-19) (90.53388368 -4.407661819 1.881452281e-19) (90.29105271 -4.604123526 0) (124.2908997 -13.87790878 0) (125.2593419 -13.03572025 0) (126.4347251 -14.1052049 0) (92.25301566 -6.271960794 8.13957219e-20) (92.46215402 -6.128117293 7.937723473e-20) (92.60076711 -6.271062779 -1.608210091e-19) (91.6522385 -5.331535307 -8.641052277e-20) (91.79040516 -5.458172431 8.455789636e-20) (91.57868607 -5.603027737 1.706948919e-19) (90.67253422 -6.405866015 -7.171425312e-23) (90.79168975 -6.388151064 -1.213576983e-19) (90.8110644 -6.418149056 0) (93.51493148 -7.529187035 2.960252156e-19) (93.71963886 -7.336428343 0) (93.90756037 -7.493530477 -1.056447522e-21) (92.74323769 -6.417310435 7.856126451e-20) (92.88998154 -6.565175472 -2.350346066e-19) (92.68280122 -6.722469403 0) (91.33040167 -7.740153512 4.894792277e-19) (91.57539436 -7.714099559 0) (91.60167372 -7.764656602 0) (91.2123088 -7.098086181 2.447842533e-19) (91.24178034 -7.136729072 -3.684087477e-19) (91.06751051 -7.166660745 3.743112528e-19) (113.3600014 -25.48746221 -5.130536693e-19) (113.3488322 -26.14286262 0) (112.6503432 -26.07083126 3.969683722e-19) (95.3581253 -8.958670008 1.928998619e-18) (95.54490643 -8.621699431 -1.872947027e-18) (95.8317206 -8.759913097 -4.283072433e-21) (94.10447418 -7.651030131 6.866980465e-20) (94.31151089 -7.808434445 -2.089095477e-19) (94.10867462 -8.032285582 -1.215423581e-19) (94.34070651 -8.742417293 5.776875206e-20) (94.21898444 -8.647068813 6.563855808e-22) (94.34243161 -8.525162566 -1.704711796e-19) (146.0206914 13.04503489 0) (145.8559576 13.97404101 -5.443955573e-19) (146.9680268 14.14456628 2.618370294e-19) (88.78004952 -5.183985869 0) (88.94495936 -5.089920361 0) (89.03847715 -5.151300034 -1.708286531e-19) (88.35234718 -4.863013892 0) (88.46370281 -4.881247411 -8.700573617e-20) (88.34021189 -4.990220438 -2.708438765e-19) (88.61535747 -5.382263546 -2.666239703e-19) (88.57416431 -5.343959255 0) (88.69158354 -5.301620297 0) (145.8771291 -1.64081346 -4.9043009e-19) (145.2340966 -1.40905783 -3.734201593e-19) (145.4269437 -0.7002193343 4.935396371e-19) (141.3238454 -10.06162479 0) (141.6602308 -9.558066249 9.652507832e-19) (142.0803415 -9.903317875 -1.435695531e-18) (147.3069061 11.34606264 -5.910679501e-19) (146.2508013 11.24402658 -3.754902218e-19) (146.1491822 12.14586449 5.080074931e-19) (145.5939838 0.02456911489 0) (145.7349594 0.7608182823 -1.503776928e-18) (146.4664811 0.563346708 -1.11162127e-20) (88.82844217 -5.411111586 0) (88.70737868 -5.464077762 0) (88.6596241 -5.423854778 0) (128.9342457 -20.11506259 -2.117149595e-19) (129.6568462 -19.70900276 -2.126808936e-19) (130.1007551 -20.49139386 0) (141.006432 -11.50848805 0) (140.6240916 -11.10209113 0) (140.9758232 -10.62743088 0) (90.98441496 -7.039718696 -1.22940723e-19) (91.15492019 -7.012661554 -1.21888908e-19) (91.18345996 -7.052593154 -1.219959808e-19) (90.83045593 -6.454054291 1.220192712e-19) (90.85005255 -6.487648604 -4.16475156e-23) (90.72098485 -6.506913968 0) (91.62807145 -7.817813769 5.938802905e-20) (91.65674648 -7.86979578 1.186870882e-19) (91.38813706 -7.898275954 -5.878980875e-22) (93.04133209 -7.374470302 -1.25127564e-19) (92.92330122 -7.467272839 6.354681907e-20) (92.83920326 -7.384145981 -6.368101968e-20) (111.9684713 -25.99640137 -7.536480786e-19) (111.2806837 -25.88594728 -8.531874237e-22) (111.3573454 -25.1682469 -2.686201667e-19) (94.72474123 -8.793926946 -5.453607906e-20) (94.60005675 -8.93929453 -5.573916715e-20) (94.4676337 -8.842742042 -5.716730052e-20) (87.14499045 -2.28536589 2.41034547e-19) (87.69998339 -1.897516641 0) (88.04007407 -2.28603378 0) (86.36581482 2.107207605 -1.287681196e-19) (86.40812601 1.266256975 -1.242048046e-19) (85.33008131 1.176067146 1.300550325e-19) (80.9690356 -4.120162227 -4.316198196e-19) (81.58629953 -3.31541124 0) (82.29168978 -3.789483231 -2.701905769e-19) (78.3379801 2.436624152 6.347589897e-19) (78.55127437 1.205730049 3.871242841e-20) (77.0868585 0.8709537566 0) (88.00395834 -4.991450018 -1.823432808e-19) (88.10124054 -4.849988089 1.771414961e-19) (88.23219132 -4.85185328 1.75710885e-19) (86.83145777 -4.909298842 -2.017334068e-19) (87.12642682 -4.907407756 1.958919827e-19) (87.11739268 -5.199054213 0) (116.2697922 -17.95407276 9.883063251e-19) (117.2542982 -17.79969539 -1.436447532e-19) (117.7783093 -18.80275951 -3.062294852e-19) (100.3157916 -24.65828355 0) (100.8584514 -25.22671307 1.551022721e-19) (100.0484329 -25.79213444 -1.571694019e-19) (86.11416111 -5.320060591 1.05057971e-19) (86.13560676 -4.89988594 0) (86.50211736 -4.908226619 4.153939739e-19) (82.97372006 -4.150473046 0) (83.61713828 -4.418829272 0) (83.3594991 -5.10604554 -2.574057744e-19) (124.8075328 38.05520079 1.027302647e-19) (124.2817127 35.12771822 -9.426901744e-19) (121.6614528 35.42126245 -8.989711458e-20) (122.195421 -23.74854851 -4.894144645e-19) (121.937219 -23.01565449 0) (122.6183392 -22.80943139 6.614754448e-19) (117.9108022 -23.85435424 -6.696526524e-19) (118.5700328 -23.8276409 2.73175406e-19) (118.7579024 -24.47216196 -1.350484257e-19) (127.9055293 -21.62616676 -4.101050236e-19) (127.5058683 -20.86264757 1.970006159e-19) (128.2172122 -20.4994866 -7.979703928e-21) (123.3082072 -22.59280527 3.432606003e-19) (124.000413 -22.35324985 1.771911592e-19) (124.3119912 -23.09643105 -3.551717993e-19) (81.9229221 25.37450187 4.507890917e-20) (79.54156918 26.37623431 6.958761119e-20) (81.50032231 29.35628158 3.497157979e-19) (72.70333452 4.421072783 0) (73.20699165 6.83160919 2.79829201e-18) (75.29915302 6.025831874 -1.317593721e-18) (83.92817352 32.2448854 -1.55556955e-19) (87.34810779 34.31022613 0) (88.47307625 31.49552466 0) (122.4017492 58.70974867 -3.855302623e-19) (122.2949019 54.85953656 3.82440491e-19) (119.1774739 54.98973397 8.361533176e-20) (91.42684908 -7.430829076 1.253608393e-19) (91.45043356 -7.47350107 0) (91.24963567 -7.495151031 0) (71.31369579 -7.848834533 -3.317015426e-19) (72.37969861 -6.496942962 0) (73.58630165 -7.292700136 0) (67.31092273 2.092420629 -1.900219863e-19) (67.69913151 0.2272317351 0) (65.39093257 -0.09938096378 0) (88.33023911 -5.151870475 3.267896462e-20) (88.29816145 -5.137896173 0) (88.38193026 -5.102814168 0) (88.49616303 -5.150101502 -2.584388939e-19) (88.39543603 -5.188972763 1.30855409e-19) (88.36287143 -5.168975824 -1.345547447e-19) (143.7744271 -5.397898747 -6.41701712e-19) (144.0428669 -4.798743704 1.025920871e-18) (144.546479 -5.042749916 -5.177837827e-19) (143.6912367 -6.932652445 2.603386918e-19) (143.2203215 -6.627208795 0) (143.5003882 -6.049052002 0) (146.3574714 6.143432343 -2.782902738e-19) (146.3893735 6.952349407 2.723837232e-19) (147.3029575 6.919924573 -5.648161888e-19) (147.0728294 4.454935784 1.678365709e-18) (146.2517234 4.548121957 0) (146.3096461 5.329005513 -5.417826141e-19) (132.0844976 -20.50068496 0) (131.7031822 -20.71582312 0) (131.6241925 -20.29953899 5.329328136e-19) (122.5752254 -26.75435316 0) (122.7792336 -26.39112572 0) (123.1336222 -26.30002919 -2.873711988e-19) (120.7069956 -26.87183309 0) (121.0503342 -26.84197513 -1.299056002e-19) (120.9148485 -27.17347587 0) (107.5846891 -29.72933509 -2.494359852e-19) (107.9337133 -29.8726451 0) (107.4405633 -30.19381979 0) (93.95469897 -26.80322123 0) (94.10831454 -27.2348563 0) (92.158307 -27.20502954 -1.947597036e-24) (96.16414678 -8.866218732 -1.696610311e-21) (96.51811252 -8.942935309 1.062398419e-19) (96.40824409 -9.337937788 0) (92.82932535 -11.60467348 0) (92.39816479 -11.55648949 -1.193386498e-21) (76.45449274 -8.567939692 4.32765174e-19) (106.4291089 -29.92105129 0) (106.8839575 -29.50930781 -7.315431203e-21) (107.2168257 -29.67596677 -2.551032252e-19) (98.44173017 -23.89747771 -4.224028947e-20) (99.28470644 -23.44900159 4.402390433e-20) (99.76506484 -24.13109286 -2.360089692e-21) (59.42538036 5.216953096 -3.335589661e-18) (60.08221105 8.362830139 1.626721097e-18) (62.79565726 7.24583412 0) (90.65827002 -6.22729014 -6.025873869e-20) (90.68300249 -6.248756073 0) (90.57642214 -6.27322998 0) (90.51000823 -6.205152041 -6.189086207e-20) (90.60770171 -6.182050995 -6.168236767e-20) (90.63393601 -6.202105442 1.201090874e-19) (91.1932352 -7.364001235 -2.424223407e-22) (91.37903648 -7.343834421 -1.24631244e-19) (91.40317126 -7.383216726 0) (56.52847942 -9.145371949 -6.157755074e-20) (75.36031068 -14.82416872 2.297812064e-19) (72.4841402 -15.14845822 -3.05008519e-19) (143.8124943 20.52588812 -5.266521889e-19) (143.4733837 21.60810124 5.258603288e-19) (144.6990339 22.0143868 -8.266913694e-21) (145.7568252 19.00247995 1.380323132e-19) (144.5861515 18.61906459 -5.352344075e-19) (144.2070971 19.59826709 1.343620577e-19) (138.3829473 -13.88207924 -2.171000797e-19) (138.7666664 -13.49098697 2.185106696e-19) (139.0915449 -13.88417772 -2.904090679e-21) (137.8839761 -15.15130577 0) (137.5980162 -14.71089713 0) (137.989466 -14.34540064 4.290091677e-19) (91.012246 -6.761649661 -1.07602535e-19) (91.03579439 -6.798393925 0) (90.88738237 -6.822501998 -2.513376592e-19) (90.8233363 -6.706685885 0) (90.96310563 -6.683434641 1.889886997e-22) (90.98796173 -6.71997008 1.144767862e-23) (119.8942774 -27.37250293 -1.236436579e-19) (120.0135928 -27.00807598 0) (120.3559511 -26.98200918 0) (92.12797611 -26.11665288 -2.244004889e-20) (93.61754879 -26.00525997 -1.318232291e-20) (93.78412035 -26.46022428 -1.158867268e-20) (88.05610159 -22.81810753 -2.41573833e-19) (86.93289128 -22.28332389 2.325131697e-18) (89.36093332 -22.43735737 -1.630248848e-18) (117.5240532 19.81712057 0) (115.5395222 19.8988846 -2.070368106e-21) (115.5667997 22.11619167 -3.409311025e-20) (116.7042594 -24.67737024 5.030848602e-19) (116.5866877 -23.99945889 0) (117.2409044 -24.00777286 0) (113.7931527 -20.60885002 4.756706319e-19) (114.0302389 -21.79335625 1.170782989e-19) (112.8645897 -21.77947497 3.353610326e-19) (109.9150463 25.37443793 -2.680518019e-19) (112.3103514 26.6076384 1.098241727e-19) (113.0894834 24.04979192 -5.100676149e-19) (119.0657733 35.36393332 0) (116.5675811 34.98913875 0) (115.8723555 37.61307356 0) (116.1093538 -25.45029479 -6.217046333e-20) (116.1286191 -26.18979667 0) (115.427654 -26.20724853 4.135088131e-19) (130.2761842 30.20844416 1.170160759e-19) (132.1908424 28.95988982 5.161821671e-19) (130.8631088 27.12559381 0) (116.3234316 54.09439058 0) (113.4164164 53.77063409 9.958410774e-19) (111.9239945 56.06368281 -5.166752587e-19) (99.69225398 0.8629676512 6.408769838e-21) (99.77174327 0.7603249673 -9.373706572e-21) (99.78309525 0.6865113913 2.560431079e-20) (99.73828952 0.9257432573 3.011823613e-21) (99.74801332 0.8403772463 -1.850588665e-20) (99.66587323 0.9549298805 2.504729602e-20) (99.86562137 0.5992405185 0) (99.81432944 0.7210627626 1.230536084e-20) (99.8172798 0.7915131274 -3.198468584e-21) (99.60389937 1.272720989 -1.383951971e-22) (99.7074522 1.114289204 5.837707761e-21) (99.71439623 1.017514872 5.922490915e-21) (99.68220075 1.32412257 3.952001014e-21) (99.68462206 1.217160836 1.747046108e-22) (99.58015003 1.391917351 3.370977795e-23) (99.83132055 0.8583467071 1.080362652e-20) (99.76784986 1.038408741 8.62856328e-23) (99.78002216 1.12593444 7.080463327e-21) (99.54489058 1.78330859 0) (99.66651718 1.550854656 0) (99.66235682 1.436304271 -5.291656145e-21) (99.66514131 1.786635253 4.57538875e-21) (99.65206334 1.668927883 -4.573482211e-21) (99.53432957 1.921515574 1.876086833e-20) (99.8125504 1.163303182 -8.983638772e-21) (99.74402854 1.415360183 0) (99.77137019 1.510521121 0) (99.56441309 2.335080284 0) (99.68280124 2.019567122 1.598088769e-20) (99.65866696 1.905076391 -2.41866367e-20) (99.72384777 2.23265391 -2.662107688e-20) (99.68705746 2.130621478 2.661374918e-20) (99.58084993 2.464773859 -6.232004548e-20) (99.82689554 1.468778308 6.568506182e-21) (99.76792879 1.797357709 0) (99.81504307 1.88010567 1.520268241e-21) (99.70413531 2.799722955 -3.483613733e-20) (99.78739491 2.409664335 -1.210841627e-21) (99.73861022 2.327401295 0) (99.86950985 2.537306329 4.95669813e-20) (99.81220581 2.481339614 2.817740071e-20) (99.74966273 2.885565581 6.519570637e-20) (99.88470993 1.699973814 -3.599865857e-21) (99.85555914 2.087050749 1.905907559e-21) (99.91952646 2.130650853 -1.036855448e-20) (99.94271932 3.033983645 1.41122076e-20) (99.96265029 2.602761747 1.439089818e-20) (99.90125272 2.578954485 -3.516333669e-20) (100.058805 2.601090948 -5.025555342e-22) (99.99697307 2.610459203 1.881478211e-22) (100.0016133 3.04348027 -4.367252905e-22) (99.97236912 1.780025808 0) (99.98605991 2.190396903 1.196826452e-22) (100.0532276 2.183259644 1.948027335e-22) (100.1953859 2.947818672 0) (100.1478861 2.53172479 -4.419963648e-21) (100.0905344 2.573695497 -6.836346788e-21) (100.2221424 2.405507415 2.236003146e-21) (100.1727778 2.474211128 1.090618654e-20) (100.2413215 2.879043738 -1.43285756e-20) (100.0591075 1.688567916 0) (100.1106943 2.078784136 -1.993254548e-21) (100.1686156 2.024278777 1.628475921e-21) (100.3691128 2.591683682 7.562878281e-21) (100.2763937 2.235631775 -2.297607756e-21) (100.2377172 2.324458737 -1.623851988e-21) (100.3094849 2.034912315 6.736361208e-21) (100.2823305 2.137667571 3.689516318e-22) (100.3882008 2.476816645 0) (100.1154015 1.463385526 0) (100.1896811 1.799869731 -3.110054129e-21) (100.2293569 1.717081426 0) (100.4315465 2.100580356 -8.042935137e-21) (100.3226766 1.818759677 -7.230833075e-23) (100.3057451 1.927223938 1.936653187e-21) (100.31996 1.600771148 9.001505644e-21) (100.3114231 1.708802071 4.061913652e-21) (100.425848 1.971560062 4.163065067e-21) (100.1348772 1.178305822 0) (100.2129941 1.444860382 4.245999399e-21) (100.2361728 1.357184801 -4.245285055e-21) (100.4067301 1.596892356 0) (100.3050319 1.39026633 5.004476803e-21) (100.3032179 1.493660058 -2.369111848e-21) (100.2808969 1.193653809 0) (100.2844212 1.289541131 -7.538945234e-21) (100.3872037 1.479602477 -5.248699882e-21) (100.1270726 0.8969465631 0) (100.1963716 1.095681208 2.53485042e-21) (100.2066416 1.017244217 0) (99.27371998 1.20191507 0) (99.39358317 1.129900403 3.338375497e-21) (99.43888194 1.01227659 -2.004679583e-20) (99.29909656 1.39607905 -1.593733465e-20) (99.34595005 1.257532764 9.74522585e-21) (99.21594825 1.340814933 3.314266727e-21) (99.57103082 1.063405479 -6.20695165e-21) (99.46439049 1.16465405 -1.299833855e-20) (99.42750196 1.290246401 1.279262993e-20) (99.04329533 1.832055895 1.28906755e-20) (99.20657831 1.70619881 1.858229249e-20) (99.25141127 1.545454566 1.213136635e-22) (99.12536716 2.059182809 7.016807142e-20) (99.16306332 1.877483395 0) (98.9894561 2.020533867 0) (99.45815747 1.561199094 -1.147763741e-20) (99.31927282 1.723652934 0) (99.29080404 1.886514027 -2.335399689e-20) (98.87232034 2.645984544 2.275858688e-20) (99.06960576 2.446311106 -7.182136699e-22) (99.09223772 2.249612378 -2.412514536e-20) (99.05467853 2.854874667 0) (99.05558561 2.647693426 -2.100404177e-20) (98.85218671 2.872250394 0) (99.39512776 2.171214071 -3.86753685e-20) (99.23581542 2.414321131 1.009533296e-19) (99.23797099 2.596721164 -4.539092393e-21) (98.87814316 3.587893345 4.596457352e-21) (99.08919527 3.274806874 -1.418369244e-19) (99.06384279 3.064514724 -1.959226547e-20) (99.18657413 3.680590311 1.214006837e-19) (99.12810474 3.481368162 1.820694693e-20) (98.9222347 3.827168135 -2.115409792e-21) (99.45397879 2.800408729 -6.314930507e-20) (99.30422507 3.139148629 3.686689638e-21) (99.35455135 3.309388424 0) (99.19133811 4.478338253 0) (99.35403801 4.036052389 -5.527137036e-21) (99.26008118 3.866938069 9.969003514e-21) (99.58661022 4.300862798 0) (99.46166053 4.182074655 0) (99.32459121 4.651955116 -7.110516658e-20) (99.67112947 3.302030371 -1.431897067e-20) (99.57602728 3.733219883 0) (99.67667279 3.832691186 -6.691512786e-20) (99.82456933 4.960919913 -1.732473886e-20) (99.86291878 4.440071296 3.074725061e-21) (99.7197591 4.387840457 0) (100.1493742 4.438306008 0) (100.0055958 4.457308714 0) (100.0048623 4.981725174 1.537337114e-20) (100.0040338 3.492984531 2.409610967e-22) (100.0053727 3.962793541 0) (100.119832 3.946701082 1.555115879e-20) (100.5103109 4.789999332 -4.146748375e-20) (100.4104633 4.295847959 5.393098098e-21) (100.2834997 4.383194193 -1.546919507e-21) (100.6199252 4.039536886 7.879461961e-20) (100.5213047 4.180065729 1.844334109e-21) (100.6486507 4.652969538 -1.844003333e-21) (100.3203173 3.296324116 0) (100.4127906 3.728960996 0) (100.4931293 3.609883602 0) (100.9445168 4.095005184 1.117625542e-19) (100.7651972 3.704181144 0) (100.6993848 3.879567575 -7.672411293e-20) (100.8473106 3.326408668 5.820602519e-20) (100.8123421 3.518610861 -5.819381079e-20) (101.0005887 3.879437921 -1.100531243e-19) (100.5095112 2.818290987 -1.182029483e-20) (100.6496726 3.165166386 -1.626023619e-21) (100.6809882 2.999662161 -3.595447935e-21) (101.0679432 3.21141887 3.324068476e-20) (100.8766017 2.937254727 8.71734023e-21) (100.8667962 3.131702077 0) (100.8639167 2.557672527 1.364570919e-20) (100.8740211 2.746063396 -3.306491267e-23) (101.0623212 2.994230251 -3.279462347e-20) (100.5570706 2.233198596 4.542721141e-21) (100.7061048 2.492483458 2.589632831e-22) (100.6992855 2.323989459 4.789062534e-21) (100.9902995 2.379384366 -1.309773277e-19) (100.8174402 2.193905762 0) (100.8433907 2.373287515 1.264970386e-21) (100.7504855 1.856501671 9.086809733e-20) (100.7847914 2.021566305 1.68840509e-20) (100.9497552 2.186919309 -2.196753945e-20) (100.5041856 1.665757852 4.398955519e-23) (100.6364008 1.847029404 2.74605416e-20) (100.6104074 1.700406453 -1.090815619e-20) (98.70538877 1.370418869 2.283998134e-19) (98.85858545 1.350836205 0) (98.95108162 1.196670793 -2.269729444e-19) (98.66324418 1.704673844 0) (98.76225576 1.519934275 0) (98.59321969 1.54888909 2.296185004e-19) (99.07487584 1.413258759 0) (98.92337162 1.473540479 0) (98.83927832 1.648113196 0) (98.25250639 2.178153671 2.894609721e-19) (98.4675611 2.121315561 -1.698686125e-19) (98.56354689 1.905633942 1.68076573e-19) (98.28976717 2.602301153 -2.740847281e-19) (98.37653429 2.352234407 0) (98.14279419 2.422932296 -3.464498719e-19) (98.79939865 2.149758281 5.260061915e-20) (98.59498463 2.261038994 -2.672712123e-19) (98.52507342 2.493165954 -1.541338515e-19) (97.8401016 3.299029095 5.698955769e-20) (98.13713314 3.163464527 2.146965566e-19) (98.20882172 2.87246325 6.018662491e-20) (98.03828232 3.804968897 -4.975399838e-20) (98.07847139 3.474556204 0) (97.76048323 3.640842173 -2.695582019e-19) (98.62274724 3.086664711 1.347732316e-19) (98.36538449 3.288494863 4.793111807e-20) (98.3399399 3.584634778 2.07678602e-19) (97.66766305 4.805895241 2.028532391e-19) (98.03453393 4.511935655 3.468650772e-19) (98.02151959 4.151869995 -2.377289034e-20) (98.17361324 5.245356875 3.829786795e-20) (98.08309273 4.878841896 -3.461032659e-19) (97.7104477 5.227912783 0) (98.68277236 4.176155518 -1.551779009e-19) (98.40496505 4.527309345 -1.599042938e-19) (98.48919659 4.842187567 -1.842120736e-20) (98.1685263 6.470858792 3.096200407e-20) (98.49538234 5.933158788 -2.307067739e-21) (98.30997676 5.60064532 1.776742506e-20) (99.00549492 6.4743215 0) (98.72843565 6.228753123 -2.378328941e-20) (98.44427822 6.827154372 0) (99.16058052 5.146660911 1.871659342e-19) (98.96419632 5.670567349 -1.771708012e-19) (99.19339458 5.874157846 1.453456352e-19) (99.56837823 7.484511483 -9.310567826e-20) (99.65219894 6.769458469 0) (99.31709111 6.657494809 -1.043672285e-21) (100.3319219 6.759880868 -5.166323858e-20) (99.99682418 6.80294268 0) (99.99019857 7.52368415 0) (100.0034492 5.542221523 3.099673581e-21) (100.0013177 6.146241092 -2.073080125e-21) (100.2739078 6.112496617 -4.888043152e-20) (101.1351998 7.115040651 0) (100.9347284 6.469946596 0) (100.6480872 6.646951031 5.148236498e-20) (101.3891122 5.966824726 -5.789792295e-21) (101.1828625 6.239428532 -7.694038207e-20) (101.4311631 6.837879858 0) (100.7982212 5.15122603 5.670257557e-20) (100.9743955 5.678670614 -8.849098256e-20) (101.1484584 5.448436858 1.630724099e-19) (101.9945215 5.781458359 2.369021978e-21) (101.6719682 5.341159244 -1.161198212e-19) (101.5514536 5.663993276 2.212675719e-19) (101.7998784 4.672139279 -1.153495386e-19) (101.7530251 5.008177752 1.441374057e-19) (102.0815775 5.396813638 1.534932744e-19) (101.2175259 4.248105918 7.895355769e-21) (101.4668408 4.624575358 -7.885081893e-21) (101.5122038 4.331320599 1.374125125e-19) (102.1168235 4.260289144 1.711874227e-19) (101.8071791 4.01337066 5.381287255e-21) (101.8164404 4.339054313 -2.048402618e-20) (101.7344645 3.399870988 0) (101.7776421 3.698311786 0) (102.0751681 3.912676883 -2.213236766e-19) (101.2742744 3.237721986 3.946057414e-20) (101.5121025 3.473936967 -7.521707427e-20) (101.4797798 3.203948702 2.589691878e-19) (101.8617405 2.997746739 -1.259890188e-20) (101.6161411 2.862657558 0) (101.6804625 3.122473346 0) (101.4695618 2.391776061 5.063832711e-20) (101.5449905 2.619153815 -2.596157e-20) (101.7736712 2.734067166 0) (101.1321881 2.343465648 -2.673566658e-19) (101.3319809 2.48914896 -1.676039815e-19) (101.268659 2.276456489 4.891131192e-20) (98.05267899 1.285268172 1.280907705e-19) (98.21706283 1.333127804 6.20289669e-20) (98.37242406 1.166276852 -6.15561017e-20) (97.89346787 1.716763145 2.520147711e-19) (98.05586187 1.516589999 -1.255911965e-19) (97.87619646 1.466198651 1.301079261e-19) (98.41928901 1.556568416 2.338534619e-19) (98.23845978 1.546106255 -4.78094649e-19) (98.09243772 1.746111834 4.717629535e-19) (97.29511629 2.136721127 0) (97.54786894 2.186478532 4.955457587e-19) (97.72488543 1.939826263 -3.786153597e-19) (97.17322301 2.785051913 -5.008480069e-19) (97.36275416 2.468235956 0) (97.08166238 2.42129276 0) (97.89408302 2.470515695 0) (97.63196951 2.488817146 -9.870033764e-19) (97.47345924 2.790447743 4.971438729e-19) (96.3971335 3.514243397 -2.69056779e-19) (96.78885201 3.531206298 5.159987653e-19) (96.97809082 3.139509476 2.820802688e-21) (96.45004609 4.447756609 0) (96.61087031 3.965753676 3.116206543e-20) (96.16764134 3.980791632 5.306581971e-19) (97.41021395 3.782465267 5.595887256e-20) (97.02703677 3.893608789 -3.118324534e-20) (96.90822773 4.337068899 -2.339445139e-19) (95.62020819 5.742092651 0) (96.23038954 5.568117768 -2.468483023e-19) (96.31842901 4.981161725 9.966657596e-22) (96.26245954 6.883961499 -5.598076904e-20) (96.20453585 6.205210176 2.621397948e-19) (95.54035706 6.470720339 -2.957894259e-20) (97.27925752 5.570193823 0) (96.78061865 5.899233514 4.170821186e-19) (96.86161874 6.480354745 -3.876523939e-19) (96.01333212 8.966068568 -1.785351881e-19) (96.72360023 8.286462936 -1.590822527e-19) (96.42823127 7.586961542 -4.64950803e-20) (97.74066684 9.505209798 -1.5032213e-20) (97.16178365 8.941572267 6.357239581e-20) (96.51634976 9.786697888 1.78238882e-19) (98.09992558 7.472813374 0) (97.67965813 8.174214523 -3.442789959e-20) (98.16121535 8.624840447 8.645532577e-20) (99.04834719 11.35212657 -4.36438345e-20) (99.21096487 10.17925412 9.856153089e-20) (98.43751754 9.929426056 -2.257252399e-20) (100.774993 10.10822265 -6.717093636e-20) (100.0073147 10.23729028 2.255614028e-20) (100.0485551 11.40907525 8.769891813e-21) (99.98655786 8.322900433 0) (99.99075506 9.219349275 9.757455769e-21) (100.6133693 9.126816725 1.889983876e-21) (102.5390188 10.29648592 1.146630642e-19) (102.058215 9.395029085 -7.327846627e-21) (101.4685289 9.815367973 1.14447976e-19) (102.8950536 8.32288059 -1.092971999e-19) (102.5336696 8.887000617 0) (103.0803995 9.66562311 -1.375059714e-19) (101.7292577 7.477672522 -5.802571632e-20) (102.0905387 8.159264629 6.866140927e-20) (102.4109397 7.691573221 3.368362781e-20) (103.9072156 7.563564518 -1.871732456e-19) (103.3121706 7.12246343 2.73434674e-20) (103.1500306 7.728573835 -2.075301558e-20) (103.4111074 5.96873754 5.078360676e-20) (103.3951784 6.531652824 -8.760469965e-20) (103.9699766 6.895231511 -1.090890818e-19) (102.4583949 5.783863147 2.0488158e-20) (102.8917889 6.159719074 -1.918688428e-19) (102.9257416 5.655727676 1.707388016e-19) (103.7445485 5.114888888 2.293446214e-19) (103.2804538 4.936045503 1.641112453e-19) (103.3681785 5.435850574 0) (103.0265837 4.044803717 -1.149867296e-19) (103.163487 4.471208914 -1.066300391e-19) (103.5914435 4.609594548 -2.855075277e-19) (102.4078086 4.118026292 0) (102.7697716 4.305648449 -5.311162813e-20) (102.6627918 3.913289498 -1.096003235e-19) (103.0463913 3.352422162 5.97605323e-20) (102.7209126 3.297938222 0) (102.8769051 3.654236932 1.12341238e-19) (102.4082775 2.680663507 -2.928109408e-20) (102.5634357 2.974458147 0) (102.8588358 3.011189989 -5.993619167e-20) (102.0198916 2.833077766 1.373162878e-20) (102.2834293 2.914210012 1.406161717e-20) (102.153108 2.636432048 2.83812218e-20) (97.45090514 0.8954699562 1.405545185e-19) (97.58933107 1.021991806 1.373650257e-19) (97.80280794 0.8763708969 -6.657559606e-20) (97.11498642 1.364511029 0) (97.3622377 1.182367208 2.183045986e-21) (97.20560303 1.045133025 4.670719111e-21) (97.69976798 1.393610789 -1.346782406e-19) (97.52778969 1.298751021 -2.153730201e-21) (97.30227009 1.488932653 8.907944136e-22) (96.31922155 1.633116261 0) (96.55104232 1.807275095 -2.99741821e-19) (96.84491683 1.571726499 0) (95.88800913 2.385701693 0) (96.23272399 2.077220989 1.470225263e-19) (95.96648458 1.888395099 -4.412439337e-21) (96.79439913 2.342201514 0) (96.51030085 2.228230438 0) (96.20653323 2.544822393 0) (94.70219599 2.919922333 3.89209658e-19) (95.12016358 3.156655039 1.184153124e-19) (95.51764077 2.743936156 -2.383990365e-19) (94.26117652 4.221537654 0) (94.70081069 3.646942088 -8.117589004e-20) (94.20482362 3.392490593 8.190448084e-20) (95.69856618 3.929105179 -1.108857248e-18) (95.20526678 3.823086387 0) (94.85532269 4.393793479 0) (92.487169 5.483106281 -8.320963451e-20) (93.36380182 5.744708747 1.589967622e-19) (93.8123401 4.916431135 -1.630409886e-19) (92.60759425 7.973292613 -8.596349011e-20) (92.93765618 6.743199127 -2.0447155e-19) (91.87604612 6.53069534 -3.485371717e-19) (94.77949836 6.668648901 5.264329416e-19) (93.90956751 6.778656112 3.854943413e-20) (93.74553871 7.846311916 -2.746118843e-19) (90.73863426 11.63676597 -3.503052004e-19) (92.59264328 11.13854888 9.695030525e-21) (92.43960199 9.423515289 0) (94.43266037 14.59114108 1.711153161e-19) (93.23092804 12.91810911 0) (90.46901645 13.73260674 3.266995472e-20) (95.69747986 10.72464768 -5.011079686e-20) (94.64781943 11.7669064 5.007686808e-20) (95.68194553 12.98577196 -9.08237943e-20) (99.06265754 19.95334818 -1.450968212e-20) (98.46548418 16.45975037 -7.185081802e-21) (96.24693731 15.8440183 -1.23195087e-19) (102.4799704 15.71932094 -6.391615996e-20) (100.6050452 16.38563179 1.265265169e-20) (101.2443497 18.80400738 -2.446800069e-20) (100.1359658 12.7789312 1.570062923e-21) (100.3074638 14.40749448 -1.547347245e-20) (101.7971931 13.98540726 2.830288004e-21) (106.3509936 14.60224533 -4.94726052e-19) (104.9912785 13.4440834 5.126942835e-20) (103.9446547 14.66831543 6.085090893e-20) (106.0855192 10.95337813 -6.317821823e-21) (105.6844395 12.18021331 2.055179231e-19) (107.0053092 13.01662048 6.410101553e-20) (103.7573433 10.48464246 0) (104.6095276 11.3223195 0) (105.0479169 10.3026143 -2.67802416e-20) (107.2466409 8.98743376 -3.050620657e-19) (106.2545501 8.730706554 0) (106.2552609 9.79846718 -1.274930602e-19) (105.9358316 6.886907274 -2.595664197e-19) (106.1358444 7.760515193 2.611306434e-19) (107.0249149 7.916289908 3.029327666e-19) (104.6137093 7.231920062 0) (105.3328842 7.52558503 -2.296578427e-19) (105.2078542 6.731555044 -1.665209025e-20) (106.0100118 5.39161909 2.576833916e-19) (105.3872398 5.410493948 -7.165661857e-20) (105.678394 6.107872806 2.776825976e-19) (104.7526305 4.239526147 -1.533221327e-19) (105.0742399 4.790002516 -7.472390645e-22) (105.6258813 4.742683963 -7.269249007e-20) (104.0532436 4.714107445 0) (104.5482534 4.777555215 0) (104.2842307 4.254169324 0) (104.5003981 3.237603288 6.877248303e-20) (104.1204217 3.322730237 -8.470791289e-20) (104.432577 3.75275184 -1.346970607e-19) (103.5352461 2.608969524 1.791334326e-20) (103.8203321 2.944024927 -2.084268533e-21) (104.1549699 2.854592154 -7.348336067e-20) (103.1683825 3.02058476 -2.7756761e-20) (103.4898433 2.998626891 -1.722572639e-20) (103.2424086 2.669606273 4.786050065e-20) (97.0298303 0.2259401179 0) (97.1117131 0.4144944942 -2.289275981e-21) (97.37591346 0.3238363591 -2.121674965e-19) (96.49457351 0.637579781 -3.076914309e-19) (96.81915995 0.5185141664 1.482698717e-19) (96.72527628 0.3107852066 0) (97.06147723 0.8879412645 -2.893869847e-19) (96.93192341 0.7120280485 0) (96.62368212 0.8510607105 2.443203932e-21) (95.59636412 0.6452791099 1.649253833e-19) (95.7367596 0.9292406845 1.574994972e-19) (96.13503077 0.7736344949 -4.771843657e-19) (94.80314963 1.311465545 -2.518663525e-19) (95.29501424 1.107341406 4.214556503e-19) (95.13433819 0.7888504292 0) (95.71650874 1.662641135 4.823008086e-19) (95.4904849 1.401061066 -8.299967736e-20) (95.02950562 1.641804081 0) (93.38607367 1.349328927 -1.827511924e-19) (93.6339741 1.822827454 4.61122607e-19) (94.25319559 1.54799375 0) (92.12385396 2.529385717 -9.949252884e-20) (92.93151401 2.148199668 -3.705121493e-19) (92.64077078 1.594011054 0) (93.73279234 3.056630699 2.251135796e-20) (93.3019223 2.639885477 -2.249921692e-20) (92.57257745 3.104882789 2.314605878e-20) (89.57011001 2.532139565 4.448420402e-19) (90.07373519 3.554138919 -2.091390685e-19) (91.18580431 2.985795257 2.101551829e-19) (86.85338813 5.936032055 4.627694139e-19) (88.71368105 4.293017622 0) (88.05650183 3.019648223 -2.296747383e-19) (90.75519971 6.077802454 -9.602793268e-19) (89.66366601 5.330921503 0) (88.35191541 6.553533565 -1.125125908e-19) (86.04787434 12.59621859 -4.313639196e-19) (86.4247983 10.73141772 -8.741067069e-19) (84.98094939 10.14592689 1.775310947e-18) (93.28365163 29.61702801 0) (93.89869418 26.1133399 0) (90.74216276 24.67197825 0) (100.1849069 26.17686139 1.500778693e-19) (97.14344659 26.56585354 0) (97.56127655 29.94905891 -1.678887074e-20) (97.24586821 21.66272819 8.950084467e-21) (97.15134819 23.85734653 4.431727443e-20) (99.60859753 23.74259176 -4.962747868e-20) (112.1816388 8.482819649 3.595235066e-19) (110.8559749 8.907891702 -3.955387768e-19) (111.5508692 10.43870157 2.297404549e-19) (109.405573 6.550511638 -2.504846033e-20) (110.1324447 7.63267258 1.920430539e-19) (111.2345721 7.214113124 0) (107.9968244 7.965191534 0) (109.0405857 7.876095687 -1.9061026e-19) (108.4805725 6.812285427 1.698052446e-19) (108.6666222 4.499174185 -9.702125812e-20) (108.005873 4.858600418 -8.689048001e-20) (108.6928849 5.638475148 0) (106.7386174 3.625461935 1.646086925e-19) (107.3533249 4.195075201 8.414998879e-20) (107.9161105 3.859107651 0) (106.197563 4.632506531 2.316141178e-19) (106.7770363 4.451860722 -2.116077378e-21) (106.2426303 3.871528204 -1.616362657e-19) (105.988382 2.448562107 -8.020176942e-20) (105.6329022 2.716509419 0) (106.1648523 3.137230256 -3.236576621e-19) (104.6925065 2.039363283 1.864830072e-20) (105.1423635 2.354043066 -1.565229259e-19) (105.4492278 2.106505305 2.753837931e-19) (104.4899466 2.727539401 2.887541804e-19) (104.8209462 2.561229607 -7.126163396e-20) (104.4131274 2.234237575 0) (96.88656453 -0.6064115999 -8.422550801e-22) (96.89436111 -0.3913087416 1.794320748e-19) (97.18740743 -0.4098844621 1.371054758e-19) (96.20681697 -0.3420924767 0) (96.56826216 -0.3686795932 -1.930085313e-20) (96.55806816 -0.6048123986 -1.180802547e-19) (96.6512112 0.09225908869 7.673503914e-20) (96.59892488 -0.1353175262 -1.54511558e-19) (96.24212237 -0.08483294955 0) (95.35522028 -0.5950587031 8.496897912e-20) (95.36650373 -0.2794416842 4.288130515e-19) (95.80741717 -0.3120343242 -1.662752668e-19) (94.33952883 -0.2132731634 4.53009e-20) (94.87931892 -0.2457322695 -8.688830737e-20) (94.87092811 -0.5952611173 0) (95.00979249 0.4535225775 0) (94.92481043 0.1060625225 -5.299715123e-21) (94.38531441 0.1809059865 -1.407160344e-19) (93.09581369 -0.6532873241 -2.143962501e-19) (93.07026624 -0.1674621224 9.504047123e-20) (93.73964604 -0.1852358766 -1.189251169e-19) (91.47606767 -0.1966444846 0) (92.31986289 -0.1663948463 0) (92.37356837 -0.7133376224 0) (92.44216958 1.005398974 0) (92.3379928 0.4116029446 1.949073197e-19) (91.46374206 0.4694893925 0) (125.2572885 16.46212546 0) (123.4817743 17.70564068 2.061810508e-19) (124.9098189 19.80259588 -6.473404273e-19) (120.9921537 14.41226813 3.666290169e-19) (122.1586371 15.92441721 3.87897985e-19) (123.717756 14.84129385 2.35158552e-20) (116.6954375 4.458847133 6.424653174e-21) (115.8010194 5.770139629 -1.335891386e-19) (117.588859 6.910846813 -3.295744079e-19) (112.8045396 4.041467696 -2.419028281e-19) (114.2164728 4.829918336 1.903738573e-19) (114.9589153 3.712871382 6.875146719e-20) (112.3105038 6.60640661 0) (113.3201028 5.804976159 0) (112.0607195 4.886408364 -7.822493508e-22) (110.8414761 2.11214069 3.296362436e-19) (110.4064722 2.833892601 -1.058643072e-19) (111.5410415 3.38524034 0) (108.4670024 1.980264001 1.979276603e-19) (109.3858865 2.370921256 -3.014051292e-19) (109.7522845 1.738827558 -1.126266656e-19) (108.4510029 3.44049094 0) (108.946419 2.942136536 0) (108.0951147 2.486536958 -1.818151105e-19) (107.1169663 0.93382141 -2.696935504e-19) (106.894933 1.370278672 0) (107.6394178 1.650553571 1.85933667e-19) (105.6239082 0.931399164 -1.662112747e-19) (106.2254522 1.133336328 -1.684899528e-19) (106.4139205 0.7444910016 8.846345962e-20) (105.7359234 1.817782013 -1.639829376e-19) (105.997579 1.492313289 4.142444726e-19) (105.4297551 1.254694669 -8.215946618e-20) (97.0405939 -1.460346989 9.637748849e-22) (96.97665301 -1.251572159 -3.220584868e-19) (97.26779113 -1.198953541 1.657017622e-19) (96.30003991 -1.366631209 2.016466986e-19) (96.65414942 -1.307091402 1.165059836e-19) (96.72308352 -1.532864218 -1.562702279e-19) (96.5696491 -0.8415303093 1.57079132e-19) (96.60265239 -1.076190883 0) (96.24365973 -1.115995262 -1.615902994e-19) (95.58601818 -1.788784738 2.549954274e-19) (95.49279075 -1.505041681 3.757776013e-22) (95.91342941 -1.431878966 8.419814724e-20) (94.54131521 -1.686679749 -1.363571299e-19) (95.03617519 -1.588819195 2.621996288e-19) (95.14200047 -1.893987224 -1.734812807e-19) (94.89684097 -0.9376581887 1.756346602e-19) (94.9532396 -1.269600465 -2.661301624e-19) (94.44326942 -1.341466159 1.816195869e-19) (93.59540016 -2.31471853 4.646911844e-20) (93.42903231 -1.943288339 0) (94.00615417 -1.802984974 9.112116056e-20) (92.15129148 -2.325072614 1.966675335e-19) (92.80999648 -2.115244674 -1.964802732e-19) (93.00725638 -2.506284842 0) (92.48278131 -1.22147014 -9.520145214e-20) (92.6322643 -1.688229921 1.967043289e-19) (91.92949283 -1.873652956 -1.017962819e-19) (131.9113501 2.226494622 5.668327459e-19) (131.8050767 4.090002065 -3.749088709e-20) (134.1099624 4.295622971 -1.670248858e-19) (127.8284665 3.628982954 -3.361234809e-21) (129.7148528 3.850458348 -5.118826971e-19) (129.8579588 2.186494154 9.957632968e-19) (128.928354 7.253402921 0) (129.4114412 5.570786645 -9.81356199e-19) (127.5221704 5.136792365 1.408926335e-20) (117.9464199 -1.628896919 -1.64568561e-19) (117.990249 -0.08263808754 2.980608756e-19) (120.1566057 -0.02475366012 3.285020791e-19) (114.3841379 -0.2233853478 2.463552283e-19) (116.078085 -0.1498972471 -2.377812092e-19) (116.06257 -1.478375794 -7.476160622e-20) (115.525113 2.484922842 -2.294269651e-19) (115.9003747 1.183111992 -7.31338096e-20) (114.224427 0.920460706 2.607593002e-19) (111.5521808 -1.2160944 3.474225005e-19) (111.5401021 -0.3555844231 -1.200376414e-19) (112.8795377 -0.2930686826 -2.612904474e-19) (109.2786881 -0.4575388198 9.459381205e-22) (110.3454273 -0.4104825329 -3.302402767e-19) (110.3578992 -1.16149883 -3.315498545e-19) (110.038563 1.055666903 0) (110.2382089 0.3338353336 2.173651686e-19) (109.1873535 0.1936573417 1.013255454e-19) (107.4798378 -1.038492691 -1.400029705e-19) (107.4745364 -0.5272698803 1.846956927e-19) (108.3256947 -0.4958557067 1.938471348e-19) (106.0349669 -0.5708739907 4.192705444e-20) (106.7139409 -0.5519579943 1.770723806e-19) (106.7161912 -1.005069221 -8.909037175e-20) (106.5602877 0.3299538926 8.939110931e-20) (106.6614136 -0.1044996968 -1.769530086e-19) (105.9923412 -0.1722482569 2.111443091e-19) (97.4412447 -2.236597989 0) (97.32151766 -2.052962631 7.366441514e-20) (97.59001844 -1.943126394 -1.79583099e-19) (96.70127074 -2.292545674 -7.888535179e-20) (97.02491256 -2.169063429 1.150130886e-19) (97.15294177 -2.365090388 -1.109609459e-19) (96.80869048 -1.752348242 -1.157526455e-19) (96.90975723 -1.964622002 7.294499253e-22) (96.57739686 -2.07416834 1.976163577e-19) (96.1322913 -2.80260311 1.629459441e-19) (95.97364008 -2.567490657 2.273996272e-21) (96.35096354 -2.424807345 7.919567487e-20) (95.1353043 -2.891772345 -8.570845199e-20) (95.56863696 -2.722459876 0) (95.73982339 -2.970654882 -8.195203868e-20) (95.26768843 -2.184538183 0) (95.41065714 -2.460563613 0) (94.9627304 -2.615708337 1.314153933e-19) (94.39905966 -3.564809222 1.74747871e-19) (94.18292601 -3.282187222 9.017321971e-20) (94.67330811 -3.077627939 -5.508063115e-21) (93.12651979 -3.756140068 9.09013407e-20) (93.6658046 -3.507823136 -1.81164734e-19) (93.89894839 -3.798131893 1.762783999e-22) (93.21803806 -2.865765871 -2.116381982e-21) (93.43839182 -3.198222294 -1.867476864e-19) (92.87726524 -3.441476736 9.277345323e-20) (89.73043432 -5.029288125 -2.287384023e-19) (89.8438813 -4.928527525 -1.517845475e-19) (89.94204234 -4.985046272 1.517559073e-19) (89.64561543 -4.801538188 2.320151598e-19) (89.74534648 -4.85860115 -1.54049034e-19) (89.63100128 -4.964573982 -7.66364041e-20) (127.9863793 -9.980458012 -4.535870313e-19) (128.806434 -8.773010594 -5.091341165e-19) (130.3944885 -9.685846911 4.901334123e-19) (125.8871369 -7.351645454 2.130526657e-19) (127.3008576 -8.010734011 -9.24303321e-19) (126.5775258 -9.143904148 4.539483499e-19) (128.538233 -5.467446504 4.790618057e-19) (127.9580652 -6.767956077 4.600719773e-19) (126.466733 -6.126777715 -4.322246604e-19) (115.8793032 -6.981570765 0) (116.6274879 -5.814444252 -2.961759235e-19) (118.4056542 -6.617587963 1.798837879e-19) (113.5275943 -4.56302372 2.618892957e-19) (115.0057894 -5.132829357 2.09837832e-20) (114.3815031 -6.17281992 0) (115.8675111 -2.76768136 -9.740317898e-20) (115.5086877 -3.992215488 7.318664149e-20) (113.943418 -3.557095165 -1.371061056e-19) (110.5942759 -4.402461005 2.247084228e-19) (110.9683582 -3.671046618 -1.114392549e-19) (112.1846915 -4.080412903 -1.20606267e-19) (108.8714263 -3.019443921 1.769421625e-19) (109.8672478 -3.319947738 -4.224521496e-19) (109.5469685 -3.971205586 2.093008171e-19) (110.2794854 -1.904709511 2.252775244e-19) (110.1141538 -2.627787585 1.058149137e-19) (109.0828523 -2.406042243 5.479951528e-20) (106.953344 -2.99708769 3.59602531e-19) (107.1627936 -2.533635191 -3.693425316e-19) (107.9727224 -2.759529977 -1.579027846e-19) (105.7798573 -2.162325535 -3.321982599e-21) (106.4344222 -2.335986535 4.055902381e-21) (106.2497995 -2.751547152 -2.742569631e-21) (106.6696219 -1.457346139 4.544198962e-20) (106.5754653 -1.902732137 0) (105.9057342 -1.773861561 -2.083103552e-20) (98.02675036 -2.88806014 1.357344995e-19) (97.86608099 -2.738331631 -1.061491426e-19) (98.101566 -2.585905912 -5.997708549e-22) (97.31990529 -3.067377995 -3.68110647e-19) (97.60510921 -2.898470402 1.446169307e-19) (97.77565463 -3.057183 1.392658893e-19) (97.29290396 -2.552266366 2.956369107e-19) (97.44379173 -2.730260762 -2.537428229e-19) (97.14852755 -2.889150363 -7.655282164e-20) (96.88183011 -3.623052163 -7.575753293e-20) (96.67879441 -3.435626988 7.906733098e-20) (97.0111789 -3.246067255 1.533197458e-19) (95.93994719 -3.851853823 1.180571137e-19) (96.32204019 -3.637200866 -1.580942573e-19) (96.53676191 -3.83461667 7.56780766e-20) (95.92300479 -3.205589257 8.01408155e-20) (96.11718038 -3.427760635 7.897093477e-20) (95.72311603 -3.632008086 0) (95.34550937 -4.551205101 4.037212639e-20) (95.0959351 -4.323455263 4.049144331e-20) (95.53150852 -4.080441305 1.276020539e-21) (94.14591399 -4.851905735 0) (94.63331228 -4.58085138 1.944098473e-21) (94.89301688 -4.818526698 8.181171516e-20) (94.13753404 -4.072180323 -8.788417125e-20) (94.38199992 -4.332474553 -8.410439186e-20) (93.88539893 -4.595918639 -1.933435788e-21) (91.07545391 -5.898759147 1.447812067e-19) (91.18387522 -5.829947891 2.861866559e-19) (91.25109216 -5.882988198 -6.491918997e-22) (91.04498718 -5.717541988 7.140493101e-20) (91.11532464 -5.768331157 -2.869257525e-19) (91.00819765 -5.842278622 0) (120.2781163 -16.46824737 -3.47310356e-19) (121.2930039 -15.92964898 -3.640897559e-19) (122.1236046 -17.03829433 3.640003377e-19) (112.0355707 -10.26461294 0) (113.077054 -9.65533348 0) (114.2171754 -10.84467012 1.382139756e-19) (110.9588279 -7.702456793 5.377011492e-20) (111.9894009 -8.610243821 3.009109089e-20) (111.0857831 -9.183620335 5.36694851e-20) (113.6562031 -7.101902427 0) (112.8513978 -7.914975796 -2.856066094e-19) (111.7015799 -7.062217213 -2.961644263e-20) (108.4886549 -6.679464277 -1.024999981e-19) (109.082063 -6.215709614 -5.233326425e-20) (109.9891551 -6.907937127 -1.066493991e-19) (107.4590697 -5.081457725 -3.588756563e-19) (108.2387852 -5.61057665 4.798316611e-20) (107.7202619 -6.039037674 -5.742784221e-21) (109.1637602 -4.574829126 -5.169477194e-20) (108.7233252 -5.121026199 0) (107.8825993 -4.635286039 1.827098911e-19) (105.7256973 -4.543901152 -4.943873435e-21) (106.0811346 -4.209800641 -1.26136586e-19) (106.7406084 -4.617641438 -4.222457685e-20) (104.9285569 -3.532174576 -1.920647503e-20) (105.4784717 -3.850203867 0) (105.1623108 -4.157540235 -4.639494995e-21) (106.0266591 -3.144907607 2.151575925e-20) (105.7687311 -3.512517401 0) (105.1875141 -3.223656771 0) (98.74650025 -3.389247467 1.164986944e-19) (98.55645757 -3.279005677 6.527580682e-20) (98.75245605 -3.096325931 0) (98.09570365 -3.672397417 0) (98.33729013 -3.470506264 -6.564094122e-20) (98.53839042 -3.587329831 -1.110138213e-19) (97.95489502 -3.205757971 -2.759250881e-19) (98.14208213 -3.343893092 2.036950635e-19) (97.88896717 -3.538576795 1.397825101e-19) (97.78619489 -4.248400498 1.360225289e-19) (97.54725147 -4.111242842 -1.41161144e-19) (97.83240104 -3.885614005 1.393960905e-19) (96.90655087 -4.604866462 1.425418535e-19) (97.23919658 -4.350571723 -2.468228454e-21) (97.49177589 -4.495958683 6.899519813e-20) (96.76128143 -4.019636116 0) (96.99532622 -4.191945868 0) (96.64961463 -4.436535186 -1.493168332e-19) (96.45447372 -5.339971625 0) (96.15892765 -5.16268485 1.455960416e-19) (96.54722378 -4.875265904 -1.471211798e-19) (95.28914445 -5.791455923 -7.657581315e-20) (95.73982639 -5.468148515 0) (96.04965323 -5.659731365 0) (95.16293096 -5.046028357 -2.121566744e-21) (95.44465759 -5.263082454 -1.878743666e-21) (94.98269526 -5.569131221 -3.099777696e-19) (92.10554097 -7.032158161 6.975142696e-20) (92.24380907 -6.958818408 -6.884902504e-20) (92.3171636 -7.035540321 0) (92.10104346 -6.797261928 -2.761873136e-22) (92.17203846 -6.87187785 -1.380227493e-19) (92.03507599 -6.947727455 -7.050463446e-20) (107.8428415 -11.41059994 -8.714448332e-20) (108.8631913 -11.30283671 2.181862466e-20) (109.4072259 -12.50941605 -8.97916834e-20) (107.7219941 -9.260475727 -4.401222035e-20) (108.2972373 -10.22432681 2.860994439e-21) (107.3894571 -10.36255083 -8.170176322e-20) (110.1589895 -9.642549068 9.67121137e-23) (109.2249936 -9.987841338 4.674673332e-20) (108.5432632 -9.015906593 -9.057851816e-20) (105.9416361 -7.815077829 9.291378199e-21) (106.5842302 -7.634615344 -1.560008407e-19) (107.1480811 -8.400109174 0) (105.51145 -6.340184474 -1.468811307e-19) (106.0369193 -6.950186524 1.517764408e-19) (105.4625995 -7.134176779 -7.814633682e-20) (107.1744036 -6.403998565 0) (106.6095681 -6.706310487 -4.01522045e-20) (106.0213397 -6.10343563 2.018127849e-19) (104.1273337 -5.489140359 1.35036869e-19) (104.5425361 -5.311263061 0) (105.0125237 -5.796609106 1.50459484e-19) (103.6914314 -4.488711654 7.494509662e-20) (104.1023282 -4.877465781 -1.38362779e-19) (103.727349 -5.049888312 1.385549487e-19) (104.8243635 -4.430903366 0) (104.4691094 -4.670569922 -1.805220646e-20) (104.0232183 -4.293355335 8.996983122e-20) (99.54685902 -3.73591541 0) (99.34837481 -3.656672224 -3.40158806e-19) (99.49922506 -3.455643181 7.743764833e-21) (98.98498205 -4.090787597 -2.361259281e-19) (99.1764735 -3.867983019 2.314940601e-19) (99.38609585 -3.950672319 -3.474908563e-21) (98.74556659 -3.691146386 3.344831189e-21) (98.95950913 -3.782191026 3.673408994e-19) (98.75502464 -4.000890098 -2.48738223e-19) (98.7946911 -4.672259273 6.784429688e-21) (98.54558961 -4.577357254 -3.6323367e-19) (98.77466348 -4.326694278 2.419192358e-19) (98.02742911 -5.131433255 1.814082015e-20) (98.29700509 -4.844833747 2.465434057e-19) (98.56176486 -4.944961383 6.428469005e-20) (97.75190721 -4.626856088 -6.786442478e-20) (98.0220478 -4.739891554 0) (97.73500193 -5.019747102 -1.476501474e-19) (97.73991818 -5.897390182 1.221144642e-19) (97.41717501 -5.77335338 -2.477020816e-19) (97.73490661 -5.439818749 -2.613117944e-19) (96.69712831 -6.526363159 1.223261281e-19) (97.07163517 -6.134280074 3.086690194e-19) (97.41883136 -6.270937213 -6.254002787e-20) (96.37444552 -5.835464922 1.397459714e-19) (96.71711862 -5.990527383 1.337577803e-19) (96.3181917 -6.366533535 -1.998402947e-19) (93.88003225 -8.358843587 -5.981655239e-20) (93.77407529 -8.268060319 -5.902752624e-22) (93.89500991 -8.160624291 0) (93.46775347 -8.481517518 -6.450485132e-20) (93.63333951 -8.37596255 1.251195617e-19) (93.73723766 -8.471926802 -6.156668729e-20) (93.43333894 -8.187837769 6.351815731e-20) (93.53201721 -8.28092758 5.9621966e-22) (93.36948692 -8.384225048 -6.494105841e-20) (102.6858373 -26.73881211 -8.394735748e-21) (103.3418493 -27.1664722 3.258531967e-19) (102.6013977 -27.84454453 -1.902383977e-19) (104.4640367 -25.89065299 -1.789142217e-19) (103.9596051 -26.50932931 0) (103.3212395 -26.09440463 1.107311828e-21) (105.2932282 -27.21838244 -2.100383075e-19) (104.6153553 -26.86455048 4.251323567e-21) (105.1200012 -26.18924725 -1.94787733e-19) (103.8757451 -14.84143721 3.106592348e-19) (104.9526604 -15.53002722 -9.751567768e-21) (104.5431111 -16.73191694 1.048883945e-19) (105.2334779 -13.16694527 0) (105.1787754 -14.28635641 0) (104.1661247 -13.74619748 9.525728991e-20) (107.583734 -15.08629588 -7.229797631e-20) (106.3207474 -14.74283121 7.203069017e-20) (106.2750159 -13.50689037 -7.200834371e-20) (104.2735687 -10.92316871 1.226876438e-19) (105.0713976 -11.15580257 3.805379829e-20) (105.1912446 -12.12006341 -6.144238911e-20) (104.6529617 -9.442710874 5.91887552e-20) (104.8863686 -10.26213143 -3.67323425e-21) (104.1508401 -10.09403418 -2.448784436e-20) (106.5124254 -10.40728779 -4.613596452e-20) (105.675068 -10.36988531 8.839983865e-21) (105.3708106 -9.500009488 0) (103.5273263 -7.967822357 0) (104.0958563 -8.002972125 0) (104.3859532 -8.691286427 6.392054758e-20) (103.4852352 -6.803396216 -2.43389642e-19) (103.7926494 -7.374821771 0) (103.2711135 -7.367335705 1.427805127e-20) (104.8935137 -7.264336154 9.907582464e-20) (104.3353955 -7.343179192 -1.338374105e-19) (103.9798464 -6.754159561 -3.916914759e-20) (102.4760285 -5.852662361 8.887177699e-20) (102.8805946 -5.809827627 -5.691270994e-20) (103.1798091 -6.283204551 6.405099128e-20) (102.3112552 -4.984981311 0) (102.5906022 -5.378991736 1.222911893e-19) (102.2179023 -5.431088049 8.4528468e-20) (103.3482034 -5.19031443 1.275700532e-19) (102.9682946 -5.299449993 -2.50800698e-19) (102.6585643 -4.901304589 -9.325201764e-20) (100.3809083 -3.901720524 0) (100.1720687 -3.876751749 1.555829203e-19) (100.2770793 -3.672021803 1.025737124e-19) (99.90778693 -4.322380598 0) (100.0481543 -4.093748617 0) (100.269635 -4.116733649 1.001833649e-19) (99.60059634 -4.012209273 -1.134709626e-19) (99.82401859 -4.059163236 -5.376227906e-20) (99.67044768 -4.288176732 1.11025468e-19) (99.8486639 -4.837526543 1.014377853e-19) (99.58523905 -4.820649306 -1.058038268e-19) (99.7531647 -4.563977355 -1.869149045e-21) (99.21095425 -5.388930195 0) (99.40444661 -5.094726418 5.418969483e-20) (99.68496739 -5.108185172 -4.955496746e-20) (98.83451648 -5.015002973 -5.888349627e-20) (99.11914438 -5.064013876 -5.424594284e-20) (98.90555992 -5.360265902 0) (99.1355673 -6.048562032 1.500508602e-19) (98.7872459 -6.05246637 -2.543957423e-20) (99.00496033 -5.706610183 -1.349022823e-20) (98.32726329 -6.847032392 1.131982044e-20) (98.56028092 -6.431070152 -1.165508263e-19) (98.93966055 -6.41787211 1.359375576e-21) (97.78520803 -6.360045731 0) (98.17184638 -6.412574195 8.076014323e-20) (97.89826931 -6.833195787 -1.633421071e-19) (95.50592108 -9.996422541 2.4525591e-21) (95.74010065 -10.05960673 -1.499379937e-21) (95.52516507 -10.32554505 -6.543403401e-22) (97.97017711 -15.33957818 0) (97.96183055 -16.25018602 -3.087704179e-20) (96.97928486 -16.2162538 3.107076645e-20) (99.17692099 -18.06252199 -6.684743076e-21) (98.92866018 -17.06941454 -9.979543472e-21) (99.70061575 -16.81771312 -7.318550686e-21) (101.0939995 -11.77980379 2.416703024e-20) (101.5892564 -12.51671856 0) (101.1231303 -13.09239928 -1.640719485e-20) (102.1200381 -11.24327093 -3.664219528e-20) (101.908936 -11.88023483 3.292618897e-20) (101.3857124 -11.25723677 -2.392639949e-20) (103.2884768 -13.14883976 -8.822835854e-20) (102.5376605 -12.51646198 -3.308479313e-20) (102.7441131 -11.7723498 3.682157369e-20) (101.7732817 -9.590514789 0) (102.2977092 -9.958221411 -8.215738093e-20) (102.2450337 -10.5947386 0) (102.2315283 -8.748554716 2.188734491e-19) (102.2894208 -9.341500591 8.165789215e-20) (101.7805929 -9.037700031 1.826602163e-20) (103.4725724 -9.878685147 -4.994544556e-20) (102.8534314 -9.62733796 2.435954164e-20) (102.7679277 -8.97805191 0) (101.5608098 -7.488248632 -4.314597877e-19) (102.0046559 -7.649324797 1.351390222e-19) (102.133707 -8.182572648 -2.222616464e-19) (101.6903377 -6.677560653 0) (101.8551311 -7.147303959 0) (101.4347514 -7.020135939 1.741692812e-19) (102.7723455 -7.322114465 1.040595486e-19) (102.3000072 -7.247603079 -1.039948168e-19) (102.1073608 -6.749599831 0) (100.9856831 -5.777272589 -7.152746352e-20) (101.3357944 -5.8269152 -5.15545091e-20) (101.5149815 -6.236593868 4.838454379e-20) (100.9777932 -5.0958198 7.6002734e-20) (101.1563616 -5.448164895 4.982006547e-20) (100.8269086 -5.415056086 -1.854403229e-21) (101.8533492 -5.458612724 1.775815139e-20) (101.4990018 -5.463387479 -1.044609972e-19) (101.2985575 -5.098758586 -2.569051743e-20) (101.1823529 -3.909203035 8.59967118e-20) (100.9874094 -3.920820822 -3.51616246e-19) (101.0537087 -3.723798934 0) (100.8223831 -4.3386927 0) (100.9116366 -4.124557905 9.020745474e-20) (101.1150089 -4.109379422 3.34058772e-21) (100.4881212 -4.128777799 -1.922638175e-19) (100.702599 -4.131210048 0) (100.6003574 -4.351242288 0) (100.8459371 -4.767470857 0) (100.6071728 -4.803849178 -2.208726453e-19) (100.7194179 -4.565335528 0) (100.3642562 -5.320723066 1.847507292e-21) (100.4882739 -5.0550774 4.419577211e-20) (100.7390376 -5.010187367 -3.729822704e-19) (99.9597946 -5.10530977 4.946071527e-20) (100.2280932 -5.087201806 0) (100.0889699 -5.362376179 2.339366495e-20) (100.4048005 -5.819216944 3.104972114e-19) (100.1102834 -5.902867562 -1.075393864e-20) (100.2372019 -5.602606063 1.817922454e-19) (99.88266962 -6.566724644 1.532846112e-19) (99.98889788 -6.223495706 0) (100.3014043 -6.12103099 -3.096754044e-19) (99.30607428 -6.376154028 -9.266552239e-20) (99.6567067 -6.309928126 0) (99.52599497 -6.675588793 -2.864458758e-21) (100.1491181 -7.133439951 0) (99.78576223 -7.33239832 7.166074957e-20) (99.8075019 -6.939177207 -1.579927758e-19) (99.97439944 -8.206824159 -1.23721425e-22) (99.85215098 -7.731381593 -1.389710552e-19) (100.2373795 -7.491667426 9.844663163e-20) (98.92994336 -8.17432173 7.961758516e-20) (99.42106801 -7.960732458 -1.16724037e-19) (99.59404137 -8.51022813 3.724165297e-20) (90.18893687 -7.359900117 -5.233774343e-20) (89.59836174 -7.628459857 -2.160408802e-20) (98.21549957 -8.474648169 1.463490569e-20) (98.06053623 -9.76652444 9.727329034e-22) (93.34934064 -9.681770947 -4.546974756e-20) (94.20690021 -9.14726033 -3.324853659e-20) (91.21426653 -11.04263634 -1.66926817e-20) (92.3740646 -10.31181498 0) (97.71702367 -10.4452715 4.230507478e-20) (99.17240207 -9.621046282 1.287972927e-20) (99.09346358 -10.29285354 -1.292979217e-20) (98.69956344 -10.23837259 1.300306582e-21) (99.65910731 -10.24301442 -4.041330172e-21) (99.38259798 -10.3265776 -1.374842671e-21) (99.37367563 -9.671807323 2.333556406e-21) (99.48662701 -11.91747576 5.954929e-22) (99.41624358 -11.06937957 1.381939302e-21) (99.78025373 -10.94776474 3.887221422e-21) (99.92393883 -9.292233255 5.661931949e-20) (100.1323666 -9.843420975 1.490285074e-20) (99.91692805 -10.07871826 8.778963401e-21) (100.4106982 -9.222002568 -5.078638908e-21) (100.2947568 -9.552744838 0) (100.0446632 -9.049233605 -5.61476228e-20) (100.9495559 -10.65842172 9.111937973e-20) (100.5906921 -10.08952507 -1.631049324e-20) (100.7397505 -9.699536508 7.496727981e-20) (100.2138754 -8.122677215 -1.191759245e-20) (100.5341864 -8.479199822 0) (100.4889242 -8.86026278 7.284135274e-22) (100.5275152 -7.694056432 -9.659803058e-20) (100.5463887 -8.087649989 2.826143614e-20) (100.2168417 -7.775319678 -2.824621586e-20) (101.3231909 -8.723321533 -1.616802464e-19) (100.9133397 -8.404884918 0) (100.8927774 -7.967368184 2.669658084e-21) (100.0944034 -6.719521997 3.16850712e-20) (100.4173365 -6.922785603 -6.433555369e-20) (100.4828946 -7.304247111 2.977166205e-19) (100.2409215 -6.196293795 -2.237065233e-21) (100.3352664 -6.552575652 -7.506370155e-20) (100.0199069 -6.378873749 1.058836973e-19) (101.0416558 -6.876446836 -8.13057788e-20) (100.6754183 -6.719467677 7.497371673e-20) (100.5689681 -6.335740844 1.193758057e-19) (99.7442085 -5.426212708 -5.70923645e-20) (100.0295383 -5.530217018 3.957236342e-20) (100.1381015 -5.855162903 -3.779782254e-20) (99.80380623 -4.927419705 0) (99.91716235 -5.221098189 -1.53264263e-20) (99.64289089 -5.134633307 -5.587223753e-21) (100.5097893 -5.363469704 2.178239982e-20) (100.2061761 -5.29814987 0) (100.0795677 -4.989993093 0) (101.913978 -3.781550925 8.73368506e-20) (101.7392532 -3.824532347 3.632521586e-20) (101.778929 -3.642233136 0) (101.6373465 -4.202941804 0) (101.6925009 -4.011224273 3.617522425e-20) (101.8726956 -3.962792943 -1.777604066e-19) (101.3131835 -4.085140719 2.437962475e-19) (101.5058454 -4.052227166 0) (101.4439583 -4.249721793 1.53233983e-19) (101.7011556 -4.534415503 3.098508761e-19) (101.5024459 -4.604860802 -3.245696781e-19) (101.5736592 -4.400498274 3.242986003e-19) (101.3449741 -5.036145739 0) (101.4253417 -4.816536469 3.44348522e-20) (101.6306594 -4.735937326 -3.429728892e-20) (100.9799955 -4.953978531 0) (101.2089114 -4.889084828 0) (101.1197383 -5.120937863 0) (101.4084082 -5.375758749 2.49384253e-19) (101.1853289 -5.499568053 -4.206091482e-21) (101.2638745 -5.263986881 1.733269715e-20) (101.0523471 -5.988477467 2.506271787e-19) (101.1129859 -5.741744104 0) (101.3399451 -5.598598007 0) (100.5946117 -6.005926293 2.90773971e-19) (100.8655636 -5.878978154 0) (100.8004405 -6.149505746 2.198923844e-19) (101.2832202 -6.281615538 0) (101.0408873 -6.492086518 2.515122247e-19) (101.0165672 -6.238211201 -4.430070685e-19) (100.5191098 -6.984218989 -2.432389941e-20) (101.1148175 -6.762691659 -2.64097851e-20) (101.3095515 -6.525509886 -2.252993735e-20) (100.5772573 -7.247430183 -2.517042001e-21) (100.8700742 -7.003539993 2.247809216e-19) (100.5328674 -7.284315746 -1.428581985e-19) (92.43749167 -6.463784203 -1.587431605e-20) (91.85446141 -6.662176436 0) (96.8080813 -6.785108543 0) (99.07205208 -7.794808427 0) (96.32719055 -7.856906279 0) (96.91040019 -7.495720193 -1.01130538e-19) (94.97853435 -8.674774847 1.088762945e-19) (95.68315753 -8.247381825 0) (98.87125516 -8.212995343 -9.139695275e-20) (99.41643555 -7.628006291 0) (99.36801773 -8.049468797 0) (99.31743748 -8.020067961 -8.98166126e-21) (99.42434399 -8.069500611 0) (99.39100805 -8.098033625 0) (99.39881151 -7.670226291 0) (99.37408656 -9.090055468 1.648771239e-20) (99.38011695 -8.568656406 0) (99.46241923 -8.53353385 0) (99.3749145 -7.494721374 7.799050456e-20) (99.48306304 -7.890608275 0) (99.45840993 -8.003742269 0) (99.49260465 -7.558439047 -9.634532684e-22) (99.493858 -7.740201535 0) (99.35583008 -7.364264243 -1.784356246e-19) (99.83249959 -8.580275866 6.865481788e-21) (99.65106503 -8.144718125 2.014901087e-19) (99.6770143 -7.935642714 -2.545394713e-19) (99.25987861 -6.820385126 -2.841309011e-19) (99.45965573 -7.123263962 1.478245612e-19) (99.4810918 -7.35102243 -1.481454661e-19) (99.38533022 -6.626491202 -2.071492546e-19) (99.42766876 -6.880276238 1.612084705e-19) (99.21530938 -6.603207554 -4.483862901e-21) (99.92408313 -7.468469526 0) (99.66323148 -7.16927507 1.693157206e-20) (99.62868229 -6.886259992 -1.443154165e-19) (99.04445159 -5.90100282 0) (99.2740552 -6.103664294 7.782051293e-20) (99.33388972 -6.366508871 -1.31912848e-19) (99.13621062 -5.581196173 -4.628497844e-20) (99.20767949 -5.840855209 0) (98.9775747 -5.660841712 1.325477982e-20) (99.72764848 -6.20117486 2.908567094e-19) (99.4569487 -6.021795296 0) (99.38303062 -5.73976606 4.830649854e-20) (98.76157958 -4.954886817 0) (98.98381315 -5.077960077 -1.046042424e-21) (99.0611677 -5.326604738 2.716594793e-20) (98.82940882 -4.599428869 0) (98.90585273 -4.835266446 0) (98.68830866 -4.727215045 0) (99.38306399 -5.040157082 2.883744664e-21) (99.13715105 -4.939582551 0) (99.0535478 -4.690075718 0) (102.5498743 -3.553210032 0) (102.4005799 -3.617056802 -3.952976536e-21) (102.4230927 -3.456313701 0) (102.3343881 -3.945971127 -1.541931241e-20) (102.3714372 -3.780403226 -1.562135078e-20) (102.5234192 -3.709856818 0) (102.0460242 -3.907688203 6.770961586e-20) (102.2122939 -3.846645103 1.57066733e-20) (102.1719797 -4.018949204 -1.099603016e-19) (102.3954498 -4.19028344 -9.75367856e-20) (102.2365353 -4.283526273 -2.729076675e-19) (102.2892449 -4.113661283 1.449760072e-20) (102.1134169 -4.62914773 0) (102.1774204 -4.455467454 2.006445534e-19) (102.3378365 -4.352964688 0) (101.824359 -4.648069916 -5.055833664e-19) (102.0064512 -4.554176965 2.91730155e-20) (101.9405766 -4.73867919 -2.987959091e-20) (102.137938 -4.842791213 0) (101.9774725 -4.979182644 -1.856080479e-19) (102.0460863 -4.803975142 1.289821965e-20) (101.8581106 -5.328010459 1.895682144e-19) (101.9115191 -5.154019565 9.604202541e-21) (102.0710899 -5.004503083 -1.885540407e-19) (101.5476932 -5.452040894 2.155543177e-19) (101.7376086 -5.30350005 2.180117601e-19) (101.6834242 -5.49284574 -1.912220715e-19) (101.9870678 -5.478286075 0) (101.8517927 -5.673337493 3.367687442e-19) (101.838653 -5.500583979 -3.406604743e-19) (99.69580597 -5.845400412 -8.757518355e-21) (101.5750162 -5.835580247 6.939147213e-22) (101.564429 -5.613713565 1.313675529e-20) (101.4514546 -6.291901082 3.298435325e-20) (101.5393267 -6.061857198 -2.009733721e-20) (99.98175474 -6.115637953 8.757176205e-21) (94.80583593 -5.751250332 6.155430218e-21) (94.23253374 -5.924818515 -6.16024448e-21) (95.55132951 -5.597504744 7.25546028e-21) (99.6048922 -6.426825415 7.725211463e-21) (98.28024499 -6.533660834 0) (98.61138382 -6.244800846 0) (97.43082896 -7.15735865 0) (97.88736351 -6.837465043 0) (99.50725679 -6.730974058 -1.311067177e-19) (99.52866056 -6.266677875 0) (99.51099207 -6.567422091 -6.572100495e-20) (99.61455508 -6.552208035 6.668955381e-20) (99.29932458 -6.577800455 -1.018929019e-21) (99.40205569 -6.593400781 -1.96246046e-22) (99.39684339 -6.289068846 1.965469666e-22) (99.40319504 -7.279981135 0) (99.40442968 -6.922468408 0) (99.32876565 -6.905611026 0) (99.04308635 -6.180411638 3.200423392e-22) (99.11445961 -6.474000088 4.683015487e-22) (99.20617902 -6.540754068 0) (98.93695137 -6.275036845 2.740212604e-21) (99.02429359 -6.385111059 5.545933993e-22) (98.93440119 -6.1012264 -5.567445548e-22) (99.23328166 -7.014620189 1.34338134e-21) (99.12343958 -6.688940089 0) (99.05438868 -6.565172072 -1.047028523e-19) (98.6385416 -5.75846649 -6.122479862e-20) (98.77164637 -6.002685266 1.145111133e-19) (98.85290407 -6.146720291 -1.14473812e-19) (98.61452904 -5.678267377 -1.503436865e-19) (98.69235708 -5.845634459 6.344954149e-20) (98.54890422 -5.61680291 1.376705861e-19) (99.02366493 -6.338542759 -1.35788656e-19) (98.85005846 -6.086103279 0) (98.78090475 -5.900885335 7.245098824e-20) (98.29913114 -5.140932149 0) (98.46239951 -5.322438625 -5.656110495e-21) (98.53790433 -5.50309087 7.87112709e-20) (98.31523325 -4.95145709 0) (98.38814879 -5.138158014 0) (98.22120848 -4.971409416 0) (98.76481964 -5.483151088 -1.333669862e-20) (98.5688466 -5.30880122 6.297899919e-21) (98.49773484 -5.106631354 -6.326472538e-21) (98.00391187 -4.447259615 0) (98.17483637 -4.574743162 0) (98.24392265 -4.763288066 0) (98.04737745 -4.200466574 0) (98.10894055 -4.386769354 0) (97.93866669 -4.270932107 0) (98.48303143 -4.615787477 0) (98.29010789 -4.502020414 0) (98.22635307 -4.304398183 0) (103.0845596 -3.273575997 0) (102.9599656 -3.346004527 0) (102.9751027 -3.210522666 0) (102.9075955 -3.619154052 0) (102.9379384 -3.482236846 0) (103.0630326 -3.403356124 0) (102.6683594 -3.636068744 0) (102.8064615 -3.559972669 0) (102.7753303 -3.704070651 0) (102.9446478 -3.793154346 0) (102.81947 -3.894100079 0) (102.8681474 -3.756561196 0) (102.6966348 -4.167260574 0) (102.7619915 -4.031230979 2.924296633e-21) (102.8863971 -3.922151252 0) (102.4882831 -4.247567013 9.344226173e-20) (102.6294136 -4.140078733 3.224505504e-21) (102.5653788 -4.284666534 0) (102.6680514 -4.298728586 0) (102.5499296 -4.433309983 0) (102.6250182 -4.301445713 0) (102.4189277 -4.688407742 -1.457377686e-19) (102.4773347 -4.562519518 1.472345216e-19) (102.592582 -4.419021794 7.161850155e-20) (102.2177389 -4.855697462 5.517007279e-21) (102.3527549 -4.708210299 -1.563259346e-19) (102.2971648 -4.844466883 1.547517423e-19) (102.2952345 -4.7381699 1.098014802e-19) (102.2455987 -4.916615513 2.496647931e-22) (102.3806333 -4.808718421 0) (98.60714119 -4.919022252 -1.512442325e-21) (101.362861 -4.98453137 1.810040151e-21) (101.2840237 -4.790245745 -1.108212705e-19) (101.5169923 -5.397184393 1.178066867e-19) (101.4451906 -5.187118418 -1.811444448e-21) (98.83259102 -5.125661344 0) (96.63892639 -5.040233446 1.143307153e-21) (96.265797 -5.220354579 -1.143510207e-21) (95.40127783 -4.833617667 0) (99.83796824 -5.400419728 5.258246942e-20) (99.27954806 -5.464166139 5.448602438e-20) (99.41429983 -5.231960307 -9.274853852e-22) (98.88459852 -5.970389902 1.597580321e-19) (99.1051815 -5.710228938 7.381495109e-20) (99.79745373 -5.632317281 0) (99.56152231 -5.251296161 9.715632386e-23) (99.55672484 -5.481013973 -2.250629834e-20) (99.739499 -5.4772036 2.405593018e-20) (99.19511867 -5.481278212 8.081418808e-21) (99.37268816 -5.495808387 -8.169753394e-21) (99.36371953 -5.263576692 0) (99.3897528 -6.006386757 0) (99.38155946 -5.742745958 0) (99.21851278 -5.727700797 0) (98.81578368 -5.185823515 6.773049786e-21) (98.86445792 -5.410769614 -2.650993102e-20) (99.02607848 -5.453627648 3.057532297e-23) (98.5678327 -5.280960078 -6.397691746e-23) (98.71153385 -5.352826802 2.611762052e-20) (98.65121119 -5.133070723 -9.163463438e-21) (98.85274193 -5.835560333 9.968731355e-22) (98.77861554 -5.586565633 -1.001564809e-21) (98.64687294 -5.507080895 -1.303512492e-21) (98.2184224 -4.904028003 9.414437725e-23) (98.30861859 -5.100974369 -9.388351123e-23) (98.43366938 -5.196606945 0) (98.08194518 -4.880783269 0) (98.19167912 -4.995276364 0) (98.09285141 -4.807368475 0) (98.41834229 -5.399173725 -8.672701778e-20) (98.29966116 -5.192270757 -3.756416766e-21) (98.19776451 -5.067098296 -1.034906617e-21) (97.76330309 -4.47065156 0) (97.88192021 -4.629989228 0) (97.9788342 -4.758649947 0) (97.70578552 -4.357468207 0) (97.79095066 -4.495912986 0) (97.66769646 -4.34623708 0) (98.06673609 -4.808666237 0) (97.92365178 -4.650102752 0) (97.84204326 -4.501205069 0) (97.4211812 -3.949672737 0) (97.55314328 -4.071361307 0) (97.6264389 -4.21564116 0) (97.4264871 -3.778340097 0) (97.48632921 -3.925346977 0) (97.35295503 -3.812439685 0) (97.7785615 -4.155033235 0) (97.62799548 -4.039727576 0) (97.56857253 -3.884060519 0) (103.5278819 -2.97738932 0) (103.4248494 -3.051722414 0) (103.4394362 -2.938874274 0) (103.3713094 -3.275018115 0) (103.4026406 -3.163792429 0) (103.5048559 -3.084054025 0) (103.1820123 -3.323745182 0) (103.2951176 -3.243785076 0) (103.2645445 -3.360958847 0) (103.3762338 -3.396593155 0) (103.2778387 -3.494001562 0) (103.3298585 -3.385181533 0) (103.1430608 -3.706234959 0) (103.2153408 -3.601142006 0) (103.311887 -3.497399117 0) (103.0030857 -3.813767427 0) (103.1125595 -3.706667767 0) (103.0423128 -3.818756391 0) (103.066154 -3.785475123 0) (102.9769902 -3.908971392 0) (103.0625835 -3.808947003 0) (102.8111959 -4.097883706 0) (102.8914962 -4.005729286 0) (102.9769126 -3.875367653 0) (102.6997581 -4.277928214 -2.244054153e-21) (102.799306 -4.13999251 6.460904404e-23) (102.7254551 -4.23974384 0) (102.4406589 -4.087051729 0) (102.4084967 -4.239233378 1.412802027e-24) (102.71474 -4.180664233 0) (98.23857857 -4.229374156 -3.912920859e-23) (101.171712 -4.261552385 -1.421171908e-24) (101.1667695 -4.103042572 0) (101.2201001 -4.604742686 -4.643644205e-20) (101.1825682 -4.428359625 0) (98.25022089 -4.386347647 3.914390697e-23) (97.56662131 -4.344059709 0) (97.39980477 -4.50898016 -1.621754998e-21) (95.85234876 -4.233700766 0) (99.93999457 -4.598364729 8.039072281e-22) (99.63989079 -4.615433821 2.90883747e-21) (99.67734084 -4.435024044 0) (99.51590389 -5.01323364 2.987486634e-20) (99.58975865 -4.807669598 -2.23350199e-22) (99.92054111 -4.782219706 -7.352291162e-21) (99.58367379 -4.457993125 0) (99.57795991 -4.639774679 1.261601265e-22) (99.80344727 -4.639757593 3.155135201e-22) (99.12158193 -4.635470019 0) (99.3468235 -4.646568785 0) (99.34332767 -4.463574958 0) (99.35563809 -5.045386112 -1.648713204e-21) (99.35028821 -4.840191559 -5.564415091e-22) (99.13585668 -4.828414326 -2.898703729e-23) (98.66789817 -4.406584823 0) (98.69995542 -4.585437532 0) (98.90573559 -4.61612346 0) (98.3216401 -4.494800225 0) (98.50500996 -4.544910449 0) (98.46415852 -4.369139315 0) (98.59773078 -4.925980151 0) (98.54935752 -4.730235509 0) (98.375047 -4.67577617 0) (97.92554384 -4.205649836 0) (97.99012868 -4.367984744 0) (98.15008858 -4.435643685 0) (97.70301023 -4.20965864 0) (97.8412865 -4.292438094 0) (97.76980898 -4.135691987 0) (98.00207455 -4.627882469 0) (97.91848312 -4.45637555 0) (97.7868523 -4.366940781 0) (97.36748061 -3.887168761 0) (97.45608039 -4.025140434 0) (97.57476494 -4.120329312 0) (97.24601498 -3.819929138 0) (97.34658531 -3.924781471 0) (97.25348627 -3.793449073 0) (97.55303234 -4.20113415 0) (97.44622763 -4.060660438 0) (97.34957947 -3.948494918 0) (96.96807746 -3.488037624 0) (97.07123145 -3.599341401 0) (97.15423043 -3.71123846 0) (96.9318821 -3.367791755 0) (96.99710613 -3.484743763 0) (96.89160661 -3.380001518 0) (97.22729327 -3.701141989 0) (97.10884743 -3.591910125 0) (97.04538241 -3.468491647 0) (103.8941096 -2.684398899 0) (103.8090021 -2.756571741 0) (103.8273643 -2.662818594 0) (103.745649 -2.939067207 0) (103.7822725 -2.848654399 0) (103.8658331 -2.772066118 0) (103.6020291 -3.004815043 0) (103.6944182 -2.926289663 0) (103.659383 -3.021478203 0) (103.7168272 -3.023706834 0) (103.6389267 -3.114148485 0) (103.6980527 -3.027630426 0) (103.486907 -3.280251642 0) (103.5683011 -3.198420313 0) (103.6439702 -3.103204781 0) (103.4026279 -3.395610114 0) (103.4879722 -3.295914674 0) (103.4089526 -3.38292091 0) (103.3666328 -3.326088362 0) (103.2990322 -3.435721908 0) (103.3963276 -3.359454851 0) (103.088755 -3.575398911 0) (103.1975685 -3.508278081 0) (103.2609426 -3.393832761 0) (103.0560639 -3.748990543 0) (103.1294407 -3.626636468 0) (103.027942 -3.699091949 0) (102.5277986 -3.541339853 0) (102.5107435 -3.669206514 0) (102.931426 -3.633006083 0) (98.28049947 -3.662443388 0) (101.1516159 -3.673333966 0) (101.1473068 -3.543289309 0) (101.1618224 -3.952494275 0) (101.1565139 -3.80950291 0) (98.26483681 -3.795644441 0) (98.08684522 -3.759636561 0) (97.97478033 -3.896136162 0) (96.30991186 -3.698059333 0) (99.99571068 -3.946720856 0) (99.76240333 -3.952369184 0) (99.78356498 -3.807748639 0) (99.70933412 -4.265106473 0) (99.73773474 -4.104555862 0) (99.98432474 -4.097602081 0) (99.59776532 -3.820205716 0) (99.59542149 -3.967548144 0) (99.84510843 -3.967414142 0) (99.07283527 -3.960958084 0) (99.33219052 -3.969968911 0) (99.32828051 -3.821732361 0) (99.33967182 -4.290273933 0) (99.33596703 -4.125948184 0) (99.08404299 -4.116528121 0) (98.5606192 -3.776996404 0) (98.5847707 -3.922728747 0) (98.82320015 -3.945856743 0) (98.14530461 -3.855426125 0) (98.35858451 -3.89256864 0) (98.32804876 -3.748758036 0) (98.42636753 -4.202227261 0) (98.39127367 -4.043555868 0) (98.184632 -4.003705301 0) (97.70998649 -3.626193342 0) (97.75831026 -3.761362994 0) (97.94523106 -3.811604413 0) (97.42262457 -3.642904042 0) (97.58424504 -3.705013224 0) (97.53051499 -3.573534666 0) (97.7034713 -3.985769853 0) (97.64176546 -3.8423205 0) (97.48551958 -3.775794017 0) (97.0670107 -3.38426558 0) (97.1349674 -3.502952547 0) (97.27300635 -3.57541669 0) (96.89226441 -3.344772662 0) (97.00814808 -3.425929541 0) (96.93617373 -3.311908627 0) (97.16637387 -3.666591683 0) (97.08474512 -3.544119532 0) (96.97259269 -3.457766807 0) (96.61071927 -3.072236731 0) (96.69255334 -3.171717895 0) (96.78711199 -3.259900207 0) (96.53459362 -2.986601895 0) (96.60845819 -3.08057022 0) (96.52398991 -2.986024586 0) (96.79192197 -3.277598688 0) (96.69765669 -3.177839458 0) (96.62609796 -3.079016673 0) (104.1970074 -2.406090473 0) (104.1265348 -2.473854917 0) (104.1510616 -2.395897148 0) (104.0490157 -2.623559191 0) (104.0930163 -2.549730965 0) (104.1616047 -2.478401212 0) (103.9453305 -2.696647754 0) (104.0209942 -2.622503153 0) (103.9789475 -2.700122649 0) (103.9881532 -2.682481384 0) (103.9258364 -2.764620729 0) (103.9934688 -2.695224141 0) (103.755235 -2.896259159 0) (103.8461833 -2.831659261 0) (103.9062506 -2.745912505 0) (103.7153075 -3.010321469 0) (103.7826241 -2.919793533 0) (103.694043 -2.988236893 0) (103.597076 -2.92109074 0) (103.5448324 -3.017435755 0) (103.6543053 -2.958293002 0) (103.2886828 -3.1231849 0) (103.4264675 -3.072988314 0) (103.4745258 -2.973210091 0) (103.3199817 -3.283203266 0) (103.3750528 -3.176280241 0) (103.2444434 -3.230161142 0) (102.5750503 -3.078108073 0) (102.5657886 -3.187091027 0) (103.0760003 -3.163769296 0) (98.36928406 -3.183506947 0) (101.1376507 -3.185564159 0) (101.1358851 -3.076088591 0) (101.1434961 -3.418879238 0) (101.1402299 -3.299730882 0) (98.34388519 -3.295641075 0) (98.44587667 -3.268932549 0) (98.3677503 -3.383946724 0) (96.70944537 -3.234654723 0) (100.0244928 -3.410135121 0) (99.83103225 -3.41358359 0) (99.84257169 -3.293947732 0) (99.80178423 -3.670077422 0) (99.81751315 -3.538826771 0) (100.0194037 -3.535099368 3.257799903e-35) (99.60043265 -3.297062782 0) (99.60063782 -3.418776754 0) (99.86471241 -3.419753924 0) (99.03242361 -3.410330455 0) (99.3157238 -3.418200923 0) (99.31131012 -3.295943616 0) (99.3242221 -3.680682489 0) (99.32003081 -3.546308917 0) (99.04196316 -3.53820995 0) (98.47731815 -3.258873694 0) (98.49640144 -3.379495387 0) (98.75851566 -3.397810458 0) (98.01182556 -3.327192189 0) (98.24729863 -3.355951403 0) (98.22344771 -3.236614165 0) (98.29944641 -3.611662594 0) (98.27258258 -3.480845381 0) (98.04208122 -3.450293634 0) (97.54522729 -3.141189758 0) (97.58264736 -3.254674674 0) (97.79027053 -3.293391332 0) (97.20835569 -3.163134859 0) (97.38877274 -3.211196092 0) (97.34709292 -3.100254479 0) (97.48022737 -3.447590275 0) (97.43306763 -3.326888482 0) (97.2569726 -3.275778389 0) (96.83315656 -2.952189656 0) (96.88652754 -3.054116711 0) (97.04105594 -3.110698556 0) (96.61459379 -2.929526365 0) (96.74446175 -2.993638808 0) (96.68762041 -2.895074423 0) (96.86845344 -3.201937466 0) (96.80464536 -3.095880986 0) (96.67812154 -3.028000118 0) (96.32467903 -2.703604669 0) (96.39056125 -2.79143846 0) (96.49669656 -2.862041203 0) (96.21251934 -2.641646252 0) (96.2959452 -2.717939093 0) (96.22747466 -2.633842689 0) (96.44394292 -2.894013943 0) (96.36801328 -2.804712209 0) (96.28698278 -2.724753302 0) (104.4484781 -2.148485499 0) (104.3898633 -2.210720213 0) (104.4216795 -2.145674332 0) (104.2964763 -2.334227942 0) (104.3485961 -2.273553565 0) (104.4052242 -2.20843872 0) (104.2269477 -2.408564193 0) (104.2892227 -2.340272754 0) (104.2391533 -2.40395579 0) (104.2066506 -2.375325376 0) (104.1562506 -2.448915261 0) (104.2325167 -2.392692185 0) (103.9677598 -2.554586694 0) (104.0677837 -2.502885619 0) (104.1160794 -2.426540474 0) (103.9630633 -2.66254617 0) (104.0168405 -2.581544865 0) (103.9190135 -2.636138927 0) (103.7770382 -2.566333159 0) (103.7359776 -2.650590888 0) (103.8570798 -2.603919306 0) (103.4353921 -2.731980263 0) (103.6010581 -2.693883075 0) (103.6380654 -2.60709566 0) (103.5194909 -2.876837193 0) (103.5615976 -2.783763134 0) (103.4027532 -2.824542318 0) (102.6011762 -2.682609178 0) (102.5959335 -2.775756305 0) (103.1742304 -2.760947417 0) (98.48745479 -2.778932344 0) (101.1359735 -2.773418315 0) (101.1378881 -2.680418784 0) (101.1349932 -2.971052851 0) (101.1350138 -2.870232191 0) (98.45575632 -2.873935903 0) (98.69836389 -2.853404617 0) (98.64316253 -2.951033511 0) (97.05555088 -2.83763439 0) (100.0340585 -2.962262786 0) (99.86735837 -2.965419306 0) (99.87290084 -2.865098509 0) (99.85234796 -3.179575707 0) (99.86055486 -3.070160081 0) (100.0330763 -3.067022928 0) (99.5951354 -2.86134723 0) (99.59704226 -2.963191224 0) (99.86960943 -2.965366591 0) (98.99718062 -2.95362911 0) (99.29753589 -2.960800745 0) (99.29280573 -2.858628214 0) (99.30679972 -3.179172259 0) (99.30220419 -3.067558019 0) (99.00559999 -3.060235109 0) (98.4100986 -2.826870905 0) (98.4256833 -2.927866727 0) (98.70545802 -2.942890789 0) (97.9069684 -2.885835619 0) (98.15930859 -2.908847769 0) (98.1400731 -2.808766669 0) (98.20090404 -3.122510667 0) (98.17955679 -3.013345951 0) (97.9310314 -2.989076786 0) (97.41541326 -2.732274801 0) (97.44520671 -2.828194471 0) (97.66892659 -2.858929607 0) (97.04012866 -2.755548264 0) (97.23567781 -2.793705044 0) (97.20249661 -2.699606023 0) (97.30781037 -2.993833348 0) (97.27073015 -2.891717725 0) (97.07866585 -2.85138137 0) (96.64715105 -2.581127996 0) (96.68993584 -2.668674893 0) (96.85830479 -2.713830189 0) (96.39257062 -2.568633307 0) (96.53476946 -2.620224533 0) (96.48902166 -2.535161757 0) (96.63387213 -2.800064026 0) (96.58299044 -2.708487017 0) (96.44371887 -2.654103092 0) (96.09233904 -2.379665982 0) (96.14615307 -2.456656774 0) (96.26311086 -2.514058565 0) (95.94853572 -2.333824217 0) (96.04141393 -2.396562201 0) (95.98517919 -2.322442288 0) (96.16237033 -2.552215583 0) (96.10041591 -2.473191719 0) (96.00985575 -2.407662507 0) (104.6582063 -1.914159433 0) (104.6092297 -1.970477818 0) (104.6486206 -1.916024941 0) (104.4998581 -2.072991754 0) (104.5600647 -2.022789026 0) (104.6071038 -1.964148312 0) (104.4592522 -2.144936424 0) (104.5108193 -2.083057372 0) (104.4526031 -2.135657973 0) (104.384521 -2.101765571 0) (104.3433231 -2.167086586 0) (104.4277366 -2.121084166 0) (104.1385141 -2.25295378 0) (104.2467485 -2.211037421 0) (104.2860576 -2.143591027 0) (104.1618999 -2.352476491 0) (104.2054054 -2.280657773 0) (104.0991338 -2.3247789 0) (103.9196395 -2.25668813 0) (103.8869471 -2.330145322 0) (104.0189751 -2.292756121 0) (103.5444256 -2.393490977 0) (103.7360682 -2.364306433 0) (103.7648916 -2.28893453 0) (103.6727964 -2.523301435 0) (103.7054133 -2.442405303 0) (103.5200495 -2.473573556 0) (102.6169942 -2.344128268 0) (102.6136163 -2.423903693 0) (103.2418945 -2.414468853 0) (98.62498791 -2.434641253 0) (101.149289 -2.422572577 0) (101.1549008 -2.343166578 0) (101.1407566 -2.591053974 0) (101.144564 -2.505159686 0) (98.58922465 -2.515704206 0) (98.87783833 -2.499731788 0) (98.83845553 -2.58294129 0) (97.3544347 -2.496287309 0) (100.030735 -2.584811455 3.90805869e-35) (99.88314672 -2.5883905 0) (99.88476353 -2.50358255 0) (99.87730786 -2.768962326 0) (99.88069031 -2.676795916 0) (100.0325224 -2.673359774 0) (99.584549 -2.494771541 0) (99.58758202 -2.580705588 0) (99.86474875 -2.583848472 -3.898591862e-35) (98.96568862 -2.570552583 0) (99.27833872 -2.577210131 0) (99.27345135 -2.491073827 0) (99.28802389 -2.760789955 0) (99.28319896 -2.667057603 0) (98.97325948 -2.660282429 0) (98.35438902 -2.463298419 0) (98.36741328 -2.548533165 0) (98.66065382 -2.561160508 0) (97.82225688 -2.513932129 0) (98.08771284 -2.532794427 0) (98.07183636 -2.448242636 0) (98.12177368 -2.712871521 0) (98.10434134 -2.620949882 0) (97.84187635 -2.601163505 0) (97.31061926 -2.385558449 0) (97.33486715 -2.467027585 0) (97.57130278 -2.491998938 0) (96.90503157 -2.408115091 0) (97.11283396 -2.439053295 0) (97.08585761 -2.358933133 0) (97.17104563 -2.609242199 0) (97.14119739 -2.522446851 0) (96.93622624 -2.48990017 0) (96.49640703 -2.262330263 0) (96.53130977 -2.337553086 0) (96.71126099 -2.374261708 0) (96.21205126 -2.255874208 0) (96.36497443 -2.298062666 0) (96.32754928 -2.224718266 0) (96.44557601 -2.453186488 0) (96.404276 -2.374191182 0) (96.25389149 -2.329887372 0) (95.90101734 -2.096606718 0) (95.94554959 -2.163759062 0) (96.07232309 -2.211075982 0) (95.72962539 -2.061803371 0) (95.83143892 -2.113999642 0) (95.78469622 -2.049086448 0) (95.93154286 -2.250626061 0) (95.88034611 -2.181214439 0) (95.78070182 -2.126863501 0) (104.8341145 -1.703618458 0) (104.7929328 -1.754009426 0) (104.8397218 -1.708138932 0) (104.6683103 -1.839697088 0) (104.7361669 -1.79784449 0) (104.7755207 -1.74557639 0) (104.6520605 -1.907116098 0) (104.6950467 -1.851687618 0) (104.6290497 -1.895454435 0) (104.5308654 -1.86006402 0) (104.4968254 -1.917622364 0) (104.5886242 -1.879603715 0) (104.2775378 -1.988235181 0) (104.3930412 -1.953822861 0) (104.4254218 -1.894611637 0) (104.3234649 -2.078268632 0) (104.3590896 -2.015027127 0) (104.2453203 -2.051137844 0) (104.0339148 -1.987211722 0) (104.0076109 -2.051070766 0) (104.1499556 -2.020769134 0) (103.6264627 -2.100868296 0) (103.8416147 -2.078287439 0) (103.8643011 -2.012962088 0) (103.7920137 -2.216195479 0) (103.8175522 -2.146006266 0) (103.6080303 -2.170058974 0) (102.6285122 -2.054040497 0) (102.625828 -2.122434257 0) (103.2893928 -2.116300975 0) (98.77468938 -2.140051189 0) (101.176713 -2.122670653 0) (101.1855143 -2.054684195 0) (101.1613671 -2.266797341 0) (101.1686505 -2.193337799 0) (98.73642312 -2.209505683 0) (99.00651362 -2.197830432 0) (98.97818448 -2.268921478 0) (97.61352912 -2.202141569 0) (100.0186051 -2.264784387 0) (99.88531914 -2.2690448 0) (99.88428666 -2.197002588 0) (99.88561868 -2.422192676 0) (99.88578261 -2.344062172 0) (100.0222972 -2.339981143 0) (99.57043268 -2.184441549 0) (99.57422278 -2.257318446 0) (99.85324451 -2.261211265 0) (98.93716178 -2.246898748 0) (99.25868235 -2.253139513 0) (99.25373935 -2.18013636 0) (99.26854281 -2.408459078 0) (99.26361816 -2.329198981 0) (98.94404771 -2.322861197 0) (98.30732758 -2.155479975 0) (98.31839951 -2.22776847 0) (98.62207164 -2.238570522 0) (97.75237929 -2.198766874 0) (98.02822933 -2.214509995 0) (98.01489563 -2.142748834 0) (98.05666014 -2.367114824 0) (98.04213815 -2.289252819 0) (97.7686736 -2.272805863 0) (97.2244019 -2.090499838 0) (97.24448053 -2.159902816 0) (97.49112549 -2.180560234 0) (96.79451239 -2.111289133 0) (97.0123286 -2.136807913 0) (96.99002318 -2.068434245 0) (97.06017087 -2.281938013 0) (97.03568719 -2.207937154 0) (96.82019401 -2.181197701 0) (96.37230001 -1.988432409 0) (96.40119656 -2.053053774 0) (96.59086073 -2.083363654 0) (96.06314976 -1.985410863 0) (96.22535161 -2.02039012 0) (96.19430512 -1.957219177 0) (96.29187611 -2.154052536 0) (96.25784395 -2.085972783 0) (96.09783659 -2.049359273 0) (95.74156546 -1.850344208 0) (95.77884287 -1.908679979 0) (95.91439082 -1.948158576 0) (95.54614324 -1.823125922 0) (95.65621668 -1.867010786 0) (95.61694414 -1.810447142 0) (95.73998836 -1.986274618 0) (95.69719743 -1.925643999 0) (95.58911772 -1.880072369 0) (104.9826184 -1.516381222 0) (104.9477598 -1.561033178 0) (105.0015659 -1.522154098 0) (104.8089979 -1.633186347 0) (104.8838885 -1.598018951 0) (104.9170614 -1.551844741 0) (104.8132007 -1.694860849 0) (104.8492958 -1.645683506 0) (104.7761003 -1.682385886 0) (104.6525818 -1.647954516 0) (104.6241505 -1.698341964 0) (104.7224874 -1.666599799 0) (104.3920833 -1.757073205 0) (104.5140463 -1.72849368 0) (104.5410227 -1.676806862 0) (104.4563255 -1.837349262 0) (104.4858401 -1.781991295 0) (104.3654264 -1.811899295 0) (104.1263928 -1.753399034 0) (104.1050275 -1.808737707 0) (104.2570937 -1.783952674 0) (103.6889849 -1.848277328 0) (103.924992 -1.830621264 0) (103.9430322 -1.774150769 0) (103.8857034 -1.949956519 0) (103.9059075 -1.889199058 0) (103.6748658 -1.907956624 0) (102.6389175 -1.805351988 0) (102.6363128 -1.863973921 0) (103.3235366 -1.859808072 0) (98.9315926 -1.887269496 0) (101.2159307 -1.8657973 0) (101.2272616 -1.807544136 0) (101.1950136 -1.989274504 0) (101.2051668 -1.926342761 0) (98.8919085 -1.946906925 0) (99.09959545 -1.939722285 0) (99.07901526 -2.000513915 0) (97.84004692 -1.948457151 0) (100.0003966 -1.992516317 -1.268891672e-35) (99.8782812 -1.99748742 0) (99.87545501 -1.936138282 0) (99.88273823 -2.127807808 0) (99.88072184 -2.061339935 0) (100.0054033 -2.056542241 0) (99.55391638 -1.920812387 0) (99.55822463 -1.982774495 0) (99.83711825 -1.987249032 1.265904483e-35) (98.91106193 -1.972277084 0) (99.23890185 -1.97816862 0) (99.23396188 -1.916128395 0) (99.24879303 -2.110055815 0) (99.24384617 -2.042772142 0) (98.91738324 -2.036798612 0) (98.26697882 -1.893980532 0) (98.27651967 -1.955440999 0) (98.58835203 -1.964810189 0) (97.69380338 -1.930789103 0) (97.97801423 -1.944115601 0) (97.96666113 -1.883072617 0) (98.00210282 -2.073841476 0) (97.98981866 -2.007667743 0) (97.70753614 -1.993790407 0) (97.15238532 -1.838932108 0) (97.16924473 -1.89812544 0) (97.42420737 -1.915459506 0) (96.70270938 -1.857441947 0) (96.92879719 -1.878786575 0) (96.9100976 -1.820397473 0) (96.96870569 -2.002707188 0) (96.9483154 -1.939523621 0) (96.72415457 -1.917230379 0) (96.26874017 -1.753280431 0) (96.292969 -1.808734199 0) (96.49082004 -1.834090971 0) (95.93878379 -1.752026649 0) (96.10900887 -1.781376329 0) (96.08294029 -1.727062503 0) (96.16461839 -1.896378201 0) (96.13621091 -1.837788901 0) (95.9678844 -1.80715482 0) (95.6072387 -1.636924235 0) (95.63876706 -1.687405723 0) (95.78210992 -1.720697641 0) (95.3908598 -1.614911198 0) (95.50847286 -1.6521585 0) (95.47515323 -1.603097028 0) (95.57928725 -1.755778442 0) (95.54315705 -1.703070608 0) (95.42735832 -1.664485983 0) (105.1088347 -1.351436736 0) (105.0791292 -1.390628746 0) (105.1394637 -1.357460688 0) (104.9275117 -1.451856515 0) (105.0087455 -1.422063178 0) (105.0369204 -1.381633937 0) (104.9488803 -1.507144309 0) (104.9794197 -1.463893251 0) (104.8997058 -1.494922174 0) (104.7548666 -1.463058297 0) (104.7308833 -1.506861568 0) (104.8349495 -1.480091861 0) (104.4874252 -1.556210826 0) (104.6152189 -1.532237578 0) (104.6379125 -1.48740056 0) (104.5668326 -1.626899657 0) (104.5915445 -1.57872382 0) (104.4651575 -1.603752191 0) (104.2019082 -1.551326401 0) (104.1844024 -1.599064177 0) (104.3455531 -1.578619139 0) (103.7372638 -1.630776451 0) (103.9915252 -1.616821063 0) (104.0060127 -1.5682041 0) (103.9600918 -1.719737237 0) (103.9762366 -1.667313535 0) (103.7263022 -1.682098504 0) (102.6498192 -1.592479377 0) (102.6469965 -1.642603692 0) (103.348822 -1.639537124 0) (99.09202335 -1.670151032 0) (101.2642039 -1.645805792 0) (101.2773586 -1.595986053 0) (101.2391132 -1.751514636 0) (101.2514412 -1.697625958 0) (99.05175645 -1.721364633 0) (99.16777407 -1.719185107 0) (99.15260376 -1.771089434 0) (98.04049048 -1.729785236 0) (99.97800752 -1.760608449 0) (99.86500474 -1.766220771 0) (99.86096226 -1.713994345 0) (99.87227947 -1.877208226 0) (99.86878609 -1.820598204 0) (99.98391664 -1.815137081 0) (99.53575597 -1.696647362 0) (99.54041851 -1.749320202 0) (99.81774868 -1.754243965 0) (98.88698775 -1.73886006 0) (99.21919546 -1.744452747 0) (99.21429638 -1.69173287 0) (99.22902996 -1.856562588 0) (99.22410714 -1.799367716 0) (98.89283419 -1.79370412 0) (98.23197261 -1.671644962 0) (98.24028348 -1.723885317 0) (98.55852753 -1.732104335 0) (97.64406918 -1.702690824 0) (97.93508242 -1.714101272 0) (97.92530992 -1.66219769 0) (97.95573739 -1.824453788 0) (97.94521823 -1.768159267 0) (97.65577984 -1.756308758 0) (97.09149034 -1.624492161 0) (97.10580608 -1.674917884 0) (97.36763141 -1.68963381 0) (96.62548076 -1.640470297 0) (96.8584752 -1.658533354 0) (96.84262153 -1.608747146 0) (96.89217399 -1.764282919 0) (96.87498001 -1.710354175 0) (96.64360125 -1.691540297 0) (96.1813281 -1.55180918 0) (96.20186239 -1.599263266 0) (96.40666167 -1.620717596 0) (95.83376538 -1.551208745 0) (96.01094489 -1.576096532 0) (95.9888275 -1.529550324 0) (96.05794752 -1.674791043 0) (96.03396754 -1.624490115 0) (95.85843606 -1.598579366 0) (95.49298553 -1.452769687 0) (95.51989628 -1.496244996 0) (95.67015221 -1.524592897 0) (95.2582741 -1.434262427 0) (95.382724 -1.466153609 0) (95.35420798 -1.423826342 0) (95.44313518 -1.555741651 0) (95.41234627 -1.510142671 0) (95.28953938 -1.477180788 0) (105.216899 -1.207488024 0) (105.1913894 -1.241562052 0) (105.2577159 -1.213064697 0) (105.0282296 -1.293949051 0) (105.1151155 -1.268488862 0) (105.1392485 -1.233408547 0) (105.0640032 -1.342576954 0) (105.0900506 -1.304871381 0) (105.004515 -1.331328595 0) (104.8416703 -1.303037145 0) (104.8212416 -1.340831859 0) (104.9303399 -1.318034007 0) (104.5674962 -1.382685587 0) (104.7006218 -1.362394473 0) (104.7198908 -1.323769913 0) (104.659678 -1.444173077 0) (104.6805656 -1.402516878 0) (104.5487312 -1.423654217 0) (104.2641338 -1.377594299 0) (104.2496562 -1.418536206 0) (104.4192222 -1.401525498 0) (103.7750942 -1.444246101 0) (104.0451637 -1.433082295 0) (104.0569267 -1.391455142 0) (104.0197501 -1.521408906 0) (104.0327855 -1.476384682 0) (103.7664492 -1.48817437 0) (102.661961 -1.410895294 0) (102.6587887 -1.4535719 0) (103.3682884 -1.451043468 0) (99.25306067 -1.483990093 0) (101.3187924 -1.457896758 0) (101.3331383 -1.415462274 0) (101.2908673 -1.548101452 0) (101.30469 -1.502091171 0) (99.21288108 -1.527843305 0) (99.21870768 -1.531189886 0) (99.20725926 -1.575375781 0) (98.22061288 -1.541770608 0) (99.95275729 -1.563327514 0) (99.8475177 -1.569465146 0) (99.84267271 -1.525109287 0) (99.85668461 -1.663840817 0) (99.85219533 -1.615687496 0) (99.95928121 -1.609667761 0) (99.51647195 -1.50631971 0) (99.52137607 -1.550987821 0) (99.79610076 -1.556254744 0) (98.864633 -1.540633878 0) (99.19968773 -1.545965051 0) (99.19485069 -1.50127008 0) (99.20941148 -1.641127638 0) (99.20454153 -1.592562091 0) (98.87007506 -1.587168761 0) (98.20129401 -1.482898099 0) (98.20860362 -1.527192578 0) (98.53188634 -1.534472429 0) (97.60139509 -1.50879251 0) (97.89799263 -1.518658144 0) (97.88949873 -1.47463865 0) (97.91588237 -1.612370612 0) (97.90678199 -1.56454717 0) (97.61148144 -1.554324952 0) (97.03945405 -1.442116552 0) (97.0517339 -1.484940634 0) (97.31928606 -1.497560519 0) (96.5598037 -1.45547135 0) (96.79862677 -1.470916211 0) (96.78504702 -1.428606517 0) (96.82738407 -1.560925557 0) (96.81272942 -1.515002826 0) (96.57527559 -1.498956217 0) (96.10677335 -1.379811247 0) (96.12435529 -1.420248742 0) (96.33509919 -1.438588597 0) (95.74420033 -1.379118453 0) (95.92743529 -1.400431843 0) (95.90848097 -1.360723814 0) (95.9675669 -1.484793635 0) (95.94711708 -1.441771748 0) (95.7653203 -1.419636265 0) (95.39491116 -1.29469719 0) (95.41809213 -1.331926995 0) (95.57448605 -1.356289279 0) (95.14412046 -1.278469147 0) (95.27475418 -1.30600773 0) (95.25013298 -1.26971127 0) (95.32674288 -1.383023519 0) (95.30027473 -1.343793461 0) (95.17112695 -1.315392302 0) (105.3101823 -1.083153516 0) (105.2880872 -1.112454266 0) (105.3598637 -1.087771405 0) (105.1146265 -1.157685103 0) (105.2065261 -1.13572283 0) (105.2273883 -1.105605822 0) (105.1625 -1.19959895 0) (105.1849106 -1.16704719 0) (105.0942086 -1.189814049 0) (104.916047 -1.165735002 0) (104.8984773 -1.198038296 0) (105.012039 -1.178431702 0) (104.6353423 -1.23386606 0) (104.7733811 -1.216535029 0) (104.7898955 -1.18356354 0) (104.7384161 -1.28660392 0) (104.7562331 -1.250871292 0) (104.6193864 -1.26888305 0) (104.3159147 -1.229312842 0) (104.303818 -1.264136646 0) (104.4811248 -1.249848822 0) (103.8052702 -1.285240966 0) (104.0889072 -1.276180657 0) (104.0985793 -1.24082315 0) (104.068115 -1.351453717 0) (104.0787633 -1.313044188 0) (103.7983206 -1.322575728 0) (102.675598 -1.256905475 0) (102.6720482 -1.292991188 0) (103.3840209 -1.290656734 0) (99.41239535 -1.32510246 0) (101.3773308 -1.298192343 0) (101.3923467 -1.262288818 0) (101.3476993 -1.374729462 0) (101.3624384 -1.335656942 0) (99.3728274 -1.362438544 0) (99.25792622 -1.371664057 0) (99.24898029 -1.409065267 0) (98.38506899 -1.380878522 0) (99.92560844 -1.396132783 0) (99.82733268 -1.402642157 0) (99.82201129 -1.365175044 0) (99.8376807 -1.482553941 0) (99.8325613 -1.441751213 0) (99.93252922 -1.435319466 0) (99.49643023 -1.345423758 0) (99.5014956 -1.383090531 0) (99.77286231 -1.388614053 0) (98.84374308 -1.372877252 0) (99.18044496 -1.377981067 0) (99.17567899 -1.340299976 0) (99.19003072 -1.458409288 0) (99.18522885 -1.417333169 0) (98.84884074 -1.412175671 0) (98.17415888 -1.323358818 0) (98.18064699 -1.360706983 0) (98.50787579 -1.367213417 0) (97.56442952 -1.34458592 0) (97.86564748 -1.353194404 0) (97.85819693 -1.316071179 0) (97.88128506 -1.432422293 0) (97.87333926 -1.391960756 0) (97.57319748 -1.38306167 0) (96.9945526 -1.287755167 0) (97.00518804 -1.323907542 0) (97.27757223 -1.334833498 0) (96.50338181 -1.298448152 0) (96.74717842 -1.311785822 0) (96.73543159 -1.276049108 0) (96.7719616 -1.388012757 0) (96.75934729 -1.349090971 0) (96.51672417 -1.335268173 0) (96.04254449 -1.233810288 0) (96.05774997 -1.26803799 0) (96.273627 -1.283873448 0) (95.66706887 -1.232484354 0) (95.85561033 -1.250916952 0) (95.83920467 -1.217277239 0) (95.89021414 -1.322595148 0) (95.8726026 -1.286008971 0) (95.68532496 -1.266913093 0) (95.30994682 -1.159943021 0) (95.33010185 -1.191579 0) (95.49196411 -1.212713592 0) (95.04499734 -1.145059064 0) (95.18122644 -1.169049 0) (95.1597751 -1.138172295 0) (95.2263642 -1.234780227 0) (95.20340958 -1.201264667 0) (95.06852605 -1.176578879 0) (105.3914671 -0.9771107684 0) (105.372137 -1.00195891 0) (105.448855 -0.9803741002 0) (105.1894798 -1.041412174 0) (105.2858372 -1.022269087 0) (105.3040595 -0.9967602476 0) (105.247536 -1.076671246 0) (105.2670073 -1.048900089 0) (105.1717172 -1.068691226 0) (104.9804163 -1.049242562 0) (104.965148 -1.076510799 0) (105.0827169 -1.059472457 0) (104.6933771 -1.107490587 0) (104.8359636 -1.092539361 0) (104.8502623 -1.064733777 0) (104.8058096 -1.151926499 0) (104.8211557 -1.121594516 0) (104.6796743 -1.137092616 0) (104.3594845 -1.104034665 0) (104.3492584 -1.133318051 0) (104.5336515 -1.121187563 0) (103.8298503 -1.150889359 0) (104.1250567 -1.143413263 0) (104.1331243 -1.11371421 0) (104.1078097 -1.206933599 0) (104.1166268 -1.174475231 0) (103.8241397 -1.182306608 0) (102.6906724 -1.12745965 0) (102.6867795 -1.157667377 0) (103.3974124 -1.155336679 0) (99.56828094 -1.190519629 0) (101.4378998 -1.163516328 0) (101.4531761 -1.133439149 0) (101.4074634 -1.2279026 0) (101.4226542 -1.194991339 0) (99.52970875 -1.222029275 0) (99.28945813 -1.237342177 0) (99.28211632 -1.268715789 0) (98.5374528 -1.244244503 0) (99.89732021 -1.25543784 -2.6949828e-36) (99.80565553 -1.262152438 0) (99.80012442 -1.230792049 0) (99.81661432 -1.329301504 0) (99.8111569 -1.29497508 0) (99.90446301 -1.288295736 0) (99.47589258 -1.210491147 0) (99.48106232 -1.241952956 0) (99.74855548 -1.24765997 2.688949513e-36) (98.82409088 -1.231886197 0) (99.16148757 -1.236798416 0) (99.15679123 -1.205329595 0) (99.17093109 -1.304240239 0) (99.16620066 -1.269754504 0) (98.82890011 -1.26479796 0) (98.14992684 -1.189563324 0) (98.15574412 -1.220761503 0) (98.48604185 -1.226634153 0) (97.53210698 -1.206497146 0) (97.83717545 -1.214082763 0) (97.83057424 -1.183066957 0) (97.85097589 -1.280542103 0) (97.84397236 -1.246560563 0) (97.53980326 -1.238739072 0) (96.95542211 -1.158158875 0) (96.96472857 -1.188390213 0) (97.24123525 -1.197945184 0) (96.45441983 -1.166166577 0) (96.70250953 -1.177805105 0) (96.69224141 -1.147908593 0) (96.72408513 -1.24183529 0) (96.71311767 -1.209100967 0) (96.46604562 -1.197071599 0) (95.98663693 -1.11094905 0) (95.99992863 -1.139632435 0) (96.2202834 -1.153450947 0) (95.5999798 -1.108573643 0) (95.79320849 -1.124683097 0) (95.77885673 -1.09647242 0) (95.82335526 -1.185050054 0) (95.80803241 -1.154197462 0) (95.61592396 -1.137553641 0) (95.23561573 -1.046154142 0) (95.25332044 -1.072750188 0) (95.42008066 -1.091272921 0) (94.95814488 -1.0318653 0) (95.09945133 -1.052969156 0) (95.08057252 -1.026987665 0) (95.13901927 -1.108530986 0) (95.11892245 -1.080161851 0) (94.97883953 -1.058500018 0) (105.4630301 -0.8881403051 0) (105.4459431 -0.9088361538 0) (105.5271366 -0.8897860979 0) (105.2550442 -0.9436283926 0) (105.3553881 -0.9267549525 0) (105.3714814 -0.905529612 0) (105.321705 -0.972351845 0) (105.3388062 -0.949021875 0) (105.2394182 -0.9664162401 0) (105.0367464 -0.9518746441 0) (105.0233243 -0.9745063568 0) (105.1445332 -0.9595303421 0) (104.7435583 -1.001599588 0) (104.8903722 -0.9885541555 0) (104.9028963 -0.9654937691 0) (104.864079 -1.0381516 0) (104.8774417 -1.012764616 0) (104.7316569 -1.026246627 0) (104.3966135 -0.9996720871 0) (104.3878525 -1.023901632 0) (104.5787248 -1.013475009 0) (103.8503352 -1.03876486 0) (104.1553798 -1.032481642 0) (104.1622183 -1.00793102 0) (104.1408526 -1.085346381 0) (104.1482648 -1.058276431 0) (103.8455322 -1.064826293 0) (102.7069625 -1.020045576 0) (102.7027925 -1.044949302 0) (103.4093589 -1.042533727 0) (99.71945228 -1.077795504 0) (101.4990153 -1.051252387 0) (101.5142357 -1.026436176 0) (101.4684675 -1.104725113 0) (101.483752 -1.077337579 0) (99.68215964 -1.104039904 0) (99.31635178 -1.125559527 0) (99.30992628 -1.151515 0) (98.68059358 -1.129459689 0) (99.86852451 -1.138355287 0) (99.78349969 -1.145103794 0) (99.77799213 -1.119224872 0) (99.79457924 -1.200855221 0) (99.78903236 -1.172301891 0) (99.87573922 -1.165546139 0) (99.45504178 -1.098738009 0) (99.46027559 -1.124632138 0) (99.72359275 -1.130461261 0) (98.80545373 -1.114696557 0) (99.14279643 -1.119455645 0) (99.13816055 -1.093558159 0) (99.1521113 -1.175308255 0) (99.14744619 -1.146693339 0) (98.8100298 -1.141899635 0) (98.12804179 -1.078726428 0) (98.13332068 -1.104412196 0) (98.46597846 -1.109775676 0) (97.50354105 -1.091642852 0) (97.81184263 -1.098405041 0) (97.80592367 -1.072863983 0) (97.82415865 -1.153473819 0) (97.81791749 -1.125262798 0) (97.51037341 -1.11831203 0) (96.92093464 -1.050685842 0) (96.9291756 -1.075603158 0) (97.20924059 -1.084056642 0) (96.41145596 -1.05597484 0) (96.66329743 -1.066251181 0) (96.6542137 -1.041600051 0) (96.68229528 -1.11937444 0) (96.67265209 -1.092164367 0) (96.42170428 -1.081576088 0) (95.93740826 -1.008860181 0) (95.94916744 -1.032546676 0) (96.17347236 -1.044748998 0) (95.54097786 -1.005094715 0) (95.73838587 -1.019338991 0) (95.72568066 -0.9960291117 0) (95.76495206 -1.069532687 0) (95.75146836 -1.043829659 0) (95.55506276 -1.029157498 0) (95.16986684 -0.9513462656 0) (95.18559582 -0.9733625183 0) (95.35677784 -0.9897806119 0) (94.88123977 -0.9370372558 0) (95.02718911 -0.9558012262 0) (95.01038873 -0.9342809169 0) (95.06225569 -1.002129617 0) (95.04446842 -0.9784256604 0) (94.89964092 -0.959210001 0) (105.5267703 -0.8150829478 0) (105.5114741 -0.8319089815 0) (105.5967071 -0.8148882469 0) (105.3131665 -0.862986234 0) (105.4170957 -0.8479186288 0) (105.4314965 -0.8306770358 0) (105.387113 -0.8853271727 0) (105.4023094 -0.8661292469 0) (105.2992429 -0.8816084481 0) (105.0866698 -0.8721697016 0) (105.0747094 -0.8905129149 0) (105.1992591 -0.8771739618 0) (104.7874936 -0.9145265509 0) (104.9382566 -0.9029895962 0) (104.9493776 -0.8843106629 0) (104.9150369 -0.9435606204 0) (104.9268166 -0.9227329404 0) (104.7770172 -0.9346131834 0) (104.4287308 -0.9144732288 0) (104.4211033 -0.9340625676 0) (104.6179098 -0.924966864 0) (103.8678408 -0.9468750565 0) (104.1812571 -0.9414782891 0) (104.1871667 -0.9216444336 0) (104.168799 -0.9845973391 0) (104.1751398 -0.9624547587 0) (103.8636926 -0.9680482989 0) (102.7241935 -0.9326533565 0) (102.719811 -0.9527218514 0) (103.4204418 -0.9501825436 0) (99.86495652 -0.9849963922 0) (101.5595361 -0.9593266535 0) (101.5744702 -0.9393174233 0) (101.5294075 -1.002860939 0) (101.5445077 -0.9804993066 0) (99.82915524 -1.006418469 0) (99.34093869 -1.034185559 0) (99.33490315 -1.055218639 0) (98.81666436 -1.034597583 0) (99.83977206 -1.042573675 1.685419404e-36) (99.76174629 -1.049194883 0) (99.75646118 -1.028291646 0) (99.77252327 -1.094633464 0) (99.76710362 -1.071299765 0) (99.84692904 -1.064632297 1.793771058e-36) (99.43401379 -1.007938718 0) (99.4392809 -1.02877956 0) (99.69831608 -1.034678058 -1.681730445e-36) (98.78761231 -1.018948317 0) (99.12432831 -1.023593401 0) (99.11973973 -1.002751755 0) (99.13353796 -1.068968562 0) (99.12892742 -1.045656643 0) (98.79200995 -1.04098659 0) (98.10800729 -0.9886280639 0) (98.11286799 -1.009313027 0) (98.44731302 -1.014281602 0) (97.47797092 -0.9977169544 0) (97.7890108 -1.003832162 0) (97.78362465 -0.9832574406 0) (97.80015155 -1.048607801 0) (97.79451682 -1.025606705 0) (97.48412111 -1.019345374 0) (96.89012886 -0.9632098722 0) (96.89753343 -0.9833050344 0) (97.18070869 -0.9908909006 0) (96.37327002 -0.9657219223 0) (96.62843279 -0.9749246054 0) (96.62027929 -0.9550349439 0) (96.6453853 -1.018180683 0) (96.63679657 -0.9959646286 0) (96.38242905 -0.986518637 0) (95.89348648 -0.9256028393 0) (95.90403741 -0.9447453436 0) (96.13186671 -0.9556711364 0) (95.48845154 -0.9201519003 0) (95.68961827 -0.9329158074 0) (95.67821449 -0.9140663257 0) (95.71333151 -0.9738725607 0) (95.70131736 -0.9528432407 0) (95.50105487 -0.9397425759 0) (95.11102597 -0.8738522916 0) (95.12517116 -0.891687355 0) (95.30036631 -0.906420408 0) (94.81242612 -0.8590617905 0) (94.9626267 -0.8759123623 0) (94.9475054 -0.8584684517 0) (94.99404469 -0.9137936953 0) (94.97813161 -0.8943575198 0) (94.82895537 -0.8771275225 0) (105.584383 -0.7568585661 0) (105.5704631 -0.7700711521 0) (105.6593445 -0.7546088843 0) (105.3654442 -0.7982776663 0) (105.47263 -0.7846043373 0) (105.4857315 -0.7710827886 0) (105.4455359 -0.8143888788 0) (105.4592384 -0.7990363777 0) (105.3528409 -0.8130211171 0) (105.1315979 -0.8088665682 0) (105.1207641 -0.8232136954 0) (105.2484197 -0.811141166 0) (104.8265418 -0.8448416598 0) (104.9810237 -0.8344733149 0) (104.9910621 -0.8198723809 0) (104.9601994 -0.8666770265 0) (104.9707415 -0.8500708136 0) (104.8171708 -0.8607018953 0) (104.4570106 -0.8469574147 0) (104.4502445 -0.8622466163 0) (104.6525135 -0.854172714 0) (103.8832312 -0.8735330564 0) (104.2037952 -0.8687820872 0) (104.2090159 -0.8533116927 0) (104.1928835 -0.9029308897 0) (104.1984216 -0.8853171148 0) (103.8795421 -0.8902098096 0) (102.7421638 -0.8636126725 0) (102.7376139 -0.8792293774 0) (103.4310823 -0.8765445937 0) (100.0040741 -0.9105612055 0) (101.6186812 -0.8860439601 0) (101.6331841 -0.8704677728 0) (101.5893157 -0.9204491402 0) (101.6040486 -0.9026982529 0) (99.96992406 -0.9275224412 0) (99.36501111 -0.9614580667 0) (99.35896327 -0.9779721617 0) (98.94726109 -0.9580586804 0) (99.81154727 -0.9661975836 0) (99.74115489 -0.9725387312 0) (99.73626987 -0.9561994234 0) (99.75126099 -1.008564037 0) (99.74615503 -0.9899878802 0) (99.81852871 -0.9835627115 0) (99.41292709 -0.9362889174 0) (99.41819711 -0.9524890353 0) (99.67302373 -0.9584042344 0) (98.77035527 -0.9427374065 0) (99.10603013 -0.947303861 0) (99.10147709 -0.9311058218 0) (99.11516117 -0.9831057603 0) (99.11059161 -0.964631376 0) (98.7746259 -0.9600483415 0) (98.08936276 -0.9174804499 0) (98.09391739 -0.93357288 0) (98.42969677 -0.9382520377 0) (97.45471185 -0.9228537278 0) (97.76810016 -0.9284835168 0) (97.76310898 -0.9124687835 0) (97.77835003 -0.9638570193 0) (97.7731781 -0.9456071874 0) (97.46034565 -0.9398706443 0) (96.86214562 -0.8940034836 0) (96.86892043 -0.909672072 0) (97.15485463 -0.9166011882 0) (96.3387943 -0.8936427904 0) (96.59693971 -0.9020289739 0) (96.58948844 -0.8865104085 0) (96.61232212 -0.936271136 0) (96.60454702 -0.9186103414 0) (96.34712017 -0.9100428833 0) (95.85366415 -0.8595672865 0) (95.86329648 -0.8745365661 0) (96.09430973 -0.8844874309 0) (95.44100515 -0.8521355131 0) (95.64558334 -0.8637624649 0) (95.63517186 -0.8490098825 0) (95.66708695 -0.8962719423 0) (95.65621642 -0.8795113515 0) (95.45246283 -0.8676308729 0) (95.05760898 -0.8121957333 0) (95.07053325 -0.8261960917 0) (95.24938567 -0.8396241586 0) (94.75013342 -0.7964489835 0) (94.9042141 -0.8118111618 0) (94.89039411 -0.7980998467 0) (94.93274593 -0.8419762387 0) (94.91832415 -0.8264377073 0) (94.76518027 -0.8107750194 0) (105.637471 -0.7126485972 0) (105.6245493 -0.7224157756 0) (105.71682 -0.7080806139 0) (105.4133084 -0.748516379 0) (105.5235188 -0.7358665941 0) (105.5356732 -0.7258759262 0) (105.4985665 -0.7584595051 0) (105.5111561 -0.7467239848 0) (105.4016844 -0.7595990144 0) (105.1727729 -0.7609582758 0) (105.1627687 -0.7715387174 0) (105.2933638 -0.7604035117 0) (104.861869 -0.7913936597 0) (105.0198949 -0.7818946407 0) (105.0291342 -0.7711329056 0) (105.0008752 -0.8062514644 0) (105.0104807 -0.7935966136 0) (104.8533272 -0.8032867069 0) (104.4824398 -0.7959675401 0) (104.4763002 -0.8072192616 0) (104.6836413 -0.799900207 0) (103.8971778 -0.8174166266 0) (104.2238891 -0.8131153377 0) (104.2286225 -0.8017380466 0) (104.2140971 -0.8388874794 0) (104.2190509 -0.8254936155 0) (103.8937948 -0.829890725 0) (102.7606763 -0.8116222434 0) (102.7560143 -0.8230815933 0) (103.4415793 -0.8202576776 0) (100.1363513 -0.8532427288 0) (101.6759554 -0.8300252392 0) (101.6899325 -0.8185832223 0) (101.6475754 -0.8559516327 0) (101.6618247 -0.8424748189 0) (100.103934 -0.8660235239 0) (99.38985863 -0.9060398352 0) (99.38352343 -0.9183305148 0) (99.07344652 -0.8986314105 0) (99.78431581 -0.907727695 0) (99.72239831 -0.9136448587 0) (99.71806133 -0.9015596477 0) (99.73151036 -0.9409490422 0) (99.72688324 -0.9267694544 0) (99.79100659 -0.9207338101 0) (99.39190555 -0.8823817369 0) (99.39714872 -0.894258498 0) (99.64801456 -0.900135833 0) (98.75348968 -0.8845633585 0) (99.08785888 -0.8890843198 0) (99.08332985 -0.8772109134 0) (99.09693156 -0.9160153724 0) (99.09239237 -0.9020138818 0) (98.75767995 -0.8974849019 0) (98.07167343 -0.863878588 0) (98.07602966 -0.875698929 0) (98.4128041 -0.8801897691 0) (97.43313282 -0.8655760453 0) (97.74857158 -0.8708723005 0) (97.74384418 -0.8590978276 0) (97.75819604 -0.8975410479 0) (97.75335283 -0.8836813607 0) (97.4384034 -0.8783157011 0) (96.83619925 -0.8416996222 0) (96.84253584 -0.8532544711 0) (97.13096118 -0.8597222003 0) (96.30706709 -0.8383273457 0) (96.56793617 -0.8461327667 0) (96.56097713 -0.834676456 0) (96.58217944 -0.8720334238 0) (96.57499946 -0.8585798415 0) (96.31479095 -0.8506502223 0) (95.81684907 -0.8094740408 0) (95.82582674 -0.8205615025 0) (96.05976122 -0.829812164 0) (95.3973649 -0.7997441352 0) (95.60508561 -0.8105484546 0) (95.59538431 -0.7996091623 0) (95.62496323 -0.835234016 0) (95.6149399 -0.8224186 0) (95.4079837 -0.8114358472 0) (95.00819518 -0.7652194218 0) (95.02024295 -0.7756349716 0) (95.20248223 -0.788117078 0) (94.69270523 -0.7479356113 0) (94.85041545 -0.7622580037 0) (94.83752232 -0.7520497627 0) (94.87683489 -0.7852696799 0) (94.86351393 -0.7733333194 0) (94.70669413 -0.758803505 0) (105.6873266 -0.6818373684 0) (105.6751 -0.6883126871 0) (105.7705539 -0.6747897205 0) (105.4580018 -0.7129439865 0) (105.5710666 -0.7010065948 0) (105.5825679 -0.694385086 0) (105.5476372 -0.7167424464 0) (105.5594292 -0.7084555366 0) (105.4470644 -0.7205436976 0) (105.2112957 -0.7276388664 0) (105.2018576 -0.7346403812 0) (105.335277 -0.7241540571 0) (104.8945152 -0.7532686038 0) (105.055958 -0.7443708338 0) (105.0646525 -0.7372530352 0) (105.0382142 -0.7612993885 0) (105.0471505 -0.752382432 0) (104.8865522 -0.7614068074 0) (104.5058932 -0.760581872 0) (104.5001706 -0.7680100952 0) (104.7122762 -0.7612067394 0) (103.9102178 -0.7774962473 0) (104.2423034 -0.7734790542 0) (104.2467247 -0.7659747463 0) (104.2332625 -0.791348272 0) (104.2378192 -0.7819326371 0) (103.9070166 -0.7860063952 0) (102.7795088 -0.7756742305 0) (102.7747871 -0.7832041514 0) (103.4521124 -0.7802602656 0) (100.2617649 -0.8120799101 0) (101.7310549 -0.7901899943 0) (101.7444615 -0.7826605369 0) (101.7037884 -0.8081399695 0) (101.7174816 -0.7986767725 0) (100.2310511 -0.820895735 0) (99.41633832 -0.866945175 0) (99.40952873 -0.8752333755 0) (99.19600543 -0.8554304405 0) (99.75850032 -0.8660447944 2.509097256e-36) (99.70601761 -0.8714091436 0) (99.70234764 -0.8633545676 0) (99.71388135 -0.890500427 0) (99.70986381 -0.8804538685 0) (99.76480018 -0.8749400275 5.622097521e-36) (99.37104806 -0.8451663121 0) (99.37624313 -0.8529507516 0) (99.6235655 -0.8587424111 -2.503794402e-36) (98.73681464 -0.8432744422 0) (99.06975802 -0.8477890267 0) (99.0652337 -0.8400068352 0) (99.07880441 -0.8663791822 0) (99.07428081 -0.8565760273 0) (98.74097746 -0.8520639459 0) (98.05450558 -0.8267453079 0) (98.05877307 -0.8345318693 0) (98.39630798 -0.8389379611 0) (97.41263108 -0.8247289677 0) (97.72990451 -0.8298404766 0) (97.72531063 -0.8220672056 0) (97.7391628 -0.848343302 0) (97.73451884 -0.838595101 0) (97.41768794 -0.833451276 0) (96.81155065 -0.8052358519 0) (96.81763081 -0.8129143435 0) (97.10835019 -0.8191063315 0) (96.27720379 -0.7986692804 0) (96.54060475 -0.8061120874 0) (96.53394111 -0.7984826409 0) (96.55411041 -0.8241964277 0) (96.54732355 -0.8146791772 0) (96.28454073 -0.8071656031 0) (95.78204948 -0.7743311258 0) (95.79061194 -0.7817605713 0) (96.02727035 -0.790560332 0) (95.35638634 -0.7619846265 0) (95.56704431 -0.7722444589 0) (95.55780058 -0.7649003193 0) (95.58582066 -0.7895870645 0) (95.57637898 -0.7804694477 0) (95.36643873 -0.7700983231 0) (94.9615728 -0.7320844426 0) (94.97302841 -0.739112148 0) (95.1584478 -0.7509510104 0) (94.63874029 -0.712855476 0) (94.79989201 -0.7264309352 0) (94.78763663 -0.7195344276 0) (94.82481636 -0.7426771806 0) (94.81227874 -0.7341471975 0) (94.65197001 -0.7204388319 0) (105.7351033 -0.6638773911 0) (105.7232919 -0.6671894946 0) (105.8217614 -0.6541802298 0) (105.5006084 -0.6909195921 0) (105.6164041 -0.679417105 0) (105.6275189 -0.6760320262 0) (105.593947 -0.6885851895 0) (105.6052216 -0.6835982776 0) (105.4900993 -0.695185822 0) (105.2481457 -0.708229463 0) (105.2390373 -0.7118115981 0) (105.3752015 -0.7017182706 0) (104.9254188 -0.7297039838 0) (105.0901869 -0.7211651124 0) (105.0985676 -0.7175231912 0) (105.0732458 -0.7310200584 0) (105.0817535 -0.725661038 0) (104.9178093 -0.7342683633 0) (104.5281768 -0.7400372108 0) (104.5226667 -0.743819019 0) (104.7393073 -0.7373085889 0) (103.9228112 -0.7529530639 0) (104.2597171 -0.7490610026 0) (104.2640028 -0.7452577414 0) (104.2510938 -0.7594107386 0) (104.2554207 -0.7537760853 0) (103.9196774 -0.7576822563 0) (102.7985514 -0.7550603822 0) (102.7937719 -0.7587988343 0) (103.4628252 -0.755732818 0) (100.3805221 -0.786395232 0) (101.7838783 -0.7657847098 0) (101.7967658 -0.7620543874 0) (101.7577519 -0.7760911885 0) (101.770875 -0.7704649856 0) (100.3514715 -0.7913878986 0) (99.4451217 -0.8434927267 0) (99.43765314 -0.8479229664 0) (99.31551998 -0.8277997533 0) (99.73448009 -0.8403645848 0) (99.69246764 -0.8450699002 0) (99.68956399 -0.8409056603 0) (99.69886296 -0.856284304 0) (99.69556798 -0.8501889094 0) (99.74029778 -0.845314271 -3.286938124e-36) (99.35040925 -0.8239049745 0) (99.35555465 -0.8277546484 0) (99.59991762 -0.8334254487 0) (98.72010301 -0.8180389317 0) (99.0516407 -0.8225957597 0) (99.04708486 -0.8187443569 0) (99.06070767 -0.8332199855 0) (99.05617625 -0.8274200357 0) (98.72429671 -0.8228791449 0) (98.03740392 -0.8053036047 0) (98.04170376 -0.809225198 0) (98.37986296 -0.8136573356 0) (97.39261222 -0.7994572813 0) (97.71157448 -0.8045361669 0) (97.70697417 -0.8005925588 0) (97.72073047 -0.8152655911 0) (97.71615374 -0.8094259435 0) (97.39760346 -0.8043534622 0) (96.78748275 -0.7838228339 0) (96.79348773 -0.787799514 0) (97.08636304 -0.7938980749 0) (96.24837815 -0.7738322797 0) (96.51417253 -0.7811208963 0) (96.50761157 -0.7771449778 0) (96.52732279 -0.7917813223 0) (96.52073643 -0.7859976311 0) (96.25552993 -0.7786894205 0) (95.74834928 -0.753389972 0) (95.7567228 -0.7573266229 0) (95.9959588 -0.765908733 0) (95.31704331 -0.7380882898 0) (95.53048065 -0.748061751 0) (95.5214568 -0.744151038 0) (95.54863555 -0.7584283745 0) (95.53953313 -0.7528185718 0) (95.32677832 -0.7427968844 0) (94.91664463 -0.7121071292 0) (94.92777915 -0.7159003838 0) (95.11621213 -0.7273778209 0) (94.58707727 -0.6904996167 0) (94.75150172 -0.7036228661 0) (94.73960377 -0.6998834756 0) (94.77549744 -0.7134341467 0) (94.76345646 -0.7081396033 0) (94.59982965 -0.694948875 0) (105.7873874 -0.6581512564 0) (105.7693318 -0.658629732 0) (105.870646 -0.6458903407 0) (105.5412937 -0.6819325027 0) (105.6597207 -0.6706349236 0) (105.6766711 -0.6701928434 0) (105.6385378 -0.6734409491 0) (105.6496825 -0.6716417476 0) (105.5318808 -0.6829762779 0) (105.2883459 -0.7019124711 0) (105.2744572 -0.7024294645 0) (105.4132869 -0.6925303683 0) (104.954782 -0.7199908525 0) (105.1227489 -0.711603636 0) (105.1355711 -0.7110429265 0) (105.106863 -0.7147215513 0) (105.115287 -0.7127548937 0) (104.9480831 -0.7211627675 0) (104.552872 -0.7333834505 0) (104.5440777 -0.7339542386 0) (104.764983 -0.7274881328 0) (103.9351504 -0.7432386015 0) (104.2764219 -0.7392314263 0) (104.2835473 -0.7387888056 0) (104.2682531 -0.7423544636 0) (104.2726705 -0.7403437455 0) (103.9324004 -0.7442996723 0) (102.8205277 -0.7503353237 0) (102.8122312 -0.7492959981 0) (103.4736077 -0.7461835929 0) (100.4892366 -0.7756290544 0) (101.8327054 -0.75606632 0) (101.8528666 -0.7576780014 0) (101.809349 -0.759203142 0) (101.8224945 -0.7574912805 0) (100.4665164 -0.7771577863 0) (99.48077403 -0.8343933499 0) (99.46696811 -0.8367473407 0) (99.4284477 -0.8159562072 0) (99.71311725 -0.8302303864 3.446407151e-37) (99.68214525 -0.8345070271 0) (99.67900675 -0.8331708011 0) (99.68685731 -0.8377600398 0) (99.68429257 -0.8354173682 0) (99.7176535 -0.8312653982 0) (99.32763481 -0.8182271926 0) (99.33573612 -0.8180590224 0) (99.57791832 -0.8236063543 -3.439308818e-37) (98.70359237 -0.8082483697 0) (99.03393476 -0.812893518 0) (99.02651921 -0.8130705671 0) (99.04256547 -0.8158487007 0) (99.03784102 -0.8139285779 0) (98.70727455 -0.8093019378 0) (98.01766733 -0.7990107067 0) (98.02481462 -0.7991624782 0) (98.36356354 -0.8037374679 0) (97.37295902 -0.7891270759 0) (97.69350661 -0.7943332297 0) (97.68592523 -0.7940609355 0) (97.70238458 -0.7975789137 0) (97.69762012 -0.7955057795 0) (97.37745259 -0.790344959 0) (96.76033706 -0.7767092953 0) (96.76994182 -0.7772712991 0) (97.06485494 -0.7834584341 0) (96.22039396 -0.7631933765 0) (96.48845837 -0.7705261385 0) (96.47804884 -0.7698916976 0) (96.50107991 -0.7740561687 0) (96.49439527 -0.7718586297 0) (96.22687159 -0.7645542826 0) (95.71087751 -0.7458648201 0) (95.72393126 -0.7466659293 0) (95.96561494 -0.7552479721 0) (95.27907297 -0.7274920319 0) (95.49514919 -0.7374226641 0) (95.48113867 -0.7365770723 0) (95.51248524 -0.7410771669 0) (95.50337722 -0.7388395427 0) (95.28792864 -0.7289190155 0) (94.86705245 -0.7044645757 0) (94.8842096 -0.7054546765 0) (95.07549704 -0.7168454721 0) (94.53748732 -0.6803693713 0) (94.70497224 -0.6933026586 0) (94.68663952 -0.6922185689 0) (94.72778169 -0.6969136086 0) (94.7158369 -0.6947327037 0) (94.54903241 -0.6817478565 0) (138.0841987 14.93538025 0) (136.5941249 14.28765971 -7.335546273e-21) (135.966243 15.68761385 -8.733175017e-21) (137.5612681 11.61559385 0) (137.1167136 13.00004495 5.394385475e-19) (138.6153702 13.47926904 2.825980656e-19) (138.0050783 -5.561205485 -5.699794298e-19) (136.9119804 -5.141437661 -1.07709204e-18) (137.2508428 -4.168557645 5.468133442e-19) (136.0833541 -7.049509991 -5.22976809e-19) (136.5129747 -6.16587731 1.086403968e-18) (137.5726995 -6.577458058 -1.106186837e-18) (139.6749823 9.22635695 -2.891503792e-19) (138.2041975 8.95491711 5.680313707e-19) (137.9170547 10.31047566 2.758688501e-19) (138.5691336 6.357507746 -1.153654511e-20) (138.4121746 7.66109665 -5.691747192e-19) (139.8623018 7.824762374 1.185204895e-18) (90.79498916 -5.685002034 0) (90.89919933 -5.608311849 -1.443310067e-19) (90.97315611 -5.657511776 2.165663795e-19) (90.74513732 -5.500890057 2.184367727e-19) (90.82345513 -5.549158252 0) (90.71963458 -5.63199188 7.357321847e-20) (128.6859893 -17.1059666 -4.147134564e-19) (128.1549053 -16.41672104 2.017624498e-19) (128.7608799 -16.01994071 2.002130341e-19) (136.0840218 -9.353546072 0) (135.1330407 -8.796921111 5.090942623e-19) (135.6188316 -7.999231385 0) (134.0833893 -10.40320013 -2.467359459e-19) (134.6151302 -9.678547185 5.144985317e-19) (135.5354626 -10.21234909 -5.004329047e-19) (91.83041294 -6.708816392 0) (91.9630041 -6.640044125 -1.393483212e-19) (92.03158131 -6.712803625 -6.914143993e-20) (91.82932687 -6.487763715 1.400486821e-19) (91.89579932 -6.558129325 2.085172624e-19) (91.76465745 -6.628981597 2.135837262e-19) (93.08784358 -8.101723018 6.619173971e-20) (93.2423614 -8.004749271 6.418540103e-20) (93.33696362 -8.095468556 -6.329408152e-20) (93.05757926 -7.825117716 5.111398617e-22) (93.14925742 -7.914378031 5.229945933e-22) (92.99672228 -8.010265633 0) (93.40086632 -7.714949001 0) (93.2822997 -7.815893212 -1.233059665e-19) (93.18968988 -7.730241232 -1.25029412e-19) (111.7229545 -21.69734256 0) (110.6105437 -21.54847545 -2.886858807e-19) (110.5883573 -20.43057627 0) (110.5080767 -24.02184734 0) (110.6000391 -22.74390525 3.788715204e-19) (111.7856197 -22.93023151 0) (108.330374 -22.1580338 -3.032582976e-19) (109.446075 -22.4859756 0) (109.2850617 -23.72729946 -8.013273006e-20) (94.82089176 -9.948311013 -1.165183167e-19) (95.09326479 -9.748889921 -1.096719992e-19) (95.29720127 -9.871806154 -2.154959416e-19) (94.81381158 -9.48067595 7.122103239e-18) (94.91697681 -9.616347356 0) (94.65375721 -9.79333364 -2.083952217e-21) (95.25142215 -9.257575954 0) (95.11171926 -9.438100879 0) (94.99472884 -9.315954314 6.615389943e-20) (95.17439236 -22.21382353 -4.580627466e-20) (94.84628307 -21.38451966 0) (96.08510911 -21.20642787 3.101848028e-20) (91.37828452 -21.42185828 0) (93.32552081 -21.54980949 0) (93.80869403 -22.38459798 -4.877519108e-20) (93.06957525 -19.56058245 -6.382168597e-20) (92.98917243 -20.58018836 6.392890108e-20) (91.03485536 -20.3101112 0) (100.7766066 -29.95014301 -3.916937311e-20) (101.8882243 -29.70830968 1.397578773e-19) (102.1713257 -29.88438884 -1.152228135e-20) (101.2876494 -29.30487938 0) (101.5815862 -29.56883398 9.612013703e-21) (100.5896138 -29.80141125 7.296320783e-20) (97.03880464 -21.08287058 2.003435762e-19) (97.74409435 -20.85825044 5.450734009e-21) (98.08233338 -21.54851467 -5.311394527e-21) (102.358508 -19.6273728 6.1445462e-21) (102.9450007 -18.9081947 0) (103.6484193 -19.57576024 4.149187885e-20) (101.7202791 -17.53167173 7.640268829e-20) (102.2796271 -18.29456602 0) (101.6934735 -18.85431274 5.445860532e-21) (105.8889085 -22.38048538 -2.742017446e-19) (106.2593471 -21.30783476 6.389587834e-20) (107.2652957 -21.76345979 -6.383863372e-20) (104.4463619 -20.20659323 1.449096919e-19) (105.3192445 -20.7824748 -4.157441938e-19) (104.8844882 -21.77517176 2.535775437e-19) (78.34811462 8.306708805 -1.215369568e-18) (81.05188232 6.129116309 -5.717235328e-19) (80.40359072 4.123258628 6.054703913e-19) (83.50869206 9.215709867 0) (82.14675175 7.864853231 0) (80.29786904 9.467010945 -3.023180463e-19) (85.07214375 5.844766905 6.402851653e-20) (83.77878024 6.78095559 0) (84.81155331 7.93863615 -4.910613659e-19) (87.52634331 14.43029037 -2.563664828e-20) (87.9355515 16.44147199 9.465663804e-20) (89.67075286 15.75726649 0) (83.1648156 17.35732741 0) (85.820667 17.02334693 3.214749022e-19) (85.66486658 14.61600504 9.79711057e-20) (88.22770698 22.41470623 0) (86.58145141 19.73315911 0) (83.65652516 20.83882789 0) (101.6469683 23.16788279 -3.140601722e-19) (103.6459967 22.28233374 0) (102.799287 20.71194565 7.684466701e-20) (106.3217004 25.83385502 -4.374699426e-19) (104.7597652 23.99823508 1.627118209e-19) (102.6227488 25.2526878 -3.618716926e-19) (107.5694072 21.10374887 -3.407919883e-19) (106.2860276 22.52962467 -2.505866902e-19) (107.9148439 23.97542249 -1.541817798e-19) (125.6449066 9.656117841 -4.341941339e-19) (127.4061287 10.55796547 0) (128.2639121 8.948810378 0) (125.1251505 13.53787612 2.075561651e-20) (126.3592851 12.12682799 -2.031125304e-19) (124.7051358 10.93150457 0) (130.3377179 14.75438313 0) (128.2311135 13.36474892 -2.288870992e-19) (126.8502821 14.99149903 0) (89.48797237 -3.578412807 -2.071054934e-19) (89.72234653 -3.764904401 1.003350392e-19) (89.45389835 -4.011233607 0) (90.42846313 -3.892481645 1.947671165e-19) (90.2318434 -3.720943113 -9.763680057e-20) (90.54353364 -3.523491028 -1.427737515e-21) (88.63686062 -3.462928882 5.407127029e-19) (88.9670927 -3.15293437 -1.489566403e-21) (89.2367504 -3.375656235 1.038775092e-19) (127.7008425 -2.29836987 -4.640466575e-19) (129.4217238 -2.604802301 4.865063355e-19) (129.0305241 -4.058859544 -9.654414973e-19) (129.8484532 0.5255761632 0) (129.7009119 -1.051651823 0) (127.921934 -0.8512101705 4.635391973e-19) (133.7278114 -1.692351696 -6.895462629e-19) (131.6343573 -1.335545342 1.072547825e-18) (131.8483293 0.407746551 -1.605900202e-18) (91.05075443 -4.8216034 1.821362039e-19) (91.20973817 -4.951405516 -8.879083906e-20) (90.98573878 -5.11963443 0) (91.70476786 -4.624403501 8.895209351e-20) (91.45011533 -4.787632074 -3.53865906e-19) (91.29505791 -4.654718236 0) (91.74434079 -5.052034602 2.599979877e-19) (91.59933418 -4.924050706 8.986230835e-20) (91.8504393 -4.77581574 0) (91.07463818 -4.028773609 -9.180607106e-20) (90.79587408 -4.215632439 -2.821719382e-19) (90.61588641 -4.061720768 1.894319382e-19) (91.13494318 -4.511262228 1.833453142e-19) (90.96839183 -4.369764698 -1.838548915e-19) (91.23906484 -4.200678094 1.852516918e-19) (90.47498133 -4.738524978 -1.875269003e-19) (90.71326697 -4.550577742 -2.811988919e-19) (90.88523218 -4.687909858 -1.826840524e-19) (90.12028015 -5.26727866 3.760473968e-19) (90.22693367 -5.171268397 -1.494450823e-19) (90.31906512 -5.222934167 0) (90.03801329 -5.05228418 0) (90.13336535 -5.106391748 1.492550306e-19) (90.0250229 -5.208256338 -2.261180217e-19) (123.0502732 -11.24090542 0) (124.1321049 -12.08083423 -2.050014539e-19) (123.247601 -12.88686892 0) (125.8036797 -10.21306062 -2.081835594e-20) (124.9830283 -11.17796219 2.049640451e-19) (123.8290146 -10.29326588 2.023991389e-19) (127.4759179 -13.15398449 0) (126.2028659 -12.10929825 -2.216835441e-19) (127.1151025 -11.09150549 6.61626552e-19) (92.19252625 -5.851411524 0) (92.32626352 -5.987865007 0) (92.1168544 -6.129206076 0) (92.80591271 -5.695989801 -1.621081816e-19) (92.55734993 -5.843235774 0) (92.42319418 -5.711040855 0) (92.83129931 -6.120541816 7.869057571e-20) (92.69259717 -5.983909752 7.952377487e-20) (92.94127075 -5.844314282 -1.592082063e-19) (92.26924337 -5.164326621 -8.402283749e-20) (92.02212006 -5.312190989 8.484908854e-20) (91.88454985 -5.185352898 0) (92.29048447 -5.574539569 2.49119799e-19) (92.15664627 -5.445936592 -1.66093537e-19) (92.40355891 -5.309451923 0) (91.715354 -5.728310045 -1.687358992e-21) (91.9258293 -5.587036558 -1.749613059e-21) (92.05935384 -5.717604386 -2.501851687e-19) (91.32917123 -6.134659088 7.248764003e-20) (91.44555509 -6.070646181 7.16546926e-20) (91.50900732 -6.130629374 3.536830235e-19) (91.31687404 -5.947056747 -2.140388155e-19) (91.38167381 -6.003218601 -1.416997053e-19) (91.26756018 -6.071052635 -1.439173017e-19) (90.75118538 -6.329179008 1.206517058e-19) (90.77175712 -6.355777051 -1.86342923e-22) (90.65565358 -6.375586663 -2.462605092e-19) (128.78418 -23.095448 -5.150859349e-22) (128.7863739 -22.6861543 1.65070736e-19) (129.1518336 -22.54623113 -3.401510696e-19) (128.0496603 -23.0335321 -1.631836396e-19) (128.4135475 -22.90403641 -2.16941574e-21) (128.4207563 -23.27629536 0) (93.36787044 -7.024021649 7.478858658e-20) (93.53999274 -7.1799973 -1.049762179e-21) (93.33428927 -7.364022413 9.599438983e-20) (94.00687524 -6.810019954 -7.167140251e-20) (93.76589272 -6.993793447 7.145947063e-20) (93.59621567 -6.845377978 -1.485701628e-19) (94.12914086 -7.289708812 -7.127774094e-20) (93.94337759 -7.14175482 -2.166735219e-19) (94.18098175 -6.950712582 7.142369872e-20) (93.36773317 -6.241881992 -3.845621935e-19) (93.11915973 -6.40445797 -9.491947768e-22) (92.97283166 -6.265590812 2.340870154e-19) (93.43220948 -6.69579973 0) (93.2724865 -6.547371331 0) (93.52490135 -6.38064579 7.689311739e-20) (92.83565383 -6.879104393 7.916469344e-20) (93.04261207 -6.715449016 0) (93.20228427 -6.868403354 0) (92.40193266 -7.372046515 0) (92.54955666 -7.289093591 -1.335287606e-19) (92.63080565 -7.377601441 -6.647321951e-20) (92.39152562 -7.125172617 -6.779717647e-20) (92.4676035 -7.202031579 2.032967942e-19) (92.32397813 -7.284993277 0) (91.5231007 -7.621888519 6.202032187e-20) (91.54747561 -7.666030369 0) (91.31811655 -7.692937265 -4.984172985e-19) (91.78925987 -7.740122826 0) (91.76378932 -7.691104451 -1.170079247e-19) (91.90882461 -7.662890498 -5.799342913e-20) (91.09569018 -7.208079577 1.253997419e-19) (91.27094231 -7.181220398 -1.223576694e-19) (91.29983858 -7.218435407 3.702550683e-19) (114.7392826 -26.21724556 -3.941094433e-19) (114.0402666 -26.17530958 0) (114.0666379 -25.4559389 -2.420431234e-21) (113.7721443 -27.63657325 4.490333825e-19) (113.9459406 -26.90987638 -2.570017599e-21) (114.6459981 -26.92887372 5.619282192e-20) (112.5467146 -26.80936955 -3.46773071e-19) (113.2472116 -26.86882226 -5.25284566e-19) (113.0595078 -27.59317333 2.234066115e-20) (95.01290501 -8.269144706 6.499804446e-20) (95.28042699 -8.433050492 1.930402288e-18) (95.09159234 -8.729562209 -9.804839913e-19) (95.67453376 -7.868192078 1.060507222e-18) (95.47431844 -8.144480955 -1.662556021e-18) (95.2160616 -7.999841645 -6.196186807e-20) (95.99620568 -8.427258502 0) (95.72513209 -8.309376238 -1.233240493e-19) (95.91125495 -8.015603242 0) (94.7561374 -7.362639194 0) (94.52811668 -7.582958604 6.870740449e-20) (94.32375871 -7.43700163 6.906766239e-20) (94.97177099 -7.866951754 6.482387487e-20) (94.7438676 -7.726644927 6.730232029e-20) (94.96753595 -7.494170452 -6.535438962e-20) (94.32850521 -8.202683308 5.374204028e-20) (94.53045288 -7.965108984 1.051260684e-21) (94.76265862 -8.120002969 0) (93.88909708 -8.891078087 6.246257795e-20) (94.06987987 -8.770812913 -1.205427062e-19) (94.18959496 -8.873569045 0) (93.84420632 -8.569994656 1.2279881e-19) (93.95484063 -8.669268859 -6.390690732e-22) (93.77800386 -8.785469288 -6.378585598e-20) (94.22537115 -8.423887156 5.58936776e-20) (94.10190239 -8.548295919 -5.884078737e-20) (93.98908154 -8.455224125 0) (94.85555433 -10.76179815 0) (94.3499612 -10.33318148 8.775920319e-20) (81.87619028 -8.469284141 0) (98.07927426 -9.667278948 9.391443595e-20) (98.02785785 -10.13697888 -1.764973045e-19) (97.69889581 -10.30020403 9.558120277e-20) (95.11135629 -13.80451118 4.322126939e-21) (95.58290411 -13.07409274 0) (96.68740271 -13.48097638 4.937230258e-20) (81.90533536 -11.15202062 0) (93.49424765 -12.6569239 -6.832013761e-20) (92.5931219 -13.20030792 1.502998629e-19) (92.16480745 -17.57348605 -1.509494296e-19) (93.61554787 -17.89264061 1.221757691e-19) (93.35255348 -18.68435307 5.893558442e-20) (82.86211987 -7.074443001 1.998951805e-19) (82.88678457 -6.592190308 0) (83.33435946 -6.554054732 -2.003435088e-19) (81.92799896 -6.571679312 1.098711277e-19) (82.41667251 -6.535622709 1.064329573e-19) (82.36912086 -7.087604671 -3.671604576e-19) (86.47930299 -6.124763392 -1.423704721e-19) (86.48235792 -5.964012946 -1.798965683e-19) (86.63010713 -5.870867979 1.414580478e-19) (86.12013454 -6.125675525 0) (86.31341286 -6.033364916 1.845522568e-19) (86.3224256 -6.227635458 -3.639278932e-20) (134.8929916 20.60419353 0) (133.5054064 19.47464947 -7.418984707e-19) (132.4565424 20.78685911 1.221215624e-18) (135.2524058 16.93528783 -7.991985137e-19) (134.4239502 18.31212864 5.229901346e-19) (135.8605076 19.20134206 2.776574932e-19) (146.7800055 15.11161637 6.123090526e-21) (145.6632419 14.88328995 1.075227616e-18) (145.4371026 15.8271362 5.378003366e-19) (88.76079629 -4.984402099 -9.244589062e-22) (88.85290533 -5.033843789 -1.724893096e-19) (88.6949879 -5.126211634 2.216488627e-20) (89.11416155 -4.828179324 2.410736418e-19) (88.99075197 -4.933929971 0) (88.89297694 -4.882975835 -8.313740109e-20) (89.18465718 -5.049911147 0) (89.08766179 -4.989991845 -8.258628962e-20) (89.21430397 -4.885740528 -4.749435326e-22) (88.68187481 -4.638609844 1.161763138e-22) (88.57662427 -4.761398305 1.682023879e-19) (88.45868034 -4.736747629 -8.459510745e-20) (88.79303632 -4.837054402 0) (88.68836052 -4.796186627 -1.682682474e-19) (88.80244202 -4.680815383 0) (88.43576322 -5.009386342 9.589919503e-22) (88.56813214 -4.907810974 0) (88.66668836 -4.94212926 1.725423294e-19) (87.94912626 -5.193744356 1.504233111e-19) (88.0478173 -5.155990694 2.158480509e-19) (88.08869064 -5.152924959 -1.257146196e-19) (87.96213783 -5.16162407 0) (88.00560204 -5.153487514 0) (87.90969858 -5.196242545 -7.489463326e-20) (88.26556721 -5.42050931 1.428222855e-19) (88.43632002 -5.384136675 -1.384533901e-19) (88.47467506 -5.426638162 1.387171764e-19) (88.36856836 -5.308554493 -1.3654201e-19) (88.40125046 -5.344442331 2.558002773e-22) (88.23556 -5.37767447 1.422543559e-19) (88.65033238 -5.263861024 0) (88.53554476 -5.306129707 0) (88.49883921 -5.272855692 3.004162349e-22) (86.97756234 -5.772900448 0) (87.00469484 -5.656444264 1.398352137e-19) (87.11044951 -5.582084774 -1.407539394e-19) (86.76560435 -5.80231558 -7.11248424e-20) (86.88986501 -5.716067949 1.402699123e-19) (86.86739558 -5.852371468 -2.835388188e-19) (87.7862237 -5.226572797 1.479199746e-19) (87.8703809 -5.180774232 -1.427023456e-19) (87.91730226 -5.165040096 -1.005671115e-22) (87.76787561 -5.215079236 4.262583393e-19) (87.82010623 -5.191435808 -1.425163853e-19) (87.74028303 -5.245307925 0) (139.3577446 -1.136725908 5.860907971e-19) (138.1050454 -0.8799065616 -5.644048472e-19) (138.3054265 0.257105726 1.118143417e-18) (137.5472098 -3.067267669 5.320083679e-19) (137.8499095 -1.986483693 5.497235673e-19) (139.0749343 -2.293009195 -5.913337807e-19) (144.7795751 -2.792728153 1.004896499e-18) (145.0173781 -2.106221769 4.999314964e-19) (145.6387926 -2.35253748 -4.841730346e-19) (143.4799157 -1.71294484 0) (144.2901266 -1.878374361 4.988562073e-19) (144.0315181 -2.50556808 -7.564600481e-19) (144.6653326 -0.5223240618 0) (144.4915838 -1.197758837 1.216779125e-19) (143.6178717 -1.021880989 -2.552291131e-19) (142.4215878 -9.328468283 0) (141.9921024 -8.966078698 -4.795732763e-19) (142.3117207 -8.434901162 -2.448180747e-19) (146.3735437 9.490536778 5.307845812e-19) (146.3228446 10.36235377 3.455001971e-20) (147.3537026 10.42288494 -5.947655969e-19) (144.0134646 0.9880036363 1.021209655e-18) (144.9526058 0.8667466092 1.254194964e-20) (144.817708 0.1806548588 5.048747791e-19) (145.1401158 2.317121038 0) (145.0801392 1.582652384 -1.036223942e-18) (144.0950829 1.697052492 -1.540528168e-18) (146.6160718 1.330225122 2.998550742e-18) (145.8620783 1.507962316 9.965232693e-19) (145.990745 2.248208627 -2.06415146e-18) (139.9738725 3.836009719 -1.173893381e-18) (138.5622508 3.886799642 5.814331985e-19) (138.5974339 5.118095083 5.492020125e-19) (138.4407409 1.432525272 -5.687652586e-19) (138.515941 2.642358138 -1.247341072e-20) (139.8968795 2.531368043 1.17434502e-18) (90.47835506 -5.480817452 -2.226160685e-19) (90.58189414 -5.393809241 2.196580743e-19) (90.66494327 -5.441885312 -3.653863446e-19) (90.40888872 -5.284802904 7.395692246e-20) (90.49684583 -5.334044686 7.371176938e-20) (90.39269913 -5.427718153 7.406758754e-20) (88.81196878 -5.543733331 -1.34141821e-19) (88.75835872 -5.505557298 1.338860525e-19) (88.87880548 -5.45264954 1.302890732e-19) (88.4408628 -5.615780629 -2.935343868e-19) (88.61649333 -5.560026056 2.809969244e-19) (88.67154369 -5.601203098 -4.236704942e-19) (88.51725271 -5.471310781 1.39376505e-19) (88.56463429 -5.516240455 -4.05013624e-22) (88.38722275 -5.56817004 0) (130.2514845 -22.32307168 0) (130.2646276 -21.92846399 1.750196859e-19) (130.6222987 -21.77620096 0) (129.525681 -22.31708644 5.149285646e-19) (129.8920349 -22.16730561 -2.596283664e-21) (129.8914854 -22.53142631 0) (131.2444165 -15.07957877 6.881665108e-19) (130.592571 -14.39371346 2.201831645e-19) (131.1904079 -13.88278814 2.300457387e-19) (129.3765302 -15.46063407 -2.204936179e-19) (129.9804966 -15.01055787 -1.088485273e-18) (130.6079783 -15.63886627 4.382432728e-19) (128.5573782 -18.23308748 -4.826121661e-21) (129.1025208 -18.95436658 -2.086796373e-19) (128.4070586 -19.36867665 4.122863491e-19) (130.5019174 -18.05934251 -2.287454235e-19) (129.8000053 -18.51950975 -2.189338212e-19) (129.2280986 -17.79962645 4.237499008e-19) (130.8427768 -20.06791075 -3.396526576e-19) (130.3829307 -19.28084463 0) (131.1158934 -18.82856166 6.745824875e-19) (139.898523 -12.08247634 0) (140.2619615 -11.63983158 4.466748536e-19) (140.63523 -12.0211976 -4.54679807e-19) (136.2138422 -16.64050216 2.038774483e-19) (136.0468192 -16.16651138 0) (136.4072229 -15.89164026 1.970683038e-19) (133.762382 -12.52289897 -1.237117831e-18) (132.9622477 -11.87366542 -4.843657042e-19) (133.5256751 -11.22122193 7.314755037e-19) (131.7928498 -13.20241697 2.29014095e-19) (132.3776797 -12.62262558 0) (133.1456189 -13.22706082 7.316630814e-19) (91.10324732 -6.924977471 1.520417512e-19) (91.1280944 -6.966102222 1.214661681e-19) (90.95924557 -6.993819193 -1.224781094e-19) (90.73829313 -6.546037702 1.115725495e-22) (90.8704687 -6.526945875 2.456056601e-19) (90.89189509 -6.563168727 -1.229557721e-19) (91.57368088 -6.406196321 1.426635354e-19) (91.6993233 -6.34136272 7.086338094e-20) (91.76399885 -6.408873991 4.217081202e-22) (91.57217359 -6.202036813 -1.416771483e-19) (91.63557601 -6.266005038 -2.111223591e-19) (91.51199641 -6.333127791 -7.148673246e-20) (92.00911626 -7.801327561 1.137690438e-19) (91.85247703 -7.837433294 1.152376083e-19) (91.82045731 -7.789418821 -5.733426983e-20) (91.92154596 -7.938441355 -5.249198863e-22) (91.88624216 -7.888746142 2.309352343e-19) (92.04546375 -7.854082589 -1.138903719e-19) (91.41438842 -7.949240279 -1.235916721e-19) (91.68744497 -7.921450955 4.753406653e-22) (91.71945509 -7.973565834 1.200773757e-19) (93.09886873 -7.640643624 2.500271577e-19) (93.00989091 -7.555763724 5.064419001e-22) (93.12816823 -7.465136828 -6.167328681e-20) (92.72991889 -7.737221387 -6.778131724e-20) (92.87930345 -7.64657942 -6.50943807e-20) (92.96746969 -7.73548714 -6.476221514e-20) (92.71118643 -7.467941567 -6.564500413e-20) (92.79368645 -7.557122993 3.831050752e-23) (92.64484467 -7.645877919 4.771841275e-22) (108.1603302 -26.65364178 2.792490601e-19) (108.4245906 -25.91488705 -3.209294908e-19) (109.0872044 -26.20691894 -1.950002125e-20) (107.1167953 -25.41959409 -4.628368567e-19) (107.756812 -25.74934899 -4.898695855e-19) (107.4947126 -26.42620477 2.818146659e-21) (110.9422848 -27.33803404 0) (111.1560163 -26.6141989 3.157769552e-19) (111.851191 -26.72112538 7.587302138e-19) (109.7803119 -26.31788194 -3.415272473e-19) (110.4629004 -26.47438847 4.247331498e-19) (110.2383299 -27.2017344 0) (110.6967535 -25.12232001 2.958496848e-19) (110.6176558 -25.7655266 -6.766765786e-19) (109.9407329 -25.64554628 3.909094798e-20) (89.69618442 -10.60586753 0) (90.2066079 -10.3761637 -1.231407678e-19) (75.62531922 -8.43644677 3.030083204e-20) (93.24689287 -10.73174531 2.172613744e-21) (92.52487421 -10.96385387 3.35994079e-20) (92.21051213 -10.59422279 5.96786574e-20) (94.88436599 -9.157768255 -1.710055217e-18) (94.73887543 -9.042686841 5.513742802e-20) (94.86191608 -8.902040761 5.385256891e-20) (94.38627975 -9.333493199 0) (94.58261872 -9.189582967 0) (94.72509771 -9.315922593 1.755403113e-18) (94.31473641 -8.977796264 6.915580242e-23) (94.44547905 -9.082381372 5.88449899e-20) (94.25386612 -9.220549156 0) (58.96096128 -15.13936922 2.273747272e-19) (61.70908039 -14.97178201 -1.184113956e-19) (71.40831796 -16.57743381 0) (45.71406961 -5.247969746 3.288656585e-20) (45.03053961 -11.27382242 0) (39.11526664 -10.45714732 0) (87.03172619 -0.9016759378 0) (87.35740079 -1.438624124 1.170222441e-19) (86.71036366 -1.823089258 -2.420859624e-19) (85.55081772 0.2377128694 -3.86855043e-19) (86.53961434 0.4564429493 0) (86.75018655 -0.2704683031 0) (80.20633386 -1.951520026 0) (80.88222844 -2.708473989 0) (80.0923054 -3.514554981 1.446469798e-19) (82.37328993 -1.52370032 -2.704632871e-19) (81.53829256 -2.058654084 2.73322346e-19) (80.97622921 -1.381626841 1.431714948e-19) (82.74202551 -3.114414318 0) (82.13484764 -2.644510169 -2.67194095e-19) (82.85200845 -2.115155808 4.005370815e-19) (80.45782382 -0.5563124445 -2.159014477e-19) (80.10098945 0.4128078636 1.086037128e-19) (81.28154058 0.6286992552 -2.194820041e-21) (77.64489444 -0.4989732412 -7.940384712e-20) (78.99706248 0.02085577631 -3.834579464e-20) (79.57071038 -1.034394825 0) (87.79483066 -4.871239529 1.042414471e-21) (87.95660284 -4.856387916 -3.548541186e-19) (87.86937015 -5.012417572 1.834320109e-19) (88.10860099 -4.507892331 -3.582015245e-19) (88.03795574 -4.68889298 0) (87.86095761 -4.678572167 8.981409459e-20) (88.33112562 -4.71375232 -8.513920255e-20) (88.19211967 -4.702892872 0) (88.27559243 -4.554375618 2.617785747e-19) (87.24500339 -4.336400772 -9.899419652e-20) (87.16555063 -4.608479085 -1.962312019e-19) (86.88143071 -4.584238484 0) (87.6555376 -4.657051832 0) (87.42344037 -4.636797224 9.536667114e-20) (87.49085986 -4.400736542 1.913736507e-19) (87.35163606 -5.14438393 -1.874533054e-19) (87.38626553 -4.901757125 1.88521412e-19) (87.60799023 -4.888071512 -5.515537137e-19) (118.8500628 -18.45427492 0) (118.2456048 -17.3368576 -1.588599187e-19) (119.2573557 -16.93351887 4.795766377e-19) (114.8309655 -29.28893574 -2.052420255e-19) (115.1609969 -28.95151214 3.075865627e-19) (115.4959939 -28.98408773 -4.164403293e-19) (114.4630918 -28.97008886 0) (114.8092586 -29.00910205 -1.015930221e-19) (114.5160534 -29.31726379 0) (102.1026752 -24.13829732 0) (101.5523065 -24.67997099 -3.23585853e-21) (101.0176246 -24.19138044 0) (102.7112701 -25.66121038 2.536142167e-19) (102.1098079 -25.18006234 3.230561994e-21) (102.6810161 -24.53752327 0) (100.6483537 -26.36743249 -1.75070733e-19) (101.4410782 -25.76719511 0) (102.0527948 -26.26781485 -2.493373285e-19) (105.5519663 -25.57464135 -2.564149511e-20) (105.8627073 -24.82205814 -2.725897776e-20) (106.4755403 -25.21618098 2.228007791e-19) (85.27210696 -4.826231323 0) (85.72687867 -4.87561607 0) (85.68273346 -5.344547724 0) (86.00171906 -4.027750927 0) (85.83432775 -4.429610729 4.390355737e-19) (85.41096679 -4.341930946 -4.479641492e-19) (86.56705363 -4.544229158 -4.143801781e-19) (86.21890118 -4.50151201 -2.147784815e-19) (86.35238378 -4.160382339 0) (84.31800206 -3.249661004 2.459753509e-19) (83.90905141 -3.799913958 -2.456428048e-19) (83.33843513 -3.50312436 0) (84.94878825 -4.208094711 4.670198846e-19) (84.44728037 -4.037293404 1.457487235e-21) (84.77428518 -3.552857799 -3.507073601e-21) (84.03589265 -5.242635218 -2.446508409e-19) (84.2168126 -4.610243322 0) (84.76868729 -4.742126765 0) (129.3237357 33.54565404 -8.838385313e-19) (126.8628139 34.47691339 1.639603599e-18) (127.7826705 37.30250493 -8.505986514e-19) (125.3431746 29.93099832 7.799946063e-19) (126.0553722 32.07588809 8.080554242e-19) (128.2364422 31.25920497 0) (121.4881605 33.0029128 7.639332476e-19) (123.7776552 32.68489258 -8.026751632e-19) (123.3510978 30.21073844 -7.734199053e-19) (129.8018111 25.43870743 2.237242212e-19) (128.713556 23.79697936 -2.252232409e-19) (127.30519 24.93040822 -1.033044373e-19) (131.3157488 21.79990003 -4.917380332e-19) (130.0435399 22.9722809 -7.023127846e-19) (131.2258692 24.37359431 2.337839308e-19) (120.6018651 -23.36046202 -1.545224232e-19) (121.2671598 -23.27616339 4.704179831e-19) (121.5082343 -23.94019954 -4.722089022e-19) (122.3201434 -22.09962288 -3.28117169e-19) (121.6312002 -22.32170188 0) (121.4028437 -21.5488229 0) (119.438582 -24.35204267 -1.414939206e-19) (119.2468624 -23.63890541 1.405247923e-19) (119.9154874 -23.58060703 -5.877168877e-19) (126.0936679 -21.52072774 -3.865124324e-19) (126.7986537 -21.20137104 3.810719689e-19) (127.1792984 -21.96098196 0) (125.9210599 -19.80645399 -1.911179198e-19) (126.361341 -20.47375957 -5.752001123e-19) (125.676462 -20.7882927 -3.714995775e-19) (127.7234883 -19.76894699 -6.091844396e-19) (127.0381355 -20.12424393 0) (126.5899649 -19.39310911 1.908880591e-19) (123.3043272 -20.97821495 1.720986883e-19) (123.6565658 -21.64050987 -1.742114943e-19) (122.9815996 -21.8743267 3.322793977e-19) (125.0034799 -21.09688873 5.442359816e-19) (124.3240981 -21.37120711 -1.761448505e-19) (123.9605379 -20.64136119 3.569409833e-19) (125.0246208 -22.8405281 1.802293172e-19) (124.6951365 -22.09613467 -3.596131368e-19) (125.3931003 -21.81693598 -3.27606319e-21) (99.84376875 -29.21041442 2.995309462e-20) (100.6502211 -28.85854854 0) (100.9681792 -29.13963978 1.045697418e-21) (100.0015771 -28.3688427 -2.51101642e-20) (100.3030408 -28.67153599 -1.858015612e-19) (99.57139476 -28.98628571 8.892809414e-20) (78.43834127 20.64709484 -2.533053232e-19) (78.84695666 23.22422118 -7.201095888e-19) (81.21465083 22.50895247 4.569352497e-19) (72.43933808 23.71869118 2.420736207e-18) (75.96579402 23.69596182 5.24145129e-19) (75.95956708 20.44742886 0) (78.58939439 31.42332039 1.192909354e-20) (76.63232352 27.48022706 -9.348477322e-19) (72.85293212 28.4277864 1.994826074e-18) (76.6458609 17.46441191 -1.072082229e-18) (77.31863684 15.00691439 4.140645738e-20) (75.42413427 13.97673904 -1.214737395e-18) (67.32112628 9.302079487 7.861272135e-19) (70.60184128 7.816199559 -1.470044896e-18) (69.91869311 4.702462266 0) (73.56939869 12.43787535 0) (71.90489112 10.38159284 0) (69.29646912 12.48509134 -2.176220619e-18) (75.99053071 7.808844028 0) (74.16770372 8.967232394 -1.387670334e-18) (75.41420891 10.74101568 -1.258421998e-18) (97.07328682 35.52391274 4.34051266e-21) (99.8406148 34.8593826 0) (99.14466372 32.93463781 5.441176671e-20) (102.73578 39.84904963 -6.837812694e-19) (100.9965484 37.20318383 0) (97.86924502 38.34739527 0) (105.7002914 34.88680435 2.4141852e-19) (103.6018107 35.86736119 1.50165309e-18) (105.3173897 38.03782238 -9.727723292e-19) (84.53022228 41.95486634 0) (85.96033215 37.71852717 0) (81.73242763 35.05097021 0) (94.43585609 39.12979073 -8.586149666e-20) (90.32475793 38.9635709 0) (90.20650884 43.21214971 0) (91.38707169 32.76182435 0) (90.72631294 35.51038814 0) (94.25216873 35.94716048 -4.348672996e-21) (138.5063823 40.8146694 1.509579186e-20) (137.3047965 39.14562081 0) (135.7762731 40.34580216 -1.162500407e-18) (139.9614096 36.89362391 0) (138.663289 38.16960815 0) (139.9802257 39.53662258 -3.691434284e-19) (128.8816064 54.18796097 -2.172545928e-19) (125.5702202 54.6653626 -8.204792796e-20) (126.2423984 58.43049455 -9.56952549e-19) (125.3883347 49.29098926 0) (125.5540779 51.42194457 -1.957013038e-19) (128.2643159 51.21362232 0) (134.2060464 41.16970963 1.222800319e-18) (132.5420967 42.39152554 0) (133.5446339 43.92913103 -9.266590159e-19) (127.3193191 -23.76244208 0) (127.3173688 -23.35839092 1.584055893e-19) (127.6789101 -23.23915596 -1.588080014e-19) (126.617047 -23.63975199 3.074721451e-19) (126.9505363 -23.55489225 3.071801344e-19) (126.9617594 -23.9154826 0) (91.26800952 -7.545401065 -6.516270145e-20) (91.47427708 -7.524489501 6.26254374e-20) (91.49849427 -7.569457855 -5.852606104e-20) (113.500703 -29.30830037 -1.896533059e-19) (113.7587619 -28.95888331 0) (114.1044535 -29.01107957 0) (113.0624711 -28.91628243 -4.534677123e-20) (113.3955981 -28.99324912 2.27293522e-19) (113.1688443 -29.31018333 -1.823531543e-19) (93.33785057 -9.226977301 -1.022265387e-19) (93.51919549 -9.180730795 -5.663602995e-23) (93.57086956 -9.232379728 -1.004396092e-19) (93.42314683 -9.068995813 5.159127162e-20) (93.47181779 -9.119033599 5.085048102e-20) (93.29261925 -9.167683738 -7.735792895e-20) (84.51357675 -6.864887195 -1.808444712e-19) (84.46795047 -6.499559115 0) (84.79913651 -6.421847034 1.803534188e-19) (83.73866801 -6.573212034 -3.877187257e-19) (84.11872763 -6.511591559 3.831812908e-19) (84.14627316 -6.931227321 3.728342432e-19) (85.724557 -6.532515145 0) (85.65738495 -6.261747266 -1.655656796e-19) (85.90065377 -6.179545965 1.217400836e-19) (85.10506071 -6.38864595 1.751859719e-19) (85.39318371 -6.30486443 3.434641613e-19) (85.46512392 -6.621716071 -1.675401028e-19) (70.05247025 -4.494715996 6.848383811e-19) (71.17193069 -5.554361913 0) (69.87216934 -6.820318916 0) (74.16624465 -6.271643475 -1.539182106e-19) (73.18290973 -5.41561031 1.562364854e-19) (74.23432492 -4.72024759 -3.065623708e-19) (66.20151813 -2.151886867 -7.545134232e-19) (68.25062049 -1.570267423 -7.159656468e-19) (69.05460256 -3.008936652 7.32963427e-19) (88.074986 -5.199874003 0) (88.19557251 -5.169015748 1.374729229e-19) (88.2241794 -5.181866849 -1.700256721e-19) (88.12742298 -5.159388194 2.859339306e-19) (88.16190789 -5.160705539 -5.673146956e-19) (88.05141312 -5.194914695 4.381158759e-19) (88.46348823 -5.241068206 2.540643248e-22) (88.42898706 -5.214136106 -1.739573868e-23) (88.53405939 -5.177098624 -1.938940006e-19) (88.15710798 -5.277997352 -2.793112068e-19) (88.30700969 -5.247985485 1.357530927e-19) (88.33734135 -5.276342674 1.360145545e-19) (88.25047584 -5.200388717 4.221491319e-21) (88.2777994 -5.22263515 3.385964287e-20) (88.13269233 -5.252638703 1.042800806e-19) (87.3350302 -5.504546992 0) (87.38095122 -5.422337269 -1.402311557e-19) (87.45757573 -5.368642449 2.81420566e-19) (87.20804502 -5.530085035 1.400828476e-19) (87.29771505 -5.466155807 -1.414820147e-19) (87.25693152 -5.563296256 -5.713136174e-19) (87.58788957 -5.324128085 1.447829279e-19) (87.65522157 -5.264442733 -1.006162717e-22) (87.71234666 -5.232460795 -1.417340715e-19) (87.52868869 -5.333145771 -1.412847524e-19) (87.5938895 -5.290291648 0) (87.53237778 -5.359584091 1.446597465e-19) (144.8304677 -4.388692668 0) (144.3078385 -4.127686018 5.114358686e-19) (144.5526934 -3.499805147 3.917710429e-19) (142.6253949 -7.819805123 2.376217996e-19) (142.926875 -7.262906135 -5.027626009e-19) (143.3899395 -7.558309859 5.075503353e-19) (147.3493462 7.784315171 1.05653349e-18) (146.4049316 7.789821003 -2.029220647e-19) (146.3991939 8.629721813 -5.506908257e-19) (146.1095991 3.001485328 0) (146.1830061 3.757070919 -2.160820286e-18) (146.975023 3.645188754 2.658661442e-18) (131.6973529 -21.5183888 3.744645478e-19) (131.7312188 -21.11618074 0) (132.1109402 -20.89672341 3.741596981e-19) (130.9840347 -21.53029467 3.583362509e-19) (131.3555612 -21.325553 -3.592081273e-19) (131.3237094 -21.72100686 -4.608728606e-21) (131.2504988 -20.56176079 0) (131.3346848 -20.93166703 0) (130.9329648 -21.14596761 -5.275850477e-19) (122.098267 -26.55967128 -1.735133075e-21) (122.4348924 -26.52168049 0) (122.2507856 -26.84074301 0) (123.2623983 -25.92788399 -2.825144315e-19) (122.8776088 -26.03163812 2.751087252e-19) (122.9829728 -25.61649958 -2.751817354e-19) (121.2540645 -27.09228055 2.649903533e-19) (121.4037025 -26.72446895 1.302846145e-19) (121.7481706 -26.6854613 -2.700493837e-19) (107.755892 -30.2569209 -6.32300957e-19) (108.294831 -29.90819386 2.611153218e-19) (108.6315497 -30.03074631 -1.898603766e-20) (93.54449815 -9.475675537 1.023664021e-19) (93.73989722 -9.419150229 -1.506014765e-19) (93.80140751 -9.472315477 -5.286006281e-22) (93.62470927 -9.297986245 1.514981283e-19) (93.68108289 -9.352160187 5.008581729e-20) (93.48749997 -9.410719924 0) (93.75959123 -9.709883464 -1.649338381e-18) (93.96945519 -9.655924337 1.517932459e-18) (94.00879394 -9.716740578 -2.786229711e-18) (93.86367432 -9.537245652 -9.931105978e-20) (93.92361345 -9.588764943 4.40067604e-19) (93.72555857 -9.653714526 -5.045876267e-20) (95.8934937 -27.73782249 0) (95.63977651 -27.42944068 -7.285072308e-21) (96.63029249 -27.1361365 -6.165872374e-20) (92.07085165 -27.50532826 1.938978068e-24) (94.26221976 -27.52532685 0) (94.35192242 -27.85495023 0) (96.75018877 -8.256937712 2.132214305e-19) (96.63121462 -8.582634408 -2.12602808e-19) (96.3056986 -8.517319393 0) (96.80489282 -9.384008025 2.594089539e-21) (96.87972163 -8.986253239 -2.098322928e-19) (97.23580946 -9.000424737 0) (95.26644405 -10.58846231 -1.110818818e-19) (95.04247031 -11.02632521 -2.301518423e-19) (94.64399482 -10.88980754 -2.471764444e-21) (95.61656309 -11.32469842 8.478156019e-21) (95.24485332 -11.05686501 2.274411601e-19) (95.58971125 -10.71167866 -1.613742414e-21) (75.71990798 -8.359936076 -1.196898119e-19) (91.21484239 -11.2910399 -1.139640803e-19) (91.17798514 -10.67080554 -1.14957496e-19) (98.45078774 -22.16137114 -3.768109117e-20) (98.84087467 -22.86310357 4.994946635e-20) (98.00610391 -23.21753646 -1.15063224e-20) (59.00485633 30.59785652 2.762645617e-18) (63.19342011 30.68497015 0) (62.93941782 27.0715017 0) (65.76740823 40.68246648 -2.340346552e-19) (63.25980005 36.18615191 -1.891031391e-18) (58.93848335 36.69517376 0) (64.37442253 22.65211581 3.706202762e-18) (64.93321483 20.07809102 -1.353104277e-18) (62.76041203 18.1279116 -1.413823162e-18) (53.02197298 12.4860823 -3.636749101e-18) (56.80713671 9.94170971 6.514412686e-18) (55.83519352 5.998958044 0) (60.51739464 16.06516201 3.017485142e-18) (58.44424818 13.40037053 -3.160330641e-18) (55.49047938 16.40799222 0) (63.59349275 9.580334441 0) (61.19746007 11.22390561 2.919666116e-18) (62.81227281 13.55134689 -5.781817876e-18) (94.75899648 56.18231358 0) (93.30660493 53.34366648 0) (89.32271213 53.41939803 0) (71.6867752 54.84125519 0) (74.22546107 49.92195488 0) (69.15213806 46.43460953 0) (84.87885498 53.4398094 0) (79.55957899 52.47724253 0) (78.17856156 57.29542629 0) (90.59797264 -6.297678989 0) (90.70689308 -6.275966301 -6.006331068e-20) (90.72959014 -6.299713966 1.206621578e-19) (91.32748747 -7.262002486 -1.238744112e-19) (91.35394913 -7.299172753 -1.239015873e-19) (91.17197702 -7.32330753 3.189421625e-19) (80.43141606 -14.77174503 -7.967088091e-21) (77.26683972 -14.50451396 9.971006291e-20) (60.3278362 -9.525645294 -1.030727922e-19) (90.37600128 -16.42511683 0) (86.5362928 -15.3211462 -1.00489362e-19) (87.48085117 -14.5741939 7.629561558e-20) (83.89214363 -16.73431605 0) (85.27454333 -15.9036703 0) (89.81216308 -17.11967126 0) (145.1894788 16.73680707 -1.07707465e-18) (144.9061529 17.69943094 1.074966811e-18) (146.0572723 17.99522862 5.479214105e-19) (139.4835466 -13.43118502 4.415273052e-19) (139.1504673 -13.00600905 -6.588776966e-19) (139.5247365 -12.59140547 4.393647578e-19) (136.8027858 -15.48265971 2.04031439e-19) (137.198549 -15.14626458 0) (137.4781913 -15.5533241 -6.354410911e-19) (90.9048721 -6.862804235 2.487303054e-19) (91.05838041 -6.840995836 0) (91.08056637 -6.879469193 -9.119981226e-20) (90.91458951 -6.604595009 -1.227638821e-19) (90.93851547 -6.641636801 -6.149732303e-20) (90.80015254 -6.665985922 0) (119.330529 -27.11158708 1.191987039e-19) (119.6580687 -27.11388999 1.192026627e-19) (119.5568488 -27.44116345 2.432257341e-19) (93.93015623 -9.792337824 -8.474027354e-20) (93.8402601 -9.851600382 -1.47017393e-18) (93.52181768 -9.850349944 3.621246926e-18) (93.23028872 -25.17322436 0) (93.40832081 -25.62842053 -7.749342416e-20) (92.07194309 -25.70519317 2.24733446e-20) (76.67277148 -20.97282137 -2.914689054e-18) (83.13348466 -21.66544047 0) (84.37485044 -22.45464691 2.169438197e-18) (81.31071846 -20.16846184 -4.54498886e-20) (81.26021352 -20.88374011 0) (74.91991771 -19.79820757 0) (113.4611972 21.79584861 0) (113.6966852 19.75331941 -2.247911875e-19) (112.0009508 19.61181476 2.262255529e-19) (115.284087 -24.03289377 -3.512853349e-19) (115.9237869 -24.11889319 -7.918054083e-21) (116.0337874 -24.72658419 4.79308627e-19) (113.290827 36.73536077 0) (114.3095468 34.40365466 2.489079085e-19) (112.2413532 33.94410931 4.161629873e-19) (99.98837602 0.08583651223 0) (99.98292841 0.1112730415 -1.781541437e-21) (99.99855252 0.03861311423 -1.821383493e-21) (100.028116 0.239835328 1.671727538e-21) (100.0186994 0.1959637875 3.400418297e-21) (99.99943187 0.06730588067 5.044479873e-21) (100.1776556 0.9366129466 -2.731604438e-21) (100.1877931 0.8630839767 -1.952017239e-20) (100.1359046 0.7212607193 1.111841774e-20) (100.5806919 1.560156948 0) (100.5549078 1.424763702 -1.156099775e-20) (100.4429828 1.300598185 3.449060218e-20) (101.2004285 2.074217918 0) (101.1313811 1.882717394 0) (100.9682244 1.794462182 0) (102.0256631 2.380997615 7.170362233e-21) (101.9007816 2.146648542 -1.443473806e-20) (101.692589 2.122825601 4.163882435e-20) (103.007058 2.3793134 -1.590834202e-20) (102.7878448 2.100832755 6.829571696e-20) (102.55823 2.164581685 -6.223010995e-20) (104.0362148 1.953624968 0) (103.6868727 1.688508625 -3.52927935e-20) (103.4670126 1.849847568 3.53435551e-20) (104.9173252 1.053229533 2.756942535e-19) (104.4520974 0.8709845777 1.167028706e-19) (104.2864711 1.127423775 3.734764084e-20) (105.3934658 -0.2251537784 -4.197036262e-20) (104.8545689 -0.2743006773 -3.947812393e-20) (104.7969991 0.0391551198 0) (105.3039032 -1.657283684 2.095439826e-20) (104.7592246 -1.551716801 -1.197176733e-19) (104.8312864 -1.240106827 1.212039893e-19) (104.6578376 -2.965931937 1.914878181e-20) (104.1737336 -2.730158322 -9.616712973e-20) (104.3601686 -2.473306619 5.842563691e-20) (103.6087015 -3.954026356 -7.262563161e-20) (103.2246599 -3.639098291 -6.897415932e-20) (103.4861993 -3.467451852 0) (102.3642352 -4.536334723 6.139935066e-20) (102.0918566 -4.207407037 0) (102.3861619 -4.125901194 -6.25927621e-20) (101.1028132 -4.755292009 -5.580841933e-20) (100.9158283 -4.43795174 4.572133356e-20) (101.2026115 -4.435294091 1.152921846e-19) (99.95572526 -4.695814322 0) (99.83778604 -4.405864242 0) (100.0957932 -4.456993945 2.947369029e-21) (98.97338874 -4.449115832 0) (98.89843786 -4.199713237 0) (99.11882074 -4.281215238 0) (98.16743753 -4.110811304 0) (98.1149536 -3.903198288 0) (98.29724108 -4.000346859 0) (97.51610373 -3.729704113 0) (97.47129037 -3.560107701 0) (97.61966249 -3.661827129 0) (96.99035186 -3.344381437 0) (96.944078 -3.208681087 0) (97.06566366 -3.307545543 0) (96.56404668 -2.978192865 0) (96.51151594 -2.869578001 0) (96.61161842 -2.962011678 0) (96.21642871 -2.642401398 0) (96.15610429 -2.553427886 0) (96.23839248 -2.637840652 0) (95.93053653 -2.339781693 0) (95.86213991 -2.265798681 0) (95.93053383 -2.341566246 0) (95.69278915 -2.070296861 0) (95.61621393 -2.008175975 0) (95.67363314 -2.07547903 0) (95.49305859 -1.832451947 0) (95.40857329 -1.779821465 0) (95.45720406 -1.839148699 0) (95.32373653 -1.624026896 0) (95.23181878 -1.579070517 0) (95.2733377 -1.63104854 0) (95.17897773 -1.442512216 0) (95.08017961 -1.40381216 0) (95.11589757 -1.449100264 0) (95.05423262 -1.285438749 0) (94.94911246 -1.251869168 0) (94.98007231 -1.291104666 0) (94.94586314 -1.150478466 0) (94.83495022 -1.121128109 0) (94.86199576 -1.15489878 0) (94.85091745 -1.035542428 0) (94.73469885 -1.009656715 0) (94.75852869 -1.038492669 0) (94.76688657 -0.9387884651 0) (94.64575944 -0.915676527 0) (94.66701986 -0.9400605697 0) (94.69175092 -0.8588146704 0) (94.56603939 -0.8375983402 0) (94.58516924 -0.8579430891 0) (94.62393244 -0.7942229486 0) (94.49410059 -0.7743058306 0) (94.51141338 -0.790901288 0) (94.56167084 -0.7434665208 0) (94.42805944 -0.7250563874 0) (94.4441324 -0.7381247169 0) (94.50330925 -0.7059022325 0) (94.36590194 -0.6888282682 0) (94.3810401 -0.6986420687 0) (94.44770325 -0.6808969147 0) (94.30669265 -0.6648301485 0) (94.32124651 -0.6715505696 0) (94.39362861 -0.6677974804 0) (94.24972338 -0.6529978369 0) (94.26402672 -0.6562798897 0) (104.0896276 19.79655186 0) (105.0116639 21.13383215 2.074024947e-19) (106.2833244 20.06195036 -2.070806606e-19) (92.75569997 -7.298244922 -9.466098557e-22) (92.67458448 -7.212907311 1.955188425e-19) (92.79430149 -7.137168481 -1.286241845e-19) (98.32598288 -9.819406266 0) (98.19465657 -9.928103221 0) (98.43958331 -9.608136122 1.691665539e-19) (96.94623667 -12.80967391 9.522202771e-20) (95.98238222 -12.46185703 6.390395268e-20) (96.39202233 -11.7674256 -1.032193427e-19) (94.61072118 -18.8274667 -9.814186658e-21) (94.78329231 -18.13492318 -1.627506578e-19) (95.62492207 -18.24583903 3.879984801e-21) (137.1891701 0.4204831916 -1.090109437e-18) (137.0128602 -0.6458979068 0) (135.7442704 -0.4744293528 5.249347337e-19) (135.9791427 2.640681581 0) (137.3661809 2.643537738 -5.486137765e-19) (137.3041972 1.538070216 0) (108.6987717 -18.03875525 2.431143584e-19) (109.5570349 -18.34048324 1.743207818e-19) (109.5904032 -19.21015467 0) (93.76761444 16.36894395 -1.925777169e-19) (92.77036475 15.53908589 0) (91.71624621 16.44430276 0) (95.78317655 19.42325714 -2.713281977e-20) (96.19125578 17.88208275 -5.447633278e-20) (94.83406632 17.36396847 8.849384081e-20) (85.70967998 4.255152328 0) (86.75785723 3.817920364 1.190237496e-19) (86.46588595 2.957153628 0) (85.93061122 8.780332579 -9.340035055e-19) (87.11193758 9.2791886 0) (87.62175112 8.344827885 0) (88.9940116 11.46300326 0) (87.75668747 11.12308419 -1.181066126e-18) (87.66221378 12.72051638 4.056248316e-19) (110.4836749 18.97183719 0) (109.1193246 18.63248736 -1.208271611e-19) (108.4355323 19.61839891 -2.465741148e-19) (118.7573644 17.49580505 0) (120.4878267 16.84159502 0) (119.5513484 15.06144677 0) (119.7189382 -13.99156204 3.393814223e-19) (120.4955006 -14.90351596 -1.626838807e-19) (119.5512775 -15.42623878 0) (122.3470151 -13.63748946 0) (121.4230998 -14.29654647 -1.761070557e-19) (120.586052 -13.30699578 1.767244792e-19) (93.77503381 -6.235249908 3.003925963e-19) (94.02678405 -6.098899268 -7.487039328e-20) (94.18161415 -6.202692862 0) (112.2982884 -18.45305578 -1.051060178e-19) (113.2525573 -18.52218197 4.684559979e-19) (113.5367676 -19.46537775 -9.425897535e-19) (95.19653381 -7.26919718 -1.2732737e-19) (95.42857474 -7.061644769 6.469208794e-20) (95.63969928 -7.148972764 1.241553774e-19) (95.0368045 -6.830563014 6.638192107e-20) (95.23028958 -6.929313259 -6.609620045e-20) (94.99067925 -7.145410489 -6.794248638e-20) (96.77341548 -7.63906534 0) (97.04449162 -7.641593033 1.961063455e-21) (96.8892162 -7.952539746 -4.256468169e-19) (95.80095223 -10.41502635 -2.647293641e-21) (95.99331479 -10.1498825 -2.02549183e-19) (96.26505206 -10.16642915 0) (99.43510279 -16.03435057 3.915311488e-21) (98.78610548 -16.16284403 -1.105032023e-20) (98.72512338 -15.36665292 1.107553559e-20) (89.32931416 -4.780668348 -7.800271401e-20) (89.44335977 -4.677032231 0) (89.54537552 -4.731911251 -7.804564217e-20) (89.22908928 -4.559176808 7.989388418e-20) (89.33834363 -4.609502621 -7.929198401e-20) (89.22659033 -4.720549702 -7.846024552e-20) (126.9839063 -17.22899394 -5.911753862e-19) (127.5496202 -16.9306699 -6.042267629e-19) (128.0487683 -17.54404139 6.060010509e-19) (104.0999181 -18.82331943 0) (103.4425318 -18.28479581 0) (103.7497815 -17.48328254 0) (105.941612 -18.99054389 1.708934048e-19) (105.6708132 -19.87973624 4.119054546e-20) (104.8456812 -19.36566552 -3.926317504e-20) (77.08359104 5.517295557 0) (78.57809992 5.03166748 -3.020671688e-19) (78.34626829 3.73908392 0) (90.35367211 -3.310596605 -9.856156421e-20) (90.02560515 -3.530043869 -3.014930588e-19) (89.80812205 -3.333175841 2.017922919e-19) (89.51636683 -2.345610706 0) (89.08005442 -2.604000502 -3.240561869e-19) (88.81253652 -2.308712334 1.085862576e-19) (89.5785918 -3.110685761 1.426900176e-21) (89.33588027 -2.875378259 -1.659962924e-21) (89.73572608 -2.63977105 -1.027496758e-21) (94.42344596 -6.765349197 2.798167441e-19) (94.67440317 -6.586617575 6.887250337e-20) (94.85377094 -6.692112105 -9.896094706e-22) (94.33668736 -6.33936221 7.217807741e-20) (94.5030047 -6.44621987 0) (94.25115316 -6.631540574 -6.947567764e-20) (96.10400814 -7.735904353 -2.362657315e-19) (96.30427057 -7.490598568 5.959881957e-20) (96.52833619 -7.555317695 0) (95.85667547 -7.271645243 -1.226270694e-19) (96.08871292 -7.354294512 -1.147074238e-19) (95.87988862 -7.599273859 1.137176634e-19) (82.58966904 -8.381012596 1.488664855e-19) (93.52634208 -9.898421277 -7.773229322e-20) (93.58115442 -9.252177375 0) (95.02693579 -11.96330183 1.264129434e-19) (93.95753487 -12.17276212 1.967543736e-19) (83.99182768 -10.89540857 -3.063913094e-21) (94.01325942 -16.56793308 -6.495274901e-20) (93.78984021 -17.16952309 -6.383052547e-20) (92.52382138 -16.83942087 1.48215043e-19) (88.90134343 -4.572944955 0) (88.99747703 -4.457385836 -8.439181339e-20) (89.1149935 -4.495900423 -8.114350568e-20) (135.6051922 -1.517931427 -1.058453056e-18) (136.7752916 -1.703818489 5.184461801e-19) (136.4197301 -2.667273822 -1.086465802e-18) (137.3497044 4.980053009 -1.655487627e-18) (137.4129358 3.802242815 1.09807365e-18) (135.9376436 3.727093171 0) (88.63216267 -0.8935115335 0) (87.98241343 -1.123791219 1.14865256e-19) (87.7320142 -0.6235816778 -2.319976622e-19) (88.53636131 -1.961834108 2.23842325e-19) (88.25695454 -1.576601559 -2.244517745e-19) (88.84443128 -1.33552608 -1.105343745e-19) (88.21453547 1.226491085 -2.272914425e-19) (87.29753539 1.289659147 0) (87.32395204 2.015712432 0) (87.52929655 -0.04215781172 0) (87.38898257 0.5887786301 0) (88.22646644 0.6346620346 3.472961749e-21) (118.608752 -15.88905655 1.439752208e-19) (117.6287492 -16.32774244 -8.123525173e-21) (117.1470422 -15.22250631 4.354406575e-19) (76.80685561 12.14403624 1.744809657e-20) (78.33889466 13.11104963 -1.057918657e-18) (79.14100805 11.82860789 1.623134708e-18) (80.76010064 16.66234452 0) (79.10565705 15.80337434 3.002577638e-18) (78.80192825 18.02631492 -4.772664496e-19) (97.57699272 -9.011626113 -1.946919119e-21) (97.91375503 -8.908224123 -1.796771266e-19) (97.93088499 -9.313423674 -9.17893201e-20) (97.27402935 -8.646122729 9.690151253e-20) (96.9560776 -8.62248672 1.051584864e-19) (97.04414065 -8.319500598 0) (97.48970784 -13.76822967 3.491556551e-20) (97.98370827 -13.8821795 0) (97.95781419 -14.56111456 0) (100.3701556 -16.55339167 -1.021697145e-20) (100.7971835 -16.15377555 6.384407757e-20) (101.2448623 -16.8879481 -1.074583578e-19) (115.1531032 16.67599893 2.479729055e-19) (115.3521528 17.94900579 2.068856818e-21) (117.0257208 17.90080987 0) (110.5231975 -19.35796042 3.762684249e-19) (110.4416616 -18.36039047 1.005934762e-20) (111.3406267 -18.53284551 -2.028281492e-19) (117.4556035 30.90452787 1.45057079e-19) (117.1109803 32.58576611 0) (119.2342111 32.99143503 -6.72781499e-19) (99.80517122 0.6180527588 3.231810412e-21) (99.81382425 0.5559489099 -1.323501739e-20) (99.75274299 0.6228366518 -1.204465747e-22) (99.90292866 0.4021435829 0) (99.86403525 0.4761423453 -3.24979057e-21) (99.86449277 0.5307664755 7.428429812e-24) (100.3440294 1.152846649 0) (100.2576389 1.016310241 1.118310304e-20) (100.2590189 1.101547522 0) (99.48310561 0.9049897132 -3.065734808e-23) (99.52425772 0.8105147516 6.700946235e-21) (99.43271111 0.8496511541 1.378838868e-20) (99.68398999 0.6949288025 9.977893742e-21) (99.60726436 0.749836377 -1.703396817e-20) (99.5755714 0.8424343831 0) (100.8180373 1.670958847 9.638740528e-20) (100.678487 1.561827589 0) (100.7136 1.702546782 0) (99.03837517 1.055641866 -2.291624632e-21) (99.12042176 0.9363584363 -5.67807877e-20) (99.00591427 0.9315713994 2.812519811e-20) (99.33581556 0.8948959126 1.413521285e-20) (99.23058678 0.9137165274 -1.404182832e-20) (99.15920791 1.034107502 -5.608716931e-20) (101.4933014 2.047700802 -3.373389625e-20) (101.3031015 1.986749077 3.330485092e-20) (101.3889863 2.177665579 0) (98.51956092 1.017904958 7.733157126e-21) (98.65705801 0.8845446784 2.312883481e-20) (98.54048879 0.8316746808 0) (98.89160141 0.93366692 2.944905939e-20) (98.7734506 0.9063447439 7.613355606e-21) (98.6519235 1.046840104 -7.601165117e-21) (102.3355416 2.166179299 -6.005916674e-20) (102.1137468 2.184960143 2.938339178e-20) (102.2581841 2.413871429 -8.985705036e-23) (98.00924275 0.7444167763 -7.343324169e-23) (98.20617747 0.629616812 2.433805253e-20) (98.1034849 0.5258132004 -4.979507918e-20) (98.42582673 0.7838076726 -4.73609739e-20) (98.31403658 0.7048667722 -5.59875198e-20) (98.13075944 0.8368603851 1.043428711e-22) (103.2413316 1.944232467 0) (103.0150024 2.055635492 -4.090579443e-21) (103.265679 2.317761548 6.743638583e-20) (97.62082847 0.2415656271 1.37721548e-19) (97.85636288 0.1713629056 -6.79655637e-20) (97.79665866 0.02579810695 -3.442523436e-20) (98.01109281 0.4242383067 -3.436649664e-22) (97.92756249 0.2976010077 -6.74532572e-20) (97.69984989 0.3889159425 6.796776581e-20) (104.1019824 1.329889537 -5.591731741e-20) (103.8998513 1.54062644 0) (104.2802298 1.768259017 -1.87473498e-20) (97.45164936 -0.4254363653 0) (97.7007515 -0.4367479701 -6.949828219e-20) (97.69728217 -0.6011570378 1.477775396e-19) (97.7506875 -0.1194266654 -8.536557047e-21) (97.7182239 -0.2774290329 3.486969291e-20) (97.47082686 -0.2466364871 -1.064868641e-19) (104.7095773 0.3294510312 -1.177826217e-19) (104.5933337 0.6201859756 1.045470829e-21) (105.0828794 0.7585370082 -1.590001928e-19) (97.52933788 -1.149467875 1.42724639e-19) (97.77238805 -1.102415287 4.018815936e-21) (97.82457716 -1.262775492 -4.555116656e-21) (97.70833097 -0.7682062207 -8.710685968e-21) (97.73363397 -0.933045146 -6.104582741e-20) (97.48732605 -0.966024012 -1.423695673e-19) (104.8716412 -0.9120890292 0) (104.8790452 -0.5914903684 -3.957056493e-20) (105.4272433 -0.5848575564 -4.21605219e-20) (97.83082628 -1.839954919 4.282974324e-21) (98.05310868 -1.743989675 -7.125913526e-20) (98.15202331 -1.885261148 6.704438679e-20) (97.88883865 -1.430068024 0) (97.96570972 -1.582292229 0) (97.73677276 -1.671184385 -1.402404726e-19) (104.5215364 -2.166308189 0) (104.6552417 -1.876362997 1.94564624e-20) (105.190272 -2.009819948 6.476365164e-22) (98.3115366 -2.442011517 -3.321448899e-20) (98.50414092 -2.308645314 6.470063485e-20) (98.63926302 -2.421830745 -5.869945923e-20) (98.25994678 -2.038412314 -5.095327306e-22) (98.3782681 -2.166453537 -6.462544927e-20) (98.17711245 -2.29937006 0) (103.7335997 -3.225272065 3.621296627e-20) (103.9637397 -3.008875093 0) (104.4257104 -3.251564227 1.934333809e-20) (98.92536649 -2.923823122 6.094727e-20) (99.08303662 -2.764478271 1.930908133e-22) (99.24344427 -2.844985141 0) (98.78042753 -2.551491304 6.27265797e-20) (98.92949726 -2.64891609 0) (98.76176873 -2.814153046 0) (102.6702627 -3.966439992 3.21559797e-20) (102.9515467 -3.840435086 4.944337615e-20) (103.3085066 -4.141904172 1.258583467e-20) (99.63003691 -3.265598883 5.538027006e-19) (99.74981852 -3.096252534 5.353725779e-19) (99.92063409 -3.152152307 -9.779436753e-19) (99.40618352 -2.945461663 2.853641646e-20) (99.57829428 -3.006782186 -2.825389169e-20) (99.4476801 -3.187314441 -2.005303499e-19) (101.4982474 -4.362118184 0) (101.7948156 -4.322702004 1.177371161e-19) (102.0443607 -4.625533924 -8.940434952e-20) (100.3691591 -3.475533748 -1.482441564e-19) (100.4574256 -3.29754875 4.859257868e-20) (100.6380492 -3.307045367 -2.459075758e-20) (100.0960628 -3.221582204 1.032577181e-19) (100.276802 -3.248373042 -7.761874298e-20) (100.1795979 -3.437724539 -2.568243603e-20) (100.3611393 -4.448706807 4.538076057e-20) (100.634377 -4.475381508 0) (100.8032246 -4.765530635 0) (101.1139165 -3.532490921 -4.336120807e-20) (101.1710822 -3.353518544 4.307277689e-20) (101.3452621 -3.333543292 -9.982001116e-21) (100.8172493 -3.340706255 -4.549147687e-20) (100.9957632 -3.335329711 2.293449236e-20) (100.9305817 -3.529643318 -9.146281873e-20) (99.34863315 -4.317607187 0) (99.58894191 -4.387632002 0) (99.69400344 -4.649025453 0) (101.8134677 -3.465048645 -1.662757686e-20) (101.8451242 -3.293847457 2.319585609e-21) (102.0051539 -3.249395991 0) (101.5147204 -3.336949078 6.091229041e-20) (101.6824725 -3.303635886 0) (101.6445744 -3.491697208 3.857793038e-20) (98.48870533 -4.060472171 0) (98.68925691 -4.150733149 0) (98.7565385 -4.372431334 0) (102.4408752 -3.300329347 0) (102.4561049 -3.146128877 0) (102.5976917 -3.0864926 0) (102.1596023 -3.228727975 0) (102.3106529 -3.17565748 0) (102.2917013 -3.347516565 0) (97.77667279 -3.734601228 0) (97.94137664 -3.83524069 0) (97.99141929 -4.018749229 0) (102.985201 -3.077933198 0) (102.992333 -2.943648916 0) (103.1147107 -2.876220602 0) (102.7337656 -3.04992076 0) (102.8657347 -2.985571222 0) (102.8569903 -3.136414321 0) (97.19454657 -3.383825992 0) (97.32896792 -3.484757129 0) (97.37413581 -3.632940009 0) (103.4482385 -2.82741966 0) (103.4532074 -2.713124844 0) (103.5574196 -2.643473446 0) (103.231932 -2.830488421 0) (103.344688 -2.761368292 0) (103.3396258 -2.891031517 0) (96.71732169 -3.036767334 0) (96.82744421 -3.132716014 0) (96.87548951 -3.250072898 0) (103.8392299 -2.56899144 0) (103.8463912 -2.473907136 0) (103.9349748 -2.405600009 0) (103.657726 -2.593706762 0) (103.7538749 -2.524399201 0) (103.7476526 -2.63338233 0) (96.32505229 -2.708193278 0) (96.41582543 -2.796735203 0) (96.47057592 -2.890449977 0) (104.1684192 -2.316775136 0) (104.1803199 -2.238211892 0) (104.2554531 -2.173344986 0) (104.0202191 -2.355056199 0) (104.101806 -2.28826211 0) (104.0913412 -2.379050642 0) (96.00239413 -2.405873774 0) (96.07731323 -2.485976797 0) (96.13986769 -2.56288874 0) (104.4457531 -2.078766849 0) (104.4636827 -2.013652892 0) (104.5276694 -1.953380375 0) (104.3277727 -2.124216478 0) (104.3970209 -2.06154799 0) (104.3807633 -2.137205409 0) (95.7338463 -2.133252665 0) (95.79643949 -2.204740065 0) (95.86710371 -2.268660069 0) (104.6797659 -1.859582911 0) (104.7042455 -1.804605748 0) (104.7584609 -1.749489843 0) (104.5889698 -1.90699796 0) (104.6477583 -1.84924966 0) (104.6249209 -1.913107316 0) (95.50811219 -1.890424533 0) (95.56090005 -1.953667513 0) (95.63967661 -2.007310426 0) (104.8778809 -1.660338574 0) (104.9088494 -1.613601534 0) (104.955124 -1.56388177 0) (104.8106025 -1.706757908 0) (104.8606598 -1.654336961 0) (104.8313526 -1.708759755 0) (95.31672878 -1.676122188 0) (95.36161973 -1.731693197 0) (95.44817447 -1.777112684 0) (105.0464938 -1.481452845 0) (105.0838563 -1.441538942 0) (105.1235531 -1.397140371 0) (104.9997147 -1.525192935 0) (105.0425452 -1.478155194 0) (105.0068126 -1.524745073 0) (95.15316515 -1.488388006 0) (95.19164315 -1.536945893 0) (95.28547446 -1.575716363 0) (105.1907872 -1.322600489 0) (105.2342922 -1.288333082 0) (105.2685132 -1.249069916 0) (105.161872 -1.36260184 0) (105.1987022 -1.320805162 0) (105.1567556 -1.360891598 0) (95.01232155 -1.325061205 0) (95.04554421 -1.367246523 0) (95.14609716 -1.400601743 0) (105.3149914 -1.183015879 0) (105.3642857 -1.153424115 0) (105.3939606 -1.119017132 0) (105.3016134 -1.218641221 0) (105.3334554 -1.181843588 0) (105.2856261 -1.216527689 0) (94.89012 -1.183974836 0) (94.91902768 -1.220408609 0) (95.02575175 -1.249328275 0) (105.4226215 -1.061678778 0) (105.4773068 -1.035947148 0) (105.5032162 -1.006090239 0) (105.4227258 -1.092564217 0) (105.4504274 -1.06047227 0) (105.3971039 -1.090676983 0) (94.78325331 -1.063097982 0) (94.80861103 -1.094338892 0) (94.92098915 -1.119619584 0) (105.5166442 -0.9575041014 0) (105.5763225 -0.9349023175 0) (105.5992158 -0.9092730317 0) (105.5283878 -0.9834399698 0) (105.5526803 -0.9557369129 0) (105.4942692 -0.9822599106 0) (94.68897902 -0.9605864889 0) (94.71143411 -0.9871383354 0) (94.82899214 -1.009446195 0) (105.599526 -0.8696554282 0) (105.6638615 -0.8492320434 0) (105.6841803 -0.8275260738 0) (105.6214216 -0.8902060357 0) (105.6429584 -0.8665683105 0) (105.5797542 -0.8903046211 0) (94.6048201 -0.8747346164 0) (94.62499379 -0.897051268 0) (94.74735087 -0.917077551 0) (105.6732736 -0.7970583856 0) (105.7418544 -0.778110067 0) (105.7600899 -0.7601066205 0) (105.703923 -0.8118939634 0) (105.7231491 -0.7920630269 0) (105.6556032 -0.813851741 0) (94.5291836 -0.8041507222 0) (94.54738201 -0.8225933577 0) (94.67419234 -0.8412411409 0) (105.7396941 -0.7385815398 0) (105.8121065 -0.7209566886 0) (105.828616 -0.7064806445 0) (105.7778488 -0.7478199665 0) (105.7951063 -0.7316002271 0) (105.7236692 -0.7518640418 0) (94.4606177 -0.7479779743 0) (94.47709989 -0.762784222 0) (94.60794402 -0.7803862828 0) (105.8007513 -0.6931819618 0) (105.8768343 -0.6771333281 0) (105.8922707 -0.6659816414 0) (105.8450202 -0.6974307899 0) (105.8610023 -0.6846495376 0) (105.7859005 -0.7032105058 0) (94.39652939 -0.7053786168 0) (94.41209288 -0.7167890642 0) (94.546754 -0.7329251976 0) (105.8578518 -0.6606762686 0) (105.9374616 -0.6458615615 0) (105.9520388 -0.6378318224 0) (105.9075927 -0.6599642945 0) (105.922568 -0.6503980205 0) (105.8438778 -0.6675330331 0) (94.33603586 -0.6753146829 0) (94.35080951 -0.6835898734 0) (94.48920392 -0.6985725629 0) (105.912248 -0.6405424443 0) (105.9952769 -0.6266724941 0) (106.0093461 -0.6215349792 0) (105.9666069 -0.6347612573 0) (105.9809406 -0.6282950323 0) (105.8988587 -0.6443255024 0) (94.27776039 -0.6571039063 0) (94.29209506 -0.6625089186 0) (94.43412568 -0.6766476062 0) (105.9642141 -0.6322940656 0) (106.0513715 -0.6189643032 0) (106.0736495 -0.6144751058 0) (106.022869 -0.621416739 0) (106.0369289 -0.6184200245 0) (105.9521448 -0.6330385819 0) (94.21199699 -0.6476893121 0) (94.23473307 -0.6527306708 0) (94.3812503 -0.666529482 0) (91.08103994 15.05793528 6.802061277e-20) (92.20793036 14.31497634 -2.057106411e-19) (91.60195134 13.51158184 6.134140042e-20) (99.00477508 18.51458508 3.259636077e-21) (97.58451656 18.35664451 -3.147420332e-20) (97.36874501 19.85592123 8.83482087e-20) (87.68143088 5.385464551 -2.442578397e-19) (87.17497185 4.563256139 -3.601587848e-19) (86.19363819 5.183812199 -6.432033304e-22) (79.55939252 7.593617188 0) (78.99514013 6.264041313 2.891736142e-19) (77.58108435 7.02827583 5.879560347e-19) (87.42822275 -9.023435811 0) (82.83382655 -8.675664185 -5.213195501e-19) (68.47161483 -7.359676084 0) (87.43117581 -9.085432955 0) (82.89366595 -8.697873921 2.586973899e-18) (68.25060297 -7.339482441 -5.657396872e-18) (84.96789488 -8.374299514 4.666133867e-18) (84.28686833 -8.152934559 -3.112810686e-18) (79.00860508 -8.466394862 -1.23339135e-20) (141.3674072 59.05461092 1.927472548e-17) (153.4885395 54.86894598 0) (116.7947681 50.59452903 0) (115.0469129 -24.17279186 0) (102.4514621 -22.1690545 1.410784008e-17) (75.84203975 -16.65522898 -2.014241087e-17) (84.63446968 -8.731361835 0) (83.98009859 -8.516358516 0) (78.55364091 -8.768191227 -3.732644227e-18) (95.27424708 -27.02281484 -4.244460093e-18) (84.56111617 -24.43517912 -5.696279195e-18) (63.65819821 -18.67032267 -1.945775206e-18) (71.02786082 -23.79238666 -1.736122157e-19) (60.05202607 -20.89239286 0) (38.55611724 -14.13583782 5.240996049e-19) (90.29835581 -10.85496905 -3.839347076e-18) (82.38077995 -10.53533256 2.765206407e-19) (51.27085936 -7.532879242 0) (143.415877 54.47433759 -1.32439995e-17) (154.2938349 51.29612845 -7.269532345e-17) (118.250381 46.56129055 1.026331161e-16) (103.8607231 99.37162851 0) (124.4359275 90.54851377 0) (91.62316897 112.9386438 0) (86.56068362 -6.927171659 9.26850069e-19) (82.36137115 -6.677829173 0) (68.90151466 -5.709460339 -2.112241461e-18) (86.53341973 -6.785574572 1.95552195e-18) (82.40404144 -6.544707025 -1.300373865e-18) (68.92935168 -5.605727305 8.911120782e-19) (86.56496309 -7.006108199 0) (82.34331491 -6.781119619 0) (68.89072079 -5.789645231 1.533156498e-21) (86.68320109 -7.098601166 3.647004878e-18) (82.44992001 -6.868599482 -2.423363126e-18) (69.19480003 -5.905243973 4.127153747e-19) (86.57252586 -7.49033265 9.621193826e-19) (82.22345003 -7.290522781 -6.409571129e-19) (68.45608492 -6.19008771 -2.206510903e-18) (88.08638158 -27.06663635 1.273675385e-17) (77.80521676 -24.3828792 -1.700467249e-17) (57.50236213 -18.36774296 1.51465519e-18) (87.44411698 -9.033186284 0) (82.97202387 -8.81119206 0) (69.20203976 -7.505323296 0) (73.49384284 -9.403058847 3.279435735e-19) (38.09668217 -4.778336925 -1.490528647e-18) (87.50901759 -9.391116204 -7.631712551e-19) (82.97182023 -9.034866489 5.121803214e-19) (67.84770153 -7.550205178 0) (52.84911331 -17.52438739 6.956609794e-20) (37.71167224 -13.64887885 1.226191349e-18) (15.32737943 -6.642005794 0) (150.8817096 13.56986057 -4.141706853e-18) (147.6878925 12.57650128 2.766150087e-18) (112.2656324 9.923424847 0) (150.6725244 12.50705431 -1.326459425e-19) (147.1066662 11.52612295 -2.883434861e-18) (111.9368373 9.134131253 2.975148305e-17) (150.148654 9.323046352 0) (145.7251631 8.28179554 2.701246931e-18) (111.0542297 6.640856985 -1.973510611e-18) (139.5256046 -12.02430148 -6.962098742e-18) (129.956508 -11.9985145 -1.18111134e-17) (97.35701475 -8.920336924 2.706932135e-17) (141.0905132 -10.17935683 0) (131.8774585 -10.2994864 2.420184838e-18) (99.35620446 -7.643659317 -1.554857313e-17) (138.9790061 -12.51936253 0) (129.274829 -12.33659339 1.906598236e-20) (97.17374063 -9.186721572 1.672217062e-18) (137.1921682 -14.13472272 3.486734837e-18) (127.0635185 -13.84091602 0) (94.18767314 -10.26312515 0) (85.61797511 -7.413774993 1.206111435e-18) (84.77534833 -7.170686589 1.615955611e-18) (78.07497509 -7.2246331 0) (85.42402253 -7.584784122 1.161345894e-18) (84.60128124 -7.278286363 7.776679277e-19) (77.88048772 -7.37577326 0) (84.2775271 -26.67137347 7.864576699e-18) (73.98861772 -23.98999269 2.455419814e-20) (53.27789455 -17.71918374 -3.776178783e-18) (75.1881583 -24.95337167 7.873976786e-20) (64.60033073 -22.13657748 1.298392047e-18) (43.71409781 -15.61079771 0) (117.3363643 -23.7493775 -5.213760108e-18) (104.6156508 -21.78936812 -3.478895079e-18) (76.9748005 -16.26942217 -1.99720496e-17) (116.7847288 -23.77946035 0) (104.1115482 -21.81230908 6.617467203e-18) (76.8797635 -16.35836666 0) (104.8588805 -26.11441705 -4.051966994e-18) (93.13583476 -23.72009023 0) (69.98884265 -18.08410046 0) (83.38886263 -9.911567703 -2.564885313e-18) (82.86798784 -9.567379218 0) (78.51503794 -10.14659228 -4.522141891e-18) (83.72190202 -9.543546339 0) (83.16114015 -9.179231892 3.298889069e-18) (78.57784152 -9.698471346 -3.357362179e-18) (86.84076468 -6.160645681 0) (83.08673248 -5.963419486 9.928611489e-19) (70.61357131 -5.217763753 4.523279229e-19) (86.68715357 -6.215148924 6.994155534e-22) (82.82127438 -5.975327843 0) (69.93264912 -5.209001301 -4.30795446e-19) (86.78835462 -6.19105578 -4.749678944e-19) (82.95238359 -5.96974852 1.260529213e-18) (70.31033599 -5.219213707 0) (86.84606421 -6.159222532 -9.58634856e-19) (83.06753658 -5.960042313 -3.180946892e-19) (70.58047281 -5.218081288 0) (86.80924091 -6.184442115 -4.750520668e-19) (82.98621481 -5.967875395 -2.582196255e-22) (70.38809129 -5.2193142 4.299993619e-19) (86.55021271 -6.746481384 -5.357954142e-19) (82.44570836 -6.481499708 -1.428463148e-18) (68.97364118 -5.554726329 1.960130263e-18) (86.63064971 -6.62109629 -1.415488889e-18) (82.60670563 -6.401038092 0) (69.34695336 -5.515418762 0) (86.63557201 -6.237372465 -2.37592442e-18) (82.7595771 -5.991481881 1.263647456e-18) (69.74125893 -5.209749349 -8.628111721e-19) (86.48606774 -6.449158713 -9.564486812e-19) (82.54955112 -6.22936256 1.285349173e-18) (68.9857511 -5.325208776 -1.7538243e-18) (86.63214827 -6.611749289 4.688594821e-19) (82.63975268 -6.40936012 0) (69.37148766 -5.514714688 1.702593676e-18) (86.51572842 -6.547121687 -4.717025543e-19) (82.58149782 -6.363347157 -6.365935575e-19) (69.0908627 -5.429374835 -4.325234885e-19) (86.66273432 -7.140277794 1.808215579e-18) (82.34667449 -6.854215704 0) (69.1469272 -5.919059671 3.282215453e-18) (86.69546077 -7.105591949 4.541960681e-19) (82.43697294 -6.856743318 2.415587538e-18) (69.21823666 -5.907515002 -4.120453518e-18) (93.42908077 -26.91180043 8.973210784e-18) (82.85582244 -24.46865888 4.112356967e-18) (61.92217198 -18.61609093 -2.282954501e-17) (86.62207429 -7.154668069 -4.518353471e-19) (82.29957512 -6.853550219 5.773731719e-22) (68.99357297 -5.912120669 -1.643130947e-18) (86.48881677 -7.402499161 -2.75028153e-18) (82.12950955 -7.147676142 6.111744544e-19) (68.25348921 -6.067464065 4.23019107e-18) (87.32707913 -26.96268973 0) (76.96725641 -24.30452317 6.066027843e-18) (56.58918126 -18.2512255 1.424884294e-20) (85.04890597 -26.80250475 -2.158290085e-17) (74.80571243 -24.09162214 1.452414504e-17) (54.25295385 -17.87007051 -1.23039403e-18) (87.47059945 -9.595164136 -2.304204752e-18) (82.96447243 -9.342211794 2.056657612e-18) (66.82861549 -7.696655894 -3.674598183e-19) (150.8500244 16.90771071 0) (148.4414147 15.97385286 6.52537636e-18) (111.847122 12.43507886 2.760608282e-17) (151.1262597 21.81517091 -8.251695471e-18) (150.2771358 20.8834656 0) (113.8109067 16.30545254 2.876394166e-17) (151.0606445 18.03229681 0) (149.1119481 16.86653061 6.860467556e-20) (112.2662117 13.08752323 -3.40281563e-17) (151.1825225 22.99268658 8.45347681e-18) (150.7662379 22.0618525 -5.826253679e-18) (114.188491 17.24648548 -2.973067424e-17) (149.0224804 5.603226596 -3.990777797e-18) (143.480508 4.687666328 6.631737259e-18) (109.2665722 3.864702295 9.657921309e-19) (149.8495583 8.318958559 4.047998384e-18) (145.0850017 7.276522314 -1.351138501e-17) (110.216795 5.83487135 7.775780852e-18) (148.7213718 4.685514387 1.980102945e-18) (142.9331531 3.753014416 -3.957228226e-18) (108.5198885 3.109516002 9.512269491e-19) (143.0043995 -7.485285846 -5.465374031e-18) (134.397593 -7.722192556 6.112586107e-18) (102.1303101 -5.688923948 0) (141.6256486 -9.513729414 1.7960738e-18) (132.6209552 -9.663238498 -2.402697911e-18) (100.3827302 -7.172678032 -1.741288648e-18) (143.3769135 -6.740983814 0) (134.8321429 -6.980324787 0) (102.4978657 -5.123900584 0) (136.6824119 -14.49030347 3.700101938e-18) (126.4853025 -14.12061164 1.015245035e-17) (93.76841905 -10.49398232 -1.466961335e-17) (135.1173132 -16.05271409 -6.600806204e-18) (124.6193754 -15.4085568 8.850068135e-18) (93.23040377 -11.52040073 3.197288119e-18) (131.7048033 -18.35602624 6.472815674e-18) (120.5721474 -17.57342978 4.316506005e-18) (87.86661613 -12.92507022 -3.162850604e-18) (134.5063285 -16.72689388 -9.664574647e-18) (123.9765312 -16.21366058 0) (92.14483323 -12.07767781 -3.189262821e-18) (132.3489042 -17.95297872 3.245732706e-21) (121.3273395 -17.19888727 4.286473412e-18) (88.8551836 -12.68558956 3.060611347e-18) (105.4582022 -26.14522809 2.846258254e-18) (93.73031498 -23.75615664 0) (70.34436242 -18.05188764 0) (91.37458698 -26.88938217 0) (80.88399105 -24.42239408 0) (59.79531698 -18.42740869 -1.064148389e-17) (86.97818291 -8.191030184 -8.397193891e-19) (82.40694878 -7.836259573 -8.543356377e-22) (68.84136858 -6.726087277 3.072641865e-18) (86.99418436 -8.158457204 -8.737571223e-19) (82.43428034 -7.805669361 2.326021698e-18) (68.99290113 -6.713418757 -3.182495021e-18) (86.94271928 -8.268807213 -8.403772427e-19) (82.36134727 -7.898272453 3.370952099e-18) (68.43360824 -6.724723361 -5.758668154e-18) (86.95394418 -8.432812728 8.536810071e-19) (82.3572984 -8.147706469 -5.055694352e-18) (68.3487284 -6.898975813 3.08340892e-18) (87.45995713 -8.892433787 7.891711327e-19) (82.92995753 -8.507288467 -4.178577606e-18) (68.47682954 -7.242914593 2.862408751e-18) (87.43308507 -9.194073238 0) (82.85213317 -8.818359566 0) (68.08657417 -7.40725984 0) (85.19976123 -7.961705768 -1.153734341e-18) (84.60861611 -7.607368748 2.2574448e-18) (78.60476289 -7.922443182 -4.606373207e-18) (76.89015777 -25.52857189 -1.620908085e-18) (66.42984762 -22.57877688 -8.291914957e-18) (45.6374117 -16.07354972 -3.713905801e-20) (140.6608134 62.1046366 0) (153.5907596 56.70562987 0) (116.5100305 53.68736894 0) (115.6103985 -24.103005 9.860426184e-18) (103.0087526 -22.11908769 -1.327893234e-17) (76.20137773 -16.60197031 0) (81.24180649 -11.81588603 0) (80.94392991 -11.41398269 -3.941751755e-18) (77.30095589 -12.35713523 -1.321409419e-18) (80.62226793 -12.28932255 0) (80.42831998 -11.87265023 1.892791116e-18) (77.03267952 -12.9706892 2.529833947e-18) (81.98633445 -11.12223521 0) (81.5910405 -10.87270859 1.392534949e-18) (77.76748451 -11.72171183 0) (82.62681332 -10.63104701 -1.47313386e-18) (82.16806435 -10.34820871 1.968222404e-18) (78.16549268 -11.08130674 0) (84.29941853 -8.991404053 0) (83.63453213 -8.712433395 0) (78.28751029 -9.007498408 -4.377944328e-18) (94.66766127 -27.02680089 3.026200146e-18) (83.98332679 -24.5124677 8.129776017e-18) (63.10139299 -18.72048344 2.909537967e-18) (87.12858571 -8.570091356 4.087419253e-18) (82.53688821 -8.178767605 -1.633829828e-18) (68.43346147 -6.960842165 7.475598757e-19) (87.17548372 -8.472673143 3.254448973e-18) (82.63920678 -8.074118389 -2.164977025e-18) (68.63291396 -6.913800708 -2.96849395e-18) (71.87709048 -24.14770333 1.259717945e-18) (60.89188914 -21.17402933 9.098786564e-19) (39.17706331 -14.35938223 1.753442907e-18) (87.14735172 -8.679153747 -8.134875637e-19) (82.55288015 -8.334202129 -5.439166107e-19) (68.5157971 -7.076052403 -3.738472194e-19) (87.1972863 -8.73860371 1.622703318e-18) (82.62990692 -8.40099532 -2.157517594e-18) (68.65884552 -7.138753029 3.689014145e-19) (68.36900657 -23.34698055 -1.414114699e-18) (56.90750499 -20.20689522 3.787469315e-19) (34.78435776 -13.12875249 -1.561566539e-18) (87.40167789 -10.52662257 1.533677199e-18) (84.03925133 -11.05811483 -5.499320928e-19) (60.67594372 -8.362760505 1.56939359e-18) (125.1810606 -21.06597226 0) (112.8259303 -19.53823239 -2.872046089e-18) (81.59964806 -14.39218906 0) (114.4845784 -24.39527701 1.761636974e-17) (101.9136581 -22.22927655 5.054487694e-20) (75.75293194 -16.74532317 -2.622089272e-17) (114.0440992 -24.52712826 -1.943457841e-17) (101.6095984 -22.3208271 -1.319983917e-17) (76.16801825 -16.93778515 1.873481957e-17) (40.58048302 -9.249053961 0) (36.5625578 -13.14893651 3.33515645e-17) (33.61496175 -18.41068681 -1.493388237e-17) (86.56787849 -6.877043123 4.65994828e-19) (82.39632421 -6.640480616 -6.20016258e-19) (69.00762836 -5.688034126 2.115149843e-18) (86.5519528 -6.832028924 -1.405956363e-18) (82.40053321 -6.601043119 6.233159903e-19) (68.98116284 -5.653799488 -8.546452479e-19) (86.60248754 -7.064315629 1.842186296e-18) (82.38520089 -6.852271073 -1.845834605e-18) (69.00570388 -5.856635172 8.361682756e-19) (86.65072871 -7.088303878 1.832362331e-18) (82.43237652 -6.870830614 -3.045444705e-18) (69.12639634 -5.88992766 -4.174681766e-19) (92.65017054 -27.11306963 1.897622121e-18) (82.13702383 -24.53562244 0) (61.24726897 -18.5925228 0) (91.97037539 -27.0586304 -2.822755573e-18) (81.43714306 -24.51187239 0) (60.43934601 -18.52677804 -1.074145992e-17) (86.6678876 -7.5558609 5.77509916e-21) (82.33503321 -7.336509613 1.616427757e-21) (68.69585093 -6.243830566 -4.9735282e-18) (87.0178706 -8.161552984 0) (82.47314624 -7.809263049 -6.367724325e-19) (69.06432977 -6.713129601 0) (87.0567183 -8.143936379 0) (82.50871621 -7.809609324 3.452939607e-18) (69.10764026 -6.711735235 -4.669249824e-18) (87.22257938 -8.524583816 -8.105884028e-19) (82.78177696 -8.283785808 0) (69.16664021 -7.092679096 -3.295878756e-18) (87.07619127 -8.54913616 0) (82.57040788 -8.340719308 0) (68.74687938 -7.081677774 -1.133217569e-20) (87.50772969 -8.891887199 2.408269777e-18) (83.120976 -8.558977015 -4.229443077e-18) (68.944535 -7.315955334 2.883091563e-18) (87.46647338 -9.330648265 -1.538471521e-18) (82.85291707 -9.006343376 -5.132636239e-19) (68.33252884 -7.57481419 -2.851370234e-18) (56.73234412 -19.30388167 0) (42.8145449 -15.44945493 5.843122746e-19) (20.41025185 -8.351471519 0) (54.58463027 -18.39672116 9.668248141e-20) (39.90586958 -14.44559381 3.052235619e-18) (17.46787734 -7.384963721 -2.881432267e-18) (150.9902435 14.71769453 4.256059896e-18) (148.1681575 13.80730668 0) (112.7394314 10.88193458 -1.265914906e-17) (150.8992018 15.78294021 0) (148.2674272 14.98852632 9.256243049e-18) (112.6233098 11.79278146 -2.234255757e-17) (150.5022781 11.44964788 4.065298295e-18) (146.631296 10.44539047 0) (111.587246 8.295227211 -1.389569565e-17) (150.3379505 10.41309348 -4.062826542e-18) (146.1689534 9.447985787 1.097575858e-17) (111.7089252 7.590256145 -2.954643961e-17) (140.1068449 -11.39237364 -1.050723332e-17) (130.7438359 -11.40114444 2.375886693e-18) (98.4714858 -8.492299839 0) (140.5975406 -10.71768159 3.533054675e-18) (131.2648154 -10.6773718 -2.379798601e-18) (99.29434304 -7.936718712 1.718021619e-18) (138.4369071 -13.13577718 0) (128.6953737 -12.98240829 1.953984583e-20) (96.35867101 -9.671883412 -5.009509041e-18) (137.8056265 -13.71385064 0) (127.8765924 -13.53893723 -6.954548348e-18) (95.0510181 -10.04623133 2.994784063e-17) (85.30504915 -7.721474972 -2.322449043e-18) (84.57892109 -7.343881224 3.082445717e-18) (78.05909074 -7.559717799 -4.168379456e-18) (83.58808416 -26.43964042 3.828586102e-18) (73.30353208 -23.85809552 0) (52.40050794 -17.53802902 -1.885095884e-18) (75.95400482 -25.27744733 -4.21520547e-18) (65.38409605 -22.35265163 0) (44.51486921 -15.82892292 4.169555819e-18) (118.5921483 91.47334717 8.88042629e-17) (138.932424 80.04045231 0) (102.9476264 94.66772246 0) (129.6808934 79.1278706 0) (147.6847625 68.99664871 0) (112.1232554 74.4076775 0) (133.971853 73.99011217 0) (150.5918484 65.13830397 0) (116.479874 67.8149834 0) (116.1993589 -23.93128577 0) (103.5967154 -21.97254075 -3.29023567e-18) (76.64811082 -16.50153212 0) (104.3762243 -26.12556369 0) (92.75683727 -23.74787773 -1.583284953e-17) (69.96734052 -18.17778656 1.495625635e-17) (103.1061265 -26.41705551 1.083970147e-17) (91.63294758 -23.98230921 -1.446438994e-17) (69.00909087 -18.29435428 2.549080307e-18) (103.7959083 -26.17756995 0) (92.30924404 -23.88401835 5.556184825e-18) (69.56360158 -18.26188563 1.185595447e-17) (78.81771048 -13.6005041 1.195798688e-19) (78.8219475 -13.52349145 0) (75.88485867 -14.71755003 -1.39158574e-18) (79.83894818 -12.89689385 2.970934954e-18) (79.80449155 -12.57499005 7.630523014e-18) (76.73405453 -13.78936418 -1.162293758e-17) (74.80141938 -15.13839556 1.286443328e-17) (74.77625725 -15.16135068 1.56158472e-17) (72.13892196 -16.89258456 -1.274814439e-18) (77.68756151 -14.15075921 -9.851096369e-18) (77.61722819 -14.14916216 2.245176905e-18) (74.59342592 -15.36051826 1.036200317e-17) (76.56437358 -14.54599261 7.40116789e-18) (76.49120437 -14.45417147 -1.23600225e-17) (73.62147472 -15.86118174 -1.497605594e-17) (83.02557397 -10.282966 1.350315238e-18) (82.54200394 -9.966324985 -1.807604002e-18) (78.36042575 -10.61152871 0) (84.01481258 -9.218404792 0) (83.42979696 -8.833837089 3.266795045e-18) (78.3311945 -9.247860206 -9.900320062e-18) (86.84543251 -6.172748519 -1.097925886e-18) (83.11059266 -5.972196014 3.64215687e-19) (70.64081797 -5.217256252 -4.989736843e-19) (86.73008165 -6.202322575 -5.667160133e-22) (82.87446204 -5.968805864 0) (70.09150541 -5.211772514 0) (86.76349912 -6.196389868 4.740714661e-19) (82.91650118 -5.96987865 0) (70.2201283 -5.217318346 0) (86.84307746 -6.167203175 -9.510245129e-19) (83.0459965 -5.961935393 3.164310807e-19) (70.53019297 -5.218446987 -1.722966184e-18) (86.8284808 -6.176613484 0) (83.01740334 -5.965326859 0) (70.46580824 -5.219277742 1.291139368e-18) (86.64062015 -6.61900377 -1.492333612e-18) (82.56703931 -6.400476227 -8.384732871e-22) (69.29784243 -5.520267852 1.815757654e-18) (86.57906031 -6.274663244 0) (82.6965226 -6.026631577 1.268824063e-18) (69.51614427 -5.222489341 -2.163992937e-18) (86.51732775 -6.332469801 9.54799999e-19) (82.62402168 -6.070626329 0) (69.12899319 -5.222699374 0) (86.6137238 -6.603306751 9.41282577e-19) (82.65833599 -6.414625108 -6.239402476e-19) (69.33202753 -5.503983821 1.707697834e-18) (86.57374801 -6.58853818 1.420615179e-18) (82.64032872 -6.409491888 -1.25905846e-18) (69.2512114 -5.482109523 4.323457073e-19) (86.68381176 -7.129795112 1.357481056e-18) (82.37621003 -6.854891548 0) (69.20103502 -5.917465185 3.287278779e-18) (86.69377976 -7.1163947 -8.548558651e-22) (82.40785378 -6.851634443 0) (69.21365236 -5.910107715 4.117554173e-19) (94.07073566 -26.98766249 -2.850826067e-18) (83.42237099 -24.50989913 -7.815053302e-18) (62.4457355 -18.67255675 0) (86.56473445 -7.194253653 2.722658463e-18) (82.23836793 -6.886193138 2.316169214e-21) (68.76437997 -5.922464274 -2.065828375e-18) (86.5028697 -7.263584509 4.570375166e-19) (82.16374164 -6.942679633 1.21944972e-18) (68.34859132 -5.925552736 -3.335298204e-18) (85.91700373 -26.6758699 4.290710773e-18) (75.66680992 -24.15252113 0) (55.02921756 -17.99568903 8.321357019e-18) (86.65864894 -26.81706588 -4.250578181e-18) (76.34165665 -24.20706086 5.730901292e-18) (55.86040578 -18.12669065 0) (87.27875754 -8.457413066 -8.052016792e-19) (82.81474863 -8.144764261 5.355459652e-19) (69.21296323 -7.013254882 -3.268671467e-18) (87.24287113 -8.439004155 0) (82.72967945 -8.078374587 1.613345789e-18) (69.01257786 -6.957180526 -4.997219718e-21) (72.76485687 -24.54491013 -4.410926467e-18) (61.88561525 -21.54095251 -9.289958818e-19) (40.26088335 -14.7243238 1.415995682e-18) (87.23176196 -8.752737434 -4.348327624e-21) (82.61759555 -8.399388839 -5.618470405e-21) (68.42161135 -7.117740556 6.25193482e-18) (67.34483405 -22.79908495 3.549430583e-19) (55.72362495 -19.73735772 2.425357568e-19) (33.43836505 -12.64270199 2.742956506e-19) (87.67014792 -9.876191578 0) (83.29752112 -9.97315997 -5.127872001e-19) (65.06453049 -8.095933999 3.743414857e-19) (151.1338494 20.62100974 -8.338659816e-18) (150.0171999 19.82438022 2.254977992e-17) (114.6508034 15.69297847 -3.242442537e-17) (151.2353216 19.23879057 -8.226119913e-18) (149.8402752 18.15232326 5.570549999e-18) (113.6800236 14.21881369 -4.085810205e-18) (151.2484282 24.14943935 1.864117479e-17) (151.2952963 23.22950733 -6.162446834e-18) (114.8057993 18.2442555 2.306109205e-17) (149.2884722 6.503672456 2.049423139e-18) (144.0050156 5.539638224 1.397575008e-18) (109.444063 4.49562409 -8.654636214e-18) (149.5420436 7.43026212 1.972585765e-18) (144.4870978 6.46607471 -1.339336514e-18) (109.8884675 5.2238351 0) (148.3792629 3.873456168 1.987661194e-18) (142.3211817 2.996390702 -2.642805096e-18) (108.0613417 2.528459991 -4.793085477e-18) (148.0691679 3.098248809 0) (141.780773 2.2426726 -2.785527305e-18) (107.5051538 1.924551235 4.00200334e-18) (142.5416785 -8.215192621 -1.828191514e-18) (133.7318195 -8.456005596 -1.231814616e-18) (101.2510366 -6.242258996 -1.752573057e-18) (142.0844593 -8.810251145 -1.802681251e-18) (133.1286946 -8.917964839 0) (101.1552388 -6.594073096 3.49732155e-18) (143.7518299 -6.111970954 4.299162022e-20) (135.3015635 -6.481031248 -4.984814082e-18) (102.4529863 -4.75196198 0) (144.1473257 -5.479135373 0) (135.8498608 -5.885311528 -2.644597254e-18) (103.037931 -4.288649945 3.790109617e-18) (135.5659737 -15.59806452 -3.500265258e-18) (125.0680151 -15.04130303 0) (92.78146432 -11.18826866 1.015145057e-17) (131.0473673 -18.6507135 6.885519292e-18) (119.7566047 -17.81855259 -1.859435797e-17) (86.87839243 -13.0815613 1.009565814e-17) (133.7411873 -17.25742458 9.660459093e-18) (122.9595764 -16.70972774 -8.727903943e-18) (90.49517622 -12.35067159 1.24845828e-17) (133.0020358 -17.58789167 -4.651377683e-20) (122.0378905 -16.90289837 1.285508676e-17) (89.51772083 -12.46926278 1.857835833e-20) (112.084382 -25.09728017 -4.877960981e-18) (99.82256997 -23.06748066 3.300091188e-18) (74.23137053 -17.34733056 0) (112.822982 -24.99897762 -9.289379359e-18) (100.5862739 -22.95360149 1.274004973e-17) (75.24700958 -17.35216573 -1.808870205e-17) (113.5351716 -24.73912345 4.649207279e-18) (101.254791 -22.62329677 1.265651866e-17) (76.14494257 -17.20166104 -1.79420378e-17) (23.98332725 -2.214919546 0) (100.7426313 -26.74820132 -1.015723811e-17) (89.54355903 -24.27887535 3.38749939e-18) (67.61378711 -18.55765007 2.285209188e-18) (100.1294796 -26.72499056 -3.52360387e-18) (88.91806958 -24.24386076 0) (67.15113962 -18.56664103 -1.69804807e-17) (19.17760764 24.09850297 0) (7.534921174 24.19449699 0) (-4.675948352 23.77624579 -1.601808927e-16) (23.3683112 55.14552904 1.436162233e-17) (10.30403255 59.19208595 1.213312847e-17) (-10.24516399 64.24239371 -1.63992908e-17) (37.62135534 77.70623549 1.301482519e-18) (30.04165228 85.41439301 -8.648342924e-19) (3.417985025 97.91408718 -4.224202445e-19) (85.94778051 -6.600493776 0) (85.01426864 -6.306990476 1.553926574e-18) (77.27628496 -6.305096178 -2.093078443e-18) (85.97813522 -6.519197808 5.61269716e-19) (84.9672006 -6.252880424 -1.499568772e-18) (76.98964769 -6.160246994 0) (86.37921457 -5.696833375 5.438248949e-19) (85.04999195 -5.505631812 -7.230050323e-19) (76.05024345 -5.262827763 -4.867972335e-19) (95.92197473 -26.80327186 3.215246052e-18) (85.16650953 -24.38609883 8.798789019e-18) (63.83994642 -18.60256995 0) (78.6465316 -25.78593909 -8.057519495e-18) (68.17936416 -22.940447 7.850128974e-21) (47.32963059 -16.48267331 -3.859561879e-18) (77.9267572 -25.48098266 2.751807569e-18) (67.45999383 -22.73833193 3.489584133e-18) (46.56085578 -16.28193807 0) (120.0332623 -22.82051705 -5.097307546e-18) (107.3826888 -20.96374389 1.39932574e-17) (79.45341863 -15.73834857 -1.987342626e-17) (119.5469188 -23.14227762 5.242682568e-18) (106.9953824 -21.28770952 0) (79.62930718 -16.03105943 -2.05870858e-17) (86.3603733 -5.276291159 8.373875537e-22) (84.55556039 -5.093980715 7.231161589e-19) (74.14003149 -4.677899097 -2.447651833e-19) (86.37747492 -5.569845397 1.08738282e-18) (84.99212463 -5.35545904 -1.086464611e-18) (75.70440066 -5.10946446 4.871575971e-19) (86.03944626 -5.450329814 -5.438558952e-19) (83.44898401 -5.283704707 0) (71.22178782 -4.586635667 0) (86.27420752 -5.215431122 0) (83.98834114 -5.058305662 -3.759118387e-19) (72.72866351 -4.52092272 2.565213167e-19) (86.32714205 -5.287929818 1.636098254e-18) (84.45079702 -5.115929751 -1.812808935e-18) (73.88869546 -4.66074119 0) (86.30122388 -5.199282539 -6.0675425e-22) (84.05106667 -5.029337724 5.763301288e-22) (72.85269177 -4.513343987 1.133272568e-18) (86.02874446 -5.597695003 -1.08815323e-18) (83.37288008 -5.497811191 1.827168511e-18) (71.092682 -4.734222371 -1.994639194e-18) (86.41010703 -5.916628099 -1.049891249e-18) (83.43265702 -5.809281537 1.395123167e-18) (71.62864591 -5.069609988 -1.902083484e-18) (86.45230782 -5.939788328 1.044820598e-18) (83.43367755 -5.8252017 -1.388444734e-18) (71.6718464 -5.093221877 0) (35.33517523 -13.47217781 -9.236646346e-18) (21.27516586 -9.680198885 -1.065961507e-17) (7.098175642 -4.22219622 5.403850327e-19) (149.2889415 35.98500253 3.291524926e-17) (153.536245 35.30061838 -3.48208784e-17) (116.5525416 28.51924396 1.271215413e-17) (123.976806 -21.47392263 -7.013929559e-20) (111.48528 -19.96457136 1.121330759e-17) (80.81612054 -14.76247084 0) (124.5788863 -21.28139504 -1.162503419e-17) (112.1634386 -19.75677417 3.959827116e-18) (81.39835415 -14.61668927 0) (56.3040956 -16.05225735 -2.540523222e-17) (55.3353954 -18.05415692 1.655211987e-17) (53.00421922 -23.01658729 1.654762435e-17) (49.15490452 -12.96328906 8.014721535e-18) (46.97882739 -16.2840528 -6.268237101e-18) (44.36205364 -21.77815551 -5.137777678e-17) (98.33203238 -26.78734208 3.542967124e-18) (87.38407818 -24.4394646 -4.804397032e-18) (65.65991051 -18.63550988 -1.350178465e-17) (90.59733476 -27.01152013 0) (80.14303031 -24.36367009 2.328344365e-18) (59.16754204 -18.34175012 2.619112314e-17) (86.6985061 -7.560618922 0) (82.33423244 -7.3036305 -1.229104945e-18) (68.80215948 -6.255948372 1.262105219e-18) (89.99676186 -26.90240121 0) (79.51469895 -24.25019843 -3.434137115e-18) (58.73275533 -18.30384428 2.377609863e-18) (86.7134774 -7.58025407 0) (82.31360169 -7.310685761 1.183490631e-18) (68.82745937 -6.269053643 4.047829182e-19) (86.63176167 -7.714385088 -1.77525516e-18) (82.19127282 -7.383384721 2.948031897e-18) (68.34508755 -6.285140938 4.058150669e-19) (59.98860627 -20.37165941 1.423222529e-19) (46.73661868 -16.7401593 0) (24.01063871 -9.552001136 -3.298608137e-19) (18.2765181 -8.81632399 8.491257341e-18) (6.538733432 -3.728840898 -1.22199257e-18) (58.73283042 -19.67931774 6.370723547e-20) (45.22799332 -16.15776481 0) (22.59087202 -9.045752618 1.878113825e-18) (146.5483022 -0.8800238113 -6.026935179e-20) (139.3286974 -1.437655182 1.949393222e-20) (106.0286018 -0.9088769727 -4.855450973e-22) (147.770871 2.219470303 6.29612958e-18) (141.2933128 1.523943291 -4.217855357e-18) (107.8274665 1.443930548 5.994537017e-18) (147.5112644 1.220856356 5.423413182e-19) (140.890506 0.4834988822 -7.428945299e-19) (107.2128158 0.585635656 1.074953415e-18) (146.3012836 -1.673697216 0) (138.9768259 -2.167346465 -9.748208862e-19) (106.4928478 -1.432067743 1.979575809e-18) (144.6173495 -4.780211065 -3.032412831e-18) (136.526726 -5.25551377 4.046837438e-18) (103.5831448 -3.800911421 5.741177926e-18) (145.1118107 -4.006246833 2.116938535e-18) (137.2597144 -4.562023915 -7.198464104e-19) (104.4255926 -3.289832774 0) (107.7265823 -25.63298869 0) (95.68034734 -23.27970377 0) (71.42263335 -17.65641949 0) (60.35669293 -17.29303329 -1.150506373e-17) (60.07315324 -18.56748286 0) (58.06028657 -22.95102824 -1.985610308e-17) (70.97528917 -16.45877677 -4.16959585e-18) (71.10421159 -16.22589233 2.668149087e-18) (68.78305452 -18.73821816 0) (86.21970011 -6.121338678 5.520171665e-19) (85.0762767 -5.903464874 0) (76.78077041 -5.743335106 -4.938482097e-19) (86.24819263 -5.989258688 0) (85.05872447 -5.753326098 0) (76.4109618 -5.565906743 0) (97.64353228 -26.94101036 -1.840895945e-17) (86.71431137 -24.41460175 2.759683623e-17) (65.161684 -18.60146105 3.188462798e-17) (121.7520454 -22.36353366 4.062014469e-18) (109.1320788 -20.59817 0) (79.95457521 -15.32707742 -3.25649043e-17) (72.69701107 -16.0856941 1.201622052e-17) (72.81886059 -15.77622973 1.584267557e-17) (70.24132831 -17.82629924 -1.089562526e-17) (86.3617044 -5.478283674 -1.634157829e-18) (84.70956595 -5.344425826 3.637533744e-19) (74.78145663 -4.92132807 0) (86.31542634 -5.49153313 -2.194869671e-18) (84.71980021 -5.309786486 -3.667598911e-19) (74.7000571 -4.907698452 3.973955865e-18) (86.17928638 -5.288602785 5.409940482e-19) (83.70848624 -5.137311879 0) (72.15347102 -4.538604987 -1.961068022e-18) (86.21446489 -5.265196268 -5.409109879e-19) (83.78531656 -5.116804177 0) (72.32852752 -4.532934725 0) (86.38857956 -5.333331461 -5.389246938e-19) (84.34745601 -5.239722381 1.079177906e-18) (73.69338443 -4.709805771 2.430196066e-19) (86.43088852 -5.270163758 -5.400655975e-19) (84.35418115 -5.16880033 -1.070557079e-18) (73.78754893 -4.675006327 9.672901024e-22) (86.22718782 -5.789120918 -1.604041113e-18) (83.45583956 -5.714449658 1.777720659e-18) (71.45367869 -4.944448913 -3.878777279e-18) (86.27497119 -5.828209917 0) (83.44775958 -5.7477493 -3.546758605e-19) (71.50459851 -4.985098321 0) (86.61412152 -6.012347968 -1.03216472e-18) (83.44721516 -5.881402178 0) (71.79663291 -5.172870415 -9.349948029e-19) (86.5712359 -6.000822319 1.543300278e-18) (83.43435029 -5.87332739 0) (71.75525751 -5.156873869 4.650556726e-19) (86.61130307 -6.698201194 7.267275692e-19) (82.51551225 -6.443518602 1.936936468e-18) (69.15898628 -5.536089419 -3.267869962e-19) (86.92490131 -8.070485925 3.422423272e-18) (82.47595173 -7.809577196 -1.137124692e-18) (68.9260986 -6.680260614 -2.71699041e-18) (87.05130055 -8.081547859 -8.956893543e-19) (82.52439823 -7.786830083 5.957664831e-19) (69.0989381 -6.701776574 -1.224768038e-18) (86.86485739 -8.060547344 8.625176806e-19) (82.43694319 -7.820731977 -1.717275997e-18) (68.8265423 -6.666397136 -3.121856522e-18) (86.60885929 -7.844108698 0) (82.1230638 -7.544800243 -1.181825893e-18) (68.199679 -6.38756101 -4.057654091e-19) (73.9221287 -24.96528436 5.420553625e-18) (63.2774087 -21.93920798 -8.313448519e-19) (42.07270993 -15.2348135 -4.852974403e-19) (64.47125412 -22.01856308 -4.165406204e-20) (52.29448543 -18.66916742 -1.28284988e-19) (29.81372613 -11.51110697 -6.673557241e-20) (65.86002643 -22.59629109 -5.774289878e-19) (54.04951943 -19.25975971 -1.355226101e-19) (31.73898443 -12.11287461 0) (147.1047198 44.93792562 3.998153344e-17) (154.6526747 43.35606633 -7.011695393e-17) (118.2648444 36.88850123 -1.041061892e-16) (148.1169481 42.08496512 0) (154.53616 40.64482182 0) (117.3795702 33.63900337 0) (136.1295162 -15.09995383 2.600202171e-18) (125.7717577 -14.62281856 -1.413299033e-17) (93.16380999 -10.85214629 2.227515857e-17) (122.342437 -21.92435987 -5.893671856e-18) (109.7561452 -20.23010174 0) (80.25898446 -15.05918998 2.882971316e-18) (110.2024541 -25.2838854 -8.650386984e-18) (98.05226939 -23.0736709 -5.866398872e-18) (73.19480412 -17.47814151 0) (107.2873892 -25.64867999 0) (95.36927112 -23.3083368 0) (71.58426404 -17.77148052 0) (109.5765558 -25.43113045 -1.301262876e-17) (97.51044316 -23.25204462 1.484700519e-17) (72.691037 -17.58272886 -1.683745329e-17) (30.683307 1.602067739 0) (24.04723004 -1.833578491 -1.297733681e-17) (18.14761541 -5.667742902 1.665267199e-16) (101.4847749 -26.4893921 7.693387722e-18) (90.26864512 -24.1617741 -1.553134727e-17) (68.35613613 -18.55220258 -1.857727805e-17) (99.60615222 -26.69487699 3.387594878e-18) (88.50078319 -24.25748155 0) (66.97100576 -18.62588818 0) (85.93192291 -6.736966677 -1.278003001e-18) (85.03534341 -6.470825424 8.522782153e-19) (77.75462592 -6.545597244 -5.709112268e-19) (85.83213706 -7.020669666 8.473036892e-19) (84.97312445 -6.803137781 -2.313894059e-18) (78.0882758 -6.899732288 3.832307934e-19) (86.05784982 -6.423978171 -1.67243801e-18) (84.99053323 -6.195789423 2.231033559e-18) (76.94757592 -6.049092578 0) (86.32189197 -5.846157875 5.479179488e-19) (84.96708366 -5.679728063 7.271669059e-19) (76.20872972 -5.422142611 0) (96.51911038 -26.8497928 2.393910224e-20) (85.68982831 -24.388312 -1.266370947e-17) (64.28253846 -18.61163947 0) (79.51128963 -26.02373866 7.654411152e-18) (69.16989764 -23.166883 -1.249563761e-18) (48.40345415 -16.72846697 1.434535181e-17) (138.0248258 67.19302019 0) (152.8176315 60.53536699 0) (117.6752848 60.73240769 0) (120.5165769 -22.64274429 -5.204922988e-18) (107.7376571 -20.836282 0) (79.19386781 -15.57336625 0) (118.9168241 -23.42372372 5.499914018e-18) (106.3928213 -21.6577589 0) (78.90561709 -16.24834592 -1.920759977e-17) (118.0948655 -23.71901241 3.73973036e-18) (105.4467274 -21.79540435 -2.032453055e-17) (77.76085813 -16.2600234 -1.84100541e-18) (86.40378582 -5.305222441 1.624383406e-18) (84.68325976 -5.133891462 -1.79961662e-18) (74.49315987 -4.742802042 -1.703185716e-18) (86.33971771 -5.502641681 -5.470727153e-19) (84.89472808 -5.28357025 -1.453843416e-18) (75.28280865 -4.999189294 0) (86.08834989 -5.370854388 5.433139691e-19) (83.54031129 -5.215159763 1.446944707e-18) (71.66761387 -4.570494303 -1.971286466e-18) (86.26306213 -5.226407436 -1.631310628e-18) (83.9354062 -5.073829933 -6.502821061e-22) (72.60331424 -4.520669453 1.968829541e-18) (86.32107572 -5.304235895 1.636397384e-18) (84.39129531 -5.139236242 1.44058886e-21) (73.6535168 -4.64543585 -1.973294021e-18) (86.37483716 -5.175680686 -4.214697835e-19) (84.19301576 -5.000957236 2.816320841e-19) (73.15325874 -4.519288405 2.841689733e-18) (86.08748515 -5.705595282 -1.620906647e-18) (83.41449981 -5.64159327 -1.808230397e-18) (71.24826154 -4.85129703 -2.735713002e-21) (86.36711702 -5.888224073 0) (83.43593219 -5.785621234 0) (71.5889945 -5.039886186 -1.911078968e-18) (86.72309442 -6.040785953 0) (83.47835445 -5.912633385 -2.103901161e-18) (71.86233725 -5.208443465 2.839728242e-18) (86.76172909 -6.044017568 0) (83.50848525 -5.91849889 0) (71.9223489 -5.22431197 0) (86.49101877 -5.95877681 0) (83.42751164 -5.833615326 0) (71.69204759 -5.108603362 1.883011031e-18) (86.77831078 -6.055950268 -4.905827422e-19) (83.24097802 -5.855876797 2.276071511e-18) (70.68973172 -5.116753307 -1.331312466e-18) (86.78258666 -6.007306696 9.774263427e-19) (83.27715686 -5.789316911 3.25312873e-19) (70.73576225 -5.075727363 0) (86.85502403 -6.019194751 2.101842932e-21) (83.46459484 -5.849104138 9.786523024e-19) (71.4436187 -5.155463506 -1.33474905e-18) (86.88231665 -6.006676402 4.904776779e-19) (83.47083003 -5.840344635 3.242725437e-19) (71.50646073 -5.161283244 -4.433637375e-19) (86.80420256 -6.020688639 -1.046695187e-18) (83.54707386 -5.899397188 0) (71.98604666 -5.225190848 1.420103022e-18) (86.85075968 -5.984301381 0) (83.57756822 -5.85452341 0) (72.08631278 -5.210746178 -1.355020116e-18) (86.82038742 -6.019116084 -4.931077379e-19) (83.44638033 -5.846133932 3.275576526e-19) (71.40088726 -5.147742257 0) (86.79135733 -5.994433489 9.944641102e-19) (83.43201408 -5.807864701 3.337683648e-19) (71.35386949 -5.118910115 1.696363701e-21) (86.79384183 -6.087663746 -1.459672639e-18) (83.23492332 -5.896729707 0) (70.71726354 -5.1472942 -4.42567237e-19) (86.81066122 -6.101111353 -1.939257979e-18) (83.22504059 -5.909426288 1.288535426e-18) (70.73472697 -5.161069316 0) (69.67447697 -23.80819158 -2.58305413e-18) (58.55910315 -20.6899487 3.547561618e-18) (36.85190779 -13.73934719 4.352766699e-18) (43.49685145 -14.537483 -4.947799147e-18) (27.84845967 -10.73915163 5.163844839e-18) (9.272827922 -4.869325167 -1.185638813e-18) (145.4237334 50.83596298 1.881690648e-17) (154.8843475 48.09174656 0) (118.0717298 42.15874252 9.63794158e-18) (148.6522115 38.33541865 0) (153.7370744 37.34791193 1.21755208e-17) (115.8770178 29.98850686 -9.002804219e-18) (150.0459974 33.86570519 -8.884070832e-18) (153.4746657 33.16419023 -2.497805586e-17) (117.1092639 26.73176859 -9.372071002e-18) (150.3963708 32.24006297 1.749019694e-17) (153.2615842 31.46905699 0) (116.8440281 25.14309795 -3.533639777e-17) (129.6869717 -19.39564023 -1.257752114e-17) (118.1561738 -18.37075898 1.286421765e-17) (85.87581379 -13.54527754 -9.315191472e-18) (130.3850878 -19.02006992 0) (118.9478219 -17.96430512 -3.201386224e-18) (86.69518063 -13.23440143 2.25353385e-18) (123.3284796 -21.6351474 -1.632816892e-17) (110.73642 -20.07709253 -1.472032912e-17) (80.24045054 -14.83895108 2.10866182e-17) (128.9892967 -19.68729123 -1.196854158e-17) (117.3025821 -18.65924737 2.435636661e-17) (84.74258543 -13.70023587 -5.794475078e-18) (128.2455185 -19.9107373 -1.173548863e-17) (116.3817293 -18.80194576 1.987306355e-17) (83.71262969 -13.76358952 2.572460375e-17) (81.02439071 101.5234853 0) (96.28245065 100.7985145 3.341999802e-18) (63.95954508 124.5387425 9.897252513e-17) (102.532558 -26.40684093 7.611386576e-18) (91.05562175 -23.96280722 -1.028677715e-17) (68.70870536 -18.3441077 3.6009707e-18) (102.0729888 -26.42295401 0) (90.69856842 -23.98719446 0) (68.79835134 -18.45602525 -3.195997822e-20) (98.97317569 -26.78077608 1.011095132e-17) (87.97996846 -24.38887436 -4.57890553e-18) (66.37694546 -18.66626773 -1.293388278e-17) (86.69179214 -7.566828347 2.032204786e-18) (82.35749584 -7.322085797 6.730216796e-19) (68.80306338 -6.256382619 -1.852902917e-18) (89.50583529 -26.82642766 0) (79.07578912 -24.19076403 0) (58.60550852 -18.33394354 2.327654115e-18) (88.94269643 -26.78225443 4.975243642e-18) (78.62414921 -24.22306745 -6.712839734e-18) (58.41424134 -18.38686559 7.222842717e-18) (86.71225933 -7.609842742 -2.646323025e-18) (82.29509298 -7.320040472 -5.87957311e-19) (68.79729072 -6.275532821 0) (86.68206749 -7.649175766 2.647328732e-18) (82.25558324 -7.340971104 -4.11187739e-18) (68.66954883 -6.284072342 6.42434323e-18) (87.30814403 -8.984706338 0) (82.72442331 -8.723356854 0) (68.54808322 -7.357950501 -2.802041996e-19) (61.56205618 -21.10027571 2.779394681e-18) (48.78554231 -17.50181827 -3.740147881e-18) (26.03853262 -10.23995598 5.117844811e-18) (146.8554553 -0.181744422 0) (139.7533612 -0.8201372191 1.429703999e-19) (106.0664723 -0.4430856625 0) (147.2100886 0.4929204153 0) (140.3421014 -0.2126488581 -1.680858164e-19) (106.5766929 0.03459124934 0) (145.9758203 -2.590595516 -9.515809761e-19) (138.5052598 -3.188058477 -3.179775333e-19) (105.7408427 -2.227119533 0) (145.5466745 -3.349881916 9.877069187e-19) (137.815053 -3.884060295 1.324235071e-18) (105.2906779 -2.744597407 0) (68.89114918 -16.75046925 -4.522395675e-18) (68.92528308 -16.88343691 -5.946959087e-18) (66.81216289 -19.92626689 2.053174704e-17) (65.10251926 -16.84026393 2.639025281e-17) (65.04372824 -17.62299285 -4.111368886e-18) (63.02295451 -21.41141714 -2.709302654e-18) (86.15372483 -6.282654229 -5.511295576e-19) (85.04592379 -6.071505612 0) (76.94599632 -5.913247465 -1.485203206e-18) (86.26892072 -5.916948922 -5.490679854e-19) (84.98182421 -5.697136853 -3.654112246e-19) (76.14979624 -5.460127846 0) (97.05838999 -26.88677768 6.516796073e-18) (86.16114676 -24.38660956 -4.428463016e-18) (64.71772058 -18.61158663 1.558991361e-17) (81.25215757 -26.07999511 3.10441322e-18) (70.89720528 -23.31019077 4.126524933e-18) (50.18210179 -17.03885454 -1.193326983e-17) (80.51885632 -25.92095142 0) (70.22162343 -23.24582564 -4.373397817e-18) (49.52561268 -16.93896933 7.548905423e-18) (81.86516843 -26.26131202 3.376399835e-18) (71.48670518 -23.46486775 4.389156183e-18) (50.56890452 -17.1197042 -4.715033515e-18) (82.62692864 -26.50250039 -2.282964214e-18) (72.33703722 -23.69506059 1.525262907e-18) (51.38592409 -17.30465261 -1.055471119e-18) (124.7103247 86.30881951 0) (144.2590615 74.17450594 0) (108.3133154 82.74741845 0) (121.0798369 -22.56072769 1.104289049e-17) (108.3295885 -20.78808343 0) (79.42849901 -15.49263325 -2.144150541e-17) (86.40873393 -5.392935053 1.623169086e-18) (84.73893347 -5.252227622 -2.870129512e-18) (74.77100091 -4.850428423 3.672804744e-21) (86.31172636 -5.479140177 1.096782661e-18) (84.80972381 -5.261169687 0) (74.86499611 -4.917634902 0) (86.13646949 -5.320329897 -1.08252474e-18) (83.62284455 -5.165383815 0) (71.93718987 -4.547876681 0) (86.24345856 -5.244114219 -5.411498103e-19) (83.86188865 -5.095059537 -1.13181834e-21) (72.4738756 -4.526221963 1.958674847e-18) (86.33924802 -5.335373435 5.4495495e-19) (84.33716559 -5.208747731 0) (73.58548733 -4.681217144 0) (86.43740223 -5.181745543 0) (84.32389516 -5.044278258 1.514166507e-18) (73.59468555 -4.582787784 -2.322698739e-18) (86.16754599 -5.751388735 -1.073547455e-18) (83.45760868 -5.681304028 1.428671609e-18) (71.39206591 -4.900951094 -1.948596574e-18) (86.32228738 -5.859630025 0) (83.44290868 -5.766845995 0) (71.55572319 -5.01356258 0) (86.66908078 -6.011375455 1.62839749e-18) (83.45706761 -5.883851326 -1.446858706e-18) (71.82103234 -5.184370068 4.44031122e-18) (86.52806264 -5.982585179 0) (83.42463496 -5.856173435 1.37802792e-18) (71.71332764 -5.13409588 -3.751873624e-18) (86.83767478 -5.953162817 4.881504962e-19) (83.37549212 -5.739277196 -3.243443846e-19) (71.10126524 -5.073372439 -4.425359883e-19) (86.80589653 -5.972272522 -9.769122036e-19) (83.32754643 -5.753385049 0) (70.90600042 -5.067038222 4.427647619e-19) (86.87119551 -5.950626606 1.952375408e-18) (83.43417283 -5.745733176 3.242276779e-19) (71.287771 -5.090436266 0) (86.89044012 -5.973289648 -2.439060206e-18) (83.47503202 -5.787724189 9.712288804e-19) (71.45037066 -5.126888846 0) (86.84117718 -5.914673861 0) (83.54547795 -5.722109591 -3.303185133e-19) (71.79832404 -5.104359 -8.972439999e-19) (86.86579607 -5.935950651 9.936906646e-19) (83.59423841 -5.7695545 0) (71.9947656 -5.149833101 4.475713046e-19) (86.80721074 -5.924552556 -1.493070882e-18) (83.49204801 -5.721691976 3.296599014e-19) (71.59102712 -5.086392017 2.701608265e-18) (86.78671021 -5.951885896 -1.492178027e-18) (83.45412202 -5.746122438 9.916689095e-19) (71.4043083 -5.083552766 -4.505641647e-19) (86.82482054 -6.123575998 -4.865910533e-19) (83.17058632 -5.928802076 -1.293631276e-18) (70.6832372 -5.180099615 4.406935373e-19) (86.8210758 -6.109550038 -1.451051453e-18) (83.2016726 -5.915119224 1.285471413e-18) (70.71046351 -5.168341506 -4.377629259e-19) (86.85114017 -6.124360887 -1.023603539e-18) (83.1525082 -5.943573292 0) (70.67983004 -5.195963563 -1.864918215e-18) (86.86275298 -6.165260885 0) (83.13625768 -5.969414975 1.987785757e-18) (70.66961189 -5.210913502 -2.685315298e-18) (86.97007546 -8.082540404 2.550328497e-18) (82.4989184 -7.80537907 -3.958217548e-18) (68.99599099 -6.693118104 3.087375464e-18) (87.00283975 -8.091308721 -1.705437559e-18) (82.51433296 -7.795808784 5.66245375e-19) (69.05683321 -6.697747972 2.322088299e-18) (86.76895503 -8.043492943 0) (82.33615849 -7.818534928 2.898233999e-18) (68.62714074 -6.633307835 -2.763796895e-18) (86.66316513 -7.976244348 -1.756049514e-18) (82.19304772 -7.732396992 6.836922629e-21) (68.3445714 -6.537685542 -4.001483255e-19) (63.29735711 -21.41505041 -4.584806969e-19) (50.87009172 -18.15244145 6.717829693e-19) (28.18155759 -10.95576214 -4.609887543e-19) (50.1587977 -16.98779794 0) (34.54782282 -12.74424465 -7.632008507e-19) (12.97826416 -5.913221739 0) (47.24172435 -15.85403565 -2.187603041e-18) (31.18778015 -11.67489831 3.048883169e-18) (10.86801257 -5.311762984 5.448616277e-18) (146.058573 48.40218251 3.836657076e-17) (154.7027672 46.29521065 -2.510679248e-17) (118.1631721 39.96817451 -9.582853064e-18) (148.468141 40.15095311 0) (154.1570701 38.94802284 -1.194776085e-17) (116.3634214 31.58178181 0) (150.5694197 29.13008369 -3.764033788e-19) (152.2783454 28.2708919 2.274707157e-17) (115.0146678 22.14881928 0) (150.5169482 30.62729979 0) (152.82759 29.74161329 5.728204052e-18) (115.7292234 23.41865687 0) (150.6958603 27.81374846 9.044372511e-18) (151.9832369 27.03083694 -2.960474583e-17) (115.2493148 21.26757447 0) (151.0460825 25.88483142 3.21856657e-17) (151.7371576 25.09827588 3.563738042e-17) (115.5143041 19.87227531 -5.349055293e-17) (122.7750925 -21.79346509 -5.494933604e-18) (110.1159208 -20.15315869 1.880821911e-17) (79.9998862 -14.92909778 -2.149856021e-17) (127.0263687 -20.38671524 5.767636383e-18) (115.0113049 -19.13941925 -3.937548135e-18) (82.95407289 -14.05172184 2.262034138e-17) (127.6220807 -20.11064083 1.753885108e-17) (115.6646747 -18.89945506 -1.176739298e-17) (83.40886861 -13.86805429 2.256721576e-17) (126.4027586 -20.64676732 -5.940562103e-18) (114.2629804 -19.35127308 0) (82.25360405 -14.18917022 2.857421101e-18) (125.7818334 -20.80095771 -6.292364067e-18) (113.5267304 -19.45781403 8.46928385e-18) (81.64441158 -14.27134942 -3.095944632e-18) (110.7166666 -25.24832494 9.139494187e-18) (98.46696174 -23.01414909 -9.260216662e-18) (73.19531369 -17.35627903 0) (111.3322994 -25.25270145 -9.760865196e-18) (99.0572018 -23.04752677 -2.234727315e-18) (73.48578167 -17.30172084 0) (106.170094 -25.9287831 8.658940748e-18) (94.45388312 -23.68747083 -1.167739544e-17) (71.02109761 -18.04985512 0) (106.7673641 -25.80965274 0) (94.97533115 -23.49075988 0) (71.55703763 -17.946637 0) (108.9363955 -25.49179382 4.630234319e-18) (96.88887177 -23.33488824 3.088616377e-18) (72.04307733 -17.60374667 0) (108.2700377 -25.64816672 0) (96.21427744 -23.32546466 -1.854670292e-17) (71.57050413 -17.59743455 2.278540092e-17) (56.39458587 94.17185407 0) (58.86953442 102.0536153 1.544921349e-17) (29.7292969 122.0506187 -2.901658801e-17) (5.065660859 -4.776446151 5.767154654e-18) ) ; boundaryField { topAndBottom { type slip; } inlet { type fixedValue; value uniform (100 0 0); } outlet { type inletOutlet; inletValue uniform (0 0 0); value nonuniform List<vector> 62 ( (106.8458803 -0.0554075731 0) (106.8285816 -0.1636571356 0) (106.7845199 -0.2702459471 0) (106.705373 -0.3670293826 0) (93.08077671 -0.3900146458 0) (92.90329444 -0.2868014118 0) (92.78816622 -0.1739058476 0) (92.73384386 -0.0587196403 0) (105.88991 -0.6453252537 0) (105.5572056 -0.6814845099 0) (105.4281905 -0.6920537222 0) (104.9664327 -0.7193940562 0) (104.7753022 -0.7268792304 0) (103.9407562 -0.7430704488 0) (103.478785 -0.7465124681 0) (100.5329399 -0.7763259064 0) (99.47467779 -0.8141964866 0) (99.70514301 -0.8297290647 -9.375163177e-38) (99.56917377 -0.8236117916 9.361144605e-38) (98.69659364 -0.8083409483 0) (98.35663426 -0.8037126331 0) (97.36479368 -0.7887448678 0) (97.05600436 -0.782980082 0) (96.20913945 -0.7624960596 0) (95.95347902 -0.7544956725 0) (95.26406326 -0.7266040146 0) (95.05944099 -0.7159129505 0) (94.51786864 -0.6791345318 0) (106.6129738 -0.4308710337 0) (106.5332485 -0.4808894379 0) (106.4399136 -0.5220427333 0) (106.3276519 -0.5597792145 0) (106.1924882 -0.5934463319 0) (105.9848218 -0.6313714276 0) (94.36018058 -0.6648642891 0) (94.00995989 -0.6262343516 0) (93.77713868 -0.5915993001 0) (93.57924809 -0.5526292584 0) (93.41033414 -0.5096635457 0) (93.26273337 -0.4574527316 0) (105.7873874 -0.6581512564 0) (105.6766711 -0.6701928434 0) (105.2883459 -0.7019124711 0) (105.1355711 -0.7110429265 0) (104.552872 -0.7333834505 0) (104.2835473 -0.7387888056 0) (102.8205277 -0.7503353237 0) (101.8528666 -0.7576780014 0) (99.48077403 -0.8343933499 0) (99.67900675 -0.8331708011 0) (99.32763481 -0.8182271926 0) (99.02651921 -0.8130705671 0) (98.01766733 -0.7990107067 0) (97.68592523 -0.7940609355 0) (96.76033706 -0.7767092953 0) (96.47804884 -0.7698916976 0) (95.71087751 -0.7458648201 0) (95.48113867 -0.7365770723 0) (94.86705245 -0.7044645757 0) (94.68663952 -0.6922185689 0) (106.0736495 -0.6144751058 0) (94.21199699 -0.6476893121 0) ) ; } wing { type movingWallVelocity; value nonuniform List<vector> 378 ( (-0.03837945283 -1.399104467 0) (-0.03673445228 -1.379181161 -1.460904047e-12) (-0.03690859857 -1.381191798 -1.460904047e-12) (-0.01771280041 -1.073317711 0) (0.01300224683 -1.039229747 0) (0.0105501028 -1.233194268 7.304520237e-13) (-0.01753056321 -1.071305258 -1.460904047e-12) (-0.005654224317 -1.30013374 -7.304520237e-13) (-0.0249961629 -1.362501873 -7.304520237e-13) (-0.03815691946 -1.395161532 -2.191356071e-12) (0.01382438059 -1.041430705 0) (0.005215670995 -1.02531218 -7.304520237e-13) (-0.02931598741 -1.281977418 -3.745013656e-26) (-0.02893070108 -1.275986625 0) (-0.02944938513 -1.283997098 -1.460904047e-12) (-0.02985871608 -1.290050936 7.304520237e-13) (-0.03108128957 -1.308109929 0) (-0.01208811065 -1.322425069 0) (-0.03624334908 -1.37341678 -7.304520237e-13) (-0.03836677439 -1.397498335 0) (-0.0374488267 -1.387229098 1.460904047e-12) (-0.03369211569 -1.386778127 -1.460904047e-12) (0.02305595758 -1.087923845 -1.460904047e-12) (0.02323404931 -1.089923767 -9.940746773e-26) (0.02368527907 -1.095960698 0) (0.02291532451 -1.15267781 1.698938377e-25) (0.02338442007 -1.146632137 -1.46606356e-25) (0.02274439298 -1.154690758 0) (0.02216617621 -1.160646661 0) (-0.01833068311 -1.081281727 -1.460904047e-12) (-0.01818425194 -1.079354419 -1.460904047e-12) (-0.01524465255 -1.332684985 -1.460904047e-12) (-0.02230611909 -1.354580357 0) (0.01206369448 -1.225698761 -7.703492373e-25) (0.01169182053 -1.22757504 0) (0.002688623956 -1.268085498 -7.304520237e-13) (-0.01673869826 -1.063284363 7.304520237e-13) (-0.01694716071 -1.065279463 7.304520237e-13) (-0.02643131292 -1.23344794 -1.460904047e-12) (-0.0273367986 -1.249545077 -1.460904047e-12) (-0.02699689858 -1.243483124 0) (-0.02654198843 -1.23540756 0) (-0.02688308924 -1.241462351 7.304520237e-13) (-0.02881678604 -1.274184959 -1.460904047e-12) (-0.02841899347 -1.267714814 7.304520237e-13) (-0.02744981579 -1.251565668 -2.993472226e-26) (-0.02779423257 -1.257627233 0) (-0.02829511226 -1.265705046 -1.460904047e-12) (-0.02791885599 -1.259646788 0) (-0.03039993056 -1.298123695 -1.460904047e-12) (-0.02999448977 -1.292069073 0) (-0.007285145564 -1.305944607 -1.140527953e-24) (-0.03053369176 -1.300142038 -1.460904047e-12) (-0.03094016704 -1.306182756 9.185197973e-26) (-0.01278217742 -1.32471257 7.304520237e-13) (-0.01454301738 -1.330434797 -7.304520237e-13) (-0.03762605112 -1.38924221 -1.460904047e-12) (0.02242435146 -1.081915322 -7.304520237e-13) (0.0213712118 -1.073706609 -1.460904047e-12) (0.02214748386 -1.079577811 1.631576788e-25) (0.0210817602 -1.071779159 4.232933275e-25) (0.02409919759 -1.104047077 -1.460904047e-12) (0.02380404232 -1.097979687 0) (0.02417179694 -1.106073605 0) (0.02387696808 -1.138543452 -1.460904047e-12) (0.02352593429 -1.144611971 0) (0.02397156206 -1.13651607 0) (0.02198226418 -1.162446799 0) (0.02127243938 -1.168947094 -1.460904047e-12) (0.01997890918 -1.178848228 0) (0.0210298443 -1.170940114 0) (0.02024697818 -1.176913448 -1.460904047e-12) (0.003248467249 -1.265769755 0) (-0.009067512368 -1.312131058 -1.181659893e-24) (-0.03401724638 -1.346803985 9.870064574e-26) (-0.03386603465 -1.34484791 -7.304520237e-13) (-0.03417195196 -1.348812552 -9.805613528e-26) (-0.03433605853 -1.350830305 -2.921808095e-12) (-0.03655812343 -1.377173515 -2.921808095e-12) (-0.03708527039 -1.383206239 0) (-0.01787674367 -1.075333119 -1.460904047e-12) (-0.02101706475 -1.350690837 -1.460904047e-12) (0.01235925307 -1.037633583 1.460904047e-12) (0.01091545382 -1.231412621 -1.460904047e-12) (-0.01572593283 -1.054954958 0) (-0.01545706494 -1.053046642 0) (-0.01603296898 -1.057287715 0) (-0.01631442804 -1.059545279 -7.304520237e-13) (-0.01733837098 -1.069295517 -1.223842438e-25) (-0.006292752425 -1.302432658 -7.304520237e-13) (-0.03533040825 -1.362913705 -1.460904047e-12) (-0.03516752563 -1.360900105 -1.460904047e-12) (-0.02442319929 -1.360800479 -2.921808095e-12) (-0.035500021 -1.364926302 -1.460904047e-12) (-0.03566993526 -1.366930402 0) (-0.02654928398 -1.36695129 7.304520237e-13) (-0.03799265851 -1.393273905 0) (0.01688498861 -1.199065665 -7.304520237e-13) (0.01008395008 -1.235467508 0) (0.009605997634 -1.23779825 0) (-0.008300306121 -1.026966414 -7.304520237e-13) (-0.0291859385 -1.279957346 -7.304520237e-13) (-0.0290565981 -1.277945364 7.304520237e-13) (-0.02958587271 -1.286015044 7.304520237e-13) (-0.02972236032 -1.288032989 -7.304520237e-13) (-0.007928957226 -1.308198103 0) (-0.008581459398 -1.310458483 7.304520237e-13) (-0.0312509741 -1.310427278 -7.304520237e-13) (-0.03372612457 -1.343046286 -7.304520237e-13) (-0.03355201405 -1.340808791 0) (-0.03468138351 -1.354858419 -1.094099526e-25) (-0.03451025737 -1.352846622 0) (-0.03639494608 -1.375214308 0) (-0.03727031372 -1.385218321 -1.460904047e-12) (-0.03225624359 -1.382945385 -7.304520237e-13) (-0.03308129641 -1.38515596 0) (0.02287160143 -1.085981285 -1.460904047e-12) (0.02268465943 -1.084181366 7.304520237e-13) (0.02339882663 -1.091933374 -2.921808095e-12) (0.02355059651 -1.093944929 -7.304520237e-13) (0.02308591912 -1.150664669 7.304520237e-13) (0.02324217899 -1.148649281 -1.460904047e-12) (0.0225606798 -1.156698004 -7.304520237e-13) (0.02236222095 -1.158695858 -7.304520237e-13) (-0.01802996233 -1.077348294 0) (-0.01576871064 -1.334344062 -1.460904047e-12) (-0.02175686489 -1.352931283 1.326082089e-24) (0.007044007991 -1.027586245 0) (0.00942760535 -1.031421308 0) (0.01049854626 -1.033431343 0) (0.01130335428 -1.229511434 0) (0.002251380052 -1.269887063 -1.460904047e-12) (0.001253233143 -1.273910631 -1.460904047e-12) (0.001819023424 -1.271641811 1.015200248e-24) (-0.01484613199 -1.049104925 -7.304520237e-13) (-0.01516363916 -1.051070074 1.460904047e-12) (-0.01370815831 -1.043133411 0) (-0.01450251563 -1.047192949 5.383956456e-25) (-0.01416559515 -1.045405485 -7.304520237e-13) (-0.01652360563 -1.061342214 -1.460904047e-12) (-0.01714442722 -1.067286143 7.304520237e-13) (-0.02632950082 -1.231648252 0) (-0.02722377982 -1.247524298 0) (-0.02711053686 -1.245503709 -1.460904047e-12) (-0.02665547374 -1.237421182 -7.304520237e-13) (-0.02676928149 -1.239441766 1.460904047e-12) (-0.02853742979 -1.269643873 -2.921808095e-12) (-0.02756283297 -1.25358626 -1.460904047e-12) (-0.02767585175 -1.255607039 0) (-0.02816986821 -1.263685501 -1.460904047e-12) (-0.02804436209 -1.261666145 1.460904047e-12) (-0.0302651341 -1.296105361 7.964445366e-26) (-0.03012981195 -1.294087217 -1.460904047e-12) (-0.006794397669 -1.304207881 7.304520237e-13) (-0.03066696381 -1.302160387 0) (-0.03080033298 -1.304176854 -2.921808095e-12) (-0.01384845774 -1.328189278 1.460904047e-12) (-0.01331845678 -1.326469066 -1.460904047e-12) (-0.03484608156 -1.356871221 7.304520237e-13) (-0.0350076686 -1.358885561 1.031652748e-25) (-0.02383655629 -1.359071548 -1.460904047e-12) (-0.03583052942 -1.368856277 1.184688717e-25) (-0.02712231855 -1.368590926 0) (-0.03781130569 -1.391261444 0) (0.02165704096 -1.075681457 -1.460904047e-12) (0.02191761825 -1.077663688 0) (0.02080213408 -1.069983382 -2.423248444e-25) (0.02401321568 -1.102022717 7.304520237e-13) (0.02391492812 -1.099999741 0) (0.02423252015 -1.108090779 -1.460904047e-12) (0.02428266607 -1.110025431 0) (0.02376693317 -1.140569544 -1.460904047e-12) (0.02365320071 -1.142590129 -1.460904047e-12) (0.02405400349 -1.13450275 0) (0.02412834489 -1.132568215 -1.460904047e-12) (0.02148640245 -1.167025979 2.267577376e-25) (0.01972492873 -1.180647005 0) (0.02077040445 -1.172934807 0) (0.02051094731 -1.174929312 2.437341186e-25) (0.008408992507 -1.243317469 -7.304520237e-13) (0.008802806347 -1.241542463 0) (0.00921445004 -1.239659343 0) (-0.03852069819 -1.399178786 7.304520237e-13) (-0.0008072393033 -1.28203854 -1.242960337e-24) (-0.001407087697 -1.284352439 7.304520237e-13) (-0.004774941529 -1.023026396 -1.244754847e-23) (-0.002616048318 -1.021935799 -7.304520237e-13) (-0.0007751311921 -1.021797329 -2.921808095e-12) (-0.01875360444 -1.08762774 -3.550632402e-26) (-0.01887465196 -1.089587277 -1.460904047e-12) (-0.0196762331 -1.103717913 7.304520237e-13) (-0.005033907867 -1.297871587 0) (-0.01974690601 -1.346806998 -7.304520237e-13) (-0.02028587935 -1.348459927 -7.304520237e-13) (0.0136770317 -1.217401955 -1.460904047e-12) (0.01332214419 -1.21931154 -7.227223912e-25) (-0.02045858439 -1.119894765 -1.460904047e-12) (-0.01977601911 -1.105738802 0) (-0.02196340116 -1.152338801 0) (-0.02131082296 -1.138247512 -1.460904047e-12) (-0.02055200247 -1.121917218 -2.921808095e-12) (-0.02122845051 -1.136449353 1.460904047e-12) (-0.02206517265 -1.154362715 0) (-0.02283508676 -1.168510053 -2.954900979e-26) (-0.02294723968 -1.17053084 -1.460904047e-12) (-0.03677825534 -1.394976778 -7.304520237e-13) (0.01795893373 -1.055627131 -2.191356071e-12) (0.01617677828 -1.20329331 0) (0.01649972181 -1.201400418 0) (-0.01030707784 -1.031147958 0) (-0.009343855264 -1.029010558 -3.335950832e-24) (-0.002843490275 -1.289779245 2.191356071e-12) (-0.009721769003 -1.314381059 -7.304520237e-13) (-0.03154463697 -1.314463179 -1.460904047e-12) (-0.01038931403 -1.316675374 0) (-0.03168657891 -1.316420464 0) (-0.03212072309 -1.322463546 -1.460904047e-12) (-0.03086521073 -1.379103582 0) (-0.03757076623 -1.397083109 0) (-0.03145056516 -1.380736538 7.304520237e-13) (0.02438536898 -1.120296017 -1.460904047e-12) (0.02433198032 -1.112325438 -7.304520237e-13) (0.02436540577 -1.114529922 0) (0.02437783124 -1.122311314 2.856816698e-27) (0.02420440156 -1.130268316 3.101196762e-26) (0.02427151494 -1.128068685 0) (0.005082017537 -1.258014902 7.304520237e-13) (-0.01093316818 -1.032766262 -1.127256769e-24) (-0.01277909831 -1.039010097 -1.460904047e-12) (-0.01923713879 -1.095635839 7.304520237e-13) (-0.01934809075 -1.097654934 7.304520237e-13) (-0.003450956619 -1.292043571 1.460904047e-12) (0.01479759309 -1.211233654 -7.304520237e-13) (-0.01320396742 -1.040817173 7.304520237e-13) (-0.02017247338 -1.113826916 0) (-0.02007002503 -1.111805104 2.533656322e-26) (-0.0216809634 -1.146269204 7.304520237e-13) (-0.02158726152 -1.144246567 7.304520237e-13) (-0.02084229116 -1.127982428 1.460904047e-12) (-0.02093932764 -1.129996557 -1.460904047e-12) (-0.02239128865 -1.160426296 7.304520237e-13) (-0.02250175075 -1.162447475 0) (-0.02339864399 -1.178603614 -1.460904047e-12) (-0.02328563428 -1.176592811 -1.460904047e-12) (-0.02867939993 -1.271956185 5.073224691e-26) (-0.03290529141 -1.332542656 1.460904047e-12) (-0.03337120655 -1.338489467 -1.460904047e-12) (-0.03274667308 -1.330527721 7.304520237e-13) (-0.03227018265 -1.324481406 0) (-0.02306204343 -1.35680939 -1.460904047e-12) (-0.028689948 -1.37303211 -1.460904047e-12) (-0.02790097068 -1.370808645 -2.191356071e-12) (0.01581685532 -1.047540985 1.460904047e-12) (0.01646097069 -1.049793562 -7.304520237e-13) (0.0217408391 -1.164696923 0) (0.01520139073 -1.208963051 -1.460904047e-12) (0.006975384879 -1.249770011 0) (0.004655892651 -1.259864367 -2.921808095e-12) (0.006548992023 -1.251647547 0) (-0.006969338164 -1.025080718 9.521440837e-24) (-0.0002196735409 -1.279771786 -1.052236861e-24) (-0.001883124228 -1.286178151 -7.304520237e-13) (-0.01864188137 -1.085829084 -7.304520237e-13) (-0.01849446626 -1.083598346 -7.304520237e-13) (-0.01899911363 -1.091598921 -1.460904047e-12) (-0.01957003501 -1.101697663 0) (-0.004557877988 -1.296129655 -7.304520237e-13) (-0.01901787152 -1.344563085 0) (0.01144866969 -1.035496192 -7.304520237e-13) (0.01403149735 -1.215451737 -1.460904047e-12) (0.01297646567 -1.221093762 -1.460904047e-12) (0.01252592042 -1.223366757 -2.191356071e-12) (-0.02036595692 -1.117872306 -1.460904047e-12) (-0.0198740263 -1.107760833 7.304520237e-13) (-0.02186881737 -1.150314287 0) (-0.02140070869 -1.140208437 0) (-0.02064590981 -1.123939665 0) (-0.0211291573 -1.134233054 3.000310852e-26) (-0.02217356416 -1.15638391 -2.801851907e-26) (-0.02272334779 -1.166489261 -2.921371519e-26) (-0.02363780081 -1.182843096 -1.460904047e-12) (-0.02376408049 -1.185067443 -7.304520237e-13) (-0.02305937376 -1.172551627 -7.304520237e-13) (-0.02551198422 -1.217111846 0) (-0.02540064161 -1.215091233 0) (-0.02474510916 -1.20296543 -1.460904047e-12) (-0.02485763854 -1.204986213 0) (-0.02386627065 -1.186867316 7.304520237e-13) (-0.02397636681 -1.188825243 -1.460904047e-12) (-0.02463257978 -1.200944646 -1.460904047e-12) (-0.02452006921 -1.198923862 1.460904047e-12) (-0.0256250783 -1.219132625 -1.460904047e-12) (-0.02573817235 -1.221153404 0) (-0.02576676823 -1.36472666 -1.460904047e-12) (-0.03597076433 -1.39283274 0) (0.01459484572 -1.043647673 0) (0.01738734185 -1.053315409 -7.304520237e-13) (0.01849439538 -1.05789834 7.304520237e-13) (0.01887837094 -1.059663871 7.304520237e-13) (0.01906503753 -1.185246659 -1.460904047e-12) (0.01940520926 -1.182911506 0) (0.01584021897 -1.205249703 0) (0.01877338538 -1.187150351 -1.460904047e-12) (0.01846989134 -1.1891234 5.659981637e-25) (0.003025432645 -1.023358563 1.460904047e-12) (0.0006763757127 -1.276223783 -9.645401859e-25) (0.000226766051 -1.278020724 0) (-0.002373422324 -1.288027097 -1.000836304e-24) (-0.03141398935 -1.312661664 7.304520237e-13) (-0.01090420924 -1.318444085 0) (-0.011411209 -1.320172784 2.191356071e-12) (-0.03183171116 -1.318430051 0) (-0.03197637543 -1.320446609 -1.460904047e-12) (-0.03603782601 -1.37117957 0) (-0.0300682271 -1.376880201 -7.304520237e-13) (0.02438416594 -1.118281415 0) (0.02437646041 -1.116323412 0) (0.02435166274 -1.124319135 -2.921808095e-12) (0.02431416304 -1.126280315 0) (-0.01233301672 -1.037260841 8.577696073e-25) (-0.01167014229 -1.035006233 1.460904047e-12) (-0.01912082587 -1.093617171 -1.460904047e-12) (-0.01945825366 -1.099676307 0) (-0.004072111007 -1.294347326 -7.304520237e-13) (-0.01774825146 -1.340613335 -1.186131129e-24) (-0.01829393263 -1.342325524 7.304520237e-13) (-0.01719617543 -1.338864328 0) (-0.01647623133 -1.336584199 -7.304520237e-13) (0.008297907524 -1.029460661 -7.304520237e-13) (0.01437429392 -1.213565801 -2.921808095e-12) (-0.02027185869 -1.115849491 -7.304520237e-13) (-0.01997071782 -1.109783068 0) (-0.0217748159 -1.148291841 7.304520237e-13) (-0.02149359888 -1.142224118 0) (-0.02074263351 -1.125961159 0) (-0.02102744746 -1.13192906 0) (-0.02228195566 -1.158405105 -1.460904047e-12) (-0.02261238059 -1.164468463 0) (-0.02350714494 -1.180533133 -1.460904047e-12) (-0.0231721465 -1.174572223 -3.008318631e-26) (-0.02518406533 -1.211048837 0) (-0.02529191256 -1.213070225 7.304520237e-13) (-0.02507621971 -1.209027637 1.460904047e-12) (-0.02496809502 -1.207006818 -1.460904047e-12) (-0.02419363875 -1.192858771 7.304520237e-13) (-0.02408597976 -1.190837381 0) (-0.02430129775 -1.194880161 0) (-0.02440946992 -1.196902113 -1.460904047e-12) (-0.02596415855 -1.225184423 7.304520237e-13) (-0.02585128367 -1.223173994 0) (-0.02607303604 -1.227113941 -3.313653929e-26) (-0.02620369329 -1.229424089 -7.304520237e-13) (-0.0330637043 -1.33455778 0) (-0.03322079342 -1.336563313 -1.460904047e-12) (-0.03258733981 -1.328512795 -1.460904047e-12) (-0.03242742419 -1.32649806 -1.460904047e-12) (-0.02927460894 -1.374665262 1.460904047e-12) (-0.03451805174 -1.388982266 0) (-0.03535260395 -1.391195734 -1.496665568e-24) (0.01513176956 -1.045294315 -7.304520237e-13) (0.01692537057 -1.051531202 0) (0.01964705094 -1.063487745 0) (0.0192664825 -1.061554448 -1.460904047e-12) (0.02000590582 -1.065364389 0) (0.02042228717 -1.067703316 -7.304520237e-13) (0.01550969831 -1.207170944 -1.460904047e-12) (0.01785535661 -1.193077178 5.925774623e-25) (0.01816504252 -1.191105285 5.659986123e-25) (0.01754487141 -1.195001797 -2.921808095e-12) (0.01725348541 -1.196796306 0) (0.007388538654 -1.247916663 -1.460904047e-12) (0.00790480329 -1.245589822 1.460904047e-12) (0.003797251132 -1.263499661 -7.304520237e-13) (0.00421908998 -1.261735226 0) (0.006140902902 -1.253418856 0) (0.005617537885 -1.255690482 1.460904047e-12) (0.001002660122 -1.022177559 0) (-0.03804053962 -1.39833077 -1.310090772e-24) ) ; } front { type empty; } back { type empty; } } // ************************************************************************* //
[ "ishantamrakat24@gmail.com" ]
ishantamrakat24@gmail.com
763c461508e359e20ab34dc69768f8814c277a74
d3435f02b7b6eff2a301094a20d38139d8230e3f
/SdlEvent.cpp
3515b5fb0c0db6c44c8e9e9c0a67772ca63bf142
[]
no_license
chinasarft/sdllearn
8a21e56b545c00d61c46731ca8a0bcb619179197
4271cbfb152fca3254ea35ce0ba1509052f87269
refs/heads/master
2021-08-06T20:17:19.514237
2017-11-07T00:00:01
2017-11-07T00:00:46
109,498,252
0
0
null
null
null
null
UTF-8
C++
false
false
6,475
cpp
#include "SdlEvent.h" #include <QTime> SdlEvent::SdlEvent(QWidget *parent) : QMainWindow(parent) { ui.setupUi(this); isSDLInitOk = false; if (SDL_Init(SDL_INIT_VIDEO) != 0) { isSDLInitOk = true; qDebug() << "SDL_Init Error: " << SDL_GetError(); } init_sprite(&background); init_sprite(&direction); init_sprite(&image); memset(&canvas, 0, sizeof(Canvas)); //background.angle = 180; connect(&thread, SIGNAL(resultReady()), this, SLOT(slot_render())); thread.start(); } SdlEvent::~SdlEvent() { if (thread.isRunning()) { thread.SetExit(); thread.wait(); //must wait } if (isSDLInitOk) { isSDLInitOk = false; SDL_Quit(); } //Destroy the various items cleanup(background.texture, image.texture); cleanup(direction.texture, NULL); if (window) { cleanup(window); } } void SdlEvent::closeEvent(QCloseEvent *event) { qDebug() << "close............"; } void SdlEvent::logSDLError(std::string str) { qDebug() << str.c_str(); } SDL_Texture* SdlEvent::loadTexture(const std::string &file, SDL_Renderer *ren) { SDL_Texture *texture = IMG_LoadTexture(ren, file.c_str()); if (texture == nullptr) { logSDLError("LoadTexture"); } return texture; } void SdlEvent::cleanup(SDL_Window * win) { if (win != nullptr) { SDL_DestroyWindow(win); } } void SdlEvent::cleanup(SDL_Renderer * render) { if(render != nullptr) SDL_DestroyRenderer(render); } void SdlEvent::cleanup(SDL_Texture* tex1, SDL_Texture * tex2) { if(tex1 != nullptr) SDL_DestroyTexture(tex1); if(tex2 != nullptr) SDL_DestroyTexture(tex2); } void SdlEvent::on_btnCatchCanvas_clicked() { canvas.catchCanvas = 1; } void SdlEvent::on_pushButton_clicked() { //Setup our window and renderer if (window == nullptr) { window = SDL_CreateWindowFrom((HWND)ui.label->winId()); if (window == nullptr) { logSDLError("CreateWindow"); return; } } SDL_Renderer * r; r = SDL_CreateRenderer(window, -1, SDL_RENDERER_ACCELERATED | SDL_RENDERER_PRESENTVSYNC | SDL_RENDERER_TARGETTEXTURE); if (r == nullptr) { logSDLError("CreateRenderer"); return; } if (init_canvas(&canvas, r, 1920, 1080, ui.label->width(), ui.label->height()) != 0) { qDebug() << "init_canvas fail"; return; } set_canvas_pad_color(&canvas, 57, 58, 57); Uint32 winPf = SDL_GetWindowPixelFormat(window); qDebug() << "winPf:" << winPf << "pixel format name:"<<SDL_GetPixelFormatName(winPf); //The textures we'll be using const std::string resPath = "C:\\d\\render\\sdl_learn\\sdl_project\\SdlEvent\\"; background.texture = loadTexture(resPath + "background.png", canvas.renderer); direction.texture = loadTexture(resPath + "direction.png", canvas.renderer); image.texture = loadTexture(resPath + "image.png", canvas.renderer); //Make sure they both loaded ok if (background.texture == nullptr || image.texture == nullptr || direction.texture == nullptr) { cleanup(background.texture, image.texture); return ; } Uint32 f1, f2, f3; SDL_QueryTexture(background.texture, &f1, NULL, &background.width, &background.height); SDL_QueryTexture(image.texture, &f3, NULL, &image.width, &image.height); SDL_QueryTexture(direction.texture, &f2, NULL, &direction.width, &direction.height); qDebug() << "background:" << SDL_GetPixelFormatName(f1) << background.width << background.height; qDebug() << " image:" << SDL_GetPixelFormatName(f2) << direction.width << direction.height; qDebug() << " direction:" << SDL_GetPixelFormatName(f3) << image.width << image.height; add_sprite_to_canvas(&canvas, &background); add_sprite_to_canvas(&canvas, &image); add_sprite_to_canvas(&canvas, &direction); return ; } void SdlEvent::enableBlend() { if(canvas.renderer != nullptr) SDL_SetRenderDrawBlendMode(canvas.renderer, SDL_BLENDMODE_BLEND); if (background.texture != nullptr) { SDL_SetTextureBlendMode(background.texture, SDL_BLENDMODE_BLEND); } if (direction.texture != nullptr) { SDL_SetTextureBlendMode(direction.texture, SDL_BLENDMODE_BLEND); } if (image.texture != nullptr) { SDL_SetTextureBlendMode(image.texture, SDL_BLENDMODE_BLEND); SDL_SetTextureAlphaMod(image.texture, transparentValue); } } void SdlEvent::on_spinBox_valueChanged(int arg1) { qDebug() << "new value" << arg1; transparentValue = arg1; } void SdlEvent::slot_render() { if (canvas.renderer == nullptr) { qDebug() << "render................"; return; } Sprite * selectedSprite = nullptr; SDL_Event e; //A sleepy rendering loop, wait for 3 seconds and render and present the screen each time while (SDL_PollEvent(&e)) { switch (e.type) { case SDL_QUIT: qDebug() << "event quit..........."; break; case SDL_KEYDOWN: qDebug() << "event keydown..........."; break; case SDL_MOUSEBUTTONDOWN: canvas_response_mouse_press(&canvas, &e.motion); break; case SDL_MOUSEBUTTONUP: canvas_response_mouse_up(&canvas, &e.motion); qDebug() << "event mouseup==============="; break; case SDL_MOUSEMOTION: canvas_response_mouse_move(&canvas, &e.motion); break; case SDL_WINDOWEVENT: if (e.window.event == SDL_WINDOWEVENT_RESIZED) { int tmpX, tmpY; SDL_GetWindowSize(window, &tmpX, &tmpY); canvas_window_resized(&canvas, tmpX, tmpY); // data1 is tmpX, data2 is tmpY qDebug() << "new size:" << tmpX << tmpY << e.window.data1 <<e.window.data2; } break; default: qDebug() << "event..........." << e.type; } //break; } enableBlend(); #ifdef PERFTEST QTime st = QTime::currentTime(); for (int i = 0; i < 1000; i++) { canvas.catchCanvas = 1; draw_canvas(&canvas); } QTime et = QTime::currentTime(); qDebug() << st.minute() << st.second() << st.msec(); qDebug() << et.minute() << et.second() << et.msec(); #else draw_canvas(&canvas); #endif }
[ "liumengke@qiniu.com" ]
liumengke@qiniu.com
2369689156c22aaee41ddbc8fb717a1d30d1636a
2ba94892764a44d9c07f0f549f79f9f9dc272151
/Engine/Source/Runtime/Engine/Classes/Materials/MaterialExpressionParticleRelativeTime.h
98a8e166efcb620916fc322f3dce9c9cd92f2967
[ "BSD-2-Clause", "LicenseRef-scancode-proprietary-license" ]
permissive
PopCap/GameIdea
934769eeb91f9637f5bf205d88b13ff1fc9ae8fd
201e1df50b2bc99afc079ce326aa0a44b178a391
refs/heads/master
2021-01-25T00:11:38.709772
2018-09-11T03:38:56
2018-09-11T03:38:56
37,818,708
0
0
BSD-2-Clause
2018-09-11T03:39:05
2015-06-21T17:36:44
null
UTF-8
C++
false
false
868
h
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved. /*============================================================================== MaterialExpressionParticleRelativeTime: Exposes the relative time of a particle to the material editor. ==============================================================================*/ #pragma once #include "Materials/MaterialExpression.h" #include "MaterialExpressionParticleRelativeTime.generated.h" UCLASS(collapsecategories, hidecategories=Object) class UMaterialExpressionParticleRelativeTime : public UMaterialExpression { GENERATED_UCLASS_BODY() // Begin UMaterialExpression Interface virtual int32 Compile(class FMaterialCompiler* Compiler, int32 OutputIndex, int32 MultiplexIndex) override; virtual void GetCaption(TArray<FString>& OutCaptions) const override; // End UMaterialExpression Interface };
[ "dkroell@acm.org" ]
dkroell@acm.org
9a42eba54ba71b4223afd152675981140c6d4217
5a7253b0336814401a157f3b12b86ef8010afcaf
/Source/Framework/Projects/ProjectThree.h
c20c154444e9b4a56082bf019a2518a2e98f799a
[]
no_license
wnsrl7659/AI-HideSeek
9d1f73ae357a5c7b34633fc400e308e471195d00
15b971e03107a49b504bce4688e0746ee4c42414
refs/heads/master
2023-07-14T06:49:33.906996
2021-09-05T07:29:46
2021-09-05T07:29:46
403,243,555
0
0
null
null
null
null
UTF-8
C++
false
false
3,000
h
/******************************************************************************/ /*! \file ProjectThree.h \project CS380/CS580 AI Framework \author Dustin Holmes \summary Specification for project three - terrain analysis Copyright (C) 2018 DigiPen Institute of Technology. Reproduction or disclosure of this file or its contents without the prior written consent of DigiPen Institute of Technology is prohibited. */ /******************************************************************************/ #pragma once #include "Project.h" #include "../Student/Project_2/P2_Pathfinding.h" #include <memory> class ProjectThree final : public Project { public: virtual bool initialize() override final; virtual bool finalize() override final; virtual void shutdown() override final; virtual void draw_meshes() override final; virtual void draw_sprites() override final; virtual void draw_text() override final; virtual void draw_debug() override final; virtual void update() override final; bool implemented_fog_of_war() const; private: AStarAgent *player; EnemyAgent *enemy; std::wstring propagationDecayText; std::wstring propagationGrowthText; std::wstring analysisFrequencyText; float propagationDecay; float propagationGrowth; unsigned analysisFrequency; unsigned frequencyMod; unsigned frequencyOffset; bool openness; bool totalVisibility; bool playerVisibility; bool search; bool propagation; bool propagationNormalized; bool propagationDual; bool hideAndSeek; unsigned get_analysis_frequency(); void set_analysis_frequency(const unsigned &val); const std::wstring &get_analysis_frequency_text(); float get_propagation_decay(); void set_propagation_decay(const float &val); const std::wstring &get_propagation_decay_text(); float get_propagation_growth(); void set_propagation_growth(const float &val); const std::wstring &get_propagation_growth_text(); void build_ui(); void link_input(); void on_f1(); void on_f2(); void on_mouse_left_click(); void on_mouse_right_click(); void toggle_openness(); void toggle_total_visibility(); void toggle_player_visibility(); void toggle_search(); void toggle_propagation(); void toggle_propagation_normalized(); void toggle_propagation_dual(); void toggle_hide_and_seek(); void perform_openness_analysis(); void perform_total_visibility_analysis(); void perform_player_visibility_analysis(); void perform_search_analysis(); void perform_propagation(); void perform_propagation_normalized(); void perform_hide_and_seek(); bool get_openness_state(); bool get_total_visibility_state(); bool get_player_visibility_state(); bool get_search_state(); bool get_propagation_state(); bool get_propagation_normalized_state(); bool get_propagation_dual_state(); bool get_hide_and_seek_state(); };
[ "wnsrl7659@naver.com" ]
wnsrl7659@naver.com