blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
7f8d03f4fa416167ecb662a32f37a54e566cfdda
c1f4a5ddbe59f827aae3666469a5f02238ff9d9f
/connection.cpp
034c9236719dbe57ba934de2c6d3a1a81d9a13b1
[]
no_license
rt12/highloadcup2017
fd7f1eb64665acd9f62b8cddef2223b473663e78
db91981520f835b125d0afaed982549ee89c544f
refs/heads/master
2021-07-05T19:13:01.876762
2017-09-29T09:15:57
2017-09-29T09:15:57
105,253,852
0
0
null
null
null
null
UTF-8
C++
false
false
3,470
cpp
#include "connection.h" namespace StatusStrings { const std::string ok = "HTTP/1.1 200 OK\r\n"; const std::string created = "HTTP/1.1 201 Created\r\n"; const std::string accepted = "HTTP/1.1 202 Accepted\r\n"; const std::string no_content = "HTTP/1.1 204 No Content\r\n"; const std::string multiple_choices = "HTTP/1.1 300 Multiple Choices\r\n"; const std::string moved_permanently = "HTTP/1.1 301 Moved Permanently\r\n"; const std::string moved_temporarily = "HTTP/1.1 302 Moved Temporarily\r\n"; const std::string not_modified = "HTTP/1.1 304 Not Modified\r\n"; const std::string bad_request = "HTTP/1.1 400 Bad Request\r\n"; const std::string unauthorized = "HTTP/1.1 401 Unauthorized\r\n"; const std::string forbidden = "HTTP/1.1 403 Forbidden\r\n"; const std::string not_found = "HTTP/1.1 404 Not Found\r\n"; const std::string internal_server_error = "HTTP/1.1 500 Internal Server Error\r\n"; const std::string not_implemented = "HTTP/1.1 501 Not Implemented\r\n"; const std::string bad_gateway = "HTTP/1.1 502 Bad Gateway\r\n"; const std::string service_unavailable = "HTTP/1.1 503 Service Unavailable\r\n"; boost::string_ref toStringRef(HttpStatus status) { switch (status) { case HttpStatus::ok: return boost::string_ref(ok); case HttpStatus::created: return boost::string_ref(created); case HttpStatus::accepted: return boost::string_ref(accepted); case HttpStatus::no_content: return boost::string_ref(no_content); case HttpStatus::multiple_choices: return boost::string_ref(multiple_choices); case HttpStatus::moved_permanently: return boost::string_ref(moved_permanently); case HttpStatus::moved_temporarily: return boost::string_ref(moved_temporarily); case HttpStatus::not_modified: return boost::string_ref(not_modified); case HttpStatus::bad_request: return boost::string_ref(bad_request); case HttpStatus::unauthorized: return boost::string_ref(unauthorized); case HttpStatus::forbidden: return boost::string_ref(forbidden); case HttpStatus::not_found: return boost::string_ref(not_found); case HttpStatus::internal_server_error: return boost::string_ref(internal_server_error); case HttpStatus::not_implemented: return boost::string_ref(not_implemented); case HttpStatus::bad_gateway: return boost::string_ref(bad_gateway); case HttpStatus::service_unavailable: return boost::string_ref(service_unavailable); default: return boost::string_ref(internal_server_error); } } } // namespace status_strings void ConnectionBase::formatHeaders(const Response& response) { int len = snprintf(d_headersBuf.data(), d_headersBuf.size(), "%s" "Content-Length: %zu\r\n" "Connection: %s\r\n" "Content-Type: %s\r\n" "\r\n", StatusStrings::toStringRef(response.code).data(), response.size(), keepAlive ? "keep-alive" : "close", response.contentType.data()); d_headersRef = boost::string_ref(d_headersBuf.data(), len); }
[ "biorobot@gmail.com" ]
biorobot@gmail.com
0293886a639ab6e0821ea41d06c640685c65837c
4eb4242f67eb54c601885461bac58b648d91d561
/third_part/indri5.6/BeliefNode.hpp
b2c58e6758ecaf98000c6490d57bed23e463e86c
[]
no_license
biebipan/coding
630c873ecedc43a9a8698c0f51e26efb536dabd1
7709df7e979f2deb5401d835d0e3b119a7cd88d8
refs/heads/master
2022-01-06T18:52:00.969411
2018-07-18T04:30:02
2018-07-18T04:30:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,845
hpp
/*========================================================================== * Copyright (c) 2004 University of Massachusetts. All Rights Reserved. * * Use of the Lemur Toolkit for Language Modeling and Information Retrieval * is subject to the terms of the software license set forth in the LICENSE * file included with this software, and also available at * http://www.lemurproject.org/license.html * *========================================================================== */ // // BeliefNode // // 26 January 2004 -- tds // #ifndef INDRI_BELIEFNODE_HPP #define INDRI_BELIEFNODE_HPP #include "InferenceNetworkNode.hpp" #include "greedy_vector" #include "ScoredExtentResult.hpp" #include <float.h> #define INDRI_HUGE_SCORE ( DBL_MAX ) #define INDRI_TINY_SCORE ( -DBL_MAX ) namespace indri { namespace infnet { class BeliefNode : public InferenceNetworkNode { protected: /// flag (and potential counter) for if belief node has siblings int bSiblings; public: virtual double maximumBackgroundScore() = 0; virtual double maximumScore() = 0; virtual const indri::utility::greedy_vector<indri::api::ScoredExtentResult>& score( lemur::api::DOCID_T documentID, indri::index::Extent &extent, int documentLength ) = 0; virtual bool hasMatch( lemur::api::DOCID_T documentID ) = 0; virtual const indri::utility::greedy_vector<bool>& hasMatch( lemur::api::DOCID_T documentID, const indri::utility::greedy_vector<indri::index::Extent>& extents ) = 0; virtual void annotate( class Annotator& annotator, lemur::api::DOCID_T documentID, indri::index::Extent &extent ) = 0; /// sets the siblings flag (and counter) if the belief node /// has siblings virtual void setSiblingsFlag(int f) { bSiblings=f; } }; } } #endif // INDRI_BELIEFNODE_HPP
[ "guoliqiang2006@126.com" ]
guoliqiang2006@126.com
ae732024dbba87af5ce4ff74171c6053a1eee053
bfb69ec2b09dda9751365982303f9dac0db772c8
/src/utils/android/SkHwuiRenderer.cpp
17a830e976a25961fe091238c0384b2727f5316b
[ "BSD-3-Clause" ]
permissive
amyvmiwei/skia
6fa9bd8b682291b5c789c39f942cb1829c28d04a
069073547894944d439d31ea70bd06ffc23948b3
refs/heads/master
2021-01-18T01:14:27.545521
2015-04-30T16:15:44
2015-04-30T16:15:44
34,868,523
1
0
null
2015-04-30T17:56:01
2015-04-30T17:56:01
null
UTF-8
C++
false
false
5,220
cpp
/* * Copyright 2015 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "SkHwuiRenderer.h" #include "AnimationContext.h" #include "IContextFactory.h" #include "SkBitmap.h" #include "gui/BufferQueue.h" namespace { /** * Helper class for setting up android::uirenderer::renderthread::RenderProxy. */ class ContextFactory : public android::uirenderer::IContextFactory { public: android::uirenderer::AnimationContext* createAnimationContext (android::uirenderer::renderthread::TimeLord& clock) override { return new android::uirenderer::AnimationContext(clock); } }; } void SkHwuiRenderer::initialize(SkISize size) { this->size = size; android::BufferQueue::createBufferQueue(&this->producer, &this->consumer); this->cpuConsumer = new android::CpuConsumer(this->consumer, 1); this->cpuConsumer->setName(android::String8("SkiaBenchmarkClient")); this->cpuConsumer->setDefaultBufferSize(size.width(), size.height()); this->androidSurface = new android::Surface(this->producer); native_window_set_buffers_dimensions(this->androidSurface.get(), size.width(), size.height()); native_window_set_buffers_format(this->androidSurface.get(), android::PIXEL_FORMAT_RGBA_8888); native_window_set_usage(this->androidSurface.get(), GRALLOC_USAGE_SW_READ_OFTEN | GRALLOC_USAGE_SW_WRITE_NEVER | GRALLOC_USAGE_HW_RENDER); this->rootNode.reset(new android::uirenderer::RenderNode()); this->rootNode->incStrong(nullptr); this->rootNode->mutateStagingProperties().setLeftTopRightBottom (0, 0, size.width(), size.height()); this->rootNode->mutateStagingProperties().setClipToBounds(false); this->rootNode->setPropertyFieldsDirty(android::uirenderer::RenderNode::GENERIC); ContextFactory factory; this->proxy.reset (new android::uirenderer::renderthread::RenderProxy(false, this->rootNode, &factory)); this->proxy->loadSystemProperties(); this->proxy->initialize(this->androidSurface.get()); float lightX = size.width() / 2.0f; android::uirenderer::Vector3 lightVector { lightX, -200.0f, 800.0f }; this->proxy->setup(size.width(), size.height(), lightVector, 800.0f, 255 * 0.075f, 255 * 0.15f); this->canvas.reset(new android::uirenderer::DisplayListCanvas()); this->canvas->setViewport(size.width(), size.height()); } SkCanvas* SkHwuiRenderer::prepareToDraw() { this->canvas->prepare(); this->canvas->clipRect(0, 0, this->size.width(), this->size.height(), SkRegion::Op::kReplace_Op); return this->canvas->asSkCanvas(); } void SkHwuiRenderer::finishDrawing() { this->canvas->finish(); this->rootNode->setStagingDisplayList(this->canvas->finishRecording()); this->proxy->syncAndDrawFrame(); // Surprisingly, calling this->proxy->fence() here appears to make no difference to // the timings we record. } bool SkHwuiRenderer::capturePixels(SkBitmap* bmp) { SkImageInfo destinationConfig = SkImageInfo::Make(this->size.width(), this->size.height(), kRGBA_8888_SkColorType, kPremul_SkAlphaType); bmp->allocPixels(destinationConfig); sk_memset32((uint32_t*) bmp->getPixels(), SK_ColorRED, this->size.width() * this->size.height()); android::CpuConsumer::LockedBuffer nativeBuffer; android::status_t retval = this->cpuConsumer->lockNextBuffer(&nativeBuffer); if (retval == android::BAD_VALUE) { SkDebugf("write_canvas_png() got no buffer; returning transparent"); // No buffer ready to read - commonly triggered by dm sending us // a no-op source, or calling code that doesn't do anything on this // backend. bmp->eraseColor(SK_ColorTRANSPARENT); return false; } else if (retval) { SkDebugf("Failed to lock buffer to read pixels: %d.", retval); return false; } // Move the pixels into the destination SkBitmap SK_ALWAYSBREAK(nativeBuffer.format == android::PIXEL_FORMAT_RGBA_8888 && "Native buffer not RGBA!"); SkImageInfo nativeConfig = SkImageInfo::Make(nativeBuffer.width, nativeBuffer.height, kRGBA_8888_SkColorType, kPremul_SkAlphaType); // Android stride is in pixels, Skia stride is in bytes SkBitmap nativeWrapper; bool success = nativeWrapper.installPixels(nativeConfig, nativeBuffer.data, nativeBuffer.stride * 4); if (!success) { SkDebugf("Failed to wrap HWUI buffer in a SkBitmap"); return false; } SK_ALWAYSBREAK(bmp->colorType() == kRGBA_8888_SkColorType && "Destination buffer not RGBA!"); success = nativeWrapper.readPixels(destinationConfig, bmp->getPixels(), bmp->rowBytes(), 0, 0); if (!success) { SkDebugf("Failed to extract pixels from HWUI buffer"); return false; } this->cpuConsumer->unlockBuffer(nativeBuffer); return true; }
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
561903dc950654826073a18e1eb819d4d0d1cbff
d0c44dd3da2ef8c0ff835982a437946cbf4d2940
/cmake-build-debug/programs_tiling/function13766/function13766_schedule_20/function13766_schedule_20.cpp
f190098f71cfd3bcb1939312c370e09ff2f77e80
[]
no_license
IsraMekki/tiramisu_code_generator
8b3f1d63cff62ba9f5242c019058d5a3119184a3
5a259d8e244af452e5301126683fa4320c2047a3
refs/heads/master
2020-04-29T17:27:57.987172
2019-04-23T16:50:32
2019-04-23T16:50:32
176,297,755
1
2
null
null
null
null
UTF-8
C++
false
false
1,595
cpp
#include <tiramisu/tiramisu.h> using namespace tiramisu; int main(int argc, char **argv){ tiramisu::init("function13766_schedule_20"); constant c0("c0", 64), c1("c1", 128), c2("c2", 64), c3("c3", 64); var i0("i0", 0, c0), i1("i1", 0, c1), i2("i2", 0, c2), i3("i3", 0, c3), i01("i01"), i02("i02"), i03("i03"), i04("i04"), i05("i05"), i06("i06"); input input00("input00", {i0, i1, i2}, p_int32); input input01("input01", {i0, i3}, p_int32); input input02("input02", {i1, i3}, p_int32); input input03("input03", {i0, i2, i3}, p_int32); input input04("input04", {i0, i1, i3}, p_int32); computation comp0("comp0", {i0, i1, i2, i3}, input00(i0, i1, i2) - input01(i0, i3) - input02(i1, i3) + input03(i0, i2, i3) * input04(i0, i1, i3)); comp0.tile(i0, i1, i2, 32, 64, 32, i01, i02, i03, i04, i05, i06); comp0.parallelize(i01); buffer buf00("buf00", {64, 128, 64}, p_int32, a_input); buffer buf01("buf01", {64, 64}, p_int32, a_input); buffer buf02("buf02", {128, 64}, p_int32, a_input); buffer buf03("buf03", {64, 64, 64}, p_int32, a_input); buffer buf04("buf04", {64, 128, 64}, p_int32, a_input); buffer buf0("buf0", {64, 128, 64, 64}, p_int32, a_output); input00.store_in(&buf00); input01.store_in(&buf01); input02.store_in(&buf02); input03.store_in(&buf03); input04.store_in(&buf04); comp0.store_in(&buf0); tiramisu::codegen({&buf00, &buf01, &buf02, &buf03, &buf04, &buf0}, "../data/programs/function13766/function13766_schedule_20/function13766_schedule_20.o"); return 0; }
[ "ei_mekki@esi.dz" ]
ei_mekki@esi.dz
ab2c128381b4efbbb755a75b056f942cc9ca6c64
a2fa8b0f7d98ba8e7c2812b8f67ec189ca189824
/src/moc_rvs_tab.cpp
81630ed17d14240eb8141050f8b2547ad34de277
[]
no_license
YanwuZeng/diverge3
5947cf5eff6c8bf928bd2c6961be67af6ef8f936
c0d1a01054a6493d954c6901bdc8a088fb2b251c
refs/heads/master
2021-01-12T02:21:37.259259
2017-01-13T05:17:46
2017-01-13T05:17:46
78,505,130
0
0
null
null
null
null
UTF-8
C++
false
false
2,296
cpp
/**************************************************************************** ** RVSTab meta object code from reading C++ file 'rvs_tab.h' ** ** Created: Tue Jan 10 16:33:53 2017 ** by: The Qt MOC ($Id: //depot/qt/main/src/moc/moc.y#178 $) ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ #define Q_MOC_RVSTab #if !defined(Q_MOC_OUTPUT_REVISION) #define Q_MOC_OUTPUT_REVISION 8 #elif Q_MOC_OUTPUT_REVISION != 8 #error "Moc format conflict - please regenerate all moc files" #endif #include "rvs_tab.h" #include <qmetaobject.h> #include <qapplication.h> #if defined(Q_SPARCWORKS_FUNCP_BUG) #define Q_AMPERSAND #else #define Q_AMPERSAND & #endif const char *RVSTab::className() const { return "RVSTab"; } QMetaObject *RVSTab::metaObj = 0; void RVSTab::initMetaObject() { if ( metaObj ) return; if ( strcmp(MethodTab::className(), "MethodTab") != 0 ) badSuperclassWarning("RVSTab","MethodTab"); (void) staticMetaObject(); } #ifndef QT_NO_TRANSLATION QString RVSTab::tr(const char* s) { return ((QNonBaseApplication*)qApp)->translate("RVSTab",s); } #endif // QT_NO_TRANSLATION QMetaObject* RVSTab::staticMetaObject() { if ( metaObj ) return metaObj; (void) MethodTab::staticMetaObject(); #ifndef QT_NO_PROPERTIES #endif // QT_NO_PROPERTIES typedef void(RVSTab::*m1_t0)(); typedef void(RVSTab::*m1_t1)(int); m1_t0 v1_0 = Q_AMPERSAND RVSTab::calculate; m1_t1 v1_1 = Q_AMPERSAND RVSTab::bootstrap; QMetaData *slot_tbl = QMetaObject::new_metadata(2); QMetaData::Access *slot_tbl_access = QMetaObject::new_metaaccess(2); slot_tbl[0].name = "calculate()"; slot_tbl[0].ptr = *((QMember*)&v1_0); slot_tbl_access[0] = QMetaData::Protected; slot_tbl[1].name = "bootstrap(int)"; slot_tbl[1].ptr = *((QMember*)&v1_1); slot_tbl_access[1] = QMetaData::Protected; metaObj = QMetaObject::new_metaobject( "RVSTab", "MethodTab", slot_tbl, 2, 0, 0, #ifndef QT_NO_PROPERTIES 0, 0, 0, 0, #endif // QT_NO_PROPERTIES 0, 0 ); metaObj->set_slot_access( slot_tbl_access ); #ifndef QT_NO_PROPERTIES #endif // QT_NO_PROPERTIES return metaObj; }
[ "“youremail@example.com”" ]
“youremail@example.com”
db566bae55fe99934215ee36e9e0374a47ea9b55
6043c1d986bcda428aba1d0fa7a3b170a4d4b0b6
/factorial sum.cpp
8b65f6843fb565c12c88f57ffc576fe566647d58
[]
no_license
raima20/C_Programming
1d796c08ac22a1515ee10d68c8e781148821c5d7
f66358f1f23b607d07c8e10661da8c2fdfa80c8d
refs/heads/master
2023-06-21T22:12:15.161961
2021-07-19T15:55:55
2021-07-19T15:55:55
387,517,797
0
0
null
null
null
null
UTF-8
C++
false
false
236
cpp
#include<stdio.h> void fact(int n) { int i,j,mult=1,f=1,s=0; for(i=1;i<=n;i++) for(j=1;j<=i;j++){ f=1; f=f*j; s=s+f; } printf("%d",s); } int main() { int n; printf("Enter the range:"); scanf("%d",&n); fact(n); return 0; }
[ "sarkar.raima155@gmail.com" ]
sarkar.raima155@gmail.com
0d13c5fd08c85f6bea278d2b428decfd61046dfd
5da7acab91c9d64406338a149538ab2d34820e10
/tensorflow/lite/delegates/gpu/cl/tensor.cc
edd903dec51cdc5c4486c30e9a066360b4ad6396
[ "Apache-2.0" ]
permissive
H4NG-MAN/tensorflow
32b818b9b1172abd03acb27b154c6c48d94feb93
432b55a161e70db42103d38d3e18c165dd0c7fde
refs/heads/master
2023-06-28T23:03:12.286796
2019-12-07T16:18:25
2019-12-07T16:18:25
212,573,936
2
0
Apache-2.0
2023-06-26T17:18:26
2019-10-03T12:25:23
C++
UTF-8
C++
false
false
18,328
cc
/* Copyright 2019 The TensorFlow 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 "tensorflow/lite/delegates/gpu/cl/tensor.h" #include <cstring> #include "absl/strings/str_cat.h" #include "tensorflow/lite/delegates/gpu/cl/cl_image_format.h" #include "tensorflow/lite/delegates/gpu/cl/tensor_type.h" #include "tensorflow/lite/delegates/gpu/common/data_type.h" #include "tensorflow/lite/delegates/gpu/common/status.h" namespace tflite { namespace gpu { namespace cl { namespace { Status CreateImageBufferFromBuffer(const CLContext& context, cl_mem memory, enum DataType data_type, int width, cl_mem* result) { cl_image_format format; cl_image_desc desc; std::memset(&desc, 0, sizeof(desc)); desc.image_type = CL_MEM_OBJECT_IMAGE1D_BUFFER; desc.image_width = width; desc.mem_object = memory; format.image_channel_data_type = ToImageChannelType(data_type); format.image_channel_order = CL_RGBA; cl_int error; *result = clCreateImage(context.context(), CL_MEM_READ_WRITE, &format, &desc, nullptr, &error); if (error != CL_SUCCESS) { return UnknownError( absl::StrCat("Failed to create Texture2D (clCreateImage)", CLErrorCodeToString(error))); } return OkStatus(); } Status CreateTensor(const CLContext& context, const CLDevice& device, const BHWC& shape, const TensorDescriptor& descriptor, cl_mem memory, Tensor* result) { const bool shared = memory != nullptr; if (!shared) { CLMemory mem; RETURN_IF_ERROR( AllocateTensorMemory(context, device, shape, descriptor, &mem)); memory = mem.Release(); } if (descriptor.storage_type == TensorStorageType::IMAGE_BUFFER) { cl_mem image_memory; RETURN_IF_ERROR(CreateImageBufferFromBuffer( context, memory, descriptor.data_type, shape.b * shape.w * shape.h * IntegralDivideRoundUp(shape.c, 4), &image_memory)); *result = Tensor(memory, shared, image_memory, shape, descriptor); } else { *result = Tensor(memory, shared, shape, descriptor); } return OkStatus(); } } // namespace Tensor::Tensor(cl_mem memory, bool memory_owner, const BHWC& shape, const TensorDescriptor& descriptor) : memory_(memory), image_buffer_memory_(nullptr), memory_owner_(memory_owner), shape_(shape), descriptor_(descriptor) {} Tensor::Tensor(cl_mem memory, bool memory_owner, cl_mem image_buffer_memory, const BHWC& shape, const TensorDescriptor& descriptor) : memory_(memory), image_buffer_memory_(image_buffer_memory), memory_owner_(memory_owner), shape_(shape), descriptor_(descriptor) {} Tensor::Tensor(Tensor&& tensor) : memory_(tensor.memory_), image_buffer_memory_(tensor.image_buffer_memory_), memory_owner_(tensor.memory_owner_), shape_(tensor.shape_), descriptor_(tensor.descriptor_) { tensor.memory_ = nullptr; } Tensor& Tensor::operator=(Tensor&& tensor) { if (this != &tensor) { Release(); std::swap(memory_, tensor.memory_); std::swap(image_buffer_memory_, tensor.image_buffer_memory_); std::swap(memory_owner_, tensor.memory_owner_); std::swap(shape_, tensor.shape_); std::swap(descriptor_, tensor.descriptor_); } return *this; } void Tensor::Release() { if (image_buffer_memory_) { clReleaseMemObject(image_buffer_memory_); memory_ = nullptr; } if (memory_owner_ && memory_) { clReleaseMemObject(memory_); memory_ = nullptr; } } int3 Tensor::GetFullTensorRegion() const { switch (descriptor_.storage_type) { case TensorStorageType::BUFFER: case TensorStorageType::TEXTURE_ARRAY: case TensorStorageType::IMAGE_BUFFER: return {shape_.w * shape_.b, shape_.h, Depth()}; case TensorStorageType::TEXTURE_2D: return {shape_.w * shape_.b, shape_.h * Depth(), 1}; case TensorStorageType::SINGLE_TEXTURE_2D: return {shape_.w * shape_.b, shape_.h, 1}; case TensorStorageType::UNKNOWN: return {-1, -1, -1}; } } Status Tensor::IsValid(const BHWC& shape) const { if (shape.b != shape_.b) { return InvalidArgumentError("Shape batch does not match tensor batch"); } if (shape.w != shape_.w) { return InvalidArgumentError("Shape width does not match tensor width"); } if (shape.h != shape_.h) { return InvalidArgumentError("Shape height does not match tensor height"); } if (shape.c != shape_.c) { return InvalidArgumentError( "Shape channels does not match tensor channels"); } return OkStatus(); } int Tensor::GetChannelsAlignment() const { return descriptor_.storage_type == TensorStorageType::SINGLE_TEXTURE_2D ? shape_.c : 4; } int Tensor::GetAlignedChannels() const { return descriptor_.storage_type == TensorStorageType::SINGLE_TEXTURE_2D ? shape_.c : AlignByN(shape_.c, 4); } uint64_t Tensor::GetMemorySizeInBytes() const { const int flt_size = SizeOf(descriptor_.data_type); const int flt4_size = 4 * flt_size; switch (descriptor_.storage_type) { case TensorStorageType::BUFFER: case TensorStorageType::IMAGE_BUFFER: case TensorStorageType::TEXTURE_ARRAY: case TensorStorageType::TEXTURE_2D: return flt4_size * shape_.b * shape_.w * shape_.h * Depth(); case TensorStorageType::SINGLE_TEXTURE_2D: return flt_size * shape_.w * shape_.h * shape_.c * shape_.b; default: return 0; } } cl_mem Tensor::GetMemoryPtr() const { return descriptor_.storage_type == TensorStorageType::IMAGE_BUFFER ? image_buffer_memory_ : memory_; } cl_mem Tensor::GetMemoryPtrForWriting() const { return memory_; } Status Tensor::WriteDataBHWC(absl::Span<const float> in, CLCommandQueue* queue) { void* data_ptr = nullptr; const int aligned_channels = GetAlignedChannels(); const int elements_count = shape_.b * shape_.w * shape_.h * aligned_channels; const size_t data_size = elements_count * SizeOf(descriptor_.data_type); std::vector<float> data_f; std::vector<half> data_h; if (descriptor_.data_type == DataType::FLOAT32) { data_f.resize(elements_count); data_ptr = data_f.data(); DataFromBHWC(in, absl::MakeSpan(data_f.data(), data_f.size())); } else { data_h.resize(elements_count); data_ptr = data_h.data(); DataFromBHWC(in, absl::MakeSpan(data_h.data(), data_h.size())); } switch (descriptor_.storage_type) { case TensorStorageType::BUFFER: case TensorStorageType::IMAGE_BUFFER: RETURN_IF_ERROR(queue->EnqueueWriteBuffer(memory_, data_size, data_ptr)); break; case TensorStorageType::TEXTURE_ARRAY: case TensorStorageType::TEXTURE_2D: case TensorStorageType::SINGLE_TEXTURE_2D: RETURN_IF_ERROR( queue->EnqueueWriteImage(memory_, GetFullTensorRegion(), data_ptr)); break; default: return InternalError("Unsupported tensor storage type"); } return OkStatus(); } Status Tensor::WriteData(CLCommandQueue* queue, const TensorFloat32& src) { RETURN_IF_ERROR(IsValid(src.shape)); return WriteDataBHWC(absl::MakeConstSpan(src.data), queue); } Status Tensor::ReadDataBHWC(absl::Span<float> out, CLCommandQueue* queue) const { void* data_ptr = nullptr; const int aligned_channels = GetAlignedChannels(); const int elements_count = shape_.b * shape_.w * shape_.h * aligned_channels; const size_t data_size = elements_count * SizeOf(descriptor_.data_type); std::vector<float> data_f; std::vector<half> data_h; if (descriptor_.data_type == DataType::FLOAT32) { data_f.resize(elements_count); data_ptr = data_f.data(); } else { data_h.resize(elements_count); data_ptr = data_h.data(); } switch (descriptor_.storage_type) { case TensorStorageType::BUFFER: case TensorStorageType::IMAGE_BUFFER: RETURN_IF_ERROR(queue->EnqueueReadBuffer(memory_, data_size, data_ptr)); break; case TensorStorageType::TEXTURE_ARRAY: case TensorStorageType::TEXTURE_2D: case TensorStorageType::SINGLE_TEXTURE_2D: RETURN_IF_ERROR( queue->EnqueueReadImage(memory_, GetFullTensorRegion(), data_ptr)); break; default: return InternalError("Unsupported tensor storage type"); } if (descriptor_.data_type == DataType::FLOAT32) { DataToBHWC(absl::MakeConstSpan(data_f.data(), data_f.size()), out); } else { DataToBHWC(absl::MakeConstSpan(data_h.data(), data_h.size()), out); } return OkStatus(); } Status Tensor::ReadData(CLCommandQueue* queue, TensorFloat32* dst) const { RETURN_IF_ERROR(IsValid(dst->shape)); return ReadDataBHWC(absl::MakeSpan(dst->data), queue); } bool CanCreateTensorWithShape(const CLContext& context, const CLDevice& device, const BHWC& shape, const TensorDescriptor& descriptor) { const int depth = IntegralDivideRoundUp(shape.c, 4); switch (descriptor.storage_type) { case TensorStorageType::BUFFER: { const int flt4_size = 4 * (descriptor.data_type == DataType::FLOAT32 ? 4 : 2); const int buffer_size = shape.b * shape.w * shape.h * depth * flt4_size; return buffer_size <= device.GetInfo().buffer_max_size; } case TensorStorageType::IMAGE_BUFFER: return shape.b * shape.w * shape.h * depth <= device.GetInfo().image_buffer_max_size; case TensorStorageType::TEXTURE_ARRAY: return shape.b == 1 && shape.w * shape.b <= device.GetInfo().image2d_max_width && shape.h <= device.GetInfo().image2d_max_height && depth <= device.GetInfo().image_array_max_layers; case TensorStorageType::TEXTURE_2D: return shape.b == 1 && shape.w * shape.b <= device.GetInfo().image2d_max_width && shape.h * depth <= device.GetInfo().image2d_max_height; case TensorStorageType::SINGLE_TEXTURE_2D: return shape.b == 1 && shape.c <= 4 && context.IsFloatTexture2DSupported(shape.c, descriptor.data_type) && shape.w * shape.b <= device.GetInfo().image2d_max_width && shape.h <= device.GetInfo().image2d_max_height; default: return false; } } Status CreateTensor(const CLContext& context, const CLDevice& device, const BHWC& shape, const TensorDescriptor& descriptor, Tensor* result) { return CreateTensor(context, device, shape, descriptor, nullptr, result); } Status CreateSharedTensor(const CLContext& context, const CLDevice& device, cl_mem memory, const BHWC& shape, const TensorDescriptor& descriptor, Tensor* result) { return CreateTensor(context, device, shape, descriptor, memory, result); } Status AllocateTensorMemory(const CLContext& context, const CLDevice& device, const BHWC& shape, const TensorDescriptor& descriptor, CLMemory* result) { const int depth = IntegralDivideRoundUp(shape.c, 4); switch (descriptor.storage_type) { case TensorStorageType::BUFFER: case TensorStorageType::IMAGE_BUFFER: { const size_t data_size = shape.b * shape.w * shape.h * depth * 4 * SizeOf(descriptor.data_type); cl_int error_code; cl_mem memory = clCreateBuffer(context.context(), CL_MEM_READ_WRITE, data_size, nullptr, &error_code); if (!memory) { return UnknownError( absl::StrCat("Failed to allocate device memory with clCreateBuffer", CLErrorCodeToString(error_code))); } *result = CLMemory(memory, true); return OkStatus(); } case TensorStorageType::TEXTURE_2D: { cl_image_desc desc; desc.image_type = CL_MEM_OBJECT_IMAGE2D; desc.image_width = shape.w * shape.b; desc.image_height = shape.h * depth; desc.image_depth = 0; desc.image_row_pitch = 0; desc.image_slice_pitch = 0; desc.num_mip_levels = 0; desc.num_samples = 0; desc.buffer = nullptr; cl_image_format format; format.image_channel_order = CL_RGBA; format.image_channel_data_type = ToImageChannelType(descriptor.data_type); cl_int error_code; cl_mem memory = CreateImage2DLegacy(context.context(), CL_MEM_READ_WRITE, &format, &desc, nullptr, &error_code); if (error_code != CL_SUCCESS) { return UnknownError( absl::StrCat("Failed to create Texture2D (clCreateImage)", CLErrorCodeToString(error_code))); } *result = CLMemory(memory, true); return OkStatus(); } case TensorStorageType::TEXTURE_ARRAY: { cl_image_desc desc; desc.image_type = CL_MEM_OBJECT_IMAGE2D_ARRAY; desc.image_width = shape.w * shape.b; desc.image_height = shape.h; desc.image_depth = 0; int layers_count = depth; // Adreno bug. b/131099086 if (layers_count == 1 && !device.SupportsOneLayerTextureArray()) { layers_count = 2; } desc.image_array_size = layers_count; desc.image_row_pitch = 0; desc.image_slice_pitch = 0; desc.num_mip_levels = 0; desc.num_samples = 0; desc.buffer = nullptr; cl_image_format format; format.image_channel_order = CL_RGBA; format.image_channel_data_type = ToImageChannelType(descriptor.data_type); cl_int error_code; cl_mem memory = clCreateImage(context.context(), CL_MEM_READ_WRITE, &format, &desc, nullptr, &error_code); if (error_code != CL_SUCCESS) { return UnknownError( absl::StrCat("Failed to create TextureArray (clCreateImage)", CLErrorCodeToString(error_code))); } *result = CLMemory(memory, true); return OkStatus(); } case TensorStorageType::SINGLE_TEXTURE_2D: { if (depth != 1) { return InvalidArgumentError(absl::StrCat( "SINGLE_TEXTURE_2D support only cnannels in range [1-4], but ", shape.c, "was provided")); } cl_image_desc desc; desc.image_type = CL_MEM_OBJECT_IMAGE2D; desc.image_width = shape.w * shape.b; desc.image_height = shape.h; desc.image_depth = 0; desc.image_row_pitch = 0; desc.image_slice_pitch = 0; desc.num_mip_levels = 0; desc.num_samples = 0; desc.buffer = nullptr; cl_image_format format; if (context.IsFloatTexture2DSupported(shape.c, descriptor.data_type)) { format.image_channel_order = ToChannelOrder(shape.c); format.image_channel_data_type = ToImageChannelType(descriptor.data_type); } else { return InvalidArgumentError(absl::StrCat( "This device doesn't support ", shape.c, "-channel textures.")); } cl_int error_code; cl_mem memory = CreateImage2DLegacy(context.context(), CL_MEM_READ_WRITE, &format, &desc, nullptr, &error_code); if (error_code != CL_SUCCESS) { return UnknownError( absl::StrCat("Failed to create Texture2D (clCreateImage)", CLErrorCodeToString(error_code))); } *result = CLMemory(memory, true); return OkStatus(); } default: return InternalError("Unsupported tensor storage type"); } } template <typename T> void Tensor::DataFromBHWC(absl::Span<const float> src, absl::Span<T> dst) const { const int channels_batch = GetChannelsAlignment(); for (int b = 0; b < shape_.b; ++b) { for (int d = 0; d < Depth(); ++d) { for (int y = 0; y < shape_.h; ++y) { for (int x = 0; x < shape_.w; ++x) { for (int c = 0; c < channels_batch; ++c) { float value; if (d * 4 + c < shape_.c) { const int cpu_index = shape_.LinearIndex({b, y, x, d * 4 + c}); value = src[cpu_index]; } else { value = 0.0f; } const int gpu_index = GetLinearIndex(b, x, y, d, c); dst[gpu_index] = value; } } } } } } template void Tensor::DataFromBHWC<float>(absl::Span<const float> src, absl::Span<float> dst) const; template void Tensor::DataFromBHWC<half>(absl::Span<const float> src, absl::Span<half> dst) const; template <typename T> void Tensor::DataToBHWC(absl::Span<const T> src, absl::Span<float> dst) const { const int channels_batch = GetChannelsAlignment(); for (int b = 0; b < shape_.b; ++b) { for (int d = 0; d < Depth(); ++d) { for (int y = 0; y < shape_.h; ++y) { for (int x = 0; x < shape_.w; ++x) { for (int c = 0; c < channels_batch; ++c) { if (d * 4 + c >= shape_.c) continue; const int cpu_index = shape_.LinearIndex({b, y, x, d * 4 + c}); const int gpu_index = GetLinearIndex(b, x, y, d, c); dst[cpu_index] = src[gpu_index]; } } } } } } template void Tensor::DataToBHWC<float>(absl::Span<const float> src, absl::Span<float> dst) const; template void Tensor::DataToBHWC<half>(absl::Span<const half> src, absl::Span<float> dst) const; } // namespace cl } // namespace gpu } // namespace tflite
[ "gardener@tensorflow.org" ]
gardener@tensorflow.org
4725542ded40eb06e8661e00e69deabb16345964
458c3920666384d9361860bcc41c1230a9c1ccce
/Code/GameSDK/GameDll/Boids/BoidBird.cpp
93b9103601490cbfe0c5ce0ae4eed72f5e04d72d
[]
no_license
Rjayone/TheTravellersNotes
a8e50dd96668da3b38f5398703749371103bcbcd
15b9fe745e09dca157d01eb927db3e54803c7a83
refs/heads/master
2020-05-29T09:13:02.942348
2015-09-25T08:50:41
2015-09-25T08:50:41
35,241,474
1
1
null
null
null
null
UTF-8
C++
false
false
23,270
cpp
//////////////////////////////////////////////////////////////////////////// // // Crytek Engine Source File. // Copyright (C), Crytek Studios, 2001. // ------------------------------------------------------------------------- // File name: BoidBird.cpp // Version: v1.00 // Created: 72010 by Luciano Morpurgo (refactored from flock.cpp). // Compilers: Visual C++ 7.0 // Description: // ------------------------------------------------------------------------- // History: // //////////////////////////////////////////////////////////////////////////// #include "StdAfx.h" #include "BoidBird.h" #include "BirdsFlock.h" #include <ICryAnimation.h> #include "IBreakableManager.h" #define MAX_BIRDS_DISTANCE 300 #undef MAX_REST_TIME #define MAX_REST_TIME 5 #define LANDING_FORCE 38.0f #define TAKEOFF_FORCE 12.0f #define MAX_FLIGHT_TIME 10 #define MIN_FLIGHT_TIME 10 #define BIRDS_PHYSICS_DENSITY 200 #define BIRDS_PHYSICS_INWATER_DENSITY 900 #define TAKEOFF_TIME 3 #define SCARE_DISTANCE 10 float CBoidBird::m_TakeOffAnimLength = 0.f; CBoidBird::CBoidBird( SBoidContext &bc ) : CBoidObject( bc ) { m_actionTime = 0; m_lastThinkTime = 0; m_maxActionTime = 0; m_fNoCenterAttract = 0.f; m_fNoKeepHeight = 0.f; m_fAttractionFactor = 0.f; // m_landing = false; // m_takingoff = true; // m_onGround = false; m_attractedToPt = false; m_spawnFromPt = false; m_floorCollisionInfo.Reset(); SetStatus(Bird::FLYING); m_maxActionTime = bc.flightTime *(1.2f +Boid::Frand()* 0.2f);// /2*(MAX_FLIGHT_TIME-MIN_FLIGHT_TIME); m_desiredHeigh = bc.MinHeight + cry_frand()*(bc.MaxHeight - bc.MinHeight) + bc.flockPos.z; m_birdOriginPos = bc.flockPos; m_birdOriginPosTrg = m_birdOriginPos; m_takeOffStartTime = gEnv->pTimer->GetFrameStartTime(); m_orientation.zero(); m_walkSpeed = bc.walkSpeed > 0 ? bc.walkSpeed * (1 + Boid::Frand()*0.2f) :0; } CBoidBird::~CBoidBird() { m_floorCollisionInfo.Reset(); } void CBoidBird::OnFlockMove( SBoidContext &bc ) { m_birdOriginPos = bc.flockPos; m_birdOriginPosTrg = bc.flockPos; bc.randomFlockCenter = bc.flockPos; } ////////////////////////////////////////////////////////////////////////// void CBoidBird::Physicalize( SBoidContext &bc ) { bc.fBoidThickness = bc.fBoidRadius*0.5f; CBoidObject::Physicalize( bc ); } ////////////////////////////////////////////////////////////////////////// void CBoidBird::UpdatePhysics( float dt,SBoidContext &bc ) { if (m_pPhysics) { pe_status_pos ppos; m_pPhysics->GetStatus(&ppos); m_pos = ppos.pos; Vec3 pos = m_pos; // When hitting water surface, increase physics density. if (!m_inwater && m_pos.z+bc.fBoidRadius <= bc.engine->GetWaterLevel( &pos )) { m_inwater = true; pe_simulation_params sym; sym.density = BIRDS_PHYSICS_INWATER_DENSITY; m_pPhysics->SetParams( &sym ); } } } ////////////////////////////////////////////////////////////////////////// void CBoidBird::Update( float dt,SBoidContext &bc ) { if (m_physicsControlled) { UpdatePhysics(dt,bc); return; } if (m_dead) return; if (m_heading.IsZero()) m_heading = Vec3(1,0,0); m_lastThinkTime += dt; { if (bc.followPlayer && !m_spawnFromPt) { if (m_pos.GetSquaredDistance(bc.playerPos) > MAX_BIRDS_DISTANCE*MAX_BIRDS_DISTANCE) { float z = bc.MinHeight + (Boid::Frand()+1)/2.0f*(bc.MaxHeight - bc.MinHeight); m_pos = bc.playerPos + Vec3(Boid::Frand()*MAX_BIRDS_DISTANCE,Boid::Frand()*MAX_BIRDS_DISTANCE,z ); m_speed = bc.MinSpeed + ((Boid::Frand()+1)/2.0f) / (bc.MaxSpeed - bc.MinSpeed); m_heading = Vec3(Boid::Frand(),Boid::Frand(),0).GetNormalized(); } } if(m_status == Bird::TAKEOFF) { float timePassed = (gEnv->pTimer->GetFrameStartTime() - m_takeOffStartTime).GetSeconds(); if(m_playingTakeOffAnim && timePassed >= m_TakeOffAnimLength) { m_playingTakeOffAnim = false; PlayAnimationId(Bird::ANIM_FLY,true); } else if( timePassed > TAKEOFF_TIME) { SetStatus(Bird::FLYING); } } if(m_status == Bird::LANDING) { Vec3 vDist(m_landingPoint - m_pos); float dist2 = vDist.GetLengthSquared2D(); float dist = sqrt_tpl(dist2 + vDist.z*vDist.z); if(dist > 0.02f && m_pos.z > m_landingPoint.z) { //if(vDist.z < 3 && m_heading) vDist /= dist; float fInterpSpeed = 2+fabs(m_heading.Dot(vDist))*3.f; Interpolate(m_heading,vDist, fInterpSpeed, dt); m_heading.NormalizeSafe(); if(m_heading.z < vDist.z) { Interpolate(m_heading.z,vDist.z,3.0f,dt); m_heading.NormalizeSafe(); } bool wasLandDeceleratingAlready = m_landDecelerating; m_accel.zero(); m_landDecelerating = dist < bc.landDecelerationHeight; if(m_landDecelerating) { float newspeed= m_startLandSpeed* dist/3.f; if(m_speed > newspeed) m_speed = newspeed; if(m_speed < 0.2f) m_speed = 0.2f; if(!wasLandDeceleratingAlready) PlayAnimationId(Bird::ANIM_LANDING_DECELERATING, true); } else m_startLandSpeed = m_speed; } else Landed(bc); CalcMovementBird( dt,bc,true ); UpdatePitch(dt,bc); return; } if (m_status != Bird::ON_GROUND) { Think(dt,bc); // Calc movement with current velocity. CalcMovementBird( dt,bc,true ); } else { if(bc.walkSpeed > 0 && m_onGroundStatus == Bird::OGS_WALKING) ThinkWalk(dt,bc); CalcMovementBird( dt,bc,true ); } m_accel.Set(0,0,0); UpdatePitch(dt,bc); // Check if landing/on ground after think(). if ( m_status == Bird::LANDING ||(m_dying && m_status != Bird::ON_GROUND)) { float LandEpsilon = 0.5f; // Check if landed on water. if (m_pos.z-bc.waterLevel < LandEpsilon+0.1f && !m_dying) { //! From water immidiatly take off. //! Gives fishing effect. TakeOff(bc); } } m_actionTime += dt; if (m_status == Bird::ON_GROUND ) UpdateOnGroundAction(dt, bc); else { if(!bc.noLanding && m_actionTime > m_maxActionTime && !static_cast<CBirdsFlock*>(m_flock)->IsPlayerNearOrigin()) Land(); } } #if 0 SDrawTextInfo ti; ti.flags = eDrawText_FixedSize | eDrawText_800x600; char text[100] = { 0 }; _snprintf(text, sizeof text, "%f - %i", m_speed, m_onGroundStatus); gEnv->pRenderer->DrawTextQueued(m_pos, ti, text); #endif } ////////////////////////////////////////////////////////////////////////// void CBoidBird::UpdateOnGroundAction(float dt, SBoidContext& bc) { if(m_actionTime > m_maxActionTime) { switch(m_onGroundStatus) { case Bird::OGS_IDLE: // walk again if the designer has provided us with a walk speed > 0 if(bc.walkSpeed > 0) { m_onGroundStatus = Bird::OGS_WALKING; PlayAnimationId(Bird::ANIM_WALK,true); m_actionTime = 0; m_maxActionTime = Random(bc.fOnGroundWalkDurationMin, bc.fOnGroundWalkDurationMax); } else { // otherwise just keep idling PlayAnimationId(Bird::ANIM_IDLE,true); m_actionTime = 0; m_maxActionTime = Random(bc.fOnGroundIdleDurationMin, bc.fOnGroundIdleDurationMax); } break; case Bird::OGS_SLOWINGDOWN: // came to a rest? => start idling if(m_speed < 0.001f) { m_onGroundStatus = Bird::OGS_IDLE; PlayAnimationId(Bird::ANIM_IDLE,true); m_actionTime = 0; m_maxActionTime = Random(bc.fOnGroundIdleDurationMin, bc.fOnGroundIdleDurationMax); } else { // still slowing down m_elapsedSlowdownTime += dt; } break; case Bird::OGS_WALKING: // start slowing down until we come to a rest m_onGroundStatus = Bird::OGS_SLOWINGDOWN; m_elapsedSlowdownTime = 0.0f; break; default: CRY_ASSERT_MESSAGE(0, "CBoidBird::UpdateOnGroundAction: omitted EOnGroundStatus"); } } } ////////////////////////////////////////////////////////////////////////// void CBoidBird::ClampSpeed(SBoidContext& bc,float dt) { if(m_status == Bird::ON_GROUND) { if(m_onGroundStatus == Bird::OGS_WALKING) { m_speed = m_walkSpeed; } else if(m_onGroundStatus == Bird::OGS_SLOWINGDOWN) { float elapsedTimeNormalized = clamp_tpl(m_elapsedSlowdownTime / bc.fWalkToIdleDuration, 0.0f, 1.0f); m_speed = LERP(m_walkSpeed, 0.0f, elapsedTimeNormalized); } else if(m_onGroundStatus == Bird::OGS_IDLE) { m_speed = 0.0f; } } else { if (m_speed > bc.MaxSpeed) m_speed = bc.MaxSpeed; if (m_speed < bc.MinSpeed) m_speed = bc.MinSpeed; } } ////////////////////////////////////////////////////////////////////////// void CBoidBird::CalcMovementBird(float dt,SBoidContext& bc,bool banking) { // correct heading, can't be too vertical // do only some rough linear computation for optimization if(m_status == Bird::ON_GROUND) { if(bc.walkSpeed <= 0) { m_accel.zero(); m_speed = 0; m_currentAccel.zero(); Interpolate(m_pos,m_landingPoint, 2.0f,dt); return; } // Avoid obstacles & terrain. IPhysicalWorld *physWorld = bc.physics; Vec3 vDir0 = m_heading*bc.fBoidRadius*0.5f; Vec3 vPos = m_pos; vPos.z += bc.fBoidRadius*0.5f; Vec3 vDir(0,0,bc.fBoidRadius*1.5f); m_floorCollisionInfo.QueueRaycast(m_entity,vPos,vDir); } // check current raycast result if(m_floorCollisionInfo.IsColliding()) { m_heading.z = 0; } static const float maxZ = sinf(gf_PI/4); static const float coeffXY = cosf(gf_PI/4); if(m_heading.z > maxZ) { float l = m_heading.GetLength2D(); m_heading.x *= coeffXY/l; m_heading.y *= coeffXY/l; m_heading.z = maxZ; m_heading.NormalizeFast(); } CBoidObject::CalcMovement(dt, bc, banking); if(m_floorCollisionInfo.IsColliding()) { float minZ = m_floorCollisionInfo.Point().z; m_pos.z = minZ +bc.groundOffset ; } UpdateAnimationSpeed(bc); } ////////////////////////////////////////////////////////////////////////// void CBoidBird::SetStatus(Bird::EStatus status) { // reset the deceleration flag when transitioning into the LANDING state // (that way we can realize when to start the ANIM_LANDING_DECELERATING animation) if(m_status != Bird::LANDING && status == Bird::LANDING) { m_landDecelerating = 0; } m_status = status; m_collisionInfo.SetCheckDistance(status == Bird::LANDING ? 5.f : 10.f); } ////////////////////////////////////////////////////////////////////////// void CBoidBird::Land() { if(m_status != Bird::ON_GROUND && m_status!= Bird::LANDING) { SLandPoint lpt = static_cast<CBirdsFlock*>(m_flock)->GetLandingPoint(m_pos); m_landingPoint = lpt; if(!lpt.IsZero()) { m_startLandSpeed = m_speed; SetStatus(Bird::LANDING); } } } ////////////////////////////////////////////////////////////////////////// void CBoidBird::Landed(SBoidContext& bc) { SetStatus(Bird::ON_GROUND); static_cast<CBirdsFlock*>(m_flock)->NotifyBirdLanded(); m_actionTime = 1000; m_accel.zero(); m_heading.z = 0; m_heading.NormalizeSafe(Vec3Constants<float>::fVec3_OneY); m_speed = 0; m_onGroundStatus = Bird::OGS_IDLE; PlayAnimationId( Bird::ANIM_IDLE,true ); } ////////////////////////////////////////////////////////////////////////// void CBoidBird::TakeOff( SBoidContext &bc ) { // Take-off. if(m_status != Bird::LANDING && m_status != Bird::ON_GROUND) return; SetStatus(Bird::TAKEOFF); static_cast<CBirdsFlock*>(m_flock)->LeaveLandingPoint(m_landingPoint); m_landingPoint.zero(); m_actionTime = 0; // m_maxActionTime = MIN_FLIGHT_TIME + (Boid::Frand()+1)/2*(MAX_FLIGHT_TIME-MIN_FLIGHT_TIME); m_maxActionTime = bc.flightTime *(1.2f +Boid::Frand()* 0.2f);// /2*(MAX_FLIGHT_TIME-MIN_FLIGHT_TIME); m_desiredHeigh = bc.MinHeight + (Boid::Frand()+1)/2*(bc.MaxHeight - bc.MinHeight)+bc.flockPos.z; m_takeOffStartTime = gEnv->pTimer->GetFrameStartTime(); if (m_object) { const char* takeoffName = bc.GetAnimationName(Bird::ANIM_TAKEOFF); if(m_TakeOffAnimLength ==0 && takeoffName != NULL && strlen(takeoffName) ) { int id = m_object->GetIAnimationSet()->GetAnimIDByName(takeoffName); m_TakeOffAnimLength = m_object->GetIAnimationSet()->GetDuration_sec(id); if(m_TakeOffAnimLength ==0) m_TakeOffAnimLength = 0.5f; } m_playingTakeOffAnim = PlayAnimation( takeoffName ,false ); if(!m_playingTakeOffAnim) PlayAnimationId(Bird::ANIM_FLY,true); } } ////////////////////////////////////////////////////////////////////////// void CBoidBird::UpdatePitch(float dt,SBoidContext& bc) { Vec3 orientationGoal; if(m_status == Bird::LANDING && m_landDecelerating) { float zdiff = m_pos.z - m_landingPoint.z; if(zdiff <0) zdiff = 0; float rotAngle = zdiff >0.5f? gf_PI/4 : gf_PI/4 * zdiff; Vec3 horHeading(m_heading); if(horHeading.x != 0 || horHeading.y != 0) { horHeading.z = 0; float l = horHeading.GetLength2D(); horHeading *= cosf(rotAngle) /l; orientationGoal.Set(horHeading.x,horHeading.y, sinf(rotAngle)); } else orientationGoal = m_heading; // Matrix33 XRot = Matrix33::CreateRotationX(rotAngle); //orientationGoal = XRot.TransformVector(horHeading); } else if (m_status == Bird::ON_GROUND && m_heading.z!=0) { orientationGoal = m_heading; orientationGoal.z=0; orientationGoal.NormalizeSafe(); } else orientationGoal = m_heading; if(m_orientation.IsZero()) m_orientation = orientationGoal; else Interpolate(m_orientation, orientationGoal,2.0f,dt); } ////////////////////////////////////////////////////////////////////////// void CBoidBird::Think( float dt,SBoidContext &bc ) { m_accel.zero(); float factorAlignment = bc.factorAlignment; float factorCohesion = bc.factorCohesion; float factorSeparation = bc.factorSeparation; float factorAvoidLand = bc.factorAvoidLand; float factorAttractToOrigin = bc.factorAttractToOrigin; float factorKeepHeight = bc.factorKeepHeight; if(m_status == Bird::LANDING) { //factorAlignment /= 3.f; factorCohesion *=10.f; factorSeparation = 0; factorAvoidLand = 0; factorAttractToOrigin *=10; factorKeepHeight = 0; } if (m_spawnFromPt) { // Set the acceleration of the boid float fHalfDesired = m_desiredHeigh * .5f; if (m_pos.z < fHalfDesired) { m_accel.z = 3.f; } else { m_accel.z = .5f; // Set z-acceleration float fRange = 1.f - (m_pos.z-fHalfDesired)/fHalfDesired; // 1..0 range if (m_heading.z > 0.2f) m_accel.z = .5f + fRange; // 2..1 m_accel.x += m_heading.x * .1f; m_accel.y += m_heading.y * .1f; } if (m_pos.z > m_desiredHeigh) SetSpawnFromPt(false); // Limits birds to above water and land. if (m_pos.z < bc.terrainZ-0.2f) { m_pos.z = bc.terrainZ-0.2f; } if (m_pos.z < bc.waterLevel-0.2f) { m_pos.z = bc.waterLevel-0.2f; } return; } float height = m_pos.z - bc.flockPos.z; // Free will. // Continue accelerating in same dir until target speed reached. // Try to maintain average speed of (maxspeed+minspeed)/2 float targetSpeed = (bc.MaxSpeed + bc.MinSpeed)/2; m_accel -= m_heading*(m_speed-targetSpeed)*0.5f; // Desired height. float dh = m_desiredHeigh - m_pos.z; float dhexp = -(dh*dh)/(3*3); dhexp = clamp_tpl(dhexp,-70.0f,70.0f); // Max values for expf // Gaussian weight. float fKeepHeight = factorKeepHeight - m_fNoKeepHeight; m_fNoKeepHeight = max(0.f, m_fNoKeepHeight - .01f*dt); m_accel.z = exp_tpl(dhexp) * fKeepHeight; if (factorAlignment != 0) { //CalcCohesion(); Vec3 alignmentAccel; Vec3 cohesionAccel; Vec3 separationAccel; CalcFlockBehavior(bc,alignmentAccel,cohesionAccel,separationAccel); //! Adjust for allignment, //m_accel += alignmentAccel.Normalized()*ALIGNMENT_FACTOR; m_accel += alignmentAccel*factorAlignment; m_accel += cohesionAccel*factorCohesion; m_accel += separationAccel*factorSeparation; } // Avoid land. if (height < bc.MinHeight && m_status != Bird::LANDING) { float v = (1.0f - height/bc.MinHeight); m_accel += Vec3(0,0,v*v)*bc.factorAvoidLand; } else if (height > bc.MaxHeight) { // Avoid max height. float v = (height - bc.MaxHeight)*0.1f; m_accel += Vec3(0,0,-v); } else if(m_status != Bird::TAKEOFF) { // Always try to accelerate in direction opposite to current in Z axis. m_accel.z = -(m_heading.z*m_heading.z*m_heading.z * 100.0f); } // Attract to origin point. float fAttractToOrigin = factorAttractToOrigin - m_fNoCenterAttract; m_fNoCenterAttract = max(0.f, m_fNoCenterAttract - .01f*dt); if (bc.followPlayer) { m_accel += (bc.playerPos - m_pos) * fAttractToOrigin; } else { if ((rand()&31) == 1) { m_birdOriginPos = Vec3( bc.flockPos.x+Boid::Frand()*bc.fSpawnRadius,bc.flockPos.y+Boid::Frand()*bc.fSpawnRadius,bc.flockPos.z+Boid::Frand()*bc.fSpawnRadius ); if (m_birdOriginPos.z - bc.terrainZ < bc.MinHeight) { m_birdOriginPos.z = bc.terrainZ + bc.MinHeight; } } m_accel += (m_birdOriginPos - m_pos) * fAttractToOrigin; } // Attract to bc.attractionPoint if (m_pos.GetSquaredDistance2D(bc.attractionPoint) < 5.f) { SetAttracted(false); CBirdsFlock *pFlock = (CBirdsFlock *)m_flock; if (!pFlock->GetAttractOutput()) { // Activate the AttractTo flownode output pFlock->SetAttractOutput(true); // Activate the flow node output IEntity *pFlockEntity = pFlock->GetEntity(); if (pFlockEntity) { IScriptTable *scriptObject = pFlockEntity->GetScriptTable(); if (scriptObject) Script::CallMethod(scriptObject, "OnAttractPointReached"); } } } if (m_attractedToPt) { if(m_status == Bird::ON_GROUND) TakeOff(bc); else SetStatus(Bird::FLYING); m_accel += (bc.attractionPoint - m_pos) * m_fAttractionFactor; if (m_fAttractionFactor < 300.f * factorAttractToOrigin) m_fAttractionFactor += 3.f*dt; } // Avoid collision with Terrain and Static objects. float fCollisionAvoidanceWeight = 1.0f; m_alignHorizontally = 0; if(m_status == Bird::TAKEOFF) { if(m_accel.z < 0) m_accel.z = -m_accel.z; m_accel.z *= bc.factorTakeOff; } if (bc.avoidObstacles) { // Avoid obstacles & terrain. float fCollDistance = m_collisionInfo.CheckDistance() ; if(m_collisionInfo.IsColliding()) { float w = (1.0f - m_collisionInfo.Distance()/fCollDistance); m_accel += m_collisionInfo.Normal() * w*w * bc.factorAvoidLand * fCollisionAvoidanceWeight; } } // Limits birds to above water and land. if (m_pos.z < bc.terrainZ-0.2f) { m_pos.z = bc.terrainZ-0.2f; } if (m_pos.z < bc.waterLevel-0.2f) { m_pos.z = bc.waterLevel-0.2f; } } ////////////////////////////////////////////////////////////////////////// void CBoidBird::ThinkWalk( float dt,SBoidContext &bc ) { m_accel = -m_heading*(m_speed-m_walkSpeed)*0.4f; if (bc.factorAlignment != 0) { Vec3 alignmentAccel; Vec3 cohesionAccel; Vec3 separationAccel; CalcFlockBehavior(bc,alignmentAccel,cohesionAccel,separationAccel); m_accel += alignmentAccel*bc.factorAlignmentGround; m_accel += cohesionAccel*bc.factorCohesionGround; m_accel += separationAccel*bc.factorSeparationGround; } // Attract to origin point. if (bc.followPlayer) { m_accel += (bc.playerPos - m_pos) * bc.factorAttractToOriginGround; } else { if ((cry_rand()&31) == 1) { m_birdOriginPos = Vec3( bc.flockPos.x+Boid::Frand()*bc.fSpawnRadius,bc.flockPos.y+Boid::Frand()*bc.fSpawnRadius,bc.flockPos.z+Boid::Frand()*bc.fSpawnRadius ); if (m_birdOriginPos.z - bc.terrainZ < bc.MinHeight) { m_birdOriginPos.z = bc.terrainZ + bc.MinHeight; } } m_accel += (m_birdOriginPos - m_pos) * bc.factorAttractToOriginGround; } // Avoid collision with Terrain and Static objects. float fCollisionAvoidanceWeight = 10.0f; // Do walk sounds. // if ((cry_rand()&0xFF) == 0) // PlaySound(CHICKEN_SOUND_CLUCK); m_accel.z = 0; ////////////////////////////////////////////////////////////////////////// // Avoid water ocean.. if (m_pos.z < bc.waterLevel && bc.bAvoidWater) { Vec3 nextpos = m_pos + m_heading; float farz = bc.engine->GetTerrainElevation(nextpos.x,nextpos.y) + bc.fBoidRadius*0.5f; if (farz > m_pos.z) m_accel += m_heading*bc.factorAvoidLand; else m_accel += -m_heading*bc.factorAvoidLand; m_accel.z = 0; } ////////////////////////////////////////////////////////////////////////// } ////////////////////////////////////////////////////////////////////////// void CBoidBird::UpdateAnimationSpeed(SBoidContext &bc) { if(!m_object) return; float animSpeed; switch(m_status) { case Bird::TAKEOFF: animSpeed = m_playingTakeOffAnim ? 1.f : max(2.f, bc.MaxAnimationSpeed); break; case Bird::LANDING: { const float maxLandSpeed = 2.f; float dist2 = Distance::Point_PointSq(m_pos,m_landingPoint); if(dist2 < 1.f) animSpeed = maxLandSpeed; else if (dist2 < 9.f) animSpeed = 1.f+ ( 9.f - dist2 )/(9.f-1.f) *(maxLandSpeed - 1.f); else animSpeed = 1.f; } break; case Bird::ON_GROUND: { if(bc.walkSpeed > 0 && m_onGroundStatus != Bird::OGS_IDLE) animSpeed = m_speed/bc.walkSpeed; else animSpeed = 1.0f; } break; default: { if(bc.MaxSpeed == bc.MinSpeed) animSpeed = bc.MaxAnimationSpeed; else animSpeed = ((m_speed - bc.MinSpeed)/ (bc.MaxSpeed - bc.MinSpeed)*0.6f +0.4f) * bc.MaxAnimationSpeed; } break; } m_object->SetPlaybackScale( animSpeed ); } ////////////////////////////////////////////////////////////////////////// void CBoidBird::Kill( const Vec3 &hitPoint,const Vec3 &force ) { if (m_dead) return; m_status = Bird::DEAD; m_flock->m_bAnyKilled = true; IEntity *pEntity = gEnv->pEntitySystem->GetEntity(m_entity); if (pEntity) { SpawnParams params; params.eAttachForm = GeomForm_Surface; params.eAttachType = GeomType_Render; gEnv->pEntitySystem->GetBreakableManager()->AttachSurfaceEffect( pEntity,0,SURFACE_BREAKAGE_TYPE("destroy"),params,ePEF_Independent ); } if (CFlock::m_e_flocks_hunt == 0) { m_physicsControlled = false; m_dead = true; m_nodraw = true; if (pEntity) { pEntity->Hide(true); } if (!m_dead && m_pPhysics) { if (pEntity) { pEntity->UnphysicalizeSlot(0); } m_pPhysics = 0; } // No physics at all. return; } SBoidContext bc; m_flock->GetBoidSettings(bc); Vec3 impulse = force; if (impulse.GetLength() > 100.0f) { impulse.Normalize(); impulse *= 100.0f; } //if (!m_physicsControlled) { if (!m_object) return; AABB aabb = m_object->GetAABB( ); Vec3 size = ((aabb.max - aabb.min)/2.2f)*m_scale; CreateArticulatedCharacter( bc, size, bc.fBoidMass ); m_physicsControlled = true; // Small impulse. // Apply force on this body. pe_action_impulse theAction; Vec3 someforce; someforce = impulse; //someforce.Normalize(); theAction.impulse = someforce; theAction.ipart = 0; theAction.iApplyTime = 0; if (m_pPhysics) m_pPhysics->Action(&theAction); } if (m_object && !m_dying && !m_dead) { m_object->GetISkeletonAnim()->StopAnimationsAllLayers(); } m_dead = true; } ///////////////////////////////////////////////////////////// bool CBoidBird::ShouldUpdateCollisionInfo(const CTimeValue& t) { if(m_status == Bird::LANDING && m_landDecelerating ) return false; return CBoidObject::ShouldUpdateCollisionInfo(t); } ///////////////////////////////////////////////////////////// /* void CBoidBird::OnGrab( ) { //CBoidObject::OnGrab(); m_status = Bird::PICKED_UP; PlayAnimationId(Bird::ANIM_GRABBED,true); } ///////////////////////////////////////////////////////////// void CBoidBird::OnThrow() { Kill(ZERO,ZERO); }*/
[ "misterdecoy@mail.ru" ]
misterdecoy@mail.ru
fdc20ce6f3c1563f688564671446f3a3d56ed3b4
d2abe514518a3093bfa4e4f6693e02a31ca9aa46
/Physics for Students - VS12 LEAN/Game/SDKs/GeomUtils/src/GuDistanceSegmentTriangleSIMD.h
7e0af1fae2d41c26139f0c19fc437bb4fcc4c319
[]
no_license
stef52/Game-Dev-Class
a9a745019412dcb040cc9300c8c32a84e186e107
cc963f13adc1f6016c8a07036ef7709ce4445962
refs/heads/master
2020-05-27T21:57:51.113035
2015-04-08T19:17:25
2015-04-08T19:17:25
32,340,762
0
0
null
null
null
null
UTF-8
C++
false
false
2,319
h
// This code contains NVIDIA Confidential Information and is disclosed to you // under a form of NVIDIA software license agreement provided separately to you. // // Notice // NVIDIA Corporation and its licensors retain all intellectual property and // proprietary rights in and to this software and related documentation and // any modifications thereto. Any use, reproduction, disclosure, or // distribution of this software and related documentation without an express // license agreement from NVIDIA Corporation is strictly prohibited. // // ALL NVIDIA DESIGN SPECIFICATIONS, CODE ARE PROVIDED "AS IS.". NVIDIA MAKES // NO WARRANTIES, EXPRESSED, IMPLIED, STATUTORY, OR OTHERWISE WITH RESPECT TO // THE MATERIALS, AND EXPRESSLY DISCLAIMS ALL IMPLIED WARRANTIES OF NONINFRINGEMENT, // MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE. // // Information and code furnished is believed to be accurate and reliable. // However, NVIDIA Corporation assumes no responsibility for the consequences of use of such // information or for any infringement of patents or other rights of third parties that may // result from its use. No license is granted by implication or otherwise under any patent // or patent rights of NVIDIA Corporation. Details are subject to change without notice. // This code supersedes and replaces all information previously supplied. // NVIDIA Corporation products are not authorized for use as critical // components in life support devices or systems without express written approval of // NVIDIA Corporation. // // Copyright (c) 2008-2013 NVIDIA Corporation. All rights reserved. // Copyright (c) 2004-2008 AGEIA Technologies, Inc. All rights reserved. // Copyright (c) 2001-2004 NovodeX AG. All rights reserved. #ifndef GU_DISTANCE_SEGMENT_TRIANGLE_SIMD_H #define GU_DISTANCE_SEGMENT_TRIANGLE_SIMD_H #include "PxPhysXCommonConfig.h" #include "PsVecMath.h" namespace physx { namespace Gu { /* closest0 is the closest point on segment pq closest1 is the closest point on triangle abc */ PX_PHYSX_COMMON_API Ps::aos::FloatV distanceSegmentTriangleSquared( const Ps::aos::Vec3VArg p, const Ps::aos::Vec3VArg q, const Ps::aos::Vec3VArg a, const Ps::aos::Vec3VArg b, const Ps::aos::Vec3VArg c, Ps::aos::Vec3V& closest0, Ps::aos::Vec3V& closest1); } // namespace Gu } #endif
[ "stephenbakalian@gmail.com" ]
stephenbakalian@gmail.com
a1dfa850ab1527d46d64f757d2b9c8833d52977f
801f7ed77fb05b1a19df738ad7903c3e3b302692
/refactoringOptimisation/differentiatedCAD/occt-min-topo-src/src/TopOpeBRepBuild/TopOpeBRepBuild_Loop.hxx
47f096d9dc90bb82c3a36a359934c3234b0e083a
[]
no_license
salvAuri/optimisationRefactoring
9507bdb837cabe10099d9481bb10a7e65331aa9d
e39e19da548cb5b9c0885753fe2e3a306632d2ba
refs/heads/master
2021-01-20T03:47:54.825311
2017-04-27T11:31:24
2017-04-27T11:31:24
89,588,404
0
1
null
null
null
null
UTF-8
C++
false
false
2,035
hxx
// Created on: 1995-12-19 // Created by: Jean Yves LEBEY // Copyright (c) 1995-1999 Matra Datavision // Copyright (c) 1999-2014 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #ifndef _TopOpeBRepBuild_Loop_HeaderFile #define _TopOpeBRepBuild_Loop_HeaderFile #include <Standard.hxx> #include <Standard_Type.hxx> #include <Standard_Boolean.hxx> #include <TopoDS_Shape.hxx> #include <TopOpeBRepBuild_BlockIterator.hxx> #include <MMgt_TShared.hxx> class TopoDS_Shape; class TopOpeBRepBuild_BlockIterator; class TopOpeBRepBuild_Loop; DEFINE_STANDARD_HANDLE(TopOpeBRepBuild_Loop, MMgt_TShared) //! a Loop is an existing shape (Shell,Wire) or a set //! of shapes (Faces,Edges) which are connex. //! a set of connex shape is represented by a BlockIterator class TopOpeBRepBuild_Loop : public MMgt_TShared { public: Standard_EXPORT TopOpeBRepBuild_Loop(const TopoDS_Shape& S); Standard_EXPORT TopOpeBRepBuild_Loop(const TopOpeBRepBuild_BlockIterator& BI); Standard_EXPORT virtual Standard_Boolean IsShape() const; Standard_EXPORT virtual const TopoDS_Shape& Shape() const; Standard_EXPORT const TopOpeBRepBuild_BlockIterator& BlockIterator() const; Standard_EXPORT virtual void Dump() const; DEFINE_STANDARD_RTTI(TopOpeBRepBuild_Loop,MMgt_TShared) protected: Standard_Boolean myIsShape; TopoDS_Shape myShape; TopOpeBRepBuild_BlockIterator myBlockIterator; private: }; #endif // _TopOpeBRepBuild_Loop_HeaderFile
[ "salvatore.auriemma@opencascade.com" ]
salvatore.auriemma@opencascade.com
2ee72de8ff7feefe9d060b5b6e8e6216ba6ac305
f481aeb897c81095bf5bc544f9368aa78457694b
/5622.cpp
98547a3526afb5566564be5c7a7efac76d12547e
[]
no_license
channyHuang/leetcodeOJ
78b10f31f9a6c6571124208efe85201a3690f2da
b41e9c3c076074b6ab9349455b0cf40c270df41f
refs/heads/master
2023-01-28T15:31:29.346320
2023-01-18T03:43:10
2023-01-18T03:43:10
221,703,848
0
0
null
null
null
null
UTF-8
C++
false
false
622
cpp
class Solution { public: double averageWaitingTime(vector<vector<int>>& customers) { int len = customers.size(); long long lasttime = 0; long long waittime = 0; for (int i = 0; i < len; i++) { if (lasttime <= customers[i][0]) { waittime += customers[i][1]; lasttime = customers[i][0] + customers[i][1]; } else { waittime += (lasttime - customers[i][0]); waittime += customers[i][1]; lasttime += customers[i][1]; } } return waittime * 1.0 / len; } };
[ "349117102@qq.com" ]
349117102@qq.com
8cd6800628538ef33ab147520ef399b9fbcf4c59
208c36225d43ede1d8dfcf39d93832e38c8a9abe
/19-removeNthNodeFromEndOfList/19-removeNthNodeFromEndOfList/main.cpp
a58987f232281bf33ebc47ee49da5e9e662d174f
[]
no_license
YaminLi/Leetcode
749a1b4481f26a7f08f7b982983e0fd1047a6174
42429c0dfb83ccb1383126e45bfc5063cfa23c80
refs/heads/master
2020-12-24T06:03:12.224570
2017-02-16T15:37:17
2017-02-16T15:37:17
73,235,513
0
0
null
null
null
null
UTF-8
C++
false
false
1,638
cpp
// // main.cpp // 19-removeNthNodeFromEndOfList // // Created by Michael on 10/6/16. // Copyright © 2016 Michael. All rights reserved. // #include <iostream> using namespace std; struct ListNode { int val; ListNode *next; ListNode(int x): val(x), next(NULL){} }; class Solution { public: ListNode* removeNthFromEnd(ListNode* head, int n){ ListNode* dummy=new ListNode(0); dummy->next = head; ListNode* p =head; int len=0; while (p) { p=p->next; len++; } p = dummy; int i=0; while (i<len-n) { p=p->next; i++; } p->next = p->next->next; return dummy->next; } ListNode* removeNthFromEnd2(ListNode* head, int n){ ListNode* dummy=new ListNode(0); dummy->next = head; ListNode* slow = dummy; ListNode* fast = dummy; int i=0; while (i<=n) { fast = fast->next; i++; } while (fast) { fast = fast->next; slow = slow->next; } slow->next = slow->next->next; return dummy->next; } }; int main(int argc, const char * argv[]) { // insert code here... ListNode *head=new ListNode(1); ListNode *p = head; for (int i=2; i<=5; i++) { ListNode *q = new ListNode(i); p->next = q; p = q; } p->next = NULL; Solution st; p = st.removeNthFromEnd2(head, 2); while (p) { cout << p->val<< endl; p=p->next; } // std::cout << "Hello, World!\n"; return 0; }
[ "yaminli2016@u.northwestern.edu" ]
yaminli2016@u.northwestern.edu
1c8f93d5276ec7d2ce34038d0afc6abacd1e8557
8bd80baf1e6faab75f258992f08e0c75b328f3d4
/RenderEngine/include/internal/shader.h
502447ccc4dcc2ef3bf659f74342f1da9d23bd68
[]
no_license
danjr26/game-engine
20fa362bcdfdc84c3da1a1ad12cca3ef53166676
f884a88ce7238b3713e9336ab7c325f53e22fe64
refs/heads/master
2021-04-30T04:53:55.646691
2020-02-02T20:26:13
2020-02-02T20:26:13
121,543,636
0
0
null
null
null
null
UTF-8
C++
false
false
425
h
#ifndef SHADER_H #define SHADER_H #include "enum_wrappers.h" #include <GL\glew.h> class Shader { friend class ShaderProgram; private: GLuint mId; ShaderType mType; public: Shader(); ~Shader(); void init(ShaderType i_type, const std::string* i_texts, uint i_nTexts); void initFromFile(ShaderType i_type, const std::string& i_filename); void destroy(); bool isValid() const; ShaderType getType() const; }; #endif
[ "daniel.riehm05@gmail.com" ]
daniel.riehm05@gmail.com
f1490ed4258a8f3eddf839df70f346b881303ede
4a1ac331426d0cc29f0a02a55c3118c35b128624
/tests/cpp-empty-test/Classes/Tetris.h
62a62268e41a14851acb451b2503779bbe07117c
[]
no_license
GordenGod/cocos2dx-3.5
78b7e39b5b01722356d8d0ba270486548c567cf2
398105df0191a4d2e4986036995f86a51408d3cb
refs/heads/master
2021-05-28T18:08:30.777088
2015-05-15T07:12:48
2015-05-15T07:12:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,046
h
#ifndef __TETRIS_H__ #define __TETRIS_H__ #include "TetrisCommon.h" //extern Block g_marks[C_ROW][C_COLUMN]; class Tetris { public: Tetris(); ~Tetris(); static Tetris* Create(TetrisKind kind); void Convert(); void Transform(); void ConvertOnEnter(); void ConvertOnExit(); void Down(); void Left(); void Right(); bool DownOk(); bool LeftOk(); bool RightOk(); bool Ok(); bool EdgeOk(); bool IsBottom(); bool CleanUp(); void setKind(TetrisKind kind){ m_kind = kind; } TetrisKind getKind(){ return m_kind; } void setSpeed(const int& speed){ m_speed = speed; } int getSpeed(){ return m_speed; } void set(Block*[10]){}; void setBlocksPointer(BlocksPointer tmp); BlocksPointer getBlocksPointer(){ return m_marks; }; bool isBlock(int row, int column); void setMarksBlock(const int& row, const int& column); private: Block m_block; TetrisKind m_kind; int m_speed; Block m_marks[C_ROW][C_COLUMN]; private: //no copy Tetris(const Tetris&); Tetris& operator=(const Tetris&); private: }; #endif // !__TETRIS_H__
[ "hyq1017@163.com" ]
hyq1017@163.com
63b955baae4e08015746a393db3b5335f8638087
8dc84558f0058d90dfc4955e905dab1b22d12c08
/chrome/browser/notifications/notification_platform_bridge_win_metrics.h
3db596ac81b3b317a6fef04ab64cb14d431382dd
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
meniossin/src
42a95cc6c4a9c71d43d62bc4311224ca1fd61e03
44f73f7e76119e5ab415d4593ac66485e65d700a
refs/heads/master
2022-12-16T20:17:03.747113
2020-09-03T10:43:12
2020-09-03T10:43:12
263,710,168
1
0
BSD-3-Clause
2020-05-13T18:20:09
2020-05-13T18:20:08
null
UTF-8
C++
false
false
5,864
h
// Copyright 2018 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 CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_PLATFORM_BRIDGE_WIN_METRICS_H_ #define CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_PLATFORM_BRIDGE_WIN_METRICS_H_ namespace notifications_uma { // These values are persisted to logs. Entries should not be renumbered and // numeric values should never be reused. enum class DisplayStatus { SUCCESS = 0, RO_ACTIVATE_FAILED = 1, CONVERSION_FAILED_INSPECTABLE_TO_XML_IO = 2, LOAD_XML_FAILED = 3, CONVERSION_FAILED_XML_IO_TO_XML = 4, CREATE_FACTORY_FAILED = 5, CREATE_TOAST_NOTIFICATION_FAILED = 6, CREATE_TOAST_NOTIFICATION2_FAILED = 7, SETTING_GROUP_FAILED = 8, SETTING_TAG_FAILED = 9, GET_GROUP_FAILED = 10, GET_TAG_FAILED = 11, SUPPRESS_POPUP_FAILED = 12, ADD_TOAST_DISMISS_HANDLER_FAILED = 13, ADD_TOAST_ERROR_HANDLER_FAILED = 14, SHOWING_TOAST_FAILED = 15, CREATE_TOAST_NOTIFICATION_MANAGER_FAILED = 16, CREATE_TOAST_NOTIFIER_WITH_ID_FAILED = 17, DEPRECATED_DISABLED_FOR_APPLICATION = 18, DEPRECATED_DISABLED_FOR_USER = 19, DEPRECATED_DISABLED_BY_GROUP_POLICY = 20, DEPRECATED_DISABLED_BY_MANIFEST = 21, COUNT // Must be the final value. }; // These values are persisted to logs. Entries should not be renumbered and // numeric values should never be reused. enum class CloseStatus { SUCCESS = 0, GET_TOAST_HISTORY_FAILED = 1, REMOVING_TOAST_FAILED = 2, COUNT // Must be the final value. }; // These values are persisted to logs. Entries should not be renumbered and // numeric values should never be reused. enum class HistoryStatus { SUCCESS = 0, CREATE_TOAST_NOTIFICATION_MANAGER_FAILED = 1, QUERY_TOAST_MANAGER_STATISTICS2_FAILED = 2, GET_TOAST_HISTORY_FAILED = 3, COUNT // Must be the final value. }; // These values are persisted to logs. Entries should not be renumbered and // numeric values should never be reused. enum class GetDisplayedStatus { SUCCESS = 0, SUCCESS_WITH_GET_AT_FAILURE = 1, GET_TOAST_HISTORY_FAILED = 2, QUERY_TOAST_NOTIFICATION_HISTORY2_FAILED = 3, GET_HISTORY_WITH_ID_FAILED = 4, GET_SIZE_FAILED = 5, COUNT // Must be the final value. }; // These values are persisted to logs. Entries should not be renumbered and // numeric values should never be reused. enum class GetDisplayedLaunchIdStatus { SUCCESS = 0, DECODE_LAUNCH_ID_FAILED = 1, COUNT // Must be the final value. }; // These values are persisted to logs. Entries should not be renumbered and // numeric values should never be reused. enum class GetNotificationLaunchIdStatus { SUCCESS = 0, NOTIFICATION_GET_CONTENT_FAILED = 1, GET_ELEMENTS_BY_TAG_FAILED = 2, MISSING_TOAST_ELEMENT_IN_DOC = 3, ITEM_AT_FAILED = 4, GET_ATTRIBUTES_FAILED = 5, GET_NAMED_ITEM_FAILED = 6, GET_FIRST_CHILD_FAILED = 7, GET_NODE_VALUE_FAILED = 8, CONVERSION_TO_PROP_VALUE_FAILED = 9, GET_STRING_FAILED = 10, COUNT // Must be the final value. }; // These values are persisted to logs. Entries should not be renumbered and // numeric values should never be reused. enum class GetSettingPolicy { ENABLED = 0, DISABLED_FOR_APPLICATION = 1, DISABLED_FOR_USER = 2, DISABLED_BY_GROUP_POLICY = 3, DISABLED_BY_MANIFEST = 4, COUNT // Must be the final value. }; // These values are persisted to logs. Entries should not be renumbered and // numeric values should never be reused. enum class GetSettingStatus { SUCCESS = 0, UNKNOWN_FAILURE = 1, COUNT // Must be the final value. }; // These values are persisted to logs. Entries should not be renumbered and // numeric values should never be reused. enum class ActivationStatus { SUCCESS = 0, DEPRECATED_GET_PROFILE_ID_INVALID_LAUNCH_ID = 1, DEPRECATED_ACTIVATION_INVALID_LAUNCH_ID = 2, INVALID_LAUNCH_ID = 3, COUNT // Must be the final value. }; // These values are persisted to logs. Entries should not be renumbered and // numeric values should never be reused. enum class HandleEventStatus { SUCCESS = 0, HANDLE_EVENT_LAUNCH_ID_INVALID = 1, COUNT // Must be the final value. }; // These values are persisted to logs. Entries should not be renumbered and // numeric values should never be reused. enum class SetReadyCallbackStatus { SUCCESS = 0, COM_NOT_INITIALIZED = 1, COM_SERVER_MISCONFIGURATION = 2, SHORTCUT_MISCONFIGURATION = 3, COUNT // Must be the final value. }; // These values are persisted to logs. Entries should not be renumbered and // numeric values should never be reused. enum class OnDismissedStatus { SUCCESS = 0, GET_DISMISSAL_REASON_FAILED = 1, COUNT // Must be the final value. }; // These values are persisted to logs. Entries should not be renumbered and // numeric values should never be reused. enum class OnFailedStatus { SUCCESS = 0, GET_ERROR_CODE_FAILED = 1, COUNT // Must be the final value. }; // Methods to log histograms (to detect error rates in Native Notifications on // Windows). void LogDisplayHistogram(DisplayStatus status); void LogCloseHistogram(CloseStatus status); void LogHistoryHistogram(HistoryStatus status); void LogGetDisplayedStatus(GetDisplayedStatus status); void LogGetDisplayedLaunchIdStatus(GetDisplayedLaunchIdStatus status); void LogGetNotificationLaunchIdStatus(GetNotificationLaunchIdStatus status); void LogGetSettingPolicy(GetSettingPolicy policy); void LogGetSettingStatus(GetSettingStatus status); void LogHandleEventStatus(HandleEventStatus status); void LogActivationStatus(ActivationStatus status); void LogSetReadyCallbackStatus(SetReadyCallbackStatus status); void LogOnDismissedStatus(OnDismissedStatus status); void LogOnFailedStatus(OnFailedStatus status); } // namespace notifications_uma #endif // CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_PLATFORM_BRIDGE_WIN_METRICS_H_
[ "arnaud@geometry.ee" ]
arnaud@geometry.ee
ae979d0515e69da57131536b5d2a3b0a63c3d628
c0adf0003111506be9e934127610d7800d633e68
/GoBangServer/network/server.cpp
4ad91ac4ab083135eb05eb2b86f2a02389435d92
[]
no_license
lihongwen1/GoBangGame
48dde6a6f840cccd7a06e1933fc00869086a2977
1ae98fc61ca371875606cebfad85a820ed841401
refs/heads/master
2022-06-09T09:03:18.215674
2020-05-06T13:28:56
2020-05-06T13:28:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,408
cpp
#include "server.h" #include"util.h" Server::Server(QObject *parent) : QObject(parent) { //在一个客户端socket发送消息后,怎么判断是哪一个serversocket去处理呢? //init(8888); tcpServer=new QTcpServer(); currentSocket=new QTcpSocket(this); } void Server::init(quint16 port){ tcpServer->listen(QHostAddress::Any,port); connect(tcpServer,&QTcpServer::newConnection,this,&Server::handleNewConnection); qDebug()<<"------is binding the "<<port<<"port------"; } void Server::handleNewConnection(){ currentSocket= tcpServer->nextPendingConnection(); util strutil; QString socketId=currentSocket->peerAddress().toString()+strutil.intToString(currentSocket->peerPort()); sockets.insert(socketId,currentSocket); qDebug()<<"-----it is connecting socketId:"<<socketId<<"-----"; connect(currentSocket,&QTcpSocket::readyRead,this,&Server::readData); connect(currentSocket,&QTcpSocket::disconnected,this,&Server::disconnect); } void Server::readData(){ for(QTcpSocket* socket :sockets){ QByteArray buffer=socket->readAll(); if(buffer.isEmpty()) continue; else{ QTextCodec *tc = QTextCodec::codecForName("UTF-8"); QString tmpQStr = tc->toUnicode(buffer); qDebug()<<"-----recive new Data: "<<tmpQStr<<"------"; int endIndex; while((endIndex = buffer.indexOf(CmdEnd))>-1){ //提取一行指令 QByteArray data = buffer.mid(0,endIndex); buffer.remove(0,endIndex+CmdEnd.length()); //提取指令和参数 QByteArray cmd,args; int argIndex = data.indexOf(CmdSplit); if(argIndex==-1){ cmd = data; }else{ cmd = data.mid(0,argIndex); args = data.mid(argIndex+CmdSplit.length(),data.length()); } emit newData(cmd,args); } } } } void Server::sendData(QByteArray &data,QString &socketId){ bool ret; if(sockets.find(socketId)!=sockets.end()){ ret=sockets[socketId]->write(data,sockets[socketId]->peerPort()); if(ret){ qDebug()<<"-----"<<data<<" is sent sucessfully------"; }else{ qDebug()<<"------it is fail to send the data that"<<data<<"-----"; } }else{ qDebug()<<"-----not find the socketId"<<socketId; } } void Server::disconnect(){ for(auto socket:sockets){ if(socket->state()==QAbstractSocket::UnconnectedState||socket->waitForDisconnected(30000)){ qDebug()<<"-----disconect the client" << socket->peerAddress().toString()<<" sucussfully-----"; socket->destroyed(); sockets.remove(socket->peerName()); } } } void Server::readError(){ QMessageBox msgBox; msgBox.setText(tr("failed to connect server because ...")); } Server::~Server(){ for(auto client:sockets){ // client->disconnectFromHost(); bool ok = client->waitForDisconnected(1000); if(!ok) { // 处理异常 qDebug()<<"------close error-----"; } sockets.remove(client->peerName()); } tcpServer->close(); delete tcpServer; delete currentSocket; }
[ "woyujiannia@qq.com" ]
woyujiannia@qq.com
a7558c2aeffc72a1bd848eaf84c7012e02cc13ca
fb721bdc24235c700907b268183d1b6b60ff1822
/8th/VertexArray.hpp
307cbc407c20a829ff91bc583025a33a6a0f6463
[]
no_license
zhanggiene/OPENGL-SKELETON-ANIMATION-in-cPLUS-PLUS
5710431b8e0f43b10f48a8a737e98281dd03b8a2
783a19aba5ff75d385c9d61f0a3fcb0d5eae974a
refs/heads/master
2020-11-29T09:43:49.523621
2020-09-12T08:41:33
2020-09-12T08:41:33
230,082,797
0
0
null
null
null
null
UTF-8
C++
false
false
703
hpp
// // VertexArray.hpp // third // // Created by Zhang Zhuyan on 22/6/19. // Copyright © 2019 Zhang Zhuyan. All rights reserved. // #ifndef VertexArray_hpp #define VertexArray_hpp #include <stdio.h> #include "VertexBuffer.hpp" #include "VertexBufferLayout.h" #include <iostream> class VertexArray { private: unsigned int vaID; public: VertexArray(); void combine( const VertexBuffer& vb,const VertexBufferLayout& layout); // & means reference, it is like pointer, but easier to use. // we basically want to bind buffer data and attribute together, void bind(); void unbind(); static int index; unsigned int getID(); }; #endif /* VertexArray_hpp */
[ "zhangzhuyan53@gmail.com" ]
zhangzhuyan53@gmail.com
eb2342097ea0b64d62a226e487ab026e0e2d1516
abe368495116213ab56e0583e1903564b5857131
/logical_operator/plan_context.cpp
ca0ae2520f7b59e8153617948ca2300d657c7cd6
[]
no_license
Jackson1992/CLAIMS
56c630d2a6e74e16e42bb9ee96b1f5257da73371
f9409a99bd75654c78091c25f0d79350693126bb
refs/heads/master
2020-05-25T11:33:16.565631
2015-11-08T13:03:15
2015-11-08T13:03:15
35,158,070
2
0
null
2015-05-06T12:48:48
2015-05-06T12:48:46
null
UTF-8
C++
false
false
3,221
cpp
/* * Copyright [2012-2015] DaSE@ECNU * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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. * * ./LogicalPlan/plan_context.cpp * * Created on: Nov 10, 2013 * Author: wangli, fangzhuhe * Email: fzhedu@gmail.com * * Description: */ #include "../logical_operator/plan_context.h" #include <glog/logging.h> #include <iosfwd> #include <vector> #include <iostream> #include "../common/Schema/SchemaFix.h" namespace claims { namespace logical_operator { PlanContext::PlanContext() {} PlanContext::~PlanContext() {} PlanContext::PlanContext(const PlanContext& plan_context) { attribute_list_ = plan_context.attribute_list_; commu_cost_ = plan_context.commu_cost_; plan_partitioner_ = plan_context.plan_partitioner_; } unsigned long PlanContext::GetAggregatedDatasize() const { const unsigned tuple_size = GetTupleSize(); return plan_partitioner_.GetAggregatedDataCardinality() * tuple_size; } unsigned long PlanContext::GetAggregatedDataCardinality() const { return plan_partitioner_.GetAggregatedDataCardinality(); } bool PlanContext::IsHashPartitioned() const { return plan_partitioner_.GetPartitionStyle() == PartitionFunction::hash_f; } Schema* PlanContext::GetSchema() const { /** * Only fixed schema is supported now. * TODO(wangli): support other schemas. */ std::vector<column_type> columns; for (unsigned i = 0; i < attribute_list_.size(); i++) { columns.push_back(*attribute_list_[i].attrType); } return new SchemaFix(columns); } unsigned PlanContext::GetTupleSize() const { unsigned ret = 0; for (unsigned i = 0; i < attribute_list_.size(); i++) { ret += attribute_list_[i].attrType->get_length(); } return ret; } Attribute PlanContext::GetAttribute(std::string name) const { for (unsigned i = 0; i < attribute_list_.size(); i++) { if (attribute_list_[i].attrName == name) { return attribute_list_[i]; } } LOG(WARNING) << "Failed to find attribute " << name.c_str() << std::endl; return Attribute(ATTRIBUTE_NULL); } Attribute PlanContext::GetAttribute(std::string tbname, std::string colname) const { for (unsigned i = 0; i < attribute_list_.size(); i++) { if (attribute_list_[i].attrName == colname) { return attribute_list_[i]; } } LOG(WARNING) << "Failed to find attribute " << colname.c_str() << std::endl; assert(false); return Attribute(ATTRIBUTE_NULL); } } // namespace logical_operator } // namespace claims
[ "fzhedu@gmail.com" ]
fzhedu@gmail.com
7bf9c776848086bfb5c3be67518156665f768c76
ac5ddd5df0107a079a26d99199476288991ca521
/Project 10-16/14 Depth Test/BasicEffect.cpp
8ffa78da32dd62e2330bd335f97988b84db9fd94
[ "MIT" ]
permissive
huangten/DirectX11-With-Windows-SDK
252e02470cc956ea67dc78b13f26c769d6ebc095
148b6306a078618f82b02ae25969dbad2831e456
refs/heads/master
2022-05-10T23:21:17.778766
2022-04-14T13:04:42
2022-04-14T13:04:42
182,062,358
0
0
MIT
2020-02-27T13:04:19
2019-04-18T09:53:25
C++
UTF-8
C++
false
false
17,227
cpp
#include "Effects.h" #include "d3dUtil.h" #include "EffectHelper.h" // 必须晚于Effects.h和d3dUtil.h包含 #include "DXTrace.h" #include "Vertex.h" using namespace DirectX; // // BasicEffect::Impl 需要先于BasicEffect的定义 // class BasicEffect::Impl : public AlignedType<BasicEffect::Impl> { public: // // 这些结构体对应HLSL的结构体。需要按16字节对齐 // struct CBChangesEveryDrawing { DirectX::XMMATRIX world; DirectX::XMMATRIX worldInvTranspose; Material material; }; struct CBDrawingStates { int isReflection; int isShadow; DirectX::XMINT2 pad; }; struct CBChangesEveryFrame { DirectX::XMMATRIX view; DirectX::XMFLOAT3 eyePos; float pad; }; struct CBChangesOnResize { DirectX::XMMATRIX proj; }; struct CBChangesRarely { DirectX::XMMATRIX reflection; DirectX::XMMATRIX shadow; DirectX::XMMATRIX refShadow; DirectionalLight dirLight[BasicEffect::maxLights]; PointLight pointLight[BasicEffect::maxLights]; SpotLight spotLight[BasicEffect::maxLights]; }; public: // 必须显式指定 Impl() : m_IsDirty() {} ~Impl() = default; public: // 需要16字节对齐的优先放在前面 CBufferObject<0, CBChangesEveryDrawing> m_CBDrawing; // 每次对象绘制的常量缓冲区 CBufferObject<1, CBDrawingStates> m_CBStates; // 每次绘制状态变更的常量缓冲区 CBufferObject<2, CBChangesEveryFrame> m_CBFrame; // 每帧绘制的常量缓冲区 CBufferObject<3, CBChangesOnResize> m_CBOnResize; // 每次窗口大小变更的常量缓冲区 CBufferObject<4, CBChangesRarely> m_CBRarely; // 几乎不会变更的常量缓冲区 BOOL m_IsDirty; // 是否有值变更 std::vector<CBufferBase*> m_pCBuffers; // 统一管理上面所有的常量缓冲区 ComPtr<ID3D11VertexShader> m_pVertexShader3D; // 用于3D的顶点着色器 ComPtr<ID3D11PixelShader> m_pPixelShader3D; // 用于3D的像素着色器 ComPtr<ID3D11VertexShader> m_pVertexShader2D; // 用于2D的顶点着色器 ComPtr<ID3D11PixelShader> m_pPixelShader2D; // 用于2D的像素着色器 ComPtr<ID3D11InputLayout> m_pVertexLayout2D; // 用于2D的顶点输入布局 ComPtr<ID3D11InputLayout> m_pVertexLayout3D; // 用于3D的顶点输入布局 ComPtr<ID3D11ShaderResourceView> m_pTexture; // 用于绘制的纹理 }; // // BasicEffect // namespace { // BasicEffect单例 static BasicEffect * g_pInstance = nullptr; } BasicEffect::BasicEffect() { if (g_pInstance) throw std::exception("BasicEffect is a singleton!"); g_pInstance = this; pImpl = std::make_unique<BasicEffect::Impl>(); } BasicEffect::~BasicEffect() { } BasicEffect::BasicEffect(BasicEffect && moveFrom) noexcept { pImpl.swap(moveFrom.pImpl); } BasicEffect & BasicEffect::operator=(BasicEffect && moveFrom) noexcept { pImpl.swap(moveFrom.pImpl); return *this; } BasicEffect & BasicEffect::Get() { if (!g_pInstance) throw std::exception("BasicEffect needs an instance!"); return *g_pInstance; } bool BasicEffect::InitAll(ID3D11Device * device) { if (!device) return false; if (!pImpl->m_pCBuffers.empty()) return true; if (!RenderStates::IsInit()) throw std::exception("RenderStates need to be initialized first!"); ComPtr<ID3DBlob> blob; // 创建顶点着色器(2D) HR(CreateShaderFromFile(L"HLSL\\Basic_2D_VS.cso", L"HLSL\\Basic_2D_VS.hlsl", "VS", "vs_5_0", blob.GetAddressOf())); HR(device->CreateVertexShader(blob->GetBufferPointer(), blob->GetBufferSize(), nullptr, pImpl->m_pVertexShader2D.GetAddressOf())); // 创建顶点布局(2D) HR(device->CreateInputLayout(VertexPosTex::inputLayout, ARRAYSIZE(VertexPosTex::inputLayout), blob->GetBufferPointer(), blob->GetBufferSize(), pImpl->m_pVertexLayout2D.GetAddressOf())); // 创建像素着色器(2D) HR(CreateShaderFromFile(L"HLSL\\Basic_2D_PS.cso", L"HLSL\\Basic_2D_PS.hlsl", "PS", "ps_5_0", blob.ReleaseAndGetAddressOf())); HR(device->CreatePixelShader(blob->GetBufferPointer(), blob->GetBufferSize(), nullptr, pImpl->m_pPixelShader2D.GetAddressOf())); // 创建顶点着色器(3D) HR(CreateShaderFromFile(L"HLSL\\Basic_3D_VS.cso", L"HLSL\\Basic_3D_VS.hlsl", "VS", "vs_5_0", blob.ReleaseAndGetAddressOf())); HR(device->CreateVertexShader(blob->GetBufferPointer(), blob->GetBufferSize(), nullptr, pImpl->m_pVertexShader3D.GetAddressOf())); // 创建顶点布局(3D) HR(device->CreateInputLayout(VertexPosNormalTex::inputLayout, ARRAYSIZE(VertexPosNormalTex::inputLayout), blob->GetBufferPointer(), blob->GetBufferSize(), pImpl->m_pVertexLayout3D.GetAddressOf())); // 创建像素着色器(3D) HR(CreateShaderFromFile(L"HLSL\\Basic_3D_PS.cso", L"HLSL\\Basic_3D_PS.hlsl", "PS", "ps_5_0", blob.ReleaseAndGetAddressOf())); HR(device->CreatePixelShader(blob->GetBufferPointer(), blob->GetBufferSize(), nullptr, pImpl->m_pPixelShader3D.GetAddressOf())); pImpl->m_pCBuffers.assign({ &pImpl->m_CBDrawing, &pImpl->m_CBFrame, &pImpl->m_CBStates, &pImpl->m_CBOnResize, &pImpl->m_CBRarely}); // 创建常量缓冲区 for (auto& pBuffer : pImpl->m_pCBuffers) { HR(pBuffer->CreateBuffer(device)); } // 设置调试对象名 D3D11SetDebugObjectName(pImpl->m_pVertexLayout2D.Get(), "VertexPosTexLayout"); D3D11SetDebugObjectName(pImpl->m_pVertexLayout3D.Get(), "VertexPosNormalTexLayout"); D3D11SetDebugObjectName(pImpl->m_pCBuffers[0]->cBuffer.Get(), "CBDrawing"); D3D11SetDebugObjectName(pImpl->m_pCBuffers[1]->cBuffer.Get(), "CBStates"); D3D11SetDebugObjectName(pImpl->m_pCBuffers[2]->cBuffer.Get(), "CBFrame"); D3D11SetDebugObjectName(pImpl->m_pCBuffers[3]->cBuffer.Get(), "CBOnResize"); D3D11SetDebugObjectName(pImpl->m_pCBuffers[4]->cBuffer.Get(), "CBRarely"); D3D11SetDebugObjectName(pImpl->m_pVertexShader2D.Get(), "Basic_2D_VS"); D3D11SetDebugObjectName(pImpl->m_pVertexShader3D.Get(), "Basic_3D_VS"); D3D11SetDebugObjectName(pImpl->m_pPixelShader2D.Get(), "Basic_2D_PS"); D3D11SetDebugObjectName(pImpl->m_pPixelShader3D.Get(), "Basic_3D_PS"); return true; } void BasicEffect::SetRenderDefault(ID3D11DeviceContext * deviceContext) { deviceContext->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST); deviceContext->IASetInputLayout(pImpl->m_pVertexLayout3D.Get()); deviceContext->VSSetShader(pImpl->m_pVertexShader3D.Get(), nullptr, 0); deviceContext->RSSetState(nullptr); deviceContext->PSSetShader(pImpl->m_pPixelShader3D.Get(), nullptr, 0); deviceContext->PSSetSamplers(0, 1, RenderStates::SSLinearWrap.GetAddressOf()); deviceContext->OMSetDepthStencilState(nullptr, 0); deviceContext->OMSetBlendState(nullptr, nullptr, 0xFFFFFFFF); } void BasicEffect::SetRenderAlphaBlend(ID3D11DeviceContext * deviceContext) { deviceContext->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST); deviceContext->IASetInputLayout(pImpl->m_pVertexLayout3D.Get()); deviceContext->VSSetShader(pImpl->m_pVertexShader3D.Get(), nullptr, 0); deviceContext->RSSetState(RenderStates::RSNoCull.Get()); deviceContext->PSSetShader(pImpl->m_pPixelShader3D.Get(), nullptr, 0); deviceContext->PSSetSamplers(0, 1, RenderStates::SSLinearWrap.GetAddressOf()); deviceContext->OMSetDepthStencilState(nullptr, 0); deviceContext->OMSetBlendState(RenderStates::BSTransparent.Get(), nullptr, 0xFFFFFFFF); } void BasicEffect::SetDrawBoltAnimNoDepthTest(ID3D11DeviceContext * deviceContext) { deviceContext->IASetInputLayout(pImpl->m_pVertexLayout3D.Get()); deviceContext->VSSetShader(pImpl->m_pVertexShader3D.Get(), nullptr, 0); deviceContext->RSSetState(RenderStates::RSNoCull.Get()); deviceContext->PSSetShader(pImpl->m_pPixelShader3D.Get(), nullptr, 0); deviceContext->PSSetSamplers(0, 1, RenderStates::SSLinearWrap.GetAddressOf()); deviceContext->OMSetDepthStencilState(RenderStates::DSSNoDepthTest.Get(), 0); deviceContext->OMSetBlendState(RenderStates::BSAdditive.Get(), nullptr, 0xFFFFFFFF); } void BasicEffect::SetDrawBoltAnimNoDepthWrite(ID3D11DeviceContext * deviceContext) { deviceContext->IASetInputLayout(pImpl->m_pVertexLayout3D.Get()); deviceContext->VSSetShader(pImpl->m_pVertexShader3D.Get(), nullptr, 0); deviceContext->RSSetState(RenderStates::RSNoCull.Get()); deviceContext->PSSetShader(pImpl->m_pPixelShader3D.Get(), nullptr, 0); deviceContext->PSSetSamplers(0, 1, RenderStates::SSLinearWrap.GetAddressOf()); deviceContext->OMSetDepthStencilState(RenderStates::DSSNoDepthWrite.Get(), 0); deviceContext->OMSetBlendState(RenderStates::BSAdditive.Get(), nullptr, 0xFFFFFFFF); } void BasicEffect::SetRenderNoDoubleBlend(ID3D11DeviceContext * deviceContext, UINT stencilRef) { deviceContext->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST); deviceContext->IASetInputLayout(pImpl->m_pVertexLayout3D.Get()); deviceContext->VSSetShader(pImpl->m_pVertexShader3D.Get(), nullptr, 0); deviceContext->RSSetState(RenderStates::RSNoCull.Get()); deviceContext->PSSetShader(pImpl->m_pPixelShader3D.Get(), nullptr, 0); deviceContext->PSSetSamplers(0, 1, RenderStates::SSLinearWrap.GetAddressOf()); deviceContext->OMSetDepthStencilState(RenderStates::DSSNoDoubleBlend.Get(), stencilRef); deviceContext->OMSetBlendState(RenderStates::BSTransparent.Get(), nullptr, 0xFFFFFFFF); } void BasicEffect::SetWriteStencilOnly(ID3D11DeviceContext * deviceContext, UINT stencilRef) { deviceContext->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST); deviceContext->IASetInputLayout(pImpl->m_pVertexLayout3D.Get()); deviceContext->VSSetShader(pImpl->m_pVertexShader3D.Get(), nullptr, 0); deviceContext->RSSetState(nullptr); deviceContext->PSSetShader(pImpl->m_pPixelShader3D.Get(), nullptr, 0); deviceContext->PSSetSamplers(0, 1, RenderStates::SSLinearWrap.GetAddressOf()); deviceContext->OMSetDepthStencilState(RenderStates::DSSWriteStencil.Get(), stencilRef); deviceContext->OMSetBlendState(RenderStates::BSNoColorWrite.Get(), nullptr, 0xFFFFFFFF); } void BasicEffect::SetRenderDefaultWithStencil(ID3D11DeviceContext * deviceContext, UINT stencilRef) { deviceContext->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST); deviceContext->IASetInputLayout(pImpl->m_pVertexLayout3D.Get()); deviceContext->VSSetShader(pImpl->m_pVertexShader3D.Get(), nullptr, 0); deviceContext->RSSetState(RenderStates::RSCullClockWise.Get()); deviceContext->PSSetShader(pImpl->m_pPixelShader3D.Get(), nullptr, 0); deviceContext->PSSetSamplers(0, 1, RenderStates::SSLinearWrap.GetAddressOf()); deviceContext->OMSetDepthStencilState(RenderStates::DSSDrawWithStencil.Get(), stencilRef); deviceContext->OMSetBlendState(nullptr, nullptr, 0xFFFFFFFF); } void BasicEffect::SetRenderAlphaBlendWithStencil(ID3D11DeviceContext * deviceContext, UINT stencilRef) { deviceContext->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST); deviceContext->IASetInputLayout(pImpl->m_pVertexLayout3D.Get()); deviceContext->VSSetShader(pImpl->m_pVertexShader3D.Get(), nullptr, 0); deviceContext->RSSetState(RenderStates::RSNoCull.Get()); deviceContext->PSSetShader(pImpl->m_pPixelShader3D.Get(), nullptr, 0); deviceContext->PSSetSamplers(0, 1, RenderStates::SSLinearWrap.GetAddressOf()); deviceContext->OMSetDepthStencilState(RenderStates::DSSDrawWithStencil.Get(), stencilRef); deviceContext->OMSetBlendState(RenderStates::BSTransparent.Get(), nullptr, 0xFFFFFFFF); } void BasicEffect::SetDrawBoltAnimNoDepthTestWithStencil(ID3D11DeviceContext * deviceContext, UINT stencilRef) { deviceContext->IASetInputLayout(pImpl->m_pVertexLayout3D.Get()); deviceContext->VSSetShader(pImpl->m_pVertexShader3D.Get(), nullptr, 0); deviceContext->RSSetState(RenderStates::RSNoCull.Get()); deviceContext->PSSetShader(pImpl->m_pPixelShader3D.Get(), nullptr, 0); deviceContext->PSSetSamplers(0, 1, RenderStates::SSLinearWrap.GetAddressOf()); deviceContext->OMSetDepthStencilState(RenderStates::DSSNoDepthTestWithStencil.Get(), stencilRef); deviceContext->OMSetBlendState(RenderStates::BSAdditive.Get(), nullptr, 0xFFFFFFFF); } void BasicEffect::SetDrawBoltAnimNoDepthWriteWithStencil(ID3D11DeviceContext * deviceContext, UINT stencilRef) { deviceContext->IASetInputLayout(pImpl->m_pVertexLayout3D.Get()); deviceContext->VSSetShader(pImpl->m_pVertexShader3D.Get(), nullptr, 0); deviceContext->RSSetState(RenderStates::RSNoCull.Get()); deviceContext->PSSetShader(pImpl->m_pPixelShader3D.Get(), nullptr, 0); deviceContext->PSSetSamplers(0, 1, RenderStates::SSLinearWrap.GetAddressOf()); deviceContext->OMSetDepthStencilState(RenderStates::DSSNoDepthWriteWithStencil.Get(), stencilRef); deviceContext->OMSetBlendState(RenderStates::BSAdditive.Get(), nullptr, 0xFFFFFFFF); } void BasicEffect::Set2DRenderDefault(ID3D11DeviceContext * deviceContext) { deviceContext->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST); deviceContext->IASetInputLayout(pImpl->m_pVertexLayout2D.Get()); deviceContext->VSSetShader(pImpl->m_pVertexShader2D.Get(), nullptr, 0); deviceContext->RSSetState(nullptr); deviceContext->PSSetShader(pImpl->m_pPixelShader2D.Get(), nullptr, 0); deviceContext->PSSetSamplers(0, 1, RenderStates::SSLinearWrap.GetAddressOf()); deviceContext->OMSetDepthStencilState(nullptr, 0); deviceContext->OMSetBlendState(nullptr, nullptr, 0xFFFFFFFF); } void BasicEffect::Set2DRenderAlphaBlend(ID3D11DeviceContext * deviceContext) { deviceContext->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST); deviceContext->IASetInputLayout(pImpl->m_pVertexLayout2D.Get()); deviceContext->VSSetShader(pImpl->m_pVertexShader2D.Get(), nullptr, 0); deviceContext->RSSetState(RenderStates::RSNoCull.Get()); deviceContext->PSSetShader(pImpl->m_pPixelShader2D.Get(), nullptr, 0); deviceContext->PSSetSamplers(0, 1, RenderStates::SSLinearWrap.GetAddressOf()); deviceContext->OMSetDepthStencilState(nullptr, 0); deviceContext->OMSetBlendState(RenderStates::BSTransparent.Get(), nullptr, 0xFFFFFFFF); } void XM_CALLCONV BasicEffect::SetWorldMatrix(DirectX::FXMMATRIX W) { auto& cBuffer = pImpl->m_CBDrawing; cBuffer.data.world = XMMatrixTranspose(W); cBuffer.data.worldInvTranspose = XMMatrixTranspose(InverseTranspose(W)); pImpl->m_IsDirty = cBuffer.isDirty = true; } void XM_CALLCONV BasicEffect::SetViewMatrix(FXMMATRIX V) { auto& cBuffer = pImpl->m_CBFrame; cBuffer.data.view = XMMatrixTranspose(V); pImpl->m_IsDirty = cBuffer.isDirty = true; } void XM_CALLCONV BasicEffect::SetProjMatrix(FXMMATRIX P) { auto& cBuffer = pImpl->m_CBOnResize; cBuffer.data.proj = XMMatrixTranspose(P); pImpl->m_IsDirty = cBuffer.isDirty = true; } void XM_CALLCONV BasicEffect::SetReflectionMatrix(FXMMATRIX R) { auto& cBuffer = pImpl->m_CBRarely; cBuffer.data.reflection = XMMatrixTranspose(R); pImpl->m_IsDirty = cBuffer.isDirty = true; } void XM_CALLCONV BasicEffect::SetShadowMatrix(FXMMATRIX S) { auto& cBuffer = pImpl->m_CBRarely; cBuffer.data.shadow = XMMatrixTranspose(S); pImpl->m_IsDirty = cBuffer.isDirty = true; } void XM_CALLCONV BasicEffect::SetRefShadowMatrix(DirectX::FXMMATRIX RefS) { auto& cBuffer = pImpl->m_CBRarely; cBuffer.data.refShadow = XMMatrixTranspose(RefS); pImpl->m_IsDirty = cBuffer.isDirty = true; } void BasicEffect::SetDirLight(size_t pos, const DirectionalLight & dirLight) { auto& cBuffer = pImpl->m_CBRarely; cBuffer.data.dirLight[pos] = dirLight; pImpl->m_IsDirty = cBuffer.isDirty = true; } void BasicEffect::SetPointLight(size_t pos, const PointLight & pointLight) { auto& cBuffer = pImpl->m_CBRarely; cBuffer.data.pointLight[pos] = pointLight; pImpl->m_IsDirty = cBuffer.isDirty = true; } void BasicEffect::SetSpotLight(size_t pos, const SpotLight & spotLight) { auto& cBuffer = pImpl->m_CBRarely; cBuffer.data.spotLight[pos] = spotLight; pImpl->m_IsDirty = cBuffer.isDirty = true; } void BasicEffect::SetMaterial(const Material & material) { auto& cBuffer = pImpl->m_CBDrawing; cBuffer.data.material = material; pImpl->m_IsDirty = cBuffer.isDirty = true; } void BasicEffect::SetTexture(ID3D11ShaderResourceView * texture) { pImpl->m_pTexture = texture; } void BasicEffect::SetEyePos(const DirectX::XMFLOAT3& eyePos) { auto& cBuffer = pImpl->m_CBFrame; cBuffer.data.eyePos = eyePos; pImpl->m_IsDirty = cBuffer.isDirty = true; } void BasicEffect::SetReflectionState(bool isOn) { auto& cBuffer = pImpl->m_CBStates; cBuffer.data.isReflection = isOn; pImpl->m_IsDirty = cBuffer.isDirty = true; } void BasicEffect::SetShadowState(bool isOn) { auto& cBuffer = pImpl->m_CBStates; cBuffer.data.isShadow = isOn; pImpl->m_IsDirty = cBuffer.isDirty = true; } void BasicEffect::Apply(ID3D11DeviceContext * deviceContext) { auto& pCBuffers = pImpl->m_pCBuffers; // 将缓冲区绑定到渲染管线上 pCBuffers[0]->BindVS(deviceContext); pCBuffers[1]->BindVS(deviceContext); pCBuffers[2]->BindVS(deviceContext); pCBuffers[3]->BindVS(deviceContext); pCBuffers[4]->BindVS(deviceContext); pCBuffers[0]->BindPS(deviceContext); pCBuffers[1]->BindPS(deviceContext); pCBuffers[2]->BindPS(deviceContext); pCBuffers[4]->BindPS(deviceContext); // 设置纹理 deviceContext->PSSetShaderResources(0, 1, pImpl->m_pTexture.GetAddressOf()); if (pImpl->m_IsDirty) { pImpl->m_IsDirty = false; for (auto& pCBuffer : pCBuffers) { pCBuffer->UpdateBuffer(deviceContext); } } } // // BasicEffect::Impl实现部分 //
[ "757919340@qq.com" ]
757919340@qq.com
0c0d184bf4e734b4037b694dfe1f315e8f0eec4a
d318f6b873c14995cd678f14d9294b935059cfe5
/src/rt.cpp
ace4a4e139710f1aea13bced0bf666c6f305c163
[]
no_license
sumboid/ray-tracing
0f57e6492f0c5208bfad6e39a71c835af7edcbe1
b779520c75b54302666b0f748ad67b801edba318
refs/heads/master
2020-04-14T09:14:30.318947
2014-06-12T18:57:43
2014-06-12T18:57:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,843
cpp
#include <tuple> #include <vector> #include <string> #include <set> #include "frameworkstuff.h" #include "bitmap.h" #include "tracing/scene.h" #include "tracing/camera.h" #include "tracing/light.h" #include "tracing/objects/sphere.h" #include "tracing/lowlevel.h" #include <ts/system/System.h> #define FRAGMENTS_NUMBER 25 using std::tuple; using std::tie; using std::vector; using std::string; using std::set; using trace::Camera; using trace::Scene; using trace::Sphere; using trace::Light; using trace::Point; using trace::RGB; using ts::system::System; using ts::type::ID; enum Size { RESOLUTION_X = 5000, RESOLUTION_Y = 5000 }; Scene* createScene() { Scene* scene = new Scene(100); scene->addObject(new Sphere(Point(0, 7, 2), 1, RGB(1, 0.3, 0.3))); scene->addObject(new Sphere(Point(-3, 11, -2), 2, RGB(0.3, 0.3, 1))); scene->addObject(new Sphere(Point(0, 8, -2), 1, RGB(0.3, 1, 0.3))); scene->addObject(new Sphere(Point(1.5, 7, 0.5), 1, RGB(0.5, 0.5, 0.5))); scene->addObject(new Sphere(Point(-2, 6, 1), 0.7, RGB(0.3, 1, 1))); scene->addObject(new Sphere(Point(2.2, 8, 0), 1, RGB(0.5, 0.5, 0.5))); scene->addObject(new Sphere(Point(4, 10, 1), 0.7, RGB(0.3, 0.3, 1))); scene->addLight(new Light(Point(-15, -15, 0), RGB(0.5, 0.5, 0.5))); scene->addLight(new Light(Point(1, 0, 1), RGB(0.5, 0.5, 0.5))); scene->addLight(new Light(Point(0, 6, -10), RGB(0.5, 0.5, 0.5))); return scene; } System* createSystem(Scene* scene, Camera* camera) { FragmentTools* ct = new FragmentTools(scene, camera); ReduceDataTools* rt = new ReduceDataTools; return new System(ct, rt); } tuple<size_t, size_t> getInterval(size_t size, size_t id, size_t partsNumber) { size_t end = partsNumber % size; size_t partSize = partsNumber / size; if(id >= size - end) { size_t some = id - (size - end); return tuple<size_t, size_t>(partSize * id + some, partSize * id + some + partSize + 1); } else { return tuple<size_t, size_t>(partSize * id, partSize * id + partSize); } } set<tuple<size_t, size_t>> getInterval(size_t size, size_t id, size_t linesNumber, size_t fragmentsNumber) { set<tuple<size_t, size_t>> result; size_t begin, end; tie(begin, end) = getInterval(size, id, linesNumber); for(size_t i = 0; i < fragmentsNumber; ++i) { size_t lb, le; tie(lb, le) = getInterval(fragmentsNumber, i, end - begin); result.emplace(lb + begin, le + begin); } return result; } Camera* createCamera(Scene* scene) { Camera* camera = new Camera(4, 4, 15, 5); camera->setViewPoint(Point(0, -60, 0)); camera->setScene(scene); camera->setResolution(Size::RESOLUTION_X, Size::RESOLUTION_Y); return camera; } std::map<int, double> balancer(uint64_t, std::map<int, uint64_t>) { return std::map<int, double>(); } int main() { Scene* scene = createScene(); System* system = createSystem(scene, createCamera(scene)); system->setBalancer(balancer); size_t nodesNumber = system->size(); size_t id = system->id(); auto split = getInterval(nodesNumber, id, Size::RESOLUTION_Y, FRAGMENTS_NUMBER); if(id == 0) { Fragment* endFragment = new Fragment(ID(-1, -1, -1), 0); for(size_t i = 0; i < nodesNumber; ++i) { auto split = getInterval(nodesNumber, i, Size::RESOLUTION_Y, FRAGMENTS_NUMBER); for(size_t j = 0; j < split.size(); ++j) { endFragment->addNeighbour(ID(i, j, 0), i); } } system->addFragment(endFragment); } vector<Fragment*> fs; size_t count = 0; for(auto& i: split) { Camera* camera = createCamera(scene); size_t b, e; tie(b, e) = i; camera->setPart(0, b, Size::RESOLUTION_X, e); fs.push_back(new Fragment(ID(id, count++, 0), camera)); } for(auto f : fs) { f->addNeighbour(ID(-1, -1, -1), 0); system->addFragment(f); } system->run(); delete system; return 0; }
[ "ilya.sumb@gmail.com" ]
ilya.sumb@gmail.com
75b2a29dc2e0d37f7241010389ebc45f1ead22d1
c348a771c9f686b2d2a32e385ad7e9a63cdbbc10
/Collisions/CircleCollision.h
deafb0e79c7de67ab31aa4ab0fc0eac7233d81df
[]
no_license
romgerman/Decay
87f16d040dcfaee3fe649452b61de04232fe9094
017050b3d81861fac7aae11ba914303f411bda9a
refs/heads/master
2020-04-28T11:22:45.641482
2019-03-12T14:58:28
2019-03-12T14:58:28
175,236,046
0
0
null
null
null
null
UTF-8
C++
false
false
344
h
#pragma once #include <math.h> struct CircleCollision { float x, y; float r; public: CircleCollision() : CircleCollision(0.f, 0.f, 0.f){ } CircleCollision(float x, float y, float radius) : x(x), y(y), r(radius) { } bool PointInside(float x, float y) { x = x - this->x; y = y - this->y; return (sqrtf(x * x + y * y) < r); } };
[ "romgerman@users.noreply.github.com" ]
romgerman@users.noreply.github.com
081ff7a8817fe149f70c56bed69e2648f5565d17
35ef15922b1f74702998cc77223627faecca5094
/Codechef and Spoj/1-K/BRACKETS.cpp
67668c5c68c9ccb0bd9ff47f3d59fa3bfd84548e
[]
no_license
neelchoudhury/cp
4409fffc0db05ce1246cc8e537f8aea10dff8980
29eb993fb1931d8608a860ab16e016e16eed1aad
refs/heads/main
2023-01-23T15:03:54.708059
2023-01-21T18:09:55
2023-01-21T18:09:55
293,884,505
0
0
null
null
null
null
UTF-8
C++
false
false
732
cpp
#include<bits/stdc++.h> #define ll long long int using namespace std; int f( string s ) { int balance = 0; int max_balance = 0; for(int i=0;i<s.length(); i++) { if (s[i] == '(') balance = balance + 1; if (s[i] == ')') balance = balance - 1; max_balance = max( max_balance, balance ); } return max_balance; } int main() { int t; string a="\0",b="\0"; cin>>t; while(t--) { a="\0"; cin>>a; b="\0"; cin.ignore(); int fa=f(a); //cout<<fa<<endl; int c1=0,c2=0; /* for(int i=0;i<a.length(); i++) { if(a[i]=='(') c1++; else c2++; }*/ for(int i=0; i<2*fa; i++) { if(i<fa) cout<<"("; else cout<<")"; } cout<<endl; //cout<<f(b)<<endl; } return 0; }
[ "neelchoudhury@users.noreply.github.com" ]
neelchoudhury@users.noreply.github.com
793a0eb8510837b74d560a3daf26e2f8a404a09d
a211e0fbe7db322be68d70ea5baeefe295eea47b
/JetscapeCodes/hydroJetTestCentral.cc
8bf723f2c88ead690925cf24c3f2c68705dd5e33
[]
no_license
yasukitachibana/AAPaperMGR
119c9e71acf7a5d765a2e0b238e3d4f83ad85472
d7a3b4abe5703690aa57a1d214981294f9c5a8a6
refs/heads/master
2023-02-05T11:54:38.682364
2020-12-11T11:04:48
2020-12-11T11:04:48
229,308,689
0
0
null
null
null
null
UTF-8
C++
false
false
6,619
cc
#include <iostream> #include <time.h> #include <chrono> #include <thread> // JetScape Framework includes ... #include "JetScape.h" #include "JetEnergyLoss.h" #include "JetEnergyLossManager.h" #include "JetScapeWriterStream.h" #ifdef USE_HEPMC #include "JetScapeWriterHepMC.h" #endif // User modules derived from jetscape framework clasess // to be used to run Jetscape ... #include "AdSCFT.h" #include "Matter.h" #include "LBT.h" #include "Martini.h" #include "Brick.h" #include "GubserHydro.h" #include "HydroFromFile.h" #include "PythiaGun.h" #include "HadronizationManager.h" #include "Hadronization.h" #include "ColoredHadronization.h" #include "ColorlessHadronization.h" #include "HybridHadronization.h" #ifdef USE_HDF5 #include "InitialFromFile.h" #endif // using namespace std; // Add initial state module for test #include "TrentoInitial.h" #include <chrono> #include <thread> using namespace Jetscape; // Forward declaration void Show(); // ------------------------------------- int main(int argc, char** argv) { clock_t t; t = clock(); time_t start, end; time(&start); cout<<endl; // DEBUG=true by default and REMARK=false // can be also set also via XML file (at least partially) JetScapeLogger::Instance()->SetInfo(true); JetScapeLogger::Instance()->SetDebug(false); JetScapeLogger::Instance()->SetRemark(false); //SetVerboseLevel (9 a lot of additional debug output ...) //If you want to suppress it: use SetVerboseLevle(0) or max SetVerboseLevle(9) or 10 JetScapeLogger::Instance()->SetVerboseLevel(0); Show(); auto jetscape = make_shared<JetScape>(argv[1],4000); // auto jetscape = make_shared<JetScape>("./jetscape_init_pythiagun.xml",5); jetscape->SetId("primary"); jetscape->SetReuseHydro (true); jetscape->SetNReuseHydro (10); auto jlossmanager = make_shared<JetEnergyLossManager> (); auto jloss = make_shared<JetEnergyLoss> (); auto hydro = make_shared<HydroFromFile> (); //auto hydro = make_shared<GubserHydro> (); auto matter = make_shared<Matter> (); auto lbt = make_shared<LBT> (); auto martini = make_shared<Martini> (); auto adscft = make_shared<AdSCFT> (); //DBEUG: Remark: //does not matter unfortunately since not called recursively, done by JetEnergyLoss class ... //matter->SetActive(false); //martini->SetActive(false); // This works ... (check with above logic ...) //jloss->SetActive(false); auto pythiaGun= make_shared<PythiaGun> (); auto hadroMgr = make_shared<HadronizationManager> (); auto hadro = make_shared<Hadronization> (); auto hadroModule = make_shared<ColoredHadronization> (); auto colorless = make_shared<ColorlessHadronization> (); auto hybridHadr = make_shared<HybridHadronization> (); // only pure Ascii writer implemented and working with graph output ... auto writer= make_shared<JetScapeWriterAscii> (argv[2]); //auto writer= make_shared<JetScapeWriterAsciiGZ> ("test_out.dat.gz"); //#ifdef USE_HEPMC // auto writerhepmc= make_shared<JetScapeWriterHepMC> ("test_out.hepmc"); // jetscape->Add(writerhepmc); //#endif //writer->SetActive(false); //Remark: For now modules have to be added //in proper "workflow" order (can be defined via xml and sorted if necessary) #ifdef USE_HDF5 auto initial = make_shared<InitialFromFile>(); jetscape->Add(initial); #endif jetscape->Add(pythiaGun); //Some modifications will be needed for reusing hydro events, so far //simple test hydros always executed "on the fly" ... jetscape->Add(hydro); // Matter with silly "toy shower (no physics) // and Martini dummy ... // Switching Q2 (or whatever variable used // hardcoded at 5 to be changed to xml) jloss->Add(matter); jloss->Add(lbt); // go to 3rd party and ./get_lbtTab before adding this module //jloss->Add(martini); //jloss->Add(adscft); jlossmanager->Add(jloss); jetscape->Add(jlossmanager); //hadro->Add(hadroModule); hadro->Add(colorless); //hadro->Add(hybridHadr); hadroMgr->Add(hadro); jetscape->Add(hadroMgr); jetscape->Add(writer); // Intialize all modules tasks jetscape->Init(); // Run JetScape with all task/modules as specified ... jetscape->Exec(); // "dummy" so far ... // Most thinkgs done in write and clear ... jetscape->Finish(); INFO_NICE<<"Finished!"; cout<<endl; // Some information is only known after the full run, // Therefore store information at the end of the file, in a footer writer->WriteComment ( "EVENT GENERATION INFORMATION" ); Pythia8::Info& info = pythiaGun->info; std::ostringstream oss; oss.str(""); oss << "nTried = " << info.nTried(); writer->WriteComment ( oss.str() ); oss.str(""); oss << "nSelected = " << info.nSelected(); writer->WriteComment ( oss.str() ); oss.str(""); oss << "nAccepted = " << info.nAccepted(); writer->WriteComment ( oss.str() ); oss.str(""); oss << "sigmaGen = " << info.sigmaGen(); writer->WriteComment ( oss.str() ); oss.str(""); oss << "sigmaErr = " << info.sigmaErr(); writer->WriteComment ( oss.str() ); oss.str(""); oss << "eCM = " << info.eCM(); writer->WriteComment ( oss.str() ); oss.str(""); oss << "pTHatMin = " << pythiaGun->GetpTHatMin(); writer->WriteComment ( oss.str() ); oss.str(""); oss << "pTHatMax = " << pythiaGun->GetpTHatMax(); //writer->WriteComment ( oss.str() ); //oss.str(""); oss << "JETSCAPE Random Seed = " << JetScapeTaskSupport::Instance()->GetRandomSeed(); writer->WriteComment ( oss.str() ); writer->WriteComment ( "/EVENT GENERATION INFORMATION" ); t = clock() - t; time(&end); printf ("CPU time: %f seconds.\n",((float)t)/CLOCKS_PER_SEC); printf ("Real time: %f seconds.\n",difftime(end,start)); // Print pythia statistics // pythiaGun->stat(); // Demonstrate how to work with pythia statistics //Pythia8::Info& info = pythiaGun->info; cout << " nTried = " << info.nTried() << endl; cout << " nSelected = " << info.nSelected() << endl; cout << " nAccepted = " << info.nAccepted() << endl; cout << " sigmaGen = " << info.sigmaGen() << endl; cout << " sigmaErr = " << info.sigmaErr() << endl; ofstream WriteSigmaHard; WriteSigmaHard.open(argv[3],std::ios::out); WriteSigmaHard<<info.sigmaGen()<<"\t"<<info.sigmaErr()<<endl; WriteSigmaHard.close(); return 0; } // ------------------------------------- void Show() { INFO_NICE<<"------------------------------------------------------"; INFO_NICE<<"| Jet in hydro from file Test JetScape Framework ... |"; INFO_NICE<<"------------------------------------------------------"; INFO_NICE; }
[ "yasuki.tachibana@gmail.com" ]
yasuki.tachibana@gmail.com
eea9ff84f231bb3c3fe3128f62efcb4f459dc4a2
88775a85b06c34f6665f16b8adff25b9690ec0ee
/.history/HJ19_20210316154012.cpp
705000f5b56c240cc817b6b850de10cc6c6db9f5
[]
no_license
AraragiEro/newk
417c2d75f62ac1b174e6981a6000cb62b6448dec
63374264c10e90dc9a370bfc783913e3ec35610c
refs/heads/master
2023-03-19T14:07:46.548504
2021-03-16T18:46:34
2021-03-16T18:46:34
348,370,479
0
0
null
null
null
null
UTF-8
C++
false
false
225
cpp
#include<iostream> #include<unordered_map> #include<string> #include<vector> #include<sstream> using namespace std; int main(){ string input; vector<pair<string,int>> while(getline(cin,input)){ } }
[ "zhucct@126.com" ]
zhucct@126.com
d5762de59f45b5db94f4e9437ecebeead5461d8b
fe2836176ca940977734312801f647c12e32a297
/Codeforces/Educational/29/b.cpp
0c85a4ed731370a2fc00358e299be42022625a85
[]
no_license
henrybear327/Sandbox
ef26d96bc5cbcdc1ce04bf507e19212ca3ceb064
d77627dd713035ab89c755a515da95ecb1b1121b
refs/heads/master
2022-12-25T16:11:03.363028
2022-12-10T21:08:41
2022-12-10T21:08:41
53,817,848
2
0
null
null
null
null
UTF-8
C++
false
false
820
cpp
#include <bits/stdc++.h> using namespace std; int main() { int n; scanf("%d", &n); int inp[n * 2]; for (int i = 0; i < n * 2; i++) scanf("%d", &inp[i]); sort(inp, inp + 2 * n); int ans = INT_MAX; for (int i = 0; i < 2 * n; i++) { for (int j = i + 1; j < n * 2; j++) { int tmp = 0; vector<int> slice; slice.reserve(n * 2 - 2); for (int k = 0; k < 2 * n; k++) { if (i == k || j == k) continue; slice.push_back(inp[k]); } for (int k = 0; k < 2 * n - 2; k += 2) tmp += slice[k + 1] - slice[k]; // printf("%d %d %d\n", i, j, tmp); ans = min(ans, tmp); } } printf("%d\n", ans); return 0; }
[ "henrybear327@gmail.com" ]
henrybear327@gmail.com
1144a37b8172b0c2e9e0e9d8e63145e49d6a8e22
3170e69527e7426ad2930de5d16ff31f6ad08914
/external/libcocos3dx/Common/CC3String.h
30dd3cd285b8ef2196c6c3ef0f08d725af7608e0
[ "MIT" ]
permissive
isoundy000/cocosclient
e3818df70abfe81d25d53f80572ddd8ab7219cf8
477cde3ecd6c91d610e0d02fddf82e048fb604bd
refs/heads/master
2021-01-25T14:22:35.694874
2016-05-30T09:39:45
2016-05-30T09:39:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,104
h
/* * Cocos3D-X 1.0.0 * Copyright (c) 2014-2015 Jason Wong * http://www.cocos3dx.org/ * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. * * http://en.wikipedia.org/wiki/MIT_License */ #ifndef _CC3_STRING_H_ #define _CC3_STRING_H_ NS_COCOS3D_BEGIN class CC3String { public: static std::string getFileName( const std::string& filePath ); static std::string getDirectory( const std::string& filePath ); static std::string getExtension( const std::string& filePath ); static void makeLowercase( std::string& str ); static void makeUppercase( std::string& str ); static std::string trim( std::string& str, char toTrim = ' ' ); static int splitString( const std::string& src, std::vector<std::string>& destParts, const std::string& seperator ); static std::string getSystemTime(); static int toInteger( const std::string& str ); static bool startsWith( const char* str, const char* with ); static void stringWithFormat( std::string& sDest, char* szFormat, ... ); static std::string stringWithFormat( char* szFormat, ... ); }; NS_COCOS3D_END #endif
[ "hoanghdtv@gmail.com" ]
hoanghdtv@gmail.com
2944a4af821296c4fe586bcac9df6ca68783bf25
3c8c72b133e12e64db61c8dd8ef9b9027a26df27
/cmmse/lab/libsource4/idlcompiler/output/include/compack/jsonformatter.h
d2f3c62c4d24c5f98163667d2f1195d25cb59f1b
[]
no_license
sinomiko/56wlk
67498c31f460a9fd1634926e21425599be31e40b
1c74ee2eb1a2e96949e7596260b965fe3c9d1f71
refs/heads/master
2020-12-08T09:37:59.899011
2020-01-10T02:26:48
2020-01-10T02:26:48
232,948,314
0
0
null
2020-01-10T02:26:23
2020-01-10T02:26:22
null
UTF-8
C++
false
false
9,889
h
/** * @file jsonformater.h * @brief * **/ #ifndef _COMPACK_JSONFORMATTER_H_ #define _COMPACK_JSONFORMATTER_H_ #include <sstream> #include <stdexcept> #include <vector> #include <compack/reader.h> #include <compack/exception.h> namespace compack { template<typename INPUT> class JsonFormatter { public: explicit JsonFormatter(bool encoding = false ) : _encoding(encoding) { } template <typename STREAM> void format(const INPUT& input, STREAM* stream) { _recursive = 0; if(stream == 0) { throw_mcpack_arg("null pointer"); } Iterator it = Reader<INPUT>::getIterator(input); if(it.getType() == protocol::OBJECT) { Reader<INPUT> reader(input); printObject(reader, *stream); } else if(it.getType() == protocol::OBJECTISOARRAY) { Reader<INPUT> reader(input); printObjectIsoArray(reader, *stream); } else if(it.getType() == protocol::ARRAY || it.getType() == protocol::ISOARRAY) { Reader<INPUT> reader(input); printArray(reader, *stream); } else { printItem(*stream, it); } } template <typename STREAM> void format(Reader<INPUT> reader, STREAM* stream) { _recursive = 0; if(stream == 0) { throw_mcpack_arg("null pointer"); } if(reader.getType() == protocol::OBJECT) { printObject(reader, *stream); } else if(reader.getType() == protocol::OBJECTISOARRAY) { printObjectIsoArray(reader, *stream); } else if(reader.getType() == protocol::ARRAY or reader.getType() == protocol::ISOARRAY) { printArray(reader, *stream); } } template <typename STREAM> void format(const Reader<INPUT> & reader, const Iterator& it, STREAM* stream) { _recursive = 0; if(stream == 0) { throw_mcpack_arg("null pointer"); } printValue(reader, it, *stream); } protected: int _recursive; template <typename STREAM> void printValue(const Reader<INPUT> & reader, const Iterator& it, STREAM& stream) { _recursive++; if(_recursive > 100) { throw_mcpack_data("resursive too deep"); } if(it.isObject()) { Reader<INPUT> subreader(reader, it); printObject(subreader, stream); } else if(it.isObjectIsoArray()) { Reader<INPUT> subreader(reader, it); printObjectIsoArray(subreader, stream); } else if(it.isArray()) { Reader<INPUT> subreader(reader, it); printArray(subreader, stream); } else { printItem(stream, it); } _recursive--; } std::vector<char> _escape_buf; bool _encoding; void escape(const char* value) { _escape_buf.clear(); _escape_buf.push_back('\"'); while(true) { switch(*value) { case '\0': _escape_buf.push_back('\"'); _escape_buf.push_back(0); return; case '\n': _escape_buf.push_back('\\'); _escape_buf.push_back('n'); break; case '\r': _escape_buf.push_back('\\'); _escape_buf.push_back('r'); break; case '\t': _escape_buf.push_back('\\'); _escape_buf.push_back('t'); break; case '\b': _escape_buf.push_back('\\'); _escape_buf.push_back('b'); break; case '\f': _escape_buf.push_back('\\'); _escape_buf.push_back('f'); break; case '"': _escape_buf.push_back('\\'); _escape_buf.push_back('"'); break; case '\'': _escape_buf.push_back('\\'); _escape_buf.push_back('\''); break; case '\\': _escape_buf.push_back('\\'); _escape_buf.push_back('\\'); break; default: if(_encoding && *value < 0) { _escape_buf.push_back(*value++); _escape_buf.push_back(*value); } else { _escape_buf.push_back(*value); } } value++; } } template <typename STREAM> inline void printItem(STREAM& stream, const Iterator& it) { switch(it.getType()) { case protocol::INT_8: stream << (int)*reinterpret_cast<const char*>(it.value()); return; case protocol::INT_16: stream << *reinterpret_cast<const short*>(it.value()); return; case protocol::INT_32: stream << *reinterpret_cast<const int*>(it.value()); return; case protocol::INT_64: stream << *reinterpret_cast<const long long*>(it.value()); return; case protocol::UINT_8: stream << (int)*reinterpret_cast<const unsigned char*>(it.value()); return; case protocol::UINT_16: stream << *reinterpret_cast<const short*>(it.value()); return; case protocol::UINT_32: stream << *reinterpret_cast<const unsigned int*>(it.value()); return; case protocol::UINT_64: stream << *reinterpret_cast<const unsigned long long*>(it.value()); return; case protocol::FLOAT: stream << *reinterpret_cast<const float*>(it.value()); return; case protocol::DOUBLE: stream << *reinterpret_cast<const double*>(it.value()); return; case protocol::BOOL: if(*reinterpret_cast<const bool*>(it.value())) { stream << "true"; } else { stream << "false"; } return; case protocol::MCPACK_NULL: case protocol::BINARY: case protocol::BINARY | protocol::SHORT_ITEM: stream << "null"; return; case protocol::STRING: case protocol::STRING | protocol::SHORT_ITEM: escape(reinterpret_cast<const char*>(it.getAsString())); stream << &_escape_buf[0]; return; default: throw_mcpack_data("unknown type"); } } template <typename STREAM> void printObjectIsoArray(Reader<INPUT> & reader, STREAM& stream) { stream << '['; ObjectIterator it; unsigned int field = reader.count(); unsigned int size; if(field > 128) { throw_mcpack_data("too many isoarray field"); } else if(field == 0) { stream << ']'; return; } Reader<INPUT> readers[field]; const char* fieldnames[field]; for(unsigned int i = 0; i<field; i++) { if(!reader.next(it)) { throw_mcpack_data("too many isoarray field"); } new (&readers[i]) Reader<INPUT>(reader, it); fieldnames[i] = it.getName(); } size = readers[0].count(); for(unsigned int i = 0; i<size; i++) { stream << "{"; for(unsigned int f = 0; f < field; f++) { escape(fieldnames[f]); stream << &_escape_buf[0] << ':'; if(!readers[f].next(it)) { throw_mcpack_data("too many isoarray field"); } if(it.isObject()) { Reader<INPUT> subreader(reader, it); printObject(subreader, stream); } else if(it.isArray()) { Reader<INPUT> subreader(reader, it); printArray(subreader, stream); } else { printItem(stream, it); } if(f != field - 1) { stream << ','; } } stream << '}'; if(i != size - 1) { stream << ','; } } stream << ']'; } template <typename STREAM> void printObject(Reader<INPUT> & reader, STREAM& stream) { stream << '{'; ObjectIterator it; if(reader.next(it)) { escape(it.getName()); stream << &_escape_buf[0] << ':'; printValue(reader, it, stream); } while(reader.next(it)) { escape(it.getName()); stream << ',' << &_escape_buf[0] << ':'; printValue(reader, it, stream); } stream << '}'; } template <typename STREAM> void printArray(Reader<INPUT> & reader, STREAM& stream) { stream << '['; Iterator it; if(reader.next(it)) { printValue(reader, it, stream); } while(reader.next(it)) { stream << ','; printValue(reader, it, stream); } stream << ']'; } }; } #endif //__JSONFORMATER_H_ /* vim: set expandtab ts=4 sw=4 sts=4 tw=100 */
[ "sayigood@gmail.com" ]
sayigood@gmail.com
0ee2b6425098756de1f1f7d10e223b40740cffaa
9b3b4c0467ab61832bd2102dae22bc2e38ffd105
/Tools/EGen_v1.13.0/inc/win/ODBCCustomerTaxrateLoad.h
94a01483f858b135e12a48aec756c4660b948c15
[]
no_license
gggggtz/Src
6c37c9303f54b994f7c58c5fe2f8c94dfe9aae17
262152e1b6efb2ccb630a6e6320ae7bc01b6f933
refs/heads/master
2020-04-06T07:05:42.776707
2014-09-15T03:25:27
2014-09-15T03:25:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,020
h
/* * Legal Notice * * This document and associated source code (the "Work") is a part of a * benchmark specification maintained by the TPC. * * The TPC reserves all right, title, and interest to the Work as provided * under U.S. and international laws, including without limitation all patent * and trademark rights therein. * * No Warranty * * 1.1 TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE INFORMATION * CONTAINED HEREIN IS PROVIDED "AS IS" AND WITH ALL FAULTS, AND THE * AUTHORS AND DEVELOPERS OF THE WORK HEREBY DISCLAIM ALL OTHER * WARRANTIES AND CONDITIONS, EITHER EXPRESS, IMPLIED OR STATUTORY, * INCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES, * DUTIES OR CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR * PURPOSE, OF ACCURACY OR COMPLETENESS OF RESPONSES, OF RESULTS, OF * WORKMANLIKE EFFORT, OF LACK OF VIRUSES, AND OF LACK OF NEGLIGENCE. * ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT, * QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT * WITH REGARD TO THE WORK. * 1.2 IN NO EVENT WILL ANY AUTHOR OR DEVELOPER OF THE WORK BE LIABLE TO * ANY OTHER PARTY FOR ANY DAMAGES, INCLUDING BUT NOT LIMITED TO THE * COST OF PROCURING SUBSTITUTE GOODS OR SERVICES, LOST PROFITS, LOSS * OF USE, LOSS OF DATA, OR ANY INCIDENTAL, CONSEQUENTIAL, DIRECT, * INDIRECT, OR SPECIAL DAMAGES WHETHER UNDER CONTRACT, TORT, WARRANTY, * OR OTHERWISE, ARISING IN ANY WAY OUT OF THIS OR ANY OTHER AGREEMENT * RELATING TO THE WORK, WHETHER OR NOT SUCH AUTHOR OR DEVELOPER HAD * ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. * * Contributors * - Sergey Vasilevskiy */ /* * Database loader class for CUSTOMER_TAXRATE table. */ #ifndef ODBC_CUSTOMER_TAXRATE_LOAD_H #define ODBC_CUSTOMER_TAXRATE_LOAD_H namespace TPCE { class CODBCCustomerTaxRateLoad : public CDBLoader <CUSTOMER_TAXRATE_ROW> { public: CODBCCustomerTaxRateLoad(char *szServer, char *szDatabase, char *szLoaderParams, char *szTable = "CUSTOMER_TAXRATE") : CDBLoader<CUSTOMER_TAXRATE_ROW>(szServer, szDatabase, szLoaderParams, szTable) { }; virtual void BindColumns() { //Binding function we have to implement. int i = 0; /*if ( bcp_bind(m_hdbc, (BYTE *) &m_row.CX_C_ID, 0, SQL_VARLEN_DATA, NULL, 0, IDENT_BIND, ++i) != SUCCEED || bcp_bind(m_hdbc, (BYTE *) &m_row.CX_TX_ID, 0, SQL_VARLEN_DATA, (BYTE *)"", 1, SQLCHARACTER, ++i) != SUCCEED )*/ if (bcp_bind(m_hdbc, (BYTE *)&m_row.CX_TX_ID, 0, SQL_VARLEN_DATA, (BYTE *)"", 1, SQLCHARACTER, ++i) != SUCCEED || bcp_bind(m_hdbc, (BYTE *)&m_row.CX_C_ID, 0, SQL_VARLEN_DATA, NULL, 0, IDENT_BIND, ++i) != SUCCEED ) ThrowError(CODBCERR::eBcpBind); if ( bcp_control(m_hdbc, BCPHINTS, "ORDER (CX_C_ID)" ) != SUCCEED ) ThrowError(CODBCERR::eBcpControl); }; }; } // namespace TPCE #endif //ODBC_CUSTOMER_TAXRATE_LOAD_H
[ "gggggtz@hotmail.com" ]
gggggtz@hotmail.com
3963711775d0a42f802e4e49e13dc4d21d7d7ab7
d9685074ac58e514376134e4ddecaf1114d62931
/classes_objects_challenge/Movie.cpp
5c79aae7ad3bf96553fc19a0522d63af2e7fe218
[]
no_license
martinkabe/Cpp
5c30cd3cc6450d43e4e7855a668a2b3cfef017ba
5e4acf02e315a050498e98411f9dc6352c0bfebe
refs/heads/master
2020-12-23T23:19:04.895441
2020-02-01T15:49:09
2020-02-01T15:49:09
237,306,565
0
0
null
null
null
null
UTF-8
C++
false
false
373
cpp
#include <iostream> #include "Movie.h" Movie::Movie(std::string name, std::string rating, int watched) : name(name), rating(rating), watched(watched) { } Movie::Movie(const Movie & source) : Movie{source.name, source.rating, source.watched} { } Movie::~Movie() { } void Movie::display() const { std::cout << name << ", " << rating << ", " << watched << std::endl; }
[ "martinkabe@seznam.cz" ]
martinkabe@seznam.cz
1d1b7c5c6ed2fcc0838b613106ddaf7f44607d25
f0418bcd15a0260bfc20fb46b8a834c9041387dc
/src/HTSPDemux.h
1c742432bc24354d79caac0bd03885525f3a0093
[]
no_license
Memphiz/pvr.hts
ff3e94bb03c4eb03db58226e0edac68565553472
c08d7aaf7829cb26a274c67a20e08304eae3b4bf
refs/heads/master
2021-01-13T02:03:50.332274
2013-07-15T21:29:06
2013-07-15T21:29:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,243
h
#pragma once /* * Copyright (C) 2005-2011 Team XBMC * http://www.xbmc.org * * This Program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This Program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with XBMC; see the file COPYING. If not, write to * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. * http://www.gnu.org/copyleft/gpl.html * */ #include "client.h" #include "HTSPConnection.h" #include "xbmc/util/buffer.h" #include "xbmc/threads/mutex.h" #include "xbmc/xbmc_stream_utils.hpp" class CHTSPDemux : public CHTSPConnectionCallback { public: CHTSPDemux(CHTSPConnection* connection); ~CHTSPDemux(); bool Open(const PVR_CHANNEL &channelinfo); void Close(); bool GetStreamProperties(PVR_STREAM_PROPERTIES* props); void Abort(); DemuxPacket* Read(); bool SwitchChannel(const PVR_CHANNEL &channelinfo); int CurrentChannel() { return m_channel; } bool GetSignalStatus(PVR_SIGNAL_STATUS &qualityinfo); bool SeekTime(int time, bool backward, double *startpts); void SetSpeed(int speed); bool OnConnectionRestored(void); bool ProcessMessage(htsmsg* msg); void Flush(void); private: void ParseSubscriptionStart (htsmsg_t *m); void ParseSubscriptionStop (htsmsg_t *m); void ParseSubscriptionStatus(htsmsg_t *m); void ParseSubscriptionSkip (htsmsg_t *m); void ParseSubscriptionSpeed (htsmsg_t *m); bool SendSubscribe (int subscription, int channel); bool SendUnsubscribe(int subscription); bool SendSpeed (int subscription, int speed); bool SendSeek (int subscription, int time, bool backward, double *startpts); void ParseMuxPacket(htsmsg_t *m); bool ParseQueueStatus(htsmsg_t* msg); bool ParseSignalStatus(htsmsg_t* msg); bool ParseTimeshiftStatus(htsmsg_t* msg); bool ParseSourceInfo(htsmsg_t* msg); CHTSPConnection* m_session; bool m_bIsRadio; unsigned m_subs; int m_channel; int m_tag; std::string m_Status; ADDON::XbmcStreamProperties m_streams; SChannels m_channels; SQueueStatus m_QueueStatus; SQuality m_Quality; SSourceInfo m_SourceInfo; PLATFORM::SyncedBuffer<DemuxPacket*> m_demuxPacketBuffer; bool m_bIsOpen; PLATFORM::CEvent* m_seekEvent; double m_seekTime; PLATFORM::CMutex m_mutex; PLATFORM::CCondition<bool> m_startedCondition; };
[ "spiff@xbmc.org" ]
spiff@xbmc.org
e57b6551a7924f1834aad8365c6c287bd9d98fcb
820f75315502d495bfd4882777209cf5674d1748
/src/psmoveservice/Filter/CompoundPoseFilter.cpp
a57c42529a4604b7cccaa25d6001258b49ee6de9
[ "Apache-2.0" ]
permissive
highattack30/PSMoveService
dd7a8c2d7fd74d3387622f34692fb98321ee81c4
807fb4c33f9d30a78af01c94ff0f9465e1ea7d75
refs/heads/master
2021-01-20T00:33:53.288666
2017-04-10T13:04:02
2017-04-10T13:04:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,428
cpp
// -- includes -- #include "CompoundPoseFilter.h" #include "OrientationFilter.h" #include "PositionFilter.h" #include "KalmanPositionFilter.h" #include "KalmanOrientationFilter.h" // -- public interface -- bool CompoundPoseFilter::init( const CommonDeviceState::eDeviceType deviceType, const OrientationFilterType orientationFilterType, const PositionFilterType positionFilterType, const PoseFilterConstants &constant) { bool bSuccess = true; allocate_filters(deviceType, orientationFilterType, positionFilterType, constant); if (m_orientation_filter != nullptr) { bSuccess &= m_orientation_filter->init(constant.orientation_constants); } if (m_position_filter != nullptr) { bSuccess &= m_position_filter->init(constant.position_constants); } return bSuccess; } bool CompoundPoseFilter::init( const CommonDeviceState::eDeviceType deviceType, const OrientationFilterType orientationFilterType, const PositionFilterType positionFilterType, const PoseFilterConstants &constant, const Eigen::Vector3f &initial_position, const Eigen::Quaternionf &initial_orientation) { bool bSuccess = true; allocate_filters(deviceType, orientationFilterType, positionFilterType, constant); if (m_orientation_filter != nullptr) { bSuccess &= m_orientation_filter->init(constant.orientation_constants, initial_orientation); } if (m_position_filter != nullptr) { bSuccess &= m_position_filter->init(constant.position_constants, initial_position); } return bSuccess; } void CompoundPoseFilter::allocate_filters( const CommonDeviceState::eDeviceType deviceType, const OrientationFilterType orientationFilterType, const PositionFilterType positionFilterType, const PoseFilterConstants &constant) { dispose_filters(); switch(orientationFilterType) { case OrientationFilterTypeNone: m_orientation_filter = nullptr; break; case OrientationFilterTypePassThru: m_orientation_filter = new OrientationFilterPassThru(); break; case OrientationFilterTypeMadgwickARG: m_orientation_filter = new OrientationFilterMadgwickARG; break; case OrientationFilterTypeMadgwickMARG: m_orientation_filter = new OrientationFilterMadgwickMARG; break; case OrientationFilterTypeComplementaryOpticalARG: m_orientation_filter = new OrientationFilterComplementaryOpticalARG; break; case OrientationFilterTypeComplementaryMARG: m_orientation_filter = new OrientationFilterComplementaryMARG; break; case OrientationFilterTypeKalman: { switch (deviceType) { case CommonDeviceState::PSDualShock4: m_orientation_filter = new KalmanOrientationFilterDS4; break; case CommonDeviceState::PSMove: m_orientation_filter = new KalmanOrientationFilterPSMove; break; default: assert(0 && "unreachable"); } } break; default: assert(0 && "unreachable"); } switch(positionFilterType) { case PositionFilterTypeNone: m_position_filter = nullptr; break; case PositionFilterTypePassThru: m_position_filter = new PositionFilterPassThru; break; case PositionFilterTypeLowPassOptical: m_position_filter = new PositionFilterLowPassOptical; break; case PositionFilterTypeLowPassIMU: m_position_filter = new PositionFilterLowPassIMU; break; case PositionFilterTypeComplimentaryOpticalIMU: m_position_filter = new PositionFilterComplimentaryOpticalIMU; break; case PositionFilterTypeLowPassExponential: m_position_filter = new PositionFilterLowPassExponential; break; case PositionFilterTypeKalman: m_position_filter = new KalmanPositionFilter; break; default: assert(0 && "unreachable"); } } // -- IStateFilter -- bool CompoundPoseFilter::getIsStateValid() const { return getIsOrientationStateValid() || getIsPositionStateValid(); } void CompoundPoseFilter::update( const float delta_time, const PoseFilterPacket &orientation_filter_packet) { if (m_orientation_filter != nullptr && m_position_filter != nullptr) { // Update the orientation filter first m_orientation_filter->update(delta_time, orientation_filter_packet); // Update the position filter using the latest orientation PoseFilterPacket position_filter_packet= orientation_filter_packet; position_filter_packet.current_orientation= m_orientation_filter->getOrientation(); m_position_filter->update(delta_time, position_filter_packet); } } void CompoundPoseFilter::resetState() { if (m_orientation_filter != nullptr && m_position_filter != nullptr) { m_orientation_filter->resetState(); m_position_filter->resetState(); } } void CompoundPoseFilter::recenterOrientation(const Eigen::Quaternionf& q_pose) { if (m_orientation_filter != nullptr) { m_orientation_filter->recenterOrientation(q_pose); } } bool CompoundPoseFilter::getIsPositionStateValid() const { return m_position_filter != nullptr && m_position_filter->getIsStateValid(); } bool CompoundPoseFilter::getIsOrientationStateValid() const { return m_orientation_filter != nullptr && m_orientation_filter->getIsStateValid(); } Eigen::Quaternionf CompoundPoseFilter::getOrientation(float time) const { return (m_orientation_filter != nullptr) ? m_orientation_filter->getOrientation(time) : Eigen::Quaternionf::Identity(); } Eigen::Vector3f CompoundPoseFilter::getAngularVelocityRadPerSec() const { return (m_orientation_filter != nullptr) ? m_orientation_filter->getAngularVelocityRadPerSec() : Eigen::Vector3f::Zero(); } Eigen::Vector3f CompoundPoseFilter::getAngularAccelerationRadPerSecSqr() const { return (m_orientation_filter != nullptr) ? m_orientation_filter->getAngularAccelerationRadPerSecSqr() : Eigen::Vector3f::Zero(); } Eigen::Vector3f CompoundPoseFilter::getPositionCm(float time) const { return (m_position_filter != nullptr) ? m_position_filter->getPositionCm(time) : Eigen::Vector3f::Zero(); } Eigen::Vector3f CompoundPoseFilter::getVelocityCmPerSec() const { return (m_position_filter != nullptr) ? m_position_filter->getVelocityCmPerSec() : Eigen::Vector3f::Zero(); } Eigen::Vector3f CompoundPoseFilter::getAccelerationCmPerSecSqr() const { return (m_position_filter != nullptr) ? m_position_filter->getAccelerationCmPerSecSqr() : Eigen::Vector3f::Zero(); } void CompoundPoseFilter::dispose_filters() { if (m_orientation_filter != nullptr) { delete m_orientation_filter; m_orientation_filter= nullptr; } if (m_position_filter != nullptr) { delete m_position_filter; m_position_filter= nullptr; } }
[ "hipstersloth908@gmail.com" ]
hipstersloth908@gmail.com
393681aec6e6a5b0134bc19175bfbaba1f181f6a
cdbce8b09cf43bf2e66e5e3437ae591262a55270
/D2Ex2-master/ExBox.cpp
27ed005420e3c7dbe1dca9453fc5ef2b3811dc67
[]
no_license
tokenok/Visual-Studio-Projects
b82a53f141eff01eef69f119f55dabd8b52e803e
c3947dda48fdccdba01a21b0e5052b12a18fe2a6
refs/heads/master
2022-05-02T11:06:46.201991
2018-10-28T22:07:24
2018-10-28T22:07:24
89,531,738
5
0
null
null
null
null
UTF-8
C++
false
false
1,259
cpp
/*========================================================== * D2Ex2 * https://github.com/lolet/D2Ex2 * ========================================================== * Copyright (c) 2011-2014 Bartosz Jankowski * * 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 "stdafx.h" #include "ExBox.h" #include "Misc.h" ExBox::ExBox(int X, int Y, int Width, int Height, int Color, int TransLvl) : ExControl(X, Y, Width, Height, 0) { aColor = Color; aTransLvl = TransLvl; } void ExBox::Draw() { if (cState != INVISIBLE) { D2Funcs.D2GFX_DrawRectangle(cX, cY, cX + cWidth, cY + cHeight, aColor, aTransLvl); D2ASMFuncs::D2CLIENT_DrawGZBox(cX, cY, cX + cWidth, cY + cHeight); } } ExBox::~ExBox() { }
[ "mrjack.is.minty@gmail.com" ]
mrjack.is.minty@gmail.com
f0dc50936765f2213c96aa82fad75e7fd750440c
1609fc18e0ea8fa31f77b8a814c2fcd2b2ac8420
/기능별 소스 분류 및 상세 설명_V2.0/Joystick_05_Pio_02/Joystick_05_Pio_02.ino
4f4d4b261c9b1165be3652dc4045116e4cf80988
[]
no_license
robertchoi/firmtech_drone
71b461ad875340a6b003f31cf2087187fba9ae63
fa25614782f802e497e7b21d196cb924c7e47948
refs/heads/master
2020-03-28T05:22:31.974468
2018-09-07T05:00:21
2018-09-07T05:00:21
147,772,296
0
0
null
null
null
null
UTF-8
C++
false
false
746
ino
//----------------------------------------------- //----------------------------------------------- //----------------------------------------------- //----------------------------------------------- void setup() { Serial.begin(9600); Serial.println("PIO Test 02"); for(int i = 5; i < 11; i++) { pinMode(i,INPUT); digitalWrite(i,HIGH); } } void loop() { if(!digitalRead(5)) { Serial.println("Press 5"); } if(!digitalRead(6)) { Serial.println("Press 6"); } if(!digitalRead(7)) { Serial.println("Press 7"); } if(!digitalRead(8)) { Serial.println("Press 8"); } if(!digitalRead(9)) { Serial.println("Press 9"); } if(!digitalRead(10)) { Serial.println("Press 10"); } }
[ "robertchoimail@gmail.com" ]
robertchoimail@gmail.com
5b37262a2bd21ac0872afe9f287e6f43395e9984
fe65f9eb977b8aa03e9ba1749e0a586920dd4621
/src/objects/SdProjectSharedPtr.h
c54528feb07af6d28d8c6d3cfce7213734f62b1a
[]
no_license
usiksan/SaliCAD
6b24cad22db191b0a654ad96f78a642583bdc650
3eb7cbd56991c82de1cd4d659dd5d18eb84329c6
refs/heads/master
2023-08-09T15:49:33.952310
2023-08-08T15:45:02
2023-08-08T15:45:02
122,590,905
5
0
null
null
null
null
UTF-8
C++
false
false
356
h
/* Project "Electronic schematic and pcb CAD" Author Sibilev Alexander S. Web www.saliLab.com www.saliLab.ru Description Shared pointer to SdProject */ #ifndef SDPROJECTSHAREDPTR_H #define SDPROJECTSHAREDPTR_H #include <QSharedPointer> class SdProject; typedef QSharedPointer<SdProject> SdProjectSharedPtr; #endif // SDPROJECTSHAREDPTR_H
[ "usiksan@mail.ru" ]
usiksan@mail.ru
7bab460ca564ba1a6cab492a492de5344b40525e
880bd65f07a0bd85132ed743a6f47d8be430e20b
/dspineeditor/src/mainwindow.cpp
13afda032d2f019e1913b156a7e47093baa31e55
[]
no_license
dagophil/dspine
6e18d96804073e0cf0b4a6744e013dc82ca86192
07d8ae495cb8cdb49c4b493e267fc87c264ebd30
refs/heads/master
2020-03-18T20:02:49.804295
2018-05-28T20:03:38
2018-05-28T20:03:38
135,192,878
0
0
null
null
null
null
UTF-8
C++
false
false
425
cpp
#include "mainwindow.h" #include "ui_mainwindow.h" DSpineEditor::MainWindow::MainWindow(QWidget* const f_parent) : QMainWindow(f_parent) , m_ui(new Ui::DSpineEditorMainWindowUi()) { m_ui->setupUi(this); setCorner(Qt::BottomLeftCorner, Qt::LeftDockWidgetArea); setCorner(Qt::BottomRightCorner, Qt::RightDockWidgetArea); m_ui->tabWidget->hide(); } DSpineEditor::MainWindow::~MainWindow() = default;
[ "philip.schill@gmx.de" ]
philip.schill@gmx.de
687f97becbf89594bb58b14fb33b527b037cdaf0
f224f34ded68142867a433db1f809cf61d93d3e5
/hungry/hungry.ino
18d4a09a2eed1c7a2b44ff8c5a022e98fad9d046
[]
no_license
Vo-Viet-Dung/Hungryrobot_Arduino
8f300635463908a099779f30de0c78805c371a87
42c094884b23b6ed3a56d0d9571d9683cfd0ee0a
refs/heads/master
2022-04-12T09:30:30.772730
2020-03-26T06:51:59
2020-03-26T06:51:59
250,182,562
0
0
null
null
null
null
UTF-8
C++
false
false
1,908
ino
#include <Arduino.h> #include <Wire.h> #include <SoftwareSerial.h> #include<Servo.h> int led = 7; Servo servo5; float getDistance(int trig,int echo){ pinMode(trig,OUTPUT); digitalWrite(trig,LOW); delayMicroseconds(2); digitalWrite(trig,HIGH); delayMicroseconds(10); digitalWrite(trig,LOW); pinMode(echo, INPUT); return pulseIn(echo,HIGH,30000)/58.0; } void setup() { Serial.begin(9600); servo5.attach(5); servo5.write(180); pinMode(led,OUTPUT); float a[3]; } void loop() { while (1) { // Serial.println((getDistance(4,3))); // delay(100); int i=0; float a[3]; // ================================================================ //@brief lay gia tri 3 lan lien tiep cach nhau 20ms //==================================================================== while(i<3){ a[i]= getDistance(4,3); delay(5); i++; } for(i=0;i<3;i++){ Serial.println((a[i])); } int k; for(i=0;i<2;i++){ for(int j=i+1;j<3;j++){ if((a[j]/a[i])>1.5||(a[j]/a[i]<0.7)){ k=0; break; } else { k=1; break; } } } for(int t =0;t<2;t++){ if(a[t]==0.00) k=2; break; } Serial.println(k); if(k== 0||k == 2){ break; } if(k==1){ if(((a[0]+a[1]+a[2])/3) < 4 && ((a[0]+a[1])/2) < 4 && ((a[1]+a[2])/2)<4) { digitalWrite(led,HIGH); delay(2000); servo5.write(45); delay(200); servo5.write(180); digitalWrite(led,LOW); delay(100); } else{ digitalWrite(led,LOW); break; } } } }
[ "dungvv117@gmail.com" ]
dungvv117@gmail.com
52531a24f9fa7cc1c87e6c8589fc358e6abd9968
8a87f5b889a9ce7d81421515f06d9c9cbf6ce64a
/3rdParty/boost/1.78.0/boost/metaparse/alphanum.hpp
1e23b1844d8d89d0c9b796c5c0381b41a1e50ea9
[ "BSL-1.0", "Apache-2.0", "BSD-3-Clause", "ICU", "Zlib", "GPL-1.0-or-later", "OpenSSL", "ISC", "LicenseRef-scancode-gutenberg-2020", "MIT", "GPL-2.0-only", "CC0-1.0", "LicenseRef-scancode-autoconf-simple-exception", "LicenseRef-scancode-pcre", "Bison-exception-2.2", "LicenseRef-scancode...
permissive
arangodb/arangodb
0980625e76c56a2449d90dcb8d8f2c485e28a83b
43c40535cee37fc7349a21793dc33b1833735af5
refs/heads/devel
2023-08-31T09:34:47.451950
2023-08-31T07:25:02
2023-08-31T07:25:02
2,649,214
13,385
982
Apache-2.0
2023-09-14T17:02:16
2011-10-26T06:42:00
C++
UTF-8
C++
false
false
426
hpp
#ifndef BOOST_METAPARSE_ALPHANUM_HPP #define BOOST_METAPARSE_ALPHANUM_HPP // Copyright Abel Sinkovics (abel@sinkovics.hu) 2013. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #include <boost/metaparse/v1/alphanum.hpp> namespace boost { namespace metaparse { using v1::alphanum; } } #endif
[ "frank@arangodb.com" ]
frank@arangodb.com
607441ee46740040d01f9bdc457222e474bd753e
f0bdbfb359767d29974388b71e646bbbf7e58499
/src/Server/database/query/mailquery.h
1320f29976c88762b7fa57a61774ce14d0a32b4d
[]
no_license
sfinae/watcher
add00e137b884130e3b2e346422d5ec2e7251b84
657649894bf06613d9e58b196a5722b6212b1fb4
refs/heads/master
2021-03-12T20:09:08.042752
2013-09-17T21:27:49
2013-09-17T21:27:49
7,489,971
0
1
null
null
null
null
UTF-8
C++
false
false
1,524
h
#ifndef MAILQUERY_H #define MAILQUERY_H #include "abstractdatabasequery.h" #include "databasequerycommon.h" namespace database { namespace databasequery { class StoreMailPropertiesQuery : public IDatabaseWriter { public: StoreMailPropertiesQuery(const databasetypes::MailParams& mp); virtual databasetypes::IBaseDataPtr data(); private: databasetypes::MailParams mailParams_; }; ////////////////////////////////////////////////////////////////////// class GetMailPropertiesQuery : public databasereader::DatabaseReaderReport { Q_OBJECT public: virtual databasetypes::IBaseDataPtr data(); virtual IDatabaseReaderImplPtr readerImpl(IAsyncDataReceiver *receiver); const databasetypes::MailParams& mailParams() const; private: class SyncReader : public databasereaderimpl::DatabaseReaderImplDecorator { public: SyncReader(IDatabaseReaderImpl *impl); virtual void execute(databasetypes::IBaseDataPtr base); const databasetypes::MailParams& mailParams() const; private: void transmitMailProperties(databasetypes::MailPropertiesData& mpd); databasetypes::MailParams mailParams_; }; }; } // databasequery } // database #endif // MAILQUERY_H
[ "formichael@tut.by" ]
formichael@tut.by
ecb3daf89349943cb71840185d2a852b1bfeb5d7
6f57491fdcab5c9f0dedd5dd949dccad79f5783f
/Cpp_ex/期中期末實作dev/期末考實作for.cpp
d881d5f3fb8cf17a1e9c211c6176a04558d5f666
[]
no_license
frankylin1111/1081ML
1e9f07de708d8c989fed1e7dd2f313c12b3c79fb
1ee8c99516f28e07f5ecd2530800eba8104451a6
refs/heads/master
2022-01-31T09:00:11.816451
2022-01-24T02:01:24
2022-01-24T02:01:24
208,534,601
0
0
null
null
null
null
BIG5
C++
false
false
1,350
cpp
#include<iostream> #include<cstdlib> #include<fstream> #include<string> #include <ctime> using namespace std; int main() { fstream fs,fso; fs.open("question.txt",ios::in); fso.open("answer.txt",ios::out); char c[200],n; string a[15][2],ans; int s=0,b,correct=0,error,q[10]; srand((unsigned)time(NULL)); for(int i=0;i<10;i++) { q[i]=0+rand()%15; for(int j=0;j<i;j++) { if(q[i]==q[j]) { i--; break; } } } while (fs.getline(c,sizeof(c),'$')) { // cout << c 題目 a[s][0]=c; // cout << "正確答案為:"; fs.getline(c,sizeof(c)); a[s][1]=c; s++; continue; } for (int u=0;u<10;u++) { b=q[u]; cout <<"題目"<<u+1<<":"<<a[b][0]<<endl <<"你的答案為:"; cin >> ans; cout << "正確答案為:"<<a[b][1]<<endl; fso << "第"<<u+1<<"題答案為"<<a[b][1]<<" "<<"你的答案為:"<<ans<<'\n'; if (a[b][1] == ans) correct=correct+10; } cout <<endl<<"答對幾題"<<correct/10 <<" "<<"答錯幾題"<<10-(correct/10) <<" "<<"合計:"<< correct<<"分"; fso << "答對幾題"<<correct/10<<" "<<"答錯幾題"<<10-(correct/10)<<" " <<"合計:"<< correct<<"分"<<'\n'; fs.close(); fso.close(); system("pause"); return 0; }
[ "poi861111@gmail.com" ]
poi861111@gmail.com
b08ef38734288bbf1696cb6a71e1e2843adfdae5
93e963f3e828140017ec773bf51eaf0648bbaf29
/PropertyView.cpp
b41936ec0e9e25177ea72780ce6daa34d38a887f
[ "MIT" ]
permissive
Echelon9/shreditor
1cd900e303c41977051c532bad13d0ef27183390
57f7f72b7028f1671fe675d2329db11a35e08d04
refs/heads/master
2016-08-13T00:04:01.514201
2016-03-21T03:30:37
2016-03-21T03:30:37
54,356,916
1
0
null
null
null
null
UTF-8
C++
false
false
5,396
cpp
/* Copyright (c) 1998 Slingshot Game Technology 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. */ // PropertyView.cpp : implementation file // #include "stdafx.h" #include "terrain.h" #include "PropertyView.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // PropertyView IMPLEMENT_DYNCREATE(PropertyView, CView) PropertyView::PropertyView() { ToolPages = NULL; } PropertyView::~PropertyView() { if (ToolPages) delete ToolPages; } BEGIN_MESSAGE_MAP(PropertyView, CView) //{{AFX_MSG_MAP(PropertyView) ON_WM_CREATE() ON_WM_CANCELMODE() ON_WM_SETFOCUS() ON_WM_CAPTURECHANGED() //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // PropertyView drawing void PropertyView::OnDraw(CDC* pDC) { CDocument* pDoc = GetDocument(); // TODO: add draw code here // Pass to ToolPages. ToolPages->RedrawWindow(); } ///////////////////////////////////////////////////////////////////////////// // PropertyView diagnostics #ifdef _DEBUG void PropertyView::AssertValid() const { CView::AssertValid(); } void PropertyView::Dump(CDumpContext& dc) const { CView::Dump(dc); } #endif //_DEBUG ///////////////////////////////////////////////////////////////////////////// // PropertyView message handlers void PropertyView::OnInitialUpdate() { CView::OnInitialUpdate(); // TODO: Add your specialized code here and/or call the base class } void PropertyView::CalcWindowRect(LPRECT lpClientRect, UINT nAdjustType) { // TODO: Add your specialized code here and/or call the base class CView::CalcWindowRect(lpClientRect, nAdjustType); } int PropertyView::OnCreate(LPCREATESTRUCT lpCreateStruct) { if (CView::OnCreate(lpCreateStruct) == -1) return -1; // TODO: Add your specialized creation code here ToolPages = new ToolSheet("Tool Pages", this); ToolPages->Create(this, WS_CHILD | WS_VISIBLE, 0); // Move the child property sheet so it's in the frame. CRect rectClient, rectWindow; ToolPages->GetWindowRect(rectClient); GetWindowRect(rectWindow); // // CMiniFrameWnd::CalcWindowRect adds the extra width and height // // needed from the mini frame. // CalcWindowRect(rectWindow); // SetWindowPos(NULL, rectWindow.left, rectWindow.top, // rectWindow.Width(), rectWindow.Height(), // SWP_NOZORDER | SWP_NOACTIVATE); ToolPages->SetWindowPos(NULL, 0, 0, rectClient.Width(), rectClient.Height(), SWP_NOZORDER | SWP_NOACTIVATE); return 0; } void PropertyView::OnCancelMode() { CView::OnCancelMode(); // TODO: Add your message handler code here } void PropertyView::OnSetFocus(CWnd* pOldWnd) { // CView::OnSetFocus(pOldWnd); // // // TODO: Add your message handler code here // Forward focus to the embedded property sheet ASSERT_VALID(ToolPages); ToolPages->SetFocus(); } void PropertyView::OnCaptureChanged(CWnd *pWnd) { // TODO: Add your message handler code here CView::OnCaptureChanged(pWnd); } GridFormView* PropertyView::GetGridFormView() { return &ToolPages->GridPage; } GeometryListView* PropertyView::GetGeometryListView() { return &ToolPages->GeoListView; } ObjectFormView* PropertyView::GetObjectFormView() { return &ToolPages->ObjectPage; } PolygonFormView* PropertyView::GetPolygonFormView() { return &ToolPages->PolygonPage; } SolidListView* PropertyView::GetSolidListView() { return &ToolPages->SolidListPage; } PaintParametersView* PropertyView::GetPaintParametersView() { return &ToolPages->PaintPage; } void PropertyView::OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint) { // TODO: Add your specialized code here and/or call the base class GetGeometryListView()->Update(); GetObjectFormView()->Update(); GetPolygonFormView()->Update(); GetSolidListView()->Update(); } BOOL PropertyView::Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext) { // TODO: Add your specialized code here and/or call the base class return CWnd::Create(lpszClassName, lpszWindowName, dwStyle, rect, pParentWnd, nID, pContext); }
[ "rhyskidd@gmail.com" ]
rhyskidd@gmail.com
df07c890d096ffd103fc733bb51c843ce67d80fb
81e132452000d7c5f7ffe9e29140f8dc1d769f4d
/project/libnet/socket_timer.h
7a1e915005343fe32b0a17c9b3ca7cafa07a8887
[]
no_license
commshare/nanomsg_demo
3f1f5fbf452557ba749516ddfd8920658106b9b8
6c2094d85029e2ecf3f3af13df892df67bff9458
refs/heads/master
2020-03-30T15:25:41.099955
2017-09-08T08:09:20
2017-09-08T08:10:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,275
h
#ifndef __SocketTimer_H__ #define __SocketTimer_H__ #include "common_type.h" #include "object.h" #include <unordered_map> #include <functional> class SocketProcessor; struct TIMER_ITEM; typedef std::function<bool(int tid, unsigned int tms)> TIMER_CALLBACK; class ITimer { friend class TimerCore; public: typedef std::unordered_map<lw_int32, TIMER_ITEM*> TIMERS; typedef std::unordered_map<lw_int32, TIMER_ITEM*>::iterator iterator; typedef std::unordered_map<lw_int32, TIMER_ITEM*>::const_iterator const_iterator; public: virtual ~ITimer() {} public: virtual int create(SocketProcessor* processor = nullptr) = 0; virtual void destroy() = 0; public: virtual int start(int tid, int tms, TIMER_CALLBACK func) = 0; virtual int start_once(int tid, int tms, TIMER_CALLBACK func) = 0; virtual void kill(int tid) = 0; protected: virtual void _timer_cb(TIMER_ITEM* timer) = 0; }; class Timer : public Object { public: Timer(); virtual ~Timer(); public: int create(SocketProcessor* processor = nullptr); void destroy(); public: int start(int tid, int tms, TIMER_CALLBACK func); int start_once(int tid, int tms, TIMER_CALLBACK func); void kill(int tid); public: std::string debug() override; private: ITimer* _timer; }; #endif // !__SocketTimer_H__
[ "373102227@qq.com" ]
373102227@qq.com
539b57d41bf580b6ceed740ed5d4971f754bcc96
6c6082bfbd8a2f9f2645149545d0f1aba8ea939a
/Projects/Honey/Honey/Platform/ImGui/ImGuiGlfwImplementation.cpp
b41f80b2bda88fadf390ca8c757732207dc979b4
[ "MIT" ]
permissive
dSyncro/Honey
e33fa5b03b1a443cbfdea104056369d0ae0ed85c
571862e56d2a977d319779be751e5c0ef79de5a1
refs/heads/master
2023-01-01T00:53:57.717544
2020-10-25T18:11:02
2020-10-25T18:11:02
254,705,369
0
0
null
null
null
null
UTF-8
C++
false
false
40,552
cpp
// dear imgui: Platform Binding for GLFW // This needs to be used along with a Renderer (e.g. OpenGL3, Vulkan..) // (Info: GLFW is a cross-platform general purpose library for handling windows, inputs, OpenGL/Vulkan graphics context creation, etc.) // (Requires: GLFW 3.1+. Prefer GLFW 3.3+ for full feature support.) // Implemented features: // [X] Platform: Clipboard support. // [X] Platform: Gamepad support. Enable with 'io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad'. // [X] Platform: Mouse cursor shape and visibility. Disable with 'io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange' (note: the resizing cursors requires GLFW 3.4+). // [X] Platform: Keyboard arrays indexed using GLFW_KEY_* codes, e.g. ImGui::IsKeyPressed(GLFW_KEY_SPACE). // [X] Platform: Multi-viewport support (multiple windows). Enable with 'io.ConfigFlags |= ImGuiConfigFlags_ViewportsEnable'. // You can copy and use unmodified imgui_impl_* files in your project. See main.cpp for an example of using this. // If you are new to dear imgui, read examples/README.txt and read the documentation at the top of imgui.cpp. // https://github.com/ocornut/imgui // CHANGELOG // (minor and older changes stripped away, please see git history for details) // 2020-XX-XX: Platform: Added support for multiple windows via the ImGuiPlatformIO interface. // 2020-01-17: Inputs: Disable error callback while assigning mouse cursors because some X11 setup don't have them and it generates errors. // 2019-12-05: Inputs: Added support for new mouse cursors added in GLFW 3.4+ (resizing cursors, not allowed cursor). // 2019-10-18: Misc: Previously installed user callbacks are now restored on shutdown. // 2019-07-21: Inputs: Added mapping for ImGuiKey_KeyPadEnter. // 2019-05-11: Inputs: Don't filter value from character callback before calling AddInputCharacter(). // 2019-03-12: Misc: Preserve DisplayFramebufferScale when main window is minimized. // 2018-11-30: Misc: Setting up io.BackendPlatformName so it can be displayed in the About Window. // 2018-11-07: Inputs: When installing our GLFW callbacks, we save user's previously installed ones - if any - and chain call them. // 2018-08-01: Inputs: Workaround for Emscripten which doesn't seem to handle focus related calls. // 2018-06-29: Inputs: Added support for the ImGuiMouseCursor_Hand cursor. // 2018-06-08: Misc: Extracted imgui_impl_glfw.cpp/.h away from the old combined GLFW+OpenGL/Vulkan examples. // 2018-03-20: Misc: Setup io.BackendFlags ImGuiBackendFlags_HasMouseCursors flag + honor ImGuiConfigFlags_NoMouseCursorChange flag. // 2018-02-20: Inputs: Added support for mouse cursors (ImGui::GetMouseCursor() value, passed to glfwSetCursor()). // 2018-02-06: Misc: Removed call to ImGui::Shutdown() which is not available from 1.60 WIP, user needs to call CreateContext/DestroyContext themselves. // 2018-02-06: Inputs: Added mapping for ImGuiKey_Space. // 2018-01-25: Inputs: Added gamepad support if ImGuiConfigFlags_NavEnableGamepad is set. // 2018-01-25: Inputs: Honoring the io.WantSetMousePos by repositioning the mouse (when using navigation and ImGuiConfigFlags_NavMoveMouse is set). // 2018-01-20: Inputs: Added Horizontal Mouse Wheel support. // 2018-01-18: Inputs: Added mapping for ImGuiKey_Insert. // 2017-08-25: Inputs: MousePos set to -FLT_MAX,-FLT_MAX when mouse is unavailable/missing (instead of -1,-1). // 2016-10-15: Misc: Added a void* user_data parameter to Clipboard function handlers. #include "imgui.h" #include "ImGuiGlfwImplementation.h" // GLFW extern "C" { #include <GLFW/glfw3.h> } #ifdef _WIN32 # undef APIENTRY # define GLFW_EXPOSE_NATIVE_WIN32 extern "C" { # include <GLFW/glfw3native.h> // for glfwGetWin32Window } #endif #define GLFW_HAS_WINDOW_TOPMOST (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 >= 3200) // 3.2+ GLFW_FLOATING #define GLFW_HAS_WINDOW_HOVERED (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 >= 3300) // 3.3+ GLFW_HOVERED #define GLFW_HAS_WINDOW_ALPHA (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 >= 3300) // 3.3+ glfwSetWindowOpacity #define GLFW_HAS_PER_MONITOR_DPI (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 >= 3300) // 3.3+ glfwGetMonitorContentScale #define GLFW_HAS_VULKAN (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 >= 3200) // 3.2+ glfwCreateWindowSurface #define GLFW_HAS_FOCUS_WINDOW (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 >= 3200) // 3.2+ glfwFocusWindow #define GLFW_HAS_FOCUS_ON_SHOW (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 >= 3300) // 3.3+ GLFW_FOCUS_ON_SHOW #define GLFW_HAS_MONITOR_WORK_AREA (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 >= 3300) // 3.3+ glfwGetMonitorWorkarea #define GLFW_HAS_OSX_WINDOW_POS_FIX (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 + GLFW_VERSION_REVISION * 10 >= 3310) // 3.3.1+ Fixed: Resizing window repositions it on MacOS #1553 #ifdef GLFW_RESIZE_NESW_CURSOR // Let's be nice to people who pulled GLFW between 2019-04-16 (3.4 define) and 2019-11-29 (cursors defines) // FIXME: Remove when GLFW 3.4 is released? # define GLFW_HAS_NEW_CURSORS (GLFW_VERSION_MAJOR * 1000 + GLFW_VERSION_MINOR * 100 >= 3400) // 3.4+ GLFW_RESIZE_ALL_CURSOR, GLFW_RESIZE_NESW_CURSOR, GLFW_RESIZE_NWSE_CURSOR, GLFW_NOT_ALLOWED_CURSOR #else # define GLFW_HAS_NEW_CURSORS (0) #endif // Data enum GlfwClientApi { GlfwClientApi_Unknown, GlfwClientApi_OpenGL, GlfwClientApi_Vulkan }; static GLFWwindow* g_Window = NULL; // Main window static GlfwClientApi g_ClientApi = GlfwClientApi_Unknown; static double g_Time = 0.0; static bool g_MouseJustPressed[5] = { false, false, false, false, false }; static GLFWcursor* g_MouseCursors[ImGuiMouseCursor_COUNT] = {}; static bool g_InstalledCallbacks = false; static bool g_WantUpdateMonitors = true; // Chain GLFW callbacks for main viewport: our callbacks will call the user's previously installed callbacks, if any. static GLFWmousebuttonfun g_PrevUserCallbackMousebutton = NULL; static GLFWscrollfun g_PrevUserCallbackScroll = NULL; static GLFWkeyfun g_PrevUserCallbackKey = NULL; static GLFWcharfun g_PrevUserCallbackChar = NULL; static GLFWmonitorfun g_PrevUserCallbackMonitor = NULL; // Forward Declarations static void ImGui_ImplGlfw_UpdateMonitors(); static void ImGui_ImplGlfw_InitPlatformInterface(); static void ImGui_ImplGlfw_ShutdownPlatformInterface(); static const char* ImGui_ImplGlfw_GetClipboardText(void* user_data) { return glfwGetClipboardString((GLFWwindow*)user_data); } static void ImGui_ImplGlfw_SetClipboardText(void* user_data, const char* text) { glfwSetClipboardString((GLFWwindow*)user_data, text); } void ImGui_ImplGlfw_MouseButtonCallback(GLFWwindow* window, int button, int action, int mods) { if (g_PrevUserCallbackMousebutton != NULL && window == g_Window) g_PrevUserCallbackMousebutton(window, button, action, mods); if (action == GLFW_PRESS && button >= 0 && button < IM_ARRAYSIZE(g_MouseJustPressed)) g_MouseJustPressed[button] = true; } void ImGui_ImplGlfw_ScrollCallback(GLFWwindow* window, double xoffset, double yoffset) { if (g_PrevUserCallbackScroll != NULL && window == g_Window) g_PrevUserCallbackScroll(window, xoffset, yoffset); ImGuiIO& io = ImGui::GetIO(); io.MouseWheelH += (float)xoffset; io.MouseWheel += (float)yoffset; } void ImGui_ImplGlfw_KeyCallback(GLFWwindow* window, int key, int scancode, int action, int mods) { if (g_PrevUserCallbackKey != NULL && window == g_Window) g_PrevUserCallbackKey(window, key, scancode, action, mods); ImGuiIO& io = ImGui::GetIO(); if (action == GLFW_PRESS) io.KeysDown[key] = true; if (action == GLFW_RELEASE) io.KeysDown[key] = false; // Modifiers are not reliable across systems io.KeyCtrl = io.KeysDown[GLFW_KEY_LEFT_CONTROL] || io.KeysDown[GLFW_KEY_RIGHT_CONTROL]; io.KeyShift = io.KeysDown[GLFW_KEY_LEFT_SHIFT] || io.KeysDown[GLFW_KEY_RIGHT_SHIFT]; io.KeyAlt = io.KeysDown[GLFW_KEY_LEFT_ALT] || io.KeysDown[GLFW_KEY_RIGHT_ALT]; #ifdef _WIN32 io.KeySuper = false; #else io.KeySuper = io.KeysDown[GLFW_KEY_LEFT_SUPER] || io.KeysDown[GLFW_KEY_RIGHT_SUPER]; #endif } void ImGui_ImplGlfw_CharCallback(GLFWwindow* window, unsigned int c) { if (g_PrevUserCallbackChar != NULL && window == g_Window) g_PrevUserCallbackChar(window, c); ImGuiIO& io = ImGui::GetIO(); io.AddInputCharacter(c); } void ImGui_ImplGlfw_MonitorCallback(GLFWmonitor*, int) { g_WantUpdateMonitors = true; } static bool ImGui_ImplGlfw_Init(GLFWwindow* window, bool install_callbacks, GlfwClientApi client_api) { g_Window = window; g_Time = 0.0; // Setup back-end capabilities flags ImGuiIO& io = ImGui::GetIO(); io.BackendFlags |= ImGuiBackendFlags_HasMouseCursors; // We can honor GetMouseCursor() values (optional) io.BackendFlags |= ImGuiBackendFlags_HasSetMousePos; // We can honor io.WantSetMousePos requests (optional, rarely used) io.BackendFlags |= ImGuiBackendFlags_PlatformHasViewports; // We can create multi-viewports on the Platform side (optional) #if GLFW_HAS_GLFW_HOVERED && defined(_WIN32) io.BackendFlags |= ImGuiBackendFlags_HasMouseHoveredViewport; // We can set io.MouseHoveredViewport correctly (optional, not easy) #endif io.BackendPlatformName = "imgui_impl_glfw"; // Keyboard mapping. ImGui will use those indices to peek into the io.KeysDown[] array. io.KeyMap[ImGuiKey_Tab] = GLFW_KEY_TAB; io.KeyMap[ImGuiKey_LeftArrow] = GLFW_KEY_LEFT; io.KeyMap[ImGuiKey_RightArrow] = GLFW_KEY_RIGHT; io.KeyMap[ImGuiKey_UpArrow] = GLFW_KEY_UP; io.KeyMap[ImGuiKey_DownArrow] = GLFW_KEY_DOWN; io.KeyMap[ImGuiKey_PageUp] = GLFW_KEY_PAGE_UP; io.KeyMap[ImGuiKey_PageDown] = GLFW_KEY_PAGE_DOWN; io.KeyMap[ImGuiKey_Home] = GLFW_KEY_HOME; io.KeyMap[ImGuiKey_End] = GLFW_KEY_END; io.KeyMap[ImGuiKey_Insert] = GLFW_KEY_INSERT; io.KeyMap[ImGuiKey_Delete] = GLFW_KEY_DELETE; io.KeyMap[ImGuiKey_Backspace] = GLFW_KEY_BACKSPACE; io.KeyMap[ImGuiKey_Space] = GLFW_KEY_SPACE; io.KeyMap[ImGuiKey_Enter] = GLFW_KEY_ENTER; io.KeyMap[ImGuiKey_Escape] = GLFW_KEY_ESCAPE; io.KeyMap[ImGuiKey_KeyPadEnter] = GLFW_KEY_KP_ENTER; io.KeyMap[ImGuiKey_A] = GLFW_KEY_A; io.KeyMap[ImGuiKey_C] = GLFW_KEY_C; io.KeyMap[ImGuiKey_V] = GLFW_KEY_V; io.KeyMap[ImGuiKey_X] = GLFW_KEY_X; io.KeyMap[ImGuiKey_Y] = GLFW_KEY_Y; io.KeyMap[ImGuiKey_Z] = GLFW_KEY_Z; io.SetClipboardTextFn = ImGui_ImplGlfw_SetClipboardText; io.GetClipboardTextFn = ImGui_ImplGlfw_GetClipboardText; io.ClipboardUserData = g_Window; // Create mouse cursors // (By design, on X11 cursors are user configurable and some cursors may be missing. When a cursor doesn't exist, // GLFW will emit an error which will often be printed by the app, so we temporarily disable error reporting. // Missing cursors will return NULL and our _UpdateMouseCursor() function will use the Arrow cursor instead.) GLFWerrorfun prev_error_callback = glfwSetErrorCallback(NULL); g_MouseCursors[ImGuiMouseCursor_Arrow] = glfwCreateStandardCursor(GLFW_ARROW_CURSOR); g_MouseCursors[ImGuiMouseCursor_TextInput] = glfwCreateStandardCursor(GLFW_IBEAM_CURSOR); g_MouseCursors[ImGuiMouseCursor_ResizeNS] = glfwCreateStandardCursor(GLFW_VRESIZE_CURSOR); g_MouseCursors[ImGuiMouseCursor_ResizeEW] = glfwCreateStandardCursor(GLFW_HRESIZE_CURSOR); g_MouseCursors[ImGuiMouseCursor_Hand] = glfwCreateStandardCursor(GLFW_HAND_CURSOR); #if GLFW_HAS_NEW_CURSORS g_MouseCursors[ImGuiMouseCursor_ResizeAll] = glfwCreateStandardCursor(GLFW_RESIZE_ALL_CURSOR); g_MouseCursors[ImGuiMouseCursor_ResizeNESW] = glfwCreateStandardCursor(GLFW_RESIZE_NESW_CURSOR); g_MouseCursors[ImGuiMouseCursor_ResizeNWSE] = glfwCreateStandardCursor(GLFW_RESIZE_NWSE_CURSOR); g_MouseCursors[ImGuiMouseCursor_NotAllowed] = glfwCreateStandardCursor(GLFW_NOT_ALLOWED_CURSOR); #else g_MouseCursors[ImGuiMouseCursor_ResizeAll] = glfwCreateStandardCursor(GLFW_ARROW_CURSOR); g_MouseCursors[ImGuiMouseCursor_ResizeNESW] = glfwCreateStandardCursor(GLFW_ARROW_CURSOR); g_MouseCursors[ImGuiMouseCursor_ResizeNWSE] = glfwCreateStandardCursor(GLFW_ARROW_CURSOR); g_MouseCursors[ImGuiMouseCursor_NotAllowed] = glfwCreateStandardCursor(GLFW_ARROW_CURSOR); #endif glfwSetErrorCallback(prev_error_callback); // Chain GLFW callbacks: our callbacks will call the user's previously installed callbacks, if any. g_PrevUserCallbackMousebutton = NULL; g_PrevUserCallbackScroll = NULL; g_PrevUserCallbackKey = NULL; g_PrevUserCallbackChar = NULL; g_PrevUserCallbackMonitor = NULL; if (install_callbacks) { g_InstalledCallbacks = true; g_PrevUserCallbackMousebutton = glfwSetMouseButtonCallback(window, ImGui_ImplGlfw_MouseButtonCallback); g_PrevUserCallbackScroll = glfwSetScrollCallback(window, ImGui_ImplGlfw_ScrollCallback); g_PrevUserCallbackKey = glfwSetKeyCallback(window, ImGui_ImplGlfw_KeyCallback); g_PrevUserCallbackChar = glfwSetCharCallback(window, ImGui_ImplGlfw_CharCallback); g_PrevUserCallbackMonitor = glfwSetMonitorCallback(ImGui_ImplGlfw_MonitorCallback); } // Update monitors the first time (note: monitor callback are broken in GLFW 3.2 and earlier, see github.com/glfw/glfw/issues/784) ImGui_ImplGlfw_UpdateMonitors(); glfwSetMonitorCallback(ImGui_ImplGlfw_MonitorCallback); // Our mouse update function expect PlatformHandle to be filled for the main viewport ImGuiViewport* main_viewport = ImGui::GetMainViewport(); main_viewport->PlatformHandle = (void*)g_Window; #ifdef _WIN32 main_viewport->PlatformHandleRaw = glfwGetWin32Window(g_Window); #endif if (io.ConfigFlags & ImGuiConfigFlags_ViewportsEnable) ImGui_ImplGlfw_InitPlatformInterface(); g_ClientApi = client_api; return true; } bool ImGui_ImplGlfw_InitForOpenGL(GLFWwindow* window, bool install_callbacks) { return ImGui_ImplGlfw_Init(window, install_callbacks, GlfwClientApi_OpenGL); } bool ImGui_ImplGlfw_InitForVulkan(GLFWwindow* window, bool install_callbacks) { return ImGui_ImplGlfw_Init(window, install_callbacks, GlfwClientApi_Vulkan); } void ImGui_ImplGlfw_Shutdown() { ImGui_ImplGlfw_ShutdownPlatformInterface(); if (g_InstalledCallbacks) { glfwSetMouseButtonCallback(g_Window, g_PrevUserCallbackMousebutton); glfwSetScrollCallback(g_Window, g_PrevUserCallbackScroll); glfwSetKeyCallback(g_Window, g_PrevUserCallbackKey); glfwSetCharCallback(g_Window, g_PrevUserCallbackChar); g_InstalledCallbacks = false; } for (ImGuiMouseCursor cursor_n = 0; cursor_n < ImGuiMouseCursor_COUNT; cursor_n++) { glfwDestroyCursor(g_MouseCursors[cursor_n]); g_MouseCursors[cursor_n] = NULL; } g_ClientApi = GlfwClientApi_Unknown; } static void ImGui_ImplGlfw_UpdateMousePosAndButtons() { // Update buttons ImGuiIO& io = ImGui::GetIO(); for (int i = 0; i < IM_ARRAYSIZE(io.MouseDown); i++) { // If a mouse press event came, always pass it as "mouse held this frame", so we don't miss click-release events that are shorter than 1 frame. io.MouseDown[i] = g_MouseJustPressed[i] || glfwGetMouseButton(g_Window, i) != 0; g_MouseJustPressed[i] = false; } // Update mouse position const ImVec2 mouse_pos_backup = io.MousePos; io.MousePos = ImVec2(-FLT_MAX, -FLT_MAX); io.MouseHoveredViewport = 0; ImGuiPlatformIO& platform_io = ImGui::GetPlatformIO(); for (int n = 0; n < platform_io.Viewports.Size; n++) { ImGuiViewport* viewport = platform_io.Viewports[n]; GLFWwindow* window = (GLFWwindow*)viewport->PlatformHandle; IM_ASSERT(window != NULL); #ifdef __EMSCRIPTEN__ const bool focused = true; IM_ASSERT(platform_io.Viewports.Size == 1); #else const bool focused = glfwGetWindowAttrib(window, GLFW_FOCUSED) != 0; #endif if (focused) { if (io.WantSetMousePos) { glfwSetCursorPos(window, (double)(mouse_pos_backup.x - viewport->Pos.x), (double)(mouse_pos_backup.y - viewport->Pos.y)); } else { double mouse_x, mouse_y; glfwGetCursorPos(window, &mouse_x, &mouse_y); if (io.ConfigFlags & ImGuiConfigFlags_ViewportsEnable) { // Multi-viewport mode: mouse position in OS absolute coordinates (io.MousePos is (0,0) when the mouse is on the upper-left of the primary monitor) int window_x, window_y; glfwGetWindowPos(window, &window_x, &window_y); io.MousePos = ImVec2((float)mouse_x + window_x, (float)mouse_y + window_y); } else { // Single viewport mode: mouse position in client window coordinates (io.MousePos is (0,0) when the mouse is on the upper-left corner of the app window) io.MousePos = ImVec2((float)mouse_x, (float)mouse_y); } } for (int i = 0; i < IM_ARRAYSIZE(io.MouseDown); i++) io.MouseDown[i] |= glfwGetMouseButton(window, i) != 0; } // (Optional) When using multiple viewports: set io.MouseHoveredViewport to the viewport the OS mouse cursor is hovering. // Important: this information is not easy to provide and many high-level windowing library won't be able to provide it correctly, because // - This is _ignoring_ viewports with the ImGuiViewportFlags_NoInputs flag (pass-through windows). // - This is _regardless_ of whether another viewport is focused or being dragged from. // If ImGuiBackendFlags_HasMouseHoveredViewport is not set by the back-end, imgui will ignore this field and infer the information by relying on the // rectangles and last focused time of every viewports it knows about. It will be unaware of other windows that may be sitting between or over your windows. // [GLFW] FIXME: This is currently only correct on Win32. See what we do below with the WM_NCHITTEST, missing an equivalent for other systems. // See https://github.com/glfw/glfw/issues/1236 if you want to help in making this a GLFW feature. #if GLFW_HAS_GLFW_HOVERED && defined(_WIN32) if (glfwGetWindowAttrib(window, GLFW_HOVERED) && !(viewport->Flags & ImGuiViewportFlags_NoInputs)) io.MouseHoveredViewport = viewport->ID; #endif } } static void ImGui_ImplGlfw_UpdateMouseCursor() { ImGuiIO& io = ImGui::GetIO(); if ((io.ConfigFlags & ImGuiConfigFlags_NoMouseCursorChange) || glfwGetInputMode(g_Window, GLFW_CURSOR) == GLFW_CURSOR_DISABLED) return; ImGuiMouseCursor imgui_cursor = ImGui::GetMouseCursor(); ImGuiPlatformIO& platform_io = ImGui::GetPlatformIO(); for (int n = 0; n < platform_io.Viewports.Size; n++) { GLFWwindow* window = (GLFWwindow*)platform_io.Viewports[n]->PlatformHandle; if (imgui_cursor == ImGuiMouseCursor_None || io.MouseDrawCursor) { // Hide OS mouse cursor if imgui is drawing it or if it wants no cursor glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_HIDDEN); } else { // Show OS mouse cursor // FIXME-PLATFORM: Unfocused windows seems to fail changing the mouse cursor with GLFW 3.2, but 3.3 works here. glfwSetCursor(window, g_MouseCursors[imgui_cursor] ? g_MouseCursors[imgui_cursor] : g_MouseCursors[ImGuiMouseCursor_Arrow]); glfwSetInputMode(window, GLFW_CURSOR, GLFW_CURSOR_NORMAL); } } } static void ImGui_ImplGlfw_UpdateGamepads() { ImGuiIO& io = ImGui::GetIO(); memset(io.NavInputs, 0, sizeof(io.NavInputs)); if ((io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) == 0) return; // Update gamepad inputs #define MAP_BUTTON(NAV_NO, BUTTON_NO) { if (buttons_count > BUTTON_NO && buttons[BUTTON_NO] == GLFW_PRESS) io.NavInputs[NAV_NO] = 1.0f; } #define MAP_ANALOG(NAV_NO, AXIS_NO, V0, V1) { float v = (axes_count > AXIS_NO) ? axes[AXIS_NO] : V0; v = (v - V0) / (V1 - V0); if (v > 1.0f) v = 1.0f; if (io.NavInputs[NAV_NO] < v) io.NavInputs[NAV_NO] = v; } int axes_count = 0, buttons_count = 0; const float* axes = glfwGetJoystickAxes(GLFW_JOYSTICK_1, &axes_count); const unsigned char* buttons = glfwGetJoystickButtons(GLFW_JOYSTICK_1, &buttons_count); MAP_BUTTON(ImGuiNavInput_Activate, 0); // Cross / A MAP_BUTTON(ImGuiNavInput_Cancel, 1); // Circle / B MAP_BUTTON(ImGuiNavInput_Menu, 2); // Square / X MAP_BUTTON(ImGuiNavInput_Input, 3); // Triangle / Y MAP_BUTTON(ImGuiNavInput_DpadLeft, 13); // D-Pad Left MAP_BUTTON(ImGuiNavInput_DpadRight, 11); // D-Pad Right MAP_BUTTON(ImGuiNavInput_DpadUp, 10); // D-Pad Up MAP_BUTTON(ImGuiNavInput_DpadDown, 12); // D-Pad Down MAP_BUTTON(ImGuiNavInput_FocusPrev, 4); // L1 / LB MAP_BUTTON(ImGuiNavInput_FocusNext, 5); // R1 / RB MAP_BUTTON(ImGuiNavInput_TweakSlow, 4); // L1 / LB MAP_BUTTON(ImGuiNavInput_TweakFast, 5); // R1 / RB MAP_ANALOG(ImGuiNavInput_LStickLeft, 0, -0.3f, -0.9f); MAP_ANALOG(ImGuiNavInput_LStickRight, 0, +0.3f, +0.9f); MAP_ANALOG(ImGuiNavInput_LStickUp, 1, +0.3f, +0.9f); MAP_ANALOG(ImGuiNavInput_LStickDown, 1, -0.3f, -0.9f); #undef MAP_BUTTON #undef MAP_ANALOG if (axes_count > 0 && buttons_count > 0) io.BackendFlags |= ImGuiBackendFlags_HasGamepad; else io.BackendFlags &= ~ImGuiBackendFlags_HasGamepad; } static void ImGui_ImplGlfw_UpdateMonitors() { ImGuiPlatformIO& platform_io = ImGui::GetPlatformIO(); int monitors_count = 0; GLFWmonitor** glfw_monitors = glfwGetMonitors(&monitors_count); platform_io.Monitors.resize(0); for (int n = 0; n < monitors_count; n++) { ImGuiPlatformMonitor monitor; int x, y; glfwGetMonitorPos(glfw_monitors[n], &x, &y); const GLFWvidmode* vid_mode = glfwGetVideoMode(glfw_monitors[n]); #if GLFW_HAS_MONITOR_WORK_AREA monitor.MainPos = ImVec2((float)x, (float)y); monitor.MainSize = ImVec2((float)vid_mode->width, (float)vid_mode->height); int w, h; glfwGetMonitorWorkarea(glfw_monitors[n], &x, &y, &w, &h); monitor.WorkPos = ImVec2((float)x, (float)y);; monitor.WorkSize = ImVec2((float)w, (float)h); #else monitor.MainPos = monitor.WorkPos = ImVec2((float)x, (float)y); monitor.MainSize = monitor.WorkSize = ImVec2((float)vid_mode->width, (float)vid_mode->height); #endif #if GLFW_HAS_PER_MONITOR_DPI // Warning: the validity of monitor DPI information on Windows depends on the application DPI awareness settings, which generally needs to be set in the manifest or at runtime. float x_scale, y_scale; glfwGetMonitorContentScale(glfw_monitors[n], &x_scale, &y_scale); monitor.DpiScale = x_scale; #endif platform_io.Monitors.push_back(monitor); } g_WantUpdateMonitors = false; } void ImGui_ImplGlfw_NewFrame() { ImGuiIO& io = ImGui::GetIO(); IM_ASSERT(io.Fonts->IsBuilt() && "Font atlas not built! It is generally built by the renderer back-end. Missing call to renderer _NewFrame() function? e.g. ImGui_ImplOpenGL3_NewFrame()."); // Setup display size (every frame to accommodate for window resizing) int w, h; int display_w, display_h; glfwGetWindowSize(g_Window, &w, &h); glfwGetFramebufferSize(g_Window, &display_w, &display_h); io.DisplaySize = ImVec2((float)w, (float)h); if (w > 0 && h > 0) io.DisplayFramebufferScale = ImVec2((float)display_w / w, (float)display_h / h); if (g_WantUpdateMonitors) ImGui_ImplGlfw_UpdateMonitors(); // Setup time step double current_time = glfwGetTime(); io.DeltaTime = g_Time > 0.0 ? (float)(current_time - g_Time) : (float)(1.0f / 60.0f); g_Time = current_time; ImGui_ImplGlfw_UpdateMousePosAndButtons(); ImGui_ImplGlfw_UpdateMouseCursor(); // Update game controllers (if enabled and available) ImGui_ImplGlfw_UpdateGamepads(); } //-------------------------------------------------------------------------------------------------------- // MULTI-VIEWPORT / PLATFORM INTERFACE SUPPORT // This is an _advanced_ and _optional_ feature, allowing the back-end to create and handle multiple viewports simultaneously. // If you are new to dear imgui or creating a new binding for dear imgui, it is recommended that you completely ignore this section first.. //-------------------------------------------------------------------------------------------------------- // Helper structure we store in the void* RenderUserData field of each ImGuiViewport to easily retrieve our backend data. struct ImGuiViewportDataGlfw { GLFWwindow* Window; bool WindowOwned; int IgnoreWindowSizeEventFrame; ImGuiViewportDataGlfw() { Window = NULL; WindowOwned = false; IgnoreWindowSizeEventFrame = -1; } ~ImGuiViewportDataGlfw() { IM_ASSERT(Window == NULL); } }; static void ImGui_ImplGlfw_WindowCloseCallback(GLFWwindow* window) { if (ImGuiViewport* viewport = ImGui::FindViewportByPlatformHandle(window)) viewport->PlatformRequestClose = true; } static void ImGui_ImplGlfw_WindowPosCallback(GLFWwindow* window, int, int) { if (ImGuiViewport* viewport = ImGui::FindViewportByPlatformHandle(window)) viewport->PlatformRequestMove = true; } static void ImGui_ImplGlfw_WindowSizeCallback(GLFWwindow* window, int, int) { if (ImGuiViewport* viewport = ImGui::FindViewportByPlatformHandle(window)) { if (ImGuiViewportDataGlfw* data = (ImGuiViewportDataGlfw*)viewport->PlatformUserData) { // GLFW may dispatch window size event after calling glfwSetWindowSize(). // However depending on the platform the callback may be invoked at different time: on Windows it // appears to be called within the glfwSetWindowSize() call whereas on Linux it is queued and invoked // during glfwPollEvents(). // Because the event doesn't always fire on glfwSetWindowSize() we use a frame counter tag to only // ignore recent glfwSetWindowSize() calls. bool ignore_event = (ImGui::GetFrameCount() <= data->IgnoreWindowSizeEventFrame + 1); data->IgnoreWindowSizeEventFrame = -1; if (ignore_event) return; } viewport->PlatformRequestResize = true; } } static void ImGui_ImplGlfw_CreateWindow(ImGuiViewport* viewport) { ImGuiViewportDataGlfw* data = IM_NEW(ImGuiViewportDataGlfw)(); viewport->PlatformUserData = data; // GLFW 3.2 unfortunately always set focus on glfwCreateWindow() if GLFW_VISIBLE is set, regardless of GLFW_FOCUSED // With GLFW 3.3, the hint GLFW_FOCUS_ON_SHOW fixes this problem glfwWindowHint(GLFW_VISIBLE, false); glfwWindowHint(GLFW_FOCUSED, false); #if GLFW_HAS_FOCUS_ON_SHOW glfwWindowHint(GLFW_FOCUS_ON_SHOW, false); #endif glfwWindowHint(GLFW_DECORATED, (viewport->Flags & ImGuiViewportFlags_NoDecoration) ? false : true); #if GLFW_HAS_WINDOW_TOPMOST glfwWindowHint(GLFW_FLOATING, (viewport->Flags & ImGuiViewportFlags_TopMost) ? true : false); #endif GLFWwindow* share_window = (g_ClientApi == GlfwClientApi_OpenGL) ? g_Window : NULL; data->Window = glfwCreateWindow((int)viewport->Size.x, (int)viewport->Size.y, "No Title Yet", NULL, share_window); data->WindowOwned = true; viewport->PlatformHandle = (void*)data->Window; #ifdef _WIN32 viewport->PlatformHandleRaw = glfwGetWin32Window(data->Window); #endif glfwSetWindowPos(data->Window, (int)viewport->Pos.x, (int)viewport->Pos.y); // Install GLFW callbacks for secondary viewports glfwSetMouseButtonCallback(data->Window, ImGui_ImplGlfw_MouseButtonCallback); glfwSetScrollCallback(data->Window, ImGui_ImplGlfw_ScrollCallback); glfwSetKeyCallback(data->Window, ImGui_ImplGlfw_KeyCallback); glfwSetCharCallback(data->Window, ImGui_ImplGlfw_CharCallback); glfwSetWindowCloseCallback(data->Window, ImGui_ImplGlfw_WindowCloseCallback); glfwSetWindowPosCallback(data->Window, ImGui_ImplGlfw_WindowPosCallback); glfwSetWindowSizeCallback(data->Window, ImGui_ImplGlfw_WindowSizeCallback); if (g_ClientApi == GlfwClientApi_OpenGL) { glfwMakeContextCurrent(data->Window); glfwSwapInterval(0); } } static void ImGui_ImplGlfw_DestroyWindow(ImGuiViewport* viewport) { if (ImGuiViewportDataGlfw* data = (ImGuiViewportDataGlfw*)viewport->PlatformUserData) { if (data->WindowOwned) { #if GLFW_HAS_GLFW_HOVERED && defined(_WIN32) HWND hwnd = (HWND)viewport->PlatformHandleRaw; ::RemovePropA(hwnd, "IMGUI_VIEWPORT"); #endif glfwDestroyWindow(data->Window); } data->Window = NULL; IM_DELETE(data); } viewport->PlatformUserData = viewport->PlatformHandle = NULL; } // We have submitted https://github.com/glfw/glfw/pull/1568 to allow GLFW to support "transparent inputs". // In the meanwhile we implement custom per-platform workarounds here (FIXME-VIEWPORT: Implement same work-around for Linux/OSX!) #if defined(_WIN32) && GLFW_HAS_GLFW_HOVERED static WNDPROC g_GlfwWndProc = NULL; static LRESULT CALLBACK WndProcNoInputs(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) { if (msg == WM_NCHITTEST) { // Let mouse pass-through the window. This will allow the back-end to set io.MouseHoveredViewport properly (which is OPTIONAL). // The ImGuiViewportFlags_NoInputs flag is set while dragging a viewport, as want to detect the window behind the one we are dragging. // If you cannot easily access those viewport flags from your windowing/event code: you may manually synchronize its state e.g. in // your main loop after calling UpdatePlatformWindows(). Iterate all viewports/platform windows and pass the flag to your windowing system. ImGuiViewport* viewport = (ImGuiViewport*)::GetPropA(hWnd, "IMGUI_VIEWPORT"); if (viewport->Flags & ImGuiViewportFlags_NoInputs) return HTTRANSPARENT; } return ::CallWindowProc(g_GlfwWndProc, hWnd, msg, wParam, lParam); } #endif static void ImGui_ImplGlfw_ShowWindow(ImGuiViewport* viewport) { ImGuiViewportDataGlfw* data = (ImGuiViewportDataGlfw*)viewport->PlatformUserData; #if defined(_WIN32) // GLFW hack: Hide icon from task bar HWND hwnd = (HWND)viewport->PlatformHandleRaw; if (viewport->Flags & ImGuiViewportFlags_NoTaskBarIcon) { LONG ex_style = ::GetWindowLong(hwnd, GWL_EXSTYLE); ex_style &= ~WS_EX_APPWINDOW; ex_style |= WS_EX_TOOLWINDOW; ::SetWindowLong(hwnd, GWL_EXSTYLE, ex_style); } // GLFW hack: install hook for WM_NCHITTEST message handler #if GLFW_HAS_GLFW_HOVERED && defined(_WIN32) ::SetPropA(hwnd, "IMGUI_VIEWPORT", viewport); if (g_GlfwWndProc == NULL) g_GlfwWndProc = (WNDPROC)::GetWindowLongPtr(hwnd, GWLP_WNDPROC); ::SetWindowLongPtr(hwnd, GWLP_WNDPROC, (LONG_PTR)WndProcNoInputs); #endif #if !GLFW_HAS_FOCUS_ON_SHOW // GLFW hack: GLFW 3.2 has a bug where glfwShowWindow() also activates/focus the window. // The fix was pushed to GLFW repository on 2018/01/09 and should be included in GLFW 3.3 via a GLFW_FOCUS_ON_SHOW window attribute. // See https://github.com/glfw/glfw/issues/1189 // FIXME-VIEWPORT: Implement same work-around for Linux/OSX in the meanwhile. if (viewport->Flags & ImGuiViewportFlags_NoFocusOnAppearing) { ::ShowWindow(hwnd, SW_SHOWNA); return; } #endif #endif glfwShowWindow(data->Window); } static ImVec2 ImGui_ImplGlfw_GetWindowPos(ImGuiViewport* viewport) { ImGuiViewportDataGlfw* data = (ImGuiViewportDataGlfw*)viewport->PlatformUserData; int x = 0, y = 0; glfwGetWindowPos(data->Window, &x, &y); return ImVec2((float)x, (float)y); } static void ImGui_ImplGlfw_SetWindowPos(ImGuiViewport* viewport, ImVec2 pos) { ImGuiViewportDataGlfw* data = (ImGuiViewportDataGlfw*)viewport->PlatformUserData; glfwSetWindowPos(data->Window, (int)pos.x, (int)pos.y); } static ImVec2 ImGui_ImplGlfw_GetWindowSize(ImGuiViewport* viewport) { ImGuiViewportDataGlfw* data = (ImGuiViewportDataGlfw*)viewport->PlatformUserData; int w = 0, h = 0; glfwGetWindowSize(data->Window, &w, &h); return ImVec2((float)w, (float)h); } static void ImGui_ImplGlfw_SetWindowSize(ImGuiViewport* viewport, ImVec2 size) { ImGuiViewportDataGlfw* data = (ImGuiViewportDataGlfw*)viewport->PlatformUserData; #if __APPLE__ && !GLFW_HAS_OSX_WINDOW_POS_FIX // Native OS windows are positioned from the bottom-left corner on macOS, whereas on other platforms they are // positioned from the upper-left corner. GLFW makes an effort to convert macOS style coordinates, however it // doesn't handle it when changing size. We are manually moving the window in order for changes of size to be based // on the upper-left corner. int x, y, width, height; glfwGetWindowPos(data->Window, &x, &y); glfwGetWindowSize(data->Window, &width, &height); glfwSetWindowPos(data->Window, x, y - height + size.y); #endif data->IgnoreWindowSizeEventFrame = ImGui::GetFrameCount(); glfwSetWindowSize(data->Window, (int)size.x, (int)size.y); } static void ImGui_ImplGlfw_SetWindowTitle(ImGuiViewport* viewport, const char* title) { ImGuiViewportDataGlfw* data = (ImGuiViewportDataGlfw*)viewport->PlatformUserData; glfwSetWindowTitle(data->Window, title); } static void ImGui_ImplGlfw_SetWindowFocus(ImGuiViewport* viewport) { #if GLFW_HAS_FOCUS_WINDOW ImGuiViewportDataGlfw* data = (ImGuiViewportDataGlfw*)viewport->PlatformUserData; glfwFocusWindow(data->Window); #else // FIXME: What are the effect of not having this function? At the moment imgui doesn't actually call SetWindowFocus - we set that up ahead, will answer that question later. (void)viewport; #endif } static bool ImGui_ImplGlfw_GetWindowFocus(ImGuiViewport* viewport) { ImGuiViewportDataGlfw* data = (ImGuiViewportDataGlfw*)viewport->PlatformUserData; return glfwGetWindowAttrib(data->Window, GLFW_FOCUSED) != 0; } static bool ImGui_ImplGlfw_GetWindowMinimized(ImGuiViewport* viewport) { ImGuiViewportDataGlfw* data = (ImGuiViewportDataGlfw*)viewport->PlatformUserData; return glfwGetWindowAttrib(data->Window, GLFW_ICONIFIED) != 0; } #if GLFW_HAS_WINDOW_ALPHA static void ImGui_ImplGlfw_SetWindowAlpha(ImGuiViewport* viewport, float alpha) { ImGuiViewportDataGlfw* data = (ImGuiViewportDataGlfw*)viewport->PlatformUserData; glfwSetWindowOpacity(data->Window, alpha); } #endif static void ImGui_ImplGlfw_RenderWindow(ImGuiViewport* viewport, void*) { ImGuiViewportDataGlfw* data = (ImGuiViewportDataGlfw*)viewport->PlatformUserData; if (g_ClientApi == GlfwClientApi_OpenGL) glfwMakeContextCurrent(data->Window); } static void ImGui_ImplGlfw_SwapBuffers(ImGuiViewport* viewport, void*) { ImGuiViewportDataGlfw* data = (ImGuiViewportDataGlfw*)viewport->PlatformUserData; if (g_ClientApi == GlfwClientApi_OpenGL) { glfwMakeContextCurrent(data->Window); glfwSwapBuffers(data->Window); } } //-------------------------------------------------------------------------------------------------------- // IME (Input Method Editor) basic support for e.g. Asian language users //-------------------------------------------------------------------------------------------------------- // We provide a Win32 implementation because this is such a common issue for IME users #if defined(_WIN32) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS) && !defined(IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS) && !defined(__GNUC__) #define HAS_WIN32_IME 1 #include <imm.h> #ifdef _MSC_VER #pragma comment(lib, "imm32") #endif static void ImGui_ImplWin32_SetImeInputPos(ImGuiViewport* viewport, ImVec2 pos) { COMPOSITIONFORM cf = { CFS_FORCE_POSITION, { (LONG)(pos.x - viewport->Pos.x), (LONG)(pos.y - viewport->Pos.y) }, { 0, 0, 0, 0 } }; if (HWND hwnd = (HWND)viewport->PlatformHandleRaw) if (HIMC himc = ::ImmGetContext(hwnd)) { ::ImmSetCompositionWindow(himc, &cf); ::ImmReleaseContext(hwnd, himc); } } #else #define HAS_WIN32_IME 0 #endif //-------------------------------------------------------------------------------------------------------- // Vulkan support (the Vulkan renderer needs to call a platform-side support function to create the surface) //-------------------------------------------------------------------------------------------------------- // Avoid including <vulkan.h> so we can build without it #if GLFW_HAS_VULKAN #ifndef VULKAN_H_ #define VK_DEFINE_HANDLE(object) typedef struct object##_T* object; #if defined(__LP64__) || defined(_WIN64) || defined(__x86_64__) || defined(_M_X64) || defined(__ia64) || defined (_M_IA64) || defined(__aarch64__) || defined(__powerpc64__) #define VK_DEFINE_NON_DISPATCHABLE_HANDLE(object) typedef struct object##_T *object; #else #define VK_DEFINE_NON_DISPATCHABLE_HANDLE(object) typedef uint64_t object; #endif VK_DEFINE_HANDLE(VkInstance) VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkSurfaceKHR) struct VkAllocationCallbacks; enum VkResult { VK_RESULT_MAX_ENUM = 0x7FFFFFFF }; #endif // VULKAN_H_ extern "C" { extern GLFWAPI VkResult glfwCreateWindowSurface(VkInstance instance, GLFWwindow* window, const VkAllocationCallbacks* allocator, VkSurfaceKHR* surface); } static int ImGui_ImplGlfw_CreateVkSurface(ImGuiViewport* viewport, ImU64 vk_instance, const void* vk_allocator, ImU64* out_vk_surface) { ImGuiViewportDataGlfw* data = (ImGuiViewportDataGlfw*)viewport->PlatformUserData; IM_ASSERT(g_ClientApi == GlfwClientApi_Vulkan); VkResult err = glfwCreateWindowSurface((VkInstance)vk_instance, data->Window, (const VkAllocationCallbacks*)vk_allocator, (VkSurfaceKHR*)out_vk_surface); return (int)err; } #endif // GLFW_HAS_VULKAN static void ImGui_ImplGlfw_InitPlatformInterface() { // Register platform interface (will be coupled with a renderer interface) ImGuiPlatformIO& platform_io = ImGui::GetPlatformIO(); platform_io.Platform_CreateWindow = ImGui_ImplGlfw_CreateWindow; platform_io.Platform_DestroyWindow = ImGui_ImplGlfw_DestroyWindow; platform_io.Platform_ShowWindow = ImGui_ImplGlfw_ShowWindow; platform_io.Platform_SetWindowPos = ImGui_ImplGlfw_SetWindowPos; platform_io.Platform_GetWindowPos = ImGui_ImplGlfw_GetWindowPos; platform_io.Platform_SetWindowSize = ImGui_ImplGlfw_SetWindowSize; platform_io.Platform_GetWindowSize = ImGui_ImplGlfw_GetWindowSize; platform_io.Platform_SetWindowFocus = ImGui_ImplGlfw_SetWindowFocus; platform_io.Platform_GetWindowFocus = ImGui_ImplGlfw_GetWindowFocus; platform_io.Platform_GetWindowMinimized = ImGui_ImplGlfw_GetWindowMinimized; platform_io.Platform_SetWindowTitle = ImGui_ImplGlfw_SetWindowTitle; platform_io.Platform_RenderWindow = ImGui_ImplGlfw_RenderWindow; platform_io.Platform_SwapBuffers = ImGui_ImplGlfw_SwapBuffers; #if GLFW_HAS_WINDOW_ALPHA platform_io.Platform_SetWindowAlpha = ImGui_ImplGlfw_SetWindowAlpha; #endif #if GLFW_HAS_VULKAN platform_io.Platform_CreateVkSurface = ImGui_ImplGlfw_CreateVkSurface; #endif #if HAS_WIN32_IME platform_io.Platform_SetImeInputPos = ImGui_ImplWin32_SetImeInputPos; #endif // Register main window handle (which is owned by the main application, not by us) // This is mostly for simplicity and consistency, so that our code (e.g. mouse handling etc.) can use same logic for main and secondary viewports. ImGuiViewport* main_viewport = ImGui::GetMainViewport(); ImGuiViewportDataGlfw* data = IM_NEW(ImGuiViewportDataGlfw)(); data->Window = g_Window; data->WindowOwned = false; main_viewport->PlatformUserData = data; main_viewport->PlatformHandle = (void*)g_Window; } static void ImGui_ImplGlfw_ShutdownPlatformInterface() { }
[ "mancini.domenico456@gmail.com" ]
mancini.domenico456@gmail.com
8dbad2c1e83e4c7da6b352075b04cb5ae58969d6
bbb808e77135b6552db908bcc086dc2dd7c3d573
/others/8-uvalive-5031.cpp
76fabc41537356a4aec050c1737618d606adc951
[]
no_license
cfeitong/ACM-problem-archive
fda3c9e6bed051e209fe1de7e86a41ac9730a49f
77d7b7488121fd9d2deaba223d01f4afedee5b9f
refs/heads/master
2020-05-22T04:38:47.130189
2017-03-30T10:37:12
2017-03-30T10:37:12
65,458,552
0
0
null
null
null
null
UTF-8
C++
false
false
5,966
cpp
#include <algorithm> #include <cstdio> #include <cstdlib> #include <vector> using namespace std; const int INF = 0x3f3f3f3f; typedef long long LL; struct Node { Node* ch[2]; int val, rank, size; Node(int _v = 0) : val(_v) { size = 1; rank = rand(); ch[0] = ch[1] = NULL; } int cmp(int x) { if (val == x) return -1; return x < val ? 0 : 1; } }; struct Treap { Node* root; Treap() { init(); } ~Treap() { init(); } void init() { _init(root); } void _init(Node*& o) { if (!o) return; if (o->ch[0]) _init(o->ch[0]); if (o->ch[1]) _init(o->ch[1]); delete o; o = NULL; } void maintain(Node* o) { int sz = 1; if (o) { if (o->ch[0]) sz += o->ch[0]->size; if (o->ch[1]) sz += o->ch[1]->size; o->size = sz; } } void rotate(Node*& o, int d) { Node* k = o->ch[!d]; o->ch[!d] = k->ch[d]; k->ch[d] = o; maintain(o); maintain(k); o = k; } void insert(int val) { _insert(root, val); } void _insert(Node*& o, int val) { if (!o) o = new Node(val); else { int d = val < o->val ? 0 : 1; _insert(o->ch[d], val); if (o->rank < o->ch[d]->rank) rotate(o, !d); } maintain(o); } void remove(int val) { _remove(root, val); } void _remove(Node*& o, int val) { int d = o->cmp(val); if (d == -1) { if (o->ch[0] && o->ch[1]) { int d2 = o->ch[0]->rank < o->ch[1]->rank ? 0 : 1; rotate(o, d2); _remove(o->ch[d2], val); } else { Node* u = o; if (o->ch[0]) { o = o->ch[0]; } else if (o->ch[1]) { o = o->ch[1]; } else { o = NULL; } delete u; } } else { _remove(o->ch[d], val); } maintain(o); } int kth(int k) { return _kth(root, k); } int _kth(Node* o, int k) { if (!o || k <= 0 || k > o->size) return 0; int sz = o->ch[1] ? o->ch[1]->size : 0; if (k == sz + 1) return o->val; else if (k <= sz) return _kth(o->ch[1], k); else return _kth(o->ch[0], k - sz - 1); } int rankof(int val) { return _rankof(root, val); } int _rankof(Node* o, int val) { if (!o) return 1; if (o->val >= val) return _rankof(o->ch[0], val); else return _rankof(o->ch[1], val) + 1 + (o->ch[0] ? o->ch[0]->size : 0); } void merge(Treap& o) { _merge(o.root); } void _merge(Node*& o) { if (o->ch[0]) _merge(o->ch[0]); if (o->ch[1]) _merge(o->ch[1]); insert(o->val); delete o; o = NULL; } }; const int N = 1e5; struct UniFind { int pa[N]; // vector<int> set[N]; UniFind() { init(); } void init() { for (int i = 0; i < N; i++) { pa[i] = i; // set[i].clear(); } } int find(int k) { return pa[k] == k ? k : pa[k] = find(pa[k]); } void unite(int a, int b) { // if (set[a].size() < set[b].size()) { // unit(b, a); // return; // } pa[find(b)] = find(a); // while (!set[b].empty()) { // set[a].push_back(set[b].back()); // set[b].pop_back(); // } } }; struct Op { char type; int x, v; }; struct Edg { int a, b, use; }; int n, m; int w[N]; vector<Op> ops; UniFind uf; Treap tr[N]; vector<Edg> es; void clean() { ops.clear(); uf.init(); es.clear(); for (int i = 0; i < N; i++) { tr[i].init(); w[i] = 0; } } void add_edg(int a, int b) { int pa = uf.find(a), pb = uf.find(b); if (pa == pb) return; if (tr[pa].root->size >= tr[pb].root->size) { uf.unite(a, b); uf.pa[pb] = pa; tr[pa].merge(tr[pb]); } else { uf.unite(b, a); tr[pb].merge(tr[pa]); } } int query(int x, int k) { int p = uf.find(x); int cur = tr[p].kth(k); // #ifdef D // printf("tree %d(%d) is %d\n", x, k, cur); // #endif return cur; } void change_weight(int x, int v) { int p = uf.find(x); tr[p].remove(w[x]); tr[p].insert(v); w[x] = v; } int main() { #ifdef D freopen("5031.in", "r", stdin); #endif int kase = 0; while (1) { clean(); scanf("%d%d ", &n, &m); if (!n && !m) break; for (int i = 1; i <= n; i++) { scanf("%d ", w + i); } for (int i = 0; i < m; i++) { int a, b; scanf(" %d%d ", &a, &b); es.push_back({a, b, 1}); } char t; int x, v; for (scanf(" %c ", &t); t != 'E'; scanf(" %c ", &t)) { v = -INF; if (t == 'D') scanf(" %d ", &x), es[x - 1].use = 0; if (t == 'Q') scanf(" %d%d ", &x, &v); if (t == 'C') { scanf(" %d%d ", &x, &v); ops.push_back({t, x, w[x]}); w[x] = v; } else { ops.push_back({t, x, v}); } } for (int i = 1; i <= n; i++) { tr[i].insert(w[i]); } for (auto it : es) { if (!it.use) continue; add_edg(it.a, it.b); } reverse(begin(ops), end(ops)); LL tot = 0, cnt = 0; for (auto it : ops) { if (it.type == 'D') add_edg(es[it.x - 1].a, es[it.x - 1].b); if (it.type == 'C') change_weight(it.x, it.v); if (it.type == 'Q') tot += query(it.x, it.v), cnt++; } printf("Case %d: %.6f\n", ++kase, cnt ? (double)tot / cnt : 0); } return 0; }
[ "cfeitong@gmail.com" ]
cfeitong@gmail.com
00345adcdfa50e0f29d04ee0ba050d8c75457d0d
b1a9e8e726b608a06a17532224d376176b38ec3c
/Ejercicios/Ejercicio24-Suma de pares/pares.cpp
33edec28fdf24bd7a8739650a896feb0520a30a2
[ "MIT" ]
permissive
MercyAle/cpp
a0c84b6e43e0832903b91ee0aaa8472f53941609
6e870e8061859ac84b7b6b8140d976fdc96dc89e
refs/heads/master
2022-12-20T02:38:36.846215
2020-10-08T06:14:13
2020-10-08T06:14:13
277,032,519
1
0
null
null
null
null
UTF-8
C++
false
false
346
cpp
#include <iostream> using namespace std; int main(int argc, char const *argv[]) { int pares = 0; for (int i = 1; i <= 10; i++) { if (i % 2 == 0) { pares = pares + i; } cout << i << " "; } cout << endl; cout << endl; cout << "Total pares: " << pares; return 0; }
[ "Alejandra-paad@outlook.es" ]
Alejandra-paad@outlook.es
6b03dc9a268356abf24f2503cbca190c5d744ccc
f9460a32293bb0aa353185e230c288dacca75545
/src/codegen/buffering_consumer.cpp
b1c09e4d715c24a541e1f89fdad8033b5aed72e2
[ "Apache-2.0" ]
permissive
haoxianghua/peloton
01eef512e4b4bb2f5d55e3b4bf57148b98481a8b
c87382f20eb8f529a4bb08ff42ca084dace55bae
refs/heads/master
2021-07-14T11:18:58.735262
2017-07-07T10:50:42
2017-07-07T15:54:30
96,133,102
0
0
null
2017-07-03T17:02:17
2017-07-03T17:02:17
null
UTF-8
C++
false
false
5,381
cpp
//===----------------------------------------------------------------------===// // // Peloton // // buffering_consumer.cpp // // Identification: src/codegen/buffering_consumer.cpp // // Copyright (c) 2015-17, Carnegie Mellon University Database Group // //===----------------------------------------------------------------------===// #include "codegen/buffering_consumer.h" #include "codegen/if.h" #include "codegen/values_runtime_proxy.h" #include "codegen/value_proxy.h" #include "codegen/type/sql_type.h" #include "planner/binding_context.h" namespace peloton { namespace codegen { //===----------------------------------------------------------------------===// // WRAPPED TUPLE //===----------------------------------------------------------------------===// // Basic Constructor WrappedTuple::WrappedTuple(peloton::type::Value *vals, uint32_t num_vals) : ContainerTuple(&tuple_), tuple_(vals, vals + num_vals) {} // Copy Constructor WrappedTuple::WrappedTuple(const WrappedTuple &o) : ContainerTuple(&tuple_), tuple_(o.tuple_) {} WrappedTuple &WrappedTuple::operator=(const WrappedTuple &o) { expression::ContainerTuple<std::vector<peloton::type::Value>>::operator=(o); tuple_ = o.tuple_; return *this; } //===----------------------------------------------------------------------===// // RESULT BUFFERING CONSUMER //===----------------------------------------------------------------------===// BufferingConsumer::BufferingConsumer(const std::vector<oid_t> &cols, planner::BindingContext &context) { for (oid_t col_id : cols) { output_ais_.push_back(context.Find(col_id)); } state.output = &tuples_; } // Append the array of values (i.e., a tuple) into the consumer's buffer of // output tuples. void BufferingConsumer::BufferTuple(char *state, peloton::type::Value *vals, uint32_t num_vals) { BufferingState *buffer_state = reinterpret_cast<BufferingState *>(state); buffer_state->output->emplace_back(vals, num_vals); } // Get a proxy to BufferingConsumer::BufferTuple(...) llvm::Function *BufferingConsumer::_BufferTupleProxy::GetFunction( CodeGen &codegen) { const std::string &fn_name = #ifdef __APPLE__ "_ZN7peloton7codegen17BufferingConsumer11BufferTupleEPcPNS_4type5ValueEj"; #else "_ZN7peloton7codegen17BufferingConsumer11BufferTupleEPcPNS_4type5ValueEj"; #endif // Has the function already been registered? llvm::Function *llvm_fn = codegen.LookupFunction(fn_name); if (llvm_fn != nullptr) { return llvm_fn; } std::vector<llvm::Type *> args = { codegen.CharPtrType(), ValueProxy::GetType(codegen)->getPointerTo(), codegen.Int32Type()}; auto *fn_type = llvm::FunctionType::get(codegen.VoidType(), args, false); return codegen.RegisterFunction(fn_name, fn_type); } // Create two pieces of state: a pointer to the output tuple vector and an // on-stack value array representing a single tuple. void BufferingConsumer::Prepare(CompilationContext &ctx) { auto &codegen = ctx.GetCodeGen(); auto &runtime_state = ctx.GetRuntimeState(); consumer_state_id_ = runtime_state.RegisterState("consumerState", codegen.CharPtrType()); // Introduce our output tuple buffer as local (on stack) auto *value_type = ValueProxy::GetType(codegen); tuple_output_state_id_ = runtime_state.RegisterState( "output", codegen.VectorType(value_type, output_ais_.size()), true); } // For each output attribute, we write out the attribute's value into the // currently active output tuple. When all attributes have been written, we // call BufferTuple(...) to append the currently active tuple into the output. void BufferingConsumer::ConsumeResult(ConsumerContext &ctx, RowBatch::Row &row) const { auto &codegen = ctx.GetCodeGen(); auto *tuple_buffer_ = GetStateValue(ctx, tuple_output_state_id_); for (size_t i = 0; i < output_ais_.size(); i++) { // Derive the column's final value Value val = row.DeriveValue(codegen, output_ais_[i]); PL_ASSERT(output_ais_[i]->type == val.GetType()); const auto &sql_type = val.GetType().GetSqlType(); // Check if it's NULL Value null_val; If val_is_null{codegen, val.IsNull(codegen)}; { // If the value is NULL (i.e., has the NULL bit set), produce the NULL // value for the given type. null_val = sql_type.GetNullValue(codegen); } val_is_null.EndIf(); val = val_is_null.BuildPHI(null_val, val); // Output the value using the type's output function auto *output_func = sql_type.GetOutputFunction(codegen, val.GetType()); // Setup the function arguments std::vector<llvm::Value *> args = {tuple_buffer_, codegen.Const64(i), val.GetValue()}; if (val.GetLength() != nullptr) args.push_back(val.GetLength()); // Call the function codegen.CallFunc(output_func, args); } // Append the tuple to the output buffer (by calling BufferTuple(...)) auto *consumer_state = GetStateValue(ctx, consumer_state_id_); std::vector<llvm::Value *> args = {consumer_state, tuple_buffer_, codegen.Const32(output_ais_.size())}; codegen.CallFunc(_BufferTupleProxy::GetFunction(codegen), args); } } // namespace test } // namespace peloton
[ "pavlo@cs.brown.edu" ]
pavlo@cs.brown.edu
ea417d60b2cf5ac103e7695332bc9a26e613e257
2fb89557280b7db9d6de5e21d41d0926e63a7b10
/CV_Ball/serialport.cpp
4d46ff1d4bde1802d968b3687fa2ffba74b117ea
[]
no_license
Lee-JaeWon/Stewart-Platform-with-CV
f97ede4c816455251e5689be31b47ffe5aa41f95
3c2c9f0fb04a63cfa87454091be0fb9a994cfe5f
refs/heads/main
2023-07-02T16:31:03.607666
2021-08-08T12:06:48
2021-08-08T12:06:48
364,308,064
3
0
null
null
null
null
UTF-8
C++
false
false
3,012
cpp
#include "serialport.h" CSerialPort::CSerialPort() { } CSerialPort::~CSerialPort() { } bool CSerialPort::OpenPort(CString portname) { m_hComm = CreateFile(L"//./" + portname, GENERIC_READ | GENERIC_WRITE, 0, 0, OPEN_EXISTING, 0, 0); if (m_hComm == INVALID_HANDLE_VALUE) { return false; } else return true; } bool CSerialPort::ConfigurePort(DWORD BaudRate, BYTE ByteSize, DWORD fParity, BYTE Parity, BYTE StopBits) { if ((m_bPortReady = GetCommState(m_hComm, &m_dcb)) == 0) { printf("\nGetCommState Error\n"); //"MessageBox(L, L"Error", MB_OK + MB_ICONERROR); CloseHandle(m_hComm); return false; } m_dcb.BaudRate = BaudRate; m_dcb.ByteSize = ByteSize; m_dcb.Parity = Parity; m_dcb.StopBits = StopBits; m_dcb.fBinary = true; m_dcb.fDsrSensitivity = false; m_dcb.fParity = fParity; m_dcb.fOutX = false; m_dcb.fInX = false; m_dcb.fNull = false; m_dcb.fAbortOnError = true; m_dcb.fOutxCtsFlow = false; m_dcb.fOutxDsrFlow = false; m_dcb.fDtrControl = DTR_CONTROL_DISABLE; m_dcb.fDsrSensitivity = false; m_dcb.fRtsControl = RTS_CONTROL_DISABLE; m_dcb.fOutxCtsFlow = false; m_dcb.fOutxCtsFlow = false; m_bPortReady = SetCommState(m_hComm, &m_dcb); if (m_bPortReady == 0) { //MessageBox(L"SetCommState Error"); printf("SetCommState Error"); CloseHandle(m_hComm); return false; } return true; } bool CSerialPort::SetCommunicationTimeouts(DWORD ReadIntervalTimeout, DWORD ReadTotalTimeoutMultiplier, DWORD ReadTotalTimeoutConstant, DWORD WriteTotalTimeoutMultiplier, DWORD WriteTotalTimeoutConstant) { if ((m_bPortReady = GetCommTimeouts(m_hComm, &m_CommTimeouts)) == 0) return false; m_CommTimeouts.ReadIntervalTimeout = ReadIntervalTimeout; m_CommTimeouts.ReadTotalTimeoutConstant = ReadTotalTimeoutConstant; m_CommTimeouts.ReadTotalTimeoutMultiplier = ReadTotalTimeoutMultiplier; m_CommTimeouts.WriteTotalTimeoutConstant = WriteTotalTimeoutConstant; m_CommTimeouts.WriteTotalTimeoutMultiplier = WriteTotalTimeoutMultiplier; m_bPortReady = SetCommTimeouts(m_hComm, &m_CommTimeouts); if (m_bPortReady == 0) { //MessageBox(L"StCommTimeouts function failed",L"Com Port Error",MB_OK+MB_ICONERROR); printf("\nStCommTimeouts function failed\n"); CloseHandle(m_hComm); return false; } return true; } bool CSerialPort::WriteByte(BYTE bybyte) { //iBytesWritten=0; //m_iBytesWritten=0; if (WriteFile(m_hComm, &bybyte, 1, &m_iBytesWritten, NULL) == 0) return false; else return true; } bool CSerialPort::ReadByte(BYTE& resp) { BYTE rx; resp = 0; DWORD dwBytesTransferred = 0; if (ReadFile(m_hComm, &rx, 1, &dwBytesTransferred, 0)) { if (dwBytesTransferred == 1) { resp = rx; return true; } } return false; } bool CSerialPort::ReadByte(BYTE* resp, UINT size) { DWORD dwBytesTransferred = 0; if (ReadFile(m_hComm, resp, size, &dwBytesTransferred, 0)) { if (dwBytesTransferred == size) return true; } return false; } void CSerialPort::ClosePort() { CloseHandle(m_hComm); return; }
[ "jawwoni@naver.com" ]
jawwoni@naver.com
31a79b1052f9223a90d3bf5119eaba93a840c1ed
58c84e490bcf71edd8b175daa987c1dfd78ac76a
/src/miner.cpp
8d38626c1485c668690d83eee805ba67893d249b
[ "MIT" ]
permissive
biohazard01/source
34a5c25b961b0ba6851ac7793ffd001dd462ab02
ef069a635edea1ffe783efd0e57996d0241c1ca3
refs/heads/master
2020-12-26T18:44:39.087561
2020-02-01T11:23:06
2020-02-01T11:23:06
237,602,042
0
0
null
null
null
null
UTF-8
C++
false
false
20,037
cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Copyright (c) 2013 The NovaCoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "txdb.h" #include "miner.h" #include "kernel.h" using namespace std; ////////////////////////////////////////////////////////////////////////////// // // BitcoinMiner // extern unsigned int nMinerSleep; extern bool fStakeLowPriority; int static FormatHashBlocks(void* pbuffer, unsigned int len) { unsigned char* pdata = (unsigned char*)pbuffer; unsigned int blocks = 1 + ((len + 8) / 64); unsigned char* pend = pdata + 64 * blocks; memset(pdata + len, 0, 64 * blocks - len); pdata[len] = 0x80; unsigned int bits = len * 8; pend[-1] = (bits >> 0) & 0xff; pend[-2] = (bits >> 8) & 0xff; pend[-3] = (bits >> 16) & 0xff; pend[-4] = (bits >> 24) & 0xff; return blocks; } static const unsigned int pSHA256InitState[8] = {0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19}; void SHA256Transform(void* pstate, void* pinput, const void* pinit) { SHA256_CTX ctx; unsigned char data[64]; SHA256_Init(&ctx); for (int i = 0; i < 16; i++) ((uint32_t*)data)[i] = ByteReverse(((uint32_t*)pinput)[i]); for (int i = 0; i < 8; i++) ctx.h[i] = ((uint32_t*)pinit)[i]; SHA256_Update(&ctx, data, sizeof(data)); for (int i = 0; i < 8; i++) ((uint32_t*)pstate)[i] = ctx.h[i]; } // Some explaining would be appreciated class COrphan { public: CTransaction* ptx; set<uint256> setDependsOn; double dPriority; double dFeePerKb; COrphan(CTransaction* ptxIn) { ptx = ptxIn; dPriority = dFeePerKb = 0; } void print() const { printf("COrphan(hash=%s, dPriority=%.1f, dFeePerKb=%.1f)\n", ptx->GetHash().ToString().substr(0,10).c_str(), dPriority, dFeePerKb); BOOST_FOREACH(uint256 hash, setDependsOn) printf(" setDependsOn %s\n", hash.ToString().substr(0,10).c_str()); } }; uint64_t nLastBlockTx = 0; uint64_t nLastBlockSize = 0; int64_t nLastCoinStakeSearchInterval = 0; // We want to sort transactions by priority and fee, so: typedef boost::tuple<double, double, CTransaction*> TxPriority; class TxPriorityCompare { bool byFee; public: TxPriorityCompare(bool _byFee) : byFee(_byFee) { } bool operator()(const TxPriority& a, const TxPriority& b) { if (byFee) { if (a.get<1>() == b.get<1>()) return a.get<0>() < b.get<0>(); return a.get<1>() < b.get<1>(); } else { if (a.get<0>() == b.get<0>()) return a.get<1>() < b.get<1>(); return a.get<0>() < b.get<0>(); } } }; // CreateNewBlock: create new block (without proof-of-work/proof-of-stake) CBlock* CreateNewBlock(CWallet* pwallet, bool fProofOfStake, int64_t* pFees) { // Create new block auto_ptr<CBlock> pblock(new CBlock()); if (!pblock.get()) return NULL; CBlockIndex* pindexPrev = pindexBest; // Create coinbase tx CTransaction txNew; txNew.vin.resize(1); txNew.vin[0].prevout.SetNull(); txNew.vout.resize(1); if (!fProofOfStake) { CReserveKey reservekey(pwallet); CPubKey pubkey; if (!reservekey.GetReservedKey(pubkey)) return NULL; txNew.vout[0].scriptPubKey.SetDestination(pubkey.GetID()); } else { // Height first in coinbase required for block.version=2 txNew.vin[0].scriptSig = (CScript() << pindexPrev->nHeight+1) + COINBASE_FLAGS; assert(txNew.vin[0].scriptSig.size() <= 100); txNew.vout[0].SetEmpty(); } // Add our coinbase tx as first transaction pblock->vtx.push_back(txNew); // Largest block you're willing to create: unsigned int nBlockMaxSize = GetArg("-blockmaxsize", MAX_BLOCK_SIZE_GEN/2); // Limit to betweeen 1K and MAX_BLOCK_SIZE-1K for sanity: nBlockMaxSize = std::max((unsigned int)1000, std::min((unsigned int)(MAX_BLOCK_SIZE-1000), nBlockMaxSize)); // How much of the block should be dedicated to high-priority transactions, // included regardless of the fees they pay unsigned int nBlockPrioritySize = GetArg("-blockprioritysize", 27000); nBlockPrioritySize = std::min(nBlockMaxSize, nBlockPrioritySize); // Minimum block size you want to create; block will be filled with free transactions // until there are no more or the block reaches this size: unsigned int nBlockMinSize = GetArg("-blockminsize", 0); nBlockMinSize = std::min(nBlockMaxSize, nBlockMinSize); // Fee-per-kilobyte amount considered the same as "free" // Be careful setting this: if you set it to zero then // a transaction spammer can cheaply fill blocks using // 1-satoshi-fee transactions. It should be set above the real // cost to you of processing a transaction. int64_t nMinTxFee = MIN_TX_FEE; if (mapArgs.count("-mintxfee")) ParseMoney(mapArgs["-mintxfee"], nMinTxFee); pblock->nBits = GetNextTargetRequired(pindexPrev, fProofOfStake); // Collect memory pool transactions into the block int64_t nFees = 0; { LOCK2(cs_main, mempool.cs); CTxDB txdb("r"); // Priority order to process transactions list<COrphan> vOrphan; // list memory doesn't move map<uint256, vector<COrphan*> > mapDependers; // This vector will be sorted into a priority queue: vector<TxPriority> vecPriority; vecPriority.reserve(mempool.mapTx.size()); for (map<uint256, CTransaction>::iterator mi = mempool.mapTx.begin(); mi != mempool.mapTx.end(); ++mi) { CTransaction& tx = (*mi).second; if (tx.IsCoinBase() || tx.IsCoinStake() || !tx.IsFinal()) continue; COrphan* porphan = NULL; double dPriority = 0; int64_t nTotalIn = 0; bool fMissingInputs = false; BOOST_FOREACH(const CTxIn& txin, tx.vin) { // Read prev transaction CTransaction txPrev; CTxIndex txindex; if (!txPrev.ReadFromDisk(txdb, txin.prevout, txindex)) { // This should never happen; all transactions in the memory // pool should connect to either transactions in the chain // or other transactions in the memory pool. if (!mempool.mapTx.count(txin.prevout.hash)) { printf("ERROR: mempool transaction missing input\n"); if (fDebug) assert("mempool transaction missing input" == 0); fMissingInputs = true; if (porphan) vOrphan.pop_back(); break; } // Has to wait for dependencies if (!porphan) { // Use list for automatic deletion vOrphan.push_back(COrphan(&tx)); porphan = &vOrphan.back(); } mapDependers[txin.prevout.hash].push_back(porphan); porphan->setDependsOn.insert(txin.prevout.hash); nTotalIn += mempool.mapTx[txin.prevout.hash].vout[txin.prevout.n].nValue; continue; } int64_t nValueIn = txPrev.vout[txin.prevout.n].nValue; nTotalIn += nValueIn; int nConf = txindex.GetDepthInMainChain(); dPriority += (double)nValueIn * nConf; } if (fMissingInputs) continue; // Priority is sum(valuein * age) / txsize unsigned int nTxSize = ::GetSerializeSize(tx, SER_NETWORK, PROTOCOL_VERSION); dPriority /= nTxSize; // This is a more accurate fee-per-kilobyte than is used by the client code, because the // client code rounds up the size to the nearest 1K. That's good, because it gives an // incentive to create smaller transactions. double dFeePerKb = double(nTotalIn-tx.GetValueOut()) / (double(nTxSize)/1000.0); if (porphan) { porphan->dPriority = dPriority; porphan->dFeePerKb = dFeePerKb; } else vecPriority.push_back(TxPriority(dPriority, dFeePerKb, &(*mi).second)); } // Collect transactions into block map<uint256, CTxIndex> mapTestPool; uint64_t nBlockSize = 1000; uint64_t nBlockTx = 0; int nBlockSigOps = 100; bool fSortedByFee = (nBlockPrioritySize <= 0); TxPriorityCompare comparer(fSortedByFee); std::make_heap(vecPriority.begin(), vecPriority.end(), comparer); while (!vecPriority.empty()) { // Take highest priority transaction off the priority queue: double dPriority = vecPriority.front().get<0>(); double dFeePerKb = vecPriority.front().get<1>(); CTransaction& tx = *(vecPriority.front().get<2>()); std::pop_heap(vecPriority.begin(), vecPriority.end(), comparer); vecPriority.pop_back(); // Size limits unsigned int nTxSize = ::GetSerializeSize(tx, SER_NETWORK, PROTOCOL_VERSION); if (nBlockSize + nTxSize >= nBlockMaxSize) continue; // Legacy limits on sigOps: unsigned int nTxSigOps = tx.GetLegacySigOpCount(); if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS) continue; // Timestamp limit if (tx.nTime > GetAdjustedTime() || (fProofOfStake && tx.nTime > pblock->vtx[0].nTime)) continue; // Transaction fee int64_t nMinFee = tx.GetMinFee(nBlockSize, GMF_BLOCK); // Skip free transactions if we're past the minimum block size: if (fSortedByFee && (dFeePerKb < nMinTxFee) && (nBlockSize + nTxSize >= nBlockMinSize)) continue; // Prioritize by fee once past the priority size or we run out of high-priority // transactions: if (!fSortedByFee && ((nBlockSize + nTxSize >= nBlockPrioritySize) || (dPriority < COIN * 144 / 250))) { fSortedByFee = true; comparer = TxPriorityCompare(fSortedByFee); std::make_heap(vecPriority.begin(), vecPriority.end(), comparer); } // Connecting shouldn't fail due to dependency on other memory pool transactions // because we're already processing them in order of dependency map<uint256, CTxIndex> mapTestPoolTmp(mapTestPool); MapPrevTx mapInputs; bool fInvalid; if (!tx.FetchInputs(txdb, mapTestPoolTmp, false, true, mapInputs, fInvalid)) continue; int64_t nTxFees = tx.GetValueIn(mapInputs)-tx.GetValueOut(); if (nTxFees < nMinFee) continue; nTxSigOps += tx.GetP2SHSigOpCount(mapInputs); if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS) continue; if (!tx.ConnectInputs(txdb, mapInputs, mapTestPoolTmp, CDiskTxPos(1,1,1), pindexPrev, false, true)) continue; mapTestPoolTmp[tx.GetHash()] = CTxIndex(CDiskTxPos(1,1,1), tx.vout.size()); swap(mapTestPool, mapTestPoolTmp); // Added pblock->vtx.push_back(tx); nBlockSize += nTxSize; ++nBlockTx; nBlockSigOps += nTxSigOps; nFees += nTxFees; if (fDebug && GetBoolArg("-printpriority")) { printf("priority %.1f feeperkb %.1f txid %s\n", dPriority, dFeePerKb, tx.GetHash().ToString().c_str()); } // Add transactions that depend on this one to the priority queue uint256 hash = tx.GetHash(); if (mapDependers.count(hash)) { BOOST_FOREACH(COrphan* porphan, mapDependers[hash]) { if (!porphan->setDependsOn.empty()) { porphan->setDependsOn.erase(hash); if (porphan->setDependsOn.empty()) { vecPriority.push_back(TxPriority(porphan->dPriority, porphan->dFeePerKb, porphan->ptx)); std::push_heap(vecPriority.begin(), vecPriority.end(), comparer); } } } } } nLastBlockTx = nBlockTx; nLastBlockSize = nBlockSize; if (fDebug && GetBoolArg("-printpriority")) printf("CreateNewBlock(): total size %"PRIu64"\n", nBlockSize); if (!fProofOfStake) pblock->vtx[0].vout[0].nValue = GetProofOfWorkReward(nFees); if (pFees) *pFees = nFees; // Fill in header pblock->hashPrevBlock = pindexPrev->GetBlockHash(); pblock->nTime = max(pindexPrev->GetPastTimeLimit()+1, pblock->GetMaxTransactionTime()); pblock->nTime = max(pblock->GetBlockTime(), PastDrift(pindexPrev->GetBlockTime())); if (!fProofOfStake) pblock->UpdateTime(pindexPrev); pblock->nNonce = 0; } return pblock.release(); } void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& nExtraNonce) { // Update nExtraNonce static uint256 hashPrevBlock; if (hashPrevBlock != pblock->hashPrevBlock) { nExtraNonce = 0; hashPrevBlock = pblock->hashPrevBlock; } ++nExtraNonce; unsigned int nHeight = pindexPrev->nHeight+1; // Height first in coinbase required for block.version=2 pblock->vtx[0].vin[0].scriptSig = (CScript() << nHeight << CBigNum(nExtraNonce)) + COINBASE_FLAGS; assert(pblock->vtx[0].vin[0].scriptSig.size() <= 100); pblock->hashMerkleRoot = pblock->BuildMerkleTree(); } void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash1) { // // Pre-build hash buffers // struct { struct unnamed2 { int nVersion; uint256 hashPrevBlock; uint256 hashMerkleRoot; unsigned int nTime; unsigned int nBits; unsigned int nNonce; } block; unsigned char pchPadding0[64]; uint256 hash1; unsigned char pchPadding1[64]; } tmp; memset(&tmp, 0, sizeof(tmp)); tmp.block.nVersion = pblock->nVersion; tmp.block.hashPrevBlock = pblock->hashPrevBlock; tmp.block.hashMerkleRoot = pblock->hashMerkleRoot; tmp.block.nTime = pblock->nTime; tmp.block.nBits = pblock->nBits; tmp.block.nNonce = pblock->nNonce; FormatHashBlocks(&tmp.block, sizeof(tmp.block)); FormatHashBlocks(&tmp.hash1, sizeof(tmp.hash1)); // Byte swap all the input buffer for (unsigned int i = 0; i < sizeof(tmp)/4; i++) ((unsigned int*)&tmp)[i] = ByteReverse(((unsigned int*)&tmp)[i]); // Precalc the first half of the first hash, which stays constant SHA256Transform(pmidstate, &tmp.block, pSHA256InitState); memcpy(pdata, &tmp.block, 128); memcpy(phash1, &tmp.hash1, 64); } bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey) { uint256 hashBlock = pblock->GetHash(); uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256(); if(!pblock->IsProofOfWork()) return error("CheckWork() : %s is not a proof-of-work block", hashBlock.GetHex().c_str()); if (hashBlock > hashTarget) return error("CheckWork() : proof-of-work not meeting target"); //// debug print printf("CheckWork() : new proof-of-work block found \n hash: %s \ntarget: %s\n", hashBlock.GetHex().c_str(), hashTarget.GetHex().c_str()); pblock->print(); printf("generated %s\n", FormatMoney(pblock->vtx[0].vout[0].nValue).c_str()); // Found a solution { LOCK(cs_main); if (pblock->hashPrevBlock != hashBestChain) return error("CheckWork() : generated block is stale"); // Remove key from key pool reservekey.KeepKey(); // Track how many getdata requests this block gets { LOCK(wallet.cs_wallet); wallet.mapRequestCount[hashBlock] = 0; } // Process this block the same as if we had received it from another node if (!ProcessBlock(NULL, pblock)) return error("CheckWork() : ProcessBlock, block not accepted"); } return true; } bool CheckStake(CBlock* pblock, CWallet& wallet) { uint256 proofHash = 0, hashTarget = 0; uint256 hashBlock = pblock->GetHash(); if(!pblock->IsProofOfStake()) return error("CheckStake() : %s is not a proof-of-stake block", hashBlock.GetHex().c_str()); // verify hash target and signature of coinstake tx if (!CheckProofOfStake(pblock->vtx[1], pblock->nBits, proofHash, hashTarget)) return error("CheckStake() : proof-of-stake checking failed"); //// debug print printf("CheckStake() : new proof-of-stake block found \n hash: %s \nproofhash: %s \ntarget: %s\n", hashBlock.GetHex().c_str(), proofHash.GetHex().c_str(), hashTarget.GetHex().c_str()); pblock->print(); printf("out %s\n", FormatMoney(pblock->vtx[1].GetValueOut()).c_str()); // Found a solution { LOCK(cs_main); if (pblock->hashPrevBlock != hashBestChain) return error("CheckStake() : generated block is stale"); // Track how many getdata requests this block gets { LOCK(wallet.cs_wallet); wallet.mapRequestCount[hashBlock] = 0; } // Process this block the same as if we had received it from another node if (!ProcessBlock(NULL, pblock)) return error("CheckStake() : ProcessBlock, block not accepted"); } return true; } void StakeMiner(CWallet *pwallet) { if (fStakeLowPriority) SetThreadPriority(THREAD_PRIORITY_LOWEST); // Make this thread recognisable as the mining thread RenameThread("corona-miner"); bool fTryToSync = true; while (true) { if (fShutdown) return; while (pwallet->IsLocked()) { nLastCoinStakeSearchInterval = 0; MilliSleep(1000); if (fShutdown) return; } while (vNodes.empty() || IsInitialBlockDownload()) { nLastCoinStakeSearchInterval = 0; fTryToSync = true; MilliSleep(1000); if (fShutdown) return; } if (fTryToSync) { fTryToSync = false; if (vNodes.size() < 3 || nBestHeight < GetNumBlocksOfPeers()) { MilliSleep(60000); continue; } } // // Create new block // int64_t nFees; auto_ptr<CBlock> pblock(CreateNewBlock(pwallet, true, &nFees)); if (!pblock.get()) return; // Trying to sign a block if (pblock->SignBlock(*pwallet, nFees)) { SetThreadPriority(THREAD_PRIORITY_NORMAL); CheckStake(pblock.get(), *pwallet); if (fStakeLowPriority) SetThreadPriority(THREAD_PRIORITY_LOWEST); MilliSleep(500); } else MilliSleep(nMinerSleep); } }
[ "you@example.com" ]
you@example.com
d65f99b12b739369cb2d2332cd09298717ba798b
d0eab37f29a2fc119b7c46e224bc0cdc57c9517e
/src/qt/notificator.h
293de3399b540b43d7b6faa50b5b6f65c162c8b9
[ "MIT" ]
permissive
netchaindev/Netchain
2d6542088799e7fea0afc812b8f6f81d95363768
6f368f23f8958986661edc38fb0cfe5fe58b9608
refs/heads/master
2020-05-01T18:01:21.241038
2019-04-14T11:22:08
2019-04-14T11:22:08
177,614,806
0
0
null
null
null
null
UTF-8
C++
false
false
2,589
h
// Copyright (c) 2011-2013 The Bitcoin developers // Copyright (c) 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. #ifndef BITCOIN_QT_NOTIFICATOR_H #define BITCOIN_QT_NOTIFICATOR_H #if defined(HAVE_CONFIG_H) #include "config/netchain-config.h" #endif #include <QIcon> #include <QObject> QT_BEGIN_NAMESPACE class QSystemTrayIcon; #ifdef USE_DBUS class QDBusInterface; #endif QT_END_NAMESPACE /** Cross-platform desktop notification client. */ class Notificator : public QObject { Q_OBJECT public: /** Create a new notificator. @note Ownership of trayIcon is not transferred to this object. */ Notificator(const QString& programName, QSystemTrayIcon* trayIcon, QWidget* parent); ~Notificator(); // Message class enum Class { Information, /**< Informational message */ Warning, /**< Notify user of potential problem */ Critical /**< An error occurred */ }; public slots: /** Show notification message. @param[in] cls general message class @param[in] title title shown with message @param[in] text message content @param[in] icon optional icon to show with message @param[in] millisTimeout notification timeout in milliseconds (defaults to 10 seconds) @note Platform implementations are free to ignore any of the provided fields except for \a text. */ void notify(Class cls, const QString& title, const QString& text, const QIcon& icon = QIcon(), int millisTimeout = 10000); private: QWidget* parent; enum Mode { None, /**< Ignore informational notifications, and show a modal pop-up dialog for Critical notifications. */ Freedesktop, /**< Use DBus org.freedesktop.Notifications */ QSystemTray, /**< Use QSystemTray::showMessage */ UserNotificationCenter /**< Use the 10.8+ User Notification Center (Mac only) */ }; QString programName; Mode mode; QSystemTrayIcon* trayIcon; #ifdef USE_DBUS QDBusInterface* interface; void notifyDBus(Class cls, const QString& title, const QString& text, const QIcon& icon, int millisTimeout); #endif void notifySystray(Class cls, const QString& title, const QString& text, const QIcon& icon, int millisTimeout); #ifdef Q_OS_MAC void notifyMacUserNotificationCenter(Class cls, const QString& title, const QString& text, const QIcon& icon); #endif }; #endif // BITCOIN_QT_NOTIFICATOR_H
[ "netchaindev@gmail.com" ]
netchaindev@gmail.com
b5e4eb9e225d6c7dc5bb7859dbf418336df18af9
fe30985f5243ac38a147d3adc51a208aabfc556f
/scripts/endscreen/definitions/endScreenDef.hpp
208153d8fb01133c16ce5fe71c45fbb5d3eb1248
[]
no_license
Rutek4/co_09_Action_at_the_tracks_v0_1_Rutek.cup_chernarus_A3
651a7b92b069ac4d886d27b1af85436f123b811d
e2684efd94f902291101a66b7f4d6b234ddc5d34
refs/heads/master
2023-01-02T20:28:53.444663
2020-10-29T17:49:01
2020-10-29T17:49:01
308,405,832
0
0
null
null
null
null
UTF-8
C++
false
false
2,018
hpp
class ENDSCREEN { idd = 400; movingEnable = false; enableSimulation = true; controls[] = {TITLE,MISSION_NAME,MISSION_OVERVIEWTEXT,OUTCOME,TASKS,LEFT_TEXT,RIGHT_TEXT,EXIT_TEXT}; class TITLE: RscStructuredText_title { idc = 1100; x = 0.386577 * safezoneW + safezoneX; y = 0.148089 * safezoneH + safezoneY; w = 0.226846 * safezoneW; h = 0.0439888 * safezoneH; size = "0.03 * safezoneH"; }; class MISSION_NAME: RscStructuredText_missionName { idc = 1101; x = 0.386577 * safezoneW + safezoneX; y = 0.203075 * safezoneH + safezoneY; w = 0.226846 * safezoneW; h = 0.0439888 * safezoneH; size = "0.03 * safezoneH"; }; class MISSION_OVERVIEWTEXT: RscStructuredText_missionOverviewText { idc = 1102; x = 0.345333 * safezoneW + safezoneX; y = 0.247064 * safezoneH + safezoneY; w = 0.309335 * safezoneW; h = 0.0659832 * safezoneH; size = "0.03 * safezoneH"; }; class OUTCOME: RscStructuredText_outcome { idc = 1103; x = 0.345333 * safezoneW + safezoneX; y = 0.313047 * safezoneH + safezoneY; w = 0.309335 * safezoneW; h = 0.0439888 * safezoneH; size = "0.03 * safezoneH"; }; class TASKS: RscStructuredText { idc = 1104; x = 0.345333 * safezoneW + safezoneX; y = 0.357036 * safezoneH + safezoneY; w = 0.309335 * safezoneW; h = 0.131966 * safezoneH; size = "0.03 * safezoneH"; }; class LEFT_TEXT: RscStructuredText { idc = 1105; x = 0.345333 * safezoneW + safezoneX; y = 0.489003 * safezoneH + safezoneY; w = 0.144356 * safezoneW; h = 0.318919 * safezoneH; size = "0.03 * safezoneH"; }; class RIGHT_TEXT: RscStructuredText { idc = 1106; x = 0.510311 * safezoneW + safezoneX; y = 0.489003 * safezoneH + safezoneY; w = 0.144356 * safezoneW; h = 0.318919 * safezoneH; size = "0.03 * safezoneH"; }; class EXIT_TEXT: RscStructuredText { idc = 1107; x = 0.345333 * safezoneW + safezoneX; y = 0.818919 * safezoneH + safezoneY; w = 0.309335 * safezoneW; h = 0.0439888 * safezoneH; size = "0.03 * safezoneH"; }; };
[ "102radius@gmail.com" ]
102radius@gmail.com
5a38c0c256cb5bfd40186852e1acbf282d9a81d4
003d6bad97bb88d517bdc859e7ad8ca39f51ab79
/Physics/Physics/SphereClass.cpp
28304e43d4b52b99aca61443f20fb183ecd716fc
[]
no_license
Andrewnopoulos/SchoolPhysics
d270a93b7a9115a621cab4586649e018fded44af
64c60e1eb1ecd80da4887d79b550830e88b30ca3
refs/heads/master
2016-09-01T12:43:52.678834
2015-08-06T06:08:23
2015-08-06T06:08:23
36,838,919
0
0
null
null
null
null
UTF-8
C++
false
false
448
cpp
#include "SphereClass.h" #include <Gizmos.h> SphereClass::SphereClass(glm::vec3 position, glm::vec3 velocity, float mass, float radius, float elasticity, glm::vec4 colour) : RigidBody(position, velocity, 0, mass, elasticity) { m_radius = radius; m_colour = colour; _shapeID = SPHERE; } SphereClass::~SphereClass() { } void SphereClass::MakeGizmo() { Gizmos::addSphere(m_position, m_radius, 8, 8, m_colour); } void SphereClass::Debug() { }
[ "andrew.giannopoulos@gmail.com" ]
andrew.giannopoulos@gmail.com
7573b07e8c097ad9950e3bc3104425d08f68ef12
de75637338706776f8770c9cd169761cec128579
/VHFOS/Viet heroes - Fight or Surrender/CGUISlotWindow.h
f187dfb469416a763e650be945e58a3acbda2db2
[ "BSD-2-Clause", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-other-permissive" ]
permissive
huytd/fosengine
e018957abb7b2ea2c4908167ec83cb459c3de716
1cebb1bec49720a8e9ecae1c3d0c92e8d16c27c5
refs/heads/master
2021-01-18T23:47:32.402023
2008-07-12T07:20:10
2008-07-12T07:20:10
38,933,821
0
0
null
null
null
null
UTF-8
C++
false
false
2,832
h
#ifndef __C_GUI_SLOT_WINDOW_H_INCLUDED__ #define __C_GUI_SLOT_WINDOW_H_INCLUDED__ #include <irrlicht.h> namespace irr { namespace gui { class CGUIBringUpSlotWindowButton; //! The slot window is pretty much just a copy of the irrlicht gui window exept for some small changes /** The close button doesn't remove the window but just makes it invisible and disableling it, the window can brought up again with the bring-up button */ class CGUISlotWindow : public IGUIWindow { public: //! Constructor CGUISlotWindow(IrrlichtDevice* device, IGUIElement* parent, s32 id, core::rect<s32> rectangle); //! Destrutor ~CGUISlotWindow(); //! called if an event happened. virtual bool OnEvent(const SEvent& event); //! update absolute position virtual void updateAbsolutePosition(); //! draws the element and its children virtual void draw(); //! Returns pointer to the close button virtual IGUIButton* getCloseButton() const; //! Returns pointer to the minimize button virtual IGUIButton* getMinimizeButton() const; //! Returns pointer to the maximize button virtual IGUIButton* getMaximizeButton() const; //! creates a bring-up button virtual CGUIBringUpSlotWindowButton* createBringUpButton(core::rect<s32> rectangle, IGUIElement* parent = 0, s32 id = -1, const wchar_t* text = 0, const wchar_t* tooltip = 0); //! adds a slot array to the window /** \param slotRect: the relative rect of the slots \param texture: the texture to apply to the slots \param parent: the parent \param id: the shared id of the slots \param relPos: the relative position of the upper left slot of the array \param arrayDim: the number of slots to create \param spacing: the space between the slots */ virtual core::array<IGUIElement*> addSlotArray(core::rect<s32> slotRect, video::ITexture* texture, IGUIElement* parent = 0, s32 id = -1, core::position2d<s32> relPos = core::position2d<s32>(10,20), core::dimension2d<s32> arrayDim = core::dimension2d<s32>(2,2), core::dimension2d<s32> spacing = core::dimension2d<s32>(5,5)); private: core::position2d<s32> DragStart; bool Dragging; IGUIButton* CloseButton; IGUIButton* MinButton; IGUIButton* RestoreButton; IrrlichtDevice* Device; }; }//end namespace gui }//end namespace irr #endif
[ "doqkhanh@52f955dd-904d-0410-b1ed-9fe3d3cbfe06" ]
doqkhanh@52f955dd-904d-0410-b1ed-9fe3d3cbfe06
241aa0e540ccbcc57e69f68db067ef40069bf59d
b827ffa4501f6a3ee6248073474870db97e68408
/proto/generated_proto/netmessages_public.pb.h
3448dcc065c3d30fb5b6cb78fd96b65a6fe02072
[]
no_license
jacano/projectX
7e96f273d3cfa53ec7ab7266385e08abf0459b60
3fa495431094122d9e1948d17c1d00ba4e74135a
refs/heads/master
2020-04-11T16:25:48.882501
2018-12-27T16:43:45
2018-12-27T16:43:45
161,923,916
1
1
null
null
null
null
UTF-8
C++
false
true
427,697
h
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: netmessages_public.proto #ifndef PROTOBUF_INCLUDED_netmessages_5fpublic_2eproto #define PROTOBUF_INCLUDED_netmessages_5fpublic_2eproto #include <string> #include <google/protobuf/stubs/common.h> #if GOOGLE_PROTOBUF_VERSION < 3006001 #error This file was generated by a newer version of protoc which is #error incompatible with your Protocol Buffer headers. Please update #error your headers. #endif #if 3006001 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION #error This file was generated by an older version of protoc which is #error incompatible with your Protocol Buffer headers. Please #error regenerate this file with a newer version of protoc. #endif #include <google/protobuf/io/coded_stream.h> #include <google/protobuf/arena.h> #include <google/protobuf/arenastring.h> #include <google/protobuf/generated_message_table_driven.h> #include <google/protobuf/generated_message_util.h> #include <google/protobuf/inlined_string_field.h> #include <google/protobuf/metadata.h> #include <google/protobuf/message.h> #include <google/protobuf/repeated_field.h> // IWYU pragma: export #include <google/protobuf/extension_set.h> // IWYU pragma: export #include <google/protobuf/generated_enum_reflection.h> #include <google/protobuf/unknown_field_set.h> #include <google/protobuf/descriptor.pb.h> // @@protoc_insertion_point(includes) #define PROTOBUF_INTERNAL_EXPORT_protobuf_netmessages_5fpublic_2eproto namespace protobuf_netmessages_5fpublic_2eproto { // Internal implementation detail -- do not use these members. struct TableStruct { static const ::google::protobuf::internal::ParseTableField entries[]; static const ::google::protobuf::internal::AuxillaryParseTableField aux[]; static const ::google::protobuf::internal::ParseTable schema[41]; static const ::google::protobuf::internal::FieldMetadata field_metadata[]; static const ::google::protobuf::internal::SerializationTable serialization_table[]; static const ::google::protobuf::uint32 offsets[]; }; void AddDescriptors(); } // namespace protobuf_netmessages_5fpublic_2eproto class CMsgQAngle; class CMsgQAngleDefaultTypeInternal; extern CMsgQAngleDefaultTypeInternal _CMsgQAngle_default_instance_; class CMsgRGBA; class CMsgRGBADefaultTypeInternal; extern CMsgRGBADefaultTypeInternal _CMsgRGBA_default_instance_; class CMsgVector; class CMsgVectorDefaultTypeInternal; extern CMsgVectorDefaultTypeInternal _CMsgVector_default_instance_; class CMsgVector2D; class CMsgVector2DDefaultTypeInternal; extern CMsgVector2DDefaultTypeInternal _CMsgVector2D_default_instance_; class CMsg_CVars; class CMsg_CVarsDefaultTypeInternal; extern CMsg_CVarsDefaultTypeInternal _CMsg_CVars_default_instance_; class CMsg_CVars_CVar; class CMsg_CVars_CVarDefaultTypeInternal; extern CMsg_CVars_CVarDefaultTypeInternal _CMsg_CVars_CVar_default_instance_; class CNETMsg_Disconnect; class CNETMsg_DisconnectDefaultTypeInternal; extern CNETMsg_DisconnectDefaultTypeInternal _CNETMsg_Disconnect_default_instance_; class CNETMsg_File; class CNETMsg_FileDefaultTypeInternal; extern CNETMsg_FileDefaultTypeInternal _CNETMsg_File_default_instance_; class CNETMsg_NOP; class CNETMsg_NOPDefaultTypeInternal; extern CNETMsg_NOPDefaultTypeInternal _CNETMsg_NOP_default_instance_; class CNETMsg_SetConVar; class CNETMsg_SetConVarDefaultTypeInternal; extern CNETMsg_SetConVarDefaultTypeInternal _CNETMsg_SetConVar_default_instance_; class CNETMsg_SignonState; class CNETMsg_SignonStateDefaultTypeInternal; extern CNETMsg_SignonStateDefaultTypeInternal _CNETMsg_SignonState_default_instance_; class CNETMsg_StringCmd; class CNETMsg_StringCmdDefaultTypeInternal; extern CNETMsg_StringCmdDefaultTypeInternal _CNETMsg_StringCmd_default_instance_; class CNETMsg_Tick; class CNETMsg_TickDefaultTypeInternal; extern CNETMsg_TickDefaultTypeInternal _CNETMsg_Tick_default_instance_; class CSVCMsg_BSPDecal; class CSVCMsg_BSPDecalDefaultTypeInternal; extern CSVCMsg_BSPDecalDefaultTypeInternal _CSVCMsg_BSPDecal_default_instance_; class CSVCMsg_ClassInfo; class CSVCMsg_ClassInfoDefaultTypeInternal; extern CSVCMsg_ClassInfoDefaultTypeInternal _CSVCMsg_ClassInfo_default_instance_; class CSVCMsg_ClassInfo_class_t; class CSVCMsg_ClassInfo_class_tDefaultTypeInternal; extern CSVCMsg_ClassInfo_class_tDefaultTypeInternal _CSVCMsg_ClassInfo_class_t_default_instance_; class CSVCMsg_CreateStringTable; class CSVCMsg_CreateStringTableDefaultTypeInternal; extern CSVCMsg_CreateStringTableDefaultTypeInternal _CSVCMsg_CreateStringTable_default_instance_; class CSVCMsg_CrosshairAngle; class CSVCMsg_CrosshairAngleDefaultTypeInternal; extern CSVCMsg_CrosshairAngleDefaultTypeInternal _CSVCMsg_CrosshairAngle_default_instance_; class CSVCMsg_FixAngle; class CSVCMsg_FixAngleDefaultTypeInternal; extern CSVCMsg_FixAngleDefaultTypeInternal _CSVCMsg_FixAngle_default_instance_; class CSVCMsg_GameEvent; class CSVCMsg_GameEventDefaultTypeInternal; extern CSVCMsg_GameEventDefaultTypeInternal _CSVCMsg_GameEvent_default_instance_; class CSVCMsg_GameEventList; class CSVCMsg_GameEventListDefaultTypeInternal; extern CSVCMsg_GameEventListDefaultTypeInternal _CSVCMsg_GameEventList_default_instance_; class CSVCMsg_GameEventList_descriptor_t; class CSVCMsg_GameEventList_descriptor_tDefaultTypeInternal; extern CSVCMsg_GameEventList_descriptor_tDefaultTypeInternal _CSVCMsg_GameEventList_descriptor_t_default_instance_; class CSVCMsg_GameEventList_key_t; class CSVCMsg_GameEventList_key_tDefaultTypeInternal; extern CSVCMsg_GameEventList_key_tDefaultTypeInternal _CSVCMsg_GameEventList_key_t_default_instance_; class CSVCMsg_GameEvent_key_t; class CSVCMsg_GameEvent_key_tDefaultTypeInternal; extern CSVCMsg_GameEvent_key_tDefaultTypeInternal _CSVCMsg_GameEvent_key_t_default_instance_; class CSVCMsg_GetCvarValue; class CSVCMsg_GetCvarValueDefaultTypeInternal; extern CSVCMsg_GetCvarValueDefaultTypeInternal _CSVCMsg_GetCvarValue_default_instance_; class CSVCMsg_Menu; class CSVCMsg_MenuDefaultTypeInternal; extern CSVCMsg_MenuDefaultTypeInternal _CSVCMsg_Menu_default_instance_; class CSVCMsg_PacketEntities; class CSVCMsg_PacketEntitiesDefaultTypeInternal; extern CSVCMsg_PacketEntitiesDefaultTypeInternal _CSVCMsg_PacketEntities_default_instance_; class CSVCMsg_Prefetch; class CSVCMsg_PrefetchDefaultTypeInternal; extern CSVCMsg_PrefetchDefaultTypeInternal _CSVCMsg_Prefetch_default_instance_; class CSVCMsg_Print; class CSVCMsg_PrintDefaultTypeInternal; extern CSVCMsg_PrintDefaultTypeInternal _CSVCMsg_Print_default_instance_; class CSVCMsg_SendTable; class CSVCMsg_SendTableDefaultTypeInternal; extern CSVCMsg_SendTableDefaultTypeInternal _CSVCMsg_SendTable_default_instance_; class CSVCMsg_SendTable_sendprop_t; class CSVCMsg_SendTable_sendprop_tDefaultTypeInternal; extern CSVCMsg_SendTable_sendprop_tDefaultTypeInternal _CSVCMsg_SendTable_sendprop_t_default_instance_; class CSVCMsg_ServerInfo; class CSVCMsg_ServerInfoDefaultTypeInternal; extern CSVCMsg_ServerInfoDefaultTypeInternal _CSVCMsg_ServerInfo_default_instance_; class CSVCMsg_SetPause; class CSVCMsg_SetPauseDefaultTypeInternal; extern CSVCMsg_SetPauseDefaultTypeInternal _CSVCMsg_SetPause_default_instance_; class CSVCMsg_SetView; class CSVCMsg_SetViewDefaultTypeInternal; extern CSVCMsg_SetViewDefaultTypeInternal _CSVCMsg_SetView_default_instance_; class CSVCMsg_Sounds; class CSVCMsg_SoundsDefaultTypeInternal; extern CSVCMsg_SoundsDefaultTypeInternal _CSVCMsg_Sounds_default_instance_; class CSVCMsg_Sounds_sounddata_t; class CSVCMsg_Sounds_sounddata_tDefaultTypeInternal; extern CSVCMsg_Sounds_sounddata_tDefaultTypeInternal _CSVCMsg_Sounds_sounddata_t_default_instance_; class CSVCMsg_TempEntities; class CSVCMsg_TempEntitiesDefaultTypeInternal; extern CSVCMsg_TempEntitiesDefaultTypeInternal _CSVCMsg_TempEntities_default_instance_; class CSVCMsg_UpdateStringTable; class CSVCMsg_UpdateStringTableDefaultTypeInternal; extern CSVCMsg_UpdateStringTableDefaultTypeInternal _CSVCMsg_UpdateStringTable_default_instance_; class CSVCMsg_UserMessage; class CSVCMsg_UserMessageDefaultTypeInternal; extern CSVCMsg_UserMessageDefaultTypeInternal _CSVCMsg_UserMessage_default_instance_; class CSVCMsg_VoiceData; class CSVCMsg_VoiceDataDefaultTypeInternal; extern CSVCMsg_VoiceDataDefaultTypeInternal _CSVCMsg_VoiceData_default_instance_; class CSVCMsg_VoiceInit; class CSVCMsg_VoiceInitDefaultTypeInternal; extern CSVCMsg_VoiceInitDefaultTypeInternal _CSVCMsg_VoiceInit_default_instance_; namespace google { namespace protobuf { template<> ::CMsgQAngle* Arena::CreateMaybeMessage<::CMsgQAngle>(Arena*); template<> ::CMsgRGBA* Arena::CreateMaybeMessage<::CMsgRGBA>(Arena*); template<> ::CMsgVector* Arena::CreateMaybeMessage<::CMsgVector>(Arena*); template<> ::CMsgVector2D* Arena::CreateMaybeMessage<::CMsgVector2D>(Arena*); template<> ::CMsg_CVars* Arena::CreateMaybeMessage<::CMsg_CVars>(Arena*); template<> ::CMsg_CVars_CVar* Arena::CreateMaybeMessage<::CMsg_CVars_CVar>(Arena*); template<> ::CNETMsg_Disconnect* Arena::CreateMaybeMessage<::CNETMsg_Disconnect>(Arena*); template<> ::CNETMsg_File* Arena::CreateMaybeMessage<::CNETMsg_File>(Arena*); template<> ::CNETMsg_NOP* Arena::CreateMaybeMessage<::CNETMsg_NOP>(Arena*); template<> ::CNETMsg_SetConVar* Arena::CreateMaybeMessage<::CNETMsg_SetConVar>(Arena*); template<> ::CNETMsg_SignonState* Arena::CreateMaybeMessage<::CNETMsg_SignonState>(Arena*); template<> ::CNETMsg_StringCmd* Arena::CreateMaybeMessage<::CNETMsg_StringCmd>(Arena*); template<> ::CNETMsg_Tick* Arena::CreateMaybeMessage<::CNETMsg_Tick>(Arena*); template<> ::CSVCMsg_BSPDecal* Arena::CreateMaybeMessage<::CSVCMsg_BSPDecal>(Arena*); template<> ::CSVCMsg_ClassInfo* Arena::CreateMaybeMessage<::CSVCMsg_ClassInfo>(Arena*); template<> ::CSVCMsg_ClassInfo_class_t* Arena::CreateMaybeMessage<::CSVCMsg_ClassInfo_class_t>(Arena*); template<> ::CSVCMsg_CreateStringTable* Arena::CreateMaybeMessage<::CSVCMsg_CreateStringTable>(Arena*); template<> ::CSVCMsg_CrosshairAngle* Arena::CreateMaybeMessage<::CSVCMsg_CrosshairAngle>(Arena*); template<> ::CSVCMsg_FixAngle* Arena::CreateMaybeMessage<::CSVCMsg_FixAngle>(Arena*); template<> ::CSVCMsg_GameEvent* Arena::CreateMaybeMessage<::CSVCMsg_GameEvent>(Arena*); template<> ::CSVCMsg_GameEventList* Arena::CreateMaybeMessage<::CSVCMsg_GameEventList>(Arena*); template<> ::CSVCMsg_GameEventList_descriptor_t* Arena::CreateMaybeMessage<::CSVCMsg_GameEventList_descriptor_t>(Arena*); template<> ::CSVCMsg_GameEventList_key_t* Arena::CreateMaybeMessage<::CSVCMsg_GameEventList_key_t>(Arena*); template<> ::CSVCMsg_GameEvent_key_t* Arena::CreateMaybeMessage<::CSVCMsg_GameEvent_key_t>(Arena*); template<> ::CSVCMsg_GetCvarValue* Arena::CreateMaybeMessage<::CSVCMsg_GetCvarValue>(Arena*); template<> ::CSVCMsg_Menu* Arena::CreateMaybeMessage<::CSVCMsg_Menu>(Arena*); template<> ::CSVCMsg_PacketEntities* Arena::CreateMaybeMessage<::CSVCMsg_PacketEntities>(Arena*); template<> ::CSVCMsg_Prefetch* Arena::CreateMaybeMessage<::CSVCMsg_Prefetch>(Arena*); template<> ::CSVCMsg_Print* Arena::CreateMaybeMessage<::CSVCMsg_Print>(Arena*); template<> ::CSVCMsg_SendTable* Arena::CreateMaybeMessage<::CSVCMsg_SendTable>(Arena*); template<> ::CSVCMsg_SendTable_sendprop_t* Arena::CreateMaybeMessage<::CSVCMsg_SendTable_sendprop_t>(Arena*); template<> ::CSVCMsg_ServerInfo* Arena::CreateMaybeMessage<::CSVCMsg_ServerInfo>(Arena*); template<> ::CSVCMsg_SetPause* Arena::CreateMaybeMessage<::CSVCMsg_SetPause>(Arena*); template<> ::CSVCMsg_SetView* Arena::CreateMaybeMessage<::CSVCMsg_SetView>(Arena*); template<> ::CSVCMsg_Sounds* Arena::CreateMaybeMessage<::CSVCMsg_Sounds>(Arena*); template<> ::CSVCMsg_Sounds_sounddata_t* Arena::CreateMaybeMessage<::CSVCMsg_Sounds_sounddata_t>(Arena*); template<> ::CSVCMsg_TempEntities* Arena::CreateMaybeMessage<::CSVCMsg_TempEntities>(Arena*); template<> ::CSVCMsg_UpdateStringTable* Arena::CreateMaybeMessage<::CSVCMsg_UpdateStringTable>(Arena*); template<> ::CSVCMsg_UserMessage* Arena::CreateMaybeMessage<::CSVCMsg_UserMessage>(Arena*); template<> ::CSVCMsg_VoiceData* Arena::CreateMaybeMessage<::CSVCMsg_VoiceData>(Arena*); template<> ::CSVCMsg_VoiceInit* Arena::CreateMaybeMessage<::CSVCMsg_VoiceInit>(Arena*); } // namespace protobuf } // namespace google enum NET_Messages { net_NOP = 0, net_Disconnect = 1, net_File = 2, net_Tick = 4, net_StringCmd = 5, net_SetConVar = 6, net_SignonState = 7 }; bool NET_Messages_IsValid(int value); const NET_Messages NET_Messages_MIN = net_NOP; const NET_Messages NET_Messages_MAX = net_SignonState; const int NET_Messages_ARRAYSIZE = NET_Messages_MAX + 1; const ::google::protobuf::EnumDescriptor* NET_Messages_descriptor(); inline const ::std::string& NET_Messages_Name(NET_Messages value) { return ::google::protobuf::internal::NameOfEnum( NET_Messages_descriptor(), value); } inline bool NET_Messages_Parse( const ::std::string& name, NET_Messages* value) { return ::google::protobuf::internal::ParseNamedEnum<NET_Messages>( NET_Messages_descriptor(), name, value); } enum SVC_Messages { svc_ServerInfo = 8, svc_SendTable = 9, svc_ClassInfo = 10, svc_SetPause = 11, svc_CreateStringTable = 12, svc_UpdateStringTable = 13, svc_VoiceInit = 14, svc_VoiceData = 15, svc_Print = 16, svc_Sounds = 17, svc_SetView = 18, svc_FixAngle = 19, svc_CrosshairAngle = 20, svc_BSPDecal = 21, svc_UserMessage = 23, svc_GameEvent = 25, svc_PacketEntities = 26, svc_TempEntities = 27, svc_Prefetch = 28, svc_Menu = 29, svc_GameEventList = 30, svc_GetCvarValue = 31 }; bool SVC_Messages_IsValid(int value); const SVC_Messages SVC_Messages_MIN = svc_ServerInfo; const SVC_Messages SVC_Messages_MAX = svc_GetCvarValue; const int SVC_Messages_ARRAYSIZE = SVC_Messages_MAX + 1; const ::google::protobuf::EnumDescriptor* SVC_Messages_descriptor(); inline const ::std::string& SVC_Messages_Name(SVC_Messages value) { return ::google::protobuf::internal::NameOfEnum( SVC_Messages_descriptor(), value); } inline bool SVC_Messages_Parse( const ::std::string& name, SVC_Messages* value) { return ::google::protobuf::internal::ParseNamedEnum<SVC_Messages>( SVC_Messages_descriptor(), name, value); } // =================================================================== class CMsgVector : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CMsgVector) */ { public: CMsgVector(); virtual ~CMsgVector(); CMsgVector(const CMsgVector& from); inline CMsgVector& operator=(const CMsgVector& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CMsgVector(CMsgVector&& from) noexcept : CMsgVector() { *this = ::std::move(from); } inline CMsgVector& operator=(CMsgVector&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CMsgVector& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CMsgVector* internal_default_instance() { return reinterpret_cast<const CMsgVector*>( &_CMsgVector_default_instance_); } static constexpr int kIndexInFileMessages = 0; void Swap(CMsgVector* other); friend void swap(CMsgVector& a, CMsgVector& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CMsgVector* New() const final { return CreateMaybeMessage<CMsgVector>(NULL); } CMsgVector* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CMsgVector>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CMsgVector& from); void MergeFrom(const CMsgVector& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CMsgVector* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional float x = 1; bool has_x() const; void clear_x(); static const int kXFieldNumber = 1; float x() const; void set_x(float value); // optional float y = 2; bool has_y() const; void clear_y(); static const int kYFieldNumber = 2; float y() const; void set_y(float value); // optional float z = 3; bool has_z() const; void clear_z(); static const int kZFieldNumber = 3; float z() const; void set_z(float value); // @@protoc_insertion_point(class_scope:CMsgVector) private: void set_has_x(); void clear_has_x(); void set_has_y(); void clear_has_y(); void set_has_z(); void clear_has_z(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; float x_; float y_; float z_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CMsgVector2D : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CMsgVector2D) */ { public: CMsgVector2D(); virtual ~CMsgVector2D(); CMsgVector2D(const CMsgVector2D& from); inline CMsgVector2D& operator=(const CMsgVector2D& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CMsgVector2D(CMsgVector2D&& from) noexcept : CMsgVector2D() { *this = ::std::move(from); } inline CMsgVector2D& operator=(CMsgVector2D&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CMsgVector2D& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CMsgVector2D* internal_default_instance() { return reinterpret_cast<const CMsgVector2D*>( &_CMsgVector2D_default_instance_); } static constexpr int kIndexInFileMessages = 1; void Swap(CMsgVector2D* other); friend void swap(CMsgVector2D& a, CMsgVector2D& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CMsgVector2D* New() const final { return CreateMaybeMessage<CMsgVector2D>(NULL); } CMsgVector2D* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CMsgVector2D>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CMsgVector2D& from); void MergeFrom(const CMsgVector2D& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CMsgVector2D* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional float x = 1; bool has_x() const; void clear_x(); static const int kXFieldNumber = 1; float x() const; void set_x(float value); // optional float y = 2; bool has_y() const; void clear_y(); static const int kYFieldNumber = 2; float y() const; void set_y(float value); // @@protoc_insertion_point(class_scope:CMsgVector2D) private: void set_has_x(); void clear_has_x(); void set_has_y(); void clear_has_y(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; float x_; float y_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CMsgQAngle : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CMsgQAngle) */ { public: CMsgQAngle(); virtual ~CMsgQAngle(); CMsgQAngle(const CMsgQAngle& from); inline CMsgQAngle& operator=(const CMsgQAngle& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CMsgQAngle(CMsgQAngle&& from) noexcept : CMsgQAngle() { *this = ::std::move(from); } inline CMsgQAngle& operator=(CMsgQAngle&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CMsgQAngle& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CMsgQAngle* internal_default_instance() { return reinterpret_cast<const CMsgQAngle*>( &_CMsgQAngle_default_instance_); } static constexpr int kIndexInFileMessages = 2; void Swap(CMsgQAngle* other); friend void swap(CMsgQAngle& a, CMsgQAngle& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CMsgQAngle* New() const final { return CreateMaybeMessage<CMsgQAngle>(NULL); } CMsgQAngle* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CMsgQAngle>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CMsgQAngle& from); void MergeFrom(const CMsgQAngle& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CMsgQAngle* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional float x = 1; bool has_x() const; void clear_x(); static const int kXFieldNumber = 1; float x() const; void set_x(float value); // optional float y = 2; bool has_y() const; void clear_y(); static const int kYFieldNumber = 2; float y() const; void set_y(float value); // optional float z = 3; bool has_z() const; void clear_z(); static const int kZFieldNumber = 3; float z() const; void set_z(float value); // @@protoc_insertion_point(class_scope:CMsgQAngle) private: void set_has_x(); void clear_has_x(); void set_has_y(); void clear_has_y(); void set_has_z(); void clear_has_z(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; float x_; float y_; float z_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CMsgRGBA : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CMsgRGBA) */ { public: CMsgRGBA(); virtual ~CMsgRGBA(); CMsgRGBA(const CMsgRGBA& from); inline CMsgRGBA& operator=(const CMsgRGBA& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CMsgRGBA(CMsgRGBA&& from) noexcept : CMsgRGBA() { *this = ::std::move(from); } inline CMsgRGBA& operator=(CMsgRGBA&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CMsgRGBA& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CMsgRGBA* internal_default_instance() { return reinterpret_cast<const CMsgRGBA*>( &_CMsgRGBA_default_instance_); } static constexpr int kIndexInFileMessages = 3; void Swap(CMsgRGBA* other); friend void swap(CMsgRGBA& a, CMsgRGBA& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CMsgRGBA* New() const final { return CreateMaybeMessage<CMsgRGBA>(NULL); } CMsgRGBA* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CMsgRGBA>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CMsgRGBA& from); void MergeFrom(const CMsgRGBA& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CMsgRGBA* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional int32 r = 1; bool has_r() const; void clear_r(); static const int kRFieldNumber = 1; ::google::protobuf::int32 r() const; void set_r(::google::protobuf::int32 value); // optional int32 g = 2; bool has_g() const; void clear_g(); static const int kGFieldNumber = 2; ::google::protobuf::int32 g() const; void set_g(::google::protobuf::int32 value); // optional int32 b = 3; bool has_b() const; void clear_b(); static const int kBFieldNumber = 3; ::google::protobuf::int32 b() const; void set_b(::google::protobuf::int32 value); // optional int32 a = 4; bool has_a() const; void clear_a(); static const int kAFieldNumber = 4; ::google::protobuf::int32 a() const; void set_a(::google::protobuf::int32 value); // @@protoc_insertion_point(class_scope:CMsgRGBA) private: void set_has_r(); void clear_has_r(); void set_has_g(); void clear_has_g(); void set_has_b(); void clear_has_b(); void set_has_a(); void clear_has_a(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::int32 r_; ::google::protobuf::int32 g_; ::google::protobuf::int32 b_; ::google::protobuf::int32 a_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CNETMsg_Tick : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CNETMsg_Tick) */ { public: CNETMsg_Tick(); virtual ~CNETMsg_Tick(); CNETMsg_Tick(const CNETMsg_Tick& from); inline CNETMsg_Tick& operator=(const CNETMsg_Tick& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CNETMsg_Tick(CNETMsg_Tick&& from) noexcept : CNETMsg_Tick() { *this = ::std::move(from); } inline CNETMsg_Tick& operator=(CNETMsg_Tick&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CNETMsg_Tick& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CNETMsg_Tick* internal_default_instance() { return reinterpret_cast<const CNETMsg_Tick*>( &_CNETMsg_Tick_default_instance_); } static constexpr int kIndexInFileMessages = 4; void Swap(CNETMsg_Tick* other); friend void swap(CNETMsg_Tick& a, CNETMsg_Tick& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CNETMsg_Tick* New() const final { return CreateMaybeMessage<CNETMsg_Tick>(NULL); } CNETMsg_Tick* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CNETMsg_Tick>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CNETMsg_Tick& from); void MergeFrom(const CNETMsg_Tick& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CNETMsg_Tick* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional uint32 tick = 1; bool has_tick() const; void clear_tick(); static const int kTickFieldNumber = 1; ::google::protobuf::uint32 tick() const; void set_tick(::google::protobuf::uint32 value); // optional uint32 host_computationtime = 4; bool has_host_computationtime() const; void clear_host_computationtime(); static const int kHostComputationtimeFieldNumber = 4; ::google::protobuf::uint32 host_computationtime() const; void set_host_computationtime(::google::protobuf::uint32 value); // optional uint32 host_computationtime_std_deviation = 5; bool has_host_computationtime_std_deviation() const; void clear_host_computationtime_std_deviation(); static const int kHostComputationtimeStdDeviationFieldNumber = 5; ::google::protobuf::uint32 host_computationtime_std_deviation() const; void set_host_computationtime_std_deviation(::google::protobuf::uint32 value); // optional uint32 host_framestarttime_std_deviation = 6; bool has_host_framestarttime_std_deviation() const; void clear_host_framestarttime_std_deviation(); static const int kHostFramestarttimeStdDeviationFieldNumber = 6; ::google::protobuf::uint32 host_framestarttime_std_deviation() const; void set_host_framestarttime_std_deviation(::google::protobuf::uint32 value); // @@protoc_insertion_point(class_scope:CNETMsg_Tick) private: void set_has_tick(); void clear_has_tick(); void set_has_host_computationtime(); void clear_has_host_computationtime(); void set_has_host_computationtime_std_deviation(); void clear_has_host_computationtime_std_deviation(); void set_has_host_framestarttime_std_deviation(); void clear_has_host_framestarttime_std_deviation(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::uint32 tick_; ::google::protobuf::uint32 host_computationtime_; ::google::protobuf::uint32 host_computationtime_std_deviation_; ::google::protobuf::uint32 host_framestarttime_std_deviation_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CNETMsg_StringCmd : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CNETMsg_StringCmd) */ { public: CNETMsg_StringCmd(); virtual ~CNETMsg_StringCmd(); CNETMsg_StringCmd(const CNETMsg_StringCmd& from); inline CNETMsg_StringCmd& operator=(const CNETMsg_StringCmd& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CNETMsg_StringCmd(CNETMsg_StringCmd&& from) noexcept : CNETMsg_StringCmd() { *this = ::std::move(from); } inline CNETMsg_StringCmd& operator=(CNETMsg_StringCmd&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CNETMsg_StringCmd& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CNETMsg_StringCmd* internal_default_instance() { return reinterpret_cast<const CNETMsg_StringCmd*>( &_CNETMsg_StringCmd_default_instance_); } static constexpr int kIndexInFileMessages = 5; void Swap(CNETMsg_StringCmd* other); friend void swap(CNETMsg_StringCmd& a, CNETMsg_StringCmd& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CNETMsg_StringCmd* New() const final { return CreateMaybeMessage<CNETMsg_StringCmd>(NULL); } CNETMsg_StringCmd* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CNETMsg_StringCmd>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CNETMsg_StringCmd& from); void MergeFrom(const CNETMsg_StringCmd& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CNETMsg_StringCmd* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional string command = 1; bool has_command() const; void clear_command(); static const int kCommandFieldNumber = 1; const ::std::string& command() const; void set_command(const ::std::string& value); #if LANG_CXX11 void set_command(::std::string&& value); #endif void set_command(const char* value); void set_command(const char* value, size_t size); ::std::string* mutable_command(); ::std::string* release_command(); void set_allocated_command(::std::string* command); // @@protoc_insertion_point(class_scope:CNETMsg_StringCmd) private: void set_has_command(); void clear_has_command(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr command_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CNETMsg_SignonState : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CNETMsg_SignonState) */ { public: CNETMsg_SignonState(); virtual ~CNETMsg_SignonState(); CNETMsg_SignonState(const CNETMsg_SignonState& from); inline CNETMsg_SignonState& operator=(const CNETMsg_SignonState& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CNETMsg_SignonState(CNETMsg_SignonState&& from) noexcept : CNETMsg_SignonState() { *this = ::std::move(from); } inline CNETMsg_SignonState& operator=(CNETMsg_SignonState&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CNETMsg_SignonState& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CNETMsg_SignonState* internal_default_instance() { return reinterpret_cast<const CNETMsg_SignonState*>( &_CNETMsg_SignonState_default_instance_); } static constexpr int kIndexInFileMessages = 6; void Swap(CNETMsg_SignonState* other); friend void swap(CNETMsg_SignonState& a, CNETMsg_SignonState& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CNETMsg_SignonState* New() const final { return CreateMaybeMessage<CNETMsg_SignonState>(NULL); } CNETMsg_SignonState* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CNETMsg_SignonState>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CNETMsg_SignonState& from); void MergeFrom(const CNETMsg_SignonState& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CNETMsg_SignonState* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // repeated string players_networkids = 4; int players_networkids_size() const; void clear_players_networkids(); static const int kPlayersNetworkidsFieldNumber = 4; const ::std::string& players_networkids(int index) const; ::std::string* mutable_players_networkids(int index); void set_players_networkids(int index, const ::std::string& value); #if LANG_CXX11 void set_players_networkids(int index, ::std::string&& value); #endif void set_players_networkids(int index, const char* value); void set_players_networkids(int index, const char* value, size_t size); ::std::string* add_players_networkids(); void add_players_networkids(const ::std::string& value); #if LANG_CXX11 void add_players_networkids(::std::string&& value); #endif void add_players_networkids(const char* value); void add_players_networkids(const char* value, size_t size); const ::google::protobuf::RepeatedPtrField< ::std::string>& players_networkids() const; ::google::protobuf::RepeatedPtrField< ::std::string>* mutable_players_networkids(); // optional string map_name = 5; bool has_map_name() const; void clear_map_name(); static const int kMapNameFieldNumber = 5; const ::std::string& map_name() const; void set_map_name(const ::std::string& value); #if LANG_CXX11 void set_map_name(::std::string&& value); #endif void set_map_name(const char* value); void set_map_name(const char* value, size_t size); ::std::string* mutable_map_name(); ::std::string* release_map_name(); void set_allocated_map_name(::std::string* map_name); // optional uint32 signon_state = 1; bool has_signon_state() const; void clear_signon_state(); static const int kSignonStateFieldNumber = 1; ::google::protobuf::uint32 signon_state() const; void set_signon_state(::google::protobuf::uint32 value); // optional uint32 spawn_count = 2; bool has_spawn_count() const; void clear_spawn_count(); static const int kSpawnCountFieldNumber = 2; ::google::protobuf::uint32 spawn_count() const; void set_spawn_count(::google::protobuf::uint32 value); // optional uint32 num_server_players = 3; bool has_num_server_players() const; void clear_num_server_players(); static const int kNumServerPlayersFieldNumber = 3; ::google::protobuf::uint32 num_server_players() const; void set_num_server_players(::google::protobuf::uint32 value); // @@protoc_insertion_point(class_scope:CNETMsg_SignonState) private: void set_has_signon_state(); void clear_has_signon_state(); void set_has_spawn_count(); void clear_has_spawn_count(); void set_has_num_server_players(); void clear_has_num_server_players(); void set_has_map_name(); void clear_has_map_name(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::std::string> players_networkids_; ::google::protobuf::internal::ArenaStringPtr map_name_; ::google::protobuf::uint32 signon_state_; ::google::protobuf::uint32 spawn_count_; ::google::protobuf::uint32 num_server_players_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CMsg_CVars_CVar : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CMsg_CVars.CVar) */ { public: CMsg_CVars_CVar(); virtual ~CMsg_CVars_CVar(); CMsg_CVars_CVar(const CMsg_CVars_CVar& from); inline CMsg_CVars_CVar& operator=(const CMsg_CVars_CVar& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CMsg_CVars_CVar(CMsg_CVars_CVar&& from) noexcept : CMsg_CVars_CVar() { *this = ::std::move(from); } inline CMsg_CVars_CVar& operator=(CMsg_CVars_CVar&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CMsg_CVars_CVar& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CMsg_CVars_CVar* internal_default_instance() { return reinterpret_cast<const CMsg_CVars_CVar*>( &_CMsg_CVars_CVar_default_instance_); } static constexpr int kIndexInFileMessages = 7; void Swap(CMsg_CVars_CVar* other); friend void swap(CMsg_CVars_CVar& a, CMsg_CVars_CVar& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CMsg_CVars_CVar* New() const final { return CreateMaybeMessage<CMsg_CVars_CVar>(NULL); } CMsg_CVars_CVar* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CMsg_CVars_CVar>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CMsg_CVars_CVar& from); void MergeFrom(const CMsg_CVars_CVar& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CMsg_CVars_CVar* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional string name = 1; bool has_name() const; void clear_name(); static const int kNameFieldNumber = 1; const ::std::string& name() const; void set_name(const ::std::string& value); #if LANG_CXX11 void set_name(::std::string&& value); #endif void set_name(const char* value); void set_name(const char* value, size_t size); ::std::string* mutable_name(); ::std::string* release_name(); void set_allocated_name(::std::string* name); // optional string value = 2; bool has_value() const; void clear_value(); static const int kValueFieldNumber = 2; const ::std::string& value() const; void set_value(const ::std::string& value); #if LANG_CXX11 void set_value(::std::string&& value); #endif void set_value(const char* value); void set_value(const char* value, size_t size); ::std::string* mutable_value(); ::std::string* release_value(); void set_allocated_value(::std::string* value); // @@protoc_insertion_point(class_scope:CMsg_CVars.CVar) private: void set_has_name(); void clear_has_name(); void set_has_value(); void clear_has_value(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr name_; ::google::protobuf::internal::ArenaStringPtr value_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CMsg_CVars : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CMsg_CVars) */ { public: CMsg_CVars(); virtual ~CMsg_CVars(); CMsg_CVars(const CMsg_CVars& from); inline CMsg_CVars& operator=(const CMsg_CVars& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CMsg_CVars(CMsg_CVars&& from) noexcept : CMsg_CVars() { *this = ::std::move(from); } inline CMsg_CVars& operator=(CMsg_CVars&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CMsg_CVars& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CMsg_CVars* internal_default_instance() { return reinterpret_cast<const CMsg_CVars*>( &_CMsg_CVars_default_instance_); } static constexpr int kIndexInFileMessages = 8; void Swap(CMsg_CVars* other); friend void swap(CMsg_CVars& a, CMsg_CVars& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CMsg_CVars* New() const final { return CreateMaybeMessage<CMsg_CVars>(NULL); } CMsg_CVars* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CMsg_CVars>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CMsg_CVars& from); void MergeFrom(const CMsg_CVars& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CMsg_CVars* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- typedef CMsg_CVars_CVar CVar; // accessors ------------------------------------------------------- // repeated .CMsg_CVars.CVar cvars = 1; int cvars_size() const; void clear_cvars(); static const int kCvarsFieldNumber = 1; ::CMsg_CVars_CVar* mutable_cvars(int index); ::google::protobuf::RepeatedPtrField< ::CMsg_CVars_CVar >* mutable_cvars(); const ::CMsg_CVars_CVar& cvars(int index) const; ::CMsg_CVars_CVar* add_cvars(); const ::google::protobuf::RepeatedPtrField< ::CMsg_CVars_CVar >& cvars() const; // @@protoc_insertion_point(class_scope:CMsg_CVars) private: ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::CMsg_CVars_CVar > cvars_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CNETMsg_SetConVar : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CNETMsg_SetConVar) */ { public: CNETMsg_SetConVar(); virtual ~CNETMsg_SetConVar(); CNETMsg_SetConVar(const CNETMsg_SetConVar& from); inline CNETMsg_SetConVar& operator=(const CNETMsg_SetConVar& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CNETMsg_SetConVar(CNETMsg_SetConVar&& from) noexcept : CNETMsg_SetConVar() { *this = ::std::move(from); } inline CNETMsg_SetConVar& operator=(CNETMsg_SetConVar&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CNETMsg_SetConVar& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CNETMsg_SetConVar* internal_default_instance() { return reinterpret_cast<const CNETMsg_SetConVar*>( &_CNETMsg_SetConVar_default_instance_); } static constexpr int kIndexInFileMessages = 9; void Swap(CNETMsg_SetConVar* other); friend void swap(CNETMsg_SetConVar& a, CNETMsg_SetConVar& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CNETMsg_SetConVar* New() const final { return CreateMaybeMessage<CNETMsg_SetConVar>(NULL); } CNETMsg_SetConVar* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CNETMsg_SetConVar>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CNETMsg_SetConVar& from); void MergeFrom(const CNETMsg_SetConVar& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CNETMsg_SetConVar* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional .CMsg_CVars convars = 1; bool has_convars() const; void clear_convars(); static const int kConvarsFieldNumber = 1; private: const ::CMsg_CVars& _internal_convars() const; public: const ::CMsg_CVars& convars() const; ::CMsg_CVars* release_convars(); ::CMsg_CVars* mutable_convars(); void set_allocated_convars(::CMsg_CVars* convars); // @@protoc_insertion_point(class_scope:CNETMsg_SetConVar) private: void set_has_convars(); void clear_has_convars(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::CMsg_CVars* convars_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CNETMsg_NOP : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CNETMsg_NOP) */ { public: CNETMsg_NOP(); virtual ~CNETMsg_NOP(); CNETMsg_NOP(const CNETMsg_NOP& from); inline CNETMsg_NOP& operator=(const CNETMsg_NOP& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CNETMsg_NOP(CNETMsg_NOP&& from) noexcept : CNETMsg_NOP() { *this = ::std::move(from); } inline CNETMsg_NOP& operator=(CNETMsg_NOP&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CNETMsg_NOP& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CNETMsg_NOP* internal_default_instance() { return reinterpret_cast<const CNETMsg_NOP*>( &_CNETMsg_NOP_default_instance_); } static constexpr int kIndexInFileMessages = 10; void Swap(CNETMsg_NOP* other); friend void swap(CNETMsg_NOP& a, CNETMsg_NOP& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CNETMsg_NOP* New() const final { return CreateMaybeMessage<CNETMsg_NOP>(NULL); } CNETMsg_NOP* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CNETMsg_NOP>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CNETMsg_NOP& from); void MergeFrom(const CNETMsg_NOP& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CNETMsg_NOP* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // @@protoc_insertion_point(class_scope:CNETMsg_NOP) private: ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CNETMsg_Disconnect : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CNETMsg_Disconnect) */ { public: CNETMsg_Disconnect(); virtual ~CNETMsg_Disconnect(); CNETMsg_Disconnect(const CNETMsg_Disconnect& from); inline CNETMsg_Disconnect& operator=(const CNETMsg_Disconnect& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CNETMsg_Disconnect(CNETMsg_Disconnect&& from) noexcept : CNETMsg_Disconnect() { *this = ::std::move(from); } inline CNETMsg_Disconnect& operator=(CNETMsg_Disconnect&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CNETMsg_Disconnect& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CNETMsg_Disconnect* internal_default_instance() { return reinterpret_cast<const CNETMsg_Disconnect*>( &_CNETMsg_Disconnect_default_instance_); } static constexpr int kIndexInFileMessages = 11; void Swap(CNETMsg_Disconnect* other); friend void swap(CNETMsg_Disconnect& a, CNETMsg_Disconnect& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CNETMsg_Disconnect* New() const final { return CreateMaybeMessage<CNETMsg_Disconnect>(NULL); } CNETMsg_Disconnect* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CNETMsg_Disconnect>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CNETMsg_Disconnect& from); void MergeFrom(const CNETMsg_Disconnect& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CNETMsg_Disconnect* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional string text = 1; bool has_text() const; void clear_text(); static const int kTextFieldNumber = 1; const ::std::string& text() const; void set_text(const ::std::string& value); #if LANG_CXX11 void set_text(::std::string&& value); #endif void set_text(const char* value); void set_text(const char* value, size_t size); ::std::string* mutable_text(); ::std::string* release_text(); void set_allocated_text(::std::string* text); // @@protoc_insertion_point(class_scope:CNETMsg_Disconnect) private: void set_has_text(); void clear_has_text(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr text_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CNETMsg_File : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CNETMsg_File) */ { public: CNETMsg_File(); virtual ~CNETMsg_File(); CNETMsg_File(const CNETMsg_File& from); inline CNETMsg_File& operator=(const CNETMsg_File& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CNETMsg_File(CNETMsg_File&& from) noexcept : CNETMsg_File() { *this = ::std::move(from); } inline CNETMsg_File& operator=(CNETMsg_File&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CNETMsg_File& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CNETMsg_File* internal_default_instance() { return reinterpret_cast<const CNETMsg_File*>( &_CNETMsg_File_default_instance_); } static constexpr int kIndexInFileMessages = 12; void Swap(CNETMsg_File* other); friend void swap(CNETMsg_File& a, CNETMsg_File& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CNETMsg_File* New() const final { return CreateMaybeMessage<CNETMsg_File>(NULL); } CNETMsg_File* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CNETMsg_File>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CNETMsg_File& from); void MergeFrom(const CNETMsg_File& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CNETMsg_File* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional string file_name = 2; bool has_file_name() const; void clear_file_name(); static const int kFileNameFieldNumber = 2; const ::std::string& file_name() const; void set_file_name(const ::std::string& value); #if LANG_CXX11 void set_file_name(::std::string&& value); #endif void set_file_name(const char* value); void set_file_name(const char* value, size_t size); ::std::string* mutable_file_name(); ::std::string* release_file_name(); void set_allocated_file_name(::std::string* file_name); // optional int32 transfer_id = 1; bool has_transfer_id() const; void clear_transfer_id(); static const int kTransferIdFieldNumber = 1; ::google::protobuf::int32 transfer_id() const; void set_transfer_id(::google::protobuf::int32 value); // optional bool is_replay_demo_file = 3; bool has_is_replay_demo_file() const; void clear_is_replay_demo_file(); static const int kIsReplayDemoFileFieldNumber = 3; bool is_replay_demo_file() const; void set_is_replay_demo_file(bool value); // optional bool deny = 4; bool has_deny() const; void clear_deny(); static const int kDenyFieldNumber = 4; bool deny() const; void set_deny(bool value); // @@protoc_insertion_point(class_scope:CNETMsg_File) private: void set_has_transfer_id(); void clear_has_transfer_id(); void set_has_file_name(); void clear_has_file_name(); void set_has_is_replay_demo_file(); void clear_has_is_replay_demo_file(); void set_has_deny(); void clear_has_deny(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr file_name_; ::google::protobuf::int32 transfer_id_; bool is_replay_demo_file_; bool deny_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_ServerInfo : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_ServerInfo) */ { public: CSVCMsg_ServerInfo(); virtual ~CSVCMsg_ServerInfo(); CSVCMsg_ServerInfo(const CSVCMsg_ServerInfo& from); inline CSVCMsg_ServerInfo& operator=(const CSVCMsg_ServerInfo& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_ServerInfo(CSVCMsg_ServerInfo&& from) noexcept : CSVCMsg_ServerInfo() { *this = ::std::move(from); } inline CSVCMsg_ServerInfo& operator=(CSVCMsg_ServerInfo&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_ServerInfo& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_ServerInfo* internal_default_instance() { return reinterpret_cast<const CSVCMsg_ServerInfo*>( &_CSVCMsg_ServerInfo_default_instance_); } static constexpr int kIndexInFileMessages = 13; void Swap(CSVCMsg_ServerInfo* other); friend void swap(CSVCMsg_ServerInfo& a, CSVCMsg_ServerInfo& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_ServerInfo* New() const final { return CreateMaybeMessage<CSVCMsg_ServerInfo>(NULL); } CSVCMsg_ServerInfo* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_ServerInfo>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_ServerInfo& from); void MergeFrom(const CSVCMsg_ServerInfo& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_ServerInfo* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional string game_dir = 15; bool has_game_dir() const; void clear_game_dir(); static const int kGameDirFieldNumber = 15; const ::std::string& game_dir() const; void set_game_dir(const ::std::string& value); #if LANG_CXX11 void set_game_dir(::std::string&& value); #endif void set_game_dir(const char* value); void set_game_dir(const char* value, size_t size); ::std::string* mutable_game_dir(); ::std::string* release_game_dir(); void set_allocated_game_dir(::std::string* game_dir); // optional string map_name = 16; bool has_map_name() const; void clear_map_name(); static const int kMapNameFieldNumber = 16; const ::std::string& map_name() const; void set_map_name(const ::std::string& value); #if LANG_CXX11 void set_map_name(::std::string&& value); #endif void set_map_name(const char* value); void set_map_name(const char* value, size_t size); ::std::string* mutable_map_name(); ::std::string* release_map_name(); void set_allocated_map_name(::std::string* map_name); // optional string map_group_name = 17; bool has_map_group_name() const; void clear_map_group_name(); static const int kMapGroupNameFieldNumber = 17; const ::std::string& map_group_name() const; void set_map_group_name(const ::std::string& value); #if LANG_CXX11 void set_map_group_name(::std::string&& value); #endif void set_map_group_name(const char* value); void set_map_group_name(const char* value, size_t size); ::std::string* mutable_map_group_name(); ::std::string* release_map_group_name(); void set_allocated_map_group_name(::std::string* map_group_name); // optional string sky_name = 18; bool has_sky_name() const; void clear_sky_name(); static const int kSkyNameFieldNumber = 18; const ::std::string& sky_name() const; void set_sky_name(const ::std::string& value); #if LANG_CXX11 void set_sky_name(::std::string&& value); #endif void set_sky_name(const char* value); void set_sky_name(const char* value, size_t size); ::std::string* mutable_sky_name(); ::std::string* release_sky_name(); void set_allocated_sky_name(::std::string* sky_name); // optional string host_name = 19; bool has_host_name() const; void clear_host_name(); static const int kHostNameFieldNumber = 19; const ::std::string& host_name() const; void set_host_name(const ::std::string& value); #if LANG_CXX11 void set_host_name(::std::string&& value); #endif void set_host_name(const char* value); void set_host_name(const char* value, size_t size); ::std::string* mutable_host_name(); ::std::string* release_host_name(); void set_allocated_host_name(::std::string* host_name); // optional int32 protocol = 1; bool has_protocol() const; void clear_protocol(); static const int kProtocolFieldNumber = 1; ::google::protobuf::int32 protocol() const; void set_protocol(::google::protobuf::int32 value); // optional int32 server_count = 2; bool has_server_count() const; void clear_server_count(); static const int kServerCountFieldNumber = 2; ::google::protobuf::int32 server_count() const; void set_server_count(::google::protobuf::int32 value); // optional bool is_dedicated = 3; bool has_is_dedicated() const; void clear_is_dedicated(); static const int kIsDedicatedFieldNumber = 3; bool is_dedicated() const; void set_is_dedicated(bool value); // optional bool is_official_valve_server = 4; bool has_is_official_valve_server() const; void clear_is_official_valve_server(); static const int kIsOfficialValveServerFieldNumber = 4; bool is_official_valve_server() const; void set_is_official_valve_server(bool value); // optional bool is_hltv = 5; bool has_is_hltv() const; void clear_is_hltv(); static const int kIsHltvFieldNumber = 5; bool is_hltv() const; void set_is_hltv(bool value); // optional bool is_replay = 6; bool has_is_replay() const; void clear_is_replay(); static const int kIsReplayFieldNumber = 6; bool is_replay() const; void set_is_replay(bool value); // optional int32 c_os = 7; bool has_c_os() const; void clear_c_os(); static const int kCOsFieldNumber = 7; ::google::protobuf::int32 c_os() const; void set_c_os(::google::protobuf::int32 value); // optional fixed32 map_crc = 8; bool has_map_crc() const; void clear_map_crc(); static const int kMapCrcFieldNumber = 8; ::google::protobuf::uint32 map_crc() const; void set_map_crc(::google::protobuf::uint32 value); // optional fixed32 client_crc = 9; bool has_client_crc() const; void clear_client_crc(); static const int kClientCrcFieldNumber = 9; ::google::protobuf::uint32 client_crc() const; void set_client_crc(::google::protobuf::uint32 value); // optional fixed32 string_table_crc = 10; bool has_string_table_crc() const; void clear_string_table_crc(); static const int kStringTableCrcFieldNumber = 10; ::google::protobuf::uint32 string_table_crc() const; void set_string_table_crc(::google::protobuf::uint32 value); // optional int32 max_clients = 11; bool has_max_clients() const; void clear_max_clients(); static const int kMaxClientsFieldNumber = 11; ::google::protobuf::int32 max_clients() const; void set_max_clients(::google::protobuf::int32 value); // optional int32 max_classes = 12; bool has_max_classes() const; void clear_max_classes(); static const int kMaxClassesFieldNumber = 12; ::google::protobuf::int32 max_classes() const; void set_max_classes(::google::protobuf::int32 value); // optional int32 player_slot = 13; bool has_player_slot() const; void clear_player_slot(); static const int kPlayerSlotFieldNumber = 13; ::google::protobuf::int32 player_slot() const; void set_player_slot(::google::protobuf::int32 value); // optional float tick_interval = 14; bool has_tick_interval() const; void clear_tick_interval(); static const int kTickIntervalFieldNumber = 14; float tick_interval() const; void set_tick_interval(float value); // optional bool is_redirecting_to_proxy_relay = 21; bool has_is_redirecting_to_proxy_relay() const; void clear_is_redirecting_to_proxy_relay(); static const int kIsRedirectingToProxyRelayFieldNumber = 21; bool is_redirecting_to_proxy_relay() const; void set_is_redirecting_to_proxy_relay(bool value); // optional uint64 ugc_map_id = 22; bool has_ugc_map_id() const; void clear_ugc_map_id(); static const int kUgcMapIdFieldNumber = 22; ::google::protobuf::uint64 ugc_map_id() const; void set_ugc_map_id(::google::protobuf::uint64 value); // @@protoc_insertion_point(class_scope:CSVCMsg_ServerInfo) private: void set_has_protocol(); void clear_has_protocol(); void set_has_server_count(); void clear_has_server_count(); void set_has_is_dedicated(); void clear_has_is_dedicated(); void set_has_is_official_valve_server(); void clear_has_is_official_valve_server(); void set_has_is_hltv(); void clear_has_is_hltv(); void set_has_is_replay(); void clear_has_is_replay(); void set_has_is_redirecting_to_proxy_relay(); void clear_has_is_redirecting_to_proxy_relay(); void set_has_c_os(); void clear_has_c_os(); void set_has_map_crc(); void clear_has_map_crc(); void set_has_client_crc(); void clear_has_client_crc(); void set_has_string_table_crc(); void clear_has_string_table_crc(); void set_has_max_clients(); void clear_has_max_clients(); void set_has_max_classes(); void clear_has_max_classes(); void set_has_player_slot(); void clear_has_player_slot(); void set_has_tick_interval(); void clear_has_tick_interval(); void set_has_game_dir(); void clear_has_game_dir(); void set_has_map_name(); void clear_has_map_name(); void set_has_map_group_name(); void clear_has_map_group_name(); void set_has_sky_name(); void clear_has_sky_name(); void set_has_host_name(); void clear_has_host_name(); void set_has_ugc_map_id(); void clear_has_ugc_map_id(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr game_dir_; ::google::protobuf::internal::ArenaStringPtr map_name_; ::google::protobuf::internal::ArenaStringPtr map_group_name_; ::google::protobuf::internal::ArenaStringPtr sky_name_; ::google::protobuf::internal::ArenaStringPtr host_name_; ::google::protobuf::int32 protocol_; ::google::protobuf::int32 server_count_; bool is_dedicated_; bool is_official_valve_server_; bool is_hltv_; bool is_replay_; ::google::protobuf::int32 c_os_; ::google::protobuf::uint32 map_crc_; ::google::protobuf::uint32 client_crc_; ::google::protobuf::uint32 string_table_crc_; ::google::protobuf::int32 max_clients_; ::google::protobuf::int32 max_classes_; ::google::protobuf::int32 player_slot_; float tick_interval_; bool is_redirecting_to_proxy_relay_; ::google::protobuf::uint64 ugc_map_id_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_ClassInfo_class_t : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_ClassInfo.class_t) */ { public: CSVCMsg_ClassInfo_class_t(); virtual ~CSVCMsg_ClassInfo_class_t(); CSVCMsg_ClassInfo_class_t(const CSVCMsg_ClassInfo_class_t& from); inline CSVCMsg_ClassInfo_class_t& operator=(const CSVCMsg_ClassInfo_class_t& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_ClassInfo_class_t(CSVCMsg_ClassInfo_class_t&& from) noexcept : CSVCMsg_ClassInfo_class_t() { *this = ::std::move(from); } inline CSVCMsg_ClassInfo_class_t& operator=(CSVCMsg_ClassInfo_class_t&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_ClassInfo_class_t& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_ClassInfo_class_t* internal_default_instance() { return reinterpret_cast<const CSVCMsg_ClassInfo_class_t*>( &_CSVCMsg_ClassInfo_class_t_default_instance_); } static constexpr int kIndexInFileMessages = 14; void Swap(CSVCMsg_ClassInfo_class_t* other); friend void swap(CSVCMsg_ClassInfo_class_t& a, CSVCMsg_ClassInfo_class_t& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_ClassInfo_class_t* New() const final { return CreateMaybeMessage<CSVCMsg_ClassInfo_class_t>(NULL); } CSVCMsg_ClassInfo_class_t* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_ClassInfo_class_t>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_ClassInfo_class_t& from); void MergeFrom(const CSVCMsg_ClassInfo_class_t& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_ClassInfo_class_t* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional string data_table_name = 2; bool has_data_table_name() const; void clear_data_table_name(); static const int kDataTableNameFieldNumber = 2; const ::std::string& data_table_name() const; void set_data_table_name(const ::std::string& value); #if LANG_CXX11 void set_data_table_name(::std::string&& value); #endif void set_data_table_name(const char* value); void set_data_table_name(const char* value, size_t size); ::std::string* mutable_data_table_name(); ::std::string* release_data_table_name(); void set_allocated_data_table_name(::std::string* data_table_name); // optional string class_name = 3; bool has_class_name() const; void clear_class_name(); static const int kClassNameFieldNumber = 3; const ::std::string& class_name() const; void set_class_name(const ::std::string& value); #if LANG_CXX11 void set_class_name(::std::string&& value); #endif void set_class_name(const char* value); void set_class_name(const char* value, size_t size); ::std::string* mutable_class_name(); ::std::string* release_class_name(); void set_allocated_class_name(::std::string* class_name); // optional int32 class_id = 1; bool has_class_id() const; void clear_class_id(); static const int kClassIdFieldNumber = 1; ::google::protobuf::int32 class_id() const; void set_class_id(::google::protobuf::int32 value); // @@protoc_insertion_point(class_scope:CSVCMsg_ClassInfo.class_t) private: void set_has_class_id(); void clear_has_class_id(); void set_has_data_table_name(); void clear_has_data_table_name(); void set_has_class_name(); void clear_has_class_name(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr data_table_name_; ::google::protobuf::internal::ArenaStringPtr class_name_; ::google::protobuf::int32 class_id_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_ClassInfo : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_ClassInfo) */ { public: CSVCMsg_ClassInfo(); virtual ~CSVCMsg_ClassInfo(); CSVCMsg_ClassInfo(const CSVCMsg_ClassInfo& from); inline CSVCMsg_ClassInfo& operator=(const CSVCMsg_ClassInfo& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_ClassInfo(CSVCMsg_ClassInfo&& from) noexcept : CSVCMsg_ClassInfo() { *this = ::std::move(from); } inline CSVCMsg_ClassInfo& operator=(CSVCMsg_ClassInfo&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_ClassInfo& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_ClassInfo* internal_default_instance() { return reinterpret_cast<const CSVCMsg_ClassInfo*>( &_CSVCMsg_ClassInfo_default_instance_); } static constexpr int kIndexInFileMessages = 15; void Swap(CSVCMsg_ClassInfo* other); friend void swap(CSVCMsg_ClassInfo& a, CSVCMsg_ClassInfo& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_ClassInfo* New() const final { return CreateMaybeMessage<CSVCMsg_ClassInfo>(NULL); } CSVCMsg_ClassInfo* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_ClassInfo>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_ClassInfo& from); void MergeFrom(const CSVCMsg_ClassInfo& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_ClassInfo* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- typedef CSVCMsg_ClassInfo_class_t class_t; // accessors ------------------------------------------------------- // repeated .CSVCMsg_ClassInfo.class_t classes = 2; int classes_size() const; void clear_classes(); static const int kClassesFieldNumber = 2; ::CSVCMsg_ClassInfo_class_t* mutable_classes(int index); ::google::protobuf::RepeatedPtrField< ::CSVCMsg_ClassInfo_class_t >* mutable_classes(); const ::CSVCMsg_ClassInfo_class_t& classes(int index) const; ::CSVCMsg_ClassInfo_class_t* add_classes(); const ::google::protobuf::RepeatedPtrField< ::CSVCMsg_ClassInfo_class_t >& classes() const; // optional bool create_on_client = 1; bool has_create_on_client() const; void clear_create_on_client(); static const int kCreateOnClientFieldNumber = 1; bool create_on_client() const; void set_create_on_client(bool value); // @@protoc_insertion_point(class_scope:CSVCMsg_ClassInfo) private: void set_has_create_on_client(); void clear_has_create_on_client(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::CSVCMsg_ClassInfo_class_t > classes_; bool create_on_client_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_SendTable_sendprop_t : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_SendTable.sendprop_t) */ { public: CSVCMsg_SendTable_sendprop_t(); virtual ~CSVCMsg_SendTable_sendprop_t(); CSVCMsg_SendTable_sendprop_t(const CSVCMsg_SendTable_sendprop_t& from); inline CSVCMsg_SendTable_sendprop_t& operator=(const CSVCMsg_SendTable_sendprop_t& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_SendTable_sendprop_t(CSVCMsg_SendTable_sendprop_t&& from) noexcept : CSVCMsg_SendTable_sendprop_t() { *this = ::std::move(from); } inline CSVCMsg_SendTable_sendprop_t& operator=(CSVCMsg_SendTable_sendprop_t&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_SendTable_sendprop_t& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_SendTable_sendprop_t* internal_default_instance() { return reinterpret_cast<const CSVCMsg_SendTable_sendprop_t*>( &_CSVCMsg_SendTable_sendprop_t_default_instance_); } static constexpr int kIndexInFileMessages = 16; void Swap(CSVCMsg_SendTable_sendprop_t* other); friend void swap(CSVCMsg_SendTable_sendprop_t& a, CSVCMsg_SendTable_sendprop_t& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_SendTable_sendprop_t* New() const final { return CreateMaybeMessage<CSVCMsg_SendTable_sendprop_t>(NULL); } CSVCMsg_SendTable_sendprop_t* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_SendTable_sendprop_t>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_SendTable_sendprop_t& from); void MergeFrom(const CSVCMsg_SendTable_sendprop_t& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_SendTable_sendprop_t* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional string var_name = 2; bool has_var_name() const; void clear_var_name(); static const int kVarNameFieldNumber = 2; const ::std::string& var_name() const; void set_var_name(const ::std::string& value); #if LANG_CXX11 void set_var_name(::std::string&& value); #endif void set_var_name(const char* value); void set_var_name(const char* value, size_t size); ::std::string* mutable_var_name(); ::std::string* release_var_name(); void set_allocated_var_name(::std::string* var_name); // optional string dt_name = 5; bool has_dt_name() const; void clear_dt_name(); static const int kDtNameFieldNumber = 5; const ::std::string& dt_name() const; void set_dt_name(const ::std::string& value); #if LANG_CXX11 void set_dt_name(::std::string&& value); #endif void set_dt_name(const char* value); void set_dt_name(const char* value, size_t size); ::std::string* mutable_dt_name(); ::std::string* release_dt_name(); void set_allocated_dt_name(::std::string* dt_name); // optional int32 type = 1; bool has_type() const; void clear_type(); static const int kTypeFieldNumber = 1; ::google::protobuf::int32 type() const; void set_type(::google::protobuf::int32 value); // optional int32 flags = 3; bool has_flags() const; void clear_flags(); static const int kFlagsFieldNumber = 3; ::google::protobuf::int32 flags() const; void set_flags(::google::protobuf::int32 value); // optional int32 priority = 4; bool has_priority() const; void clear_priority(); static const int kPriorityFieldNumber = 4; ::google::protobuf::int32 priority() const; void set_priority(::google::protobuf::int32 value); // optional int32 num_elements = 6; bool has_num_elements() const; void clear_num_elements(); static const int kNumElementsFieldNumber = 6; ::google::protobuf::int32 num_elements() const; void set_num_elements(::google::protobuf::int32 value); // optional float low_value = 7; bool has_low_value() const; void clear_low_value(); static const int kLowValueFieldNumber = 7; float low_value() const; void set_low_value(float value); // optional float high_value = 8; bool has_high_value() const; void clear_high_value(); static const int kHighValueFieldNumber = 8; float high_value() const; void set_high_value(float value); // optional int32 num_bits = 9; bool has_num_bits() const; void clear_num_bits(); static const int kNumBitsFieldNumber = 9; ::google::protobuf::int32 num_bits() const; void set_num_bits(::google::protobuf::int32 value); // @@protoc_insertion_point(class_scope:CSVCMsg_SendTable.sendprop_t) private: void set_has_type(); void clear_has_type(); void set_has_var_name(); void clear_has_var_name(); void set_has_flags(); void clear_has_flags(); void set_has_priority(); void clear_has_priority(); void set_has_dt_name(); void clear_has_dt_name(); void set_has_num_elements(); void clear_has_num_elements(); void set_has_low_value(); void clear_has_low_value(); void set_has_high_value(); void clear_has_high_value(); void set_has_num_bits(); void clear_has_num_bits(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr var_name_; ::google::protobuf::internal::ArenaStringPtr dt_name_; ::google::protobuf::int32 type_; ::google::protobuf::int32 flags_; ::google::protobuf::int32 priority_; ::google::protobuf::int32 num_elements_; float low_value_; float high_value_; ::google::protobuf::int32 num_bits_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_SendTable : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_SendTable) */ { public: CSVCMsg_SendTable(); virtual ~CSVCMsg_SendTable(); CSVCMsg_SendTable(const CSVCMsg_SendTable& from); inline CSVCMsg_SendTable& operator=(const CSVCMsg_SendTable& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_SendTable(CSVCMsg_SendTable&& from) noexcept : CSVCMsg_SendTable() { *this = ::std::move(from); } inline CSVCMsg_SendTable& operator=(CSVCMsg_SendTable&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_SendTable& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_SendTable* internal_default_instance() { return reinterpret_cast<const CSVCMsg_SendTable*>( &_CSVCMsg_SendTable_default_instance_); } static constexpr int kIndexInFileMessages = 17; void Swap(CSVCMsg_SendTable* other); friend void swap(CSVCMsg_SendTable& a, CSVCMsg_SendTable& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_SendTable* New() const final { return CreateMaybeMessage<CSVCMsg_SendTable>(NULL); } CSVCMsg_SendTable* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_SendTable>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_SendTable& from); void MergeFrom(const CSVCMsg_SendTable& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_SendTable* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- typedef CSVCMsg_SendTable_sendprop_t sendprop_t; // accessors ------------------------------------------------------- // repeated .CSVCMsg_SendTable.sendprop_t props = 4; int props_size() const; void clear_props(); static const int kPropsFieldNumber = 4; ::CSVCMsg_SendTable_sendprop_t* mutable_props(int index); ::google::protobuf::RepeatedPtrField< ::CSVCMsg_SendTable_sendprop_t >* mutable_props(); const ::CSVCMsg_SendTable_sendprop_t& props(int index) const; ::CSVCMsg_SendTable_sendprop_t* add_props(); const ::google::protobuf::RepeatedPtrField< ::CSVCMsg_SendTable_sendprop_t >& props() const; // optional string net_table_name = 2; bool has_net_table_name() const; void clear_net_table_name(); static const int kNetTableNameFieldNumber = 2; const ::std::string& net_table_name() const; void set_net_table_name(const ::std::string& value); #if LANG_CXX11 void set_net_table_name(::std::string&& value); #endif void set_net_table_name(const char* value); void set_net_table_name(const char* value, size_t size); ::std::string* mutable_net_table_name(); ::std::string* release_net_table_name(); void set_allocated_net_table_name(::std::string* net_table_name); // optional bool is_end = 1; bool has_is_end() const; void clear_is_end(); static const int kIsEndFieldNumber = 1; bool is_end() const; void set_is_end(bool value); // optional bool needs_decoder = 3; bool has_needs_decoder() const; void clear_needs_decoder(); static const int kNeedsDecoderFieldNumber = 3; bool needs_decoder() const; void set_needs_decoder(bool value); // @@protoc_insertion_point(class_scope:CSVCMsg_SendTable) private: void set_has_is_end(); void clear_has_is_end(); void set_has_net_table_name(); void clear_has_net_table_name(); void set_has_needs_decoder(); void clear_has_needs_decoder(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::CSVCMsg_SendTable_sendprop_t > props_; ::google::protobuf::internal::ArenaStringPtr net_table_name_; bool is_end_; bool needs_decoder_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_Print : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_Print) */ { public: CSVCMsg_Print(); virtual ~CSVCMsg_Print(); CSVCMsg_Print(const CSVCMsg_Print& from); inline CSVCMsg_Print& operator=(const CSVCMsg_Print& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_Print(CSVCMsg_Print&& from) noexcept : CSVCMsg_Print() { *this = ::std::move(from); } inline CSVCMsg_Print& operator=(CSVCMsg_Print&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_Print& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_Print* internal_default_instance() { return reinterpret_cast<const CSVCMsg_Print*>( &_CSVCMsg_Print_default_instance_); } static constexpr int kIndexInFileMessages = 18; void Swap(CSVCMsg_Print* other); friend void swap(CSVCMsg_Print& a, CSVCMsg_Print& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_Print* New() const final { return CreateMaybeMessage<CSVCMsg_Print>(NULL); } CSVCMsg_Print* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_Print>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_Print& from); void MergeFrom(const CSVCMsg_Print& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_Print* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional string text = 1; bool has_text() const; void clear_text(); static const int kTextFieldNumber = 1; const ::std::string& text() const; void set_text(const ::std::string& value); #if LANG_CXX11 void set_text(::std::string&& value); #endif void set_text(const char* value); void set_text(const char* value, size_t size); ::std::string* mutable_text(); ::std::string* release_text(); void set_allocated_text(::std::string* text); // @@protoc_insertion_point(class_scope:CSVCMsg_Print) private: void set_has_text(); void clear_has_text(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr text_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_SetPause : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_SetPause) */ { public: CSVCMsg_SetPause(); virtual ~CSVCMsg_SetPause(); CSVCMsg_SetPause(const CSVCMsg_SetPause& from); inline CSVCMsg_SetPause& operator=(const CSVCMsg_SetPause& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_SetPause(CSVCMsg_SetPause&& from) noexcept : CSVCMsg_SetPause() { *this = ::std::move(from); } inline CSVCMsg_SetPause& operator=(CSVCMsg_SetPause&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_SetPause& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_SetPause* internal_default_instance() { return reinterpret_cast<const CSVCMsg_SetPause*>( &_CSVCMsg_SetPause_default_instance_); } static constexpr int kIndexInFileMessages = 19; void Swap(CSVCMsg_SetPause* other); friend void swap(CSVCMsg_SetPause& a, CSVCMsg_SetPause& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_SetPause* New() const final { return CreateMaybeMessage<CSVCMsg_SetPause>(NULL); } CSVCMsg_SetPause* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_SetPause>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_SetPause& from); void MergeFrom(const CSVCMsg_SetPause& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_SetPause* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional bool paused = 1; bool has_paused() const; void clear_paused(); static const int kPausedFieldNumber = 1; bool paused() const; void set_paused(bool value); // @@protoc_insertion_point(class_scope:CSVCMsg_SetPause) private: void set_has_paused(); void clear_has_paused(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; bool paused_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_SetView : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_SetView) */ { public: CSVCMsg_SetView(); virtual ~CSVCMsg_SetView(); CSVCMsg_SetView(const CSVCMsg_SetView& from); inline CSVCMsg_SetView& operator=(const CSVCMsg_SetView& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_SetView(CSVCMsg_SetView&& from) noexcept : CSVCMsg_SetView() { *this = ::std::move(from); } inline CSVCMsg_SetView& operator=(CSVCMsg_SetView&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_SetView& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_SetView* internal_default_instance() { return reinterpret_cast<const CSVCMsg_SetView*>( &_CSVCMsg_SetView_default_instance_); } static constexpr int kIndexInFileMessages = 20; void Swap(CSVCMsg_SetView* other); friend void swap(CSVCMsg_SetView& a, CSVCMsg_SetView& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_SetView* New() const final { return CreateMaybeMessage<CSVCMsg_SetView>(NULL); } CSVCMsg_SetView* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_SetView>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_SetView& from); void MergeFrom(const CSVCMsg_SetView& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_SetView* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional int32 entity_index = 1; bool has_entity_index() const; void clear_entity_index(); static const int kEntityIndexFieldNumber = 1; ::google::protobuf::int32 entity_index() const; void set_entity_index(::google::protobuf::int32 value); // @@protoc_insertion_point(class_scope:CSVCMsg_SetView) private: void set_has_entity_index(); void clear_has_entity_index(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::int32 entity_index_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_CreateStringTable : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_CreateStringTable) */ { public: CSVCMsg_CreateStringTable(); virtual ~CSVCMsg_CreateStringTable(); CSVCMsg_CreateStringTable(const CSVCMsg_CreateStringTable& from); inline CSVCMsg_CreateStringTable& operator=(const CSVCMsg_CreateStringTable& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_CreateStringTable(CSVCMsg_CreateStringTable&& from) noexcept : CSVCMsg_CreateStringTable() { *this = ::std::move(from); } inline CSVCMsg_CreateStringTable& operator=(CSVCMsg_CreateStringTable&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_CreateStringTable& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_CreateStringTable* internal_default_instance() { return reinterpret_cast<const CSVCMsg_CreateStringTable*>( &_CSVCMsg_CreateStringTable_default_instance_); } static constexpr int kIndexInFileMessages = 21; void Swap(CSVCMsg_CreateStringTable* other); friend void swap(CSVCMsg_CreateStringTable& a, CSVCMsg_CreateStringTable& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_CreateStringTable* New() const final { return CreateMaybeMessage<CSVCMsg_CreateStringTable>(NULL); } CSVCMsg_CreateStringTable* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_CreateStringTable>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_CreateStringTable& from); void MergeFrom(const CSVCMsg_CreateStringTable& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_CreateStringTable* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional string name = 1; bool has_name() const; void clear_name(); static const int kNameFieldNumber = 1; const ::std::string& name() const; void set_name(const ::std::string& value); #if LANG_CXX11 void set_name(::std::string&& value); #endif void set_name(const char* value); void set_name(const char* value, size_t size); ::std::string* mutable_name(); ::std::string* release_name(); void set_allocated_name(::std::string* name); // optional bytes string_data = 8; bool has_string_data() const; void clear_string_data(); static const int kStringDataFieldNumber = 8; const ::std::string& string_data() const; void set_string_data(const ::std::string& value); #if LANG_CXX11 void set_string_data(::std::string&& value); #endif void set_string_data(const char* value); void set_string_data(const void* value, size_t size); ::std::string* mutable_string_data(); ::std::string* release_string_data(); void set_allocated_string_data(::std::string* string_data); // optional int32 max_entries = 2; bool has_max_entries() const; void clear_max_entries(); static const int kMaxEntriesFieldNumber = 2; ::google::protobuf::int32 max_entries() const; void set_max_entries(::google::protobuf::int32 value); // optional int32 num_entries = 3; bool has_num_entries() const; void clear_num_entries(); static const int kNumEntriesFieldNumber = 3; ::google::protobuf::int32 num_entries() const; void set_num_entries(::google::protobuf::int32 value); // optional bool user_data_fixed_size = 4; bool has_user_data_fixed_size() const; void clear_user_data_fixed_size(); static const int kUserDataFixedSizeFieldNumber = 4; bool user_data_fixed_size() const; void set_user_data_fixed_size(bool value); // optional int32 user_data_size = 5; bool has_user_data_size() const; void clear_user_data_size(); static const int kUserDataSizeFieldNumber = 5; ::google::protobuf::int32 user_data_size() const; void set_user_data_size(::google::protobuf::int32 value); // optional int32 user_data_size_bits = 6; bool has_user_data_size_bits() const; void clear_user_data_size_bits(); static const int kUserDataSizeBitsFieldNumber = 6; ::google::protobuf::int32 user_data_size_bits() const; void set_user_data_size_bits(::google::protobuf::int32 value); // optional int32 flags = 7; bool has_flags() const; void clear_flags(); static const int kFlagsFieldNumber = 7; ::google::protobuf::int32 flags() const; void set_flags(::google::protobuf::int32 value); // @@protoc_insertion_point(class_scope:CSVCMsg_CreateStringTable) private: void set_has_name(); void clear_has_name(); void set_has_max_entries(); void clear_has_max_entries(); void set_has_num_entries(); void clear_has_num_entries(); void set_has_user_data_fixed_size(); void clear_has_user_data_fixed_size(); void set_has_user_data_size(); void clear_has_user_data_size(); void set_has_user_data_size_bits(); void clear_has_user_data_size_bits(); void set_has_flags(); void clear_has_flags(); void set_has_string_data(); void clear_has_string_data(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr name_; ::google::protobuf::internal::ArenaStringPtr string_data_; ::google::protobuf::int32 max_entries_; ::google::protobuf::int32 num_entries_; bool user_data_fixed_size_; ::google::protobuf::int32 user_data_size_; ::google::protobuf::int32 user_data_size_bits_; ::google::protobuf::int32 flags_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_UpdateStringTable : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_UpdateStringTable) */ { public: CSVCMsg_UpdateStringTable(); virtual ~CSVCMsg_UpdateStringTable(); CSVCMsg_UpdateStringTable(const CSVCMsg_UpdateStringTable& from); inline CSVCMsg_UpdateStringTable& operator=(const CSVCMsg_UpdateStringTable& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_UpdateStringTable(CSVCMsg_UpdateStringTable&& from) noexcept : CSVCMsg_UpdateStringTable() { *this = ::std::move(from); } inline CSVCMsg_UpdateStringTable& operator=(CSVCMsg_UpdateStringTable&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_UpdateStringTable& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_UpdateStringTable* internal_default_instance() { return reinterpret_cast<const CSVCMsg_UpdateStringTable*>( &_CSVCMsg_UpdateStringTable_default_instance_); } static constexpr int kIndexInFileMessages = 22; void Swap(CSVCMsg_UpdateStringTable* other); friend void swap(CSVCMsg_UpdateStringTable& a, CSVCMsg_UpdateStringTable& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_UpdateStringTable* New() const final { return CreateMaybeMessage<CSVCMsg_UpdateStringTable>(NULL); } CSVCMsg_UpdateStringTable* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_UpdateStringTable>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_UpdateStringTable& from); void MergeFrom(const CSVCMsg_UpdateStringTable& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_UpdateStringTable* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional bytes string_data = 3; bool has_string_data() const; void clear_string_data(); static const int kStringDataFieldNumber = 3; const ::std::string& string_data() const; void set_string_data(const ::std::string& value); #if LANG_CXX11 void set_string_data(::std::string&& value); #endif void set_string_data(const char* value); void set_string_data(const void* value, size_t size); ::std::string* mutable_string_data(); ::std::string* release_string_data(); void set_allocated_string_data(::std::string* string_data); // optional int32 table_id = 1; bool has_table_id() const; void clear_table_id(); static const int kTableIdFieldNumber = 1; ::google::protobuf::int32 table_id() const; void set_table_id(::google::protobuf::int32 value); // optional int32 num_changed_entries = 2; bool has_num_changed_entries() const; void clear_num_changed_entries(); static const int kNumChangedEntriesFieldNumber = 2; ::google::protobuf::int32 num_changed_entries() const; void set_num_changed_entries(::google::protobuf::int32 value); // @@protoc_insertion_point(class_scope:CSVCMsg_UpdateStringTable) private: void set_has_table_id(); void clear_has_table_id(); void set_has_num_changed_entries(); void clear_has_num_changed_entries(); void set_has_string_data(); void clear_has_string_data(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr string_data_; ::google::protobuf::int32 table_id_; ::google::protobuf::int32 num_changed_entries_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_VoiceInit : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_VoiceInit) */ { public: CSVCMsg_VoiceInit(); virtual ~CSVCMsg_VoiceInit(); CSVCMsg_VoiceInit(const CSVCMsg_VoiceInit& from); inline CSVCMsg_VoiceInit& operator=(const CSVCMsg_VoiceInit& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_VoiceInit(CSVCMsg_VoiceInit&& from) noexcept : CSVCMsg_VoiceInit() { *this = ::std::move(from); } inline CSVCMsg_VoiceInit& operator=(CSVCMsg_VoiceInit&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_VoiceInit& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_VoiceInit* internal_default_instance() { return reinterpret_cast<const CSVCMsg_VoiceInit*>( &_CSVCMsg_VoiceInit_default_instance_); } static constexpr int kIndexInFileMessages = 23; void Swap(CSVCMsg_VoiceInit* other); friend void swap(CSVCMsg_VoiceInit& a, CSVCMsg_VoiceInit& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_VoiceInit* New() const final { return CreateMaybeMessage<CSVCMsg_VoiceInit>(NULL); } CSVCMsg_VoiceInit* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_VoiceInit>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_VoiceInit& from); void MergeFrom(const CSVCMsg_VoiceInit& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_VoiceInit* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional string codec = 2; bool has_codec() const; void clear_codec(); static const int kCodecFieldNumber = 2; const ::std::string& codec() const; void set_codec(const ::std::string& value); #if LANG_CXX11 void set_codec(::std::string&& value); #endif void set_codec(const char* value); void set_codec(const char* value, size_t size); ::std::string* mutable_codec(); ::std::string* release_codec(); void set_allocated_codec(::std::string* codec); // optional int32 quality = 1; bool has_quality() const; void clear_quality(); static const int kQualityFieldNumber = 1; ::google::protobuf::int32 quality() const; void set_quality(::google::protobuf::int32 value); // @@protoc_insertion_point(class_scope:CSVCMsg_VoiceInit) private: void set_has_quality(); void clear_has_quality(); void set_has_codec(); void clear_has_codec(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr codec_; ::google::protobuf::int32 quality_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_VoiceData : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_VoiceData) */ { public: CSVCMsg_VoiceData(); virtual ~CSVCMsg_VoiceData(); CSVCMsg_VoiceData(const CSVCMsg_VoiceData& from); inline CSVCMsg_VoiceData& operator=(const CSVCMsg_VoiceData& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_VoiceData(CSVCMsg_VoiceData&& from) noexcept : CSVCMsg_VoiceData() { *this = ::std::move(from); } inline CSVCMsg_VoiceData& operator=(CSVCMsg_VoiceData&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_VoiceData& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_VoiceData* internal_default_instance() { return reinterpret_cast<const CSVCMsg_VoiceData*>( &_CSVCMsg_VoiceData_default_instance_); } static constexpr int kIndexInFileMessages = 24; void Swap(CSVCMsg_VoiceData* other); friend void swap(CSVCMsg_VoiceData& a, CSVCMsg_VoiceData& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_VoiceData* New() const final { return CreateMaybeMessage<CSVCMsg_VoiceData>(NULL); } CSVCMsg_VoiceData* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_VoiceData>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_VoiceData& from); void MergeFrom(const CSVCMsg_VoiceData& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_VoiceData* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional bytes voice_data = 5; bool has_voice_data() const; void clear_voice_data(); static const int kVoiceDataFieldNumber = 5; const ::std::string& voice_data() const; void set_voice_data(const ::std::string& value); #if LANG_CXX11 void set_voice_data(::std::string&& value); #endif void set_voice_data(const char* value); void set_voice_data(const void* value, size_t size); ::std::string* mutable_voice_data(); ::std::string* release_voice_data(); void set_allocated_voice_data(::std::string* voice_data); // optional int32 client = 1; bool has_client() const; void clear_client(); static const int kClientFieldNumber = 1; ::google::protobuf::int32 client() const; void set_client(::google::protobuf::int32 value); // optional bool proximity = 2; bool has_proximity() const; void clear_proximity(); static const int kProximityFieldNumber = 2; bool proximity() const; void set_proximity(bool value); // optional fixed64 xuid = 3; bool has_xuid() const; void clear_xuid(); static const int kXuidFieldNumber = 3; ::google::protobuf::uint64 xuid() const; void set_xuid(::google::protobuf::uint64 value); // optional int32 audible_mask = 4; bool has_audible_mask() const; void clear_audible_mask(); static const int kAudibleMaskFieldNumber = 4; ::google::protobuf::int32 audible_mask() const; void set_audible_mask(::google::protobuf::int32 value); // @@protoc_insertion_point(class_scope:CSVCMsg_VoiceData) private: void set_has_client(); void clear_has_client(); void set_has_proximity(); void clear_has_proximity(); void set_has_xuid(); void clear_has_xuid(); void set_has_audible_mask(); void clear_has_audible_mask(); void set_has_voice_data(); void clear_has_voice_data(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr voice_data_; ::google::protobuf::int32 client_; bool proximity_; ::google::protobuf::uint64 xuid_; ::google::protobuf::int32 audible_mask_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_FixAngle : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_FixAngle) */ { public: CSVCMsg_FixAngle(); virtual ~CSVCMsg_FixAngle(); CSVCMsg_FixAngle(const CSVCMsg_FixAngle& from); inline CSVCMsg_FixAngle& operator=(const CSVCMsg_FixAngle& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_FixAngle(CSVCMsg_FixAngle&& from) noexcept : CSVCMsg_FixAngle() { *this = ::std::move(from); } inline CSVCMsg_FixAngle& operator=(CSVCMsg_FixAngle&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_FixAngle& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_FixAngle* internal_default_instance() { return reinterpret_cast<const CSVCMsg_FixAngle*>( &_CSVCMsg_FixAngle_default_instance_); } static constexpr int kIndexInFileMessages = 25; void Swap(CSVCMsg_FixAngle* other); friend void swap(CSVCMsg_FixAngle& a, CSVCMsg_FixAngle& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_FixAngle* New() const final { return CreateMaybeMessage<CSVCMsg_FixAngle>(NULL); } CSVCMsg_FixAngle* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_FixAngle>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_FixAngle& from); void MergeFrom(const CSVCMsg_FixAngle& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_FixAngle* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional .CMsgQAngle angle = 2; bool has_angle() const; void clear_angle(); static const int kAngleFieldNumber = 2; private: const ::CMsgQAngle& _internal_angle() const; public: const ::CMsgQAngle& angle() const; ::CMsgQAngle* release_angle(); ::CMsgQAngle* mutable_angle(); void set_allocated_angle(::CMsgQAngle* angle); // optional bool relative = 1; bool has_relative() const; void clear_relative(); static const int kRelativeFieldNumber = 1; bool relative() const; void set_relative(bool value); // @@protoc_insertion_point(class_scope:CSVCMsg_FixAngle) private: void set_has_relative(); void clear_has_relative(); void set_has_angle(); void clear_has_angle(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::CMsgQAngle* angle_; bool relative_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_CrosshairAngle : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_CrosshairAngle) */ { public: CSVCMsg_CrosshairAngle(); virtual ~CSVCMsg_CrosshairAngle(); CSVCMsg_CrosshairAngle(const CSVCMsg_CrosshairAngle& from); inline CSVCMsg_CrosshairAngle& operator=(const CSVCMsg_CrosshairAngle& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_CrosshairAngle(CSVCMsg_CrosshairAngle&& from) noexcept : CSVCMsg_CrosshairAngle() { *this = ::std::move(from); } inline CSVCMsg_CrosshairAngle& operator=(CSVCMsg_CrosshairAngle&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_CrosshairAngle& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_CrosshairAngle* internal_default_instance() { return reinterpret_cast<const CSVCMsg_CrosshairAngle*>( &_CSVCMsg_CrosshairAngle_default_instance_); } static constexpr int kIndexInFileMessages = 26; void Swap(CSVCMsg_CrosshairAngle* other); friend void swap(CSVCMsg_CrosshairAngle& a, CSVCMsg_CrosshairAngle& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_CrosshairAngle* New() const final { return CreateMaybeMessage<CSVCMsg_CrosshairAngle>(NULL); } CSVCMsg_CrosshairAngle* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_CrosshairAngle>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_CrosshairAngle& from); void MergeFrom(const CSVCMsg_CrosshairAngle& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_CrosshairAngle* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional .CMsgQAngle angle = 1; bool has_angle() const; void clear_angle(); static const int kAngleFieldNumber = 1; private: const ::CMsgQAngle& _internal_angle() const; public: const ::CMsgQAngle& angle() const; ::CMsgQAngle* release_angle(); ::CMsgQAngle* mutable_angle(); void set_allocated_angle(::CMsgQAngle* angle); // @@protoc_insertion_point(class_scope:CSVCMsg_CrosshairAngle) private: void set_has_angle(); void clear_has_angle(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::CMsgQAngle* angle_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_Prefetch : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_Prefetch) */ { public: CSVCMsg_Prefetch(); virtual ~CSVCMsg_Prefetch(); CSVCMsg_Prefetch(const CSVCMsg_Prefetch& from); inline CSVCMsg_Prefetch& operator=(const CSVCMsg_Prefetch& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_Prefetch(CSVCMsg_Prefetch&& from) noexcept : CSVCMsg_Prefetch() { *this = ::std::move(from); } inline CSVCMsg_Prefetch& operator=(CSVCMsg_Prefetch&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_Prefetch& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_Prefetch* internal_default_instance() { return reinterpret_cast<const CSVCMsg_Prefetch*>( &_CSVCMsg_Prefetch_default_instance_); } static constexpr int kIndexInFileMessages = 27; void Swap(CSVCMsg_Prefetch* other); friend void swap(CSVCMsg_Prefetch& a, CSVCMsg_Prefetch& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_Prefetch* New() const final { return CreateMaybeMessage<CSVCMsg_Prefetch>(NULL); } CSVCMsg_Prefetch* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_Prefetch>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_Prefetch& from); void MergeFrom(const CSVCMsg_Prefetch& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_Prefetch* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional int32 sound_index = 1; bool has_sound_index() const; void clear_sound_index(); static const int kSoundIndexFieldNumber = 1; ::google::protobuf::int32 sound_index() const; void set_sound_index(::google::protobuf::int32 value); // @@protoc_insertion_point(class_scope:CSVCMsg_Prefetch) private: void set_has_sound_index(); void clear_has_sound_index(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::int32 sound_index_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_BSPDecal : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_BSPDecal) */ { public: CSVCMsg_BSPDecal(); virtual ~CSVCMsg_BSPDecal(); CSVCMsg_BSPDecal(const CSVCMsg_BSPDecal& from); inline CSVCMsg_BSPDecal& operator=(const CSVCMsg_BSPDecal& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_BSPDecal(CSVCMsg_BSPDecal&& from) noexcept : CSVCMsg_BSPDecal() { *this = ::std::move(from); } inline CSVCMsg_BSPDecal& operator=(CSVCMsg_BSPDecal&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_BSPDecal& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_BSPDecal* internal_default_instance() { return reinterpret_cast<const CSVCMsg_BSPDecal*>( &_CSVCMsg_BSPDecal_default_instance_); } static constexpr int kIndexInFileMessages = 28; void Swap(CSVCMsg_BSPDecal* other); friend void swap(CSVCMsg_BSPDecal& a, CSVCMsg_BSPDecal& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_BSPDecal* New() const final { return CreateMaybeMessage<CSVCMsg_BSPDecal>(NULL); } CSVCMsg_BSPDecal* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_BSPDecal>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_BSPDecal& from); void MergeFrom(const CSVCMsg_BSPDecal& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_BSPDecal* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional .CMsgVector pos = 1; bool has_pos() const; void clear_pos(); static const int kPosFieldNumber = 1; private: const ::CMsgVector& _internal_pos() const; public: const ::CMsgVector& pos() const; ::CMsgVector* release_pos(); ::CMsgVector* mutable_pos(); void set_allocated_pos(::CMsgVector* pos); // optional int32 decal_texture_index = 2; bool has_decal_texture_index() const; void clear_decal_texture_index(); static const int kDecalTextureIndexFieldNumber = 2; ::google::protobuf::int32 decal_texture_index() const; void set_decal_texture_index(::google::protobuf::int32 value); // optional int32 entity_index = 3; bool has_entity_index() const; void clear_entity_index(); static const int kEntityIndexFieldNumber = 3; ::google::protobuf::int32 entity_index() const; void set_entity_index(::google::protobuf::int32 value); // optional int32 model_index = 4; bool has_model_index() const; void clear_model_index(); static const int kModelIndexFieldNumber = 4; ::google::protobuf::int32 model_index() const; void set_model_index(::google::protobuf::int32 value); // optional bool low_priority = 5; bool has_low_priority() const; void clear_low_priority(); static const int kLowPriorityFieldNumber = 5; bool low_priority() const; void set_low_priority(bool value); // @@protoc_insertion_point(class_scope:CSVCMsg_BSPDecal) private: void set_has_pos(); void clear_has_pos(); void set_has_decal_texture_index(); void clear_has_decal_texture_index(); void set_has_entity_index(); void clear_has_entity_index(); void set_has_model_index(); void clear_has_model_index(); void set_has_low_priority(); void clear_has_low_priority(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::CMsgVector* pos_; ::google::protobuf::int32 decal_texture_index_; ::google::protobuf::int32 entity_index_; ::google::protobuf::int32 model_index_; bool low_priority_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_GetCvarValue : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_GetCvarValue) */ { public: CSVCMsg_GetCvarValue(); virtual ~CSVCMsg_GetCvarValue(); CSVCMsg_GetCvarValue(const CSVCMsg_GetCvarValue& from); inline CSVCMsg_GetCvarValue& operator=(const CSVCMsg_GetCvarValue& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_GetCvarValue(CSVCMsg_GetCvarValue&& from) noexcept : CSVCMsg_GetCvarValue() { *this = ::std::move(from); } inline CSVCMsg_GetCvarValue& operator=(CSVCMsg_GetCvarValue&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_GetCvarValue& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_GetCvarValue* internal_default_instance() { return reinterpret_cast<const CSVCMsg_GetCvarValue*>( &_CSVCMsg_GetCvarValue_default_instance_); } static constexpr int kIndexInFileMessages = 29; void Swap(CSVCMsg_GetCvarValue* other); friend void swap(CSVCMsg_GetCvarValue& a, CSVCMsg_GetCvarValue& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_GetCvarValue* New() const final { return CreateMaybeMessage<CSVCMsg_GetCvarValue>(NULL); } CSVCMsg_GetCvarValue* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_GetCvarValue>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_GetCvarValue& from); void MergeFrom(const CSVCMsg_GetCvarValue& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_GetCvarValue* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional string cvar_name = 2; bool has_cvar_name() const; void clear_cvar_name(); static const int kCvarNameFieldNumber = 2; const ::std::string& cvar_name() const; void set_cvar_name(const ::std::string& value); #if LANG_CXX11 void set_cvar_name(::std::string&& value); #endif void set_cvar_name(const char* value); void set_cvar_name(const char* value, size_t size); ::std::string* mutable_cvar_name(); ::std::string* release_cvar_name(); void set_allocated_cvar_name(::std::string* cvar_name); // optional int32 cookie = 1; bool has_cookie() const; void clear_cookie(); static const int kCookieFieldNumber = 1; ::google::protobuf::int32 cookie() const; void set_cookie(::google::protobuf::int32 value); // @@protoc_insertion_point(class_scope:CSVCMsg_GetCvarValue) private: void set_has_cookie(); void clear_has_cookie(); void set_has_cvar_name(); void clear_has_cvar_name(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr cvar_name_; ::google::protobuf::int32 cookie_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_Menu : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_Menu) */ { public: CSVCMsg_Menu(); virtual ~CSVCMsg_Menu(); CSVCMsg_Menu(const CSVCMsg_Menu& from); inline CSVCMsg_Menu& operator=(const CSVCMsg_Menu& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_Menu(CSVCMsg_Menu&& from) noexcept : CSVCMsg_Menu() { *this = ::std::move(from); } inline CSVCMsg_Menu& operator=(CSVCMsg_Menu&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_Menu& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_Menu* internal_default_instance() { return reinterpret_cast<const CSVCMsg_Menu*>( &_CSVCMsg_Menu_default_instance_); } static constexpr int kIndexInFileMessages = 30; void Swap(CSVCMsg_Menu* other); friend void swap(CSVCMsg_Menu& a, CSVCMsg_Menu& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_Menu* New() const final { return CreateMaybeMessage<CSVCMsg_Menu>(NULL); } CSVCMsg_Menu* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_Menu>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_Menu& from); void MergeFrom(const CSVCMsg_Menu& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_Menu* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional bytes menu_key_values = 2; bool has_menu_key_values() const; void clear_menu_key_values(); static const int kMenuKeyValuesFieldNumber = 2; const ::std::string& menu_key_values() const; void set_menu_key_values(const ::std::string& value); #if LANG_CXX11 void set_menu_key_values(::std::string&& value); #endif void set_menu_key_values(const char* value); void set_menu_key_values(const void* value, size_t size); ::std::string* mutable_menu_key_values(); ::std::string* release_menu_key_values(); void set_allocated_menu_key_values(::std::string* menu_key_values); // optional int32 dialog_type = 1; bool has_dialog_type() const; void clear_dialog_type(); static const int kDialogTypeFieldNumber = 1; ::google::protobuf::int32 dialog_type() const; void set_dialog_type(::google::protobuf::int32 value); // @@protoc_insertion_point(class_scope:CSVCMsg_Menu) private: void set_has_dialog_type(); void clear_has_dialog_type(); void set_has_menu_key_values(); void clear_has_menu_key_values(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr menu_key_values_; ::google::protobuf::int32 dialog_type_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_UserMessage : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_UserMessage) */ { public: CSVCMsg_UserMessage(); virtual ~CSVCMsg_UserMessage(); CSVCMsg_UserMessage(const CSVCMsg_UserMessage& from); inline CSVCMsg_UserMessage& operator=(const CSVCMsg_UserMessage& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_UserMessage(CSVCMsg_UserMessage&& from) noexcept : CSVCMsg_UserMessage() { *this = ::std::move(from); } inline CSVCMsg_UserMessage& operator=(CSVCMsg_UserMessage&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_UserMessage& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_UserMessage* internal_default_instance() { return reinterpret_cast<const CSVCMsg_UserMessage*>( &_CSVCMsg_UserMessage_default_instance_); } static constexpr int kIndexInFileMessages = 31; void Swap(CSVCMsg_UserMessage* other); friend void swap(CSVCMsg_UserMessage& a, CSVCMsg_UserMessage& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_UserMessage* New() const final { return CreateMaybeMessage<CSVCMsg_UserMessage>(NULL); } CSVCMsg_UserMessage* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_UserMessage>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_UserMessage& from); void MergeFrom(const CSVCMsg_UserMessage& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_UserMessage* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional bytes msg_data = 2; bool has_msg_data() const; void clear_msg_data(); static const int kMsgDataFieldNumber = 2; const ::std::string& msg_data() const; void set_msg_data(const ::std::string& value); #if LANG_CXX11 void set_msg_data(::std::string&& value); #endif void set_msg_data(const char* value); void set_msg_data(const void* value, size_t size); ::std::string* mutable_msg_data(); ::std::string* release_msg_data(); void set_allocated_msg_data(::std::string* msg_data); // optional int32 msg_type = 1; bool has_msg_type() const; void clear_msg_type(); static const int kMsgTypeFieldNumber = 1; ::google::protobuf::int32 msg_type() const; void set_msg_type(::google::protobuf::int32 value); // @@protoc_insertion_point(class_scope:CSVCMsg_UserMessage) private: void set_has_msg_type(); void clear_has_msg_type(); void set_has_msg_data(); void clear_has_msg_data(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr msg_data_; ::google::protobuf::int32 msg_type_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_GameEvent_key_t : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_GameEvent.key_t) */ { public: CSVCMsg_GameEvent_key_t(); virtual ~CSVCMsg_GameEvent_key_t(); CSVCMsg_GameEvent_key_t(const CSVCMsg_GameEvent_key_t& from); inline CSVCMsg_GameEvent_key_t& operator=(const CSVCMsg_GameEvent_key_t& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_GameEvent_key_t(CSVCMsg_GameEvent_key_t&& from) noexcept : CSVCMsg_GameEvent_key_t() { *this = ::std::move(from); } inline CSVCMsg_GameEvent_key_t& operator=(CSVCMsg_GameEvent_key_t&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_GameEvent_key_t& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_GameEvent_key_t* internal_default_instance() { return reinterpret_cast<const CSVCMsg_GameEvent_key_t*>( &_CSVCMsg_GameEvent_key_t_default_instance_); } static constexpr int kIndexInFileMessages = 32; void Swap(CSVCMsg_GameEvent_key_t* other); friend void swap(CSVCMsg_GameEvent_key_t& a, CSVCMsg_GameEvent_key_t& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_GameEvent_key_t* New() const final { return CreateMaybeMessage<CSVCMsg_GameEvent_key_t>(NULL); } CSVCMsg_GameEvent_key_t* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_GameEvent_key_t>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_GameEvent_key_t& from); void MergeFrom(const CSVCMsg_GameEvent_key_t& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_GameEvent_key_t* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional string val_string = 2; bool has_val_string() const; void clear_val_string(); static const int kValStringFieldNumber = 2; const ::std::string& val_string() const; void set_val_string(const ::std::string& value); #if LANG_CXX11 void set_val_string(::std::string&& value); #endif void set_val_string(const char* value); void set_val_string(const char* value, size_t size); ::std::string* mutable_val_string(); ::std::string* release_val_string(); void set_allocated_val_string(::std::string* val_string); // optional bytes val_wstring = 9; bool has_val_wstring() const; void clear_val_wstring(); static const int kValWstringFieldNumber = 9; const ::std::string& val_wstring() const; void set_val_wstring(const ::std::string& value); #if LANG_CXX11 void set_val_wstring(::std::string&& value); #endif void set_val_wstring(const char* value); void set_val_wstring(const void* value, size_t size); ::std::string* mutable_val_wstring(); ::std::string* release_val_wstring(); void set_allocated_val_wstring(::std::string* val_wstring); // optional int32 type = 1; bool has_type() const; void clear_type(); static const int kTypeFieldNumber = 1; ::google::protobuf::int32 type() const; void set_type(::google::protobuf::int32 value); // optional float val_float = 3; bool has_val_float() const; void clear_val_float(); static const int kValFloatFieldNumber = 3; float val_float() const; void set_val_float(float value); // optional int32 val_long = 4; bool has_val_long() const; void clear_val_long(); static const int kValLongFieldNumber = 4; ::google::protobuf::int32 val_long() const; void set_val_long(::google::protobuf::int32 value); // optional int32 val_short = 5; bool has_val_short() const; void clear_val_short(); static const int kValShortFieldNumber = 5; ::google::protobuf::int32 val_short() const; void set_val_short(::google::protobuf::int32 value); // optional int32 val_byte = 6; bool has_val_byte() const; void clear_val_byte(); static const int kValByteFieldNumber = 6; ::google::protobuf::int32 val_byte() const; void set_val_byte(::google::protobuf::int32 value); // optional bool val_bool = 7; bool has_val_bool() const; void clear_val_bool(); static const int kValBoolFieldNumber = 7; bool val_bool() const; void set_val_bool(bool value); // optional uint64 val_uint64 = 8; bool has_val_uint64() const; void clear_val_uint64(); static const int kValUint64FieldNumber = 8; ::google::protobuf::uint64 val_uint64() const; void set_val_uint64(::google::protobuf::uint64 value); // @@protoc_insertion_point(class_scope:CSVCMsg_GameEvent.key_t) private: void set_has_type(); void clear_has_type(); void set_has_val_string(); void clear_has_val_string(); void set_has_val_float(); void clear_has_val_float(); void set_has_val_long(); void clear_has_val_long(); void set_has_val_short(); void clear_has_val_short(); void set_has_val_byte(); void clear_has_val_byte(); void set_has_val_bool(); void clear_has_val_bool(); void set_has_val_uint64(); void clear_has_val_uint64(); void set_has_val_wstring(); void clear_has_val_wstring(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr val_string_; ::google::protobuf::internal::ArenaStringPtr val_wstring_; ::google::protobuf::int32 type_; float val_float_; ::google::protobuf::int32 val_long_; ::google::protobuf::int32 val_short_; ::google::protobuf::int32 val_byte_; bool val_bool_; ::google::protobuf::uint64 val_uint64_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_GameEvent : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_GameEvent) */ { public: CSVCMsg_GameEvent(); virtual ~CSVCMsg_GameEvent(); CSVCMsg_GameEvent(const CSVCMsg_GameEvent& from); inline CSVCMsg_GameEvent& operator=(const CSVCMsg_GameEvent& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_GameEvent(CSVCMsg_GameEvent&& from) noexcept : CSVCMsg_GameEvent() { *this = ::std::move(from); } inline CSVCMsg_GameEvent& operator=(CSVCMsg_GameEvent&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_GameEvent& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_GameEvent* internal_default_instance() { return reinterpret_cast<const CSVCMsg_GameEvent*>( &_CSVCMsg_GameEvent_default_instance_); } static constexpr int kIndexInFileMessages = 33; void Swap(CSVCMsg_GameEvent* other); friend void swap(CSVCMsg_GameEvent& a, CSVCMsg_GameEvent& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_GameEvent* New() const final { return CreateMaybeMessage<CSVCMsg_GameEvent>(NULL); } CSVCMsg_GameEvent* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_GameEvent>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_GameEvent& from); void MergeFrom(const CSVCMsg_GameEvent& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_GameEvent* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- typedef CSVCMsg_GameEvent_key_t key_t; // accessors ------------------------------------------------------- // repeated .CSVCMsg_GameEvent.key_t keys = 3; int keys_size() const; void clear_keys(); static const int kKeysFieldNumber = 3; ::CSVCMsg_GameEvent_key_t* mutable_keys(int index); ::google::protobuf::RepeatedPtrField< ::CSVCMsg_GameEvent_key_t >* mutable_keys(); const ::CSVCMsg_GameEvent_key_t& keys(int index) const; ::CSVCMsg_GameEvent_key_t* add_keys(); const ::google::protobuf::RepeatedPtrField< ::CSVCMsg_GameEvent_key_t >& keys() const; // optional string event_name = 1; bool has_event_name() const; void clear_event_name(); static const int kEventNameFieldNumber = 1; const ::std::string& event_name() const; void set_event_name(const ::std::string& value); #if LANG_CXX11 void set_event_name(::std::string&& value); #endif void set_event_name(const char* value); void set_event_name(const char* value, size_t size); ::std::string* mutable_event_name(); ::std::string* release_event_name(); void set_allocated_event_name(::std::string* event_name); // optional int32 eventid = 2; bool has_eventid() const; void clear_eventid(); static const int kEventidFieldNumber = 2; ::google::protobuf::int32 eventid() const; void set_eventid(::google::protobuf::int32 value); // @@protoc_insertion_point(class_scope:CSVCMsg_GameEvent) private: void set_has_event_name(); void clear_has_event_name(); void set_has_eventid(); void clear_has_eventid(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::CSVCMsg_GameEvent_key_t > keys_; ::google::protobuf::internal::ArenaStringPtr event_name_; ::google::protobuf::int32 eventid_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_GameEventList_key_t : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_GameEventList.key_t) */ { public: CSVCMsg_GameEventList_key_t(); virtual ~CSVCMsg_GameEventList_key_t(); CSVCMsg_GameEventList_key_t(const CSVCMsg_GameEventList_key_t& from); inline CSVCMsg_GameEventList_key_t& operator=(const CSVCMsg_GameEventList_key_t& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_GameEventList_key_t(CSVCMsg_GameEventList_key_t&& from) noexcept : CSVCMsg_GameEventList_key_t() { *this = ::std::move(from); } inline CSVCMsg_GameEventList_key_t& operator=(CSVCMsg_GameEventList_key_t&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_GameEventList_key_t& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_GameEventList_key_t* internal_default_instance() { return reinterpret_cast<const CSVCMsg_GameEventList_key_t*>( &_CSVCMsg_GameEventList_key_t_default_instance_); } static constexpr int kIndexInFileMessages = 34; void Swap(CSVCMsg_GameEventList_key_t* other); friend void swap(CSVCMsg_GameEventList_key_t& a, CSVCMsg_GameEventList_key_t& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_GameEventList_key_t* New() const final { return CreateMaybeMessage<CSVCMsg_GameEventList_key_t>(NULL); } CSVCMsg_GameEventList_key_t* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_GameEventList_key_t>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_GameEventList_key_t& from); void MergeFrom(const CSVCMsg_GameEventList_key_t& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_GameEventList_key_t* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional string name = 2; bool has_name() const; void clear_name(); static const int kNameFieldNumber = 2; const ::std::string& name() const; void set_name(const ::std::string& value); #if LANG_CXX11 void set_name(::std::string&& value); #endif void set_name(const char* value); void set_name(const char* value, size_t size); ::std::string* mutable_name(); ::std::string* release_name(); void set_allocated_name(::std::string* name); // optional int32 type = 1; bool has_type() const; void clear_type(); static const int kTypeFieldNumber = 1; ::google::protobuf::int32 type() const; void set_type(::google::protobuf::int32 value); // @@protoc_insertion_point(class_scope:CSVCMsg_GameEventList.key_t) private: void set_has_type(); void clear_has_type(); void set_has_name(); void clear_has_name(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr name_; ::google::protobuf::int32 type_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_GameEventList_descriptor_t : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_GameEventList.descriptor_t) */ { public: CSVCMsg_GameEventList_descriptor_t(); virtual ~CSVCMsg_GameEventList_descriptor_t(); CSVCMsg_GameEventList_descriptor_t(const CSVCMsg_GameEventList_descriptor_t& from); inline CSVCMsg_GameEventList_descriptor_t& operator=(const CSVCMsg_GameEventList_descriptor_t& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_GameEventList_descriptor_t(CSVCMsg_GameEventList_descriptor_t&& from) noexcept : CSVCMsg_GameEventList_descriptor_t() { *this = ::std::move(from); } inline CSVCMsg_GameEventList_descriptor_t& operator=(CSVCMsg_GameEventList_descriptor_t&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_GameEventList_descriptor_t& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_GameEventList_descriptor_t* internal_default_instance() { return reinterpret_cast<const CSVCMsg_GameEventList_descriptor_t*>( &_CSVCMsg_GameEventList_descriptor_t_default_instance_); } static constexpr int kIndexInFileMessages = 35; void Swap(CSVCMsg_GameEventList_descriptor_t* other); friend void swap(CSVCMsg_GameEventList_descriptor_t& a, CSVCMsg_GameEventList_descriptor_t& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_GameEventList_descriptor_t* New() const final { return CreateMaybeMessage<CSVCMsg_GameEventList_descriptor_t>(NULL); } CSVCMsg_GameEventList_descriptor_t* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_GameEventList_descriptor_t>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_GameEventList_descriptor_t& from); void MergeFrom(const CSVCMsg_GameEventList_descriptor_t& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_GameEventList_descriptor_t* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // repeated .CSVCMsg_GameEventList.key_t keys = 3; int keys_size() const; void clear_keys(); static const int kKeysFieldNumber = 3; ::CSVCMsg_GameEventList_key_t* mutable_keys(int index); ::google::protobuf::RepeatedPtrField< ::CSVCMsg_GameEventList_key_t >* mutable_keys(); const ::CSVCMsg_GameEventList_key_t& keys(int index) const; ::CSVCMsg_GameEventList_key_t* add_keys(); const ::google::protobuf::RepeatedPtrField< ::CSVCMsg_GameEventList_key_t >& keys() const; // optional string name = 2; bool has_name() const; void clear_name(); static const int kNameFieldNumber = 2; const ::std::string& name() const; void set_name(const ::std::string& value); #if LANG_CXX11 void set_name(::std::string&& value); #endif void set_name(const char* value); void set_name(const char* value, size_t size); ::std::string* mutable_name(); ::std::string* release_name(); void set_allocated_name(::std::string* name); // optional int32 eventid = 1; bool has_eventid() const; void clear_eventid(); static const int kEventidFieldNumber = 1; ::google::protobuf::int32 eventid() const; void set_eventid(::google::protobuf::int32 value); // @@protoc_insertion_point(class_scope:CSVCMsg_GameEventList.descriptor_t) private: void set_has_eventid(); void clear_has_eventid(); void set_has_name(); void clear_has_name(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::CSVCMsg_GameEventList_key_t > keys_; ::google::protobuf::internal::ArenaStringPtr name_; ::google::protobuf::int32 eventid_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_GameEventList : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_GameEventList) */ { public: CSVCMsg_GameEventList(); virtual ~CSVCMsg_GameEventList(); CSVCMsg_GameEventList(const CSVCMsg_GameEventList& from); inline CSVCMsg_GameEventList& operator=(const CSVCMsg_GameEventList& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_GameEventList(CSVCMsg_GameEventList&& from) noexcept : CSVCMsg_GameEventList() { *this = ::std::move(from); } inline CSVCMsg_GameEventList& operator=(CSVCMsg_GameEventList&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_GameEventList& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_GameEventList* internal_default_instance() { return reinterpret_cast<const CSVCMsg_GameEventList*>( &_CSVCMsg_GameEventList_default_instance_); } static constexpr int kIndexInFileMessages = 36; void Swap(CSVCMsg_GameEventList* other); friend void swap(CSVCMsg_GameEventList& a, CSVCMsg_GameEventList& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_GameEventList* New() const final { return CreateMaybeMessage<CSVCMsg_GameEventList>(NULL); } CSVCMsg_GameEventList* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_GameEventList>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_GameEventList& from); void MergeFrom(const CSVCMsg_GameEventList& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_GameEventList* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- typedef CSVCMsg_GameEventList_key_t key_t; typedef CSVCMsg_GameEventList_descriptor_t descriptor_t; // accessors ------------------------------------------------------- // repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1; int descriptors_size() const; void clear_descriptors(); static const int kDescriptorsFieldNumber = 1; ::CSVCMsg_GameEventList_descriptor_t* mutable_descriptors(int index); ::google::protobuf::RepeatedPtrField< ::CSVCMsg_GameEventList_descriptor_t >* mutable_descriptors(); const ::CSVCMsg_GameEventList_descriptor_t& descriptors(int index) const; ::CSVCMsg_GameEventList_descriptor_t* add_descriptors(); const ::google::protobuf::RepeatedPtrField< ::CSVCMsg_GameEventList_descriptor_t >& descriptors() const; // @@protoc_insertion_point(class_scope:CSVCMsg_GameEventList) private: ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::CSVCMsg_GameEventList_descriptor_t > descriptors_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_TempEntities : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_TempEntities) */ { public: CSVCMsg_TempEntities(); virtual ~CSVCMsg_TempEntities(); CSVCMsg_TempEntities(const CSVCMsg_TempEntities& from); inline CSVCMsg_TempEntities& operator=(const CSVCMsg_TempEntities& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_TempEntities(CSVCMsg_TempEntities&& from) noexcept : CSVCMsg_TempEntities() { *this = ::std::move(from); } inline CSVCMsg_TempEntities& operator=(CSVCMsg_TempEntities&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_TempEntities& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_TempEntities* internal_default_instance() { return reinterpret_cast<const CSVCMsg_TempEntities*>( &_CSVCMsg_TempEntities_default_instance_); } static constexpr int kIndexInFileMessages = 37; void Swap(CSVCMsg_TempEntities* other); friend void swap(CSVCMsg_TempEntities& a, CSVCMsg_TempEntities& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_TempEntities* New() const final { return CreateMaybeMessage<CSVCMsg_TempEntities>(NULL); } CSVCMsg_TempEntities* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_TempEntities>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_TempEntities& from); void MergeFrom(const CSVCMsg_TempEntities& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_TempEntities* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional bytes entity_data = 3; bool has_entity_data() const; void clear_entity_data(); static const int kEntityDataFieldNumber = 3; const ::std::string& entity_data() const; void set_entity_data(const ::std::string& value); #if LANG_CXX11 void set_entity_data(::std::string&& value); #endif void set_entity_data(const char* value); void set_entity_data(const void* value, size_t size); ::std::string* mutable_entity_data(); ::std::string* release_entity_data(); void set_allocated_entity_data(::std::string* entity_data); // optional bool reliable = 1; bool has_reliable() const; void clear_reliable(); static const int kReliableFieldNumber = 1; bool reliable() const; void set_reliable(bool value); // optional int32 num_entries = 2; bool has_num_entries() const; void clear_num_entries(); static const int kNumEntriesFieldNumber = 2; ::google::protobuf::int32 num_entries() const; void set_num_entries(::google::protobuf::int32 value); // @@protoc_insertion_point(class_scope:CSVCMsg_TempEntities) private: void set_has_reliable(); void clear_has_reliable(); void set_has_num_entries(); void clear_has_num_entries(); void set_has_entity_data(); void clear_has_entity_data(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr entity_data_; bool reliable_; ::google::protobuf::int32 num_entries_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_PacketEntities : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_PacketEntities) */ { public: CSVCMsg_PacketEntities(); virtual ~CSVCMsg_PacketEntities(); CSVCMsg_PacketEntities(const CSVCMsg_PacketEntities& from); inline CSVCMsg_PacketEntities& operator=(const CSVCMsg_PacketEntities& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_PacketEntities(CSVCMsg_PacketEntities&& from) noexcept : CSVCMsg_PacketEntities() { *this = ::std::move(from); } inline CSVCMsg_PacketEntities& operator=(CSVCMsg_PacketEntities&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_PacketEntities& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_PacketEntities* internal_default_instance() { return reinterpret_cast<const CSVCMsg_PacketEntities*>( &_CSVCMsg_PacketEntities_default_instance_); } static constexpr int kIndexInFileMessages = 38; void Swap(CSVCMsg_PacketEntities* other); friend void swap(CSVCMsg_PacketEntities& a, CSVCMsg_PacketEntities& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_PacketEntities* New() const final { return CreateMaybeMessage<CSVCMsg_PacketEntities>(NULL); } CSVCMsg_PacketEntities* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_PacketEntities>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_PacketEntities& from); void MergeFrom(const CSVCMsg_PacketEntities& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_PacketEntities* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional bytes entity_data = 7; bool has_entity_data() const; void clear_entity_data(); static const int kEntityDataFieldNumber = 7; const ::std::string& entity_data() const; void set_entity_data(const ::std::string& value); #if LANG_CXX11 void set_entity_data(::std::string&& value); #endif void set_entity_data(const char* value); void set_entity_data(const void* value, size_t size); ::std::string* mutable_entity_data(); ::std::string* release_entity_data(); void set_allocated_entity_data(::std::string* entity_data); // optional int32 max_entries = 1; bool has_max_entries() const; void clear_max_entries(); static const int kMaxEntriesFieldNumber = 1; ::google::protobuf::int32 max_entries() const; void set_max_entries(::google::protobuf::int32 value); // optional int32 updated_entries = 2; bool has_updated_entries() const; void clear_updated_entries(); static const int kUpdatedEntriesFieldNumber = 2; ::google::protobuf::int32 updated_entries() const; void set_updated_entries(::google::protobuf::int32 value); // optional bool is_delta = 3; bool has_is_delta() const; void clear_is_delta(); static const int kIsDeltaFieldNumber = 3; bool is_delta() const; void set_is_delta(bool value); // optional bool update_baseline = 4; bool has_update_baseline() const; void clear_update_baseline(); static const int kUpdateBaselineFieldNumber = 4; bool update_baseline() const; void set_update_baseline(bool value); // optional int32 baseline = 5; bool has_baseline() const; void clear_baseline(); static const int kBaselineFieldNumber = 5; ::google::protobuf::int32 baseline() const; void set_baseline(::google::protobuf::int32 value); // optional int32 delta_from = 6; bool has_delta_from() const; void clear_delta_from(); static const int kDeltaFromFieldNumber = 6; ::google::protobuf::int32 delta_from() const; void set_delta_from(::google::protobuf::int32 value); // @@protoc_insertion_point(class_scope:CSVCMsg_PacketEntities) private: void set_has_max_entries(); void clear_has_max_entries(); void set_has_updated_entries(); void clear_has_updated_entries(); void set_has_is_delta(); void clear_has_is_delta(); void set_has_update_baseline(); void clear_has_update_baseline(); void set_has_baseline(); void clear_has_baseline(); void set_has_delta_from(); void clear_has_delta_from(); void set_has_entity_data(); void clear_has_entity_data(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::internal::ArenaStringPtr entity_data_; ::google::protobuf::int32 max_entries_; ::google::protobuf::int32 updated_entries_; bool is_delta_; bool update_baseline_; ::google::protobuf::int32 baseline_; ::google::protobuf::int32 delta_from_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_Sounds_sounddata_t : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_Sounds.sounddata_t) */ { public: CSVCMsg_Sounds_sounddata_t(); virtual ~CSVCMsg_Sounds_sounddata_t(); CSVCMsg_Sounds_sounddata_t(const CSVCMsg_Sounds_sounddata_t& from); inline CSVCMsg_Sounds_sounddata_t& operator=(const CSVCMsg_Sounds_sounddata_t& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_Sounds_sounddata_t(CSVCMsg_Sounds_sounddata_t&& from) noexcept : CSVCMsg_Sounds_sounddata_t() { *this = ::std::move(from); } inline CSVCMsg_Sounds_sounddata_t& operator=(CSVCMsg_Sounds_sounddata_t&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_Sounds_sounddata_t& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_Sounds_sounddata_t* internal_default_instance() { return reinterpret_cast<const CSVCMsg_Sounds_sounddata_t*>( &_CSVCMsg_Sounds_sounddata_t_default_instance_); } static constexpr int kIndexInFileMessages = 39; void Swap(CSVCMsg_Sounds_sounddata_t* other); friend void swap(CSVCMsg_Sounds_sounddata_t& a, CSVCMsg_Sounds_sounddata_t& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_Sounds_sounddata_t* New() const final { return CreateMaybeMessage<CSVCMsg_Sounds_sounddata_t>(NULL); } CSVCMsg_Sounds_sounddata_t* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_Sounds_sounddata_t>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_Sounds_sounddata_t& from); void MergeFrom(const CSVCMsg_Sounds_sounddata_t& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_Sounds_sounddata_t* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- // accessors ------------------------------------------------------- // optional sint32 origin_x = 1; bool has_origin_x() const; void clear_origin_x(); static const int kOriginXFieldNumber = 1; ::google::protobuf::int32 origin_x() const; void set_origin_x(::google::protobuf::int32 value); // optional sint32 origin_y = 2; bool has_origin_y() const; void clear_origin_y(); static const int kOriginYFieldNumber = 2; ::google::protobuf::int32 origin_y() const; void set_origin_y(::google::protobuf::int32 value); // optional sint32 origin_z = 3; bool has_origin_z() const; void clear_origin_z(); static const int kOriginZFieldNumber = 3; ::google::protobuf::int32 origin_z() const; void set_origin_z(::google::protobuf::int32 value); // optional uint32 volume = 4; bool has_volume() const; void clear_volume(); static const int kVolumeFieldNumber = 4; ::google::protobuf::uint32 volume() const; void set_volume(::google::protobuf::uint32 value); // optional float delay_value = 5; bool has_delay_value() const; void clear_delay_value(); static const int kDelayValueFieldNumber = 5; float delay_value() const; void set_delay_value(float value); // optional int32 sequence_number = 6; bool has_sequence_number() const; void clear_sequence_number(); static const int kSequenceNumberFieldNumber = 6; ::google::protobuf::int32 sequence_number() const; void set_sequence_number(::google::protobuf::int32 value); // optional int32 entity_index = 7; bool has_entity_index() const; void clear_entity_index(); static const int kEntityIndexFieldNumber = 7; ::google::protobuf::int32 entity_index() const; void set_entity_index(::google::protobuf::int32 value); // optional int32 channel = 8; bool has_channel() const; void clear_channel(); static const int kChannelFieldNumber = 8; ::google::protobuf::int32 channel() const; void set_channel(::google::protobuf::int32 value); // optional int32 pitch = 9; bool has_pitch() const; void clear_pitch(); static const int kPitchFieldNumber = 9; ::google::protobuf::int32 pitch() const; void set_pitch(::google::protobuf::int32 value); // optional int32 flags = 10; bool has_flags() const; void clear_flags(); static const int kFlagsFieldNumber = 10; ::google::protobuf::int32 flags() const; void set_flags(::google::protobuf::int32 value); // optional uint32 sound_num = 11; bool has_sound_num() const; void clear_sound_num(); static const int kSoundNumFieldNumber = 11; ::google::protobuf::uint32 sound_num() const; void set_sound_num(::google::protobuf::uint32 value); // optional fixed32 sound_num_handle = 12; bool has_sound_num_handle() const; void clear_sound_num_handle(); static const int kSoundNumHandleFieldNumber = 12; ::google::protobuf::uint32 sound_num_handle() const; void set_sound_num_handle(::google::protobuf::uint32 value); // optional int32 speaker_entity = 13; bool has_speaker_entity() const; void clear_speaker_entity(); static const int kSpeakerEntityFieldNumber = 13; ::google::protobuf::int32 speaker_entity() const; void set_speaker_entity(::google::protobuf::int32 value); // optional int32 random_seed = 14; bool has_random_seed() const; void clear_random_seed(); static const int kRandomSeedFieldNumber = 14; ::google::protobuf::int32 random_seed() const; void set_random_seed(::google::protobuf::int32 value); // optional int32 sound_level = 15; bool has_sound_level() const; void clear_sound_level(); static const int kSoundLevelFieldNumber = 15; ::google::protobuf::int32 sound_level() const; void set_sound_level(::google::protobuf::int32 value); // optional bool is_sentence = 16; bool has_is_sentence() const; void clear_is_sentence(); static const int kIsSentenceFieldNumber = 16; bool is_sentence() const; void set_is_sentence(bool value); // optional bool is_ambient = 17; bool has_is_ambient() const; void clear_is_ambient(); static const int kIsAmbientFieldNumber = 17; bool is_ambient() const; void set_is_ambient(bool value); // @@protoc_insertion_point(class_scope:CSVCMsg_Sounds.sounddata_t) private: void set_has_origin_x(); void clear_has_origin_x(); void set_has_origin_y(); void clear_has_origin_y(); void set_has_origin_z(); void clear_has_origin_z(); void set_has_volume(); void clear_has_volume(); void set_has_delay_value(); void clear_has_delay_value(); void set_has_sequence_number(); void clear_has_sequence_number(); void set_has_entity_index(); void clear_has_entity_index(); void set_has_channel(); void clear_has_channel(); void set_has_pitch(); void clear_has_pitch(); void set_has_flags(); void clear_has_flags(); void set_has_sound_num(); void clear_has_sound_num(); void set_has_sound_num_handle(); void clear_has_sound_num_handle(); void set_has_speaker_entity(); void clear_has_speaker_entity(); void set_has_random_seed(); void clear_has_random_seed(); void set_has_sound_level(); void clear_has_sound_level(); void set_has_is_sentence(); void clear_has_is_sentence(); void set_has_is_ambient(); void clear_has_is_ambient(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::int32 origin_x_; ::google::protobuf::int32 origin_y_; ::google::protobuf::int32 origin_z_; ::google::protobuf::uint32 volume_; float delay_value_; ::google::protobuf::int32 sequence_number_; ::google::protobuf::int32 entity_index_; ::google::protobuf::int32 channel_; ::google::protobuf::int32 pitch_; ::google::protobuf::int32 flags_; ::google::protobuf::uint32 sound_num_; ::google::protobuf::uint32 sound_num_handle_; ::google::protobuf::int32 speaker_entity_; ::google::protobuf::int32 random_seed_; ::google::protobuf::int32 sound_level_; bool is_sentence_; bool is_ambient_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // ------------------------------------------------------------------- class CSVCMsg_Sounds : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:CSVCMsg_Sounds) */ { public: CSVCMsg_Sounds(); virtual ~CSVCMsg_Sounds(); CSVCMsg_Sounds(const CSVCMsg_Sounds& from); inline CSVCMsg_Sounds& operator=(const CSVCMsg_Sounds& from) { CopyFrom(from); return *this; } #if LANG_CXX11 CSVCMsg_Sounds(CSVCMsg_Sounds&& from) noexcept : CSVCMsg_Sounds() { *this = ::std::move(from); } inline CSVCMsg_Sounds& operator=(CSVCMsg_Sounds&& from) noexcept { if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) { if (this != &from) InternalSwap(&from); } else { CopyFrom(from); } return *this; } #endif inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const { return _internal_metadata_.unknown_fields(); } inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() { return _internal_metadata_.mutable_unknown_fields(); } static const ::google::protobuf::Descriptor* descriptor(); static const CSVCMsg_Sounds& default_instance(); static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY static inline const CSVCMsg_Sounds* internal_default_instance() { return reinterpret_cast<const CSVCMsg_Sounds*>( &_CSVCMsg_Sounds_default_instance_); } static constexpr int kIndexInFileMessages = 40; void Swap(CSVCMsg_Sounds* other); friend void swap(CSVCMsg_Sounds& a, CSVCMsg_Sounds& b) { a.Swap(&b); } // implements Message ---------------------------------------------- inline CSVCMsg_Sounds* New() const final { return CreateMaybeMessage<CSVCMsg_Sounds>(NULL); } CSVCMsg_Sounds* New(::google::protobuf::Arena* arena) const final { return CreateMaybeMessage<CSVCMsg_Sounds>(arena); } void CopyFrom(const ::google::protobuf::Message& from) final; void MergeFrom(const ::google::protobuf::Message& from) final; void CopyFrom(const CSVCMsg_Sounds& from); void MergeFrom(const CSVCMsg_Sounds& from); void Clear() final; bool IsInitialized() const final; size_t ByteSizeLong() const final; bool MergePartialFromCodedStream( ::google::protobuf::io::CodedInputStream* input) final; void SerializeWithCachedSizes( ::google::protobuf::io::CodedOutputStream* output) const final; ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray( bool deterministic, ::google::protobuf::uint8* target) const final; int GetCachedSize() const final { return _cached_size_.Get(); } private: void SharedCtor(); void SharedDtor(); void SetCachedSize(int size) const final; void InternalSwap(CSVCMsg_Sounds* other); private: inline ::google::protobuf::Arena* GetArenaNoVirtual() const { return NULL; } inline void* MaybeArenaPtr() const { return NULL; } public: ::google::protobuf::Metadata GetMetadata() const final; // nested types ---------------------------------------------------- typedef CSVCMsg_Sounds_sounddata_t sounddata_t; // accessors ------------------------------------------------------- // repeated .CSVCMsg_Sounds.sounddata_t sounds = 2; int sounds_size() const; void clear_sounds(); static const int kSoundsFieldNumber = 2; ::CSVCMsg_Sounds_sounddata_t* mutable_sounds(int index); ::google::protobuf::RepeatedPtrField< ::CSVCMsg_Sounds_sounddata_t >* mutable_sounds(); const ::CSVCMsg_Sounds_sounddata_t& sounds(int index) const; ::CSVCMsg_Sounds_sounddata_t* add_sounds(); const ::google::protobuf::RepeatedPtrField< ::CSVCMsg_Sounds_sounddata_t >& sounds() const; // optional bool reliable_sound = 1; bool has_reliable_sound() const; void clear_reliable_sound(); static const int kReliableSoundFieldNumber = 1; bool reliable_sound() const; void set_reliable_sound(bool value); // @@protoc_insertion_point(class_scope:CSVCMsg_Sounds) private: void set_has_reliable_sound(); void clear_has_reliable_sound(); ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_; ::google::protobuf::internal::HasBits<1> _has_bits_; mutable ::google::protobuf::internal::CachedSize _cached_size_; ::google::protobuf::RepeatedPtrField< ::CSVCMsg_Sounds_sounddata_t > sounds_; bool reliable_sound_; friend struct ::protobuf_netmessages_5fpublic_2eproto::TableStruct; }; // =================================================================== // =================================================================== #ifdef __GNUC__ #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wstrict-aliasing" #endif // __GNUC__ // CMsgVector // optional float x = 1; inline bool CMsgVector::has_x() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CMsgVector::set_has_x() { _has_bits_[0] |= 0x00000001u; } inline void CMsgVector::clear_has_x() { _has_bits_[0] &= ~0x00000001u; } inline void CMsgVector::clear_x() { x_ = 0; clear_has_x(); } inline float CMsgVector::x() const { // @@protoc_insertion_point(field_get:CMsgVector.x) return x_; } inline void CMsgVector::set_x(float value) { set_has_x(); x_ = value; // @@protoc_insertion_point(field_set:CMsgVector.x) } // optional float y = 2; inline bool CMsgVector::has_y() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CMsgVector::set_has_y() { _has_bits_[0] |= 0x00000002u; } inline void CMsgVector::clear_has_y() { _has_bits_[0] &= ~0x00000002u; } inline void CMsgVector::clear_y() { y_ = 0; clear_has_y(); } inline float CMsgVector::y() const { // @@protoc_insertion_point(field_get:CMsgVector.y) return y_; } inline void CMsgVector::set_y(float value) { set_has_y(); y_ = value; // @@protoc_insertion_point(field_set:CMsgVector.y) } // optional float z = 3; inline bool CMsgVector::has_z() const { return (_has_bits_[0] & 0x00000004u) != 0; } inline void CMsgVector::set_has_z() { _has_bits_[0] |= 0x00000004u; } inline void CMsgVector::clear_has_z() { _has_bits_[0] &= ~0x00000004u; } inline void CMsgVector::clear_z() { z_ = 0; clear_has_z(); } inline float CMsgVector::z() const { // @@protoc_insertion_point(field_get:CMsgVector.z) return z_; } inline void CMsgVector::set_z(float value) { set_has_z(); z_ = value; // @@protoc_insertion_point(field_set:CMsgVector.z) } // ------------------------------------------------------------------- // CMsgVector2D // optional float x = 1; inline bool CMsgVector2D::has_x() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CMsgVector2D::set_has_x() { _has_bits_[0] |= 0x00000001u; } inline void CMsgVector2D::clear_has_x() { _has_bits_[0] &= ~0x00000001u; } inline void CMsgVector2D::clear_x() { x_ = 0; clear_has_x(); } inline float CMsgVector2D::x() const { // @@protoc_insertion_point(field_get:CMsgVector2D.x) return x_; } inline void CMsgVector2D::set_x(float value) { set_has_x(); x_ = value; // @@protoc_insertion_point(field_set:CMsgVector2D.x) } // optional float y = 2; inline bool CMsgVector2D::has_y() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CMsgVector2D::set_has_y() { _has_bits_[0] |= 0x00000002u; } inline void CMsgVector2D::clear_has_y() { _has_bits_[0] &= ~0x00000002u; } inline void CMsgVector2D::clear_y() { y_ = 0; clear_has_y(); } inline float CMsgVector2D::y() const { // @@protoc_insertion_point(field_get:CMsgVector2D.y) return y_; } inline void CMsgVector2D::set_y(float value) { set_has_y(); y_ = value; // @@protoc_insertion_point(field_set:CMsgVector2D.y) } // ------------------------------------------------------------------- // CMsgQAngle // optional float x = 1; inline bool CMsgQAngle::has_x() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CMsgQAngle::set_has_x() { _has_bits_[0] |= 0x00000001u; } inline void CMsgQAngle::clear_has_x() { _has_bits_[0] &= ~0x00000001u; } inline void CMsgQAngle::clear_x() { x_ = 0; clear_has_x(); } inline float CMsgQAngle::x() const { // @@protoc_insertion_point(field_get:CMsgQAngle.x) return x_; } inline void CMsgQAngle::set_x(float value) { set_has_x(); x_ = value; // @@protoc_insertion_point(field_set:CMsgQAngle.x) } // optional float y = 2; inline bool CMsgQAngle::has_y() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CMsgQAngle::set_has_y() { _has_bits_[0] |= 0x00000002u; } inline void CMsgQAngle::clear_has_y() { _has_bits_[0] &= ~0x00000002u; } inline void CMsgQAngle::clear_y() { y_ = 0; clear_has_y(); } inline float CMsgQAngle::y() const { // @@protoc_insertion_point(field_get:CMsgQAngle.y) return y_; } inline void CMsgQAngle::set_y(float value) { set_has_y(); y_ = value; // @@protoc_insertion_point(field_set:CMsgQAngle.y) } // optional float z = 3; inline bool CMsgQAngle::has_z() const { return (_has_bits_[0] & 0x00000004u) != 0; } inline void CMsgQAngle::set_has_z() { _has_bits_[0] |= 0x00000004u; } inline void CMsgQAngle::clear_has_z() { _has_bits_[0] &= ~0x00000004u; } inline void CMsgQAngle::clear_z() { z_ = 0; clear_has_z(); } inline float CMsgQAngle::z() const { // @@protoc_insertion_point(field_get:CMsgQAngle.z) return z_; } inline void CMsgQAngle::set_z(float value) { set_has_z(); z_ = value; // @@protoc_insertion_point(field_set:CMsgQAngle.z) } // ------------------------------------------------------------------- // CMsgRGBA // optional int32 r = 1; inline bool CMsgRGBA::has_r() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CMsgRGBA::set_has_r() { _has_bits_[0] |= 0x00000001u; } inline void CMsgRGBA::clear_has_r() { _has_bits_[0] &= ~0x00000001u; } inline void CMsgRGBA::clear_r() { r_ = 0; clear_has_r(); } inline ::google::protobuf::int32 CMsgRGBA::r() const { // @@protoc_insertion_point(field_get:CMsgRGBA.r) return r_; } inline void CMsgRGBA::set_r(::google::protobuf::int32 value) { set_has_r(); r_ = value; // @@protoc_insertion_point(field_set:CMsgRGBA.r) } // optional int32 g = 2; inline bool CMsgRGBA::has_g() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CMsgRGBA::set_has_g() { _has_bits_[0] |= 0x00000002u; } inline void CMsgRGBA::clear_has_g() { _has_bits_[0] &= ~0x00000002u; } inline void CMsgRGBA::clear_g() { g_ = 0; clear_has_g(); } inline ::google::protobuf::int32 CMsgRGBA::g() const { // @@protoc_insertion_point(field_get:CMsgRGBA.g) return g_; } inline void CMsgRGBA::set_g(::google::protobuf::int32 value) { set_has_g(); g_ = value; // @@protoc_insertion_point(field_set:CMsgRGBA.g) } // optional int32 b = 3; inline bool CMsgRGBA::has_b() const { return (_has_bits_[0] & 0x00000004u) != 0; } inline void CMsgRGBA::set_has_b() { _has_bits_[0] |= 0x00000004u; } inline void CMsgRGBA::clear_has_b() { _has_bits_[0] &= ~0x00000004u; } inline void CMsgRGBA::clear_b() { b_ = 0; clear_has_b(); } inline ::google::protobuf::int32 CMsgRGBA::b() const { // @@protoc_insertion_point(field_get:CMsgRGBA.b) return b_; } inline void CMsgRGBA::set_b(::google::protobuf::int32 value) { set_has_b(); b_ = value; // @@protoc_insertion_point(field_set:CMsgRGBA.b) } // optional int32 a = 4; inline bool CMsgRGBA::has_a() const { return (_has_bits_[0] & 0x00000008u) != 0; } inline void CMsgRGBA::set_has_a() { _has_bits_[0] |= 0x00000008u; } inline void CMsgRGBA::clear_has_a() { _has_bits_[0] &= ~0x00000008u; } inline void CMsgRGBA::clear_a() { a_ = 0; clear_has_a(); } inline ::google::protobuf::int32 CMsgRGBA::a() const { // @@protoc_insertion_point(field_get:CMsgRGBA.a) return a_; } inline void CMsgRGBA::set_a(::google::protobuf::int32 value) { set_has_a(); a_ = value; // @@protoc_insertion_point(field_set:CMsgRGBA.a) } // ------------------------------------------------------------------- // CNETMsg_Tick // optional uint32 tick = 1; inline bool CNETMsg_Tick::has_tick() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CNETMsg_Tick::set_has_tick() { _has_bits_[0] |= 0x00000001u; } inline void CNETMsg_Tick::clear_has_tick() { _has_bits_[0] &= ~0x00000001u; } inline void CNETMsg_Tick::clear_tick() { tick_ = 0u; clear_has_tick(); } inline ::google::protobuf::uint32 CNETMsg_Tick::tick() const { // @@protoc_insertion_point(field_get:CNETMsg_Tick.tick) return tick_; } inline void CNETMsg_Tick::set_tick(::google::protobuf::uint32 value) { set_has_tick(); tick_ = value; // @@protoc_insertion_point(field_set:CNETMsg_Tick.tick) } // optional uint32 host_computationtime = 4; inline bool CNETMsg_Tick::has_host_computationtime() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CNETMsg_Tick::set_has_host_computationtime() { _has_bits_[0] |= 0x00000002u; } inline void CNETMsg_Tick::clear_has_host_computationtime() { _has_bits_[0] &= ~0x00000002u; } inline void CNETMsg_Tick::clear_host_computationtime() { host_computationtime_ = 0u; clear_has_host_computationtime(); } inline ::google::protobuf::uint32 CNETMsg_Tick::host_computationtime() const { // @@protoc_insertion_point(field_get:CNETMsg_Tick.host_computationtime) return host_computationtime_; } inline void CNETMsg_Tick::set_host_computationtime(::google::protobuf::uint32 value) { set_has_host_computationtime(); host_computationtime_ = value; // @@protoc_insertion_point(field_set:CNETMsg_Tick.host_computationtime) } // optional uint32 host_computationtime_std_deviation = 5; inline bool CNETMsg_Tick::has_host_computationtime_std_deviation() const { return (_has_bits_[0] & 0x00000004u) != 0; } inline void CNETMsg_Tick::set_has_host_computationtime_std_deviation() { _has_bits_[0] |= 0x00000004u; } inline void CNETMsg_Tick::clear_has_host_computationtime_std_deviation() { _has_bits_[0] &= ~0x00000004u; } inline void CNETMsg_Tick::clear_host_computationtime_std_deviation() { host_computationtime_std_deviation_ = 0u; clear_has_host_computationtime_std_deviation(); } inline ::google::protobuf::uint32 CNETMsg_Tick::host_computationtime_std_deviation() const { // @@protoc_insertion_point(field_get:CNETMsg_Tick.host_computationtime_std_deviation) return host_computationtime_std_deviation_; } inline void CNETMsg_Tick::set_host_computationtime_std_deviation(::google::protobuf::uint32 value) { set_has_host_computationtime_std_deviation(); host_computationtime_std_deviation_ = value; // @@protoc_insertion_point(field_set:CNETMsg_Tick.host_computationtime_std_deviation) } // optional uint32 host_framestarttime_std_deviation = 6; inline bool CNETMsg_Tick::has_host_framestarttime_std_deviation() const { return (_has_bits_[0] & 0x00000008u) != 0; } inline void CNETMsg_Tick::set_has_host_framestarttime_std_deviation() { _has_bits_[0] |= 0x00000008u; } inline void CNETMsg_Tick::clear_has_host_framestarttime_std_deviation() { _has_bits_[0] &= ~0x00000008u; } inline void CNETMsg_Tick::clear_host_framestarttime_std_deviation() { host_framestarttime_std_deviation_ = 0u; clear_has_host_framestarttime_std_deviation(); } inline ::google::protobuf::uint32 CNETMsg_Tick::host_framestarttime_std_deviation() const { // @@protoc_insertion_point(field_get:CNETMsg_Tick.host_framestarttime_std_deviation) return host_framestarttime_std_deviation_; } inline void CNETMsg_Tick::set_host_framestarttime_std_deviation(::google::protobuf::uint32 value) { set_has_host_framestarttime_std_deviation(); host_framestarttime_std_deviation_ = value; // @@protoc_insertion_point(field_set:CNETMsg_Tick.host_framestarttime_std_deviation) } // ------------------------------------------------------------------- // CNETMsg_StringCmd // optional string command = 1; inline bool CNETMsg_StringCmd::has_command() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CNETMsg_StringCmd::set_has_command() { _has_bits_[0] |= 0x00000001u; } inline void CNETMsg_StringCmd::clear_has_command() { _has_bits_[0] &= ~0x00000001u; } inline void CNETMsg_StringCmd::clear_command() { command_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_command(); } inline const ::std::string& CNETMsg_StringCmd::command() const { // @@protoc_insertion_point(field_get:CNETMsg_StringCmd.command) return command_.GetNoArena(); } inline void CNETMsg_StringCmd::set_command(const ::std::string& value) { set_has_command(); command_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CNETMsg_StringCmd.command) } #if LANG_CXX11 inline void CNETMsg_StringCmd::set_command(::std::string&& value) { set_has_command(); command_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CNETMsg_StringCmd.command) } #endif inline void CNETMsg_StringCmd::set_command(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_command(); command_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CNETMsg_StringCmd.command) } inline void CNETMsg_StringCmd::set_command(const char* value, size_t size) { set_has_command(); command_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CNETMsg_StringCmd.command) } inline ::std::string* CNETMsg_StringCmd::mutable_command() { set_has_command(); // @@protoc_insertion_point(field_mutable:CNETMsg_StringCmd.command) return command_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CNETMsg_StringCmd::release_command() { // @@protoc_insertion_point(field_release:CNETMsg_StringCmd.command) if (!has_command()) { return NULL; } clear_has_command(); return command_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CNETMsg_StringCmd::set_allocated_command(::std::string* command) { if (command != NULL) { set_has_command(); } else { clear_has_command(); } command_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), command); // @@protoc_insertion_point(field_set_allocated:CNETMsg_StringCmd.command) } // ------------------------------------------------------------------- // CNETMsg_SignonState // optional uint32 signon_state = 1; inline bool CNETMsg_SignonState::has_signon_state() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CNETMsg_SignonState::set_has_signon_state() { _has_bits_[0] |= 0x00000002u; } inline void CNETMsg_SignonState::clear_has_signon_state() { _has_bits_[0] &= ~0x00000002u; } inline void CNETMsg_SignonState::clear_signon_state() { signon_state_ = 0u; clear_has_signon_state(); } inline ::google::protobuf::uint32 CNETMsg_SignonState::signon_state() const { // @@protoc_insertion_point(field_get:CNETMsg_SignonState.signon_state) return signon_state_; } inline void CNETMsg_SignonState::set_signon_state(::google::protobuf::uint32 value) { set_has_signon_state(); signon_state_ = value; // @@protoc_insertion_point(field_set:CNETMsg_SignonState.signon_state) } // optional uint32 spawn_count = 2; inline bool CNETMsg_SignonState::has_spawn_count() const { return (_has_bits_[0] & 0x00000004u) != 0; } inline void CNETMsg_SignonState::set_has_spawn_count() { _has_bits_[0] |= 0x00000004u; } inline void CNETMsg_SignonState::clear_has_spawn_count() { _has_bits_[0] &= ~0x00000004u; } inline void CNETMsg_SignonState::clear_spawn_count() { spawn_count_ = 0u; clear_has_spawn_count(); } inline ::google::protobuf::uint32 CNETMsg_SignonState::spawn_count() const { // @@protoc_insertion_point(field_get:CNETMsg_SignonState.spawn_count) return spawn_count_; } inline void CNETMsg_SignonState::set_spawn_count(::google::protobuf::uint32 value) { set_has_spawn_count(); spawn_count_ = value; // @@protoc_insertion_point(field_set:CNETMsg_SignonState.spawn_count) } // optional uint32 num_server_players = 3; inline bool CNETMsg_SignonState::has_num_server_players() const { return (_has_bits_[0] & 0x00000008u) != 0; } inline void CNETMsg_SignonState::set_has_num_server_players() { _has_bits_[0] |= 0x00000008u; } inline void CNETMsg_SignonState::clear_has_num_server_players() { _has_bits_[0] &= ~0x00000008u; } inline void CNETMsg_SignonState::clear_num_server_players() { num_server_players_ = 0u; clear_has_num_server_players(); } inline ::google::protobuf::uint32 CNETMsg_SignonState::num_server_players() const { // @@protoc_insertion_point(field_get:CNETMsg_SignonState.num_server_players) return num_server_players_; } inline void CNETMsg_SignonState::set_num_server_players(::google::protobuf::uint32 value) { set_has_num_server_players(); num_server_players_ = value; // @@protoc_insertion_point(field_set:CNETMsg_SignonState.num_server_players) } // repeated string players_networkids = 4; inline int CNETMsg_SignonState::players_networkids_size() const { return players_networkids_.size(); } inline void CNETMsg_SignonState::clear_players_networkids() { players_networkids_.Clear(); } inline const ::std::string& CNETMsg_SignonState::players_networkids(int index) const { // @@protoc_insertion_point(field_get:CNETMsg_SignonState.players_networkids) return players_networkids_.Get(index); } inline ::std::string* CNETMsg_SignonState::mutable_players_networkids(int index) { // @@protoc_insertion_point(field_mutable:CNETMsg_SignonState.players_networkids) return players_networkids_.Mutable(index); } inline void CNETMsg_SignonState::set_players_networkids(int index, const ::std::string& value) { // @@protoc_insertion_point(field_set:CNETMsg_SignonState.players_networkids) players_networkids_.Mutable(index)->assign(value); } #if LANG_CXX11 inline void CNETMsg_SignonState::set_players_networkids(int index, ::std::string&& value) { // @@protoc_insertion_point(field_set:CNETMsg_SignonState.players_networkids) players_networkids_.Mutable(index)->assign(std::move(value)); } #endif inline void CNETMsg_SignonState::set_players_networkids(int index, const char* value) { GOOGLE_DCHECK(value != NULL); players_networkids_.Mutable(index)->assign(value); // @@protoc_insertion_point(field_set_char:CNETMsg_SignonState.players_networkids) } inline void CNETMsg_SignonState::set_players_networkids(int index, const char* value, size_t size) { players_networkids_.Mutable(index)->assign( reinterpret_cast<const char*>(value), size); // @@protoc_insertion_point(field_set_pointer:CNETMsg_SignonState.players_networkids) } inline ::std::string* CNETMsg_SignonState::add_players_networkids() { // @@protoc_insertion_point(field_add_mutable:CNETMsg_SignonState.players_networkids) return players_networkids_.Add(); } inline void CNETMsg_SignonState::add_players_networkids(const ::std::string& value) { players_networkids_.Add()->assign(value); // @@protoc_insertion_point(field_add:CNETMsg_SignonState.players_networkids) } #if LANG_CXX11 inline void CNETMsg_SignonState::add_players_networkids(::std::string&& value) { players_networkids_.Add(std::move(value)); // @@protoc_insertion_point(field_add:CNETMsg_SignonState.players_networkids) } #endif inline void CNETMsg_SignonState::add_players_networkids(const char* value) { GOOGLE_DCHECK(value != NULL); players_networkids_.Add()->assign(value); // @@protoc_insertion_point(field_add_char:CNETMsg_SignonState.players_networkids) } inline void CNETMsg_SignonState::add_players_networkids(const char* value, size_t size) { players_networkids_.Add()->assign(reinterpret_cast<const char*>(value), size); // @@protoc_insertion_point(field_add_pointer:CNETMsg_SignonState.players_networkids) } inline const ::google::protobuf::RepeatedPtrField< ::std::string>& CNETMsg_SignonState::players_networkids() const { // @@protoc_insertion_point(field_list:CNETMsg_SignonState.players_networkids) return players_networkids_; } inline ::google::protobuf::RepeatedPtrField< ::std::string>* CNETMsg_SignonState::mutable_players_networkids() { // @@protoc_insertion_point(field_mutable_list:CNETMsg_SignonState.players_networkids) return &players_networkids_; } // optional string map_name = 5; inline bool CNETMsg_SignonState::has_map_name() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CNETMsg_SignonState::set_has_map_name() { _has_bits_[0] |= 0x00000001u; } inline void CNETMsg_SignonState::clear_has_map_name() { _has_bits_[0] &= ~0x00000001u; } inline void CNETMsg_SignonState::clear_map_name() { map_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_map_name(); } inline const ::std::string& CNETMsg_SignonState::map_name() const { // @@protoc_insertion_point(field_get:CNETMsg_SignonState.map_name) return map_name_.GetNoArena(); } inline void CNETMsg_SignonState::set_map_name(const ::std::string& value) { set_has_map_name(); map_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CNETMsg_SignonState.map_name) } #if LANG_CXX11 inline void CNETMsg_SignonState::set_map_name(::std::string&& value) { set_has_map_name(); map_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CNETMsg_SignonState.map_name) } #endif inline void CNETMsg_SignonState::set_map_name(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_map_name(); map_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CNETMsg_SignonState.map_name) } inline void CNETMsg_SignonState::set_map_name(const char* value, size_t size) { set_has_map_name(); map_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CNETMsg_SignonState.map_name) } inline ::std::string* CNETMsg_SignonState::mutable_map_name() { set_has_map_name(); // @@protoc_insertion_point(field_mutable:CNETMsg_SignonState.map_name) return map_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CNETMsg_SignonState::release_map_name() { // @@protoc_insertion_point(field_release:CNETMsg_SignonState.map_name) if (!has_map_name()) { return NULL; } clear_has_map_name(); return map_name_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CNETMsg_SignonState::set_allocated_map_name(::std::string* map_name) { if (map_name != NULL) { set_has_map_name(); } else { clear_has_map_name(); } map_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), map_name); // @@protoc_insertion_point(field_set_allocated:CNETMsg_SignonState.map_name) } // ------------------------------------------------------------------- // CMsg_CVars_CVar // optional string name = 1; inline bool CMsg_CVars_CVar::has_name() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CMsg_CVars_CVar::set_has_name() { _has_bits_[0] |= 0x00000001u; } inline void CMsg_CVars_CVar::clear_has_name() { _has_bits_[0] &= ~0x00000001u; } inline void CMsg_CVars_CVar::clear_name() { name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_name(); } inline const ::std::string& CMsg_CVars_CVar::name() const { // @@protoc_insertion_point(field_get:CMsg_CVars.CVar.name) return name_.GetNoArena(); } inline void CMsg_CVars_CVar::set_name(const ::std::string& value) { set_has_name(); name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CMsg_CVars.CVar.name) } #if LANG_CXX11 inline void CMsg_CVars_CVar::set_name(::std::string&& value) { set_has_name(); name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CMsg_CVars.CVar.name) } #endif inline void CMsg_CVars_CVar::set_name(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_name(); name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CMsg_CVars.CVar.name) } inline void CMsg_CVars_CVar::set_name(const char* value, size_t size) { set_has_name(); name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CMsg_CVars.CVar.name) } inline ::std::string* CMsg_CVars_CVar::mutable_name() { set_has_name(); // @@protoc_insertion_point(field_mutable:CMsg_CVars.CVar.name) return name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CMsg_CVars_CVar::release_name() { // @@protoc_insertion_point(field_release:CMsg_CVars.CVar.name) if (!has_name()) { return NULL; } clear_has_name(); return name_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CMsg_CVars_CVar::set_allocated_name(::std::string* name) { if (name != NULL) { set_has_name(); } else { clear_has_name(); } name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), name); // @@protoc_insertion_point(field_set_allocated:CMsg_CVars.CVar.name) } // optional string value = 2; inline bool CMsg_CVars_CVar::has_value() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CMsg_CVars_CVar::set_has_value() { _has_bits_[0] |= 0x00000002u; } inline void CMsg_CVars_CVar::clear_has_value() { _has_bits_[0] &= ~0x00000002u; } inline void CMsg_CVars_CVar::clear_value() { value_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_value(); } inline const ::std::string& CMsg_CVars_CVar::value() const { // @@protoc_insertion_point(field_get:CMsg_CVars.CVar.value) return value_.GetNoArena(); } inline void CMsg_CVars_CVar::set_value(const ::std::string& value) { set_has_value(); value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CMsg_CVars.CVar.value) } #if LANG_CXX11 inline void CMsg_CVars_CVar::set_value(::std::string&& value) { set_has_value(); value_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CMsg_CVars.CVar.value) } #endif inline void CMsg_CVars_CVar::set_value(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_value(); value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CMsg_CVars.CVar.value) } inline void CMsg_CVars_CVar::set_value(const char* value, size_t size) { set_has_value(); value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CMsg_CVars.CVar.value) } inline ::std::string* CMsg_CVars_CVar::mutable_value() { set_has_value(); // @@protoc_insertion_point(field_mutable:CMsg_CVars.CVar.value) return value_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CMsg_CVars_CVar::release_value() { // @@protoc_insertion_point(field_release:CMsg_CVars.CVar.value) if (!has_value()) { return NULL; } clear_has_value(); return value_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CMsg_CVars_CVar::set_allocated_value(::std::string* value) { if (value != NULL) { set_has_value(); } else { clear_has_value(); } value_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set_allocated:CMsg_CVars.CVar.value) } // ------------------------------------------------------------------- // CMsg_CVars // repeated .CMsg_CVars.CVar cvars = 1; inline int CMsg_CVars::cvars_size() const { return cvars_.size(); } inline void CMsg_CVars::clear_cvars() { cvars_.Clear(); } inline ::CMsg_CVars_CVar* CMsg_CVars::mutable_cvars(int index) { // @@protoc_insertion_point(field_mutable:CMsg_CVars.cvars) return cvars_.Mutable(index); } inline ::google::protobuf::RepeatedPtrField< ::CMsg_CVars_CVar >* CMsg_CVars::mutable_cvars() { // @@protoc_insertion_point(field_mutable_list:CMsg_CVars.cvars) return &cvars_; } inline const ::CMsg_CVars_CVar& CMsg_CVars::cvars(int index) const { // @@protoc_insertion_point(field_get:CMsg_CVars.cvars) return cvars_.Get(index); } inline ::CMsg_CVars_CVar* CMsg_CVars::add_cvars() { // @@protoc_insertion_point(field_add:CMsg_CVars.cvars) return cvars_.Add(); } inline const ::google::protobuf::RepeatedPtrField< ::CMsg_CVars_CVar >& CMsg_CVars::cvars() const { // @@protoc_insertion_point(field_list:CMsg_CVars.cvars) return cvars_; } // ------------------------------------------------------------------- // CNETMsg_SetConVar // optional .CMsg_CVars convars = 1; inline bool CNETMsg_SetConVar::has_convars() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CNETMsg_SetConVar::set_has_convars() { _has_bits_[0] |= 0x00000001u; } inline void CNETMsg_SetConVar::clear_has_convars() { _has_bits_[0] &= ~0x00000001u; } inline void CNETMsg_SetConVar::clear_convars() { if (convars_ != NULL) convars_->Clear(); clear_has_convars(); } inline const ::CMsg_CVars& CNETMsg_SetConVar::_internal_convars() const { return *convars_; } inline const ::CMsg_CVars& CNETMsg_SetConVar::convars() const { const ::CMsg_CVars* p = convars_; // @@protoc_insertion_point(field_get:CNETMsg_SetConVar.convars) return p != NULL ? *p : *reinterpret_cast<const ::CMsg_CVars*>( &::_CMsg_CVars_default_instance_); } inline ::CMsg_CVars* CNETMsg_SetConVar::release_convars() { // @@protoc_insertion_point(field_release:CNETMsg_SetConVar.convars) clear_has_convars(); ::CMsg_CVars* temp = convars_; convars_ = NULL; return temp; } inline ::CMsg_CVars* CNETMsg_SetConVar::mutable_convars() { set_has_convars(); if (convars_ == NULL) { auto* p = CreateMaybeMessage<::CMsg_CVars>(GetArenaNoVirtual()); convars_ = p; } // @@protoc_insertion_point(field_mutable:CNETMsg_SetConVar.convars) return convars_; } inline void CNETMsg_SetConVar::set_allocated_convars(::CMsg_CVars* convars) { ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); if (message_arena == NULL) { delete convars_; } if (convars) { ::google::protobuf::Arena* submessage_arena = NULL; if (message_arena != submessage_arena) { convars = ::google::protobuf::internal::GetOwnedMessage( message_arena, convars, submessage_arena); } set_has_convars(); } else { clear_has_convars(); } convars_ = convars; // @@protoc_insertion_point(field_set_allocated:CNETMsg_SetConVar.convars) } // ------------------------------------------------------------------- // CNETMsg_NOP // ------------------------------------------------------------------- // CNETMsg_Disconnect // optional string text = 1; inline bool CNETMsg_Disconnect::has_text() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CNETMsg_Disconnect::set_has_text() { _has_bits_[0] |= 0x00000001u; } inline void CNETMsg_Disconnect::clear_has_text() { _has_bits_[0] &= ~0x00000001u; } inline void CNETMsg_Disconnect::clear_text() { text_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_text(); } inline const ::std::string& CNETMsg_Disconnect::text() const { // @@protoc_insertion_point(field_get:CNETMsg_Disconnect.text) return text_.GetNoArena(); } inline void CNETMsg_Disconnect::set_text(const ::std::string& value) { set_has_text(); text_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CNETMsg_Disconnect.text) } #if LANG_CXX11 inline void CNETMsg_Disconnect::set_text(::std::string&& value) { set_has_text(); text_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CNETMsg_Disconnect.text) } #endif inline void CNETMsg_Disconnect::set_text(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_text(); text_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CNETMsg_Disconnect.text) } inline void CNETMsg_Disconnect::set_text(const char* value, size_t size) { set_has_text(); text_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CNETMsg_Disconnect.text) } inline ::std::string* CNETMsg_Disconnect::mutable_text() { set_has_text(); // @@protoc_insertion_point(field_mutable:CNETMsg_Disconnect.text) return text_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CNETMsg_Disconnect::release_text() { // @@protoc_insertion_point(field_release:CNETMsg_Disconnect.text) if (!has_text()) { return NULL; } clear_has_text(); return text_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CNETMsg_Disconnect::set_allocated_text(::std::string* text) { if (text != NULL) { set_has_text(); } else { clear_has_text(); } text_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), text); // @@protoc_insertion_point(field_set_allocated:CNETMsg_Disconnect.text) } // ------------------------------------------------------------------- // CNETMsg_File // optional int32 transfer_id = 1; inline bool CNETMsg_File::has_transfer_id() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CNETMsg_File::set_has_transfer_id() { _has_bits_[0] |= 0x00000002u; } inline void CNETMsg_File::clear_has_transfer_id() { _has_bits_[0] &= ~0x00000002u; } inline void CNETMsg_File::clear_transfer_id() { transfer_id_ = 0; clear_has_transfer_id(); } inline ::google::protobuf::int32 CNETMsg_File::transfer_id() const { // @@protoc_insertion_point(field_get:CNETMsg_File.transfer_id) return transfer_id_; } inline void CNETMsg_File::set_transfer_id(::google::protobuf::int32 value) { set_has_transfer_id(); transfer_id_ = value; // @@protoc_insertion_point(field_set:CNETMsg_File.transfer_id) } // optional string file_name = 2; inline bool CNETMsg_File::has_file_name() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CNETMsg_File::set_has_file_name() { _has_bits_[0] |= 0x00000001u; } inline void CNETMsg_File::clear_has_file_name() { _has_bits_[0] &= ~0x00000001u; } inline void CNETMsg_File::clear_file_name() { file_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_file_name(); } inline const ::std::string& CNETMsg_File::file_name() const { // @@protoc_insertion_point(field_get:CNETMsg_File.file_name) return file_name_.GetNoArena(); } inline void CNETMsg_File::set_file_name(const ::std::string& value) { set_has_file_name(); file_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CNETMsg_File.file_name) } #if LANG_CXX11 inline void CNETMsg_File::set_file_name(::std::string&& value) { set_has_file_name(); file_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CNETMsg_File.file_name) } #endif inline void CNETMsg_File::set_file_name(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_file_name(); file_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CNETMsg_File.file_name) } inline void CNETMsg_File::set_file_name(const char* value, size_t size) { set_has_file_name(); file_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CNETMsg_File.file_name) } inline ::std::string* CNETMsg_File::mutable_file_name() { set_has_file_name(); // @@protoc_insertion_point(field_mutable:CNETMsg_File.file_name) return file_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CNETMsg_File::release_file_name() { // @@protoc_insertion_point(field_release:CNETMsg_File.file_name) if (!has_file_name()) { return NULL; } clear_has_file_name(); return file_name_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CNETMsg_File::set_allocated_file_name(::std::string* file_name) { if (file_name != NULL) { set_has_file_name(); } else { clear_has_file_name(); } file_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), file_name); // @@protoc_insertion_point(field_set_allocated:CNETMsg_File.file_name) } // optional bool is_replay_demo_file = 3; inline bool CNETMsg_File::has_is_replay_demo_file() const { return (_has_bits_[0] & 0x00000004u) != 0; } inline void CNETMsg_File::set_has_is_replay_demo_file() { _has_bits_[0] |= 0x00000004u; } inline void CNETMsg_File::clear_has_is_replay_demo_file() { _has_bits_[0] &= ~0x00000004u; } inline void CNETMsg_File::clear_is_replay_demo_file() { is_replay_demo_file_ = false; clear_has_is_replay_demo_file(); } inline bool CNETMsg_File::is_replay_demo_file() const { // @@protoc_insertion_point(field_get:CNETMsg_File.is_replay_demo_file) return is_replay_demo_file_; } inline void CNETMsg_File::set_is_replay_demo_file(bool value) { set_has_is_replay_demo_file(); is_replay_demo_file_ = value; // @@protoc_insertion_point(field_set:CNETMsg_File.is_replay_demo_file) } // optional bool deny = 4; inline bool CNETMsg_File::has_deny() const { return (_has_bits_[0] & 0x00000008u) != 0; } inline void CNETMsg_File::set_has_deny() { _has_bits_[0] |= 0x00000008u; } inline void CNETMsg_File::clear_has_deny() { _has_bits_[0] &= ~0x00000008u; } inline void CNETMsg_File::clear_deny() { deny_ = false; clear_has_deny(); } inline bool CNETMsg_File::deny() const { // @@protoc_insertion_point(field_get:CNETMsg_File.deny) return deny_; } inline void CNETMsg_File::set_deny(bool value) { set_has_deny(); deny_ = value; // @@protoc_insertion_point(field_set:CNETMsg_File.deny) } // ------------------------------------------------------------------- // CSVCMsg_ServerInfo // optional int32 protocol = 1; inline bool CSVCMsg_ServerInfo::has_protocol() const { return (_has_bits_[0] & 0x00000020u) != 0; } inline void CSVCMsg_ServerInfo::set_has_protocol() { _has_bits_[0] |= 0x00000020u; } inline void CSVCMsg_ServerInfo::clear_has_protocol() { _has_bits_[0] &= ~0x00000020u; } inline void CSVCMsg_ServerInfo::clear_protocol() { protocol_ = 0; clear_has_protocol(); } inline ::google::protobuf::int32 CSVCMsg_ServerInfo::protocol() const { // @@protoc_insertion_point(field_get:CSVCMsg_ServerInfo.protocol) return protocol_; } inline void CSVCMsg_ServerInfo::set_protocol(::google::protobuf::int32 value) { set_has_protocol(); protocol_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_ServerInfo.protocol) } // optional int32 server_count = 2; inline bool CSVCMsg_ServerInfo::has_server_count() const { return (_has_bits_[0] & 0x00000040u) != 0; } inline void CSVCMsg_ServerInfo::set_has_server_count() { _has_bits_[0] |= 0x00000040u; } inline void CSVCMsg_ServerInfo::clear_has_server_count() { _has_bits_[0] &= ~0x00000040u; } inline void CSVCMsg_ServerInfo::clear_server_count() { server_count_ = 0; clear_has_server_count(); } inline ::google::protobuf::int32 CSVCMsg_ServerInfo::server_count() const { // @@protoc_insertion_point(field_get:CSVCMsg_ServerInfo.server_count) return server_count_; } inline void CSVCMsg_ServerInfo::set_server_count(::google::protobuf::int32 value) { set_has_server_count(); server_count_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_ServerInfo.server_count) } // optional bool is_dedicated = 3; inline bool CSVCMsg_ServerInfo::has_is_dedicated() const { return (_has_bits_[0] & 0x00000080u) != 0; } inline void CSVCMsg_ServerInfo::set_has_is_dedicated() { _has_bits_[0] |= 0x00000080u; } inline void CSVCMsg_ServerInfo::clear_has_is_dedicated() { _has_bits_[0] &= ~0x00000080u; } inline void CSVCMsg_ServerInfo::clear_is_dedicated() { is_dedicated_ = false; clear_has_is_dedicated(); } inline bool CSVCMsg_ServerInfo::is_dedicated() const { // @@protoc_insertion_point(field_get:CSVCMsg_ServerInfo.is_dedicated) return is_dedicated_; } inline void CSVCMsg_ServerInfo::set_is_dedicated(bool value) { set_has_is_dedicated(); is_dedicated_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_ServerInfo.is_dedicated) } // optional bool is_official_valve_server = 4; inline bool CSVCMsg_ServerInfo::has_is_official_valve_server() const { return (_has_bits_[0] & 0x00000100u) != 0; } inline void CSVCMsg_ServerInfo::set_has_is_official_valve_server() { _has_bits_[0] |= 0x00000100u; } inline void CSVCMsg_ServerInfo::clear_has_is_official_valve_server() { _has_bits_[0] &= ~0x00000100u; } inline void CSVCMsg_ServerInfo::clear_is_official_valve_server() { is_official_valve_server_ = false; clear_has_is_official_valve_server(); } inline bool CSVCMsg_ServerInfo::is_official_valve_server() const { // @@protoc_insertion_point(field_get:CSVCMsg_ServerInfo.is_official_valve_server) return is_official_valve_server_; } inline void CSVCMsg_ServerInfo::set_is_official_valve_server(bool value) { set_has_is_official_valve_server(); is_official_valve_server_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_ServerInfo.is_official_valve_server) } // optional bool is_hltv = 5; inline bool CSVCMsg_ServerInfo::has_is_hltv() const { return (_has_bits_[0] & 0x00000200u) != 0; } inline void CSVCMsg_ServerInfo::set_has_is_hltv() { _has_bits_[0] |= 0x00000200u; } inline void CSVCMsg_ServerInfo::clear_has_is_hltv() { _has_bits_[0] &= ~0x00000200u; } inline void CSVCMsg_ServerInfo::clear_is_hltv() { is_hltv_ = false; clear_has_is_hltv(); } inline bool CSVCMsg_ServerInfo::is_hltv() const { // @@protoc_insertion_point(field_get:CSVCMsg_ServerInfo.is_hltv) return is_hltv_; } inline void CSVCMsg_ServerInfo::set_is_hltv(bool value) { set_has_is_hltv(); is_hltv_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_ServerInfo.is_hltv) } // optional bool is_replay = 6; inline bool CSVCMsg_ServerInfo::has_is_replay() const { return (_has_bits_[0] & 0x00000400u) != 0; } inline void CSVCMsg_ServerInfo::set_has_is_replay() { _has_bits_[0] |= 0x00000400u; } inline void CSVCMsg_ServerInfo::clear_has_is_replay() { _has_bits_[0] &= ~0x00000400u; } inline void CSVCMsg_ServerInfo::clear_is_replay() { is_replay_ = false; clear_has_is_replay(); } inline bool CSVCMsg_ServerInfo::is_replay() const { // @@protoc_insertion_point(field_get:CSVCMsg_ServerInfo.is_replay) return is_replay_; } inline void CSVCMsg_ServerInfo::set_is_replay(bool value) { set_has_is_replay(); is_replay_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_ServerInfo.is_replay) } // optional bool is_redirecting_to_proxy_relay = 21; inline bool CSVCMsg_ServerInfo::has_is_redirecting_to_proxy_relay() const { return (_has_bits_[0] & 0x00080000u) != 0; } inline void CSVCMsg_ServerInfo::set_has_is_redirecting_to_proxy_relay() { _has_bits_[0] |= 0x00080000u; } inline void CSVCMsg_ServerInfo::clear_has_is_redirecting_to_proxy_relay() { _has_bits_[0] &= ~0x00080000u; } inline void CSVCMsg_ServerInfo::clear_is_redirecting_to_proxy_relay() { is_redirecting_to_proxy_relay_ = false; clear_has_is_redirecting_to_proxy_relay(); } inline bool CSVCMsg_ServerInfo::is_redirecting_to_proxy_relay() const { // @@protoc_insertion_point(field_get:CSVCMsg_ServerInfo.is_redirecting_to_proxy_relay) return is_redirecting_to_proxy_relay_; } inline void CSVCMsg_ServerInfo::set_is_redirecting_to_proxy_relay(bool value) { set_has_is_redirecting_to_proxy_relay(); is_redirecting_to_proxy_relay_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_ServerInfo.is_redirecting_to_proxy_relay) } // optional int32 c_os = 7; inline bool CSVCMsg_ServerInfo::has_c_os() const { return (_has_bits_[0] & 0x00000800u) != 0; } inline void CSVCMsg_ServerInfo::set_has_c_os() { _has_bits_[0] |= 0x00000800u; } inline void CSVCMsg_ServerInfo::clear_has_c_os() { _has_bits_[0] &= ~0x00000800u; } inline void CSVCMsg_ServerInfo::clear_c_os() { c_os_ = 0; clear_has_c_os(); } inline ::google::protobuf::int32 CSVCMsg_ServerInfo::c_os() const { // @@protoc_insertion_point(field_get:CSVCMsg_ServerInfo.c_os) return c_os_; } inline void CSVCMsg_ServerInfo::set_c_os(::google::protobuf::int32 value) { set_has_c_os(); c_os_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_ServerInfo.c_os) } // optional fixed32 map_crc = 8; inline bool CSVCMsg_ServerInfo::has_map_crc() const { return (_has_bits_[0] & 0x00001000u) != 0; } inline void CSVCMsg_ServerInfo::set_has_map_crc() { _has_bits_[0] |= 0x00001000u; } inline void CSVCMsg_ServerInfo::clear_has_map_crc() { _has_bits_[0] &= ~0x00001000u; } inline void CSVCMsg_ServerInfo::clear_map_crc() { map_crc_ = 0u; clear_has_map_crc(); } inline ::google::protobuf::uint32 CSVCMsg_ServerInfo::map_crc() const { // @@protoc_insertion_point(field_get:CSVCMsg_ServerInfo.map_crc) return map_crc_; } inline void CSVCMsg_ServerInfo::set_map_crc(::google::protobuf::uint32 value) { set_has_map_crc(); map_crc_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_ServerInfo.map_crc) } // optional fixed32 client_crc = 9; inline bool CSVCMsg_ServerInfo::has_client_crc() const { return (_has_bits_[0] & 0x00002000u) != 0; } inline void CSVCMsg_ServerInfo::set_has_client_crc() { _has_bits_[0] |= 0x00002000u; } inline void CSVCMsg_ServerInfo::clear_has_client_crc() { _has_bits_[0] &= ~0x00002000u; } inline void CSVCMsg_ServerInfo::clear_client_crc() { client_crc_ = 0u; clear_has_client_crc(); } inline ::google::protobuf::uint32 CSVCMsg_ServerInfo::client_crc() const { // @@protoc_insertion_point(field_get:CSVCMsg_ServerInfo.client_crc) return client_crc_; } inline void CSVCMsg_ServerInfo::set_client_crc(::google::protobuf::uint32 value) { set_has_client_crc(); client_crc_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_ServerInfo.client_crc) } // optional fixed32 string_table_crc = 10; inline bool CSVCMsg_ServerInfo::has_string_table_crc() const { return (_has_bits_[0] & 0x00004000u) != 0; } inline void CSVCMsg_ServerInfo::set_has_string_table_crc() { _has_bits_[0] |= 0x00004000u; } inline void CSVCMsg_ServerInfo::clear_has_string_table_crc() { _has_bits_[0] &= ~0x00004000u; } inline void CSVCMsg_ServerInfo::clear_string_table_crc() { string_table_crc_ = 0u; clear_has_string_table_crc(); } inline ::google::protobuf::uint32 CSVCMsg_ServerInfo::string_table_crc() const { // @@protoc_insertion_point(field_get:CSVCMsg_ServerInfo.string_table_crc) return string_table_crc_; } inline void CSVCMsg_ServerInfo::set_string_table_crc(::google::protobuf::uint32 value) { set_has_string_table_crc(); string_table_crc_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_ServerInfo.string_table_crc) } // optional int32 max_clients = 11; inline bool CSVCMsg_ServerInfo::has_max_clients() const { return (_has_bits_[0] & 0x00008000u) != 0; } inline void CSVCMsg_ServerInfo::set_has_max_clients() { _has_bits_[0] |= 0x00008000u; } inline void CSVCMsg_ServerInfo::clear_has_max_clients() { _has_bits_[0] &= ~0x00008000u; } inline void CSVCMsg_ServerInfo::clear_max_clients() { max_clients_ = 0; clear_has_max_clients(); } inline ::google::protobuf::int32 CSVCMsg_ServerInfo::max_clients() const { // @@protoc_insertion_point(field_get:CSVCMsg_ServerInfo.max_clients) return max_clients_; } inline void CSVCMsg_ServerInfo::set_max_clients(::google::protobuf::int32 value) { set_has_max_clients(); max_clients_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_ServerInfo.max_clients) } // optional int32 max_classes = 12; inline bool CSVCMsg_ServerInfo::has_max_classes() const { return (_has_bits_[0] & 0x00010000u) != 0; } inline void CSVCMsg_ServerInfo::set_has_max_classes() { _has_bits_[0] |= 0x00010000u; } inline void CSVCMsg_ServerInfo::clear_has_max_classes() { _has_bits_[0] &= ~0x00010000u; } inline void CSVCMsg_ServerInfo::clear_max_classes() { max_classes_ = 0; clear_has_max_classes(); } inline ::google::protobuf::int32 CSVCMsg_ServerInfo::max_classes() const { // @@protoc_insertion_point(field_get:CSVCMsg_ServerInfo.max_classes) return max_classes_; } inline void CSVCMsg_ServerInfo::set_max_classes(::google::protobuf::int32 value) { set_has_max_classes(); max_classes_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_ServerInfo.max_classes) } // optional int32 player_slot = 13; inline bool CSVCMsg_ServerInfo::has_player_slot() const { return (_has_bits_[0] & 0x00020000u) != 0; } inline void CSVCMsg_ServerInfo::set_has_player_slot() { _has_bits_[0] |= 0x00020000u; } inline void CSVCMsg_ServerInfo::clear_has_player_slot() { _has_bits_[0] &= ~0x00020000u; } inline void CSVCMsg_ServerInfo::clear_player_slot() { player_slot_ = 0; clear_has_player_slot(); } inline ::google::protobuf::int32 CSVCMsg_ServerInfo::player_slot() const { // @@protoc_insertion_point(field_get:CSVCMsg_ServerInfo.player_slot) return player_slot_; } inline void CSVCMsg_ServerInfo::set_player_slot(::google::protobuf::int32 value) { set_has_player_slot(); player_slot_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_ServerInfo.player_slot) } // optional float tick_interval = 14; inline bool CSVCMsg_ServerInfo::has_tick_interval() const { return (_has_bits_[0] & 0x00040000u) != 0; } inline void CSVCMsg_ServerInfo::set_has_tick_interval() { _has_bits_[0] |= 0x00040000u; } inline void CSVCMsg_ServerInfo::clear_has_tick_interval() { _has_bits_[0] &= ~0x00040000u; } inline void CSVCMsg_ServerInfo::clear_tick_interval() { tick_interval_ = 0; clear_has_tick_interval(); } inline float CSVCMsg_ServerInfo::tick_interval() const { // @@protoc_insertion_point(field_get:CSVCMsg_ServerInfo.tick_interval) return tick_interval_; } inline void CSVCMsg_ServerInfo::set_tick_interval(float value) { set_has_tick_interval(); tick_interval_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_ServerInfo.tick_interval) } // optional string game_dir = 15; inline bool CSVCMsg_ServerInfo::has_game_dir() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_ServerInfo::set_has_game_dir() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_ServerInfo::clear_has_game_dir() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_ServerInfo::clear_game_dir() { game_dir_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_game_dir(); } inline const ::std::string& CSVCMsg_ServerInfo::game_dir() const { // @@protoc_insertion_point(field_get:CSVCMsg_ServerInfo.game_dir) return game_dir_.GetNoArena(); } inline void CSVCMsg_ServerInfo::set_game_dir(const ::std::string& value) { set_has_game_dir(); game_dir_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_ServerInfo.game_dir) } #if LANG_CXX11 inline void CSVCMsg_ServerInfo::set_game_dir(::std::string&& value) { set_has_game_dir(); game_dir_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_ServerInfo.game_dir) } #endif inline void CSVCMsg_ServerInfo::set_game_dir(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_game_dir(); game_dir_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_ServerInfo.game_dir) } inline void CSVCMsg_ServerInfo::set_game_dir(const char* value, size_t size) { set_has_game_dir(); game_dir_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_ServerInfo.game_dir) } inline ::std::string* CSVCMsg_ServerInfo::mutable_game_dir() { set_has_game_dir(); // @@protoc_insertion_point(field_mutable:CSVCMsg_ServerInfo.game_dir) return game_dir_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_ServerInfo::release_game_dir() { // @@protoc_insertion_point(field_release:CSVCMsg_ServerInfo.game_dir) if (!has_game_dir()) { return NULL; } clear_has_game_dir(); return game_dir_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_ServerInfo::set_allocated_game_dir(::std::string* game_dir) { if (game_dir != NULL) { set_has_game_dir(); } else { clear_has_game_dir(); } game_dir_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), game_dir); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_ServerInfo.game_dir) } // optional string map_name = 16; inline bool CSVCMsg_ServerInfo::has_map_name() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CSVCMsg_ServerInfo::set_has_map_name() { _has_bits_[0] |= 0x00000002u; } inline void CSVCMsg_ServerInfo::clear_has_map_name() { _has_bits_[0] &= ~0x00000002u; } inline void CSVCMsg_ServerInfo::clear_map_name() { map_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_map_name(); } inline const ::std::string& CSVCMsg_ServerInfo::map_name() const { // @@protoc_insertion_point(field_get:CSVCMsg_ServerInfo.map_name) return map_name_.GetNoArena(); } inline void CSVCMsg_ServerInfo::set_map_name(const ::std::string& value) { set_has_map_name(); map_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_ServerInfo.map_name) } #if LANG_CXX11 inline void CSVCMsg_ServerInfo::set_map_name(::std::string&& value) { set_has_map_name(); map_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_ServerInfo.map_name) } #endif inline void CSVCMsg_ServerInfo::set_map_name(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_map_name(); map_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_ServerInfo.map_name) } inline void CSVCMsg_ServerInfo::set_map_name(const char* value, size_t size) { set_has_map_name(); map_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_ServerInfo.map_name) } inline ::std::string* CSVCMsg_ServerInfo::mutable_map_name() { set_has_map_name(); // @@protoc_insertion_point(field_mutable:CSVCMsg_ServerInfo.map_name) return map_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_ServerInfo::release_map_name() { // @@protoc_insertion_point(field_release:CSVCMsg_ServerInfo.map_name) if (!has_map_name()) { return NULL; } clear_has_map_name(); return map_name_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_ServerInfo::set_allocated_map_name(::std::string* map_name) { if (map_name != NULL) { set_has_map_name(); } else { clear_has_map_name(); } map_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), map_name); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_ServerInfo.map_name) } // optional string map_group_name = 17; inline bool CSVCMsg_ServerInfo::has_map_group_name() const { return (_has_bits_[0] & 0x00000004u) != 0; } inline void CSVCMsg_ServerInfo::set_has_map_group_name() { _has_bits_[0] |= 0x00000004u; } inline void CSVCMsg_ServerInfo::clear_has_map_group_name() { _has_bits_[0] &= ~0x00000004u; } inline void CSVCMsg_ServerInfo::clear_map_group_name() { map_group_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_map_group_name(); } inline const ::std::string& CSVCMsg_ServerInfo::map_group_name() const { // @@protoc_insertion_point(field_get:CSVCMsg_ServerInfo.map_group_name) return map_group_name_.GetNoArena(); } inline void CSVCMsg_ServerInfo::set_map_group_name(const ::std::string& value) { set_has_map_group_name(); map_group_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_ServerInfo.map_group_name) } #if LANG_CXX11 inline void CSVCMsg_ServerInfo::set_map_group_name(::std::string&& value) { set_has_map_group_name(); map_group_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_ServerInfo.map_group_name) } #endif inline void CSVCMsg_ServerInfo::set_map_group_name(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_map_group_name(); map_group_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_ServerInfo.map_group_name) } inline void CSVCMsg_ServerInfo::set_map_group_name(const char* value, size_t size) { set_has_map_group_name(); map_group_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_ServerInfo.map_group_name) } inline ::std::string* CSVCMsg_ServerInfo::mutable_map_group_name() { set_has_map_group_name(); // @@protoc_insertion_point(field_mutable:CSVCMsg_ServerInfo.map_group_name) return map_group_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_ServerInfo::release_map_group_name() { // @@protoc_insertion_point(field_release:CSVCMsg_ServerInfo.map_group_name) if (!has_map_group_name()) { return NULL; } clear_has_map_group_name(); return map_group_name_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_ServerInfo::set_allocated_map_group_name(::std::string* map_group_name) { if (map_group_name != NULL) { set_has_map_group_name(); } else { clear_has_map_group_name(); } map_group_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), map_group_name); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_ServerInfo.map_group_name) } // optional string sky_name = 18; inline bool CSVCMsg_ServerInfo::has_sky_name() const { return (_has_bits_[0] & 0x00000008u) != 0; } inline void CSVCMsg_ServerInfo::set_has_sky_name() { _has_bits_[0] |= 0x00000008u; } inline void CSVCMsg_ServerInfo::clear_has_sky_name() { _has_bits_[0] &= ~0x00000008u; } inline void CSVCMsg_ServerInfo::clear_sky_name() { sky_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_sky_name(); } inline const ::std::string& CSVCMsg_ServerInfo::sky_name() const { // @@protoc_insertion_point(field_get:CSVCMsg_ServerInfo.sky_name) return sky_name_.GetNoArena(); } inline void CSVCMsg_ServerInfo::set_sky_name(const ::std::string& value) { set_has_sky_name(); sky_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_ServerInfo.sky_name) } #if LANG_CXX11 inline void CSVCMsg_ServerInfo::set_sky_name(::std::string&& value) { set_has_sky_name(); sky_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_ServerInfo.sky_name) } #endif inline void CSVCMsg_ServerInfo::set_sky_name(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_sky_name(); sky_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_ServerInfo.sky_name) } inline void CSVCMsg_ServerInfo::set_sky_name(const char* value, size_t size) { set_has_sky_name(); sky_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_ServerInfo.sky_name) } inline ::std::string* CSVCMsg_ServerInfo::mutable_sky_name() { set_has_sky_name(); // @@protoc_insertion_point(field_mutable:CSVCMsg_ServerInfo.sky_name) return sky_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_ServerInfo::release_sky_name() { // @@protoc_insertion_point(field_release:CSVCMsg_ServerInfo.sky_name) if (!has_sky_name()) { return NULL; } clear_has_sky_name(); return sky_name_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_ServerInfo::set_allocated_sky_name(::std::string* sky_name) { if (sky_name != NULL) { set_has_sky_name(); } else { clear_has_sky_name(); } sky_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), sky_name); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_ServerInfo.sky_name) } // optional string host_name = 19; inline bool CSVCMsg_ServerInfo::has_host_name() const { return (_has_bits_[0] & 0x00000010u) != 0; } inline void CSVCMsg_ServerInfo::set_has_host_name() { _has_bits_[0] |= 0x00000010u; } inline void CSVCMsg_ServerInfo::clear_has_host_name() { _has_bits_[0] &= ~0x00000010u; } inline void CSVCMsg_ServerInfo::clear_host_name() { host_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_host_name(); } inline const ::std::string& CSVCMsg_ServerInfo::host_name() const { // @@protoc_insertion_point(field_get:CSVCMsg_ServerInfo.host_name) return host_name_.GetNoArena(); } inline void CSVCMsg_ServerInfo::set_host_name(const ::std::string& value) { set_has_host_name(); host_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_ServerInfo.host_name) } #if LANG_CXX11 inline void CSVCMsg_ServerInfo::set_host_name(::std::string&& value) { set_has_host_name(); host_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_ServerInfo.host_name) } #endif inline void CSVCMsg_ServerInfo::set_host_name(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_host_name(); host_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_ServerInfo.host_name) } inline void CSVCMsg_ServerInfo::set_host_name(const char* value, size_t size) { set_has_host_name(); host_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_ServerInfo.host_name) } inline ::std::string* CSVCMsg_ServerInfo::mutable_host_name() { set_has_host_name(); // @@protoc_insertion_point(field_mutable:CSVCMsg_ServerInfo.host_name) return host_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_ServerInfo::release_host_name() { // @@protoc_insertion_point(field_release:CSVCMsg_ServerInfo.host_name) if (!has_host_name()) { return NULL; } clear_has_host_name(); return host_name_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_ServerInfo::set_allocated_host_name(::std::string* host_name) { if (host_name != NULL) { set_has_host_name(); } else { clear_has_host_name(); } host_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), host_name); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_ServerInfo.host_name) } // optional uint64 ugc_map_id = 22; inline bool CSVCMsg_ServerInfo::has_ugc_map_id() const { return (_has_bits_[0] & 0x00100000u) != 0; } inline void CSVCMsg_ServerInfo::set_has_ugc_map_id() { _has_bits_[0] |= 0x00100000u; } inline void CSVCMsg_ServerInfo::clear_has_ugc_map_id() { _has_bits_[0] &= ~0x00100000u; } inline void CSVCMsg_ServerInfo::clear_ugc_map_id() { ugc_map_id_ = GOOGLE_ULONGLONG(0); clear_has_ugc_map_id(); } inline ::google::protobuf::uint64 CSVCMsg_ServerInfo::ugc_map_id() const { // @@protoc_insertion_point(field_get:CSVCMsg_ServerInfo.ugc_map_id) return ugc_map_id_; } inline void CSVCMsg_ServerInfo::set_ugc_map_id(::google::protobuf::uint64 value) { set_has_ugc_map_id(); ugc_map_id_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_ServerInfo.ugc_map_id) } // ------------------------------------------------------------------- // CSVCMsg_ClassInfo_class_t // optional int32 class_id = 1; inline bool CSVCMsg_ClassInfo_class_t::has_class_id() const { return (_has_bits_[0] & 0x00000004u) != 0; } inline void CSVCMsg_ClassInfo_class_t::set_has_class_id() { _has_bits_[0] |= 0x00000004u; } inline void CSVCMsg_ClassInfo_class_t::clear_has_class_id() { _has_bits_[0] &= ~0x00000004u; } inline void CSVCMsg_ClassInfo_class_t::clear_class_id() { class_id_ = 0; clear_has_class_id(); } inline ::google::protobuf::int32 CSVCMsg_ClassInfo_class_t::class_id() const { // @@protoc_insertion_point(field_get:CSVCMsg_ClassInfo.class_t.class_id) return class_id_; } inline void CSVCMsg_ClassInfo_class_t::set_class_id(::google::protobuf::int32 value) { set_has_class_id(); class_id_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_ClassInfo.class_t.class_id) } // optional string data_table_name = 2; inline bool CSVCMsg_ClassInfo_class_t::has_data_table_name() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_ClassInfo_class_t::set_has_data_table_name() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_ClassInfo_class_t::clear_has_data_table_name() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_ClassInfo_class_t::clear_data_table_name() { data_table_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_data_table_name(); } inline const ::std::string& CSVCMsg_ClassInfo_class_t::data_table_name() const { // @@protoc_insertion_point(field_get:CSVCMsg_ClassInfo.class_t.data_table_name) return data_table_name_.GetNoArena(); } inline void CSVCMsg_ClassInfo_class_t::set_data_table_name(const ::std::string& value) { set_has_data_table_name(); data_table_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_ClassInfo.class_t.data_table_name) } #if LANG_CXX11 inline void CSVCMsg_ClassInfo_class_t::set_data_table_name(::std::string&& value) { set_has_data_table_name(); data_table_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_ClassInfo.class_t.data_table_name) } #endif inline void CSVCMsg_ClassInfo_class_t::set_data_table_name(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_data_table_name(); data_table_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_ClassInfo.class_t.data_table_name) } inline void CSVCMsg_ClassInfo_class_t::set_data_table_name(const char* value, size_t size) { set_has_data_table_name(); data_table_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_ClassInfo.class_t.data_table_name) } inline ::std::string* CSVCMsg_ClassInfo_class_t::mutable_data_table_name() { set_has_data_table_name(); // @@protoc_insertion_point(field_mutable:CSVCMsg_ClassInfo.class_t.data_table_name) return data_table_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_ClassInfo_class_t::release_data_table_name() { // @@protoc_insertion_point(field_release:CSVCMsg_ClassInfo.class_t.data_table_name) if (!has_data_table_name()) { return NULL; } clear_has_data_table_name(); return data_table_name_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_ClassInfo_class_t::set_allocated_data_table_name(::std::string* data_table_name) { if (data_table_name != NULL) { set_has_data_table_name(); } else { clear_has_data_table_name(); } data_table_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), data_table_name); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_ClassInfo.class_t.data_table_name) } // optional string class_name = 3; inline bool CSVCMsg_ClassInfo_class_t::has_class_name() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CSVCMsg_ClassInfo_class_t::set_has_class_name() { _has_bits_[0] |= 0x00000002u; } inline void CSVCMsg_ClassInfo_class_t::clear_has_class_name() { _has_bits_[0] &= ~0x00000002u; } inline void CSVCMsg_ClassInfo_class_t::clear_class_name() { class_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_class_name(); } inline const ::std::string& CSVCMsg_ClassInfo_class_t::class_name() const { // @@protoc_insertion_point(field_get:CSVCMsg_ClassInfo.class_t.class_name) return class_name_.GetNoArena(); } inline void CSVCMsg_ClassInfo_class_t::set_class_name(const ::std::string& value) { set_has_class_name(); class_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_ClassInfo.class_t.class_name) } #if LANG_CXX11 inline void CSVCMsg_ClassInfo_class_t::set_class_name(::std::string&& value) { set_has_class_name(); class_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_ClassInfo.class_t.class_name) } #endif inline void CSVCMsg_ClassInfo_class_t::set_class_name(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_class_name(); class_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_ClassInfo.class_t.class_name) } inline void CSVCMsg_ClassInfo_class_t::set_class_name(const char* value, size_t size) { set_has_class_name(); class_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_ClassInfo.class_t.class_name) } inline ::std::string* CSVCMsg_ClassInfo_class_t::mutable_class_name() { set_has_class_name(); // @@protoc_insertion_point(field_mutable:CSVCMsg_ClassInfo.class_t.class_name) return class_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_ClassInfo_class_t::release_class_name() { // @@protoc_insertion_point(field_release:CSVCMsg_ClassInfo.class_t.class_name) if (!has_class_name()) { return NULL; } clear_has_class_name(); return class_name_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_ClassInfo_class_t::set_allocated_class_name(::std::string* class_name) { if (class_name != NULL) { set_has_class_name(); } else { clear_has_class_name(); } class_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), class_name); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_ClassInfo.class_t.class_name) } // ------------------------------------------------------------------- // CSVCMsg_ClassInfo // optional bool create_on_client = 1; inline bool CSVCMsg_ClassInfo::has_create_on_client() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_ClassInfo::set_has_create_on_client() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_ClassInfo::clear_has_create_on_client() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_ClassInfo::clear_create_on_client() { create_on_client_ = false; clear_has_create_on_client(); } inline bool CSVCMsg_ClassInfo::create_on_client() const { // @@protoc_insertion_point(field_get:CSVCMsg_ClassInfo.create_on_client) return create_on_client_; } inline void CSVCMsg_ClassInfo::set_create_on_client(bool value) { set_has_create_on_client(); create_on_client_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_ClassInfo.create_on_client) } // repeated .CSVCMsg_ClassInfo.class_t classes = 2; inline int CSVCMsg_ClassInfo::classes_size() const { return classes_.size(); } inline void CSVCMsg_ClassInfo::clear_classes() { classes_.Clear(); } inline ::CSVCMsg_ClassInfo_class_t* CSVCMsg_ClassInfo::mutable_classes(int index) { // @@protoc_insertion_point(field_mutable:CSVCMsg_ClassInfo.classes) return classes_.Mutable(index); } inline ::google::protobuf::RepeatedPtrField< ::CSVCMsg_ClassInfo_class_t >* CSVCMsg_ClassInfo::mutable_classes() { // @@protoc_insertion_point(field_mutable_list:CSVCMsg_ClassInfo.classes) return &classes_; } inline const ::CSVCMsg_ClassInfo_class_t& CSVCMsg_ClassInfo::classes(int index) const { // @@protoc_insertion_point(field_get:CSVCMsg_ClassInfo.classes) return classes_.Get(index); } inline ::CSVCMsg_ClassInfo_class_t* CSVCMsg_ClassInfo::add_classes() { // @@protoc_insertion_point(field_add:CSVCMsg_ClassInfo.classes) return classes_.Add(); } inline const ::google::protobuf::RepeatedPtrField< ::CSVCMsg_ClassInfo_class_t >& CSVCMsg_ClassInfo::classes() const { // @@protoc_insertion_point(field_list:CSVCMsg_ClassInfo.classes) return classes_; } // ------------------------------------------------------------------- // CSVCMsg_SendTable_sendprop_t // optional int32 type = 1; inline bool CSVCMsg_SendTable_sendprop_t::has_type() const { return (_has_bits_[0] & 0x00000004u) != 0; } inline void CSVCMsg_SendTable_sendprop_t::set_has_type() { _has_bits_[0] |= 0x00000004u; } inline void CSVCMsg_SendTable_sendprop_t::clear_has_type() { _has_bits_[0] &= ~0x00000004u; } inline void CSVCMsg_SendTable_sendprop_t::clear_type() { type_ = 0; clear_has_type(); } inline ::google::protobuf::int32 CSVCMsg_SendTable_sendprop_t::type() const { // @@protoc_insertion_point(field_get:CSVCMsg_SendTable.sendprop_t.type) return type_; } inline void CSVCMsg_SendTable_sendprop_t::set_type(::google::protobuf::int32 value) { set_has_type(); type_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_SendTable.sendprop_t.type) } // optional string var_name = 2; inline bool CSVCMsg_SendTable_sendprop_t::has_var_name() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_SendTable_sendprop_t::set_has_var_name() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_SendTable_sendprop_t::clear_has_var_name() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_SendTable_sendprop_t::clear_var_name() { var_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_var_name(); } inline const ::std::string& CSVCMsg_SendTable_sendprop_t::var_name() const { // @@protoc_insertion_point(field_get:CSVCMsg_SendTable.sendprop_t.var_name) return var_name_.GetNoArena(); } inline void CSVCMsg_SendTable_sendprop_t::set_var_name(const ::std::string& value) { set_has_var_name(); var_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_SendTable.sendprop_t.var_name) } #if LANG_CXX11 inline void CSVCMsg_SendTable_sendprop_t::set_var_name(::std::string&& value) { set_has_var_name(); var_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_SendTable.sendprop_t.var_name) } #endif inline void CSVCMsg_SendTable_sendprop_t::set_var_name(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_var_name(); var_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_SendTable.sendprop_t.var_name) } inline void CSVCMsg_SendTable_sendprop_t::set_var_name(const char* value, size_t size) { set_has_var_name(); var_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_SendTable.sendprop_t.var_name) } inline ::std::string* CSVCMsg_SendTable_sendprop_t::mutable_var_name() { set_has_var_name(); // @@protoc_insertion_point(field_mutable:CSVCMsg_SendTable.sendprop_t.var_name) return var_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_SendTable_sendprop_t::release_var_name() { // @@protoc_insertion_point(field_release:CSVCMsg_SendTable.sendprop_t.var_name) if (!has_var_name()) { return NULL; } clear_has_var_name(); return var_name_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_SendTable_sendprop_t::set_allocated_var_name(::std::string* var_name) { if (var_name != NULL) { set_has_var_name(); } else { clear_has_var_name(); } var_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), var_name); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_SendTable.sendprop_t.var_name) } // optional int32 flags = 3; inline bool CSVCMsg_SendTable_sendprop_t::has_flags() const { return (_has_bits_[0] & 0x00000008u) != 0; } inline void CSVCMsg_SendTable_sendprop_t::set_has_flags() { _has_bits_[0] |= 0x00000008u; } inline void CSVCMsg_SendTable_sendprop_t::clear_has_flags() { _has_bits_[0] &= ~0x00000008u; } inline void CSVCMsg_SendTable_sendprop_t::clear_flags() { flags_ = 0; clear_has_flags(); } inline ::google::protobuf::int32 CSVCMsg_SendTable_sendprop_t::flags() const { // @@protoc_insertion_point(field_get:CSVCMsg_SendTable.sendprop_t.flags) return flags_; } inline void CSVCMsg_SendTable_sendprop_t::set_flags(::google::protobuf::int32 value) { set_has_flags(); flags_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_SendTable.sendprop_t.flags) } // optional int32 priority = 4; inline bool CSVCMsg_SendTable_sendprop_t::has_priority() const { return (_has_bits_[0] & 0x00000010u) != 0; } inline void CSVCMsg_SendTable_sendprop_t::set_has_priority() { _has_bits_[0] |= 0x00000010u; } inline void CSVCMsg_SendTable_sendprop_t::clear_has_priority() { _has_bits_[0] &= ~0x00000010u; } inline void CSVCMsg_SendTable_sendprop_t::clear_priority() { priority_ = 0; clear_has_priority(); } inline ::google::protobuf::int32 CSVCMsg_SendTable_sendprop_t::priority() const { // @@protoc_insertion_point(field_get:CSVCMsg_SendTable.sendprop_t.priority) return priority_; } inline void CSVCMsg_SendTable_sendprop_t::set_priority(::google::protobuf::int32 value) { set_has_priority(); priority_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_SendTable.sendprop_t.priority) } // optional string dt_name = 5; inline bool CSVCMsg_SendTable_sendprop_t::has_dt_name() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CSVCMsg_SendTable_sendprop_t::set_has_dt_name() { _has_bits_[0] |= 0x00000002u; } inline void CSVCMsg_SendTable_sendprop_t::clear_has_dt_name() { _has_bits_[0] &= ~0x00000002u; } inline void CSVCMsg_SendTable_sendprop_t::clear_dt_name() { dt_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_dt_name(); } inline const ::std::string& CSVCMsg_SendTable_sendprop_t::dt_name() const { // @@protoc_insertion_point(field_get:CSVCMsg_SendTable.sendprop_t.dt_name) return dt_name_.GetNoArena(); } inline void CSVCMsg_SendTable_sendprop_t::set_dt_name(const ::std::string& value) { set_has_dt_name(); dt_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_SendTable.sendprop_t.dt_name) } #if LANG_CXX11 inline void CSVCMsg_SendTable_sendprop_t::set_dt_name(::std::string&& value) { set_has_dt_name(); dt_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_SendTable.sendprop_t.dt_name) } #endif inline void CSVCMsg_SendTable_sendprop_t::set_dt_name(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_dt_name(); dt_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_SendTable.sendprop_t.dt_name) } inline void CSVCMsg_SendTable_sendprop_t::set_dt_name(const char* value, size_t size) { set_has_dt_name(); dt_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_SendTable.sendprop_t.dt_name) } inline ::std::string* CSVCMsg_SendTable_sendprop_t::mutable_dt_name() { set_has_dt_name(); // @@protoc_insertion_point(field_mutable:CSVCMsg_SendTable.sendprop_t.dt_name) return dt_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_SendTable_sendprop_t::release_dt_name() { // @@protoc_insertion_point(field_release:CSVCMsg_SendTable.sendprop_t.dt_name) if (!has_dt_name()) { return NULL; } clear_has_dt_name(); return dt_name_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_SendTable_sendprop_t::set_allocated_dt_name(::std::string* dt_name) { if (dt_name != NULL) { set_has_dt_name(); } else { clear_has_dt_name(); } dt_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), dt_name); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_SendTable.sendprop_t.dt_name) } // optional int32 num_elements = 6; inline bool CSVCMsg_SendTable_sendprop_t::has_num_elements() const { return (_has_bits_[0] & 0x00000020u) != 0; } inline void CSVCMsg_SendTable_sendprop_t::set_has_num_elements() { _has_bits_[0] |= 0x00000020u; } inline void CSVCMsg_SendTable_sendprop_t::clear_has_num_elements() { _has_bits_[0] &= ~0x00000020u; } inline void CSVCMsg_SendTable_sendprop_t::clear_num_elements() { num_elements_ = 0; clear_has_num_elements(); } inline ::google::protobuf::int32 CSVCMsg_SendTable_sendprop_t::num_elements() const { // @@protoc_insertion_point(field_get:CSVCMsg_SendTable.sendprop_t.num_elements) return num_elements_; } inline void CSVCMsg_SendTable_sendprop_t::set_num_elements(::google::protobuf::int32 value) { set_has_num_elements(); num_elements_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_SendTable.sendprop_t.num_elements) } // optional float low_value = 7; inline bool CSVCMsg_SendTable_sendprop_t::has_low_value() const { return (_has_bits_[0] & 0x00000040u) != 0; } inline void CSVCMsg_SendTable_sendprop_t::set_has_low_value() { _has_bits_[0] |= 0x00000040u; } inline void CSVCMsg_SendTable_sendprop_t::clear_has_low_value() { _has_bits_[0] &= ~0x00000040u; } inline void CSVCMsg_SendTable_sendprop_t::clear_low_value() { low_value_ = 0; clear_has_low_value(); } inline float CSVCMsg_SendTable_sendprop_t::low_value() const { // @@protoc_insertion_point(field_get:CSVCMsg_SendTable.sendprop_t.low_value) return low_value_; } inline void CSVCMsg_SendTable_sendprop_t::set_low_value(float value) { set_has_low_value(); low_value_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_SendTable.sendprop_t.low_value) } // optional float high_value = 8; inline bool CSVCMsg_SendTable_sendprop_t::has_high_value() const { return (_has_bits_[0] & 0x00000080u) != 0; } inline void CSVCMsg_SendTable_sendprop_t::set_has_high_value() { _has_bits_[0] |= 0x00000080u; } inline void CSVCMsg_SendTable_sendprop_t::clear_has_high_value() { _has_bits_[0] &= ~0x00000080u; } inline void CSVCMsg_SendTable_sendprop_t::clear_high_value() { high_value_ = 0; clear_has_high_value(); } inline float CSVCMsg_SendTable_sendprop_t::high_value() const { // @@protoc_insertion_point(field_get:CSVCMsg_SendTable.sendprop_t.high_value) return high_value_; } inline void CSVCMsg_SendTable_sendprop_t::set_high_value(float value) { set_has_high_value(); high_value_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_SendTable.sendprop_t.high_value) } // optional int32 num_bits = 9; inline bool CSVCMsg_SendTable_sendprop_t::has_num_bits() const { return (_has_bits_[0] & 0x00000100u) != 0; } inline void CSVCMsg_SendTable_sendprop_t::set_has_num_bits() { _has_bits_[0] |= 0x00000100u; } inline void CSVCMsg_SendTable_sendprop_t::clear_has_num_bits() { _has_bits_[0] &= ~0x00000100u; } inline void CSVCMsg_SendTable_sendprop_t::clear_num_bits() { num_bits_ = 0; clear_has_num_bits(); } inline ::google::protobuf::int32 CSVCMsg_SendTable_sendprop_t::num_bits() const { // @@protoc_insertion_point(field_get:CSVCMsg_SendTable.sendprop_t.num_bits) return num_bits_; } inline void CSVCMsg_SendTable_sendprop_t::set_num_bits(::google::protobuf::int32 value) { set_has_num_bits(); num_bits_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_SendTable.sendprop_t.num_bits) } // ------------------------------------------------------------------- // CSVCMsg_SendTable // optional bool is_end = 1; inline bool CSVCMsg_SendTable::has_is_end() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CSVCMsg_SendTable::set_has_is_end() { _has_bits_[0] |= 0x00000002u; } inline void CSVCMsg_SendTable::clear_has_is_end() { _has_bits_[0] &= ~0x00000002u; } inline void CSVCMsg_SendTable::clear_is_end() { is_end_ = false; clear_has_is_end(); } inline bool CSVCMsg_SendTable::is_end() const { // @@protoc_insertion_point(field_get:CSVCMsg_SendTable.is_end) return is_end_; } inline void CSVCMsg_SendTable::set_is_end(bool value) { set_has_is_end(); is_end_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_SendTable.is_end) } // optional string net_table_name = 2; inline bool CSVCMsg_SendTable::has_net_table_name() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_SendTable::set_has_net_table_name() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_SendTable::clear_has_net_table_name() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_SendTable::clear_net_table_name() { net_table_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_net_table_name(); } inline const ::std::string& CSVCMsg_SendTable::net_table_name() const { // @@protoc_insertion_point(field_get:CSVCMsg_SendTable.net_table_name) return net_table_name_.GetNoArena(); } inline void CSVCMsg_SendTable::set_net_table_name(const ::std::string& value) { set_has_net_table_name(); net_table_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_SendTable.net_table_name) } #if LANG_CXX11 inline void CSVCMsg_SendTable::set_net_table_name(::std::string&& value) { set_has_net_table_name(); net_table_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_SendTable.net_table_name) } #endif inline void CSVCMsg_SendTable::set_net_table_name(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_net_table_name(); net_table_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_SendTable.net_table_name) } inline void CSVCMsg_SendTable::set_net_table_name(const char* value, size_t size) { set_has_net_table_name(); net_table_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_SendTable.net_table_name) } inline ::std::string* CSVCMsg_SendTable::mutable_net_table_name() { set_has_net_table_name(); // @@protoc_insertion_point(field_mutable:CSVCMsg_SendTable.net_table_name) return net_table_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_SendTable::release_net_table_name() { // @@protoc_insertion_point(field_release:CSVCMsg_SendTable.net_table_name) if (!has_net_table_name()) { return NULL; } clear_has_net_table_name(); return net_table_name_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_SendTable::set_allocated_net_table_name(::std::string* net_table_name) { if (net_table_name != NULL) { set_has_net_table_name(); } else { clear_has_net_table_name(); } net_table_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), net_table_name); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_SendTable.net_table_name) } // optional bool needs_decoder = 3; inline bool CSVCMsg_SendTable::has_needs_decoder() const { return (_has_bits_[0] & 0x00000004u) != 0; } inline void CSVCMsg_SendTable::set_has_needs_decoder() { _has_bits_[0] |= 0x00000004u; } inline void CSVCMsg_SendTable::clear_has_needs_decoder() { _has_bits_[0] &= ~0x00000004u; } inline void CSVCMsg_SendTable::clear_needs_decoder() { needs_decoder_ = false; clear_has_needs_decoder(); } inline bool CSVCMsg_SendTable::needs_decoder() const { // @@protoc_insertion_point(field_get:CSVCMsg_SendTable.needs_decoder) return needs_decoder_; } inline void CSVCMsg_SendTable::set_needs_decoder(bool value) { set_has_needs_decoder(); needs_decoder_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_SendTable.needs_decoder) } // repeated .CSVCMsg_SendTable.sendprop_t props = 4; inline int CSVCMsg_SendTable::props_size() const { return props_.size(); } inline void CSVCMsg_SendTable::clear_props() { props_.Clear(); } inline ::CSVCMsg_SendTable_sendprop_t* CSVCMsg_SendTable::mutable_props(int index) { // @@protoc_insertion_point(field_mutable:CSVCMsg_SendTable.props) return props_.Mutable(index); } inline ::google::protobuf::RepeatedPtrField< ::CSVCMsg_SendTable_sendprop_t >* CSVCMsg_SendTable::mutable_props() { // @@protoc_insertion_point(field_mutable_list:CSVCMsg_SendTable.props) return &props_; } inline const ::CSVCMsg_SendTable_sendprop_t& CSVCMsg_SendTable::props(int index) const { // @@protoc_insertion_point(field_get:CSVCMsg_SendTable.props) return props_.Get(index); } inline ::CSVCMsg_SendTable_sendprop_t* CSVCMsg_SendTable::add_props() { // @@protoc_insertion_point(field_add:CSVCMsg_SendTable.props) return props_.Add(); } inline const ::google::protobuf::RepeatedPtrField< ::CSVCMsg_SendTable_sendprop_t >& CSVCMsg_SendTable::props() const { // @@protoc_insertion_point(field_list:CSVCMsg_SendTable.props) return props_; } // ------------------------------------------------------------------- // CSVCMsg_Print // optional string text = 1; inline bool CSVCMsg_Print::has_text() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_Print::set_has_text() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_Print::clear_has_text() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_Print::clear_text() { text_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_text(); } inline const ::std::string& CSVCMsg_Print::text() const { // @@protoc_insertion_point(field_get:CSVCMsg_Print.text) return text_.GetNoArena(); } inline void CSVCMsg_Print::set_text(const ::std::string& value) { set_has_text(); text_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_Print.text) } #if LANG_CXX11 inline void CSVCMsg_Print::set_text(::std::string&& value) { set_has_text(); text_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_Print.text) } #endif inline void CSVCMsg_Print::set_text(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_text(); text_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_Print.text) } inline void CSVCMsg_Print::set_text(const char* value, size_t size) { set_has_text(); text_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_Print.text) } inline ::std::string* CSVCMsg_Print::mutable_text() { set_has_text(); // @@protoc_insertion_point(field_mutable:CSVCMsg_Print.text) return text_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_Print::release_text() { // @@protoc_insertion_point(field_release:CSVCMsg_Print.text) if (!has_text()) { return NULL; } clear_has_text(); return text_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_Print::set_allocated_text(::std::string* text) { if (text != NULL) { set_has_text(); } else { clear_has_text(); } text_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), text); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_Print.text) } // ------------------------------------------------------------------- // CSVCMsg_SetPause // optional bool paused = 1; inline bool CSVCMsg_SetPause::has_paused() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_SetPause::set_has_paused() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_SetPause::clear_has_paused() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_SetPause::clear_paused() { paused_ = false; clear_has_paused(); } inline bool CSVCMsg_SetPause::paused() const { // @@protoc_insertion_point(field_get:CSVCMsg_SetPause.paused) return paused_; } inline void CSVCMsg_SetPause::set_paused(bool value) { set_has_paused(); paused_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_SetPause.paused) } // ------------------------------------------------------------------- // CSVCMsg_SetView // optional int32 entity_index = 1; inline bool CSVCMsg_SetView::has_entity_index() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_SetView::set_has_entity_index() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_SetView::clear_has_entity_index() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_SetView::clear_entity_index() { entity_index_ = 0; clear_has_entity_index(); } inline ::google::protobuf::int32 CSVCMsg_SetView::entity_index() const { // @@protoc_insertion_point(field_get:CSVCMsg_SetView.entity_index) return entity_index_; } inline void CSVCMsg_SetView::set_entity_index(::google::protobuf::int32 value) { set_has_entity_index(); entity_index_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_SetView.entity_index) } // ------------------------------------------------------------------- // CSVCMsg_CreateStringTable // optional string name = 1; inline bool CSVCMsg_CreateStringTable::has_name() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_CreateStringTable::set_has_name() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_CreateStringTable::clear_has_name() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_CreateStringTable::clear_name() { name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_name(); } inline const ::std::string& CSVCMsg_CreateStringTable::name() const { // @@protoc_insertion_point(field_get:CSVCMsg_CreateStringTable.name) return name_.GetNoArena(); } inline void CSVCMsg_CreateStringTable::set_name(const ::std::string& value) { set_has_name(); name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_CreateStringTable.name) } #if LANG_CXX11 inline void CSVCMsg_CreateStringTable::set_name(::std::string&& value) { set_has_name(); name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_CreateStringTable.name) } #endif inline void CSVCMsg_CreateStringTable::set_name(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_name(); name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_CreateStringTable.name) } inline void CSVCMsg_CreateStringTable::set_name(const char* value, size_t size) { set_has_name(); name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_CreateStringTable.name) } inline ::std::string* CSVCMsg_CreateStringTable::mutable_name() { set_has_name(); // @@protoc_insertion_point(field_mutable:CSVCMsg_CreateStringTable.name) return name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_CreateStringTable::release_name() { // @@protoc_insertion_point(field_release:CSVCMsg_CreateStringTable.name) if (!has_name()) { return NULL; } clear_has_name(); return name_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_CreateStringTable::set_allocated_name(::std::string* name) { if (name != NULL) { set_has_name(); } else { clear_has_name(); } name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), name); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_CreateStringTable.name) } // optional int32 max_entries = 2; inline bool CSVCMsg_CreateStringTable::has_max_entries() const { return (_has_bits_[0] & 0x00000004u) != 0; } inline void CSVCMsg_CreateStringTable::set_has_max_entries() { _has_bits_[0] |= 0x00000004u; } inline void CSVCMsg_CreateStringTable::clear_has_max_entries() { _has_bits_[0] &= ~0x00000004u; } inline void CSVCMsg_CreateStringTable::clear_max_entries() { max_entries_ = 0; clear_has_max_entries(); } inline ::google::protobuf::int32 CSVCMsg_CreateStringTable::max_entries() const { // @@protoc_insertion_point(field_get:CSVCMsg_CreateStringTable.max_entries) return max_entries_; } inline void CSVCMsg_CreateStringTable::set_max_entries(::google::protobuf::int32 value) { set_has_max_entries(); max_entries_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_CreateStringTable.max_entries) } // optional int32 num_entries = 3; inline bool CSVCMsg_CreateStringTable::has_num_entries() const { return (_has_bits_[0] & 0x00000008u) != 0; } inline void CSVCMsg_CreateStringTable::set_has_num_entries() { _has_bits_[0] |= 0x00000008u; } inline void CSVCMsg_CreateStringTable::clear_has_num_entries() { _has_bits_[0] &= ~0x00000008u; } inline void CSVCMsg_CreateStringTable::clear_num_entries() { num_entries_ = 0; clear_has_num_entries(); } inline ::google::protobuf::int32 CSVCMsg_CreateStringTable::num_entries() const { // @@protoc_insertion_point(field_get:CSVCMsg_CreateStringTable.num_entries) return num_entries_; } inline void CSVCMsg_CreateStringTable::set_num_entries(::google::protobuf::int32 value) { set_has_num_entries(); num_entries_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_CreateStringTable.num_entries) } // optional bool user_data_fixed_size = 4; inline bool CSVCMsg_CreateStringTable::has_user_data_fixed_size() const { return (_has_bits_[0] & 0x00000010u) != 0; } inline void CSVCMsg_CreateStringTable::set_has_user_data_fixed_size() { _has_bits_[0] |= 0x00000010u; } inline void CSVCMsg_CreateStringTable::clear_has_user_data_fixed_size() { _has_bits_[0] &= ~0x00000010u; } inline void CSVCMsg_CreateStringTable::clear_user_data_fixed_size() { user_data_fixed_size_ = false; clear_has_user_data_fixed_size(); } inline bool CSVCMsg_CreateStringTable::user_data_fixed_size() const { // @@protoc_insertion_point(field_get:CSVCMsg_CreateStringTable.user_data_fixed_size) return user_data_fixed_size_; } inline void CSVCMsg_CreateStringTable::set_user_data_fixed_size(bool value) { set_has_user_data_fixed_size(); user_data_fixed_size_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_CreateStringTable.user_data_fixed_size) } // optional int32 user_data_size = 5; inline bool CSVCMsg_CreateStringTable::has_user_data_size() const { return (_has_bits_[0] & 0x00000020u) != 0; } inline void CSVCMsg_CreateStringTable::set_has_user_data_size() { _has_bits_[0] |= 0x00000020u; } inline void CSVCMsg_CreateStringTable::clear_has_user_data_size() { _has_bits_[0] &= ~0x00000020u; } inline void CSVCMsg_CreateStringTable::clear_user_data_size() { user_data_size_ = 0; clear_has_user_data_size(); } inline ::google::protobuf::int32 CSVCMsg_CreateStringTable::user_data_size() const { // @@protoc_insertion_point(field_get:CSVCMsg_CreateStringTable.user_data_size) return user_data_size_; } inline void CSVCMsg_CreateStringTable::set_user_data_size(::google::protobuf::int32 value) { set_has_user_data_size(); user_data_size_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_CreateStringTable.user_data_size) } // optional int32 user_data_size_bits = 6; inline bool CSVCMsg_CreateStringTable::has_user_data_size_bits() const { return (_has_bits_[0] & 0x00000040u) != 0; } inline void CSVCMsg_CreateStringTable::set_has_user_data_size_bits() { _has_bits_[0] |= 0x00000040u; } inline void CSVCMsg_CreateStringTable::clear_has_user_data_size_bits() { _has_bits_[0] &= ~0x00000040u; } inline void CSVCMsg_CreateStringTable::clear_user_data_size_bits() { user_data_size_bits_ = 0; clear_has_user_data_size_bits(); } inline ::google::protobuf::int32 CSVCMsg_CreateStringTable::user_data_size_bits() const { // @@protoc_insertion_point(field_get:CSVCMsg_CreateStringTable.user_data_size_bits) return user_data_size_bits_; } inline void CSVCMsg_CreateStringTable::set_user_data_size_bits(::google::protobuf::int32 value) { set_has_user_data_size_bits(); user_data_size_bits_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_CreateStringTable.user_data_size_bits) } // optional int32 flags = 7; inline bool CSVCMsg_CreateStringTable::has_flags() const { return (_has_bits_[0] & 0x00000080u) != 0; } inline void CSVCMsg_CreateStringTable::set_has_flags() { _has_bits_[0] |= 0x00000080u; } inline void CSVCMsg_CreateStringTable::clear_has_flags() { _has_bits_[0] &= ~0x00000080u; } inline void CSVCMsg_CreateStringTable::clear_flags() { flags_ = 0; clear_has_flags(); } inline ::google::protobuf::int32 CSVCMsg_CreateStringTable::flags() const { // @@protoc_insertion_point(field_get:CSVCMsg_CreateStringTable.flags) return flags_; } inline void CSVCMsg_CreateStringTable::set_flags(::google::protobuf::int32 value) { set_has_flags(); flags_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_CreateStringTable.flags) } // optional bytes string_data = 8; inline bool CSVCMsg_CreateStringTable::has_string_data() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CSVCMsg_CreateStringTable::set_has_string_data() { _has_bits_[0] |= 0x00000002u; } inline void CSVCMsg_CreateStringTable::clear_has_string_data() { _has_bits_[0] &= ~0x00000002u; } inline void CSVCMsg_CreateStringTable::clear_string_data() { string_data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_string_data(); } inline const ::std::string& CSVCMsg_CreateStringTable::string_data() const { // @@protoc_insertion_point(field_get:CSVCMsg_CreateStringTable.string_data) return string_data_.GetNoArena(); } inline void CSVCMsg_CreateStringTable::set_string_data(const ::std::string& value) { set_has_string_data(); string_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_CreateStringTable.string_data) } #if LANG_CXX11 inline void CSVCMsg_CreateStringTable::set_string_data(::std::string&& value) { set_has_string_data(); string_data_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_CreateStringTable.string_data) } #endif inline void CSVCMsg_CreateStringTable::set_string_data(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_string_data(); string_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_CreateStringTable.string_data) } inline void CSVCMsg_CreateStringTable::set_string_data(const void* value, size_t size) { set_has_string_data(); string_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_CreateStringTable.string_data) } inline ::std::string* CSVCMsg_CreateStringTable::mutable_string_data() { set_has_string_data(); // @@protoc_insertion_point(field_mutable:CSVCMsg_CreateStringTable.string_data) return string_data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_CreateStringTable::release_string_data() { // @@protoc_insertion_point(field_release:CSVCMsg_CreateStringTable.string_data) if (!has_string_data()) { return NULL; } clear_has_string_data(); return string_data_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_CreateStringTable::set_allocated_string_data(::std::string* string_data) { if (string_data != NULL) { set_has_string_data(); } else { clear_has_string_data(); } string_data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), string_data); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_CreateStringTable.string_data) } // ------------------------------------------------------------------- // CSVCMsg_UpdateStringTable // optional int32 table_id = 1; inline bool CSVCMsg_UpdateStringTable::has_table_id() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CSVCMsg_UpdateStringTable::set_has_table_id() { _has_bits_[0] |= 0x00000002u; } inline void CSVCMsg_UpdateStringTable::clear_has_table_id() { _has_bits_[0] &= ~0x00000002u; } inline void CSVCMsg_UpdateStringTable::clear_table_id() { table_id_ = 0; clear_has_table_id(); } inline ::google::protobuf::int32 CSVCMsg_UpdateStringTable::table_id() const { // @@protoc_insertion_point(field_get:CSVCMsg_UpdateStringTable.table_id) return table_id_; } inline void CSVCMsg_UpdateStringTable::set_table_id(::google::protobuf::int32 value) { set_has_table_id(); table_id_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_UpdateStringTable.table_id) } // optional int32 num_changed_entries = 2; inline bool CSVCMsg_UpdateStringTable::has_num_changed_entries() const { return (_has_bits_[0] & 0x00000004u) != 0; } inline void CSVCMsg_UpdateStringTable::set_has_num_changed_entries() { _has_bits_[0] |= 0x00000004u; } inline void CSVCMsg_UpdateStringTable::clear_has_num_changed_entries() { _has_bits_[0] &= ~0x00000004u; } inline void CSVCMsg_UpdateStringTable::clear_num_changed_entries() { num_changed_entries_ = 0; clear_has_num_changed_entries(); } inline ::google::protobuf::int32 CSVCMsg_UpdateStringTable::num_changed_entries() const { // @@protoc_insertion_point(field_get:CSVCMsg_UpdateStringTable.num_changed_entries) return num_changed_entries_; } inline void CSVCMsg_UpdateStringTable::set_num_changed_entries(::google::protobuf::int32 value) { set_has_num_changed_entries(); num_changed_entries_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_UpdateStringTable.num_changed_entries) } // optional bytes string_data = 3; inline bool CSVCMsg_UpdateStringTable::has_string_data() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_UpdateStringTable::set_has_string_data() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_UpdateStringTable::clear_has_string_data() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_UpdateStringTable::clear_string_data() { string_data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_string_data(); } inline const ::std::string& CSVCMsg_UpdateStringTable::string_data() const { // @@protoc_insertion_point(field_get:CSVCMsg_UpdateStringTable.string_data) return string_data_.GetNoArena(); } inline void CSVCMsg_UpdateStringTable::set_string_data(const ::std::string& value) { set_has_string_data(); string_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_UpdateStringTable.string_data) } #if LANG_CXX11 inline void CSVCMsg_UpdateStringTable::set_string_data(::std::string&& value) { set_has_string_data(); string_data_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_UpdateStringTable.string_data) } #endif inline void CSVCMsg_UpdateStringTable::set_string_data(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_string_data(); string_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_UpdateStringTable.string_data) } inline void CSVCMsg_UpdateStringTable::set_string_data(const void* value, size_t size) { set_has_string_data(); string_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_UpdateStringTable.string_data) } inline ::std::string* CSVCMsg_UpdateStringTable::mutable_string_data() { set_has_string_data(); // @@protoc_insertion_point(field_mutable:CSVCMsg_UpdateStringTable.string_data) return string_data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_UpdateStringTable::release_string_data() { // @@protoc_insertion_point(field_release:CSVCMsg_UpdateStringTable.string_data) if (!has_string_data()) { return NULL; } clear_has_string_data(); return string_data_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_UpdateStringTable::set_allocated_string_data(::std::string* string_data) { if (string_data != NULL) { set_has_string_data(); } else { clear_has_string_data(); } string_data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), string_data); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_UpdateStringTable.string_data) } // ------------------------------------------------------------------- // CSVCMsg_VoiceInit // optional int32 quality = 1; inline bool CSVCMsg_VoiceInit::has_quality() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CSVCMsg_VoiceInit::set_has_quality() { _has_bits_[0] |= 0x00000002u; } inline void CSVCMsg_VoiceInit::clear_has_quality() { _has_bits_[0] &= ~0x00000002u; } inline void CSVCMsg_VoiceInit::clear_quality() { quality_ = 0; clear_has_quality(); } inline ::google::protobuf::int32 CSVCMsg_VoiceInit::quality() const { // @@protoc_insertion_point(field_get:CSVCMsg_VoiceInit.quality) return quality_; } inline void CSVCMsg_VoiceInit::set_quality(::google::protobuf::int32 value) { set_has_quality(); quality_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_VoiceInit.quality) } // optional string codec = 2; inline bool CSVCMsg_VoiceInit::has_codec() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_VoiceInit::set_has_codec() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_VoiceInit::clear_has_codec() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_VoiceInit::clear_codec() { codec_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_codec(); } inline const ::std::string& CSVCMsg_VoiceInit::codec() const { // @@protoc_insertion_point(field_get:CSVCMsg_VoiceInit.codec) return codec_.GetNoArena(); } inline void CSVCMsg_VoiceInit::set_codec(const ::std::string& value) { set_has_codec(); codec_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_VoiceInit.codec) } #if LANG_CXX11 inline void CSVCMsg_VoiceInit::set_codec(::std::string&& value) { set_has_codec(); codec_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_VoiceInit.codec) } #endif inline void CSVCMsg_VoiceInit::set_codec(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_codec(); codec_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_VoiceInit.codec) } inline void CSVCMsg_VoiceInit::set_codec(const char* value, size_t size) { set_has_codec(); codec_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_VoiceInit.codec) } inline ::std::string* CSVCMsg_VoiceInit::mutable_codec() { set_has_codec(); // @@protoc_insertion_point(field_mutable:CSVCMsg_VoiceInit.codec) return codec_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_VoiceInit::release_codec() { // @@protoc_insertion_point(field_release:CSVCMsg_VoiceInit.codec) if (!has_codec()) { return NULL; } clear_has_codec(); return codec_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_VoiceInit::set_allocated_codec(::std::string* codec) { if (codec != NULL) { set_has_codec(); } else { clear_has_codec(); } codec_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), codec); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_VoiceInit.codec) } // ------------------------------------------------------------------- // CSVCMsg_VoiceData // optional int32 client = 1; inline bool CSVCMsg_VoiceData::has_client() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CSVCMsg_VoiceData::set_has_client() { _has_bits_[0] |= 0x00000002u; } inline void CSVCMsg_VoiceData::clear_has_client() { _has_bits_[0] &= ~0x00000002u; } inline void CSVCMsg_VoiceData::clear_client() { client_ = 0; clear_has_client(); } inline ::google::protobuf::int32 CSVCMsg_VoiceData::client() const { // @@protoc_insertion_point(field_get:CSVCMsg_VoiceData.client) return client_; } inline void CSVCMsg_VoiceData::set_client(::google::protobuf::int32 value) { set_has_client(); client_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_VoiceData.client) } // optional bool proximity = 2; inline bool CSVCMsg_VoiceData::has_proximity() const { return (_has_bits_[0] & 0x00000004u) != 0; } inline void CSVCMsg_VoiceData::set_has_proximity() { _has_bits_[0] |= 0x00000004u; } inline void CSVCMsg_VoiceData::clear_has_proximity() { _has_bits_[0] &= ~0x00000004u; } inline void CSVCMsg_VoiceData::clear_proximity() { proximity_ = false; clear_has_proximity(); } inline bool CSVCMsg_VoiceData::proximity() const { // @@protoc_insertion_point(field_get:CSVCMsg_VoiceData.proximity) return proximity_; } inline void CSVCMsg_VoiceData::set_proximity(bool value) { set_has_proximity(); proximity_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_VoiceData.proximity) } // optional fixed64 xuid = 3; inline bool CSVCMsg_VoiceData::has_xuid() const { return (_has_bits_[0] & 0x00000008u) != 0; } inline void CSVCMsg_VoiceData::set_has_xuid() { _has_bits_[0] |= 0x00000008u; } inline void CSVCMsg_VoiceData::clear_has_xuid() { _has_bits_[0] &= ~0x00000008u; } inline void CSVCMsg_VoiceData::clear_xuid() { xuid_ = GOOGLE_ULONGLONG(0); clear_has_xuid(); } inline ::google::protobuf::uint64 CSVCMsg_VoiceData::xuid() const { // @@protoc_insertion_point(field_get:CSVCMsg_VoiceData.xuid) return xuid_; } inline void CSVCMsg_VoiceData::set_xuid(::google::protobuf::uint64 value) { set_has_xuid(); xuid_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_VoiceData.xuid) } // optional int32 audible_mask = 4; inline bool CSVCMsg_VoiceData::has_audible_mask() const { return (_has_bits_[0] & 0x00000010u) != 0; } inline void CSVCMsg_VoiceData::set_has_audible_mask() { _has_bits_[0] |= 0x00000010u; } inline void CSVCMsg_VoiceData::clear_has_audible_mask() { _has_bits_[0] &= ~0x00000010u; } inline void CSVCMsg_VoiceData::clear_audible_mask() { audible_mask_ = 0; clear_has_audible_mask(); } inline ::google::protobuf::int32 CSVCMsg_VoiceData::audible_mask() const { // @@protoc_insertion_point(field_get:CSVCMsg_VoiceData.audible_mask) return audible_mask_; } inline void CSVCMsg_VoiceData::set_audible_mask(::google::protobuf::int32 value) { set_has_audible_mask(); audible_mask_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_VoiceData.audible_mask) } // optional bytes voice_data = 5; inline bool CSVCMsg_VoiceData::has_voice_data() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_VoiceData::set_has_voice_data() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_VoiceData::clear_has_voice_data() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_VoiceData::clear_voice_data() { voice_data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_voice_data(); } inline const ::std::string& CSVCMsg_VoiceData::voice_data() const { // @@protoc_insertion_point(field_get:CSVCMsg_VoiceData.voice_data) return voice_data_.GetNoArena(); } inline void CSVCMsg_VoiceData::set_voice_data(const ::std::string& value) { set_has_voice_data(); voice_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_VoiceData.voice_data) } #if LANG_CXX11 inline void CSVCMsg_VoiceData::set_voice_data(::std::string&& value) { set_has_voice_data(); voice_data_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_VoiceData.voice_data) } #endif inline void CSVCMsg_VoiceData::set_voice_data(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_voice_data(); voice_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_VoiceData.voice_data) } inline void CSVCMsg_VoiceData::set_voice_data(const void* value, size_t size) { set_has_voice_data(); voice_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_VoiceData.voice_data) } inline ::std::string* CSVCMsg_VoiceData::mutable_voice_data() { set_has_voice_data(); // @@protoc_insertion_point(field_mutable:CSVCMsg_VoiceData.voice_data) return voice_data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_VoiceData::release_voice_data() { // @@protoc_insertion_point(field_release:CSVCMsg_VoiceData.voice_data) if (!has_voice_data()) { return NULL; } clear_has_voice_data(); return voice_data_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_VoiceData::set_allocated_voice_data(::std::string* voice_data) { if (voice_data != NULL) { set_has_voice_data(); } else { clear_has_voice_data(); } voice_data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), voice_data); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_VoiceData.voice_data) } // ------------------------------------------------------------------- // CSVCMsg_FixAngle // optional bool relative = 1; inline bool CSVCMsg_FixAngle::has_relative() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CSVCMsg_FixAngle::set_has_relative() { _has_bits_[0] |= 0x00000002u; } inline void CSVCMsg_FixAngle::clear_has_relative() { _has_bits_[0] &= ~0x00000002u; } inline void CSVCMsg_FixAngle::clear_relative() { relative_ = false; clear_has_relative(); } inline bool CSVCMsg_FixAngle::relative() const { // @@protoc_insertion_point(field_get:CSVCMsg_FixAngle.relative) return relative_; } inline void CSVCMsg_FixAngle::set_relative(bool value) { set_has_relative(); relative_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_FixAngle.relative) } // optional .CMsgQAngle angle = 2; inline bool CSVCMsg_FixAngle::has_angle() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_FixAngle::set_has_angle() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_FixAngle::clear_has_angle() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_FixAngle::clear_angle() { if (angle_ != NULL) angle_->Clear(); clear_has_angle(); } inline const ::CMsgQAngle& CSVCMsg_FixAngle::_internal_angle() const { return *angle_; } inline const ::CMsgQAngle& CSVCMsg_FixAngle::angle() const { const ::CMsgQAngle* p = angle_; // @@protoc_insertion_point(field_get:CSVCMsg_FixAngle.angle) return p != NULL ? *p : *reinterpret_cast<const ::CMsgQAngle*>( &::_CMsgQAngle_default_instance_); } inline ::CMsgQAngle* CSVCMsg_FixAngle::release_angle() { // @@protoc_insertion_point(field_release:CSVCMsg_FixAngle.angle) clear_has_angle(); ::CMsgQAngle* temp = angle_; angle_ = NULL; return temp; } inline ::CMsgQAngle* CSVCMsg_FixAngle::mutable_angle() { set_has_angle(); if (angle_ == NULL) { auto* p = CreateMaybeMessage<::CMsgQAngle>(GetArenaNoVirtual()); angle_ = p; } // @@protoc_insertion_point(field_mutable:CSVCMsg_FixAngle.angle) return angle_; } inline void CSVCMsg_FixAngle::set_allocated_angle(::CMsgQAngle* angle) { ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); if (message_arena == NULL) { delete angle_; } if (angle) { ::google::protobuf::Arena* submessage_arena = NULL; if (message_arena != submessage_arena) { angle = ::google::protobuf::internal::GetOwnedMessage( message_arena, angle, submessage_arena); } set_has_angle(); } else { clear_has_angle(); } angle_ = angle; // @@protoc_insertion_point(field_set_allocated:CSVCMsg_FixAngle.angle) } // ------------------------------------------------------------------- // CSVCMsg_CrosshairAngle // optional .CMsgQAngle angle = 1; inline bool CSVCMsg_CrosshairAngle::has_angle() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_CrosshairAngle::set_has_angle() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_CrosshairAngle::clear_has_angle() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_CrosshairAngle::clear_angle() { if (angle_ != NULL) angle_->Clear(); clear_has_angle(); } inline const ::CMsgQAngle& CSVCMsg_CrosshairAngle::_internal_angle() const { return *angle_; } inline const ::CMsgQAngle& CSVCMsg_CrosshairAngle::angle() const { const ::CMsgQAngle* p = angle_; // @@protoc_insertion_point(field_get:CSVCMsg_CrosshairAngle.angle) return p != NULL ? *p : *reinterpret_cast<const ::CMsgQAngle*>( &::_CMsgQAngle_default_instance_); } inline ::CMsgQAngle* CSVCMsg_CrosshairAngle::release_angle() { // @@protoc_insertion_point(field_release:CSVCMsg_CrosshairAngle.angle) clear_has_angle(); ::CMsgQAngle* temp = angle_; angle_ = NULL; return temp; } inline ::CMsgQAngle* CSVCMsg_CrosshairAngle::mutable_angle() { set_has_angle(); if (angle_ == NULL) { auto* p = CreateMaybeMessage<::CMsgQAngle>(GetArenaNoVirtual()); angle_ = p; } // @@protoc_insertion_point(field_mutable:CSVCMsg_CrosshairAngle.angle) return angle_; } inline void CSVCMsg_CrosshairAngle::set_allocated_angle(::CMsgQAngle* angle) { ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); if (message_arena == NULL) { delete angle_; } if (angle) { ::google::protobuf::Arena* submessage_arena = NULL; if (message_arena != submessage_arena) { angle = ::google::protobuf::internal::GetOwnedMessage( message_arena, angle, submessage_arena); } set_has_angle(); } else { clear_has_angle(); } angle_ = angle; // @@protoc_insertion_point(field_set_allocated:CSVCMsg_CrosshairAngle.angle) } // ------------------------------------------------------------------- // CSVCMsg_Prefetch // optional int32 sound_index = 1; inline bool CSVCMsg_Prefetch::has_sound_index() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_Prefetch::set_has_sound_index() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_Prefetch::clear_has_sound_index() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_Prefetch::clear_sound_index() { sound_index_ = 0; clear_has_sound_index(); } inline ::google::protobuf::int32 CSVCMsg_Prefetch::sound_index() const { // @@protoc_insertion_point(field_get:CSVCMsg_Prefetch.sound_index) return sound_index_; } inline void CSVCMsg_Prefetch::set_sound_index(::google::protobuf::int32 value) { set_has_sound_index(); sound_index_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_Prefetch.sound_index) } // ------------------------------------------------------------------- // CSVCMsg_BSPDecal // optional .CMsgVector pos = 1; inline bool CSVCMsg_BSPDecal::has_pos() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_BSPDecal::set_has_pos() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_BSPDecal::clear_has_pos() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_BSPDecal::clear_pos() { if (pos_ != NULL) pos_->Clear(); clear_has_pos(); } inline const ::CMsgVector& CSVCMsg_BSPDecal::_internal_pos() const { return *pos_; } inline const ::CMsgVector& CSVCMsg_BSPDecal::pos() const { const ::CMsgVector* p = pos_; // @@protoc_insertion_point(field_get:CSVCMsg_BSPDecal.pos) return p != NULL ? *p : *reinterpret_cast<const ::CMsgVector*>( &::_CMsgVector_default_instance_); } inline ::CMsgVector* CSVCMsg_BSPDecal::release_pos() { // @@protoc_insertion_point(field_release:CSVCMsg_BSPDecal.pos) clear_has_pos(); ::CMsgVector* temp = pos_; pos_ = NULL; return temp; } inline ::CMsgVector* CSVCMsg_BSPDecal::mutable_pos() { set_has_pos(); if (pos_ == NULL) { auto* p = CreateMaybeMessage<::CMsgVector>(GetArenaNoVirtual()); pos_ = p; } // @@protoc_insertion_point(field_mutable:CSVCMsg_BSPDecal.pos) return pos_; } inline void CSVCMsg_BSPDecal::set_allocated_pos(::CMsgVector* pos) { ::google::protobuf::Arena* message_arena = GetArenaNoVirtual(); if (message_arena == NULL) { delete pos_; } if (pos) { ::google::protobuf::Arena* submessage_arena = NULL; if (message_arena != submessage_arena) { pos = ::google::protobuf::internal::GetOwnedMessage( message_arena, pos, submessage_arena); } set_has_pos(); } else { clear_has_pos(); } pos_ = pos; // @@protoc_insertion_point(field_set_allocated:CSVCMsg_BSPDecal.pos) } // optional int32 decal_texture_index = 2; inline bool CSVCMsg_BSPDecal::has_decal_texture_index() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CSVCMsg_BSPDecal::set_has_decal_texture_index() { _has_bits_[0] |= 0x00000002u; } inline void CSVCMsg_BSPDecal::clear_has_decal_texture_index() { _has_bits_[0] &= ~0x00000002u; } inline void CSVCMsg_BSPDecal::clear_decal_texture_index() { decal_texture_index_ = 0; clear_has_decal_texture_index(); } inline ::google::protobuf::int32 CSVCMsg_BSPDecal::decal_texture_index() const { // @@protoc_insertion_point(field_get:CSVCMsg_BSPDecal.decal_texture_index) return decal_texture_index_; } inline void CSVCMsg_BSPDecal::set_decal_texture_index(::google::protobuf::int32 value) { set_has_decal_texture_index(); decal_texture_index_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_BSPDecal.decal_texture_index) } // optional int32 entity_index = 3; inline bool CSVCMsg_BSPDecal::has_entity_index() const { return (_has_bits_[0] & 0x00000004u) != 0; } inline void CSVCMsg_BSPDecal::set_has_entity_index() { _has_bits_[0] |= 0x00000004u; } inline void CSVCMsg_BSPDecal::clear_has_entity_index() { _has_bits_[0] &= ~0x00000004u; } inline void CSVCMsg_BSPDecal::clear_entity_index() { entity_index_ = 0; clear_has_entity_index(); } inline ::google::protobuf::int32 CSVCMsg_BSPDecal::entity_index() const { // @@protoc_insertion_point(field_get:CSVCMsg_BSPDecal.entity_index) return entity_index_; } inline void CSVCMsg_BSPDecal::set_entity_index(::google::protobuf::int32 value) { set_has_entity_index(); entity_index_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_BSPDecal.entity_index) } // optional int32 model_index = 4; inline bool CSVCMsg_BSPDecal::has_model_index() const { return (_has_bits_[0] & 0x00000008u) != 0; } inline void CSVCMsg_BSPDecal::set_has_model_index() { _has_bits_[0] |= 0x00000008u; } inline void CSVCMsg_BSPDecal::clear_has_model_index() { _has_bits_[0] &= ~0x00000008u; } inline void CSVCMsg_BSPDecal::clear_model_index() { model_index_ = 0; clear_has_model_index(); } inline ::google::protobuf::int32 CSVCMsg_BSPDecal::model_index() const { // @@protoc_insertion_point(field_get:CSVCMsg_BSPDecal.model_index) return model_index_; } inline void CSVCMsg_BSPDecal::set_model_index(::google::protobuf::int32 value) { set_has_model_index(); model_index_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_BSPDecal.model_index) } // optional bool low_priority = 5; inline bool CSVCMsg_BSPDecal::has_low_priority() const { return (_has_bits_[0] & 0x00000010u) != 0; } inline void CSVCMsg_BSPDecal::set_has_low_priority() { _has_bits_[0] |= 0x00000010u; } inline void CSVCMsg_BSPDecal::clear_has_low_priority() { _has_bits_[0] &= ~0x00000010u; } inline void CSVCMsg_BSPDecal::clear_low_priority() { low_priority_ = false; clear_has_low_priority(); } inline bool CSVCMsg_BSPDecal::low_priority() const { // @@protoc_insertion_point(field_get:CSVCMsg_BSPDecal.low_priority) return low_priority_; } inline void CSVCMsg_BSPDecal::set_low_priority(bool value) { set_has_low_priority(); low_priority_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_BSPDecal.low_priority) } // ------------------------------------------------------------------- // CSVCMsg_GetCvarValue // optional int32 cookie = 1; inline bool CSVCMsg_GetCvarValue::has_cookie() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CSVCMsg_GetCvarValue::set_has_cookie() { _has_bits_[0] |= 0x00000002u; } inline void CSVCMsg_GetCvarValue::clear_has_cookie() { _has_bits_[0] &= ~0x00000002u; } inline void CSVCMsg_GetCvarValue::clear_cookie() { cookie_ = 0; clear_has_cookie(); } inline ::google::protobuf::int32 CSVCMsg_GetCvarValue::cookie() const { // @@protoc_insertion_point(field_get:CSVCMsg_GetCvarValue.cookie) return cookie_; } inline void CSVCMsg_GetCvarValue::set_cookie(::google::protobuf::int32 value) { set_has_cookie(); cookie_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_GetCvarValue.cookie) } // optional string cvar_name = 2; inline bool CSVCMsg_GetCvarValue::has_cvar_name() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_GetCvarValue::set_has_cvar_name() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_GetCvarValue::clear_has_cvar_name() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_GetCvarValue::clear_cvar_name() { cvar_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_cvar_name(); } inline const ::std::string& CSVCMsg_GetCvarValue::cvar_name() const { // @@protoc_insertion_point(field_get:CSVCMsg_GetCvarValue.cvar_name) return cvar_name_.GetNoArena(); } inline void CSVCMsg_GetCvarValue::set_cvar_name(const ::std::string& value) { set_has_cvar_name(); cvar_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_GetCvarValue.cvar_name) } #if LANG_CXX11 inline void CSVCMsg_GetCvarValue::set_cvar_name(::std::string&& value) { set_has_cvar_name(); cvar_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_GetCvarValue.cvar_name) } #endif inline void CSVCMsg_GetCvarValue::set_cvar_name(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_cvar_name(); cvar_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_GetCvarValue.cvar_name) } inline void CSVCMsg_GetCvarValue::set_cvar_name(const char* value, size_t size) { set_has_cvar_name(); cvar_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_GetCvarValue.cvar_name) } inline ::std::string* CSVCMsg_GetCvarValue::mutable_cvar_name() { set_has_cvar_name(); // @@protoc_insertion_point(field_mutable:CSVCMsg_GetCvarValue.cvar_name) return cvar_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_GetCvarValue::release_cvar_name() { // @@protoc_insertion_point(field_release:CSVCMsg_GetCvarValue.cvar_name) if (!has_cvar_name()) { return NULL; } clear_has_cvar_name(); return cvar_name_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_GetCvarValue::set_allocated_cvar_name(::std::string* cvar_name) { if (cvar_name != NULL) { set_has_cvar_name(); } else { clear_has_cvar_name(); } cvar_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), cvar_name); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_GetCvarValue.cvar_name) } // ------------------------------------------------------------------- // CSVCMsg_Menu // optional int32 dialog_type = 1; inline bool CSVCMsg_Menu::has_dialog_type() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CSVCMsg_Menu::set_has_dialog_type() { _has_bits_[0] |= 0x00000002u; } inline void CSVCMsg_Menu::clear_has_dialog_type() { _has_bits_[0] &= ~0x00000002u; } inline void CSVCMsg_Menu::clear_dialog_type() { dialog_type_ = 0; clear_has_dialog_type(); } inline ::google::protobuf::int32 CSVCMsg_Menu::dialog_type() const { // @@protoc_insertion_point(field_get:CSVCMsg_Menu.dialog_type) return dialog_type_; } inline void CSVCMsg_Menu::set_dialog_type(::google::protobuf::int32 value) { set_has_dialog_type(); dialog_type_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_Menu.dialog_type) } // optional bytes menu_key_values = 2; inline bool CSVCMsg_Menu::has_menu_key_values() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_Menu::set_has_menu_key_values() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_Menu::clear_has_menu_key_values() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_Menu::clear_menu_key_values() { menu_key_values_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_menu_key_values(); } inline const ::std::string& CSVCMsg_Menu::menu_key_values() const { // @@protoc_insertion_point(field_get:CSVCMsg_Menu.menu_key_values) return menu_key_values_.GetNoArena(); } inline void CSVCMsg_Menu::set_menu_key_values(const ::std::string& value) { set_has_menu_key_values(); menu_key_values_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_Menu.menu_key_values) } #if LANG_CXX11 inline void CSVCMsg_Menu::set_menu_key_values(::std::string&& value) { set_has_menu_key_values(); menu_key_values_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_Menu.menu_key_values) } #endif inline void CSVCMsg_Menu::set_menu_key_values(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_menu_key_values(); menu_key_values_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_Menu.menu_key_values) } inline void CSVCMsg_Menu::set_menu_key_values(const void* value, size_t size) { set_has_menu_key_values(); menu_key_values_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_Menu.menu_key_values) } inline ::std::string* CSVCMsg_Menu::mutable_menu_key_values() { set_has_menu_key_values(); // @@protoc_insertion_point(field_mutable:CSVCMsg_Menu.menu_key_values) return menu_key_values_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_Menu::release_menu_key_values() { // @@protoc_insertion_point(field_release:CSVCMsg_Menu.menu_key_values) if (!has_menu_key_values()) { return NULL; } clear_has_menu_key_values(); return menu_key_values_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_Menu::set_allocated_menu_key_values(::std::string* menu_key_values) { if (menu_key_values != NULL) { set_has_menu_key_values(); } else { clear_has_menu_key_values(); } menu_key_values_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), menu_key_values); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_Menu.menu_key_values) } // ------------------------------------------------------------------- // CSVCMsg_UserMessage // optional int32 msg_type = 1; inline bool CSVCMsg_UserMessage::has_msg_type() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CSVCMsg_UserMessage::set_has_msg_type() { _has_bits_[0] |= 0x00000002u; } inline void CSVCMsg_UserMessage::clear_has_msg_type() { _has_bits_[0] &= ~0x00000002u; } inline void CSVCMsg_UserMessage::clear_msg_type() { msg_type_ = 0; clear_has_msg_type(); } inline ::google::protobuf::int32 CSVCMsg_UserMessage::msg_type() const { // @@protoc_insertion_point(field_get:CSVCMsg_UserMessage.msg_type) return msg_type_; } inline void CSVCMsg_UserMessage::set_msg_type(::google::protobuf::int32 value) { set_has_msg_type(); msg_type_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_UserMessage.msg_type) } // optional bytes msg_data = 2; inline bool CSVCMsg_UserMessage::has_msg_data() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_UserMessage::set_has_msg_data() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_UserMessage::clear_has_msg_data() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_UserMessage::clear_msg_data() { msg_data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_msg_data(); } inline const ::std::string& CSVCMsg_UserMessage::msg_data() const { // @@protoc_insertion_point(field_get:CSVCMsg_UserMessage.msg_data) return msg_data_.GetNoArena(); } inline void CSVCMsg_UserMessage::set_msg_data(const ::std::string& value) { set_has_msg_data(); msg_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_UserMessage.msg_data) } #if LANG_CXX11 inline void CSVCMsg_UserMessage::set_msg_data(::std::string&& value) { set_has_msg_data(); msg_data_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_UserMessage.msg_data) } #endif inline void CSVCMsg_UserMessage::set_msg_data(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_msg_data(); msg_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_UserMessage.msg_data) } inline void CSVCMsg_UserMessage::set_msg_data(const void* value, size_t size) { set_has_msg_data(); msg_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_UserMessage.msg_data) } inline ::std::string* CSVCMsg_UserMessage::mutable_msg_data() { set_has_msg_data(); // @@protoc_insertion_point(field_mutable:CSVCMsg_UserMessage.msg_data) return msg_data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_UserMessage::release_msg_data() { // @@protoc_insertion_point(field_release:CSVCMsg_UserMessage.msg_data) if (!has_msg_data()) { return NULL; } clear_has_msg_data(); return msg_data_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_UserMessage::set_allocated_msg_data(::std::string* msg_data) { if (msg_data != NULL) { set_has_msg_data(); } else { clear_has_msg_data(); } msg_data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), msg_data); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_UserMessage.msg_data) } // ------------------------------------------------------------------- // CSVCMsg_GameEvent_key_t // optional int32 type = 1; inline bool CSVCMsg_GameEvent_key_t::has_type() const { return (_has_bits_[0] & 0x00000004u) != 0; } inline void CSVCMsg_GameEvent_key_t::set_has_type() { _has_bits_[0] |= 0x00000004u; } inline void CSVCMsg_GameEvent_key_t::clear_has_type() { _has_bits_[0] &= ~0x00000004u; } inline void CSVCMsg_GameEvent_key_t::clear_type() { type_ = 0; clear_has_type(); } inline ::google::protobuf::int32 CSVCMsg_GameEvent_key_t::type() const { // @@protoc_insertion_point(field_get:CSVCMsg_GameEvent.key_t.type) return type_; } inline void CSVCMsg_GameEvent_key_t::set_type(::google::protobuf::int32 value) { set_has_type(); type_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_GameEvent.key_t.type) } // optional string val_string = 2; inline bool CSVCMsg_GameEvent_key_t::has_val_string() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_GameEvent_key_t::set_has_val_string() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_GameEvent_key_t::clear_has_val_string() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_GameEvent_key_t::clear_val_string() { val_string_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_val_string(); } inline const ::std::string& CSVCMsg_GameEvent_key_t::val_string() const { // @@protoc_insertion_point(field_get:CSVCMsg_GameEvent.key_t.val_string) return val_string_.GetNoArena(); } inline void CSVCMsg_GameEvent_key_t::set_val_string(const ::std::string& value) { set_has_val_string(); val_string_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_GameEvent.key_t.val_string) } #if LANG_CXX11 inline void CSVCMsg_GameEvent_key_t::set_val_string(::std::string&& value) { set_has_val_string(); val_string_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_GameEvent.key_t.val_string) } #endif inline void CSVCMsg_GameEvent_key_t::set_val_string(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_val_string(); val_string_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_GameEvent.key_t.val_string) } inline void CSVCMsg_GameEvent_key_t::set_val_string(const char* value, size_t size) { set_has_val_string(); val_string_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_GameEvent.key_t.val_string) } inline ::std::string* CSVCMsg_GameEvent_key_t::mutable_val_string() { set_has_val_string(); // @@protoc_insertion_point(field_mutable:CSVCMsg_GameEvent.key_t.val_string) return val_string_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_GameEvent_key_t::release_val_string() { // @@protoc_insertion_point(field_release:CSVCMsg_GameEvent.key_t.val_string) if (!has_val_string()) { return NULL; } clear_has_val_string(); return val_string_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_GameEvent_key_t::set_allocated_val_string(::std::string* val_string) { if (val_string != NULL) { set_has_val_string(); } else { clear_has_val_string(); } val_string_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), val_string); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_GameEvent.key_t.val_string) } // optional float val_float = 3; inline bool CSVCMsg_GameEvent_key_t::has_val_float() const { return (_has_bits_[0] & 0x00000008u) != 0; } inline void CSVCMsg_GameEvent_key_t::set_has_val_float() { _has_bits_[0] |= 0x00000008u; } inline void CSVCMsg_GameEvent_key_t::clear_has_val_float() { _has_bits_[0] &= ~0x00000008u; } inline void CSVCMsg_GameEvent_key_t::clear_val_float() { val_float_ = 0; clear_has_val_float(); } inline float CSVCMsg_GameEvent_key_t::val_float() const { // @@protoc_insertion_point(field_get:CSVCMsg_GameEvent.key_t.val_float) return val_float_; } inline void CSVCMsg_GameEvent_key_t::set_val_float(float value) { set_has_val_float(); val_float_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_GameEvent.key_t.val_float) } // optional int32 val_long = 4; inline bool CSVCMsg_GameEvent_key_t::has_val_long() const { return (_has_bits_[0] & 0x00000010u) != 0; } inline void CSVCMsg_GameEvent_key_t::set_has_val_long() { _has_bits_[0] |= 0x00000010u; } inline void CSVCMsg_GameEvent_key_t::clear_has_val_long() { _has_bits_[0] &= ~0x00000010u; } inline void CSVCMsg_GameEvent_key_t::clear_val_long() { val_long_ = 0; clear_has_val_long(); } inline ::google::protobuf::int32 CSVCMsg_GameEvent_key_t::val_long() const { // @@protoc_insertion_point(field_get:CSVCMsg_GameEvent.key_t.val_long) return val_long_; } inline void CSVCMsg_GameEvent_key_t::set_val_long(::google::protobuf::int32 value) { set_has_val_long(); val_long_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_GameEvent.key_t.val_long) } // optional int32 val_short = 5; inline bool CSVCMsg_GameEvent_key_t::has_val_short() const { return (_has_bits_[0] & 0x00000020u) != 0; } inline void CSVCMsg_GameEvent_key_t::set_has_val_short() { _has_bits_[0] |= 0x00000020u; } inline void CSVCMsg_GameEvent_key_t::clear_has_val_short() { _has_bits_[0] &= ~0x00000020u; } inline void CSVCMsg_GameEvent_key_t::clear_val_short() { val_short_ = 0; clear_has_val_short(); } inline ::google::protobuf::int32 CSVCMsg_GameEvent_key_t::val_short() const { // @@protoc_insertion_point(field_get:CSVCMsg_GameEvent.key_t.val_short) return val_short_; } inline void CSVCMsg_GameEvent_key_t::set_val_short(::google::protobuf::int32 value) { set_has_val_short(); val_short_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_GameEvent.key_t.val_short) } // optional int32 val_byte = 6; inline bool CSVCMsg_GameEvent_key_t::has_val_byte() const { return (_has_bits_[0] & 0x00000040u) != 0; } inline void CSVCMsg_GameEvent_key_t::set_has_val_byte() { _has_bits_[0] |= 0x00000040u; } inline void CSVCMsg_GameEvent_key_t::clear_has_val_byte() { _has_bits_[0] &= ~0x00000040u; } inline void CSVCMsg_GameEvent_key_t::clear_val_byte() { val_byte_ = 0; clear_has_val_byte(); } inline ::google::protobuf::int32 CSVCMsg_GameEvent_key_t::val_byte() const { // @@protoc_insertion_point(field_get:CSVCMsg_GameEvent.key_t.val_byte) return val_byte_; } inline void CSVCMsg_GameEvent_key_t::set_val_byte(::google::protobuf::int32 value) { set_has_val_byte(); val_byte_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_GameEvent.key_t.val_byte) } // optional bool val_bool = 7; inline bool CSVCMsg_GameEvent_key_t::has_val_bool() const { return (_has_bits_[0] & 0x00000080u) != 0; } inline void CSVCMsg_GameEvent_key_t::set_has_val_bool() { _has_bits_[0] |= 0x00000080u; } inline void CSVCMsg_GameEvent_key_t::clear_has_val_bool() { _has_bits_[0] &= ~0x00000080u; } inline void CSVCMsg_GameEvent_key_t::clear_val_bool() { val_bool_ = false; clear_has_val_bool(); } inline bool CSVCMsg_GameEvent_key_t::val_bool() const { // @@protoc_insertion_point(field_get:CSVCMsg_GameEvent.key_t.val_bool) return val_bool_; } inline void CSVCMsg_GameEvent_key_t::set_val_bool(bool value) { set_has_val_bool(); val_bool_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_GameEvent.key_t.val_bool) } // optional uint64 val_uint64 = 8; inline bool CSVCMsg_GameEvent_key_t::has_val_uint64() const { return (_has_bits_[0] & 0x00000100u) != 0; } inline void CSVCMsg_GameEvent_key_t::set_has_val_uint64() { _has_bits_[0] |= 0x00000100u; } inline void CSVCMsg_GameEvent_key_t::clear_has_val_uint64() { _has_bits_[0] &= ~0x00000100u; } inline void CSVCMsg_GameEvent_key_t::clear_val_uint64() { val_uint64_ = GOOGLE_ULONGLONG(0); clear_has_val_uint64(); } inline ::google::protobuf::uint64 CSVCMsg_GameEvent_key_t::val_uint64() const { // @@protoc_insertion_point(field_get:CSVCMsg_GameEvent.key_t.val_uint64) return val_uint64_; } inline void CSVCMsg_GameEvent_key_t::set_val_uint64(::google::protobuf::uint64 value) { set_has_val_uint64(); val_uint64_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_GameEvent.key_t.val_uint64) } // optional bytes val_wstring = 9; inline bool CSVCMsg_GameEvent_key_t::has_val_wstring() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CSVCMsg_GameEvent_key_t::set_has_val_wstring() { _has_bits_[0] |= 0x00000002u; } inline void CSVCMsg_GameEvent_key_t::clear_has_val_wstring() { _has_bits_[0] &= ~0x00000002u; } inline void CSVCMsg_GameEvent_key_t::clear_val_wstring() { val_wstring_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_val_wstring(); } inline const ::std::string& CSVCMsg_GameEvent_key_t::val_wstring() const { // @@protoc_insertion_point(field_get:CSVCMsg_GameEvent.key_t.val_wstring) return val_wstring_.GetNoArena(); } inline void CSVCMsg_GameEvent_key_t::set_val_wstring(const ::std::string& value) { set_has_val_wstring(); val_wstring_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_GameEvent.key_t.val_wstring) } #if LANG_CXX11 inline void CSVCMsg_GameEvent_key_t::set_val_wstring(::std::string&& value) { set_has_val_wstring(); val_wstring_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_GameEvent.key_t.val_wstring) } #endif inline void CSVCMsg_GameEvent_key_t::set_val_wstring(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_val_wstring(); val_wstring_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_GameEvent.key_t.val_wstring) } inline void CSVCMsg_GameEvent_key_t::set_val_wstring(const void* value, size_t size) { set_has_val_wstring(); val_wstring_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_GameEvent.key_t.val_wstring) } inline ::std::string* CSVCMsg_GameEvent_key_t::mutable_val_wstring() { set_has_val_wstring(); // @@protoc_insertion_point(field_mutable:CSVCMsg_GameEvent.key_t.val_wstring) return val_wstring_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_GameEvent_key_t::release_val_wstring() { // @@protoc_insertion_point(field_release:CSVCMsg_GameEvent.key_t.val_wstring) if (!has_val_wstring()) { return NULL; } clear_has_val_wstring(); return val_wstring_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_GameEvent_key_t::set_allocated_val_wstring(::std::string* val_wstring) { if (val_wstring != NULL) { set_has_val_wstring(); } else { clear_has_val_wstring(); } val_wstring_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), val_wstring); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_GameEvent.key_t.val_wstring) } // ------------------------------------------------------------------- // CSVCMsg_GameEvent // optional string event_name = 1; inline bool CSVCMsg_GameEvent::has_event_name() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_GameEvent::set_has_event_name() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_GameEvent::clear_has_event_name() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_GameEvent::clear_event_name() { event_name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_event_name(); } inline const ::std::string& CSVCMsg_GameEvent::event_name() const { // @@protoc_insertion_point(field_get:CSVCMsg_GameEvent.event_name) return event_name_.GetNoArena(); } inline void CSVCMsg_GameEvent::set_event_name(const ::std::string& value) { set_has_event_name(); event_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_GameEvent.event_name) } #if LANG_CXX11 inline void CSVCMsg_GameEvent::set_event_name(::std::string&& value) { set_has_event_name(); event_name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_GameEvent.event_name) } #endif inline void CSVCMsg_GameEvent::set_event_name(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_event_name(); event_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_GameEvent.event_name) } inline void CSVCMsg_GameEvent::set_event_name(const char* value, size_t size) { set_has_event_name(); event_name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_GameEvent.event_name) } inline ::std::string* CSVCMsg_GameEvent::mutable_event_name() { set_has_event_name(); // @@protoc_insertion_point(field_mutable:CSVCMsg_GameEvent.event_name) return event_name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_GameEvent::release_event_name() { // @@protoc_insertion_point(field_release:CSVCMsg_GameEvent.event_name) if (!has_event_name()) { return NULL; } clear_has_event_name(); return event_name_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_GameEvent::set_allocated_event_name(::std::string* event_name) { if (event_name != NULL) { set_has_event_name(); } else { clear_has_event_name(); } event_name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), event_name); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_GameEvent.event_name) } // optional int32 eventid = 2; inline bool CSVCMsg_GameEvent::has_eventid() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CSVCMsg_GameEvent::set_has_eventid() { _has_bits_[0] |= 0x00000002u; } inline void CSVCMsg_GameEvent::clear_has_eventid() { _has_bits_[0] &= ~0x00000002u; } inline void CSVCMsg_GameEvent::clear_eventid() { eventid_ = 0; clear_has_eventid(); } inline ::google::protobuf::int32 CSVCMsg_GameEvent::eventid() const { // @@protoc_insertion_point(field_get:CSVCMsg_GameEvent.eventid) return eventid_; } inline void CSVCMsg_GameEvent::set_eventid(::google::protobuf::int32 value) { set_has_eventid(); eventid_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_GameEvent.eventid) } // repeated .CSVCMsg_GameEvent.key_t keys = 3; inline int CSVCMsg_GameEvent::keys_size() const { return keys_.size(); } inline void CSVCMsg_GameEvent::clear_keys() { keys_.Clear(); } inline ::CSVCMsg_GameEvent_key_t* CSVCMsg_GameEvent::mutable_keys(int index) { // @@protoc_insertion_point(field_mutable:CSVCMsg_GameEvent.keys) return keys_.Mutable(index); } inline ::google::protobuf::RepeatedPtrField< ::CSVCMsg_GameEvent_key_t >* CSVCMsg_GameEvent::mutable_keys() { // @@protoc_insertion_point(field_mutable_list:CSVCMsg_GameEvent.keys) return &keys_; } inline const ::CSVCMsg_GameEvent_key_t& CSVCMsg_GameEvent::keys(int index) const { // @@protoc_insertion_point(field_get:CSVCMsg_GameEvent.keys) return keys_.Get(index); } inline ::CSVCMsg_GameEvent_key_t* CSVCMsg_GameEvent::add_keys() { // @@protoc_insertion_point(field_add:CSVCMsg_GameEvent.keys) return keys_.Add(); } inline const ::google::protobuf::RepeatedPtrField< ::CSVCMsg_GameEvent_key_t >& CSVCMsg_GameEvent::keys() const { // @@protoc_insertion_point(field_list:CSVCMsg_GameEvent.keys) return keys_; } // ------------------------------------------------------------------- // CSVCMsg_GameEventList_key_t // optional int32 type = 1; inline bool CSVCMsg_GameEventList_key_t::has_type() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CSVCMsg_GameEventList_key_t::set_has_type() { _has_bits_[0] |= 0x00000002u; } inline void CSVCMsg_GameEventList_key_t::clear_has_type() { _has_bits_[0] &= ~0x00000002u; } inline void CSVCMsg_GameEventList_key_t::clear_type() { type_ = 0; clear_has_type(); } inline ::google::protobuf::int32 CSVCMsg_GameEventList_key_t::type() const { // @@protoc_insertion_point(field_get:CSVCMsg_GameEventList.key_t.type) return type_; } inline void CSVCMsg_GameEventList_key_t::set_type(::google::protobuf::int32 value) { set_has_type(); type_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_GameEventList.key_t.type) } // optional string name = 2; inline bool CSVCMsg_GameEventList_key_t::has_name() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_GameEventList_key_t::set_has_name() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_GameEventList_key_t::clear_has_name() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_GameEventList_key_t::clear_name() { name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_name(); } inline const ::std::string& CSVCMsg_GameEventList_key_t::name() const { // @@protoc_insertion_point(field_get:CSVCMsg_GameEventList.key_t.name) return name_.GetNoArena(); } inline void CSVCMsg_GameEventList_key_t::set_name(const ::std::string& value) { set_has_name(); name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_GameEventList.key_t.name) } #if LANG_CXX11 inline void CSVCMsg_GameEventList_key_t::set_name(::std::string&& value) { set_has_name(); name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_GameEventList.key_t.name) } #endif inline void CSVCMsg_GameEventList_key_t::set_name(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_name(); name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_GameEventList.key_t.name) } inline void CSVCMsg_GameEventList_key_t::set_name(const char* value, size_t size) { set_has_name(); name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_GameEventList.key_t.name) } inline ::std::string* CSVCMsg_GameEventList_key_t::mutable_name() { set_has_name(); // @@protoc_insertion_point(field_mutable:CSVCMsg_GameEventList.key_t.name) return name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_GameEventList_key_t::release_name() { // @@protoc_insertion_point(field_release:CSVCMsg_GameEventList.key_t.name) if (!has_name()) { return NULL; } clear_has_name(); return name_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_GameEventList_key_t::set_allocated_name(::std::string* name) { if (name != NULL) { set_has_name(); } else { clear_has_name(); } name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), name); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_GameEventList.key_t.name) } // ------------------------------------------------------------------- // CSVCMsg_GameEventList_descriptor_t // optional int32 eventid = 1; inline bool CSVCMsg_GameEventList_descriptor_t::has_eventid() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CSVCMsg_GameEventList_descriptor_t::set_has_eventid() { _has_bits_[0] |= 0x00000002u; } inline void CSVCMsg_GameEventList_descriptor_t::clear_has_eventid() { _has_bits_[0] &= ~0x00000002u; } inline void CSVCMsg_GameEventList_descriptor_t::clear_eventid() { eventid_ = 0; clear_has_eventid(); } inline ::google::protobuf::int32 CSVCMsg_GameEventList_descriptor_t::eventid() const { // @@protoc_insertion_point(field_get:CSVCMsg_GameEventList.descriptor_t.eventid) return eventid_; } inline void CSVCMsg_GameEventList_descriptor_t::set_eventid(::google::protobuf::int32 value) { set_has_eventid(); eventid_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_GameEventList.descriptor_t.eventid) } // optional string name = 2; inline bool CSVCMsg_GameEventList_descriptor_t::has_name() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_GameEventList_descriptor_t::set_has_name() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_GameEventList_descriptor_t::clear_has_name() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_GameEventList_descriptor_t::clear_name() { name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_name(); } inline const ::std::string& CSVCMsg_GameEventList_descriptor_t::name() const { // @@protoc_insertion_point(field_get:CSVCMsg_GameEventList.descriptor_t.name) return name_.GetNoArena(); } inline void CSVCMsg_GameEventList_descriptor_t::set_name(const ::std::string& value) { set_has_name(); name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_GameEventList.descriptor_t.name) } #if LANG_CXX11 inline void CSVCMsg_GameEventList_descriptor_t::set_name(::std::string&& value) { set_has_name(); name_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_GameEventList.descriptor_t.name) } #endif inline void CSVCMsg_GameEventList_descriptor_t::set_name(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_name(); name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_GameEventList.descriptor_t.name) } inline void CSVCMsg_GameEventList_descriptor_t::set_name(const char* value, size_t size) { set_has_name(); name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_GameEventList.descriptor_t.name) } inline ::std::string* CSVCMsg_GameEventList_descriptor_t::mutable_name() { set_has_name(); // @@protoc_insertion_point(field_mutable:CSVCMsg_GameEventList.descriptor_t.name) return name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_GameEventList_descriptor_t::release_name() { // @@protoc_insertion_point(field_release:CSVCMsg_GameEventList.descriptor_t.name) if (!has_name()) { return NULL; } clear_has_name(); return name_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_GameEventList_descriptor_t::set_allocated_name(::std::string* name) { if (name != NULL) { set_has_name(); } else { clear_has_name(); } name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), name); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_GameEventList.descriptor_t.name) } // repeated .CSVCMsg_GameEventList.key_t keys = 3; inline int CSVCMsg_GameEventList_descriptor_t::keys_size() const { return keys_.size(); } inline void CSVCMsg_GameEventList_descriptor_t::clear_keys() { keys_.Clear(); } inline ::CSVCMsg_GameEventList_key_t* CSVCMsg_GameEventList_descriptor_t::mutable_keys(int index) { // @@protoc_insertion_point(field_mutable:CSVCMsg_GameEventList.descriptor_t.keys) return keys_.Mutable(index); } inline ::google::protobuf::RepeatedPtrField< ::CSVCMsg_GameEventList_key_t >* CSVCMsg_GameEventList_descriptor_t::mutable_keys() { // @@protoc_insertion_point(field_mutable_list:CSVCMsg_GameEventList.descriptor_t.keys) return &keys_; } inline const ::CSVCMsg_GameEventList_key_t& CSVCMsg_GameEventList_descriptor_t::keys(int index) const { // @@protoc_insertion_point(field_get:CSVCMsg_GameEventList.descriptor_t.keys) return keys_.Get(index); } inline ::CSVCMsg_GameEventList_key_t* CSVCMsg_GameEventList_descriptor_t::add_keys() { // @@protoc_insertion_point(field_add:CSVCMsg_GameEventList.descriptor_t.keys) return keys_.Add(); } inline const ::google::protobuf::RepeatedPtrField< ::CSVCMsg_GameEventList_key_t >& CSVCMsg_GameEventList_descriptor_t::keys() const { // @@protoc_insertion_point(field_list:CSVCMsg_GameEventList.descriptor_t.keys) return keys_; } // ------------------------------------------------------------------- // CSVCMsg_GameEventList // repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1; inline int CSVCMsg_GameEventList::descriptors_size() const { return descriptors_.size(); } inline void CSVCMsg_GameEventList::clear_descriptors() { descriptors_.Clear(); } inline ::CSVCMsg_GameEventList_descriptor_t* CSVCMsg_GameEventList::mutable_descriptors(int index) { // @@protoc_insertion_point(field_mutable:CSVCMsg_GameEventList.descriptors) return descriptors_.Mutable(index); } inline ::google::protobuf::RepeatedPtrField< ::CSVCMsg_GameEventList_descriptor_t >* CSVCMsg_GameEventList::mutable_descriptors() { // @@protoc_insertion_point(field_mutable_list:CSVCMsg_GameEventList.descriptors) return &descriptors_; } inline const ::CSVCMsg_GameEventList_descriptor_t& CSVCMsg_GameEventList::descriptors(int index) const { // @@protoc_insertion_point(field_get:CSVCMsg_GameEventList.descriptors) return descriptors_.Get(index); } inline ::CSVCMsg_GameEventList_descriptor_t* CSVCMsg_GameEventList::add_descriptors() { // @@protoc_insertion_point(field_add:CSVCMsg_GameEventList.descriptors) return descriptors_.Add(); } inline const ::google::protobuf::RepeatedPtrField< ::CSVCMsg_GameEventList_descriptor_t >& CSVCMsg_GameEventList::descriptors() const { // @@protoc_insertion_point(field_list:CSVCMsg_GameEventList.descriptors) return descriptors_; } // ------------------------------------------------------------------- // CSVCMsg_TempEntities // optional bool reliable = 1; inline bool CSVCMsg_TempEntities::has_reliable() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CSVCMsg_TempEntities::set_has_reliable() { _has_bits_[0] |= 0x00000002u; } inline void CSVCMsg_TempEntities::clear_has_reliable() { _has_bits_[0] &= ~0x00000002u; } inline void CSVCMsg_TempEntities::clear_reliable() { reliable_ = false; clear_has_reliable(); } inline bool CSVCMsg_TempEntities::reliable() const { // @@protoc_insertion_point(field_get:CSVCMsg_TempEntities.reliable) return reliable_; } inline void CSVCMsg_TempEntities::set_reliable(bool value) { set_has_reliable(); reliable_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_TempEntities.reliable) } // optional int32 num_entries = 2; inline bool CSVCMsg_TempEntities::has_num_entries() const { return (_has_bits_[0] & 0x00000004u) != 0; } inline void CSVCMsg_TempEntities::set_has_num_entries() { _has_bits_[0] |= 0x00000004u; } inline void CSVCMsg_TempEntities::clear_has_num_entries() { _has_bits_[0] &= ~0x00000004u; } inline void CSVCMsg_TempEntities::clear_num_entries() { num_entries_ = 0; clear_has_num_entries(); } inline ::google::protobuf::int32 CSVCMsg_TempEntities::num_entries() const { // @@protoc_insertion_point(field_get:CSVCMsg_TempEntities.num_entries) return num_entries_; } inline void CSVCMsg_TempEntities::set_num_entries(::google::protobuf::int32 value) { set_has_num_entries(); num_entries_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_TempEntities.num_entries) } // optional bytes entity_data = 3; inline bool CSVCMsg_TempEntities::has_entity_data() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_TempEntities::set_has_entity_data() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_TempEntities::clear_has_entity_data() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_TempEntities::clear_entity_data() { entity_data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_entity_data(); } inline const ::std::string& CSVCMsg_TempEntities::entity_data() const { // @@protoc_insertion_point(field_get:CSVCMsg_TempEntities.entity_data) return entity_data_.GetNoArena(); } inline void CSVCMsg_TempEntities::set_entity_data(const ::std::string& value) { set_has_entity_data(); entity_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_TempEntities.entity_data) } #if LANG_CXX11 inline void CSVCMsg_TempEntities::set_entity_data(::std::string&& value) { set_has_entity_data(); entity_data_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_TempEntities.entity_data) } #endif inline void CSVCMsg_TempEntities::set_entity_data(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_entity_data(); entity_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_TempEntities.entity_data) } inline void CSVCMsg_TempEntities::set_entity_data(const void* value, size_t size) { set_has_entity_data(); entity_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_TempEntities.entity_data) } inline ::std::string* CSVCMsg_TempEntities::mutable_entity_data() { set_has_entity_data(); // @@protoc_insertion_point(field_mutable:CSVCMsg_TempEntities.entity_data) return entity_data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_TempEntities::release_entity_data() { // @@protoc_insertion_point(field_release:CSVCMsg_TempEntities.entity_data) if (!has_entity_data()) { return NULL; } clear_has_entity_data(); return entity_data_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_TempEntities::set_allocated_entity_data(::std::string* entity_data) { if (entity_data != NULL) { set_has_entity_data(); } else { clear_has_entity_data(); } entity_data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), entity_data); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_TempEntities.entity_data) } // ------------------------------------------------------------------- // CSVCMsg_PacketEntities // optional int32 max_entries = 1; inline bool CSVCMsg_PacketEntities::has_max_entries() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CSVCMsg_PacketEntities::set_has_max_entries() { _has_bits_[0] |= 0x00000002u; } inline void CSVCMsg_PacketEntities::clear_has_max_entries() { _has_bits_[0] &= ~0x00000002u; } inline void CSVCMsg_PacketEntities::clear_max_entries() { max_entries_ = 0; clear_has_max_entries(); } inline ::google::protobuf::int32 CSVCMsg_PacketEntities::max_entries() const { // @@protoc_insertion_point(field_get:CSVCMsg_PacketEntities.max_entries) return max_entries_; } inline void CSVCMsg_PacketEntities::set_max_entries(::google::protobuf::int32 value) { set_has_max_entries(); max_entries_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_PacketEntities.max_entries) } // optional int32 updated_entries = 2; inline bool CSVCMsg_PacketEntities::has_updated_entries() const { return (_has_bits_[0] & 0x00000004u) != 0; } inline void CSVCMsg_PacketEntities::set_has_updated_entries() { _has_bits_[0] |= 0x00000004u; } inline void CSVCMsg_PacketEntities::clear_has_updated_entries() { _has_bits_[0] &= ~0x00000004u; } inline void CSVCMsg_PacketEntities::clear_updated_entries() { updated_entries_ = 0; clear_has_updated_entries(); } inline ::google::protobuf::int32 CSVCMsg_PacketEntities::updated_entries() const { // @@protoc_insertion_point(field_get:CSVCMsg_PacketEntities.updated_entries) return updated_entries_; } inline void CSVCMsg_PacketEntities::set_updated_entries(::google::protobuf::int32 value) { set_has_updated_entries(); updated_entries_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_PacketEntities.updated_entries) } // optional bool is_delta = 3; inline bool CSVCMsg_PacketEntities::has_is_delta() const { return (_has_bits_[0] & 0x00000008u) != 0; } inline void CSVCMsg_PacketEntities::set_has_is_delta() { _has_bits_[0] |= 0x00000008u; } inline void CSVCMsg_PacketEntities::clear_has_is_delta() { _has_bits_[0] &= ~0x00000008u; } inline void CSVCMsg_PacketEntities::clear_is_delta() { is_delta_ = false; clear_has_is_delta(); } inline bool CSVCMsg_PacketEntities::is_delta() const { // @@protoc_insertion_point(field_get:CSVCMsg_PacketEntities.is_delta) return is_delta_; } inline void CSVCMsg_PacketEntities::set_is_delta(bool value) { set_has_is_delta(); is_delta_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_PacketEntities.is_delta) } // optional bool update_baseline = 4; inline bool CSVCMsg_PacketEntities::has_update_baseline() const { return (_has_bits_[0] & 0x00000010u) != 0; } inline void CSVCMsg_PacketEntities::set_has_update_baseline() { _has_bits_[0] |= 0x00000010u; } inline void CSVCMsg_PacketEntities::clear_has_update_baseline() { _has_bits_[0] &= ~0x00000010u; } inline void CSVCMsg_PacketEntities::clear_update_baseline() { update_baseline_ = false; clear_has_update_baseline(); } inline bool CSVCMsg_PacketEntities::update_baseline() const { // @@protoc_insertion_point(field_get:CSVCMsg_PacketEntities.update_baseline) return update_baseline_; } inline void CSVCMsg_PacketEntities::set_update_baseline(bool value) { set_has_update_baseline(); update_baseline_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_PacketEntities.update_baseline) } // optional int32 baseline = 5; inline bool CSVCMsg_PacketEntities::has_baseline() const { return (_has_bits_[0] & 0x00000020u) != 0; } inline void CSVCMsg_PacketEntities::set_has_baseline() { _has_bits_[0] |= 0x00000020u; } inline void CSVCMsg_PacketEntities::clear_has_baseline() { _has_bits_[0] &= ~0x00000020u; } inline void CSVCMsg_PacketEntities::clear_baseline() { baseline_ = 0; clear_has_baseline(); } inline ::google::protobuf::int32 CSVCMsg_PacketEntities::baseline() const { // @@protoc_insertion_point(field_get:CSVCMsg_PacketEntities.baseline) return baseline_; } inline void CSVCMsg_PacketEntities::set_baseline(::google::protobuf::int32 value) { set_has_baseline(); baseline_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_PacketEntities.baseline) } // optional int32 delta_from = 6; inline bool CSVCMsg_PacketEntities::has_delta_from() const { return (_has_bits_[0] & 0x00000040u) != 0; } inline void CSVCMsg_PacketEntities::set_has_delta_from() { _has_bits_[0] |= 0x00000040u; } inline void CSVCMsg_PacketEntities::clear_has_delta_from() { _has_bits_[0] &= ~0x00000040u; } inline void CSVCMsg_PacketEntities::clear_delta_from() { delta_from_ = 0; clear_has_delta_from(); } inline ::google::protobuf::int32 CSVCMsg_PacketEntities::delta_from() const { // @@protoc_insertion_point(field_get:CSVCMsg_PacketEntities.delta_from) return delta_from_; } inline void CSVCMsg_PacketEntities::set_delta_from(::google::protobuf::int32 value) { set_has_delta_from(); delta_from_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_PacketEntities.delta_from) } // optional bytes entity_data = 7; inline bool CSVCMsg_PacketEntities::has_entity_data() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_PacketEntities::set_has_entity_data() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_PacketEntities::clear_has_entity_data() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_PacketEntities::clear_entity_data() { entity_data_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); clear_has_entity_data(); } inline const ::std::string& CSVCMsg_PacketEntities::entity_data() const { // @@protoc_insertion_point(field_get:CSVCMsg_PacketEntities.entity_data) return entity_data_.GetNoArena(); } inline void CSVCMsg_PacketEntities::set_entity_data(const ::std::string& value) { set_has_entity_data(); entity_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value); // @@protoc_insertion_point(field_set:CSVCMsg_PacketEntities.entity_data) } #if LANG_CXX11 inline void CSVCMsg_PacketEntities::set_entity_data(::std::string&& value) { set_has_entity_data(); entity_data_.SetNoArena( &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value)); // @@protoc_insertion_point(field_set_rvalue:CSVCMsg_PacketEntities.entity_data) } #endif inline void CSVCMsg_PacketEntities::set_entity_data(const char* value) { GOOGLE_DCHECK(value != NULL); set_has_entity_data(); entity_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value)); // @@protoc_insertion_point(field_set_char:CSVCMsg_PacketEntities.entity_data) } inline void CSVCMsg_PacketEntities::set_entity_data(const void* value, size_t size) { set_has_entity_data(); entity_data_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(reinterpret_cast<const char*>(value), size)); // @@protoc_insertion_point(field_set_pointer:CSVCMsg_PacketEntities.entity_data) } inline ::std::string* CSVCMsg_PacketEntities::mutable_entity_data() { set_has_entity_data(); // @@protoc_insertion_point(field_mutable:CSVCMsg_PacketEntities.entity_data) return entity_data_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline ::std::string* CSVCMsg_PacketEntities::release_entity_data() { // @@protoc_insertion_point(field_release:CSVCMsg_PacketEntities.entity_data) if (!has_entity_data()) { return NULL; } clear_has_entity_data(); return entity_data_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited()); } inline void CSVCMsg_PacketEntities::set_allocated_entity_data(::std::string* entity_data) { if (entity_data != NULL) { set_has_entity_data(); } else { clear_has_entity_data(); } entity_data_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), entity_data); // @@protoc_insertion_point(field_set_allocated:CSVCMsg_PacketEntities.entity_data) } // ------------------------------------------------------------------- // CSVCMsg_Sounds_sounddata_t // optional sint32 origin_x = 1; inline bool CSVCMsg_Sounds_sounddata_t::has_origin_x() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_Sounds_sounddata_t::set_has_origin_x() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_Sounds_sounddata_t::clear_has_origin_x() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_Sounds_sounddata_t::clear_origin_x() { origin_x_ = 0; clear_has_origin_x(); } inline ::google::protobuf::int32 CSVCMsg_Sounds_sounddata_t::origin_x() const { // @@protoc_insertion_point(field_get:CSVCMsg_Sounds.sounddata_t.origin_x) return origin_x_; } inline void CSVCMsg_Sounds_sounddata_t::set_origin_x(::google::protobuf::int32 value) { set_has_origin_x(); origin_x_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_Sounds.sounddata_t.origin_x) } // optional sint32 origin_y = 2; inline bool CSVCMsg_Sounds_sounddata_t::has_origin_y() const { return (_has_bits_[0] & 0x00000002u) != 0; } inline void CSVCMsg_Sounds_sounddata_t::set_has_origin_y() { _has_bits_[0] |= 0x00000002u; } inline void CSVCMsg_Sounds_sounddata_t::clear_has_origin_y() { _has_bits_[0] &= ~0x00000002u; } inline void CSVCMsg_Sounds_sounddata_t::clear_origin_y() { origin_y_ = 0; clear_has_origin_y(); } inline ::google::protobuf::int32 CSVCMsg_Sounds_sounddata_t::origin_y() const { // @@protoc_insertion_point(field_get:CSVCMsg_Sounds.sounddata_t.origin_y) return origin_y_; } inline void CSVCMsg_Sounds_sounddata_t::set_origin_y(::google::protobuf::int32 value) { set_has_origin_y(); origin_y_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_Sounds.sounddata_t.origin_y) } // optional sint32 origin_z = 3; inline bool CSVCMsg_Sounds_sounddata_t::has_origin_z() const { return (_has_bits_[0] & 0x00000004u) != 0; } inline void CSVCMsg_Sounds_sounddata_t::set_has_origin_z() { _has_bits_[0] |= 0x00000004u; } inline void CSVCMsg_Sounds_sounddata_t::clear_has_origin_z() { _has_bits_[0] &= ~0x00000004u; } inline void CSVCMsg_Sounds_sounddata_t::clear_origin_z() { origin_z_ = 0; clear_has_origin_z(); } inline ::google::protobuf::int32 CSVCMsg_Sounds_sounddata_t::origin_z() const { // @@protoc_insertion_point(field_get:CSVCMsg_Sounds.sounddata_t.origin_z) return origin_z_; } inline void CSVCMsg_Sounds_sounddata_t::set_origin_z(::google::protobuf::int32 value) { set_has_origin_z(); origin_z_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_Sounds.sounddata_t.origin_z) } // optional uint32 volume = 4; inline bool CSVCMsg_Sounds_sounddata_t::has_volume() const { return (_has_bits_[0] & 0x00000008u) != 0; } inline void CSVCMsg_Sounds_sounddata_t::set_has_volume() { _has_bits_[0] |= 0x00000008u; } inline void CSVCMsg_Sounds_sounddata_t::clear_has_volume() { _has_bits_[0] &= ~0x00000008u; } inline void CSVCMsg_Sounds_sounddata_t::clear_volume() { volume_ = 0u; clear_has_volume(); } inline ::google::protobuf::uint32 CSVCMsg_Sounds_sounddata_t::volume() const { // @@protoc_insertion_point(field_get:CSVCMsg_Sounds.sounddata_t.volume) return volume_; } inline void CSVCMsg_Sounds_sounddata_t::set_volume(::google::protobuf::uint32 value) { set_has_volume(); volume_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_Sounds.sounddata_t.volume) } // optional float delay_value = 5; inline bool CSVCMsg_Sounds_sounddata_t::has_delay_value() const { return (_has_bits_[0] & 0x00000010u) != 0; } inline void CSVCMsg_Sounds_sounddata_t::set_has_delay_value() { _has_bits_[0] |= 0x00000010u; } inline void CSVCMsg_Sounds_sounddata_t::clear_has_delay_value() { _has_bits_[0] &= ~0x00000010u; } inline void CSVCMsg_Sounds_sounddata_t::clear_delay_value() { delay_value_ = 0; clear_has_delay_value(); } inline float CSVCMsg_Sounds_sounddata_t::delay_value() const { // @@protoc_insertion_point(field_get:CSVCMsg_Sounds.sounddata_t.delay_value) return delay_value_; } inline void CSVCMsg_Sounds_sounddata_t::set_delay_value(float value) { set_has_delay_value(); delay_value_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_Sounds.sounddata_t.delay_value) } // optional int32 sequence_number = 6; inline bool CSVCMsg_Sounds_sounddata_t::has_sequence_number() const { return (_has_bits_[0] & 0x00000020u) != 0; } inline void CSVCMsg_Sounds_sounddata_t::set_has_sequence_number() { _has_bits_[0] |= 0x00000020u; } inline void CSVCMsg_Sounds_sounddata_t::clear_has_sequence_number() { _has_bits_[0] &= ~0x00000020u; } inline void CSVCMsg_Sounds_sounddata_t::clear_sequence_number() { sequence_number_ = 0; clear_has_sequence_number(); } inline ::google::protobuf::int32 CSVCMsg_Sounds_sounddata_t::sequence_number() const { // @@protoc_insertion_point(field_get:CSVCMsg_Sounds.sounddata_t.sequence_number) return sequence_number_; } inline void CSVCMsg_Sounds_sounddata_t::set_sequence_number(::google::protobuf::int32 value) { set_has_sequence_number(); sequence_number_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_Sounds.sounddata_t.sequence_number) } // optional int32 entity_index = 7; inline bool CSVCMsg_Sounds_sounddata_t::has_entity_index() const { return (_has_bits_[0] & 0x00000040u) != 0; } inline void CSVCMsg_Sounds_sounddata_t::set_has_entity_index() { _has_bits_[0] |= 0x00000040u; } inline void CSVCMsg_Sounds_sounddata_t::clear_has_entity_index() { _has_bits_[0] &= ~0x00000040u; } inline void CSVCMsg_Sounds_sounddata_t::clear_entity_index() { entity_index_ = 0; clear_has_entity_index(); } inline ::google::protobuf::int32 CSVCMsg_Sounds_sounddata_t::entity_index() const { // @@protoc_insertion_point(field_get:CSVCMsg_Sounds.sounddata_t.entity_index) return entity_index_; } inline void CSVCMsg_Sounds_sounddata_t::set_entity_index(::google::protobuf::int32 value) { set_has_entity_index(); entity_index_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_Sounds.sounddata_t.entity_index) } // optional int32 channel = 8; inline bool CSVCMsg_Sounds_sounddata_t::has_channel() const { return (_has_bits_[0] & 0x00000080u) != 0; } inline void CSVCMsg_Sounds_sounddata_t::set_has_channel() { _has_bits_[0] |= 0x00000080u; } inline void CSVCMsg_Sounds_sounddata_t::clear_has_channel() { _has_bits_[0] &= ~0x00000080u; } inline void CSVCMsg_Sounds_sounddata_t::clear_channel() { channel_ = 0; clear_has_channel(); } inline ::google::protobuf::int32 CSVCMsg_Sounds_sounddata_t::channel() const { // @@protoc_insertion_point(field_get:CSVCMsg_Sounds.sounddata_t.channel) return channel_; } inline void CSVCMsg_Sounds_sounddata_t::set_channel(::google::protobuf::int32 value) { set_has_channel(); channel_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_Sounds.sounddata_t.channel) } // optional int32 pitch = 9; inline bool CSVCMsg_Sounds_sounddata_t::has_pitch() const { return (_has_bits_[0] & 0x00000100u) != 0; } inline void CSVCMsg_Sounds_sounddata_t::set_has_pitch() { _has_bits_[0] |= 0x00000100u; } inline void CSVCMsg_Sounds_sounddata_t::clear_has_pitch() { _has_bits_[0] &= ~0x00000100u; } inline void CSVCMsg_Sounds_sounddata_t::clear_pitch() { pitch_ = 0; clear_has_pitch(); } inline ::google::protobuf::int32 CSVCMsg_Sounds_sounddata_t::pitch() const { // @@protoc_insertion_point(field_get:CSVCMsg_Sounds.sounddata_t.pitch) return pitch_; } inline void CSVCMsg_Sounds_sounddata_t::set_pitch(::google::protobuf::int32 value) { set_has_pitch(); pitch_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_Sounds.sounddata_t.pitch) } // optional int32 flags = 10; inline bool CSVCMsg_Sounds_sounddata_t::has_flags() const { return (_has_bits_[0] & 0x00000200u) != 0; } inline void CSVCMsg_Sounds_sounddata_t::set_has_flags() { _has_bits_[0] |= 0x00000200u; } inline void CSVCMsg_Sounds_sounddata_t::clear_has_flags() { _has_bits_[0] &= ~0x00000200u; } inline void CSVCMsg_Sounds_sounddata_t::clear_flags() { flags_ = 0; clear_has_flags(); } inline ::google::protobuf::int32 CSVCMsg_Sounds_sounddata_t::flags() const { // @@protoc_insertion_point(field_get:CSVCMsg_Sounds.sounddata_t.flags) return flags_; } inline void CSVCMsg_Sounds_sounddata_t::set_flags(::google::protobuf::int32 value) { set_has_flags(); flags_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_Sounds.sounddata_t.flags) } // optional uint32 sound_num = 11; inline bool CSVCMsg_Sounds_sounddata_t::has_sound_num() const { return (_has_bits_[0] & 0x00000400u) != 0; } inline void CSVCMsg_Sounds_sounddata_t::set_has_sound_num() { _has_bits_[0] |= 0x00000400u; } inline void CSVCMsg_Sounds_sounddata_t::clear_has_sound_num() { _has_bits_[0] &= ~0x00000400u; } inline void CSVCMsg_Sounds_sounddata_t::clear_sound_num() { sound_num_ = 0u; clear_has_sound_num(); } inline ::google::protobuf::uint32 CSVCMsg_Sounds_sounddata_t::sound_num() const { // @@protoc_insertion_point(field_get:CSVCMsg_Sounds.sounddata_t.sound_num) return sound_num_; } inline void CSVCMsg_Sounds_sounddata_t::set_sound_num(::google::protobuf::uint32 value) { set_has_sound_num(); sound_num_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_Sounds.sounddata_t.sound_num) } // optional fixed32 sound_num_handle = 12; inline bool CSVCMsg_Sounds_sounddata_t::has_sound_num_handle() const { return (_has_bits_[0] & 0x00000800u) != 0; } inline void CSVCMsg_Sounds_sounddata_t::set_has_sound_num_handle() { _has_bits_[0] |= 0x00000800u; } inline void CSVCMsg_Sounds_sounddata_t::clear_has_sound_num_handle() { _has_bits_[0] &= ~0x00000800u; } inline void CSVCMsg_Sounds_sounddata_t::clear_sound_num_handle() { sound_num_handle_ = 0u; clear_has_sound_num_handle(); } inline ::google::protobuf::uint32 CSVCMsg_Sounds_sounddata_t::sound_num_handle() const { // @@protoc_insertion_point(field_get:CSVCMsg_Sounds.sounddata_t.sound_num_handle) return sound_num_handle_; } inline void CSVCMsg_Sounds_sounddata_t::set_sound_num_handle(::google::protobuf::uint32 value) { set_has_sound_num_handle(); sound_num_handle_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_Sounds.sounddata_t.sound_num_handle) } // optional int32 speaker_entity = 13; inline bool CSVCMsg_Sounds_sounddata_t::has_speaker_entity() const { return (_has_bits_[0] & 0x00001000u) != 0; } inline void CSVCMsg_Sounds_sounddata_t::set_has_speaker_entity() { _has_bits_[0] |= 0x00001000u; } inline void CSVCMsg_Sounds_sounddata_t::clear_has_speaker_entity() { _has_bits_[0] &= ~0x00001000u; } inline void CSVCMsg_Sounds_sounddata_t::clear_speaker_entity() { speaker_entity_ = 0; clear_has_speaker_entity(); } inline ::google::protobuf::int32 CSVCMsg_Sounds_sounddata_t::speaker_entity() const { // @@protoc_insertion_point(field_get:CSVCMsg_Sounds.sounddata_t.speaker_entity) return speaker_entity_; } inline void CSVCMsg_Sounds_sounddata_t::set_speaker_entity(::google::protobuf::int32 value) { set_has_speaker_entity(); speaker_entity_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_Sounds.sounddata_t.speaker_entity) } // optional int32 random_seed = 14; inline bool CSVCMsg_Sounds_sounddata_t::has_random_seed() const { return (_has_bits_[0] & 0x00002000u) != 0; } inline void CSVCMsg_Sounds_sounddata_t::set_has_random_seed() { _has_bits_[0] |= 0x00002000u; } inline void CSVCMsg_Sounds_sounddata_t::clear_has_random_seed() { _has_bits_[0] &= ~0x00002000u; } inline void CSVCMsg_Sounds_sounddata_t::clear_random_seed() { random_seed_ = 0; clear_has_random_seed(); } inline ::google::protobuf::int32 CSVCMsg_Sounds_sounddata_t::random_seed() const { // @@protoc_insertion_point(field_get:CSVCMsg_Sounds.sounddata_t.random_seed) return random_seed_; } inline void CSVCMsg_Sounds_sounddata_t::set_random_seed(::google::protobuf::int32 value) { set_has_random_seed(); random_seed_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_Sounds.sounddata_t.random_seed) } // optional int32 sound_level = 15; inline bool CSVCMsg_Sounds_sounddata_t::has_sound_level() const { return (_has_bits_[0] & 0x00004000u) != 0; } inline void CSVCMsg_Sounds_sounddata_t::set_has_sound_level() { _has_bits_[0] |= 0x00004000u; } inline void CSVCMsg_Sounds_sounddata_t::clear_has_sound_level() { _has_bits_[0] &= ~0x00004000u; } inline void CSVCMsg_Sounds_sounddata_t::clear_sound_level() { sound_level_ = 0; clear_has_sound_level(); } inline ::google::protobuf::int32 CSVCMsg_Sounds_sounddata_t::sound_level() const { // @@protoc_insertion_point(field_get:CSVCMsg_Sounds.sounddata_t.sound_level) return sound_level_; } inline void CSVCMsg_Sounds_sounddata_t::set_sound_level(::google::protobuf::int32 value) { set_has_sound_level(); sound_level_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_Sounds.sounddata_t.sound_level) } // optional bool is_sentence = 16; inline bool CSVCMsg_Sounds_sounddata_t::has_is_sentence() const { return (_has_bits_[0] & 0x00008000u) != 0; } inline void CSVCMsg_Sounds_sounddata_t::set_has_is_sentence() { _has_bits_[0] |= 0x00008000u; } inline void CSVCMsg_Sounds_sounddata_t::clear_has_is_sentence() { _has_bits_[0] &= ~0x00008000u; } inline void CSVCMsg_Sounds_sounddata_t::clear_is_sentence() { is_sentence_ = false; clear_has_is_sentence(); } inline bool CSVCMsg_Sounds_sounddata_t::is_sentence() const { // @@protoc_insertion_point(field_get:CSVCMsg_Sounds.sounddata_t.is_sentence) return is_sentence_; } inline void CSVCMsg_Sounds_sounddata_t::set_is_sentence(bool value) { set_has_is_sentence(); is_sentence_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_Sounds.sounddata_t.is_sentence) } // optional bool is_ambient = 17; inline bool CSVCMsg_Sounds_sounddata_t::has_is_ambient() const { return (_has_bits_[0] & 0x00010000u) != 0; } inline void CSVCMsg_Sounds_sounddata_t::set_has_is_ambient() { _has_bits_[0] |= 0x00010000u; } inline void CSVCMsg_Sounds_sounddata_t::clear_has_is_ambient() { _has_bits_[0] &= ~0x00010000u; } inline void CSVCMsg_Sounds_sounddata_t::clear_is_ambient() { is_ambient_ = false; clear_has_is_ambient(); } inline bool CSVCMsg_Sounds_sounddata_t::is_ambient() const { // @@protoc_insertion_point(field_get:CSVCMsg_Sounds.sounddata_t.is_ambient) return is_ambient_; } inline void CSVCMsg_Sounds_sounddata_t::set_is_ambient(bool value) { set_has_is_ambient(); is_ambient_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_Sounds.sounddata_t.is_ambient) } // ------------------------------------------------------------------- // CSVCMsg_Sounds // optional bool reliable_sound = 1; inline bool CSVCMsg_Sounds::has_reliable_sound() const { return (_has_bits_[0] & 0x00000001u) != 0; } inline void CSVCMsg_Sounds::set_has_reliable_sound() { _has_bits_[0] |= 0x00000001u; } inline void CSVCMsg_Sounds::clear_has_reliable_sound() { _has_bits_[0] &= ~0x00000001u; } inline void CSVCMsg_Sounds::clear_reliable_sound() { reliable_sound_ = false; clear_has_reliable_sound(); } inline bool CSVCMsg_Sounds::reliable_sound() const { // @@protoc_insertion_point(field_get:CSVCMsg_Sounds.reliable_sound) return reliable_sound_; } inline void CSVCMsg_Sounds::set_reliable_sound(bool value) { set_has_reliable_sound(); reliable_sound_ = value; // @@protoc_insertion_point(field_set:CSVCMsg_Sounds.reliable_sound) } // repeated .CSVCMsg_Sounds.sounddata_t sounds = 2; inline int CSVCMsg_Sounds::sounds_size() const { return sounds_.size(); } inline void CSVCMsg_Sounds::clear_sounds() { sounds_.Clear(); } inline ::CSVCMsg_Sounds_sounddata_t* CSVCMsg_Sounds::mutable_sounds(int index) { // @@protoc_insertion_point(field_mutable:CSVCMsg_Sounds.sounds) return sounds_.Mutable(index); } inline ::google::protobuf::RepeatedPtrField< ::CSVCMsg_Sounds_sounddata_t >* CSVCMsg_Sounds::mutable_sounds() { // @@protoc_insertion_point(field_mutable_list:CSVCMsg_Sounds.sounds) return &sounds_; } inline const ::CSVCMsg_Sounds_sounddata_t& CSVCMsg_Sounds::sounds(int index) const { // @@protoc_insertion_point(field_get:CSVCMsg_Sounds.sounds) return sounds_.Get(index); } inline ::CSVCMsg_Sounds_sounddata_t* CSVCMsg_Sounds::add_sounds() { // @@protoc_insertion_point(field_add:CSVCMsg_Sounds.sounds) return sounds_.Add(); } inline const ::google::protobuf::RepeatedPtrField< ::CSVCMsg_Sounds_sounddata_t >& CSVCMsg_Sounds::sounds() const { // @@protoc_insertion_point(field_list:CSVCMsg_Sounds.sounds) return sounds_; } #ifdef __GNUC__ #pragma GCC diagnostic pop #endif // __GNUC__ // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // ------------------------------------------------------------------- // @@protoc_insertion_point(namespace_scope) namespace google { namespace protobuf { template <> struct is_proto_enum< ::NET_Messages> : ::std::true_type {}; template <> inline const EnumDescriptor* GetEnumDescriptor< ::NET_Messages>() { return ::NET_Messages_descriptor(); } template <> struct is_proto_enum< ::SVC_Messages> : ::std::true_type {}; template <> inline const EnumDescriptor* GetEnumDescriptor< ::SVC_Messages>() { return ::SVC_Messages_descriptor(); } } // namespace protobuf } // namespace google // @@protoc_insertion_point(global_scope) #endif // PROTOBUF_INCLUDED_netmessages_5fpublic_2eproto
[ "jacanosalado@gmail.com" ]
jacanosalado@gmail.com
482b0ddc96611c705939e3bb5793bc48acaa4f26
fb6c9780e08996b4d2aaa686c920285c4d0f6b70
/codeforces/2018-2019 ACM-ICPC Brazil Subregional Programming Contest/I. Switches/solution1.cpp
383b84fe51032e941eb4c727047dda681f1044fc
[]
no_license
Diegores14/CompetitiveProgramming
7c05e241f48a44de0973cfb2f407d77dcbad7b59
466ee2ec9a8c17d58866129c6c12fc176cb9ba0c
refs/heads/master
2021-06-25T08:21:45.341172
2020-10-14T03:39:11
2020-10-14T03:39:11
136,670,647
6
2
null
2018-10-26T23:36:43
2018-06-08T22:15:18
C++
UTF-8
C++
false
false
626
cpp
#include <bits/stdc++.h> using namespace std; int main(){ ios_base::sync_with_stdio(false);cin.tie(NULL); int n, m, aux, aux1; cin >> n >> m; vector<int> v(m, 0), balbs(m,0); map<vector<int>,vector<int>> s; cin >> aux; for(int i=0; i<aux; i++){ cin >> aux1; balbs[aux1-1] = 1; } for(int i=0; i<n; i++){ cin >> aux; for(int j=0; j<aux; j++){ cin >> aux1; v[aux1-1] = (v[aux1-1]? 0 : 1); } s[v].emplace_back(i+1); } for(int i=0; i<m; i++) v[i] ^= balbs[i]; if(s.count(balbs))cout << s[balbs][0] << '\n'; else{ if(s.count(v))cout << s[v][0]+n << '\n'; else cout << "-1\n"; } return 0; }
[ "diegorestrepo68@utp.edu.co" ]
diegorestrepo68@utp.edu.co
bb7d31faae776268fbe3d0aa4ee351e40168f9ca
4c35b7a3db6d3fa8f281dcfb7935a43108430e79
/src/Steamhammer/Source/ParseUtils.h
1348247ef36b79bc02e513f38be454ba7b62903b
[ "MIT" ]
permissive
haopan27/LocutusAIIDE2018
5861ee86372192f6e5e9c2790fb1d21e32554c4d
830115eaf53881dc110e4a2c43536efd6b613671
refs/heads/master
2020-08-14T07:55:23.355684
2019-10-14T19:55:52
2019-10-14T19:55:52
215,127,138
0
0
null
null
null
null
UTF-8
C++
false
false
1,084
h
#pragma once #include "Common.h" #include "rapidjson\document.h" namespace DaQinBot { namespace ParseUtils { void ParseConfigFile(const std::string & filename); void ParseTextCommand(const std::string & commandLine); BWAPI::Race GetRace(const std::string & raceName); bool _ParseStrategy( const rapidjson::Value & item, std::string & stratName, const std::string & mapWeightString, const std::string & objectString, const rapidjson::Value * strategyCombos, std::map<std::string, double> & strategyWeightFactors ); bool _LookUpStrategyCombo( const rapidjson::Value & item, std::string & stratName, const std::string & mapWeightString, const std::string & objectString, const rapidjson::Value * strategyCombos, std::map<std::string, double> & strategyWeightFactors ); bool GetBoolFromString(const std::string & str); int GetIntByRace(const char * name, const rapidjson::Value & item); double GetDoubleByRace(const char * name, const rapidjson::Value & item); bool GetBoolByRace(const char * name, const rapidjson::Value & item); } }
[ "hao.pan@QOMPLX.com" ]
hao.pan@QOMPLX.com
59711b96cfe721e23dc52e2dc7f207e6325329c1
5671c626ee367c9aacb909cd76a06d2fadf941e2
/frameworks/core/components/counter/counter_theme.h
eb7726a04ce0fc66674b9d2fe59c70d606bd21e7
[ "Apache-2.0" ]
permissive
openharmony/ace_ace_engine
fa3f2abad9866bbb329524fb039fa89dd9517592
c9be21d0e8cb9662d5f4f93184fdfdb538c9d4e1
refs/heads/master
2022-07-21T19:32:59.377634
2022-05-06T11:18:20
2022-05-06T11:18:20
400,083,641
2
1
null
null
null
null
UTF-8
C++
false
false
2,411
h
/* * Copyright (c) 2021 Huawei Device Co., Ltd. * 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. */ #ifndef FOUNDATION_ACE_FRAMEWORKS_CORE_COMPONENTS_COUNTER_COUNTER_THEME_H #define FOUNDATION_ACE_FRAMEWORKS_CORE_COMPONENTS_COUNTER_COUNTER_THEME_H #include "core/components/theme/theme.h" #include "core/components/theme/theme_constants.h" #include "core/components/theme/theme_constants_defines.h" #include "core/components/common/properties/color.h" #include "core/components/common/properties/edge.h" #include "core/components/common/properties/radius.h" #include "core/components/common/properties/text_style.h" namespace OHOS::Ace { class CounterTheme : public virtual Theme { DECLARE_ACE_TYPE(CounterTheme, Theme); public: class Builder { public: Builder() = default; ~Builder() = default; RefPtr<CounterTheme> Build(const RefPtr<ThemeConstants>& themeConstants) const { RefPtr<CounterTheme> theme = AceType::MakeRefPtr<CounterTheme>(); if (!themeConstants) { return theme; } // init theme from global data theme->contentTextStyle_.SetFontSize(themeConstants->GetDimension(THEME_COUNTER_TITLE_FONTSIZE)); theme->contentTextStyle_.SetTextColor(themeConstants->GetColor(THEME_COUNTER_FONTCOLOR)); theme->backgroundColor_ = themeConstants->GetColor(THEME_COUNTER_BACKGROUND_COLOR); return theme; } }; ~CounterTheme() override = default; const TextStyle& GetContentTextStyle() const { return contentTextStyle_; } const Color& GetBackGroundColor() const { return backgroundColor_; } private: TextStyle contentTextStyle_; Color backgroundColor_ = Color(0xff191919); }; } // namespace OHOS::Ace #endif // FOUNDATION_ACE_FRAMEWORKS_CORE_COMPONENTS_COUNTER_COUNTER_THEME_H
[ "zhongjianfei@huawei.com" ]
zhongjianfei@huawei.com
59d746bde18f1511d6c027c62ec566cb3e3875a7
579ad7c556f136690f178bd8700668bc65e40a51
/Lecture_3 _Conditionals_and_Loops/Sum_of_Even_Numbers_till_N.cpp
4142f29ffdba0c19e025cb5d3436d5ac701ce9bf
[]
no_license
sahil-adhav/CPP
f133a7181be7f00871a198f35ea4fc04ccd662de
c406f408ebe0e33a3b42ade69543a8660dd98e93
refs/heads/main
2023-08-10T18:33:28.077800
2021-10-05T06:19:30
2021-10-05T06:19:30
379,327,877
1
0
null
null
null
null
UTF-8
C++
false
false
278
cpp
#include <iostream> using namespace std; int main() { int num, N; int sum = 0; cin >> N; num = 1; while (num <= N) { if (num % 2 == 0) sum = sum + num; num ++; } cout << sum; return 0; }
[ "sahiladhav16@gmail.com" ]
sahiladhav16@gmail.com
335c85664ecb49d576ce0c25a8eaae33d1bd9d6d
806a0e71fa40501e2f0edfe62269e8801f187e5c
/C++/BaiTap/Baitaplan3/44/khachhang.cpp
9f74cff9556f1651a30e1d0ae4ae56f23bc998ec
[]
no_license
ducthangbui/Learning
1c991a84a27cf6f112f9d2d643eacfdfb0a1de49
5a7acdf0c05e00e4ba736113a075423bf0b967db
refs/heads/master
2020-03-31T13:46:30.180506
2018-10-14T15:18:06
2018-10-14T15:18:06
152,268,559
0
0
null
null
null
null
UTF-8
C++
false
false
1,073
cpp
#include "khachhang.h" // class's header file #include <iostream> #include <fstream> #include <cstdlib> using namespace std; fstream khach("KH.DAT", ios::in | ios::out | ios::app); void KhachHang::Nhap(){ fflush(stdin); Nguoi::Nhap(); cout<<"Nhap ma khach hang:"; getline(cin,maKhachHang); cout<<"Nhap kieu phong thue:"; getline(cin,kieuphong); cout<<"Mo ta:"; getline(cin,mota); } void KhachHang::GhiFile(){ khach<<hoten<<endl <<email<<endl <<SDT<<endl <<maKhachHang<<endl <<kieuphong<<endl <<mota<<endl; cout<<"Da ghi xong"<<endl; } void KhachHang::Xuat(){ string ten, mail, dt, ma, kieu, ta; if(!khach){ cerr<<"Khong mo dc file!!!"<<endl; exit(1); } cout<<"Danh sach khach hang la:"<<endl; while (getline(khach,ten) && getline(khach,mail) && getline(khach,dt)) { //fflush(stdin); getline(khach,ma); getline(khach,kieu); getline(khach,ta); cout<<"Ho va ten:"<<ten<<endl <<"Email:"<<mail<<endl <<"SDT:"<<dt<<endl <<"Ma Khach Hang:"<<ma<<endl <<"Kieu phong thue:"<<kieu<<endl <<"Mo ta:"<<ta<<endl<<endl; } }
[ "ducthangbui1996@gmail.com" ]
ducthangbui1996@gmail.com
2002ffdb9335fcb1c9682f4b9b3d5bbfc053dd92
861da1c7011f23a68a55d2b6903e3f7df8c28a60
/src/Transform3Df/Transform3Df.h
7e65883c7cd5fb02a777605ccbe0059303aa2e08
[]
no_license
TomCoded/linalg
ed3635b29f16af2ff4cf405d98d6aa2754d46810
900c18cc9f52fc277b6a3ae32e678a522738b5ea
refs/heads/master
2020-03-29T00:03:06.373617
2018-09-18T16:57:36
2018-09-18T16:57:36
149,322,329
0
0
null
null
null
null
UTF-8
C++
false
false
3,182
h
// This may look like C code, but it is really -*- C++ -*- // Transform3Df.h // 3x3 matrix with simple operations // (C) Anonymous1 #ifndef TRANSFORM3DF_H #define TRANSFORM3DF_H #include <iostream> /////////////////////// // class Transform3Df // /////////////////////// // A 3x3 Matrix of type float // // Supports matrix/vector operations. // class Point3Df; class Transform3Df { private: // dimensions of transform static const int rowSize = 3; static const int colSize = 3; public: // data for transform float data[rowSize][colSize]; // Constructors // Default: create identity transform Transform3Df(); // Create transform with given three columns Transform3Df(const Point3Df& col0, const Point3Df& col1, const Point3Df& col2); // Create transform with given values (Row-major order!) Transform3Df(float r0c0, float r0c1, float r0c2, float r1c0, float r1c1, float r1c2, float r2c0, float r2c1, float r2c2); // copy constructor Transform3Df(const Transform3Df& other); // assignment operator Transform3Df& operator=(const Transform3Df& other); // destructor ~Transform3Df(); // access/update row r, column c float& entry(int r,int c); // access row r, column c const float& entry(int r,int c) const; // copy and return row r or column c as a Point3Df Point3Df getRow(int r) const; Point3Df getCol(int c) const; // replace row r or column c with Point3Df void setRow(int r, const Point3Df& row); void setCol(int c, const Point3Df& col); // perform transpose on Transform Transform3Df& transposeSelf(void); // compute transpose of Transform Transform3Df transpose(void) const; // increment/decrement/multiply assignment operators Transform3Df& operator+=(const Transform3Df& other); Transform3Df& operator-=(const Transform3Df& other); // note: this is matrix multiplication--NOT co-ordinate-wise Transform3Df& operator*=(const Transform3Df& other); // increment/decrement/multiply self by scalar Transform3Df& operator+=(const float scalar); Transform3Df& operator-=(const float scalar); Transform3Df& operator*=(const float scalar); // overloaded binary operators // Transform3Df addition, subtraction and multiplication Transform3Df operator+(const Transform3Df&) const; Transform3Df operator-(const Transform3Df&) const; // note: this is matrix multiplication--NOT co-ordinate-wise Transform3Df operator*(const Transform3Df&) const; // operators for addition, subtraction, multiplication by a scalar // always put matrix on LEFT side Transform3Df operator+(const float scalar) const; Transform3Df operator-(const float scalar) const; Transform3Df operator*(const float scalar) const; // Apply matrix to Point3Df p Point3Df operator*(const Point3Df&) const; // read transform from stream std::istream& in(std::istream& is); // append transform to stream std::ostream& out(std::ostream&) const; }; // read transform from stream std::istream& operator>>(std::istream& is, Transform3Df& t); // append transform to stream std::ostream& operator<<(std::ostream& o, const Transform3Df& t); #endif TRANSFORM3DF_H
[ "tomtinkerer@gmail.com" ]
tomtinkerer@gmail.com
8c61b78447d00822ab92f9ec4c1d0a910b44ec31
df8f81e40671d111956b9af9da079d646321b439
/include/serial_port.h
67826fb44f0d38f666d36ac3867b263ac9230766
[]
no_license
asdlei99/trx_subnetwork
3d7bf6d7ce951124339c46ce81bbdb174c1d759a
a8ae9e34a51ff2c794ab1bde7f38832b7e1c70fd
refs/heads/master
2020-12-11T02:45:24.628142
2018-06-01T19:41:23
2018-06-01T19:41:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
272
h
#ifndef SERIAL_PORT_H #define SERIAL_PORT_H #include <SerialStream.h> #include <string> using namespace LibSerial; bool SetupSerialPort(SerialStream &serial_stream, const int baud_rate, std::string &input_serial_dev); #endif
[ "artyom.baloyan@yahoo.com" ]
artyom.baloyan@yahoo.com
6b8ece70d234ec8d0c0a6e8ba577dcabc200181e
b09f567815d297a169126d5235cfb1d8945e1faa
/Codeforces/AAmusingJoke141.cpp
453ca03c1fcf3fcb9bec67296a75cb0cbc803679
[]
no_license
alsuga/Maratones
c913c858e317047a3c4b2944627c814fc2084bd2
7271bda427a6ebddf0599d4f6b333d0ab81ecb71
refs/heads/master
2021-01-17T15:31:11.039085
2016-09-05T20:39:00
2016-09-05T20:39:00
8,393,509
0
0
null
null
null
null
UTF-8
C++
false
false
635
cpp
#include <bits/stdc++.h> using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); string a,b,c; int size = 0; cin>>a>>b>>c; map<char, int> mapa,mapa2; size = a.size() + b.size(); if(size != c.size()) { cout<<"NO"<<endl; return 0; } for(int i = 0; i < a.size(); i++) mapa[a[i]]++; for(int i = 0; i < b.size(); i++) mapa[b[i]]++; for(int i = 0; i < c.size(); i++) mapa2[c[i]]++; for(map<char, int>::iterator it = mapa2.begin(); it != mapa2.end(); ++it){ if(mapa[it->first] != it->second){ cout<<"NO"<<endl; return 0; } } cout<<"YES"<<endl; return 0; }
[ "alejandro@sirius.utp.edu.co" ]
alejandro@sirius.utp.edu.co
71a791550b3aa7fe7a31c08a8006d832dc742ecb
5885fd1418db54cc4b699c809cd44e625f7e23fc
/codeforces/1528/f-lca.cpp
dab51cc5c62afd4209e18e6b02e37b0308a0e678
[]
no_license
ehnryx/acm
c5f294a2e287a6d7003c61ee134696b2a11e9f3b
c706120236a3e55ba2aea10fb5c3daa5c1055118
refs/heads/master
2023-08-31T13:19:49.707328
2023-08-29T01:49:32
2023-08-29T01:49:32
131,941,068
2
0
null
null
null
null
UTF-8
C++
false
false
1,564
cpp
#include <bits/stdc++.h> using namespace std; #define _USE_MATH_DEFINES #include "../../../lca/math/number_theoretic_transform.h" #include "../../../lca/number/mod_int.h" //#define FILENAME sadcactus #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace __gnu_pbds; template <typename T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>; typedef long long ll; typedef long double ld; typedef complex<ld> pt; constexpr char nl = '\n'; constexpr ll INF = 0x3f3f3f3f; constexpr ll INFLL = 0x3f3f3f3f3f3f3f3f; constexpr ll MOD = 998244353; constexpr ld EPS = 1e-9L; random_device _rd; mt19937 rng(_rd()); using Int = mod_int<MOD>; // double-check correctness // read limits carefully // characterize valid solutions int main() { cin.tie(0)->sync_with_stdio(0); cout << fixed << setprecision(10); #if defined(ONLINE_JUDGE) && defined(FILENAME) freopen(FILENAME ".in", "r", stdin); freopen(FILENAME ".out", "w", stdout); #endif int n, k; cin >> n >> k; vector<Int> a(k+1), b(k+1); vector<Int> f(k+1), invf(k+1); f[0] = 1; for(int i=0; i<=k; i++) { invf[i] = f[i].inverse(); int s = i % 2 ? -1 : 1; a[i] = invf[i] * s; b[i] = Int(i).pow(k) * invf[i]; if(i+1 <= k) { f[i+1] = f[i] * (i + 1); } } vector<Int> stirling = convolve<MOD>(a, b); Int ans = 0; Int prod = 1; for(int i=1; i<=k; i++) { prod = prod * (n - i + 1); ans += stirling[i] * prod * Int(n+1).pow(n-i); } cout << ans << nl; return 0; }
[ "henryxia9999@gmail.com" ]
henryxia9999@gmail.com
aaa604e9189fd6fd516226d7aa8e9fed4c6637ad
bc68a49b6d920876cf9595c72a9f5d202d69af9c
/StrelaSimpleLCD/StrelaSimpleLCD.ino
726924e48434de1599bb8b8d331a36c39a2f74da
[]
no_license
camasa96/arduino_projects
4e304fb9d240d90f20eb0efe88fd81c6e6b3b595
3d673b9979b22ecd863047bc3429b8a6c0bce3b5
refs/heads/master
2021-01-01T20:43:14.726564
2015-04-23T12:27:00
2015-04-23T12:27:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,023
ino
#include <Wire.h> #include <Strela.h> #include <LiquidCrystal_I2C.h> // ======================================================================= // addr, en,rw,rs,d4,d5,d6,d7,bl,blpol LiquidCrystal_I2C lcd(LC_ADDR, LCEN, LCRW, LCRS, LC4, LC5, LC6, LC7); void setup() { Wire.begin(); lcd.begin(8, 2); uPinMode(P10, INPUT); uPinMode(P9, INPUT); } void loop() { lcd.clear(); lcd.home(); lcd.print(uDigitalRead(P10)); lcd.print(uDigitalRead(P9)); lcd.setCursor(0, 1); lcd.print(uDigitalRead(S1)); lcd.print(uDigitalRead(S2)); lcd.print(uDigitalRead(S3)); lcd.print(uDigitalRead(S4)); delay(30); if (uDigitalRead(S1)) uDigitalWrite(L1, LOW); else uDigitalWrite(L1, HIGH); /* for (int i=L4; i<=L1; ++i) { lcd.clear(); lcd.home(); lcd.print(i); uDigitalWrite(i, HIGH); delay(1000); uDigitalWrite(i, LOW); delay(1000); } */ } void printStringLCD() { lcd.clear(); lcd.home(); lcd.setCursor(0, 1); }
[ "acosinwork@yandex.ru" ]
acosinwork@yandex.ru
76bb75bc9d9927861af1ebcbc0947c2e85ee63ca
9f0e62953b0125f7c69ef197d79724b652cf61d7
/3391/185.cpp
12ebf921dd5e3378d1f764b7b0a325769031432f
[]
no_license
NewReStarter/Training
d3ece985cfc0dba7921d01e2b9766b09c5da37db
2534c4010096b477bec72025a970f2504301d5ae
refs/heads/master
2020-06-27T22:38:04.005695
2019-09-04T11:04:21
2019-09-04T11:04:21
97,077,237
0
0
null
null
null
null
UTF-8
C++
false
false
642
cpp
#include <iostream> #include <cstdio> #include <cstring> #include <string> #include <cmath> #include <algorithm> #include <vector> #include <set> #include <iterator> #include <sstream> #include <ctype.h> #include <utility> using namespace std; int main() { set<string> dict; set<string> :: iterator itr; string str; stringstream ss; while(getline(cin,str)) { for(int i = 0; i < str.size(); ++i) { if(isalpha(str[i])) str[i]=tolower(str[i]); else str[i] = ' '; } ss.clear(); ss<<str; while(ss>>str) dict.insert(str); } for(itr = dict.begin(); itr!=dict.end(); itr++) cout<< *itr << endl; return 0; }
[ "ziliugao@gmail.com" ]
ziliugao@gmail.com
cabe5a44cbded67fe2a4ed5222e85f5cd20967e1
d7b84a31cafb72a3cb71b3a3cc724a68119ba18e
/Tyr/0.68/phi
ba92f065bd76696bd30f02c81eb3db8bf7b9f10d
[]
no_license
benroque/Ragnorak
6cc7c68db801f9281a4ac241da754bce88ef6caf
a1bfc2430cccb207192792acebdd1530f1388a4c
refs/heads/master
2021-01-14T08:13:18.774988
2017-02-20T08:32:53
2017-02-20T08:32:53
82,008,402
0
0
null
null
null
null
UTF-8
C++
false
false
1,716,740
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 4.1 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class surfaceScalarField; location "0.68"; object phi; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [1 0 -1 0 0 0 0]; internalField nonuniform List<scalar> 150500 ( 0.0168001 5.98711e-11 -3.91809e-12 0.0168001 2.5759e-10 -1.02914e-11 0.0168001 9.91101e-10 -1.44326e-11 0.0168 2.55468e-09 -2.13429e-11 0.0168 6.72592e-09 -2.20373e-11 0.0168 1.52336e-08 -2.80563e-11 0.0167998 3.78813e-08 -2.85091e-11 0.0167996 8.26367e-08 -3.46224e-11 0.0167989 2.11349e-07 -3.63931e-11 0.0167978 4.39645e-07 -4.78341e-11 0.0167935 1.27721e-06 -5.58192e-11 0.016788 2.5359e-06 -1.05255e-10 0.0167667 8.30621e-06 -1.18821e-10 0.0167196 2.1971e-05 -4.59056e-10 0.0166023 7.18001e-05 -5.50536e-10 0.016127 0.000280516 -2.92181e-09 0.0142417 0.00142818 -3.41061e-09 0.0126523 0.001523 5.54421e-10 0.0109833 0.00160662 2.26864e-10 0.00919031 0.00167218 9.26236e-11 0.0070559 0.00169074 7.13934e-11 0.00528768 0.00165433 1.20136e-10 0.00392337 0.00175415 -1.72881e-10 0.00213407 0.00195034 -5.11061e-10 0.00193995 -8.2362e-10 0.0168001 1.21932e-10 -3.94295e-12 0.0168001 5.30054e-10 -1.02488e-11 0.0168001 2.06367e-09 -1.44746e-11 0.0168 5.30139e-09 -2.13761e-11 0.0168 1.41321e-08 -2.21027e-11 0.0168 3.21451e-08 -2.81468e-11 0.0167998 7.98857e-08 -2.85802e-11 0.0167996 1.74792e-07 -3.46591e-11 0.0167989 4.42315e-07 -3.62511e-11 0.0167977 9.10819e-07 -4.66184e-11 0.0167932 2.70589e-06 -5.64619e-11 0.0167882 4.98164e-06 -1.00234e-10 0.0167652 1.78237e-05 -1.25111e-10 0.0167205 4.35684e-05 -4.46572e-10 0.0165942 0.000149057 -5.78196e-10 0.0161253 0.000560868 -2.81341e-09 0.0142192 0.00287332 -3.4047e-09 0.0126166 0.00306564 5.49502e-10 0.0109726 0.00318892 2.01281e-10 0.00921355 0.00331154 7.30434e-11 0.00709146 0.00337073 6.67835e-11 0.00531218 0.00331997 1.11249e-10 0.00393247 0.00352079 -1.68836e-10 0.00215722 0.00389061 -5.68461e-10 0.00390159 -7.90725e-10 0.0168001 1.77436e-10 -3.98933e-12 0.0168001 7.8933e-10 -1.01681e-11 0.0168001 3.10371e-09 -1.45635e-11 0.0168 7.92986e-09 -2.14539e-11 0.0168 2.16439e-08 -2.22744e-11 0.0168 4.93614e-08 -2.84126e-11 0.0167998 1.26458e-07 -2.89341e-11 0.0167996 2.81537e-07 -3.52221e-11 0.0167987 7.10022e-07 -3.66446e-11 0.0167974 1.5621e-06 -4.58665e-11 0.0167931 4.10615e-06 -5.87961e-11 0.0167871 8.51182e-06 -8.11545e-11 0.0167643 2.59675e-05 -1.58153e-10 0.0167188 6.66078e-05 -3.66851e-10 0.0165868 0.000224528 -6.66645e-10 0.0161573 0.000815372 -2.6661e-09 0.0142683 0.00429008 -3.44173e-09 0.0126612 0.00462484 5.37958e-10 0.0110419 0.00474854 1.5882e-10 0.00931537 0.0049253 3.93477e-11 0.00721641 0.00503309 6.06529e-11 0.00543583 0.00498486 8.86002e-11 0.00401259 0.00531657 -1.98277e-10 0.00221699 0.00586494 -5.73545e-10 0.00592422 -7.30551e-10 0.0168001 2.45204e-10 -4.048e-12 0.0168001 1.11333e-09 -1.0072e-11 0.0168001 4.18845e-09 -1.47085e-11 0.0168 1.05074e-08 -2.16081e-11 0.0168 2.79412e-08 -2.25716e-11 0.0168 6.29965e-08 -2.88627e-11 0.0167998 1.61931e-07 -2.96069e-11 0.0167995 3.62079e-07 -3.64528e-11 0.0167985 9.3e-07 -3.8519e-11 0.0167972 2.13296e-06 -5.22494e-11 0.0167926 5.29114e-06 -5.82562e-11 0.0167826 1.27644e-05 -1.16869e-10 0.016763 3.17669e-05 -1.03722e-10 0.0166994 9.17203e-05 -4.87068e-10 0.0165885 0.000296159 -3.69777e-10 0.0162184 0.00101968 -2.83291e-09 0.0143543 0.0056596 -3.27269e-09 0.0127673 0.00618413 5.53119e-10 0.0112092 0.00625802 1.37898e-10 0.00951387 0.00653069 -6.41481e-11 0.0074486 0.00666866 9.44564e-11 0.00566064 0.00664879 9.32686e-11 0.00417148 0.00713179 -2.03982e-10 0.00232941 0.00791819 -5.1418e-10 0.00806863 -7.00341e-10 0.0168001 4.49536e-10 -4.12861e-12 0.0168001 1.76593e-09 -1.00005e-11 0.0168001 5.73236e-09 -1.49798e-11 0.0168 1.34609e-08 -2.19414e-11 0.0168 3.42243e-08 -2.301e-11 0.0168 7.59207e-08 -2.94653e-11 0.0167998 1.92322e-07 -3.01082e-11 0.0167996 4.28489e-07 -3.68509e-11 0.0167987 1.09507e-06 -3.85626e-11 0.0167975 2.45192e-06 -5.14127e-11 0.0167925 6.42243e-06 -5.69779e-11 0.0167859 1.41404e-05 -1.27791e-10 0.0167598 4.21994e-05 -7.73316e-11 0.0167248 0.000102695 -4.92385e-10 0.0165789 0.000379513 -4.34152e-10 0.0162603 0.00120818 -2.11179e-09 0.0144337 0.00693926 -3.41676e-09 0.0129047 0.00771985 5.46877e-10 0.0114234 0.00770969 6.35675e-11 0.00983849 0.00805171 -5.16761e-11 0.00780438 0.0082814 6.44257e-11 0.00599046 0.00832069 1.05979e-10 0.00441457 0.00896823 -1.76803e-10 0.00251591 0.0100652 -4.7436e-10 0.0104238 -6.88054e-10 0.0168001 1.19681e-09 -4.23744e-12 0.0168001 3.18802e-09 -9.99592e-12 0.0168001 7.66059e-09 -1.5362e-11 0.0168 1.57636e-08 -2.24474e-11 0.0168 3.85866e-08 -2.35682e-11 0.0168 8.39191e-08 -3.02368e-11 0.0167998 2.17241e-07 -3.09306e-11 0.0167996 4.87729e-07 -3.79675e-11 0.0167986 1.26483e-06 -3.96689e-11 0.0167974 2.88919e-06 -5.10779e-11 0.0167928 7.41324e-06 -5.82645e-11 0.0167857 1.67533e-05 -9.76042e-11 0.0167615 4.93102e-05 -1.46708e-10 0.0167245 0.000119083 -3.27945e-10 0.0165848 0.00043811 -6.13175e-10 0.0162815 0.00139876 -1.94422e-09 0.014592 0.00803862 -3.52135e-09 0.0131413 0.00924055 7.79409e-10 0.0117633 0.00908829 1.12843e-10 0.0102788 0.00947943 -8.57251e-11 0.00830805 0.00984831 1.00454e-11 0.00645258 0.0100139 1.43253e-10 0.00477136 0.01085 -1.52888e-10 0.00277665 0.0123447 -3.58944e-10 0.0130583 -5.87431e-10 0.0168001 1.79432e-09 -5.64371e-12 0.0168001 3.99115e-09 -1.13461e-11 0.0168 8.36957e-09 -1.69658e-11 0.0168 1.62278e-08 -2.40132e-11 0.0168 3.90047e-08 -2.50006e-11 0.0168 8.36179e-08 -3.15451e-11 0.0167998 2.19936e-07 -3.16413e-11 0.0167997 4.91455e-07 -3.8363e-11 0.0167987 1.31917e-06 -3.96009e-11 0.0167978 2.98481e-06 -5.10298e-11 0.0167929 8.06629e-06 -5.76193e-11 0.0167863 1.80989e-05 -9.73155e-11 0.0167613 5.53762e-05 -1.46813e-10 0.0167238 0.000133769 -3.00575e-10 0.0165756 0.000502133 -6.47815e-10 0.0163496 0.00155601 -1.86144e-09 0.0149222 0.00882766 -3.64859e-09 0.0135368 0.010754 1.07944e-09 0.0122585 0.010407 2.43611e-10 0.01088 0.0108252 -9.92107e-11 0.00902345 0.0113871 -2.4035e-11 0.00708191 0.0117187 9.35408e-11 0.00527111 0.0127625 -8.48829e-11 0.00318318 0.0147628 -3.08838e-10 0.0161246 -5.51834e-10 0.0168001 1.86826e-09 -8.82728e-12 0.0168001 4.2066e-09 -1.3928e-11 0.0168001 8.59548e-09 -1.8935e-11 0.0168 1.64834e-08 -2.52436e-11 0.0168 3.82315e-08 -2.61121e-11 0.0168 8.10633e-08 -3.21349e-11 0.0167999 2.07818e-07 -3.19766e-11 0.0167998 4.55667e-07 -3.83097e-11 0.0167991 1.24963e-06 -3.96288e-11 0.0167985 2.64391e-06 -5.09113e-11 0.0167937 8.23131e-06 -5.69453e-11 0.0167906 1.65787e-05 -9.92113e-11 0.0167669 5.76851e-05 -1.48198e-10 0.0167432 0.000131643 -3.20159e-10 0.0166182 0.000557166 -6.06289e-10 0.0165188 0.00163632 -1.8673e-09 0.0155352 0.0090358 -3.90236e-09 0.0142061 0.0122663 1.29563e-09 0.0129911 0.0117583 4.41287e-10 0.0116806 0.0121436 -4.52008e-11 0.00992681 0.0128633 -2.74718e-12 0.00789038 0.0134276 3.80265e-11 0.00599748 0.0146659 -1.8052e-10 0.00380253 0.0172985 -2.65668e-10 0.019832 -5.01422e-10 0.0168001 1.9747e-09 -1.21885e-11 0.0168001 4.28895e-09 -1.66685e-11 0.0168001 9.06883e-09 -2.10866e-11 0.0168 1.75595e-08 -2.65967e-11 0.0168 4.1723e-08 -2.73722e-11 0.0168 8.85533e-08 -3.23284e-11 0.0167999 2.26068e-07 -3.26616e-11 0.0167998 4.88648e-07 -3.75074e-11 0.0167993 1.30197e-06 -3.88603e-11 0.0167984 2.67911e-06 -4.71627e-11 0.0167945 8.29527e-06 -5.51857e-11 0.0167935 1.49699e-05 -8.55452e-11 0.0167711 5.92973e-05 -1.42875e-10 0.0167642 0.000112246 -2.93931e-10 0.0166885 0.000552389 -6.42009e-10 0.0167842 0.00153211 -1.89661e-09 0.0165765 0.00829402 -4.61787e-09 0.0152614 0.0138358 1.21704e-09 0.0139489 0.0133149 5.38811e-10 0.012699 0.0134223 7.38238e-11 0.0110177 0.0142875 6.57265e-11 0.00897467 0.0150519 -2.8527e-11 0.00705878 0.0165389 -1.34972e-10 0.00486659 0.019845 -1.81201e-10 0.0246642 -4.03245e-10 0.0168001 -1.5815e-11 1.41066e-09 0.0168001 -1.95427e-11 3.06304e-09 0.0168001 -2.33064e-11 1.02356e-08 0.0168001 -2.78938e-11 1.07584e-08 0.0168 -2.85851e-11 5.00144e-08 0.0168 -3.27823e-11 5.20971e-08 0.0167999 -3.32373e-11 2.77394e-07 0.0168 -3.77308e-11 2.81784e-07 0.0167991 -3.95167e-11 1.63322e-06 0.0167997 -5.03093e-11 1.46298e-06 0.0167942 -5.30786e-11 1.06514e-05 0.0168005 -1.13189e-10 5.97848e-06 0.016756 -8.36066e-11 8.13491e-05 0.0168089 -3.40206e-10 3.91855e-05 0.0166337 -5.34314e-10 0.000624897 0.0170037 -1.85354e-09 0.00103242 0.0183341 -5.17504e-09 0.00602201 0.0168188 6.90171e-10 0.0156219 0.0149963 3.11986e-10 0.0152938 0.0138289 3.22471e-10 0.0146172 0.012252 1.32088e-10 0.015632 0.0102594 2.33237e-11 0.0165941 0.00848276 -1.57302e-10 0.0182275 0.00657749 -7.69548e-11 0.0220976 -3.24729e-10 0.0312108 0.0168001 4.80399e-11 -3.43676e-16 0.0168001 2.67566e-10 -2.0426e-15 0.0168001 9.6416e-10 -3.71327e-15 0.0168 2.48741e-09 -7.56701e-15 0.0168 6.57227e-09 -9.68193e-15 0.0168 1.49438e-08 -1.49453e-14 0.0167998 3.74144e-08 -1.37049e-14 0.0167996 8.19274e-08 -1.56169e-14 0.0167989 2.10411e-07 7.78238e-15 0.0167978 4.38812e-07 4.01373e-14 0.0167935 1.27508e-06 1.46767e-13 0.016788 2.53768e-06 4.26255e-13 0.0167667 8.29815e-06 5.73642e-13 0.0167195 2.19816e-05 2.29584e-12 0.0166023 7.17809e-05 1.78981e-12 0.0161269 0.000280613 -1.13058e-12 0.0142416 0.00142826 -3.66758e-11 0.0126522 0.00152294 -6.65646e-11 0.0109833 0.00160654 -5.19925e-11 0.00919043 0.00167214 -3.4769e-11 0.00705606 0.00169074 -1.51588e-11 0.0052878 0.00165434 -4.14503e-11 0.0039235 0.00175407 2.5556e-11 0.00213428 0.00195023 -1.00702e-10 0.00194014 -9.50721e-11 0.0168001 9.98197e-11 -3.43169e-16 0.0168001 5.44714e-10 -2.04197e-15 0.0168001 1.994e-09 -3.70803e-15 0.0168 5.12881e-09 -7.54858e-15 0.0168 1.3749e-08 -9.66773e-15 0.0168 3.14481e-08 -1.49027e-14 0.0167998 7.87649e-08 -1.40456e-14 0.0167996 1.73089e-07 -1.67198e-14 0.0167989 4.40044e-07 4.47915e-15 0.0167977 9.07843e-07 2.67091e-14 0.0167932 2.70166e-06 1.42336e-13 0.0167882 4.98109e-06 3.58318e-13 0.0167652 1.78093e-05 5.76078e-13 0.0167205 4.35902e-05 1.95854e-12 0.0165943 0.000149051 1.73902e-12 0.0161253 0.000561016 -3.69449e-12 0.0142192 0.00287348 -3.93811e-11 0.0126165 0.0030655 -6.61198e-11 0.0109726 0.00318881 -5.19114e-11 0.00921369 0.00331148 -3.65677e-11 0.0070916 0.00337076 -1.93648e-11 0.00531224 0.00332003 -3.90597e-11 0.00393245 0.00352077 3.14471e-11 0.00215706 0.00389061 -6.71575e-11 0.00390158 -8.55374e-11 0.0168001 1.45228e-10 -3.44702e-16 0.0168001 7.85079e-10 -2.05324e-15 0.0168001 2.93373e-09 -3.72068e-15 0.0168 7.52595e-09 -7.5641e-15 0.0168 2.08439e-08 -9.58963e-15 0.0168 4.80207e-08 -1.46071e-14 0.0167998 1.2447e-07 -1.3448e-14 0.0167996 2.7877e-07 -1.53964e-14 0.0167988 7.06422e-07 3.39447e-15 0.0167974 1.55624e-06 1.89261e-14 0.0167931 4.10268e-06 1.33713e-13 0.0167871 8.48928e-06 1.89187e-13 0.0167643 2.59919e-05 6.74116e-13 0.0167189 6.65402e-05 9.39926e-13 0.0165869 0.000224669 1.54572e-12 0.0161574 0.000815504 -8.17078e-12 0.0142684 0.00429029 -4.63428e-11 0.0126613 0.00462459 -6.63541e-11 0.011042 0.00474843 -5.39147e-11 0.00931556 0.00492524 -4.85892e-11 0.00721657 0.00503318 -2.96695e-11 0.00543596 0.00498493 -3.44492e-11 0.00401269 0.0053166 3.19118e-11 0.00221689 0.00586506 -2.71589e-11 0.00592405 -8.37564e-11 0.0168001 1.84406e-10 -3.50556e-16 0.0168001 1.00037e-09 -2.08394e-15 0.0168001 3.7083e-09 -3.79898e-15 0.0168 9.51176e-09 -7.74047e-15 0.0168 2.62741e-08 -9.8382e-15 0.0168 6.05314e-08 -1.50017e-14 0.0167998 1.58764e-07 -1.32545e-14 0.0167995 3.58341e-07 -1.37073e-14 0.0167986 9.25983e-07 7.31678e-15 0.0167973 2.12956e-06 4.92394e-14 0.0167927 5.28702e-06 9.47598e-14 0.0167826 1.2764e-05 3.70488e-13 0.016763 3.17566e-05 8.23346e-14 0.0166994 9.17519e-05 1.57462e-12 0.0165886 0.000296067 -3.46877e-12 0.0162182 0.00102011 -9.20621e-12 0.0143546 0.00565952 -5.93408e-11 0.0127675 0.00618383 -6.89953e-11 0.0112094 0.00625797 -6.04638e-11 0.00951409 0.00653071 -6.90513e-11 0.00744883 0.00666883 -5.02856e-11 0.00566077 0.00664895 -3.27403e-11 0.00417158 0.00713176 2.78941e-11 0.00232945 0.00791814 -2.63059e-11 0.00806843 -6.51811e-11 0.0168001 2.18185e-10 -3.59807e-16 0.0168001 1.17064e-09 -2.12794e-15 0.0168001 4.37503e-09 -3.92822e-15 0.0168 1.12191e-08 -8.01588e-15 0.0168 3.11316e-08 -1.05105e-14 0.0168 7.19513e-08 -1.63687e-14 0.0167998 1.87724e-07 -1.65867e-14 0.0167996 4.23457e-07 -2.08283e-14 0.0167987 1.08994e-06 -5.77426e-15 0.0167975 2.44736e-06 2.01702e-14 0.0167925 6.41843e-06 5.48309e-14 0.0167858 1.41457e-05 3.82153e-13 0.0167599 4.21838e-05 -3.51243e-13 0.0167247 0.000102748 1.39979e-12 0.0165788 0.000379482 -5.57271e-12 0.0162606 0.00120827 -1.61185e-11 0.0144342 0.00693915 -7.23321e-11 0.0129051 0.00771951 -7.08715e-11 0.0114236 0.00770968 -7.23098e-11 0.00983867 0.00805188 -8.26887e-11 0.00780459 0.00828158 -6.96595e-11 0.0059907 0.00832078 -2.0456e-11 0.00441468 0.00896834 4.77739e-11 0.00251592 0.0100651 8.68507e-12 0.0104235 -3.16801e-11 0.0168001 2.32809e-10 -3.74257e-16 0.0168001 1.24056e-09 -2.21065e-15 0.0168001 4.71156e-09 -4.11783e-15 0.0168 1.20412e-08 -8.39902e-15 0.0168 3.42544e-08 -1.11456e-14 0.0168 7.92044e-08 -1.74654e-14 0.0167998 2.12464e-07 -1.87196e-14 0.0167996 4.82945e-07 -2.49222e-14 0.0167987 1.26026e-06 -1.76885e-14 0.0167974 2.88488e-06 -1.50249e-14 0.0167928 7.40979e-06 7.07848e-15 0.0167857 1.67507e-05 1.64803e-14 0.0167615 4.93097e-05 -2.10378e-13 0.0167246 0.000119091 -4.88748e-13 0.0165849 0.000438118 -5.5468e-12 0.0162816 0.00139882 -2.16723e-11 0.0145923 0.00803863 -8.64837e-11 0.0131414 0.00924012 -7.33626e-11 0.0117634 0.00908831 -6.36029e-11 0.0102788 0.00947963 -8.9467e-11 0.00830818 0.0098485 -8.52602e-11 0.00645275 0.0100138 4.0665e-12 0.0047715 0.0108501 6.21362e-11 0.00277664 0.0123444 1.14652e-11 0.013058 -2.16304e-11 0.0168001 2.30772e-10 -4.28911e-16 0.0168001 1.24142e-09 -2.57921e-15 0.0168001 4.70097e-09 -4.68182e-15 0.0168001 1.19995e-08 -9.63576e-15 0.0168 3.42513e-08 -1.26032e-14 0.0168 7.87596e-08 -2.04614e-14 0.0167998 2.14935e-07 -2.11072e-14 0.0167997 4.8675e-07 -2.96817e-14 0.0167987 1.31468e-06 -2.48333e-14 0.0167978 2.98115e-06 -2.85361e-14 0.0167929 8.06374e-06 -3.52768e-14 0.0167863 1.80979e-05 -9.56547e-14 0.0167613 5.53786e-05 -4.36952e-13 0.0167239 0.000133772 -1.99679e-12 0.0165756 0.000502181 -4.32345e-12 0.0163497 0.00155608 -2.81222e-11 0.0149221 0.00882809 -1.02898e-10 0.0135367 0.0107534 -7.37742e-11 0.0122584 0.010407 -5.98922e-11 0.0108799 0.0108254 -8.54286e-11 0.00902347 0.0113872 -9.26044e-11 0.00708195 0.0117186 1.52576e-11 0.00527108 0.0127622 3.08789e-11 0.00318315 0.0147622 1.14313e-11 0.0161241 1.5127e-11 0.0168001 2.30599e-10 -5.3594e-16 0.0168001 1.26371e-09 -3.24172e-15 0.0168001 4.68908e-09 -5.57462e-15 0.0168001 1.20359e-08 -1.13044e-14 0.0168 3.3286e-08 -1.46588e-14 0.0168 7.6101e-08 -2.37244e-14 0.0167999 2.02646e-07 -2.54312e-14 0.0167998 4.50972e-07 -3.66301e-14 0.0167991 1.2453e-06 -3.28185e-14 0.0167985 2.64109e-06 -3.81425e-14 0.0167937 8.2289e-06 -5.8351e-14 0.0167906 1.65829e-05 -5.19839e-14 0.0167669 5.76903e-05 -5.7731e-13 0.0167432 0.000131674 -1.39314e-12 0.0166182 0.000557204 -8.23032e-12 0.0165188 0.00163648 -3.02809e-11 0.0155349 0.00903673 -1.21782e-10 0.0142056 0.0122656 -7.17361e-11 0.0129906 0.0117581 -5.27577e-11 0.0116804 0.0121436 -8.46095e-11 0.00992684 0.0128633 -9.86462e-11 0.00789038 0.0134276 7.2676e-12 0.00599751 0.0146656 1.0007e-10 0.00380248 0.0172978 -1.3521e-11 0.0198315 2.67407e-11 0.0168001 2.81543e-10 -6.53063e-16 0.0168001 1.36686e-09 -3.95916e-15 0.0168001 5.23244e-09 -6.55455e-15 0.0168001 1.31264e-08 -1.30639e-14 0.0168 3.68991e-08 -1.69514e-14 0.0168 8.34233e-08 -2.65412e-14 0.0167999 2.2091e-07 -3.13608e-14 0.0167998 4.83434e-07 -4.53871e-14 0.0167993 1.29693e-06 -4.88819e-14 0.0167984 2.6735e-06 -7.5806e-14 0.0167945 8.29215e-06 -7.42397e-14 0.0167935 1.49594e-05 -1.40024e-13 0.0167711 5.93179e-05 -5.34163e-13 0.0167643 0.000112256 -8.79546e-13 0.0166884 0.000552519 -9.24712e-12 0.0167841 0.00153245 -3.20008e-11 0.0165758 0.00829569 -1.37731e-10 0.0152604 0.0138349 -7.21309e-11 0.0139482 0.0133142 -4.6687e-11 0.0126985 0.0134221 -5.87164e-11 0.0110178 0.0142874 -8.30952e-11 0.00897471 0.0150518 2.23188e-11 0.00705878 0.0165386 7.75237e-11 0.00486653 0.0198443 -4.224e-11 0.0246638 1.69487e-11 0.0168001 -7.71196e-16 4.39342e-10 0.0168001 -4.73518e-15 6.42648e-10 0.0168001 -7.57464e-15 6.43766e-09 0.0168001 -1.49037e-14 7.37213e-09 0.0168 -1.89669e-14 4.48128e-08 0.0168 -2.9277e-14 4.80577e-08 0.0167999 -3.40621e-14 2.71877e-07 0.0168 -4.8338e-14 2.77934e-07 0.0167991 -5.3439e-14 1.62849e-06 0.0167997 -7.96596e-14 1.46125e-06 0.0167942 -9.57324e-14 1.06483e-05 0.0168005 -1.32937e-13 5.98715e-06 0.016756 -6.87685e-13 8.13487e-05 0.0168089 -7.31951e-13 3.92333e-05 0.0166338 -9.0245e-12 0.000625001 0.0170037 -3.17096e-11 0.00103308 0.0183331 -1.44148e-10 0.00602498 0.0168179 -7.9985e-11 0.0156208 0.014996 -4.88715e-11 0.0152927 0.0138288 -4.1032e-11 0.0146169 0.0122522 -5.89109e-11 0.0156318 0.0102597 -9.42609e-12 0.0165938 0.00848284 5.77686e-11 0.0182272 0.00657748 -1.91425e-10 0.0220969 7.07076e-11 0.0312106 0.0168001 4.80397e-11 -1.26985e-16 0.0168001 2.67563e-10 -3.13755e-16 0.0168001 9.64152e-10 -1.81906e-15 0.0168 2.48739e-09 -3.84675e-15 0.0168 6.57223e-09 -9.40606e-15 0.0168 1.49437e-08 -1.81654e-14 0.0167998 3.74143e-08 -4.2595e-14 0.0167996 8.19272e-08 -8.29607e-14 0.0167989 2.10411e-07 -2.05909e-13 0.0167978 4.38809e-07 -4.18801e-13 0.0167935 1.27508e-06 -9.7083e-13 0.016788 2.53765e-06 -2.26882e-12 0.0167667 8.29815e-06 -3.9905e-12 0.0167195 2.19813e-05 -1.38424e-11 0.0166023 7.17806e-05 -1.96608e-11 0.0161269 0.00028061 -6.48732e-11 0.0142416 0.00142825 -1.7719e-11 0.0126522 0.00152293 6.5353e-11 0.0109833 0.00160653 4.08654e-11 0.0091905 0.00167211 3.8936e-11 0.00705615 0.00169071 5.85913e-11 0.00528793 0.00165428 6.21097e-11 0.00392356 0.00175405 1.50668e-11 0.00213432 0.00195034 -1.20451e-10 0.00194017 -2.21257e-10 0.0168001 9.98181e-11 -1.42717e-16 0.0168001 5.44702e-10 -3.5833e-16 0.0168001 1.99397e-09 -1.96291e-15 0.0168 5.12873e-09 -4.16649e-15 0.0168 1.37489e-08 -9.81327e-15 0.0168 3.14479e-08 -1.89133e-14 0.0167998 7.87647e-08 -4.21496e-14 0.0167996 1.7309e-07 -7.96809e-14 0.0167989 4.40044e-07 -1.98236e-13 0.0167977 9.07845e-07 -3.68538e-13 0.0167932 2.70165e-06 -1.01383e-12 0.0167882 4.98106e-06 -2.0855e-12 0.0167652 1.78092e-05 -4.40886e-12 0.0167205 4.35897e-05 -1.35916e-11 0.0165943 0.00014905 -2.18433e-11 0.0161253 0.000561012 -6.30284e-11 0.0142192 0.00287346 -2.00139e-11 0.0126165 0.00306548 6.5206e-11 0.0109727 0.00318878 3.79054e-11 0.00921376 0.00331143 3.65142e-11 0.0070917 0.00337069 5.77761e-11 0.00531238 0.00331991 6.43162e-11 0.00393257 0.00352065 1.93925e-11 0.00215731 0.00389062 -1.17175e-10 0.00390185 -2.10107e-10 0.0168001 1.45225e-10 -1.5127e-16 0.0168001 7.85057e-10 -3.74022e-16 0.0168001 2.93365e-09 -2.17527e-15 0.0168 7.52575e-09 -4.65591e-15 0.0168 2.08435e-08 -1.13293e-14 0.0168 4.80198e-08 -2.24158e-14 0.0167998 1.24469e-07 -4.8867e-14 0.0167996 2.78768e-07 -9.21508e-14 0.0167988 7.0642e-07 -2.10492e-13 0.0167974 1.55625e-06 -3.41104e-13 0.0167931 4.10265e-06 -1.14106e-12 0.0167871 8.48936e-06 -1.33023e-12 0.0167643 2.59915e-05 -6.13844e-12 0.0167189 6.65403e-05 -1.07606e-11 0.0165869 0.000224666 -2.7531e-11 0.0161574 0.0008155 -6.30991e-11 0.0142684 0.00429026 -2.70005e-11 0.0126613 0.00462456 6.55318e-11 0.011042 0.00474838 3.41822e-11 0.0093156 0.00492518 3.32179e-11 0.00721663 0.00503309 5.71084e-11 0.00543601 0.0049848 6.7906e-11 0.00401269 0.00531642 1.17278e-11 0.00221704 0.00586497 -1.00952e-10 0.0059245 -1.7876e-10 0.0168001 1.844e-10 -1.24503e-16 0.0168001 1.00033e-09 -3.12412e-16 0.0168001 3.70817e-09 -2.06308e-15 0.0168 9.51143e-09 -4.42315e-15 0.0168 2.62734e-08 -1.18161e-14 0.0168 6.05299e-08 -2.38492e-14 0.0167998 1.58761e-07 -5.82387e-14 0.0167995 3.58335e-07 -1.17765e-13 0.0167986 9.25971e-07 -2.73711e-13 0.0167973 2.12954e-06 -5.95389e-13 0.0167927 5.28698e-06 -1.16408e-12 0.0167826 1.27639e-05 -2.83382e-12 0.016763 3.17564e-05 -4.41233e-12 0.0166994 9.17513e-05 -1.6745e-11 0.0165886 0.000296066 -1.53343e-11 0.0162182 0.0010201 -8.36616e-11 0.0143546 0.00565949 -3.06085e-11 0.0127675 0.00618379 7.05983e-11 0.0112094 0.00625792 3.34262e-11 0.00951408 0.00653063 3.21353e-11 0.00744882 0.00666873 6.19506e-11 0.00566073 0.00664883 7.84924e-11 0.00417152 0.00713154 2.65843e-11 0.00232948 0.00791816 -8.85461e-11 0.00806895 -1.56753e-10 0.0168001 2.18174e-10 -1.07555e-16 0.0168001 1.17055e-09 -2.9952e-16 0.0168001 4.37475e-09 -1.95701e-15 0.0168 1.12184e-08 -4.24099e-15 0.0168 3.11303e-08 -1.09791e-14 0.0168 7.19489e-08 -2.19098e-14 0.0167998 1.8772e-07 -5.23131e-14 0.0167996 4.23451e-07 -1.03561e-13 0.0167987 1.08993e-06 -2.56656e-13 0.0167975 2.44734e-06 -5.505e-13 0.0167925 6.41838e-06 -1.20063e-12 0.0167858 1.41455e-05 -3.35008e-12 0.0167599 4.21837e-05 -3.97167e-12 0.0167247 0.000102747 -1.8649e-11 0.0165788 0.000379481 -2.04525e-11 0.0162606 0.00120826 -7.40328e-11 0.0144341 0.00693913 -4.99309e-11 0.0129051 0.00771948 7.27556e-11 0.0114236 0.00770964 2.6778e-11 0.00983863 0.0080518 3.69534e-11 0.00780452 0.0082815 7.25139e-11 0.0059906 0.00832068 7.70638e-11 0.00441462 0.00896813 1.63678e-11 0.00251589 0.0100652 -7.03389e-11 0.0104241 -1.47016e-10 0.0168001 2.32773e-10 -6.33454e-17 0.0168001 1.24028e-09 -2.49201e-16 0.0168001 4.71095e-09 -1.80608e-15 0.0168 1.20399e-08 -4.02516e-15 0.0168 3.42523e-08 -1.11168e-14 0.0168 7.92006e-08 -2.25336e-14 0.0167998 2.12459e-07 -5.36289e-14 0.0167996 4.82937e-07 -1.06637e-13 0.0167987 1.26025e-06 -2.53307e-13 0.0167974 2.88486e-06 -5.00742e-13 0.0167928 7.40975e-06 -1.24588e-12 0.0167857 1.67506e-05 -2.31378e-12 0.0167615 4.93095e-05 -6.42998e-12 0.0167246 0.00011909 -1.32455e-11 0.0165849 0.000438117 -3.42143e-11 0.0162816 0.00139882 -8.18359e-11 0.0145922 0.00803861 -6.61306e-11 0.0131414 0.00924009 9.10079e-11 0.0117634 0.00908827 2.85248e-11 0.0102788 0.00947958 3.7427e-11 0.0083081 0.00984843 7.33812e-11 0.00645266 0.0100138 6.64616e-11 0.00477143 0.01085 4.09898e-11 0.00277659 0.0123446 -9.45819e-11 0.0130584 -1.62235e-10 0.0168001 2.30718e-10 1.04338e-17 0.0168001 1.24103e-09 -1.57718e-16 0.0168001 4.70016e-09 -9.86919e-16 0.0168001 1.19979e-08 -2.31639e-15 0.0168 3.42487e-08 -1.01595e-14 0.0168 7.87554e-08 -2.07613e-14 0.0167998 2.14929e-07 -5.39109e-14 0.0167997 4.8674e-07 -1.09683e-13 0.0167988 1.31466e-06 -2.71513e-13 0.0167978 2.98112e-06 -5.6795e-13 0.0167929 8.06369e-06 -1.32577e-12 0.0167863 1.80978e-05 -2.69421e-12 0.0167613 5.53784e-05 -7.1061e-12 0.0167239 0.000133772 -1.36644e-11 0.0165756 0.000502179 -3.99502e-11 0.0163497 0.00155608 -9.18667e-11 0.0149221 0.00882807 -1.21453e-10 0.0135367 0.0107534 1.16166e-10 0.0122583 0.0104069 3.79487e-11 0.0108798 0.0108253 3.14626e-11 0.00902337 0.0113872 5.72472e-11 0.00708185 0.0117185 7.27373e-11 0.00527105 0.0127623 4.73964e-11 0.00318309 0.0147625 -7.65267e-11 0.0161245 -1.55857e-10 0.0168001 2.30541e-10 8.42264e-17 0.0168001 1.2633e-09 -1.06445e-16 0.0168001 4.6882e-09 -6.27708e-16 0.0168001 1.20342e-08 -1.56469e-15 0.0168 3.32832e-08 -6.78523e-15 0.0168 7.60968e-08 -1.46793e-14 0.0167999 2.02639e-07 -4.3142e-14 0.0167998 4.5096e-07 -8.777e-14 0.0167991 1.24528e-06 -2.48067e-13 0.0167985 2.64105e-06 -5.08573e-13 0.0167937 8.22884e-06 -1.36204e-12 0.0167906 1.65827e-05 -2.74508e-12 0.0167669 5.76902e-05 -7.97296e-12 0.0167432 0.000131674 -1.58388e-11 0.0166182 0.000557203 -4.73626e-11 0.0165188 0.00163649 -1.05902e-10 0.0155348 0.00903673 -1.85452e-10 0.0142055 0.0122656 1.36985e-10 0.0129906 0.011758 5.29841e-11 0.0116803 0.0121436 3.14316e-11 0.00992672 0.0128633 4.81374e-11 0.00789029 0.0134275 8.65458e-11 0.00599742 0.0146657 6.22595e-11 0.00380243 0.0172981 -5.31205e-11 0.0198318 -1.55685e-10 0.0168001 2.81465e-10 1.17849e-16 0.0168001 1.36645e-09 -2.5939e-16 0.0168001 5.23156e-09 -6.1158e-16 0.0168001 1.31247e-08 -1.68986e-15 0.0168 3.68965e-08 -3.29206e-15 0.0168 8.34193e-08 -8.3827e-15 0.0167999 2.20905e-07 -2.65393e-14 0.0167998 4.83426e-07 -4.81015e-14 0.0167993 1.29692e-06 -1.61879e-13 0.0167984 2.67348e-06 -2.23759e-13 0.0167945 8.29212e-06 -1.2592e-12 0.0167935 1.49593e-05 -1.5536e-12 0.0167711 5.93178e-05 -8.0447e-12 0.0167643 0.000112256 -1.40829e-11 0.0166884 0.000552519 -5.81851e-11 0.0167841 0.00153245 -1.25894e-10 0.0165758 0.0082957 -2.99936e-10 0.0152604 0.0138349 1.36512e-10 0.0139482 0.0133142 6.12961e-11 0.0126985 0.0134221 3.46395e-11 0.0110177 0.0142874 4.01867e-11 0.00897465 0.0150517 8.89558e-11 0.00705877 0.0165387 8.41931e-11 0.00486655 0.0198447 -3.17258e-11 0.024664 -1.43467e-10 0.0168001 1.44682e-16 4.39148e-10 0.0168001 -2.19234e-16 6.42548e-10 0.0168001 -4.77212e-16 6.43641e-09 0.0168001 -1.53426e-15 7.37131e-09 0.0168 -3.38055e-15 4.48098e-08 0.0168001 -8.47115e-15 4.8056e-08 0.0167999 -2.80737e-14 2.71872e-07 0.0168 -5.2256e-14 2.77934e-07 0.0167991 -1.40518e-13 1.62849e-06 0.0167997 -1.46466e-13 1.46126e-06 0.0167942 -1.12874e-12 1.06483e-05 0.0168005 3.96942e-14 5.98719e-06 0.016756 -1.03473e-11 8.13488e-05 0.0168089 -8.16639e-12 3.92332e-05 0.0166338 -6.67146e-11 0.000625002 0.0170037 -1.41346e-10 0.00103308 0.018333 -4.14725e-10 0.00602503 0.0168178 1.0032e-10 0.0156208 0.0149959 4.6086e-11 0.0152926 0.0138287 5.19217e-11 0.0146169 0.012252 4.20479e-11 0.0156318 0.0102595 7.11364e-11 0.0165937 0.00848283 9.10358e-11 0.0182272 0.00657749 -5.89884e-13 0.0220975 -1.12761e-10 0.0312108 0.0168001 4.80376e-11 2.7549e-16 0.0168001 2.67556e-10 8.93494e-16 0.0168001 9.64121e-10 2.15344e-15 0.0168 2.48731e-09 4.24967e-15 0.0168 6.57202e-09 9.5266e-15 0.0168 1.49432e-08 1.85879e-14 0.0167998 3.74132e-08 4.17871e-14 0.0167996 8.19251e-08 8.15236e-14 0.0167989 2.10407e-07 1.81318e-13 0.0167978 4.38812e-07 3.50617e-13 0.0167935 1.27503e-06 7.08099e-13 0.016788 2.53772e-06 1.49378e-12 0.0167667 8.29783e-06 1.50643e-12 0.0167195 2.19814e-05 3.8972e-12 0.0166023 7.17791e-05 -6.75497e-12 0.016127 0.000280609 -6.38203e-11 0.0142417 0.00142824 -2.91318e-10 0.0126523 0.00152292 -1.86775e-10 0.0109834 0.00160652 -1.35247e-10 0.00919056 0.00167212 -1.32131e-10 0.00705618 0.0016907 -1.75837e-10 0.00528795 0.00165427 -1.78653e-10 0.00392362 0.001754 -1.4502e-10 0.00213443 0.00195029 1.42588e-11 0.00194026 9.61446e-11 0.0168001 9.98174e-11 2.84116e-16 0.0168001 5.44707e-10 9.21674e-16 0.0168001 1.99395e-09 2.23384e-15 0.0168 5.12868e-09 4.43409e-15 0.0168 1.37485e-08 9.85723e-15 0.0168 3.14468e-08 1.92441e-14 0.0167998 7.87615e-08 4.23411e-14 0.0167996 1.73081e-07 8.15009e-14 0.0167989 4.40028e-07 1.82077e-13 0.0167977 9.0781e-07 3.37766e-13 0.0167932 2.70157e-06 7.46749e-13 0.0167882 4.98108e-06 1.49246e-12 0.0167652 1.78086e-05 1.71478e-12 0.0167205 4.35901e-05 4.18081e-12 0.0165943 0.000149048 -4.75084e-12 0.0161253 0.000561008 -6.29578e-11 0.0142192 0.00287343 -2.88023e-10 0.0126166 0.00306546 -1.87233e-10 0.0109727 0.00318877 -1.30969e-10 0.00921382 0.00331143 -1.29022e-10 0.00709173 0.00337069 -1.71637e-10 0.00531239 0.00331989 -1.7856e-10 0.00393259 0.00352059 -1.30175e-10 0.00215733 0.00389061 1.68125e-12 0.00390196 7.11042e-11 0.0168001 1.45229e-10 2.92681e-16 0.0168001 7.85077e-10 9.41562e-16 0.0168001 2.93372e-09 2.371e-15 0.0168 7.52592e-09 4.75482e-15 0.0168 2.08438e-08 1.09856e-14 0.0168 4.80202e-08 2.18981e-14 0.0167998 1.24468e-07 4.81844e-14 0.0167996 2.78763e-07 9.31665e-14 0.0167988 7.06402e-07 1.99058e-13 0.0167974 1.55616e-06 3.50236e-13 0.0167931 4.10263e-06 8.50176e-13 0.0167871 8.48864e-06 1.20236e-12 0.0167643 2.59922e-05 2.73666e-12 0.016719 6.65373e-05 3.15466e-12 0.0165869 0.000224669 -1.39041e-12 0.0161574 0.000815491 -5.9145e-11 0.0142684 0.00429022 -2.8003e-10 0.0126613 0.00462453 -1.88543e-10 0.0110421 0.00474838 -1.2682e-10 0.00931566 0.00492518 -1.25315e-10 0.00721666 0.00503309 -1.64278e-10 0.005436 0.00498479 -1.76559e-10 0.00401268 0.00531635 -9.29904e-11 0.00221704 0.00586496 -1.40579e-11 0.00592459 3.50831e-11 0.0168001 1.84402e-10 2.8308e-16 0.0168001 1.00034e-09 9.06896e-16 0.0168001 3.70822e-09 2.32577e-15 0.0168 9.51155e-09 4.64614e-15 0.0168 2.62738e-08 1.14587e-14 0.0168 6.05309e-08 2.32374e-14 0.0167998 1.58764e-07 5.64659e-14 0.0167995 3.58342e-07 1.1548e-13 0.0167986 9.25986e-07 2.544e-13 0.0167973 2.12958e-06 5.62777e-13 0.0167927 5.28698e-06 8.97327e-13 0.0167827 1.27639e-05 2.423e-12 0.016763 3.1756e-05 1.52917e-12 0.0166994 9.17515e-05 8.99009e-12 0.0165886 0.00029606 -1.27066e-11 0.0162183 0.0010201 -3.1576e-11 0.0143547 0.00565942 -2.76028e-10 0.0127676 0.00618375 -1.94481e-10 0.0112095 0.00625791 -1.2569e-10 0.00951414 0.00653066 -1.20029e-10 0.00744884 0.00666873 -1.58703e-10 0.00566079 0.00664877 -1.81748e-10 0.00417154 0.00713161 -1.01372e-10 0.00232944 0.00791817 -3.41914e-11 0.00806899 1.75871e-11 0.0168001 2.18179e-10 2.80453e-16 0.0168001 1.17058e-09 9.0319e-16 0.0168001 4.37483e-09 2.26319e-15 0.0168 1.12186e-08 4.5239e-15 0.0168 3.11307e-08 1.06475e-14 0.0168 7.19498e-08 2.12718e-14 0.0167998 1.87721e-07 5.02592e-14 0.0167996 4.23453e-07 1.00518e-13 0.0167987 1.08994e-06 2.37449e-13 0.0167975 2.44736e-06 5.19496e-13 0.0167925 6.4184e-06 9.48602e-13 0.0167858 1.41458e-05 2.99131e-12 0.0167599 4.21832e-05 1.10343e-12 0.0167247 0.000102749 1.2097e-11 0.0165788 0.000379475 -8.6272e-12 0.0162606 0.00120825 -2.85144e-11 0.0144342 0.00693905 -2.54389e-10 0.0129051 0.00771943 -1.97506e-10 0.0114236 0.00770965 -1.1231e-10 0.00983867 0.00805183 -1.20653e-10 0.00780455 0.0082815 -1.54844e-10 0.00599059 0.00832064 -1.83753e-10 0.00441461 0.00896812 -9.29536e-11 0.00251589 0.0100652 -7.00786e-11 0.0104241 3.16052e-11 0.0168001 2.32782e-10 2.67206e-16 0.0168001 1.24033e-09 8.49382e-16 0.0168001 4.71112e-09 2.20476e-15 0.0168 1.20403e-08 4.42316e-15 0.0168 3.42533e-08 1.07868e-14 0.0168 7.92031e-08 2.19183e-14 0.0167998 2.12463e-07 5.16024e-14 0.0167996 4.82946e-07 1.03763e-13 0.0167987 1.26026e-06 2.32511e-13 0.0167974 2.88488e-06 4.61941e-13 0.0167928 7.40977e-06 9.92661e-13 0.0167857 1.67506e-05 1.84266e-12 0.0167615 4.93093e-05 3.60092e-12 0.0167246 0.00011909 6.65814e-12 0.0165849 0.000438114 3.97074e-12 0.0162817 0.00139881 -1.34336e-11 0.0145923 0.00803854 -2.22357e-10 0.0131414 0.00924003 -2.19378e-10 0.0117634 0.00908828 -1.08316e-10 0.0102788 0.00947962 -1.09423e-10 0.00830811 0.00984843 -1.37971e-10 0.00645263 0.0100137 -1.88669e-10 0.00477138 0.0108499 -1.2715e-10 0.00277659 0.0123446 -6.02075e-11 0.0130585 4.00368e-11 0.0168001 2.30728e-10 2.26142e-16 0.0168001 1.24108e-09 7.10781e-16 0.0168001 4.70036e-09 1.88695e-15 0.0168001 1.19984e-08 3.72459e-15 0.0168 3.42502e-08 9.76209e-15 0.0168 7.87589e-08 1.97688e-14 0.0167998 2.14937e-07 5.14315e-14 0.0167997 4.8676e-07 1.06132e-13 0.0167988 1.3147e-06 2.50249e-13 0.0167978 2.98122e-06 5.30199e-13 0.0167929 8.0638e-06 1.06906e-12 0.0167863 1.80981e-05 2.19767e-12 0.0167613 5.53786e-05 4.32955e-12 0.0167239 0.000133772 6.33156e-12 0.0165756 0.000502175 1.27581e-11 0.0163497 0.00155607 -4.94526e-12 0.0149221 0.00882804 -1.92517e-10 0.0135367 0.0107533 -2.49467e-10 0.0122583 0.0104069 -1.14947e-10 0.0108798 0.0108254 -9.54357e-11 0.00902338 0.0113872 -1.15816e-10 0.00708183 0.0117185 -1.92781e-10 0.00527101 0.0127621 -1.32756e-10 0.0031831 0.0147625 -2.93925e-11 0.0161246 6.2717e-11 0.0168001 2.30545e-10 1.72023e-16 0.0168001 1.26333e-09 5.4638e-16 0.0168001 4.68831e-09 1.38646e-15 0.0168001 1.20344e-08 2.64519e-15 0.0168 3.32841e-08 7.02379e-15 0.0168 7.6099e-08 1.39669e-14 0.0167999 2.02647e-07 3.99435e-14 0.0167998 4.50978e-07 8.296e-14 0.0167991 1.24532e-06 2.26694e-13 0.0167985 2.64118e-06 4.7519e-13 0.0167937 8.22901e-06 1.11856e-12 0.0167906 1.65835e-05 2.32998e-12 0.0167669 5.76909e-05 5.31251e-12 0.0167432 0.000131677 9.66607e-12 0.0166182 0.000557202 1.81201e-11 0.0165188 0.00163648 1.23437e-11 0.0155348 0.00903675 -1.41718e-10 0.0142055 0.0122655 -2.78694e-10 0.0129906 0.011758 -1.3298e-10 0.0116803 0.0121436 -9.12754e-11 0.00992674 0.0128633 -1.00439e-10 0.00789028 0.0134274 -1.73363e-10 0.00599741 0.0146655 -1.43244e-10 0.00380243 0.0172981 -2.35118e-11 0.0198319 6.9647e-11 0.0168001 2.8147e-10 1.62406e-16 0.0168001 1.36648e-09 5.24138e-16 0.0168001 5.23165e-09 1.24605e-15 0.0168001 1.31249e-08 2.38204e-15 0.0168 3.68969e-08 5.27182e-15 0.0168 8.34201e-08 9.84186e-15 0.0167999 2.20906e-07 2.39732e-14 0.0167998 4.83428e-07 4.35502e-14 0.0167993 1.29693e-06 1.41583e-13 0.0167984 2.6735e-06 1.93087e-13 0.0167945 8.29222e-06 1.0353e-12 0.0167935 1.49598e-05 1.23796e-12 0.0167711 5.93179e-05 5.62929e-12 0.0167643 0.000112258 9.52043e-12 0.0166884 0.000552525 2.90878e-11 0.0167841 0.00153246 3.53705e-11 0.0165758 0.00829579 -2.59441e-11 0.0152603 0.0138348 -2.88322e-10 0.0139481 0.0133142 -1.48962e-10 0.0126985 0.0134221 -9.53646e-11 0.0110177 0.0142874 -8.87401e-11 0.00897464 0.0150516 -1.47432e-10 0.00705876 0.0165385 -1.42373e-10 0.00486659 0.0198447 -2.85337e-13 0.0246642 8.63507e-11 0.0168001 1.58104e-16 4.39155e-10 0.0168001 5.05274e-16 6.42553e-10 0.0168001 1.32349e-15 6.4365e-09 0.0168001 2.6047e-15 7.37135e-09 0.0168 6.44145e-15 4.48103e-08 0.0168001 1.30338e-14 4.80559e-08 0.0167999 3.1364e-14 2.71874e-07 0.0168 6.12777e-14 2.7793e-07 0.0167991 1.49124e-13 1.62849e-06 0.0167997 2.18772e-13 1.46121e-06 0.0167942 9.36395e-13 1.06484e-05 0.0168005 3.49228e-13 5.98688e-06 0.016756 7.16283e-12 8.13505e-05 0.0168089 5.70113e-12 3.92335e-05 0.0166338 3.74788e-11 0.000625018 0.0170037 5.83526e-11 0.00103313 0.0183329 7.56216e-11 0.00602525 0.0168178 -2.74361e-10 0.0156207 0.0149959 -1.54661e-10 0.0152926 0.0138287 -1.19382e-10 0.0146169 0.0122521 -8.27601e-11 0.0156318 0.0102595 -9.85611e-11 0.0165937 0.00848283 -1.09553e-10 0.018227 0.00657751 3.87754e-11 0.0220973 4.98664e-11 0.0312109 0.0168001 4.80391e-11 -5.8912e-17 0.0168001 2.67561e-10 -1.97299e-16 0.0168001 9.64143e-10 -4.50132e-16 0.0168 2.48737e-09 -8.22989e-16 0.0168 6.57219e-09 -1.49244e-15 0.0168 1.49436e-08 -2.72712e-15 0.0167998 3.74142e-08 -3.47133e-15 0.0167996 8.19273e-08 -5.4532e-15 0.0167989 2.10412e-07 4.04943e-15 0.0167978 4.38818e-07 2.43418e-14 0.0167935 1.27507e-06 1.21951e-13 0.016788 2.53773e-06 3.66607e-13 0.0167667 8.29807e-06 1.29868e-12 0.0167195 2.19816e-05 5.23475e-12 0.0166023 7.17807e-05 1.35546e-11 0.0161269 0.000280613 7.12801e-11 0.0142415 0.00142826 1.66271e-10 0.0126522 0.00152293 2.68989e-11 0.0109833 0.00160652 2.08057e-11 0.00919048 0.00167211 3.0051e-11 0.00705612 0.00169071 7.40821e-11 0.00528789 0.00165428 7.98092e-11 0.00392353 0.00175407 7.72266e-11 0.00213431 0.0019503 -9.54183e-12 0.00194015 -4.94646e-11 0.0168001 9.98179e-11 -5.7323e-17 0.0168001 5.44703e-10 -1.91884e-16 0.0168001 1.99396e-09 -4.38689e-16 0.0168 5.12871e-09 -7.93553e-16 0.0168 1.37488e-08 -1.51616e-15 0.0168 3.14476e-08 -2.80812e-15 0.0167998 7.87641e-08 -4.36532e-15 0.0167996 1.73088e-07 -7.97609e-15 0.0167989 4.40042e-07 -1.80059e-15 0.0167977 9.07847e-07 -4.43364e-16 0.0167932 2.70164e-06 1.16266e-13 0.0167882 4.98117e-06 2.50441e-13 0.0167652 1.78091e-05 1.37202e-12 0.0167205 4.35903e-05 4.84693e-12 0.0165943 0.00014905 1.37323e-11 0.0161253 0.000561016 6.91489e-11 0.0142191 0.00287347 1.65702e-10 0.0126165 0.00306548 2.84534e-11 0.0109727 0.00318877 2.10184e-11 0.00921376 0.00331142 3.04511e-11 0.00709169 0.00337069 7.12816e-11 0.00531237 0.0033199 7.90796e-11 0.00393258 0.00352067 6.1332e-11 0.00215734 0.0038906 -3.89316e-13 0.00390185 -2.96338e-11 0.0168001 1.45226e-10 -5.7284e-17 0.0168001 7.85061e-10 -1.93239e-16 0.0168001 2.93367e-09 -4.24931e-16 0.0168 7.52578e-09 -7.55054e-16 0.0168 2.08436e-08 -1.42102e-15 0.0168 4.80199e-08 -2.56793e-15 0.0167998 1.24469e-07 -4.43473e-15 0.0167996 2.78767e-07 -8.61868e-15 0.0167988 7.06418e-07 -7.08811e-15 0.0167974 1.55624e-06 -2.62617e-14 0.0167931 4.10266e-06 1.12155e-13 0.0167871 8.48926e-06 -4.8459e-15 0.0167643 2.59918e-05 1.63833e-12 0.0167189 6.65403e-05 3.74542e-12 0.0165868 0.000224667 1.4208e-11 0.0161574 0.000815506 6.54866e-11 0.0142683 0.00429028 1.65022e-10 0.0126612 0.00462456 3.12818e-11 0.011042 0.00474836 2.28181e-11 0.0093156 0.00492516 3.21838e-11 0.00721663 0.00503308 6.546e-11 0.00543601 0.00498478 7.44395e-11 0.00401269 0.00531642 2.9049e-11 0.00221706 0.00586494 1.06013e-11 0.00592452 1.88943e-13 0.0168001 1.844e-10 -6.24128e-17 0.0168001 1.00033e-09 -2.11253e-16 0.0168001 3.70816e-09 -4.61355e-16 0.0168 9.51142e-09 -8.28812e-16 0.0168 2.62734e-08 -1.56064e-15 0.0168 6.05299e-08 -2.83316e-15 0.0167998 1.58761e-07 -4.89192e-15 0.0167995 3.58335e-07 -9.18714e-15 0.0167986 9.25972e-07 -8.85859e-15 0.0167973 2.12954e-06 -2.05228e-14 0.0167927 5.28699e-06 7.72053e-14 0.0167826 1.27639e-05 4.2394e-14 0.016763 3.17565e-05 1.35242e-12 0.0166994 9.17518e-05 3.05923e-12 0.0165886 0.000296066 1.52572e-11 0.0162182 0.00102011 5.84818e-11 0.0143546 0.00565951 1.64802e-10 0.0127675 0.00618379 3.38744e-11 0.0112094 0.0062579 2.35962e-11 0.00951408 0.00653061 4.00522e-11 0.00744881 0.0066687 5.83719e-11 0.00566074 0.0066488 7.52725e-11 0.00417151 0.00713156 2.28036e-11 0.00232948 0.00791813 2.03732e-11 0.00806898 1.21198e-11 0.0168001 2.18173e-10 -6.49835e-17 0.0168001 1.17054e-09 -2.20112e-16 0.0168001 4.37473e-09 -4.83587e-16 0.0168 1.12184e-08 -8.7572e-16 0.0168 3.11302e-08 -1.60489e-15 0.0168 7.19488e-08 -2.89033e-15 0.0167998 1.8772e-07 -4.84174e-15 0.0167996 4.2345e-07 -8.78437e-15 0.0167987 1.08993e-06 -1.0735e-14 0.0167975 2.44734e-06 -2.4107e-14 0.0167925 6.41838e-06 4.53803e-14 0.0167858 1.41455e-05 -5.51833e-14 0.0167599 4.21837e-05 1.30934e-12 0.0167247 0.000102747 2.01329e-12 0.0165788 0.000379482 1.54501e-11 0.0162606 0.00120827 5.10421e-11 0.0144341 0.00693916 1.64344e-10 0.012905 0.00771947 3.74811e-11 0.0114236 0.00770962 2.31793e-11 0.00983861 0.00805178 4.28454e-11 0.00780451 0.00828146 5.13401e-11 0.0059906 0.00832063 8.05983e-11 0.00441459 0.00896813 2.34035e-11 0.0025159 0.0100651 3.55685e-11 0.0104242 -7.20187e-12 0.0168001 2.32771e-10 -6.02223e-17 0.0168001 1.24027e-09 -2.03674e-16 0.0168001 4.71091e-09 -4.77594e-16 0.0168 1.20398e-08 -8.73016e-16 0.0168 3.42521e-08 -1.71814e-15 0.0168 7.92001e-08 -3.20238e-15 0.0167998 2.12458e-07 -5.61146e-15 0.0167996 4.82935e-07 -1.05021e-14 0.0167987 1.26025e-06 -1.24436e-14 0.0167974 2.88485e-06 -2.08997e-14 0.0167928 7.40974e-06 2.43179e-14 0.0167857 1.67506e-05 7.63732e-14 0.0167615 4.93095e-05 9.73937e-13 0.0167246 0.00011909 2.36783e-12 0.0165849 0.000438119 1.32115e-11 0.0162816 0.00139883 4.69177e-11 0.0145922 0.00803865 1.63009e-10 0.0131414 0.00924008 4.3019e-11 0.0117633 0.00908825 2.2818e-11 0.0102788 0.00947955 3.85072e-11 0.00830808 0.00984838 3.0383e-11 0.00645263 0.0100137 9.6333e-11 0.00477138 0.0108499 3.09658e-11 0.00277659 0.0123446 2.94816e-11 0.0130586 -1.16689e-11 0.0168001 2.30717e-10 -4.53933e-17 0.0168001 1.24102e-09 -1.56783e-16 0.0168001 4.70013e-09 -3.76964e-16 0.0168001 1.19978e-08 -6.7526e-16 0.0168 3.42485e-08 -1.45582e-15 0.0168 7.8755e-08 -2.69544e-15 0.0167998 2.14928e-07 -5.57135e-15 0.0167997 4.86738e-07 -1.10752e-14 0.0167988 1.31466e-06 -1.57647e-14 0.0167978 2.98111e-06 -3.19129e-14 0.0167929 8.06369e-06 1.3893e-14 0.0167863 1.80978e-05 4.86315e-14 0.0167613 5.53785e-05 8.15435e-13 0.0167239 0.000133773 2.95843e-12 0.0165756 0.000502179 9.20372e-12 0.0163496 0.00155609 4.52577e-11 0.0149221 0.00882812 1.63646e-10 0.0135367 0.0107534 4.90242e-11 0.0122583 0.0104069 2.34081e-11 0.0108798 0.0108253 3.26793e-11 0.00902335 0.0113871 3.04474e-11 0.00708181 0.0117185 8.84165e-11 0.00527098 0.0127621 5.81416e-11 0.0031831 0.0147625 1.35458e-11 0.0161247 -2.71578e-11 0.0168001 2.30542e-10 -2.99172e-17 0.0168001 1.26331e-09 -1.10492e-16 0.0168001 4.68823e-09 -2.26309e-16 0.0168001 1.20342e-08 -3.81126e-16 0.0168 3.32833e-08 -7.37088e-16 0.0168 7.60971e-08 -1.23436e-15 0.0167999 2.0264e-07 -2.82736e-15 0.0167998 4.50962e-07 -5.53774e-15 0.0167991 1.24528e-06 -1.18966e-14 0.0167985 2.64105e-06 -2.40812e-14 0.0167937 8.22887e-06 -1.38966e-15 0.0167906 1.65828e-05 -3.29818e-14 0.0167669 5.76903e-05 6.07232e-13 0.0167431 0.000131675 1.66481e-12 0.0166182 0.000557204 1.03914e-11 0.0165187 0.00163649 3.95763e-11 0.0155348 0.00903679 1.63552e-10 0.0142055 0.0122656 5.67686e-11 0.0129906 0.011758 2.69912e-11 0.0116803 0.0121435 3.23829e-11 0.0099267 0.0128632 3.04571e-11 0.00789025 0.0134274 6.90054e-11 0.00599738 0.0146655 3.95131e-11 0.00380243 0.0172981 -7.13653e-13 0.0198321 -2.87803e-11 0.0168001 2.81467e-10 -3.24151e-17 0.0168001 1.36646e-09 -1.20717e-16 0.0168001 5.23161e-09 -2.43944e-16 0.0168001 1.31248e-08 -4.29341e-16 0.0168 3.68968e-08 -5.76284e-16 0.0168 8.342e-08 -7.94892e-16 0.0167999 2.20907e-07 -4.42684e-16 0.0167998 4.83431e-07 8.42568e-16 0.0167993 1.29693e-06 1.32985e-16 0.0167984 2.67351e-06 2.00338e-14 0.0167945 8.29215e-06 -1.97334e-14 0.0167935 1.49595e-05 7.46517e-14 0.0167711 5.93178e-05 3.03051e-13 0.0167643 0.000112256 6.90244e-13 0.0166884 0.000552521 8.61049e-12 0.0167841 0.00153246 3.37472e-11 0.0165757 0.00829577 1.55374e-10 0.0152603 0.0138349 6.52744e-11 0.0139481 0.0133142 3.34396e-11 0.0126984 0.013422 3.39233e-11 0.0110177 0.0142873 2.92363e-11 0.0089746 0.0150516 4.36052e-11 0.0070587 0.0165386 4.05596e-11 0.00486652 0.0198446 -1.38686e-11 0.0246643 -3.47271e-11 0.0168001 -2.05253e-17 4.39144e-10 0.0168001 -7.83921e-17 6.42534e-10 0.0168001 -1.79949e-16 6.43634e-09 0.0168001 -3.19191e-16 7.37116e-09 0.0168 -5.79346e-16 4.48093e-08 0.0168001 -9.33195e-16 4.8055e-08 0.0167999 -1.50322e-15 2.71869e-07 0.0168 -2.17103e-15 2.77928e-07 0.0167991 -3.66384e-15 1.62847e-06 0.0167997 5.62937e-15 1.46122e-06 0.0167942 -2.30416e-14 1.06483e-05 0.0168005 5.72093e-14 5.987e-06 0.016756 1.01215e-13 8.13492e-05 0.0168089 3.49167e-13 3.92327e-05 0.0166338 6.13311e-12 0.000625007 0.0170036 2.6745e-11 0.00103309 0.0183329 1.36788e-10 0.00602512 0.0168178 8.16194e-11 0.0156208 0.0149959 4.63568e-11 0.0152926 0.0138287 4.04539e-11 0.0146169 0.012252 2.67244e-11 0.0156318 0.0102595 2.15588e-11 0.0165937 0.00848276 2.33972e-11 0.0182271 0.00657745 -4.65123e-11 0.0220973 -1.53994e-11 0.0312109 0.0168001 4.80393e-11 -2.37906e-16 0.0168001 2.67561e-10 -7.81218e-16 0.0168001 9.64145e-10 -1.86923e-15 0.0168 2.48737e-09 -3.66525e-15 0.0168 6.57219e-09 -8.30339e-15 0.0168 1.49436e-08 -1.61223e-14 0.0167998 3.74141e-08 -3.80482e-14 0.0167996 8.19268e-08 -7.50354e-14 0.0167989 2.1041e-07 -1.7963e-13 0.0167978 4.3881e-07 -3.61715e-13 0.0167935 1.27507e-06 -7.72457e-13 0.016788 2.53766e-06 -1.75654e-12 0.0167667 8.29809e-06 -2.33309e-12 0.0167195 2.19813e-05 -7.72126e-12 0.0166023 7.17804e-05 -3.73653e-12 0.0161269 0.00028061 -2.26427e-12 0.0142416 0.00142825 1.18378e-10 0.0126522 0.00152293 1.59692e-10 0.0109833 0.00160653 1.14285e-10 0.0091905 0.00167212 1.03253e-10 0.00705614 0.0016907 1.07245e-10 0.00528791 0.00165427 1.05715e-10 0.00392358 0.00175401 6.91585e-11 0.00213439 0.00195029 -6.909e-12 0.00194024 -5.55237e-11 0.0168001 9.98177e-11 -2.48292e-16 0.0168001 5.44701e-10 -8.14452e-16 0.0168001 1.99396e-09 -1.95957e-15 0.0168 5.12871e-09 -3.87341e-15 0.0168 1.37488e-08 -8.60766e-15 0.0168 3.14477e-08 -1.66965e-14 0.0167998 7.87642e-08 -3.77812e-14 0.0167996 1.73088e-07 -7.27185e-14 0.0167989 4.40041e-07 -1.74671e-13 0.0167977 9.07841e-07 -3.27245e-13 0.0167932 2.70163e-06 -8.05844e-13 0.0167882 4.98108e-06 -1.65604e-12 0.0167652 1.78091e-05 -2.60179e-12 0.0167205 4.35898e-05 -7.68977e-12 0.0165943 0.00014905 -5.13804e-12 0.0161253 0.000561011 -1.27155e-12 0.0142191 0.00287346 1.12568e-10 0.0126165 0.00306548 1.58705e-10 0.0109727 0.00318877 1.09845e-10 0.00921377 0.00331143 9.98033e-11 0.00709168 0.00337069 1.05693e-10 0.00531235 0.00331989 1.06361e-10 0.00393256 0.0035206 7.11319e-11 0.00215731 0.00389061 -1.98576e-12 0.00390193 -4.73772e-11 0.0168001 1.45225e-10 -2.57477e-16 0.0168001 7.85057e-10 -8.34021e-16 0.0168001 2.93365e-09 -2.10914e-15 0.0168 7.52575e-09 -4.22442e-15 0.0168 2.08435e-08 -9.80508e-15 0.0168 4.80197e-08 -1.95245e-14 0.0167998 1.24468e-07 -4.34501e-14 0.0167996 2.78766e-07 -8.35492e-14 0.0167988 7.06416e-07 -1.86527e-13 0.0167974 1.55623e-06 -3.15617e-13 0.0167931 4.10264e-06 -9.0519e-13 0.0167871 8.48925e-06 -1.14153e-12 0.0167643 2.59916e-05 -3.85393e-12 0.0167189 6.65399e-05 -5.74055e-12 0.0165869 0.000224667 -9.15443e-12 0.0161574 0.000815499 -1.43136e-12 0.0142684 0.00429026 9.74437e-11 0.0126612 0.00462455 1.57425e-10 0.011042 0.00474838 1.04082e-10 0.0093156 0.00492518 9.45324e-11 0.00721662 0.00503308 1.03871e-10 0.00543598 0.00498478 1.08767e-10 0.00401266 0.00531638 6.48185e-11 0.00221701 0.00586497 4.13699e-12 0.00592455 -3.6274e-11 0.0168001 1.844e-10 -2.43436e-16 0.0168001 1.00033e-09 -7.85913e-16 0.0168001 3.70816e-09 -2.03555e-15 0.0168 9.51142e-09 -4.05672e-15 0.0168 2.62734e-08 -1.01544e-14 0.0168 6.05298e-08 -2.06134e-14 0.0167998 1.58761e-07 -5.11996e-14 0.0167995 3.58334e-07 -1.04983e-13 0.0167986 9.25971e-07 -2.39331e-13 0.0167973 2.12953e-06 -5.28672e-13 0.0167927 5.28697e-06 -9.23409e-13 0.0167826 1.27638e-05 -2.3844e-12 0.016763 3.17563e-05 -2.44084e-12 0.0166994 9.17513e-05 -1.09513e-11 0.0165886 0.000296065 -1.23633e-12 0.0162182 0.0010201 -1.64443e-11 0.0143546 0.00565948 9.17199e-11 0.0127675 0.00618378 1.60995e-10 0.0112094 0.00625791 1.02161e-10 0.00951409 0.00653064 8.23312e-11 0.00744881 0.00666871 1.05022e-10 0.00566073 0.00664881 1.1335e-10 0.0041715 0.00713156 7.94268e-11 0.00232944 0.00791816 5.17858e-12 0.00806896 -2.85323e-11 0.0168001 2.18174e-10 -2.38272e-16 0.0168001 1.17055e-09 -7.74818e-16 0.0168001 4.37475e-09 -1.95632e-15 0.0168 1.12184e-08 -3.89898e-15 0.0168 3.11302e-08 -9.3179e-15 0.0168 7.19489e-08 -1.86327e-14 0.0167998 1.8772e-07 -4.51428e-14 0.0167996 4.2345e-07 -9.06186e-14 0.0167987 1.08993e-06 -2.21093e-13 0.0167975 2.44734e-06 -4.82545e-13 0.0167925 6.41837e-06 -9.5076e-13 0.0167858 1.41455e-05 -2.83892e-12 0.0167599 4.21836e-05 -2.01085e-12 0.0167247 0.000102747 -1.31511e-11 0.0165788 0.00037948 -3.54814e-12 0.0162606 0.00120826 -1.36994e-11 0.0144341 0.00693913 6.49041e-11 0.012905 0.00771947 1.60663e-10 0.0114236 0.00770964 8.91686e-11 0.00983864 0.00805181 8.0504e-11 0.00780452 0.00828148 1.08016e-10 0.0059906 0.00832063 1.10185e-10 0.0044146 0.00896816 7.01288e-11 0.00251587 0.0100652 1.5857e-11 0.0104241 -2.64143e-11 0.0168001 2.32774e-10 -2.26693e-16 0.0168001 1.24028e-09 -7.29181e-16 0.0168001 4.71096e-09 -1.89945e-15 0.0168 1.20399e-08 -3.79768e-15 0.0168 3.42523e-08 -9.35992e-15 0.0168 7.92008e-08 -1.90019e-14 0.0167998 2.12459e-07 -4.58266e-14 0.0167996 4.82937e-07 -9.23914e-14 0.0167987 1.26025e-06 -2.15043e-13 0.0167974 2.88486e-06 -4.29708e-13 0.0167928 7.40974e-06 -9.79238e-13 0.0167857 1.67506e-05 -1.83849e-12 0.0167615 4.93094e-05 -4.18766e-12 0.0167246 0.00011909 -8.14146e-12 0.0165849 0.000438117 -1.35777e-11 0.0162816 0.00139882 -2.05939e-11 0.0145922 0.00803861 4.5469e-11 0.0131414 0.00924007 1.77289e-10 0.0117634 0.00908827 8.54725e-11 0.0102788 0.00947959 7.34575e-11 0.00830809 0.00984842 1.09907e-10 0.00645263 0.0100137 1.00029e-10 0.00477139 0.01085 9.77141e-11 0.00277658 0.0123446 1.69339e-11 0.0130585 -3.14249e-11 0.0168001 2.30719e-10 -1.95038e-16 0.0168001 1.24103e-09 -6.2078e-16 0.0168001 4.70017e-09 -1.65432e-15 0.0168001 1.19979e-08 -3.25823e-15 0.0168 3.42489e-08 -8.56763e-15 0.0168 7.87558e-08 -1.73239e-14 0.0167998 2.1493e-07 -4.57051e-14 0.0167997 4.86743e-07 -9.42454e-14 0.0167988 1.31467e-06 -2.29694e-13 0.0167978 2.98113e-06 -4.87183e-13 0.0167929 8.0637e-06 -1.04434e-12 0.0167863 1.80978e-05 -2.16371e-12 0.0167613 5.53785e-05 -4.78119e-12 0.0167239 0.000133772 -8.31951e-12 0.0165756 0.000502178 -1.87905e-11 0.0163497 0.00155608 -2.92256e-11 0.0149221 0.00882808 2.89189e-11 0.0135367 0.0107534 2.01656e-10 0.0122583 0.0104069 9.15359e-11 0.0108798 0.0108253 6.45768e-11 0.00902337 0.0113872 8.74336e-11 0.00708181 0.0117185 1.11623e-10 0.005271 0.0127621 7.87704e-11 0.00318309 0.0147625 3.63516e-12 0.0161246 -4.11944e-11 0.0168001 2.30542e-10 -1.52017e-16 0.0168001 1.26331e-09 -4.87043e-16 0.0168001 4.68823e-09 -1.26093e-15 0.0168001 1.20343e-08 -2.40996e-15 0.0168 3.32834e-08 -6.44963e-15 0.0168 7.60974e-08 -1.28514e-14 0.0167999 2.02641e-07 -3.68186e-14 0.0167998 4.50965e-07 -7.63591e-14 0.0167991 1.24529e-06 -2.10245e-13 0.0167985 2.64108e-06 -4.40797e-13 0.0167937 8.22888e-06 -1.07962e-12 0.0167906 1.65829e-05 -2.22226e-12 0.0167669 5.76903e-05 -5.58484e-12 0.0167432 0.000131675 -1.05821e-11 0.0166182 0.000557203 -2.49985e-11 0.0165188 0.00163649 -4.18214e-11 0.0155348 0.00903675 -1.2021e-11 0.0142055 0.0122656 2.23646e-10 0.0129906 0.011758 1.06061e-10 0.0116803 0.0121436 6.0578e-11 0.00992674 0.0128633 7.18117e-11 0.00789025 0.0134274 1.10736e-10 0.00599739 0.0146655 1.06321e-10 0.00380243 0.0172981 1.96876e-11 0.0198319 -4.68451e-11 0.0168001 2.81469e-10 -1.38837e-16 0.0168001 1.36647e-09 -4.54417e-16 0.0168001 5.23163e-09 -1.10953e-15 0.0168001 1.31248e-08 -2.12023e-15 0.0168 3.68969e-08 -4.87048e-15 0.0168 8.34202e-08 -9.19595e-15 0.0167999 2.20907e-07 -2.32337e-14 0.0167998 4.8343e-07 -4.32287e-14 0.0167993 1.29693e-06 -1.37697e-13 0.0167984 2.67351e-06 -2.0311e-13 0.0167945 8.29214e-06 -9.84442e-13 0.0167935 1.49595e-05 -1.2549e-12 0.0167711 5.93177e-05 -5.66962e-12 0.0167643 0.000112256 -9.70539e-12 0.0166884 0.00055252 -3.44476e-11 0.0167841 0.00153245 -5.91722e-11 0.0165758 0.00829574 -9.17971e-11 0.0152604 0.0138349 2.25881e-10 0.0139481 0.0133142 1.16219e-10 0.0126985 0.0134221 6.32454e-11 0.0110177 0.0142874 6.09705e-11 0.00897462 0.0150516 1.07669e-10 0.00705872 0.0165385 1.04907e-10 0.00486655 0.0198446 1.57099e-11 0.0246641 -5.85315e-11 0.0168001 -1.42036e-16 4.39145e-10 0.0168001 -4.5877e-16 6.42533e-10 0.0168001 -1.21688e-15 6.43634e-09 0.0168001 -2.39652e-15 7.37114e-09 0.0168 -5.97959e-15 4.48093e-08 0.0168001 -1.2145e-14 4.80547e-08 0.0167999 -2.95206e-14 2.71869e-07 0.0168 -5.80149e-14 2.77926e-07 0.0167991 -1.4185e-13 1.62847e-06 0.0167997 -2.16687e-13 1.46121e-06 0.0167942 -8.87001e-13 1.06483e-05 0.0168005 -3.84617e-13 5.98695e-06 0.016756 -7.01398e-12 8.13491e-05 0.0168089 -5.74402e-12 3.92327e-05 0.0166338 -4.0823e-11 0.000625006 0.0170037 -7.64411e-11 0.00103309 0.018333 -1.77013e-10 0.00602508 0.0168178 1.98014e-10 0.0156208 0.0149959 1.10475e-10 0.0152926 0.0138287 8.1165e-11 0.0146169 0.0122521 5.72333e-11 0.0156318 0.0102595 7.85662e-11 0.0165937 0.00848279 8.80977e-11 0.0182271 0.00657747 4.4242e-12 0.0220973 -3.77736e-11 0.0312109 0.0168001 4.80376e-11 1.09366e-16 0.0168001 2.67556e-10 2.81024e-16 0.0168001 9.64121e-10 1.72664e-15 0.0168 2.48731e-09 3.68614e-15 0.0168 6.57202e-09 9.21784e-15 0.0168 1.49432e-08 1.78669e-14 0.0167998 3.74132e-08 4.18483e-14 0.0167996 8.19251e-08 8.15058e-14 0.0167989 2.10407e-07 1.99812e-13 0.0167978 4.38812e-07 4.06624e-13 0.0167935 1.27503e-06 9.19759e-13 0.016788 2.53772e-06 2.17683e-12 0.0167667 8.29783e-06 3.61213e-12 0.0167195 2.19814e-05 1.27584e-11 0.0166023 7.17791e-05 1.73629e-11 0.016127 0.000280609 5.62538e-11 0.0142417 0.00142824 9.07946e-12 0.0126523 0.00152292 -6.35276e-11 0.0109834 0.00160652 -3.96698e-11 0.00919056 0.00167212 -3.82713e-11 0.00705618 0.0016907 -6.2208e-11 0.00528795 0.00165427 -6.31044e-11 0.00392362 0.001754 -1.54108e-11 0.00213443 0.00195029 1.20227e-10 0.00194027 2.2396e-10 0.0168001 9.98174e-11 1.25769e-16 0.0168001 5.44707e-10 3.21724e-16 0.0168001 1.99395e-09 1.87941e-15 0.0168 5.12868e-09 4.02258e-15 0.0168 1.37485e-08 9.62896e-15 0.0168 3.14468e-08 1.86193e-14 0.0167998 7.87615e-08 4.14605e-14 0.0167996 1.73081e-07 7.8436e-14 0.0167989 4.40028e-07 1.92796e-13 0.0167977 9.0781e-07 3.59196e-13 0.0167932 2.70157e-06 9.63092e-13 0.0167882 4.98108e-06 2.00739e-12 0.0167652 1.78086e-05 4.02119e-12 0.0167205 4.359e-05 1.2559e-11 0.0165943 0.000149048 1.94614e-11 0.0161253 0.000561008 5.48594e-11 0.0142192 0.00287343 1.13215e-11 0.0126166 0.00306546 -6.34069e-11 0.0109727 0.00318877 -3.67739e-11 0.00921382 0.00331143 -3.59139e-11 0.00709173 0.00337069 -6.02563e-11 0.00531239 0.00331989 -6.63406e-11 0.00393259 0.00352059 -2.26321e-11 0.00215733 0.00389061 1.18374e-10 0.00390196 2.11992e-10 0.0168001 1.45229e-10 1.32871e-16 0.0168001 7.85076e-10 3.42262e-16 0.0168001 2.93372e-09 2.0961e-15 0.0168 7.52592e-09 4.5201e-15 0.0168 2.08438e-08 1.11398e-14 0.0168 4.80202e-08 2.20914e-14 0.0167998 1.24468e-07 4.80873e-14 0.0167996 2.78763e-07 9.07343e-14 0.0167988 7.06403e-07 2.05205e-13 0.0167974 1.55616e-06 3.33654e-13 0.0167931 4.10263e-06 1.09022e-12 0.0167871 8.48866e-06 1.28132e-12 0.0167643 2.59922e-05 5.72151e-12 0.016719 6.65374e-05 9.86983e-12 0.0165869 0.000224669 2.5023e-11 0.0161574 0.000815491 5.53519e-11 0.0142684 0.00429022 1.81217e-11 0.0126613 0.00462453 -6.3778e-11 0.0110421 0.00474838 -3.31591e-11 0.00931566 0.00492518 -3.27457e-11 0.00721666 0.00503309 -5.69477e-11 0.00543601 0.00498479 -7.15518e-11 0.00401268 0.00531635 -1.30858e-11 0.00221704 0.00586496 1.02936e-10 0.00592459 1.79473e-10 0.0168001 1.84402e-10 1.01441e-16 0.0168001 1.00034e-09 2.88222e-16 0.0168001 3.70821e-09 1.96825e-15 0.0168 9.51155e-09 4.26292e-15 0.0168 2.62738e-08 1.16206e-14 0.0168 6.05308e-08 2.35161e-14 0.0167998 1.58764e-07 5.73711e-14 0.0167995 3.58342e-07 1.16034e-13 0.0167986 9.25985e-07 2.67666e-13 0.0167973 2.12958e-06 5.82911e-13 0.0167927 5.28698e-06 1.11803e-12 0.0167827 1.27639e-05 2.74808e-12 0.016763 3.1756e-05 4.08324e-12 0.0166994 9.17515e-05 1.58234e-11 0.0165886 0.00029606 1.39218e-11 0.0162183 0.0010201 7.51844e-11 0.0143547 0.00565942 2.14349e-11 0.0127676 0.00618375 -6.88263e-11 0.0112095 0.00625791 -3.23718e-11 0.00951414 0.00653066 -3.20286e-11 0.00744884 0.00666873 -6.16193e-11 0.00566079 0.00664877 -8.55979e-11 0.00417154 0.00713161 -2.94824e-11 0.00232944 0.00791817 9.29642e-11 0.00806899 1.57238e-10 0.0168001 2.18179e-10 8.26577e-17 0.0168001 1.17058e-09 2.77458e-16 0.0168001 4.37483e-09 1.84913e-15 0.0168 1.12186e-08 4.06291e-15 0.0168 3.11307e-08 1.07812e-14 0.0168 7.19498e-08 2.15849e-14 0.0167998 1.87721e-07 5.15068e-14 0.0167996 4.23453e-07 1.01954e-13 0.0167987 1.08994e-06 2.51076e-13 0.0167975 2.44736e-06 5.38532e-13 0.0167925 6.4184e-06 1.15914e-12 0.0167858 1.41458e-05 3.26299e-12 0.0167599 4.21832e-05 3.67777e-12 0.0167247 0.000102749 1.78141e-11 0.0165788 0.000379475 1.84917e-11 0.0162606 0.00120825 6.70163e-11 0.0144342 0.00693905 3.26841e-11 0.0129051 0.00771943 -7.09287e-11 0.0114236 0.00770964 -2.57934e-11 0.00983867 0.00805183 -3.68056e-11 0.00780455 0.0082815 -7.21161e-11 0.00599059 0.00832064 -8.63725e-11 0.00441461 0.00896812 -1.86125e-11 0.00251589 0.0100651 7.38545e-11 0.0104241 1.48244e-10 0.0168001 2.32782e-10 4.86875e-17 0.0168001 1.24033e-09 2.35131e-16 0.0168001 4.71112e-09 1.65151e-15 0.0168 1.20403e-08 3.79582e-15 0.0168 3.42533e-08 1.09134e-14 0.0168 7.9203e-08 2.22094e-14 0.0167998 2.12463e-07 5.28866e-14 0.0167996 4.82946e-07 1.05202e-13 0.0167987 1.26026e-06 2.48193e-13 0.0167974 2.88488e-06 4.90037e-13 0.0167928 7.40977e-06 1.20673e-12 0.0167857 1.67506e-05 2.23609e-12 0.0167615 4.93093e-05 6.11177e-12 0.0167246 0.00011909 1.25382e-11 0.0165849 0.000438114 3.17123e-11 0.0162817 0.00139881 7.49123e-11 0.0145923 0.00803854 8.73829e-11 0.0131414 0.00924003 -8.88567e-11 0.0117634 0.00908828 -2.74606e-11 0.0102788 0.00947962 -3.71683e-11 0.00830811 0.00984843 -7.26537e-11 0.00645263 0.0100137 -7.81687e-11 0.00477138 0.0108499 -4.36312e-11 0.00277658 0.0123446 9.47708e-11 0.0130585 1.63969e-10 0.0168001 2.30728e-10 -1.73904e-17 0.0168001 1.24108e-09 1.52874e-16 0.0168001 4.70036e-09 9.38541e-16 0.0168001 1.19984e-08 2.20854e-15 0.0168 3.42502e-08 9.92735e-15 0.0168 7.87589e-08 2.03874e-14 0.0167998 2.14937e-07 5.31507e-14 0.0167997 4.8676e-07 1.08238e-13 0.0167988 1.3147e-06 2.66517e-13 0.0167978 2.98121e-06 5.57276e-13 0.0167929 8.06379e-06 1.28756e-12 0.0167863 1.80981e-05 2.61186e-12 0.0167613 5.53786e-05 6.80022e-12 0.0167239 0.000133772 1.29022e-11 0.0165756 0.000502175 3.77449e-11 0.0163497 0.00155607 8.48505e-11 0.0149221 0.00882804 1.23592e-10 0.0135367 0.0107533 -1.13564e-10 0.0122583 0.0104069 -3.66731e-11 0.0108798 0.0108254 -3.1094e-11 0.00902338 0.0113872 -5.66388e-11 0.00708183 0.0117185 -8.62778e-11 0.00527101 0.0127621 -5.53733e-11 0.00318309 0.0147625 7.71704e-11 0.0161246 1.59462e-10 0.0168001 2.30545e-10 -8.75612e-17 0.0168001 1.26333e-09 1.02357e-16 0.0168001 4.68831e-09 6.18343e-16 0.0168001 1.20344e-08 1.54863e-15 0.0168 3.32841e-08 6.43974e-15 0.0168 7.60989e-08 1.42517e-14 0.0167999 2.02647e-07 4.23072e-14 0.0167998 4.50978e-07 8.61295e-14 0.0167991 1.24532e-06 2.4322e-13 0.0167985 2.64118e-06 4.98428e-13 0.0167937 8.22901e-06 1.32672e-12 0.0167906 1.65835e-05 2.67737e-12 0.0167669 5.76908e-05 7.68064e-12 0.0167432 0.000131677 1.52009e-11 0.0166182 0.000557202 4.48697e-11 0.0165188 0.00163648 9.89865e-11 0.0155348 0.00903675 1.77176e-10 0.0142055 0.0122655 -1.38649e-10 0.0129906 0.011758 -5.13634e-11 0.0116803 0.0121436 -3.09614e-11 0.00992675 0.0128633 -4.75227e-11 0.00789028 0.0134274 -9.6269e-11 0.00599741 0.0146655 -6.463e-11 0.00380243 0.0172981 5.45388e-11 0.0198319 1.59805e-10 0.0168001 2.8147e-10 -1.20726e-16 0.0168001 1.36648e-09 2.55017e-16 0.0168001 5.23165e-09 6.64665e-16 0.0168001 1.31249e-08 1.25161e-15 0.0168 3.68969e-08 3.2035e-15 0.0168 8.34201e-08 7.58193e-15 0.0167999 2.20906e-07 2.58511e-14 0.0167998 4.83428e-07 4.67969e-14 0.0167993 1.29693e-06 1.57656e-13 0.0167984 2.6735e-06 2.15356e-13 0.0167945 8.29222e-06 1.23041e-12 0.0167935 1.49598e-05 1.50187e-12 0.0167711 5.93179e-05 7.80159e-12 0.0167643 0.000112258 1.36336e-11 0.0166884 0.000552525 5.56718e-11 0.0167841 0.00153246 1.19009e-10 0.0165758 0.00829579 2.80475e-10 0.0152603 0.0138348 -1.38041e-10 0.0139481 0.0133142 -5.96323e-11 0.0126985 0.0134221 -3.40011e-11 0.0110177 0.0142874 -3.94531e-11 0.00897464 0.0150516 -9.36234e-11 0.00705876 0.0165385 -8.69089e-11 0.00486659 0.0198447 2.98384e-11 0.0246642 1.4809e-10 0.0168001 -1.47199e-16 4.39154e-10 0.0168001 2.1336e-16 6.42552e-10 0.0168001 7.02278e-16 6.43649e-09 0.0168001 1.53275e-15 7.37134e-09 0.0168 3.27868e-15 4.48103e-08 0.0168001 7.54994e-15 4.80559e-08 0.0167999 2.72188e-14 2.71873e-07 0.0168 5.06573e-14 2.7793e-07 0.0167991 1.36585e-13 1.62849e-06 0.0167997 1.38822e-13 1.46121e-06 0.0167942 1.10379e-12 1.06484e-05 0.0168005 -5.34602e-14 5.98688e-06 0.016756 1.0101e-11 8.13505e-05 0.0168089 7.89263e-12 3.92334e-05 0.0166338 6.44228e-11 0.000625017 0.0170037 1.34905e-10 0.00103312 0.0183329 3.91081e-10 0.00602524 0.0168178 -9.93156e-11 0.0156207 0.0149959 -4.52868e-11 0.0152926 0.0138287 -5.10196e-11 0.0146169 0.0122521 -4.11465e-11 0.0156318 0.0102595 -7.32861e-11 0.0165937 0.00848283 -9.20638e-11 0.018227 0.00657751 1.44517e-12 0.0220973 1.15662e-10 0.0312109 0.0168001 4.80397e-11 3.43411e-16 0.0168001 2.67563e-10 2.04384e-15 0.0168001 9.64152e-10 3.71514e-15 0.0168 2.48739e-09 7.57169e-15 0.0168 6.57223e-09 9.69541e-15 0.0168 1.49437e-08 1.49695e-14 0.0167998 3.74143e-08 1.37679e-14 0.0167996 8.19272e-08 1.57312e-14 0.0167989 2.10411e-07 -7.46523e-15 0.0167978 4.38809e-07 -3.96549e-14 0.0167935 1.27508e-06 -1.44656e-13 0.016788 2.53765e-06 -4.23737e-13 0.0167667 8.29815e-06 -5.59414e-13 0.0167195 2.19813e-05 -2.26479e-12 0.0166023 7.17806e-05 -1.69316e-12 0.0161269 0.00028061 1.48429e-12 0.0142416 0.00142825 3.73919e-11 0.0126522 0.00152293 6.70173e-11 0.0109833 0.00160653 5.25661e-11 0.0091905 0.00167211 3.53625e-11 0.00705615 0.00169071 1.58546e-11 0.00528793 0.00165428 4.14165e-11 0.00392356 0.00175405 -2.48772e-11 0.00213432 0.00195034 9.57689e-11 0.00194017 9.3504e-11 0.0168001 9.98181e-11 3.42944e-16 0.0168001 5.44702e-10 2.04312e-15 0.0168001 1.99397e-09 3.70993e-15 0.0168 5.12873e-09 7.55329e-15 0.0168 1.37489e-08 9.68161e-15 0.0168 3.14479e-08 1.4928e-14 0.0167998 7.87647e-08 1.41119e-14 0.0167996 1.7309e-07 1.68426e-14 0.0167989 4.40044e-07 -4.14815e-15 0.0167977 9.07845e-07 -2.61858e-14 0.0167932 2.70165e-06 -1.40199e-13 0.0167882 4.98106e-06 -3.55827e-13 0.0167652 1.78092e-05 -5.61751e-13 0.0167205 4.35897e-05 -1.92822e-12 0.0165943 0.00014905 -1.64308e-12 0.0161253 0.000561011 4.04181e-12 0.0142192 0.00287346 4.00894e-11 0.0126165 0.00306548 6.65551e-11 0.0109727 0.00318878 5.24674e-11 0.00921376 0.00331143 4.02706e-11 0.0070917 0.00337069 1.99947e-11 0.00531238 0.00331991 3.90674e-11 0.00393257 0.00352065 -3.07392e-11 0.00215731 0.00389062 6.63759e-11 0.00390185 8.41526e-11 0.0168001 1.45225e-10 3.44482e-16 0.0168001 7.85057e-10 2.05439e-15 0.0168001 2.93365e-09 3.72245e-15 0.0168 7.52575e-09 7.56862e-15 0.0168 2.08435e-08 9.60354e-15 0.0168 4.80198e-08 1.46328e-14 0.0167998 1.24469e-07 1.35184e-14 0.0167996 2.78768e-07 1.55322e-14 0.0167988 7.06419e-07 -3.03705e-15 0.0167974 1.55625e-06 -1.82666e-14 0.0167931 4.10265e-06 -1.31622e-13 0.0167871 8.48936e-06 -1.86059e-13 0.0167643 2.59915e-05 -6.6075e-13 0.0167189 6.65403e-05 -9.08813e-13 0.0165869 0.000224666 -1.45414e-12 0.0161574 0.0008155 8.50508e-12 0.0142684 0.00429026 4.7034e-11 0.0126613 0.00462456 6.67551e-11 0.011042 0.00474838 5.44418e-11 0.0093156 0.00492518 5.26296e-11 0.00721663 0.00503309 3.01821e-11 0.00543601 0.0049848 3.44758e-11 0.00401269 0.00531642 -3.13829e-11 0.00221704 0.00586497 2.6661e-11 0.0059245 8.27764e-11 0.0168001 1.844e-10 3.50301e-16 0.0168001 1.00033e-09 2.08514e-15 0.0168001 3.70817e-09 3.80057e-15 0.0168 9.51143e-09 7.74492e-15 0.0168 2.62734e-08 9.85153e-15 0.0168 6.05299e-08 1.50263e-14 0.0167998 1.58761e-07 1.33248e-14 0.0167995 3.58335e-07 1.38459e-14 0.0167986 9.25971e-07 -6.9362e-15 0.0167973 2.12954e-06 -4.84329e-14 0.0167927 5.28698e-06 -9.27526e-14 0.0167826 1.27639e-05 -3.65718e-13 0.016763 3.17564e-05 -7.18956e-14 0.0166994 9.17513e-05 -1.53657e-12 0.0165886 0.000296066 3.54159e-12 0.0162182 0.0010201 9.53035e-12 0.0143546 0.00565949 5.99978e-11 0.0127675 0.00618379 6.93689e-11 0.0112094 0.00625792 6.19708e-11 0.00951408 0.00653063 6.85974e-11 0.00744882 0.00666873 5.06722e-11 0.00566073 0.00664883 3.27678e-11 0.00417152 0.00713154 -2.75292e-11 0.00232948 0.00791816 2.60882e-11 0.00806895 6.47108e-11 0.0168001 2.18174e-10 3.59523e-16 0.0168001 1.17055e-09 2.12917e-15 0.0168001 4.37475e-09 3.92965e-15 0.0168 1.12184e-08 8.02032e-15 0.0168 3.11303e-08 1.05233e-14 0.0168 7.19489e-08 1.63921e-14 0.0167998 1.8772e-07 1.66502e-14 0.0167996 4.23451e-07 2.09498e-14 0.0167987 1.08993e-06 6.11982e-15 0.0167975 2.44734e-06 -1.94617e-14 0.0167925 6.41838e-06 -5.2854e-14 0.0167858 1.41455e-05 -3.77192e-13 0.0167599 4.21837e-05 3.60798e-13 0.0167247 0.000102747 -1.36308e-12 0.0165788 0.000379481 5.64847e-12 0.0162606 0.00120826 1.63923e-11 0.0144341 0.00693913 7.29709e-11 0.0129051 0.00771948 7.11475e-11 0.0114236 0.00770964 7.71266e-11 0.00983863 0.0080518 7.90484e-11 0.00780452 0.0082815 7.83467e-11 0.0059906 0.00832068 2.03972e-11 0.00441462 0.00896813 -4.75734e-11 0.00251589 0.0100652 -8.63363e-12 0.0104241 3.17282e-11 0.0168001 2.32773e-10 3.73989e-16 0.0168001 1.24028e-09 2.2117e-15 0.0168001 4.71095e-09 4.11876e-15 0.0168 1.20399e-08 8.40252e-15 0.0168 3.42523e-08 1.11571e-14 0.0168 7.92006e-08 1.74866e-14 0.0167998 2.12459e-07 1.87787e-14 0.0167996 4.82937e-07 2.5037e-14 0.0167987 1.26025e-06 1.79915e-14 0.0167974 2.88486e-06 1.56147e-14 0.0167928 7.40975e-06 -5.25093e-15 0.0167857 1.67506e-05 -1.32738e-14 0.0167615 4.93095e-05 2.22215e-13 0.0167246 0.00011909 5.15142e-13 0.0165849 0.000438117 5.62995e-12 0.0162816 0.00139882 2.19208e-11 0.0145922 0.00803861 8.7099e-11 0.0131414 0.00924009 7.35014e-11 0.0117634 0.00908827 6.83179e-11 0.0102788 0.00947958 8.34074e-11 0.0083081 0.00984843 8.9894e-11 0.00645266 0.0100138 -4.46007e-12 0.00477143 0.01085 -7.099e-11 0.00277659 0.0123446 -1.1217e-11 0.0130584 2.20129e-11 0.0168001 2.30718e-10 4.28533e-16 0.0168001 1.24103e-09 2.5799e-15 0.0168001 4.70016e-09 4.68123e-15 0.0168001 1.19979e-08 9.63615e-15 0.0168 3.42487e-08 1.26077e-14 0.0168 7.87554e-08 2.04686e-14 0.0167998 2.14929e-07 2.11434e-14 0.0167997 4.8674e-07 2.97584e-14 0.0167988 1.31467e-06 2.50737e-14 0.0167978 2.98112e-06 2.90668e-14 0.0167929 8.06369e-06 3.67464e-14 0.0167863 1.80978e-05 9.86043e-14 0.0167613 5.53784e-05 4.48049e-13 0.0167239 0.000133772 2.01686e-12 0.0165756 0.000502179 4.41515e-12 0.0163497 0.00155608 2.83422e-11 0.0149221 0.00882807 1.03456e-10 0.0135367 0.0107534 7.37694e-11 0.0122583 0.0104069 6.00796e-11 0.0108798 0.0108253 7.88544e-11 0.00902337 0.0113872 9.64814e-11 0.00708185 0.0117185 -1.5565e-11 0.00527105 0.0127623 -3.15064e-11 0.00318309 0.0147625 -1.09407e-11 0.0161245 -1.44049e-11 0.0168001 2.30541e-10 5.35516e-16 0.0168001 1.2633e-09 3.24208e-15 0.0168001 4.6882e-09 5.57266e-15 0.0168001 1.20342e-08 1.13014e-14 0.0168 3.32832e-08 1.46503e-14 0.0168 7.60968e-08 2.37023e-14 0.0167999 2.02639e-07 2.53924e-14 0.0167998 4.5096e-07 3.65422e-14 0.0167991 1.24528e-06 3.28142e-14 0.0167985 2.64105e-06 3.80469e-14 0.0167937 8.22884e-06 5.92853e-14 0.0167906 1.65827e-05 5.39576e-14 0.0167669 5.76902e-05 5.87304e-13 0.0167432 0.000131674 1.4157e-12 0.0166182 0.000557203 8.31e-12 0.0165188 0.00163649 3.04902e-11 0.0155348 0.00903673 1.22277e-10 0.0142055 0.0122656 7.1611e-11 0.0129906 0.011758 5.28087e-11 0.0116803 0.0121436 8.43784e-11 0.00992672 0.0128633 1.01932e-10 0.00789029 0.0134275 -7.47045e-12 0.00599742 0.0146657 -1.0692e-10 0.00380243 0.0172981 1.41182e-11 0.0198318 -2.57194e-11 0.0168001 2.81465e-10 6.52723e-16 0.0168001 1.36645e-09 3.95946e-15 0.0168001 5.23156e-09 6.55264e-15 0.0168001 1.31247e-08 1.3061e-14 0.0168 3.68965e-08 1.69399e-14 0.0168 8.34193e-08 2.65117e-14 0.0167999 2.20905e-07 3.12804e-14 0.0167998 4.83426e-07 4.51934e-14 0.0167993 1.29692e-06 4.86022e-14 0.0167984 2.67348e-06 7.48311e-14 0.0167945 8.29212e-06 7.49978e-14 0.0167935 1.49593e-05 1.38402e-13 0.0167711 5.93178e-05 5.44207e-13 0.0167643 0.000112256 8.98387e-13 0.0166884 0.000552519 9.32892e-12 0.0167841 0.00153245 3.2182e-11 0.0165758 0.0082957 1.38104e-10 0.0152604 0.0138349 7.19666e-11 0.0139482 0.0133142 4.66204e-11 0.0126985 0.0134221 6.36331e-11 0.0110177 0.0142874 8.92869e-11 0.00897465 0.0150517 -2.22137e-11 0.00705877 0.0165387 -8.11701e-11 0.00486655 0.0198447 4.56551e-11 0.024664 -1.58005e-11 0.0168001 7.70559e-16 4.39148e-10 0.0168001 4.73382e-15 6.42548e-10 0.0168001 7.56818e-15 6.43641e-09 0.0168001 1.48902e-14 7.37131e-09 0.0168 1.89312e-14 4.48098e-08 0.0168001 2.91958e-14 4.8056e-08 0.0167999 3.38801e-14 2.71872e-07 0.0168 4.79426e-14 2.77934e-07 0.0167991 5.27661e-14 1.62849e-06 0.0167997 7.76016e-14 1.46126e-06 0.0167942 9.56313e-14 1.06483e-05 0.0168005 1.25587e-13 5.98719e-06 0.016756 7.02849e-13 8.13488e-05 0.0168089 7.4511e-13 3.92332e-05 0.0166338 9.11885e-12 0.000625002 0.0170037 3.18852e-11 0.00103308 0.018333 1.44496e-10 0.00602503 0.0168178 7.9828e-11 0.0156208 0.0149959 4.87796e-11 0.0152926 0.0138287 4.06602e-11 0.0146169 0.012252 5.99054e-11 0.0156318 0.0102595 9.45154e-12 0.0165937 0.00848283 -6.07797e-11 0.0182272 0.00657749 1.89576e-10 0.0220975 -6.96859e-11 0.0312108 0.0168001 4.80399e-11 3.91801e-12 0.0168001 2.67566e-10 1.02912e-11 0.0168001 9.6416e-10 1.44318e-11 0.0168 2.48741e-09 2.13412e-11 0.0168 6.57227e-09 2.20332e-11 0.0168 1.49438e-08 2.80485e-11 0.0167998 3.74144e-08 2.849e-11 0.0167996 8.19274e-08 3.45859e-11 0.0167989 2.10411e-07 3.63066e-11 0.0167978 4.38812e-07 4.76547e-11 0.0167935 1.27508e-06 5.55159e-11 0.016788 2.53768e-06 1.04307e-10 0.0167667 8.29815e-06 1.18358e-10 0.0167195 2.19816e-05 4.55787e-10 0.0166023 7.17809e-05 5.50055e-10 0.0161269 0.000280613 2.9306e-09 0.0142416 0.00142826 3.4623e-09 0.0126522 0.00152294 -5.20915e-10 0.0109833 0.00160654 -2.04724e-10 0.00919043 0.00167214 -6.06734e-11 0.00705606 0.00169074 -6.94676e-12 0.0052878 0.00165434 -7.86956e-11 0.00392351 0.00175407 1.01999e-10 0.00213429 0.00195023 4.30229e-10 0.00194014 5.94933e-10 0.0168001 9.98197e-11 3.94287e-12 0.0168001 5.44714e-10 1.02486e-11 0.0168001 1.994e-09 1.44738e-11 0.0168 5.12881e-09 2.13743e-11 0.0168 1.3749e-08 2.20985e-11 0.0168 3.14481e-08 2.81388e-11 0.0167998 7.87649e-08 2.85619e-11 0.0167996 1.73089e-07 3.46251e-11 0.0167989 4.40044e-07 3.617e-11 0.0167977 9.07843e-07 4.64662e-11 0.0167932 2.70166e-06 5.61387e-11 0.0167882 4.9811e-06 9.93783e-11 0.0167652 1.78093e-05 1.24441e-10 0.0167205 4.35902e-05 4.43347e-10 0.0165943 0.000149051 5.76729e-10 0.0161253 0.000561016 2.82236e-09 0.0142192 0.00287348 3.45558e-09 0.0126165 0.0030655 -5.14508e-10 0.0109726 0.00318881 -1.80012e-10 0.00921369 0.00331148 -4.40243e-11 0.0070916 0.00337076 -1.19008e-11 0.00531224 0.00332003 -7.11132e-11 0.00393245 0.00352077 1.1458e-10 0.00215706 0.00389061 4.97675e-10 0.00390158 6.30332e-10 0.0168001 1.45228e-10 3.98925e-12 0.0168001 7.85079e-10 1.01679e-11 0.0168001 2.93373e-09 1.45625e-11 0.0168 7.52595e-09 2.14519e-11 0.0168 2.08439e-08 2.22696e-11 0.0168 4.80207e-08 2.84031e-11 0.0167998 1.2447e-07 2.89129e-11 0.0167996 2.7877e-07 3.51829e-11 0.0167988 7.06422e-07 3.65587e-11 0.0167974 1.55624e-06 4.57305e-11 0.0167931 4.10268e-06 5.84106e-11 0.0167871 8.48928e-06 8.06643e-11 0.0167643 2.59919e-05 1.56643e-10 0.0167189 6.65402e-05 3.64904e-10 0.0165869 0.000224669 6.62535e-10 0.0161574 0.000815504 2.67377e-09 0.0142684 0.00429029 3.48979e-09 0.0126613 0.00462459 -4.99926e-10 0.011042 0.00474843 -1.36906e-10 0.00931556 0.00492524 -1.45479e-11 0.00721657 0.00503318 -1.76894e-11 0.00543596 0.00498492 -5.0618e-11 0.00401269 0.0053166 1.28147e-10 0.00221689 0.00586506 5.48255e-10 0.00592405 6.34459e-10 0.0168001 1.84406e-10 4.04793e-12 0.0168001 1.00037e-09 1.00717e-11 0.0168001 3.7083e-09 1.47076e-11 0.0168 9.51176e-09 2.16062e-11 0.0168 2.62741e-08 2.25666e-11 0.0168 6.05314e-08 2.88525e-11 0.0167998 1.58764e-07 2.95813e-11 0.0167995 3.58341e-07 3.64011e-11 0.0167986 9.25983e-07 3.8403e-11 0.0167973 2.12956e-06 5.1993e-11 0.0167927 5.28702e-06 5.78551e-11 0.0167826 1.2764e-05 1.157e-10 0.016763 3.17566e-05 1.02955e-10 0.0166994 9.17519e-05 4.81887e-10 0.0165886 0.000296067 3.71827e-10 0.0162182 0.00102011 2.82736e-09 0.0143546 0.00565952 3.31993e-09 0.0127675 0.00618383 -5.06816e-10 0.0112094 0.00625797 -1.11845e-10 0.00951409 0.00653071 8.50948e-11 0.00744883 0.00666883 -6.17838e-11 0.00566077 0.00664895 -4.98735e-11 0.00417158 0.00713176 1.45985e-10 0.00232945 0.00791814 4.91713e-10 0.00806843 6.37613e-10 0.0168001 2.18185e-10 4.12853e-12 0.0168001 1.17064e-09 1.00003e-11 0.0168001 4.37503e-09 1.49789e-11 0.0168 1.12191e-08 2.19396e-11 0.0168 3.11316e-08 2.30054e-11 0.0168 7.19513e-08 2.94563e-11 0.0167998 1.87724e-07 3.00862e-11 0.0167996 4.23457e-07 3.68082e-11 0.0167987 1.08994e-06 3.84593e-11 0.0167975 2.44736e-06 5.1195e-11 0.0167925 6.41843e-06 5.65615e-11 0.0167858 1.41457e-05 1.26513e-10 0.0167599 4.21838e-05 7.65763e-11 0.0167247 0.000102748 4.86793e-10 0.0165788 0.000379482 4.33427e-10 0.0162606 0.00120827 2.10741e-09 0.0144342 0.00693915 3.45252e-09 0.0129051 0.00771951 -4.9701e-10 0.0114236 0.00770968 -3.47549e-11 0.00983867 0.00805188 8.89351e-11 0.00780459 0.00828158 -2.10852e-11 0.0059907 0.00832078 -5.94907e-11 0.00441468 0.00896834 1.34466e-10 0.00251592 0.0100651 4.51235e-10 0.0104235 6.46721e-10 0.0168001 2.32809e-10 4.23736e-12 0.0168001 1.24056e-09 9.99565e-12 0.0168001 4.71156e-09 1.53611e-11 0.0168 1.20412e-08 2.24455e-11 0.0168 3.42544e-08 2.35635e-11 0.0168 7.92044e-08 3.02273e-11 0.0167998 2.12464e-07 3.09081e-11 0.0167996 4.82945e-07 3.79236e-11 0.0167987 1.26026e-06 3.95688e-11 0.0167974 2.88488e-06 5.08896e-11 0.0167928 7.40979e-06 5.78284e-11 0.0167857 1.67507e-05 9.68425e-11 0.0167615 4.93097e-05 1.44825e-10 0.0167246 0.000119091 3.2507e-10 0.0165849 0.000438118 6.06341e-10 0.0162816 0.00139882 1.93516e-09 0.0145923 0.00803863 3.54138e-09 0.0131414 0.00924012 -7.20326e-10 0.0117634 0.00908831 -8.03769e-11 0.0102788 0.00947963 1.24278e-10 0.00830818 0.0098485 1.50388e-11 0.00645275 0.0100138 -1.0596e-10 0.0047715 0.0108501 9.38548e-11 0.00277664 0.0123444 2.89913e-10 0.013058 5.28478e-10 0.0168001 2.30772e-10 5.64332e-12 0.0168001 1.24142e-09 1.13456e-11 0.0168001 4.70096e-09 1.69649e-11 0.0168001 1.19995e-08 2.40115e-11 0.0168 3.42513e-08 2.49961e-11 0.0168 7.87595e-08 3.15362e-11 0.0167998 2.14935e-07 3.16188e-11 0.0167997 4.8675e-07 3.8318e-11 0.0167987 1.31468e-06 3.94943e-11 0.0167978 2.98115e-06 5.08202e-11 0.0167929 8.06374e-06 5.71515e-11 0.0167863 1.80979e-05 9.64531e-11 0.0167613 5.53786e-05 1.44672e-10 0.0167239 0.000133772 2.97428e-10 0.0165756 0.000502181 6.38159e-10 0.0163497 0.00155608 1.84806e-09 0.0149221 0.00882809 3.65491e-09 0.0135367 0.0107534 -1.00967e-09 0.0122584 0.010407 -2.05992e-10 0.0108799 0.0108254 1.3895e-10 0.00902347 0.0113872 7.11e-11 0.00708195 0.0117186 -9.87747e-11 0.00527108 0.0127622 9.86604e-11 0.00318315 0.0147622 2.88745e-10 0.0161241 5.20221e-10 0.0168001 2.30599e-10 8.82691e-12 0.0168001 1.26371e-09 1.39275e-11 0.0168001 4.68908e-09 1.89342e-11 0.0168001 1.20359e-08 2.52421e-11 0.0168 3.3286e-08 2.61082e-11 0.0168 7.6101e-08 3.21273e-11 0.0167999 2.02646e-07 3.19561e-11 0.0167998 4.50971e-07 3.82685e-11 0.0167991 1.2453e-06 3.95239e-11 0.0167985 2.64108e-06 5.0699e-11 0.0167937 8.2289e-06 5.6456e-11 0.0167906 1.65829e-05 9.82429e-11 0.0167669 5.76903e-05 1.45749e-10 0.0167432 0.000131674 3.1587e-10 0.0166182 0.000557204 5.95148e-10 0.0165188 0.00163648 1.84821e-09 0.0155349 0.00903673 3.89232e-09 0.0142056 0.0122656 -1.21741e-09 0.0129906 0.0117581 -3.96567e-10 0.0116804 0.0121436 7.96963e-11 0.00992684 0.0128633 5.37785e-11 0.00789038 0.0134276 -4.75571e-11 0.00599751 0.0146656 1.32814e-10 0.00380248 0.0172978 2.63935e-10 0.0198315 4.92086e-10 0.0168001 2.81543e-10 1.21882e-11 0.0168001 1.36686e-09 1.66681e-11 0.0168001 5.23244e-09 2.10859e-11 0.0168001 1.31264e-08 2.65954e-11 0.0168 3.68991e-08 2.7369e-11 0.0168 8.34233e-08 3.23221e-11 0.0167999 2.2091e-07 3.2645e-11 0.0167998 4.83434e-07 3.74747e-11 0.0167993 1.29693e-06 3.87712e-11 0.0167984 2.6735e-06 4.69975e-11 0.0167945 8.29215e-06 5.46984e-11 0.0167935 1.49594e-05 8.47037e-11 0.0167711 5.93179e-05 1.402e-10 0.0167643 0.000112256 2.88967e-10 0.0166884 0.000552519 6.28593e-10 0.0167841 0.00153245 1.86965e-09 0.0165758 0.00829569 4.57801e-09 0.0152604 0.0138349 -1.14079e-09 0.0139482 0.0133142 -4.95134e-10 0.0126985 0.0134221 -4.72181e-11 0.0110178 0.0142874 -1.85205e-11 0.00897471 0.0150518 4.8076e-12 0.00705878 0.0165386 1.05782e-10 0.00486653 0.0198443 1.90237e-10 0.0246638 4.21317e-10 0.0168001 1.58148e-11 4.39343e-10 0.0168001 1.95425e-11 6.42648e-10 0.0168001 2.33059e-11 6.43767e-09 0.0168001 2.78929e-11 7.37214e-09 0.0168 2.85825e-11 4.48128e-08 0.0168 3.27772e-11 4.80578e-08 0.0167999 3.32226e-11 2.71877e-07 0.0168 3.77007e-11 2.77935e-07 0.0167991 3.94353e-11 1.62849e-06 0.0167997 5.0139e-11 1.46125e-06 0.0167942 5.26526e-11 1.06483e-05 0.0168005 1.12256e-10 5.98715e-06 0.016756 8.12055e-11 8.13487e-05 0.0168089 3.34927e-10 3.92333e-05 0.0166338 5.19189e-10 0.000625001 0.0170037 1.81908e-09 0.00103308 0.0183331 5.0989e-09 0.00602498 0.0168179 -6.27393e-10 0.0156208 0.014996 -2.76376e-10 0.0152927 0.0138288 -3.03737e-10 0.0146169 0.0122522 -9.45229e-11 0.0156318 0.0102597 -1.49441e-11 0.0165938 0.00848284 1.43946e-10 0.0182272 0.00657748 1.68979e-10 0.0220969 2.96772e-10 0.0312106 0.0168001 5.98709e-11 0.0168001 2.57586e-10 0.0168001 9.91088e-10 0.0168 2.55464e-09 0.0168 6.72583e-09 0.0168 1.52333e-08 0.0167998 3.78809e-08 0.0167996 8.2636e-08 0.0167989 2.11348e-07 0.0167978 4.39649e-07 0.0167935 1.27719e-06 0.016788 2.53596e-06 0.0167667 8.30601e-06 0.0167196 2.1971e-05 0.0166023 7.17991e-05 0.016127 0.000280515 0.0142418 0.00142817 0.0126524 0.00152299 0.0109834 0.00160661 0.00919035 0.00167217 0.00705598 0.00169071 0.00528777 0.00165429 0.0039234 0.0017541 0.00213406 0.00195042 0.00193994 0.0168001 1.21934e-10 0.0168001 5.30056e-10 0.0168001 2.06366e-09 0.0168 5.30137e-09 0.0168 1.41319e-08 0.0168 3.21446e-08 0.0167998 7.98842e-08 0.0167996 1.74788e-07 0.0167989 4.42307e-07 0.0167977 9.10802e-07 0.0167932 2.70585e-06 0.0167882 4.98166e-06 0.0167652 1.78234e-05 0.0167205 4.35686e-05 0.0165942 0.000149056 0.0161254 0.000560864 0.0142192 0.0028733 0.0126166 0.00306562 0.0109726 0.00318892 0.00921357 0.00331153 0.00709148 0.00337072 0.00531217 0.00331993 0.00393241 0.00352073 0.00215723 0.00389062 0.00390158 0.0168001 1.77439e-10 0.0168001 7.89337e-10 0.0168001 3.10374e-09 0.0168 7.92994e-09 0.0168 2.1644e-08 0.0168 4.93617e-08 0.0167998 1.26458e-07 0.0167996 2.81534e-07 0.0167987 7.10014e-07 0.0167974 1.56206e-06 0.0167931 4.10614e-06 0.0167871 8.51143e-06 0.0167643 2.59678e-05 0.0167188 6.66059e-05 0.0165868 0.00022453 0.0161574 0.000815364 0.0142684 0.00429005 0.0126612 0.00462482 0.0110419 0.00474854 0.00931538 0.00492529 0.00721643 0.00503306 0.0054358 0.00498487 0.00401252 0.00531657 0.00221698 0.00586485 0.00592423 0.0168001 2.45201e-10 0.0168001 1.11331e-09 0.0168001 4.18843e-09 0.0168 1.05074e-08 0.0168 2.79414e-08 0.0168 6.29971e-08 0.0167998 1.61933e-07 0.0167995 3.62085e-07 0.0167985 9.3001e-07 0.0167972 2.133e-06 0.0167927 5.29114e-06 0.0167826 1.27645e-05 0.016763 3.17666e-05 0.0166994 9.17206e-05 0.0165885 0.000296156 0.0162184 0.00101968 0.0143544 0.00565956 0.0127673 0.00618411 0.0112092 0.00625803 0.00951385 0.00653071 0.00744861 0.00666861 0.00566066 0.00664878 0.00417147 0.0071319 0.00232937 0.00791818 0.00806865 0.0168001 4.49508e-10 0.0168001 1.76586e-09 0.0168001 5.73227e-09 0.0168 1.34608e-08 0.0168 3.42242e-08 0.0168 7.59207e-08 0.0167998 1.92322e-07 0.0167996 4.2849e-07 0.0167987 1.09507e-06 0.0167975 2.45192e-06 0.0167925 6.42244e-06 0.0167859 1.41405e-05 0.0167598 4.21991e-05 0.0167248 0.000102696 0.016579 0.000379509 0.0162603 0.00120818 0.0144337 0.00693921 0.0129048 0.00771983 0.0114234 0.0077097 0.00983853 0.00805172 0.00780438 0.00828141 0.00599053 0.00832059 0.00441462 0.00896843 0.00251589 0.0100652 0.0104239 0.0168001 1.19669e-09 0.0168001 3.18788e-09 0.0168001 7.66051e-09 0.0168 1.57636e-08 0.0168 3.85868e-08 0.0168 8.39198e-08 0.0167998 2.17242e-07 0.0167996 4.87731e-07 0.0167986 1.26483e-06 0.0167974 2.88919e-06 0.0167928 7.41323e-06 0.0167857 1.67532e-05 0.0167615 4.93101e-05 0.0167245 0.000119083 0.0165848 0.000438108 0.0162815 0.00139875 0.014592 0.00803858 0.0131413 0.00924052 0.0117633 0.0090883 0.0102788 0.00947942 0.00830807 0.00984835 0.00645257 0.0100138 0.00477139 0.0108501 0.00277665 0.0123447 0.0130584 0.0168001 1.79432e-09 0.0168001 3.99115e-09 0.0168 8.36962e-09 0.0168 1.6228e-08 0.0168 3.90052e-08 0.0168 8.3619e-08 0.0167998 2.19938e-07 0.0167997 4.9146e-07 0.0167987 1.31917e-06 0.0167978 2.98483e-06 0.0167929 8.06631e-06 0.0167863 1.80989e-05 0.0167613 5.53762e-05 0.0167238 0.000133769 0.0165756 0.000502132 0.0163496 0.001556 0.0149222 0.00882764 0.0135368 0.0107539 0.0122585 0.010407 0.01088 0.0108252 0.00902346 0.0113871 0.00708187 0.0117187 0.00527104 0.0127623 0.00318319 0.0147628 0.0161247 0.0168001 1.8683e-09 0.0168001 4.20668e-09 0.0168001 8.59563e-09 0.0168 1.64837e-08 0.0168 3.82321e-08 0.0168 8.10647e-08 0.0167999 2.07822e-07 0.0167998 4.55674e-07 0.0167991 1.24965e-06 0.0167985 2.64395e-06 0.0167937 8.23137e-06 0.0167906 1.65789e-05 0.0167669 5.76853e-05 0.0167432 0.000131643 0.0166182 0.000557166 0.0165188 0.00163632 0.0155352 0.0090358 0.0142061 0.0122663 0.0129911 0.0117583 0.0116806 0.0121436 0.00992677 0.0128633 0.00789029 0.0134276 0.00599745 0.0146656 0.00380254 0.0172984 0.0198322 0.0168001 1.97474e-09 0.0168001 4.28903e-09 0.0168001 9.069e-09 0.0168 1.75598e-08 0.0168 4.17237e-08 0.0168 8.85547e-08 0.0167999 2.26071e-07 0.0167998 4.88653e-07 0.0167993 1.30198e-06 0.0167984 2.67913e-06 0.0167945 8.29535e-06 0.0167935 1.497e-05 0.0167711 5.92977e-05 0.0167642 0.000112247 0.0166885 0.000552392 0.0167842 0.00153212 0.0165765 0.00829404 0.0152614 0.0138358 0.0139489 0.0133149 0.012699 0.0134223 0.0110177 0.0142875 0.00897456 0.0150518 0.00705866 0.0165387 0.00486656 0.0198447 0.0246644 0.0168001 1.41067e-09 0.0168001 3.06307e-09 0.0168001 1.02357e-08 0.0168001 1.07585e-08 0.0168 5.00149e-08 0.0168 5.20975e-08 0.0167999 2.77396e-07 0.0168 2.81786e-07 0.0167991 1.63323e-06 0.0167997 1.463e-06 0.0167942 1.06515e-05 0.0168005 5.97857e-06 0.016756 8.13496e-05 0.0168089 3.91863e-05 0.0166337 0.000624901 0.0170037 0.00103244 0.0183341 0.00602207 0.0168188 0.0156218 0.0149963 0.0152938 0.0138289 0.0146172 0.012252 0.015632 0.0102594 0.016594 0.00848264 0.0182274 0.00657745 0.0220972 0.031211 0.0168001 1.57532e-09 -1.7489e-11 0.0168001 3.51186e-09 -2.23036e-11 0.0168001 6.77603e-09 -2.59542e-11 0.0168 1.43321e-08 -2.78059e-11 0.0168001 2.99912e-08 -3.17136e-11 0.0168 7.15759e-08 -3.19767e-11 0.0168001 1.6212e-07 -3.56775e-11 0.0167997 4.05277e-07 -3.57331e-11 0.0168001 9.39622e-07 -4.03916e-11 0.016798 2.40564e-06 -4.25522e-11 0.0168016 5.64927e-06 -5.36139e-11 0.0167864 1.49436e-05 -6.42325e-11 0.0168218 3.70437e-05 -1.03179e-10 0.0167286 0.000103611 -1.69154e-10 0.0169717 0.00030615 -4.83982e-10 0.0168248 0.0010956 -7.26001e-10 0.0184486 0.00385225 -3.07883e-09 0.0176918 0.0161971 -1.15906e-09 0.0163738 0.0165764 -2.95302e-10 0.0149055 0.0161403 6.36587e-10 0.0134933 0.0168464 2.19299e-10 0.0117481 0.0179098 6.70141e-11 0.0106224 0.0192077 -2.69197e-11 0.0113496 0.0215438 -5.82323e-11 0.0244342 -1.76679e-10 0.0182576 0.0168001 1.55003e-09 -2.04224e-11 0.0168001 3.49981e-09 -2.45316e-11 0.0168001 6.42993e-09 -2.76767e-11 0.0168001 1.38239e-08 -2.9253e-11 0.0168 2.79312e-08 -3.2598e-11 0.0168 6.93958e-08 -3.28761e-11 0.0168 1.51779e-07 -3.58362e-11 0.0167998 3.98337e-07 -3.63129e-11 0.0167996 8.903e-07 -3.98533e-11 0.0167986 2.36986e-06 -4.2317e-11 0.0167978 5.37576e-06 -5.23988e-11 0.0167932 1.42967e-05 -6.01808e-11 0.016789 3.32522e-05 -1.14608e-10 0.0167692 9.59356e-05 -1.15319e-10 0.0167797 0.000254484 -4.58889e-10 0.016839 0.000920118 -6.17871e-10 0.0173364 0.00299812 -2.30304e-09 0.0176728 0.0152072 -3.70927e-09 0.01694 0.0174415 2.46698e-10 0.0157456 0.0173974 5.16647e-10 0.0146978 0.017723 1.41179e-10 0.0135062 0.0186708 5.43119e-11 0.0129645 0.0195525 1.05293e-11 0.0140311 0.0204235 -4.8747e-11 0.0214702 -1.99991e-10 0.0171005 0.0168001 1.38768e-09 -2.3323e-11 0.0168001 3.17779e-09 -2.67252e-11 0.0168001 5.83647e-09 -2.92979e-11 0.0168001 1.23159e-08 -3.06148e-11 0.0168001 2.47784e-08 -3.33652e-11 0.0168 6.01877e-08 -3.35813e-11 0.0168 1.31078e-07 -3.60035e-11 0.0167999 3.36818e-07 -3.63329e-11 0.0167999 7.45482e-07 -3.91411e-11 0.0167995 1.9898e-06 -4.10003e-11 0.0167996 4.2127e-06 -4.86775e-11 0.0167964 1.30028e-05 -5.5851e-11 0.0168 2.40861e-05 -9.16673e-11 0.0167785 9.51045e-05 -1.41207e-10 0.0168024 0.000194278 -3.14737e-10 0.0167612 0.000884235 -5.90332e-10 0.0169825 0.00253331 -1.84459e-09 0.018099 0.0134817 -3.68634e-09 0.0176325 0.0181265 7.62714e-10 0.0167078 0.0183316 5.58549e-10 0.0158884 0.0183253 8.8832e-11 0.0151675 0.0189622 5.41293e-11 0.0149273 0.0195331 -2.87812e-11 0.015671 0.019552 -4.09669e-11 0.0192988 -1.21452e-10 0.0180079 0.0168001 1.34246e-09 -2.59157e-11 0.0168001 3.03097e-09 -2.87322e-11 0.0168001 5.49867e-09 -3.08109e-11 0.0168001 1.16096e-08 -3.1918e-11 0.0168001 2.35268e-08 -3.41417e-11 0.0168 5.72892e-08 -3.42873e-11 0.0168 1.25989e-07 -3.62026e-11 0.0167999 3.23375e-07 -3.63904e-11 0.0167998 7.23748e-07 -3.8473e-11 0.0167992 1.89458e-06 -3.98561e-11 0.0167984 4.18245e-06 -4.47224e-11 0.016796 1.16771e-05 -5.2492e-11 0.016794 2.38094e-05 -7.90992e-11 0.0167844 8.24051e-05 -1.07034e-10 0.0167979 0.000163082 -2.6425e-10 0.0168741 0.000732281 -5.11928e-10 0.0171784 0.00200176 -1.52841e-09 0.0193923 0.0105704 -3.7709e-09 0.0189534 0.0187179 3.69674e-10 0.0179115 0.0193396 2.881e-10 0.0171102 0.0188732 2.78609e-11 0.016621 0.0190742 1.59103e-11 0.0165052 0.0193677 1.64088e-11 0.0167521 0.0190919 -2.29001e-11 0.017989 -5.40665e-11 0.0179955 0.0168001 1.18611e-09 -2.8407e-11 0.0168001 2.71411e-09 -3.06367e-11 0.0168001 3.81405e-09 -3.21985e-11 0.0168001 1.16061e-08 -3.30865e-11 0.0168001 1.5577e-08 -3.4757e-11 0.0168 5.95904e-08 -3.48397e-11 0.0168001 8.45666e-08 -3.62583e-11 0.0167999 3.46082e-07 -3.63874e-11 0.0168 4.95152e-07 -3.79505e-11 0.0167993 2.07443e-06 -3.90095e-11 0.0167999 2.87752e-06 -4.26294e-11 0.0167958 1.2921e-05 -4.86507e-11 0.0168006 1.56344e-05 -6.30469e-11 0.0167825 8.70597e-05 -8.7862e-11 0.0168259 9.57246e-05 -2.02509e-10 0.0168558 0.00064914 -2.87591e-10 0.017455 0.00121461 -9.39206e-10 0.021835 0.00593722 -2.47649e-09 0.0204969 0.0198689 -6.08001e-10 0.0196219 0.019965 -3.83825e-10 0.0183889 0.0198943 -6.06852e-11 0.0179051 0.0193821 -4.55262e-11 0.0178196 0.0193489 -4.43335e-11 0.0179384 0.0189234 3.86874e-12 0.0176079 4.33344e-12 0.0182951 0.0168001 7.42759e-10 -3.0899e-11 0.0168001 1.72577e-09 -3.20333e-11 0.0168001 3.43436e-09 -3.31656e-11 0.0168001 6.62388e-09 -3.45084e-11 0.0168001 1.50387e-08 -3.46358e-11 0.0168001 3.27903e-08 -3.57805e-11 0.0168 8.1232e-08 -3.57952e-11 0.0168002 1.86139e-07 -3.68684e-11 0.0168 4.72942e-07 -3.72735e-11 0.0168007 1.09568e-06 -3.91576e-11 0.0167996 2.87054e-06 -4.17337e-11 0.0168048 6.46439e-06 -4.99239e-11 0.0167965 1.85238e-05 -5.45272e-11 0.0168356 4.02618e-05 -9.3786e-11 0.016777 0.000127744 -1.35058e-10 0.0170799 0.000310655 -2.80332e-10 0.0169562 0.0012076 -6.28865e-10 0.0188853 0.0037526 -1.71357e-09 0.0210929 0.0170308 -2.86721e-09 0.0206483 0.0201828 -4.38797e-10 0.0198761 0.0205341 -2.57776e-10 0.0192616 0.0199437 -8.52989e-11 0.0191147 0.0194404 -1.0471e-10 0.0191395 0.0188233 -9.86291e-11 0.0175439 -3.93799e-11 0.0191567 0.0168001 6.32187e-10 -3.22111e-11 0.0168001 1.3963e-09 -3.31543e-11 0.0168001 2.88741e-09 -3.407e-11 0.0168001 5.5774e-09 -3.51781e-11 0.0168001 1.31198e-08 -3.52685e-11 0.0168001 2.8343e-08 -3.61873e-11 0.0168 7.2435e-08 -3.61692e-11 0.0168 1.62154e-07 -3.69349e-11 0.0167999 4.23102e-07 -3.72351e-11 0.0167999 9.50919e-07 -3.8546e-11 0.0167996 2.51144e-06 -4.0591e-11 0.0167995 5.55502e-06 -4.75884e-11 0.0167983 1.56615e-05 -5.07094e-11 0.0168026 3.19108e-05 -1.08328e-10 0.0167964 0.000110672 -6.61658e-11 0.0168527 0.000227742 -3.37933e-10 0.016993 0.000979023 -4.07869e-10 0.0178661 0.00273431 -1.52634e-09 0.0211566 0.0129923 -3.39788e-09 0.0212859 0.0199313 -1.39337e-10 0.0208135 0.0208981 -3.29841e-11 0.0202223 0.0204743 6.72535e-11 0.020016 0.0195097 -6.13234e-11 0.0199313 0.0186893 -1.17627e-10 0.0174764 -1.27016e-10 0.0197974 0.0168001 4.70427e-10 -3.33646e-11 0.0168001 1.04054e-09 -3.4098e-11 0.0168001 2.58459e-09 -3.48202e-11 0.0168001 3.73916e-09 -3.56793e-11 0.0168001 1.2406e-08 -3.57452e-11 0.0168001 1.91936e-08 -3.64543e-11 0.0168 6.9676e-08 -3.64181e-11 0.0168001 1.11144e-07 -3.69878e-11 0.0168 4.11107e-07 -3.71189e-11 0.0168002 6.54982e-07 -3.7939e-11 0.0167997 2.4539e-06 -3.90757e-11 0.0168008 3.79043e-06 -4.1942e-11 0.0167981 1.51286e-05 -4.86461e-11 0.016805 2.07535e-05 -6.28116e-11 0.0167943 0.00010065 -1.02854e-10 0.0168662 0.00013069 -2.05103e-10 0.0169889 0.000749936 -4.96433e-10 0.0179395 0.00160234 -1.41301e-09 0.0228973 0.00715164 -4.11383e-09 0.0224502 0.0201656 -7.13554e-10 0.0223981 0.0209081 7.0479e-11 0.0217494 0.0211273 5.92564e-11 0.0211133 0.0200928 4.2316e-12 0.0208578 0.0188059 -4.5903e-11 0.0175291 -7.93813e-11 0.0206297 0.0168001 3.54349e-10 -3.41387e-11 0.0168001 8.03378e-10 -3.49572e-11 0.0168001 1.51759e-09 -3.54341e-11 0.0168001 3.32622e-09 -3.58218e-11 0.0168001 6.89595e-09 -3.63715e-11 0.0168001 1.71246e-08 -3.63838e-11 0.0168001 3.81911e-08 -3.68418e-11 0.0168001 9.7703e-08 -3.68676e-11 0.0168002 2.2173e-07 -3.73605e-11 0.0168001 5.67767e-07 -3.78281e-11 0.016801 1.29123e-06 -3.91679e-11 0.0168003 3.37633e-06 -4.17198e-11 0.0168066 7.44326e-06 -4.99527e-11 0.0167994 2.16017e-05 -5.36625e-11 0.0168486 4.42717e-05 -9.60775e-11 0.0168003 0.000148898 -1.38186e-10 0.0171748 0.00033155 -2.91458e-10 0.0173056 0.0013427 -6.25645e-10 0.0201444 0.0040188 -1.58978e-09 0.0232328 0.0165773 -2.2408e-09 0.0232689 0.0207913 -1.9815e-10 0.0227945 0.0215256 -1.13284e-10 0.0220227 0.0207254 1.76824e-11 0.0215902 0.0190479 -1.56631e-11 0.0176445 -2.85615e-11 0.0212321 0.0168001 2.51956e-10 -3.48165e-11 0.0168001 5.64863e-10 -3.5464e-11 0.0168001 9.73672e-10 -3.58216e-11 0.0168001 2.89427e-09 -3.61525e-11 0.0168001 4.4773e-09 -3.65829e-11 0.0168001 1.52169e-08 -3.66078e-11 0.0168001 2.50303e-08 -3.6973e-11 0.0168 8.83198e-08 -3.69945e-11 0.0168001 1.47226e-07 -3.73601e-11 0.0168 5.24915e-07 -3.76317e-11 0.0168002 8.71136e-07 -3.84805e-11 0.0167995 3.15229e-06 -4.01448e-11 0.0168008 5.06922e-06 -4.39901e-11 0.016798 1.96741e-05 -5.1571e-11 0.0168092 2.83688e-05 -7.96042e-11 0.0167996 0.000134075 -9.86201e-11 0.0169141 0.000191857 -2.68855e-10 0.0171233 0.00105026 -4.37877e-10 0.0183013 0.00271673 -1.24952e-09 0.0234423 0.010711 -2.7579e-09 0.0238519 0.0202398 -4.86842e-10 0.0238199 0.0214499 -2.86037e-10 0.0231906 0.0213089 -8.31223e-11 0.0224541 0.0197361 4.76881e-11 0.0179772 -1.13908e-11 0.0219924 0.0168001 1.87245e-11 -3.53872e-11 0.0168001 3.29659e-10 -3.57573e-11 0.0168001 8.80188e-10 -3.60825e-11 0.0168001 1.67686e-09 -3.65828e-11 0.0168001 3.95066e-09 -3.65642e-11 0.0168001 8.32383e-09 -3.69742e-11 0.0168001 2.09355e-08 -3.69291e-11 0.0168001 4.69741e-08 -3.72382e-11 0.0168001 1.21262e-07 -3.72645e-11 0.0168002 2.76523e-07 -3.7655e-11 0.0168001 7.17106e-07 -3.82229e-11 0.0168012 1.63878e-06 -3.96552e-11 0.0168003 4.32792e-06 -4.28106e-11 0.0168081 9.71266e-06 -5.25327e-11 0.0168 2.75518e-05 -5.77818e-11 0.0168595 5.99712e-05 -1.28419e-10 0.0168324 0.000188583 -8.54682e-11 0.0173468 0.000462904 -4.86426e-10 0.0182855 0.00169303 -4.45397e-10 0.0232617 0.00529639 -1.48197e-09 0.0249885 0.0182521 -1.30352e-09 0.025124 0.0212801 -1.62283e-10 0.0245935 0.0217695 -7.15801e-11 0.0234336 0.020748 9.5692e-11 0.0185758 5.47205e-11 0.0226671 0.0168001 -9.29822e-11 -3.53675e-11 0.0168001 2.80671e-10 -3.61595e-11 0.0168001 7.26649e-10 -3.65169e-11 0.0168001 1.16407e-09 -3.68062e-11 0.0168001 3.22013e-09 -3.69015e-11 0.0168001 5.20381e-09 -3.71646e-11 0.0168001 1.69276e-08 -3.71462e-11 0.0168001 2.89712e-08 -3.73334e-11 0.0168001 9.89992e-08 -3.73342e-11 0.0168001 1.71544e-07 -3.75464e-11 0.0168 5.91971e-07 -3.78631e-11 0.0168004 1.02084e-06 -3.86404e-11 0.0167999 3.56711e-06 -4.06784e-11 0.0168022 5.9809e-06 -4.49979e-11 0.0168012 2.22881e-05 -5.39523e-11 0.0168199 3.38635e-05 -8.59642e-11 0.0168259 0.00015245 -1.0627e-10 0.0170147 0.00023837 -2.92235e-10 0.0174152 0.00120497 -4.73361e-10 0.0191537 0.00338513 -1.28736e-09 0.0247777 0.0118765 -2.72061e-09 0.0254011 0.0204832 -5.56419e-10 0.0254599 0.0215342 -3.52148e-10 0.0246473 0.0215228 -1.61618e-11 0.0195637 2.43885e-10 0.0236918 0.0168001 -6.71565e-11 -3.51132e-11 0.0168001 1.38437e-10 -3.68569e-11 0.0168001 3.99833e-10 -3.69561e-11 0.0168001 8.58711e-10 -3.71049e-11 0.0168001 1.6854e-09 -3.72259e-11 0.0168001 3.99269e-09 -3.72212e-11 0.0168001 8.68113e-09 -3.73037e-11 0.0168001 2.22377e-08 -3.72815e-11 0.0168001 5.04058e-08 -3.73437e-11 0.0168001 1.31286e-07 -3.74227e-11 0.0168003 3.00085e-07 -3.76337e-11 0.0168001 7.84343e-07 -3.83653e-11 0.0168014 1.79357e-06 -3.97599e-11 0.0168004 4.7628e-06 -4.34181e-11 0.0168094 1.0789e-05 -5.40009e-11 0.0168027 3.00181e-05 -6.02796e-11 0.0168676 6.76392e-05 -1.29984e-10 0.0168662 0.000202104 -1.10312e-10 0.0174546 0.000518762 -4.90601e-10 0.018907 0.00183394 -5.47512e-10 0.0244788 0.00567081 -2.1882e-09 0.0263808 0.0182838 -1.09893e-09 0.0266415 0.0211647 -2.35681e-10 0.0259254 0.022111 -1.09213e-10 0.0206563 1.69021e-10 0.0247868 0.0168001 -4.1847e-11 -3.49574e-11 0.0168001 8.04474e-11 -3.7172e-11 0.0168001 2.28504e-10 -3.72318e-11 0.0168001 5.88724e-10 -3.73189e-11 0.0168001 9.59835e-10 -3.73852e-11 0.0168001 2.89287e-09 -3.73708e-11 0.0168001 5.0151e-09 -3.74036e-11 0.0168001 1.64268e-08 -3.73744e-11 0.0168001 2.92851e-08 -3.73822e-11 0.0168001 9.78312e-08 -3.74e-11 0.0168001 1.75111e-07 -3.7481e-11 0.0168001 5.87944e-07 -3.78139e-11 0.0168005 1.04716e-06 -3.84704e-11 0.0168004 3.5592e-06 -4.05959e-11 0.0168034 6.17107e-06 -4.48145e-11 0.0168038 2.23397e-05 -5.51818e-11 0.0168287 3.51041e-05 -8.48794e-11 0.016841 0.000152267 -1.25131e-10 0.0170782 0.000245335 -3.04289e-10 0.0175972 0.00119133 -5.90609e-10 0.0197688 0.00333057 -1.51594e-09 0.025776 0.0112163 -3.04465e-09 0.0263936 0.0202404 -7.26611e-10 0.0272169 0.0212349 -3.00858e-10 0.0216572 7.23734e-11 0.0263117 0.0168001 -2.61282e-11 -3.48633e-11 0.0168001 5.12251e-11 -3.73385e-11 0.0168001 1.48694e-10 -3.74191e-11 0.0168001 3.00813e-10 -3.74523e-11 0.0168001 6.76033e-10 -3.74693e-11 0.0168001 1.41973e-09 -3.74912e-11 0.0168001 3.56682e-09 -3.74648e-11 0.0168001 8.02027e-09 -3.74577e-11 0.0168001 2.08302e-08 -3.74307e-11 0.0168001 4.76313e-08 -3.74137e-11 0.0168001 1.24205e-07 -3.74711e-11 0.0168003 2.84973e-07 -3.75684e-11 0.0168002 7.44652e-07 -3.82243e-11 0.0168016 1.70651e-06 -3.93432e-11 0.016801 4.54314e-06 -4.2898e-11 0.0168101 1.02586e-05 -5.32433e-11 0.0168041 2.8969e-05 -6.00866e-11 0.0168724 6.39303e-05 -1.37308e-10 0.0168738 0.000198212 -1.06583e-10 0.0174811 0.000483311 -5.58765e-10 0.0189118 0.00176489 -5.36943e-10 0.0242613 0.00529656 -1.69651e-09 0.0272553 0.0166615 -1.91685e-09 0.0274296 0.0209306 -4.06999e-10 0.0215075 -9.50579e-11 0.0275332 0.0168001 -1.62556e-11 -3.47994e-11 0.0168001 3.33975e-11 -3.74691e-11 0.0168001 9.57675e-11 -3.75165e-11 0.0168001 1.65373e-10 -3.75303e-11 0.0168001 4.48674e-10 -3.7535e-11 0.0168001 7.6783e-10 -3.7537e-11 0.0168001 2.4157e-09 -3.75114e-11 0.0168001 4.39214e-09 -3.74886e-11 0.0168001 1.43328e-08 -3.74574e-11 0.0168001 2.63974e-08 -3.74168e-11 0.0168001 8.62938e-08 -3.74154e-11 0.0168002 1.58914e-07 -3.74225e-11 0.0168002 5.19237e-07 -3.76675e-11 0.0168006 9.50454e-07 -3.80993e-11 0.0168007 3.14094e-06 -3.99654e-11 0.0168037 5.61409e-06 -4.33404e-11 0.0168048 1.96201e-05 -5.39836e-11 0.0168281 3.25092e-05 -7.66386e-11 0.0168487 0.000131246 -1.37737e-10 0.0170644 0.000222267 -2.68165e-10 0.01767 0.000991539 -7.05749e-10 0.0199497 0.00271952 -1.64636e-09 0.026035 0.00910445 -4.03885e-09 0.0275981 0.0192063 -9.35781e-10 0.0207969 -1.82714e-10 0.0284156 0.0168001 -8.55391e-12 -3.47566e-11 0.0168001 1.60671e-11 -3.75608e-11 0.0168001 4.75571e-11 -3.75676e-11 0.0168001 1.04224e-10 -3.7578e-11 0.0168001 2.08811e-10 -3.75763e-11 0.0168001 5.09705e-10 -3.75565e-11 0.0168001 1.12564e-09 -3.75351e-11 0.0168001 2.93547e-09 -3.75055e-11 0.0168001 6.70844e-09 -3.74616e-11 0.0168001 1.7591e-08 -3.74317e-11 0.0168001 4.04216e-08 -3.73776e-11 0.0168001 1.05242e-07 -3.74037e-11 0.0168003 2.41937e-07 -3.74138e-11 0.0168003 6.26876e-07 -3.78844e-11 0.0168016 1.43879e-06 -3.86305e-11 0.0168015 3.78558e-06 -4.1111e-11 0.0168098 8.54143e-06 -4.86096e-11 0.0168063 2.43142e-05 -5.84079e-11 0.0168717 5.19849e-05 -9.6988e-11 0.0168642 0.000169067 -1.80757e-10 0.0173993 0.000379731 -3.88201e-10 0.0184137 0.0014806 -7.58845e-10 0.0228489 0.00424527 -1.68678e-09 0.0276977 0.0135743 -2.4387e-09 0.0202542 -5.73454e-10 0.0281718 0.0168001 -4.58958e-12 -3.47362e-11 0.0168001 8.77439e-12 -3.75977e-11 0.0168001 2.45381e-11 -3.75989e-11 0.0168001 6.0315e-11 -3.76021e-11 0.0168001 1.01391e-10 -3.75927e-11 0.0168001 3.03324e-10 -3.75748e-11 0.0168001 5.6063e-10 -3.75442e-11 0.0168001 1.79191e-09 -3.75204e-11 0.0168001 3.39456e-09 -3.74645e-11 0.0168001 1.09751e-08 -3.74342e-11 0.0168001 2.07901e-08 -3.73602e-11 0.0168001 6.71099e-08 -3.73456e-11 0.0168001 1.26854e-07 -3.73025e-11 0.0168002 4.0856e-07 -3.7472e-11 0.0168006 7.69827e-07 -3.77217e-11 0.0168008 2.48743e-06 -3.90571e-11 0.0168032 4.63489e-06 -4.11933e-11 0.0168064 1.5336e-05 -4.86833e-11 0.0168215 2.78983e-05 -6.19832e-11 0.0168616 9.76105e-05 -1.07727e-10 0.0170048 0.000186981 -1.78618e-10 0.0176589 0.00068754 -5.173e-10 0.01963 0.00191189 -1.28464e-09 0.0260826 0.00610933 -3.8611e-09 0.0170406 -1.54127e-09 0.0288111 0.0168001 -1.96292e-12 -3.47183e-11 0.0168001 3.69849e-12 -3.7612e-11 0.0168001 1.07791e-11 -3.76193e-11 0.0168001 2.14616e-11 -3.76112e-11 0.0168001 6.14454e-11 -3.7604e-11 0.0168001 1.14934e-10 -3.75799e-11 0.0168001 3.54736e-10 -3.75628e-11 0.0168001 7.15246e-10 -3.75102e-11 0.0168001 2.22722e-09 -3.74927e-11 0.0168001 4.49874e-09 -3.74013e-11 0.0168001 1.39416e-08 -3.73881e-11 0.0168001 2.80371e-08 -3.7263e-11 0.0168001 8.614e-08 -3.72826e-11 0.0168003 1.72793e-07 -3.71545e-11 0.0168003 5.27201e-07 -3.74944e-11 0.0168014 1.05254e-06 -3.77094e-11 0.0168014 3.22702e-06 -3.96446e-11 0.0168085 6.29969e-06 -4.27751e-11 0.0168069 2.03911e-05 -5.37658e-11 0.0168589 3.7141e-05 -7.3791e-11 0.016858 0.000136202 -1.54027e-10 0.0172332 0.000254538 -2.75095e-10 0.0178837 0.00103067 -8.41713e-10 0.0208005 0.00283519 -1.83613e-09 0.00885992 -3.9394e-09 0.027235 0.0168001 -3.16393e-13 -3.47127e-11 0.0168001 3.78333e-13 -3.76177e-11 0.0168001 4.96354e-12 -3.762e-11 0.0168001 1.08641e-11 -3.76149e-11 0.0168001 2.06796e-11 -3.7606e-11 0.0168001 5.83849e-11 -3.75865e-11 0.0168001 1.36622e-10 -3.75532e-11 0.0168001 3.86569e-10 -3.75339e-11 0.0168001 9.17512e-10 -3.74613e-11 0.0168001 2.54269e-09 -3.74474e-11 0.0168001 5.95057e-09 -3.73195e-11 0.0168001 1.61209e-08 -3.73291e-11 0.0168001 3.73625e-08 -3.71363e-11 0.0168001 9.94537e-08 -3.72407e-11 0.0168003 2.29119e-07 -3.70423e-11 0.0168004 6.02923e-07 -3.75698e-11 0.0168018 1.38174e-06 -3.79868e-11 0.0168022 3.66488e-06 -4.04846e-11 0.0168114 8.27952e-06 -4.78728e-11 0.0168111 2.33019e-05 -5.75275e-11 0.0168794 5.07077e-05 -9.54623e-11 0.0169009 0.000159677 -1.84766e-10 0.0174661 0.000363713 -3.81987e-10 0.0186939 0.00134533 -8.17668e-10 0.00381189 -1.84972e-09 0.0232022 0.0168001 -1.04062e-14 -3.47141e-11 0.0168001 -1.94292e-13 -3.76112e-11 0.0168001 1.48161e-12 -3.76257e-11 0.0168001 4.06474e-12 -3.76191e-11 0.0168001 5.87333e-12 -3.76063e-11 0.0168001 2.19038e-11 -3.75861e-11 0.0168001 4.53749e-11 -3.7552e-11 0.0168001 1.75339e-10 -3.75272e-11 0.0168001 3.60438e-10 -3.74563e-11 0.0168001 1.26382e-09 -3.7442e-11 0.0168001 2.58149e-09 -3.73078e-11 0.0168001 8.42155e-09 -3.7314e-11 0.0168001 1.69363e-08 -3.70976e-11 0.0168001 5.37338e-08 -3.71653e-11 0.0168002 1.06433e-07 -3.68892e-11 0.0168002 3.34739e-07 -3.72067e-11 0.0168007 6.54435e-07 -3.71535e-11 0.0168009 2.06436e-06 -3.87161e-11 0.0168035 3.98329e-06 -4.07419e-11 0.0168066 1.27516e-05 -4.87831e-11 0.0168217 2.46592e-05 -6.46252e-11 0.0168644 8.01918e-05 -1.03713e-10 0.0169873 0.000169257 -2.02877e-10 0.0176373 0.000569339 -3.9836e-10 0.00162283 -9.01497e-10 0.0195868 0.0168001 -4.73471e-16 -3.47148e-11 0.0168001 1.28765e-14 -3.76082e-11 0.0168001 7.61212e-13 -3.7626e-11 0.0168001 1.73833e-12 -3.76173e-11 0.0168001 2.67582e-12 -3.76042e-11 0.0168001 5.41906e-12 -3.75699e-11 0.0168001 1.03744e-11 -3.7556e-11 0.0168001 3.89459e-11 -3.74993e-11 0.0168001 1.48348e-10 -3.74609e-11 0.0168001 3.98865e-10 -3.73786e-11 0.0168001 1.2267e-09 -3.73335e-11 0.0168001 3.09454e-09 -3.7187e-11 0.0168001 8.68109e-09 -3.71909e-11 0.0168001 2.10752e-08 -3.69185e-11 0.0168001 5.73958e-08 -3.69963e-11 0.0168002 1.3587e-07 -3.66455e-11 0.0168003 3.65e-07 -3.70255e-11 0.0168011 8.5284e-07 -3.69676e-11 0.0168013 2.28263e-06 -3.87267e-11 0.0168067 5.2911e-06 -4.07197e-11 0.0168088 1.42484e-05 -5.04163e-11 0.016845 3.31367e-05 -6.04409e-11 0.0168745 9.09733e-05 -1.31191e-10 0.0171652 0.000222291 -1.78139e-10 0.000675208 -6.61289e-10 0.0178779 0.0168001 1.3736e-14 -3.47153e-11 0.0168001 3.69432e-14 -3.7607e-11 0.0168001 2.86645e-13 -3.76258e-11 0.0168001 7.04223e-13 -3.76176e-11 0.0168001 1.20363e-12 -3.75944e-11 0.0168001 1.91972e-12 -3.75706e-11 0.0168001 3.55483e-12 -3.75008e-11 0.0168001 5.12402e-12 -3.74758e-11 0.0168001 2.99068e-11 -3.74178e-11 0.0168001 9.00237e-11 -3.73334e-11 0.0168001 3.98015e-10 -3.7271e-11 0.0168001 1.05228e-09 -3.71499e-11 0.0168001 3.46188e-09 -3.70752e-11 0.0168001 8.51712e-09 -3.68722e-11 0.0168001 2.48646e-08 -3.68843e-11 0.0168001 5.86619e-08 -3.65292e-11 0.0168002 1.65014e-07 -3.67181e-11 0.0168005 3.80767e-07 -3.64088e-11 0.0168009 1.04964e-06 -3.73406e-11 0.0168028 2.39839e-06 -3.80885e-11 0.016806 6.547e-06 -4.27791e-11 0.0168176 1.4975e-05 -5.01317e-11 0.0168418 4.08368e-05 -7.8674e-11 0.0169193 9.72829e-05 -1.33755e-10 0.000273375 -3.33356e-10 0.017162 0.0168001 -1.25098e-14 -3.47149e-11 0.0168001 4.62192e-14 -3.76081e-11 0.0168001 8.19063e-14 -3.76262e-11 0.0168001 2.15295e-13 -3.76174e-11 0.0168001 4.31511e-13 -3.76e-11 0.0168001 2.45842e-13 -3.75619e-11 0.0168001 5.51257e-12 -3.75041e-11 0.0168001 -1.35567e-12 -3.74367e-11 0.0168001 1.46551e-11 -3.73385e-11 0.0168001 1.22715e-11 -3.72401e-11 0.0168001 8.11795e-11 -3.7182e-11 0.0168001 2.60722e-10 -3.70061e-11 0.0168001 1.03988e-09 -3.69796e-11 0.0168001 2.83607e-09 -3.68303e-11 0.0168001 9.54149e-09 -3.67522e-11 0.0168001 2.35269e-08 -3.64764e-11 0.0168001 6.94761e-08 -3.6482e-11 0.0168003 1.64504e-07 -3.60677e-11 0.0168005 4.63258e-07 -3.6493e-11 0.0168014 1.06705e-06 -3.65166e-11 0.0168029 2.93423e-06 -3.87937e-11 0.0168084 6.6358e-06 -4.14947e-11 0.0168174 1.83755e-05 -5.57236e-11 0.0168633 4.09039e-05 -7.13136e-11 0.000119604 -1.77423e-10 0.0169264 0.0168001 -1.60084e-14 -3.47149e-11 0.0168001 1.35985e-14 -3.76079e-11 0.0168001 2.28698e-13 -3.76264e-11 0.0168001 3.94452e-13 -3.76182e-11 0.0168001 7.06127e-13 -3.75952e-11 0.0168001 1.24513e-12 -3.75658e-11 0.0168001 2.48586e-12 -3.75083e-11 0.0168001 4.45661e-12 -3.74211e-11 0.0168001 8.30929e-12 -3.73444e-11 0.0168001 6.31236e-12 -3.72223e-11 0.0168001 4.72855e-11 -3.70689e-11 0.0168001 8.22262e-11 -3.6964e-11 0.0168001 2.29742e-10 -3.67678e-11 0.0168001 6.20309e-10 -3.66832e-11 0.0168001 2.57777e-09 -3.6629e-11 0.0168001 6.73193e-09 -3.6421e-11 0.0168001 2.64623e-08 -3.63187e-11 0.0168002 5.83682e-08 -3.59833e-11 0.0168003 1.95424e-07 -3.6055e-11 0.0168007 4.19525e-07 -3.59122e-11 0.0168013 1.29934e-06 -3.7007e-11 0.0168039 2.72545e-06 -3.81752e-11 0.0168077 8.26736e-06 -4.43675e-11 0.0168225 1.7091e-05 -5.4369e-11 5.22216e-05 -9.38486e-11 0.01685 0.0168001 -8.75692e-14 -3.47149e-11 0.0168001 1.55594e-13 -3.76079e-11 0.0168001 1.29609e-13 -3.76265e-11 0.0168001 1.30547e-13 -3.76178e-11 0.0168001 8.77344e-13 -3.75986e-11 0.0168001 5.25581e-13 -3.75607e-11 0.0168001 2.51944e-12 -3.75115e-11 0.0168001 4.96066e-12 -3.74309e-11 0.0168001 7.81228e-12 -3.73442e-11 0.0168001 1.84902e-11 -3.71987e-11 0.0168001 3.53438e-11 -3.70815e-11 0.0168001 1.36969e-11 -3.69499e-11 0.0168001 1.79664e-10 -3.67276e-11 0.0168001 1.33655e-10 -3.66085e-11 0.0168001 7.60484e-10 -3.64027e-11 0.0168001 1.45629e-09 -3.61875e-11 0.0168001 5.14968e-09 -3.59635e-11 0.0168001 1.93611e-08 -3.58887e-11 0.0168003 5.1279e-08 -3.58516e-11 0.0168003 1.7866e-07 -3.58637e-11 0.016801 4.08249e-07 -3.59315e-11 0.0168013 1.27847e-06 -3.70229e-11 0.0168051 2.82126e-06 -3.84147e-11 0.0168068 8.39983e-06 -4.51986e-11 1.82932e-05 -5.68702e-11 0.0168291 0.0168001 -2.44559e-14 -3.47146e-11 0.0168001 2.98788e-14 -3.76086e-11 0.0168001 1.43133e-13 -3.76255e-11 0.0168001 2.01258e-13 -3.76161e-11 0.0168001 5.14245e-13 -3.75999e-11 0.0168001 1.9834e-12 -3.75538e-11 0.0168001 4.1937e-13 -3.75179e-11 0.0168001 1.01723e-11 -3.7415e-11 0.0168001 1.22028e-11 -3.73555e-11 0.0168001 1.44091e-11 -3.71958e-11 0.0168001 2.44708e-11 -3.71048e-11 0.0168001 6.24155e-11 -3.69132e-11 0.0168001 3.27771e-11 -3.6785e-11 0.0168001 2.24588e-10 -3.65198e-11 0.0168001 1.87142e-10 -3.63483e-11 0.0168001 1.0911e-09 -3.59976e-11 0.0168001 8.6753e-10 -3.58177e-11 0.0168002 4.36779e-09 -3.54554e-11 0.0168002 1.11544e-08 -3.54719e-11 0.0168003 3.73181e-08 -3.54233e-11 0.0168005 1.46871e-07 -3.51591e-11 0.0168011 3.55226e-07 -3.59638e-11 0.0168016 1.19127e-06 -3.66175e-11 0.0168054 2.67491e-06 -3.88916e-11 8.18005e-06 -4.52542e-11 0.016808 0.0168001 -7.2976e-15 -3.47146e-11 0.0168001 6.25623e-15 -3.76085e-11 0.0168001 2.64881e-14 -3.76256e-11 0.0168001 4.53139e-14 -3.76163e-11 0.0168001 1.11456e-13 -3.76005e-11 0.0168001 5.13804e-13 -3.75612e-11 0.0168001 -6.38785e-14 -3.75096e-11 0.0168001 2.98017e-12 -3.74275e-11 0.0168001 4.05687e-12 -3.73614e-11 0.0168001 6.68601e-12 -3.71906e-11 0.0168001 1.28228e-11 -3.70815e-11 0.0168001 -3.35028e-11 -3.69589e-11 0.0168001 8.31058e-11 -3.67334e-11 0.0168001 -1.22783e-12 -3.65754e-11 0.0168001 3.66082e-10 -3.62655e-11 0.0168001 4.52908e-11 -3.61103e-11 0.0168001 1.22065e-09 -3.58414e-11 0.0168001 5.13087e-10 -3.56921e-11 0.0168002 5.45456e-09 -3.5377e-11 0.0168003 4.85674e-09 -3.52329e-11 0.0168005 2.75549e-08 -3.49462e-11 0.0168006 9.32976e-08 -3.52606e-11 0.0168015 2.96497e-07 -3.51686e-11 0.016802 9.64885e-07 -3.60818e-11 2.49488e-06 -3.85628e-11 0.016806 0.0168001 -1.25784e-15 -3.47146e-11 0.0168001 1.89267e-17 -3.76085e-11 0.0168001 1.26682e-14 -3.76256e-11 0.0168001 1.98645e-14 -3.76162e-11 0.0168001 3.8481e-14 -3.76005e-11 0.0168001 1.6079e-13 -3.75616e-11 0.0168001 -1.70846e-13 -3.75086e-11 0.0168001 1.36024e-13 -3.74285e-11 0.0168001 -7.3807e-13 -3.73597e-11 0.0168001 9.2627e-13 -3.71901e-11 0.0168001 5.38213e-12 -3.71057e-11 0.0168001 1.20407e-11 -3.6908e-11 0.0168001 6.18143e-11 -3.67796e-11 0.0168001 1.29138e-10 -3.6524e-11 0.0168001 2.88908e-10 -3.63815e-11 0.0168001 3.57818e-10 -3.61052e-11 0.0168001 8.35399e-10 -3.5936e-11 0.0168001 1.61995e-09 -3.55998e-11 0.0168002 3.27544e-09 -3.5526e-11 0.0168003 5.68744e-09 -3.54824e-11 0.0168004 8.17385e-09 -3.61578e-11 0.0168006 1.98141e-08 -3.76418e-11 0.0168011 4.91853e-08 -3.69386e-11 0.0168016 2.19078e-07 -3.71641e-11 6.05249e-07 -3.52623e-11 0.0168036 0.0168001 7.58566e-16 -3.47146e-11 0.0168001 -2.2159e-15 -3.76085e-11 0.0168001 3.03788e-15 -3.76255e-11 0.0168001 7.52154e-15 -3.76162e-11 0.0168001 1.60839e-14 -3.76005e-11 0.0168001 6.93385e-14 -3.7562e-11 0.0168001 -1.04848e-13 -3.75072e-11 0.0168001 1.12094e-13 -3.74286e-11 0.0168001 -1.52707e-12 -3.73565e-11 0.0168001 1.88217e-12 -3.71903e-11 0.0168001 1.08621e-11 -3.71035e-11 0.0168001 7.09532e-11 -3.69094e-11 0.0168001 1.04183e-10 -3.67801e-11 0.0168001 1.96447e-10 -3.653e-11 0.0168001 3.16791e-10 -3.63764e-11 0.0168001 4.25979e-10 -3.60778e-11 0.0168001 8.97733e-10 -3.58817e-11 0.0168001 2.54393e-09 -3.54899e-11 0.0168002 3.48956e-09 -3.53359e-11 0.0168003 1.02364e-08 -3.5054e-11 0.0168004 5.33333e-09 -3.49884e-11 0.0168006 2.37386e-08 -3.49529e-11 0.0168009 1.2009e-08 -3.50449e-11 0.0168017 6.71133e-08 -3.52332e-11 1.19239e-07 -3.53653e-11 0.0168025 0.0168001 7.14865e-16 -3.47146e-11 0.0168001 -1.6289e-15 -3.76085e-11 0.0168001 9.91156e-15 -3.76256e-11 0.0168001 2.75672e-14 -3.76162e-11 0.0168001 6.25164e-14 -3.76005e-11 0.0168001 2.34093e-13 -3.7562e-11 0.0168001 2.54182e-14 -3.75066e-11 0.0168001 -1.44075e-14 -3.74295e-11 0.0168001 1.27739e-13 -3.73529e-11 0.0168001 1.52245e-12 -3.71991e-11 0.0168001 -4.87815e-12 -3.71343e-11 0.0168001 5.32686e-11 -3.70379e-11 0.0168001 1.98813e-11 -3.68914e-11 0.0168001 7.65697e-11 -3.66064e-11 0.0168001 1.60737e-10 -3.6395e-11 0.0168001 4.01549e-10 -3.58635e-11 0.0168001 8.53169e-10 -3.56373e-11 0.0168001 1.16936e-09 -3.45292e-11 0.0168002 2.8452e-09 -3.58836e-11 0.0168003 1.67598e-09 -3.53142e-11 0.0168004 9.41977e-09 -3.48189e-11 0.0168005 3.0577e-09 -3.54966e-11 0.0168008 2.26556e-08 -3.61616e-11 0.0168014 5.17092e-09 -3.57936e-11 6.41077e-08 -3.63352e-11 0.0168023 0.0168001 8.22331e-17 -3.47146e-11 0.0168001 1.49024e-16 -3.76085e-11 0.0168001 2.97977e-15 -3.76256e-11 0.0168001 4.99616e-15 -3.76163e-11 0.0168001 6.36178e-15 -3.76006e-11 0.0168001 2.33287e-14 -3.75627e-11 0.0168001 5.76558e-14 -3.75059e-11 0.0168001 -6.6015e-14 -3.74291e-11 0.0168001 5.88007e-13 -3.73545e-11 0.0168001 9.28612e-13 -3.72077e-11 0.0168001 -3.76589e-12 -3.70819e-11 0.0168001 1.99895e-11 -3.71076e-11 0.0168001 -2.53986e-11 -3.68083e-11 0.0168001 1.07594e-11 -3.66143e-11 0.0168001 6.15351e-11 -3.63194e-11 0.0168001 7.30402e-10 -3.56901e-11 0.0168001 5.2449e-10 -3.53899e-11 0.0168001 1.35199e-09 -3.50495e-11 0.0168002 8.16405e-10 -3.49084e-11 0.0168003 3.45376e-09 -3.47042e-11 0.0168004 1.97506e-09 -3.47563e-11 0.0168005 6.64986e-09 -3.46917e-11 0.0168008 3.29007e-09 -3.4839e-11 0.0168013 1.64077e-08 -3.45006e-11 7.37831e-09 -3.47466e-11 0.0168021 0.0168001 -8.73368e-16 -3.47146e-11 0.0168001 1.84358e-15 -3.76085e-11 0.0168001 -2.90572e-15 -3.76256e-11 0.0168001 -9.22612e-15 -3.76163e-11 0.0168001 -2.55613e-14 -3.76006e-11 0.0168001 -1.30621e-13 -3.75627e-11 0.0168001 3.62724e-14 -3.75061e-11 0.0168001 1.36847e-13 -3.7428e-11 0.0168001 1.03347e-13 -3.73556e-11 0.0168001 1.3719e-12 -3.72086e-11 0.0168001 -1.90467e-12 -3.70516e-11 0.0168001 1.77636e-12 -3.70835e-11 0.0168001 -5.31106e-11 -3.66811e-11 0.0168001 5.00926e-11 -3.65354e-11 0.0168001 -5.60107e-11 -3.63591e-11 0.0168001 2.64184e-10 -3.58363e-11 0.0168001 -6.06686e-11 -3.66089e-11 0.0168001 5.51122e-10 -3.50488e-11 0.0168002 -1.37588e-10 -3.58123e-11 0.0168003 1.53426e-09 -3.41061e-11 0.0168004 2.83694e-10 -3.48352e-11 0.0168005 2.45713e-09 -3.48463e-11 0.0168009 -6.49612e-10 -3.5133e-11 0.0168014 5.84277e-09 -3.44559e-11 -6.47455e-10 -3.57356e-11 0.0168022 0.0168001 1.10311e-15 -3.47146e-11 0.0168001 -1.57437e-15 -3.76085e-11 0.0168001 1.17912e-14 -3.76256e-11 0.0168001 2.8906e-14 -3.76162e-11 0.0168001 5.65505e-14 -3.76005e-11 0.0168001 1.94146e-13 -3.75621e-11 0.0168001 3.39648e-14 -3.75067e-11 0.0168001 -5.70564e-14 -3.74291e-11 0.0168001 1.79714e-13 -3.73552e-11 0.0168001 -3.80799e-13 -3.72139e-11 0.0168001 5.80915e-13 -3.70378e-11 0.0168001 3.63592e-12 -3.70271e-11 0.0168001 1.87555e-11 -3.64137e-11 0.0168001 -2.08379e-11 -3.67645e-11 0.0168001 8.91338e-12 -3.63505e-11 0.0168001 7.92047e-11 -3.5862e-11 0.0168001 -5.85835e-11 -3.6304e-11 0.0168001 1.05419e-10 -3.51594e-11 0.0168002 -8.72625e-11 -3.56212e-11 0.0168003 3.46299e-10 -3.43025e-11 0.0168004 1.11689e-10 -3.49865e-11 0.0168005 2.83912e-10 -3.50141e-11 0.0168008 -1.15275e-10 -3.48228e-11 0.0168014 7.50098e-10 -3.46839e-11 -2.69302e-10 -3.53138e-11 0.0168022 0.0168001 4.57154e-16 -3.47146e-11 0.0168001 -1.26418e-16 -3.76085e-11 0.0168001 3.90773e-15 -3.76256e-11 0.0168001 8.90059e-15 -3.76164e-11 0.0168001 1.93206e-14 -3.76006e-11 0.0168001 3.43899e-14 -3.75627e-11 0.0168001 1.2773e-14 -3.75062e-11 0.0168001 1.28977e-13 -3.7428e-11 0.0168001 -2.94094e-13 -3.7356e-11 0.0168001 2.51021e-13 -3.72098e-11 0.0168001 2.5307e-13 -3.70365e-11 0.0168001 3.86014e-13 -3.70327e-11 0.0168001 1.12444e-11 -3.65507e-11 0.0168001 -1.57227e-11 -3.66742e-11 0.0168001 3.80173e-11 -3.62196e-11 0.0168001 -2.97773e-11 -3.60599e-11 0.0168001 2.75491e-12 -3.62047e-11 0.0168001 -1.92946e-12 -3.54546e-11 0.0168002 1.83656e-12 -3.52009e-11 0.0168003 5.17801e-11 -3.5158e-11 0.0168004 9.10821e-11 -3.49215e-11 0.0168005 -6.43039e-12 -3.48911e-11 0.0168008 1.85256e-11 -3.46999e-11 0.0168014 8.45802e-11 -3.46773e-11 -1.04191e-10 -3.51625e-11 0.0168022 0.0168001 -7.41858e-16 -3.47146e-11 0.0168001 9.88684e-16 -3.76085e-11 0.0168001 -4.45146e-15 -3.76256e-11 0.0168001 -1.2259e-14 -3.76164e-11 0.0168001 -3.39653e-14 -3.76007e-11 0.0168001 -1.42588e-13 -3.75627e-11 0.0168001 1.97039e-14 -3.75061e-11 0.0168001 9.49369e-14 -3.74285e-11 0.0168001 -4.35388e-15 -3.73551e-11 0.0168001 3.95902e-13 -3.7212e-11 0.0168001 -1.80797e-12 -3.70386e-11 0.0168001 -6.02344e-12 -3.70357e-11 0.0168001 -4.77554e-11 -3.66236e-11 0.0168001 6.17197e-11 -3.65404e-11 0.0168001 -9.99175e-11 -3.63696e-11 0.0168001 -1.68398e-11 -3.5886e-11 0.0168001 -9.24327e-11 -3.63557e-11 0.0168001 -1.45451e-11 -3.54397e-11 0.0168002 8.60957e-11 -3.50641e-11 0.0168003 -4.07271e-12 -3.52305e-11 0.0168004 6.28122e-13 -3.49589e-11 0.0168005 -3.73815e-11 -3.48694e-11 0.0168008 3.96263e-11 -3.46116e-11 0.0168014 1.12577e-11 -3.46861e-11 -2.56672e-11 -3.50654e-11 0.0168022 0.0168001 3.39282e-17 -3.47146e-11 0.0168001 4.1487e-16 -3.76085e-11 0.0168001 9.16818e-15 -3.76256e-11 0.0168001 1.36634e-14 -3.76163e-11 0.0168001 1.08269e-14 -3.76005e-11 0.0168001 5.17642e-14 -3.75622e-11 0.0168001 -3.55262e-14 -3.75066e-11 0.0168001 -1.00634e-13 -3.74292e-11 0.0168001 3.77379e-13 -3.73547e-11 0.0168001 -6.66456e-14 -3.72137e-11 0.0168001 3.36647e-13 -3.70328e-11 0.0168001 3.41568e-13 -3.70006e-11 0.0168001 -7.83975e-12 -3.63793e-11 0.0168001 4.8788e-12 -3.68452e-11 0.0168001 -5.8453e-11 -3.61369e-11 0.0168001 -1.55908e-11 -3.60047e-11 0.0168001 -6.11738e-11 -3.6187e-11 0.0168001 -4.93087e-12 -3.53198e-11 0.0168002 3.85153e-11 -3.52592e-11 0.0168003 -2.22027e-11 -3.52796e-11 0.0168004 -2.45219e-11 -3.49126e-11 0.0168006 -2.51353e-11 -3.48411e-11 0.0168008 2.46242e-11 -3.46317e-11 0.0168014 1.18107e-11 -3.47227e-11 8.74898e-12 -3.50864e-11 0.0168022 0.0168001 -1.19989e-15 -3.47146e-11 0.0168001 1.33855e-15 -3.76085e-11 0.0168001 -8.47396e-15 -3.76256e-11 0.0168001 -1.56159e-14 -3.76164e-11 0.0168001 -2.15982e-14 -3.76006e-11 0.0168001 -9.44228e-14 -3.75627e-11 0.0168001 3.52676e-14 -3.75061e-11 0.0168001 1.01998e-13 -3.74281e-11 0.0168001 -9.05432e-14 -3.73561e-11 0.0168001 5.55759e-13 -3.7211e-11 0.0168001 4.79651e-13 -3.70356e-11 0.0168001 -1.41202e-12 -3.70068e-11 0.0168001 -1.98786e-11 -3.64291e-11 0.0168001 8.85639e-12 -3.68172e-11 0.0168001 -7.15749e-11 -3.60877e-11 0.0168001 -3.37866e-11 -3.60281e-11 0.0168001 -5.62637e-11 -3.61429e-11 0.0168001 1.32521e-11 -3.5361e-11 0.0168002 6.29538e-11 -3.53344e-11 0.0168003 2.46469e-11 -3.52511e-11 0.0168004 1.04319e-12 -3.48913e-11 0.0168005 -1.09451e-11 -3.48376e-11 0.0168008 8.32203e-12 -3.46637e-11 0.0168014 -6.67316e-13 -3.47266e-11 -3.65055e-12 -3.5084e-11 0.0168022 0.0168001 1.19653e-15 -3.47146e-11 0.0168001 -1.73309e-15 -3.76085e-11 0.0168001 8.69773e-15 -3.76256e-11 0.0168001 1.99815e-14 -3.76163e-11 0.0168001 3.87327e-14 -3.76005e-11 0.0168001 1.35068e-13 -3.75621e-11 0.0168001 1.90463e-14 -3.75066e-11 0.0168001 -6.10935e-14 -3.74291e-11 0.0168001 4.69251e-13 -3.73549e-11 0.0168001 -1.88436e-13 -3.72138e-11 0.0168001 2.81744e-13 -3.70364e-11 0.0168001 1.99401e-12 -3.69893e-11 0.0168001 6.2755e-12 -3.63154e-11 0.0168001 -1.58887e-11 -3.68751e-11 0.0168001 3.65012e-11 -3.59108e-11 0.0168001 6.25453e-12 -3.59695e-11 0.0168001 6.1268e-12 -3.60345e-11 0.0168001 -1.56154e-11 -3.53935e-11 0.0168002 -2.1516e-11 -3.54832e-11 0.0168003 -7.5712e-13 -3.53126e-11 0.0168004 1.80338e-11 -3.48705e-11 0.0168006 8.32617e-12 -3.48025e-11 0.0168008 1.03098e-12 -3.46699e-11 0.0168014 -1.27105e-11 -3.47433e-11 -1.36899e-11 -3.51132e-11 0.0168022 0.0168001 -3.47146e-11 0.0168001 -3.76085e-11 0.0168001 -3.76256e-11 0.0168001 -3.76163e-11 0.0168001 -3.76006e-11 0.0168001 -3.75626e-11 0.0168001 -3.75063e-11 0.0168001 -3.74282e-11 0.0168001 -3.73563e-11 0.0168001 -3.72109e-11 0.0168001 -3.70362e-11 0.0168001 -3.69993e-11 0.0168001 -3.63832e-11 0.0168001 -3.68524e-11 0.0168001 -3.60686e-11 0.0168001 -3.6004e-11 0.0168001 -3.6082e-11 0.0168001 -3.53641e-11 0.0168002 -3.53909e-11 0.0168003 -3.52751e-11 0.0168004 -3.48957e-11 0.0168005 -3.48191e-11 0.0168008 -3.46751e-11 0.0168014 -3.47261e-11 -3.51016e-11 0.0168022 0.0168001 1.85014e-10 -1.22883e-15 0.0168001 1.09323e-09 -4.33764e-15 0.0168001 3.62829e-09 -9.85958e-15 0.0168001 1.04632e-08 -1.40316e-14 0.0168001 2.6004e-08 -2.27146e-14 0.0168 6.71267e-08 -2.64283e-14 0.0168001 1.5803e-07 -3.74292e-14 0.0167997 4.00998e-07 -3.65789e-14 0.0168002 9.36242e-07 -4.58117e-14 0.016798 2.40302e-06 -4.70999e-14 0.0168016 5.64822e-06 -5.58925e-14 0.0167864 1.49491e-05 -1.58956e-13 0.0168218 3.70468e-05 -4.65149e-13 0.0167286 0.00010365 -1.46888e-12 0.0169719 0.000306218 -6.04793e-12 0.0168252 0.00109582 -2.12032e-11 0.0184504 0.0038537 -7.22542e-11 0.0176922 0.0161976 -1.12436e-10 0.0163734 0.0165761 -5.79475e-11 0.0149056 0.0161396 -1.99494e-11 0.0134936 0.016846 -3.97944e-11 0.0117484 0.0179096 -3.66314e-11 0.0106226 0.0192074 -1.04072e-12 0.0113495 0.0215434 -4.67017e-11 0.024434 5.80055e-11 0.0182576 0.0168001 1.39683e-10 -1.38558e-15 0.0168001 1.09399e-09 -4.77137e-15 0.0168001 3.33148e-09 -1.07966e-14 0.0168001 1.01706e-08 -1.51611e-14 0.0168 2.40762e-08 -2.432e-14 0.0168 6.53641e-08 -2.82383e-14 0.0168 1.479e-07 -3.87005e-14 0.0167998 3.94679e-07 -3.94518e-14 0.0167996 8.87238e-07 -4.6992e-14 0.0167986 2.3677e-06 -4.72824e-14 0.0167978 5.37586e-06 -4.49055e-14 0.0167933 1.42986e-05 -1.55533e-13 0.016789 3.32664e-05 -2.66592e-13 0.0167692 9.59352e-05 -1.47715e-12 0.0167798 0.000254571 -3.87509e-12 0.0168392 0.000920226 -1.72544e-11 0.0173373 0.00299879 -5.52631e-11 0.0176733 0.0152082 -1.54272e-10 0.0169406 0.0174411 -4.91817e-11 0.0157459 0.0173969 -3.55231e-11 0.0146983 0.0177226 -3.2212e-11 0.0135065 0.0186707 -3.89472e-11 0.0129647 0.0195522 -1.54675e-11 0.014031 0.0204232 1.24324e-11 0.0214701 6.55623e-11 0.0171005 0.0168001 1.21637e-10 -1.53832e-15 0.0168001 9.52078e-10 -5.2123e-15 0.0168001 2.94153e-09 -1.17233e-14 0.0168001 8.89459e-09 -1.6291e-14 0.0168001 2.11563e-08 -2.59824e-14 0.0168 5.64231e-08 -3.00635e-14 0.0168 1.2748e-07 -4.11873e-14 0.0167999 3.33457e-07 -4.21578e-14 0.0167999 7.4274e-07 -5.04527e-14 0.0167995 1.98785e-06 -4.68612e-14 0.0167996 4.21288e-06 -3.2673e-14 0.0167964 1.30045e-05 -1.39682e-13 0.0168 2.4095e-05 -6.04147e-14 0.0167785 9.51301e-05 -1.3697e-12 0.0168025 0.000194323 -2.36725e-12 0.0167612 0.000884367 -1.74371e-11 0.0169827 0.00253382 -4.79813e-11 0.0180988 0.0134834 -1.52254e-10 0.0176324 0.018126 -4.79444e-11 0.0167081 0.018331 -3.74211e-11 0.0158887 0.0183251 -1.6664e-11 0.0151677 0.018962 -6.00849e-11 0.0149274 0.0195329 1.29498e-11 0.0156709 0.0195518 9.51798e-11 0.0192987 -1.48591e-11 0.0180077 0.0168001 1.09958e-10 -1.6751e-15 0.0168001 9.20801e-10 -5.62978e-15 0.0168001 2.81254e-09 -1.25786e-14 0.0168001 8.49351e-09 -1.73692e-14 0.0168001 2.02192e-08 -2.75411e-14 0.0168 5.39361e-08 -3.17625e-14 0.0168 1.22759e-07 -4.34826e-14 0.0167999 3.20406e-07 -4.46775e-14 0.0167998 7.2122e-07 -5.47941e-14 0.0167992 1.89267e-06 -4.84796e-14 0.0167984 4.18171e-06 -5.2561e-14 0.016796 1.16778e-05 -1.00385e-13 0.016794 2.38168e-05 5.37018e-14 0.0167844 8.24216e-05 -1.59394e-12 0.0167979 0.000163123 -7.1438e-13 0.0168741 0.000732472 -1.62479e-11 0.0171784 0.00200233 -3.94893e-11 0.0193914 0.0105732 -1.37142e-10 0.018953 0.0187171 -6.33158e-11 0.0179114 0.0193389 -4.73717e-11 0.0171104 0.0188727 -1.09596e-11 0.0166211 0.0190738 -3.96091e-11 0.0165052 0.0193673 -1.38258e-11 0.016752 0.0190916 2.34624e-11 0.0179889 6.31803e-12 0.0179953 0.0168001 3.69064e-11 -1.80786e-15 0.0168001 9.92763e-10 -6.08494e-15 0.0168001 1.72891e-09 -1.3453e-14 0.0168001 8.8049e-09 -1.84915e-14 0.0168001 1.31033e-08 -2.9135e-14 0.0168 5.65575e-08 -3.34195e-14 0.0168001 8.20879e-08 -4.54776e-14 0.0167999 3.43347e-07 -4.6526e-14 0.0168 4.93139e-07 -5.6416e-14 0.0167993 2.07252e-06 -5.04117e-14 0.0167999 2.87671e-06 -5.52812e-14 0.0167959 1.29203e-05 -8.29387e-14 0.0168006 1.56398e-05 -1.58871e-13 0.0167825 8.70649e-05 -7.8219e-13 0.016826 9.57678e-05 -1.7123e-12 0.0168561 0.000649213 -9.61812e-12 0.0174552 0.00121498 -2.65816e-11 0.0218348 0.00593852 -9.34138e-11 0.0204972 0.0198694 -9.507e-11 0.019622 0.0199649 -7.15244e-11 0.0183889 0.0198937 -2.47047e-11 0.0179049 0.0193815 -3.59025e-11 0.0178193 0.0193483 -2.03346e-11 0.0179381 0.0189229 4.68465e-12 0.0176076 5.93625e-12 0.0182948 0.0168001 7.69265e-11 -1.26003e-15 0.0168001 4.97081e-10 -7.88674e-15 0.0168001 1.77903e-09 -1.162e-14 0.0168001 4.75548e-09 -2.22491e-14 0.0168001 1.2888e-08 -2.64831e-14 0.0168001 3.06829e-08 -3.91781e-14 0.0168 7.90094e-08 -4.17707e-14 0.0168002 1.84181e-07 -5.46145e-14 0.0168 4.71135e-07 -4.86912e-14 0.0168007 1.09452e-06 -5.45833e-14 0.0167996 2.87019e-06 -3.59629e-14 0.0168048 6.46612e-06 -1.53672e-14 0.0167965 1.85281e-05 -1.06619e-13 0.0168356 4.02669e-05 -1.20767e-13 0.016777 0.000127789 -1.53494e-12 0.01708 0.00031069 -5.7157e-12 0.0169564 0.00120783 -1.20369e-11 0.0188861 0.00375323 -6.278e-11 0.0210933 0.0170321 -1.55643e-10 0.0206487 0.0201828 -6.17231e-11 0.0198761 0.0205338 -4.39112e-11 0.0192614 0.0199432 -1.13977e-11 0.0191145 0.0194399 -8.91396e-12 0.0191393 0.0188231 -5.48999e-13 0.0175438 9.12306e-12 0.0191565 0.0168001 8.17883e-11 -1.32728e-15 0.0168001 4.29694e-10 -8.12798e-15 0.0168001 1.60729e-09 -1.2024e-14 0.0168001 4.12137e-09 -2.29229e-14 0.0168001 1.15258e-08 -2.73359e-14 0.0168001 2.66894e-08 -4.03602e-14 0.0168 7.0784e-08 -4.33146e-14 0.0168 1.60571e-07 -5.55448e-14 0.0167999 4.21711e-07 -5.06744e-14 0.0167999 9.49908e-07 -5.15289e-14 0.0167996 2.51122e-06 -1.90712e-14 0.0167995 5.55723e-06 6.40632e-14 0.0167983 1.56644e-05 -9.72357e-16 0.0168026 3.19315e-05 8.40176e-13 0.0167964 0.000110675 -1.6733e-12 0.0168526 0.000227819 1.18049e-12 0.0169931 0.000979109 -1.61597e-11 0.0178662 0.00273477 -4.015e-11 0.0211565 0.012994 -1.42365e-10 0.0212859 0.0199311 -6.0712e-11 0.0208134 0.0208977 -5.57897e-11 0.0202222 0.0204737 -2.21479e-11 0.0200159 0.0195093 -1.303e-11 0.0199314 0.0186891 -2.67082e-12 0.0174763 6.16699e-12 0.0197974 0.0168001 9.28247e-11 -1.36106e-15 0.0168001 2.63207e-10 -8.43462e-15 0.0168001 1.56055e-09 -1.24226e-14 0.0168001 2.73027e-09 -2.36722e-14 0.0168001 1.10915e-08 -2.82097e-14 0.0168001 1.80692e-08 -4.16453e-14 0.0168 6.83463e-08 -4.49418e-14 0.0168001 1.10037e-07 -5.80166e-14 0.0168 4.0992e-07 -5.47162e-14 0.0168002 6.54067e-07 -5.95981e-14 0.0167997 2.45316e-06 -3.00264e-14 0.0168008 3.79046e-06 3.68749e-15 0.0167981 1.51286e-05 9.64678e-14 0.016805 2.07608e-05 2.6898e-13 0.0167943 0.00010066 -5.83013e-14 0.0168662 0.000130734 1.12889e-12 0.0169889 0.000750081 -8.14198e-12 0.0179394 0.00160291 -2.37433e-11 0.0228964 0.00715387 -1.06495e-10 0.0224496 0.0201653 -6.71406e-11 0.0223978 0.0209076 -3.56068e-11 0.0217491 0.0211266 -2.91092e-11 0.0211131 0.0200923 -1.64497e-11 0.0208577 0.0188056 -1.31749e-11 0.017529 -2.1714e-12 0.0206296 0.0168001 3.73373e-11 -2.11258e-15 0.0168001 2.66565e-10 -7.01958e-15 0.0168001 8.32336e-10 -1.53947e-14 0.0168001 2.51786e-09 -2.09976e-14 0.0168001 6.06175e-09 -3.2896e-14 0.0168001 1.62131e-08 -3.77803e-14 0.0168001 3.73012e-08 -5.16239e-14 0.0168001 9.67775e-08 -5.30422e-14 0.0168002 2.20879e-07 -6.50504e-14 0.0168001 5.67027e-07 -5.01289e-14 0.016801 1.2908e-06 -4.07935e-14 0.0168003 3.3765e-06 3.01433e-14 0.0168066 7.44582e-06 1.56143e-13 0.0167994 2.16039e-05 3.24368e-13 0.0168487 4.42826e-05 8.51807e-13 0.0168003 0.000148928 6.84847e-13 0.017175 0.00033161 -3.03841e-14 0.0173059 0.00134292 -5.97335e-12 0.020146 0.00401955 -3.40627e-11 0.023233 0.0165788 -9.57328e-11 0.0232689 0.020791 -4.52686e-11 0.0227945 0.021525 -5.11796e-11 0.0220228 0.0207248 -2.64004e-11 0.0215902 0.0190475 -1.82929e-11 0.0176443 -1.0932e-11 0.0212321 0.0168001 1.478e-11 -2.15001e-15 0.0168001 2.49073e-10 -7.15783e-15 0.0168001 5.20561e-10 -1.56518e-14 0.0168001 2.23715e-09 -2.13796e-14 0.0168001 3.8897e-09 -3.34208e-14 0.0168001 1.44171e-08 -3.8488e-14 0.0168001 2.4321e-08 -5.24851e-14 0.0168 8.74603e-08 -5.43057e-14 0.0168001 1.46485e-07 -6.53903e-14 0.0167999 5.24165e-07 -5.2219e-14 0.0168002 8.70627e-07 -4.10911e-14 0.0167995 3.15222e-06 3.93422e-14 0.0168008 5.07025e-06 1.62624e-13 0.016798 1.96761e-05 4.71955e-13 0.0168092 2.83808e-05 1.23676e-12 0.0167996 0.000134083 1.6794e-12 0.0169141 0.000191938 4.81739e-12 0.0171235 0.00105038 9.6876e-13 0.0183013 0.00271758 -7.97079e-12 0.023442 0.0107132 -6.44068e-11 0.0238518 0.0202392 -5.37234e-11 0.0238195 0.0214494 -4.53389e-11 0.0231899 0.0213082 -5.32839e-11 0.0224538 0.0197352 -2.39367e-11 0.0179769 -1.35907e-11 0.0219922 0.0168001 2.09241e-11 -1.41998e-15 0.0168001 1.20845e-10 -8.93575e-15 0.0168001 4.48938e-10 -1.30752e-14 0.0168001 1.16938e-09 -2.49214e-14 0.0168001 3.26159e-09 -2.97422e-14 0.0168001 7.62572e-09 -4.40099e-14 0.0168001 2.01536e-08 -4.80349e-14 0.0168001 4.6254e-08 -6.28112e-14 0.0168001 1.20571e-07 -6.09451e-14 0.0168002 2.75993e-07 -6.93061e-14 0.0168001 7.16845e-07 -3.66356e-14 0.0168012 1.63897e-06 6.20989e-16 0.0168003 4.32915e-06 1.65163e-13 0.0168081 9.71635e-06 5.091e-13 0.0168 2.75577e-05 9.39349e-13 0.0168595 5.99917e-05 3.13142e-12 0.0168325 0.00018861 1.86466e-12 0.0173468 0.000463037 1.22804e-11 0.0182862 0.00169329 -2.10774e-12 0.0232637 0.00529732 4.25457e-12 0.0249884 0.0182538 -4.52776e-11 0.0251237 0.0212797 -5.41227e-11 0.0245933 0.0217688 -7.02963e-11 0.0234336 0.020747 -4.16329e-11 0.0185753 -2.35238e-11 0.022667 0.0168001 2.12327e-11 -1.4473e-15 0.0168001 6.84104e-11 -8.97236e-15 0.0168001 3.66955e-10 -1.32354e-14 0.0168001 6.997e-10 -2.51304e-14 0.0168001 2.62442e-09 -3.0117e-14 0.0168001 4.63715e-09 -4.45264e-14 0.0168001 1.62934e-08 -4.89491e-14 0.0168001 2.843e-08 -6.42027e-14 0.0168001 9.84794e-08 -6.41772e-14 0.0168001 1.71162e-07 -7.37855e-14 0.0168 5.91764e-07 -5.10559e-14 0.0168004 1.02087e-06 -2.50417e-14 0.0167999 3.56785e-06 1.09034e-13 0.0168022 5.98282e-06 3.2532e-13 0.0168012 2.22914e-05 9.18284e-13 0.0168199 3.38797e-05 2.08406e-12 0.0168259 0.000152463 4.3784e-12 0.0170147 0.000238473 8.55052e-12 0.0174155 0.00120513 1.67626e-11 0.0191538 0.00338609 1.95466e-11 0.0247776 0.0118789 7.90229e-13 0.0254011 0.0204827 -4.23472e-11 0.0254595 0.0215338 -4.39031e-11 0.0246463 0.0215221 -5.39208e-11 0.0195628 -3.95657e-11 0.0236912 0.0168001 8.08646e-12 -2.20084e-15 0.0168001 5.7772e-11 -7.3804e-15 0.0168001 1.80811e-10 -1.62635e-14 0.0168001 5.49282e-10 -2.19322e-14 0.0168001 1.32738e-09 -3.47171e-14 0.0168001 3.58553e-09 -4.00728e-14 0.0168001 8.28468e-09 -5.52645e-14 0.0168001 2.18327e-08 -5.9068e-14 0.0168001 5.00551e-08 -7.4158e-14 0.0168001 1.30989e-07 -6.97258e-14 0.0168003 2.99915e-07 -7.4781e-14 0.0168001 7.8447e-07 -2.37673e-14 0.0168014 1.79418e-06 4.49941e-14 0.0168004 4.76468e-06 3.02517e-13 0.0168094 1.0794e-05 8.62091e-13 0.0168027 3.00256e-05 1.56458e-12 0.0168676 6.76656e-05 4.81554e-12 0.0168663 0.00020213 5.10466e-12 0.0174548 0.000518919 2.19206e-11 0.0189077 0.00183424 1.43444e-11 0.0244791 0.00567195 7.6855e-11 0.0263805 0.0182856 -9.27782e-12 0.0266418 0.0211641 -4.71625e-11 0.025925 0.0221108 -4.37339e-11 0.0206551 -5.43262e-11 0.0247865 0.0168001 2.95836e-12 -2.19682e-15 0.0168001 4.52997e-11 -7.46035e-15 0.0168001 1.00664e-10 -1.62629e-14 0.0168001 4.08229e-10 -2.22498e-14 0.0168001 7.57695e-10 -3.48854e-14 0.0168001 2.64686e-09 -4.05443e-14 0.0168001 4.77647e-09 -5.58319e-14 0.0168001 1.61725e-08 -6.02853e-14 0.0168001 2.90523e-08 -7.61544e-14 0.0168001 9.76283e-08 -7.5137e-14 0.0168001 1.74962e-07 -8.3828e-14 0.0168001 5.87974e-07 -5.42311e-14 0.0168005 1.04739e-06 -1.78393e-14 0.0168004 3.56026e-06 1.56604e-13 0.0168034 6.17356e-06 4.29591e-13 0.0168038 2.23445e-05 1.32182e-12 0.0168287 3.51217e-05 2.47019e-12 0.016841 0.00015229 8.02062e-12 0.0170783 0.000245445 1.20744e-11 0.0175974 0.00119157 4.0687e-11 0.0197692 0.00333178 6.96952e-11 0.0257764 0.0112191 1.18768e-10 0.0263937 0.0202403 -3.69495e-12 0.0272161 0.0212345 -2.58235e-11 0.0216561 -5.78724e-11 0.0263106 0.0168001 3.50445e-12 -1.42552e-15 0.0168001 2.0177e-11 -9.24021e-15 0.0168001 7.51187e-11 -1.35411e-14 0.0168001 1.95794e-10 -2.58643e-14 0.0168001 5.48769e-10 -3.09191e-14 0.0168001 1.28718e-09 -4.59398e-14 0.0168001 3.42443e-09 -5.09716e-14 0.0168001 7.88578e-09 -6.77418e-14 0.0168001 2.07001e-08 -7.12012e-14 0.0168001 4.75258e-08 -8.73126e-14 0.0168001 1.24147e-07 -8.21889e-14 0.0168003 2.84999e-07 -8.75453e-14 0.0168002 7.44954e-07 -3.30856e-14 0.0168016 1.70727e-06 3.80902e-14 0.016801 4.5451e-06 3.45781e-13 0.0168101 1.02639e-05 9.90254e-13 0.0168041 2.89772e-05 2.08606e-12 0.0168724 6.39602e-05 6.78102e-12 0.0168739 0.000198247 7.24858e-12 0.0174811 0.0004835 3.6825e-11 0.0189128 0.00176523 3.19529e-11 0.0242639 0.00529775 1.04622e-10 0.0272555 0.0166644 1.00654e-10 0.0274299 0.02093 -2.01519e-11 0.0215075 -3.80221e-11 0.0275322 0.0168001 3.14878e-12 -1.48061e-15 0.0168001 9.98544e-12 -9.23208e-15 0.0168001 5.26506e-11 -1.38301e-14 0.0168001 1.03528e-10 -2.60625e-14 0.0168001 3.73979e-10 -3.13382e-14 0.0168001 6.94696e-10 -4.63758e-14 0.0168001 2.33985e-09 -5.16046e-14 0.0168001 4.32117e-09 -6.85668e-14 0.0168001 1.42736e-08 -7.27182e-14 0.0168001 2.63469e-08 -8.9827e-14 0.0168001 8.62851e-08 -8.89265e-14 0.0168002 1.58939e-07 -9.94595e-14 0.0168002 5.19432e-07 -7.02972e-14 0.0168006 9.508e-07 -3.7917e-14 0.0168007 3.14207e-06 1.57473e-13 0.0168036 5.61639e-06 4.42351e-13 0.0168048 1.9626e-05 1.62399e-12 0.0168281 3.25233e-05 2.79056e-12 0.0168487 0.000131284 1.13221e-11 0.0170645 0.000222354 1.52364e-11 0.0176702 0.0009919 6.7353e-11 0.0199503 0.00272068 1.25997e-10 0.0260358 0.00910769 3.15629e-10 0.0275973 0.019207 3.42531e-11 0.0207966 -3.6785e-11 0.0284154 0.0168001 1.67003e-12 -2.19346e-15 0.0168001 8.65432e-12 -8.09332e-15 0.0168001 2.52227e-11 -1.71352e-14 0.0168001 7.29648e-11 -2.34797e-14 0.0168001 1.73879e-10 -3.66063e-14 0.0168001 4.70539e-10 -4.23199e-14 0.0168001 1.09072e-09 -5.82364e-14 0.0168001 2.90031e-09 -6.31169e-14 0.0168001 6.68573e-09 -8.04541e-14 0.0168001 1.75773e-08 -8.37721e-14 0.0168001 4.04375e-08 -1.0021e-13 0.0168001 1.05303e-07 -9.6084e-14 0.0168003 2.42077e-07 -1.03355e-13 0.0168003 6.2723e-07 -5.38286e-14 0.0168016 1.4395e-06 2.56412e-15 0.0168015 3.78726e-06 3.05352e-13 0.0168098 8.54549e-06 7.50427e-13 0.0168063 2.43228e-05 2.49859e-12 0.0168717 5.20072e-05 4.87073e-12 0.0168642 0.000169128 1.4916e-11 0.0173996 0.00037989 3.22013e-11 0.0184147 0.00148114 6.83057e-11 0.0228513 0.00424682 1.42046e-10 0.0276978 0.0135789 1.99941e-10 0.0202547 9.87779e-12 0.0281717 0.0168001 2.94321e-12 -2.27224e-15 0.0168001 8.57578e-12 -8.79586e-15 0.0168001 1.47387e-11 -1.84844e-14 0.0168001 4.87403e-11 -2.43858e-14 0.0168001 8.68727e-11 -3.7943e-14 0.0168001 2.90521e-10 -4.30855e-14 0.0168001 5.44165e-10 -5.89328e-14 0.0168001 1.79092e-09 -6.35702e-14 0.0168001 3.38653e-09 -8.06293e-14 0.0168001 1.10068e-08 -8.45532e-14 0.0168001 2.08166e-08 -1.016e-13 0.0168001 6.72199e-08 -1.01312e-13 0.0168001 1.2698e-07 -1.12102e-13 0.0168002 4.08901e-07 -8.51629e-14 0.0168006 7.70285e-07 -5.64637e-14 0.0168008 2.48867e-06 1.1332e-13 0.0168032 4.63697e-06 3.49827e-13 0.0168064 1.53415e-05 1.29649e-12 0.0168215 2.79088e-05 2.47583e-12 0.0168617 9.76403e-05 8.62863e-12 0.017005 0.000187042 1.28021e-11 0.0176591 0.000687772 5.49507e-11 0.0196302 0.00191267 1.26404e-10 0.0260824 0.00611172 3.98718e-10 0.0170428 1.28574e-10 0.0288109 0.0168001 7.11314e-13 -9.24875e-15 0.0168001 4.2537e-12 -1.36734e-14 0.0168001 1.10487e-11 -1.94165e-14 0.0168001 1.8881e-11 -2.95742e-14 0.0168001 5.88172e-11 -3.39888e-14 0.0168001 1.12265e-10 -4.75764e-14 0.0168001 3.60008e-10 -5.15105e-14 0.0168001 7.16997e-10 -6.82584e-14 0.0168001 2.25784e-09 -7.13161e-14 0.0168001 4.52095e-09 -9.07918e-14 0.0168001 1.40305e-08 -9.34105e-14 0.0168001 2.81125e-08 -1.1431e-13 0.0168001 8.63469e-08 -1.111e-13 0.0168003 1.7299e-07 -1.26581e-13 0.0168003 5.27706e-07 -8.5493e-14 0.0168014 1.05315e-06 -5.63984e-14 0.0168014 3.2286e-06 1.82097e-13 0.0168085 6.30231e-06 4.43494e-13 0.0168069 2.03978e-05 2.0956e-12 0.0168589 3.71547e-05 3.52586e-12 0.016858 0.000136248 1.4755e-11 0.0172333 0.000254629 2.42863e-11 0.0178842 0.00103111 1.06009e-10 0.0208023 0.0028365 2.01851e-10 0.00886321 4.52553e-10 0.0272363 0.0168001 -2.58083e-13 -9.17195e-15 0.0168001 1.87117e-12 -1.8548e-14 0.0168001 4.39873e-12 -2.2809e-14 0.0168001 1.04358e-11 -2.97277e-14 0.0168001 2.28293e-11 -3.90604e-14 0.0168001 6.30078e-11 -4.3833e-14 0.0168001 1.47417e-10 -5.74355e-14 0.0168001 4.08675e-10 -6.03346e-14 0.0168001 9.54292e-10 -7.84783e-14 0.0168001 2.6045e-09 -7.95732e-14 0.0168001 6.04082e-09 -1.02074e-13 0.0168001 1.6256e-08 -1.01361e-13 0.0168001 3.75444e-08 -1.26264e-13 0.0168001 9.97161e-08 -1.15036e-13 0.0168003 2.29476e-07 -1.32325e-13 0.0168004 6.03489e-07 -6.47948e-14 0.0168018 1.38267e-06 -4.22157e-15 0.0168022 3.66665e-06 3.8908e-13 0.0168114 8.28379e-06 9.34043e-13 0.0168111 2.33103e-05 3.2996e-12 0.0168794 5.07299e-05 6.42308e-12 0.0169009 0.00015974 2.02369e-11 0.0174664 0.000363876 4.22661e-11 0.0186949 0.00134592 9.99033e-11 0.0038135 2.19586e-10 0.0232047 0.0168001 -1.48627e-13 -7.80072e-15 0.0168001 7.42473e-13 -2.19171e-14 0.0168001 1.98617e-12 -2.52764e-14 0.0168001 5.39539e-12 -3.13652e-14 0.0168001 8.69073e-12 -3.94566e-14 0.0168001 3.46588e-11 -4.45302e-14 0.0168001 5.88237e-11 -5.73419e-14 0.0168001 2.1571e-10 -6.04673e-14 0.0168001 4.05619e-10 -7.85408e-14 0.0168001 1.35934e-09 -7.93961e-14 0.0168001 2.6766e-09 -1.03667e-13 0.0168001 8.61336e-09 -1.0075e-13 0.0168001 1.70929e-08 -1.30856e-13 0.0168001 5.40706e-08 -1.19722e-13 0.0168002 1.06691e-07 -1.44985e-13 0.0168002 3.35328e-07 -9.98582e-14 0.0168007 6.54982e-07 -7.19201e-14 0.0168009 2.06579e-06 1.57082e-13 0.0168035 3.98542e-06 4.86881e-13 0.0168066 1.27575e-05 1.70609e-12 0.0168217 2.46712e-05 3.77387e-12 0.0168644 8.02245e-05 9.8426e-12 0.0169874 0.000169335 2.2321e-11 0.0176379 0.000569579 5.0202e-11 0.0016236 1.12102e-10 0.019588 0.0168001 -8.71482e-16 -7.29295e-15 0.0168001 5.12839e-13 -2.26402e-14 0.0168001 9.00824e-13 -2.76637e-14 0.0168001 1.48688e-12 -3.18875e-14 0.0168001 5.53863e-12 -3.78933e-14 0.0168001 7.72106e-12 -4.863e-14 0.0168001 3.41036e-11 -5.12527e-14 0.0168001 6.36619e-11 -6.81573e-14 0.0168001 2.04467e-10 -7.1276e-14 0.0168001 4.75865e-10 -9.14424e-14 0.0168001 1.33894e-09 -9.20186e-14 0.0168001 3.23183e-09 -1.20359e-13 0.0168001 8.88102e-09 -1.16475e-13 0.0168001 2.12903e-08 -1.49928e-13 0.0168001 5.76998e-08 -1.37697e-13 0.0168002 1.36219e-07 -1.613e-13 0.0168002 3.65516e-07 -1.13756e-13 0.0168011 8.53584e-07 -7.80148e-14 0.0168013 2.28402e-06 1.7296e-13 0.0168067 5.29381e-06 4.93183e-13 0.0168088 1.42547e-05 2.13429e-12 0.016845 3.31504e-05 2.8022e-12 0.0168745 9.10118e-05 1.57218e-11 0.0171654 0.000222374 1.61926e-11 0.000675535 9.66748e-11 0.0178782 0.0168001 2.60375e-13 -6.9091e-15 0.0168001 1.96596e-14 -2.38122e-14 0.0168001 1.44801e-14 -2.79812e-14 0.0168001 3.47089e-13 -3.20992e-14 0.0168001 -2.91653e-14 -4.29199e-14 0.0168001 3.23046e-12 -4.04782e-14 0.0168001 5.71967e-12 -6.82804e-14 0.0168001 2.04956e-11 -5.10829e-14 0.0168001 6.04268e-11 -8.65105e-14 0.0168001 1.40129e-10 -8.80347e-14 0.0168001 4.837e-10 -1.06501e-13 0.0168001 1.17206e-09 -1.25636e-13 0.0168001 3.6051e-09 -1.36994e-13 0.0168001 8.68809e-09 -1.69173e-13 0.0168001 2.51011e-08 -1.71621e-13 0.0168001 5.89255e-08 -1.9446e-13 0.0168002 1.65405e-07 -1.66046e-13 0.0168005 3.81271e-07 -1.43382e-13 0.0168009 1.0505e-06 -9.18783e-15 0.0168027 2.3999e-06 1.79817e-13 0.016806 6.55031e-06 9.3842e-13 0.0168176 1.49823e-05 2.08897e-12 0.0168418 4.08546e-05 6.89534e-12 0.0169193 9.7329e-05 1.48607e-11 0.0002735 4.70421e-11 0.0171621 0.0168001 7.84824e-14 -7.37519e-15 0.0168001 1.17789e-13 -2.27678e-14 0.0168001 -4.3026e-14 -2.74166e-14 0.0168001 -1.96703e-14 -3.26354e-14 0.0168001 5.26403e-13 -3.55257e-14 0.0168001 -5.79887e-14 -4.85947e-14 0.0168001 3.10239e-12 -5.23498e-14 0.0168001 2.56218e-12 -7.64312e-14 0.0168001 1.4019e-11 -8.77673e-14 0.0168001 2.45085e-11 -1.17404e-13 0.0168001 1.17548e-10 -1.19577e-13 0.0168001 3.00519e-10 -1.53627e-13 0.0168001 1.14739e-09 -1.54389e-13 0.0168001 2.96721e-09 -1.76949e-13 0.0168001 9.71093e-09 -1.69037e-13 0.0168001 2.37307e-08 -1.80804e-13 0.0168001 6.97471e-08 -1.74781e-13 0.0168003 1.64797e-07 -1.86563e-13 0.0168005 4.63757e-07 -1.30918e-13 0.0168013 1.0678e-06 -6.06145e-14 0.0168029 2.93583e-06 3.06006e-13 0.0168084 6.639e-06 7.69374e-13 0.0168174 1.8384e-05 3.47127e-12 0.0168633 4.09211e-05 4.0556e-12 0.000119662 2.74271e-11 0.0169265 0.0168001 8.77391e-15 -7.33533e-15 0.0168001 1.4159e-14 -2.32263e-14 0.0168001 1.84586e-13 -2.70022e-14 0.0168001 5.01035e-13 -3.21682e-14 0.0168001 -1.3503e-13 -3.95815e-14 0.0168001 2.09406e-12 -4.35679e-14 0.0168001 1.3307e-12 -5.99784e-14 0.0168001 3.44562e-12 -7.44916e-14 0.0168001 8.06353e-12 -9.59853e-14 0.0168001 9.4178e-12 -1.22291e-13 0.0168001 3.94889e-11 -1.47308e-13 0.0168001 7.93899e-11 -1.54725e-13 0.0168001 2.48654e-10 -1.70546e-13 0.0168001 6.57401e-10 -1.75424e-13 0.0168001 2.66628e-09 -1.78033e-13 0.0168001 6.86313e-09 -1.89116e-13 0.0168001 2.66744e-08 -1.90103e-13 0.0168002 5.85492e-08 -2.00808e-13 0.0168003 1.95735e-07 -1.77786e-13 0.0168007 4.19922e-07 -1.4799e-13 0.0168013 1.30025e-06 2.16478e-14 0.0168039 2.72687e-06 2.73173e-13 0.0168077 8.27128e-06 1.36053e-12 0.0168225 1.70985e-05 2.99379e-12 5.22452e-05 1.02459e-11 0.01685 0.0168001 -1.69396e-14 -7.41977e-15 0.0168001 3.02145e-15 -2.29261e-14 0.0168001 3.20797e-13 -2.76565e-14 0.0168001 6.14878e-13 -3.27363e-14 0.0168001 6.16288e-15 -3.70091e-14 0.0168001 1.54485e-12 -4.81041e-14 0.0168001 -2.33745e-13 -5.74784e-14 0.0168001 6.73129e-12 -7.03137e-14 0.0168001 4.51234e-12 -9.6138e-14 0.0168001 1.77804e-11 -1.32155e-13 0.0168001 2.77246e-11 -1.45922e-13 0.0168001 2.10468e-11 -1.53347e-13 0.0168001 1.64063e-10 -1.68673e-13 0.0168001 1.39051e-10 -1.7906e-13 0.0168001 7.63129e-10 -1.99541e-13 0.0168001 1.48584e-09 -2.00869e-13 0.0168001 5.21106e-09 -2.00815e-13 0.0168001 1.95496e-08 -2.01387e-13 0.0168003 5.14941e-08 -2.04652e-13 0.0168003 1.79022e-07 -1.91412e-13 0.016801 4.087e-07 -1.75564e-13 0.0168013 1.27916e-06 9.75841e-17 0.0168051 2.82257e-06 2.79082e-13 0.0168068 8.40339e-06 1.52745e-12 1.8302e-05 3.56711e-12 0.0168291 0.0168001 -2.84309e-14 -7.42849e-15 0.0168001 4.82611e-14 -2.29001e-14 0.0168001 1.4131e-13 -2.86173e-14 0.0168001 2.724e-13 -3.41886e-14 0.0168001 3.97126e-13 -3.64085e-14 0.0168001 7.41244e-13 -5.16886e-14 0.0168001 1.65419e-12 -5.38878e-14 0.0168001 3.45366e-12 -8.62937e-14 0.0168001 1.01689e-11 -8.97093e-14 0.0168001 1.74645e-11 -1.32902e-13 0.0168001 3.47366e-11 -1.38956e-13 0.0168001 7.50991e-11 -1.59935e-13 0.0168001 4.63497e-11 -1.6581e-13 0.0168001 2.37757e-10 -1.8383e-13 0.0168001 2.13197e-10 -1.90039e-13 0.0168001 1.08487e-09 -2.07437e-13 0.0168001 8.87912e-10 -2.13886e-13 0.0168002 4.36951e-09 -2.3111e-13 0.0168002 1.12233e-08 -2.30045e-13 0.0168003 3.739e-08 -2.31093e-13 0.0168004 1.47005e-07 -2.16665e-13 0.0168011 3.5509e-07 -1.57547e-13 0.0168015 1.19114e-06 1.98567e-14 0.0168054 2.67588e-06 3.41929e-13 8.18326e-06 1.58762e-12 0.016808 0.0168001 -6.21562e-15 -7.36696e-15 0.0168001 7.76403e-15 -2.29611e-14 0.0168001 5.31161e-14 -2.87785e-14 0.0168001 9.43846e-14 -3.39085e-14 0.0168001 1.65339e-13 -3.64616e-14 0.0168001 3.38547e-13 -4.91232e-14 0.0168001 7.20475e-13 -5.52079e-14 0.0168001 1.69598e-12 -7.84566e-14 0.0168001 4.32428e-12 -8.74097e-14 0.0168001 8.49381e-12 -1.32669e-13 0.0168001 1.31409e-11 -1.46058e-13 0.0168001 -1.65471e-11 -1.57644e-13 0.0168001 8.64613e-11 -1.72623e-13 0.0168001 2.11387e-11 -1.82034e-13 0.0168001 3.72134e-10 -1.95913e-13 0.0168001 7.53656e-11 -2.02793e-13 0.0168001 1.23864e-09 -2.21989e-13 0.0168001 5.49761e-10 -2.30007e-13 0.0168002 5.48808e-09 -2.48304e-13 0.0168003 4.90129e-09 -2.54754e-13 0.0168005 2.74365e-08 -2.53919e-13 0.0168006 9.25121e-08 -2.14927e-13 0.0168015 2.96202e-07 -1.82151e-13 0.016802 9.64924e-07 8.2962e-15 2.4969e-06 3.09554e-13 0.016806 0.0168001 1.44931e-15 -7.36268e-15 0.0168001 -4.42197e-15 -2.29397e-14 0.0168001 9.41537e-15 -2.88698e-14 0.0168001 1.96869e-14 -3.39125e-14 0.0168001 3.91621e-14 -3.65925e-14 0.0168001 7.61012e-14 -4.89661e-14 0.0168001 2.51972e-13 -5.5715e-14 0.0168001 4.48019e-13 -7.79774e-14 0.0168001 1.62387e-12 -8.79476e-14 0.0168001 2.89065e-12 -1.3247e-13 0.0168001 6.784e-12 -1.37485e-13 0.0168001 -3.80165e-12 -1.64602e-13 0.0168001 4.5778e-11 -1.71539e-13 0.0168001 9.85638e-11 -1.8798e-13 0.0168001 2.62226e-10 -1.95355e-13 0.0168001 3.42598e-10 -2.09506e-13 0.0168001 8.29554e-10 -2.16791e-13 0.0168001 1.66996e-09 -2.34708e-13 0.0168002 3.35587e-09 -2.43633e-13 0.0168003 5.89788e-09 -2.60091e-13 0.0168004 8.64603e-09 -2.64214e-13 0.0168006 2.06733e-08 -2.63156e-13 0.0168011 5.01205e-08 -2.56348e-13 0.0168016 2.20157e-07 -1.92345e-13 6.05963e-07 -1.01742e-13 0.0168035 0.0168001 2.23698e-15 -7.36793e-15 0.0168001 4.11672e-16 -2.28994e-14 0.0168001 -8.2987e-15 -2.88528e-14 0.0168001 -1.71083e-14 -3.38625e-14 0.0168001 -9.21469e-15 -3.65667e-14 0.0168001 -1.83719e-14 -4.9025e-14 0.0168001 6.23316e-14 -5.67592e-14 0.0168001 1.45506e-13 -7.76856e-14 0.0168001 6.40279e-13 -8.96819e-14 0.0168001 1.71815e-12 -1.34404e-13 0.0168001 5.17148e-12 -1.39552e-13 0.0168001 1.52672e-11 -1.62924e-13 0.0168001 5.07029e-11 -1.70197e-13 0.0168001 1.21056e-10 -1.88107e-13 0.0168001 2.56674e-10 -1.95173e-13 0.0168001 4.28686e-10 -2.10822e-13 0.0168001 9.23216e-10 -2.16612e-13 0.0168001 2.8043e-09 -2.3118e-13 0.0168002 3.39489e-09 -2.36683e-13 0.0168003 1.04546e-08 -2.51384e-13 0.0168004 5.53132e-09 -2.56263e-13 0.0168006 2.43966e-08 -2.73454e-13 0.0168008 1.23173e-08 -2.78269e-13 0.0168017 6.76096e-08 -3.02943e-13 1.19187e-07 -2.61859e-13 0.0168025 0.0168001 7.26415e-16 -7.36825e-15 0.0168001 5.37526e-15 -2.28939e-14 0.0168001 -3.27321e-15 -2.88317e-14 0.0168001 -1.53434e-14 -3.38142e-14 0.0168001 -1.9425e-14 -3.65928e-14 0.0168001 -2.79872e-14 -4.90618e-14 0.0168001 1.95019e-14 -5.71526e-14 0.0168001 5.79099e-14 -7.81901e-14 0.0168001 2.08219e-13 -9.11094e-14 0.0168001 6.2579e-13 -1.36909e-13 0.0168001 4.81688e-12 -1.42084e-13 0.0168001 2.17473e-11 -1.64663e-13 0.0168001 4.17941e-11 -1.73122e-13 0.0168001 9.74423e-11 -1.90188e-13 0.0168001 1.97184e-10 -1.95791e-13 0.0168001 4.29613e-10 -1.99271e-13 0.0168001 8.77371e-10 -2.06776e-13 0.0168001 1.15802e-09 -1.96195e-13 0.0168001 3.14252e-09 -2.56615e-13 0.0168002 1.84661e-09 -2.54849e-13 0.0168004 9.62976e-09 -2.51352e-13 0.0168005 3.1131e-09 -2.6547e-13 0.0168008 2.28749e-08 -3.1593e-13 0.0168013 5.42071e-09 -3.15018e-13 6.46646e-08 -3.30883e-13 0.0168023 0.0168001 1.70469e-15 -7.36026e-15 0.0168001 1.20504e-15 -2.29032e-14 0.0168001 -3.40011e-15 -2.88287e-14 0.0168001 -9.06539e-15 -3.38081e-14 0.0168001 -1.38789e-14 -3.65664e-14 0.0168001 -1.14691e-14 -4.9061e-14 0.0168001 -6.35305e-15 -5.70859e-14 0.0168001 6.35663e-14 -7.80321e-14 0.0168001 5.00285e-14 -9.10192e-14 0.0168001 5.45701e-13 -1.37087e-13 0.0168001 4.72879e-12 -1.42567e-13 0.0168001 2.60832e-11 -1.66762e-13 0.0168001 2.64901e-11 -1.73627e-13 0.0168001 6.9218e-11 -1.87905e-13 0.0168001 1.38735e-10 -1.93049e-13 0.0168001 7.33158e-10 -1.94907e-13 0.0168001 2.78503e-10 -1.98061e-13 0.0168001 1.23486e-09 -2.14143e-13 0.0168002 6.19647e-10 -2.26142e-13 0.0168002 3.43756e-09 -2.62031e-13 0.0168004 1.94062e-09 -2.7303e-13 0.0168005 6.40013e-09 -2.70026e-13 0.0168008 3.30271e-09 -2.77989e-13 0.0168013 1.65345e-08 -2.90209e-13 7.6033e-09 -3.13124e-13 0.0168021 0.0168001 6.27645e-16 -7.36134e-15 0.0168001 3.90313e-17 -2.29029e-14 0.0168001 -2.16228e-15 -2.88258e-14 0.0168001 -4.06332e-15 -3.38077e-14 0.0168001 -5.83068e-15 -3.65584e-14 0.0168001 -5.56131e-15 -4.90819e-14 0.0168001 -9.33086e-15 -5.70642e-14 0.0168001 1.0685e-14 -7.81618e-14 0.0168001 -2.42645e-14 -9.07206e-14 0.0168001 -2.15437e-14 -1.3703e-13 0.0168001 2.69259e-12 -1.40702e-13 0.0168001 1.45924e-11 -1.60853e-13 0.0168001 1.21611e-11 -1.69214e-13 0.0168001 2.1027e-11 -1.84672e-13 0.0168001 2.97926e-11 -2.00746e-13 0.0168001 3.16257e-10 -2.06455e-13 0.0168001 -4.19621e-11 -2.18584e-13 0.0168001 4.25442e-10 -2.33915e-13 0.0168002 -1.96464e-10 -2.37187e-13 0.0168002 1.31793e-09 -2.73218e-13 0.0168004 1.75048e-10 -2.61901e-13 0.0168005 2.37925e-09 -2.4659e-13 0.0168008 -5.50895e-10 -3.0068e-13 0.0168014 5.83962e-09 -2.65658e-13 -6.05082e-10 -3.31657e-13 0.0168022 0.0168001 1.44036e-16 -7.36211e-15 0.0168001 2.98156e-17 -2.29037e-14 0.0168001 -7.02238e-16 -2.8824e-14 0.0168001 -1.34175e-15 -3.38078e-14 0.0168001 -1.90679e-15 -3.65554e-14 0.0168001 -2.21925e-15 -4.90926e-14 0.0168001 -3.76923e-15 -5.70404e-14 0.0168001 -7.76235e-16 -7.81524e-14 0.0168001 -1.88307e-14 -9.04516e-14 0.0168001 -1.10958e-13 -1.37333e-13 0.0168001 1.25547e-12 -1.40735e-13 0.0168001 7.18924e-12 -1.61301e-13 0.0168001 7.60993e-13 -1.71235e-13 0.0168001 2.0256e-12 -1.86477e-13 0.0168001 2.62598e-11 -1.90409e-13 0.0168001 7.0332e-11 -2.02666e-13 0.0168001 -4.35185e-11 -2.22354e-13 0.0168001 7.597e-11 -2.31149e-13 0.0168002 -7.08367e-12 -2.45042e-13 0.0168002 1.64953e-10 -2.51319e-13 0.0168004 6.75717e-11 -2.68071e-13 0.0168005 3.14295e-10 -2.63624e-13 0.0168008 -3.26874e-11 -2.95575e-13 0.0168014 7.79819e-10 -2.74941e-13 -2.23159e-10 -3.2655e-13 0.0168022 0.0168001 2.42861e-17 -7.36232e-15 0.0168001 8.94467e-18 -2.2904e-14 0.0168001 -1.39483e-16 -2.88233e-14 0.0168001 -2.88018e-16 -3.38078e-14 0.0168001 -4.56124e-16 -3.65553e-14 0.0168001 -7.11616e-16 -4.90959e-14 0.0168001 -1.02961e-15 -5.70339e-14 0.0168001 -1.82916e-15 -7.81816e-14 0.0168001 -4.04353e-15 -9.04106e-14 0.0168001 -3.68762e-14 -1.37462e-13 0.0168001 3.27409e-13 -1.41072e-13 0.0168001 1.86031e-12 -1.63183e-13 0.0168001 -3.08637e-13 -1.70995e-13 0.0168001 -2.31765e-13 -1.86963e-13 0.0168001 6.54112e-12 -1.85763e-13 0.0168001 1.35462e-11 -2.01036e-13 0.0168001 -9.34821e-12 -2.26672e-13 0.0168001 4.684e-12 -2.31101e-13 0.0168002 2.63605e-11 -2.42594e-13 0.0168002 -1.11993e-11 -2.53649e-13 0.0168004 5.68017e-11 -2.66298e-13 0.0168005 2.60083e-11 -2.69519e-13 0.0168008 7.26113e-11 -2.89323e-13 0.0168014 1.0542e-10 -2.84733e-13 -5.09641e-11 -3.13285e-13 0.0168022 0.0168001 -1.89735e-18 -7.36237e-15 0.0168001 1.24141e-17 -2.29041e-14 0.0168001 -2.49367e-17 -2.88232e-14 0.0168001 -5.24754e-17 -3.38079e-14 0.0168001 -8.73867e-17 -3.65554e-14 0.0168001 -1.85886e-16 -4.90964e-14 0.0168001 -3.89771e-16 -5.70359e-14 0.0168001 -2.98915e-16 -7.81831e-14 0.0168001 -1.28603e-15 -9.04111e-14 0.0168001 -4.31583e-15 -1.37344e-13 0.0168001 5.7641e-14 -1.41283e-13 0.0168001 3.2973e-13 -1.63439e-13 0.0168001 -4.08232e-14 -1.72009e-13 0.0168001 9.79324e-14 -1.86121e-13 0.0168001 3.62724e-14 -1.85243e-13 0.0168001 7.78784e-13 -2.00917e-13 0.0168001 2.15599e-12 -2.25211e-13 0.0168001 -3.86397e-12 -2.32321e-13 0.0168002 1.49249e-11 -2.42659e-13 0.0168002 -1.31978e-11 -2.54789e-13 0.0168004 2.7134e-11 -2.64338e-13 0.0168005 -1.41651e-11 -2.72974e-13 0.0168008 4.00738e-11 -2.85024e-13 0.0168014 5.73162e-12 -2.90174e-13 -2.27622e-11 -3.07613e-13 0.0168022 0.0168001 3.7947e-19 -7.36236e-15 0.0168001 1.39862e-17 -2.29041e-14 0.0168001 1.66425e-17 -2.88231e-14 0.0168001 1.48536e-17 -3.38078e-14 0.0168001 4.6946e-17 -3.65554e-14 0.0168001 5.39933e-17 -4.90962e-14 0.0168001 6.8901e-17 -5.7037e-14 0.0168001 3.69388e-16 -7.81848e-14 0.0168001 1.15684e-16 -9.04116e-14 0.0168001 2.93906e-15 -1.37326e-13 0.0168001 1.63831e-14 -1.41334e-13 0.0168001 7.75862e-14 -1.63569e-13 0.0168001 7.33731e-14 -1.71902e-13 0.0168001 1.00784e-13 -1.86306e-13 0.0168001 -7.85065e-13 -1.84221e-13 0.0168001 -7.7676e-13 -2.00576e-13 0.0168001 1.8749e-12 -2.27482e-13 0.0168001 -1.69398e-12 -2.31808e-13 0.0168002 5.29177e-12 -2.41772e-13 0.0168002 -4.35478e-12 -2.55261e-13 0.0168004 9.68818e-12 -2.64306e-13 0.0168005 -6.44153e-12 -2.73852e-13 0.0168008 1.26597e-11 -2.83446e-13 0.0168014 -3.20501e-12 -2.91537e-13 -3.66687e-12 -3.05605e-13 0.0168022 0.0168001 1.24683e-18 -7.36237e-15 0.0168001 -8.5652e-18 -2.29041e-14 0.0168001 -2.48282e-17 -2.88231e-14 0.0168001 -4.56449e-17 -3.38077e-14 0.0168001 -8.15862e-17 -3.65556e-14 0.0168001 -1.043e-16 -4.90963e-14 0.0168001 -1.33628e-16 -5.70376e-14 0.0168001 -7.36173e-17 -7.81857e-14 0.0168001 3.63208e-18 -9.04111e-14 0.0168001 1.27887e-15 -1.37324e-13 0.0168001 4.91783e-15 -1.41397e-13 0.0168001 2.32481e-14 -1.6378e-13 0.0168001 5.21606e-14 -1.7186e-13 0.0168001 5.2877e-14 -1.86368e-13 0.0168001 -4.14522e-13 -1.84396e-13 0.0168001 -3.47071e-13 -2.00541e-13 0.0168001 6.01866e-13 -2.27401e-13 0.0168001 -5.29423e-13 -2.31665e-13 0.0168002 1.69531e-12 -2.41888e-13 0.0168002 -1.16886e-12 -2.55028e-13 0.0168004 3.0437e-12 -2.64395e-13 0.0168005 -1.96311e-12 -2.7368e-13 0.0168008 3.66002e-12 -2.83426e-13 0.0168014 -1.07535e-12 -2.91774e-13 -3.4325e-13 -3.05082e-13 0.0168022 0.0168001 1.68051e-18 -7.36237e-15 0.0168001 -2.60209e-18 -2.29041e-14 0.0168001 -7.4051e-17 -2.88231e-14 0.0168001 -1.27665e-16 -3.38077e-14 0.0168001 -6.61905e-17 -3.65555e-14 0.0168001 -1.7434e-16 -4.90961e-14 0.0168001 3.77302e-17 -5.70378e-14 0.0168001 -3.84892e-18 -7.81855e-14 0.0168001 1.42844e-16 -9.04113e-14 0.0168001 -4.91577e-16 -1.37322e-13 0.0168001 1.54541e-14 -1.41402e-13 0.0168001 7.01173e-14 -1.6381e-13 0.0168001 1.93648e-14 -1.71812e-13 0.0168001 2.19489e-14 -1.86322e-13 0.0168001 -9.93379e-15 -1.84494e-13 0.0168001 -3.56373e-14 -2.00576e-13 0.0168001 9.0824e-14 -2.26883e-13 0.0168001 -1.55334e-13 -2.31686e-13 0.0168002 4.50441e-13 -2.42314e-13 0.0168002 -2.94317e-13 -2.5504e-13 0.0168004 8.27117e-13 -2.64486e-13 0.0168005 -3.4958e-13 -2.73494e-13 0.0168008 1.08952e-12 -2.83607e-13 0.0168014 9.71499e-14 -2.91746e-13 5.45793e-13 -3.0514e-13 0.0168022 0.0168001 -7.36236e-15 0.0168001 -2.29042e-14 0.0168001 -2.8823e-14 0.0168001 -3.38077e-14 0.0168001 -3.65555e-14 0.0168001 -4.90963e-14 0.0168001 -5.70385e-14 0.0168001 -7.81857e-14 0.0168001 -9.04107e-14 0.0168001 -1.37318e-13 0.0168001 -1.41443e-13 0.0168001 -1.63939e-13 0.0168001 -1.71808e-13 0.0168001 -1.86239e-13 0.0168001 -1.85224e-13 0.0168001 -2.00694e-13 0.0168001 -2.26013e-13 0.0168001 -2.31689e-13 0.0168002 -2.42399e-13 0.0168002 -2.54759e-13 0.0168004 -2.64345e-13 0.0168005 -2.73454e-13 0.0168008 -2.83715e-13 0.0168014 -2.91805e-13 -3.05181e-13 0.0168022 0.0168001 1.84919e-10 2.02366e-16 0.0168001 1.09296e-09 -2.45352e-16 0.0168001 3.62752e-09 -5.85136e-16 0.0168001 1.0462e-08 -1.78775e-15 0.0168001 2.6002e-08 -3.76152e-15 0.0168 6.7124e-08 -1.37108e-14 0.0168001 1.58027e-07 -2.98627e-14 0.0167997 4.00995e-07 -8.09565e-14 0.0168002 9.36241e-07 -1.62851e-13 0.016798 2.40302e-06 -4.1654e-13 0.0168016 5.64824e-06 -8.12919e-13 0.0167864 1.49491e-05 -2.37778e-12 0.0168218 3.70469e-05 -3.82758e-12 0.0167286 0.00010365 -1.3609e-11 0.0169719 0.000306219 -3.65559e-11 0.0168252 0.00109582 -6.26433e-11 0.0184504 0.00385371 -2.47024e-10 0.0176922 0.0161977 -4.07262e-11 0.0163733 0.0165761 5.69978e-12 0.0149055 0.0161396 6.39395e-11 0.0134935 0.016846 4.69636e-11 0.0117482 0.0179095 8.47671e-11 0.0106225 0.0192073 6.52423e-11 0.0113498 0.0215437 2.86044e-11 0.0244344 -3.00535e-11 0.0182577 0.0168001 1.39609e-10 2.0806e-16 0.0168001 1.09371e-09 -2.27321e-16 0.0168001 3.33075e-09 -5.46881e-16 0.0168001 1.01694e-08 -1.64423e-15 0.0168 2.40743e-08 -2.9643e-15 0.0168 6.53614e-08 -1.03314e-14 0.0168 1.47897e-07 -2.67822e-14 0.0167998 3.94674e-07 -7.22665e-14 0.0167996 8.87232e-07 -1.46469e-13 0.0167986 2.3677e-06 -3.67287e-13 0.0167978 5.37585e-06 -7.69538e-13 0.0167933 1.42986e-05 -1.89294e-12 0.016789 3.32665e-05 -4.07677e-12 0.0167692 9.59354e-05 -1.01166e-11 0.0167797 0.000254572 -2.84386e-11 0.0168391 0.000920228 -6.70261e-11 0.0173373 0.0029988 -1.97121e-10 0.0176733 0.0152083 -3.45148e-10 0.0169406 0.0174411 4.35031e-11 0.0157459 0.017397 6.6396e-11 0.0146982 0.0177227 3.65489e-11 0.0135064 0.0186707 8.10078e-11 0.0129645 0.0195522 6.98902e-11 0.0140311 0.0204232 4.94055e-11 0.0214705 1.72757e-12 0.0171006 0.0168001 1.21571e-10 2.14032e-16 0.0168001 9.5181e-10 -1.89906e-16 0.0168001 2.94084e-09 -4.6528e-16 0.0168001 8.89339e-09 -1.35181e-15 0.0168001 2.11544e-08 -2.83523e-15 0.0168 5.64205e-08 -6.31582e-15 0.0168 1.27477e-07 -1.80833e-14 0.0167999 3.33453e-07 -5.40594e-14 0.0167999 7.42734e-07 -1.07747e-13 0.0167995 1.98784e-06 -2.83861e-13 0.0167996 4.21286e-06 -5.50044e-13 0.0167964 1.30046e-05 -1.6056e-12 0.0168 2.40951e-05 -2.85071e-12 0.0167785 9.51301e-05 -9.78045e-12 0.0168025 0.000194324 -1.85297e-11 0.0167612 0.000884369 -7.09253e-11 0.0169827 0.00253383 -1.67032e-10 0.0180988 0.0134835 -3.83515e-10 0.0176324 0.0181261 8.99409e-11 0.016708 0.0183311 7.04433e-11 0.0158886 0.0183251 2.4547e-11 0.0151676 0.018962 9.04721e-11 0.0149272 0.0195329 5.30862e-11 0.0156709 0.0195517 3.70129e-11 0.0192989 1.40092e-11 0.018008 0.0168001 1.0994e-10 2.18085e-16 0.0168001 9.20554e-10 -1.64473e-16 0.0168001 2.81189e-09 -3.9952e-16 0.0168001 8.49246e-09 -1.15712e-15 0.0168001 2.02173e-08 -2.42322e-15 0.0168 5.39336e-08 -5.48352e-15 0.0168 1.22755e-07 -1.14588e-14 0.0167999 3.20402e-07 -4.52291e-14 0.0167998 7.21214e-07 -9.03158e-14 0.0167992 1.89266e-06 -2.34268e-13 0.0167984 4.1817e-06 -4.44431e-13 0.016796 1.16778e-05 -1.37427e-12 0.016794 2.38167e-05 -1.66097e-12 0.0167844 8.24219e-05 -1.00581e-11 0.0167979 0.000163123 -1.15791e-11 0.0168741 0.000732477 -6.67788e-11 0.0171784 0.00200234 -1.48327e-10 0.0193914 0.0105734 -4.3027e-10 0.018953 0.0187172 4.83764e-11 0.0179113 0.0193389 4.09623e-11 0.0171103 0.0188728 1.16093e-11 0.016621 0.0190739 6.31124e-11 0.016505 0.0193674 7.80041e-11 0.0167519 0.0190916 6.60661e-11 0.0179889 4.51532e-11 0.0179954 0.0168001 3.70327e-11 2.20634e-16 0.0168001 9.92109e-10 -1.37421e-16 0.0168001 1.72915e-09 -3.32519e-16 0.0168001 8.80312e-09 -9.83425e-16 0.0168001 1.3103e-08 -2.06348e-15 0.0168 5.65539e-08 -4.75228e-15 0.0168001 8.20863e-08 -9.61738e-15 0.0167999 3.4334e-07 -3.93301e-14 0.0168 4.93135e-07 -7.96076e-14 0.0167993 2.07251e-06 -2.0159e-13 0.0167999 2.8767e-06 -3.92317e-13 0.0167959 1.29203e-05 -1.0402e-12 0.0168006 1.56397e-05 -1.89642e-12 0.0167825 8.70652e-05 -5.82859e-12 0.0168259 9.57678e-05 -1.12249e-11 0.0168561 0.000649217 -3.50258e-11 0.0174552 0.00121499 -9.22507e-11 0.0218348 0.00593858 -2.87552e-10 0.0204972 0.0198695 -6.79748e-11 0.0196219 0.019965 -2.22794e-11 0.0183888 0.0198938 6.07865e-12 0.0179049 0.0193816 4.0703e-11 0.0178193 0.0193484 6.9372e-11 0.017938 0.018923 7.69967e-11 0.0176076 5.31939e-11 0.0182948 0.0168001 7.69427e-11 2.23391e-16 0.0168001 4.96886e-10 -8.12762e-17 0.0168001 1.7787e-09 -2.77676e-16 0.0168001 4.75476e-09 -6.05061e-16 0.0168001 1.28869e-08 -1.7789e-15 0.0168001 3.06811e-08 -3.70083e-15 0.0168 7.90067e-08 -8.64557e-15 0.0168002 1.84178e-07 -2.35505e-14 0.0168 4.71129e-07 -7.49129e-14 0.0168007 1.09451e-06 -1.50652e-13 0.0167996 2.87018e-06 -3.7735e-13 0.0168048 6.46612e-06 -7.8231e-13 0.0167965 1.85281e-05 -1.89406e-12 0.0168356 4.02671e-05 -3.67906e-12 0.016777 0.000127789 -1.13827e-11 0.01708 0.000310692 -2.30707e-11 0.0169564 0.00120784 -7.60914e-11 0.0188861 0.00375327 -1.96118e-10 0.0210933 0.0170322 -3.69103e-10 0.0206486 0.0201829 -2.77543e-11 0.0198761 0.0205339 -8.52643e-12 0.0192614 0.0199433 2.32279e-11 0.0191145 0.01944 4.94583e-11 0.0191392 0.0188231 5.89672e-11 0.0175438 5.26004e-11 0.0191564 0.0168001 8.17419e-11 2.28697e-16 0.0168001 4.29537e-10 -7.03003e-17 0.0168001 1.60699e-09 -2.28686e-16 0.0168001 4.12064e-09 -4.99829e-16 0.0168001 1.15248e-08 -1.37972e-15 0.0168001 2.66877e-08 -2.85973e-15 0.0168 7.07817e-08 -6.28813e-15 0.0168 1.60567e-07 -1.28649e-14 0.0167999 4.21705e-07 -5.18965e-14 0.0167999 9.49897e-07 -1.03107e-13 0.0167996 2.5112e-06 -2.68272e-13 0.0167995 5.55718e-06 -5.0626e-13 0.0167983 1.56644e-05 -1.54065e-12 0.0168026 3.19313e-05 -2.52379e-12 0.0167964 0.000110676 -9.96441e-12 0.0168526 0.000227819 -1.79348e-11 0.0169931 0.000979115 -6.89824e-11 0.0178662 0.00273479 -1.68737e-10 0.0211564 0.0129941 -4.41312e-10 0.0212858 0.0199312 -2.62589e-12 0.0208134 0.0208978 1.37559e-11 0.0202221 0.0204738 3.73452e-11 0.0200159 0.0195094 4.47513e-11 0.0199313 0.0186892 5.10071e-11 0.0174764 4.86532e-11 0.0197973 0.0168001 9.2535e-11 2.33645e-16 0.0168001 2.63521e-10 -5.49131e-17 0.0168001 1.55937e-09 -1.77868e-16 0.0168001 2.7306e-09 -3.89776e-16 0.0168001 1.10892e-08 -1.06212e-15 0.0168001 1.80692e-08 -2.20083e-15 0.0168 6.83424e-08 -5.80043e-15 0.0168001 1.10036e-07 -1.01453e-14 0.0168 4.09912e-07 -3.83578e-14 0.0168002 6.54063e-07 -7.80693e-14 0.0167997 2.45315e-06 -2.07821e-13 0.0168008 3.79044e-06 -4.00227e-13 0.0167981 1.51286e-05 -1.22439e-12 0.016805 2.07607e-05 -2.24741e-12 0.0167943 0.00010066 -8.56425e-12 0.0168662 0.000130734 -1.51635e-11 0.0169889 0.000750085 -6.56094e-11 0.0179394 0.00160292 -1.67324e-10 0.0228964 0.00715395 -5.38144e-10 0.0224496 0.0201654 -8.95623e-11 0.0223977 0.0209077 2.6046e-11 0.0217491 0.0211267 3.067e-11 0.0211131 0.0200924 4.17637e-11 0.0208577 0.0188057 5.00316e-11 0.0175291 5.10967e-11 0.0206296 0.0168001 3.73239e-11 2.25545e-16 0.0168001 2.66484e-10 -4.07203e-17 0.0168001 8.3214e-10 -9.92308e-17 0.0168001 2.51749e-09 -2.89e-16 0.0168001 6.06113e-09 -6.0558e-16 0.0168001 1.62122e-08 -1.67151e-15 0.0168001 3.72997e-08 -3.43597e-15 0.0168001 9.67751e-08 -7.72339e-15 0.0168002 2.20876e-07 -1.59528e-14 0.0168001 5.67021e-07 -6.72119e-14 0.016801 1.29079e-06 -1.37858e-13 0.0168003 3.37649e-06 -3.7641e-13 0.0168066 7.44579e-06 -7.98454e-13 0.0167994 2.16039e-05 -2.14769e-12 0.0168487 4.42827e-05 -4.59654e-12 0.0168003 0.000148929 -1.3249e-11 0.017175 0.000331612 -2.88893e-11 0.0173059 0.00134292 -8.04293e-11 0.0201461 0.00401959 -2.05213e-10 0.023233 0.0165789 -3.19335e-10 0.0232689 0.0207911 -6.15506e-12 0.0227945 0.0215252 6.36383e-12 0.0220227 0.0207249 3.02402e-11 0.0215902 0.0190476 4.40108e-11 0.0176444 5.1381e-11 0.0212321 0.0168001 1.49958e-11 2.25473e-16 0.0168001 2.4851e-10 -3.06152e-17 0.0168001 5.21336e-10 -7.38579e-17 0.0168001 2.23594e-09 -2.24541e-16 0.0168001 3.89062e-09 -4.7e-16 0.0168001 1.44149e-08 -1.37858e-15 0.0168001 2.43215e-08 -2.85994e-15 0.0168 8.74559e-08 -7.76515e-15 0.0168001 1.46483e-07 -1.41021e-14 0.0167999 5.24154e-07 -5.97489e-14 0.0168002 8.70617e-07 -1.2096e-13 0.0167995 3.15218e-06 -3.20808e-13 0.0168008 5.07021e-06 -6.38153e-13 0.016798 1.9676e-05 -1.80357e-12 0.0168092 2.83806e-05 -3.24594e-12 0.0167996 0.000134083 -1.12102e-11 0.0169141 0.000191937 -1.97602e-11 0.0171235 0.00105039 -7.14326e-11 0.0183013 0.00271758 -1.54757e-10 0.023442 0.0107133 -3.99296e-10 0.0238518 0.0202394 -3.9623e-11 0.0238195 0.0214496 -1.66453e-11 0.0231899 0.0213083 1.64035e-11 0.0224539 0.0197354 4.9459e-11 0.017977 5.29454e-11 0.0219922 0.0168001 2.09123e-11 2.4505e-16 0.0168001 1.20814e-10 -1.63816e-17 0.0168001 4.48815e-10 -5.55764e-17 0.0168001 1.16915e-09 -1.20502e-16 0.0168001 3.26118e-09 -3.6179e-16 0.0168001 7.62505e-09 -7.51044e-16 0.0168001 2.01525e-08 -2.23595e-15 0.0168001 4.62521e-08 -4.63904e-15 0.0168001 1.20567e-07 -1.17337e-14 0.0168002 2.75987e-07 -2.61213e-14 0.0168001 7.1683e-07 -9.9319e-14 0.0168012 1.63894e-06 -2.01511e-13 0.0168003 4.32908e-06 -5.48366e-13 0.0168081 9.7162e-06 -1.23275e-12 0.0168 2.75574e-05 -2.83655e-12 0.0168595 5.99909e-05 -7.6657e-12 0.0168325 0.00018861 -1.23219e-11 0.0173468 0.000463033 -4.93945e-11 0.0182862 0.00169329 -6.9505e-11 0.0232636 0.00529734 -2.06748e-10 0.0249884 0.0182539 -1.90522e-10 0.0251238 0.0212798 -2.7464e-13 0.0245933 0.0217689 1.4409e-11 0.0234336 0.0207472 4.27727e-11 0.0185754 5.83392e-11 0.022667 0.0168001 2.09408e-11 2.46665e-16 0.0168001 6.88448e-11 -1.15383e-17 0.0168001 3.65824e-10 -3.82927e-17 0.0168001 7.00451e-10 -8.31456e-17 0.0168001 2.62254e-09 -2.45779e-16 0.0168001 4.63799e-09 -5.09606e-16 0.0168001 1.62905e-08 -1.50901e-15 0.0168001 2.84303e-08 -3.13689e-15 0.0168001 9.8474e-08 -9.16858e-15 0.0168001 1.71159e-07 -1.59125e-14 0.0168 5.91747e-07 -6.82423e-14 0.0168004 1.02085e-06 -1.38679e-13 0.0167999 3.56778e-06 -3.73096e-13 0.0168022 5.98272e-06 -7.50291e-13 0.0168012 2.22912e-05 -2.1376e-12 0.0168199 3.38791e-05 -3.6758e-12 0.0168259 0.000152462 -1.38657e-11 0.0170147 0.00023847 -2.14721e-11 0.0174154 0.00120513 -8.71133e-11 0.0191538 0.00338607 -1.70021e-10 0.0247776 0.0118788 -4.17338e-10 0.0254011 0.0204829 -6.69436e-11 0.0254596 0.0215339 -2.04883e-11 0.0246464 0.0215223 2.40755e-11 0.0195629 8.06448e-11 0.0236913 0.0168001 8.08994e-12 2.26444e-16 0.0168001 5.77323e-11 -8.18657e-18 0.0168001 1.8075e-10 -2.00001e-17 0.0168001 5.49045e-10 -5.82962e-17 0.0168001 1.32707e-09 -1.2083e-16 0.0168001 3.58497e-09 -3.58269e-16 0.0168001 8.28385e-09 -7.34716e-16 0.0168001 2.18313e-08 -2.24612e-15 0.0168001 5.00527e-08 -4.6277e-15 0.0168001 1.30984e-07 -1.24036e-14 0.0168003 2.99905e-07 -2.62021e-14 0.0168001 7.84445e-07 -1.1276e-13 0.0168014 1.79413e-06 -2.34885e-13 0.0168004 4.76455e-06 -6.38186e-13 0.0168094 1.07937e-05 -1.47847e-12 0.0168027 3.00251e-05 -3.18965e-12 0.0168676 6.76639e-05 -8.64439e-12 0.0168663 0.000202129 -1.48462e-11 0.0174548 0.00051891 -5.46531e-11 0.0189077 0.00183424 -8.23821e-11 0.0244791 0.00567193 -3.16713e-10 0.0263806 0.0182856 -1.70384e-10 0.0266418 0.0211642 -1.23469e-11 0.0259251 0.022111 3.07929e-12 0.0206553 4.63074e-11 0.0247866 0.0168001 3.19484e-12 2.27097e-16 0.0168001 4.4717e-11 -5.57348e-18 0.0168001 1.0152e-10 -1.37507e-17 0.0168001 4.06964e-10 -3.77489e-17 0.0168001 7.5878e-10 -7.76323e-17 0.0168001 2.64475e-09 -2.21283e-16 0.0168001 4.77744e-09 -4.51134e-16 0.0168001 1.61691e-08 -1.36352e-15 0.0168001 2.90524e-08 -2.82239e-15 0.0168001 9.76216e-08 -8.60918e-15 0.0168001 1.74958e-07 -1.57255e-14 0.0168001 5.87951e-07 -6.65642e-14 0.0168005 1.04736e-06 -1.36688e-13 0.0168004 3.56015e-06 -3.75413e-13 0.0168034 6.17339e-06 -7.46735e-13 0.0168038 2.2344e-05 -2.24783e-12 0.0168287 3.51209e-05 -3.55038e-12 0.016841 0.000152288 -1.57877e-11 0.0170782 0.000245439 -2.27725e-11 0.0175974 0.00119155 -1.01275e-10 0.0197692 0.00333171 -2.0557e-10 0.0257764 0.011219 -4.83294e-10 0.0263937 0.0202404 -1.09966e-10 0.0272162 0.0212347 -3.05167e-11 0.0216563 1.86097e-11 0.0263107 0.0168001 3.48606e-12 2.48811e-16 0.0168001 2.01285e-11 -3.40761e-18 0.0168001 7.48686e-11 -9.65702e-18 0.0168001 1.95435e-10 -2.0649e-17 0.0168001 5.48151e-10 -5.23839e-17 0.0168001 1.28636e-09 -1.04051e-16 0.0168001 3.42333e-09 -2.92696e-16 0.0168001 7.88443e-09 -5.90431e-16 0.0168001 2.06982e-08 -1.81236e-15 0.0168001 4.75229e-08 -3.72059e-15 0.0168001 1.24141e-07 -1.17492e-14 0.0168003 2.84987e-07 -2.03739e-14 0.0168002 7.44923e-07 -9.50396e-14 0.0168016 1.7072e-06 -1.94997e-13 0.016801 4.54493e-06 -5.69443e-13 0.0168101 1.02636e-05 -1.30858e-12 0.0168041 2.89764e-05 -3.17861e-12 0.0168724 6.39579e-05 -8.99208e-12 0.0168739 0.000198245 -1.46962e-11 0.017481 0.000483485 -6.04209e-11 0.0189127 0.00176522 -8.59738e-11 0.0242638 0.00529768 -2.40928e-10 0.0272555 0.0166643 -2.97879e-10 0.0274299 0.0209301 -5.69997e-11 0.0215076 -5.53788e-12 0.0275323 0.0168001 2.86024e-12 2.49293e-16 0.0168001 1.01987e-11 -2.76472e-18 0.0168001 5.10935e-11 -7.18962e-18 0.0168001 1.03614e-10 -1.53542e-17 0.0168001 3.71167e-10 -3.52755e-17 0.0168001 6.94745e-10 -6.88638e-17 0.0168001 2.33626e-09 -1.7627e-16 0.0168001 4.32149e-09 -3.51481e-16 0.0168001 1.42696e-08 -1.01224e-15 0.0168001 2.63471e-08 -2.0596e-15 0.0168001 8.62784e-08 -6.32856e-15 0.0168002 1.58934e-07 -1.29478e-14 0.0168002 5.19407e-07 -4.60473e-14 0.0168006 9.50767e-07 -1.05542e-13 0.0168007 3.14196e-06 -3.21705e-13 0.0168036 5.61621e-06 -6.30804e-13 0.0168048 1.96254e-05 -2.14511e-12 0.0168281 3.25224e-05 -3.22507e-12 0.0168487 0.00013128 -1.59616e-11 0.0170645 0.000222348 -2.17257e-11 0.0176702 0.000991862 -1.06998e-10 0.0199503 0.00272059 -2.18863e-10 0.0260357 0.00910743 -5.96428e-10 0.0275974 0.019207 -1.40952e-10 0.0207967 -2.15902e-11 0.0284154 0.0168001 1.0283e-12 2.28014e-16 0.0168001 7.36386e-12 -2.22516e-18 0.0168001 2.30253e-11 -5.76491e-18 0.0168001 7.051e-11 -1.1551e-17 0.0168001 1.71256e-10 -2.25379e-17 0.0168001 4.68267e-10 -4.63073e-17 0.0168001 1.08903e-09 -8.70741e-17 0.0168001 2.89926e-09 -2.17373e-16 0.0168001 6.68524e-09 -4.29037e-16 0.0168001 1.75766e-08 -1.25324e-15 0.0168001 4.04356e-08 -2.54647e-15 0.0168001 1.05297e-07 -7.96264e-15 0.0168003 2.42064e-07 -1.62933e-14 0.0168003 6.27199e-07 -6.47621e-14 0.0168016 1.43944e-06 -1.31157e-13 0.0168015 3.7871e-06 -4.20766e-13 0.0168098 8.54515e-06 -7.8882e-13 0.0168063 2.43219e-05 -2.82934e-12 0.0168717 5.20051e-05 -5.134e-12 0.0168642 0.000169122 -1.87167e-11 0.0173995 0.000379874 -4.16304e-11 0.0184146 0.00148109 -1.04634e-10 0.0228511 0.00424668 -2.27894e-10 0.0276978 0.0135785 -3.55457e-10 0.0202547 -8.34046e-11 0.0281718 0.0168001 3.7341e-13 2.21541e-16 0.0168001 4.69138e-12 -2.10149e-18 0.0168001 1.1161e-11 -5.54298e-18 0.0168001 4.31842e-11 -1.00983e-17 0.0168001 8.46157e-11 -1.91853e-17 0.0168001 2.86373e-10 -3.41532e-17 0.0168001 5.45201e-10 -6.08813e-17 0.0168001 1.78916e-09 -1.36309e-16 0.0168001 3.3904e-09 -2.61611e-16 0.0168001 1.10052e-08 -7.43988e-16 0.0168001 2.08191e-08 -1.52353e-15 0.0168001 6.72115e-08 -4.66109e-15 0.0168001 1.26971e-07 -9.7046e-15 0.0168002 4.08866e-07 -2.44582e-14 0.0168006 7.70237e-07 -7.4839e-14 0.0168008 2.48852e-06 -2.15796e-13 0.0168032 4.63674e-06 -4.1355e-13 0.0168064 1.53408e-05 -1.29419e-12 0.0168215 2.79078e-05 -2.30747e-12 0.0168617 9.76362e-05 -9.13881e-12 0.0170049 0.000187036 -1.34106e-11 0.0176591 0.000687743 -6.63536e-11 0.0196302 0.0019126 -1.5905e-10 0.0260825 0.00611148 -5.14423e-10 0.0170426 -2.06797e-10 0.0288109 0.0168001 3.84389e-13 -5.58195e-19 0.0168001 1.60175e-12 -3.31698e-18 0.0168001 7.41161e-12 -5.94363e-18 0.0168001 1.63074e-11 -1.23591e-17 0.0168001 5.51836e-11 -1.7376e-17 0.0168001 1.12277e-10 -3.04441e-17 0.0168001 3.58307e-10 -4.53993e-17 0.0168001 7.20062e-10 -7.81227e-17 0.0168001 2.25656e-09 -1.59857e-16 0.0168001 4.52401e-09 -2.99719e-16 0.0168001 1.40246e-08 -8.22975e-16 0.0168001 2.81093e-08 -1.65926e-15 0.0168001 8.63272e-08 -5.03057e-15 0.0168003 1.72969e-07 -1.0367e-14 0.0168003 5.2765e-07 -2.66659e-14 0.0168014 1.05308e-06 -7.85266e-14 0.0168014 3.2284e-06 -2.45959e-13 0.0168085 6.30203e-06 -4.35916e-13 0.0168069 2.03969e-05 -1.73651e-12 0.0168589 3.71533e-05 -2.81605e-12 0.016858 0.000136241 -1.29059e-11 0.0172333 0.000254619 -2.28863e-11 0.0178841 0.00103105 -1.02105e-10 0.0208021 0.00283635 -2.12372e-10 0.00886283 -4.93741e-10 0.0272361 0.0168001 1.3202e-13 -8.43645e-19 0.0168001 9.30472e-13 -3.10607e-18 0.0168001 2.9018e-12 -7.38952e-18 0.0168001 9.04401e-12 -1.10944e-17 0.0168001 2.21752e-11 -1.96698e-17 0.0168001 6.27246e-11 -2.49053e-17 0.0168001 1.47873e-10 -4.01002e-17 0.0168001 4.08845e-10 -5.46379e-17 0.0168001 9.53315e-10 -8.88732e-17 0.0168001 2.60101e-09 -1.73175e-16 0.0168001 6.03296e-09 -3.15143e-16 0.0168001 1.62424e-08 -8.83021e-16 0.0168001 3.75233e-08 -1.75039e-15 0.0168001 9.96856e-08 -5.57051e-15 0.0168003 2.29434e-07 -1.12932e-14 0.0168004 6.03423e-07 -3.52073e-14 0.0168018 1.38256e-06 -9.35371e-14 0.0168022 3.66643e-06 -3.24182e-13 0.0168114 8.28334e-06 -4.90015e-13 0.0168111 2.33091e-05 -2.3225e-12 0.0168794 5.07272e-05 -3.79039e-12 0.0169009 0.000159732 -1.53098e-11 0.0174663 0.000363855 -3.33798e-11 0.0186948 0.00134585 -8.79735e-11 0.0038133 -2.0143e-10 0.0232044 0.0168001 2.07234e-14 -7.84353e-19 0.0168001 5.04012e-13 -3.15435e-18 0.0168001 9.45835e-13 -6.77542e-18 0.0168001 4.66872e-12 -1.11766e-17 0.0168001 8.06405e-12 -1.66891e-17 0.0168001 3.25362e-11 -2.58955e-17 0.0168001 5.8563e-11 -3.26836e-17 0.0168001 2.10162e-10 -6.79041e-17 0.0168001 4.02693e-10 -7.83361e-17 0.0168001 1.3454e-09 -1.36705e-16 0.0168001 2.66545e-09 -2.15345e-16 0.0168001 8.58511e-09 -4.83213e-16 0.0168001 1.7071e-08 -9.43507e-16 0.0168001 5.40278e-08 -2.44675e-15 0.0168002 1.06657e-07 -5.44233e-15 0.0168002 3.35263e-07 -1.8788e-14 0.0168007 6.54914e-07 -3.37362e-14 0.0168009 2.06561e-06 -1.55884e-13 0.0168035 3.98514e-06 -3.07248e-13 0.0168066 1.27567e-05 -9.26793e-13 0.0168217 2.46696e-05 -1.9953e-12 0.0168644 8.02195e-05 -5.72081e-12 0.0169874 0.000169325 -1.37406e-11 0.0176378 0.000569543 -3.50469e-11 0.0016235 -8.37111e-11 0.0195878 0.0168001 1.14918e-14 -6.50521e-19 0.0168001 9.14824e-14 -4.18688e-18 0.0168001 4.38902e-13 -6.24094e-18 0.0168001 9.41011e-13 -1.5139e-17 0.0168001 3.76785e-12 -1.72329e-17 0.0168001 7.80865e-12 -3.37492e-17 0.0168001 2.77037e-11 -3.34519e-17 0.0168001 6.29193e-11 -5.90865e-17 0.0168001 1.92587e-10 -6.82878e-17 0.0168001 4.63775e-10 -1.0584e-16 0.0168001 1.31636e-09 -1.56185e-16 0.0168001 3.2086e-09 -2.49435e-16 0.0168001 8.84945e-09 -5.23422e-16 0.0168001 2.12613e-08 -9.79409e-16 0.0168001 5.76665e-08 -2.81543e-15 0.0168002 1.36187e-07 -5.72205e-15 0.0168002 3.65472e-07 -1.84374e-14 0.0168011 8.53511e-07 -3.18631e-14 0.0168013 2.28385e-06 -1.46826e-13 0.0168067 5.29344e-06 -2.53994e-13 0.0168088 1.42537e-05 -9.49846e-13 0.016845 3.31484e-05 -1.24528e-12 0.0168745 9.10054e-05 -7.46791e-12 0.0171654 0.000222363 -9.75506e-12 0.000675485 -5.33797e-11 0.0178782 0.0168001 5.10047e-15 -7.73341e-19 0.0168001 -3.61234e-15 -5.76237e-18 0.0168001 1.29778e-13 -5.37866e-18 0.0168001 8.3491e-14 -1.76005e-17 0.0168001 9.87045e-13 -1.68754e-17 0.0168001 1.16929e-12 -3.88161e-17 0.0168001 6.9499e-12 -3.98173e-17 0.0168001 1.20482e-11 -6.38697e-17 0.0168001 5.49405e-11 -7.09814e-17 0.0168001 1.26263e-10 -1.08352e-16 0.0168001 4.67913e-10 -1.50375e-16 0.0168001 1.15273e-09 -2.43455e-16 0.0168001 3.58822e-09 -4.39984e-16 0.0168001 8.67441e-09 -8.09287e-16 0.0168001 2.50872e-08 -1.55199e-15 0.0168001 5.89096e-08 -3.01111e-15 0.0168002 1.65377e-07 -7.23876e-15 0.0168005 3.81222e-07 -1.47434e-14 0.0168009 1.0504e-06 -5.31267e-14 0.0168027 2.39968e-06 -1.03578e-13 0.016806 6.54979e-06 -3.28313e-13 0.0168176 1.49811e-05 -6.57403e-13 0.0168418 4.08517e-05 -2.55781e-12 0.0169193 9.73213e-05 -5.57309e-12 0.000273481 -2.05308e-11 0.0171621 0.0168001 2.75252e-15 -1.54329e-18 0.0168001 -1.49395e-14 -4.00816e-18 0.0168001 4.63421e-14 -7.86978e-18 0.0168001 -4.86857e-14 -1.89295e-17 0.0168001 2.92625e-13 -1.73371e-17 0.0168001 -6.38953e-14 -3.9836e-17 0.0168001 1.09992e-12 -2.80351e-17 0.0168001 1.07236e-12 -8.50862e-17 0.0168001 1.10312e-11 -8.30965e-17 0.0168001 2.00178e-11 -1.45547e-16 0.0168001 1.08116e-10 -1.89555e-16 0.0168001 2.94413e-10 -2.85523e-16 0.0168001 1.1368e-09 -4.2045e-16 0.0168001 2.95835e-09 -5.51277e-16 0.0168001 9.69781e-09 -9.93812e-16 0.0168001 2.37165e-08 -1.64013e-15 0.0168001 6.97279e-08 -2.64378e-15 0.0168003 1.64772e-07 -5.23024e-15 0.0168005 4.63707e-07 -1.13424e-14 0.0168013 1.0677e-06 -2.12347e-14 0.0168029 2.93559e-06 -8.97132e-14 0.0168084 6.63849e-06 -1.76278e-13 0.0168174 1.83825e-05 -8.64309e-13 0.0168633 4.09186e-05 -1.16148e-12 0.000119651 -7.84238e-12 0.0169265 0.0168001 7.25657e-16 -2.08878e-18 0.0168001 9.86071e-15 -1.37135e-18 0.0168001 3.88849e-15 -1.10216e-17 0.0168001 1.09666e-13 -6.523e-18 0.0168001 1.78515e-14 -1.64028e-17 0.0168001 5.45186e-13 -2.16417e-17 0.0168001 8.46018e-13 -1.34051e-17 0.0168001 2.21146e-12 -3.76159e-17 0.0168001 6.07468e-12 -9.20437e-17 0.0168001 6.35416e-12 -6.11554e-16 0.0168001 3.98802e-11 -2.61514e-16 0.0168001 7.90647e-11 -2.20125e-16 0.0168001 2.46675e-10 -7.79995e-16 0.0168001 6.53132e-10 -7.08848e-16 0.0168001 2.65719e-09 -1.26221e-15 0.0168001 6.85535e-09 -3.27172e-15 0.0168001 2.66639e-08 -4.666e-15 0.0168002 5.85388e-08 -6.94626e-15 0.0168003 1.95707e-07 -7.67984e-15 0.0168007 4.19877e-07 -9.22939e-15 0.0168013 1.30013e-06 -2.42755e-14 0.0168039 2.72664e-06 -5.29323e-14 0.0168077 8.27058e-06 -2.44714e-13 0.0168225 1.70971e-05 -5.37142e-13 5.22407e-05 -2.18754e-12 0.01685 0.0168001 1.05351e-14 -7.77576e-19 0.0168001 -2.53825e-14 -4.32664e-18 0.0168001 7.38401e-14 -1.04083e-17 0.0168001 2.05698e-14 -1.63842e-17 0.0168001 1.87752e-13 -3.18052e-17 0.0168001 3.87011e-13 -4.23432e-17 0.0168001 3.40686e-13 -7.39528e-17 0.0168001 2.14814e-12 -7.96897e-17 0.0168001 4.39513e-12 -1.29398e-16 0.0168001 1.59986e-11 -1.79342e-16 0.0168001 2.79894e-11 -1.43922e-16 0.0168001 2.0063e-11 -1.64005e-16 0.0168001 1.64223e-10 -2.7793e-16 0.0168001 1.37753e-10 -7.06541e-16 0.0168001 7.64035e-10 -1.80662e-15 0.0168001 1.48187e-09 -2.99845e-15 0.0168001 5.20458e-09 -4.58783e-15 0.0168001 1.95364e-08 -7.60548e-15 0.0168003 5.14783e-08 -9.94371e-15 0.0168003 1.78994e-07 -1.23668e-14 0.016801 4.0865e-07 -1.74445e-14 0.0168013 1.27903e-06 -1.73768e-14 0.0168051 2.82229e-06 -2.56746e-14 0.0168068 8.4026e-06 -1.15844e-13 1.83003e-05 -2.45287e-13 0.0168291 0.0168001 2.32567e-15 -1.2426e-18 0.0168001 1.20532e-14 -4.19535e-18 0.0168001 4.92759e-14 -1.23235e-17 0.0168001 1.75486e-13 -2.00044e-17 0.0168001 2.97859e-13 -4.25151e-17 0.0168001 1.1495e-12 -6.77516e-17 0.0168001 1.74901e-12 -1.28057e-16 0.0168001 5.59891e-12 -2.23358e-16 0.0168001 1.03426e-11 -2.37105e-16 0.0168001 1.60184e-11 -1.99453e-16 0.0168001 3.06698e-11 -4.98106e-17 0.0168001 7.2348e-11 2.71221e-16 0.0168001 4.41431e-11 2.53511e-16 0.0168001 2.37071e-10 1.97525e-16 0.0168001 2.12287e-10 -1.09497e-15 0.0168001 1.08412e-09 -3.85451e-15 0.0168001 8.85195e-10 -7.42876e-15 0.0168002 4.36747e-09 -1.7616e-14 0.0168002 1.1217e-08 -1.78803e-14 0.0168003 3.73786e-08 -1.42095e-14 0.0168004 1.46977e-07 -3.6137e-14 0.0168011 3.55036e-07 6.65011e-15 0.0168015 1.19099e-06 -2.1432e-14 0.0168054 2.67557e-06 1.94599e-14 8.1824e-06 -4.68378e-14 0.016808 0.0168001 -6.71663e-17 -1.02576e-18 0.0168001 8.52524e-15 -8.9921e-18 0.0168001 1.1656e-14 -1.39074e-17 0.0168001 7.9879e-14 -5.21815e-17 0.0168001 1.06074e-13 -4.09523e-17 0.0168001 4.55371e-13 -1.02803e-16 0.0168001 6.94837e-13 2.8905e-17 0.0168001 2.27252e-12 4.30632e-18 0.0168001 3.68334e-12 -2.37837e-16 0.0168001 7.59764e-12 7.75828e-16 0.0168001 1.2725e-11 7.85172e-16 0.0168001 -2.12233e-11 2.28579e-16 0.0168001 8.45828e-11 -2.83345e-15 0.0168001 1.9542e-11 -6.00867e-15 0.0168001 3.7387e-10 -1.32885e-14 0.0168001 7.69419e-11 -1.33054e-14 0.0168001 1.24392e-09 -1.12253e-14 0.0168001 5.51064e-10 -1.30996e-14 0.0168002 5.4962e-09 -1.97536e-14 0.0168003 4.90509e-09 -6.93161e-15 0.0168005 2.74356e-08 -2.94538e-15 0.0168006 9.24948e-08 9.85184e-18 0.0168015 2.96159e-07 -5.79598e-15 0.016802 9.64806e-07 -4.28467e-15 2.4966e-06 -4.98448e-14 0.016806 0.0168001 -4.25333e-16 -9.31736e-21 0.0168001 8.45829e-15 -1.26089e-17 0.0168001 1.04827e-14 1.26801e-18 0.0168001 5.15532e-14 -8.64727e-17 0.0168001 4.72198e-14 4.11878e-17 0.0168001 1.99314e-13 -1.98974e-16 0.0168001 6.65556e-14 2.50928e-16 0.0168001 5.30668e-13 -3.18247e-17 0.0168001 2.57801e-13 2.52516e-16 0.0168001 6.84869e-13 1.61198e-15 0.0168001 4.26792e-12 1.43556e-15 0.0168001 -5.89002e-12 2.24363e-15 0.0168001 4.46149e-11 -1.03798e-15 0.0168001 9.5344e-11 -6.21084e-15 0.0168001 2.59625e-10 -1.07992e-14 0.0168001 3.40266e-10 -1.93235e-14 0.0168001 8.29461e-10 -1.49075e-14 0.0168001 1.67467e-09 -5.10873e-15 0.0168002 3.36347e-09 1.21845e-16 0.0168003 5.90763e-09 1.62944e-14 0.0168004 8.6565e-09 9.99913e-14 0.0168006 2.06794e-08 3.46875e-13 0.0168011 5.01195e-08 2.36749e-13 0.0168016 2.20124e-07 1.7117e-13 6.05876e-07 3.50242e-14 0.0168035 0.0168001 -4.99058e-16 -9.84252e-19 0.0168001 3.02368e-15 -9.29026e-18 0.0168001 1.49674e-16 -1.66908e-17 0.0168001 1.61847e-14 -3.076e-17 0.0168001 6.52424e-15 -3.23575e-17 0.0168001 4.84839e-14 -3.46919e-17 0.0168001 -9.91644e-15 8.45e-17 0.0168001 7.46138e-14 -4.3529e-17 0.0168001 4.6609e-14 -2.57943e-16 0.0168001 4.52045e-14 -1.44733e-16 0.0168001 3.14442e-12 -2.01302e-15 0.0168001 1.29774e-11 -4.41576e-15 0.0168001 4.65742e-11 -4.18068e-15 0.0168001 1.14667e-10 2.99839e-15 0.0168001 2.49179e-10 4.16147e-17 0.0168001 4.26942e-10 -6.21402e-16 0.0168001 9.22422e-10 -2.59704e-15 0.0168001 2.8114e-09 -7.47383e-15 0.0168002 3.38901e-09 -2.90312e-14 0.0168003 1.04579e-08 -5.12403e-14 0.0168004 5.53406e-09 -4.81498e-14 0.0168006 2.44027e-08 -8.08028e-15 0.0168008 1.23103e-08 7.41648e-15 0.0168017 6.75956e-08 2.98045e-14 1.19146e-07 5.0169e-14 0.0168025 0.0168001 -1.50758e-16 -1.22312e-18 0.0168001 4.32055e-16 -5.96904e-18 0.0168001 1.45988e-16 -1.27157e-17 0.0168001 1.70209e-15 -2.76421e-17 0.0168001 3.5255e-15 -1.95859e-17 0.0168001 5.16216e-15 -5.10024e-17 0.0168001 1.32597e-14 -2.01695e-17 0.0168001 5.44414e-14 5.46556e-17 0.0168001 1.73427e-13 -2.30814e-16 0.0168001 2.3025e-13 -5.44895e-16 0.0168001 4.08099e-12 -3.97282e-16 0.0168001 2.05151e-11 6.58947e-16 0.0168001 4.23453e-11 1.44649e-15 0.0168001 1.00277e-10 1.49128e-15 0.0168001 2.02574e-10 -1.25723e-15 0.0168001 4.34085e-10 -1.42069e-14 0.0168001 8.81389e-10 3.57819e-16 0.0168001 1.15338e-09 -1.06761e-13 0.0168001 3.14317e-09 1.25474e-15 0.0168002 1.84244e-09 -1.53266e-14 0.0168004 9.6213e-09 -3.77495e-14 0.0168005 3.10793e-09 -2.26045e-14 0.0168008 2.28765e-08 6.763e-14 0.0168013 5.42007e-09 6.68734e-14 6.46553e-08 1.60331e-13 0.0168023 0.0168001 -3.5345e-17 -1.28241e-18 0.0168001 -3.34205e-16 -4.33003e-18 0.0168001 -8.4622e-16 -1.17856e-17 0.0168001 -2.30924e-15 -2.03432e-17 0.0168001 -1.93899e-15 -2.84103e-17 0.0168001 -8.21836e-15 -4.87442e-17 0.0168001 -1.03867e-14 -6.84953e-17 0.0168001 1.31663e-14 -8.83244e-17 0.0168001 1.16251e-13 -1.65769e-16 0.0168001 3.99911e-13 -3.73808e-16 0.0168001 5.00318e-12 -7.07675e-16 0.0168001 2.82901e-11 -1.44575e-15 0.0168001 2.89291e-11 -1.19591e-15 0.0168001 7.33424e-11 -2.18298e-16 0.0168001 1.4182e-10 -5.01964e-15 0.0168001 7.35381e-10 -1.77047e-14 0.0168001 2.77073e-10 -1.89833e-14 0.0168001 1.22804e-09 -2.51122e-14 0.0168002 6.14777e-10 -2.54961e-14 0.0168002 3.42728e-09 -1.99005e-14 0.0168004 1.93571e-09 -3.18777e-14 0.0168005 6.3943e-09 -6.09876e-14 0.0168008 3.30282e-09 -1.87337e-13 0.0168013 1.65411e-08 -4.30469e-13 7.60478e-09 -4.56348e-13 0.0168021 0.0168001 5.09575e-18 -1.32391e-18 0.0168001 -3.27266e-16 -3.66681e-18 0.0168001 -6.36644e-16 -1.11656e-17 0.0168001 -2.15393e-15 -1.73167e-17 0.0168001 -3.3008e-15 -2.93226e-17 0.0168001 -9.11912e-15 -4.59151e-17 0.0168001 -1.31216e-14 -7.52851e-17 0.0168001 -1.65154e-14 -8.79644e-17 0.0168001 6.99434e-14 -1.31315e-16 0.0168001 -1.72554e-13 -1.33098e-16 0.0168001 2.5702e-12 5.89356e-16 0.0168001 1.45592e-11 3.32134e-15 0.0168001 1.18983e-11 6.03286e-16 0.0168001 2.1564e-11 2.65514e-15 0.0168001 3.25941e-11 -8.32824e-15 0.0168001 3.17017e-10 -3.96487e-15 0.0168001 -4.42745e-11 1.09553e-14 0.0168001 4.24901e-10 -1.90958e-14 0.0168002 -1.98985e-10 5.50401e-14 0.0168002 1.31947e-09 -1.65441e-13 0.0168004 1.7264e-10 4.4765e-14 0.0168005 2.37465e-09 6.2614e-14 0.0168008 -5.51596e-10 -4.57108e-14 0.0168014 5.83798e-09 1.07748e-14 -6.04549e-10 -7.42289e-14 0.0168022 0.0168001 8.89046e-18 -1.32222e-18 0.0168001 -1.29562e-16 -3.53806e-18 0.0168001 -2.39826e-16 -1.08835e-17 0.0168001 -8.50123e-16 -1.65205e-17 0.0168001 -1.53149e-15 -2.8628e-17 0.0168001 -3.7927e-15 -4.36773e-17 0.0168001 -5.13587e-15 -7.12253e-17 0.0168001 -1.85871e-14 -9.58079e-17 0.0168001 1.63252e-14 -1.36969e-16 0.0168001 -1.50999e-13 -2.08888e-16 0.0168001 1.13714e-12 4.99101e-16 0.0168001 6.47524e-12 2.92194e-15 0.0168001 3.96229e-13 -5.34865e-16 0.0168001 1.88773e-12 -3.05875e-16 0.0168001 2.74149e-11 -3.20624e-15 0.0168001 7.0761e-11 -2.43727e-15 0.0168001 -4.41582e-11 5.93691e-15 0.0168001 7.62522e-11 1.17628e-15 0.0168002 -6.52103e-12 -1.10049e-14 0.0168002 1.65147e-10 1.32301e-14 0.0168004 6.74591e-11 -1.96182e-14 0.0168005 3.12289e-10 2.79323e-14 0.0168008 -3.12669e-11 -3.90524e-14 0.0168014 7.7754e-10 2.37539e-14 -2.22444e-10 -5.12317e-14 0.0168022 0.0168001 5.69206e-18 -1.32052e-18 0.0168001 -3.57787e-17 -3.50248e-18 0.0168001 -5.35596e-17 -1.08098e-17 0.0168001 -2.22587e-16 -1.64163e-17 0.0168001 -4.3509e-16 -2.81918e-17 0.0168001 -1.03015e-15 -4.31817e-17 0.0168001 -1.92327e-15 -6.93212e-17 0.0168001 -5.11521e-15 -9.24155e-17 0.0168001 -2.91542e-16 -1.29113e-16 0.0168001 -2.40911e-14 -1.53174e-16 0.0168001 2.55457e-13 4.20255e-17 0.0168001 1.65583e-12 6.99733e-16 0.0168001 -4.37836e-13 -1.85054e-16 0.0168001 -1.60992e-13 -1.87119e-16 0.0168001 6.6399e-12 -1.57802e-15 0.0168001 1.3526e-11 -1.16929e-15 0.0168001 -9.52706e-12 3.34996e-15 0.0168001 4.50556e-12 1.90165e-15 0.0168002 2.64357e-11 -7.92683e-15 0.0168002 -1.16589e-11 9.16926e-15 0.0168004 5.70761e-11 -1.33575e-14 0.0168005 2.54851e-11 2.10432e-14 0.0168008 7.38334e-11 -2.82109e-14 0.0168014 1.041e-10 2.4523e-14 -4.9439e-11 -2.89712e-14 0.0168022 0.0168001 -7.04731e-19 -1.29765e-18 0.0168001 2.76472e-18 -3.51434e-18 0.0168001 -6.66784e-18 -1.07946e-17 0.0168001 -1.07336e-17 -1.6396e-17 0.0168001 -8.60314e-17 -2.81122e-17 0.0168001 -1.14329e-16 -4.29971e-17 0.0168001 -5.55274e-16 -6.83962e-17 0.0168001 -6.84782e-16 -9.25578e-17 0.0168001 -3.03522e-15 -1.27549e-16 0.0168001 3.51666e-15 -1.85315e-16 0.0168001 2.98368e-14 -6.71147e-17 0.0168001 2.5533e-13 3.36776e-16 0.0168001 -3.81005e-14 -3.92966e-16 0.0168001 5.1339e-14 -7.00436e-16 0.0168001 1.47338e-13 2.09471e-15 0.0168001 8.15957e-13 -1.12633e-16 0.0168001 1.56346e-12 -3.64432e-15 0.0168001 -3.83772e-12 3.68071e-16 0.0168002 1.49543e-11 -2.2557e-15 0.0168002 -1.34714e-11 3.49392e-15 0.0168004 2.70138e-11 -5.96831e-15 0.0168005 -1.43793e-11 7.57318e-15 0.0168008 4.05156e-11 -1.04935e-14 0.0168014 5.04719e-12 7.80752e-15 -2.19967e-11 -1.1298e-14 0.0168022 0.0168001 2.22261e-18 -1.31798e-18 0.0168001 4.44523e-18 -3.49825e-18 0.0168001 1.68051e-18 -1.08056e-17 0.0168001 1.81062e-17 -1.63774e-17 0.0168001 -1.02999e-18 -2.81206e-17 0.0168001 2.21177e-17 -4.292e-17 0.0168001 -1.46801e-16 -6.84021e-17 0.0168001 1.42789e-16 -9.21589e-17 0.0168001 -1.65585e-15 -1.26586e-16 0.0168001 3.96238e-15 -1.93683e-16 0.0168001 -3.17015e-15 -1.63108e-16 0.0168001 -1.10312e-14 -2.9287e-17 0.0168001 7.94915e-14 -3.81465e-16 0.0168001 7.53352e-14 -6.43056e-16 0.0168001 -8.94388e-13 1.20723e-15 0.0168001 -8.0727e-13 -1.80296e-16 0.0168001 1.80568e-12 -2.9932e-15 0.0168001 -1.71041e-12 -1.28046e-16 0.0168002 5.26289e-12 -8.71996e-16 0.0168003 -4.34025e-12 2.79606e-16 0.0168004 9.65146e-12 -3.01967e-15 0.0168005 -6.35806e-12 1.93101e-15 0.0168008 1.27518e-11 -4.61749e-15 0.0168014 -3.15595e-12 2.38713e-15 -3.45031e-12 -6.73712e-15 0.0168022 0.0168001 7.58942e-19 -1.30782e-18 0.0168001 -5.74627e-18 -3.52705e-18 0.0168001 4.06576e-18 -1.07785e-17 0.0168001 -1.21973e-17 -1.64036e-17 0.0168001 -3.36645e-17 -2.81232e-17 0.0168001 -2.43945e-17 -4.28302e-17 0.0168001 -1.6263e-16 -6.87706e-17 0.0168001 -2.07083e-17 -9.15812e-17 0.0168001 -7.29072e-16 -1.26001e-16 0.0168001 1.77164e-15 -1.91424e-16 0.0168001 -3.46527e-15 -2.26044e-16 0.0168001 -2.63232e-14 -2.73166e-16 0.0168001 5.38801e-14 -3.66887e-16 0.0168001 4.81954e-14 -3.49967e-16 0.0168001 -4.80599e-13 -8.0824e-16 0.0168001 -4.65749e-13 -6.27479e-16 0.0168001 7.22811e-13 6.57841e-16 0.0168001 -5.15318e-13 -8.73661e-16 0.0168002 1.64783e-12 -1.60639e-15 0.0168003 -1.05352e-12 -5.14197e-16 0.0168004 3.1617e-12 -1.22628e-15 0.0168005 -1.81282e-12 -4.48014e-16 0.0168008 3.68294e-12 -2.43333e-15 0.0168014 -9.99335e-13 -8.60841e-16 -3.14368e-13 -3.77553e-15 0.0168022 0.0168001 2.43945e-18 -1.31036e-18 0.0168001 -9.97466e-18 -3.51773e-18 0.0168001 -1.02999e-18 -1.07912e-17 0.0168001 -4.64039e-17 -1.63816e-17 0.0168001 -3.61581e-17 -2.81181e-17 0.0168001 -1.54553e-16 -4.28683e-17 0.0168001 -2.39121e-16 -6.89434e-17 0.0168001 -2.03993e-16 -9.10586e-17 0.0168001 -1.72551e-16 -1.25417e-16 0.0168001 4.53251e-16 -1.893e-16 0.0168001 1.96853e-15 -2.70218e-16 0.0168001 1.01305e-14 -4.50418e-16 0.0168001 2.27201e-14 -3.38315e-16 0.0168001 2.61718e-14 -1.52511e-16 0.0168001 -1.7e-13 -2.18398e-15 0.0168001 -1.44704e-13 -9.64081e-16 0.0168001 2.24554e-13 2.43761e-15 0.0168001 -1.36432e-13 -9.55175e-16 0.0168002 4.7921e-13 -1.95841e-15 0.0168003 -1.61011e-13 -4.25803e-16 0.0168004 9.5667e-13 -3.78262e-16 0.0168005 -2.79025e-13 -1.18374e-15 0.0168008 1.09488e-12 -1.72427e-15 0.0168014 1.2856e-13 -2.09119e-15 5.7474e-13 -2.59978e-15 0.0168022 0.0168001 -1.31798e-18 0.0168001 -3.47029e-18 0.0168001 -1.08302e-17 0.0168001 -1.62952e-17 0.0168001 -2.82147e-17 0.0168001 -4.27362e-17 0.0168001 -6.90323e-17 0.0168001 -9.08731e-17 0.0168001 -1.25326e-16 0.0168001 -1.89336e-16 0.0168001 -2.91051e-16 0.0168001 -5.32314e-16 0.0168001 -3.21651e-16 0.0168001 -7.16031e-17 0.0168001 -2.72033e-15 0.0168001 -1.10024e-15 0.0168001 2.986e-15 0.0168001 -8.92148e-16 0.0168002 -2.0756e-15 0.0168003 -3.22587e-16 0.0168004 -1.0434e-16 0.0168005 -1.3206e-15 0.0168008 -1.53949e-15 0.0168014 -2.51974e-15 -2.07057e-15 0.0168022 0.0168001 1.8492e-10 9.93764e-17 0.0168001 1.09297e-09 4.68314e-16 0.0168001 3.62756e-09 9.20213e-16 0.0168001 1.04621e-08 2.3543e-15 0.0168001 2.60023e-08 4.55264e-15 0.0168 6.71248e-08 1.25034e-14 0.0168001 1.58029e-07 2.55346e-14 0.0167997 4.01e-07 6.91372e-14 0.0168002 9.36251e-07 1.43046e-13 0.016798 2.40305e-06 3.48858e-13 0.0168016 5.6483e-06 7.36468e-13 0.0167864 1.49493e-05 1.69829e-12 0.0168218 3.70474e-05 3.27331e-12 0.0167286 0.000103651 7.45373e-12 0.0169719 0.000306225 2.24887e-11 0.0168252 0.00109583 1.43782e-11 0.0184506 0.00385382 6.28731e-11 0.0176922 0.0161977 -1.76397e-10 0.0163733 0.0165761 -1.62143e-10 0.0149056 0.0161395 -1.30286e-10 0.0134936 0.016846 -8.86439e-11 0.0117483 0.0179095 -7.20661e-11 0.0106225 0.0192072 -7.11646e-11 0.0113497 0.0215435 -3.44323e-11 0.0244344 -1.28233e-11 0.0182577 0.0168001 1.39611e-10 9.16939e-17 0.0168001 1.09373e-09 4.17809e-16 0.0168001 3.3308e-09 8.16827e-16 0.0168001 1.01695e-08 2.01799e-15 0.0168 2.40747e-08 3.87115e-15 0.0168 6.53627e-08 1.03315e-14 0.0168 1.479e-07 2.12435e-14 0.0167998 3.94683e-07 5.6341e-14 0.0167996 8.87254e-07 1.16561e-13 0.0167986 2.36775e-06 2.85873e-13 0.0167978 5.37599e-06 6.18299e-13 0.0167933 1.42988e-05 1.32457e-12 0.016789 3.32673e-05 3.12991e-12 0.0167692 9.59362e-05 5.51461e-12 0.0167798 0.000254578 1.77181e-11 0.0168392 0.000920235 2.39069e-11 0.0173373 0.00299885 6.17546e-11 0.0176733 0.0152084 2.21653e-12 0.0169406 0.0174411 -1.81666e-10 0.0157459 0.017397 -1.56201e-10 0.0146983 0.0177227 -8.39969e-11 0.0135064 0.0186706 -5.86206e-11 0.0129645 0.0195521 -5.9887e-11 0.0140311 0.0204232 -5.86487e-11 0.0214704 -3.11068e-11 0.0171006 0.0168001 1.21573e-10 7.96965e-17 0.0168001 9.51825e-10 3.48864e-16 0.0168001 2.94089e-09 6.79725e-16 0.0168001 8.89353e-09 1.55838e-15 0.0168001 2.11547e-08 2.90026e-15 0.0168 5.64214e-08 7.13819e-15 0.0168 1.27479e-07 1.41271e-14 0.0167999 3.33458e-07 3.65791e-14 0.0167999 7.42747e-07 7.35431e-14 0.0167995 1.98788e-06 1.92115e-13 0.0167996 4.21294e-06 3.7578e-13 0.0167964 1.30047e-05 1.02605e-12 0.0168 2.40957e-05 1.84897e-12 0.0167785 9.51308e-05 5.43779e-12 0.0168025 0.000194328 9.92068e-12 0.0167612 0.000884379 3.05098e-11 0.0169827 0.00253387 5.33327e-11 0.0180988 0.0134836 4.40778e-11 0.0176324 0.0181261 -2.18888e-10 0.0167081 0.018331 -1.66856e-10 0.0158887 0.0183251 -6.62637e-11 0.0151676 0.018962 -3.88279e-11 0.0149273 0.0195328 -6.04897e-11 0.0156709 0.0195517 -6.86091e-11 0.0192988 -3.60328e-11 0.018008 0.0168001 1.09942e-10 6.66581e-17 0.0168001 9.20571e-10 2.96517e-16 0.0168001 2.81194e-09 5.73676e-16 0.0168001 8.49261e-09 1.29208e-15 0.0168001 2.02177e-08 2.36376e-15 0.0168 5.39346e-08 5.6422e-15 0.0168 1.22757e-07 1.10191e-14 0.0167999 3.20406e-07 2.77735e-14 0.0167998 7.21225e-07 5.54413e-14 0.0167992 1.89269e-06 1.41407e-13 0.0167984 4.18176e-06 2.70073e-13 0.016796 1.1678e-05 7.91845e-13 0.016794 2.38168e-05 9.04518e-13 0.0167844 8.24238e-05 5.44885e-12 0.0167979 0.000163125 5.08408e-12 0.0168741 0.000732496 2.98261e-11 0.0171785 0.00200239 5.06353e-11 0.0193913 0.0105736 1.005e-10 0.0189529 0.0187171 -1.86978e-10 0.0179114 0.0193389 -1.41995e-10 0.0171104 0.0188728 -5.13874e-11 0.0166211 0.0190739 -3.5437e-11 0.016505 0.0193673 -6.30555e-11 0.0167519 0.0190915 -6.36805e-11 0.0179888 -5.41106e-11 0.0179954 0.0168001 3.70339e-11 5.1686e-17 0.0168001 9.92136e-10 2.41703e-16 0.0168001 1.7292e-09 4.63304e-16 0.0168001 8.80335e-09 1.06036e-15 0.0168001 1.31034e-08 1.91291e-15 0.0168 5.65553e-08 4.59577e-15 0.0168001 8.20883e-08 8.95571e-15 0.0167999 3.43347e-07 2.24495e-14 0.0168 4.93146e-07 4.50186e-14 0.0167993 2.07255e-06 1.11456e-13 0.0167999 2.87676e-06 2.18879e-13 0.0167959 1.29205e-05 5.4567e-13 0.0168006 1.564e-05 9.91548e-13 0.0167825 8.70665e-05 2.69987e-12 0.016826 9.57696e-05 5.25161e-12 0.0168561 0.000649226 1.2398e-11 0.0174552 0.00121502 2.90569e-11 0.0218347 0.0059387 7.39211e-11 0.0204973 0.0198695 -1.07943e-10 0.019622 0.019965 -9.08307e-11 0.0183889 0.0198937 -4.49688e-11 0.0179049 0.0193816 -4.20322e-11 0.0178192 0.0193483 -5.68838e-11 0.017938 0.0189228 -6.94177e-11 0.0176075 -5.38085e-11 0.0182947 0.0168001 7.69441e-11 4.54814e-17 0.0168001 4.96895e-10 1.57585e-16 0.0168001 1.77873e-09 3.99997e-16 0.0168001 4.75486e-09 7.18178e-16 0.0168001 1.28871e-08 1.64367e-15 0.0168001 3.06818e-08 3.04239e-15 0.0168 7.90086e-08 7.57768e-15 0.0168002 1.84182e-07 1.50043e-14 0.0168 4.71141e-07 3.90356e-14 0.0168007 1.09454e-06 7.83985e-14 0.0167996 2.87025e-06 1.92001e-13 0.0168048 6.46628e-06 3.99986e-13 0.0167965 1.85284e-05 8.7353e-13 0.0168356 4.02679e-05 1.75798e-12 0.016777 0.000127791 4.50413e-12 0.01708 0.000310697 8.68936e-12 0.0169564 0.00120785 2.41753e-11 0.0188862 0.00375333 5.33304e-11 0.0210934 0.0170324 5.22153e-11 0.0206487 0.0201829 -6.04113e-11 0.0198761 0.0205339 -5.47726e-11 0.0192614 0.0199433 -3.75615e-11 0.0191144 0.01944 -4.66572e-11 0.0191392 0.018823 -5.19434e-11 0.0175437 -5.05244e-11 0.0191563 0.0168001 8.17436e-11 3.89356e-17 0.0168001 4.29546e-10 1.38088e-16 0.0168001 1.60702e-09 3.37547e-16 0.0168001 4.12073e-09 6.00261e-16 0.0168001 1.15251e-08 1.29046e-15 0.0168001 2.66882e-08 2.32426e-15 0.0168 7.07831e-08 5.43462e-15 0.0168 1.6057e-07 1.05692e-14 0.0167999 4.21714e-07 2.66273e-14 0.0167999 9.49917e-07 5.36826e-14 0.0167996 2.51125e-06 1.35417e-13 0.0167995 5.55729e-06 2.86707e-13 0.0167983 1.56647e-05 6.42789e-13 0.0168026 3.19318e-05 1.54079e-12 0.0167964 0.000110677 3.15314e-12 0.0168526 0.000227822 7.75562e-12 0.0169931 0.000979129 1.95379e-11 0.0178662 0.00273483 4.72688e-11 0.0211564 0.0129943 9.45776e-11 0.0212858 0.0199312 -7.90796e-11 0.0208134 0.0208977 -7.29417e-11 0.0202222 0.0204738 -5.60737e-11 0.0200159 0.0195093 -4.85254e-11 0.0199312 0.0186891 -4.64631e-11 0.0174763 -4.37409e-11 0.0197972 0.0168001 9.25377e-11 2.91913e-17 0.0168001 2.6353e-10 1.0696e-16 0.0168001 1.55941e-09 2.67565e-16 0.0168001 2.73069e-09 4.76438e-16 0.0168001 1.10895e-08 9.97862e-16 0.0168001 1.80697e-08 1.7667e-15 0.0168 6.83441e-08 3.89993e-15 0.0168001 1.10039e-07 7.40755e-15 0.0168 4.09921e-07 1.76507e-14 0.0168002 6.54077e-07 3.44485e-14 0.0167997 2.45319e-06 8.69465e-14 0.0168008 3.79051e-06 1.66146e-13 0.0167981 1.51289e-05 4.70073e-13 0.016805 2.0761e-05 8.42484e-13 0.0167943 0.000100662 2.92775e-12 0.0168662 0.000130736 5.26545e-12 0.0169889 0.000750103 1.93876e-11 0.0179393 0.00160297 4.82015e-11 0.0228963 0.00715419 1.41375e-10 0.0224495 0.0201654 -5.72114e-11 0.0223977 0.0209076 -7.61141e-11 0.0217491 0.0211267 -6.58617e-11 0.0211131 0.0200923 -4.90946e-11 0.0208576 0.0188056 -4.67212e-11 0.017529 -4.32932e-11 0.0206295 0.0168001 3.73249e-11 1.27783e-17 0.0168001 2.6649e-10 7.53402e-17 0.0168001 8.32161e-10 1.54057e-16 0.0168001 2.51754e-09 3.46939e-16 0.0168001 6.06129e-09 5.93419e-16 0.0168001 1.62125e-08 1.25654e-15 0.0168001 3.73005e-08 2.22064e-15 0.0168001 9.67769e-08 5.14929e-15 0.0168002 2.2088e-07 9.93608e-15 0.0168001 5.67029e-07 2.53182e-14 0.016801 1.29081e-06 5.3223e-14 0.0168003 3.37654e-06 1.38907e-13 0.0168066 7.44592e-06 2.96392e-13 0.0167994 2.16042e-05 7.30286e-13 0.0168487 4.42835e-05 1.54296e-12 0.0168003 0.000148931 3.91441e-12 0.017175 0.000331619 7.4531e-12 0.0173059 0.00134294 2.11111e-11 0.0201463 0.00401967 3.84913e-11 0.023233 0.0165791 1.66193e-11 0.0232689 0.0207911 -6.4814e-11 0.0227945 0.0215251 -6.00389e-11 0.0220227 0.0207249 -4.91184e-11 0.0215902 0.0190475 -4.62176e-11 0.0176444 -4.44387e-11 0.021232 0.0168001 1.49962e-11 8.86081e-18 0.0168001 2.48517e-10 5.53849e-17 0.0168001 5.21351e-10 1.14897e-16 0.0168001 2.236e-09 2.74949e-16 0.0168001 3.89073e-09 4.71063e-16 0.0168001 1.44153e-08 1.04884e-15 0.0168001 2.43222e-08 1.84697e-15 0.0168 8.74582e-08 4.45526e-15 0.0168001 1.46487e-07 8.64102e-15 0.0167999 5.24167e-07 2.24796e-14 0.0168002 8.70637e-07 4.61877e-14 0.0167995 3.15225e-06 1.22041e-13 0.0168008 5.07031e-06 2.48847e-13 0.016798 1.96764e-05 6.2492e-13 0.0168092 2.83811e-05 1.3669e-12 0.0167996 0.000134086 2.98384e-12 0.0169141 0.000191942 7.33993e-12 0.0171235 0.00105041 1.50171e-11 0.0183013 0.00271767 3.15233e-11 0.023442 0.0107135 5.26455e-11 0.0238518 0.0202393 -5.31976e-11 0.0238195 0.0214496 -5.6067e-11 0.0231898 0.0213083 -5.68077e-11 0.0224538 0.0197353 -4.84359e-11 0.0179769 -4.51696e-11 0.0219921 0.0168001 2.09128e-11 6.18249e-18 0.0168001 1.20817e-10 2.51416e-17 0.0168001 4.48826e-10 7.878e-17 0.0168001 1.16919e-09 1.46945e-16 0.0168001 3.26126e-09 3.49868e-16 0.0168001 7.62526e-09 5.90768e-16 0.0168001 2.0153e-08 1.35657e-15 0.0168001 4.62534e-08 2.41182e-15 0.0168001 1.20571e-07 6.09944e-15 0.0168002 2.75995e-07 1.21669e-14 0.0168001 7.16851e-07 3.432e-14 0.0168012 1.63899e-06 7.19862e-14 0.0168003 4.3292e-06 1.89498e-13 0.0168081 9.71649e-06 4.33106e-13 0.0168 2.75581e-05 8.95227e-13 0.0168595 5.9993e-05 2.4438e-12 0.0168325 0.000188613 3.16771e-12 0.0173468 0.000463049 1.33124e-11 0.0182863 0.00169332 1.16277e-11 0.0232639 0.00529745 3.44399e-11 0.0249884 0.0182541 -1.10768e-11 0.0251237 0.0212798 -6.13385e-11 0.0245933 0.0217689 -5.90807e-11 0.0234335 0.0207471 -5.19302e-11 0.0185754 -4.62597e-11 0.0226669 0.0168001 2.09413e-11 3.72356e-18 0.0168001 6.88468e-11 1.57514e-17 0.0168001 3.65834e-10 5.12446e-17 0.0168001 7.00471e-10 9.88682e-17 0.0168001 2.62261e-09 2.4271e-16 0.0168001 4.63812e-09 4.10241e-16 0.0168001 1.6291e-08 9.21616e-16 0.0168001 2.84312e-08 1.58182e-15 0.0168001 9.84769e-08 3.8343e-15 0.0168001 1.71164e-07 7.52683e-15 0.0168 5.91765e-07 2.17928e-14 0.0168004 1.02088e-06 4.55613e-14 0.0167999 3.56787e-06 1.25242e-13 0.0168022 5.98287e-06 2.61328e-13 0.0168012 2.22917e-05 6.72235e-13 0.0168199 3.388e-05 1.37392e-12 0.0168259 0.000152465 3.59074e-12 0.0170147 0.000238477 6.84154e-12 0.0174155 0.00120516 1.8603e-11 0.0191539 0.00338618 3.12373e-11 0.0247776 0.0118792 5.09964e-11 0.0254011 0.0204829 -4.10913e-11 0.0254595 0.0215339 -4.68828e-11 0.0246462 0.0215222 -5.11841e-11 0.0195628 -5.00435e-11 0.0236912 0.0168001 8.09014e-12 1.15959e-18 0.0168001 5.77337e-11 8.52962e-18 0.0168001 1.80755e-10 1.98511e-17 0.0168001 5.49059e-10 6.03079e-17 0.0168001 1.3271e-09 1.11138e-16 0.0168001 3.58506e-09 2.79316e-16 0.0168001 8.28408e-09 4.61081e-16 0.0168001 2.18319e-08 1.07003e-15 0.0168001 5.00542e-08 1.80352e-15 0.0168001 1.30988e-07 4.90367e-15 0.0168003 2.99914e-07 1.03889e-14 0.0168001 7.84471e-07 3.25692e-14 0.0168014 1.79419e-06 7.05976e-14 0.0168004 4.76471e-06 1.93378e-13 0.0168094 1.07941e-05 4.52417e-13 0.0168027 3.00259e-05 9.30719e-13 0.0168676 6.76666e-05 2.47068e-12 0.0168663 0.000202132 3.82992e-12 0.0174548 0.00051893 1.38074e-11 0.0189078 0.00183428 1.44694e-11 0.0244792 0.00567209 6.67726e-11 0.0263805 0.0182859 -7.78946e-12 0.0266418 0.0211642 -4.6495e-11 0.025925 0.022111 -4.80688e-11 0.0206552 -4.73823e-11 0.0247865 0.0168001 3.19494e-12 6.98802e-19 0.0168001 4.4718e-11 4.60871e-18 0.0168001 1.01523e-10 1.11224e-17 0.0168001 4.06974e-10 3.35374e-17 0.0168001 7.588e-10 6.42127e-17 0.0168001 2.64482e-09 1.69573e-16 0.0168001 4.77757e-09 2.82885e-16 0.0168001 1.61696e-08 6.48379e-16 0.0168001 2.90532e-08 1.04431e-15 0.0168001 9.76245e-08 2.44442e-15 0.0168001 1.74963e-07 5.24936e-15 0.0168001 5.8797e-07 1.65898e-14 0.0168005 1.04739e-06 3.5146e-14 0.0168004 3.56027e-06 1.03083e-13 0.0168034 6.17358e-06 2.12516e-13 0.0168038 2.23447e-05 6.28781e-13 0.0168287 3.51219e-05 1.02778e-12 0.016841 0.000152292 4.26209e-12 0.0170783 0.000245448 5.98573e-12 0.0175974 0.00119159 2.46089e-11 0.0197692 0.00333186 4.46598e-11 0.0257765 0.0112194 8.41865e-11 0.0263937 0.0202405 -1.37324e-11 0.0272161 0.0212347 -3.59602e-11 0.0216562 -4.45051e-11 0.0263105 0.0168001 3.48613e-12 3.854e-19 0.0168001 2.01289e-11 1.68644e-18 0.0168001 7.48701e-11 5.039e-18 0.0168001 1.9544e-10 1.0388e-17 0.0168001 5.48163e-10 3.09099e-17 0.0168001 1.28639e-09 5.68842e-17 0.0168001 3.42341e-09 1.59686e-16 0.0168001 7.88462e-09 2.53598e-16 0.0168001 2.06987e-08 5.96549e-16 0.0168001 4.75242e-08 8.60114e-16 0.0168001 1.24145e-07 2.66378e-15 0.0168003 2.84996e-07 5.72463e-15 0.0168002 7.44947e-07 2.06949e-14 0.0168016 1.70726e-06 4.52969e-14 0.016801 4.54509e-06 1.4543e-13 0.0168101 1.0264e-05 3.51294e-13 0.0168041 2.89773e-05 8.2863e-13 0.0168724 6.39608e-05 2.4685e-12 0.0168739 0.000198249 3.43945e-12 0.0174811 0.000483507 1.58541e-11 0.0189129 0.00176526 1.57735e-11 0.0242641 0.00529784 4.98288e-11 0.0272556 0.0166647 3.751e-11 0.0274299 0.0209302 -2.69695e-11 0.0215077 -3.61683e-11 0.0275322 0.0168001 2.86027e-12 2.17687e-19 0.0168001 1.01989e-11 1.24344e-18 0.0168001 5.10943e-11 2.71305e-18 0.0168001 1.03616e-10 5.6099e-18 0.0168001 3.71174e-10 1.39345e-17 0.0168001 6.9476e-10 2.55177e-17 0.0168001 2.33631e-09 7.89418e-17 0.0168001 4.3216e-09 1.31125e-16 0.0168001 1.427e-08 3.1625e-16 0.0168001 2.63478e-08 4.30756e-16 0.0168001 8.62807e-08 9.45346e-16 0.0168002 1.58938e-07 2.05135e-15 0.0168002 5.19422e-07 8.60518e-15 0.0168006 9.50794e-07 1.83584e-14 0.0168007 3.14206e-06 6.81186e-14 0.0168036 5.61638e-06 1.37164e-13 0.0168048 1.96261e-05 5.2141e-13 0.0168281 3.25233e-05 7.15167e-13 0.0168487 0.000131285 4.08001e-12 0.0170645 0.000222356 4.97564e-12 0.0176702 0.000991913 2.61622e-11 0.0199503 0.00272073 5.04747e-11 0.0260358 0.00910786 1.30895e-10 0.0275974 0.0192072 4.95162e-12 0.0207967 -2.53417e-11 0.0284154 0.0168001 1.0283e-12 2.57498e-19 0.0168001 7.36386e-12 7.29295e-19 0.0168001 2.30253e-11 2.07777e-18 0.0168001 7.05106e-11 2.12944e-18 0.0168001 1.71258e-10 3.35425e-18 0.0168001 4.68274e-10 3.37034e-18 0.0168001 1.08905e-09 3.71e-18 0.0168001 2.89932e-09 3.36137e-17 0.0168001 6.68538e-09 5.41949e-17 0.0168001 1.7577e-08 1.53306e-16 0.0168001 4.04365e-08 6.24263e-17 0.0168001 1.053e-07 3.29602e-16 0.0168003 2.4207e-07 7.7533e-16 0.0168003 6.27215e-07 6.50793e-15 0.0168016 1.43948e-06 1.33335e-14 0.0168015 3.78721e-06 7.16448e-14 0.0168098 8.54542e-06 1.30452e-13 0.0168063 2.43227e-05 6.04479e-13 0.0168717 5.20072e-05 1.10327e-12 0.0168642 0.000169129 4.25805e-12 0.0173996 0.000379893 9.9245e-12 0.0184147 0.00148115 2.24725e-11 0.0228514 0.00424688 4.95825e-11 0.0276979 0.0135792 6.47194e-11 0.0202549 -5.25042e-12 0.0281718 0.0168001 3.73366e-13 2.76133e-19 0.0168001 4.69082e-12 7.76729e-19 0.0168001 1.11604e-11 2.22516e-18 0.0168001 4.31826e-11 1.68814e-18 0.0168001 8.46155e-11 2.04982e-18 0.0168001 2.86373e-10 -4.93227e-18 0.0168001 5.45209e-10 -1.48426e-17 0.0168001 1.78919e-09 -2.76954e-17 0.0168001 3.39046e-09 -5.35714e-17 0.0168001 1.10054e-08 5.86232e-18 0.0168001 2.08196e-08 -4.30089e-17 0.0168001 6.72131e-08 -1.84394e-16 0.0168001 1.26974e-07 -4.94073e-16 0.0168002 4.08877e-07 8.77606e-16 0.0168006 7.70258e-07 2.40307e-15 0.0168008 2.4886e-06 1.93359e-14 0.0168032 4.63687e-06 4.02242e-14 0.0168064 1.53413e-05 1.97941e-13 0.0168215 2.79086e-05 3.30489e-13 0.0168617 9.76397e-05 1.81515e-12 0.017005 0.000187042 2.16313e-12 0.0176591 0.000687773 1.43252e-11 0.0196303 0.00191269 3.41393e-11 0.0260825 0.00611179 1.14118e-10 0.0170429 2.63286e-11 0.0288109 0.0168001 3.84222e-13 2.99003e-19 0.0168001 1.6018e-12 1.88041e-18 0.0168001 7.41078e-12 1.92022e-18 0.0168001 1.63073e-11 3.91245e-18 0.0168001 5.51821e-11 -1.53482e-18 0.0168001 1.12278e-10 -6.28753e-18 0.0168001 3.58309e-10 -2.9636e-17 0.0168001 7.20072e-10 -6.25305e-17 0.0168001 2.25659e-09 -1.17711e-16 0.0168001 4.52408e-09 -2.21624e-16 0.0168001 1.40248e-08 -3.09592e-16 0.0168001 2.81097e-08 -5.50543e-16 0.0168001 8.63289e-08 -5.94425e-16 0.0168003 1.72973e-07 -1.3403e-15 0.0168003 5.27663e-07 -1.81569e-15 0.0168014 1.0531e-06 -3.10615e-15 0.0168014 3.22849e-06 8.7781e-15 0.0168085 6.30219e-06 1.44973e-14 0.0168069 2.03975e-05 1.8544e-13 0.0168589 3.71543e-05 2.75136e-13 0.016858 0.000136246 1.86807e-12 0.0172333 0.000254628 3.55082e-12 0.0178842 0.0010311 1.73516e-11 0.0208023 0.0028365 3.79585e-11 0.00886322 8.71259e-11 0.0272363 0.0168001 1.31952e-13 5.43795e-19 0.0168001 9.30925e-13 1.34848e-18 0.0168001 2.90172e-12 3.32884e-18 0.0168001 9.04479e-12 1.26631e-18 0.0168001 2.21753e-11 5.853e-19 0.0168001 6.27252e-11 -1.28901e-17 0.0168001 1.47874e-10 -3.07236e-17 0.0168001 4.08837e-10 -6.91137e-17 0.0168001 9.53312e-10 -1.33481e-16 0.0168001 2.60098e-09 -2.26381e-16 0.0168001 6.03294e-09 -4.11199e-16 0.0168001 1.62425e-08 -6.72526e-16 0.0168001 3.75236e-08 -1.24697e-15 0.0168001 9.96869e-08 -1.95664e-15 0.0168003 2.29438e-07 -3.71232e-15 0.0168004 6.03434e-07 -6.27233e-15 0.0168018 1.38259e-06 -1.37631e-14 0.0168022 3.66652e-06 -1.25179e-14 0.0168114 8.28354e-06 -8.09439e-14 0.0168111 2.33098e-05 1.44881e-13 0.0168794 5.07288e-05 4.53382e-15 0.0169009 0.000159737 1.53758e-12 0.0174664 0.000363871 3.80916e-12 0.0186949 0.00134591 1.17092e-11 0.00381348 2.82664e-11 0.0232047 0.0168001 2.08115e-14 4.15046e-19 0.0168001 5.03193e-13 5.47183e-19 0.0168001 9.45992e-13 1.3129e-18 0.0168001 4.66566e-12 -2.05321e-18 0.0168001 8.06278e-12 -9.16659e-18 0.0168001 3.25298e-11 -2.16205e-17 0.0168001 5.85568e-11 -5.36257e-17 0.0168001 2.10157e-10 -5.87028e-17 0.0168001 4.02685e-10 -1.46927e-16 0.0168001 1.34542e-09 -1.75408e-16 0.0168001 2.66549e-09 -3.8115e-16 0.0168001 8.58522e-09 -5.8147e-16 0.0168001 1.70713e-08 -1.08111e-15 0.0168001 5.40286e-08 -2.13331e-15 0.0168002 1.06659e-07 -4.02748e-15 0.0168002 3.35269e-07 -7.74824e-15 0.0168007 6.54926e-07 -1.50977e-14 0.0168009 2.06566e-06 -2.52137e-14 0.0168035 3.98524e-06 -4.96354e-14 0.0168066 1.27571e-05 -9.33809e-14 0.0168217 2.46703e-05 -1.65518e-13 0.0168644 8.02221e-05 -8.1601e-14 0.0169874 0.000169331 1.67616e-13 0.0176379 0.000569565 2.0386e-12 0.00162357 6.56647e-12 0.0195879 0.0168001 1.14599e-14 -1.3976e-19 0.0168001 9.09505e-14 9.29195e-19 0.0168001 4.38835e-13 -3.99291e-18 0.0168001 9.39447e-13 4.33681e-19 0.0168001 3.76654e-12 -1.80393e-17 0.0168001 7.80411e-12 -1.88448e-17 0.0168001 2.76958e-11 -6.56069e-17 0.0168001 6.29076e-11 -8.64558e-17 0.0168001 1.92567e-10 -1.48844e-16 0.0168001 4.63764e-10 -2.43502e-16 0.0168001 1.31635e-09 -3.3308e-16 0.0168001 3.20865e-09 -5.93473e-16 0.0168001 8.84952e-09 -9.11656e-16 0.0168001 2.12615e-08 -1.68724e-15 0.0168001 5.76669e-08 -3.40402e-15 0.0168002 1.36188e-07 -6.54689e-15 0.0168002 3.65476e-07 -1.47659e-14 0.0168011 8.53524e-07 -2.8983e-14 0.0168013 2.28389e-06 -5.80503e-14 0.0168067 5.29355e-06 -1.10926e-13 0.0168088 1.42541e-05 -1.69123e-13 0.016845 3.31492e-05 -2.55801e-13 0.0168745 9.10082e-05 -6.41729e-13 0.0171654 0.000222369 -2.79415e-13 0.000675513 -5.44161e-13 0.0178782 0.0168001 4.82779e-15 -1.25361e-18 0.0168001 -3.52279e-15 2.14808e-18 0.0168001 1.2853e-13 -1.42471e-17 0.0168001 8.32301e-14 -5.84453e-18 0.0168001 9.85879e-13 -4.19442e-17 0.0168001 1.16918e-12 -5.64387e-17 0.0168001 6.95328e-12 -9.03691e-17 0.0168001 1.20518e-11 -1.50147e-16 0.0168001 5.49491e-11 -2.14677e-16 0.0168001 1.26265e-10 -3.1622e-16 0.0168001 4.67949e-10 -4.44935e-16 0.0168001 1.15277e-09 -6.2933e-16 0.0168001 3.58824e-09 -8.21011e-16 0.0168001 8.67436e-09 -1.23883e-15 0.0168001 2.50869e-08 -2.30999e-15 0.0168001 5.8909e-08 -4.01369e-15 0.0168002 1.65377e-07 -9.99421e-15 0.0168005 3.81223e-07 -1.9051e-14 0.0168009 1.05041e-06 -4.6384e-14 0.0168027 2.39972e-06 -9.09491e-14 0.016806 6.54991e-06 -2.02747e-13 0.0168176 1.49814e-05 -4.0387e-13 0.0168418 4.08527e-05 -6.55785e-13 0.0169193 9.73239e-05 -1.30228e-12 0.00027349 -2.9584e-12 0.0171621 0.0168001 2.54636e-15 -1.50602e-18 0.0168001 -1.46777e-14 -9.41054e-19 0.0168001 4.49595e-14 -1.91192e-17 0.0168001 -4.63605e-14 -9.38174e-18 0.0168001 2.90852e-13 -7.1039e-17 0.0168001 -5.93716e-14 -6.42339e-17 0.0168001 1.10212e-12 -1.77292e-16 0.0168001 1.0868e-12 -2.00809e-16 0.0168001 1.10438e-11 -4.0336e-16 0.0168001 1.99856e-11 -4.82302e-16 0.0168001 1.08183e-10 -5.581e-16 0.0168001 2.94557e-10 -7.56345e-16 0.0168001 1.13691e-09 -9.06346e-16 0.0168001 2.95853e-09 -1.24969e-15 0.0168001 9.69797e-09 -1.95495e-15 0.0168001 2.37163e-08 -3.36219e-15 0.0168001 6.97278e-08 -6.52235e-15 0.0168003 1.64772e-07 -1.2481e-14 0.0168005 4.6371e-07 -2.66195e-14 0.0168013 1.06771e-06 -5.12328e-14 0.0168029 2.93563e-06 -1.25081e-13 0.0168084 6.63857e-06 -2.25888e-13 0.0168174 1.83828e-05 -7.3205e-13 0.0168633 4.09192e-05 -4.00486e-13 0.000119654 -5.03243e-12 0.0169265 0.0168001 9.39082e-16 3.78624e-19 0.0168001 9.41738e-15 -1.59412e-18 0.0168001 3.67452e-15 -1.34788e-17 0.0168001 1.0648e-13 -2.67391e-17 0.0168001 1.32124e-14 -5.57949e-17 0.0168001 5.30505e-13 -1.21486e-16 0.0168001 8.13245e-13 -2.00605e-16 0.0168001 2.14782e-12 -3.49845e-16 0.0168001 5.98786e-12 -4.43249e-16 0.0168001 6.33938e-12 -5.6642e-16 0.0168001 3.96874e-11 -9.13593e-16 0.0168001 7.88494e-11 -9.09392e-16 0.0168001 2.46638e-10 -8.06257e-16 0.0168001 6.5312e-10 -8.6428e-16 0.0168001 2.65719e-09 -1.05047e-15 0.0168001 6.85556e-09 -1.65174e-15 0.0168001 2.66632e-08 -3.59263e-15 0.0168002 5.85364e-08 -7.00519e-15 0.0168003 1.95701e-07 -1.53413e-14 0.0168007 4.19869e-07 -2.90007e-14 0.0168013 1.30012e-06 -7.37075e-14 0.0168039 2.72664e-06 -1.45786e-13 0.0168077 8.27065e-06 -4.04326e-13 0.0168225 1.70973e-05 -7.95666e-13 5.22416e-05 -2.28668e-12 0.01685 0.0168001 1.03888e-14 -1.60936e-19 0.0168001 -2.5924e-14 -5.22365e-18 0.0168001 7.20842e-14 -5.96989e-18 0.0168001 1.39495e-14 -3.2997e-17 0.0168001 1.74406e-13 -2.54559e-17 0.0168001 3.55389e-13 -1.06533e-16 0.0168001 2.80411e-13 -3.49274e-17 0.0168001 2.04648e-12 -4.68662e-16 0.0168001 4.29536e-12 -4.31562e-16 0.0168001 1.58946e-11 -4.09363e-16 0.0168001 2.79769e-11 -1.97518e-15 0.0168001 2.0059e-11 -2.2639e-15 0.0168001 1.64417e-10 -2.19192e-15 0.0168001 1.37764e-10 1.34571e-15 0.0168001 7.63281e-10 7.78936e-15 0.0168001 1.47888e-09 -5.95919e-16 0.0168001 5.19854e-09 -1.39601e-14 0.0168001 1.95233e-08 -1.6406e-14 0.0168003 5.14628e-08 -1.87018e-14 0.0168003 1.78975e-07 -1.5157e-14 0.016801 4.08632e-07 -1.91937e-14 0.0168013 1.27903e-06 -7.10888e-14 0.0168051 2.8223e-06 -1.80365e-13 0.0168068 8.40267e-06 -5.22762e-13 1.83004e-05 -1.06432e-12 0.0168291 0.0168001 2.07706e-15 6.0224e-19 0.0168001 1.06384e-14 -2.51992e-18 0.0168001 4.72711e-14 -3.40507e-18 0.0168001 1.58331e-13 -2.1524e-17 0.0168001 2.79037e-13 -3.36687e-17 0.0168001 1.07199e-12 -8.92773e-17 0.0168001 1.69061e-12 -1.51394e-16 0.0168001 5.52013e-12 -2.91745e-16 0.0168001 1.04146e-11 -4.34747e-16 0.0168001 1.66362e-11 -7.09873e-16 0.0168001 3.17045e-11 -9.72373e-16 0.0168001 7.40286e-11 -1.47031e-15 0.0168001 4.50552e-11 -1.73975e-15 0.0168001 2.37155e-10 -2.24569e-15 0.0168001 2.09903e-10 -2.56316e-15 0.0168001 1.07608e-09 -3.41299e-15 0.0168001 8.74679e-10 -3.46936e-15 0.0168002 4.34889e-09 -3.07191e-15 0.0168002 1.11926e-08 -6.81998e-15 0.0168003 3.73535e-08 -1.11915e-14 0.0168004 1.46958e-07 -2.73539e-14 0.0168011 3.5504e-07 -5.14801e-14 0.0168015 1.19103e-06 -1.24063e-13 0.0168054 2.67557e-06 -2.46224e-13 8.18241e-06 -6.23078e-13 0.016808 0.0168001 -8.31041e-17 1.65002e-18 0.0168001 7.80772e-15 -4.34274e-18 0.0168001 1.35015e-14 -2.80791e-18 0.0168001 7.11275e-14 -2.6214e-17 0.0168001 1.15916e-13 -4.04865e-17 0.0168001 4.16378e-13 -9.48203e-17 0.0168001 7.19163e-13 -1.67528e-16 0.0168001 2.25164e-12 -2.97866e-16 0.0168001 3.79111e-12 -3.49327e-16 0.0168001 8.06239e-12 -7.54606e-16 0.0168001 1.31896e-11 -8.37012e-16 0.0168001 -2.05996e-11 -1.12796e-15 0.0168001 8.35453e-11 -5.59253e-16 0.0168001 1.59407e-11 -1.98392e-15 0.0168001 3.66344e-10 -2.55235e-15 0.0168001 6.85178e-11 -3.53407e-15 0.0168001 1.236e-09 -1.4815e-15 0.0168001 5.47696e-10 -1.72236e-15 0.0168002 5.49331e-09 -2.2729e-15 0.0168003 4.89862e-09 -5.53202e-15 0.0168005 2.74408e-08 -2.27085e-14 0.0168006 9.25718e-08 -4.05821e-14 0.0168015 2.96198e-07 -8.32724e-14 0.016802 9.64879e-07 -1.69979e-13 2.4966e-06 -3.02666e-13 0.016806 0.0168001 4.09286e-17 1.32984e-18 0.0168001 8.67009e-15 -6.58145e-19 0.0168001 8.7783e-15 -7.28448e-20 0.0168001 6.4095e-14 -8.89639e-18 0.0168001 4.81906e-14 -2.45402e-17 0.0168001 2.71238e-13 -4.79421e-17 0.0168001 9.38478e-14 -1.32392e-16 0.0168001 5.61164e-13 -2.0678e-16 0.0168001 1.57203e-13 -3.75334e-16 0.0168001 1.76664e-13 -5.8231e-16 0.0168001 2.72504e-12 -8.94501e-16 0.0168001 -7.8382e-12 -1.52171e-15 0.0168001 3.95301e-11 -1.95106e-15 0.0168001 9.169e-11 -2.68033e-15 0.0168001 2.57267e-10 -3.92309e-15 0.0168001 3.44003e-10 -6.61399e-15 0.0168001 8.42987e-10 -5.84274e-15 0.0168001 1.69918e-09 -3.60279e-15 0.0168002 3.39433e-09 -7.51194e-15 0.0168003 5.93869e-09 -1.53776e-14 0.0168004 8.66792e-09 -3.94723e-14 0.0168006 2.0658e-08 -8.8103e-14 0.0168011 5.00952e-08 -8.64911e-14 0.0168016 2.20089e-07 -1.11993e-13 6.05869e-07 -1.19438e-13 0.0168035 0.0168001 -4.92607e-16 6.96261e-19 0.0168001 4.02553e-15 4.99749e-20 0.0168001 2.22045e-15 9.44442e-19 0.0168001 2.51475e-14 -8.39156e-18 0.0168001 1.57738e-14 -1.65603e-17 0.0168001 9.17781e-14 -4.75448e-17 0.0168001 1.8443e-14 -9.59976e-17 0.0168001 1.57033e-13 -1.67288e-16 0.0168001 7.75901e-14 -2.87199e-16 0.0168001 -3.92438e-13 -4.98875e-16 0.0168001 3.0102e-12 -4.85267e-16 0.0168001 1.38868e-11 -4.25996e-16 0.0168001 4.97601e-11 -3.7684e-16 0.0168001 1.19997e-10 -2.56893e-15 0.0168001 2.58895e-10 -3.03826e-15 0.0168001 4.33358e-10 -6.3254e-15 0.0168001 9.36357e-10 -2.09389e-15 0.0168001 2.81335e-09 5.49291e-15 0.0168002 3.43395e-09 4.58711e-15 0.0168003 1.05006e-08 -5.78122e-15 0.0168004 5.56687e-09 -3.35382e-15 0.0168006 2.43915e-08 -1.96804e-14 0.0168008 1.23074e-08 -3.64557e-14 0.0168017 6.75499e-08 -9.1881e-14 1.19152e-07 -8.05716e-14 0.0168025 0.0168001 -2.19551e-16 1.40862e-18 0.0168001 1.10144e-15 -8.92773e-19 0.0168001 9.34745e-16 3.04085e-18 0.0168001 6.84468e-15 -1.17323e-17 0.0168001 9.74015e-15 3.96327e-18 0.0168001 2.42184e-14 -5.19655e-17 0.0168001 2.71913e-14 4.99538e-17 0.0168001 7.87148e-14 1.56735e-17 0.0168001 1.60059e-13 -3.75397e-17 0.0168001 2.18518e-13 -8.12793e-16 0.0168001 3.95759e-12 -1.54511e-15 0.0168001 2.0193e-11 -2.45559e-15 0.0168001 4.28113e-11 -3.9977e-15 0.0168001 1.01721e-10 -2.62348e-15 0.0168001 2.05724e-10 -1.36425e-15 0.0168001 4.3863e-10 1.24414e-14 0.0168001 8.84019e-10 4.40769e-15 0.0168001 1.17247e-09 9.07083e-14 0.0168001 3.14796e-09 -3.45938e-14 0.0168003 1.84973e-09 -3.19556e-14 0.0168004 9.62998e-09 -2.72353e-14 0.0168005 3.11629e-09 -4.56094e-14 0.0168008 2.28459e-08 -1.18366e-13 0.0168013 5.35421e-09 -1.13943e-13 6.45529e-08 -1.52534e-13 0.0168023 0.0168001 -9.45966e-17 1.41878e-18 0.0168001 -4.36933e-17 4.03188e-19 0.0168001 -4.9277e-16 2.83163e-18 0.0168001 -4.05492e-17 -3.49062e-18 0.0168001 1.19306e-15 -1.01305e-17 0.0168001 8.97123e-16 -3.02526e-17 0.0168001 -3.24019e-15 -8.57697e-17 0.0168001 2.26351e-14 -8.10102e-17 0.0168001 9.47785e-14 -1.65796e-16 0.0168001 4.59253e-13 4.13897e-16 0.0168001 5.39633e-12 3.08694e-15 0.0168001 3.00748e-11 9.95124e-15 0.0168001 3.00654e-11 9.15638e-15 0.0168001 7.45726e-11 1.54842e-15 0.0168001 1.4118e-10 4.05857e-15 0.0168001 7.39886e-10 -2.06354e-15 0.0168001 2.82617e-10 -6.49876e-15 0.0168001 1.23621e-09 -2.32742e-15 0.0168002 6.26147e-10 -1.84627e-15 0.0168002 3.41691e-09 -1.96791e-14 0.0168004 1.95022e-09 -2.89412e-14 0.0168005 6.46038e-09 -1.72931e-14 0.0168008 3.30984e-09 -7.20183e-15 0.0168013 1.66753e-08 1.29773e-14 7.61335e-09 -2.14384e-14 0.0168021 0.0168001 -5.63785e-18 1.6551e-18 0.0168001 -2.68665e-16 6.00546e-19 0.0168001 -5.38957e-16 4.36645e-18 0.0168001 -1.64902e-15 -3.06033e-18 0.0168001 -2.46998e-15 -3.27209e-18 0.0168001 -6.74938e-15 -2.58642e-17 0.0168001 -9.75636e-15 -6.55028e-17 0.0168001 -1.433e-14 -7.81346e-17 0.0168001 6.58308e-14 -1.66251e-16 0.0168001 -1.57041e-13 -2.59921e-17 0.0168001 2.60605e-12 1.61844e-15 0.0168001 1.462e-11 6.29719e-15 0.0168001 1.18662e-11 1.66421e-15 0.0168001 2.15421e-11 1.16441e-15 0.0168001 3.44686e-11 -7.59176e-15 0.0168001 3.18407e-10 -2.56326e-14 0.0168001 -4.25825e-11 2.31377e-14 0.0168001 4.2733e-10 -1.56976e-14 0.0168002 -2.13294e-10 4.54475e-15 0.0168002 1.35064e-09 -1.9829e-14 0.0168004 1.67427e-10 -1.9785e-14 0.0168005 2.38109e-09 -7.58419e-15 0.0168008 -5.35384e-10 -5.5006e-14 0.0168014 5.88742e-09 -4.94803e-14 -5.90439e-10 -1.29545e-13 0.0168022 0.0168001 7.58942e-18 1.60513e-18 0.0168001 -1.19533e-16 1.40353e-18 0.0168001 -2.27086e-16 4.75016e-18 0.0168001 -7.93365e-16 6.0224e-19 0.0168001 -1.33872e-15 9.00396e-19 0.0168001 -3.44126e-15 -1.72032e-17 0.0168001 -4.11205e-15 -4.2117e-17 0.0168001 -1.69932e-14 -1.03749e-16 0.0168001 1.66674e-14 -1.62522e-16 0.0168001 -1.34247e-13 -3.94988e-16 0.0168001 9.95931e-13 8.65598e-16 0.0168001 5.77309e-12 3.6973e-15 0.0168001 1.58393e-13 -9.91768e-16 0.0168001 1.80801e-12 -2.3055e-16 0.0168001 2.8049e-11 2.4246e-15 0.0168001 7.12062e-11 -1.14787e-15 0.0168001 -4.52344e-11 -1.51809e-14 0.0168001 7.497e-11 1.01354e-15 0.0168002 -9.49764e-12 2.58177e-15 0.0168002 1.66561e-10 -1.79141e-14 0.0168004 6.52304e-11 -1.64105e-14 0.0168005 3.07063e-10 -2.46406e-14 0.0168008 -2.67273e-11 -3.13542e-14 0.0168014 7.79386e-10 -6.70296e-14 -2.13233e-10 -9.33065e-14 0.0168022 0.0168001 4.66207e-18 1.85754e-18 0.0168001 -3.29597e-17 1.29257e-18 0.0168001 -6.01732e-17 6.68563e-18 0.0168001 -2.1516e-16 2.51484e-18 0.0168001 -4.20725e-16 6.94144e-18 0.0168001 -9.74752e-16 -6.44423e-18 0.0168001 -1.63509e-15 -2.07142e-17 0.0168001 -4.83527e-15 -6.03452e-17 0.0168001 9.66024e-17 -6.81396e-17 0.0168001 -2.46473e-14 -1.86609e-16 0.0168001 2.07022e-13 4.67322e-16 0.0168001 1.38008e-12 2.34254e-15 0.0168001 -5.56643e-13 -1.81e-15 0.0168001 -1.93197e-13 1.40252e-16 0.0168001 7.34641e-12 4.91631e-16 0.0168001 1.40515e-11 -2.62828e-15 0.0168001 -1.08232e-11 -5.73196e-15 0.0168001 3.38651e-12 -3.11963e-15 0.0168002 2.6715e-11 -1.07333e-15 0.0168002 -1.59231e-11 -1.00137e-14 0.0168004 5.71682e-11 -1.59714e-14 0.0168005 2.08021e-11 -2.4322e-14 0.0168008 7.92095e-11 -3.91358e-14 0.0168014 1.01297e-10 -5.98934e-14 -4.13661e-11 -1.03909e-13 0.0168022 0.0168001 -6.50521e-19 1.7271e-18 0.0168001 -5.42101e-20 1.79995e-18 0.0168001 -4.60786e-18 6.31124e-18 0.0168001 -1.45825e-17 5.20925e-18 0.0168001 -7.15031e-17 5.38798e-18 0.0168001 -1.0018e-16 9.00396e-19 0.0168001 -5.09521e-16 -2.69899e-17 0.0168001 -4.76886e-16 -4.59981e-17 0.0168001 -3.76207e-15 -1.19382e-16 0.0168001 3.70223e-15 -2.99512e-16 0.0168001 6.8495e-15 -1.2063e-15 0.0168001 9.11324e-14 -3.58221e-15 0.0168001 -6.44224e-14 9.25784e-16 0.0168001 3.45335e-14 2.02141e-16 0.0168001 -5.63016e-14 -1.89557e-14 0.0168001 7.22335e-13 -1.3136e-15 0.0168001 1.25709e-12 1.54249e-14 0.0168001 -4.33883e-12 -2.12595e-15 0.0168002 1.50175e-11 -8.11735e-15 0.0168002 -1.47623e-11 -7.06596e-15 0.0168004 2.70581e-11 -1.23983e-14 0.0168005 -1.66455e-11 -2.36683e-14 0.0168008 4.1787e-11 -3.73026e-14 0.0168014 2.08608e-12 -6.01232e-14 -1.79651e-11 -9.13149e-14 0.0168022 0.0168001 3.25261e-18 1.8982e-18 0.0168001 5.42101e-20 2.80537e-18 0.0168001 4.66207e-18 8.5652e-18 0.0168001 1.43657e-17 8.93112e-18 0.0168001 -6.66784e-18 1.69203e-17 0.0168001 6.27211e-17 1.7465e-17 0.0168001 -1.97542e-16 1.6335e-17 0.0168001 4.23001e-16 8.75832e-18 0.0168001 -2.86858e-15 -2.2288e-17 0.0168001 6.7755e-15 7.15226e-17 0.0168001 -2.4292e-14 3.00551e-16 0.0168001 -1.78489e-13 3.50268e-16 0.0168001 1.16108e-13 -6.07364e-16 0.0168001 8.74845e-14 7.57171e-16 0.0168001 -1.56442e-12 -3.51071e-15 0.0168001 -1.40418e-12 -2.71019e-15 0.0168001 2.68101e-12 -9.08212e-16 0.0168001 -1.96117e-12 -3.65979e-15 0.0168002 5.20039e-12 -5.9152e-15 0.0168003 -4.3613e-12 -9.06035e-15 0.0168004 1.01858e-11 -1.63043e-14 0.0168005 -7.12416e-12 -2.32895e-14 0.0168008 1.31139e-11 -3.61883e-14 0.0168014 -4.1363e-12 -5.66122e-14 -2.0636e-12 -8.76007e-14 0.0168022 0.0168001 -5.20417e-18 1.79995e-18 0.0168001 -2.71051e-18 3.23567e-18 0.0168001 -7.26415e-18 8.50252e-18 0.0168001 -1.23599e-17 1.0294e-17 0.0168001 -1.82146e-17 1.78089e-17 0.0168001 -1.17636e-17 2.092e-17 0.0168001 -1.51192e-16 2.0278e-17 0.0168001 2.31802e-16 1.19754e-17 0.0168001 -1.50151e-15 -2.95996e-17 0.0168001 3.88735e-15 7.51318e-17 0.0168001 -1.63856e-14 4.09753e-16 0.0168001 -1.28212e-13 1.40772e-15 0.0168001 8.98279e-14 -5.63733e-16 0.0168001 6.22661e-14 -2.90032e-16 0.0168001 -9.42327e-13 6.51966e-16 0.0168001 -8.59296e-13 -2.79963e-15 0.0168001 1.11807e-12 -4.01995e-15 0.0168001 -4.93058e-13 -4.83849e-15 0.0168002 1.65291e-12 -6.65372e-15 0.0168003 -8.20693e-13 -9.7833e-15 0.0168004 3.58437e-12 -1.5993e-14 0.0168005 -1.99179e-12 -2.2866e-14 0.0168008 3.7669e-12 -3.44341e-14 0.0168014 -1.41452e-12 -5.52156e-14 2.11353e-13 -8.3246e-14 0.0168022 0.0168001 -4.33681e-19 1.97782e-18 0.0168001 7.04731e-19 2.92565e-18 0.0168001 -1.86483e-17 9.12254e-18 0.0168001 -2.29309e-17 1.08056e-17 0.0168001 -7.07442e-17 1.88304e-17 0.0168001 -1.17256e-16 2.31367e-17 0.0168001 -2.63624e-16 2.40303e-17 0.0168001 -1.17744e-16 2.36348e-17 0.0168001 -4.4268e-16 8.7363e-18 0.0168001 1.16264e-15 -2.76446e-17 0.0168001 -3.90345e-15 -1.72282e-16 0.0168001 -3.47358e-14 -5.06346e-16 0.0168001 3.49868e-14 -2.10649e-17 0.0168001 3.28847e-14 -9.03706e-16 0.0168001 -3.5567e-13 -6.5879e-16 0.0168001 -3.05363e-13 -1.61032e-16 0.0168001 3.33361e-13 -4.33765e-15 0.0168001 -1.1517e-13 -2.5517e-15 0.0168002 4.90875e-13 -3.63051e-15 0.0168003 -3.15288e-14 -8.4651e-15 0.0168004 1.12645e-12 -1.41735e-14 0.0168005 -2.94388e-13 -2.16557e-14 0.0168008 1.1173e-12 -3.15929e-14 0.0168014 -3.94541e-15 -5.41981e-14 7.95787e-13 -8.14717e-14 0.0168022 0.0168001 1.98714e-18 0.0168001 2.6402e-18 0.0168001 9.0641e-18 0.0168001 1.00136e-17 0.0168001 1.81282e-17 0.0168001 2.03982e-17 0.0168001 2.57888e-17 0.0168001 2.2565e-17 0.0168001 4.2765e-17 0.0168001 -9.97737e-17 0.0168001 8.08527e-17 0.0168001 5.27459e-16 0.0168001 -9.09e-16 0.0168001 -1.25852e-15 0.0168001 3.01193e-15 0.0168001 6.5238e-16 0.0168001 -8.13003e-15 0.0168001 -2.3633e-15 0.0168002 -1.15507e-15 0.0168003 -7.25361e-15 0.0168004 -1.30424e-14 0.0168005 -1.95433e-14 0.0168008 -2.90971e-14 0.0168014 -5.19689e-14 -8.02764e-14 0.0168022 0.0168001 1.84917e-10 -2.03711e-17 0.0168001 1.09295e-09 -1.12452e-16 0.0168001 3.62749e-09 -2.25329e-16 0.0168001 1.04619e-08 -5.32053e-16 0.0168001 2.60018e-08 -9.55074e-16 0.0168 6.71233e-08 -2.21859e-15 0.0168001 1.58025e-07 -4.26431e-15 0.0167997 4.00991e-07 -9.63417e-15 0.0168002 9.36231e-07 -1.95486e-14 0.016798 2.403e-06 -3.2634e-14 0.0168016 5.64819e-06 -7.14417e-14 0.0167864 1.4949e-05 -3.19079e-14 0.0168218 3.70468e-05 -2.04935e-14 0.0167286 0.00010365 8.40205e-13 0.0169719 0.00030622 3.09746e-12 0.0168252 0.00109582 1.79417e-11 0.0184505 0.00385375 5.98672e-11 0.0176922 0.0161977 1.11603e-10 0.0163732 0.0165761 7.60079e-11 0.0149055 0.0161395 3.39199e-11 0.0134935 0.016846 2.54992e-11 0.0117482 0.0179095 7.11559e-12 0.0106225 0.0192073 6.90531e-12 0.0113496 0.0215436 -1.00461e-11 0.0244344 3.28473e-12 0.0182577 0.0168001 1.39608e-10 -2.00772e-17 0.0168001 1.09371e-09 -1.05741e-16 0.0168001 3.33074e-09 -2.14321e-16 0.0168001 1.01693e-08 -4.80851e-16 0.0168 2.40742e-08 -8.62555e-16 0.0168 6.53612e-08 -1.87697e-15 0.0168 1.47896e-07 -3.61218e-15 0.0167998 3.94673e-07 -7.61177e-15 0.0167996 8.87229e-07 -1.51809e-14 0.0167986 2.36769e-06 -2.52773e-14 0.0167978 5.37583e-06 -5.59529e-14 0.0167933 1.42985e-05 -2.00995e-14 0.016789 3.32664e-05 -9.94763e-14 0.0167692 9.59354e-05 7.11812e-13 0.0167797 0.000254573 1.5199e-12 0.0168391 0.00092023 1.19856e-11 0.0173373 0.00299882 4.03957e-11 0.0176732 0.0152084 1.34946e-10 0.0169405 0.0174411 6.83148e-11 0.0157458 0.017397 4.94863e-11 0.0146982 0.0177227 2.47045e-11 0.0135064 0.0186706 1.70335e-12 0.0129645 0.0195522 1.43098e-12 0.0140311 0.0204232 4.53953e-12 0.0214704 1.2887e-12 0.0171006 0.0168001 1.2157e-10 -1.84043e-17 0.0168001 9.51808e-10 -9.2928e-17 0.0168001 2.94083e-09 -1.91547e-16 0.0168001 8.89337e-09 -4.00891e-16 0.0168001 2.11543e-08 -7.06679e-16 0.0168 5.64204e-08 -1.39986e-15 0.0168 1.27477e-07 -2.57303e-15 0.0167999 3.33452e-07 -5.00775e-15 0.0167999 7.42733e-07 -9.63743e-15 0.0167995 1.98784e-06 -1.56892e-14 0.0167996 4.21286e-06 -3.3402e-14 0.0167964 1.30045e-05 -5.51833e-15 0.0168 2.40951e-05 -4.88346e-14 0.0167785 9.513e-05 5.55136e-13 0.0168025 0.000194325 1.25188e-12 0.0167612 0.000884372 9.36194e-12 0.0169827 0.00253385 3.12885e-11 0.0180987 0.0134836 1.16491e-10 0.0176323 0.0181261 6.9056e-11 0.016708 0.018331 5.12488e-11 0.0158886 0.0183251 1.8163e-11 0.0151676 0.018962 -2.95634e-11 0.0149272 0.0195329 1.87358e-11 0.0156708 0.0195517 2.26733e-11 0.0192988 2.31095e-12 0.0180079 0.0168001 1.09939e-10 -1.44826e-17 0.0168001 9.20552e-10 -7.4145e-17 0.0168001 2.81188e-09 -1.51866e-16 0.0168001 8.49244e-09 -3.14336e-16 0.0168001 2.02173e-08 -5.44322e-16 0.0168 5.39336e-08 -1.01538e-15 0.0168 1.22755e-07 -1.77255e-15 0.0167999 3.20401e-07 -3.11654e-15 0.0167998 7.21213e-07 -5.517e-15 0.0167992 1.89266e-06 -7.57734e-15 0.0167984 4.1817e-06 -1.18017e-14 0.016796 1.16778e-05 1.04156e-14 0.016794 2.38166e-05 9.07628e-15 0.0167844 8.24223e-05 5.65543e-13 0.0167979 0.000163123 9.91119e-13 0.0168741 0.000732483 7.61821e-12 0.0171784 0.00200236 2.37327e-11 0.0193913 0.0105735 9.20399e-11 0.0189529 0.0187172 7.164e-11 0.0179113 0.0193389 5.04066e-11 0.0171103 0.0188727 1.24988e-11 0.016621 0.0190738 -1.69999e-11 0.016505 0.0193673 9.16336e-12 0.0167519 0.0190916 6.7789e-12 0.0179889 9.62788e-12 0.0179954 0.0168001 3.70327e-11 -1.17441e-17 0.0168001 9.92116e-10 -6.06086e-17 0.0168001 1.72916e-09 -1.24999e-16 0.0168001 8.80317e-09 -2.55575e-16 0.0168001 1.31031e-08 -4.42642e-16 0.0168 5.65542e-08 -7.73325e-16 0.0168001 8.20866e-08 -1.31738e-15 0.0167999 3.43342e-07 -1.9473e-15 0.0168 4.93137e-07 -3.2225e-15 0.0167993 2.07252e-06 -1.62624e-15 0.0167999 2.87671e-06 7.07729e-17 0.0167959 1.29204e-05 3.67627e-14 0.0168006 1.56398e-05 9.77283e-14 0.0167825 8.70657e-05 4.659e-13 0.0168259 9.57681e-05 1.28633e-12 0.0168561 0.000649221 5.26135e-12 0.0174552 0.001215 1.60941e-11 0.0218347 0.00593864 5.87814e-11 0.0204972 0.0198695 7.87837e-11 0.0196219 0.019965 5.54555e-11 0.0183888 0.0198937 1.21012e-11 0.0179049 0.0193816 -1.63012e-12 0.0178192 0.0193484 3.59272e-12 0.017938 0.0189229 8.80073e-12 0.0176076 4.81828e-12 0.0182948 0.0168001 7.6943e-11 -9.91706e-18 0.0168001 4.96888e-10 -4.25558e-17 0.0168001 1.7787e-09 -1.04488e-16 0.0168001 4.75478e-09 -1.96504e-16 0.0168001 1.28869e-08 -3.60357e-16 0.0168001 3.06812e-08 -6.14099e-16 0.0168 7.90072e-08 -9.49564e-16 0.0168002 1.84179e-07 -1.54848e-15 0.0168 4.71133e-07 -1.56037e-15 0.0168007 1.09452e-06 -1.70056e-15 0.0167996 2.8702e-06 6.69001e-15 0.0168048 6.46618e-06 1.95691e-14 0.0167965 1.85282e-05 1.20338e-13 0.0168356 4.02675e-05 2.29671e-13 0.016777 0.000127789 1.22816e-12 0.01708 0.000310695 3.43293e-12 0.0169564 0.00120784 9.81183e-12 0.0188861 0.0037533 3.78372e-11 0.0210933 0.0170323 9.75082e-11 0.0206486 0.0201829 4.04463e-11 0.019876 0.0205339 2.53292e-11 0.0192614 0.0199433 -2.58414e-13 0.0191145 0.01944 8.25719e-13 0.0191392 0.0188231 1.62046e-12 0.0175437 1.94377e-12 0.0191564 0.0168001 8.17423e-11 -7.21503e-18 0.0168001 4.29539e-10 -3.18722e-17 0.0168001 1.60699e-09 -7.89909e-17 0.0168001 4.12066e-09 -1.49651e-16 0.0168001 1.15249e-08 -2.79695e-16 0.0168001 2.66878e-08 -4.72067e-16 0.0168 7.0782e-08 -7.87232e-16 0.0168 1.60568e-07 -1.33887e-15 0.0167999 4.21707e-07 -1.97665e-15 0.0167999 9.49902e-07 -3.80021e-15 0.0167996 2.51121e-06 -7.39414e-16 0.0167995 5.5572e-06 -1.78884e-14 0.0167983 1.56645e-05 1.09251e-13 0.0168026 3.19313e-05 -1.47602e-13 0.0167964 0.000110677 1.54985e-12 0.0168526 0.00022782 1.05193e-12 0.0169931 0.000979122 1.2486e-11 0.0178662 0.00273481 3.03999e-11 0.0211564 0.0129942 9.85173e-11 0.0212858 0.0199312 3.6155e-11 0.0208133 0.0208978 2.50956e-11 0.0202221 0.0204738 5.58761e-12 0.0200159 0.0195093 1.18302e-12 0.0199313 0.0186891 -1.03594e-12 0.0174763 -1.99145e-12 0.0197973 0.0168001 9.25359e-11 -5.08813e-18 0.0168001 2.63523e-10 -2.23956e-17 0.0168001 1.55938e-09 -6.07805e-17 0.0168001 2.73062e-09 -1.15601e-16 0.0168001 1.10893e-08 -2.1791e-16 0.0168001 1.80694e-08 -3.74648e-16 0.0168 6.83429e-08 -5.88623e-16 0.0168001 1.10037e-07 -9.79595e-16 0.0168 4.09915e-07 -1.05469e-15 0.0168002 6.54066e-07 -1.57968e-15 0.0167997 2.45316e-06 3.81697e-15 0.0168008 3.79046e-06 8.3768e-15 0.0167981 1.51287e-05 7.9899e-14 0.016805 2.07608e-05 1.38428e-13 0.0167943 0.000100661 1.05726e-12 0.0168662 0.000130734 1.31079e-12 0.0169889 0.000750096 1.1026e-11 0.0179393 0.00160295 2.83858e-11 0.0228963 0.00715411 1.02932e-10 0.0224495 0.0201654 5.41904e-11 0.0223977 0.0209076 2.05263e-11 0.021749 0.0211267 1.34815e-11 0.021113 0.0200923 1.4694e-12 0.0208576 0.0188056 -8.38104e-14 0.0175291 -2.12326e-12 0.0206296 0.0168001 3.73243e-11 -2.55719e-18 0.0168001 2.66486e-10 -1.61123e-17 0.0168001 8.32148e-10 -3.89339e-17 0.0168001 2.51751e-09 -8.93976e-17 0.0168001 6.06119e-09 -1.62133e-16 0.0168001 1.62123e-08 -3.16718e-16 0.0168001 3.73e-08 -5.40973e-16 0.0168001 9.67758e-08 -9.10889e-16 0.0168002 2.20877e-07 -1.56171e-15 0.0168001 5.67024e-07 -1.82197e-15 0.016801 1.2908e-06 -2.81929e-15 0.0168003 3.37651e-06 9.10091e-15 0.0168066 7.44585e-06 1.97176e-14 0.0167994 2.1604e-05 1.74662e-13 0.0168487 4.42832e-05 3.53224e-13 0.0168003 0.00014893 1.76279e-12 0.017175 0.000331617 4.35947e-12 0.0173059 0.00134293 1.45395e-11 0.0201462 0.00401965 4.42817e-11 0.023233 0.0165791 9.50207e-11 0.0232688 0.0207911 2.99609e-11 0.0227945 0.0215251 2.15778e-11 0.0220227 0.0207249 5.9636e-12 0.0215902 0.0190475 2.27612e-12 0.0176444 -1.19076e-13 0.0212321 0.0168001 1.4996e-11 -1.5992e-18 0.0168001 2.48514e-10 -1.05244e-17 0.0168001 5.21342e-10 -2.54771e-17 0.0168001 2.23596e-09 -6.25534e-17 0.0168001 3.89066e-09 -1.16627e-16 0.0168001 1.4415e-08 -2.4057e-16 0.0168001 2.43218e-08 -4.17544e-16 0.0168 8.74569e-08 -7.35279e-16 0.0168001 1.46485e-07 -1.28829e-15 0.0167999 5.2416e-07 -1.69708e-15 0.0168002 8.70625e-07 -2.86832e-15 0.0167995 3.15221e-06 2.07977e-15 0.0168008 5.07025e-06 4.4945e-15 0.016798 1.96762e-05 1.02623e-13 0.0168092 2.83807e-05 5.4461e-14 0.0167996 0.000134085 1.38595e-12 0.0169141 0.00019194 1.57867e-12 0.0171235 0.0010504 1.27208e-11 0.0183013 0.00271764 3.12086e-11 0.023442 0.0107135 1.00705e-10 0.0238517 0.0202393 4.012e-11 0.0238194 0.0214496 3.10168e-11 0.0231898 0.0213083 1.82317e-11 0.0224538 0.0197353 2.96855e-12 0.0179769 2.77398e-13 0.0219921 0.0168001 2.09126e-11 -1.10538e-18 0.0168001 1.20816e-10 -4.77896e-18 0.0168001 4.48821e-10 -1.55143e-17 0.0168001 1.16917e-09 -3.2615e-17 0.0168001 3.26122e-09 -8.17378e-17 0.0168001 7.62515e-09 -1.51715e-16 0.0168001 2.01528e-08 -3.1674e-16 0.0168001 4.62528e-08 -5.58378e-16 0.0168001 1.20569e-07 -1.03361e-15 0.0168002 2.75991e-07 -1.86067e-15 0.0168001 7.1684e-07 -2.67425e-15 0.0168012 1.63897e-06 -5.05654e-15 0.0168003 4.32914e-06 3.63341e-15 0.0168081 9.71635e-06 4.48031e-15 0.0168 2.75578e-05 1.67605e-13 0.0168595 5.99921e-05 3.11938e-13 0.0168325 0.000188611 1.7164e-12 0.0173468 0.000463043 5.18548e-12 0.0182862 0.00169331 1.50376e-11 0.0232638 0.00529742 4.17167e-11 0.0249884 0.018254 6.54621e-11 0.0251237 0.0212798 3.32894e-11 0.0245933 0.0217689 2.56842e-11 0.0234335 0.0207471 1.09827e-11 0.0185754 1.39643e-12 0.0226669 0.0168001 2.09411e-11 -5.64124e-19 0.0168001 6.8846e-11 -2.66646e-18 0.0168001 3.6583e-10 -8.821e-18 0.0168001 7.00463e-10 -1.82248e-17 0.0168001 2.62258e-09 -5.10422e-17 0.0168001 4.63806e-09 -9.57495e-17 0.0168001 1.62908e-08 -2.11567e-16 0.0168001 2.84308e-08 -3.74763e-16 0.0168001 9.84756e-08 -7.16088e-16 0.0168001 1.71162e-07 -1.28913e-15 0.0168 5.91757e-07 -2.16191e-15 0.0168004 1.02086e-06 -4.08203e-15 0.0167999 3.56783e-06 -2.69888e-15 0.0168022 5.98279e-06 -8.79228e-15 0.0168012 2.22915e-05 7.73968e-14 0.0168199 3.38795e-05 -5.34046e-14 0.0168259 0.000152464 1.35767e-12 0.0170147 0.000238474 1.24536e-12 0.0174155 0.00120515 1.27586e-11 0.0191539 0.00338615 3.07299e-11 0.0247776 0.0118791 9.72696e-11 0.0254011 0.0204829 4.10588e-11 0.0254595 0.0215339 3.32544e-11 0.0246462 0.0215222 1.83501e-11 0.0195628 8.76113e-13 0.0236912 0.0168001 8.09009e-12 -1.94818e-19 0.0168001 5.77334e-11 -1.53398e-18 0.0168001 1.80753e-10 -4.41135e-18 0.0168001 5.49055e-10 -1.03821e-17 0.0168001 1.32709e-09 -2.30071e-17 0.0168001 3.58503e-09 -6.16479e-17 0.0168001 8.28401e-09 -1.18655e-16 0.0168001 2.18317e-08 -2.69401e-16 0.0168001 5.00536e-08 -4.78649e-16 0.0168001 1.30987e-07 -9.66138e-16 0.0168003 2.9991e-07 -1.77363e-15 0.0168001 7.8446e-07 -3.07443e-15 0.0168014 1.79416e-06 -6.09254e-15 0.0168004 4.76464e-06 -1.13478e-15 0.0168094 1.0794e-05 -5.7276e-15 0.0168027 3.00255e-05 1.26643e-13 0.0168676 6.76656e-05 2.48049e-13 0.0168663 0.000202131 1.46229e-12 0.0174548 0.000518923 4.56556e-12 0.0189077 0.00183427 1.42138e-11 0.0244791 0.00567205 4.64449e-11 0.0263805 0.0182858 5.26804e-11 0.0266418 0.0211642 3.3444e-11 0.025925 0.022111 2.73053e-11 0.0206553 1.50578e-11 0.0247865 0.0168001 3.19492e-12 -1.35525e-19 0.0168001 4.47179e-11 -1.57887e-18 0.0168001 1.01522e-10 -2.80791e-18 0.0168001 4.06972e-10 -5.86486e-18 0.0168001 7.58796e-10 -1.04981e-17 0.0168001 2.6448e-09 -3.25566e-17 0.0168001 4.77754e-09 -6.29879e-17 0.0168001 1.61695e-08 -1.50978e-16 0.0168001 2.90529e-08 -2.68619e-16 0.0168001 9.76236e-08 -5.45482e-16 0.0168001 1.74961e-07 -9.84675e-16 0.0168001 5.87963e-07 -1.70012e-15 0.0168005 1.04738e-06 -3.2492e-15 0.0168004 3.56022e-06 -2.47144e-15 0.0168034 6.17351e-06 -7.33425e-15 0.0168038 2.23444e-05 4.95732e-14 0.0168287 3.51215e-05 -1.44464e-15 0.016841 0.000152291 8.61007e-13 0.0170783 0.000245445 1.26757e-12 0.0175974 0.00119158 9.09292e-12 0.0197692 0.00333181 2.46131e-11 0.0257765 0.0112193 7.69667e-11 0.0263937 0.0202404 3.95629e-11 0.0272161 0.0212347 3.59592e-11 0.0216563 2.66734e-11 0.0263106 0.0168001 3.48613e-12 -9.40207e-20 0.0168001 2.01289e-11 -1.93039e-18 0.0168001 7.48701e-11 -1.26631e-18 0.0168001 1.9544e-10 -2.51653e-18 0.0168001 5.48162e-10 -5.30073e-18 0.0168001 1.28639e-09 -1.31722e-17 0.0168001 3.4234e-09 -3.46911e-17 0.0168001 7.88459e-09 -6.63904e-17 0.0168001 2.06986e-08 -1.5846e-16 0.0168001 4.75239e-08 -2.86144e-16 0.0168001 1.24144e-07 -6.34531e-16 0.0168003 2.84994e-07 -1.14467e-15 0.0168002 7.4494e-07 -2.35322e-15 0.0168016 1.70724e-06 -4.98427e-15 0.016801 4.54504e-06 -4.89117e-15 0.0168101 1.02638e-05 -2.15436e-14 0.0168041 2.8977e-05 7.59337e-14 0.0168724 6.39598e-05 1.57298e-14 0.0168739 0.000198248 1.15043e-12 0.0174811 0.0004835 2.54687e-12 0.0189128 0.00176525 1.07839e-11 0.024264 0.0052978 2.61628e-11 0.0272555 0.0166646 4.93143e-11 0.0274299 0.0209301 3.41869e-11 0.0215077 2.87208e-11 0.0275323 0.0168001 2.86028e-12 -8.13152e-20 0.0168001 1.01989e-11 -1.82536e-18 0.0168001 5.10944e-11 -9.44442e-19 0.0168001 1.03616e-10 -1.72456e-18 0.0168001 3.71175e-10 -2.58345e-18 0.0168001 6.94761e-10 -7.2091e-18 0.0168001 2.33631e-09 -1.60165e-17 0.0168001 4.32159e-09 -2.81181e-17 0.0168001 1.42699e-08 -6.31395e-17 0.0168001 2.63477e-08 -1.11747e-16 0.0168001 8.62803e-08 -2.41685e-16 0.0168002 1.58938e-07 -4.21119e-16 0.0168002 5.19419e-07 -7.59041e-16 0.0168006 9.50787e-07 -1.41604e-15 0.0168007 3.14203e-06 -1.06572e-15 0.0168036 5.61632e-06 -2.95125e-15 0.0168048 1.96259e-05 2.33927e-14 0.0168281 3.2523e-05 2.3075e-14 0.0168487 0.000131284 4.0832e-13 0.0170645 0.000222353 9.28326e-13 0.0176702 0.000991897 5.02451e-12 0.0199503 0.00272068 1.49408e-11 0.0260358 0.00910773 4.93624e-11 0.0275974 0.0192071 3.35203e-11 0.0207967 2.9871e-11 0.0284154 0.0168001 1.0283e-12 -8.63974e-20 0.0168001 7.36389e-12 -1.84399e-18 0.0168001 2.30253e-11 4.15046e-20 0.0168001 7.05107e-11 -1.58565e-18 0.0168001 1.71259e-10 -1.91684e-18 0.0168001 4.68275e-10 -5.04916e-18 0.0168001 1.08905e-09 -7.2362e-18 0.0168001 2.89932e-09 -1.1861e-17 0.0168001 6.68538e-09 -1.4275e-17 0.0168001 1.7577e-08 -2.26099e-17 0.0168001 4.04364e-08 -2.55651e-17 0.0168001 1.05299e-07 -7.27881e-17 0.0168003 2.4207e-07 -1.59382e-16 0.0168003 6.27212e-07 -4.55744e-16 0.0168016 1.43947e-06 -1.13862e-15 0.0168015 3.78719e-06 -1.08521e-16 0.0168098 8.54535e-06 -6.88883e-15 0.0168063 2.43225e-05 3.37811e-14 0.0168717 5.20066e-05 1.21379e-14 0.0168642 0.000169127 5.0378e-13 0.0173996 0.000379887 1.17664e-12 0.0184147 0.00148113 6.03717e-12 0.0228513 0.00424682 1.54944e-11 0.0276979 0.013579 3.3685e-11 0.0202548 2.855e-11 0.0281718 0.0168001 3.73363e-13 -3.89635e-20 0.0168001 4.6908e-12 -9.707e-19 0.0168001 1.11603e-11 -4.0827e-19 0.0168001 4.31824e-11 -8.72444e-19 0.0168001 8.46149e-11 -5.03138e-19 0.0168001 2.86372e-10 -1.93801e-18 0.0168001 5.45207e-10 -2.07608e-18 0.0168001 1.78919e-09 2.96546e-18 0.0168001 3.39046e-09 1.16137e-17 0.0168001 1.10054e-08 4.65597e-17 0.0168001 2.08196e-08 9.90063e-17 0.0168001 6.72131e-08 2.18698e-16 0.0168001 1.26974e-07 3.83205e-16 0.0168002 4.08877e-07 8.00199e-16 0.0168006 7.70257e-07 1.36325e-15 0.0168008 2.48859e-06 3.66163e-15 0.0168032 4.63686e-06 6.77812e-15 0.0168064 1.53412e-05 2.41161e-14 0.0168215 2.79084e-05 5.79774e-14 0.0168617 9.7639e-05 1.92176e-13 0.0170049 0.00018704 6.64662e-13 0.0176591 0.000687765 2.15095e-12 0.0196303 0.00191267 6.83779e-12 0.0260825 0.0061117 2.18307e-11 0.0170428 2.58164e-11 0.0288109 0.0168001 3.84212e-13 -3.13402e-20 0.0168001 1.60173e-12 5.0822e-20 0.0168001 7.41058e-12 -5.41254e-19 0.0168001 1.63066e-11 9.22419e-19 0.0168001 5.51805e-11 3.09591e-18 0.0168001 1.12274e-10 6.07069e-18 0.0168001 3.58301e-10 1.26005e-17 0.0168001 7.2006e-10 2.8196e-17 0.0168001 2.25657e-09 5.44786e-17 0.0168001 4.52405e-09 9.69666e-17 0.0168001 1.40247e-08 1.78051e-16 0.0168001 2.81098e-08 2.98015e-16 0.0168001 8.63291e-08 5.30332e-16 0.0168003 1.72973e-07 8.89477e-16 0.0168003 5.27664e-07 1.69012e-15 0.0168014 1.0531e-06 2.98225e-15 0.0168014 3.22849e-06 6.75303e-15 0.0168085 6.30217e-06 1.21072e-14 0.0168069 2.03974e-05 3.92081e-14 0.0168589 3.71541e-05 6.61365e-14 0.016858 0.000136246 3.21985e-13 0.0172333 0.000254626 6.87691e-13 0.0178842 0.00103109 2.94551e-12 0.0208022 0.00283647 7.81602e-12 0.00886313 2.05947e-11 0.0272362 0.0168001 1.31928e-13 3.98105e-20 0.0168001 9.30749e-13 -5.92923e-21 0.0168001 2.90118e-12 3.6253e-19 0.0168001 9.04337e-12 9.74088e-19 0.0168001 2.21721e-11 3.0688e-18 0.0168001 6.27184e-11 7.39883e-18 0.0168001 1.4786e-10 1.63672e-17 0.0168001 4.08813e-10 3.16934e-17 0.0168001 9.53267e-10 5.9715e-17 0.0168001 2.60092e-09 9.8764e-17 0.0168001 6.03285e-09 1.68172e-16 0.0168001 1.62424e-08 2.82679e-16 0.0168001 3.75236e-08 4.51967e-16 0.0168001 9.96872e-08 8.13774e-16 0.0168003 2.29439e-07 1.39152e-15 0.0168004 6.03436e-07 2.9682e-15 0.0168018 1.38259e-06 5.6102e-15 0.0168022 3.66652e-06 1.32749e-14 0.0168114 8.28355e-06 2.92913e-14 0.0168111 2.33097e-05 6.99279e-14 0.0168794 5.07287e-05 1.39695e-13 0.0169009 0.000159737 4.80892e-13 0.0174664 0.000363868 1.08186e-12 0.0186949 0.0013459 3.33969e-12 0.00381344 8.53057e-12 0.0232046 0.0168001 2.07429e-14 1.67797e-18 0.0168001 5.02972e-13 -5.37781e-18 0.0168001 9.45003e-13 6.58483e-18 0.0168001 4.66413e-12 -9.71293e-18 0.0168001 8.05857e-12 9.67481e-18 0.0168001 3.25216e-11 -6.11558e-19 0.0168001 5.85386e-11 1.31807e-17 0.0168001 2.10117e-10 6.61329e-17 0.0168001 4.0262e-10 9.00167e-17 0.0168001 1.34529e-09 1.63857e-16 0.0168001 2.66533e-09 2.48512e-16 0.0168001 8.58498e-09 2.77738e-16 0.0168001 1.7071e-08 5.40266e-16 0.0168001 5.40286e-08 4.998e-16 0.0168002 1.06659e-07 1.10902e-15 0.0168002 3.35271e-07 2.29608e-15 0.0168007 6.5493e-07 3.91884e-15 0.0168009 2.06567e-06 1.08606e-14 0.0168035 3.98525e-06 2.1958e-14 0.0168066 1.27571e-05 5.78375e-14 0.0168217 2.46704e-05 1.22318e-13 0.0168644 8.02221e-05 3.0812e-13 0.0169874 0.00016933 6.96681e-13 0.0176379 0.000569564 1.77799e-12 0.00162356 4.16818e-12 0.0195879 0.0168001 1.13239e-14 3.40507e-19 0.0168001 9.07424e-14 7.27601e-19 0.0168001 4.37056e-13 5.69037e-18 0.0168001 9.37115e-13 7.10576e-18 0.0168001 3.75912e-12 1.79325e-17 0.0168001 7.79162e-12 2.427e-17 0.0168001 2.76685e-11 5.20248e-17 0.0168001 6.28578e-11 7.0972e-17 0.0168001 1.92472e-10 1.13659e-16 0.0168001 4.63613e-10 1.77418e-16 0.0168001 1.31612e-09 2.33299e-16 0.0168001 3.20832e-09 3.81344e-16 0.0168001 8.84918e-09 4.79653e-16 0.0168001 2.12611e-08 7.95494e-16 0.0168001 5.76668e-08 1.21299e-15 0.0168002 1.36188e-07 2.0533e-15 0.0168002 3.65479e-07 4.00016e-15 0.0168011 8.5353e-07 7.41867e-15 0.0168013 2.28391e-06 1.69617e-14 0.0168067 5.29359e-06 3.26833e-14 0.0168088 1.42541e-05 8.40671e-14 0.016845 3.31493e-05 1.40649e-13 0.0168745 9.10085e-05 4.85663e-13 0.0171654 0.000222369 7.26393e-13 0.000675513 2.90578e-12 0.0178782 0.0168001 4.73574e-15 7.2506e-19 0.0168001 -3.72239e-15 2.9697e-18 0.0168001 1.27552e-13 9.19031e-18 0.0168001 8.16503e-14 2.22583e-17 0.0168001 9.79294e-13 2.86136e-17 0.0168001 1.15793e-12 6.15403e-17 0.0168001 6.92384e-12 7.36546e-17 0.0168001 1.20005e-11 1.21614e-16 0.0168001 5.48384e-11 1.5856e-16 0.0168001 1.26084e-10 2.44436e-16 0.0168001 4.67652e-10 3.46123e-16 0.0168001 1.15228e-09 5.23734e-16 0.0168001 3.58748e-09 7.19251e-16 0.0168001 8.67324e-09 1.10876e-15 0.0168001 2.50855e-08 1.54187e-15 0.0168001 5.89072e-08 2.46324e-15 0.0168002 1.65376e-07 4.06223e-15 0.0168005 3.81224e-07 6.93506e-15 0.0168009 1.05042e-06 1.36651e-14 0.0168027 2.39974e-06 2.53932e-14 0.016806 6.54998e-06 5.82119e-14 0.0168176 1.49816e-05 1.14032e-13 0.0168418 4.0853e-05 2.98936e-13 0.0169193 9.73248e-05 6.33396e-13 0.000273491 1.73692e-12 0.0171621 0.0168001 2.63477e-15 2.94937e-18 0.0168001 -1.47192e-14 2.58345e-18 0.0168001 4.53375e-14 1.91099e-17 0.0168001 -4.92036e-14 1.91768e-17 0.0168001 2.89239e-13 6.08314e-17 0.0168001 -6.91385e-14 6.67597e-17 0.0168001 1.09205e-12 1.43952e-16 0.0168001 1.0369e-12 1.77253e-16 0.0168001 1.09686e-11 3.22536e-16 0.0168001 1.98363e-11 4.06045e-16 0.0168001 1.07828e-10 4.80523e-16 0.0168001 2.94109e-10 6.78291e-16 0.0168001 1.13622e-09 8.18105e-16 0.0168001 2.9576e-09 1.12327e-15 0.0168001 9.69684e-09 1.53465e-15 0.0168001 2.37144e-08 2.35032e-15 0.0168001 6.97255e-08 3.34979e-15 0.0168003 1.64771e-07 5.63547e-15 0.0168005 4.63712e-07 8.98076e-15 0.0168013 1.06772e-06 1.61411e-14 0.0168029 2.93566e-06 3.30902e-14 0.0168084 6.63865e-06 5.82709e-14 0.0168174 1.8383e-05 1.86866e-13 0.0168633 4.09194e-05 1.1789e-13 0.000119656 1.42748e-12 0.0169265 0.0168001 1.03829e-15 5.09067e-19 0.0168001 9.13625e-15 2.71982e-18 0.0168001 4.64385e-15 1.21727e-17 0.0168001 1.05818e-13 2.88144e-17 0.0168001 1.69294e-14 5.6038e-17 0.0168001 5.32741e-13 1.03933e-16 0.0168001 8.34452e-13 1.88117e-16 0.0168001 2.14407e-12 2.97112e-16 0.0168001 5.98867e-12 4.0548e-16 0.0168001 6.3462e-12 5.13609e-16 0.0168001 3.93177e-11 8.96603e-16 0.0168001 7.8653e-11 1.06522e-15 0.0168001 2.46217e-10 1.47646e-15 0.0168001 6.52904e-10 1.83203e-15 0.0168001 2.65767e-09 2.12475e-15 0.0168001 6.85344e-09 3.59316e-15 0.0168001 2.66588e-08 4.93821e-15 0.0168002 5.85325e-08 7.77408e-15 0.0168003 1.957e-07 1.07657e-14 0.0168007 4.19872e-07 1.7143e-14 0.0168013 1.30013e-06 2.89097e-14 0.0168039 2.72668e-06 5.0676e-14 0.0168077 8.27077e-06 1.14625e-13 0.0168225 1.70975e-05 2.18724e-13 5.22423e-05 5.99248e-13 0.01685 0.0168001 1.04629e-14 1.53398e-18 0.0168001 -2.56414e-14 6.03596e-18 0.0168001 7.29213e-14 1.45181e-17 0.0168001 1.62121e-14 3.72788e-17 0.0168001 1.7815e-13 5.33851e-17 0.0168001 3.64046e-13 1.13197e-16 0.0168001 2.92586e-13 1.3093e-16 0.0168001 2.09207e-12 3.56679e-16 0.0168001 4.35087e-12 4.49237e-16 0.0168001 1.59642e-11 7.28955e-16 0.0168001 2.83284e-11 9.90121e-16 0.0168001 2.01026e-11 8.55801e-16 0.0168001 1.64483e-10 8.36347e-16 0.0168001 1.37261e-10 2.15673e-15 0.0168001 7.60881e-10 5.21211e-15 0.0168001 1.4787e-09 4.00239e-15 0.0168001 5.1995e-09 1.75421e-15 0.0168001 1.95245e-08 4.83434e-15 0.0168003 5.1463e-08 9.60985e-15 0.0168003 1.78974e-07 2.02205e-14 0.016801 4.08637e-07 3.69019e-14 0.0168013 1.27905e-06 5.20225e-14 0.0168051 2.82236e-06 7.15967e-14 0.0168068 8.40284e-06 1.34092e-13 1.83008e-05 2.30698e-13 0.0168291 0.0168001 2.12704e-15 7.4793e-19 0.0168001 1.09886e-14 6.74154e-18 0.0168001 4.76214e-14 1.6169e-17 0.0168001 1.60953e-13 4.65318e-17 0.0168001 2.82041e-13 8.01098e-17 0.0168001 1.08363e-12 1.65569e-16 0.0168001 1.70642e-12 2.7563e-16 0.0168001 5.56185e-12 4.80634e-16 0.0168001 1.04882e-11 5.81184e-16 0.0168001 1.67458e-11 7.10522e-16 0.0168001 3.19229e-11 7.84239e-16 0.0168001 7.41683e-11 1.00218e-15 0.0168001 4.52234e-11 1.22834e-15 0.0168001 2.37141e-10 1.67674e-15 0.0168001 2.09593e-10 2.93405e-15 0.0168001 1.07713e-09 5.5137e-15 0.0168001 8.75803e-10 9.48006e-15 0.0168002 4.34967e-09 1.89141e-14 0.0168002 1.11939e-08 2.27954e-14 0.0168003 3.73557e-08 3.18842e-14 0.0168004 1.46961e-07 4.28272e-14 0.0168011 3.55044e-07 5.40311e-14 0.0168015 1.19105e-06 7.57637e-14 0.0168054 2.67564e-06 1.16845e-13 8.18262e-06 2.03739e-13 0.016808 0.0168001 -8.02852e-17 1.83637e-18 0.0168001 8.02564e-15 1.86313e-17 0.0168001 1.4306e-14 2.16298e-17 0.0168001 7.26488e-14 1.32642e-16 0.0168001 1.19879e-13 1.12294e-16 0.0168001 4.23794e-13 2.93679e-16 0.0168001 7.354e-13 2.59793e-17 0.0168001 2.28913e-12 6.24382e-17 0.0168001 3.84258e-12 1.50977e-16 0.0168001 8.18031e-12 -6.95611e-16 0.0168001 1.33635e-11 -1.40793e-15 0.0168001 -1.98885e-11 4.67671e-16 0.0168001 8.41255e-11 3.01521e-15 0.0168001 1.68604e-11 9.75291e-15 0.0168001 3.67661e-10 1.88793e-14 0.0168001 6.94332e-11 1.84763e-14 0.0168001 1.23767e-09 4.61963e-15 0.0168001 5.4881e-10 8.66315e-15 0.0168002 5.49714e-09 1.78218e-14 0.0168003 4.90124e-09 6.74079e-15 0.0168005 2.7441e-08 7.88044e-15 0.0168006 9.25531e-08 2.01747e-14 0.0168015 2.96192e-07 3.56121e-14 0.016802 9.64891e-07 8.45307e-14 2.49667e-06 1.41704e-13 0.016806 0.0168001 3.23634e-17 4.9687e-18 0.0168001 8.72008e-15 1.28724e-17 0.0168001 8.90119e-15 -1.27944e-17 0.0168001 6.44407e-14 1.66128e-16 0.0168001 4.97037e-14 -6.188e-17 0.0168001 2.7443e-13 4.50781e-16 0.0168001 1.05711e-13 -4.54299e-16 0.0168001 5.86967e-13 -7.31371e-17 0.0168001 2.66379e-13 -6.22917e-16 0.0168001 2.74649e-13 -2.15013e-15 0.0168001 2.9341e-12 -1.73641e-15 0.0168001 -7.77945e-12 -2.20702e-15 0.0168001 4.00582e-11 2.76126e-15 0.0168001 9.09924e-11 9.3014e-15 0.0168001 2.56105e-10 1.58133e-14 0.0168001 3.42853e-10 2.8073e-14 0.0168001 8.44965e-10 2.15472e-14 0.0168001 1.71171e-09 6.38012e-15 0.0168002 3.41149e-09 6.53971e-15 0.0168003 5.95677e-09 4.33268e-15 0.0168004 8.69228e-09 6.43116e-14 0.0168006 2.06855e-08 1.59817e-13 0.0168011 5.01217e-08 1.19451e-13 0.0168016 2.20114e-07 1.32049e-13 6.05895e-07 -3.01371e-14 0.0168035 0.0168001 -4.80518e-16 6.40357e-19 0.0168001 3.9916e-15 2.07447e-17 0.0168001 2.50635e-15 1.92954e-17 0.0168001 2.52914e-14 9.74181e-17 0.0168001 1.79632e-14 2.11911e-17 0.0168001 9.40252e-14 1.82222e-16 0.0168001 3.12595e-14 -2.88255e-16 0.0168001 1.88731e-13 1.48282e-16 0.0168001 1.42393e-13 2.25085e-16 0.0168001 -3.28543e-13 1.5831e-16 0.0168001 2.92177e-12 2.68895e-15 0.0168001 1.37186e-11 5.45827e-15 0.0168001 4.85436e-11 5.51701e-15 0.0168001 1.17613e-10 -9.63765e-16 0.0168001 2.55414e-10 2.82088e-15 0.0168001 4.3657e-10 6.15255e-15 0.0168001 9.41054e-10 3.46071e-15 0.0168001 2.84191e-09 -1.1901e-16 0.0168002 3.43322e-09 2.53722e-14 0.0168003 1.05074e-08 6.72509e-14 0.0168004 5.5666e-09 6.92835e-14 0.0168006 2.43983e-08 4.72773e-14 0.0168008 1.23025e-08 4.35048e-14 0.0168017 6.75531e-08 4.23304e-14 1.19135e-07 5.20929e-14 0.0168025 0.0168001 -2.28929e-16 -3.86247e-19 0.0168001 1.25334e-15 1.21236e-17 0.0168001 1.11147e-15 1.2121e-17 0.0168001 7.86675e-15 6.22476e-17 0.0168001 1.04666e-14 1.57497e-17 0.0168001 2.86059e-14 1.29461e-16 0.0168001 2.86402e-14 -1.86062e-16 0.0168001 8.26416e-14 -2.73801e-16 0.0168001 1.62622e-13 -5.0805e-17 0.0168001 4.35233e-13 1.43644e-15 0.0168001 5.15841e-12 2.09176e-15 0.0168001 2.51974e-11 2.00787e-15 0.0168001 4.84539e-11 2.97166e-15 0.0168001 1.07965e-10 5.60029e-16 0.0168001 2.1197e-10 1.64482e-15 0.0168001 4.40093e-10 -3.23294e-15 0.0168001 8.83685e-10 -5.66885e-15 0.0168001 1.15076e-09 -3.1722e-14 0.0168001 3.14457e-09 4.82668e-14 0.0168003 1.84159e-09 6.11681e-14 0.0168004 9.62352e-09 8.14715e-14 0.0168005 3.11352e-09 8.67776e-14 0.0168008 2.28589e-08 1.14369e-13 0.0168013 5.37387e-09 1.13315e-13 6.45838e-08 1.21304e-13 0.0168023 0.0168001 -6.60821e-17 -9.06325e-20 0.0168001 -3.79471e-19 5.74881e-18 0.0168001 -2.19985e-16 8.95483e-18 0.0168001 7.38992e-16 3.21009e-17 0.0168001 2.27406e-15 3.69992e-17 0.0168001 4.30379e-15 8.48016e-17 0.0168001 3.29402e-15 1.05844e-16 0.0168001 3.30294e-14 1.03584e-16 0.0168001 9.87216e-14 1.53133e-16 0.0168001 4.56131e-13 1.00919e-16 0.0168001 5.21075e-12 -2.17917e-15 0.0168001 2.9484e-11 -7.49699e-15 0.0168001 2.90737e-11 -7.08956e-15 0.0168001 7.4837e-11 -1.87861e-15 0.0168001 1.42463e-10 -1.34356e-17 0.0168001 7.3908e-10 1.32971e-14 0.0168001 2.8707e-10 1.40641e-14 0.0168001 1.2287e-09 7.96473e-15 0.0168002 6.20851e-10 5.28407e-15 0.0168002 3.40805e-09 1.01476e-14 0.0168004 1.95324e-09 1.83149e-14 0.0168005 6.46717e-09 2.39227e-14 0.0168008 3.31712e-09 2.08411e-14 0.0168013 1.66843e-08 2.68421e-14 7.6206e-09 5.53232e-14 0.0168021 0.0168001 -1.11131e-17 1.29596e-19 0.0168001 -1.66425e-16 3.24668e-18 0.0168001 -3.5616e-16 5.28803e-18 0.0168001 -9.86407e-16 1.8085e-17 0.0168001 -9.54206e-16 2.65028e-17 0.0168001 -3.48972e-15 5.6542e-17 0.0168001 -1.65639e-15 9.9949e-17 0.0168001 -2.39945e-15 8.98321e-17 0.0168001 9.44053e-14 1.41591e-16 0.0168001 -1.63184e-13 -5.13734e-17 0.0168001 2.48308e-12 -2.71586e-15 0.0168001 1.35841e-11 -1.09229e-14 0.0168001 1.03288e-11 -2.39482e-15 0.0168001 2.04131e-11 -6.36454e-15 0.0168001 3.6408e-11 2.01166e-14 0.0168001 3.23455e-10 2.01339e-14 0.0168001 -4.69397e-11 -1.34778e-14 0.0168001 4.30935e-10 6.19882e-15 0.0168002 -2.12656e-10 -7.8342e-15 0.0168002 1.35448e-09 2.45244e-14 0.0168004 1.74365e-10 1.17198e-14 0.0168005 2.38345e-09 2.68849e-14 0.0168008 -5.26071e-10 3.27405e-14 0.0168014 5.89124e-09 9.2224e-14 -5.66281e-10 8.39604e-14 0.0168022 0.0168001 3.39355e-17 2.79521e-19 0.0168001 -1.24575e-16 1.74573e-18 0.0168001 -4.27718e-17 4.38678e-18 0.0168001 -3.02384e-16 1.12452e-17 0.0168001 -1.00993e-16 1.93962e-17 0.0168001 -5.81241e-16 4.01358e-17 0.0168001 2.36264e-15 7.03122e-17 0.0168001 -1.37352e-15 1.29864e-16 0.0168001 4.58561e-14 1.77847e-16 0.0168001 -7.03273e-14 4.05564e-16 0.0168001 9.2564e-13 -1.33659e-15 0.0168001 5.20262e-12 -5.231e-15 0.0168001 -1.27503e-13 9.42827e-16 0.0168001 1.90153e-12 -1.59047e-17 0.0168001 2.75117e-11 -1.84503e-15 0.0168001 7.15822e-11 2.51981e-15 0.0168001 -4.34518e-11 1.31652e-14 0.0168001 7.55945e-11 -2.53141e-15 0.0168002 -8.10668e-12 -4.81929e-15 0.0168002 1.7128e-10 1.27133e-14 0.0168004 7.43917e-11 2.45176e-15 0.0168005 3.11439e-10 2.49179e-14 0.0168008 -1.92359e-11 5.88962e-15 0.0168014 7.90293e-10 7.38719e-14 -1.95973e-10 4.37778e-14 0.0168022 0.0168001 -7.42678e-18 -3.81165e-20 0.0168001 4.21213e-17 1.68136e-18 0.0168001 3.9736e-17 1.72879e-18 0.0168001 4.11292e-16 7.65633e-18 0.0168001 4.41541e-16 1.14468e-17 0.0168001 1.75554e-15 2.67603e-17 0.0168001 2.71788e-15 4.41262e-17 0.0168001 6.19199e-15 7.88943e-17 0.0168001 1.68932e-14 7.64058e-17 0.0168001 1.36527e-14 1.89065e-16 0.0168001 1.2074e-13 -5.71812e-16 0.0168001 5.53313e-13 -2.45829e-15 0.0168001 -2.24542e-13 1.45562e-15 0.0168001 1.48894e-13 -4.3928e-17 0.0168001 4.86354e-12 -2.04484e-15 0.0168001 1.34426e-11 1.81242e-15 0.0168001 -8.52781e-12 3.6121e-16 0.0168001 4.39976e-12 2.59904e-15 0.0168002 2.7708e-11 1.49735e-15 0.0168002 -1.1207e-11 6.24324e-15 0.0168004 6.09122e-11 4.80902e-15 0.0168005 2.5064e-11 1.67511e-14 0.0168008 8.48124e-11 1.87975e-14 0.0168014 1.10719e-10 4.84991e-14 -2.56768e-11 6.58226e-14 0.0168022 0.0168001 6.93889e-18 1.15196e-19 0.0168001 1.65287e-16 3.41354e-19 0.0168001 3.66135e-16 3.17807e-18 0.0168001 7.98732e-16 4.9382e-18 0.0168001 2.1323e-15 1.3273e-17 0.0168001 4.20735e-15 2.07498e-17 0.0168001 8.71287e-15 4.84045e-17 0.0168001 1.5208e-14 6.94076e-17 0.0168001 2.11784e-14 1.1556e-16 0.0168001 8.06307e-14 3.69241e-16 0.0168001 2.62051e-13 1.27997e-15 0.0168001 1.12196e-12 4.13853e-15 0.0168001 1.14699e-13 -1.76648e-15 0.0168001 5.43597e-13 1.57044e-15 0.0168001 2.90948e-12 1.17656e-14 0.0168001 1.87347e-12 -2.16822e-15 0.0168001 6.73506e-13 -1.02916e-14 0.0168001 -3.06605e-12 1.25488e-15 0.0168002 1.59149e-11 4.05029e-15 0.0168002 -1.45194e-11 2.93535e-15 0.0168004 2.81998e-11 5.89527e-15 0.0168005 -1.25868e-11 1.4021e-14 0.0168008 4.75353e-11 2.04384e-14 0.0168014 1.47761e-11 4.08626e-14 -1.35809e-12 5.81111e-14 0.0168022 0.0168001 -1.89735e-18 -2.10911e-19 0.0168001 5.49691e-17 -5.75982e-20 0.0168001 1.34278e-16 -5.33631e-20 0.0168001 3.85e-16 2.95276e-18 0.0168001 9.54315e-16 -1.73557e-18 0.0168001 2.13404e-15 5.86909e-18 0.0168001 4.36565e-15 -9.48677e-20 0.0168001 8.61605e-15 -1.65171e-19 0.0168001 1.38502e-14 -2.81376e-17 0.0168001 3.2666e-14 -2.49028e-16 0.0168001 7.50335e-14 -2.10227e-15 0.0168001 3.01449e-13 -7.06082e-15 0.0168001 2.00003e-13 1.17022e-15 0.0168001 2.37425e-13 -1.66679e-17 0.0168001 3.0195e-13 -1.04261e-14 0.0168001 3.97526e-14 3.16189e-15 0.0168001 3.09555e-12 2.14633e-14 0.0168001 -1.22157e-12 -7.00149e-16 0.0168002 6.29864e-12 -3.11278e-15 0.0168003 -3.20577e-12 8.03925e-15 0.0168004 1.23952e-11 1.43454e-14 0.0168005 -3.65403e-12 1.23856e-14 0.0168008 1.85316e-11 2.18338e-14 0.0168014 2.84892e-12 3.31547e-14 8.6767e-12 6.00591e-14 0.0168022 0.0168001 1.25767e-17 -8.47033e-22 0.0168001 -5.37222e-17 -5.75982e-20 0.0168001 -1.57209e-17 -9.06325e-20 0.0168001 6.14201e-17 2.60039e-19 0.0168001 6.91721e-17 -2.65968e-19 0.0168001 5.48986e-16 5.58195e-19 0.0168001 1.34219e-15 3.90059e-18 0.0168001 4.50367e-15 3.88026e-18 0.0168001 1.06516e-14 2.68552e-17 0.0168001 5.02349e-15 -8.22198e-17 0.0168001 -7.32266e-14 -3.21343e-16 0.0168001 -5.41784e-13 -8.88104e-16 0.0168001 1.00601e-14 -1.94097e-16 0.0168001 -9.66599e-14 5.43773e-16 0.0168001 -1.15839e-12 -7.97133e-16 0.0168001 -4.78956e-13 1.50349e-15 0.0168001 6.75767e-13 -2.54862e-15 0.0168001 -1.30471e-13 4.00258e-15 0.0168002 3.07545e-12 5.65093e-15 0.0168003 9.81857e-13 4.84962e-15 0.0168004 6.00828e-12 8.57269e-15 0.0168005 1.49962e-12 1.31296e-14 0.0168008 8.72482e-12 2.15497e-14 0.0168014 5.26673e-12 3.38741e-14 8.73904e-12 5.49418e-14 0.0168022 0.0168001 5.85469e-18 -2.65121e-19 0.0168001 -6.14201e-17 3.21873e-20 0.0168001 -5.99564e-17 -1.72879e-18 0.0168001 -1.40296e-16 -1.77538e-18 0.0168001 -2.54896e-16 -4.93566e-18 0.0168001 -3.277e-16 -8.77696e-18 0.0168001 2.76363e-16 -1.02677e-17 0.0168001 1.43641e-15 -2.73431e-17 0.0168001 1.14796e-14 -2.03754e-17 0.0168001 3.42619e-15 -4.79421e-17 0.0168001 -2.95765e-15 2.54809e-16 0.0168001 -6.2285e-14 9.31524e-16 0.0168001 -1.35748e-13 -5.79059e-16 0.0168001 -9.485e-14 4.56907e-17 0.0168001 -4.84842e-14 3.10489e-15 0.0168001 -1.83039e-13 -7.62375e-16 0.0168001 -9.63216e-13 -2.22758e-15 0.0168001 -3.62252e-13 1.10346e-15 0.0168002 1.06301e-12 2.92139e-15 0.0168003 6.38129e-13 4.71282e-15 0.0168004 2.20532e-12 7.65839e-15 0.0168005 2.12513e-12 1.27467e-14 0.0168008 4.3809e-12 1.81757e-14 0.0168014 4.8369e-12 3.24939e-14 6.12461e-12 5.10585e-14 0.0168022 0.0168001 -1.94818e-19 0.0168001 -9.23266e-20 0.0168001 -1.61699e-18 0.0168001 -1.58056e-18 0.0168001 -5.37781e-18 0.0168001 -8.26958e-18 0.0168001 -1.59903e-17 0.0168001 -2.94581e-17 0.0168001 -4.99775e-17 0.0168001 -7.24137e-17 0.0168001 -1.6917e-16 0.0168001 -4.24934e-16 0.0168001 1.23828e-16 0.0168001 3.76364e-16 0.0168001 -2.61501e-15 0.0168001 -1.85893e-16 0.0168001 2.90221e-15 0.0168001 2.37793e-15 0.0168002 2.48869e-15 0.0168003 4.75385e-15 0.0168004 7.52215e-15 0.0168005 1.26476e-14 0.0168008 1.75477e-14 0.0168014 3.23886e-14 5.0289e-14 0.0168022 0.0168001 1.84917e-10 -8.15117e-17 0.0168001 1.09295e-09 -3.97949e-16 0.0168001 3.62749e-09 -7.84265e-16 0.0168001 1.04619e-08 -2.00761e-15 0.0168001 2.60018e-08 -3.86248e-15 0.0168 6.71234e-08 -1.06479e-14 0.0168001 1.58025e-07 -2.16898e-14 0.0167997 4.00991e-07 -5.97211e-14 0.0168002 9.36232e-07 -1.23491e-13 0.016798 2.403e-06 -3.1252e-13 0.0168016 5.64819e-06 -6.57679e-13 0.0167864 1.4949e-05 -1.61696e-12 0.0168218 3.70468e-05 -3.15574e-12 0.0167286 0.00010365 -7.84148e-12 0.0169719 0.00030622 -2.41699e-11 0.0168252 0.00109582 -2.76657e-11 0.0184505 0.00385374 -1.07049e-10 0.0176922 0.0161977 4.25832e-11 0.0163733 0.0165761 8.89277e-11 0.0149055 0.0161395 9.75791e-11 0.0134935 0.016846 6.41963e-11 0.0117482 0.0179095 6.51967e-11 0.0106225 0.0192072 6.42586e-11 0.0113497 0.0215436 4.26353e-11 0.0244344 6.35237e-12 0.0182577 0.0168001 1.39609e-10 -7.39223e-17 0.0168001 1.09371e-09 -3.51851e-16 0.0168001 3.33075e-09 -6.8941e-16 0.0168001 1.01694e-08 -1.71466e-15 0.0168 2.40742e-08 -3.26997e-15 0.0168 6.53614e-08 -8.81189e-15 0.0168 1.47897e-07 -1.80597e-14 0.0167998 3.94674e-07 -4.89495e-14 0.0167996 8.87233e-07 -1.01332e-13 0.0167986 2.3677e-06 -2.57396e-13 0.0167978 5.37586e-06 -5.5527e-13 0.0167933 1.42986e-05 -1.26613e-12 0.016789 3.32665e-05 -2.95229e-12 0.0167692 9.59354e-05 -5.88501e-12 0.0167797 0.000254573 -1.83426e-11 0.0168392 0.000920229 -3.20923e-11 0.0173373 0.00299881 -9.03342e-11 0.0176733 0.0152083 -1.05989e-10 0.0169406 0.0174411 1.1718e-10 0.0157459 0.017397 1.09798e-10 0.0146982 0.0177227 6.03066e-11 0.0135064 0.0186706 5.6552e-11 0.0129645 0.0195521 5.79086e-11 0.0140311 0.0204232 5.38981e-11 0.0214704 2.92885e-11 0.0171006 0.0168001 1.21571e-10 -6.30447e-17 0.0168001 9.51812e-10 -2.90574e-16 0.0168001 2.94085e-09 -5.67867e-16 0.0168001 8.8934e-09 -1.31778e-15 0.0168001 2.11544e-08 -2.43693e-15 0.0168 5.64206e-08 -6.08217e-15 0.0168 1.27477e-07 -1.19894e-14 0.0167999 3.33453e-07 -3.18849e-14 0.0167999 7.42736e-07 -6.40825e-14 0.0167995 1.98785e-06 -1.74202e-13 0.0167996 4.21287e-06 -3.38027e-13 0.0167964 1.30046e-05 -9.90001e-13 0.0168 2.40952e-05 -1.75046e-12 0.0167785 9.51301e-05 -5.69664e-12 0.0168025 0.000194325 -1.0573e-11 0.0167612 0.000884371 -3.6645e-11 0.0169827 0.00253384 -7.55088e-11 0.0180987 0.0134835 -1.33009e-10 0.0176323 0.0181261 1.54305e-10 0.016708 0.0183311 1.18739e-10 0.0158887 0.0183251 4.85446e-11 0.0151676 0.018962 6.3937e-11 0.0149272 0.0195328 4.30058e-11 0.0156708 0.0195517 4.70647e-11 0.0192988 3.33771e-11 0.018008 0.0168001 1.0994e-10 -5.32911e-17 0.0168001 9.20555e-10 -2.50129e-16 0.0168001 2.81189e-09 -4.85994e-16 0.0168001 8.49247e-09 -1.11222e-15 0.0168001 2.02174e-08 -2.02668e-15 0.0168 5.39338e-08 -4.91939e-15 0.0168 1.22755e-07 -9.6031e-15 0.0167999 3.20402e-07 -2.48712e-14 0.0167998 7.21216e-07 -4.98706e-14 0.0167992 1.89267e-06 -1.31692e-13 0.0167984 4.18171e-06 -2.53113e-13 0.016796 1.16778e-05 -7.78864e-13 0.016794 2.38167e-05 -8.84348e-13 0.0167844 8.24223e-05 -5.72442e-12 0.0167979 0.000163124 -5.68992e-12 0.0168741 0.000732482 -3.47083e-11 0.0171784 0.00200236 -6.72786e-11 0.0193913 0.0105734 -1.69427e-10 0.0189529 0.0187172 1.19409e-10 0.0179113 0.0193389 9.45304e-11 0.0171103 0.0188727 3.88658e-11 0.016621 0.0190739 4.95038e-11 0.016505 0.0193673 5.42729e-11 0.0167519 0.0190916 5.72298e-11 0.0179888 4.51064e-11 0.0179954 0.0168001 3.7033e-11 -4.02857e-17 0.0168001 9.92119e-10 -2.02454e-16 0.0168001 1.72917e-09 -3.89633e-16 0.0168001 8.8032e-09 -9.18906e-16 0.0168001 1.31031e-08 -1.65207e-15 0.0168 5.65544e-08 -4.07564e-15 0.0168001 8.2087e-08 -7.94609e-15 0.0167999 3.43342e-07 -2.06233e-14 0.0168 4.93138e-07 -4.1594e-14 0.0167993 2.07252e-06 -1.074e-13 0.0167999 2.87672e-06 -2.13005e-13 0.0167959 1.29204e-05 -5.5863e-13 0.0168006 1.56398e-05 -1.0391e-12 0.0167825 8.70656e-05 -2.98204e-12 0.016826 9.57682e-05 -6.09779e-12 0.0168561 0.00064922 -1.60414e-11 0.0174552 0.00121499 -4.10218e-11 0.0218347 0.00593862 -1.18736e-10 0.0204972 0.0198695 2.52487e-11 0.019622 0.019965 2.48872e-11 0.0183889 0.0198937 3.31277e-11 0.0179049 0.0193816 4.29036e-11 0.0178192 0.0193484 5.32414e-11 0.017938 0.0189229 6.12489e-11 0.0176075 4.90571e-11 0.0182947 0.0168001 7.69433e-11 -3.52052e-17 0.0168001 4.9689e-10 -1.25507e-16 0.0168001 1.77871e-09 -3.36937e-16 0.0168001 4.7548e-09 -6.06797e-16 0.0168001 1.2887e-08 -1.44022e-15 0.0168001 3.06813e-08 -2.66e-15 0.0168 7.90074e-08 -6.87938e-15 0.0168002 1.8418e-07 -1.36901e-14 0.0168 4.71134e-07 -3.70958e-14 0.0168007 1.09452e-06 -7.52939e-14 0.0167996 2.8702e-06 -1.9207e-13 0.0168048 6.46618e-06 -4.04113e-13 0.0167965 1.85282e-05 -9.42781e-13 0.0168356 4.02674e-05 -1.88715e-12 0.016777 0.000127789 -5.32532e-12 0.01708 0.000310694 -1.11096e-11 0.0169564 0.00120784 -3.12756e-11 0.0188861 0.00375329 -8.19817e-11 0.0210933 0.0170323 -1.27391e-10 0.0206486 0.0201829 1.37641e-11 0.0198761 0.0205339 2.41462e-11 0.0192614 0.0199433 3.76364e-11 0.0191145 0.01944 4.55947e-11 0.0191392 0.0188231 5.01671e-11 0.0175437 4.83988e-11 0.0191564 0.0168001 8.17426e-11 -3.13792e-17 0.0168001 4.29541e-10 -1.14228e-16 0.0168001 1.607e-09 -2.90179e-16 0.0168001 4.12068e-09 -5.18127e-16 0.0168001 1.15249e-08 -1.14005e-15 0.0168001 2.66879e-08 -2.04887e-15 0.0168 7.07822e-08 -4.90121e-15 0.0168 1.60568e-07 -9.52819e-15 0.0167999 4.21708e-07 -2.4732e-14 0.0167999 9.49904e-07 -4.97087e-14 0.0167996 2.51121e-06 -1.31801e-13 0.0167995 5.55722e-06 -2.66048e-13 0.0167983 1.56645e-05 -7.10479e-13 0.0168026 3.19314e-05 -1.3895e-12 0.0167964 0.000110676 -4.29884e-12 0.0168526 0.00022782 -8.38846e-12 0.0169931 0.00097912 -2.88331e-11 0.0178662 0.0027348 -7.03105e-11 0.0211564 0.0129942 -1.69852e-10 0.0212858 0.0199312 4.32561e-11 0.0208134 0.0208977 4.92363e-11 0.0202221 0.0204738 5.06714e-11 0.0200159 0.0195093 4.71682e-11 0.0199313 0.0186891 4.71116e-11 0.0174763 4.53117e-11 0.0197973 0.0168001 9.25362e-11 -2.36026e-17 0.0168001 2.63525e-10 -8.8321e-17 0.0168001 1.55939e-09 -2.30263e-16 0.0168001 2.73063e-09 -4.12123e-16 0.0168001 1.10893e-08 -8.84446e-16 0.0168001 1.80694e-08 -1.56089e-15 0.0168 6.83431e-08 -3.53628e-15 0.0168001 1.10037e-07 -6.70924e-15 0.0168 4.09916e-07 -1.6684e-14 0.0168002 6.54067e-07 -3.26967e-14 0.0167997 2.45316e-06 -8.78124e-14 0.0168008 3.79046e-06 -1.68512e-13 0.0167981 1.51287e-05 -5.23423e-13 0.016805 2.07608e-05 -9.34778e-13 0.0167943 0.000100661 -3.7029e-12 0.0168662 0.000130734 -6.20478e-12 0.0169889 0.000750093 -2.76331e-11 0.0179393 0.00160294 -6.97459e-11 0.0228964 0.00715406 -2.195e-10 0.0224495 0.0201654 1.31926e-12 0.0223977 0.0209076 5.69046e-11 0.0217491 0.0211267 5.33097e-11 0.0211131 0.0200923 4.74536e-11 0.0208577 0.0188056 4.6529e-11 0.0175291 4.49614e-11 0.0206296 0.0168001 3.73245e-11 -9.74766e-18 0.0168001 2.66487e-10 -6.0501e-17 0.0168001 8.32151e-10 -1.25796e-16 0.0168001 2.51752e-09 -2.93485e-16 0.0168001 6.06121e-09 -5.02457e-16 0.0168001 1.62123e-08 -1.08561e-15 0.0168001 3.73001e-08 -1.90115e-15 0.0168001 9.6776e-08 -4.53493e-15 0.0168002 2.20878e-07 -8.73074e-15 0.0168001 5.67025e-07 -2.36112e-14 0.016801 1.2908e-06 -5.01493e-14 0.0168003 3.37651e-06 -1.4298e-13 0.0168066 7.44585e-06 -3.0612e-13 0.0167994 2.1604e-05 -8.53569e-13 0.0168487 4.42831e-05 -1.79152e-12 0.0168003 0.000148929 -5.23404e-12 0.017175 0.000331615 -1.07832e-11 0.0173059 0.00134293 -3.21808e-11 0.0201462 0.00401963 -7.30916e-11 0.023233 0.016579 -9.16764e-11 0.0232689 0.0207911 3.48843e-11 0.0227945 0.0215251 3.96091e-11 0.0220227 0.0207249 4.35565e-11 0.0215902 0.0190475 4.40429e-11 0.0176444 4.43832e-11 0.0212321 0.0168001 1.4996e-11 -6.91687e-18 0.0168001 2.48514e-10 -4.50156e-17 0.0168001 5.21344e-10 -9.47118e-17 0.0168001 2.23597e-09 -2.3581e-16 0.0168001 3.89068e-09 -4.04944e-16 0.0168001 1.44151e-08 -9.22842e-16 0.0168001 2.43219e-08 -1.61201e-15 0.0168 8.74571e-08 -3.98133e-15 0.0168001 1.46485e-07 -7.68032e-15 0.0167999 5.2416e-07 -2.09296e-14 0.0168002 8.70627e-07 -4.32673e-14 0.0167995 3.15221e-06 -1.21632e-13 0.0168008 5.07025e-06 -2.47934e-13 0.016798 1.96762e-05 -6.94102e-13 0.0168092 2.83808e-05 -1.38488e-12 0.0167996 0.000134085 -4.02853e-12 0.0169141 0.000191939 -8.47498e-12 0.0171235 0.0010504 -2.47895e-11 0.0183013 0.00271763 -5.59781e-11 0.023442 0.0107134 -1.31772e-10 0.0238517 0.0202393 9.39998e-12 0.0238195 0.0214496 1.80276e-11 0.0231899 0.0213083 4.00304e-11 0.0224538 0.0197353 4.55973e-11 0.017977 4.4775e-11 0.0219921 0.0168001 2.09126e-11 -4.80352e-18 0.0168001 1.20816e-10 -1.97189e-17 0.0168001 4.48822e-10 -6.44889e-17 0.0168001 1.16917e-09 -1.21869e-16 0.0168001 3.26123e-09 -3.01294e-16 0.0168001 7.62518e-09 -5.0808e-16 0.0168001 2.01528e-08 -1.18618e-15 0.0168001 4.62529e-08 -2.08202e-15 0.0168001 1.20569e-07 -5.36989e-15 0.0168002 2.75991e-07 -1.07001e-14 0.0168001 7.16841e-07 -3.17623e-14 0.0168012 1.63897e-06 -6.6711e-14 0.0168003 4.32915e-06 -1.89068e-13 0.0168081 9.71635e-06 -4.27681e-13 0.0168 2.75577e-05 -1.01142e-12 0.0168595 5.9992e-05 -2.64094e-12 0.0168325 0.000188611 -4.48557e-12 0.0173468 0.000463042 -1.72139e-11 0.0182862 0.00169331 -2.33942e-11 0.0232638 0.0052974 -6.7474e-11 0.0249884 0.018254 -4.14868e-11 0.0251237 0.0212798 2.79884e-11 0.0245933 0.0217689 3.5287e-11 0.0234336 0.0207471 4.21926e-11 0.0185754 4.48724e-11 0.022667 0.0168001 2.09412e-11 -2.99426e-18 0.0168001 6.88462e-11 -1.25945e-17 0.0168001 3.65831e-10 -4.22898e-17 0.0168001 7.00465e-10 -8.25069e-17 0.0168001 2.62259e-09 -2.10255e-16 0.0168001 4.63808e-09 -3.55903e-16 0.0168001 1.62908e-08 -8.12529e-16 0.0168001 2.84308e-08 -1.37752e-15 0.0168001 9.84758e-08 -3.37254e-15 0.0168001 1.71162e-07 -6.5801e-15 0.0168 5.91758e-07 -1.98834e-14 0.0168004 1.02087e-06 -4.16034e-14 0.0167999 3.56783e-06 -1.20715e-13 0.0168022 5.9828e-06 -2.48929e-13 0.0168012 2.22915e-05 -7.20409e-13 0.0168199 3.38796e-05 -1.30213e-12 0.0168259 0.000152464 -4.61186e-12 0.0170147 0.000238474 -7.71535e-12 0.0174155 0.00120514 -2.84341e-11 0.0191539 0.00338613 -5.55262e-11 0.0247776 0.011879 -1.28033e-10 0.0254011 0.0204829 -6.32364e-13 0.0254595 0.0215339 1.01586e-11 0.0246463 0.0215222 3.4755e-11 0.0195629 4.88839e-11 0.0236912 0.0168001 8.09011e-12 -9.08019e-19 0.0168001 5.77335e-11 -6.63989e-18 0.0168001 1.80754e-10 -1.55837e-17 0.0168001 5.49056e-10 -4.91872e-17 0.0168001 1.3271e-09 -9.17116e-17 0.0168001 3.58504e-09 -2.40234e-16 0.0168001 8.28402e-09 -3.9534e-16 0.0168001 2.18317e-08 -9.28572e-16 0.0168001 5.00537e-08 -1.53012e-15 0.0168001 1.30987e-07 -4.23823e-15 0.0168003 2.99911e-07 -8.99041e-15 0.0168001 7.84461e-07 -2.96486e-14 0.0168014 1.79416e-06 -6.43549e-14 0.0168004 4.76465e-06 -1.88413e-13 0.0168094 1.0794e-05 -4.37674e-13 0.0168027 3.00255e-05 -1.01321e-12 0.0168676 6.76655e-05 -2.61783e-12 0.0168663 0.00020213 -4.93332e-12 0.0174548 0.000518922 -1.72225e-11 0.0189077 0.00183426 -2.5637e-11 0.0244791 0.00567202 -1.03661e-10 0.0263805 0.0182858 -3.44863e-11 0.0266418 0.0211642 1.06569e-11 0.025925 0.022111 2.03246e-11 0.0206553 3.44442e-11 0.0247865 0.0168001 3.19493e-12 -5.23466e-19 0.0168001 4.47179e-11 -3.58718e-18 0.0168001 1.01522e-10 -8.61602e-18 0.0168001 4.06972e-10 -2.70424e-17 0.0168001 7.58797e-10 -5.25186e-17 0.0168001 2.6448e-09 -1.46188e-16 0.0168001 4.77755e-09 -2.44655e-16 0.0168001 1.61695e-08 -5.71535e-16 0.0168001 2.9053e-08 -9.03101e-16 0.0168001 9.76237e-08 -2.11561e-15 0.0168001 1.74961e-07 -4.54802e-15 0.0168001 5.87964e-07 -1.50861e-14 0.0168005 1.04738e-06 -3.1953e-14 0.0168004 3.56023e-06 -9.89528e-14 0.0168034 6.17351e-06 -2.01758e-13 0.0168038 2.23444e-05 -6.54786e-13 0.0168287 3.51215e-05 -1.00301e-12 0.016841 0.00015229 -4.87091e-12 0.0170783 0.000245445 -6.88816e-12 0.0175974 0.00119158 -3.14328e-11 0.0197692 0.0033318 -6.38471e-11 0.0257765 0.0112192 -1.44638e-10 0.0263937 0.0202404 -1.72132e-11 0.0272161 0.0212347 -8.94959e-13 0.0216562 2.10212e-11 0.0263106 0.0168001 3.48613e-12 -2.49875e-19 0.0168001 2.01289e-11 -1.24937e-18 0.0168001 7.48702e-11 -3.38305e-18 0.0168001 1.9544e-10 -7.30735e-18 0.0168001 5.48162e-10 -2.31587e-17 0.0168001 1.28639e-09 -4.37272e-17 0.0168001 3.4234e-09 -1.34582e-16 0.0168001 7.8846e-09 -2.14126e-16 0.0168001 2.06986e-08 -5.13648e-16 0.0168001 4.7524e-08 -7.07692e-16 0.0168001 1.24144e-07 -2.25234e-15 0.0168003 2.84994e-07 -4.85337e-15 0.0168002 7.44941e-07 -1.84898e-14 0.0168016 1.70725e-06 -4.02733e-14 0.016801 4.54504e-06 -1.37941e-13 0.0168101 1.02638e-05 -3.24759e-13 0.0168041 2.8977e-05 -8.70776e-13 0.0168724 6.39598e-05 -2.42362e-12 0.0168739 0.000198248 -4.30088e-12 0.0174811 0.000483499 -1.75811e-11 0.0189128 0.00176524 -2.41578e-11 0.024264 0.00529778 -7.01801e-11 0.0272555 0.0166645 -7.65876e-11 0.0274299 0.0209301 -6.66307e-12 0.0215077 5.63353e-12 0.0275323 0.0168001 2.86028e-12 -1.36372e-19 0.0168001 1.0199e-11 -8.67362e-19 0.0168001 5.10944e-11 -1.51365e-18 0.0168001 1.03616e-10 -3.4686e-18 0.0168001 3.71175e-10 -8.80321e-18 0.0168001 6.94761e-10 -1.73337e-17 0.0168001 2.33631e-09 -6.45033e-17 0.0168001 4.32159e-09 -1.1073e-16 0.0168001 1.42699e-08 -2.81306e-16 0.0168001 2.63477e-08 -3.72407e-16 0.0168001 8.62803e-08 -8.09714e-16 0.0168002 1.58938e-07 -1.76757e-15 0.0168002 5.19419e-07 -7.91069e-15 0.0168006 9.50787e-07 -1.68489e-14 0.0168007 3.14203e-06 -6.55374e-14 0.0168036 5.61633e-06 -1.30883e-13 0.0168048 1.96259e-05 -5.27192e-13 0.0168281 3.25231e-05 -7.13806e-13 0.0168487 0.000131284 -4.3168e-12 0.0170645 0.000222353 -5.61312e-12 0.0176702 0.000991896 -2.96401e-11 0.0199503 0.00272068 -6.16155e-11 0.0260358 0.0091077 -1.68313e-10 0.0275974 0.0192071 -3.20311e-11 0.0207967 -3.55108e-12 0.0284154 0.0168001 1.02831e-12 -1.3129e-19 0.0168001 7.3639e-12 -3.59989e-19 0.0168001 2.30254e-11 -1.12232e-18 0.0168001 7.05109e-11 -1.27902e-19 0.0168001 1.71259e-10 1.18585e-20 0.0168001 4.68275e-10 2.80622e-18 0.0168001 1.08905e-09 4.85689e-18 0.0168001 2.89932e-09 -2.10335e-17 0.0168001 6.68538e-09 -4.13488e-17 0.0168001 1.7577e-08 -1.34913e-16 0.0168001 4.04365e-08 -3.54e-17 0.0168001 1.053e-07 -2.45381e-16 0.0168003 2.4207e-07 -5.93309e-16 0.0168003 6.27213e-07 -5.93077e-15 0.0168016 1.43947e-06 -1.18606e-14 0.0168015 3.78719e-06 -6.92209e-14 0.0168098 8.54536e-06 -1.19424e-13 0.0168063 2.43225e-05 -6.14474e-13 0.0168717 5.20066e-05 -1.08324e-12 0.0168642 0.000169127 -4.5578e-12 0.0173996 0.000379887 -1.064e-11 0.0184147 0.00148113 -2.68406e-11 0.0228513 0.00424681 -6.11642e-11 0.0276979 0.0135789 -9.05845e-11 0.0202548 -1.80477e-11 0.0281718 0.0168001 3.73367e-13 -2.32087e-19 0.0168001 4.69083e-12 -5.19231e-19 0.0168001 1.11604e-11 -1.73981e-18 0.0168001 4.31828e-11 -5.6243e-19 0.0168001 8.46157e-11 -5.33631e-19 0.0168001 2.86374e-10 7.16759e-18 0.0168001 5.4521e-10 1.59344e-17 0.0168001 1.7892e-09 2.55762e-17 0.0168001 3.39047e-09 4.12751e-17 0.0168001 1.10055e-08 -2.57168e-17 0.0168001 2.08196e-08 1.96503e-17 0.0168001 6.72132e-08 1.66427e-16 0.0168001 1.26975e-07 3.88241e-16 0.0168002 4.08877e-07 -1.11957e-15 0.0168006 7.70257e-07 -2.83161e-15 0.0168008 2.48859e-06 -2.07055e-14 0.0168032 4.63686e-06 -4.27992e-14 0.0168064 1.53412e-05 -2.08974e-13 0.0168215 2.79084e-05 -3.62963e-13 0.0168617 9.76389e-05 -1.91436e-12 0.017005 0.00018704 -2.63095e-12 0.0176591 0.000687765 -1.56896e-11 0.0196303 0.00191266 -3.88742e-11 0.0260825 0.00611169 -1.29228e-10 0.0170428 -4.66082e-11 0.0288109 0.0168001 3.84273e-13 -2.23617e-19 0.0168001 1.60163e-12 -1.98121e-18 0.0168001 7.41069e-12 -2.19466e-18 0.0168001 1.63069e-11 -5.11523e-18 0.0168001 5.51817e-11 -1.4264e-18 0.0168001 1.12277e-10 -1.38066e-18 0.0168001 3.58308e-10 1.37601e-17 0.0168001 7.20073e-10 3.26472e-17 0.0168001 2.2566e-09 5.88078e-17 0.0168001 4.5241e-09 1.23438e-16 0.0168001 1.40248e-08 9.58164e-17 0.0168001 2.81099e-08 2.17265e-16 0.0168001 8.63293e-08 4.6639e-16 0.0168003 1.72974e-07 1.16367e-15 0.0168003 5.27664e-07 9.34778e-16 0.0168014 1.0531e-06 1.43328e-15 0.0168014 3.22849e-06 -1.24414e-14 0.0168085 6.30217e-06 -2.12968e-14 0.0168069 2.03974e-05 -2.05768e-13 0.0168589 3.71541e-05 -3.1074e-13 0.016858 0.000136245 -2.04876e-12 0.0172333 0.000254626 -3.97672e-12 0.0178842 0.00103109 -1.91162e-11 0.0208022 0.00283646 -4.3149e-11 0.00886312 -1.01139e-10 0.0272362 0.0168001 1.31989e-13 -5.87841e-19 0.0168001 9.30314e-13 -1.35864e-18 0.0168001 2.90143e-12 -3.80233e-18 0.0168001 9.04315e-12 -2.53263e-18 0.0168001 2.2174e-11 -4.40457e-18 0.0168001 6.27223e-11 3.69391e-18 0.0168001 1.4787e-10 1.13621e-17 0.0168001 4.08839e-10 3.54136e-17 0.0168001 9.53312e-10 7.61932e-17 0.0168001 2.60102e-09 1.3518e-16 0.0168001 6.03302e-09 2.65113e-16 0.0168001 1.62427e-08 3.7292e-16 0.0168001 3.7524e-08 7.51207e-16 0.0168001 9.96877e-08 1.06713e-15 0.0168003 2.29439e-07 2.33115e-15 0.0168004 6.03437e-07 5.50461e-15 0.0168018 1.38259e-06 1.25726e-14 0.0168022 3.66652e-06 4.15454e-15 0.0168114 8.28355e-06 6.89607e-14 0.0168111 2.33097e-05 -1.85869e-13 0.0168794 5.07287e-05 -9.15512e-14 0.0169009 0.000159737 -1.82931e-12 0.0174664 0.000363868 -4.47977e-12 0.0186949 0.0013459 -1.38906e-11 0.00381344 -3.40795e-11 0.0232046 0.0168001 2.07301e-14 -2.65884e-18 0.0168001 5.03587e-13 6.58738e-18 0.0168001 9.45743e-13 -9.80017e-18 0.0168001 4.66682e-12 1.41565e-17 0.0168001 8.06285e-12 -4.43591e-18 0.0168001 3.2531e-11 2.19678e-17 0.0168001 5.85574e-11 3.85485e-17 0.0168001 2.10149e-10 -2.70907e-17 0.0168001 4.02677e-10 5.21611e-17 0.0168001 1.34538e-09 -4.54272e-17 0.0168001 2.66545e-09 5.36384e-17 0.0168001 8.58519e-09 3.30293e-16 0.0168001 1.70713e-08 4.92163e-16 0.0168001 5.40289e-08 1.72022e-15 0.0168002 1.06659e-07 2.89946e-15 0.0168002 3.35271e-07 4.4222e-15 0.0168007 6.54931e-07 9.30461e-15 0.0168009 2.06567e-06 2.16672e-14 0.0168035 3.98525e-06 4.19385e-14 0.0168066 1.27571e-05 5.32161e-14 0.0168217 2.46704e-05 8.02877e-14 0.0168644 8.0222e-05 -1.28928e-13 0.0169874 0.00016933 -6.42051e-13 0.0176379 0.000569563 -3.25428e-12 0.00162356 -9.45354e-12 0.0195879 0.0168001 1.13779e-14 -3.05779e-19 0.0168001 9.12203e-14 -2.82316e-18 0.0168001 4.38281e-13 -2.23786e-18 0.0168001 9.39714e-13 -9.50879e-18 0.0168001 3.76469e-12 -4.27752e-18 0.0168001 7.80313e-12 -1.24776e-17 0.0168001 2.76915e-11 6.30193e-19 0.0168001 6.28998e-11 -2.19551e-18 0.0168001 1.92549e-10 2.72152e-18 0.0168001 4.63729e-10 1.34704e-17 0.0168001 1.3163e-09 3.82173e-17 0.0168001 3.20856e-09 1.16243e-16 0.0168001 8.84953e-09 3.73757e-16 0.0168001 2.12616e-08 8.44038e-16 0.0168001 5.76675e-08 2.13997e-15 0.0168002 1.36189e-07 4.30331e-15 0.0168002 3.6548e-07 9.50507e-15 0.0168011 8.53532e-07 1.85037e-14 0.0168013 2.28391e-06 3.15875e-14 0.0168067 5.29358e-06 6.08404e-14 0.0168088 1.42541e-05 1.33641e-13 0.016845 3.31493e-05 1.97963e-13 0.0168745 9.10084e-05 2.99552e-13 0.0171654 0.000222369 -2.48345e-13 0.000675512 -1.45038e-12 0.0178782 0.0168001 4.83673e-15 4.12505e-19 0.0168001 -3.70841e-15 -7.50979e-18 0.0168001 1.28508e-13 3.73711e-18 0.0168001 8.27577e-14 -2.03237e-17 0.0168001 9.83936e-13 1.03795e-17 0.0168001 1.16514e-12 -2.68958e-17 0.0168001 6.94389e-12 -4.22246e-18 0.0168001 1.20376e-11 -1.40929e-17 0.0168001 5.49221e-11 5.41593e-18 0.0168001 1.26227e-10 -4.68155e-18 0.0168001 4.67905e-10 -5.07373e-18 0.0168001 1.15271e-09 -2.4763e-17 0.0168001 3.58815e-09 -5.09219e-17 0.0168001 8.67428e-09 -4.23728e-17 0.0168001 2.50871e-08 4.19408e-16 0.0168001 5.89096e-08 9.39617e-16 0.0168002 1.65379e-07 4.73961e-15 0.0168005 3.81228e-07 1.04945e-14 0.0168009 1.05042e-06 2.95109e-14 0.0168027 2.39974e-06 5.94139e-14 0.016806 6.54997e-06 1.07065e-13 0.0168176 1.49816e-05 2.17398e-13 0.0168418 4.08529e-05 4.71439e-13 0.0169193 9.73246e-05 9.48062e-13 0.00027349 1.69424e-12 0.0171621 0.0168001 2.53812e-15 -2.30054e-18 0.0168001 -1.46521e-14 -4.59685e-18 0.0168001 4.49136e-14 -5.3956e-18 0.0168001 -4.74121e-14 -1.51627e-17 0.0168001 2.906e-13 -5.42186e-18 0.0168001 -6.23834e-14 -2.52933e-17 0.0168001 1.10255e-12 -4.90093e-18 0.0168001 1.07492e-12 -3.3191e-17 0.0168001 1.10287e-11 -4.9111e-18 0.0168001 1.99505e-11 -4.17723e-17 0.0168001 1.08084e-10 -7.0374e-17 0.0168001 2.9457e-10 -1.01984e-16 0.0168001 1.13702e-09 -1.08703e-16 0.0168001 2.95888e-09 -9.73359e-17 0.0168001 9.69883e-09 1.24441e-16 0.0168001 2.37174e-08 4.93946e-16 0.0168001 6.97296e-08 2.40883e-15 0.0168003 1.64777e-07 6.35224e-15 0.0168005 4.6372e-07 1.75733e-14 0.0168013 1.06773e-06 3.47764e-14 0.0168029 2.93567e-06 8.96908e-14 0.0168084 6.63865e-06 1.62843e-13 0.0168174 1.8383e-05 4.86852e-13 0.0168633 4.09194e-05 2.20945e-13 0.000119655 2.59878e-12 0.0169265 0.0168001 1.01091e-15 -1.01644e-18 0.0168001 9.35179e-15 -3.75913e-18 0.0168001 4.82421e-15 -1.82112e-18 0.0168001 1.07981e-13 -9.7773e-18 0.0168001 1.87656e-14 -9.58248e-18 0.0168001 5.42641e-13 -6.98972e-18 0.0168001 8.44484e-13 -2.81342e-17 0.0168001 2.19174e-12 -1.18568e-17 0.0168001 6.05852e-12 -7.27889e-17 0.0168001 6.50916e-12 -9.38258e-17 0.0168001 3.95411e-11 -1.90682e-16 0.0168001 7.90353e-11 -3.75829e-16 0.0168001 2.46767e-10 -8.60381e-16 0.0168001 6.54012e-10 -1.13394e-15 0.0168001 2.65984e-09 -1.13526e-15 0.0168001 6.85585e-09 -1.5533e-15 0.0168001 2.66627e-08 -1.13555e-15 0.0168002 5.854e-08 -8.01273e-16 0.0168003 1.95713e-07 3.20379e-15 0.0168007 4.1989e-07 8.34259e-15 0.0168013 1.30016e-06 4.36919e-14 0.0168039 2.7267e-06 9.35241e-14 0.0168077 8.27077e-06 2.81502e-13 0.0168225 1.70975e-05 5.60451e-13 5.22422e-05 1.57523e-12 0.01685 0.0168001 1.04925e-14 -1.80164e-18 0.0168001 -2.50419e-14 -4.48758e-18 0.0168001 7.40207e-14 -1.27995e-17 0.0168001 2.13246e-14 -1.5455e-17 0.0168001 1.88541e-13 -4.34401e-17 0.0168001 3.88308e-13 -4.35485e-17 0.0168001 3.38723e-13 -1.31271e-16 0.0168001 2.15557e-12 1.17721e-17 0.0168001 4.39732e-12 -1.13592e-16 0.0168001 1.59581e-11 -4.98005e-16 0.0168001 2.81833e-11 1.12312e-15 0.0168001 2.01498e-11 1.31279e-15 0.0168001 1.64625e-10 1.52366e-15 0.0168001 1.37675e-10 -3.38233e-15 0.0168001 7.61851e-10 -1.26266e-14 0.0168001 1.48256e-09 -3.20342e-15 0.0168001 5.20758e-09 1.20652e-14 0.0168001 1.95417e-08 9.73599e-15 0.0168003 5.14839e-08 9.3744e-15 0.0168003 1.79003e-07 -3.10698e-15 0.016801 4.08659e-07 -1.42256e-14 0.0168013 1.27908e-06 1.66624e-14 0.0168051 2.82237e-06 1.11923e-13 0.0168068 8.40283e-06 3.94904e-13 1.83007e-05 8.46904e-13 0.0168291 0.0168001 2.27916e-15 -1.51873e-18 0.0168001 1.23157e-14 -7.86978e-18 0.0168001 4.92351e-14 -1.69068e-17 0.0168001 1.76282e-13 -3.81529e-17 0.0168001 2.98568e-13 -6.67191e-17 0.0168001 1.15285e-12 -1.27003e-16 0.0168001 1.75263e-12 -2.03915e-16 0.0168001 5.61744e-12 -3.18183e-16 0.0168001 1.03829e-11 -3.05718e-16 0.0168001 1.60898e-11 -1.90809e-16 0.0168001 3.06226e-11 3.86162e-18 0.0168001 7.25711e-11 4.85148e-16 0.0168001 4.41442e-11 3.90259e-16 0.0168001 2.36966e-10 3.17316e-16 0.0168001 2.11627e-10 -5.53082e-16 0.0168001 1.08458e-09 -1.93193e-15 0.0168001 8.85245e-10 -5.16472e-15 0.0168002 4.36797e-09 -1.33999e-14 0.0168002 1.12198e-08 -1.34006e-14 0.0168003 3.73825e-08 -1.72533e-14 0.0168004 1.46988e-07 -1.42679e-14 0.0168011 3.55086e-07 -2.52682e-16 0.0168015 1.19108e-06 3.30083e-14 0.0168054 2.67565e-06 1.35084e-13 8.18256e-06 4.25215e-13 0.016808 0.0168001 -2.66172e-17 -4.01832e-18 0.0168001 8.5195e-15 -1.89159e-17 0.0168001 1.19149e-14 -2.17527e-17 0.0168001 7.9653e-14 -1.34871e-16 0.0168001 1.07468e-13 -9.91935e-17 0.0168001 4.55623e-13 -2.70485e-16 0.0168001 7.01146e-13 9.95171e-17 0.0168001 2.28364e-12 2.30538e-16 0.0168001 3.6947e-12 7.58213e-17 0.0168001 7.59373e-12 1.2523e-15 0.0168001 1.28441e-11 2.04577e-15 0.0168001 -2.16178e-11 4.63013e-16 0.0168001 8.45753e-11 -2.16099e-15 0.0168001 1.91781e-11 -7.08626e-15 0.0168001 3.73661e-10 -1.44458e-14 0.0168001 7.72529e-11 -1.28572e-14 0.0168001 1.24571e-09 -1.62704e-15 0.0168001 5.52551e-10 -4.84287e-15 0.0168002 5.49767e-09 -1.31495e-14 0.0168003 4.90805e-09 -1.08876e-15 0.0168005 2.74635e-08 1.28394e-14 0.0168006 9.26272e-08 2.12703e-14 0.0168015 2.96254e-07 4.54338e-14 0.016802 9.64939e-07 6.32774e-14 2.49666e-06 1.42977e-13 0.016806 0.0168001 -2.90946e-16 -7.82658e-18 0.0168001 8.40381e-15 -1.2902e-17 0.0168001 1.03574e-14 1.67857e-17 0.0168001 5.13569e-14 -1.81384e-16 0.0168001 4.68646e-14 8.75942e-17 0.0168001 1.99276e-13 -4.49555e-16 0.0168001 6.69122e-14 5.86594e-16 0.0168001 5.31175e-13 2.16925e-16 0.0168001 2.43232e-13 8.41231e-16 0.0168001 7.00998e-13 2.44853e-15 0.0168001 4.33671e-12 2.33068e-15 0.0168001 -6.01754e-12 3.29576e-15 0.0168001 4.46439e-11 -9.66878e-16 0.0168001 9.59989e-11 -5.88779e-15 0.0168001 2.60862e-10 -1.02031e-14 0.0168001 3.42394e-10 -1.84828e-14 0.0168001 8.3115e-10 -1.34822e-14 0.0168001 1.67422e-09 -2.27785e-15 0.0168002 3.3626e-09 4.77676e-16 0.0168003 5.90609e-09 1.12068e-14 0.0168004 8.62711e-09 -1.24688e-14 0.0168006 2.06158e-08 -5.07766e-14 0.0168011 5.00613e-08 -1.6912e-14 0.0168016 2.20079e-07 -2.99531e-15 6.05916e-07 1.55504e-13 0.0168035 0.0168001 -7.05111e-16 -1.51449e-18 0.0168001 3.05544e-15 -2.49053e-17 0.0168001 7.6382e-17 -2.33612e-17 0.0168001 1.64964e-14 -1.09094e-16 0.0168001 6.73138e-15 -8.32379e-18 0.0168001 4.9635e-14 -1.81888e-16 0.0168001 -1.12182e-14 3.82712e-16 0.0168001 7.4058e-14 -4.95091e-17 0.0168001 2.52146e-14 -1.45351e-17 0.0168001 7.11766e-14 2.59784e-16 0.0168001 3.26816e-12 -2.21175e-15 0.0168001 1.33324e-11 -4.55289e-15 0.0168001 4.75795e-11 -4.35147e-15 0.0168001 1.15933e-10 3.57546e-15 0.0168001 2.50924e-10 5.08635e-17 0.0168001 4.26688e-10 5.85528e-16 0.0168001 9.22409e-10 -1.25936e-15 0.0168001 2.80154e-09 -4.25154e-15 0.0168002 3.39291e-09 -2.50426e-14 0.0168003 1.04512e-08 -5.25706e-14 0.0168004 5.52136e-09 -5.71021e-14 0.0168006 2.4326e-08 -2.3122e-14 0.0168008 1.22552e-08 -4.53057e-15 0.0168017 6.75162e-08 5.31541e-14 1.1913e-07 3.46229e-14 0.0168025 0.0168001 -2.04426e-16 -9.05478e-19 0.0168001 4.10804e-16 -1.48138e-17 0.0168001 1.04571e-16 -1.68568e-17 0.0168001 1.67764e-15 -6.45049e-17 0.0168001 3.70857e-15 -2.77556e-17 0.0168001 5.23122e-15 -1.20751e-16 0.0168001 1.54578e-14 1.75807e-16 0.0168001 5.47494e-14 2.84677e-16 0.0168001 1.95417e-13 2.32541e-16 0.0168001 2.19548e-13 -8.47315e-16 0.0168001 4.05827e-12 -8.19248e-16 0.0168001 2.05829e-11 1.50418e-16 0.0168001 4.19969e-11 6.21597e-16 0.0168001 9.9637e-11 2.26719e-15 0.0168001 2.00889e-10 -5.01056e-16 0.0168001 4.32233e-10 -9.84561e-15 0.0168001 8.78479e-10 3.98527e-16 0.0168001 1.15663e-09 -6.29348e-14 0.0168001 3.13753e-09 -1.07996e-14 0.0168002 1.83516e-09 -2.37306e-14 0.0168004 9.59918e-09 -4.52625e-14 0.0168005 3.08315e-09 -3.3758e-14 0.0168008 2.28091e-08 9.96863e-15 0.0168013 5.3282e-09 8.68365e-15 6.45352e-08 4.91432e-14 0.0168023 0.0168001 -3.67002e-17 -1.28664e-18 0.0168001 -4.40945e-16 -8.4644e-18 0.0168001 -9.92696e-16 -1.26979e-17 0.0168001 -2.86668e-15 -3.61912e-17 0.0168001 -2.82944e-15 -3.69467e-17 0.0168001 -1.04775e-14 -7.95203e-17 0.0168001 -1.32479e-14 -5.33902e-17 0.0168001 7.97837e-15 -6.71723e-17 0.0168001 1.17491e-13 1.13291e-17 0.0168001 3.64721e-13 -4.62077e-16 0.0168001 4.86925e-12 -1.07826e-15 0.0168001 2.78541e-11 -2.29783e-15 0.0168001 2.83763e-11 -2.02182e-15 0.0168001 7.22478e-11 5.26636e-16 0.0168001 1.41352e-10 -3.60213e-15 0.0168001 7.34434e-10 -9.40586e-15 0.0168001 2.80874e-10 -6.86383e-15 0.0168001 1.23164e-09 -4.90441e-15 0.0168002 6.24336e-10 -2.7673e-15 0.0168002 3.41142e-09 3.96974e-15 0.0168004 1.94189e-09 5.89893e-15 0.0168005 6.43687e-09 -3.82818e-15 0.0168008 3.30253e-09 -1.09763e-14 0.0168013 1.66399e-08 -3.45519e-14 7.6087e-09 -2.33518e-14 0.0168021 0.0168001 1.05168e-17 -1.81096e-18 0.0168001 -3.64129e-16 -4.56635e-18 0.0168001 -7.23976e-16 -1.07819e-17 0.0168001 -2.52473e-15 -1.92996e-17 0.0168001 -4.11916e-15 -2.94285e-17 0.0168001 -1.11766e-14 -4.83131e-17 0.0168001 -1.68938e-14 -6.38942e-17 0.0168001 -2.34007e-14 -4.8579e-17 0.0168001 5.78221e-14 -1.73608e-17 0.0168001 -2.04468e-13 1.94724e-17 0.0168001 2.67972e-12 1.31445e-15 0.0168001 1.5162e-11 3.85038e-15 0.0168001 1.15965e-11 7.37338e-16 0.0168001 2.14896e-11 4.67511e-15 0.0168001 3.16903e-11 -1.0461e-14 0.0168001 3.18187e-10 2.84727e-15 0.0168001 -4.50267e-11 -5.6333e-15 0.0168001 4.29924e-10 8.27893e-15 0.0168002 -2.09581e-10 2.18979e-15 0.0168002 1.3548e-09 -1.10209e-15 0.0168004 1.72303e-10 9.99353e-15 0.0168005 2.37948e-09 -1.30632e-14 0.0168008 -5.40052e-10 1.63449e-14 0.0168014 5.87224e-09 -3.03052e-14 -6.04477e-10 2.79463e-14 0.0168022 0.0168001 -7.53521e-18 -1.96258e-18 0.0168001 -1.41217e-16 -3.50248e-18 0.0168001 -3.45698e-16 -1.01195e-17 0.0168001 -1.21203e-15 -1.422e-17 0.0168001 -2.2186e-15 -2.45911e-17 0.0168001 -5.61026e-15 -3.48605e-17 0.0168001 -8.80486e-15 -4.94015e-17 0.0168001 -2.61869e-14 -6.93415e-17 0.0168001 4.26921e-15 -7.34344e-17 0.0168001 -1.62084e-13 -1.4013e-16 0.0168001 1.05893e-12 7.07123e-16 0.0168001 6.35523e-12 1.41302e-15 0.0168001 3.33943e-13 -1.56464e-17 0.0168001 1.89971e-12 4.4419e-16 0.0168001 2.72338e-11 -1.09075e-15 0.0168001 7.07462e-11 -1.13749e-15 0.0168001 -4.48821e-11 2.23958e-15 0.0168001 7.63279e-11 1.86377e-15 0.0168002 -6.97045e-12 1.30556e-15 0.0168002 1.69611e-10 6.91719e-15 0.0168004 7.18659e-11 1.21742e-14 0.0168005 3.07234e-10 3.65703e-15 0.0168008 -2.72534e-11 1.79989e-14 0.0168014 7.7219e-10 -1.69964e-15 -2.18962e-10 3.14997e-14 0.0168022 0.0168001 1.10047e-17 -1.80079e-18 0.0168001 -4.49944e-17 -3.40423e-18 0.0168001 -7.28042e-17 -8.69649e-18 0.0168001 -3.01354e-16 -1.18695e-17 0.0168001 -6.55725e-16 -2.02492e-17 0.0168001 -1.63156e-15 -2.66197e-17 0.0168001 -3.58399e-15 -3.45742e-17 0.0168001 -9.09987e-15 -4.25515e-17 0.0168001 -1.24998e-14 -2.38728e-17 0.0168001 -3.83907e-14 -8.74045e-17 0.0168001 1.59147e-13 2.00493e-16 0.0168001 1.2233e-12 3.18152e-16 0.0168001 -7.11871e-13 7.05799e-17 0.0168001 -2.0331e-13 -2.35156e-16 0.0168001 5.81653e-12 1.46495e-15 0.0168001 1.26429e-11 7.8509e-16 0.0168001 -9.57148e-12 5.2728e-15 0.0168001 3.30998e-12 3.43538e-16 0.0168002 2.67672e-11 6.96786e-17 0.0168002 -1.33285e-11 4.85762e-15 0.0168004 5.99209e-11 9.18265e-15 0.0168005 2.08084e-11 9.9929e-15 0.0168008 7.83639e-11 1.26962e-14 0.0168014 9.76649e-11 1.4988e-14 -4.40343e-11 2.3586e-14 0.0168022 0.0168001 -2.95987e-17 -1.89058e-18 0.0168001 9.66566e-17 -3.17044e-18 0.0168001 -4.4127e-17 -9.14796e-18 0.0168001 1.22515e-16 -1.11275e-17 0.0168001 -3.81097e-16 -2.07498e-17 0.0168001 -4.21158e-16 -2.51687e-17 0.0168001 -2.41024e-15 -3.4243e-17 0.0168001 -5.87448e-15 -4.06415e-17 0.0168001 -1.7349e-14 -4.23381e-17 0.0168001 -4.21059e-14 -1.34599e-16 0.0168001 -2.99238e-13 -2.85642e-16 0.0168001 -1.39598e-12 -6.22668e-16 0.0168001 -1.64074e-13 1.03414e-15 0.0168001 -2.8399e-13 -1.82263e-15 0.0168001 -1.60208e-12 6.53191e-15 0.0168001 5.83427e-13 3.08402e-15 0.0168001 2.42901e-12 -5.50317e-15 0.0168001 -5.51017e-12 1.15812e-15 0.0168002 1.43313e-11 3.84784e-15 0.0168002 -1.36245e-11 4.58233e-15 0.0168004 2.76435e-11 4.92677e-15 0.0168005 -1.78982e-11 1.07306e-14 0.0168008 4.06022e-11 1.14537e-14 0.0168014 -1.71511e-12 1.90358e-14 -1.98007e-11 2.18593e-14 0.0168022 0.0168001 2.16298e-17 -1.63731e-18 0.0168001 -5.64869e-17 -3.67104e-18 0.0168001 8.99888e-18 -7.59534e-18 0.0168001 -1.99222e-16 -1.23506e-17 0.0168001 -5.26922e-17 -1.52949e-17 0.0168001 -6.04768e-16 -2.37567e-17 0.0168001 -7.52274e-16 -1.74955e-17 0.0168001 -1.38019e-15 -8.54995e-18 0.0168001 -5.91064e-15 6.34258e-17 0.0168001 1.15286e-14 1.92697e-16 0.0168001 2.19593e-13 2.05223e-15 0.0168001 1.27106e-12 6.5812e-15 0.0168001 -9.94093e-14 -6.57042e-16 0.0168001 -1.75858e-14 -5.24477e-16 0.0168001 1.02289e-12 1.50404e-14 0.0168001 -4.23771e-13 -4.34688e-16 0.0168001 -1.28801e-12 -1.98107e-14 0.0168001 -1.91494e-12 4.1506e-15 0.0168002 5.42023e-12 8.89551e-15 0.0168003 -6.80256e-12 1.15804e-15 0.0168004 7.85772e-12 1.31542e-15 0.0168005 -7.61179e-12 1.14458e-14 0.0168008 1.30485e-11 1.08258e-14 0.0168014 -4.31163e-12 2.31965e-14 -3.67026e-12 1.81489e-14 0.0168022 0.0168001 -1.96783e-17 -1.82536e-18 0.0168001 -4.61328e-17 -3.13487e-18 0.0168001 -1.76725e-16 -8.46017e-18 0.0168001 -4.02185e-16 -1.05862e-17 0.0168001 -9.30137e-16 -1.75751e-17 0.0168001 -1.93725e-15 -2.1596e-17 0.0168001 -3.5184e-15 -2.43751e-17 0.0168001 -6.15556e-15 -1.60106e-17 0.0168001 -7.45129e-15 -7.32429e-18 0.0168001 -2.00607e-14 1.5798e-17 0.0168001 1.66754e-14 -8.45051e-17 0.0168001 3.35778e-13 -6.67892e-16 0.0168001 -1.94433e-14 8.40894e-16 0.0168001 -1.9646e-13 -3.74647e-16 0.0168001 -4.32735e-14 6.68758e-17 0.0168001 -3.29048e-13 1.15659e-15 0.0168001 1.55971e-13 6.31099e-15 0.0168001 -1.16114e-12 3.71231e-16 0.0168002 1.33129e-12 2.61822e-16 0.0168003 -1.61394e-12 5.15663e-15 0.0168004 2.94763e-12 7.21356e-15 0.0168005 -1.7191e-12 9.20119e-15 0.0168008 4.19254e-12 1.06765e-14 0.0168014 -1.06361e-12 1.90801e-14 -5.9136e-13 1.98973e-14 0.0168022 0.0168001 1.47994e-17 -1.62884e-18 0.0168001 -8.26704e-17 -2.99341e-18 0.0168001 -1.01644e-16 -7.04986e-18 0.0168001 -2.38904e-16 -8.73545e-18 0.0168001 -6.54641e-16 -1.35051e-17 0.0168001 -1.11613e-15 -1.35229e-17 0.0168001 -2.25243e-15 -1.32899e-17 0.0168001 -2.82223e-15 8.15185e-18 0.0168001 -1.58673e-15 1.32984e-17 0.0168001 -1.64492e-14 9.72148e-17 0.0168001 -5.71628e-14 -1.34278e-16 0.0168001 -2.52906e-13 -6.11194e-16 0.0168001 -9.4259e-14 7.6913e-16 0.0168001 -1.42159e-13 8.12802e-16 0.0168001 -1.01293e-12 -2.41726e-15 0.0168001 -5.6432e-13 1.1096e-15 0.0168001 -3.06122e-13 6.36713e-15 0.0168001 -4.63613e-13 1.01179e-15 0.0168002 4.87289e-13 1.34228e-16 0.0168003 -1.14084e-13 3.91345e-15 0.0168004 1.12413e-12 6.47146e-15 0.0168005 -2.88297e-14 8.22792e-15 0.0168008 1.75637e-12 1.27496e-14 0.0168014 8.80654e-13 1.97925e-14 1.43969e-12 2.66806e-14 0.0168022 0.0168001 -1.70762e-18 0.0168001 -2.63173e-18 0.0168001 -7.06256e-18 0.0168001 -8.3924e-18 0.0168001 -1.22185e-17 0.0168001 -1.16094e-17 0.0168001 -8.47372e-18 0.0168001 1.06912e-17 0.0168001 7.07442e-18 0.0168001 1.76273e-16 0.0168001 1.39471e-16 0.0168001 -8.76705e-17 0.0168001 8.95189e-16 0.0168001 8.70016e-16 0.0168001 -8.33379e-16 0.0168001 -4.61787e-16 0.0168001 5.75045e-15 0.0168001 4.48402e-17 0.0168002 -1.51142e-15 0.0168003 2.60819e-15 0.0168004 5.14654e-15 0.0168005 4.97252e-15 0.0168008 1.05328e-14 0.0168014 1.67682e-14 2.6321e-14 0.0168022 0.0168001 1.8492e-10 -2.03168e-16 0.0168001 1.09297e-09 2.41853e-16 0.0168001 3.62756e-09 5.76884e-16 0.0168001 1.0462e-08 1.81177e-15 0.0168001 2.60023e-08 2.9506e-15 0.0168 6.71247e-08 1.30332e-14 0.0168001 1.58028e-07 2.92742e-14 0.0167997 4.00999e-07 8.02114e-14 0.0168002 9.36251e-07 1.61678e-13 0.016798 2.40305e-06 4.11769e-13 0.0168016 5.6483e-06 8.04535e-13 0.0167864 1.49492e-05 2.33127e-12 0.0168218 3.70474e-05 3.7383e-12 0.0167286 0.000103651 1.32283e-11 0.0169719 0.000306225 3.53371e-11 0.0168252 0.00109583 5.96489e-11 0.0184506 0.00385381 2.35829e-10 0.0176922 0.0161977 3.65694e-11 0.0163733 0.0165761 -7.08253e-12 0.0149056 0.0161395 -6.74265e-11 0.0134936 0.016846 -4.59519e-11 0.0117483 0.0179095 -8.49351e-11 0.0106225 0.0192072 -6.51521e-11 0.0113497 0.0215435 -2.79205e-11 0.0244344 3.01706e-11 0.0182577 0.0168001 1.39611e-10 -2.08611e-16 0.0168001 1.09373e-09 1.04824e-16 0.0168001 3.3308e-09 5.40533e-16 0.0168001 1.01695e-08 1.65276e-15 0.0168 2.40746e-08 3.02573e-15 0.0168 6.53627e-08 9.29427e-15 0.0168 1.479e-07 2.61529e-14 0.0167998 3.94683e-07 7.15035e-14 0.0167996 8.87254e-07 1.45222e-13 0.0167986 2.36775e-06 3.62937e-13 0.0167978 5.37599e-06 7.60969e-13 0.0167933 1.42988e-05 1.8566e-12 0.016789 3.32673e-05 4.00113e-12 0.0167692 9.59362e-05 9.83361e-12 0.0167798 0.000254578 2.76416e-11 0.0168392 0.000920235 6.44997e-11 0.0173373 0.00299885 1.8911e-10 0.0176733 0.0152083 3.29264e-10 0.0169406 0.0174411 -4.36265e-11 0.0157459 0.017397 -6.64296e-11 0.0146983 0.0177227 -3.58247e-11 0.0135064 0.0186706 -8.05543e-11 0.0129645 0.0195521 -6.92524e-11 0.0140311 0.0204232 -4.91193e-11 0.0214704 -1.38481e-12 0.0171006 0.0168001 1.21572e-10 -2.14307e-16 0.0168001 9.51824e-10 1.87168e-16 0.0168001 2.94089e-09 4.61025e-16 0.0168001 8.89352e-09 1.33769e-15 0.0168001 2.11547e-08 2.80569e-15 0.0168 5.64214e-08 6.24023e-15 0.0168 1.27479e-07 1.69114e-14 0.0167999 3.33458e-07 5.33994e-14 0.0167999 7.42747e-07 1.06733e-13 0.0167995 1.98788e-06 2.80503e-13 0.0167996 4.21294e-06 5.44095e-13 0.0167964 1.30047e-05 1.576e-12 0.0168 2.40957e-05 2.80218e-12 0.0167785 9.51308e-05 9.52781e-12 0.0168025 0.000194328 1.80184e-11 0.0167612 0.000884379 6.86348e-11 0.0169827 0.00253387 1.60832e-10 0.0180988 0.0134836 3.67622e-10 0.0176324 0.0181261 -8.98643e-11 0.0167081 0.018331 -7.02533e-11 0.0158887 0.0183251 -2.39361e-11 0.0151676 0.018962 -8.59778e-11 0.0149273 0.0195328 -5.40144e-11 0.0156709 0.0195517 -3.58966e-11 0.0192988 -1.35694e-11 0.018008 0.0168001 1.09942e-10 -2.18251e-16 0.0168001 9.2057e-10 1.63002e-16 0.0168001 2.81194e-09 3.9608e-16 0.0168001 8.49261e-09 1.14553e-15 0.0168001 2.02177e-08 2.39868e-15 0.0168 5.39345e-08 5.46674e-15 0.0168 1.22757e-07 1.11244e-14 0.0167999 3.20406e-07 4.45875e-14 0.0167998 7.21224e-07 8.92766e-14 0.0167992 1.89269e-06 2.3129e-13 0.0167984 4.18176e-06 4.38435e-13 0.016796 1.1678e-05 1.34957e-12 0.016794 2.38168e-05 1.63186e-12 0.0167844 8.24237e-05 9.8145e-12 0.0167979 0.000163125 1.12665e-11 0.0168741 0.000732495 6.47902e-11 0.0171785 0.00200239 1.43414e-10 0.0193913 0.0105736 4.15076e-10 0.0189529 0.0187171 -4.84806e-11 0.0179114 0.0193389 -4.08134e-11 0.0171104 0.0188728 -1.11145e-11 0.0166211 0.0190739 -6.00415e-11 0.016505 0.0193673 -7.82166e-11 0.0167519 0.0190915 -6.60776e-11 0.0179888 -4.57314e-11 0.0179954 0.0168001 3.70339e-11 -2.2069e-16 0.0168001 9.92136e-10 1.36331e-16 0.0168001 1.7292e-09 3.29968e-16 0.0168001 8.80335e-09 9.74097e-16 0.0168001 1.31034e-08 2.04368e-15 0.0168 5.65553e-08 5.63742e-15 0.0168001 8.20883e-08 9.51926e-15 0.0167999 3.43347e-07 3.87044e-14 0.0168 4.93146e-07 7.8589e-14 0.0167993 2.07255e-06 1.98646e-13 0.0167999 2.87676e-06 3.8618e-13 0.0167959 1.29205e-05 1.01934e-12 0.0168006 1.564e-05 1.85339e-12 0.0167825 8.70665e-05 5.68364e-12 0.016826 9.57696e-05 1.08757e-11 0.0168561 0.000649226 3.39624e-11 0.0174552 0.00121501 8.92323e-11 0.0218347 0.0059387 2.78664e-10 0.0204973 0.0198695 7.21524e-11 0.019622 0.019965 2.32256e-11 0.0183889 0.0198937 -5.93479e-12 0.0179049 0.0193816 -3.97068e-11 0.0178192 0.0193483 -6.92524e-11 0.017938 0.0189228 -7.7366e-11 0.0176075 -5.31349e-11 0.0182947 0.0168001 7.69441e-11 -2.23636e-16 0.0168001 4.96895e-10 8.07104e-17 0.0168001 1.77873e-09 2.75473e-16 0.0168001 4.75485e-09 6.00202e-16 0.0168001 1.28871e-08 1.76138e-15 0.0168001 3.06818e-08 3.6638e-15 0.0168 7.90086e-08 8.56291e-15 0.0168002 1.84182e-07 2.18752e-14 0.0168 4.71141e-07 7.39264e-14 0.0168007 1.09454e-06 1.48664e-13 0.0167996 2.87025e-06 3.71168e-13 0.0168048 6.46628e-06 7.68434e-13 0.0167965 1.85284e-05 1.85266e-12 0.0168356 4.02679e-05 3.5956e-12 0.016777 0.000127791 1.10851e-11 0.01708 0.000310697 2.23462e-11 0.0169564 0.00120785 7.41251e-11 0.0188862 0.00375332 1.8987e-10 0.0210934 0.0170323 3.57093e-10 0.0206487 0.0201829 3.53753e-11 0.0198761 0.0205339 7.82476e-12 0.0192614 0.0199433 -2.31227e-11 0.0191144 0.01944 -4.91915e-11 0.0191392 0.018823 -5.87336e-11 0.0175437 -5.23178e-11 0.0191563 0.0168001 8.17436e-11 -2.28867e-16 0.0168001 4.29546e-10 6.98285e-17 0.0168001 1.60702e-09 2.26957e-16 0.0168001 4.12073e-09 4.96054e-16 0.0168001 1.15251e-08 1.36761e-15 0.0168001 2.66882e-08 2.8341e-15 0.0168 7.07831e-08 7.57367e-15 0.0168 1.6057e-07 1.27108e-14 0.0167999 4.21714e-07 5.12694e-14 0.0167999 9.49917e-07 1.02126e-13 0.0167996 2.51125e-06 2.65013e-13 0.0167995 5.55729e-06 5.02516e-13 0.0167983 1.56647e-05 1.50774e-12 0.0168026 3.19318e-05 2.5173e-12 0.0167964 0.000110677 9.66624e-12 0.0168526 0.000227822 1.75907e-11 0.0169931 0.000979128 6.68611e-11 0.0178662 0.00273483 1.63575e-10 0.0211564 0.0129943 4.27217e-10 0.0212858 0.0199312 1.95586e-12 0.0208134 0.0208977 -1.398e-11 0.0202222 0.0204738 -3.79403e-11 0.0200159 0.0195093 -4.45788e-11 0.0199312 0.0186891 -5.05661e-11 0.0174763 -4.81818e-11 0.0197972 0.0168001 9.25377e-11 -2.33771e-16 0.0168001 2.6353e-10 5.45777e-17 0.0168001 1.55941e-09 1.76662e-16 0.0168001 2.73069e-09 3.87103e-16 0.0168001 1.10895e-08 1.05369e-15 0.0168001 1.80697e-08 2.18306e-15 0.0168 6.83441e-08 5.74648e-15 0.0168001 1.10039e-07 1.01176e-14 0.0168 4.09921e-07 3.77954e-14 0.0168002 6.54077e-07 7.72445e-14 0.0167997 2.45319e-06 2.05178e-13 0.0168008 3.79051e-06 3.94994e-13 0.0167981 1.51288e-05 1.20109e-12 0.016805 2.0761e-05 2.20621e-12 0.0167943 0.000100662 8.33869e-12 0.0168662 0.000130736 1.48481e-11 0.0169889 0.000750103 6.36219e-11 0.0179393 0.00160297 1.62323e-10 0.0228963 0.00715419 5.21312e-10 0.0224495 0.0201654 9.07413e-11 0.0223977 0.0209076 -2.59687e-11 0.0217491 0.0211267 -3.04758e-11 0.0211131 0.0200923 -4.16237e-11 0.0208576 0.0188056 -4.97137e-11 0.017529 -5.05872e-11 0.0206295 0.0168001 3.73249e-11 -2.25535e-16 0.0168001 2.6649e-10 4.05094e-17 0.0168001 8.32161e-10 9.87056e-17 0.0168001 2.51754e-09 2.87227e-16 0.0168001 6.06128e-09 6.01867e-16 0.0168001 1.62125e-08 1.6595e-15 0.0168001 3.73005e-08 3.411e-15 0.0168001 9.67769e-08 9.35539e-15 0.0168002 2.2088e-07 1.5786e-14 0.0168001 5.67029e-07 6.65378e-14 0.016801 1.29081e-06 1.3668e-13 0.0168003 3.37653e-06 3.716e-13 0.0168066 7.44592e-06 7.88234e-13 0.0167994 2.16042e-05 2.10372e-12 0.0168487 4.42835e-05 4.50509e-12 0.0168003 0.000148931 1.2904e-11 0.017175 0.000331619 2.8093e-11 0.0173059 0.00134294 7.80779e-11 0.0201463 0.00401966 1.98795e-10 0.023233 0.0165791 3.09271e-10 0.0232689 0.0207911 5.45511e-12 0.0227945 0.0215251 -6.72782e-12 0.0220227 0.0207249 -3.00314e-11 0.0215902 0.0190475 -4.41203e-11 0.0176444 -5.11378e-11 0.021232 0.0168001 1.49962e-11 -2.25481e-16 0.0168001 2.48517e-10 3.04746e-17 0.0168001 5.21351e-10 7.34691e-17 0.0168001 2.236e-09 2.2325e-16 0.0168001 3.89073e-09 4.67195e-16 0.0168001 1.44152e-08 1.36911e-15 0.0168001 2.43222e-08 2.84006e-15 0.0168 8.74582e-08 8.12813e-15 0.0168001 1.46487e-07 1.40258e-14 0.0167999 5.24166e-07 5.9173e-14 0.0168002 8.70637e-07 1.2004e-13 0.0167995 3.15225e-06 3.17556e-13 0.0168008 5.07031e-06 6.31653e-13 0.016798 1.96764e-05 1.77338e-12 0.0168092 2.83811e-05 3.20757e-12 0.0167996 0.000134086 1.09374e-11 0.0169141 0.000191942 1.93618e-11 0.0171235 0.00105041 6.93587e-11 0.0183013 0.00271767 1.49993e-10 0.023442 0.0107135 3.86191e-10 0.0238518 0.0202393 5.04306e-11 0.0238195 0.0214496 1.53373e-11 0.0231898 0.0213083 -1.6638e-11 0.0224538 0.0197353 -4.96082e-11 0.0179769 -5.27584e-11 0.0219921 0.0168001 2.09128e-11 -2.45097e-16 0.0168001 1.20817e-10 1.63308e-17 0.0168001 4.48826e-10 5.52833e-17 0.0168001 1.16919e-09 1.19932e-16 0.0168001 3.26126e-09 3.59732e-16 0.0168001 7.62525e-09 7.467e-16 0.0168001 2.0153e-08 2.22128e-15 0.0168001 4.62534e-08 4.60848e-15 0.0168001 1.20571e-07 1.13209e-14 0.0168002 2.75995e-07 2.51712e-14 0.0168001 7.1685e-07 9.86218e-14 0.0168012 1.63899e-06 2.00298e-13 0.0168003 4.3292e-06 5.4315e-13 0.0168081 9.71649e-06 1.22152e-12 0.0168 2.75581e-05 2.79025e-12 0.0168595 5.99929e-05 7.55595e-12 0.0168325 0.000188613 1.20108e-11 0.0173468 0.000463049 4.83068e-11 0.0182862 0.00169332 6.73691e-11 0.0232639 0.00529745 2.00692e-10 0.0249884 0.0182541 1.8444e-10 0.0251237 0.0212798 -5.32045e-13 0.0245933 0.0217689 -1.48946e-11 0.0234335 0.0207471 -4.3678e-11 0.0185754 -5.82831e-11 0.0226669 0.0168001 2.09413e-11 -2.46685e-16 0.0168001 6.88468e-11 1.14892e-17 0.0168001 3.65834e-10 3.813e-17 0.0168001 7.00471e-10 8.27153e-17 0.0168001 2.62261e-09 2.44445e-16 0.0168001 4.63812e-09 5.06658e-16 0.0168001 1.6291e-08 1.49949e-15 0.0168001 2.84311e-08 3.11691e-15 0.0168001 9.84769e-08 9.10424e-15 0.0168001 1.71164e-07 1.58209e-14 0.0168 5.91765e-07 6.7692e-14 0.0168004 1.02088e-06 1.37889e-13 0.0167999 3.56787e-06 3.70434e-13 0.0168022 5.98287e-06 7.45506e-13 0.0168012 2.22917e-05 2.1101e-12 0.0168199 3.388e-05 3.65408e-12 0.0168259 0.000152465 1.35818e-11 0.0170147 0.000238477 2.11293e-11 0.0174155 0.00120516 8.48887e-11 0.0191539 0.00338618 1.65242e-10 0.0247776 0.0118792 4.04061e-10 0.0254011 0.0204829 6.67349e-11 0.0254595 0.0215339 2.34774e-11 0.0246462 0.0215222 -2.43297e-11 0.0195628 -8.02917e-11 0.0236912 0.0168001 8.09014e-12 -2.26434e-16 0.0168001 5.77337e-11 8.14422e-18 0.0168001 1.80755e-10 1.99358e-17 0.0168001 5.49059e-10 5.8015e-17 0.0168001 1.3271e-09 1.20256e-16 0.0168001 3.58506e-09 3.56317e-16 0.0168001 8.28408e-09 7.30629e-16 0.0168001 2.18319e-08 2.23227e-15 0.0168001 5.00542e-08 4.5991e-15 0.0168001 1.30988e-07 1.32347e-14 0.0168003 2.99914e-07 2.56891e-14 0.0168001 7.8447e-07 1.12105e-13 0.0168014 1.79418e-06 2.33786e-13 0.0168004 4.76471e-06 6.33589e-13 0.0168094 1.07941e-05 1.46838e-12 0.0168027 3.00259e-05 3.14842e-12 0.0168676 6.76666e-05 8.54515e-12 0.0168663 0.000202132 1.45464e-11 0.0174548 0.00051893 5.36385e-11 0.0189078 0.00183428 8.01693e-11 0.0244792 0.00567209 3.09245e-10 0.0263805 0.0182859 1.64324e-10 0.0266418 0.0211642 1.88722e-11 0.025925 0.022111 -3.77057e-12 0.0206552 -4.73202e-11 0.0247865 0.0168001 3.19494e-12 -2.27093e-16 0.0168001 4.4718e-11 5.54468e-18 0.0168001 1.01523e-10 1.37177e-17 0.0168001 4.06974e-10 3.75854e-17 0.0168001 7.588e-10 7.72672e-17 0.0168001 2.64482e-09 2.20041e-16 0.0168001 4.77757e-09 4.48648e-16 0.0168001 1.61696e-08 1.35507e-15 0.0168001 2.90532e-08 2.80491e-15 0.0168001 9.76245e-08 8.55148e-15 0.0168001 1.74963e-07 1.64804e-14 0.0168001 5.8797e-07 6.60089e-14 0.0168005 1.04739e-06 1.3594e-13 0.0168004 3.56026e-06 3.73059e-13 0.0168034 6.17358e-06 7.42468e-13 0.0168038 2.23446e-05 2.22497e-12 0.0168287 3.51219e-05 3.52494e-12 0.016841 0.000152292 1.55563e-11 0.0170783 0.000245448 2.24346e-11 0.0175974 0.00119159 9.9342e-11 0.0197692 0.00333186 2.01078e-10 0.0257765 0.0112194 4.70685e-10 0.0263937 0.0202404 1.05947e-10 0.0272161 0.0212347 3.33167e-11 0.0216562 -1.91959e-11 0.0263105 0.0168001 3.48613e-12 -2.48832e-16 0.0168001 2.01289e-11 3.43726e-18 0.0168001 7.48701e-11 9.5935e-18 0.0168001 1.9544e-10 2.05812e-17 0.0168001 5.48163e-10 5.21425e-17 0.0168001 1.28639e-09 1.03541e-16 0.0168001 3.42341e-09 2.91049e-16 0.0168001 7.88462e-09 5.87044e-16 0.0168001 2.06987e-08 1.80109e-15 0.0168001 4.75242e-08 3.69732e-15 0.0168001 1.24145e-07 1.16712e-14 0.0168003 2.84996e-07 2.0333e-14 0.0168002 7.44947e-07 9.4447e-14 0.0168016 1.70726e-06 1.94145e-13 0.016801 4.54509e-06 5.66198e-13 0.0168101 1.0264e-05 1.30275e-12 0.0168041 2.89773e-05 3.14611e-12 0.0168724 6.39608e-05 8.92696e-12 0.0168739 0.000198249 1.44416e-11 0.0174811 0.000483507 5.96437e-11 0.0189129 0.00176526 8.40406e-11 0.0242641 0.00529784 2.36016e-10 0.0272556 0.0166647 2.90041e-10 0.0274299 0.0209301 5.61658e-11 0.0215077 4.71375e-12 0.0275322 0.0168001 2.86027e-12 -2.49266e-16 0.0168001 1.01989e-11 2.72406e-18 0.0168001 5.10943e-11 7.18877e-18 0.0168001 1.03616e-10 1.53228e-17 0.0168001 3.71174e-10 3.50951e-17 0.0168001 6.9476e-10 6.85783e-17 0.0168001 2.33631e-09 1.75251e-16 0.0168001 4.3216e-09 3.49437e-16 0.0168001 1.427e-08 1.00566e-15 0.0168001 2.63478e-08 2.04613e-15 0.0168001 8.62807e-08 6.28478e-15 0.0168002 1.58938e-07 1.28581e-14 0.0168002 5.19422e-07 4.49588e-14 0.0168006 9.50794e-07 1.04822e-13 0.0168007 3.14206e-06 3.19697e-13 0.0168036 5.61637e-06 6.27062e-13 0.0168048 1.96261e-05 2.12744e-12 0.0168281 3.25233e-05 3.20029e-12 0.0168487 0.000131285 1.57947e-11 0.0170645 0.000222356 2.1451e-11 0.0176702 0.000991912 1.05556e-10 0.0199503 0.00272073 2.15409e-10 0.0260358 0.00910786 5.85897e-10 0.0275974 0.0192072 1.36437e-10 0.0207967 2.42592e-11 0.0284154 0.0168001 1.0283e-12 -2.28025e-16 0.0168001 7.36386e-12 2.226e-18 0.0168001 2.30253e-11 5.74712e-18 0.0168001 7.05105e-11 1.15569e-17 0.0168001 1.71258e-10 2.24862e-17 0.0168001 4.68274e-10 4.61438e-17 0.0168001 1.08905e-09 8.66887e-17 0.0168001 2.89932e-09 2.16093e-16 0.0168001 6.68538e-09 4.26349e-16 0.0168001 1.7577e-08 1.24469e-15 0.0168001 4.04365e-08 2.5288e-15 0.0168001 1.053e-07 7.90585e-15 0.0168003 2.4207e-07 1.6177e-14 0.0168003 6.27214e-07 6.4155e-14 0.0168016 1.43948e-06 1.30363e-13 0.0168015 3.78721e-06 4.1818e-13 0.0168098 8.54542e-06 7.84743e-13 0.0168063 2.43227e-05 2.80641e-12 0.0168717 5.20072e-05 5.09762e-12 0.0168642 0.000169128 1.85204e-11 0.0173996 0.000379893 4.1184e-11 0.0184147 0.00148115 1.03107e-10 0.0228514 0.00424688 2.2433e-10 0.0276979 0.0135791 3.48631e-10 0.0202549 8.0046e-11 0.0281718 0.0168001 3.73369e-13 -2.21537e-16 0.0168001 4.69081e-12 2.11335e-18 0.0168001 1.11604e-11 5.53536e-18 0.0168001 4.31826e-11 1.00551e-17 0.0168001 8.46155e-11 1.91997e-17 0.0168001 2.86373e-10 3.40473e-17 0.0168001 5.45208e-10 6.07814e-17 0.0168001 1.78919e-09 1.35611e-16 0.0168001 3.39046e-09 2.6002e-16 0.0168001 1.10054e-08 7.38633e-16 0.0168001 2.08196e-08 1.51211e-15 0.0168001 6.72131e-08 4.62503e-15 0.0168001 1.26974e-07 9.62899e-15 0.0168002 4.08877e-07 2.42541e-14 0.0168006 7.70258e-07 7.41847e-14 0.0168008 2.4886e-06 2.1414e-13 0.0168032 4.63687e-06 4.10281e-13 0.0168064 1.53413e-05 1.28264e-12 0.0168215 2.79086e-05 2.28459e-12 0.0168617 9.76397e-05 9.05058e-12 0.017005 0.000187042 1.32266e-11 0.0176591 0.000687772 6.56031e-11 0.0196303 0.00191269 1.57056e-10 0.0260825 0.00611179 5.08048e-10 0.0170429 2.02058e-10 0.0288109 0.0168001 3.8422e-13 5.5396e-19 0.0168001 1.6018e-12 3.32799e-18 0.0168001 7.41078e-12 5.91907e-18 0.0168001 1.63073e-11 1.23768e-17 0.0168001 5.51821e-11 1.73794e-17 0.0168001 1.12278e-10 3.04102e-17 0.0168001 3.58309e-10 4.53213e-17 0.0168001 7.20072e-10 7.78847e-17 0.0168001 2.25659e-09 1.59001e-16 0.0168001 4.52408e-09 2.97818e-16 0.0168001 1.40248e-08 8.16636e-16 0.0168001 2.81097e-08 1.64585e-15 0.0168001 8.63289e-08 4.98867e-15 0.0168003 1.72973e-07 1.02802e-14 0.0168003 5.27663e-07 2.64293e-14 0.0168014 1.0531e-06 7.78676e-14 0.0168014 3.22849e-06 2.4378e-13 0.0168085 6.30219e-06 4.3183e-13 0.0168069 2.03975e-05 1.72003e-12 0.0168589 3.71543e-05 2.7889e-12 0.016858 0.000136246 1.27745e-11 0.0172333 0.000254628 2.26377e-11 0.0178842 0.0010311 1.00991e-10 0.0208023 0.0028365 2.09866e-10 0.00886322 4.87499e-10 0.0272363 0.0168001 1.31951e-13 8.30939e-19 0.0168001 9.30931e-13 3.13148e-18 0.0168001 2.90171e-12 7.38359e-18 0.0168001 9.04479e-12 1.10978e-17 0.0168001 2.21753e-11 1.96562e-17 0.0168001 6.27252e-11 2.49316e-17 0.0168001 1.47874e-10 4.00926e-17 0.0168001 4.08837e-10 5.46192e-17 0.0168001 9.53312e-10 8.87098e-17 0.0168001 2.60098e-09 1.72216e-16 0.0168001 6.03293e-09 3.13029e-16 0.0168001 1.62425e-08 8.75325e-16 0.0168001 3.75235e-08 1.73444e-15 0.0168001 9.96868e-08 5.51762e-15 0.0168003 2.29438e-07 1.11854e-14 0.0168004 6.03434e-07 3.48886e-14 0.0168018 1.38259e-06 9.26525e-14 0.0168022 3.66652e-06 3.20566e-13 0.0168114 8.28354e-06 4.82679e-13 0.0168111 2.33098e-05 2.29712e-12 0.0168794 5.07288e-05 3.74419e-12 0.0169009 0.000159737 1.51356e-11 0.0174664 0.000363871 3.29962e-11 0.0186949 0.00134591 8.68783e-11 0.00381347 1.98845e-10 0.0232047 0.0168001 2.08117e-14 7.852e-19 0.0168001 5.03185e-13 3.14419e-18 0.0168001 9.45989e-13 6.77203e-18 0.0168001 4.66564e-12 1.11605e-17 0.0168001 8.06277e-12 1.67297e-17 0.0168001 3.25297e-11 2.59226e-17 0.0168001 5.85568e-11 3.27582e-17 0.0168001 2.10157e-10 6.7932e-17 0.0168001 4.02684e-10 7.83861e-17 0.0168001 1.34542e-09 1.36415e-16 0.0168001 2.66549e-09 2.14819e-16 0.0168001 8.58522e-09 4.79771e-16 0.0168001 1.70713e-08 9.36269e-16 0.0168001 5.40286e-08 2.41782e-15 0.0168002 1.06659e-07 5.38202e-15 0.0168002 3.35269e-07 1.86079e-14 0.0168007 6.54926e-07 3.3363e-14 0.0168009 2.06566e-06 1.53743e-13 0.0168035 3.98523e-06 3.02254e-13 0.0168066 1.27571e-05 9.11178e-13 0.0168217 2.46703e-05 1.96124e-12 0.0168644 8.0222e-05 5.62977e-12 0.0169874 0.000169331 1.35322e-11 0.0176379 0.000569565 3.45149e-11 0.00162357 8.24938e-11 0.0195879 0.0168001 1.14604e-14 6.52215e-19 0.0168001 9.09515e-14 4.17757e-18 0.0168001 4.38842e-13 6.32564e-18 0.0168001 9.39445e-13 1.51001e-17 0.0168001 3.76655e-12 1.73464e-17 0.0168001 7.80407e-12 3.37094e-17 0.0168001 2.76958e-11 3.35942e-17 0.0168001 6.29074e-11 5.91136e-17 0.0168001 1.92566e-10 6.8514e-17 0.0168001 4.63764e-10 1.06024e-16 0.0168001 1.31635e-09 1.56108e-16 0.0168001 3.20865e-09 2.49126e-16 0.0168001 8.84952e-09 5.19251e-16 0.0168001 2.12615e-08 9.70932e-16 0.0168001 5.76669e-08 2.78024e-15 0.0168002 1.36188e-07 5.64945e-15 0.0168002 3.65476e-07 1.81963e-14 0.0168011 8.53524e-07 3.14689e-14 0.0168013 2.28389e-06 1.43986e-13 0.0168067 5.29355e-06 2.47213e-13 0.0168088 1.42541e-05 9.39673e-13 0.016845 3.31492e-05 1.23126e-12 0.0168745 9.10082e-05 7.39398e-12 0.0171654 0.000222369 9.55857e-12 0.000675512 5.25017e-11 0.0178782 0.0168001 4.82698e-15 7.75035e-19 0.0168001 -3.51813e-15 5.76237e-18 0.0168001 1.2853e-13 5.4227e-18 0.0168001 8.32486e-14 1.75997e-17 0.0168001 9.85889e-13 1.69161e-17 0.0168001 1.16922e-12 3.88449e-17 0.0168001 6.9533e-12 3.99393e-17 0.0168001 1.20518e-11 6.40052e-17 0.0168001 5.49492e-11 7.1166e-17 0.0168001 1.26265e-10 1.08563e-16 0.0168001 4.67949e-10 1.50729e-16 0.0168001 1.15277e-09 2.43681e-16 0.0168001 3.58824e-09 4.39008e-16 0.0168001 8.67436e-09 8.07046e-16 0.0168001 2.50869e-08 1.53666e-15 0.0168001 5.8909e-08 2.97951e-15 0.0168002 1.65377e-07 7.12243e-15 0.0168005 3.81223e-07 1.45049e-14 0.0168009 1.05041e-06 5.34458e-14 0.0168027 2.39972e-06 9.96436e-14 0.016806 6.54991e-06 3.23697e-13 0.0168176 1.49814e-05 6.48053e-13 0.0168418 4.08527e-05 2.52716e-12 0.0169193 9.73239e-05 5.50656e-12 0.00027349 2.03114e-11 0.0171621 0.0168001 2.54587e-15 1.55007e-18 0.0168001 -1.46858e-14 4.00731e-18 0.0168001 4.49634e-14 7.91891e-18 0.0168001 -4.63692e-14 1.88448e-17 0.0168001 2.90867e-13 1.75099e-17 0.0168001 -5.93494e-14 3.97597e-17 0.0168001 1.10217e-12 2.85171e-17 0.0168001 1.08694e-12 8.48956e-17 0.0168001 1.1044e-11 8.3808e-17 0.0168001 1.99861e-11 1.46263e-16 0.0168001 1.08184e-10 1.90488e-16 0.0168001 2.94559e-10 2.86935e-16 0.0168001 1.13691e-09 4.21145e-16 0.0168001 2.95853e-09 5.50776e-16 0.0168001 9.69797e-09 9.87641e-16 0.0168001 2.37163e-08 1.62541e-15 0.0168001 6.97278e-08 2.59231e-15 0.0168003 1.64772e-07 5.12445e-15 0.0168005 4.6371e-07 1.10248e-14 0.0168013 1.06771e-06 2.07849e-14 0.0168029 2.93563e-06 8.77345e-14 0.0168084 6.63857e-06 1.72528e-13 0.0168174 1.83828e-05 8.49976e-13 0.0168633 4.09192e-05 1.14326e-12 0.000119654 7.73067e-12 0.0169265 0.0168001 9.42334e-16 2.08031e-18 0.0168001 9.41304e-15 1.37728e-18 0.0168001 3.6755e-15 1.10267e-17 0.0168001 1.06469e-13 6.53909e-18 0.0168001 1.32123e-14 1.64409e-17 0.0168001 5.30531e-13 2.17128e-17 0.0168001 8.13288e-13 1.36177e-17 0.0168001 2.14806e-12 3.78531e-17 0.0168001 5.98827e-12 9.23783e-17 0.0168001 6.34008e-12 6.11977e-16 0.0168001 3.96892e-11 2.62497e-16 0.0168001 7.8851e-11 2.20605e-16 0.0168001 2.4664e-10 7.80892e-16 0.0168001 6.53123e-10 7.08201e-16 0.0168001 2.6572e-09 1.25746e-15 0.0168001 6.85557e-09 3.26538e-15 0.0168001 2.66632e-08 4.64002e-15 0.0168002 5.85364e-08 6.89183e-15 0.0168003 1.95701e-07 7.51886e-15 0.0168007 4.19868e-07 8.89319e-15 0.0168013 1.30012e-06 2.81139e-14 0.0168039 2.72664e-06 5.10358e-14 0.0168077 8.27065e-06 2.38723e-13 0.0168225 1.70973e-05 5.24914e-13 5.22416e-05 2.14636e-12 0.01685 0.0168001 1.03842e-14 7.63177e-19 0.0168001 -2.59124e-14 4.35629e-18 0.0168001 7.20785e-14 1.03651e-17 0.0168001 1.39934e-14 1.65104e-17 0.0168001 1.7445e-13 3.17739e-17 0.0168001 3.55538e-13 4.24965e-17 0.0168001 2.80677e-13 7.39841e-17 0.0168001 2.04683e-12 7.94127e-17 0.0168001 4.29566e-12 1.29334e-16 0.0168001 1.58947e-11 1.80249e-16 0.0168001 2.79759e-11 1.42561e-16 0.0168001 2.00585e-11 1.62985e-16 0.0168001 1.64415e-10 2.79493e-16 0.0168001 1.37764e-10 7.1263e-16 0.0168001 7.63287e-10 1.82062e-15 0.0168001 1.47889e-09 2.99961e-15 0.0168001 5.19857e-09 4.56694e-15 0.0168001 1.95233e-08 7.55306e-15 0.0168003 5.14628e-08 9.85737e-15 0.0168003 1.78975e-07 1.2178e-14 0.016801 4.08632e-07 1.70799e-14 0.0168013 1.27903e-06 1.81482e-14 0.0168051 2.8223e-06 2.35599e-14 0.0168068 8.40267e-06 1.09232e-13 1.83004e-05 2.31322e-13 0.0168291 0.0168001 2.07446e-15 1.24768e-18 0.0168001 1.0658e-14 4.18773e-18 0.0168001 4.72891e-14 1.22955e-17 0.0168001 1.58427e-13 1.99773e-17 0.0168001 2.79173e-13 4.24397e-17 0.0168001 1.07237e-12 6.75898e-17 0.0168001 1.691e-12 1.27778e-16 0.0168001 5.52064e-12 2.22726e-16 0.0168001 1.04149e-11 2.36571e-16 0.0168001 1.66332e-11 1.99052e-16 0.0168001 3.17007e-11 4.99038e-17 0.0168001 7.40207e-11 -2.70349e-16 0.0168001 4.50489e-11 -2.51413e-16 0.0168001 2.37143e-10 -1.93093e-16 0.0168001 2.09898e-10 1.09809e-15 0.0168001 1.07609e-09 3.85516e-15 0.0168001 8.74696e-10 7.41713e-15 0.0168002 4.34892e-09 1.75758e-14 0.0168002 1.11926e-08 1.78186e-14 0.0168003 3.73535e-08 1.41167e-14 0.0168004 1.46958e-07 3.43703e-14 0.0168011 3.5504e-07 -7.08503e-15 0.0168015 1.19103e-06 3.02753e-14 0.0168054 2.67557e-06 -2.11832e-14 8.18241e-06 3.98186e-14 0.016808 0.0168001 -7.93636e-17 1.03084e-18 0.0168001 7.8088e-15 8.95991e-18 0.0168001 1.35071e-14 1.38541e-17 0.0168001 7.11551e-14 5.1979e-17 0.0168001 1.15934e-13 4.07491e-17 0.0168001 4.16487e-13 1.02387e-16 0.0168001 7.19313e-13 -2.8667e-17 0.0168001 2.2519e-12 -3.93362e-18 0.0168001 3.79145e-12 2.37238e-16 0.0168001 8.0608e-12 -7.69232e-16 0.0168001 1.31879e-11 -7.81571e-16 0.0168001 -2.06001e-11 -2.26747e-16 0.0168001 8.35441e-11 2.81924e-15 0.0168001 1.59419e-11 5.99221e-15 0.0168001 3.66349e-10 1.32545e-14 0.0168001 6.85131e-11 1.32645e-14 0.0168001 1.23597e-09 1.1157e-14 0.0168001 5.47704e-10 1.30402e-14 0.0168002 5.49324e-09 1.97121e-14 0.0168003 4.89858e-09 6.89855e-15 0.0168005 2.74408e-08 2.80073e-15 0.0168006 9.25718e-08 -2.9893e-16 0.0168015 2.96198e-07 5.13474e-15 0.016802 9.64878e-07 2.11638e-14 2.4966e-06 3.15668e-14 0.016806 0.0168001 4.12539e-17 1.27055e-20 0.0168001 8.67031e-15 1.25708e-17 0.0168001 8.77109e-15 -1.3273e-18 0.0168001 6.40611e-14 8.62839e-17 0.0168001 4.80603e-14 -4.13454e-17 0.0168001 2.71018e-13 1.98713e-16 0.0168001 9.35982e-14 -2.50933e-16 0.0168001 5.61208e-13 3.21991e-17 0.0168001 1.58337e-13 -2.5164e-16 0.0168001 1.782e-13 -1.60147e-15 0.0168001 2.72752e-12 -1.42985e-15 0.0168001 -7.84019e-12 -2.23638e-15 0.0168001 3.95366e-11 1.04548e-15 0.0168001 9.16357e-11 6.23162e-15 0.0168001 2.57193e-10 1.08174e-14 0.0168001 3.43896e-10 1.93371e-14 0.0168001 8.42875e-10 1.49126e-14 0.0168001 1.69905e-09 5.09998e-15 0.0168002 3.39422e-09 -1.56035e-16 0.0168003 5.93866e-09 -1.63735e-14 0.0168004 8.66797e-09 -1.00039e-13 0.0168006 2.06581e-08 -3.64888e-13 0.0168011 5.00952e-08 -2.52059e-13 0.0168016 2.20089e-07 -1.85108e-13 6.05868e-07 -3.66796e-14 0.0168035 0.0168001 -4.95589e-16 9.8764e-19 0.0168001 4.02011e-15 9.25214e-18 0.0168001 2.20261e-15 1.6601e-17 0.0168001 2.50911e-14 3.06761e-17 0.0168001 1.57537e-14 3.23075e-17 0.0168001 9.15849e-14 3.49418e-17 0.0168001 1.8567e-14 -8.27814e-17 0.0168001 1.57032e-13 4.29302e-17 0.0168001 7.76234e-14 2.58007e-16 0.0168001 -3.91616e-13 1.47477e-16 0.0168001 3.0007e-12 2.00685e-15 0.0168001 1.3842e-11 4.39649e-15 0.0168001 4.96821e-11 4.17894e-15 0.0168001 1.19842e-10 -2.93043e-15 0.0168001 2.5871e-10 7.41408e-18 0.0168001 4.33322e-10 6.4524e-16 0.0168001 9.36326e-10 2.61269e-15 0.0168001 2.8133e-09 7.47043e-15 0.0168002 3.43373e-09 2.88814e-14 0.0168003 1.05005e-08 4.75748e-14 0.0168004 5.56688e-09 4.40832e-14 0.0168006 2.43916e-08 7.60826e-15 0.0168008 1.23072e-08 -7.92174e-15 0.0168017 6.75497e-08 -3.02242e-14 1.19151e-07 -5.13451e-14 0.0168025 0.0168001 -2.1993e-16 1.23074e-18 0.0168001 1.09298e-15 5.91144e-18 0.0168001 9.30083e-16 1.26818e-17 0.0168001 6.80911e-15 2.75591e-17 0.0168001 9.6932e-15 1.94064e-17 0.0168001 2.41005e-14 5.0844e-17 0.0168001 2.69289e-14 1.92014e-17 0.0168001 7.79124e-14 -5.73136e-17 0.0168001 1.59182e-13 2.33023e-16 0.0168001 2.19992e-13 5.50683e-16 0.0168001 3.96585e-12 4.22712e-16 0.0168001 2.02157e-11 -6.03436e-16 0.0168001 4.28689e-11 -1.33056e-15 0.0168001 1.01847e-10 -1.34507e-15 0.0168001 2.05893e-10 1.35548e-15 0.0168001 4.38787e-10 1.40302e-14 0.0168001 8.84197e-10 -4.57744e-16 0.0168001 1.17268e-09 9.74035e-14 0.0168001 3.14812e-09 -8.59603e-16 0.0168003 1.84963e-09 5.72113e-15 0.0168004 9.62949e-09 3.50869e-14 0.0168005 3.11592e-09 2.18297e-14 0.0168008 2.28455e-08 -6.80701e-14 0.0168013 5.35382e-09 -6.75846e-14 6.45523e-08 -1.61501e-13 0.0168023 0.0168001 -9.2374e-17 1.29003e-18 0.0168001 -4.27176e-17 4.31902e-18 0.0168001 -5.00685e-16 1.1739e-17 0.0168001 -4.0495e-17 2.03313e-17 0.0168001 1.14091e-15 2.83087e-17 0.0168001 8.77336e-16 4.86747e-17 0.0168001 -3.47205e-15 6.8159e-17 0.0168001 2.22927e-14 8.78009e-17 0.0168001 9.38398e-14 1.65453e-16 0.0168001 4.58596e-13 3.74424e-16 0.0168001 5.39452e-12 7.11415e-16 0.0168001 3.00687e-11 1.4557e-15 0.0168001 3.00843e-11 1.21588e-15 0.0168001 7.46081e-11 2.38983e-16 0.0168001 1.41295e-10 4.92749e-15 0.0168001 7.39745e-10 1.72701e-14 0.0168001 2.82692e-10 1.85303e-14 0.0168001 1.23604e-09 2.47717e-14 0.0168002 6.26196e-10 2.52938e-14 0.0168002 3.41684e-09 2.05126e-14 0.0168004 1.95021e-09 3.26367e-14 0.0168005 6.46019e-09 6.40124e-14 0.0168008 3.30979e-09 1.8957e-13 0.0168013 1.6675e-08 4.29958e-13 7.61326e-09 4.64892e-13 0.0168021 0.0168001 -6.12574e-18 1.32984e-18 0.0168001 -2.70292e-16 3.66003e-18 0.0168001 -5.37005e-16 1.11842e-17 0.0168001 -1.65178e-15 1.72625e-17 0.0168001 -2.47355e-15 2.93734e-17 0.0168001 -6.74292e-15 4.58025e-17 0.0168001 -9.78536e-15 7.51759e-17 0.0168001 -1.4349e-14 8.79423e-17 0.0168001 6.56321e-14 1.31287e-16 0.0168001 -1.56731e-13 1.34776e-16 0.0168001 2.61431e-12 -5.76195e-16 0.0168001 1.46529e-11 -3.26698e-15 0.0168001 1.18751e-11 -5.83465e-16 0.0168001 2.15686e-11 -2.54517e-15 0.0168001 3.44383e-11 8.12781e-15 0.0168001 3.18512e-10 4.5435e-15 0.0168001 -4.27752e-11 -1.19304e-14 0.0168001 4.27456e-10 1.96019e-14 0.0168002 -2.13313e-10 -5.52366e-14 0.0168002 1.35076e-09 1.72453e-13 0.0168004 1.67432e-10 -4.51386e-14 0.0168005 2.38107e-09 -6.29573e-14 0.0168008 -5.35478e-10 4.54228e-14 0.0168014 5.88733e-09 -1.13266e-14 -5.9075e-10 6.81938e-14 0.0168022 0.0168001 6.50521e-18 1.32052e-18 0.0168001 -1.2116e-16 3.51349e-18 0.0168001 -2.20527e-16 1.0903e-17 0.0168001 -7.93257e-16 1.64706e-17 0.0168001 -1.33444e-15 2.87331e-17 0.0168001 -3.42521e-15 4.3612e-17 0.0168001 -4.1172e-15 7.1266e-17 0.0168001 -1.69928e-14 9.58147e-17 0.0168001 1.66217e-14 1.37264e-16 0.0168001 -1.34234e-13 2.07888e-16 0.0168001 9.93752e-13 -5.11867e-16 0.0168001 5.76323e-12 -2.97548e-15 0.0168001 1.64492e-13 5.38092e-16 0.0168001 1.81318e-12 2.84562e-16 0.0168001 2.80363e-11 3.27624e-15 0.0168001 7.12193e-11 2.48934e-15 0.0168001 -4.51294e-11 -5.65284e-15 0.0168001 7.4962e-11 -1.37141e-15 0.0168002 -9.51723e-12 1.08687e-14 0.0168002 1.6662e-10 -1.32022e-14 0.0168004 6.5274e-11 1.95992e-14 0.0168005 3.07023e-10 -2.81456e-14 0.0168008 -2.68311e-11 3.88179e-14 0.0168014 7.79218e-10 -2.43279e-14 -2.13484e-10 5.04913e-14 0.0168022 0.0168001 3.95734e-18 1.31883e-18 0.0168001 -2.79182e-17 3.52366e-18 0.0168001 -5.91432e-17 1.07997e-17 0.0168001 -2.08058e-16 1.64003e-17 0.0168001 -4.08311e-16 2.82757e-17 0.0168001 -9.87329e-16 4.30936e-17 0.0168001 -1.60695e-15 6.94745e-17 0.0168001 -4.82362e-15 9.25163e-17 0.0168001 1.84477e-16 1.29378e-16 0.0168001 -2.4742e-14 1.52709e-16 0.0168001 2.06521e-13 -4.14843e-17 0.0168001 1.37757e-12 -6.98867e-16 0.0168001 -5.60392e-13 1.86937e-16 0.0168001 -1.97581e-13 1.66422e-16 0.0168001 7.37229e-12 1.70237e-15 0.0168001 1.40548e-11 1.21108e-15 0.0168001 -1.08401e-11 -3.60635e-15 0.0168001 3.3799e-12 -1.86254e-15 0.0168002 2.67218e-11 8.00627e-15 0.0168002 -1.59296e-11 -9.22984e-15 0.0168004 5.71641e-11 1.32429e-14 0.0168005 2.07598e-11 -2.11709e-14 0.0168008 7.91423e-11 2.79729e-14 0.0168014 1.01176e-10 -2.49162e-14 -4.15707e-11 2.81698e-14 0.0168022 0.0168001 1.51788e-18 1.32222e-18 0.0168001 -5.52943e-18 3.48469e-18 0.0168001 -1.1872e-17 1.08014e-17 0.0168001 -3.03035e-17 1.63664e-17 0.0168001 -7.97973e-17 2.81266e-17 0.0168001 -1.15196e-16 4.30496e-17 0.0168001 -5.11527e-16 6.84487e-17 0.0168001 -4.70761e-16 9.28187e-17 0.0168001 -3.69062e-15 1.27812e-16 0.0168001 3.85185e-15 1.86239e-16 0.0168001 6.88322e-15 6.58128e-17 0.0168001 9.10231e-14 -3.45079e-16 0.0168001 -6.56157e-14 3.99797e-16 0.0168001 3.5171e-14 7.08649e-16 0.0168001 -5.51734e-14 -2.17145e-15 0.0168001 7.32985e-13 1.08257e-16 0.0168001 1.20848e-12 3.59489e-15 0.0168001 -4.34363e-12 -3.29963e-16 0.0168002 1.50188e-11 2.29632e-15 0.0168002 -1.47882e-11 -3.50113e-15 0.0168004 2.70253e-11 5.87662e-15 0.0168005 -1.6692e-11 -7.68853e-15 0.0168008 4.17274e-11 1.02675e-14 0.0168014 1.92776e-12 -8.19138e-15 -1.81483e-11 1.06533e-14 0.0168022 0.0168001 1.02999e-18 1.32137e-18 0.0168001 -2.54788e-18 3.47622e-18 0.0168001 -7.04731e-19 1.0798e-17 0.0168001 8.99888e-18 1.63791e-17 0.0168001 -1.26852e-17 2.81249e-17 0.0168001 5.26922e-17 4.29463e-17 0.0168001 -2.05998e-16 6.84775e-17 0.0168001 4.21809e-16 9.23774e-17 0.0168001 -2.78965e-15 1.26924e-16 0.0168001 6.60344e-15 1.93621e-16 0.0168001 -2.44488e-14 1.62301e-16 0.0168001 -1.79261e-13 2.473e-17 0.0168001 1.14768e-13 3.87056e-16 0.0168001 8.52556e-14 6.37743e-16 0.0168001 -1.55249e-12 -1.18697e-15 0.0168001 -1.40027e-12 1.89949e-16 0.0168001 2.66942e-12 2.99748e-15 0.0168001 -1.96832e-12 1.19259e-16 0.0168002 5.19576e-12 8.48949e-16 0.0168003 -4.37322e-12 -2.90253e-16 0.0168004 1.01628e-11 2.92206e-15 0.0168005 -7.1542e-12 -2.03172e-15 0.0168008 1.30595e-11 4.40314e-15 0.0168014 -4.2242e-12 -2.75352e-15 -2.21133e-12 6.11826e-15 0.0168022 0.0168001 -1.19262e-18 1.31883e-18 0.0168001 -1.35525e-18 3.47792e-18 0.0168001 -1.35525e-18 1.08124e-17 0.0168001 -3.08998e-18 1.63308e-17 0.0168001 -3.6646e-17 2.81452e-17 0.0168001 -1.03541e-17 4.28887e-17 0.0168001 -1.9082e-16 6.87596e-17 0.0168001 1.96024e-16 9.17642e-17 0.0168001 -1.47999e-15 1.26313e-16 0.0168001 3.88909e-15 1.93246e-16 0.0168001 -1.56632e-14 2.27304e-16 0.0168001 -1.23237e-13 2.73457e-16 0.0168001 8.83812e-14 3.74635e-16 0.0168001 6.4065e-14 3.75426e-16 0.0168001 -9.40672e-13 6.94851e-16 0.0168001 -8.64856e-13 5.99773e-16 0.0168001 1.13455e-12 -5.80165e-16 0.0168001 -4.92328e-13 9.07558e-16 0.0168002 1.64656e-12 1.5771e-15 0.0168003 -8.19657e-13 5.18811e-16 0.0168004 3.57851e-12 1.15574e-15 0.0168005 -2.00707e-12 3.4714e-16 0.0168008 3.72122e-12 2.23815e-15 0.0168014 -1.47908e-12 5.22752e-16 9.60777e-14 3.226e-15 0.0168022 0.0168001 1.89735e-18 1.31629e-18 0.0168001 -9.16151e-18 3.49825e-18 0.0168001 -6.01732e-18 1.07946e-17 0.0168001 -5.39391e-17 1.63249e-17 0.0168001 -6.48895e-17 2.82138e-17 0.0168001 -1.66154e-16 4.27531e-17 0.0168001 -2.72894e-16 6.90315e-17 0.0168001 -1.27285e-16 9.12449e-17 0.0168001 -4.23001e-16 1.25854e-16 0.0168001 1.26722e-15 1.90601e-16 0.0168001 -3.4173e-15 2.66365e-16 0.0168001 -3.14863e-14 4.30154e-16 0.0168001 3.61165e-14 3.53193e-16 0.0168001 3.53716e-14 1.64239e-16 0.0168001 -3.65325e-13 2.05979e-15 0.0168001 -3.0975e-13 9.51168e-16 0.0168001 3.46271e-13 -2.42498e-15 0.0168001 -1.1154e-13 1.0157e-15 0.0168002 4.88724e-13 2.00434e-15 0.0168003 -2.88884e-14 4.38369e-16 0.0168004 1.12422e-12 3.20968e-16 0.0168005 -3.03523e-13 1.08085e-15 0.0168008 1.09006e-12 1.58811e-15 0.0168014 -2.39924e-14 1.76985e-15 7.35004e-13 2.11783e-15 0.0168022 0.0168001 1.30697e-18 0.0168001 3.50756e-18 0.0168001 1.07844e-17 0.0168001 1.63706e-17 0.0168001 2.81766e-17 0.0168001 4.28463e-17 0.0168001 6.90569e-17 0.0168001 9.10789e-17 0.0168001 1.25701e-16 0.0168001 1.89622e-16 0.0168001 2.83382e-16 0.0168001 4.98683e-16 0.0168001 3.42523e-16 0.0168001 6.55756e-17 0.0168001 2.68591e-15 0.0168001 1.11778e-15 0.0168001 -3.04946e-15 0.0168001 9.36648e-16 0.0168002 2.14847e-15 0.0168003 3.22264e-16 0.0168004 4.03984e-17 0.0168005 1.21463e-15 0.0168008 1.43327e-15 0.0168014 2.20814e-15 1.62583e-15 0.0168022 0.0168001 1.84919e-10 1.22943e-15 0.0168001 1.09296e-09 4.33694e-15 0.0168001 3.62753e-09 9.86087e-15 0.0168001 1.0462e-08 1.40334e-14 0.0168001 2.6002e-08 2.27191e-14 0.0168 6.7124e-08 2.64412e-14 0.0168001 1.58027e-07 3.74535e-14 0.0167997 4.00995e-07 3.66311e-14 0.0168002 9.36241e-07 4.58834e-14 0.016798 2.40302e-06 4.72742e-14 0.0168016 5.64824e-06 5.55434e-14 0.0167864 1.49491e-05 1.61324e-13 0.0168218 3.70469e-05 4.59426e-13 0.0167286 0.00010365 1.48974e-12 0.0169719 0.000306219 6.05629e-12 0.0168252 0.00109582 2.11968e-11 0.0184504 0.00385371 7.25692e-11 0.0176922 0.0161977 1.12456e-10 0.0163733 0.0165761 5.9112e-11 0.0149055 0.0161396 1.96175e-11 0.0134935 0.016846 3.971e-11 0.0117482 0.0179095 3.65149e-11 0.0106225 0.0192073 1.15784e-12 0.0113498 0.0215437 4.54453e-11 0.0244344 -5.73026e-11 0.0182577 0.0168001 1.39609e-10 1.38603e-15 0.0168001 1.09371e-09 4.77137e-15 0.0168001 3.33075e-09 1.07987e-14 0.0168001 1.01694e-08 1.5165e-14 0.0168 2.40743e-08 2.43288e-14 0.0168 6.53614e-08 2.82573e-14 0.0168 1.47897e-07 3.87372e-14 0.0167998 3.94674e-07 3.95119e-14 0.0167996 8.87232e-07 4.70879e-14 0.0167986 2.3677e-06 4.73806e-14 0.0167978 5.37585e-06 4.4751e-14 0.0167933 1.42986e-05 1.56287e-13 0.016789 3.32665e-05 2.62518e-13 0.0167692 9.59354e-05 1.48959e-12 0.0167797 0.000254572 3.86116e-12 0.0168391 0.000920228 1.73359e-11 0.0173373 0.0029988 5.54317e-11 0.0176733 0.0152083 1.547e-10 0.0169406 0.0174411 4.90873e-11 0.0157459 0.017397 3.51029e-11 0.0146982 0.0177227 3.21256e-11 0.0135064 0.0186707 3.87696e-11 0.0129645 0.0195522 1.54968e-11 0.0140311 0.0204232 -9.85758e-12 0.0214705 -6.49714e-11 0.0171006 0.0168001 1.21571e-10 1.53877e-15 0.0168001 9.5181e-10 5.21268e-15 0.0168001 2.94084e-09 1.1726e-14 0.0168001 8.89339e-09 1.62966e-14 0.0168001 2.11544e-08 2.59946e-14 0.0168 5.64205e-08 3.009e-14 0.0168 1.27477e-07 4.1239e-14 0.0167999 3.33453e-07 4.22536e-14 0.0167999 7.42734e-07 5.06266e-14 0.0167995 1.98784e-06 4.71301e-14 0.0167996 4.21286e-06 3.30182e-14 0.0167964 1.30046e-05 1.40486e-13 0.0168 2.40951e-05 5.99849e-14 0.0167785 9.51301e-05 1.37165e-12 0.0168025 0.000194324 2.35974e-12 0.0167612 0.000884369 1.75077e-11 0.0169827 0.00253383 4.81421e-11 0.0180988 0.0134835 1.52923e-10 0.0176324 0.0181261 4.77742e-11 0.016708 0.0183311 3.72043e-11 0.0158886 0.0183251 1.65878e-11 0.0151676 0.018962 7.08097e-11 0.0149272 0.0195329 -1.07195e-11 0.0156709 0.0195517 -9.63029e-11 0.0192989 1.52167e-11 0.018008 0.0168001 1.0994e-10 1.67549e-15 0.0168001 9.20554e-10 5.63022e-15 0.0168001 2.81189e-09 1.25811e-14 0.0168001 8.49246e-09 1.73746e-14 0.0168001 2.02173e-08 2.75525e-14 0.0168 5.39337e-08 3.17871e-14 0.0168 1.22755e-07 4.35286e-14 0.0167999 3.20402e-07 4.4769e-14 0.0167998 7.21214e-07 5.49542e-14 0.0167992 1.89266e-06 4.87968e-14 0.0167984 4.1817e-06 5.29258e-14 0.016796 1.16778e-05 1.01792e-13 0.016794 2.38167e-05 -5.46538e-14 0.0167844 8.24219e-05 1.60137e-12 0.0167979 0.000163123 7.11944e-13 0.0168741 0.000732477 1.62949e-11 0.0171784 0.00200234 3.96691e-11 0.0193914 0.0105734 1.38034e-10 0.018953 0.0187172 6.32596e-11 0.0179113 0.0193389 4.73385e-11 0.0171103 0.0188728 1.10889e-11 0.016621 0.0190739 4.66381e-11 0.016505 0.0193674 1.34721e-11 0.0167519 0.0190916 -1.93687e-11 0.0179889 -6.46294e-12 0.0179954 0.0168001 3.70327e-11 1.80824e-15 0.0168001 9.92109e-10 6.08557e-15 0.0168001 1.72915e-09 1.34559e-14 0.0168001 8.80312e-09 1.8497e-14 0.0168001 1.3103e-08 2.91468e-14 0.0168 5.65539e-08 3.34415e-14 0.0168001 8.20863e-08 4.5518e-14 0.0167999 3.4334e-07 4.65926e-14 0.0168 4.93135e-07 5.65251e-14 0.0167993 2.07251e-06 5.05468e-14 0.0167999 2.8767e-06 5.53674e-14 0.0167959 1.29203e-05 8.2867e-14 0.0168006 1.56397e-05 1.56738e-13 0.0167825 8.70652e-05 7.84256e-13 0.0168259 9.57678e-05 1.6773e-12 0.0168561 0.000649217 9.63986e-12 0.0174552 0.00121499 2.66097e-11 0.0218348 0.00593858 9.39459e-11 0.0204972 0.0198695 9.52493e-11 0.0196219 0.019965 7.17022e-11 0.0183888 0.0198938 1.97261e-11 0.0179049 0.0193816 3.31512e-11 0.0178193 0.0193484 2.15574e-11 0.017938 0.018923 -4.82337e-12 0.0176076 -5.83608e-12 0.0182948 0.0168001 7.69427e-11 1.26009e-15 0.0168001 4.96886e-10 7.88765e-15 0.0168001 1.7787e-09 1.16218e-14 0.0168001 4.75476e-09 2.22535e-14 0.0168001 1.28869e-08 2.64923e-14 0.0168001 3.06811e-08 3.91956e-14 0.0168 7.90067e-08 4.18012e-14 0.0168002 1.84178e-07 5.46677e-14 0.0168 4.71129e-07 4.8759e-14 0.0168007 1.09451e-06 5.4666e-14 0.0167996 2.87018e-06 3.60192e-14 0.0168048 6.46612e-06 1.49531e-14 0.0167965 1.85281e-05 1.06794e-13 0.0168356 4.02671e-05 1.17796e-13 0.016777 0.000127789 1.53807e-12 0.01708 0.000310692 5.6875e-12 0.0169564 0.00120784 1.22053e-11 0.0188861 0.00375327 6.29349e-11 0.0210933 0.0170322 1.56277e-10 0.0206486 0.0201829 6.20229e-11 0.0198761 0.0205339 4.41167e-11 0.0192614 0.0199433 1.11666e-11 0.0191145 0.01944 8.84267e-12 0.0191392 0.0188231 5.15276e-13 0.0175438 -9.12738e-12 0.0191564 0.0168001 8.17419e-11 1.32735e-15 0.0168001 4.29537e-10 8.12867e-15 0.0168001 1.60699e-09 1.20256e-14 0.0168001 4.12064e-09 2.29265e-14 0.0168001 1.15248e-08 2.7344e-14 0.0168001 2.66877e-08 4.03759e-14 0.0168 7.07817e-08 4.33469e-14 0.0168 1.60567e-07 5.56052e-14 0.0167999 4.21705e-07 5.07938e-14 0.0167999 9.49897e-07 5.17591e-14 0.0167996 2.5112e-06 1.949e-14 0.0167995 5.55718e-06 -6.28424e-14 0.0167983 1.56644e-05 1.14955e-15 0.0168026 3.19313e-05 -8.30497e-13 0.0167964 0.000110676 1.6585e-12 0.0168526 0.000227819 -1.14692e-12 0.0169931 0.000979115 1.61084e-11 0.0178662 0.00273479 4.02054e-11 0.0211564 0.0129941 1.42658e-10 0.0212858 0.0199312 4.86095e-11 0.0208134 0.0208978 5.64255e-11 0.0202221 0.0204738 2.23242e-11 0.0200159 0.0195094 1.03627e-11 0.0199313 0.0186892 2.72273e-12 0.0174764 -6.02019e-12 0.0197973 0.0168001 9.2535e-11 1.36115e-15 0.0168001 2.63521e-10 8.43521e-15 0.0168001 1.55937e-09 1.2424e-14 0.0168001 2.7306e-09 2.36754e-14 0.0168001 1.10892e-08 2.8217e-14 0.0168001 1.80692e-08 4.16594e-14 0.0168 6.83424e-08 4.49713e-14 0.0168001 1.10036e-07 5.8072e-14 0.0168 4.09912e-07 5.48233e-14 0.0168002 6.54063e-07 5.97965e-14 0.0167997 2.45315e-06 3.03712e-14 0.0168008 3.79044e-06 -3.03498e-15 0.0167981 1.51286e-05 -9.58255e-14 0.016805 2.07607e-05 -2.67097e-13 0.0167943 0.00010066 5.09775e-14 0.0168662 0.000130734 -1.11592e-12 0.0169889 0.000750085 8.05645e-12 0.0179394 0.00160292 2.36407e-11 0.0228964 0.00715395 1.06217e-10 0.0224496 0.0201654 6.75076e-11 0.0223977 0.0209077 3.66021e-11 0.0217491 0.0211267 2.94131e-11 0.0211131 0.0200924 1.77668e-11 0.0208577 0.0188057 1.37374e-11 0.0175291 3.02726e-12 0.0206296 0.0168001 3.73239e-11 2.11276e-15 0.0168001 2.66484e-10 7.01988e-15 0.0168001 8.3214e-10 1.53961e-14 0.0168001 2.51749e-09 2.10006e-14 0.0168001 6.06113e-09 3.29026e-14 0.0168001 1.62122e-08 3.77956e-14 0.0168001 3.72997e-08 5.16541e-14 0.0168001 9.67751e-08 5.31079e-14 0.0168002 2.20876e-07 6.51772e-14 0.0168001 5.67021e-07 5.03869e-14 0.016801 1.29079e-06 4.1267e-14 0.0168003 3.37649e-06 -2.93039e-14 0.0168066 7.44579e-06 -1.54597e-13 0.0167994 2.16039e-05 -3.23008e-13 0.0168487 4.42827e-05 -8.49265e-13 0.0168003 0.000148929 -6.88967e-13 0.017175 0.000331612 2.60604e-14 0.0173059 0.00134292 5.91663e-12 0.0201461 0.00401959 3.40265e-11 0.023233 0.0165789 9.58839e-11 0.0232689 0.0207911 4.66063e-11 0.0227945 0.0215252 4.31503e-11 0.0220227 0.0207249 3.12356e-11 0.0215902 0.0190476 2.18891e-11 0.0176444 1.36106e-11 0.0212321 0.0168001 1.49958e-11 2.15012e-15 0.0168001 2.4851e-10 7.15812e-15 0.0168001 5.21336e-10 1.56529e-14 0.0168001 2.23594e-09 2.13821e-14 0.0168001 3.89062e-09 3.34261e-14 0.0168001 1.44149e-08 3.85008e-14 0.0168001 2.43215e-08 5.25106e-14 0.0168 8.74559e-08 5.43634e-14 0.0168001 1.46483e-07 6.5504e-14 0.0167999 5.24154e-07 5.24557e-14 0.0168002 8.70617e-07 4.15441e-14 0.0167995 3.15218e-06 -3.85048e-14 0.0168008 5.07021e-06 -1.61129e-13 0.016798 1.9676e-05 -4.69613e-13 0.0168092 2.83806e-05 -1.23377e-12 0.0167996 0.000134083 -1.6765e-12 0.0169141 0.000191937 -4.82418e-12 0.0171235 0.00105039 -1.0107e-12 0.0183013 0.00271758 7.84776e-12 0.023442 0.0107133 6.41194e-11 0.0238518 0.0202394 5.40853e-11 0.0238195 0.0214496 5.02564e-11 0.0231899 0.0213083 5.03797e-11 0.0224539 0.0197354 2.41416e-11 0.017977 1.45069e-11 0.0219922 0.0168001 2.09123e-11 1.42002e-15 0.0168001 1.20814e-10 8.93609e-15 0.0168001 4.48815e-10 1.30761e-14 0.0168001 1.16915e-09 2.49233e-14 0.0168001 3.26118e-09 2.9747e-14 0.0168001 7.62505e-09 4.40194e-14 0.0168001 2.01525e-08 4.80584e-14 0.0168001 4.62521e-08 6.28578e-14 0.0168001 1.20567e-07 6.10547e-14 0.0168002 2.75987e-07 6.95226e-14 0.0168001 7.1683e-07 3.71218e-14 0.0168012 1.63894e-06 3.38764e-16 0.0168003 4.32908e-06 -1.63171e-13 0.0168081 9.7162e-06 -5.04739e-13 0.0168 2.75574e-05 -9.33604e-13 0.0168595 5.99909e-05 -3.11283e-12 0.0168325 0.00018861 -1.86463e-12 0.0173468 0.000463033 -1.22334e-11 0.0182862 0.00169329 2.04937e-12 0.0232636 0.00529734 -4.25843e-12 0.0249884 0.0182539 4.53913e-11 0.0251238 0.0212798 5.34249e-11 0.0245933 0.0217689 6.45914e-11 0.0234336 0.0207472 4.17707e-11 0.0185754 2.36744e-11 0.022667 0.0168001 2.09408e-11 1.44734e-15 0.0168001 6.88448e-11 8.9726e-15 0.0168001 3.65824e-10 1.3236e-14 0.0168001 7.00451e-10 2.51319e-14 0.0168001 2.62254e-09 3.01207e-14 0.0168001 4.63799e-09 4.45339e-14 0.0168001 1.62905e-08 4.89674e-14 0.0168001 2.84303e-08 6.42396e-14 0.0168001 9.8474e-08 6.42658e-14 0.0168001 1.71159e-07 7.3963e-14 0.0168 5.91747e-07 5.1469e-14 0.0168004 1.02085e-06 2.58644e-14 0.0167999 3.56778e-06 -1.07213e-13 0.0168022 5.98272e-06 -3.2164e-13 0.0168012 2.22912e-05 -9.11463e-13 0.0168199 3.38791e-05 -2.06702e-12 0.0168259 0.000152462 -4.36286e-12 0.0170147 0.00023847 -8.49668e-12 0.0174154 0.00120513 -1.67587e-11 0.0191538 0.00338607 -1.95631e-11 0.0247776 0.0118788 -1.03933e-12 0.0254011 0.0204829 4.24427e-11 0.0254596 0.0215339 4.40087e-11 0.0246464 0.0215223 5.59724e-11 0.0195629 3.96949e-11 0.0236913 0.0168001 8.08994e-12 2.2009e-15 0.0168001 5.77323e-11 7.38054e-15 0.0168001 1.8075e-10 1.6264e-14 0.0168001 5.49045e-10 2.19333e-14 0.0168001 1.32707e-09 3.47196e-14 0.0168001 3.58497e-09 4.0079e-14 0.0168001 8.28385e-09 5.5277e-14 0.0168001 2.18313e-08 5.90992e-14 0.0168001 5.00527e-08 7.42206e-14 0.0168001 1.30984e-07 6.98825e-14 0.0168003 2.99905e-07 7.50958e-14 0.0168001 7.84445e-07 2.45443e-14 0.0168014 1.79413e-06 -4.34056e-14 0.0168004 4.76455e-06 -2.99012e-13 0.0168094 1.07937e-05 -8.54305e-13 0.0168027 3.00251e-05 -1.55275e-12 0.0168676 6.76639e-05 -4.78436e-12 0.0168663 0.000202129 -5.07569e-12 0.0174548 0.00051891 -2.1815e-11 0.0189077 0.00183424 -1.43101e-11 0.0244791 0.00567193 -7.65413e-11 0.0263806 0.0182856 9.28751e-12 0.0266418 0.0211642 4.7089e-11 0.0259251 0.022111 3.97625e-11 0.0206553 5.4247e-11 0.0247866 0.0168001 3.19484e-12 2.19685e-15 0.0168001 4.4717e-11 7.46044e-15 0.0168001 1.0152e-10 1.62632e-14 0.0168001 4.06964e-10 2.22506e-14 0.0168001 7.5878e-10 3.48871e-14 0.0168001 2.64475e-09 4.05486e-14 0.0168001 4.77744e-09 5.58405e-14 0.0168001 1.61691e-08 6.03071e-14 0.0168001 2.90524e-08 7.6198e-14 0.0168001 9.76216e-08 7.52462e-14 0.0168001 1.74958e-07 8.40483e-14 0.0168001 5.87951e-07 5.47651e-14 0.0168005 1.04736e-06 1.89134e-14 0.0168004 3.56015e-06 -1.54143e-13 0.0168034 6.17339e-06 -4.24714e-13 0.0168038 2.2344e-05 -1.31106e-12 0.0168287 3.51209e-05 -2.45154e-12 0.016841 0.000152288 -7.96956e-12 0.0170782 0.000245439 -1.2011e-11 0.0175974 0.00119155 -4.04822e-11 0.0197692 0.00333171 -6.94388e-11 0.0257764 0.011219 -1.18572e-10 0.0263937 0.0202404 3.74416e-12 0.0272162 0.0212347 2.56863e-11 0.0216563 5.76172e-11 0.0263107 0.0168001 3.48606e-12 1.42555e-15 0.0168001 2.01285e-11 9.24027e-15 0.0168001 7.48686e-11 1.35414e-14 0.0168001 1.95435e-10 2.58648e-14 0.0168001 5.48151e-10 3.09204e-14 0.0168001 1.28636e-09 4.59425e-14 0.0168001 3.42333e-09 5.09784e-14 0.0168001 7.88443e-09 6.77553e-14 0.0168001 2.06982e-08 7.12354e-14 0.0168001 4.75229e-08 8.73812e-14 0.0168001 1.24141e-07 8.23629e-14 0.0168003 2.84987e-07 8.78949e-14 0.0168002 7.44923e-07 3.39753e-14 0.0168016 1.7072e-06 -3.62655e-14 0.016801 4.54493e-06 -3.41385e-13 0.0168101 1.02636e-05 -9.80068e-13 0.0168041 2.89764e-05 -2.06888e-12 0.0168724 6.39579e-05 -6.72692e-12 0.0168739 0.000198245 -7.20705e-12 0.017481 0.000483485 -3.65775e-11 0.0189127 0.00176522 -3.18429e-11 0.0242638 0.00529768 -1.04058e-10 0.0272555 0.0166643 -1.00208e-10 0.0274299 0.0209301 2.00267e-11 0.0215076 3.67912e-11 0.0275323 0.0168001 2.86024e-12 1.48061e-15 0.0168001 1.01987e-11 9.23216e-15 0.0168001 5.10935e-11 1.38303e-14 0.0168001 1.03614e-10 2.60629e-14 0.0168001 3.71167e-10 3.13391e-14 0.0168001 6.94745e-10 4.63777e-14 0.0168001 2.33626e-09 5.16092e-14 0.0168001 4.32149e-09 6.85759e-14 0.0168001 1.42696e-08 7.27405e-14 0.0168001 2.63471e-08 8.98714e-14 0.0168001 8.62784e-08 8.90366e-14 0.0168002 1.58934e-07 9.96789e-14 0.0168002 5.19407e-07 7.08527e-14 0.0168006 9.50767e-07 3.90319e-14 0.0168007 3.14196e-06 -1.54636e-13 0.0168036 5.61621e-06 -4.36662e-13 0.0168048 1.96254e-05 -1.60945e-12 0.0168281 3.25224e-05 -2.7656e-12 0.0168487 0.00013128 -1.12394e-11 0.0170645 0.000222348 -1.51348e-11 0.0176702 0.000991862 -6.69155e-11 0.0199503 0.00272059 -1.25278e-10 0.0260357 0.00910743 -3.13986e-10 0.0275974 0.019207 -3.41792e-11 0.0207967 3.64831e-11 0.0284154 0.0168001 1.0283e-12 2.19346e-15 0.0168001 7.36386e-12 8.09336e-15 0.0168001 2.30253e-11 1.71353e-14 0.0168001 7.051e-11 2.34799e-14 0.0168001 1.71256e-10 3.66068e-14 0.0168001 4.68267e-10 4.23212e-14 0.0168001 1.08903e-09 5.8239e-14 0.0168001 2.89926e-09 6.31235e-14 0.0168001 6.68524e-09 8.04674e-14 0.0168001 1.75766e-08 8.38056e-14 0.0168001 4.04356e-08 1.00277e-13 0.0168001 1.05297e-07 9.62558e-14 0.0168003 2.42064e-07 1.037e-13 0.0168003 6.27199e-07 5.4715e-14 0.0168016 1.43944e-06 -7.71867e-16 0.0168015 3.7871e-06 -3.00797e-13 0.0168098 8.54515e-06 -7.41101e-13 0.0168063 2.43219e-05 -2.47555e-12 0.0168717 5.20051e-05 -4.82648e-12 0.0168642 0.000169122 -1.48035e-11 0.0173995 0.000379874 -3.19651e-11 0.0184146 0.00148109 -6.78899e-11 0.0228511 0.00424668 -1.41173e-10 0.0276978 0.0135785 -1.98845e-10 0.0202547 -9.90821e-12 0.0281718 0.0168001 3.73411e-13 2.27225e-15 0.0168001 4.69138e-12 8.79586e-15 0.0168001 1.1161e-11 1.84846e-14 0.0168001 4.31842e-11 2.43859e-14 0.0168001 8.46157e-11 3.79433e-14 0.0168001 2.86373e-10 4.30864e-14 0.0168001 5.45201e-10 5.89345e-14 0.0168001 1.78916e-09 6.35747e-14 0.0168001 3.3904e-09 8.06385e-14 0.0168001 1.10052e-08 8.45767e-14 0.0168001 2.08191e-08 1.01648e-13 0.0168001 6.72115e-08 1.01432e-13 0.0168001 1.26971e-07 1.12346e-13 0.0168002 4.08866e-07 8.57625e-14 0.0168006 7.70237e-07 5.76642e-14 0.0168008 2.48852e-06 -1.10431e-13 0.0168032 4.63674e-06 -3.44194e-13 0.0168064 1.53408e-05 -1.2826e-12 0.0168215 2.79078e-05 -2.4506e-12 0.0168617 9.76362e-05 -8.55513e-12 0.0170049 0.000187036 -1.2694e-11 0.0176591 0.000687743 -5.45426e-11 0.0196302 0.0019126 -1.25519e-10 0.0260825 0.00611148 -3.96032e-10 0.0170426 -1.2783e-10 0.0288109 0.0168001 3.84386e-13 9.24876e-15 0.0168001 1.60176e-12 1.36734e-14 0.0168001 7.41161e-12 1.94166e-14 0.0168001 1.63074e-11 2.95744e-14 0.0168001 5.51836e-11 3.39891e-14 0.0168001 1.12277e-10 4.7577e-14 0.0168001 3.58307e-10 5.15119e-14 0.0168001 7.20062e-10 6.82612e-14 0.0168001 2.25656e-09 7.13228e-14 0.0168001 4.52401e-09 9.08052e-14 0.0168001 1.40245e-08 9.34427e-14 0.0168001 2.81093e-08 1.14375e-13 0.0168001 8.63272e-08 1.11255e-13 0.0168003 1.72969e-07 1.26891e-13 0.0168003 5.2765e-07 8.62371e-14 0.0168014 1.05308e-06 5.78329e-14 0.0168014 3.2284e-06 -1.78399e-13 0.0168085 6.30203e-06 -4.37025e-13 0.0168069 2.03969e-05 -2.07379e-12 0.0168589 3.71533e-05 -3.49191e-12 0.016858 0.000136241 -1.46243e-11 0.0172333 0.000254619 -2.40914e-11 0.0178841 0.00103105 -1.05117e-10 0.0208021 0.00283635 -2.0033e-10 0.00886283 -4.49256e-10 0.0272361 0.0168001 1.32022e-13 9.17195e-15 0.0168001 9.30467e-13 1.8548e-14 0.0168001 2.90181e-12 2.28091e-14 0.0168001 9.044e-12 2.97279e-14 0.0168001 2.21752e-11 3.90607e-14 0.0168001 6.27246e-11 4.38336e-14 0.0168001 1.47873e-10 5.74364e-14 0.0168001 4.08845e-10 6.03365e-14 0.0168001 9.53315e-10 7.8482e-14 0.0168001 2.60101e-09 7.95821e-14 0.0168001 6.03296e-09 1.02092e-13 0.0168001 1.62424e-08 1.01404e-13 0.0168001 3.75233e-08 1.26349e-13 0.0168001 9.96856e-08 1.1525e-13 0.0168003 2.29434e-07 1.32753e-13 0.0168004 6.03423e-07 6.59294e-14 0.0168018 1.38256e-06 6.51385e-15 0.0168022 3.66643e-06 -3.82831e-13 0.0168114 8.28334e-06 -9.20893e-13 0.0168111 2.33091e-05 -3.26528e-12 0.0168794 5.07272e-05 -6.35485e-12 0.0169009 0.000159732 -2.00512e-11 0.0174663 0.000363855 -4.18837e-11 0.0186948 0.00134585 -9.91025e-11 0.0038133 -2.17849e-10 0.0232044 0.0168001 2.07247e-14 7.80068e-15 0.0168001 5.04007e-13 2.19172e-14 0.0168001 9.45848e-13 2.52766e-14 0.0168001 4.66871e-12 3.13655e-14 0.0168001 8.06405e-12 3.9457e-14 0.0168001 3.25362e-11 4.45309e-14 0.0168001 5.8563e-11 5.73431e-14 0.0168001 2.10162e-10 6.04691e-14 0.0168001 4.02693e-10 7.8544e-14 0.0168001 1.3454e-09 7.94021e-14 0.0168001 2.66545e-09 1.03678e-13 0.0168001 8.58511e-09 1.00776e-13 0.0168001 1.7071e-08 1.30908e-13 0.0168001 5.40278e-08 1.19856e-13 0.0168002 1.06657e-07 1.45257e-13 0.0168002 3.35263e-07 1.00582e-13 0.0168007 6.54914e-07 7.33934e-14 0.0168009 2.06561e-06 -1.53166e-13 0.0168035 3.98514e-06 -4.78937e-13 0.0168066 1.27567e-05 -1.68573e-12 0.0168217 2.46696e-05 -3.73225e-12 0.0168644 8.02195e-05 -9.74309e-12 0.0169874 0.000169325 -2.21057e-11 0.0176378 0.000569543 -4.97472e-11 0.0016235 -1.11131e-10 0.0195878 0.0168001 1.14923e-14 7.29293e-15 0.0168001 9.14837e-14 2.26402e-14 0.0168001 4.38896e-13 2.76638e-14 0.0168001 9.41013e-13 3.18878e-14 0.0168001 3.76785e-12 3.78934e-14 0.0168001 7.80864e-12 4.86303e-14 0.0168001 2.77036e-11 5.12532e-14 0.0168001 6.29193e-11 6.8158e-14 0.0168001 1.92587e-10 7.12774e-14 0.0168001 4.63775e-10 9.1445e-14 0.0168001 1.31636e-09 9.20244e-14 0.0168001 3.2086e-09 1.20371e-13 0.0168001 8.84945e-09 1.16504e-13 0.0168001 2.12613e-08 1.4999e-13 0.0168001 5.76665e-08 1.37863e-13 0.0168002 1.36187e-07 1.61642e-13 0.0168002 3.65472e-07 1.14662e-13 0.0168011 8.53511e-07 7.98476e-14 0.0168013 2.28385e-06 -1.68232e-13 0.0168067 5.29344e-06 -4.8433e-13 0.0168088 1.42537e-05 -2.10787e-12 0.016845 3.31484e-05 -2.77102e-12 0.0168745 9.10054e-05 -1.55541e-11 0.0171654 0.000222363 -1.60568e-11 0.000675485 -9.57307e-11 0.0178782 0.0168001 5.09987e-15 6.90919e-15 0.0168001 -3.6086e-15 2.38124e-14 0.0168001 1.29778e-13 2.79815e-14 0.0168001 8.34889e-14 3.20997e-14 0.0168001 9.87079e-13 4.29204e-14 0.0168001 1.16929e-12 4.04787e-14 0.0168001 6.94998e-12 6.82748e-14 0.0168001 1.20482e-11 5.10932e-14 0.0168001 5.49406e-11 8.65023e-14 0.0168001 1.26263e-10 8.804e-14 0.0168001 4.67913e-10 1.06499e-13 0.0168001 1.15273e-09 1.25644e-13 0.0168001 3.58822e-09 1.37009e-13 0.0168001 8.67441e-09 1.69208e-13 0.0168001 2.50872e-08 1.71712e-13 0.0168001 5.89096e-08 1.94653e-13 0.0168002 1.65377e-07 1.66576e-13 0.0168005 3.81222e-07 1.4446e-13 0.0168009 1.0504e-06 1.19569e-14 0.0168027 2.39968e-06 -1.74351e-13 0.016806 6.54979e-06 -9.24263e-13 0.0168176 1.49811e-05 -2.06103e-12 0.0168418 4.08517e-05 -6.81696e-12 0.0169193 9.73213e-05 -1.46972e-11 0.000273481 -4.65635e-11 0.0171621 0.0168001 2.74916e-15 7.37516e-15 0.0168001 -1.49378e-14 2.27679e-14 0.0168001 4.63306e-14 2.74167e-14 0.0168001 -4.8665e-14 3.26355e-14 0.0168001 2.92602e-13 3.55258e-14 0.0168001 -6.3857e-14 4.85949e-14 0.0168001 1.09993e-12 5.235e-14 0.0168001 1.0725e-12 7.64322e-14 0.0168001 1.10313e-11 8.77677e-14 0.0168001 2.0018e-11 1.17406e-13 0.0168001 1.08117e-10 1.19578e-13 0.0168001 2.94413e-10 1.5363e-13 0.0168001 1.1368e-09 1.54395e-13 0.0168001 2.95835e-09 1.76964e-13 0.0168001 9.69781e-09 1.69072e-13 0.0168001 2.37165e-08 1.80883e-13 0.0168001 6.97279e-08 1.75024e-13 0.0168003 1.64772e-07 1.8707e-13 0.0168005 4.63707e-07 1.32305e-13 0.0168013 1.0677e-06 6.33229e-14 0.0168029 2.93559e-06 -2.98706e-13 0.0168084 6.63849e-06 -7.56008e-13 0.0168174 1.83825e-05 -3.42654e-12 0.0168633 4.09185e-05 -4.00669e-12 0.000119651 -2.71151e-11 0.0169265 0.0168001 7.28204e-16 7.3354e-15 0.0168001 9.86152e-15 2.32261e-14 0.0168001 3.87884e-15 2.7003e-14 0.0168001 1.09672e-13 3.21688e-14 0.0168001 1.78296e-14 3.95813e-14 0.0168001 5.45198e-13 4.35693e-14 0.0168001 8.45996e-13 5.99798e-14 0.0168001 2.21149e-12 7.44925e-14 0.0168001 6.07474e-12 9.59853e-14 0.0168001 6.35439e-12 1.22281e-13 0.0168001 3.98801e-11 1.47306e-13 0.0168001 7.90648e-11 1.54749e-13 0.0168001 2.46675e-10 1.70569e-13 0.0168001 6.53133e-10 1.75465e-13 0.0168001 2.65719e-09 1.78062e-13 0.0168001 6.85535e-09 1.89087e-13 0.0168001 2.66639e-08 1.90122e-13 0.0168002 5.85388e-08 2.00971e-13 0.0168003 1.95707e-07 1.7845e-13 0.0168007 4.19877e-07 1.49487e-13 0.0168013 1.30013e-06 -1.78893e-14 0.0168039 2.72664e-06 -2.65963e-13 0.0168077 8.27058e-06 -1.34021e-12 0.0168225 1.70971e-05 -2.95386e-12 5.22407e-05 -1.01238e-11 0.01685 0.0168001 1.05346e-14 7.41974e-15 0.0168001 -2.53887e-14 2.29261e-14 0.0168001 7.38412e-14 2.76566e-14 0.0168001 2.05603e-14 3.27362e-14 0.0168001 1.87756e-13 3.70092e-14 0.0168001 3.87e-13 4.81042e-14 0.0168001 3.40692e-13 5.74792e-14 0.0168001 2.14814e-12 7.0313e-14 0.0168001 4.39513e-12 9.6137e-14 0.0168001 1.59985e-11 1.32136e-13 0.0168001 2.79894e-11 1.45931e-13 0.0168001 2.0063e-11 1.53401e-13 0.0168001 1.64223e-10 1.68727e-13 0.0168001 1.37753e-10 1.7894e-13 0.0168001 7.64033e-10 1.99048e-13 0.0168001 1.48187e-09 2.00722e-13 0.0168001 5.20458e-09 2.01419e-13 0.0168001 1.95364e-08 2.02112e-13 0.0168003 5.14783e-08 2.05563e-13 0.0168003 1.78994e-07 1.91879e-13 0.016801 4.0865e-07 1.75797e-13 0.0168013 1.27903e-06 2.25613e-15 0.0168051 2.82229e-06 -2.71916e-13 0.0168068 8.40259e-06 -1.50288e-12 1.83003e-05 -3.5132e-12 0.0168291 0.0168001 2.32404e-15 7.42846e-15 0.0168001 1.20577e-14 2.29001e-14 0.0168001 4.9275e-14 2.86173e-14 0.0168001 1.75497e-13 3.41886e-14 0.0168001 2.97866e-13 3.64086e-14 0.0168001 1.14952e-12 5.16888e-14 0.0168001 1.74902e-12 5.38884e-14 0.0168001 5.59891e-12 8.62946e-14 0.0168001 1.03425e-11 8.97111e-14 0.0168001 1.60183e-11 1.32905e-13 0.0168001 3.06695e-11 1.38958e-13 0.0168001 7.23472e-11 1.59936e-13 0.0168001 4.41426e-11 1.65811e-13 0.0168001 2.3707e-10 1.8383e-13 0.0168001 2.12286e-10 1.90036e-13 0.0168001 1.08412e-09 2.07434e-13 0.0168001 8.85197e-10 2.13869e-13 0.0168002 4.36748e-09 2.3105e-13 0.0168002 1.1217e-08 2.30078e-13 0.0168003 3.73786e-08 2.31363e-13 0.0168004 1.46977e-07 2.17104e-13 0.0168011 3.55036e-07 1.5941e-13 0.0168015 1.19099e-06 -1.56102e-14 0.0168054 2.67557e-06 -3.32268e-13 8.1824e-06 -1.56087e-12 0.016808 0.0168001 -6.48353e-17 7.36698e-15 0.0168001 8.52438e-15 2.29611e-14 0.0168001 1.16579e-14 2.87786e-14 0.0168001 7.98893e-14 3.39087e-14 0.0168001 1.06072e-13 3.64616e-14 0.0168001 4.55392e-13 4.91239e-14 0.0168001 6.94818e-13 5.52075e-14 0.0168001 2.27252e-12 7.84586e-14 0.0168001 3.68326e-12 8.74068e-14 0.0168001 7.5974e-12 1.32672e-13 0.0168001 1.27246e-11 1.46061e-13 0.0168001 -2.12243e-11 1.57639e-13 0.0168001 8.45815e-11 1.72588e-13 0.0168001 1.95401e-11 1.81989e-13 0.0168001 3.73866e-10 1.95835e-13 0.0168001 7.69377e-11 2.02758e-13 0.0168001 1.24392e-09 2.22025e-13 0.0168001 5.51062e-10 2.29989e-13 0.0168002 5.4962e-09 2.48147e-13 0.0168003 4.90509e-09 2.54667e-13 0.0168005 2.74357e-08 2.54077e-13 0.0168006 9.2495e-08 2.1577e-13 0.0168015 2.96159e-07 1.83836e-13 0.016802 9.64806e-07 -3.35039e-15 2.4966e-06 -3.00047e-13 0.016806 0.0168001 -4.24899e-16 7.36271e-15 0.0168001 8.45726e-15 2.29397e-14 0.0168001 1.04933e-14 2.88699e-14 0.0168001 5.15377e-14 3.39126e-14 0.0168001 4.72335e-14 3.65927e-14 0.0168001 1.99289e-13 4.89662e-14 0.0168001 6.65601e-14 5.57152e-14 0.0168001 5.30635e-13 7.79779e-14 0.0168001 2.57913e-13 8.79456e-14 0.0168001 6.84966e-13 1.32469e-13 0.0168001 4.268e-12 1.37485e-13 0.0168001 -5.89014e-12 1.64615e-13 0.0168001 4.46139e-11 1.71559e-13 0.0168001 9.534e-11 1.88015e-13 0.0168001 2.59619e-10 1.95405e-13 0.0168001 3.40257e-10 2.09597e-13 0.0168001 8.29452e-10 2.16891e-13 0.0168001 1.67466e-09 2.3485e-13 0.0168002 3.36346e-09 2.43689e-13 0.0168003 5.90762e-09 2.59963e-13 0.0168004 8.65647e-09 2.63593e-13 0.0168006 2.06794e-08 2.61741e-13 0.0168011 5.01195e-08 2.55296e-13 0.0168016 2.20124e-07 1.92521e-13 6.05876e-07 1.04501e-13 0.0168035 0.0168001 -4.96836e-16 7.36793e-15 0.0168001 3.01939e-15 2.28994e-14 0.0168001 1.54065e-16 2.88529e-14 0.0168001 1.61826e-14 3.38625e-14 0.0168001 6.53015e-15 3.65668e-14 0.0168001 4.84813e-14 4.9025e-14 0.0168001 -9.89866e-15 5.67591e-14 0.0168001 7.46145e-14 7.76859e-14 0.0168001 4.66916e-14 8.96828e-14 0.0168001 4.51536e-14 1.34409e-13 0.0168001 3.14433e-12 1.39566e-13 0.0168001 1.29773e-11 1.62962e-13 0.0168001 4.65722e-11 1.70274e-13 0.0168001 1.14665e-10 1.88221e-13 0.0168001 2.49175e-10 1.95308e-13 0.0168001 4.26941e-10 2.10934e-13 0.0168001 9.22419e-10 2.1673e-13 0.0168001 2.8114e-09 2.31234e-13 0.0168002 3.389e-09 2.36705e-13 0.0168003 1.04579e-08 2.51175e-13 0.0168004 5.53405e-09 2.55928e-13 0.0168006 2.44027e-08 2.7298e-13 0.0168008 1.23102e-08 2.77627e-13 0.0168017 6.75955e-08 3.0194e-13 1.19146e-07 2.61644e-13 0.0168025 0.0168001 -1.55204e-16 7.36824e-15 0.0168001 4.32217e-16 2.28939e-14 0.0168001 1.40133e-16 2.88318e-14 0.0168001 1.69401e-15 3.38143e-14 0.0168001 3.51769e-15 3.65928e-14 0.0168001 5.15235e-15 4.9062e-14 0.0168001 1.32586e-14 5.71524e-14 0.0168001 5.44386e-14 7.81909e-14 0.0168001 1.73374e-13 9.11098e-14 0.0168001 2.30333e-13 1.36914e-13 0.0168001 4.08184e-12 1.42118e-13 0.0168001 2.05187e-11 1.64768e-13 0.0168001 4.23493e-11 1.73285e-13 0.0168001 1.00283e-10 1.90398e-13 0.0168001 2.02582e-10 1.95984e-13 0.0168001 4.34091e-10 1.99285e-13 0.0168001 8.81394e-10 2.06884e-13 0.0168001 1.15337e-09 1.95524e-13 0.0168001 3.14317e-09 2.57143e-13 0.0168002 1.84243e-09 2.55112e-13 0.0168004 9.62128e-09 2.50954e-13 0.0168005 3.1079e-09 2.64969e-13 0.0168008 2.28764e-08 3.15371e-13 0.0168013 5.42006e-09 3.14205e-13 6.46553e-08 3.28596e-13 0.0168023 0.0168001 -3.35561e-17 7.36024e-15 0.0168001 -3.35073e-16 2.29033e-14 0.0168001 -8.40257e-16 2.88287e-14 0.0168001 -2.31222e-15 3.38081e-14 0.0168001 -1.94072e-15 3.65665e-14 0.0168001 -8.23229e-15 4.90611e-14 0.0168001 -1.04077e-14 5.70857e-14 0.0168001 1.31428e-14 7.80351e-14 0.0168001 1.16219e-13 9.10193e-14 0.0168001 3.99747e-13 1.37108e-13 0.0168001 5.00217e-12 1.42697e-13 0.0168001 2.82856e-11 1.67184e-13 0.0168001 2.89264e-11 1.74048e-13 0.0168001 7.33425e-11 1.88081e-13 0.0168001 1.41826e-10 1.93384e-13 0.0168001 7.354e-10 1.95094e-13 0.0168001 2.77064e-10 1.98057e-13 0.0168001 1.22805e-09 2.141e-13 0.0168002 6.1478e-10 2.26198e-13 0.0168002 3.42729e-09 2.61842e-13 0.0168004 1.93571e-09 2.72682e-13 0.0168005 6.39432e-09 2.69814e-13 0.0168008 3.30282e-09 2.78191e-13 0.0168013 1.65411e-08 2.91255e-13 7.60478e-09 3.13658e-13 0.0168021 0.0168001 3.68629e-18 7.36133e-15 0.0168001 -3.27104e-16 2.29029e-14 0.0168001 -6.41631e-16 2.88258e-14 0.0168001 -2.14992e-15 3.38078e-14 0.0168001 -3.30964e-15 3.65584e-14 0.0168001 -9.11391e-15 4.90821e-14 0.0168001 -1.3135e-14 5.70638e-14 0.0168001 -1.65152e-14 7.81642e-14 0.0168001 6.99384e-14 9.07178e-14 0.0168001 -1.72546e-13 1.37044e-13 0.0168001 2.57e-12 1.40828e-13 0.0168001 1.45586e-11 1.61347e-13 0.0168001 1.18984e-11 1.69522e-13 0.0168001 2.1563e-11 1.85068e-13 0.0168001 3.25963e-11 1.99808e-13 0.0168001 3.17006e-10 2.06562e-13 0.0168001 -4.42634e-11 2.18924e-13 0.0168001 4.24898e-10 2.34112e-13 0.0168002 -1.98979e-10 2.37416e-13 0.0168002 1.31947e-09 2.72345e-13 0.0168004 1.72647e-10 2.61624e-13 0.0168005 2.37466e-09 2.47049e-13 0.0168008 -5.51587e-10 3.00406e-13 0.0168014 5.83798e-09 2.65846e-13 -6.04546e-10 3.30817e-13 0.0168022 0.0168001 1.09504e-17 7.36211e-15 0.0168001 -1.22515e-16 2.29037e-14 0.0168001 -2.43241e-16 2.8824e-14 0.0168001 -8.421e-16 3.38078e-14 0.0168001 -1.52775e-15 3.65553e-14 0.0168001 -3.78706e-15 4.90929e-14 0.0168001 -5.11359e-15 5.70398e-14 0.0168001 -1.85949e-14 7.81545e-14 0.0168001 1.62977e-14 9.04463e-14 0.0168001 -1.51007e-13 1.37337e-13 0.0168001 1.138e-12 1.40898e-13 0.0168001 6.47971e-12 1.62075e-13 0.0168001 3.97929e-13 1.71207e-13 0.0168001 1.88841e-12 1.86572e-13 0.0168001 2.74148e-11 1.90542e-13 0.0168001 7.07561e-11 2.0255e-13 0.0168001 -4.41543e-11 2.21967e-13 0.0168001 7.62536e-11 2.31389e-13 0.0168002 -6.52003e-12 2.44958e-13 0.0168002 1.65146e-10 2.50846e-13 0.0168004 6.7461e-11 2.67805e-13 0.0168005 3.12288e-10 2.63688e-13 0.0168008 -3.12611e-11 2.95602e-13 0.0168014 7.77539e-10 2.74988e-13 -2.22443e-10 3.25902e-13 0.0168022 0.0168001 3.7405e-18 7.36232e-15 0.0168001 -3.57245e-17 2.2904e-14 0.0168001 -5.02528e-17 2.88233e-14 0.0168001 -2.14184e-16 3.38078e-14 0.0168001 -4.40457e-16 3.65551e-14 0.0168001 -1.00256e-15 4.90959e-14 0.0168001 -1.94614e-15 5.70336e-14 0.0168001 -5.11098e-15 7.81807e-14 0.0168001 -3.11654e-16 9.04082e-14 0.0168001 -2.41238e-14 1.37453e-13 0.0168001 2.55362e-13 1.41183e-13 0.0168001 1.65514e-12 1.63522e-13 0.0168001 -4.37016e-13 1.71116e-13 0.0168001 -1.60229e-13 1.86795e-13 0.0168001 6.63412e-12 1.8649e-13 0.0168001 1.3526e-11 2.01069e-13 0.0168001 -9.52363e-12 2.26085e-13 0.0168001 4.50734e-12 2.30981e-13 0.0168002 2.6439e-11 2.42711e-13 0.0168002 -1.16597e-11 2.53542e-13 0.0168004 5.70742e-11 2.66258e-13 0.0168005 2.54824e-11 2.69543e-13 0.0168008 7.38359e-11 2.89253e-13 0.0168014 1.041e-10 2.84685e-13 -4.94319e-11 3.12727e-13 0.0168022 0.0168001 1.89735e-18 7.36237e-15 0.0168001 -7.64363e-18 2.29041e-14 0.0168001 -1.07336e-17 2.8823e-14 0.0168001 -2.23346e-17 3.38077e-14 0.0168001 -7.79541e-17 3.65552e-14 0.0168001 -1.37802e-16 4.9096e-14 0.0168001 -5.44649e-16 5.70357e-14 0.0168001 -6.96275e-16 7.81813e-14 0.0168001 -3.00937e-15 9.0408e-14 0.0168001 3.44001e-15 1.37331e-13 0.0168001 2.98558e-14 1.41373e-13 0.0168001 2.55649e-13 1.63761e-13 0.0168001 -3.82223e-14 1.71839e-13 0.0168001 5.11592e-14 1.86075e-13 0.0168001 1.52e-13 1.86413e-13 0.0168001 8.16523e-13 2.00991e-13 0.0168001 1.56477e-12 2.24439e-13 0.0168001 -3.83905e-12 2.31927e-13 0.0168002 1.49509e-11 2.42696e-13 0.0168002 -1.34721e-11 2.54683e-13 0.0168004 2.70143e-11 2.64379e-13 0.0168005 -1.43802e-11 2.73039e-13 0.0168008 4.05168e-11 2.85127e-13 0.0168014 5.046e-12 2.90134e-13 -2.19918e-11 3.07344e-13 0.0168022 0.0168001 1.84314e-18 7.36236e-15 0.0168001 -3.1984e-18 2.29041e-14 0.0168001 1.21431e-17 2.8823e-14 0.0168001 -2.00577e-18 3.38076e-14 0.0168001 -7.64363e-18 3.65552e-14 0.0168001 2.82435e-17 4.9096e-14 0.0168001 -1.68756e-16 5.70365e-14 0.0168001 1.44307e-16 7.81839e-14 0.0168001 -1.67807e-15 9.04104e-14 0.0168001 4.18139e-15 1.37323e-13 0.0168001 -2.96952e-15 1.41356e-13 0.0168001 -1.07114e-14 1.63641e-13 0.0168001 8.1589e-14 1.71858e-13 0.0168001 7.81282e-14 1.86344e-13 0.0168001 -9.13182e-13 1.84324e-13 0.0168001 -8.10894e-13 2.00558e-13 0.0168001 1.81294e-12 2.27444e-13 0.0168001 -1.70809e-12 2.31746e-13 0.0168002 5.26168e-12 2.41889e-13 0.0168003 -4.34142e-12 2.55256e-13 0.0168004 9.64829e-12 2.64491e-13 0.0168005 -6.36253e-12 2.73934e-13 0.0168008 1.27506e-11 2.83583e-13 0.0168014 -3.15531e-12 2.91578e-13 -3.44472e-12 3.05411e-13 0.0168022 0.0168001 -3.14419e-18 7.36238e-15 0.0168001 4.60786e-18 2.29041e-14 0.0168001 -6.77626e-18 2.8823e-14 0.0168001 -4.77049e-18 3.38077e-14 0.0168001 -1.79978e-17 3.65553e-14 0.0168001 -5.1337e-17 4.90961e-14 0.0168001 -1.38561e-16 5.70368e-14 0.0168001 -1.65341e-17 7.81861e-14 0.0168001 -8.05129e-16 9.04111e-14 0.0168001 1.80964e-15 1.37331e-13 0.0168001 -4.17364e-15 1.41311e-13 0.0168001 -3.14264e-14 1.63485e-13 0.0168001 5.67873e-14 1.71979e-13 0.0168001 4.73884e-14 1.86387e-13 0.0168001 -4.86638e-13 1.83882e-13 0.0168001 -4.6156e-13 2.00561e-13 0.0168001 7.06597e-13 2.2751e-13 0.0168001 -5.15353e-13 2.32026e-13 0.0168002 1.65216e-12 2.423e-13 0.0168003 -1.05946e-12 2.54987e-13 0.0168004 3.15174e-12 2.64682e-13 0.0168005 -1.81857e-12 2.73763e-13 0.0168008 3.68559e-12 2.83725e-13 0.0168014 -9.95314e-13 2.91948e-13 -3.06557e-13 3.04961e-13 0.0168022 0.0168001 6.50521e-19 7.36238e-15 0.0168001 -7.31836e-18 2.29041e-14 0.0168001 -1.34983e-17 2.88229e-14 0.0168001 -3.52908e-17 3.38077e-14 0.0168001 -7.21537e-17 3.65552e-14 0.0168001 -1.42464e-16 4.90963e-14 0.0168001 -2.87368e-16 5.70367e-14 0.0168001 -2.23834e-16 7.81885e-14 0.0168001 -2.10823e-16 9.04141e-14 0.0168001 4.16605e-16 1.37347e-13 0.0168001 1.31378e-15 1.4122e-13 0.0168001 4.72414e-15 1.63158e-13 0.0168001 2.24864e-14 1.7214e-13 0.0168001 2.48356e-14 1.86462e-13 0.0168001 -1.63615e-13 1.82915e-13 0.0168001 -1.39866e-13 2.00561e-13 0.0168001 2.13409e-13 2.27434e-13 0.0168001 -1.39233e-13 2.32491e-13 0.0168002 4.81387e-13 2.42849e-13 0.0168003 -1.64283e-13 2.54848e-13 0.0168004 9.50388e-13 2.6471e-13 0.0168005 -2.80499e-13 2.73353e-13 0.0168008 1.09915e-12 2.83899e-13 0.0168014 1.33174e-13 2.91956e-13 5.79652e-13 3.05005e-13 0.0168022 0.0168001 7.36237e-15 0.0168001 2.29042e-14 0.0168001 2.88228e-14 0.0168001 3.38075e-14 0.0168001 3.65552e-14 0.0168001 4.90962e-14 0.0168001 5.70371e-14 0.0168001 7.81895e-14 0.0168001 9.04166e-14 0.0168001 1.37354e-13 0.0168001 1.41156e-13 0.0168001 1.6292e-13 0.0168001 1.72256e-13 0.0168001 1.86506e-13 0.0168001 1.82382e-13 0.0168001 2.00522e-13 0.0168001 2.27377e-13 0.0168001 2.32775e-13 0.0168002 2.43147e-13 0.0168003 2.54806e-13 0.0168004 2.64686e-13 0.0168005 2.73187e-13 0.0168008 2.83963e-13 0.0168014 2.91997e-13 3.0502e-13 0.0168022 0.0168001 1.85014e-10 1.74888e-11 0.0168001 1.09323e-09 2.23034e-11 0.0168001 3.62829e-09 2.59538e-11 0.0168001 1.04632e-08 2.78049e-11 0.0168001 2.6004e-08 3.17117e-11 0.0168 6.71267e-08 3.19709e-11 0.0168001 1.5803e-07 3.56658e-11 0.0167997 4.00998e-07 3.57008e-11 0.0168002 9.36243e-07 4.03262e-11 0.016798 2.40302e-06 4.2391e-11 0.0168016 5.64822e-06 5.32945e-11 0.0167864 1.49491e-05 6.34396e-11 0.0168218 3.70468e-05 1.01814e-10 0.0167286 0.00010365 1.65298e-10 0.0169719 0.000306218 4.73753e-10 0.0168252 0.00109582 7.13923e-10 0.0184504 0.0038537 3.02196e-09 0.0176922 0.0161976 1.17273e-09 0.0163734 0.0165761 3.15823e-10 0.0149056 0.0161396 -6.13158e-10 0.0134936 0.016846 -2.09782e-10 0.0117484 0.0179096 -3.59634e-11 0.0106226 0.0192074 3.41955e-11 0.0113495 0.0215434 8.89585e-11 0.024434 1.46664e-10 0.0182576 0.0168001 1.39683e-10 2.04222e-11 0.0168001 1.09399e-09 2.45314e-11 0.0168001 3.33148e-09 2.76763e-11 0.0168001 1.01706e-08 2.92521e-11 0.0168 2.40762e-08 3.25963e-11 0.0168 6.53641e-08 3.28711e-11 0.0168 1.479e-07 3.5826e-11 0.0167998 3.94679e-07 3.62853e-11 0.0167996 8.87238e-07 3.97971e-11 0.0167986 2.3677e-06 4.21788e-11 0.0167978 5.37586e-06 5.21093e-11 0.0167933 1.42986e-05 5.95409e-11 0.016789 3.32664e-05 1.13183e-10 0.0167692 9.59352e-05 1.12391e-10 0.0167798 0.000254571 4.50608e-10 0.0168392 0.000920226 6.01591e-10 0.0173373 0.00299879 2.25731e-09 0.0176733 0.0152082 3.6505e-09 0.0169406 0.0174411 -2.19282e-10 0.0157459 0.0173969 -4.84633e-10 0.0146983 0.0177226 -1.45843e-10 0.0135065 0.0186707 -1.9441e-11 0.0129647 0.0195522 9.66722e-12 0.014031 0.0204232 6.46179e-11 0.0214701 1.67953e-10 0.0171005 0.0168001 1.21637e-10 2.33229e-11 0.0168001 9.52078e-10 2.67251e-11 0.0168001 2.94153e-09 2.92976e-11 0.0168001 8.89459e-09 3.06141e-11 0.0168001 2.11563e-08 3.33637e-11 0.0168 5.64231e-08 3.35773e-11 0.0168 1.2748e-07 3.59955e-11 0.0167999 3.33457e-07 3.63116e-11 0.0167999 7.4274e-07 3.90983e-11 0.0167995 1.98785e-06 4.0891e-11 0.0167996 4.21288e-06 4.84621e-11 0.0167964 1.30045e-05 5.53012e-11 0.0168 2.4095e-05 9.06454e-11 0.0167785 9.51301e-05 1.38183e-10 0.0168025 0.000194323 3.09168e-10 0.0167612 0.000884367 5.72661e-10 0.0169827 0.00253382 1.80601e-09 0.0180988 0.0134834 3.61775e-09 0.0176324 0.018126 -7.10534e-10 0.0167081 0.018331 -5.23615e-10 0.0158887 0.0183251 -9.9797e-11 0.0151677 0.018962 2.79704e-11 0.0149274 0.0195329 -2.17321e-12 0.0156709 0.0195518 -9.86324e-12 0.0192987 1.31121e-10 0.0180077 0.0168001 1.09958e-10 2.59155e-11 0.0168001 9.20801e-10 2.87321e-11 0.0168001 2.81254e-09 3.08106e-11 0.0168001 8.49351e-09 3.19173e-11 0.0168001 2.02192e-08 3.41405e-11 0.0168 5.39361e-08 3.42838e-11 0.0168 1.22759e-07 3.61956e-11 0.0167999 3.20406e-07 3.63719e-11 0.0167998 7.2122e-07 3.84365e-11 0.0167992 1.89267e-06 3.97608e-11 0.0167984 4.18171e-06 4.45413e-11 0.016796 1.16778e-05 5.20006e-11 0.016794 2.38168e-05 7.8241e-11 0.0167844 8.24216e-05 1.04376e-10 0.0167979 0.000163123 2.59463e-10 0.0168741 0.000732472 4.96555e-10 0.0171784 0.00200233 1.493e-09 0.0193914 0.0105732 3.68398e-09 0.018953 0.0187171 -3.25068e-10 0.0179114 0.0193389 -2.56088e-10 0.0171104 0.0188727 -3.5706e-11 0.0166211 0.0190738 3.14096e-11 0.0165051 0.0193673 -1.3532e-11 0.016752 0.0190916 2.11002e-11 0.0179889 5.24178e-11 0.0179954 0.0168001 3.69063e-11 2.84069e-11 0.0168001 9.92763e-10 3.06365e-11 0.0168001 1.72891e-09 3.21983e-11 0.0168001 8.8049e-09 3.3086e-11 0.0168001 1.31033e-08 3.47558e-11 0.0168 5.65575e-08 3.48367e-11 0.0168001 8.20878e-08 3.62521e-11 0.0167999 3.43347e-07 3.63711e-11 0.0168 4.93139e-07 3.79183e-11 0.0167993 2.07252e-06 3.89282e-11 0.0167999 2.87671e-06 4.24764e-11 0.0167959 1.29203e-05 4.82719e-11 0.0168006 1.56398e-05 6.23935e-11 0.0167825 8.70649e-05 8.61911e-11 0.016826 9.57678e-05 1.98743e-10 0.0168561 0.000649213 2.80751e-10 0.0174552 0.00121498 9.1902e-10 0.0218348 0.00593852 2.41911e-09 0.0204972 0.0198694 6.28958e-10 0.019622 0.0199649 4.03974e-10 0.0183889 0.0198937 6.80925e-11 0.0179049 0.0193815 7.09581e-11 0.0178193 0.0193483 5.60826e-11 0.0179381 0.0189229 -3.76784e-12 0.0176076 1.43465e-12 0.0182948 0.0168001 7.69265e-11 3.0899e-11 0.0168001 4.97081e-10 3.20333e-11 0.0168001 1.77903e-09 3.31655e-11 0.0168001 4.75548e-09 3.45081e-11 0.0168001 1.2888e-08 3.4635e-11 0.0168001 3.06828e-08 3.57789e-11 0.0168 7.90094e-08 3.57899e-11 0.0168002 1.84181e-07 3.68576e-11 0.0168 4.71135e-07 3.72424e-11 0.0168007 1.09452e-06 3.90939e-11 0.0167996 2.87019e-06 4.15828e-11 0.0168048 6.46612e-06 4.95882e-11 0.0167965 1.85281e-05 5.39311e-11 0.0168356 4.02669e-05 9.24567e-11 0.016777 0.000127789 1.31862e-10 0.01708 0.00031069 2.75224e-10 0.0169564 0.00120783 6.08958e-10 0.0188861 0.00375323 1.67636e-09 0.0210933 0.0170321 2.82335e-09 0.0206487 0.0201828 4.52952e-10 0.0198761 0.0205338 2.70225e-10 0.0192614 0.0199432 9.23458e-11 0.0191145 0.0194399 1.08677e-10 0.0191393 0.0188231 1.02744e-10 0.0175438 4.59202e-11 0.0191565 0.0168001 8.17883e-11 3.22111e-11 0.0168001 4.29694e-10 3.31542e-11 0.0168001 1.60729e-09 3.40699e-11 0.0168001 4.12137e-09 3.5178e-11 0.0168001 1.15258e-08 3.5268e-11 0.0168001 2.66894e-08 3.61862e-11 0.0168 7.0784e-08 3.61661e-11 0.0168 1.60571e-07 3.69285e-11 0.0167999 4.21711e-07 3.72185e-11 0.0167999 9.49908e-07 3.8514e-11 0.0167996 2.51122e-06 4.05047e-11 0.0167995 5.55723e-06 4.74439e-11 0.0167983 1.56644e-05 5.01878e-11 0.0168026 3.19315e-05 1.07625e-10 0.0167964 0.000110675 6.30368e-11 0.0168526 0.000227819 3.3268e-10 0.0169931 0.000979109 3.90609e-10 0.0178662 0.00273477 1.49077e-09 0.0211565 0.012994 3.33226e-09 0.0212859 0.0199311 1.68281e-10 0.0208134 0.0208977 5.8553e-11 0.0202222 0.0204737 -4.88728e-11 0.0200159 0.0195093 6.84469e-11 0.0199314 0.0186891 1.24564e-10 0.0174763 1.33758e-10 0.0197974 0.0168001 9.28247e-11 3.33646e-11 0.0168001 2.63207e-10 3.4098e-11 0.0168001 1.56055e-09 3.48201e-11 0.0168001 2.73027e-09 3.56792e-11 0.0168001 1.10915e-08 3.57448e-11 0.0168001 1.80692e-08 3.64535e-11 0.0168 6.83463e-08 3.64158e-11 0.0168001 1.10037e-07 3.69831e-11 0.0168 4.0992e-07 3.71054e-11 0.0168002 6.54067e-07 3.79118e-11 0.0167997 2.45316e-06 3.89982e-11 0.0168008 3.79046e-06 4.17875e-11 0.0167981 1.51286e-05 4.81941e-11 0.016805 2.07608e-05 6.18956e-11 0.0167943 0.00010066 1.00252e-10 0.0168662 0.000130734 1.98714e-10 0.0169889 0.000750081 4.79761e-10 0.0179394 0.00160291 1.3706e-09 0.0228964 0.00715387 4.00664e-09 0.0224496 0.0201653 7.16319e-10 0.0223978 0.0209076 -4.69436e-11 0.0217491 0.0211266 -3.57189e-11 0.0211131 0.0200923 1.51636e-11 0.0208577 0.0188056 5.96377e-11 0.017529 9.28231e-11 0.0206296 0.0168001 3.73373e-11 3.41387e-11 0.0168001 2.66565e-10 3.49572e-11 0.0168001 8.32336e-10 3.54341e-11 0.0168001 2.51786e-09 3.58217e-11 0.0168001 6.06175e-09 3.63713e-11 0.0168001 1.62131e-08 3.63831e-11 0.0168001 3.73011e-08 3.68404e-11 0.0168001 9.67775e-08 3.68632e-11 0.0168002 2.20879e-07 3.73516e-11 0.0168001 5.67027e-07 3.78013e-11 0.016801 1.2908e-06 3.91128e-11 0.0168003 3.3765e-06 4.15642e-11 0.0168066 7.44582e-06 4.95972e-11 0.0167994 2.16039e-05 5.29031e-11 0.0168487 4.42826e-05 9.41587e-11 0.0168003 0.000148928 1.34004e-10 0.017175 0.00033161 2.81259e-10 0.0173059 0.00134292 6.09638e-10 0.020146 0.00401955 1.53948e-09 0.023233 0.0165788 2.18975e-09 0.0232689 0.020791 2.21714e-10 0.0227945 0.021525 1.38279e-10 0.0220228 0.0207248 7.80302e-12 0.0215902 0.0190475 3.92247e-11 0.0176443 4.87671e-11 0.0212321 0.0168001 1.478e-11 3.48165e-11 0.0168001 2.49073e-10 3.54641e-11 0.0168001 5.20561e-10 3.58216e-11 0.0168001 2.23715e-09 3.61525e-11 0.0168001 3.8897e-09 3.65828e-11 0.0168001 1.44171e-08 3.66074e-11 0.0168001 2.4321e-08 3.6972e-11 0.0168 8.74603e-08 3.69912e-11 0.0168001 1.46485e-07 3.73532e-11 0.0167999 5.24165e-07 3.7611e-11 0.0168002 8.70627e-07 3.84381e-11 0.0167995 3.15222e-06 4.00268e-11 0.0168008 5.07025e-06 4.37518e-11 0.016798 1.96761e-05 5.09052e-11 0.0168092 2.83808e-05 7.84794e-11 0.0167996 0.000134083 9.43684e-11 0.0169141 0.000191938 2.63286e-10 0.0171235 0.00105038 4.13583e-10 0.0183013 0.00271758 1.20954e-09 0.023442 0.0107132 2.67036e-09 0.0238518 0.0202392 4.97562e-10 0.0238195 0.0214494 3.08605e-10 0.0231899 0.0213082 1.13238e-10 0.0224538 0.0197352 -1.82533e-11 0.0179769 3.42623e-11 0.0219922 0.0168001 2.09241e-11 3.53872e-11 0.0168001 1.20845e-10 3.57573e-11 0.0168001 4.48938e-10 3.60825e-11 0.0168001 1.16938e-09 3.65828e-11 0.0168001 3.26159e-09 3.65641e-11 0.0168001 7.62572e-09 3.6974e-11 0.0168001 2.01536e-08 3.69282e-11 0.0168001 4.6254e-08 3.72362e-11 0.0168001 1.20571e-07 3.72582e-11 0.0168002 2.75993e-07 3.76422e-11 0.0168001 7.16845e-07 3.81836e-11 0.0168012 1.63897e-06 3.95736e-11 0.0168003 4.32915e-06 4.25757e-11 0.0168081 9.71635e-06 5.19664e-11 0.0168 2.75577e-05 5.66887e-11 0.0168595 5.99917e-05 1.24794e-10 0.0168325 0.00018861 8.19929e-11 0.0173468 0.000463037 4.66707e-10 0.0182862 0.00169329 4.28378e-10 0.0232637 0.00529732 1.42191e-09 0.0249884 0.0182538 1.27077e-09 0.0251237 0.0212797 1.90206e-10 0.0245933 0.0217688 1.03684e-10 0.0234336 0.020747 -5.74108e-11 0.0185753 -2.49611e-11 0.022667 0.0168001 2.12327e-11 3.53675e-11 0.0168001 6.84104e-11 3.61595e-11 0.0168001 3.66955e-10 3.6517e-11 0.0168001 6.997e-10 3.68063e-11 0.0168001 2.62442e-09 3.69015e-11 0.0168001 4.63715e-09 3.71646e-11 0.0168001 1.62934e-08 3.71457e-11 0.0168001 2.843e-08 3.73322e-11 0.0168001 9.84794e-08 3.73302e-11 0.0168001 1.71162e-07 3.75379e-11 0.0168 5.91764e-07 3.78374e-11 0.0168004 1.02087e-06 3.85875e-11 0.0167999 3.56784e-06 4.05276e-11 0.0168022 5.98282e-06 4.46975e-11 0.0168012 2.22914e-05 5.30625e-11 0.0168199 3.38797e-05 8.46642e-11 0.0168259 0.000152463 1.00267e-10 0.0170147 0.000238473 2.85565e-10 0.0174155 0.00120513 4.38937e-10 0.0191538 0.00338609 1.22989e-09 0.0247776 0.0118789 2.59337e-09 0.0254011 0.0204827 5.56066e-10 0.0254595 0.0215338 3.64051e-10 0.0246463 0.0215221 4.74515e-11 0.0195628 -1.99653e-10 0.0236912 0.0168001 8.08645e-12 3.51132e-11 0.0168001 5.7772e-11 3.6857e-11 0.0168001 1.80811e-10 3.69562e-11 0.0168001 5.49281e-10 3.71049e-11 0.0168001 1.32738e-09 3.7226e-11 0.0168001 3.58553e-09 3.72212e-11 0.0168001 8.28467e-09 3.73035e-11 0.0168001 2.18327e-08 3.72806e-11 0.0168001 5.00551e-08 3.73419e-11 0.0168001 1.30989e-07 3.74159e-11 0.0168003 2.99914e-07 3.76195e-11 0.0168001 7.84469e-07 3.83172e-11 0.0168014 1.79418e-06 3.96549e-11 0.0168004 4.76467e-06 4.31202e-11 0.0168094 1.0794e-05 5.32512e-11 0.0168027 3.00256e-05 5.89381e-11 0.0168676 6.76656e-05 1.25391e-10 0.0168663 0.00020213 1.05369e-10 0.0174548 0.000518919 4.65591e-10 0.0189077 0.00183424 5.18684e-10 0.0244791 0.00567195 2.07369e-09 0.0263805 0.0182856 1.05294e-09 0.0266418 0.0211641 2.49045e-10 0.025925 0.0221108 1.29038e-10 0.0206551 -1.32939e-10 0.0247865 0.0168001 2.95835e-12 3.49574e-11 0.0168001 4.52996e-11 3.71721e-11 0.0168001 1.00664e-10 3.72319e-11 0.0168001 4.08229e-10 3.73189e-11 0.0168001 7.57695e-10 3.73852e-11 0.0168001 2.64686e-09 3.73708e-11 0.0168001 4.77647e-09 3.74036e-11 0.0168001 1.61725e-08 3.7374e-11 0.0168001 2.90523e-08 3.73812e-11 0.0168001 9.76283e-08 3.7396e-11 0.0168001 1.74962e-07 3.74725e-11 0.0168001 5.87974e-07 3.77862e-11 0.0168005 1.04739e-06 3.84124e-11 0.0168004 3.56026e-06 4.04215e-11 0.0168034 6.17356e-06 4.44608e-11 0.0168038 2.23445e-05 5.41261e-11 0.0168287 3.51217e-05 8.3022e-11 0.016841 0.00015229 1.18322e-10 0.0170783 0.000245445 2.93041e-10 0.0175974 0.00119157 5.4926e-10 0.0197692 0.00333177 1.42955e-09 0.0257764 0.0112191 2.84882e-09 0.0263937 0.0202403 6.98724e-10 0.0272161 0.0212345 2.97819e-10 0.0216561 -4.95004e-11 0.0263106 0.0168001 3.50444e-12 3.48633e-11 0.0168001 2.0177e-11 3.73386e-11 0.0168001 7.51186e-11 3.74192e-11 0.0168001 1.95794e-10 3.74524e-11 0.0168001 5.48768e-10 3.74694e-11 0.0168001 1.28717e-09 3.74913e-11 0.0168001 3.42442e-09 3.74648e-11 0.0168001 7.88578e-09 3.74577e-11 0.0168001 2.07001e-08 3.74301e-11 0.0168001 4.75258e-08 3.74123e-11 0.0168001 1.24147e-07 3.74655e-11 0.0168003 2.84999e-07 3.75565e-11 0.0168002 7.44953e-07 3.81833e-11 0.0168016 1.70727e-06 3.92562e-11 0.016801 4.54509e-06 4.26242e-11 0.0168101 1.02639e-05 5.25827e-11 0.0168041 2.89772e-05 5.86032e-11 0.0168724 6.39602e-05 1.32634e-10 0.0168739 0.000198247 1.00246e-10 0.0174811 0.0004835 5.30339e-10 0.0189128 0.00176523 4.96627e-10 0.0242639 0.00529775 1.59478e-09 0.0272555 0.0166644 1.79282e-09 0.0274299 0.02093 3.92246e-10 0.0215075 1.04715e-10 0.0275322 0.0168001 3.14877e-12 3.47994e-11 0.0168001 9.98542e-12 3.74691e-11 0.0168001 5.26506e-11 3.75165e-11 0.0168001 1.03528e-10 3.75303e-11 0.0168001 3.73979e-10 3.7535e-11 0.0168001 6.94696e-10 3.75371e-11 0.0168001 2.33984e-09 3.75115e-11 0.0168001 4.32116e-09 3.74887e-11 0.0168001 1.42736e-08 3.74571e-11 0.0168001 2.63469e-08 3.74162e-11 0.0168001 8.6285e-08 3.74126e-11 0.0168002 1.58939e-07 3.74163e-11 0.0168002 5.19431e-07 3.76455e-11 0.0168006 9.508e-07 3.80539e-11 0.0168007 3.14207e-06 3.98112e-11 0.0168036 5.61639e-06 4.30319e-11 0.0168048 1.9626e-05 5.29144e-11 0.0168281 3.25233e-05 7.4925e-11 0.0168487 0.000131284 1.30052e-10 0.0170645 0.000222354 2.56772e-10 0.0176702 0.0009919 6.55705e-10 0.0199503 0.00272068 1.5418e-09 0.0260358 0.00910768 3.75912e-09 0.0275973 0.019207 8.7998e-10 0.0207966 1.85898e-10 0.0284154 0.0168001 1.67004e-12 3.47566e-11 0.0168001 8.65431e-12 3.75608e-11 0.0168001 2.52227e-11 3.75677e-11 0.0168001 7.29647e-11 3.7578e-11 0.0168001 1.73879e-10 3.75764e-11 0.0168001 4.70539e-10 3.75566e-11 0.0168001 1.09072e-09 3.75351e-11 0.0168001 2.90031e-09 3.75056e-11 0.0168001 6.68573e-09 3.74616e-11 0.0168001 1.75773e-08 3.74313e-11 0.0168001 4.04374e-08 3.73767e-11 0.0168001 1.05303e-07 3.73995e-11 0.0168003 2.42077e-07 3.7405e-11 0.0168003 6.2723e-07 3.78535e-11 0.0168016 1.4395e-06 3.85673e-11 0.0168015 3.78726e-06 4.08966e-11 0.0168098 8.54549e-06 4.81856e-11 0.0168063 2.43228e-05 5.69488e-11 0.0168717 5.20072e-05 9.4304e-11 0.0168642 0.000169128 1.7099e-10 0.0173996 0.00037989 3.67425e-10 0.0184147 0.00148114 7.04628e-10 0.0228513 0.00424682 1.57812e-09 0.0276978 0.0135789 2.26972e-09 0.0202547 5.45999e-10 0.0281717 0.0168001 2.94321e-12 3.47362e-11 0.0168001 8.57578e-12 3.75977e-11 0.0168001 1.47387e-11 3.75989e-11 0.0168001 4.87403e-11 3.76021e-11 0.0168001 8.68727e-11 3.75928e-11 0.0168001 2.90521e-10 3.75748e-11 0.0168001 5.44164e-10 3.75442e-11 0.0168001 1.79092e-09 3.75205e-11 0.0168001 3.38653e-09 3.74646e-11 0.0168001 1.10068e-08 3.74341e-11 0.0168001 2.08166e-08 3.73598e-11 0.0168001 6.72198e-08 3.73434e-11 0.0168001 1.2698e-07 3.72976e-11 0.0168002 4.08901e-07 3.74551e-11 0.0168006 7.70284e-07 3.76865e-11 0.0168008 2.48867e-06 3.89464e-11 0.0168032 4.63696e-06 4.09759e-11 0.0168064 1.53415e-05 4.79742e-11 0.0168215 2.79088e-05 6.07288e-11 0.0168617 9.76403e-05 1.02788e-10 0.017005 0.000187042 1.71497e-10 0.0176591 0.000687771 4.82291e-10 0.0196302 0.00191267 1.20092e-09 0.0260824 0.00611172 3.58984e-09 0.0170428 1.43945e-09 0.0288109 0.0168001 7.11303e-13 3.47183e-11 0.0168001 4.25372e-12 3.7612e-11 0.0168001 1.10488e-11 3.76194e-11 0.0168001 1.88811e-11 3.76112e-11 0.0168001 5.88173e-11 3.7604e-11 0.0168001 1.12265e-10 3.758e-11 0.0168001 3.60007e-10 3.75628e-11 0.0168001 7.16996e-10 3.75103e-11 0.0168001 2.25784e-09 3.74928e-11 0.0168001 4.52095e-09 3.74015e-11 0.0168001 1.40304e-08 3.73881e-11 0.0168001 2.81125e-08 3.72628e-11 0.0168001 8.63469e-08 3.72804e-11 0.0168003 1.7299e-07 3.71494e-11 0.0168003 5.27706e-07 3.74742e-11 0.0168014 1.05315e-06 3.76679e-11 0.0168014 3.22859e-06 3.94991e-11 0.0168085 6.30231e-06 4.24971e-11 0.0168069 2.03978e-05 5.27106e-11 0.0168589 3.71546e-05 7.19733e-11 0.016858 0.000136248 1.46361e-10 0.0172333 0.000254629 2.61177e-10 0.0178842 0.00103111 7.84983e-10 0.0208023 0.0028365 1.71468e-09 0.0088632 3.65974e-09 0.0272363 0.0168001 -2.58095e-13 3.47127e-11 0.0168001 1.87122e-12 3.76177e-11 0.0168001 4.39882e-12 3.762e-11 0.0168001 1.0436e-11 3.76149e-11 0.0168001 2.28295e-11 3.7606e-11 0.0168001 6.30081e-11 3.75865e-11 0.0168001 1.47417e-10 3.75532e-11 0.0168001 4.08675e-10 3.7534e-11 0.0168001 9.54292e-10 3.74615e-11 0.0168001 2.6045e-09 3.74475e-11 0.0168001 6.04082e-09 3.73197e-11 0.0168001 1.6256e-08 3.73289e-11 0.0168001 3.75443e-08 3.71358e-11 0.0168001 9.9716e-08 3.72374e-11 0.0168003 2.29476e-07 3.70353e-11 0.0168004 6.03488e-07 3.75426e-11 0.0168018 1.38267e-06 3.79319e-11 0.0168022 3.66665e-06 4.02821e-11 0.0168114 8.28379e-06 4.74972e-11 0.0168111 2.33103e-05 5.60688e-11 0.0168794 5.07299e-05 9.28807e-11 0.0169009 0.00015974 1.75036e-10 0.0174664 0.000363876 3.61865e-10 0.0186949 0.00134592 7.6132e-10 0.0038135 1.72641e-09 0.0232047 0.0168001 -1.48615e-13 3.47141e-11 0.0168001 7.42536e-13 3.76112e-11 0.0168001 1.9864e-12 3.76258e-11 0.0168001 5.39575e-12 3.76191e-11 0.0168001 8.6912e-12 3.76064e-11 0.0168001 3.46594e-11 3.75861e-11 0.0168001 5.88243e-11 3.75521e-11 0.0168001 2.15711e-10 3.75273e-11 0.0168001 4.05619e-10 3.74564e-11 0.0168001 1.35934e-09 3.74421e-11 0.0168001 2.6766e-09 3.73079e-11 0.0168001 8.61335e-09 3.73138e-11 0.0168001 1.70928e-08 3.70974e-11 0.0168001 5.40705e-08 3.7163e-11 0.0168002 1.0669e-07 3.68852e-11 0.0168002 3.35327e-07 3.71921e-11 0.0168007 6.54982e-07 3.71225e-11 0.0168009 2.06578e-06 3.86121e-11 0.0168035 3.98541e-06 4.0523e-11 0.0168066 1.27575e-05 4.81011e-11 0.0168217 2.46712e-05 6.31444e-11 0.0168644 8.02244e-05 9.9632e-11 0.0169874 0.000169335 1.93243e-10 0.0176379 0.000569578 3.74675e-10 0.0016236 8.4533e-10 0.019588 0.0168001 -8.51858e-16 3.47149e-11 0.0168001 5.1298e-13 3.76082e-11 0.0168001 9.0113e-13 3.7626e-11 0.0168001 1.48725e-12 3.76173e-11 0.0168001 5.53933e-12 3.76042e-11 0.0168001 7.72165e-12 3.75699e-11 0.0168001 3.4103e-11 3.7556e-11 0.0168001 6.36642e-11 3.74993e-11 0.0168001 2.04465e-10 3.74609e-11 0.0168001 4.75865e-10 3.73785e-11 0.0168001 1.33893e-09 3.73333e-11 0.0168001 3.23182e-09 3.71868e-11 0.0168001 8.881e-09 3.71905e-11 0.0168001 2.12903e-08 3.69177e-11 0.0168001 5.76997e-08 3.6994e-11 0.0168002 1.36219e-07 3.66408e-11 0.0168002 3.65516e-07 3.70099e-11 0.0168011 8.53583e-07 3.69353e-11 0.0168013 2.28401e-06 3.86202e-11 0.0168067 5.29381e-06 4.0511e-11 0.0168088 1.42547e-05 4.96706e-11 0.016845 3.31503e-05 5.9223e-11 0.0168745 9.10117e-05 1.25729e-10 0.0171654 0.000222374 1.69437e-10 0.000675535 6.22561e-10 0.0178782 0.0168001 2.60354e-13 3.47153e-11 0.0168001 1.95589e-14 3.7607e-11 0.0168001 1.42346e-14 3.76259e-11 0.0168001 3.46645e-13 3.76177e-11 0.0168001 -2.9864e-14 3.75944e-11 0.0168001 3.2297e-12 3.75706e-11 0.0168001 5.7196e-12 3.75007e-11 0.0168001 2.04918e-11 3.74756e-11 0.0168001 6.0427e-11 3.74176e-11 0.0168001 1.40127e-10 3.73331e-11 0.0168001 4.83699e-10 3.72708e-11 0.0168001 1.17205e-09 3.715e-11 0.0168001 3.60509e-09 3.70755e-11 0.0168001 8.68807e-09 3.68727e-11 0.0168001 2.51011e-08 3.68844e-11 0.0168001 5.89254e-08 3.65286e-11 0.0168002 1.65405e-07 3.67141e-11 0.0168005 3.81271e-07 3.64e-11 0.0168009 1.0505e-06 3.73063e-11 0.0168027 2.3999e-06 3.80177e-11 0.016806 6.55031e-06 4.25031e-11 0.0168176 1.49823e-05 4.95823e-11 0.0168418 4.08546e-05 7.65019e-11 0.0169193 9.73289e-05 1.29115e-10 0.0002735 3.16211e-10 0.0171621 0.0168001 7.84862e-14 3.47149e-11 0.0168001 1.17609e-13 3.76081e-11 0.0168001 -4.31868e-14 3.76262e-11 0.0168001 -2.00097e-14 3.76174e-11 0.0168001 5.24958e-13 3.76e-11 0.0168001 -5.84995e-14 3.75619e-11 0.0168001 3.10164e-12 3.7504e-11 0.0168001 2.56074e-12 3.74366e-11 0.0168001 1.40182e-11 3.73386e-11 0.0168001 2.45054e-11 3.72402e-11 0.0168001 1.17549e-10 3.71821e-11 0.0168001 3.00514e-10 3.70062e-11 0.0168001 1.14738e-09 3.6979e-11 0.0168001 2.9672e-09 3.68294e-11 0.0168001 9.7109e-09 3.67495e-11 0.0168001 2.37307e-08 3.64718e-11 0.0168001 6.97471e-08 3.64762e-11 0.0168003 1.64797e-07 3.60575e-11 0.0168005 4.63757e-07 3.64869e-11 0.0168013 1.06779e-06 3.64979e-11 0.0168029 2.93583e-06 3.87403e-11 0.0168084 6.63899e-06 4.13862e-11 0.0168174 1.8384e-05 5.50187e-11 0.0168633 4.09211e-05 7.07078e-11 0.000119662 1.6961e-10 0.0169265 0.0168001 8.76865e-15 3.47149e-11 0.0168001 1.416e-14 3.76079e-11 0.0168001 1.84385e-13 3.76265e-11 0.0168001 5.00665e-13 3.76182e-11 0.0168001 -1.3509e-13 3.75949e-11 0.0168001 2.09321e-12 3.75656e-11 0.0168001 1.32998e-12 3.75094e-11 0.0168001 3.44498e-12 3.74229e-11 0.0168001 8.06263e-12 3.7347e-11 0.0168001 9.41711e-12 3.72127e-11 0.0168001 3.94861e-11 3.70698e-11 0.0168001 7.93662e-11 3.69671e-11 0.0168001 2.48644e-10 3.67662e-11 0.0168001 6.57357e-10 3.66865e-11 0.0168001 2.66617e-09 3.66213e-11 0.0168001 6.86317e-09 3.64031e-11 0.0168001 2.66746e-08 3.62873e-11 0.0168002 5.85492e-08 3.59499e-11 0.0168003 1.95734e-07 3.60267e-11 0.0168007 4.19921e-07 3.58761e-11 0.0168013 1.30025e-06 3.6978e-11 0.0168039 2.72687e-06 3.80812e-11 0.0168077 8.27127e-06 4.41393e-11 0.0168225 1.70984e-05 5.39688e-11 5.22451e-05 9.17527e-11 0.01685 0.0168001 -1.69397e-14 3.47148e-11 0.0168001 3.01977e-15 3.76079e-11 0.0168001 3.20751e-13 3.76264e-11 0.0168001 6.14782e-13 3.76177e-11 0.0168001 6.1819e-15 3.75986e-11 0.0168001 1.54475e-12 3.7561e-11 0.0168001 -2.33972e-13 3.75099e-11 0.0168001 6.73129e-12 3.74321e-11 0.0168001 4.51265e-12 3.73428e-11 0.0168001 1.77862e-11 3.71931e-11 0.0168001 2.77231e-11 3.70808e-11 0.0168001 2.10753e-11 3.69728e-11 0.0168001 1.64071e-10 3.67378e-11 0.0168001 1.39077e-10 3.65999e-11 0.0168001 7.63253e-10 3.62889e-11 0.0168001 1.48579e-09 3.61777e-11 0.0168001 5.21087e-09 3.60536e-11 0.0168001 1.95492e-08 3.59703e-11 0.0168003 5.14937e-08 3.58803e-11 0.0168003 1.79022e-07 3.58136e-11 0.016801 4.08699e-07 3.56693e-11 0.0168013 1.27916e-06 3.666e-11 0.0168051 2.82256e-06 3.80395e-11 0.0168068 8.40338e-06 4.48411e-11 1.8302e-05 5.67207e-11 0.0168291 0.0168001 -2.84206e-14 3.47146e-11 0.0168001 4.82436e-14 3.76086e-11 0.0168001 1.41327e-13 3.76255e-11 0.0168001 2.7244e-13 3.76161e-11 0.0168001 3.9712e-13 3.75999e-11 0.0168001 7.41459e-13 3.75539e-11 0.0168001 1.65421e-12 3.75179e-11 0.0168001 3.45426e-12 3.7415e-11 0.0168001 1.01687e-11 3.73556e-11 0.0168001 1.74656e-11 3.71958e-11 0.0168001 3.47389e-11 3.71041e-11 0.0168001 7.51169e-11 3.69116e-11 0.0168001 4.63593e-11 3.67836e-11 0.0168001 2.37782e-10 3.65189e-11 0.0168001 2.13224e-10 3.63484e-11 0.0168001 1.0848e-09 3.6002e-11 0.0168001 8.87841e-10 3.58221e-11 0.0168002 4.36943e-09 3.5444e-11 0.0168002 1.12232e-08 3.5457e-11 0.0168003 3.73897e-08 3.54081e-11 0.0168004 1.47005e-07 3.51242e-11 0.0168011 3.55089e-07 3.59501e-11 0.0168015 1.19113e-06 3.65475e-11 0.0168054 2.67587e-06 3.88448e-11 8.18324e-06 4.50727e-11 0.016808 0.0168001 -6.21568e-15 3.47146e-11 0.0168001 7.7592e-15 3.76085e-11 0.0168001 5.31157e-14 3.76256e-11 0.0168001 9.43815e-14 3.76163e-11 0.0168001 1.65351e-13 3.76005e-11 0.0168001 3.38416e-13 3.75612e-11 0.0168001 7.20468e-13 3.75096e-11 0.0168001 1.69547e-12 3.74273e-11 0.0168001 4.32391e-12 3.73611e-11 0.0168001 8.49162e-12 3.71892e-11 0.0168001 1.31391e-11 3.70816e-11 0.0168001 -1.65447e-11 3.69597e-11 0.0168001 8.64812e-11 3.67284e-11 0.0168001 2.11865e-11 3.65707e-11 0.0168001 3.72256e-10 3.62578e-11 0.0168001 7.55152e-11 3.61186e-11 0.0168001 1.23886e-09 3.58908e-11 0.0168001 5.49832e-10 3.57319e-11 0.0168002 5.4885e-09 3.53875e-11 0.0168003 4.90158e-09 3.52648e-11 0.0168005 2.74367e-08 3.50457e-11 0.0168006 9.25116e-08 3.53593e-11 0.0168015 2.96201e-07 3.53713e-11 0.016802 9.64922e-07 3.6311e-11 2.49689e-06 3.87533e-11 0.016806 0.0168001 1.43933e-15 3.47146e-11 0.0168001 -4.42512e-15 3.76085e-11 0.0168001 9.39385e-15 3.76256e-11 0.0168001 1.96586e-14 3.76162e-11 0.0168001 3.91207e-14 3.76005e-11 0.0168001 7.60067e-14 3.75617e-11 0.0168001 2.51747e-13 3.75085e-11 0.0168001 4.47688e-13 3.74284e-11 0.0168001 1.62366e-12 3.73595e-11 0.0168001 2.89139e-12 3.71895e-11 0.0168001 6.78655e-12 3.71056e-11 0.0168001 -3.78886e-12 3.69083e-11 0.0168001 4.58221e-11 3.67826e-11 0.0168001 9.86784e-11 3.65321e-11 0.0168001 2.62401e-10 3.63932e-11 0.0168001 3.4286e-10 3.61221e-11 0.0168001 8.29828e-10 3.59638e-11 0.0168001 1.67027e-09 3.56504e-11 0.0168002 3.3562e-09 3.55557e-11 0.0168003 5.89823e-09 3.54053e-11 0.0168004 8.64653e-09 3.60288e-11 0.0168006 2.06739e-08 3.72234e-11 0.0168011 5.0121e-08 3.67769e-11 0.0168016 2.20157e-07 3.69703e-11 6.05961e-07 3.56235e-11 0.0168035 0.0168001 2.23844e-15 3.47146e-11 0.0168001 4.17852e-16 3.76085e-11 0.0168001 -8.29111e-15 3.76255e-11 0.0168001 -1.71029e-14 3.76161e-11 0.0168001 -9.20932e-15 3.76003e-11 0.0168001 -1.83703e-14 3.75616e-11 0.0168001 6.22703e-14 3.75072e-11 0.0168001 1.45575e-13 3.74291e-11 0.0168001 6.40052e-13 3.73555e-11 0.0168001 1.71828e-12 3.71937e-11 0.0168001 5.17954e-12 3.71105e-11 0.0168001 1.53164e-11 3.69249e-11 0.0168001 5.07773e-11 3.68054e-11 0.0168001 1.21173e-10 3.65538e-11 0.0168001 2.56779e-10 3.64017e-11 0.0168001 4.28802e-10 3.60614e-11 0.0168001 9.23319e-10 3.58999e-11 0.0168001 2.80412e-09 3.55334e-11 0.0168002 3.39496e-09 3.54402e-11 0.0168003 1.04546e-08 3.51375e-11 0.0168004 5.53139e-09 3.51068e-11 0.0168006 2.43972e-08 3.49174e-11 0.0168008 1.23178e-08 3.49978e-11 0.0168017 6.76103e-08 3.48856e-11 1.19187e-07 3.55863e-11 0.0168025 0.0168001 7.25169e-16 3.47146e-11 0.0168001 5.38811e-15 3.76085e-11 0.0168001 -3.30215e-15 3.76256e-11 0.0168001 -1.54022e-14 3.76162e-11 0.0168001 -1.94287e-14 3.76004e-11 0.0168001 -2.80851e-14 3.7562e-11 0.0168001 1.94635e-14 3.75064e-11 0.0168001 5.82842e-14 3.743e-11 0.0168001 2.08166e-13 3.73522e-11 0.0168001 6.28621e-13 3.72091e-11 0.0168001 4.84984e-12 3.71169e-11 0.0168001 2.19143e-11 3.70796e-11 0.0168001 4.19131e-11 3.68948e-11 0.0168001 9.74581e-11 3.66444e-11 0.0168001 1.97139e-10 3.64342e-11 0.0168001 4.29636e-10 3.58311e-11 0.0168001 8.77374e-10 3.57126e-11 0.0168001 1.15817e-09 3.46332e-11 0.0168001 3.14236e-09 3.61374e-11 0.0168002 1.84648e-09 3.54204e-11 0.0168004 9.6297e-09 3.47967e-11 0.0168005 3.11325e-09 3.54799e-11 0.0168008 2.28755e-08 3.58891e-11 0.0168013 5.42146e-09 3.55427e-11 6.46657e-08 3.57808e-11 0.0168023 0.0168001 1.70762e-15 3.47146e-11 0.0168001 1.19083e-15 3.76085e-11 0.0168001 -3.4167e-15 3.76256e-11 0.0168001 -9.10096e-15 3.76163e-11 0.0168001 -1.39588e-14 3.76006e-11 0.0168001 -1.15469e-14 3.75626e-11 0.0168001 -6.59667e-15 3.75061e-11 0.0168001 6.32494e-14 3.74284e-11 0.0168001 4.91706e-14 3.73554e-11 0.0168001 5.42703e-13 3.72102e-11 0.0168001 4.72885e-12 3.70705e-11 0.0168001 2.61227e-11 3.71403e-11 0.0168001 2.64446e-11 3.67503e-11 0.0168001 6.91457e-11 3.66289e-11 0.0168001 1.38365e-10 3.6335e-11 0.0168001 7.33119e-10 3.60573e-11 0.0168001 2.78515e-10 3.58288e-11 0.0168001 1.23482e-09 3.54045e-11 0.0168002 6.19607e-10 3.51559e-11 0.0168002 3.4374e-09 3.43696e-11 0.0168004 1.94068e-09 3.42467e-11 0.0168005 6.40022e-09 3.45597e-11 0.0168008 3.3028e-09 3.48455e-11 0.0168013 1.65345e-08 3.51066e-11 7.6034e-09 3.52094e-11 0.0168021 0.0168001 6.32415e-16 3.47146e-11 0.0168001 2.94903e-17 3.76085e-11 0.0168001 -2.20597e-15 3.76256e-11 0.0168001 -4.12821e-15 3.76163e-11 0.0168001 -5.94918e-15 3.76006e-11 0.0168001 -5.67672e-15 3.75626e-11 0.0168001 -9.62511e-15 3.75063e-11 0.0168001 1.023e-14 3.7428e-11 0.0168001 -2.56906e-14 3.73561e-11 0.0168001 -2.64134e-14 3.7211e-11 0.0168001 2.70296e-12 3.70492e-11 0.0168001 1.46592e-11 3.70779e-11 0.0168001 1.19805e-11 3.66258e-11 0.0168001 2.0888e-11 3.65035e-11 0.0168001 2.99422e-11 3.65532e-11 0.0168001 3.16142e-10 3.58969e-11 0.0168001 -4.2219e-11 3.63552e-11 0.0168001 4.25405e-10 3.51634e-11 0.0168002 -1.96551e-10 3.59347e-11 0.0168002 1.31804e-09 3.40532e-11 0.0168004 1.75143e-10 3.49641e-11 0.0168005 2.37925e-09 3.50298e-11 0.0168008 -5.50763e-10 3.50461e-11 0.0168014 5.83967e-09 3.45829e-11 -6.04725e-10 3.55583e-11 0.0168022 0.0168001 1.48102e-16 3.47146e-11 0.0168001 1.63172e-17 3.76085e-11 0.0168001 -7.4463e-16 3.76256e-11 0.0168001 -1.42166e-15 3.76163e-11 0.0168001 -2.0525e-15 3.76006e-11 0.0168001 -2.52077e-15 3.75625e-11 0.0168001 -4.1552e-15 3.75065e-11 0.0168001 -2.0177e-15 3.74281e-11 0.0168001 -1.96107e-14 3.73566e-11 0.0168001 -1.16619e-13 3.72122e-11 0.0168001 1.23551e-12 3.70424e-11 0.0168001 7.07167e-12 3.70266e-11 0.0168001 6.59549e-13 3.64306e-11 0.0168001 1.94681e-12 3.67388e-11 0.0168001 2.63538e-11 3.63042e-11 0.0168001 7.02375e-11 3.59719e-11 0.0168001 -4.36856e-11 3.61767e-11 0.0168001 7.58527e-11 3.53238e-11 0.0168002 -7.02005e-12 3.54678e-11 0.0168002 1.651e-10 3.4905e-11 0.0168004 6.7745e-11 3.49141e-11 0.0168005 3.14339e-10 3.4967e-11 0.0168008 -3.25514e-11 3.47194e-11 0.0168014 7.79989e-10 3.47611e-11 -2.23046e-10 3.51257e-11 0.0168022 0.0168001 2.07083e-17 3.47146e-11 0.0168001 9.21572e-18 3.76085e-11 0.0168001 -1.85128e-16 3.76256e-11 0.0168001 -3.71881e-16 3.76163e-11 0.0168001 -5.61237e-16 3.76006e-11 0.0168001 -9.5193e-16 3.75625e-11 0.0168001 -1.3057e-15 3.75064e-11 0.0168001 -2.7426e-15 3.74282e-11 0.0168001 -5.08567e-15 3.73566e-11 0.0168001 -3.98077e-14 3.72124e-11 0.0168001 3.1326e-13 3.70395e-11 0.0168001 1.80303e-12 3.70031e-11 0.0168001 -3.64491e-13 3.63836e-11 0.0168001 -2.32427e-13 3.68408e-11 0.0168001 6.53828e-12 3.612e-11 0.0168001 1.34346e-11 3.60256e-11 0.0168001 -9.42823e-12 3.61296e-11 0.0168001 4.57526e-12 3.5362e-11 0.0168002 2.6381e-11 3.53647e-11 0.0168002 -1.1067e-11 3.5301e-11 0.0168004 5.69145e-11 3.49489e-11 0.0168005 2.60343e-11 3.48967e-11 0.0168008 7.27765e-11 3.46637e-11 0.0168014 1.05614e-10 3.47187e-11 -5.06417e-11 3.50969e-11 0.0168022 0.0168001 1.84314e-18 3.47146e-11 0.0168001 1.40946e-18 3.76085e-11 0.0168001 -5.55112e-17 3.76256e-11 0.0168001 -1.04788e-16 3.76163e-11 0.0168001 -1.82634e-16 3.76006e-11 0.0168001 -3.00758e-16 3.75625e-11 0.0168001 -6.64291e-16 3.75062e-11 0.0168001 -5.12123e-16 3.74283e-11 0.0168001 -1.93877e-15 3.73565e-11 0.0168001 -3.19487e-15 3.72121e-11 0.0168001 3.67729e-14 3.70385e-11 0.0168001 2.18038e-13 3.69997e-11 0.0168001 -3.15112e-14 3.63772e-11 0.0168001 7.88238e-14 3.68597e-11 0.0168001 -2.60656e-13 3.60899e-11 0.0168001 6.61699e-13 3.60139e-11 0.0168001 2.10567e-12 3.61773e-11 0.0168001 -3.84307e-12 3.53261e-11 0.0168002 1.49591e-11 3.53352e-11 0.0168002 -1.31398e-11 3.52968e-11 0.0168004 2.72008e-11 3.4931e-11 0.0168005 -1.40965e-11 3.48648e-11 0.0168008 4.0205e-11 3.46617e-11 0.0168014 6.0836e-12 3.47469e-11 -2.2435e-11 3.50992e-11 0.0168022 0.0168001 6.01732e-18 3.47146e-11 0.0168001 -6.12574e-18 3.76085e-11 0.0168001 -2.33104e-18 3.76255e-11 0.0168001 -6.61363e-18 3.76162e-11 0.0168001 -3.47487e-17 3.76004e-11 0.0168001 7.58943e-19 3.7562e-11 0.0168001 -1.82092e-16 3.75066e-11 0.0168001 3.59521e-16 3.74291e-11 0.0168001 -3.95571e-16 3.73551e-11 0.0168001 7.10901e-15 3.72148e-11 0.0168001 -2.19004e-14 3.70398e-11 0.0168001 -1.21097e-13 3.69967e-11 0.0168001 1.22005e-13 3.63362e-11 0.0168001 8.19023e-14 3.6898e-11 0.0168001 -1.10009e-12 3.59909e-11 0.0168001 -8.6078e-13 3.6006e-11 0.0168001 1.74382e-12 3.62572e-11 0.0168001 -1.61682e-12 3.52585e-11 0.0168002 5.35064e-12 3.53077e-11 0.0168002 -4.38956e-12 3.52832e-11 0.0168004 9.6801e-12 3.49204e-11 0.0168005 -6.42856e-12 3.48287e-11 0.0168008 1.27944e-11 3.46676e-11 0.0168014 -3.00997e-12 3.47545e-11 -3.37012e-12 3.51324e-11 0.0168022 0.0168001 -2.04628e-28 3.47146e-11 0.0168001 3.25261e-19 3.76085e-11 0.0168001 -2.13588e-17 3.76256e-11 0.0168001 -4.26091e-17 3.76163e-11 0.0168001 -5.29633e-17 3.76006e-11 0.0168001 -1.38236e-17 3.75626e-11 0.0168001 -1.83664e-16 3.75062e-11 0.0168001 4.59756e-16 3.7428e-11 0.0168001 4.78133e-17 3.73562e-11 0.0168001 8.15813e-15 3.72097e-11 0.0168001 -3.51845e-14 3.70379e-11 0.0168001 -1.9624e-13 3.70274e-11 0.0168001 1.28219e-13 3.65213e-11 0.0168001 6.41297e-14 3.67362e-11 0.0168001 -8.14895e-13 3.61493e-11 0.0168001 -4.13646e-13 3.60533e-11 0.0168001 5.33212e-13 3.60913e-11 0.0168001 -4.47246e-13 3.54854e-11 0.0168002 1.76362e-12 3.52677e-11 0.0168002 -1.19758e-12 3.51607e-11 0.0168004 2.99464e-12 3.48956e-11 0.0168005 -2.01118e-12 3.48143e-11 0.0168008 3.74366e-12 3.46933e-11 0.0168014 -9.20776e-13 3.47321e-11 -1.15301e-13 3.51113e-11 0.0168022 0.0168001 2.05998e-18 3.47146e-11 0.0168001 -6.66784e-18 3.76085e-11 0.0168001 -8.37004e-17 3.76256e-11 0.0168001 -1.46313e-16 3.76164e-11 0.0168001 -1.02782e-16 3.76007e-11 0.0168001 -2.54516e-16 3.75628e-11 0.0168001 -1.32869e-16 3.75063e-11 0.0168001 -7.51352e-17 3.74279e-11 0.0168001 -6.51063e-17 3.73556e-11 0.0168001 3.75541e-15 3.72042e-11 0.0168001 -1.92146e-14 3.70585e-11 0.0168001 -1.0963e-13 3.70216e-11 0.0168001 7.00114e-14 3.67175e-11 0.0168001 3.61501e-14 3.65701e-11 0.0168001 -3.59121e-13 3.6197e-11 0.0168001 -1.53284e-13 3.60504e-11 0.0168001 1.01167e-13 3.61207e-11 0.0168001 -9.98583e-14 3.55186e-11 0.0168002 5.55976e-13 3.51424e-11 0.0168002 -2.30264e-13 3.52424e-11 0.0168004 8.32232e-13 3.49918e-11 0.0168005 -3.92769e-13 3.47698e-11 0.0168008 1.10965e-12 3.46465e-11 0.0168014 1.83987e-13 3.46755e-11 6.76309e-13 3.50845e-11 0.0168022 0.0168001 3.47146e-11 0.0168001 3.76085e-11 0.0168001 3.76256e-11 0.0168001 3.76164e-11 0.0168001 3.76007e-11 0.0168001 3.75628e-11 0.0168001 3.75062e-11 0.0168001 3.7428e-11 0.0168001 3.73547e-11 0.0168001 3.72007e-11 0.0168001 3.70825e-11 0.0168001 3.69683e-11 0.0168001 3.67702e-11 0.0168001 3.65585e-11 0.0168001 3.61414e-11 0.0168001 3.58908e-11 0.0168001 3.63382e-11 0.0168001 3.54855e-11 0.0168002 3.5094e-11 0.0168002 3.52845e-11 0.0168004 3.50276e-11 0.0168005 3.4748e-11 0.0168008 3.46446e-11 0.0168014 3.46696e-11 3.50855e-11 0.0168022 0.0168001 1.57534e-09 0.0168001 3.51191e-09 0.0168001 6.77611e-09 0.0168 1.43322e-08 0.0168001 2.99915e-08 0.0168 7.15766e-08 0.0168001 1.62121e-07 0.0167997 4.0528e-07 0.0168001 9.39629e-07 0.016798 2.40566e-06 0.0168016 5.64931e-06 0.0167864 1.49437e-05 0.0168218 3.70439e-05 0.0167286 0.000103611 0.0169717 0.000306152 0.0168248 0.0010956 0.0184487 0.00385229 0.0176918 0.0161971 0.0163738 0.0165764 0.0149056 0.0161403 0.0134933 0.0168464 0.0117481 0.0179098 0.0106224 0.0192076 0.0113494 0.0215436 0.0244341 0.0182576 0.0168001 1.55005e-09 0.0168001 3.49985e-09 0.0168001 6.43001e-09 0.0168001 1.38241e-08 0.0168 2.79315e-08 0.0168 6.93965e-08 0.0168 1.51781e-07 0.0167998 3.98341e-07 0.0167996 8.9031e-07 0.0167986 2.36988e-06 0.0167978 5.37583e-06 0.0167932 1.42968e-05 0.016789 3.32525e-05 0.0167692 9.59358e-05 0.0167797 0.000254486 0.016839 0.00092012 0.0173364 0.00299813 0.0176728 0.0152073 0.0169401 0.0174415 0.0157456 0.0173974 0.0146979 0.017723 0.0135063 0.0186708 0.0129645 0.0195525 0.014031 0.0204234 0.0214701 0.0171005 0.0168001 1.3877e-09 0.0168001 3.17782e-09 0.0168001 5.83652e-09 0.0168001 1.2316e-08 0.0168001 2.47785e-08 0.0168 6.01881e-08 0.0168 1.31079e-07 0.0167999 3.3682e-07 0.0167999 7.45486e-07 0.0167995 1.98981e-06 0.0167996 4.21273e-06 0.0167964 1.30028e-05 0.0168 2.40862e-05 0.0167785 9.51049e-05 0.0168024 0.000194278 0.0167612 0.000884238 0.0169825 0.00253332 0.018099 0.0134818 0.0176325 0.0181265 0.0167079 0.0183316 0.0158885 0.0183254 0.0151676 0.0189621 0.0149274 0.0195331 0.0156709 0.019552 0.0192987 0.0180077 0.0168001 1.34246e-09 0.0168001 3.03098e-09 0.0168001 5.49869e-09 0.0168001 1.16097e-08 0.0168001 2.35269e-08 0.0168 5.72895e-08 0.0168 1.25989e-07 0.0167999 3.23376e-07 0.0167998 7.23752e-07 0.0167992 1.89459e-06 0.0167984 4.18247e-06 0.016796 1.16772e-05 0.016794 2.38096e-05 0.0167844 8.24057e-05 0.0167979 0.000163083 0.0168741 0.000732287 0.0171784 0.00200178 0.0193923 0.0105705 0.0189534 0.0187179 0.0179115 0.0193396 0.0171103 0.0188732 0.0166211 0.0190741 0.0165052 0.0193676 0.0167522 0.0190919 0.0179891 0.0179954 0.0168001 1.18614e-09 0.0168001 2.71416e-09 0.0168001 3.81412e-09 0.0168001 1.16064e-08 0.0168001 1.55773e-08 0.0168 5.95915e-08 0.0168001 8.45682e-08 0.0167999 3.46087e-07 0.0168 4.95159e-07 0.0167993 2.07445e-06 0.0167999 2.87755e-06 0.0167958 1.29211e-05 0.0168006 1.56346e-05 0.0167825 8.70603e-05 0.0168259 9.57258e-05 0.0168558 0.000649143 0.017455 0.00121461 0.021835 0.00593725 0.0204969 0.0198689 0.0196219 0.019965 0.0183889 0.0198943 0.0179051 0.0193821 0.0178196 0.0193488 0.0179385 0.0189234 0.017608 0.0182952 0.0168001 7.42772e-10 0.0168001 1.7258e-09 0.0168001 3.43443e-09 0.0168001 6.624e-09 0.0168001 1.5039e-08 0.0168001 3.27909e-08 0.0168 8.12336e-08 0.0168002 1.86142e-07 0.0168 4.72952e-07 0.0168007 1.09571e-06 0.0167996 2.87059e-06 0.0168048 6.46452e-06 0.0167965 1.8524e-05 0.0168356 4.02623e-05 0.016777 0.000127745 0.0170799 0.000310657 0.0169562 0.00120761 0.0188854 0.00375261 0.0210929 0.0170309 0.0206483 0.0201828 0.0198761 0.0205341 0.0192616 0.0199437 0.0191147 0.0194403 0.0191396 0.0188233 0.0175439 0.0191568 0.0168001 6.32196e-10 0.0168001 1.39632e-09 0.0168001 2.88746e-09 0.0168001 5.57748e-09 0.0168001 1.31199e-08 0.0168001 2.83433e-08 0.0168 7.24357e-08 0.0168 1.62156e-07 0.0167999 4.23106e-07 0.0167999 9.50928e-07 0.0167996 2.51146e-06 0.0167995 5.55505e-06 0.0167983 1.56616e-05 0.0168026 3.19109e-05 0.0167964 0.000110672 0.0168527 0.000227742 0.016993 0.000979028 0.0178661 0.00273432 0.0211566 0.0129923 0.021286 0.0199313 0.0208135 0.020898 0.0202222 0.0204742 0.020016 0.0195096 0.0199313 0.0186893 0.0174764 0.0197974 0.0168001 4.70434e-10 0.0168001 1.04055e-09 0.0168001 2.58462e-09 0.0168001 3.73921e-09 0.0168001 1.24062e-08 0.0168001 1.91938e-08 0.0168 6.96767e-08 0.0168001 1.11144e-07 0.0168 4.11111e-07 0.0168002 6.54987e-07 0.0167997 2.45392e-06 0.0168008 3.79045e-06 0.0167981 1.51287e-05 0.016805 2.07536e-05 0.0167943 0.000100651 0.0168662 0.000130691 0.0169889 0.000749942 0.0179395 0.00160236 0.0228973 0.00715171 0.0224502 0.0201656 0.0223981 0.0209081 0.0217494 0.0211272 0.0211133 0.0200927 0.0208578 0.0188058 0.0175291 0.0206297 0.0168001 3.54355e-10 0.0168001 8.03387e-10 0.0168001 1.5176e-09 0.0168001 3.32627e-09 0.0168001 6.89605e-09 0.0168001 1.71249e-08 0.0168001 3.81916e-08 0.0168001 9.77042e-08 0.0168002 2.21732e-07 0.0168001 5.67773e-07 0.016801 1.29124e-06 0.0168003 3.37636e-06 0.0168066 7.44333e-06 0.0167994 2.16018e-05 0.0168486 4.42721e-05 0.0168003 0.000148899 0.0171749 0.000331553 0.0173056 0.0013427 0.0201445 0.00401882 0.0232328 0.0165774 0.0232689 0.0207912 0.0227945 0.0215256 0.0220227 0.0207254 0.0215902 0.0190478 0.0176445 0.0212321 0.0168001 2.51952e-10 0.0168001 5.64855e-10 0.0168001 9.73677e-10 0.0168001 2.89431e-09 0.0168001 4.47737e-09 0.0168001 1.52171e-08 0.0168001 2.50306e-08 0.0168 8.83209e-08 0.0168001 1.47228e-07 0.0168 5.2492e-07 0.0168002 8.71143e-07 0.0167995 3.15232e-06 0.0168008 5.06925e-06 0.016798 1.96742e-05 0.0168092 2.8369e-05 0.0167996 0.000134076 0.0169141 0.000191859 0.0171234 0.00105027 0.0183013 0.00271676 0.0234423 0.0107111 0.0238519 0.0202397 0.0238198 0.0214498 0.0231905 0.0213088 0.0224541 0.0197361 0.0179772 0.0219924 0.0168001 1.87165e-11 0.0168001 3.29669e-10 0.0168001 8.80213e-10 0.0168001 1.6769e-09 0.0168001 3.95074e-09 0.0168001 8.32397e-09 0.0168001 2.09358e-08 0.0168001 4.69747e-08 0.0168001 1.21264e-07 0.0168002 2.76526e-07 0.0168001 7.17115e-07 0.0168012 1.6388e-06 0.0168003 4.32798e-06 0.0168081 9.7128e-06 0.0168 2.7552e-05 0.0168595 5.99722e-05 0.0168324 0.000188584 0.0173468 0.000462912 0.0182856 0.00169304 0.0232618 0.00529644 0.0249885 0.0182522 0.025124 0.0212801 0.0245934 0.0217694 0.0234336 0.0207479 0.0185758 0.0226671 0.0168001 -9.29885e-11 0.0168001 2.80663e-10 0.0168001 7.26639e-10 0.0168001 1.16406e-09 0.0168001 3.22012e-09 0.0168001 5.20378e-09 0.0168001 1.69277e-08 0.0168001 2.89714e-08 0.0168001 9.90002e-08 0.0168001 1.71545e-07 0.0168 5.91978e-07 0.0168004 1.02085e-06 0.0167999 3.56715e-06 0.0168022 5.98096e-06 0.0168012 2.22883e-05 0.0168199 3.38639e-05 0.0168259 0.000152452 0.0170147 0.000238373 0.0174153 0.00120498 0.0191537 0.00338518 0.0247777 0.0118766 0.0254011 0.0204831 0.0254598 0.0215341 0.0246473 0.0215227 0.0195636 0.0236917 0.0168001 -6.71568e-11 0.0168001 1.38431e-10 0.0168001 3.99815e-10 0.0168001 8.58678e-10 0.0168001 1.68535e-09 0.0168001 3.99261e-09 0.0168001 8.68103e-09 0.0168001 2.22377e-08 0.0168001 5.0406e-08 0.0168001 1.31287e-07 0.0168003 3.00088e-07 0.0168001 7.84354e-07 0.0168014 1.7936e-06 0.0168004 4.76288e-06 0.0168094 1.07892e-05 0.0168027 3.00184e-05 0.0168676 6.76406e-05 0.0168662 0.000202105 0.0174546 0.000518772 0.0189071 0.00183395 0.0244788 0.00567088 0.0263807 0.0182839 0.0266415 0.0211646 0.0259254 0.022111 0.0206562 0.0247868 0.0168001 -4.18459e-11 0.0168001 8.04384e-11 0.0168001 2.28482e-10 0.0168001 5.88678e-10 0.0168001 9.5976e-10 0.0168001 2.89276e-09 0.0168001 5.01494e-09 0.0168001 1.64267e-08 0.0168001 2.9285e-08 0.0168001 9.78319e-08 0.0168001 1.75112e-07 0.0168001 5.87952e-07 0.0168005 1.04717e-06 0.0168004 3.55926e-06 0.0168034 6.17116e-06 0.0168038 2.234e-05 0.0168287 3.51047e-05 0.016841 0.000152269 0.0170782 0.000245339 0.0175972 0.00119134 0.0197688 0.00333064 0.025776 0.0112164 0.0263936 0.0202404 0.0272169 0.0212349 0.0216571 0.0263117 0.0168001 -2.61266e-11 0.0168001 5.12182e-11 0.0168001 1.48673e-10 0.0168001 3.00774e-10 0.0168001 6.75965e-10 0.0168001 1.41962e-09 0.0168001 3.56667e-09 0.0168001 8.02007e-09 0.0168001 2.083e-08 0.0168001 4.76313e-08 0.0168001 1.24206e-07 0.0168003 2.84976e-07 0.0168002 7.44662e-07 0.0168016 1.70654e-06 0.016801 4.54322e-06 0.0168101 1.02588e-05 0.0168041 2.89695e-05 0.0168724 6.39318e-05 0.0168738 0.000198214 0.0174811 0.000483322 0.0189118 0.00176491 0.0242614 0.00529663 0.0272553 0.0166617 0.0274296 0.0209305 0.0215076 0.0275331 0.0168001 -1.6254e-11 0.0168001 3.33919e-11 0.0168001 9.57517e-11 0.0168001 1.65345e-10 0.0168001 4.48625e-10 0.0168001 7.67753e-10 0.0168001 2.41559e-09 0.0168001 4.39198e-09 0.0168001 1.43327e-08 0.0168001 2.63972e-08 0.0168001 8.62942e-08 0.0168002 1.58915e-07 0.0168002 5.19243e-07 0.0168006 9.50464e-07 0.0168007 3.14099e-06 0.0168037 5.61417e-06 0.0168048 1.96205e-05 0.0168281 3.25097e-05 0.0168487 0.000131249 0.0170644 0.000222271 0.0176701 0.000991566 0.0199498 0.0027196 0.0260351 0.00910466 0.027598 0.0192064 0.0207969 0.0284156 0.0168001 -8.55277e-12 0.0168001 1.60645e-11 0.0168001 4.7549e-11 0.0168001 1.04208e-10 0.0168001 2.08784e-10 0.0168001 5.09661e-10 0.0168001 1.12558e-09 0.0168001 2.93538e-09 0.0168001 6.70834e-09 0.0168001 1.75909e-08 0.0168001 4.04217e-08 0.0168001 1.05243e-07 0.0168003 2.4194e-07 0.0168003 6.26884e-07 0.0168016 1.43881e-06 0.0168015 3.78564e-06 0.0168098 8.54158e-06 0.0168063 2.43146e-05 0.0168717 5.1986e-05 0.0168642 0.000169071 0.0173993 0.000379741 0.0184138 0.00148064 0.022849 0.00424538 0.0276977 0.0135746 0.0202543 0.0281719 0.0168001 -4.58915e-12 0.0168001 8.7739e-12 0.0168001 2.45354e-11 0.0168001 6.03087e-11 0.0168001 1.01381e-10 0.0168001 3.03311e-10 0.0168001 5.60606e-10 0.0168001 1.7919e-09 0.0168001 3.39452e-09 0.0168001 1.09752e-08 0.0168001 2.07902e-08 0.0168001 6.71107e-08 0.0168001 1.26855e-07 0.0168002 4.08566e-07 0.0168006 7.69838e-07 0.0168008 2.48747e-06 0.0168032 4.63496e-06 0.0168064 1.53363e-05 0.0168215 2.78988e-05 0.0168616 9.76124e-05 0.0170048 0.000186984 0.0176589 0.000687556 0.0196301 0.00191194 0.0260826 0.0061095 0.0170408 0.0288111 0.0168001 -1.96211e-12 0.0168001 3.69755e-12 0.0168001 1.07793e-11 0.0168001 2.14669e-11 0.0168001 6.14555e-11 0.0168001 1.14952e-10 0.0168001 3.54766e-10 0.0168001 7.15291e-10 0.0168001 2.2273e-09 0.0168001 4.49887e-09 0.0168001 1.39419e-08 0.0168001 2.80376e-08 0.0168001 8.61413e-08 0.0168003 1.72795e-07 0.0168003 5.27209e-07 0.0168014 1.05255e-06 0.0168014 3.22707e-06 0.0168085 6.29978e-06 0.0168069 2.03915e-05 0.0168589 3.71416e-05 0.016858 0.000136205 0.0172332 0.000254544 0.0178838 0.0010307 0.0208006 0.00283528 0.00886015 0.0272351 0.0168001 -3.15661e-13 0.0168001 3.78474e-13 0.0168001 4.97814e-12 0.0168001 1.08823e-11 0.0168001 2.07089e-11 0.0168001 5.84215e-11 0.0168001 1.36672e-10 0.0168001 3.86658e-10 0.0168001 9.176e-10 0.0168001 2.54287e-09 0.0168001 5.95073e-09 0.0168001 1.6121e-08 0.0168001 3.73628e-08 0.0168001 9.94542e-08 0.0168003 2.29121e-07 0.0168004 6.02928e-07 0.0168018 1.38175e-06 0.0168022 3.66493e-06 0.0168114 8.27964e-06 0.0168111 2.33023e-05 0.0168794 5.07087e-05 0.0169009 0.00015968 0.0174661 0.000363723 0.018694 0.00134537 0.003812 0.0232024 0.0168001 -8.91539e-15 0.0168001 -1.94207e-13 0.0168001 1.48047e-12 0.0168001 4.06624e-12 0.0168001 5.87181e-12 0.0168001 2.19131e-11 0.0168001 4.5387e-11 0.0168001 1.75325e-10 0.0168001 3.60378e-10 0.0168001 1.26357e-09 0.0168001 2.58101e-09 0.0168001 8.4207e-09 0.0168001 1.69347e-08 0.0168001 5.37317e-08 0.0168002 1.0643e-07 0.0168002 3.34737e-07 0.0168007 6.54436e-07 0.0168009 2.06438e-06 0.0168035 3.98334e-06 0.0168066 1.27518e-05 0.0168217 2.46597e-05 0.0168644 8.01935e-05 0.0169873 0.000169261 0.0176374 0.000569354 0.00162288 0.0195869 0.0168001 4.22817e-15 0.0168001 1.1303e-14 0.0168001 7.62432e-13 0.0168001 1.73396e-12 0.0168001 2.65468e-12 0.0168001 5.38633e-12 0.0168001 1.03091e-11 0.0168001 3.88283e-11 0.0168001 1.48069e-10 0.0168001 3.98505e-10 0.0168001 1.22605e-09 0.0168001 3.09372e-09 0.0168001 8.67973e-09 0.0168001 2.10729e-08 0.0168001 5.73927e-08 0.0168002 1.35865e-07 0.0168003 3.64994e-07 0.0168011 8.52833e-07 0.0168013 2.28264e-06 0.0168067 5.29115e-06 0.0168088 1.42486e-05 0.016845 3.31372e-05 0.0168745 9.09751e-05 0.0171652 0.000222296 0.000675227 0.0178779 0.0168001 7.69632e-15 0.0168001 4.26379e-14 0.0168001 2.72173e-13 0.0168001 6.72588e-13 0.0168001 1.1437e-12 0.0168001 1.82676e-12 0.0168001 3.40545e-12 0.0168001 4.89528e-12 0.0168001 2.98465e-11 0.0168001 8.96805e-11 0.0168001 3.98528e-10 0.0168001 1.05287e-09 0.0168001 3.46204e-09 0.0168001 8.51713e-09 0.0168001 2.48633e-08 0.0168001 5.8658e-08 0.0168002 1.65005e-07 0.0168005 3.80747e-07 0.0168009 1.04961e-06 0.0168028 2.39834e-06 0.016806 6.54699e-06 0.0168176 1.49751e-05 0.0168418 4.08374e-05 0.0169193 9.72848e-05 0.000273381 0.017162 0.0168001 -1.67849e-14 0.0168001 4.82387e-14 0.0168001 8.03674e-14 0.0168001 2.05451e-13 0.0168001 3.58412e-13 0.0168001 2.1822e-13 0.0168001 5.50267e-12 0.0168001 -1.23251e-12 0.0168001 1.50729e-11 0.0168001 1.09225e-11 0.0168001 8.19514e-11 0.0168001 2.59459e-10 0.0168001 1.03779e-09 0.0168001 2.83583e-09 0.0168001 9.53899e-09 0.0168001 2.35247e-08 0.0168001 6.94701e-08 0.0168003 1.64489e-07 0.0168005 4.63233e-07 0.0168014 1.06702e-06 0.0168029 2.93421e-06 0.0168084 6.63581e-06 0.0168174 1.83758e-05 0.0168633 4.09043e-05 0.000119607 0.0169264 0.0168001 -1.70225e-14 0.0168001 1.65782e-14 0.0168001 2.11417e-13 0.0168001 3.62195e-13 0.0168001 7.4263e-13 0.0168001 1.26472e-12 0.0168001 2.08944e-12 0.0168001 4.14033e-12 0.0168001 7.63331e-12 0.0168001 7.43902e-12 0.0168001 4.55023e-11 0.0168001 7.8103e-11 0.0168001 2.27481e-10 0.0168001 6.15447e-10 0.0168001 2.55772e-09 0.0168001 6.7436e-09 0.0168001 2.64846e-08 0.0168002 5.8379e-08 0.0168003 1.9541e-07 0.0168007 4.19541e-07 0.0168013 1.29937e-06 0.0168039 2.72557e-06 0.0168077 8.26761e-06 0.0168225 1.70913e-05 5.22226e-05 0.01685 0.0168001 -8.32725e-14 0.0168001 1.46503e-13 0.0168001 1.32593e-13 0.0168001 1.31852e-13 0.0168001 8.71395e-13 0.0168001 4.92504e-13 0.0168001 2.89892e-12 0.0168001 4.80974e-12 0.0168001 7.79374e-12 0.0168001 1.94083e-11 0.0168001 3.36689e-11 0.0168001 1.15553e-11 0.0168001 1.77907e-10 0.0168001 1.33888e-10 0.0168001 7.84221e-10 0.0168001 1.45124e-09 0.0168001 5.13774e-09 0.0168001 1.93463e-08 0.0168003 5.12918e-08 0.0168003 1.78732e-07 0.016801 4.08342e-07 0.0168013 1.27859e-06 0.0168051 2.82129e-06 0.0168068 8.39986e-06 1.82932e-05 0.0168291 0.0168001 -2.26327e-14 0.0168001 2.65698e-14 0.0168001 1.41244e-13 0.0168001 2.09096e-13 0.0168001 5.2871e-13 0.0168001 2.0014e-12 0.0168001 5.31514e-13 0.0168001 1.0209e-11 0.0168001 1.21731e-11 0.0168001 1.38443e-11 0.0168001 2.44979e-11 0.0168001 6.56433e-11 0.0168001 3.42517e-11 0.0168001 2.27349e-10 0.0168001 1.93123e-10 0.0168001 1.09028e-09 0.0168001 8.76188e-10 0.0168002 4.39346e-09 0.0168002 1.11814e-08 0.0168003 3.73467e-08 0.0168005 1.46931e-07 0.0168011 3.552e-07 0.0168016 1.19122e-06 0.0168054 2.67479e-06 8.17996e-06 0.016808 0.0168001 -6.09978e-15 0.0168001 4.32358e-15 0.0168001 2.94264e-14 0.0168001 5.02266e-14 0.0168001 1.16816e-13 0.0168001 5.01658e-13 0.0168001 -1.11958e-13 0.0168001 2.97863e-12 0.0168001 3.84633e-12 0.0168001 6.74687e-12 0.0168001 1.33331e-11 0.0168001 -2.73338e-11 0.0168001 9.42942e-11 0.0168001 1.89886e-11 0.0168001 4.09744e-10 0.0168001 9.31252e-11 0.0168001 1.29175e-09 0.0168001 5.70101e-10 0.0168002 5.59304e-09 0.0168003 4.97453e-09 0.0168005 2.76931e-08 0.0168006 9.33723e-08 0.0168015 2.96738e-07 0.016802 9.65126e-07 2.49528e-06 0.016806 0.0168001 -2.35179e-15 0.0168001 1.94576e-15 0.0168001 7.32162e-15 0.0168001 7.353e-15 0.0168001 8.07308e-15 0.0168001 4.30637e-14 0.0168001 -2.19115e-13 0.0168001 2.5307e-13 0.0168001 -1.1867e-12 0.0168001 1.93645e-12 0.0168001 8.22902e-12 0.0168001 2.36801e-11 0.0168001 8.19141e-11 0.0168001 1.55322e-10 0.0168001 3.30064e-10 0.0168001 4.09471e-10 0.0168001 9.10129e-10 0.0168001 1.75332e-09 0.0168002 3.45681e-09 0.0168003 5.93232e-09 0.0168004 8.43979e-09 0.0168006 2.01133e-08 0.0168011 4.94767e-08 0.0168016 2.19373e-07 6.05554e-07 0.0168036 0.0168001 6.67926e-16 0.0168001 -1.91632e-15 0.0168001 1.03669e-14 0.0168001 2.24793e-14 0.0168001 4.6584e-14 0.0168001 1.60048e-13 0.0168001 -5.69763e-14 0.0168001 1.47831e-13 0.0168001 -1.09525e-12 0.0168001 3.2844e-12 0.0168001 6.83385e-12 0.0168001 8.26843e-11 0.0168001 8.96973e-11 0.0168001 1.74019e-10 0.0168001 2.67988e-10 0.0168001 4.26693e-10 0.0168001 9.57262e-10 0.0168001 2.61207e-09 0.0168002 3.57923e-09 0.0168003 1.024e-08 0.0168004 5.26704e-09 0.0168006 2.36684e-08 0.0168009 1.18185e-08 0.0168017 6.69197e-08 1.18868e-07 0.0168025 0.0168001 8.0854e-16 0.0168001 -2.37175e-15 0.0168001 9.53593e-15 0.0168001 2.7769e-14 0.0168001 6.77821e-14 0.0168001 2.49017e-13 0.0168001 1.36282e-13 0.0168001 -1.00869e-13 0.0168001 1.13179e-12 0.0168001 1.09602e-12 0.0168001 -4.1272e-12 0.0168001 4.84259e-11 0.0168001 2.38843e-12 0.0168001 3.62395e-11 0.0168001 1.177e-10 0.0168001 5.12576e-10 0.0168001 9.19748e-10 0.0168001 1.21741e-09 0.0168002 2.74223e-09 0.0168003 1.57416e-09 0.0168004 9.17011e-09 0.0168005 2.8476e-09 0.0168008 2.24554e-08 0.0168014 5.05808e-09 6.40336e-08 0.0168023 0.0168001 -5.11093e-16 0.0168001 8.81131e-16 0.0168001 2.10569e-15 0.0168001 5.96328e-15 0.0168001 1.97002e-14 0.0168001 6.48825e-14 0.0168001 1.03976e-13 0.0168001 2.67372e-14 0.0168001 6.25543e-13 0.0168001 1.31111e-12 0.0168001 -1.97316e-12 0.0168001 9.23189e-12 0.0168001 -2.51552e-11 0.0168001 4.6746e-12 0.0168001 6.98975e-11 0.0168001 6.12231e-10 0.0168001 2.86557e-10 0.0168001 1.14855e-09 0.0168002 6.94487e-10 0.0168003 3.45045e-09 0.0168004 2.02317e-09 0.0168005 6.65528e-09 0.0168008 3.32071e-09 0.0168013 1.63921e-08 7.41917e-09 0.0168021 0.0168001 -5.30392e-16 0.0168001 8.17055e-16 0.0168001 -1.20574e-15 0.0168001 -3.26545e-15 0.0168001 -3.24144e-15 0.0168001 -1.12761e-14 0.0168001 1.12757e-14 0.0168001 2.29141e-14 0.0168001 2.04735e-13 0.0168001 7.36792e-13 0.0168001 -3.0024e-13 0.0168001 -1.03655e-12 0.0168001 -4.35893e-11 0.0168001 6.31222e-11 0.0168001 -9.31289e-11 0.0168001 2.19789e-10 0.0168001 -1.88819e-10 0.0168001 4.8055e-10 0.0168002 -2.40775e-10 0.0168003 1.62563e-09 0.0168004 2.91906e-10 0.0168005 2.43378e-09 0.0168009 -6.16441e-10 0.0168014 5.87528e-09 -6.49539e-10 0.0168022 0.0168001 4.55311e-16 0.0168001 -1.10377e-15 0.0168001 -2.70693e-15 0.0168001 -4.42794e-15 0.0168001 -6.93434e-15 0.0168001 -1.96605e-14 0.0168001 -3.89412e-14 0.0168001 -1.16664e-14 0.0168001 -2.13893e-13 0.0168001 -2.4903e-14 0.0168001 -1.80558e-13 0.0168001 -1.53682e-12 0.0168001 -1.47985e-11 0.0168001 2.47104e-11 0.0168001 -4.63912e-11 0.0168001 2.01494e-11 0.0168001 -9.91377e-11 0.0168001 8.29529e-11 0.0168002 -1.27265e-11 0.0168003 2.90304e-10 0.0168004 8.46324e-11 0.0168005 2.80451e-10 0.0168008 -7.13877e-11 0.0168014 7.85413e-10 -2.25512e-10 0.0168022 0.0168001 -1.88109e-16 0.0168001 -1.63877e-16 0.0168001 -2.84175e-15 0.0168001 -8.43807e-15 0.0168001 -2.23046e-14 0.0168001 -6.47302e-14 0.0168001 -1.08633e-13 0.0168001 -4.05541e-14 0.0168001 -4.12044e-13 0.0168001 -2.26804e-13 0.0168001 4.01073e-15 0.0168001 -6.63944e-13 0.0168001 -3.53913e-12 0.0168001 1.2348e-11 0.0168001 -1.86796e-11 0.0168001 -1.42042e-11 0.0168001 -8.90638e-12 0.0168001 1.15358e-11 0.0168002 4.79816e-11 0.0168003 2.83403e-11 0.0168004 6.52174e-11 0.0168005 -4.62259e-14 0.0168008 6.40439e-11 0.0168014 1.04694e-10 -4.21984e-11 0.0168022 0.0168001 -2.55868e-16 0.0168001 5.10392e-16 0.0168001 -8.13211e-15 0.0168001 -1.79372e-14 0.0168001 -3.58876e-14 0.0168001 -1.41347e-13 0.0168001 -1.84486e-14 0.0168001 5.01871e-14 0.0168001 -4.55569e-13 0.0168001 7.05946e-14 0.0168001 5.13509e-13 0.0168001 -1.06594e-12 0.0168001 7.03779e-13 0.0168001 9.61998e-12 0.0168001 -3.78061e-12 0.0168001 1.43966e-11 0.0168001 4.08375e-11 0.0168001 7.83143e-12 0.0168002 9.63262e-12 0.0168003 -2.50672e-11 0.0168004 1.55019e-11 0.0168005 -2.81414e-11 0.0168008 4.15255e-11 0.0168014 4.73193e-12 -1.38114e-11 0.0168022 0.0168001 8.10437e-16 0.0168001 -1.6913e-15 0.0168001 7.83835e-15 0.0168001 2.08305e-14 0.0168001 4.67069e-14 0.0168001 1.94924e-13 0.0168001 4.18156e-14 0.0168001 -1.28152e-13 0.0168001 3.44567e-13 0.0168001 -1.5001e-12 0.0168001 5.49872e-13 0.0168001 -9.97562e-13 0.0168001 4.41927e-11 0.0168001 -3.92967e-11 0.0168001 1.21621e-10 0.0168001 7.43064e-11 0.0168001 2.37145e-11 0.0168001 1.25377e-11 0.0168002 -7.66507e-11 0.0168003 -8.36949e-11 0.0168004 -1.16177e-11 0.0168006 -1.41525e-11 0.0168008 2.63329e-11 0.0168014 -8.89208e-13 6.07554e-12 0.0168022 0.0168001 1.70053e-16 0.0168001 -2.82222e-16 0.0168001 2.41094e-15 0.0168001 1.04783e-14 0.0168001 3.48447e-14 0.0168001 1.03419e-13 0.0168001 9.359e-14 0.0168001 2.26056e-14 0.0168001 2.93864e-14 0.0168001 -1.37818e-12 0.0168001 5.05701e-12 0.0168001 -1.35029e-11 0.0168001 5.53977e-11 0.0168001 -2.34973e-11 0.0168001 1.00195e-10 0.0168001 -2.76683e-13 0.0168001 3.64557e-11 0.0168001 -3.05849e-11 0.0168002 -6.483e-11 0.0168003 -1.16533e-11 0.0168004 1.08724e-11 0.0168005 -2.9459e-11 0.0168008 -7.64645e-12 0.0168014 -3.86106e-12 2.01354e-11 0.0168022 0.0168001 -1.24409e-16 0.0168001 4.98303e-16 0.0168001 1.27453e-15 0.0168001 2.11176e-15 0.0168001 7.45269e-15 0.0168001 2.13419e-14 0.0168001 1.0922e-14 0.0168001 6.60635e-14 0.0168001 -2.00387e-13 0.0168001 -7.20371e-13 0.0168001 5.24728e-12 0.0168001 -1.85478e-11 0.0168001 2.45813e-11 0.0168001 3.96781e-12 0.0168001 7.94739e-12 0.0168001 -6.58552e-11 0.0168001 3.14541e-11 0.0168001 -1.39515e-11 0.0168002 -1.76562e-11 0.0168003 1.00859e-11 0.0168004 -5.18289e-13 0.0168005 -2.56915e-11 0.0168008 -1.37306e-11 0.0168014 2.7082e-12 2.77986e-11 0.0168022 0.0168001 0.0168001 0.0168001 0.0168001 0.0168001 0.0168001 0.0168001 0.0168001 0.0168001 0.0168001 0.0168001 0.0168001 0.0168001 0.0168001 0.0168001 0.0168001 0.0168001 0.0168001 0.0168002 0.0168003 0.0168004 0.0168005 0.0168008 0.0168014 0.0168022 0.00965478 0.00861945 -1.54312e-10 0.00623252 0.00343661 -3.31534e-11 0.00472746 0.0014996 1.29672e-11 0.00411258 0.000617662 4.4875e-11 0.00399562 0.00011288 4.60524e-11 0.00424357 -0.000253314 4.21035e-11 0.00466755 -0.000409714 2.94955e-11 0.00494076 -0.000254912 1.60218e-11 0.00503781 -8.7646e-05 4.12788e-11 0.00502746 1.56864e-05 1.16429e-11 0.00496832 6.23569e-05 -9.55831e-12 0.00493207 3.42823e-05 -8.13209e-11 0.00492562 7.74176e-06 -8.97198e-11 0.00495986 -2.53142e-05 -1.15451e-10 0.00503052 -4.65921e-05 -1.74381e-10 0.00512025 -5.68362e-05 -1.82727e-10 0.00521612 -6.0212e-05 -1.8581e-10 0.00532157 -6.19926e-05 -1.78379e-10 0.00544225 -6.76737e-05 -1.71633e-10 0.00557864 -7.54118e-05 -1.62673e-10 0.00572779 -8.35501e-05 -1.5341e-10 0.00588341 -9.03586e-05 -1.46446e-10 0.00603646 -9.53275e-05 -1.43398e-10 0.00617897 -9.82202e-05 -1.43693e-10 0.00630586 -9.91997e-05 -1.43498e-10 0.00641777 -9.85804e-05 -1.43537e-10 0.00652215 -9.59974e-05 -1.41808e-10 0.00662043 -9.24545e-05 -1.34835e-10 0.00670309 -8.92378e-05 -1.30316e-10 0.00676789 -8.47742e-05 -1.24335e-10 0.00682101 -7.82606e-05 -1.19353e-10 0.00686529 -7.20705e-05 -1.14684e-10 0.00690151 -6.59182e-05 -1.10545e-10 0.00693137 -5.99439e-05 -1.06997e-10 0.0069587 -5.43897e-05 -1.03314e-10 0.00698785 -4.96102e-05 -9.89875e-11 0.00702142 -4.59263e-05 -9.58638e-11 0.00706027 -4.35358e-05 -9.37435e-11 0.00710581 -4.25704e-05 -9.0467e-11 0.00716108 -4.30853e-05 -8.3781e-11 0.00722975 -4.50701e-05 -7.50825e-11 0.00731653 -4.851e-05 -6.7547e-11 0.00742403 -5.35081e-05 -5.59607e-11 0.00754668 -5.99311e-05 -4.98993e-11 0.0076853 -6.73711e-05 -4.60303e-11 0.00788993 -7.68639e-05 -3.77628e-11 0.00825844 -7.98944e-05 5.7588e-12 0.00879637 -8.36825e-05 -1.5587e-11 0.00947166 -9.37753e-05 8.42992e-12 0.0102534 -0.000108782 2.57351e-11 0.0111049 -0.000118749 3.58341e-11 0.0119979 -0.000125121 4.57714e-11 0.0129041 -0.000131922 5.44081e-11 0.0137971 -0.000138997 6.28135e-11 0.0146555 -0.000146173 6.81408e-11 0.0154641 -0.000153282 7.2325e-11 0.0162091 -0.000160256 7.83211e-11 0.0168755 -0.000167074 9.2179e-11 0.0174486 -0.000173326 1.1632e-10 0.0179191 -0.000178093 1.47129e-10 0.018294 -0.000180665 1.75143e-10 0.0185983 -0.000180886 1.87318e-10 0.0188495 -0.000178994 1.90281e-10 0.0190539 -0.000175186 2.00483e-10 0.0192095 -0.000169665 2.25704e-10 0.0192914 -0.000162583 2.79108e-10 0.019213 -0.000153781 3.96005e-10 0.0186807 -0.000141332 6.60097e-10 0.0179524 -0.000121888 8.66868e-10 0.016955 -0.000104485 9.5386e-10 0.0158247 -8.56049e-05 8.45333e-10 0.0147317 -6.64235e-05 6.76508e-10 0.013794 -4.93173e-05 4.94436e-10 0.0130564 -3.54985e-05 3.36381e-10 0.0125112 -2.50656e-05 2.15422e-10 0.0121256 -1.74933e-05 1.28977e-10 0.0118615 -1.20777e-05 6.93412e-11 0.0116851 -8.18649e-06 2.91826e-11 0.0115697 -5.37573e-06 2.51269e-12 0.0114949 -3.33255e-06 -1.5289e-11 0.0114459 -2.01796e-06 -2.75092e-11 0.0114118 -1.16771e-06 -3.59717e-11 0.0113854 -4.43278e-07 -4.15578e-11 0.0113627 9.54146e-08 -4.49029e-11 0.0113415 4.14778e-07 -4.65699e-11 0.0113211 5.68406e-07 -4.70462e-11 0.0113016 6.08326e-07 -4.67525e-11 0.0112833 5.77415e-07 -4.6028e-11 0.0112669 5.0836e-07 -4.51309e-11 0.0112525 4.24191e-07 -4.42275e-11 0.0112404 3.39703e-07 -4.34152e-11 0.0112305 2.6323e-07 -4.27377e-11 0.0112226 1.98514e-07 -4.21945e-11 0.0112165 1.46322e-07 -4.17867e-11 0.0112118 1.05854e-07 -4.1473e-11 0.0112084 7.52317e-08 -4.12619e-11 0.0112059 5.28214e-08 -4.10834e-11 0.011204 3.64559e-08 -4.10209e-11 0.0112028 2.47509e-08 -4.08533e-11 1.6437e-08 -4.09764e-11 0.0130292 0.0127326 -1.11161e-10 0.0099137 0.0065739 -2.0191e-11 0.00828188 0.00314163 4.90519e-11 0.00759436 0.00131571 6.80017e-11 0.00732396 0.00039264 8.47589e-11 0.00717261 -9.34304e-05 6.74108e-11 0.00703855 -0.000253854 3.68274e-11 0.0070777 -0.000268363 3.16066e-11 0.00722673 -0.000207534 1.96428e-11 0.00738771 -0.000111297 -2.29669e-11 0.0075028 -3.55976e-05 -3.15147e-11 0.00754143 7.01698e-06 -8.10506e-11 0.00754321 1.71431e-05 -9.87751e-11 0.00752959 3.8397e-07 -1.10967e-10 0.00753181 -3.26749e-05 -1.53805e-10 0.00755632 -6.10918e-05 -1.62167e-10 0.0076087 -8.47074e-05 -1.71422e-10 0.00768908 -0.000101883 -1.79913e-10 0.00778324 -0.000111137 -1.7836e-10 0.00788729 -0.0001206 -1.64412e-10 0.00800292 -0.000132818 -1.536e-10 0.0081306 -0.000144527 -1.45667e-10 0.00826738 -0.000155249 -1.42244e-10 0.00840736 -0.000163739 -1.41174e-10 0.00854278 -0.000169887 -1.40987e-10 0.00866661 -0.000173465 -1.39704e-10 0.00877656 -0.000174445 -1.35031e-10 0.00887818 -0.000172728 -1.29833e-10 0.00897659 -0.000169155 -1.22563e-10 0.00906499 -0.000165258 -1.14267e-10 0.00913725 -0.000159859 -1.09245e-10 0.00920116 -0.000151458 -1.05638e-10 0.00926344 -0.000142889 -1.00929e-10 0.00932482 -0.000134492 -9.9252e-11 0.00938312 -0.000126163 -9.68167e-11 0.00943815 -0.000118435 -9.3145e-11 0.00949263 -0.000111969 -9.16832e-11 0.00954872 -0.000107128 -9.06834e-11 0.00960427 -0.000104055 -8.84889e-11 0.00965219 -0.000102838 -8.19758e-11 0.00968594 -0.000103641 -7.2376e-11 0.00970957 -0.000106553 -6.21816e-11 0.00973917 -0.000111521 -5.11711e-11 0.00978571 -0.000118783 -4.69746e-11 0.00985353 -0.000128698 -4.09854e-11 0.00995824 -0.00013824 -2.44294e-11 0.0100917 -0.000147956 -1.16362e-11 0.0102362 -0.000159752 -1.13462e-11 0.0104493 -0.000169578 7.55117e-12 0.0108245 -0.000178071 3.28602e-11 0.0113621 -0.000195586 3.04516e-11 0.0120188 -0.000211494 4.40166e-11 0.0127634 -0.000226504 5.46647e-11 0.013567 -0.000240542 6.31117e-11 0.0144048 -0.000253956 7.00832e-11 0.015251 -0.000266899 7.5957e-11 0.0160778 -0.00027924 8.10257e-11 0.0168552 -0.000290616 9.60414e-11 0.0175531 -0.000300315 1.1441e-10 0.0181483 -0.000307382 1.44619e-10 0.0186341 -0.000311139 1.7487e-10 0.0190253 -0.000311381 1.88171e-10 0.0193334 -0.000308109 1.9133e-10 0.0195625 -0.000301466 2.01819e-10 0.0197157 -0.000291782 2.25615e-10 0.0197709 -0.000279404 2.7989e-10 0.0196138 -0.000264125 3.92549e-10 0.0191082 -0.00024333 6.41091e-10 0.0183324 -0.000216197 9.13346e-10 0.0172686 -0.00018468 9.37817e-10 0.0160728 -0.000150358 8.43806e-10 0.0149208 -0.000116337 6.78756e-10 0.0139336 -8.62232e-05 4.96998e-10 0.013157 -6.19137e-05 3.38239e-10 0.0125831 -4.34982e-05 2.16499e-10 0.0121774 -3.00773e-05 1.29367e-10 0.0118994 -2.05192e-05 6.94245e-11 0.0117128 -1.38179e-05 2.9053e-11 0.0115893 -9.04987e-06 1.87e-12 0.0115079 -5.60908e-06 -1.58525e-11 0.0114543 -3.14045e-06 -2.77989e-11 0.0114175 -1.41004e-06 -3.60306e-11 0.0113896 -2.00258e-07 -4.17601e-11 0.0113658 6.34882e-07 -4.49953e-11 0.0113436 1.12156e-06 -4.65963e-11 0.0113225 1.33137e-06 -4.70441e-11 0.0113024 1.34658e-06 -4.6738e-11 0.0112838 1.24116e-06 -4.6009e-11 0.0112671 1.07355e-06 -4.5112e-11 0.0112526 8.85421e-07 -4.42107e-11 0.0112404 7.03317e-07 -4.34018e-11 0.0112305 5.41815e-07 -4.27268e-11 0.0112226 4.06863e-07 -4.21867e-11 0.0112164 2.9898e-07 -4.1781e-11 0.0112118 2.156e-07 -4.1469e-11 0.0112084 1.52932e-07 -4.12593e-11 0.0112058 1.06775e-07 -4.10816e-11 0.011204 7.35593e-08 -4.10197e-11 0.0112027 5.01378e-08 -4.08524e-11 3.29222e-08 -4.09759e-11 0.0165194 0.0143393 -7.13739e-11 0.0141113 0.00905317 -1.99838e-11 0.0120974 0.00520002 1.38117e-11 0.0105784 0.0028598 5.84381e-11 0.00951451 0.00148331 5.70123e-11 0.00878036 0.000667261 7.23744e-11 0.00835132 0.000205272 6.04912e-11 0.00814823 -2.58117e-05 8.18206e-13 0.00817963 -0.000197519 -5.63334e-12 0.00836124 -0.000253028 -2.51731e-11 0.00858941 -0.000221689 -6.77325e-11 0.00875355 -0.000126983 -8.53209e-11 0.00885995 -6.69052e-05 -1.08267e-10 0.00890675 -3.53275e-05 -1.05976e-10 0.0089228 -3.42348e-05 -1.48352e-10 0.00892657 -5.11943e-05 -1.55298e-10 0.00893249 -7.70392e-05 -1.64009e-10 0.00895756 -0.000105848 -1.6505e-10 0.00901433 -0.000132722 -1.65523e-10 0.00909948 -0.000151529 -1.64589e-10 0.00919563 -0.000166017 -1.57736e-10 0.00929843 -0.000183324 -1.47049e-10 0.00940851 -0.000199236 -1.42244e-10 0.00952592 -0.000213124 -1.39368e-10 0.00964819 -0.000224728 -1.36603e-10 0.00976928 -0.000233519 -1.32117e-10 0.00988348 -0.000239095 -1.26262e-10 0.00998908 -0.00024148 -1.20587e-10 0.010089 -0.000241212 -1.10768e-10 0.010189 -0.000238463 -1.00573e-10 0.0102879 -0.000233757 -9.8889e-11 0.0103789 -0.000227646 -9.74496e-11 0.0104643 -0.000219624 -8.18582e-11 0.0105506 -0.000210594 -8.2937e-11 0.0106412 -0.000201507 -8.49682e-11 0.0107368 -0.000192652 -7.8765e-11 0.0108377 -0.000184722 -7.59101e-11 0.0109426 -0.000178625 -7.97033e-11 0.011046 -0.000174253 -8.32959e-11 0.0111364 -0.000171354 -7.8676e-11 0.0111999 -0.000170535 -6.44514e-11 0.0112308 -0.000172507 -5.19384e-11 0.0112383 -0.000176179 -4.25629e-11 0.0112379 -0.000183015 -4.04725e-11 0.0112499 -0.000193258 -3.39873e-11 0.0113021 -0.000203783 -1.92811e-11 0.0114058 -0.000215608 -1.26844e-11 0.0115423 -0.000233173 -4.61052e-12 0.0117178 -0.00024873 1.35128e-11 0.0119981 -0.000257796 2.56823e-11 0.0124357 -0.000270118 2.96524e-11 0.0130036 -0.000294776 4.85319e-11 0.0136652 -0.000314366 5.33885e-11 0.0143913 -0.000332515 6.30071e-11 0.0151571 -0.000349437 7.16372e-11 0.0159375 -0.000365096 7.91905e-11 0.0167078 -0.000379293 8.28939e-11 0.0174412 -0.000391913 9.54722e-11 0.018106 -0.000402448 1.17967e-10 0.018674 -0.000410079 1.42785e-10 0.0191338 -0.000413886 1.73703e-10 0.0194971 -0.000413383 1.88945e-10 0.0197735 -0.000408619 1.93121e-10 0.0199675 -0.000399844 2.06973e-10 0.0200804 -0.000387445 2.35918e-10 0.0200856 -0.000371683 2.95209e-10 0.0198624 -0.000352671 4.0524e-10 0.0193519 -0.000329703 6.30953e-10 0.0185394 -0.000294799 9.12148e-10 0.0174384 -0.000252593 9.33115e-10 0.0162072 -0.000205727 8.44399e-10 0.0150225 -0.000159156 6.82966e-10 0.014007 -0.000117898 5.01835e-10 0.0132081 -8.45435e-05 3.4203e-10 0.0126177 -5.92069e-05 2.1883e-10 0.0122004 -4.07313e-05 1.30537e-10 0.0119146 -2.76317e-05 7.01631e-11 0.011723 -1.85643e-05 2.85274e-11 0.0115962 -1.20939e-05 1.51751e-12 0.0115128 -7.37245e-06 -1.61911e-11 0.0114576 -3.89873e-06 -2.81671e-11 0.0114198 -1.45792e-06 -3.64299e-11 0.011391 1.68502e-07 -4.19071e-11 0.0113664 1.26619e-06 -4.50865e-11 0.0113438 1.88e-06 -4.66332e-11 0.0113223 2.11481e-06 -4.70395e-11 0.0113021 2.0858e-06 -4.67098e-11 0.0112834 1.8955e-06 -4.59712e-11 0.0112667 1.62507e-06 -4.50737e-11 0.0112522 1.33235e-06 -4.41766e-11 0.0112401 1.05396e-06 -4.3374e-11 0.0112302 8.09481e-07 -4.27054e-11 0.0112223 6.06474e-07 -4.21709e-11 0.0112163 4.44817e-07 -4.17697e-11 0.0112117 3.20287e-07 -4.14608e-11 0.0112082 2.26872e-07 -4.1254e-11 0.0112058 1.58456e-07 -4.10782e-11 0.011204 1.09072e-07 -4.10172e-11 0.0112027 7.41872e-08 -4.08507e-11 4.88934e-08 -4.0975e-11 0.0179747 0.0144781 -4.52713e-11 0.0165565 0.0105754 -1.80016e-11 0.0147018 0.00712373 -5.07329e-12 0.0130225 0.0045847 6.00051e-11 0.0117106 0.00283331 4.7072e-11 0.0107548 0.00166499 9.21757e-11 0.0101212 0.000884942 7.63286e-11 0.00973623 0.000391254 6.20007e-11 0.00952371 7.98378e-05 4.22481e-11 0.00941734 -9.64027e-05 -4.55766e-11 0.0094068 -0.000164295 -5.27758e-11 0.00952352 -0.000199893 -7.67183e-11 0.00966231 -0.00017342 -1.28104e-10 0.0097791 -0.000125378 -1.42823e-10 0.00985905 -9.18603e-05 -1.75335e-10 0.00990496 -7.56164e-05 -1.83981e-10 0.00993669 -7.70286e-05 -1.63819e-10 0.00995698 -9.5014e-05 -1.63072e-10 0.00998254 -0.000121943 -1.59593e-10 0.0100302 -0.000151856 -1.58485e-10 0.0101029 -0.00018042 -1.54265e-10 0.0101976 -0.000205483 -1.38936e-10 0.0102878 -0.000228433 -1.41159e-10 0.0103792 -0.000248942 -1.30478e-10 0.0104781 -0.000266202 -1.26393e-10 0.0105857 -0.000280952 -1.20516e-10 0.010699 -0.000292294 -1.128e-10 0.0108144 -0.000300188 -1.04932e-10 0.0109314 -0.000304794 -9.54641e-11 0.0110516 -0.000305688 -8.56055e-11 0.0111766 -0.000303446 -7.79778e-11 0.0113078 -0.000298693 -7.25246e-11 0.0114453 -0.000292386 -6.50797e-11 0.011588 -0.000284935 -6.04551e-11 0.0117341 -0.000276873 -6.62075e-11 0.01188 -0.000268983 -7.46489e-11 0.0120245 -0.000261407 -6.28659e-11 0.0121693 -0.000253853 -5.7559e-11 0.0123096 -0.000247813 -7.46406e-11 0.0124294 -0.000246271 -7.9093e-11 0.0125144 -0.000246964 -5.30284e-11 0.0125634 -0.00024699 -3.08181e-11 0.0125815 -0.000248769 -3.19417e-11 0.0125793 -0.000255252 -3.18517e-11 0.012575 -0.000264786 -2.85692e-11 0.0125917 -0.000276282 -1.78231e-11 0.0126519 -0.000289279 -7.80275e-12 0.0127645 -0.000305594 -1.28203e-12 0.0129138 -0.000325096 4.61867e-12 0.0131021 -0.000340907 2.64967e-11 0.0133888 -0.000351973 4.78663e-11 0.0138231 -0.000367035 5.54429e-11 0.0143744 -0.00039177 4.21294e-11 0.0150039 -0.000411911 6.54345e-11 0.0156794 -0.000430765 7.89791e-11 0.0163754 -0.00044757 8.65007e-11 0.0170728 -0.000462482 9.12284e-11 0.0177476 -0.000475372 1.0345e-10 0.0183712 -0.000485713 1.18983e-10 0.0189149 -0.000492902 1.45838e-10 0.0193625 -0.000496185 1.75443e-10 0.0197186 -0.000494981 1.89143e-10 0.0199886 -0.000489085 1.92726e-10 0.0201749 -0.000478495 2.03547e-10 0.0202742 -0.000463526 2.27435e-10 0.0202512 -0.00044459 2.83917e-10 0.0200535 -0.000421603 3.96845e-10 0.0196294 -0.00039314 5.94781e-10 0.0187447 -0.00035391 9.14939e-10 0.0176194 -0.00030385 9.21757e-10 0.0163656 -0.000247672 8.42922e-10 0.0151542 -0.00019164 6.87807e-10 0.014111 -0.000141818 5.08343e-10 0.0132869 -0.00010139 3.47669e-10 0.0126756 -7.06688e-05 2.22819e-10 0.0122422 -4.8343e-05 1.3349e-10 0.0119444 -3.25985e-05 7.21673e-11 0.0117445 -2.15899e-05 2.85929e-11 0.0116122 -1.37239e-05 1.57895e-12 0.0115248 -8.0363e-06 -1.63356e-11 0.0114663 -3.90944e-06 -2.84169e-11 0.0114258 -9.71065e-07 -3.67371e-11 0.0113951 1.01089e-06 -4.20944e-11 0.011369 2.23713e-06 -4.51845e-11 0.0113453 2.86888e-06 -4.66628e-11 0.011323 3.0483e-06 -4.70208e-11 0.0113022 2.91827e-06 -4.66634e-11 0.0112832 2.60477e-06 -4.59141e-11 0.0112664 2.20697e-06 -4.50172e-11 0.0112518 1.79477e-06 -4.41272e-11 0.0112397 1.41152e-06 -4.33337e-11 0.0112299 1.07953e-06 -4.26748e-11 0.0112221 8.06255e-07 -4.2148e-11 0.011216 5.89967e-07 -4.17532e-11 0.0112115 4.23999e-07 -4.14498e-11 0.0112081 2.9991e-07 -4.12463e-11 0.0112057 2.09031e-07 -4.10725e-11 0.0112039 1.4373e-07 -4.10134e-11 0.0112027 9.78353e-08 -4.08482e-11 6.42248e-08 -4.09738e-11 0.0181939 0.0146238 -3.61775e-11 0.0175263 0.0113753 -4.28402e-12 0.0163544 0.00846752 -6.82145e-12 0.0150081 0.00605957 6.25591e-11 0.0137219 0.00421251 4.96977e-11 0.0126501 0.00281469 9.31113e-11 0.0117744 0.00182737 8.01265e-11 0.0111203 0.00110805 7.69031e-11 0.010641 0.000617461 4.38287e-11 0.0103297 0.000273423 -8.50269e-12 0.0101661 5.84727e-05 -3.55312e-11 0.0100934 -7.60598e-05 -1.22266e-10 0.0101116 -0.000144764 -1.37888e-10 0.0102086 -0.000181009 -1.59053e-10 0.0103228 -0.000173725 -2.11004e-10 0.0104199 -0.000139225 -2.20346e-10 0.0105006 -0.000120306 -2.26608e-10 0.0105654 -0.000118155 -1.91846e-10 0.0106234 -0.000129884 -1.70547e-10 0.0106823 -0.000152678 -1.58749e-10 0.0107441 -0.000182582 -1.49341e-10 0.0108123 -0.00021437 -1.40592e-10 0.0108916 -0.000245022 -1.31555e-10 0.0109793 -0.000274258 -1.28314e-10 0.0110716 -0.000300926 -1.20624e-10 0.0111701 -0.00032312 -1.11936e-10 0.011275 -0.000341369 -1.03023e-10 0.0113839 -0.000355261 -9.20861e-11 0.0114948 -0.000364902 -8.01899e-11 0.0116082 -0.000369969 -6.83663e-11 0.0117289 -0.000371416 -5.85047e-11 0.0118646 -0.000369771 -5.05663e-11 0.0120206 -0.000365708 -4.36843e-11 0.0121961 -0.000359974 -3.83105e-11 0.0123845 -0.000353253 -3.9368e-11 0.0125788 -0.000346004 -4.47959e-11 0.0127725 -0.000338677 -4.76372e-11 0.0129587 -0.000332147 -3.20802e-11 0.0131353 -0.00032682 -2.95089e-11 0.0133083 -0.000322641 -8.0482e-11 0.0134734 -0.000321567 -6.1772e-11 0.0136085 -0.00032475 -5.934e-12 0.0136991 -0.00032965 1.41691e-11 0.0137545 -0.000334209 -4.50056e-11 0.0137907 -0.000342617 -3.44044e-11 0.0138257 -0.000354247 -1.60902e-11 0.0138795 -0.000368064 -3.2205e-12 0.0139733 -0.000383309 -1.47068e-12 0.0141117 -0.000401382 3.84289e-12 0.0142794 -0.000421478 4.14319e-11 0.0144865 -0.000436124 5.04989e-11 0.0147855 -0.00044712 4.25886e-11 0.0152089 -0.000462834 4.59373e-11 0.0157305 -0.000485959 7.33032e-11 0.0163181 -0.000504131 8.51733e-11 0.0169423 -0.000520431 9.02222e-11 0.0175743 -0.000534663 9.65082e-11 0.0181858 -0.000546307 1.06013e-10 0.0187504 -0.000555228 1.24193e-10 0.0192446 -0.000560989 1.48517e-10 0.0196547 -0.000562692 1.74062e-10 0.0199836 -0.000559569 1.86353e-10 0.0202337 -0.000551488 1.89494e-10 0.0203997 -0.000538689 1.99705e-10 0.0204687 -0.00052157 2.22381e-10 0.0204183 -0.000500615 2.71669e-10 0.0202494 -0.000475313 3.74612e-10 0.0198324 -0.00044338 5.31842e-10 0.0189119 -0.000399905 8.96666e-10 0.0177679 -0.000344144 9.07859e-10 0.0164951 -0.000281 8.39113e-10 0.0152609 -0.000217602 6.92315e-10 0.0141936 -0.000160972 5.16145e-10 0.0133477 -0.000114905 3.55023e-10 0.0127187 -7.98969e-05 2.28816e-10 0.0122719 -5.44266e-05 1.37677e-10 0.0119648 -3.64287e-05 7.45185e-11 0.011759 -2.37749e-05 3.03989e-11 0.0116226 -1.47565e-05 2.6012e-12 0.0115324 -8.24432e-06 -1.58799e-11 0.0114718 -3.50868e-06 -2.81229e-11 0.0114296 -1.70437e-07 -3.68351e-11 0.0113974 2.01365e-06 -4.21868e-11 0.0113701 3.30998e-06 -4.51007e-11 0.0113455 3.91474e-06 -4.66132e-11 0.0113226 4.00142e-06 -4.69504e-11 0.0113015 3.74537e-06 -4.65768e-11 0.0112824 3.29489e-06 -4.58243e-11 0.0112655 2.76421e-06 -4.49347e-11 0.011251 2.23228e-06 -4.40572e-11 0.011239 1.74678e-06 -4.32785e-11 0.0112293 1.33098e-06 -4.26322e-11 0.0112216 9.91307e-07 -4.2118e-11 0.0112157 7.23831e-07 -4.17323e-11 0.0112112 5.19376e-07 -4.14344e-11 0.0112079 3.66888e-07 -4.12357e-11 0.0112055 2.55601e-07 -4.10655e-11 0.0112038 1.75616e-07 -4.10086e-11 0.0112026 1.19339e-07 -4.08449e-11 7.84585e-08 -4.09721e-11 0.01873 0.015016 -5.66228e-11 0.0179925 0.0121145 -1.75639e-11 0.0170555 0.00945629 -1.61212e-11 0.0160553 0.00717191 3.91572e-11 0.0150129 0.00536812 4.63246e-11 0.0140609 0.00389877 6.83455e-11 0.0132262 0.00279989 8.38878e-11 0.0125247 0.00193648 5.46998e-11 0.0119683 0.00130048 6.27029e-11 0.01152 0.000812022 -5.49729e-13 0.0112124 0.000455297 -3.05556e-11 0.0110173 0.000198982 -7.39685e-11 0.0108956 2.90649e-05 -1.33134e-10 0.0108356 -7.04467e-05 -1.77921e-10 0.0108421 -0.000128032 -1.86781e-10 0.0109187 -0.000167025 -2.00961e-10 0.0110266 -0.000173584 -2.2804e-10 0.0111306 -0.000163232 -2.20147e-10 0.0112223 -0.000161116 -2.02034e-10 0.0113109 -0.000172698 -1.81351e-10 0.0113941 -0.000192601 -1.63636e-10 0.0114654 -0.000220677 -1.46294e-10 0.0115276 -0.000254035 -1.31291e-10 0.0115919 -0.000287734 -1.24075e-10 0.0116641 -0.000320986 -1.17111e-10 0.011744 -0.000352307 -1.04758e-10 0.0118343 -0.000378216 -9.48729e-11 0.0119364 -0.000399512 -8.36008e-11 0.0120494 -0.000415822 -6.88527e-11 0.0121715 -0.00042735 -5.35232e-11 0.0123027 -0.000435312 -4.05373e-11 0.0124455 -0.000438901 -3.19641e-11 0.0126044 -0.000438776 -2.39627e-11 0.0127832 -0.000435521 -1.91534e-11 0.0129807 -0.000430241 -1.94236e-11 0.0131918 -0.000424136 -2.10635e-11 0.0134086 -0.000417783 -2.25585e-11 0.013624 -0.000411754 -2.61048e-11 0.0138323 -0.000406735 -1.75933e-11 0.014031 -0.000403149 -1.84447e-11 0.0142231 -0.000401001 -5.56909e-11 0.0144107 -0.000401364 -6.00253e-11 0.0145818 -0.000406167 7.77235e-12 0.0147195 -0.000414567 5.20292e-11 0.0148236 -0.000422855 -5.22357e-11 0.0149054 -0.000432325 -2.63893e-11 0.0149784 -0.00044551 -7.91653e-12 0.0150606 -0.000460167 7.49858e-12 0.0151732 -0.000475656 9.87784e-12 0.0153225 -0.000493171 2.68213e-11 0.0154967 -0.000510772 7.10026e-11 0.0157053 -0.000523563 6.40143e-11 0.015996 -0.000533374 3.9577e-11 0.0163959 -0.000547858 7.1446e-11 0.0168779 -0.000566279 9.23197e-11 0.0174116 -0.000580876 9.5717e-11 0.0179671 -0.000593185 1.00472e-10 0.0185141 -0.000603 1.07721e-10 0.0190245 -0.000609744 1.23538e-10 0.0194732 -0.000613372 1.44198e-10 0.0198425 -0.000612868 1.66478e-10 0.0201375 -0.000607849 1.77321e-10 0.0203632 -0.000598457 1.81807e-10 0.0205113 -0.000584013 1.9293e-10 0.020583 -0.000564589 2.13797e-10 0.0205607 -0.000541031 2.59544e-10 0.0203942 -0.000513044 3.53181e-10 0.0199847 -0.000478281 5.03042e-10 0.0190593 -0.00043172 8.39095e-10 0.0179149 -0.000371859 8.85687e-10 0.0166338 -0.000303803 8.34475e-10 0.0153818 -0.000235282 6.99448e-10 0.0142918 -0.000173938 5.25098e-10 0.0134233 -0.000123965 3.64367e-10 0.0127749 -8.5921e-05 2.36411e-10 0.0123129 -5.82128e-05 1.44404e-10 0.0119949 -3.85375e-05 7.88003e-11 0.0117813 -2.46468e-05 3.24832e-11 0.0116395 -1.47374e-05 4.15898e-12 0.0115452 -7.60578e-06 -1.48063e-11 0.0114814 -2.48337e-06 -2.78853e-11 0.0114363 1.07816e-06 -3.68463e-11 0.0114017 3.35983e-06 -4.21381e-11 0.0113727 4.62219e-06 -4.49595e-11 0.0113466 5.10982e-06 -4.65045e-11 0.0113228 5.04118e-06 -4.68341e-11 0.0113011 4.61676e-06 -4.64546e-11 0.0112817 4.00255e-06 -4.57073e-11 0.0112647 3.32364e-06 -4.483e-11 0.0112502 2.6643e-06 -4.39721e-11 0.0112383 2.07359e-06 -4.321e-11 0.0112287 1.57373e-06 -4.2582e-11 0.0112211 1.16863e-06 -4.20828e-11 0.0112153 8.51418e-07 -4.17079e-11 0.011211 6.09867e-07 -4.14175e-11 0.0112077 4.30238e-07 -4.12232e-11 0.0112054 2.99282e-07 -4.1056e-11 0.0112037 2.05395e-07 -4.10021e-11 0.0112025 1.39558e-07 -4.08408e-11 9.1513e-08 -4.09703e-11 0.0193152 0.0153586 -1.16459e-10 0.0185336 0.0128025 -7.49589e-11 0.0176017 0.0103442 -4.90649e-11 0.016656 0.00815598 -2.52188e-13 0.0157473 0.00636655 3.43423e-11 0.0148948 0.00489166 4.52117e-11 0.0141448 0.00372281 6.96962e-11 0.0134768 0.00278409 4.59288e-11 0.0129313 0.00204056 4.07203e-11 0.0124487 0.00145499 -9.81392e-13 0.0120654 0.000985286 -2.59353e-11 0.0117478 0.000630378 -7.16153e-11 0.0115285 0.000355104 -1.11324e-10 0.0113932 0.0001547 -1.29907e-10 0.0113219 2.58968e-05 -1.73542e-10 0.0113101 -6.7217e-05 -2.01039e-10 0.0113416 -0.000123378 -2.02901e-10 0.0114293 -0.000168754 -2.03713e-10 0.0115476 -0.000190304 -2.01547e-10 0.0116605 -0.000195777 -1.79114e-10 0.0117612 -0.000210927 -1.568e-10 0.0118491 -0.000237281 -1.45531e-10 0.0119168 -0.000265535 -1.32807e-10 0.0119664 -0.000298895 -1.16948e-10 0.0120173 -0.000334758 -1.12036e-10 0.0120846 -0.000369696 -1.06286e-10 0.0121712 -0.000402754 -8.65088e-11 0.0122784 -0.000431062 -7.78688e-11 0.0124038 -0.000454795 -6.42222e-11 0.012543 -0.000474018 -4.94339e-11 0.0126922 -0.000489072 -3.52148e-11 0.0128499 -0.000499317 -1.98753e-11 0.0130171 -0.000505043 -8.35954e-12 0.0131981 -0.000506835 2.47278e-12 0.013398 -0.000505532 5.80556e-12 0.0136174 -0.000502203 3.66892e-12 0.0138514 -0.00049776 2.40143e-12 0.014092 -0.000492945 5.05619e-12 0.0143321 -0.000488248 1.12901e-12 0.0145668 -0.000484258 -1.35023e-11 0.0147926 -0.000481882 -1.85344e-11 0.0150087 -0.000481592 -4.94298e-12 0.0152189 -0.000483319 -7.95959e-12 0.0154227 -0.000488171 -1.53531e-11 0.0156055 -0.000497375 9.38052e-13 0.0157549 -0.000508999 4.16073e-12 0.0158752 -0.000519916 -1.29647e-11 0.0159781 -0.00053252 4.45572e-12 0.0160836 -0.000546338 2.04627e-11 0.0162142 -0.000560267 3.50369e-11 0.0163731 -0.000576161 5.82134e-11 0.0165528 -0.000590071 6.42977e-11 0.0167722 -0.000599106 7.40769e-11 0.0170713 -0.000606724 7.43464e-11 0.0174582 -0.000619017 9.02725e-11 0.0179086 -0.000631576 9.81611e-11 0.0183931 -0.000641497 1.02538e-10 0.0188783 -0.000648676 1.08388e-10 0.0193337 -0.000653028 1.224e-10 0.0197332 -0.000654548 1.4326e-10 0.020061 -0.000652924 1.61007e-10 0.0203263 -0.000645607 1.67191e-10 0.0205365 -0.000631585 1.68877e-10 0.0206672 -0.000612882 1.78867e-10 0.02072 -0.000590362 2.01627e-10 0.0206918 -0.000564909 2.47548e-10 0.0205281 -0.000535961 3.38006e-10 0.0201167 -0.00050142 4.80659e-10 0.0191948 -0.000453417 7.98544e-10 0.0180511 -0.000390303 8.65895e-10 0.0167616 -0.000318793 8.33173e-10 0.0154921 -0.000246874 7.06631e-10 0.0143804 -0.000182419 5.37342e-10 0.0134906 -0.000129834 3.75287e-10 0.0128242 -8.97283e-05 2.45392e-10 0.0123484 -6.04193e-05 1.50979e-10 0.0120203 -3.94985e-05 8.29197e-11 0.0117999 -2.46809e-05 3.53077e-11 0.0116532 -1.41079e-05 6.20344e-12 0.0115553 -6.51573e-06 -1.36911e-11 0.0114886 -1.08499e-06 -2.71824e-11 0.011441 2.56506e-06 -3.65992e-11 0.0114045 4.83191e-06 -4.19594e-11 0.0113738 5.98796e-06 -4.47577e-11 0.0113466 6.31337e-06 -4.63294e-11 0.0113221 6.05949e-06 -4.66618e-11 0.0112999 5.45043e-06 -4.62874e-11 0.0112803 4.66668e-06 -4.5557e-11 0.0112633 3.84054e-06 -4.46988e-11 0.011249 3.05854e-06 -4.38695e-11 0.0112373 2.36893e-06 -4.31293e-11 0.0112278 1.79137e-06 -4.25199e-11 0.0112205 1.32662e-06 -4.2043e-11 0.0112148 9.64491e-07 -4.16787e-11 0.0112106 6.89723e-07 -4.13944e-11 0.0112075 4.85902e-07 -4.1207e-11 0.0112052 3.37679e-07 -4.10455e-11 0.0112036 2.31541e-07 -4.09953e-11 0.0112024 1.57096e-07 -4.08363e-11 1.03037e-07 -4.09682e-11 0.0200726 0.015707 -6.32341e-11 0.0192537 0.0134478 -6.11535e-11 0.0182944 0.0111847 -5.62997e-11 0.0173041 0.00910551 -2.59207e-11 0.0163876 0.00731697 1.14523e-11 0.0155494 0.00582943 1.78562e-11 0.0148182 0.00460766 3.83385e-11 0.0141695 0.00361244 2.21459e-11 0.0136065 0.00278865 1.13104e-11 0.0131018 0.00212098 -1.43392e-11 0.0126682 0.00156757 -4.84254e-11 0.0123129 0.00112695 -7.34125e-11 0.0120263 0.000772021 -1.13651e-10 0.0118422 0.000495556 -1.42304e-10 0.0117264 0.000281463 -1.56716e-10 0.0116761 0.000126493 -2.09029e-10 0.0116791 1.02481e-05 -1.85104e-10 0.0117033 -7.1245e-05 -1.81204e-10 0.0117582 -0.000133229 -1.8007e-10 0.0118556 -0.000188529 -1.7565e-10 0.011962 -0.000224632 -1.65542e-10 0.0120475 -0.000249714 -1.52285e-10 0.0121163 -0.000279334 -1.34682e-10 0.012176 -0.000313553 -1.21092e-10 0.012234 -0.00035047 -1.05426e-10 0.012306 -0.000385315 -9.47427e-11 0.0124065 -0.000419794 -9.18169e-11 0.0125328 -0.000453691 -6.44262e-11 0.012677 -0.000483711 -5.21871e-11 0.0128339 -0.000509089 -4.21855e-11 0.0129988 -0.000530728 -2.7317e-11 0.0131696 -0.000547987 -1.38775e-11 0.013346 -0.000560752 -4.70343e-13 0.0135306 -0.000568978 8.05625e-12 0.0137284 -0.000573491 1.62013e-11 0.0139441 -0.000575035 2.11494e-11 0.0141796 -0.000574042 2.22194e-11 0.0144318 -0.000571393 1.96477e-11 0.0146936 -0.000567964 1.54842e-11 0.0149569 -0.000564416 1.00747e-11 0.0152163 -0.000561384 5.23933e-12 0.015468 -0.000559722 1.0881e-12 0.0157089 -0.000560159 3.15387e-12 0.0159389 -0.000562758 1.1879e-11 0.016161 -0.000567385 1.22632e-11 0.016371 -0.000575261 5.90211e-12 0.016554 -0.000587053 6.77725e-12 0.0167026 -0.000599847 1.58926e-11 0.0168261 -0.000610844 3.88491e-11 0.0169475 -0.000621406 5.30708e-11 0.0170889 -0.000632609 6.25656e-11 0.0172509 -0.000644888 7.52218e-11 0.0174336 -0.000653914 9.08553e-11 0.0176638 -0.000657871 9.11996e-11 0.0179687 -0.000662103 7.48491e-11 0.018341 -0.000671287 1.05212e-10 0.0187538 -0.00067816 1.06893e-10 0.0191773 -0.000682489 1.10583e-10 0.0195806 -0.000684725 1.24211e-10 0.0199361 -0.000684413 1.43207e-10 0.0202332 -0.000678808 1.47012e-10 0.0204784 -0.000666255 1.59552e-10 0.0206614 -0.000649834 1.64269e-10 0.0207742 -0.000629251 1.73454e-10 0.0208186 -0.000605366 1.9073e-10 0.0207836 -0.000578409 2.33753e-10 0.0206206 -0.000548112 3.2123e-10 0.0202295 -0.000512322 4.5766e-10 0.0193223 -0.000463091 7.42916e-10 0.0181861 -0.000398174 8.4296e-10 0.0168934 -0.000325005 8.32244e-10 0.0156096 -0.000251535 7.1678e-10 0.0144774 -0.000185648 5.50597e-10 0.0135664 -0.000131799 3.87251e-10 0.0128814 -9.06337e-05 2.54845e-10 0.0123908 -6.04554e-05 1.57761e-10 0.0120517 -3.8833e-05 8.74228e-11 0.0118232 -2.34756e-05 3.82209e-11 0.0116707 -1.25209e-05 7.81533e-12 0.0115683 -4.69825e-06 -1.27419e-11 0.0114979 7.74581e-07 -2.66626e-11 0.0114472 4.39995e-06 -3.6219e-11 0.0114082 6.53161e-06 -4.18295e-11 0.0113755 7.48641e-06 -4.45346e-11 0.0113469 7.57948e-06 -4.61167e-11 0.0113215 7.09597e-06 -4.64546e-11 0.0112988 6.2766e-06 -4.60916e-11 0.011279 5.3105e-06 -4.53831e-11 0.011262 4.33265e-06 -4.45538e-11 0.0112478 3.42836e-06 -4.37457e-11 0.0112362 2.64264e-06 -4.30534e-11 0.011227 1.99113e-06 -4.24394e-11 0.0112198 1.47047e-06 -4.19864e-11 0.0112143 1.06677e-06 -4.16452e-11 0.0112102 7.61534e-07 -4.13733e-11 0.0112072 5.35719e-07 -4.11923e-11 0.011205 3.71742e-07 -4.10339e-11 0.0112034 2.54586e-07 -4.09869e-11 0.0112023 1.72596e-07 -4.08309e-11 1.12964e-07 -4.09659e-11 0.0206563 0.0160618 -3.75186e-11 0.0198762 0.0140566 -3.44219e-11 0.0190053 0.0119562 -2.52653e-11 0.0180764 0.0100007 -3.78071e-11 0.0171534 0.00826109 -2.1488e-11 0.016297 0.00675627 -2.71604e-11 0.0155186 0.00547903 -2.45022e-11 0.0148103 0.00441141 -1.74491e-11 0.0141756 0.00351984 -1.78356e-11 0.0136161 0.00278138 -3.40225e-11 0.0131333 0.00216612 -6.08904e-11 0.0127389 0.00166129 -8.91939e-11 0.0124146 0.00124676 -1.19682e-10 0.0121772 0.000907595 -1.44586e-10 0.0119949 0.000632952 -1.59076e-10 0.0118804 0.000409637 -1.59572e-10 0.0118162 0.000231263 -2.03809e-10 0.0117966 9.50249e-05 -1.76587e-10 0.0118167 -1.65385e-05 -1.66065e-10 0.0118508 -0.000100336 -1.64468e-10 0.011909 -0.000171327 -1.573e-10 0.0119881 -0.000234101 -1.44543e-10 0.0120725 -0.000282855 -1.2768e-10 0.0121618 -0.000322512 -1.16724e-10 0.0122603 -0.00036079 -1.05289e-10 0.0123756 -0.000401113 -8.57843e-11 0.0125127 -0.000440649 -7.07822e-11 0.0126734 -0.000476054 -6.63781e-11 0.0128492 -0.000509661 -4.61038e-11 0.0130295 -0.000541326 -2.33762e-11 0.013211 -0.000567775 -2.32486e-11 0.0133936 -0.000590168 -1.01687e-11 0.0135779 -0.000608775 1.18351e-12 0.0137662 -0.000623195 1.13019e-11 0.013963 -0.000633504 1.88356e-11 0.0141743 -0.000640204 2.30485e-11 0.0144049 -0.000643815 2.53747e-11 0.0146559 -0.000644946 2.64508e-11 0.0149242 -0.000644216 2.6232e-11 0.0152043 -0.000642335 2.47916e-11 0.0154883 -0.000640046 2.57892e-11 0.0157696 -0.000637901 2.45111e-11 0.0160441 -0.000636524 2.13499e-11 0.0163088 -0.000636838 2.70984e-11 0.0165602 -0.000639247 4.06445e-11 0.0167989 -0.000643302 3.81727e-11 0.0170282 -0.000649076 1.7229e-11 0.0172389 -0.000658345 2.57174e-11 0.0174128 -0.000670046 6.10236e-11 0.0175525 -0.000678505 7.73849e-11 0.0176857 -0.000683787 7.38922e-11 0.0178331 -0.000691188 8.38759e-11 0.0179953 -0.000698374 9.32345e-11 0.0181824 -0.000700197 1.0834e-10 0.0184234 -0.000699402 9.04625e-11 0.0187323 -0.000701323 9.40397e-11 0.0190862 -0.000705641 1.12628e-10 0.0194549 -0.000707817 1.14619e-10 0.0198114 -0.000707589 1.29127e-10 0.0201336 -0.000703315 1.39795e-10 0.0204085 -0.00069245 1.49426e-10 0.0206297 -0.000677425 1.6154e-10 0.0207882 -0.000658848 1.62755e-10 0.0208844 -0.000636676 1.6867e-10 0.020918 -0.000611279 1.83284e-10 0.0208779 -0.000582639 2.21347e-10 0.020719 -0.000550589 2.89603e-10 0.0203455 -0.000513045 4.28433e-10 0.0194497 -0.000463121 6.81184e-10 0.0183178 -0.000397954 8.14272e-10 0.0170202 -0.000324622 8.28624e-10 0.0157219 -0.000250964 7.26304e-10 0.0145695 -0.000184831 5.64046e-10 0.0136379 -0.000130704 3.99627e-10 0.0129349 -8.92549e-05 2.64565e-10 0.01243 -5.87892e-05 1.64808e-10 0.0120802 -3.68971e-05 9.22006e-11 0.011844 -2.13242e-05 4.09957e-11 0.0116858 -1.0238e-05 1.0273e-11 0.0115791 -2.39302e-06 -1.14055e-11 0.0115052 2.98685e-06 -2.60341e-11 0.0114517 6.42993e-06 -3.59368e-11 0.0114103 8.31786e-06 -4.16063e-11 0.011376 8.99875e-06 -4.42652e-11 0.0113462 8.81717e-06 -4.58707e-11 0.01132 8.08104e-06 -4.62169e-11 0.011297 7.04285e-06 -4.58711e-11 0.0112771 5.89525e-06 -4.51886e-11 0.0112602 4.77166e-06 -4.43901e-11 0.0112463 3.75329e-06 -4.36228e-11 0.0112349 2.88003e-06 -4.294e-11 0.0112259 2.16245e-06 -4.23788e-11 0.011219 1.59263e-06 -4.19409e-11 0.0112137 1.15284e-06 -4.16058e-11 0.0112097 8.21464e-07 -4.13434e-11 0.0112068 5.76941e-07 -4.1172e-11 0.0112047 3.99827e-07 -4.10213e-11 0.0112033 2.73442e-07 -4.09789e-11 0.0112022 1.851e-07 -4.08255e-11 1.21065e-07 -4.09631e-11 0.0214687 0.0164604 1.33635e-11 0.0207063 0.0146791 4.94564e-12 0.0197991 0.0127465 -2.28625e-11 0.0188912 0.0108699 -2.40288e-11 0.0179877 0.00917221 -2.92305e-11 0.0170868 0.00766209 -2.68304e-11 0.01623 0.00634152 -2.48898e-11 0.0154557 0.00520858 -3.41627e-11 0.0147662 0.00425134 -5.61379e-11 0.0141628 0.00344707 -6.44787e-11 0.0136433 0.00277835 -7.89154e-11 0.0132099 0.0022206 -1.02117e-10 0.012855 0.001756 -1.22599e-10 0.0125708 0.00136522 -1.44536e-10 0.0123385 0.00103719 -1.58219e-10 0.0121606 0.000759354 -1.65509e-10 0.0120333 0.000527257 -1.76829e-10 0.0119551 0.000331791 -1.69607e-10 0.0119311 0.000172702 -1.73635e-10 0.0119398 4.20035e-05 -1.58157e-10 0.011978 -6.99445e-05 -1.51614e-10 0.0120242 -0.000159635 -1.28608e-10 0.0120977 -0.000237045 -1.25528e-10 0.0121984 -0.000304176 -1.17621e-10 0.0123241 -0.000363595 -1.02467e-10 0.0124682 -0.000414002 -8.62667e-11 0.0126269 -0.000458083 -6.48431e-11 0.0128031 -0.000498837 -4.95877e-11 0.0129944 -0.000539538 -3.25456e-11 0.0131951 -0.000577533 -1.07005e-11 0.0133972 -0.000607666 3.22266e-12 0.0136022 -0.000634323 2.12418e-12 0.0138114 -0.000657004 1.05448e-11 0.014024 -0.000675156 1.66061e-11 0.0142404 -0.000689775 2.12149e-11 0.0144633 -0.000700834 2.35945e-11 0.0146966 -0.000708407 2.56442e-11 0.0149445 -0.000713029 2.66408e-11 0.0152085 -0.00071523 2.79328e-11 0.015486 -0.000715535 2.88245e-11 0.0157725 -0.000714412 3.02028e-11 0.0160632 -0.000712467 3.51072e-11 0.0163536 -0.000710424 3.61578e-11 0.0166398 -0.000708953 3.22682e-11 0.016917 -0.000708581 4.44773e-11 0.01718 -0.000709633 6.7522e-11 0.0174276 -0.000711639 6.28764e-11 0.0176627 -0.000714289 -1.32772e-11 0.0178784 -0.000720257 3.64917e-11 0.0180559 -0.000727445 1.15906e-10 0.0181952 -0.000731254 9.91235e-11 0.0183274 -0.000731404 8.47885e-11 0.0184714 -0.000733479 8.64359e-11 0.0186296 -0.000733755 1.05078e-10 0.0188238 -0.000729186 1.08294e-10 0.019079 -0.000724122 1.06162e-10 0.019385 -0.00072371 1.02317e-10 0.0197085 -0.000723148 1.1075e-10 0.020024 -0.000719488 1.25461e-10 0.0203134 -0.000710264 1.35936e-10 0.0205612 -0.000695897 1.56529e-10 0.0207596 -0.000678137 1.64384e-10 0.0209007 -0.000657311 1.6573e-10 0.0209821 -0.000633655 1.70181e-10 0.0210043 -0.000607296 1.81716e-10 0.0209582 -0.0005781 2.06813e-10 0.0208037 -0.000545358 2.60022e-10 0.0204458 -0.000506902 3.74525e-10 0.0195671 -0.000456574 6.14414e-10 0.0184449 -0.000391427 7.91616e-10 0.0171466 -0.000318346 8.27144e-10 0.0158363 -0.000245287 7.37134e-10 0.0146652 -0.000179865 5.78707e-10 0.0137134 -0.000126355 4.12901e-10 0.0129923 -8.53521e-05 2.74844e-10 0.0124728 -5.51826e-05 1.72172e-10 0.0121117 -3.34649e-05 9.72108e-11 0.0118672 -1.80205e-05 4.42007e-11 0.0117028 -7.08705e-06 1.18124e-11 0.0115912 5.31497e-07 -1.05735e-11 0.0115134 5.61943e-06 -2.55391e-11 0.0114567 8.71676e-06 -3.56571e-11 0.0114127 1.02462e-05 -4.13759e-11 0.0113764 1.05711e-05 -4.40019e-11 0.0113454 1.00612e-05 -4.56134e-11 0.0113184 9.04228e-06 -4.59648e-11 0.0112951 7.77108e-06 -4.56374e-11 0.0112751 6.43797e-06 -4.49819e-11 0.0112584 5.1706e-06 -4.4221e-11 0.0112446 4.04303e-06 -4.34844e-11 0.0112336 3.08816e-06 -4.28355e-11 0.0112249 2.3104e-06 -4.23022e-11 0.0112181 1.6967e-06 -4.18805e-11 0.011213 1.22525e-06 -4.15635e-11 0.0112093 8.71279e-07 -4.13158e-11 0.0112065 6.10822e-07 -4.11536e-11 0.0112045 4.22562e-07 -4.10083e-11 0.0112031 2.88534e-07 -4.097e-11 0.0112021 1.95041e-07 -4.08194e-11 1.27302e-07 -4.09601e-11 0.0220903 0.0169262 7.17803e-11 0.0214592 0.0152388 8.53681e-11 0.0206619 0.013504 5.56824e-11 0.0197831 0.0117325 2.62872e-11 0.0188731 0.0100557 -6.05795e-12 0.0179546 0.00854186 -1.98155e-11 0.0170502 0.00719527 -3.0786e-11 0.0161966 0.00601609 -4.17059e-11 0.0154252 0.00500182 -4.95123e-11 0.0147593 0.00414076 -6.62227e-11 0.0142013 0.00341736 -9.03088e-11 0.0137389 0.00280791 -1.1227e-10 0.0133509 0.00229411 -1.28632e-10 0.0130249 0.00185574 -1.44303e-10 0.0127514 0.00148053 -1.57984e-10 0.0125264 0.00115551 -1.64011e-10 0.0123551 0.000875991 -1.67286e-10 0.0122251 0.000634655 -1.66653e-10 0.0121498 0.000426944 -1.64894e-10 0.012113 0.000248419 -1.55401e-10 0.0121084 9.68759e-05 -1.51925e-10 0.0121341 -3.45639e-05 -1.34413e-10 0.0121922 -0.000148013 -1.25873e-10 0.0122787 -0.000244043 -1.01429e-10 0.0123977 -0.000324839 -9.98456e-11 0.012547 -0.000396719 -9.75698e-11 0.0127208 -0.000461395 -5.29511e-11 0.0129123 -0.000520096 -3.82503e-11 0.0131167 -0.000568838 -2.63785e-11 0.0133273 -0.00061019 -1.47242e-12 0.0135446 -0.000648692 2.04354e-11 0.0137714 -0.000685842 2.57129e-11 0.0140034 -0.000712691 3.1847e-11 0.0142411 -0.000734118 3.60239e-11 0.0144845 -0.00075224 3.65841e-11 0.0147301 -0.000764847 3.53191e-11 0.0149783 -0.000773658 3.41174e-11 0.0152331 -0.000779356 3.26678e-11 0.0154968 -0.000782234 3.25921e-11 0.0157683 -0.000782825 3.32023e-11 0.0160465 -0.000781576 3.69405e-11 0.0163306 -0.00077916 3.93995e-11 0.0166185 -0.000776045 4.23516e-11 0.0169071 -0.000772782 4.54745e-11 0.0171939 -0.000769738 5.54462e-11 0.0174745 -0.000767183 5.8889e-11 0.017742 -0.00076608 6.53626e-11 0.0179926 -0.00076542 7.00367e-11 0.018229 -0.000765417 1.44828e-11 0.0184434 -0.000767864 7.17018e-11 0.0186178 -0.000770147 1.38558e-10 0.0187569 -0.000767843 1.43379e-10 0.0188896 -0.00076238 5.00923e-11 0.0190293 -0.000759097 1.01035e-10 0.0191877 -0.000753145 1.18735e-10 0.0193954 -0.000742195 9.44323e-11 0.0196641 -0.000734028 9.55294e-11 0.019959 -0.000729338 1.06751e-10 0.0202469 -0.000721025 1.07964e-10 0.0205041 -0.000708207 1.16995e-10 0.0207171 -0.000691236 1.363e-10 0.0208883 -0.000670389 1.43359e-10 0.021014 -0.000646403 1.44499e-10 0.0210849 -0.000620238 1.48354e-10 0.0210954 -0.000592368 1.58674e-10 0.0210378 -0.000562874 1.83154e-10 0.0208796 -0.000530836 2.3481e-10 0.0205337 -0.000493531 3.64596e-10 0.0196781 -0.000444633 6.24012e-10 0.0185673 -0.000379142 7.90513e-10 0.0172686 -0.000306706 8.33037e-10 0.0159464 -0.000235106 7.50958e-10 0.0147568 -0.000171305 5.94771e-10 0.0137852 -0.000119209 4.27016e-10 0.0130464 -7.93056e-05 2.8573e-10 0.0125126 -4.99355e-05 1.80038e-10 0.0121407 -2.87853e-05 1.02611e-10 0.0118882 -1.37826e-05 4.74496e-11 0.0117177 -3.25886e-06 1.36923e-11 0.0116014 3.92374e-06 -9.60889e-12 0.0115198 8.54289e-06 -2.50593e-11 0.01146 1.11629e-05 -3.54058e-11 0.0114137 1.22315e-05 -4.11412e-11 0.0113757 1.21347e-05 -4.36946e-11 0.0113436 1.12601e-05 -4.53384e-11 0.0113161 9.94136e-06 -4.56997e-11 0.0112926 8.43299e-06 -4.53922e-11 0.0112727 6.91794e-06 -4.47668e-11 0.0112562 5.51428e-06 -4.40429e-11 0.0112428 4.28651e-06 -4.33411e-11 0.011232 3.25898e-06 -4.2727e-11 0.0112236 2.42911e-06 -4.222e-11 0.0112172 1.7784e-06 -4.18187e-11 0.0112123 1.28091e-06 -4.15186e-11 0.0112087 9.08765e-07 -4.12846e-11 0.0112061 6.35774e-07 -4.11326e-11 0.0112042 4.38995e-07 -4.0994e-11 0.0112029 2.99198e-07 -4.09604e-11 0.011202 2.01876e-07 -4.08131e-11 1.31566e-07 -4.09573e-11 0.0229564 0.0176384 1.8211e-10 0.0222984 0.015853 1.60086e-10 0.0215404 0.0142076 1.17387e-10 0.0206359 0.0125432 8.2455e-11 0.0196985 0.0109133 1.86822e-11 0.0187733 0.0093838 -1.02806e-11 0.0178707 0.00801375 -3.08664e-11 0.0170081 0.00681316 -4.7968e-11 0.0162111 0.00576541 -5.97152e-11 0.0155026 0.00486423 -7.36357e-11 0.0148883 0.00409196 -9.02144e-11 0.0143641 0.00343214 -1.06125e-10 0.0139244 0.00286678 -1.27824e-10 0.0135528 0.00237951 -1.41234e-10 0.0132357 0.00195604 -1.54332e-10 0.0129721 0.00158756 -1.59709e-10 0.0127597 0.00126569 -1.61633e-10 0.0125968 0.000982779 -1.6199e-10 0.0124794 0.000734176 -1.58593e-10 0.0123976 0.000514227 -1.5296e-10 0.0123578 0.000320572 -1.56169e-10 0.0123448 0.000149327 -1.27304e-10 0.0123705 1.51118e-06 -1.35328e-10 0.0124411 -0.000132258 -1.19462e-10 0.0125503 -0.000247001 -9.72433e-11 0.012694 -0.000345764 -8.1476e-11 0.0128617 -0.00043202 -4.3242e-11 0.0130476 -0.000507582 -3.81675e-11 0.0132504 -0.000574712 -2.57125e-11 0.0134755 -0.000638592 -3.10868e-12 0.0137067 -0.000692462 2.78117e-11 0.0139403 -0.000732944 3.31177e-11 0.0141799 -0.000766698 4.91811e-11 0.0144355 -0.000801423 6.07813e-11 0.0146992 -0.000826425 5.8531e-11 0.0149649 -0.000839983 5.62613e-11 0.015236 -0.00085049 5.36964e-11 0.0155101 -0.000854792 4.87981e-11 0.0157835 -0.000855334 4.57425e-11 0.016056 -0.000852545 4.22559e-11 0.0163293 -0.000847607 4.24065e-11 0.0166044 -0.000841763 4.20687e-11 0.0168818 -0.000835325 4.29271e-11 0.0171613 -0.000828549 4.61324e-11 0.0174427 -0.000822125 5.50877e-11 0.0177257 -0.000816317 6.30324e-11 0.0180053 -0.000811488 5.92386e-11 0.0182731 -0.000808012 7.53836e-11 0.0185247 -0.000804673 5.71304e-11 0.0187587 -0.000800964 6.03858e-11 0.0189628 -0.0007988 8.65979e-11 0.0191236 -0.000795521 1.24503e-10 0.0192544 -0.00078706 1.0113e-10 0.0193812 -0.000777594 9.85967e-11 0.0195167 -0.000768175 1.10018e-10 0.0196813 -0.000754042 1.07136e-10 0.019908 -0.000737496 9.15654e-11 0.0201818 -0.000726385 7.88148e-11 0.0204544 -0.000715551 6.75866e-11 0.0206873 -0.000700518 6.79421e-11 0.0208674 -0.000681272 8.19982e-11 0.0210097 -0.000657421 8.94999e-11 0.021118 -0.000629805 9.15362e-11 0.0211808 -0.000599982 9.74368e-11 0.0211877 -0.000568972 1.12706e-10 0.0211243 -0.000537451 1.49317e-10 0.0209639 -0.000505069 2.27116e-10 0.0206301 -0.000469068 3.77633e-10 0.0197973 -0.000421928 7.07278e-10 0.0186923 -0.000357859 8.27735e-10 0.0173913 -0.000288082 8.53376e-10 0.0160569 -0.000219679 7.70967e-10 0.0148488 -0.000158824 6.14049e-10 0.0138576 -0.000109098 4.43054e-10 0.0131014 -7.09765e-05 2.97218e-10 0.0125535 -4.29079e-05 1.88592e-10 0.0121707 -2.27259e-05 1.07849e-10 0.0119099 -8.49457e-06 4.98543e-11 0.011733 1.32482e-06 1.51817e-11 0.0116117 7.8339e-06 -8.67331e-12 0.0115261 1.17971e-05 -2.47253e-11 0.0114631 1.37945e-05 -3.5213e-11 0.0114144 1.42955e-05 -4.09128e-11 0.0113747 1.37086e-05 -4.33659e-11 0.0113415 1.24299e-05 -4.50616e-11 0.0113135 1.07919e-05 -4.54323e-11 0.0112898 9.03981e-06 -4.51437e-11 0.0112701 7.34412e-06 -4.45486e-11 0.0112539 5.80968e-06 -4.38613e-11 0.0112408 4.48895e-06 -4.31959e-11 0.0112304 3.39634e-06 -4.26151e-11 0.0112224 2.52138e-06 -4.21362e-11 0.0112162 1.83976e-06 -4.17567e-11 0.0112116 1.32125e-06 -4.14736e-11 0.0112082 9.34946e-07 -4.12527e-11 0.0112057 6.52574e-07 -4.11108e-11 0.0112039 4.49578e-07 -4.09786e-11 0.0112027 3.05754e-07 -4.09506e-11 0.0112018 2.05884e-07 -4.08066e-11 1.33864e-07 -4.09542e-11 0.0238477 0.0185336 1.47781e-10 0.0230824 0.0166203 1.57115e-10 0.0223753 0.0148841 1.34819e-10 0.021589 0.0132979 9.78786e-11 0.020659 0.0117496 6.44367e-11 0.0196617 0.0102506 2.11655e-11 0.0187025 0.00885551 -2.23978e-11 0.0178231 0.00761053 -4.89413e-11 0.0170294 0.00652954 -6.62054e-11 0.0163101 0.00559768 -7.85782e-11 0.0156648 0.0047873 -9.34786e-11 0.0150976 0.00408382 -1.07814e-10 0.0146 0.00347002 -1.25125e-10 0.0141678 0.00293438 -1.36927e-10 0.013801 0.00246516 -1.49014e-10 0.0134965 0.00205327 -1.52781e-10 0.0132496 0.00168999 -1.56547e-10 0.0130546 0.00136879 -1.56524e-10 0.0129033 0.00108285 -1.5605e-10 0.0127891 0.000825964 -1.50896e-10 0.0127119 0.000595368 -1.48468e-10 0.0126725 0.000387658 -1.41771e-10 0.0126699 0.000202342 -1.29187e-10 0.0127068 3.64646e-05 -1.13389e-10 0.0127922 -0.000115158 -1.01848e-10 0.0129169 -0.000246612 -8.37346e-11 0.0130767 -0.000362328 -5.85218e-11 0.0132594 -0.000464055 -3.77115e-11 0.0134559 -0.000554489 -5.06683e-12 0.0136649 -0.000632023 3.09661e-12 0.0138807 -0.000702119 1.65738e-11 0.0141149 -0.000769412 2.51959e-11 0.0143646 -0.000824033 5.49677e-11 0.0146197 -0.000861991 5.81647e-11 0.0148743 -0.000890425 6.24296e-11 0.0151423 -0.000919075 7.62144e-11 0.0154275 -0.00093947 7.75502e-11 0.0157173 -0.000943152 7.34702e-11 0.0160079 -0.000944004 6.6854e-11 0.0162939 -0.000936789 6.12211e-11 0.0165765 -0.000926478 5.56495e-11 0.0168548 -0.000913419 4.73507e-11 0.0171276 -0.000899345 4.58401e-11 0.0173964 -0.000885057 4.74714e-11 0.0176668 -0.000871416 5.50611e-11 0.0179415 -0.000859348 6.3884e-11 0.0182195 -0.000849216 6.88874e-11 0.0184955 -0.000841381 8.84601e-11 0.0187581 -0.000833596 8.09777e-11 0.019002 -0.000824636 8.67478e-11 0.0192247 -0.000817924 6.23273e-11 0.0194115 -0.000810773 1.04434e-10 0.019554 -0.000800791 1.49706e-10 0.0196759 -0.000786635 8.51849e-11 0.0197994 -0.000773625 8.39073e-11 0.0199359 -0.000758164 9.83248e-11 0.0201167 -0.000737382 6.71246e-11 0.0203599 -0.000717962 6.45176e-11 0.0206242 -0.000704103 4.13856e-11 0.0208512 -0.000687855 4.0338e-11 0.0210162 -0.000667124 4.41082e-11 0.021132 -0.000641447 5.11159e-11 0.0212171 -0.000611285 5.29381e-11 0.0212712 -0.000577868 5.95711e-11 0.0212806 -0.000542624 7.65376e-11 0.021225 -0.000506389 1.11361e-10 0.0210767 -0.000470205 1.81324e-10 0.020756 -0.000431379 3.61073e-10 0.01993 -0.000387109 7.61694e-10 0.0188206 -0.000327108 8.65254e-10 0.0175122 -0.000262921 8.78568e-10 0.0161637 -0.000199739 7.93378e-10 0.014937 -0.000143068 6.3364e-10 0.0139266 -9.64951e-05 4.59262e-10 0.0131535 -6.06896e-05 3.08614e-10 0.012592 -3.43629e-05 1.96594e-10 0.0121986 -1.55046e-05 1.13095e-10 0.0119296 -2.34095e-06 5.30317e-11 0.0117465 6.51318e-06 1.67672e-11 0.0116202 1.21327e-05 -7.90551e-12 0.0115307 1.52714e-05 -2.43569e-11 0.0114647 1.65209e-05 -3.49994e-11 0.0114137 1.63705e-05 -4.06739e-11 0.0113726 1.52412e-05 -4.3074e-11 0.0113386 1.35329e-05 -4.47883e-11 0.0113102 1.15666e-05 -4.51595e-11 0.0112866 9.5721e-06 -4.4889e-11 0.0112672 7.70274e-06 -4.43254e-11 0.0112513 6.04707e-06 -4.36754e-11 0.0112387 4.64356e-06 -4.30475e-11 0.0112287 3.49544e-06 -4.25004e-11 0.011221 2.58389e-06 -4.20501e-11 0.0112152 1.87847e-06 -4.16935e-11 0.0112108 1.34471e-06 -4.14277e-11 0.0112076 9.4882e-07 -4.12203e-11 0.0112053 6.60442e-07 -4.1089e-11 0.0112037 4.53874e-07 -4.09585e-11 0.0112025 3.07933e-07 -4.0941e-11 0.0112017 2.06858e-07 -4.08008e-11 1.34204e-07 -4.09516e-11 0.0251607 0.0197423 2.78198e-10 0.0240986 0.0176292 2.16392e-10 0.0231984 0.0157292 1.99252e-10 0.0223707 0.0140684 1.3121e-10 0.0215272 0.0125243 7.99914e-11 0.0206299 0.011087 3.39182e-11 0.0196764 0.00972449 1.72356e-12 0.0187437 0.00846632 -2.9563e-11 0.017897 0.00734162 -5.26262e-11 0.0171501 0.00635961 -7.24982e-11 0.016484 0.00550458 -8.74649e-11 0.0158812 0.00475736 -1.03106e-10 0.0153408 0.00409877 -1.17814e-10 0.0148645 0.00351801 -1.3055e-10 0.014452 0.00300446 -1.4046e-10 0.0141024 0.00255098 -1.48012e-10 0.0138143 0.00214807 -1.51229e-10 0.0135854 0.00178946 -1.51881e-10 0.0134046 0.00146731 -1.52606e-10 0.0132652 0.00117633 -1.51043e-10 0.0131643 0.000912268 -1.48894e-10 0.0131012 0.000671994 -1.44242e-10 0.0130784 0.000452743 -1.3459e-10 0.0131009 0.000255045 -1.28694e-10 0.0131575 7.39699e-05 -1.03574e-10 0.0132553 -9.33516e-05 -8.91299e-11 0.0133886 -0.000241653 -6.83518e-11 0.0135527 -0.000373444 -4.81355e-11 0.0137339 -0.000491126 -2.17083e-11 0.0139289 -0.000595061 -4.63103e-12 0.0141424 -0.000687191 1.7825e-11 0.0143544 -0.000766009 3.30446e-11 0.0145666 -0.000836896 3.6078e-11 0.0148035 -0.000902758 4.25314e-11 0.015062 -0.000954624 5.34643e-11 0.0153232 -0.000988304 7.34836e-11 0.0155881 -0.00100746 7.25408e-11 0.0158668 -0.0010276 8.26421e-11 0.0161657 -0.00103987 8.06468e-11 0.0164668 -0.00103479 8.22304e-11 0.0167621 -0.00102232 7.53494e-11 0.0170488 -0.00100441 6.89485e-11 0.0173283 -0.000981877 7.00072e-11 0.0176032 -0.000956866 7.48973e-11 0.0178736 -0.000932273 7.79959e-11 0.0181443 -0.000909398 8.66963e-11 0.0184193 -0.000889374 8.25093e-11 0.018694 -0.000872293 9.68536e-11 0.0189611 -0.000857322 9.01527e-11 0.0192145 -0.000844451 8.42044e-11 0.0194463 -0.000830758 7.17392e-11 0.0196468 -0.000816364 8.79068e-11 0.0198057 -0.0008025 1.2075e-10 0.0199297 -0.000786385 1.08616e-10 0.020044 -0.00076885 4.46296e-11 0.0201617 -0.000751936 7.2653e-11 0.0203052 -0.000729718 6.97825e-11 0.0205094 -0.000704444 2.77699e-11 0.02076 -0.000684568 2.2204e-11 0.0209921 -0.000667477 5.79805e-11 0.0211591 -0.000646545 6.2312e-11 0.0212594 -0.000620876 6.54801e-11 0.0213216 -0.0005902 6.66877e-11 0.0213591 -0.000555074 7.10165e-11 0.0213693 -0.000516412 8.37151e-11 0.0213313 -0.000475591 1.12926e-10 0.021205 -0.000433256 1.78889e-10 0.0209002 -0.000390437 3.19904e-10 0.020068 -0.000344945 6.59889e-10 0.0189477 -0.000291107 8.22731e-10 0.0176298 -0.000234286 8.76594e-10 0.0162672 -0.000177049 8.07933e-10 0.0150226 -0.000124909 6.52449e-10 0.013994 -8.17875e-05 4.75041e-10 0.0132047 -4.86239e-05 3.19669e-10 0.0126299 -2.43604e-05 2.0361e-10 0.012226 -7.15033e-06 1.17791e-10 0.0119489 4.62198e-06 5.56871e-11 0.0117593 1.22626e-05 1.81877e-11 0.0116279 1.67773e-05 -7.35549e-12 0.0115344 1.89264e-05 -2.3976e-11 0.0114655 1.93115e-05 -3.51019e-11 0.0114124 1.84326e-05 -3.99881e-11 0.0113699 1.67172e-05 -4.30549e-11 0.0113352 1.456e-05 -4.45259e-11 0.0113066 1.22605e-05 -4.48816e-11 0.0112831 1.00276e-05 -4.46301e-11 0.011264 7.99328e-06 -4.40991e-11 0.0112486 6.22689e-06 -4.34872e-11 0.0112364 4.7512e-06 -4.28972e-11 0.0112269 3.55734e-06 -4.23843e-11 0.0112196 2.61762e-06 -4.19628e-11 0.0112141 1.89543e-06 -4.16292e-11 0.01121 1.35207e-06 -4.13815e-11 0.0112071 9.50932e-07 -4.1187e-11 0.0112049 6.59986e-07 -4.10651e-11 0.0112034 4.5226e-07 -4.09462e-11 0.0112023 3.06016e-07 -4.09292e-11 0.0112015 2.05033e-07 -4.07927e-11 1.32657e-07 -4.09478e-11 0.0263489 0.0209681 1.46356e-10 0.0252823 0.018804 4.57246e-10 0.0242751 0.0167786 3.1464e-10 0.0233397 0.0149749 2.35084e-10 0.0224256 0.0133748 1.5791e-10 0.0215152 0.0119252 7.96116e-11 0.0206064 0.0105819 1.89872e-11 0.0197073 0.00933619 -1.79619e-11 0.0188489 0.00819389 -4.23839e-11 0.0180583 0.00716325 -6.12235e-11 0.017347 0.006254 -7.99081e-11 0.0167087 0.0054562 -9.42131e-11 0.0161327 0.00475206 -1.09455e-10 0.0156183 0.00412801 -1.22266e-10 0.0151685 0.003573 -1.31563e-10 0.0147826 0.00307932 -1.40004e-10 0.0144608 0.00263852 -1.44429e-10 0.0141945 0.00224376 -1.49373e-10 0.0139813 0.00188643 -1.5088e-10 0.013815 0.00156285 -1.50996e-10 0.013692 0.00126615 -1.49847e-10 0.0136137 0.000995489 -1.46833e-10 0.013577 0.000746847 -1.4337e-10 0.0135818 0.000518559 -1.29976e-10 0.0136278 0.000309366 -1.22379e-10 0.0137021 0.000115925 -1.00767e-10 0.0138087 -6.41758e-05 -8.11638e-11 0.0139487 -0.000228768 -6.09208e-11 0.0141087 -0.00037598 -3.99501e-11 0.0142808 -0.000507821 -2.18405e-11 0.0144666 -0.000625375 -2.76457e-13 0.0146661 -0.000729064 1.27874e-11 0.0148657 -0.000820199 3.40346e-11 0.015061 -0.000895624 3.63854e-11 0.0152748 -0.000965335 4.13227e-11 0.0155074 -0.00102713 4.90965e-11 0.0157654 -0.00107184 5.82969e-11 0.0160337 -0.00109846 7.1425e-11 0.0163021 -0.00110679 7.5527e-11 0.0165887 -0.00111511 7.43814e-11 0.0168781 -0.00111512 8.49718e-11 0.01717 -0.00110283 9.85527e-11 0.0174554 -0.00107884 1.13576e-10 0.0177355 -0.00104873 1.11431e-10 0.018016 -0.00101479 1.21156e-10 0.0182964 -0.000980755 1.09069e-10 0.0185752 -0.000947318 1.07585e-10 0.018855 -0.00091614 1.10433e-10 0.0191305 -0.000889131 8.10738e-11 0.0193902 -0.000864528 6.77678e-11 0.0196293 -0.000841864 6.75744e-11 0.0198433 -0.000820954 6.7848e-11 0.0200177 -0.000800687 8.68074e-11 0.0201512 -0.000778333 9.06798e-11 0.0202652 -0.000755967 3.74033e-11 0.020375 -0.000734884 4.37288e-11 0.0204907 -0.000712356 6.92434e-11 0.0206499 -0.000683815 3.38758e-11 0.0208731 -0.000656962 5.1088e-12 0.0211078 -0.000637197 6.79726e-11 0.0212901 -0.000615983 7.25779e-11 0.0213964 -0.000591286 7.26878e-11 0.0214433 -0.000562098 7.31887e-11 0.0214575 -0.000528009 7.55097e-11 0.0214553 -0.000488984 8.39502e-11 0.0214233 -0.000445676 1.08098e-10 0.0213157 -0.000399586 1.62042e-10 0.0210234 -0.000352419 2.92056e-10 0.0201796 -0.00030502 5.88053e-10 0.0190592 -0.000257607 8.02822e-10 0.0177376 -0.00020646 8.86006e-10 0.0163639 -0.000153684 8.2768e-10 0.0151033 -0.000105315 6.72657e-10 0.0140575 -6.54493e-05 4.90659e-10 0.0132527 -3.50669e-05 3.30658e-10 0.0126652 -1.31047e-05 2.10774e-10 0.0122511 2.14901e-06 1.22454e-10 0.0119659 1.22508e-05 5.81578e-11 0.0117699 1.8421e-05 1.9451e-11 0.0116337 2.16376e-05 -6.82937e-12 0.0115364 2.26549e-05 -2.38292e-11 0.0114647 2.20775e-05 -3.5039e-11 0.0114097 2.04152e-05 -3.96988e-11 0.0113662 1.80888e-05 -4.27675e-11 0.011331 1.54757e-05 -4.42361e-11 0.0113025 1.28488e-05 -4.45941e-11 0.0112793 1.03895e-05 -4.43635e-11 0.0112606 8.20453e-06 -4.38671e-11 0.0112458 6.34189e-06 -4.32949e-11 0.0112341 4.80731e-06 -4.27442e-11 0.0112251 3.57923e-06 -4.22663e-11 0.0112182 2.62096e-06 -4.1874e-11 0.0112131 1.88973e-06 -4.15641e-11 0.0112092 1.34282e-06 -4.13341e-11 0.0112065 9.41131e-07 -4.11537e-11 0.0112045 6.51033e-07 -4.10417e-11 0.0112031 4.44771e-07 -4.09299e-11 0.0112021 3.00064e-07 -4.09179e-11 0.0112014 2.00455e-07 -4.07855e-11 1.2933e-07 -4.09446e-11 0.02775 0.0216766 -1.74374e-11 0.0265593 0.0201101 4.66054e-10 0.0253675 0.0179893 3.58577e-10 0.0243285 0.0160227 2.67085e-10 0.0234182 0.0143117 1.89141e-10 0.0225412 0.0128189 1.08932e-10 0.021653 0.0114576 4.50675e-11 0.0207585 0.0102124 -2.08388e-12 0.0198581 0.00906086 -3.38277e-11 0.018999 0.0079969 -5.54798e-11 0.0182285 0.00703563 -7.22171e-11 0.01755 0.00617791 -8.99204e-11 0.0169478 0.00542629 -1.02314e-10 0.0164109 0.00475996 -1.16277e-10 0.0159364 0.00416781 -1.25854e-10 0.0155252 0.00363677 -1.34463e-10 0.0151732 0.00316083 -1.40562e-10 0.0148783 0.00273001 -1.45155e-10 0.0146359 0.00233988 -1.49317e-10 0.0144416 0.00198282 -1.51903e-10 0.0142972 0.0016562 -1.53473e-10 0.0142001 0.00135566 -1.5161e-10 0.0141509 0.00107896 -1.47727e-10 0.014144 0.00082335 -1.40913e-10 0.0141771 0.000586817 -1.2897e-10 0.0142435 0.000367662 -1.15458e-10 0.0143314 0.000163433 -9.42607e-11 0.0144422 -2.60155e-05 -8.19718e-11 0.0145807 -0.000205148 -6.33539e-11 0.0147324 -0.000365587 -4.58798e-11 0.0148901 -0.000509931 -2.81696e-11 0.0150608 -0.00063871 -1.44012e-11 0.0152357 -0.000753148 7.72543e-13 0.0154091 -0.000852806 7.54822e-12 0.015594 -0.000937262 2.76808e-11 0.0157843 -0.00100796 3.03683e-11 0.0159854 -0.00107511 3.59119e-11 0.0162134 -0.0011279 4.71271e-11 0.0164678 -0.00116301 6.72471e-11 0.016739 -0.00117889 6.68098e-11 0.0170098 -0.00118205 8.16088e-11 0.0172745 -0.00117197 9.10236e-11 0.0175441 -0.00116148 8.7117e-11 0.017817 -0.00113941 9.86552e-11 0.0180914 -0.00110452 8.12871e-11 0.0183718 -0.00106586 6.8824e-11 0.0186608 -0.00102361 6.02301e-11 0.0189528 -0.000981451 6.02755e-11 0.019242 -0.000939942 3.83858e-11 0.0195208 -0.000900771 4.23282e-11 0.0197782 -0.000864391 4.38838e-11 0.0200039 -0.000831362 4.97462e-11 0.0201959 -0.000800948 6.74971e-11 0.0203506 -0.000772333 7.0856e-11 0.0204752 -0.000740596 2.75772e-11 0.0205886 -0.0007112 2.43432e-11 0.0206934 -0.000685252 4.38179e-11 0.020811 -0.000655699 3.78694e-11 0.0209864 -0.000622492 2.69669e-11 0.0212096 -0.000595223 3.23225e-11 0.0214073 -0.0005734 7.12252e-11 0.0215322 -0.000548767 6.78558e-11 0.0215843 -0.000521519 6.77379e-11 0.0215842 -0.000490339 7.12818e-11 0.0215555 -0.000454374 8.03693e-11 0.0214966 -0.000413174 1.0536e-10 0.0213802 -0.000367721 1.53543e-10 0.0210862 -0.000321102 2.73927e-10 0.0202517 -0.00027463 5.48167e-10 0.0191531 -0.000230008 8.02165e-10 0.0178373 -0.000180393 9.0477e-10 0.0164563 -0.000129681 8.51455e-10 0.0151811 -8.41192e-05 6.95212e-10 0.0141189 -4.73427e-05 5.05025e-10 0.013299 -1.99357e-05 3.42348e-10 0.0126988 -6.13274e-07 2.16921e-10 0.0122745 1.23418e-05 1.27312e-10 0.0119812 2.04601e-05 6.0389e-11 0.0117789 2.49028e-05 2.03756e-11 0.0116378 2.66259e-05 -6.41428e-12 0.0115369 2.63778e-05 -2.3627e-11 0.0114627 2.4759e-05 -3.49316e-11 0.0114061 2.22691e-05 -3.93926e-11 0.0113617 1.93206e-05 -4.24253e-11 0.0113263 1.6257e-05 -4.3902e-11 0.0112979 1.33167e-05 -4.42813e-11 0.0112752 1.06488e-05 -4.4084e-11 0.0112571 8.33164e-06 -4.36287e-11 0.0112428 6.38979e-06 -4.30995e-11 0.0112317 4.8112e-06 -4.25896e-11 0.0112232 3.56132e-06 -4.21474e-11 0.0112168 2.59451e-06 -4.1785e-11 0.011212 1.86212e-06 -4.14985e-11 0.0112084 1.31775e-06 -4.12871e-11 0.0112059 9.20069e-07 -4.112e-11 0.0112041 6.34232e-07 -4.10187e-11 0.0112028 4.31848e-07 -4.09137e-11 0.0112019 2.90423e-07 -4.09071e-11 0.0112013 1.93398e-07 -4.07781e-11 1.24378e-07 -4.09411e-11 0.0291093 0.0207364 -3.46973e-10 0.0280518 0.021176 -1.17086e-10 0.0267861 0.0193022 3.64088e-10 0.0255594 0.0172488 2.67871e-10 0.0244814 0.0154041 2.01013e-10 0.0235269 0.0137998 1.23257e-10 0.0226373 0.0123785 5.2388e-11 0.0217748 0.0110947 8.08343e-13 0.0209224 0.00992008 -3.24753e-11 0.0200725 0.00884653 -5.31566e-11 0.0192348 0.00785722 -6.88083e-11 0.0184697 0.00695378 -8.49216e-11 0.0178061 0.00614328 -8.81821e-11 0.0172356 0.00542388 -1.01605e-10 0.0167402 0.00478887 -1.19204e-10 0.0163099 0.00422246 -1.28845e-10 0.0159383 0.00371248 -1.37918e-10 0.0156214 0.00324926 -1.41962e-10 0.0153554 0.00282625 -1.48313e-10 0.0151409 0.00243774 -1.51426e-10 0.0149755 0.00208074 -1.54336e-10 0.0148618 0.00175082 -1.54804e-10 0.0147991 0.00144683 -1.52739e-10 0.0147824 0.00116492 -1.47526e-10 0.0148046 0.00090334 -1.39303e-10 0.0148602 0.000659543 -1.26736e-10 0.0149421 0.00043175 -1.14738e-10 0.0150388 0.000219422 -9.32546e-11 0.0151467 2.31073e-05 -7.04819e-11 0.0152782 -0.000170595 -6.31725e-11 0.0154158 -0.000341332 -5.08589e-11 0.0155562 -0.000495399 -3.82757e-11 0.0157036 -0.000633081 -2.92697e-11 0.0158474 -0.000755472 -1.9131e-11 0.0159937 -0.000861303 -1.08923e-11 0.0161577 -0.00095241 -6.07121e-12 0.0163261 -0.0010271 1.20558e-11 0.0164989 -0.00109228 1.50959e-11 0.0166954 -0.0011509 2.14886e-11 0.0169181 -0.00119403 3.55062e-11 0.0171708 -0.00121802 6.02341e-11 0.0174226 -0.00122546 6.76629e-11 0.0176711 -0.00121625 6.89598e-11 0.0179126 -0.00119659 3.9167e-11 0.0181582 -0.00116847 6.40812e-11 0.0184191 -0.00113803 6.10337e-11 0.0186973 -0.00109924 5.05496e-11 0.0189893 -0.00105264 3.62644e-11 0.0192886 -0.00100341 2.67389e-11 0.019584 -0.000953236 1.78841e-11 0.0198638 -0.000904196 1.74356e-11 0.0201154 -0.000856911 2.29786e-11 0.0203294 -0.000812218 4.63203e-11 0.0205071 -0.000770079 3.13097e-11 0.0206546 -0.000729771 2.11036e-11 0.0207811 -0.000689463 2.16978e-11 0.0208922 -0.000653279 2.33941e-11 0.0209912 -0.000620457 3.37241e-11 0.0211153 -0.000583409 3.99004e-11 0.0213034 -0.000546875 2.1816e-11 0.0215101 -0.000518693 5.43516e-11 0.0216631 -0.00049224 6.38807e-11 0.02173 -0.000465519 6.49802e-11 0.0217221 -0.00043764 6.7996e-11 0.0216682 -0.000407464 7.63768e-11 0.0215674 -0.000373207 9.47508e-11 0.0213947 -0.000334204 1.44757e-10 0.0210877 -0.000292922 2.68641e-10 0.020303 -0.00024999 5.47189e-10 0.0192404 -0.000203763 8.11192e-10 0.0179339 -0.000152963 9.23198e-10 0.016546 -0.000103277 8.75418e-10 0.0152561 -6.04351e-05 7.15558e-10 0.0141773 -2.70946e-05 5.23714e-10 0.0133422 -3.12273e-06 3.5576e-10 0.0127294 1.30709e-05 2.23636e-10 0.012295 2.33114e-05 1.29117e-10 0.0119937 2.91e-05 6.25624e-11 0.0117854 3.15551e-05 2.12799e-11 0.0116396 3.16052e-05 -5.77227e-12 0.0115355 2.99777e-05 -2.30277e-11 0.0114591 2.72628e-05 -3.4471e-11 0.0114012 2.39303e-05 -3.91686e-11 0.0113562 2.03662e-05 -4.21747e-11 0.0113209 1.68717e-05 -4.35816e-11 0.0112929 1.36431e-05 -4.39614e-11 0.0112707 1.07925e-05 -4.37969e-11 0.0112533 8.3668e-06 -4.33854e-11 0.0112397 6.36637e-06 -4.29014e-11 0.0112292 4.76086e-06 -4.24338e-11 0.0112213 3.50293e-06 -4.20279e-11 0.0112153 2.53835e-06 -4.16959e-11 0.0112109 1.81304e-06 -4.14328e-11 0.0112076 1.27738e-06 -4.12411e-11 0.0112053 8.88273e-07 -4.10841e-11 0.0112037 6.10006e-07 -4.1001e-11 0.0112025 4.1389e-07 -4.08977e-11 0.0112017 2.77404e-07 -4.08949e-11 0.0112011 1.84099e-07 -4.077e-11 1.17998e-07 -4.09375e-11 0.0289649 0.0203656 -4.73501e-10 0.0292894 0.0206979 -2.33134e-10 0.0281259 0.0204335 2.47763e-11 0.0269559 0.0185923 4.06318e-10 0.0258302 0.0166606 2.99219e-10 0.0247753 0.014922 1.91345e-10 0.0237844 0.0134031 9.86658e-11 0.0228467 0.0120442 3.11151e-11 0.0219574 0.0108191 -1.87876e-11 0.0211094 0.00970454 -4.60484e-11 0.0202984 0.00868784 -6.39598e-11 0.0195203 0.00776133 -7.56721e-11 0.0187924 0.00691314 -9.76161e-11 0.0181487 0.006146 -1.09185e-10 0.017602 0.00545693 -1.20743e-10 0.0171391 0.00484468 -1.25633e-10 0.0167471 0.00429582 -1.36069e-10 0.0164144 0.00379962 -1.41313e-10 0.0161338 0.00334474 -1.50062e-10 0.0159031 0.0029264 -1.53706e-10 0.0157223 0.00253918 -1.58058e-10 0.015593 0.00218101 -1.58924e-10 0.0155154 0.00184893 -1.58603e-10 0.0154871 0.00154123 -1.53871e-10 0.0154998 0.00125489 -1.48404e-10 0.0155482 0.00098776 -1.38078e-10 0.0156196 0.000738224 -1.26959e-10 0.0157109 0.000503336 -1.12536e-10 0.0158187 0.000285149 -1.04805e-10 0.0159215 7.8966e-05 -7.70906e-11 0.0160342 -0.000118387 -6.72155e-11 0.0161516 -0.000297957 -5.91945e-11 0.0162701 -0.000459235 -5.09352e-11 0.0163883 -0.000603226 -4.13234e-11 0.0165013 -0.000730434 -3.53649e-11 0.0166195 -0.000841441 -2.34039e-11 0.0167556 -0.000935872 -1.87139e-11 0.0169002 -0.00101626 -2.42438e-12 0.0170505 -0.0010797 -5.67793e-13 0.0172231 -0.00113988 3.91779e-12 0.0174145 -0.00118896 9.8881e-12 0.0176278 -0.0012209 2.25636e-11 0.0178388 -0.00123219 7.85209e-11 0.0180557 -0.00122737 3.98271e-11 0.0182777 -0.00121267 3.62468e-11 0.018507 -0.00118186 6.56155e-11 0.0187511 -0.00114317 2.19994e-11 0.0190173 -0.00109977 7.60012e-12 0.0193051 -0.00105581 -2.62474e-13 0.0196045 -0.0010059 -1.08408e-12 0.0198994 -0.000950754 -1.51563e-12 0.0201754 -0.000892408 3.47928e-12 0.0204211 -0.000835135 3.97477e-12 0.0206279 -0.000779214 5.60561e-12 0.0207968 -0.000725487 1.00185e-11 0.020942 -0.000674275 6.22556e-12 0.0210715 -0.000626178 7.92935e-12 0.021179 -0.000582835 1.91502e-11 0.0212751 -0.000541267 4.20814e-11 0.0214103 -0.000497361 2.8717e-11 0.0216036 -0.000458001 2.52721e-11 0.0217843 -0.000426195 5.7233e-11 0.0218797 -0.00039636 5.28842e-11 0.021873 -0.000369832 5.76814e-11 0.0217927 -0.000345215 6.47797e-11 0.0216512 -0.000320069 8.4336e-11 0.0214312 -0.000291996 1.27074e-10 0.0210899 -0.000258837 2.69273e-10 0.0203719 -0.00021918 6.08598e-10 0.0193376 -0.000171317 8.41231e-10 0.0180348 -0.000120057 9.4963e-10 0.0166366 -7.24039e-05 9.07202e-10 0.0153299 -3.33219e-05 7.39912e-10 0.0142333 -4.35373e-06 5.3934e-10 0.0133826 1.53893e-05 3.63269e-10 0.0127569 2.78384e-05 2.2888e-10 0.0123125 3.48769e-05 1.34071e-10 0.0120034 3.7975e-05 6.35259e-11 0.0117892 3.8198e-05 2.19779e-11 0.0116392 3.64255e-05 -5.64591e-12 0.0115322 3.33413e-05 -2.30207e-11 0.0114539 2.95037e-05 -3.4321e-11 0.0113951 2.53368e-05 -3.86287e-11 0.01135 2.11845e-05 -4.17341e-11 0.0113149 1.72939e-05 -4.32036e-11 0.0112875 1.38127e-05 -4.36252e-11 0.0112661 1.08121e-05 -4.35045e-11 0.0112494 8.30628e-06 -4.31406e-11 0.0112366 6.27059e-06 -4.27033e-11 0.0112268 4.65678e-06 -4.2279e-11 0.0112194 3.40525e-06 -4.19092e-11 0.0112138 2.45391e-06 -4.16082e-11 0.0112098 1.7439e-06 -4.13666e-11 0.0112069 1.22297e-06 -4.1199e-11 0.0112047 8.46787e-07 -4.10447e-11 0.0112033 5.79173e-07 -4.09855e-11 0.0112022 3.91484e-07 -4.08895e-11 0.0112015 2.61462e-07 -4.08829e-11 0.011201 1.72914e-07 -4.07609e-11 1.10433e-07 -4.09322e-11 0.0290952 0.0180854 -1.21431e-09 0.0296791 0.0200412 -3.58307e-10 0.0294079 0.0206926 -1.27387e-10 0.0283048 0.0197777 1.20593e-10 0.0271388 0.017998 4.2791e-10 0.0260354 0.0161567 2.84865e-10 0.0250037 0.014513 1.52052e-10 0.0240229 0.0130673 6.96551e-11 0.0230962 0.0117771 1.37482e-11 0.0222147 0.0106086 -2.17459e-11 0.0213803 0.00954656 -5.00432e-11 0.0205859 0.00858123 -7.24056e-11 0.0198415 0.00770108 -9.32278e-11 0.0191564 0.00690375 -1.01448e-10 0.0185508 0.00617985 -1.09735e-10 0.0180359 0.00552328 -1.14566e-10 0.0176069 0.00492884 -1.27749e-10 0.0172509 0.00438995 -1.36881e-10 0.0169566 0.00389834 -1.45917e-10 0.0167162 0.00344754 -1.54571e-10 0.0165258 0.0030304 -1.61101e-10 0.0163854 0.00264397 -1.62379e-10 0.0162958 0.00228499 -1.63069e-10 0.0162541 0.00195133 -1.58993e-10 0.0162574 0.00164038 -1.5485e-10 0.0162954 0.0013505 -1.46535e-10 0.0163607 0.00107881 -1.3811e-10 0.0164458 0.000824561 -1.27923e-10 0.0165399 0.000585839 -1.15156e-10 0.0166439 0.000362493 -1.04747e-10 0.0167425 0.000152653 -8.68989e-11 0.0168351 -4.36026e-05 -7.86597e-11 0.0169278 -0.000230896 -6.74721e-11 0.0170158 -0.000397017 -5.65969e-11 0.0171007 -0.00054515 -5.03105e-11 0.0171822 -0.000675423 -4.29099e-11 0.0172738 -0.000789463 -3.96387e-11 0.0173817 -0.000886712 -3.04404e-11 0.0174997 -0.000969997 -2.91039e-11 0.017639 -0.00103604 -1.55475e-11 0.0177892 -0.00109401 -1.35172e-11 0.0179438 -0.00114676 -9.48421e-12 0.0181103 -0.00118372 -1.03913e-12 0.0182775 -0.00120175 2.24149e-11 0.0184507 -0.00120112 -2.45864e-11 0.0186397 -0.00118987 -3.8231e-12 0.018854 -0.00116487 7.06086e-12 0.0190954 -0.00112977 3.47626e-12 0.0193593 -0.00108435 1.76154e-12 0.0196397 -0.00103338 -3.99135e-13 0.019928 -0.000978242 -4.10625e-12 0.0202122 -0.000921238 -1.46416e-11 0.0204781 -0.000860478 -2.45579e-11 0.0207121 -0.000795712 -2.52809e-11 0.0209085 -0.000729825 -2.19507e-11 0.0210729 -0.000666598 -1.53961e-11 0.0212191 -0.000606597 -1.56619e-11 0.0213486 -0.000551614 -1.87354e-11 0.0214503 -0.000499972 1.89311e-11 0.0215467 -0.00044956 2.2228e-11 0.0216957 -0.000400537 9.65333e-13 0.0218875 -0.000358224 3.47408e-11 0.022019 -0.000321179 4.19104e-11 0.022034 -0.000290846 5.06141e-11 0.0219462 -0.000267826 5.93901e-11 0.021771 -0.000250094 8.47558e-11 0.0215283 -0.000232889 1.36637e-10 0.0211502 -0.000209983 3.01994e-10 0.0204737 -0.000175303 6.10331e-10 0.0194491 -0.000128787 8.63643e-10 0.018141 -7.95646e-05 9.84327e-10 0.0167274 -3.59908e-05 9.26157e-10 0.015401 -2.35016e-06 7.56966e-10 0.0142855 2.09108e-05 5.52711e-10 0.0134186 3.54501e-05 3.70946e-10 0.0127802 4.34317e-05 2.33378e-10 0.0123259 4.67632e-05 1.36197e-10 0.0120094 4.68351e-05 6.49174e-11 0.0117898 4.46221e-05 2.25933e-11 0.0116361 4.09117e-05 -5.24731e-12 0.0115267 3.63426e-05 -2.26083e-11 0.0114471 3.13931e-05 -3.39229e-11 0.0113879 2.64296e-05 -3.81976e-11 0.0113429 2.17378e-05 -4.13385e-11 0.0113084 1.75009e-05 -4.2833e-11 0.0112818 1.3813e-05 -4.32874e-11 0.0112612 1.07017e-05 -4.32105e-11 0.0112454 8.14807e-06 -4.28959e-11 0.0112334 6.10271e-06 -4.25063e-11 0.0112243 4.50035e-06 -4.21259e-11 0.0112175 3.27013e-06 -4.17924e-11 0.0112124 2.34307e-06 -4.15209e-11 0.0112087 1.65641e-06 -4.13055e-11 0.0112061 1.15598e-06 -4.1149e-11 0.0112042 7.96787e-07 -4.10189e-11 0.0112029 5.42655e-07 -4.09576e-11 0.0112019 3.6535e-07 -4.08668e-11 0.0112013 2.4308e-07 -4.08739e-11 0.0112009 1.60159e-07 -4.07559e-11 1.0193e-07 -4.09307e-11 0.0284466 0.0114549 -3.25213e-09 0.0295853 0.018724 -8.22078e-10 0.0303996 0.0198598 -2.31052e-10 0.0296337 0.0205603 -4.97758e-11 0.0285563 0.0192107 3.43143e-10 0.0273702 0.0174802 3.58663e-10 0.0262575 0.0157395 2.35968e-10 0.0252222 0.0141669 1.19238e-10 0.0242385 0.0127853 4.89331e-11 0.0233119 0.0115533 7.41682e-12 0.0224489 0.0104474 -2.13714e-11 0.0216524 0.00944606 -4.29775e-11 0.020921 0.00853826 -6.39507e-11 0.020252 0.00771036 -8.37322e-11 0.0196416 0.00695505 -9.86914e-11 0.0190939 0.00626322 -1.13592e-10 0.0186126 0.00562913 -1.22768e-10 0.0182003 0.00504631 -1.32891e-10 0.0178598 0.00450946 -1.44578e-10 0.0175885 0.00401558 -1.53908e-10 0.017381 0.00356119 -1.61042e-10 0.0172312 0.00314238 -1.64399e-10 0.0171324 0.00275507 -1.65153e-10 0.0170809 0.00239536 -1.6297e-10 0.0170719 0.00206002 -1.59466e-10 0.0170997 0.00174669 -1.53211e-10 0.0171572 0.0014536 -1.45699e-10 0.0172349 0.00117922 -1.36808e-10 0.0173249 0.000921831 -1.26622e-10 0.0174207 0.000681256 -1.15395e-10 0.0175154 0.000455682 -1.04496e-10 0.0175993 0.00024564 -8.7976e-11 0.0176666 5.03919e-05 -7.31252e-11 0.01773 -0.000138361 -6.9813e-11 0.0177824 -0.000306464 -6.52789e-11 0.0178324 -0.000457038 -6.21069e-11 0.0178861 -0.000589905 -5.61383e-11 0.0179529 -0.000705509 -5.33389e-11 0.0180347 -0.000805291 -4.57388e-11 0.0181317 -0.000889162 -4.02358e-11 0.0182607 -0.000959308 -2.96968e-11 0.0183857 -0.00101549 -2.7942e-11 0.0184989 -0.00106896 -2.28366e-11 0.0186158 -0.00110973 -1.68436e-11 0.018736 -0.00113433 -3.97636e-12 0.018872 -0.00113932 1.87953e-11 0.0190281 -0.00113053 1.89225e-11 0.0192219 -0.00111066 9.78244e-12 0.0194536 -0.00107984 1.8524e-12 0.0197148 -0.00103957 -1.50739e-12 0.0199927 -0.000990985 -5.75105e-12 0.0202734 -0.000933934 -1.46981e-11 0.0205405 -0.000870837 -3.16765e-11 0.0207845 -0.000803655 -5.2629e-11 0.0209997 -0.000734743 -4.74975e-11 0.0211845 -0.000665398 -5.19089e-11 0.0213438 -0.000594934 -4.95594e-11 0.0214866 -0.000528582 -5.43886e-11 0.0216081 -0.000467806 -4.06974e-11 0.0217024 -0.000409684 -6.09852e-12 0.021806 -0.000352176 -1.7896e-11 0.0219667 -0.000298373 2.24671e-13 0.02213 -0.000251178 3.24482e-11 0.0221902 -0.000210995 3.56422e-11 0.0221208 -0.000182667 6.25193e-11 0.0219354 -0.000165731 9.24923e-11 0.0216843 -0.000153995 1.80646e-10 0.0212884 -0.000141612 3.14456e-10 0.0206089 -0.000116594 5.80699e-10 0.0195762 -7.49054e-05 8.91367e-10 0.0182528 -3.06238e-05 1.02028e-09 0.0168177 6.27019e-06 9.62988e-10 0.0154686 3.23716e-05 7.82363e-10 0.0143327 4.83981e-05 5.67524e-10 0.0134493 5.66657e-05 3.79188e-10 0.0127983 5.94777e-05 2.37801e-10 0.0123347 5.86527e-05 1.38346e-10 0.0120113 5.5422e-05 6.55779e-11 0.011787 5.06111e-05 2.29831e-11 0.0116302 4.49217e-05 -4.90885e-12 0.0115191 3.88739e-05 -2.22329e-11 0.0114388 3.2862e-05 -3.35546e-11 0.0113796 2.71662e-05 -3.77259e-11 0.0113351 2.20011e-05 -4.08975e-11 0.0113015 1.74799e-05 -4.24363e-11 0.0112758 1.36388e-05 -4.29396e-11 0.0112563 1.04609e-05 -4.2915e-11 0.0112414 7.89416e-06 -4.26533e-11 0.0112302 5.86587e-06 -4.23128e-11 0.0112218 4.29499e-06 -4.19758e-11 0.0112156 3.10083e-06 -4.16796e-11 0.011211 2.20868e-06 -4.14346e-11 0.0112077 1.55293e-06 -4.12472e-11 0.0112054 1.0783e-06 -4.11031e-11 0.0112037 7.39736e-07 -4.09875e-11 0.0112025 5.01549e-07 -4.09308e-11 0.0112017 3.36253e-07 -4.08523e-11 0.0112011 2.2283e-07 -4.0866e-11 0.0112008 1.46242e-07 -4.07508e-11 9.27472e-08 -4.09279e-11 0.0257638 0.00496138 -1.44827e-09 0.0294332 0.0140315 -2.19561e-09 0.0300173 0.01904 -6.63096e-10 0.0308984 0.0196381 -1.38551e-10 0.0299579 0.020188 -3.52074e-11 0.028838 0.018714 1.81505e-10 0.0276154 0.0170512 1.89878e-10 0.0264625 0.0153905 1.26228e-10 0.0254208 0.0138896 6.79953e-11 0.024473 0.0125731 2.89691e-11 0.0236078 0.0114094 2.62343e-12 0.0228131 0.0103656 -2.14932e-11 0.0220794 0.00942198 -4.49018e-11 0.0214021 0.00856089 -6.78736e-11 0.02078 0.00777053 -8.73525e-11 0.0202152 0.00704244 -1.03553e-10 0.0197105 0.0063688 -1.16857e-10 0.0192655 0.00574513 -1.29249e-10 0.0188821 0.00516731 -1.39571e-10 0.0185648 0.00463238 -1.48372e-10 0.0183174 0.00413874 -1.57056e-10 0.0181405 0.00368385 -1.63168e-10 0.0180267 0.00326415 -1.65571e-10 0.017965 0.00287565 -1.64453e-10 0.0179457 0.00251475 -1.62026e-10 0.0179621 0.00217775 -1.57137e-10 0.0180088 0.00186256 -1.50679e-10 0.0180786 0.00156759 -1.43253e-10 0.0181624 0.00129165 -1.34429e-10 0.0182507 0.00103345 -1.24814e-10 0.0183364 0.000792321 -1.15805e-10 0.018414 0.000567448 -1.05396e-10 0.0184774 0.000358326 -9.92461e-11 0.018517 0.000164278 -9.025e-11 0.0185402 -1.05334e-05 -8.42285e-11 0.0185615 -0.000188535 -7.74628e-11 0.0185822 -0.000338345 -7.47865e-11 0.0186123 -0.00047166 -7.39219e-11 0.0186542 -0.00058852 -6.92836e-11 0.0187131 -0.000689932 -6.27344e-11 0.0187952 -0.000775441 -5.08039e-11 0.0189022 -0.00084887 -4.37242e-11 0.0189963 -0.000906633 -2.53854e-11 0.0190644 -0.000956906 -2.24222e-11 0.0191354 -0.0010008 -1.68853e-11 0.0192148 -0.00103062 -5.50659e-12 0.0193141 -0.00104307 1.65908e-11 0.0194468 -0.00103828 6.20037e-12 0.0196289 -0.00102411 5.90084e-12 0.0198502 -0.000998877 8.32582e-12 0.0200974 -0.000963231 1.89926e-11 0.0203591 -0.000917518 -5.87497e-12 0.0206209 -0.000862894 -2.32133e-11 0.0208678 -0.000800795 -4.84727e-11 0.0210894 -0.000732275 -6.20152e-11 0.0212811 -0.000659771 -7.91994e-11 0.0214488 -0.000586315 -8.92292e-11 0.0215993 -0.000514419 -8.82947e-11 0.0217313 -0.000445578 -8.51631e-11 0.0218365 -0.000380099 -4.68488e-11 0.0219237 -0.000316962 -4.77831e-11 0.0220377 -0.000256 -4.4446e-11 0.022198 -0.000198798 -8.48365e-12 0.0223042 -0.000146279 -2.92112e-13 0.0222847 -0.000104199 2.41049e-11 0.0221361 -7.71111e-05 6.8542e-11 0.0218715 -6.4362e-05 1.63742e-10 0.0214911 -5.56901e-05 3.1177e-10 0.0207812 -4.2382e-05 6.4255e-10 0.0197188 -9.68343e-06 9.41374e-10 0.0183674 2.63331e-05 1.06447e-09 0.0169043 5.38062e-05 9.97141e-10 0.0155296 7.01577e-05 8.04795e-10 0.0143726 7.7449e-05 5.80642e-10 0.013473 7.84927e-05 3.86183e-10 0.0128102 7.55472e-05 2.41376e-10 0.012338 7.02089e-05 1.39721e-10 0.0120087 6.34695e-05 6.62343e-11 0.0117805 5.59867e-05 2.33394e-11 0.0116215 4.83237e-05 -4.51313e-12 0.0115093 4.08543e-05 -2.20308e-11 0.0114289 3.38573e-05 -3.28887e-11 0.0113702 2.75167e-05 -3.75257e-11 0.0113267 2.19603e-05 -4.04375e-11 0.0112941 1.72263e-05 -4.2034e-11 0.0112696 1.3291e-05 -4.2595e-11 0.0112512 1.00934e-05 -4.26247e-11 0.0112374 7.54961e-06 -4.24161e-11 0.0112271 5.5653e-06 -4.21245e-11 0.0112194 4.04557e-06 -4.18304e-11 0.0112138 2.90155e-06 -4.15693e-11 0.0112097 2.05423e-06 -4.13544e-11 0.0112068 1.43624e-06 -4.11864e-11 0.0112047 9.92052e-07 -4.1062e-11 0.0112032 6.77229e-07 -4.09594e-11 0.0112022 4.57038e-07 -4.09098e-11 0.0112015 3.05066e-07 -4.08374e-11 0.011201 2.01307e-07 -4.08566e-11 0.0112007 1.31577e-07 -4.0745e-11 8.31397e-08 -4.09254e-11 0.0203125 0.00201596 -1.36782e-09 0.0266051 0.00617524 -3.68687e-09 0.0299771 0.0150395 -1.68612e-09 0.0303974 0.0191051 -5.09206e-10 0.0312698 0.0192792 -6.96823e-11 0.0302823 0.019737 -2.79388e-11 0.0291539 0.0182825 1.09748e-10 0.0279235 0.016701 1.00036e-10 0.0267502 0.0151159 5.59273e-11 0.0257064 0.0136875 2.71533e-11 0.0247836 0.0124361 8.71427e-12 0.0239657 0.0113323 -8.9483e-12 0.0232329 0.0103471 -2.75778e-11 0.0225617 0.00945306 -4.90679e-11 0.021941 0.00863037 -7.16362e-11 0.0213664 0.00786574 -9.26575e-11 0.0208402 0.00715101 -1.10135e-10 0.020369 0.00648396 -1.24555e-10 0.0199562 0.00586254 -1.38774e-10 0.0196091 0.00528592 -1.50474e-10 0.0193337 0.00475387 -1.59982e-10 0.0191288 0.00426423 -1.6723e-10 0.0189902 0.00381306 -1.70522e-10 0.0189101 0.00339546 -1.69616e-10 0.0188778 0.00300703 -1.64642e-10 0.018883 0.00264505 -1.59627e-10 0.0189168 0.0023068 -1.53172e-10 0.0189738 0.00199049 -1.45989e-10 0.0190467 0.00169499 -1.38558e-10 0.0191257 0.00141903 -1.30405e-10 0.0192018 0.00116184 -1.22619e-10 0.0192672 0.000922112 -1.14612e-10 0.0193173 0.000699792 -1.10035e-10 0.0193522 0.000493139 -1.02879e-10 0.0193719 0.000303939 -9.71373e-11 0.0193651 0.000127748 -9.87482e-11 0.0193505 -3.10936e-05 -9.51444e-11 0.0193475 -0.00018729 -9.00503e-11 0.0193558 -0.000321353 -8.75513e-11 0.0193748 -0.00043836 -7.78473e-11 0.0194145 -0.000540557 -6.67528e-11 0.0194787 -0.000629238 -5.35107e-11 0.0195496 -0.00070479 -3.98828e-11 0.0196033 -0.000767082 -1.85757e-11 0.0196314 -0.000815178 -1.64273e-11 0.0196632 -0.000861293 -1.08222e-11 0.0197095 -0.000896271 -7.79467e-12 0.0197817 -0.00091521 9.19458e-12 0.0199008 -0.000916586 -3.92228e-12 0.020076 -0.000906376 -2.18576e-11 0.0202872 -0.000887935 4.1735e-11 0.0205144 -0.000857295 -1.59741e-11 0.0207492 -0.000816425 -1.86174e-11 0.020979 -0.000766581 -3.67228e-11 0.0211914 -0.000708183 -7.51279e-11 0.0213811 -0.000642537 -9.42706e-11 0.0215479 -0.000572797 -1.12615e-10 0.0216958 -0.000501008 -1.16607e-10 0.0218276 -0.000429969 -1.22641e-10 0.0219375 -0.000361617 -9.45813e-11 0.0220225 -0.000295182 -9.38191e-11 0.0221086 -0.000230088 -5.87662e-11 0.0222312 -0.000167096 -7.05526e-11 0.0223588 -0.000106588 -2.61886e-11 0.0223989 -5.11837e-05 -1.40882e-11 0.0223083 -7.10289e-06 3.27634e-11 0.0220775 2.09115e-05 1.16765e-10 0.0217134 3.40795e-05 2.83125e-10 0.02099 4.26736e-05 5.5307e-10 0.0198736 6.33128e-05 1.04431e-09 0.0184801 8.96035e-05 1.12593e-09 0.0169831 0.000105049 1.03635e-09 0.0155812 0.000109702 8.27404e-10 0.0144033 0.000107078 5.93288e-10 0.0134884 0.000100225 3.92444e-10 0.0128148 9.11563e-05 2.44176e-10 0.0123353 8.10881e-05 1.40693e-10 0.0120013 7.07249e-05 6.67167e-11 0.0117703 6.05924e-05 2.35218e-11 0.0116099 5.10074e-05 -4.25315e-12 0.0114975 4.22123e-05 -2.16054e-11 0.0114176 3.43433e-05 -3.2416e-11 0.01136 2.74662e-05 -3.76933e-11 0.0113177 2.16104e-05 -3.96126e-11 0.0112865 1.67428e-05 -4.16234e-11 0.0112634 1.27761e-05 -4.22581e-11 0.0112462 9.60713e-06 -4.23423e-11 0.0112334 7.12235e-06 -4.21864e-11 0.011224 5.20827e-06 -4.19431e-11 0.0112171 3.75835e-06 -4.16909e-11 0.0112121 2.67744e-06 -4.14638e-11 0.0112084 1.88379e-06 -4.12777e-11 0.0112058 1.30946e-06 -4.11292e-11 0.011204 8.99594e-07 -4.10222e-11 0.0112027 6.10991e-07 -4.09322e-11 0.0112018 4.10355e-07 -4.08913e-11 0.0112012 2.72662e-07 -4.08242e-11 0.0112008 1.7914e-07 -4.08469e-11 0.0112006 1.16591e-07 -4.07387e-11 7.33714e-08 -4.09236e-11 0.0181594 0.000767682 -7.76057e-10 0.0212063 0.00251028 -1.91034e-09 0.0274839 0.0068466 -4.16748e-09 0.0303932 0.015557 -1.58591e-09 0.0306879 0.0188136 -3.80759e-10 0.031431 0.0188697 -2.02927e-10 0.0304443 0.0192751 -3.7491e-11 0.0293559 0.0178914 1.1009e-10 0.0281646 0.0164014 3.91538e-11 0.0270315 0.0148982 1.00051e-11 0.0260334 0.0135587 1.1034e-11 0.0251753 0.0123845 1.42511e-11 0.0244319 0.0113463 5.93001e-12 0.0237683 0.0104077 -1.499e-11 0.0231505 0.00954305 -4.48022e-11 0.022563 0.00873466 -7.69789e-11 0.0220105 0.00797415 -1.03475e-10 0.0215048 0.0072597 -1.23934e-10 0.0210596 0.00659349 -1.39763e-10 0.0206847 0.00597649 -1.5274e-10 0.0203858 0.00540742 -1.62529e-10 0.0201639 0.00488343 -1.68943e-10 0.020011 0.00440057 -1.72134e-10 0.0199151 0.00395361 -1.71421e-10 0.0198659 0.0035377 -1.67705e-10 0.0198556 0.00314959 -1.61168e-10 0.0198756 0.00278713 -1.54596e-10 0.0199166 0.00244855 -1.48301e-10 0.0199729 0.00213255 -1.42103e-10 0.0200386 0.00183811 -1.35771e-10 0.0201032 0.00156433 -1.29295e-10 0.0201569 0.00130977 -1.22813e-10 0.0201943 0.00107345 -1.18748e-10 0.0202141 0.00085442 -1.14408e-10 0.0202162 0.000652615 -1.14216e-10 0.020204 0.000466377 -1.13031e-10 0.0201843 0.000296758 -1.10179e-10 0.0201542 0.000139544 -1.06553e-10 0.020127 2.82806e-06 -9.76414e-11 0.0201105 -0.000136079 -8.90569e-11 0.0201096 -0.000256202 -7.53008e-11 0.0201312 -0.000360234 -6.40921e-11 0.0201676 -0.000451269 -4.77595e-11 0.0201921 -0.00052975 -2.86363e-11 0.0202017 -0.000596268 -1.76258e-11 0.0202029 -0.00064872 -1.73212e-12 0.0202035 -0.000692889 1.32679e-13 0.0202135 -0.000732573 8.24525e-12 0.0202749 -0.000758425 7.50222e-12 0.0203879 -0.000768192 3.15703e-11 0.02056 -0.000763152 1.34394e-11 0.0207558 -0.000751222 2.67294e-11 0.0209551 -0.000726289 -2.51552e-11 0.0211541 -0.000691275 -4.40007e-11 0.0213435 -0.000647993 -5.63316e-11 0.0215136 -0.000596171 -7.98656e-11 0.0216635 -0.000537257 -1.02965e-10 0.0217962 -0.000474468 -1.25513e-10 0.0219147 -0.000409677 -1.40716e-10 0.0220162 -0.000344755 -1.2098e-10 0.0220961 -0.000280148 -1.07954e-10 0.0221646 -0.000215321 -9.40423e-11 0.0222525 -0.000151385 -9.84904e-11 0.0223712 -8.78678e-05 -5.47043e-11 0.0224484 -2.44874e-05 -4.24044e-11 0.0224237 3.472e-05 3.72197e-12 0.0222616 8.19169e-05 7.73126e-11 0.0219183 0.000113673 2.26819e-10 0.0213098 0.000131188 5.3026e-10 0.0200463 0.000143534 1.16687e-09 0.0185853 0.000156986 1.20642e-09 0.0170488 0.00015777 1.07625e-09 0.0156197 0.000149317 8.4788e-10 0.0144225 0.000136191 6.03213e-10 0.0134942 0.000121205 3.97599e-10 0.0128116 0.000105856 2.45328e-10 0.0123262 9.09262e-05 1.40918e-10 0.0119888 7.69904e-05 6.68893e-11 0.0117563 6.42616e-05 2.35267e-11 0.0115957 5.28828e-05 -4.16411e-12 0.0114839 4.28953e-05 -2.11626e-11 0.0114052 3.42918e-05 -3.2099e-11 0.011349 2.7004e-05 -3.73386e-11 0.0113084 2.09564e-05 -3.92797e-11 0.0112788 1.60382e-05 -4.12564e-11 0.0112571 1.21052e-05 -4.19337e-11 0.0112412 9.01335e-06 -4.20706e-11 0.0112296 6.6228e-06 -4.19663e-11 0.0112211 4.80375e-06 -4.17699e-11 0.0112149 3.44071e-06 -4.1558e-11 0.0112104 2.43436e-06 -4.13639e-11 0.0112072 1.70188e-06 -4.12047e-11 0.011205 1.17599e-06 -4.10756e-11 0.0112034 8.03408e-07 -4.09843e-11 0.0112023 5.42806e-07 -4.09073e-11 0.0112016 3.62756e-07 -4.0871e-11 0.011201 2.39901e-07 -4.08128e-11 0.0112007 1.56912e-07 -4.08393e-11 0.0112005 1.01689e-07 -4.07325e-11 6.37176e-08 -4.09208e-11 0.0173273 0.000281124 -3.06581e-10 0.018553 0.000939799 -9.46352e-10 0.0220208 0.00266758 -1.8778e-09 0.027842 0.00770814 -4.01171e-09 0.0304971 0.0155686 -1.46261e-09 0.0308438 0.0184312 -3.98211e-10 0.0315421 0.0185035 -2.5992e-10 0.0305984 0.018852 -6.8408e-11 0.0295614 0.0175751 7.77853e-11 0.0284491 0.0161882 5.14829e-11 0.0274186 0.0147891 -9.45257e-14 0.0265163 0.0135441 3.08919e-12 0.0257351 0.0124351 1.04456e-11 0.0250383 0.0114319 -1.11159e-12 0.0243949 0.0105068 -2.88431e-11 0.0237826 0.00964259 -6.56083e-11 0.0231975 0.00883078 -1.00166e-10 0.022658 0.00806916 -1.25925e-10 0.0221854 0.00735955 -1.4415e-10 0.0217919 0.0067039 -1.57792e-10 0.0214788 0.00610034 -1.6723e-10 0.0212417 0.0055435 -1.72946e-10 0.0210746 0.00502866 -1.74801e-10 0.0209652 0.00455139 -1.72465e-10 0.0209017 0.00410687 -1.674e-10 0.0208738 0.00369204 -1.61391e-10 0.020875 0.00330406 -1.55484e-10 0.0208999 0.00294214 -1.49294e-10 0.0209379 0.00260486 -1.4462e-10 0.0209849 0.00229122 -1.39463e-10 0.0210352 0.00200021 -1.3476e-10 0.0210767 0.00173057 -1.29782e-10 0.0211009 0.00148032 -1.27259e-10 0.0211066 0.00124829 -1.25688e-10 0.0210935 0.00103383 -1.26004e-10 0.021064 0.000836144 -1.25879e-10 0.0210247 0.000654609 -1.26421e-10 0.0209847 0.000488698 -1.20758e-10 0.0209458 0.000337365 -1.15375e-10 0.0209063 0.000199115 -1.04119e-10 0.0208704 7.33892e-05 -8.2352e-11 0.0208472 -3.68859e-05 -6.06942e-11 0.0208447 -0.000148249 -3.49255e-11 0.0208409 -0.000244169 -2.83911e-12 0.0208172 -0.000327565 1.70601e-11 0.0207891 -0.000397907 4.30089e-11 0.0207647 -0.000457424 4.28582e-11 0.020737 -0.000502653 3.4198e-11 0.0207395 -0.000544002 3.27754e-11 0.0207833 -0.000576762 3.56228e-11 0.0209069 -0.000594483 3.81571e-11 0.0210726 -0.000596867 2.1418e-11 0.0212424 -0.000590086 1.11749e-11 0.0214055 -0.000572057 -7.47908e-11 0.0215611 -0.000544781 -4.61046e-11 0.0217027 -0.000510036 -4.37967e-11 0.0218252 -0.000467308 -9.84004e-11 0.0219311 -0.00041829 -1.30114e-10 0.0220235 -0.000365548 -1.37884e-10 0.0221025 -0.000310679 -1.35929e-10 0.0221653 -0.000254292 -1.2031e-10 0.0222171 -0.000195623 -9.90937e-11 0.0222786 -0.000135154 -8.97977e-11 0.0223728 -7.29589e-05 -5.80885e-11 0.0224596 -7.44541e-06 -4.72598e-11 0.0224876 5.96736e-05 -1.33951e-11 0.0224009 0.000122668 6.3787e-11 0.0221349 0.000174836 2.04691e-10 0.0215727 0.000211553 5.39191e-10 0.0202056 0.0002271 1.22772e-09 0.0186713 0.000224413 1.2684e-09 0.0170958 0.000208653 1.10879e-09 0.0156424 0.000187113 8.63685e-10 0.0144289 0.000163875 6.1022e-10 0.0134896 0.000140885 4.00309e-10 0.0127999 0.000119167 2.46189e-10 0.0123105 9.94946e-05 1.40367e-10 0.0119713 8.20441e-05 6.67873e-11 0.0117385 6.68661e-05 2.3328e-11 0.0115788 5.38575e-05 -4.23061e-12 0.0114685 4.28611e-05 -2.11341e-11 0.0113917 3.36892e-05 -3.14776e-11 0.0113375 2.61341e-05 -3.70718e-11 0.0112988 2.00074e-05 -3.90715e-11 0.011271 1.51274e-05 -4.09229e-11 0.0112509 1.1294e-05 -4.16294e-11 0.0112364 8.32682e-06 -4.18135e-11 0.0112259 6.0637e-06 -4.17576e-11 0.0112183 4.36225e-06 -4.16058e-11 0.0112128 3.10097e-06 -4.14324e-11 0.0112089 2.1787e-06 -4.127e-11 0.0112062 1.51327e-06 -4.11359e-11 0.0112042 1.03933e-06 -4.10262e-11 0.0112029 7.06006e-07 -4.09491e-11 0.0112019 4.7444e-07 -4.08832e-11 0.0112013 3.1546e-07 -4.08535e-11 0.0112009 2.07618e-07 -4.0801e-11 0.0112006 1.35174e-07 -4.08321e-11 0.0112004 8.72241e-08 -4.07281e-11 5.4418e-08 -4.09187e-11 0.016956 0.000112757 -1.71859e-10 0.0173115 0.000354224 -4.2729e-10 0.0188838 0.000956423 -9.18195e-10 0.022785 0.00295603 -1.94375e-09 0.0283795 0.00807391 -3.84548e-09 0.0307479 0.015495 -1.36765e-09 0.0310687 0.0180505 -5.12042e-10 0.0317171 0.0181643 -2.75442e-10 0.030874 0.0184773 -6.22885e-11 0.0298872 0.0173362 -2.68556e-11 0.028872 0.0160761 4.56855e-11 0.0279337 0.0147835 -1.4595e-11 0.0270942 0.0136075 -1.04836e-11 0.0263441 0.0125264 -1.03924e-11 0.0256516 0.0115267 -3.19331e-11 0.0249995 0.0105949 -6.64499e-11 0.0243881 0.00972658 -1.04465e-10 0.0238259 0.00891802 -1.35365e-10 0.0233325 0.00816701 -1.54305e-10 0.0229251 0.00747315 -1.66648e-10 0.0226029 0.00683417 -1.73776e-10 0.0223562 0.00624459 -1.76843e-10 0.0221749 0.00569745 -1.76911e-10 0.0220509 0.00518869 -1.73449e-10 0.0219732 0.00471511 -1.68607e-10 0.0219296 0.00427259 -1.59892e-10 0.0219109 0.00385859 -1.5424e-10 0.0219131 0.00347168 -1.50812e-10 0.0219336 0.00311229 -1.46718e-10 0.0219621 0.00277912 -1.44007e-10 0.0219945 0.00247062 -1.41453e-10 0.0220241 0.00218529 -1.38492e-10 0.0220358 0.00192108 -1.36618e-10 0.0220254 0.00167569 -1.36061e-10 0.021996 0.00144818 -1.36657e-10 0.0219486 0.00123801 -1.37658e-10 0.0218885 0.00104434 -1.39036e-10 0.021827 0.000866743 -1.37409e-10 0.0217698 0.000704504 -1.29746e-10 0.0217137 0.000556613 -1.24705e-10 0.0216608 0.000421534 -1.11111e-10 0.0216157 0.000298479 -8.97477e-11 0.0215798 0.000185663 -8.80236e-11 0.0215477 8.25911e-05 -5.86037e-11 0.0214957 -5.42532e-06 -6.85032e-11 0.0214313 -9.67291e-05 -2.94454e-11 0.021369 -0.000175803 -2.68211e-11 0.0213179 -0.000242194 -6.36575e-11 0.0212875 -0.000294426 -1.45586e-11 0.0212835 -0.000337103 -1.26265e-11 0.0213419 -0.000372143 -3.32809e-12 0.0214608 -0.000397552 -9.3701e-12 0.0216037 -0.000408813 -3.85433e-11 0.0217358 -0.000408038 -4.73766e-11 0.0218536 -0.0003971 -9.80346e-11 0.0219596 -0.000379566 -5.99215e-11 0.0220498 -0.000354888 -6.19608e-11 0.0221246 -0.000322644 -1.07696e-10 0.022186 -0.00028497 -1.25991e-10 0.0222354 -0.000243755 -1.29782e-10 0.0222722 -0.000199464 -1.08491e-10 0.0223002 -0.000151202 -1.08111e-10 0.022338 -9.85978e-05 -1.04798e-10 0.0224098 -4.15157e-05 -8.92659e-11 0.022497 2.12629e-05 -6.37488e-11 0.0225537 9.01406e-05 -3.34268e-11 0.0225272 0.000161731 4.83458e-11 0.0223264 0.000229625 2.03947e-10 0.0217805 0.000282084 5.48423e-10 0.0203033 0.000303381 1.31286e-09 0.0187202 0.000283462 1.30598e-09 0.0171188 0.000254075 1.12563e-09 0.0156479 0.000222078 8.72011e-10 0.0144219 0.000189756 6.13779e-10 0.0134741 0.000158861 4.00882e-10 0.0127794 0.000130946 2.45671e-10 0.012288 0.000106529 1.39623e-10 0.0119488 8.57007e-05 6.60056e-11 0.0117173 6.8278e-05 2.29734e-11 0.0115597 5.38771e-05 -4.3033e-12 0.0114518 4.20893e-05 -2.11588e-11 0.0113774 3.25349e-05 -3.10271e-11 0.0113256 2.48681e-05 -3.69152e-11 0.0112892 1.87861e-05 -3.87973e-11 0.0112633 1.40334e-05 -4.05846e-11 0.0112449 1.03637e-05 -4.13395e-11 0.0112317 7.56578e-06 -4.15701e-11 0.0112223 5.46003e-06 -4.15605e-11 0.0112156 3.8956e-06 -4.14513e-11 0.0112109 2.74818e-06 -4.13147e-11 0.0112075 1.91722e-06 -4.11824e-11 0.0112052 1.32289e-06 -4.10719e-11 0.0112035 9.02987e-07 -4.09805e-11 0.0112024 6.09841e-07 -4.09169e-11 0.0112016 4.07581e-07 -4.08608e-11 0.0112011 2.69606e-07 -4.08383e-11 0.0112007 1.76571e-07 -4.07907e-11 0.0112005 1.14424e-07 -4.08254e-11 0.0112003 7.35094e-08 -4.07244e-11 4.56645e-08 -4.09168e-11 0.0168444 5.41483e-05 -9.75412e-11 0.0170005 0.000122911 -1.85095e-10 0.0173621 0.000370016 -4.10236e-10 0.0191039 0.0010215 -9.13095e-10 0.0233894 0.00303575 -1.85666e-09 0.0287053 0.00812823 -3.73753e-09 0.0308851 0.0151872 -1.4043e-09 0.0312423 0.0176413 -5.20962e-10 0.0318792 0.0178519 -2.04079e-10 0.0311382 0.0181276 -1.59998e-10 0.0302619 0.0171383 -5.33739e-11 0.029348 0.0160227 2.5095e-11 0.0284792 0.0148323 -3.72584e-11 0.0276726 0.0136933 -1.66779e-11 0.026931 0.0126149 -2.04224e-11 0.0262425 0.01161 -5.48837e-11 0.0256033 0.0106784 -9.79726e-11 0.0250251 0.00981892 -1.36811e-10 0.024518 0.009027 -1.59699e-10 0.0240926 0.00829351 -1.69006e-10 0.023757 0.00761458 -1.78412e-10 0.0234997 0.00698667 -1.78301e-10 0.0233062 0.00640683 -1.77346e-10 0.0231675 0.00586654 -1.73534e-10 0.0230743 0.00536251 -1.67505e-10 0.0230141 0.00489149 -1.60912e-10 0.0229759 0.00445048 -1.55178e-10 0.0229567 0.00403866 -1.50613e-10 0.0229548 0.0036561 -1.49366e-10 0.0229681 0.00330276 -1.48326e-10 0.0229836 0.00297687 -1.46674e-10 0.0229954 0.00267535 -1.44752e-10 0.0229962 0.00239647 -1.42852e-10 0.0229699 0.00213751 -1.41806e-10 0.02292 0.0018964 -1.42028e-10 0.022854 0.00167278 -1.42732e-10 0.0227731 0.00146624 -1.43881e-10 0.0226869 0.00127596 -1.43292e-10 0.0226069 0.00110152 -1.35723e-10 0.022532 0.000942068 -1.3245e-10 0.022458 0.00079603 -1.19577e-10 0.0223874 0.000661982 -9.86547e-11 0.022325 0.000539082 -9.84897e-11 0.0222729 0.000426363 -7.00827e-11 0.0222098 0.000322335 -4.54456e-11 0.0221247 0.00022699 -4.2874e-11 0.0220345 0.000139399 -1.89021e-11 0.0219464 6.04264e-05 -5.66262e-11 0.0218771 -3.83817e-06 -1.1494e-11 0.0218499 -6.28566e-05 5.05476e-12 0.021869 -0.000112984 -1.80933e-11 0.0219338 -0.000150707 -4.48636e-11 0.0220252 -0.000179283 -4.53403e-11 0.0221295 -0.00019966 -5.12088e-11 0.0222168 -0.000209142 -5.63528e-11 0.0222875 -0.00020733 -6.53337e-11 0.0223438 -0.000198611 -5.92882e-11 0.0223858 -0.000183763 -6.56233e-11 0.0224163 -0.000161878 -1.08546e-10 0.022437 -0.000134885 -1.07669e-10 0.0224469 -0.000103951 -9.7887e-11 0.02245 -6.83709e-05 -1.06795e-10 0.0224641 -2.64409e-05 -7.5999e-11 0.022514 2.23432e-05 -7.10962e-11 0.0225972 7.9364e-05 -5.0858e-11 0.0226652 0.000145301 -2.21102e-11 0.0226677 0.000217788 6.35668e-11 0.0224757 0.000289936 2.50043e-10 0.0218597 0.000346294 6.39847e-10 0.0203132 0.000358393 1.35489e-09 0.0187308 0.000331033 1.29105e-09 0.0171215 0.000295359 1.12392e-09 0.0156387 0.000255273 8.74599e-10 0.0144021 0.000214103 6.15838e-10 0.0134476 0.000175287 3.99714e-10 0.0127502 0.000140923 2.4396e-10 0.0122587 0.000111788 1.38254e-10 0.0119214 8.77859e-05 6.48598e-11 0.0116929 6.84048e-05 2.24204e-11 0.0115385 5.28937e-05 -4.52326e-12 0.0114339 4.05717e-05 -2.08877e-11 0.0113627 3.08523e-05 -3.07072e-11 0.0113137 2.32399e-05 -3.67467e-11 0.0112797 1.73236e-05 -3.83926e-11 0.0112559 1.27859e-05 -4.02119e-11 0.0112392 9.34021e-06 -4.10466e-11 0.0112274 6.75152e-06 -4.1334e-11 0.0112191 4.82854e-06 -4.13727e-11 0.0112132 3.41654e-06 -4.13057e-11 0.0112091 2.39178e-06 -4.12047e-11 0.0112063 1.65673e-06 -4.1101e-11 0.0112043 1.13557e-06 -4.10131e-11 0.0112029 7.70311e-07 -4.09385e-11 0.0112019 5.17199e-07 -4.08876e-11 0.0112013 3.4376e-07 -4.08405e-11 0.0112009 2.26205e-07 -4.08248e-11 0.0112006 1.47414e-07 -4.07814e-11 0.0112004 9.50795e-08 -4.08199e-11 0.0112003 6.08119e-08 -4.0721e-11 3.76136e-08 -4.09156e-11 0.0168308 1.81134e-05 -5.83987e-11 0.0168535 5.39661e-05 -9.84293e-11 0.017015 0.000124335 -1.87924e-10 0.0174332 0.00037472 -4.03749e-10 0.0192297 0.00103184 -8.91257e-10 0.0235686 0.00301499 -1.75791e-09 0.0287625 0.00785003 -3.52525e-09 0.0309267 0.0146927 -1.47146e-09 0.0314068 0.0172122 -5.52939e-10 0.0320083 0.0175858 -2.13126e-10 0.0314587 0.0177934 -1.72179e-10 0.0307248 0.0169637 -1.11934e-10 0.0298691 0.0160015 -1.12145e-10 0.029022 0.0148997 -5.63485e-11 0.0282322 0.0137841 -3.81137e-12 0.0275098 0.0127087 -2.0996e-11 0.0268533 0.0117064 -7.89671e-11 0.0262664 0.0107897 -1.31554e-10 0.0257526 0.00994814 -1.66931e-10 0.0253095 0.00916997 -1.78537e-10 0.0249432 0.0084467 -1.8237e-10 0.0246675 0.00777707 -1.86536e-10 0.0244638 0.00715834 -1.68013e-10 0.0243133 0.00658653 -1.73147e-10 0.0242038 0.0060518 -1.67503e-10 0.0241247 0.00555038 -1.6121e-10 0.0240676 0.00508126 -1.54784e-10 0.0240267 0.00464393 -1.50699e-10 0.0240047 0.004238 -1.48252e-10 0.0239976 0.00386417 -1.48752e-10 0.0239996 0.00351968 -1.48605e-10 0.0239945 0.00320249 -1.46606e-10 0.0239755 0.00290767 -1.44877e-10 0.0239372 0.00263429 -1.43894e-10 0.0238659 0.00237926 -1.43634e-10 0.0237746 0.00214123 -1.45182e-10 0.0236733 0.00192064 -1.46983e-10 0.023563 0.00171696 -1.48523e-10 0.0234563 0.00152919 -1.45743e-10 0.0233595 0.00135686 -1.46214e-10 0.0232662 0.00119863 -1.39407e-10 0.0231726 0.00105262 -1.26014e-10 0.0230816 0.000917564 -1.2773e-10 0.0230017 0.000792908 -1.07494e-10 0.0229195 0.000677498 -9.43327e-11 0.022816 0.000570291 -9.0211e-11 0.0227055 0.000471365 -6.34071e-11 0.0225972 0.000379985 -7.70853e-11 0.0225017 0.000299043 -5.49231e-11 0.0224417 0.000228179 -2.6162e-11 0.0224301 0.000167553 -3.3881e-11 0.0224619 0.000116792 -7.38379e-11 0.0225211 7.52878e-05 -6.10326e-11 0.0225829 4.35171e-05 -6.18128e-11 0.0226355 1.92467e-05 -6.46911e-11 0.0226765 2.92137e-06 -6.96283e-11 0.0227039 -4.96032e-06 -7.47995e-11 0.0227158 -5.44198e-06 -7.70816e-11 0.0227169 3.1716e-07 -9.02203e-11 0.0227104 1.21808e-05 -1.06438e-10 0.0226974 2.94399e-05 -9.18399e-11 0.0226791 5.2194e-05 -6.83915e-11 0.022668 8.2104e-05 -6.31328e-11 0.0226964 0.000121517 -6.39968e-11 0.0227691 0.000171345 -4.84523e-11 0.022829 0.000231644 -1.63245e-11 0.022811 0.000298009 7.19826e-11 0.0225391 0.000361346 3.37998e-10 0.021702 0.000405799 8.14179e-10 0.0202776 0.000405897 1.37102e-09 0.0187301 0.000378936 1.27643e-09 0.0171144 0.000338231 1.12524e-09 0.0156173 0.000288894 8.76751e-10 0.0143696 0.000237581 6.14838e-10 0.0134098 0.000189796 3.98472e-10 0.0127117 0.000148669 2.41461e-10 0.0122227 0.000114954 1.3487e-10 0.0118895 8.81163e-05 6.3259e-11 0.0116656 6.71544e-05 2.18144e-11 0.0115157 5.0894e-05 -4.65508e-12 0.0114153 3.83369e-05 -2.07506e-11 0.0113477 2.86803e-05 -3.03786e-11 0.0113018 2.12892e-05 -3.60981e-11 0.0112704 1.56626e-05 -3.84097e-11 0.0112488 1.1422e-05 -3.99602e-11 0.0112338 8.25381e-06 -4.07859e-11 0.0112233 5.90765e-06 -4.11137e-11 0.0112161 4.18707e-06 -4.11974e-11 0.0112111 2.93816e-06 -4.11707e-11 0.0112076 2.04116e-06 -4.11033e-11 0.0112051 1.40381e-06 -4.10266e-11 0.0112035 9.55837e-07 -4.09595e-11 0.0112023 6.44357e-07 -4.09005e-11 0.0112016 4.30103e-07 -4.08613e-11 0.011201 2.84294e-07 -4.08222e-11 0.0112007 1.86098e-07 -4.08128e-11 0.0112005 1.20677e-07 -4.07731e-11 0.0112003 7.74684e-08 -4.08152e-11 0.0112002 4.93298e-08 -4.07177e-11 3.0381e-08 -4.09148e-11 0.0168095 7.11966e-06 -4.50013e-11 0.0168319 1.7778e-05 -5.96671e-11 0.0168592 4.89383e-05 -1.0015e-10 0.0170202 0.000124324 -1.90911e-10 0.0174647 0.000353376 -4.05797e-10 0.019251 0.00100535 -8.92278e-10 0.0233196 0.00295895 -1.71519e-09 0.0287022 0.00711808 -3.51975e-09 0.0309348 0.014171 -1.51418e-09 0.0315968 0.0168154 -5.02451e-10 0.0321536 0.017325 -2.08873e-10 0.0317711 0.0174793 -1.99683e-10 0.0311991 0.016789 -2.23446e-10 0.0303948 0.0159852 -2.76755e-10 0.0295947 0.01497 -8.64675e-11 0.0288375 0.0138879 -8.17751e-14 0.0281565 0.0128306 -3.02526e-11 0.0275501 0.0118489 -9.64563e-11 0.027016 0.010944 -1.50313e-10 0.0265577 0.0101109 -1.64512e-10 0.0261701 0.00933957 -1.73377e-10 0.0258666 0.00862302 -1.78137e-10 0.0256496 0.00796261 -1.8292e-10 0.025488 0.00735298 -1.58511e-10 0.0253609 0.00678468 -1.74127e-10 0.0252595 0.00625102 -1.64197e-10 0.0251808 0.00575226 -1.55738e-10 0.0251214 0.00528863 -1.50393e-10 0.0250789 0.00485988 -1.47737e-10 0.0250535 0.00446479 -1.46398e-10 0.0250362 0.00410189 -1.45458e-10 0.0250159 0.00376694 -1.43381e-10 0.0249767 0.00345688 -1.40393e-10 0.0249153 0.00316701 -1.38591e-10 0.0248292 0.00289713 -1.38269e-10 0.0247117 0.00264441 -1.39636e-10 0.0245836 0.00240839 -1.43694e-10 0.024453 0.00219003 -1.45302e-10 0.0243196 0.00198817 -1.45399e-10 0.0241957 0.00180152 -1.46526e-10 0.0240815 0.00162957 -1.4009e-10 0.0239666 0.00147047 -1.28745e-10 0.0238489 0.00132204 -1.25324e-10 0.023739 0.00118394 -1.05709e-10 0.023633 0.00105556 -9.09647e-11 0.0235095 0.000935337 -8.18628e-11 0.0233767 0.000823214 -5.88071e-11 0.0232495 0.000718878 -5.40331e-11 0.02313 0.000623865 -5.29106e-11 0.0230408 0.000539608 -1.81555e-11 0.0229959 0.000465116 -3.38195e-11 0.0229938 0.000400702 -4.21346e-11 0.0230209 0.000345781 -4.21081e-11 0.0230585 0.000299666 -4.40979e-11 0.0230899 0.000261786 -4.81757e-11 0.0231052 0.000231473 -5.40238e-11 0.0231004 0.000208801 -5.89607e-11 0.0230852 0.000193411 -6.63872e-11 0.0230607 0.000185591 -7.23651e-11 0.0230299 0.000184809 -8.27599e-11 0.0229967 0.000190063 -8.82429e-11 0.0229631 0.000201717 -7.21725e-11 0.0229389 0.000221356 -6.2555e-11 0.022941 0.000251053 -5.60226e-11 0.0229719 0.000291679 -4.5509e-11 0.0229781 0.000341656 2.3961e-11 0.0228863 0.000396566 1.43164e-10 0.0225564 0.00044666 4.34893e-10 0.021569 0.000477097 1.07816e-09 0.0202873 0.000469635 1.24729e-09 0.0187398 0.000437904 1.26632e-09 0.0171005 0.000385951 1.12939e-09 0.0155821 0.000323015 8.78958e-10 0.0143223 0.000259038 6.13642e-10 0.0133592 0.000201401 3.94873e-10 0.0126636 0.000153509 2.38516e-10 0.0121802 0.000115621 1.32686e-10 0.0118535 8.649e-05 6.17565e-11 0.011636 6.44683e-05 2.08507e-11 0.0114919 4.78859e-05 -5.12924e-12 0.0113964 3.54256e-05 -2.08631e-11 0.0113328 2.6078e-05 -3.00054e-11 0.0112903 1.90812e-05 -3.57811e-11 0.0112616 1.3857e-05 -3.82885e-11 0.0112421 9.98408e-06 -3.97194e-11 0.0112288 7.13764e-06 -4.0542e-11 0.0112197 5.05905e-06 -4.09081e-11 0.0112134 3.55372e-06 -4.10346e-11 0.0112091 2.47331e-06 -4.10464e-11 0.0112062 1.70522e-06 -4.10107e-11 0.0112042 1.16452e-06 -4.09591e-11 0.0112028 7.87696e-07 -4.09113e-11 0.0112019 5.27739e-07 -4.08665e-11 0.0112012 3.50222e-07 -4.08381e-11 0.0112008 2.3023e-07 -4.08059e-11 0.0112006 1.49929e-07 -4.08025e-11 0.0112004 9.6747e-08 -4.07656e-11 0.0112003 6.1817e-08 -4.08114e-11 0.0112002 3.9193e-08 -4.07146e-11 2.40364e-08 -4.09145e-11 0.0168056 2.33284e-06 -3.7786e-11 0.0168144 5.3851e-06 -4.11758e-11 0.0168267 1.77229e-05 -5.85611e-11 0.016885 3.94265e-05 -8.70378e-11 0.0169973 0.000124603 -1.81305e-10 0.0175683 0.000296185 -3.6497e-10 0.0191356 0.000967996 -7.63274e-10 0.0227457 0.00260817 -1.75157e-09 0.0282996 0.00642877 -3.56157e-09 0.0309127 0.0134915 -1.42869e-09 0.0318519 0.0163819 -4.2575e-10 0.0323833 0.0170659 -3.10897e-10 0.032098 0.0172036 -3.34407e-10 0.0315974 0.0166285 -3.69421e-10 0.0309142 0.0159158 -2.89007e-10 0.0302078 0.0150225 -4.9122e-11 0.029517 0.0140073 6.94524e-13 0.0288859 0.012994 -6.49625e-11 0.0283232 0.0120325 -1.27938e-10 0.0278451 0.0111386 -1.53668e-10 0.0274404 0.0103107 -1.6026e-10 0.027112 0.00954067 -1.6312e-10 0.02687 0.00882865 -1.80347e-10 0.026688 0.00817209 -1.60365e-10 0.0265395 0.00756372 -1.62498e-10 0.0264158 0.00699622 -1.63235e-10 0.0263143 0.00646701 -1.5615e-10 0.0262363 0.00597651 -1.49048e-10 0.0261776 0.00552447 -1.43203e-10 0.0261328 0.00510841 -1.39646e-10 0.0260957 0.00472557 -1.37142e-10 0.0260544 0.0043724 -1.34201e-10 0.0259958 0.0040447 -1.32786e-10 0.0259099 0.00373871 -1.32524e-10 0.0257992 0.00345155 -1.35301e-10 0.0256642 0.00318297 -1.39086e-10 0.0255067 0.00293106 -1.4547e-10 0.0253501 0.00269597 -1.51956e-10 0.0251961 0.00247857 -1.5568e-10 0.025043 0.00227659 -1.59839e-10 0.0249028 0.00208901 -1.58863e-10 0.0247669 0.00191514 -1.5131e-10 0.0246253 0.00175226 -1.46367e-10 0.0244857 0.00159922 -1.31304e-10 0.0243525 0.00145617 -1.1185e-10 0.0242082 0.00132166 -1.00889e-10 0.0240528 0.00119516 -7.64318e-11 0.0239049 0.00107679 -6.08103e-11 0.0237657 0.000967226 -6.18738e-11 0.0236505 0.000868751 -2.99955e-11 0.0235749 0.000779821 -3.84138e-11 0.0235389 0.000701166 -3.88868e-11 0.023533 0.000632174 -3.92483e-11 0.0235401 0.000572005 -4.05669e-11 0.0235448 0.000519906 -4.31053e-11 0.0235376 0.000475449 -4.61398e-11 0.0235143 0.000438577 -5.24529e-11 0.0234772 0.000409342 -5.63441e-11 0.0234308 0.000387953 -6.45798e-11 0.0233796 0.000374598 -7.03686e-11 0.0233292 0.000369096 -7.45516e-11 0.0232811 0.000371163 -7.07734e-11 0.0232378 0.00038153 -6.49734e-11 0.0232039 0.000401512 -3.57565e-11 0.0231901 0.000431893 -2.94006e-11 0.0231638 0.000471637 8.25749e-11 0.0230249 0.000516436 2.10047e-10 0.0226282 0.000555987 5.45429e-10 0.0216356 0.000570742 1.11831e-09 0.0203365 0.000552262 1.25383e-09 0.0187499 0.00050502 1.28224e-09 0.0170717 0.000435065 1.14146e-09 0.0155275 0.000354448 8.82481e-10 0.0142572 0.000276182 6.10348e-10 0.0132947 0.000208592 3.90355e-10 0.0126058 0.000154591 2.34699e-10 0.0121315 0.000113375 1.28764e-10 0.0118141 8.27726e-05 6.03101e-11 0.0116047 6.03395e-05 1.99529e-11 0.0114675 4.39308e-05 -5.41782e-12 0.0113775 3.19245e-05 -2.07825e-11 0.0113184 2.31308e-05 -2.99552e-11 0.0112793 1.66875e-05 -3.53354e-11 0.0112534 1.19658e-05 -3.82374e-11 0.011236 8.52009e-06 -3.92677e-11 0.0112243 6.02668e-06 -4.02898e-11 0.0112164 4.23088e-06 -4.0716e-11 0.011211 2.9461e-06 -4.08862e-11 0.0112074 2.03401e-06 -4.09341e-11 0.011205 1.39197e-06 -4.09278e-11 0.0112033 9.44052e-07 -4.0899e-11 0.0112022 6.34469e-07 -4.08687e-11 0.0112015 4.22523e-07 -4.08365e-11 0.011201 2.78811e-07 -4.08179e-11 0.0112007 1.82307e-07 -4.07916e-11 0.0112004 1.18122e-07 -4.07936e-11 0.0112003 7.58577e-08 -4.07592e-11 0.0112002 4.82489e-08 -4.08083e-11 0.0112001 3.04622e-08 -4.0712e-11 1.86059e-08 -4.09146e-11 0.016805 4.25328e-07 -3.64714e-11 0.0168066 1.63433e-06 -3.83806e-11 0.0168177 4.46209e-06 -4.29331e-11 0.0168255 1.43641e-05 -5.78701e-11 0.0168931 3.4739e-05 -8.1302e-11 0.0169683 0.00010635 -1.80208e-10 0.0175497 0.000262095 -3.25523e-10 0.018892 0.000835297 -8.10033e-10 0.0221763 0.00226217 -1.64743e-09 0.0279696 0.00556956 -3.66287e-09 0.0310634 0.0127111 -1.24048e-09 0.0322013 0.0158435 -5.90545e-10 0.032573 0.0168447 -4.84182e-10 0.0323238 0.0169007 -4.66358e-10 0.0318878 0.0163959 -4.6046e-10 0.0314282 0.0157885 -2.29679e-10 0.0308549 0.0150582 -7.3437e-11 0.0302436 0.0141389 -4.24405e-11 0.0296788 0.0131742 -1.13985e-10 0.029186 0.0122437 -1.43687e-10 0.028765 0.0113631 -1.56711e-10 0.0284084 0.0105361 -1.5068e-10 0.0281275 0.00976414 -1.61954e-10 0.0279143 0.00905368 -1.53487e-10 0.0277402 0.00840028 -1.50366e-10 0.0275956 0.00779523 -1.61875e-10 0.0274745 0.00723447 -1.54377e-10 0.0273768 0.00671593 -1.46382e-10 0.0273006 0.0062387 -1.40084e-10 0.0272369 0.00580041 -1.34882e-10 0.0271767 0.00539625 -1.31945e-10 0.0271114 0.00502259 -1.29552e-10 0.0270299 0.00467569 -1.26992e-10 0.0269211 0.00435147 -1.26454e-10 0.026783 0.00404642 -1.29233e-10 0.0266221 0.00375932 -1.35524e-10 0.0264441 0.00348975 -1.41497e-10 0.0262549 0.00323716 -1.48609e-10 0.026075 0.00300121 -1.50978e-10 0.0258991 0.00278249 -1.50397e-10 0.0257268 0.00257772 -1.45114e-10 0.0255674 0.00238672 -1.31532e-10 0.0254031 0.00220793 -1.16162e-10 0.0252338 0.00203859 -1.00134e-10 0.025071 0.00187905 -7.42468e-11 0.0249037 0.00172871 -6.14742e-11 0.0247252 0.00158654 -4.5517e-11 0.0245545 0.00145283 -2.22489e-11 0.0243965 0.00132801 -3.53624e-11 0.0242581 0.00121403 -2.11866e-11 0.0241556 0.00111038 -1.73298e-11 0.0240892 0.00101683 -2.82778e-11 0.024051 0.000933147 -3.20366e-11 0.0240277 0.000858425 -3.42318e-11 0.0240054 0.000791882 -3.47341e-11 0.0239751 0.000733124 -3.5711e-11 0.0239327 0.000682161 -3.78872e-11 0.0238779 0.000639235 -4.00812e-11 0.0238138 0.000604648 -4.50676e-11 0.0237459 0.000578787 -4.83042e-11 0.0236805 0.000561858 -6.00148e-11 0.0236209 0.000553778 -6.10446e-11 0.0235659 0.000555143 -4.77067e-11 0.023514 0.000566316 -2.37267e-11 0.0234697 0.000588147 9.33116e-12 0.0234148 0.000618933 9.90337e-11 0.0232315 0.000653796 2.89093e-10 0.0227295 0.000680661 6.42929e-10 0.0217331 0.000677702 1.13187e-09 0.020387 0.000640793 1.27005e-09 0.0187409 0.000572234 1.30658e-09 0.0170157 0.000479011 1.15534e-09 0.0154466 0.000378822 8.84121e-10 0.0141711 0.000286285 6.06013e-10 0.0132155 0.000209849 3.84119e-10 0.0125388 0.000151178 2.30292e-10 0.0120776 0.000107969 1.25438e-10 0.0117721 7.6939e-05 5.809e-11 0.0115726 5.487e-05 1.8966e-11 0.0114432 3.91653e-05 -5.72184e-12 0.0113593 2.7963e-05 -2.0749e-11 0.0113048 1.99472e-05 -2.97061e-11 0.0112692 1.41964e-05 -3.48841e-11 0.0112459 1.00587e-05 -3.80126e-11 0.0112305 7.08068e-06 -3.90612e-11 0.0112203 4.95678e-06 -4.00667e-11 0.0112135 3.44746e-06 -4.05437e-11 0.011209 2.3804e-06 -4.07533e-11 0.011206 1.63078e-06 -4.0834e-11 0.011204 1.10807e-06 -4.08542e-11 0.0112026 7.4654e-07 -4.08462e-11 0.0112017 4.98628e-07 -4.08314e-11 0.0112011 3.30137e-07 -4.08106e-11 0.0112008 2.16662e-07 -4.08004e-11 0.0112005 1.40942e-07 -4.07793e-11 0.0112003 9.08769e-08 -4.07862e-11 0.0112002 5.80924e-08 -4.07537e-11 0.0112002 3.67874e-08 -4.08058e-11 0.0112001 2.31329e-08 -4.07099e-11 1.40745e-08 -4.09151e-11 0.0168035 4.76037e-08 -3.43859e-11 0.016807 2.56211e-07 -3.61753e-11 0.01681 8.88113e-07 -3.81263e-11 0.0168209 3.06926e-06 -4.34333e-11 0.016832 1.07171e-05 -5.54311e-11 0.0168876 2.77705e-05 -7.77389e-11 0.0169695 8.56173e-05 -1.65493e-10 0.0174322 0.000218006 -3.01024e-10 0.0186253 0.000678743 -7.44381e-10 0.0214748 0.00186116 -1.49018e-09 0.0276869 0.0046269 -3.16072e-09 0.0311514 0.0115151 -1.40967e-09 0.0323209 0.0150548 -1.23947e-09 0.0324974 0.0164625 -8.47032e-10 0.0324333 0.0164456 -6.45646e-10 0.0322601 0.0160841 -2.81633e-10 0.031955 0.0155986 -2.70459e-10 0.0315125 0.0150392 -1.95227e-10 0.0310166 0.0142545 -1.53775e-10 0.030545 0.0133628 -1.66684e-10 0.0301232 0.0124677 -1.45758e-10 0.0297445 0.0116032 -1.40205e-10 0.0294264 0.0107782 -1.54161e-10 0.0291804 0.0100137 -1.58633e-10 0.0289797 0.00931207 -1.4363e-10 0.0288124 0.00866549 -1.564e-10 0.0286717 0.00806957 -1.50518e-10 0.0285526 0.00752007 -1.42103e-10 0.0284546 0.00701465 -1.3448e-10 0.0283689 0.00655039 -1.27863e-10 0.0282825 0.00612215 -1.22272e-10 0.0281889 0.00572523 -1.18789e-10 0.0280804 0.00535616 -1.16749e-10 0.0279474 0.00501109 -1.19304e-10 0.0277836 0.004686 -1.23476e-10 0.0275938 0.00437834 -1.3365e-10 0.027388 0.0040882 -1.4124e-10 0.0271752 0.00381535 -1.51995e-10 0.0269603 0.00355986 -1.59129e-10 0.0267585 0.00332035 -1.62363e-10 0.02656 0.00309743 -1.65135e-10 0.0263678 0.0028869 -1.59786e-10 0.0261837 0.00268968 -1.53458e-10 0.025988 0.00250291 -1.48712e-10 0.0257934 0.002325 -1.35519e-10 0.025602 0.00215685 -1.26574e-10 0.0254015 0.00199747 -1.25048e-10 0.0252063 0.00184696 -9.86526e-11 0.0250277 0.00170559 -1.0664e-10 0.024867 0.00157501 -1.05707e-10 0.0247387 0.00145551 -6.33062e-11 0.0246439 0.00134624 -7.75027e-11 0.0245752 0.00124711 -6.67176e-11 0.0245213 0.00115723 -5.54234e-11 0.0244713 0.00107583 -4.46676e-11 0.0244177 0.00100257 -3.59823e-11 0.0243565 0.000937542 -3.02627e-11 0.0242862 0.000881037 -2.73927e-11 0.0242078 0.000833519 -2.69934e-11 0.0241254 0.000795346 -3.09784e-11 0.0240468 0.00076708 -3.82107e-11 0.023977 0.000748566 -4.42683e-11 0.0239142 0.00073996 -3.3494e-11 0.0238523 0.00074245 -1.24458e-11 0.0237867 0.00075525 2.71495e-11 0.0236956 0.0007767 1.15668e-10 0.023471 0.000799934 3.39956e-10 0.022836 0.000809926 8.05426e-10 0.0218314 0.00078536 1.08995e-09 0.0204141 0.000725382 1.29856e-09 0.0186962 0.000630015 1.33479e-09 0.0169225 0.000511411 1.16686e-09 0.0153348 0.000391844 8.82246e-10 0.0140629 0.000286948 5.98173e-10 0.0131224 0.000204087 3.76524e-10 0.0124639 0.000142908 2.24246e-10 0.0120201 9.94317e-05 1.21562e-10 0.011729 6.91896e-05 5.62278e-11 0.0115407 4.82975e-05 1.79665e-11 0.0114197 3.38163e-05 -6.07618e-12 0.0113421 2.37304e-05 -2.06801e-11 0.0112922 1.66699e-05 -2.95128e-11 0.0112601 1.17048e-05 -3.43404e-11 0.0112392 8.20307e-06 -3.76955e-11 0.0112257 5.71886e-06 -3.92065e-11 0.0112169 3.96131e-06 -3.97228e-11 0.0112111 2.73097e-06 -4.03716e-11 0.0112073 1.87045e-06 -4.06328e-11 0.0112048 1.27204e-06 -4.0746e-11 0.0112031 8.5849e-07 -4.07903e-11 0.0112021 5.74778e-07 -4.08007e-11 0.0112014 3.8167e-07 -4.07995e-11 0.0112009 2.51321e-07 -4.07886e-11 0.0112006 1.64089e-07 -4.07858e-11 0.0112004 1.06224e-07 -4.0769e-11 0.0112003 6.81767e-08 -4.07803e-11 0.0112002 4.33919e-08 -4.07491e-11 0.0112001 2.73642e-08 -4.08039e-11 0.0112001 1.71428e-08 -4.07086e-11 1.03924e-08 -4.0916e-11 0.0168034 4.14798e-08 -3.42354e-11 0.0168051 2.80441e-08 -3.92771e-11 0.0168089 1.35434e-07 -3.57374e-11 0.0168142 4.65724e-07 -3.7982e-11 0.0168265 1.8762e-06 -4.57819e-11 0.0168356 6.6138e-06 -5.01727e-11 0.0168895 2.02083e-05 -1.11595e-10 0.0169707 6.23088e-05 -5.26657e-11 0.0172991 0.000172234 -3.97057e-10 0.0183079 0.000515035 -3.98203e-10 0.020722 0.00144019 -1.48377e-09 0.0269943 0.00377189 -2.62186e-09 0.0306941 0.00878515 -3.40566e-09 0.0319884 0.013996 -2.04888e-09 0.0324683 0.0157505 -7.60885e-10 0.032529 0.0160531 -4.44914e-10 0.0324897 0.0158098 -4.42404e-10 0.0324591 0.0153681 -3.93311e-10 0.0322091 0.0149312 -3.05763e-10 0.0318476 0.014316 -2.25701e-10 0.0314727 0.0135343 -1.89765e-10 0.0311105 0.012699 -1.37145e-10 0.0307782 0.0118622 -1.47568e-10 0.0305041 0.0110608 -1.50965e-10 0.0302759 0.0103143 -1.28568e-10 0.0300837 0.00962464 -1.45258e-10 0.0299199 0.00899003 -1.36783e-10 0.0297776 0.00840576 -1.26444e-10 0.0296511 0.007868 -1.20548e-10 0.0295352 0.00737177 -1.14035e-10 0.0294197 0.00691463 -1.10486e-10 0.0292946 0.00649063 -1.10712e-10 0.0291555 0.00609581 -1.1001e-10 0.0289948 0.00572612 -1.121e-10 0.028804 0.00537739 -1.18027e-10 0.0285846 0.00504626 -1.30277e-10 0.028347 0.00473219 -1.44422e-10 0.0281034 0.00443568 -1.60843e-10 0.0278619 0.00415704 -1.8092e-10 0.0276249 0.00389549 -1.98243e-10 0.0274016 0.0036494 -2.19164e-10 0.0271799 0.00341882 -2.35032e-10 0.0269657 0.00319935 -2.45804e-10 0.026752 0.00299285 -2.56488e-10 0.026525 0.00279519 -2.52985e-10 0.0263046 0.00260662 -2.4668e-10 0.0260831 0.00242803 -2.37443e-10 0.0258632 0.0022589 -2.06722e-10 0.0256619 0.00209953 -1.86701e-10 0.0254778 0.00195088 -1.76693e-10 0.0253227 0.00181416 -1.1095e-10 0.0252001 0.00168802 -1.09118e-10 0.0251025 0.00157257 -8.38937e-11 0.0250202 0.00146686 -6.08082e-11 0.0249435 0.00137014 -4.16471e-11 0.0248663 0.00128207 -2.68528e-11 0.0247857 0.0012028 -1.61473e-11 0.0247002 0.00113272 -9.92113e-12 0.0246094 0.00107224 -8.0877e-12 0.0245155 0.00102187 -1.23822e-11 0.024425 0.000982 -1.92329e-11 0.0243456 0.000953039 -3.22348e-11 0.024276 0.000934538 -2.60172e-11 0.0242053 0.000926126 -1.70164e-12 0.0241197 0.000928255 4.04269e-11 0.0239875 0.000937745 1.60098e-10 0.0236968 0.000945631 3.97016e-10 0.0229903 0.000932126 8.56342e-10 0.0219063 0.000883371 1.12736e-09 0.0203968 0.000795464 1.34066e-09 0.0186013 0.000668648 1.36456e-09 0.0167854 0.000526283 1.17438e-09 0.0151908 0.000390184 8.75682e-10 0.0139343 0.000276732 5.87655e-10 0.0130179 0.00019099 3.67846e-10 0.0123839 0.000130039 2.18089e-10 0.0119609 8.81733e-05 1.17531e-10 0.0116862 5.99528e-05 5.4114e-11 0.01151 4.09867e-05 1.70181e-11 0.0113978 2.81743e-05 -6.45275e-12 0.0113264 1.94526e-05 -2.05536e-11 0.011281 1.34668e-05 -2.97645e-11 0.0112521 9.33162e-06 -3.28588e-11 0.0112335 6.46296e-06 -3.72787e-11 0.0112217 4.46899e-06 -3.92662e-11 0.011214 3.07315e-06 -3.99674e-11 0.0112091 2.09839e-06 -4.02849e-11 0.0112059 1.4265e-06 -4.05311e-11 0.0112038 9.63538e-07 -4.06702e-11 0.0112025 6.46142e-07 -4.07358e-11 0.0112016 4.30091e-07 -4.07621e-11 0.011201 2.84058e-07 -4.07726e-11 0.0112007 1.86101e-07 -4.07704e-11 0.0112004 1.20927e-07 -4.07736e-11 0.0112003 7.79318e-08 -4.07606e-11 0.0112002 4.98053e-08 -4.07756e-11 0.0112001 3.15716e-08 -4.07453e-11 0.0112001 1.98333e-08 -4.08026e-11 0.0112001 1.23824e-08 -4.07084e-11 7.48197e-09 -4.09172e-11 0.0168034 1.09789e-08 -3.46197e-11 0.0168051 8.41986e-09 -3.69167e-11 0.016808 1.52243e-08 -3.55962e-11 0.0168122 9.03764e-08 -3.86047e-11 0.0168199 1.55459e-07 -3.9834e-11 0.0168317 1.05541e-06 -3.88467e-11 0.0168548 3.05622e-06 -6.07489e-11 0.0168814 1.39439e-05 -5.10788e-11 0.01699 3.77713e-05 -1.58145e-10 0.0172205 0.000130223 -1.64698e-10 0.0180734 0.00034691 -5.76667e-10 0.0200503 0.00107173 -1.04116e-09 0.024579 0.00272682 -2.67005e-09 0.0291864 0.00619085 -4.72619e-09 0.0315438 0.0124629 -1.61731e-09 0.0324945 0.014813 -7.47498e-10 0.0327338 0.0156425 -6.11274e-10 0.0327986 0.0155617 -5.44131e-10 0.0329336 0.0151523 -4.91189e-10 0.0329187 0.0147272 -3.90873e-10 0.0326919 0.0142461 -3.81369e-10 0.0324311 0.0136273 -2.41744e-10 0.0321412 0.0129008 -1.67572e-10 0.0318718 0.0121278 -1.59233e-10 0.0316304 0.011375 -1.115e-10 0.0314183 0.010661 -1.3191e-10 0.0312319 0.00999482 -1.23787e-10 0.031062 0.00937698 -1.12143e-10 0.0309007 0.00880311 -1.06372e-10 0.0307464 0.00827208 -1.00712e-10 0.0305956 0.00778157 -9.56833e-11 0.0304384 0.0073276 -9.37046e-11 0.0302661 0.00690405 -9.17958e-11 0.0300725 0.00650567 -9.26028e-11 0.0298508 0.00612894 -9.6597e-11 0.0295994 0.00577032 -1.04738e-10 0.0293274 0.00542849 -1.17189e-10 0.0290486 0.00510422 -1.30966e-10 0.0287739 0.00479826 -1.48969e-10 0.0285065 0.00451056 -1.66254e-10 0.0282478 0.00423921 -1.83848e-10 0.0279999 0.00398305 -1.96483e-10 0.027752 0.00374068 -2.02126e-10 0.0275108 0.00350926 -2.06407e-10 0.0272624 0.00329 -2.00599e-10 0.0270065 0.00307887 -1.91117e-10 0.026761 0.00287805 -1.79052e-10 0.0265186 0.00268799 -1.59371e-10 0.0262934 0.00250874 -1.36756e-10 0.0260881 0.00234021 -1.35542e-10 0.0259064 0.00218449 -9.25119e-11 0.025757 0.00204003 -8.53937e-11 0.0256332 0.00190704 -7.12776e-11 0.0255255 0.00178462 -5.44416e-11 0.0254248 0.00167196 -3.85871e-11 0.0253257 0.00156862 -2.46447e-11 0.0252257 0.00147469 -1.28346e-11 0.0251241 0.00139066 -4.93953e-12 0.0250207 0.00131697 -2.16531e-12 0.0249163 0.00125399 -6.1062e-12 0.0248153 0.00120202 -1.47479e-11 0.0247247 0.00116137 -3.11158e-11 0.0246457 0.00113176 -2.17232e-11 0.0245643 0.00111238 -9.03806e-12 0.0244546 0.00110091 5.95663e-11 0.0242734 0.00109323 2.02645e-10 0.0238543 0.0010781 5.04956e-10 0.0231097 0.00103733 8.35806e-10 0.0219296 0.000960041 1.16545e-09 0.0203169 0.000837931 1.38725e-09 0.0184469 0.000682436 1.3896e-09 0.0166026 0.000519194 1.17551e-09 0.0150172 0.000372149 8.63583e-10 0.0137896 0.000255615 5.74309e-10 0.0129065 0.000171219 3.571e-10 0.0123022 0.00011344 2.12151e-10 0.0119029 7.50116e-05 1.12234e-10 0.0116455 4.98745e-05 5.28785e-11 0.0114816 3.34224e-05 1.61374e-11 0.011378 2.25734e-05 -6.68286e-12 0.0113126 1.53471e-05 -2.06088e-11 0.0112714 1.04842e-05 -2.9107e-11 0.0112453 7.18131e-06 -3.38851e-11 0.0112288 4.92069e-06 -3.69713e-11 0.0112184 3.36635e-06 -3.86095e-11 0.0112117 2.29795e-06 -3.96348e-11 0.0112075 1.56301e-06 -4.02349e-11 0.0112048 1.0553e-06 -4.03783e-11 0.0112031 7.07466e-07 -4.05938e-11 0.011202 4.71584e-07 -4.06857e-11 0.0112013 3.12321e-07 -4.07289e-11 0.0112008 2.05269e-07 -4.07505e-11 0.0112005 1.33851e-07 -4.0756e-11 0.0112003 8.65929e-08 -4.07639e-11 0.0112002 5.55775e-08 -4.07541e-11 0.0112002 3.53825e-08 -4.0772e-11 0.0112001 2.23476e-08 -4.07421e-11 0.0112001 1.39898e-08 -4.08019e-11 0.0112001 8.70751e-09 -4.07091e-11 5.24643e-09 -4.09184e-11 0.0168034 2.05523e-09 -3.4954e-11 0.016805 6.81466e-10 -3.63847e-11 0.016808 1.77717e-09 -3.58209e-11 0.0168118 1.51299e-08 -3.83243e-11 0.0168182 9.97719e-09 -3.80358e-11 0.0168267 1.33998e-07 -4.09863e-11 0.0168413 3.58117e-07 -4.55454e-11 0.0168691 1.76128e-06 -4.66059e-11 0.0169038 6.26333e-06 -6.6593e-11 0.0170113 2.33079e-05 -1.00522e-10 0.0171618 7.95942e-05 -2.13303e-10 0.01782 0.000228575 -4.07394e-10 0.019285 0.000715985 -8.78043e-10 0.022584 0.00188951 -1.75536e-09 0.0280404 0.00452166 -3.5374e-09 0.0312196 0.0105387 -1.4888e-09 0.0324716 0.0137676 -1.47068e-09 0.0330178 0.0150365 -7.89605e-10 0.0332037 0.0151721 -5.82807e-10 0.0332894 0.0148821 -5.82646e-10 0.0334445 0.0144408 -5.3413e-10 0.0334853 0.0140378 -4.17176e-10 0.033347 0.0135856 -3.27681e-10 0.0331634 0.0130065 -2.10973e-10 0.0329677 0.0123444 -1.46935e-10 0.0327682 0.0116694 -1.36407e-10 0.0325736 0.0110105 -1.26082e-10 0.0323782 0.0103812 -1.06589e-10 0.0321846 0.00978611 -8.83314e-11 0.0319957 0.0092307 -8.02384e-11 0.0318108 0.00871213 -7.5404e-11 0.0316232 0.00823013 -7.26647e-11 0.031418 0.0077774 -7.10459e-11 0.031188 0.00734868 -7.07668e-11 0.030931 0.00694044 -7.65168e-11 0.030645 0.00655074 -8.61623e-11 0.0303364 0.00617743 -1.01623e-10 0.0300191 0.00582118 -1.20846e-10 0.0297074 0.00548352 -1.43579e-10 0.0294071 0.00516517 -1.66746e-10 0.0291162 0.00486447 -1.8977e-10 0.028835 0.00457946 -2.09609e-10 0.0285607 0.00430896 -2.21228e-10 0.0282856 0.00405114 -2.29963e-10 0.0280137 0.00380431 -2.28548e-10 0.0277333 0.00356903 -2.22015e-10 0.027455 0.00334271 -2.09898e-10 0.0271919 0.00312849 -1.92216e-10 0.0269422 0.00292632 -1.64578e-10 0.0267155 0.00273612 -1.49414e-10 0.0265088 0.00255833 -1.21021e-10 0.026332 0.00239417 -8.98349e-11 0.0261829 0.00224176 -7.48995e-11 0.0260519 0.00210141 -5.19384e-11 0.0259288 0.00197196 -3.24722e-11 0.0258077 0.00185273 -1.64621e-11 0.0256874 0.00174365 -2.98318e-12 0.0255679 0.00164515 6.95366e-12 0.0254488 0.00155769 1.07414e-11 0.0253312 0.00148149 4.96138e-12 0.0252179 0.00141658 -8.11356e-12 0.0251132 0.00136283 -2.38687e-11 0.0250175 0.00131978 -2.51833e-11 0.0249165 0.00128583 1.04331e-12 0.0247723 0.00125761 8.11889e-11 0.0245134 0.00122814 2.49198e-10 0.0240258 0.0011847 5.42384e-10 0.0231793 0.00111355 8.81513e-10 0.0218799 0.00100188 1.22365e-09 0.020161 0.000844186 1.4359e-09 0.0182307 0.000664942 1.40789e-09 0.0163787 0.000488247 1.16845e-09 0.0148217 0.000338231 8.47021e-10 0.0136361 0.000225081 5.58744e-10 0.012794 0.000146443 3.46409e-10 0.0122231 9.44812e-05 2.05255e-10 0.0118486 6.09993e-05 1.08528e-10 0.0116086 3.9697e-05 5.1009e-11 0.0114566 2.61034e-05 1.53313e-11 0.011361 1.73417e-05 -6.9065e-12 0.011301 1.16236e-05 -2.05713e-11 0.0112634 7.8435e-06 -2.88616e-11 0.0112398 5.31541e-06 -3.37748e-11 0.011225 3.60888e-06 -3.67396e-11 0.0112157 2.44985e-06 -3.84778e-11 0.0112099 1.65968e-06 -3.94738e-11 0.0112062 1.11991e-06 -4.00162e-11 0.0112039 7.52223e-07 -4.03581e-11 0.0112025 5.02874e-07 -4.05868e-11 0.0112016 3.33788e-07 -4.06408e-11 0.011201 2.19952e-07 -4.07012e-11 0.0112006 1.43818e-07 -4.07338e-11 0.0112004 9.33414e-08 -4.07449e-11 0.0112003 6.01652e-08 -4.07559e-11 0.0112002 3.84801e-08 -4.07492e-11 0.0112001 2.44146e-08 -4.07689e-11 0.0112001 1.53708e-08 -4.07398e-11 0.0112001 9.5914e-09 -4.08019e-11 0.0112001 5.95369e-09 -4.07106e-11 3.57873e-09 -4.09194e-11 0.0168033 3.92391e-10 -3.50289e-11 0.0168051 1.21016e-10 -3.61056e-11 0.0168078 -5.11681e-10 -3.6046e-11 0.016812 5.83393e-09 -3.80269e-11 0.0168177 -9.37543e-09 -3.78273e-11 0.0168265 3.90996e-08 -4.20198e-11 0.0168386 1.09748e-08 -4.16454e-11 0.016857 2.45532e-07 -4.88243e-11 0.0168856 6.8263e-07 -5.20592e-11 0.016932 2.91906e-06 -6.52027e-11 0.0170251 1.20206e-05 -8.70208e-11 0.0171624 4.11235e-05 -1.68948e-10 0.0176423 0.000136446 -3.04076e-10 0.0186584 0.000435159 -7.04282e-10 0.0210455 0.00122991 -1.37846e-09 0.0264957 0.00310671 -2.59174e-09 0.0303306 0.00664392 -4.38814e-09 0.0322212 0.0121767 -1.80776e-09 0.0331401 0.013855 -1.07727e-09 0.0335261 0.0145548 -7.4865e-10 0.0337117 0.0145118 -5.90293e-10 0.0338882 0.014155 -5.08542e-10 0.0340959 0.0137471 -4.73476e-10 0.0341372 0.0133803 -4.20441e-10 0.0340702 0.0129449 -3.20132e-10 0.0339591 0.012419 -1.89122e-10 0.0338057 0.0118533 -1.49682e-10 0.0336281 0.0112764 -1.14394e-10 0.0334354 0.0107068 -9.84804e-11 0.0332367 0.0101572 -8.17616e-11 0.0330339 0.00963408 -7.72212e-11 0.032822 0.00913868 -6.99499e-11 0.0325887 0.00866615 -6.44253e-11 0.0323263 0.00821305 -6.08935e-11 0.0320342 0.00777606 -6.29218e-11 0.0317145 0.00735584 -7.14516e-11 0.0313703 0.00695021 -8.49741e-11 0.031016 0.00656017 -1.06441e-10 0.0306675 0.00618815 -1.32951e-10 0.0303332 0.00583545 -1.63998e-10 0.0300122 0.00550134 -1.93998e-10 0.0297011 0.00518371 -2.22033e-10 0.0293983 0.00488109 -2.41039e-10 0.0290983 0.00459198 -2.54793e-10 0.0287966 0.00431512 -2.56756e-10 0.0284975 0.00404952 -2.49474e-10 0.0281951 0.00379612 -2.3172e-10 0.0279047 0.00355355 -2.10157e-10 0.0276349 0.0033251 -1.7543e-10 0.0273842 0.00311006 -1.50728e-10 0.0271569 0.00290853 -1.16972e-10 0.0269543 0.0027217 -9.24994e-11 0.0267795 0.00254916 -6.84229e-11 0.0266249 0.00238942 -4.46754e-11 0.0264803 0.00224265 -2.65796e-11 0.026338 0.00210756 -1.27379e-11 0.0261951 0.00198356 -9.60422e-13 0.0260523 0.0018708 9.71205e-12 0.0259105 0.00176959 1.47893e-11 0.0257707 0.00168004 8.0054e-12 0.0256352 0.00160175 -9.96887e-12 0.0255069 0.00153405 -3.22385e-11 0.025383 0.00147577 -3.89821e-11 0.0252459 0.00142452 -1.12675e-11 0.0250513 0.00137558 7.73369e-11 0.0247187 0.00132044 2.64277e-10 0.0241324 0.00124705 5.62467e-10 0.0231643 0.00114207 9.3323e-10 0.021739 0.00099038 1.28461e-09 0.0199261 0.00080798 1.47338e-09 0.0179598 0.000613443 1.41411e-09 0.0161255 0.00043456 1.15193e-09 0.0146158 0.000291119 8.2526e-10 0.0134833 0.000187871 5.40995e-10 0.0126868 0.000118912 3.35678e-10 0.0121505 7.48125e-05 1.98262e-10 0.0118005 4.72213e-05 1.0496e-10 0.0115769 3.01191e-05 4.93919e-11 0.0114356 1.94602e-05 1.46357e-11 0.011347 1.2734e-05 -7.09813e-12 0.0112916 8.4255e-06 -2.05127e-11 0.011257 5.6233e-06 -2.86802e-11 0.0112355 3.77528e-06 -3.36146e-11 0.011222 2.54278e-06 -3.65739e-11 0.0112137 1.7141e-06 -3.83216e-11 0.0112085 1.15404e-06 -3.93567e-11 0.0112053 7.74632e-07 -3.99616e-11 0.0112033 5.17753e-07 -4.03204e-11 0.011202 3.44356e-07 -4.05197e-11 0.0112013 2.2762e-07 -4.06185e-11 0.0112008 1.4937e-07 -4.06803e-11 0.0112005 9.74391e-08 -4.07239e-11 0.0112003 6.31104e-08 -4.07377e-11 0.0112002 4.05236e-08 -4.07494e-11 0.0112001 2.58354e-08 -4.07466e-11 0.0112001 1.63376e-08 -4.07652e-11 0.0112001 1.02567e-08 -4.07396e-11 0.0112001 6.3756e-09 -4.08017e-11 0.0112001 3.95024e-09 -4.07124e-11 2.3705e-09 -4.09201e-11 0.0168033 1.00247e-10 -3.5157e-11 0.0168051 -8.34679e-11 -3.59005e-11 0.0168078 -1.76183e-10 -3.63844e-11 0.0168119 1.1767e-09 -3.74537e-11 0.0168178 -2.91191e-09 -3.86038e-11 0.0168263 8.29601e-09 -4.09211e-11 0.0168384 -7.05e-09 -4.26262e-11 0.0168558 3.74568e-08 -4.75893e-11 0.0168802 7.03023e-08 -5.10322e-11 0.0169149 3.52443e-07 -6.06326e-11 0.0169685 1.3037e-06 -6.96065e-11 0.0170509 5.32993e-06 -9.205e-11 0.0172283 1.8976e-05 -1.37305e-10 0.0175596 7.06857e-05 -2.29513e-10 0.01829 0.000232996 -5.40814e-10 0.0201792 0.00071541 -9.40074e-10 0.023541 0.00186728 -2.31809e-09 0.0285563 0.00420296 -3.98835e-09 0.031604 0.00892328 -2.23729e-09 0.0329689 0.0123902 -1.4484e-09 0.0337393 0.0134616 -9.29548e-10 0.0341015 0.0139009 -6.26779e-10 0.0343023 0.0137992 -4.90473e-10 0.0345326 0.0134319 -4.13859e-10 0.0346972 0.0130685 -4.54185e-10 0.0347423 0.0126997 -3.19653e-10 0.0347119 0.012287 -5.47501e-10 0.0346222 0.0118279 -2.44334e-10 0.0344882 0.0113467 -1.58921e-10 0.0343229 0.0108564 -1.28129e-10 0.034138 0.0103691 -1.00384e-10 0.03393 0.00989238 -7.67193e-11 0.0336916 0.009424 -5.26528e-11 0.0334166 0.00896542 -4.32832e-11 0.0331073 0.00851386 -3.95662e-11 0.0327672 0.00807273 -4.64191e-11 0.0324018 0.00764136 -5.49443e-11 0.0320248 0.00722194 -6.92904e-11 0.0316519 0.00681724 -8.92355e-11 0.0312935 0.00642992 -1.08913e-10 0.0309507 0.00606056 -1.28724e-10 0.0306204 0.00570831 -1.45615e-10 0.0302971 0.00537087 -1.53163e-10 0.0299787 0.00504725 -1.54773e-10 0.0296603 0.00473653 -1.54323e-10 0.0293415 0.00443858 -1.49544e-10 0.0290285 0.00415319 -1.35324e-10 0.0287184 0.00388173 -1.19542e-10 0.0284268 0.00362375 -9.79842e-11 0.0281593 0.00338244 -7.73794e-11 0.0279108 0.00315645 -6.94365e-11 0.0276877 0.00294745 -5.19428e-11 0.027487 0.00275469 -4.69493e-11 0.0273042 0.00257843 -3.23991e-11 0.0271324 0.00241667 -2.19961e-11 0.026963 0.00226837 -1.37228e-11 0.0267914 0.00213316 -6.575e-12 0.0266162 0.00201006 2.13911e-12 0.0264374 0.00189885 8.0041e-12 0.0262571 0.00179927 -2.33713e-13 0.0260788 0.00171074 -2.26298e-11 0.0259059 0.00163204 -5.48402e-11 0.0257339 0.00156095 -6.76109e-11 0.0255405 0.00149397 -3.50385e-11 0.0252749 0.00142482 7.13182e-11 0.0248504 0.00134389 2.72124e-10 0.0241474 0.00123907 5.95904e-10 0.0230465 0.00109636 9.89927e-10 0.0215033 0.000919736 1.33817e-09 0.019623 0.000723339 1.50143e-09 0.0176522 0.000529306 1.40933e-09 0.0158615 0.000362158 1.12959e-09 0.0144142 0.00023506 8.01411e-10 0.0133409 0.000147443 5.2409e-10 0.0125911 9.09767e-05 3.25274e-10 0.0120879 5.59397e-05 1.92155e-10 0.0117602 3.45842e-05 1.01817e-10 0.011551 2.16593e-05 4.7948e-11 0.0114189 1.37745e-05 1.40756e-11 0.0113361 8.89276e-06 -7.22214e-12 0.0112844 5.81751e-06 -2.04334e-11 0.0112522 3.84591e-06 -2.85331e-11 0.0112322 2.56148e-06 -3.3462e-11 0.0112199 1.71363e-06 -3.64358e-11 0.0112122 1.14847e-06 -3.82152e-11 0.0112075 7.69311e-07 -3.92757e-11 0.0112046 5.14101e-07 -3.99013e-11 0.0112028 3.42264e-07 -4.02732e-11 0.0112017 2.2678e-07 -4.04811e-11 0.0112011 1.49388e-07 -4.06011e-11 0.0112007 9.77623e-08 -4.0671e-11 0.0112004 6.3553e-08 -4.07106e-11 0.0112003 4.10325e-08 -4.07304e-11 0.0112002 2.62974e-08 -4.07427e-11 0.0112001 1.67144e-08 -4.07503e-11 0.0112001 1.05457e-08 -4.07586e-11 0.0112001 6.6046e-09 -4.07462e-11 0.0112001 4.107e-09 -4.07975e-11 0.0112001 2.53446e-09 -4.07129e-11 1.52288e-09 -4.09202e-11 0.0168033 2.24913e-11 -3.52135e-11 0.0168051 -5.15112e-11 -3.585e-11 0.0168078 -4.48657e-11 -3.64791e-11 0.0168119 1.83158e-10 -3.7315e-11 0.0168178 -7.37184e-10 -3.87283e-11 0.0168262 1.63719e-09 -4.05744e-11 0.0168384 -2.30019e-09 -4.28954e-11 0.0168556 5.44496e-09 -4.68883e-11 0.0168797 8.12138e-09 -5.1278e-11 0.0169127 3.24139e-08 -5.88625e-11 0.0169587 1.72246e-07 -6.83325e-11 0.0170224 5.71263e-07 -8.22209e-11 0.0171156 2.34248e-06 -1.0388e-10 0.0172655 8.62605e-06 -1.35198e-10 0.0175491 3.24505e-05 -2.07987e-10 0.0181162 0.000112211 -3.80176e-10 0.0193371 0.000365128 -7.47424e-10 0.0218057 0.00103378 -1.38764e-09 0.0258332 0.00243554 -2.82367e-09 0.0298621 0.00485495 -3.91971e-09 0.0323517 0.00921451 -1.88161e-09 0.0335433 0.0118927 -1.19975e-09 0.0342323 0.0126989 -7.37635e-10 0.034605 0.0130073 -5.69001e-10 0.0348777 0.0129637 -5.152e-10 0.0350628 0.012702 -5.36304e-10 0.0351847 0.0123554 -5.14697e-10 0.035194 0.011976 -3.08359e-10 0.0351519 0.011565 -2.29167e-10 0.0350632 0.0111381 -1.83822e-10 0.0349442 0.0106974 -1.435e-10 0.0347885 0.0102559 -1.15678e-10 0.0345924 0.00980988 -9.53108e-11 0.0343524 0.00936273 -8.33489e-11 0.03407 0.00891033 -8.35869e-11 0.0337542 0.00845729 -8.76126e-11 0.0334101 0.0080077 -9.59815e-11 0.0330512 0.00756384 -1.14579e-10 0.0326926 0.00713009 -1.45234e-10 0.0323452 0.00671022 -1.75515e-10 0.032015 0.00630643 -2.04984e-10 0.0316962 0.00591979 -2.32093e-10 0.0313817 0.00554861 -2.53717e-10 0.0310663 0.00519112 -2.56541e-10 0.0307513 0.00484777 -2.63699e-10 0.0304339 0.00451912 -2.57135e-10 0.0301159 0.00420525 -2.32541e-10 0.0298035 0.00390713 -2.1072e-10 0.0294966 0.00362636 -1.87505e-10 0.0292047 0.00336485 -1.64198e-10 0.0289348 0.00312333 -1.50782e-10 0.0286805 0.00290233 -1.36671e-10 0.0284434 0.00270217 -1.1079e-10 0.028218 0.00252151 -1.00271e-10 0.0279954 0.00235856 -8.55684e-11 0.027773 0.00221248 -6.96246e-11 0.0275475 0.00208141 -6.18067e-11 0.0273163 0.00196383 -4.91329e-11 0.0270771 0.0018577 -3.97149e-11 0.0268303 0.00176242 -4.55673e-11 0.0265813 0.00167765 -6.87857e-11 0.0263349 0.00160036 -1.01001e-10 0.0260861 0.00152648 -1.16611e-10 0.0258078 0.00145005 -8.41577e-11 0.025442 0.00136322 3.97649e-11 0.0248958 0.00125731 2.72989e-10 0.0240551 0.00112461 6.28597e-10 0.0228244 0.000960777 1.03416e-09 0.0211903 0.00077885 1.36965e-09 0.0192786 0.000590868 1.50639e-09 0.0173363 0.000417816 1.3887e-09 0.0156095 0.000277063 1.09941e-09 0.0142322 0.000174872 7.75532e-10 0.013218 0.000107007 5.07185e-10 0.0125114 6.45763e-05 3.14532e-10 0.0120375 3.89332e-05 1.88179e-10 0.0117286 2.36371e-05 9.85096e-11 0.0115311 1.45719e-05 4.66905e-11 0.0114063 9.14263e-06 1.36061e-11 0.011328 5.83551e-06 -7.32683e-12 0.0112791 3.78148e-06 -2.03761e-11 0.0112488 2.48041e-06 -2.8423e-11 0.0112299 1.64137e-06 -3.33443e-11 0.0112183 1.09217e-06 -3.63336e-11 0.0112112 7.2862e-07 -3.81353e-11 0.0112068 4.86147e-07 -3.92147e-11 0.0112041 3.23756e-07 -3.98572e-11 0.0112025 2.14874e-07 -4.02371e-11 0.0112015 1.41958e-07 -4.04582e-11 0.0112009 9.32701e-08 -4.05856e-11 0.0112006 6.08981e-08 -4.06594e-11 0.0112004 3.94983e-08 -4.07022e-11 0.0112002 2.54418e-08 -4.07254e-11 0.0112002 1.62692e-08 -4.07406e-11 0.0112001 1.03247e-08 -4.07437e-11 0.0112001 6.50128e-09 -4.076e-11 0.0112001 4.06415e-09 -4.07398e-11 0.0112001 2.52134e-09 -4.08017e-11 0.0112001 1.55163e-09 -4.07137e-11 9.34403e-10 -4.09226e-11 0.0168033 -8.03695e-12 -3.51999e-11 0.0168051 -3.71196e-11 -3.5805e-11 0.0168078 -2.87573e-11 -3.64823e-11 0.0168119 -2.78315e-11 -3.71862e-11 0.0168178 -2.06663e-10 -3.88541e-11 0.0168262 2.89592e-10 -4.02902e-11 0.0168384 -7.10462e-10 -4.3104e-11 0.0168556 9.13832e-10 -4.64648e-11 0.0168796 3.7019e-10 -5.14052e-11 0.0169125 2.68327e-09 -5.85682e-11 0.0169575 2.22847e-08 -6.76201e-11 0.0170186 5.72917e-08 -8.15261e-11 0.0171006 2.94413e-07 -9.88277e-11 0.0172116 9.96119e-07 -1.23532e-10 0.0173684 4.0618e-06 -1.59062e-10 0.0176117 1.43374e-05 -2.14895e-10 0.0180549 5.14139e-05 -3.16519e-10 0.0188851 0.000172877 -5.52457e-10 0.0204358 0.000500947 -1.04659e-09 0.0230122 0.00125232 -1.44637e-09 0.0267034 0.00260444 -3.1363e-09 0.0302503 0.00461774 -3.1136e-09 0.0325606 0.00771964 -1.84972e-09 0.0337774 0.0105183 -1.06978e-09 0.0344996 0.0115316 -8.58224e-10 0.0349603 0.0117716 -7.0459e-10 0.0352975 0.0117505 -5.46006e-10 0.0355394 0.0114671 -5.06126e-10 0.0356977 0.0111465 -3.95665e-10 0.0357149 0.0108255 -2.89153e-10 0.0356569 0.0104526 -2.09873e-10 0.0355847 0.0100308 -2.07766e-10 0.0354814 0.00956462 -1.94638e-10 0.0353424 0.00907256 -1.81413e-10 0.0351635 0.00857318 -1.74808e-10 0.0349464 0.00808245 -1.7632e-10 0.034697 0.00759469 -1.71708e-10 0.0344262 0.00711701 -1.82812e-10 0.034146 0.00665158 -2.09652e-10 0.033865 0.00620316 -2.27871e-10 0.0335904 0.00577121 -2.43226e-10 0.0333229 0.00536175 -2.48251e-10 0.0330481 0.00496833 -2.28927e-10 0.0327639 0.00458427 -2.14481e-10 0.0324688 0.00422005 -2.1808e-10 0.0321642 0.00387709 -2.53842e-10 0.0318478 0.00355835 -2.33498e-10 0.0315171 0.00326258 -1.95613e-10 0.0311851 0.00299245 -1.58713e-10 0.0308528 0.00274848 -1.41902e-10 0.0305208 0.00253125 -1.38034e-10 0.0302014 0.00233957 -1.34601e-10 0.0298935 0.00217311 -1.25816e-10 0.0295827 0.00202999 -1.19432e-10 0.0292645 0.00190674 -1.12979e-10 0.0289432 0.0018006 -1.13159e-10 0.0286206 0.00170905 -1.16128e-10 0.0282917 0.0016295 -1.12557e-10 0.0279534 0.00155945 -9.99398e-11 0.0276049 0.00149483 -1.07936e-10 0.027246 0.00143265 -1.35407e-10 0.0268789 0.00137013 -1.7345e-10 0.0264974 0.00130071 -1.90142e-10 0.0260733 0.00121937 -1.45041e-10 0.025551 0.00112167 -9.20842e-13 0.0248477 0.00100566 2.6574e-10 0.0238673 0.000870771 6.41342e-10 0.0225327 0.00072262 1.05503e-09 0.0208456 0.000567435 1.38527e-09 0.0189395 0.000417536 1.49991e-09 0.0170492 0.000287057 1.36438e-09 0.0153939 0.000185635 1.07101e-09 0.0140837 0.000114595 7.52689e-10 0.0131215 6.87712e-05 4.92667e-10 0.0124509 4.07907e-05 3.07304e-10 0.0120001 2.42136e-05 1.84023e-10 0.0117057 1.44923e-05 9.6596e-11 0.011517 8.82396e-06 4.5875e-11 0.0113975 5.47814e-06 1.33197e-11 0.0113225 3.46589e-06 -7.36897e-12 0.0112756 2.22973e-06 -2.03166e-11 0.0112464 1.45396e-06 -2.8333e-11 0.0112284 9.57515e-07 -3.32556e-11 0.0112173 6.34612e-07 -3.62577e-11 0.0112105 4.21969e-07 -3.80762e-11 0.0112063 2.8075e-07 -3.91705e-11 0.0112038 1.86509e-07 -3.98246e-11 0.0112023 1.23512e-07 -4.02129e-11 0.0112014 8.14345e-08 -4.04415e-11 0.0112008 5.34052e-08 -4.05749e-11 0.0112005 3.48108e-08 -4.06522e-11 0.0112003 2.25415e-08 -4.06971e-11 0.0112002 1.44959e-08 -4.0722e-11 0.0112001 9.25528e-09 -4.07383e-11 0.0112001 5.86588e-09 -4.07425e-11 0.0112001 3.68899e-09 -4.07585e-11 0.0112001 2.30345e-09 -4.07401e-11 0.0112001 1.42628e-09 -4.08011e-11 0.0112 8.77177e-10 -4.07161e-11 5.28072e-10 -4.09245e-11 0.0168033 -1.67152e-11 -3.52303e-11 0.0168051 -1.87797e-11 -3.58108e-11 0.0168078 -1.80234e-11 -3.65383e-11 0.0168119 -2.39977e-11 -3.71749e-11 0.0168178 -4.05338e-11 -3.88612e-11 0.0168262 2.27959e-11 -4.03043e-11 0.0168384 -1.60701e-10 -4.30291e-11 0.0168556 9.45756e-11 -4.6549e-11 0.0168796 -3.86936e-11 -5.11924e-11 0.0169125 -1.80235e-11 -5.84322e-11 0.0169574 2.95731e-09 -6.76792e-11 0.0170182 4.80698e-09 -8.09124e-11 0.0170988 3.62358e-08 -9.81479e-11 0.0172048 1.1168e-07 -1.21108e-10 0.0173437 4.92643e-07 -1.52243e-10 0.0175268 1.72754e-06 -1.90008e-10 0.0177761 6.51326e-06 -2.40768e-10 0.0181406 2.27695e-05 -3.19891e-10 0.0187387 7.32208e-05 -4.5742e-10 0.0197244 0.000216942 -6.73276e-10 0.0212645 0.00054368 -1.12919e-09 0.0234293 0.00116972 -1.48185e-09 0.0263187 0.00213539 -2.37388e-09 0.0293681 0.00347388 -2.55666e-09 0.0318768 0.00489371 -2.1912e-09 0.033642 0.0067642 -1.4192e-09 0.0347538 0.00837317 -1.02774e-09 0.0354886 0.00904909 -7.75773e-10 0.0360632 0.00900317 -7.13124e-10 0.0365242 0.00876392 -6.06122e-10 0.0368784 0.00849014 -5.17306e-10 0.037152 0.00808369 -4.15755e-10 0.0373701 0.00758789 -4.09221e-10 0.037518 0.00708937 -3.95038e-10 0.0375463 0.00659784 -3.7747e-10 0.0375095 0.00608844 -3.57546e-10 0.0374287 0.00559921 -3.27714e-10 0.037302 0.00514235 -3.00888e-10 0.0371363 0.00470061 -2.87361e-10 0.0369455 0.004281 -2.83441e-10 0.0367308 0.00388586 -2.99794e-10 0.0364988 0.00352522 -2.97524e-10 0.0362377 0.00319093 -3.22454e-10 0.0359308 0.00288221 -2.86761e-10 0.0355873 0.00258865 -3.03996e-10 0.0352257 0.00231059 -2.32857e-10 0.0348363 0.00206377 -1.95309e-10 0.034416 0.00184961 -1.7728e-10 0.0339716 0.0016662 -1.71199e-10 0.0335136 0.00151125 -1.88955e-10 0.0330532 0.00138332 -2.12729e-10 0.0325848 0.00127946 -2.08382e-10 0.0321206 0.00119635 -1.93261e-10 0.0316626 0.00113181 -1.85149e-10 0.0311926 0.00108192 -1.73128e-10 0.0307025 0.00104154 -1.68983e-10 0.0302029 0.00100788 -1.81086e-10 0.029703 0.000979227 -1.893e-10 0.029193 0.000950285 -1.92069e-10 0.0286591 0.000918572 -2.0468e-10 0.0280977 0.000882908 -2.38168e-10 0.0275134 0.000838777 -2.76964e-10 0.0269115 0.000785397 -2.9308e-10 0.0262794 0.000722197 -2.33286e-10 0.0255752 0.000649672 -6.6481e-11 0.0247261 0.000568857 2.28359e-10 0.0236403 0.000481795 6.2814e-10 0.0222435 0.000390635 1.05485e-09 0.0205411 0.000299925 1.37942e-09 0.0186634 0.000216118 1.48142e-09 0.0168294 0.000145792 1.33712e-09 0.0152363 9.27248e-05 1.0449e-09 0.0139792 5.64158e-05 7.34768e-10 0.0130555 3.34279e-05 4.82401e-10 0.0124105 1.96047e-05 3.01012e-10 0.0119758 1.152e-05 1.80642e-10 0.011691 6.83033e-06 9.51757e-11 0.0115081 4.12535e-06 4.52413e-11 0.0113921 2.54379e-06 1.30745e-11 0.011319 1.60037e-06 -7.42532e-12 0.0112734 1.02487e-06 -2.02917e-11 0.011245 6.65825e-07 -2.82813e-11 0.0112275 4.37178e-07 -3.32019e-11 0.0112167 2.89046e-07 -3.62111e-11 0.0112101 1.91808e-07 -3.80393e-11 0.0112061 1.27399e-07 -3.91428e-11 0.0112036 8.45095e-08 -3.98044e-11 0.0112022 5.58915e-08 -4.01984e-11 0.0112013 3.68064e-08 -4.04314e-11 0.0112008 2.4111e-08 -4.05682e-11 0.0112005 1.57001e-08 -4.06478e-11 0.0112003 1.01567e-08 -4.06941e-11 0.0112002 6.52543e-09 -4.07201e-11 0.0112001 4.16247e-09 -4.07368e-11 0.0112001 2.6359e-09 -4.07421e-11 0.0112001 1.65632e-09 -4.07571e-11 0.0112001 1.03362e-09 -4.07411e-11 0.0112001 6.39156e-10 -4.08001e-11 0.0112 3.93136e-10 -4.07182e-11 2.36635e-10 -4.0926e-11 0.0168033 -3.52115e-11 0.0168051 -3.57984e-11 0.0168078 -3.65316e-11 0.0168119 -3.71319e-11 0.0168178 -3.89201e-11 0.0168262 -4.02267e-11 0.0168384 -4.31022e-11 0.0168556 -4.63744e-11 0.0168796 -5.1346e-11 0.0169125 -5.82595e-11 0.0169574 -6.76538e-11 0.0170181 -8.06257e-11 0.0170986 -9.83232e-11 0.017204 -1.20891e-10 0.0173407 -1.51479e-10 0.0175159 -1.86796e-10 0.0177368 -2.31423e-10 0.0180146 -2.85173e-10 0.0183741 -3.48471e-10 0.0188645 -4.33384e-10 0.0195724 -5.70609e-10 0.0205989 -7.73599e-10 0.022043 -1.05329e-09 0.0239205 -1.37322e-09 0.0261983 -1.6667e-09 0.0288304 -2.0186e-09 0.031601 -2.22494e-09 0.0342016 -2.08193e-09 0.0364841 -1.85428e-09 0.0384557 -1.70087e-09 0.0401271 -1.4731e-09 0.0414966 -1.26281e-09 0.0425852 -1.09404e-09 0.0434187 -9.45097e-10 0.0440073 -8.43846e-10 0.0443613 -7.44147e-10 0.0445699 -5.50268e-10 0.0445632 -4.72791e-10 0.0444353 -3.52098e-10 0.0441689 -3.51985e-10 0.0438051 -3.10509e-10 0.0433677 -1.74666e-10 0.0428642 -2.65098e-10 0.0422837 -2.23448e-10 0.0416196 -1.59671e-10 0.0408868 -1.7673e-10 0.0401093 -1.75596e-10 0.0392968 -1.46001e-10 0.0384672 -1.19315e-10 0.0376376 -1.12405e-10 0.0368199 -1.24939e-10 0.0360137 -1.33712e-10 0.0352205 -1.364e-10 0.0344416 -1.54711e-10 0.0336638 -1.77421e-10 0.0328783 -1.94529e-10 0.0320834 -2.48852e-10 0.0312844 -3.01155e-10 0.0304873 -3.05847e-10 0.0296851 -3.24409e-10 0.0288666 -3.79045e-10 0.0280432 -4.04258e-10 0.0272318 -3.96995e-10 0.0264279 -3.13938e-10 0.0255918 -1.20128e-10 0.0246475 2.01127e-10 0.0234994 6.18655e-10 0.0220713 1.05643e-09 0.0203669 1.37589e-09 0.0185111 1.47333e-09 0.0167118 1.32255e-09 0.0151541 1.03242e-09 0.0139258 7.25978e-10 0.0130224 4.77317e-10 0.0123905 2.98314e-10 0.0119638 1.78868e-10 0.0116839 9.46194e-11 0.0115038 4.50065e-11 0.0113894 1.29904e-11 0.0113174 -7.43472e-12 0.0112723 -2.02702e-11 0.0112443 -2.82512e-11 0.011227 -3.31733e-11 0.0112164 -3.61874e-11 0.0112099 -3.80209e-11 0.0112059 -3.91291e-11 0.0112036 -3.97946e-11 0.0112021 -4.01915e-11 0.0112013 -4.04266e-11 0.0112008 -4.05649e-11 0.0112005 -4.06457e-11 0.0112003 -4.06927e-11 0.0112002 -4.07192e-11 0.0112001 -4.07361e-11 0.0112001 -4.0742e-11 0.0112001 -4.07562e-11 0.0112001 -4.07419e-11 0.0112001 -4.07991e-11 0.0112 -4.07195e-11 -4.0927e-11 0.00965468 0.00861948 6.65399e-11 0.00623243 0.00343661 4.59135e-11 0.00472735 0.00149961 3.25254e-11 0.00411245 0.000617682 3.66796e-11 0.00399543 0.000112912 4.04571e-11 0.0042433 -0.000253262 4.89186e-11 0.00466725 -0.000409677 6.53715e-11 0.00494039 -0.00025487 6.3796e-11 0.00503731 -8.76217e-05 4.73492e-11 0.00502697 1.5694e-05 6.16218e-11 0.00496781 6.23301e-05 6.92419e-11 0.00493159 3.42495e-05 7.81613e-11 0.00492517 7.69804e-06 7.98289e-11 0.00495947 -2.5344e-05 8.20036e-11 0.00503028 -4.66035e-05 8.97371e-11 0.00512011 -5.68386e-05 7.55246e-11 0.0052161 -6.02102e-05 7.08817e-11 0.00532164 -6.1993e-05 6.29727e-11 0.0054424 -6.76772e-05 5.19788e-11 0.00557885 -7.54161e-05 3.73769e-11 0.00572805 -8.35556e-05 2.45761e-11 0.00588369 -9.03657e-05 1.5066e-11 0.00603676 -9.53368e-05 7.31017e-12 0.00617927 -9.82317e-05 7.88063e-13 0.00630615 -9.92134e-05 -1.94417e-12 0.00641805 -9.85951e-05 -5.78682e-12 0.00652242 -9.6012e-05 -1.33759e-11 0.00662069 -9.24685e-05 -1.22326e-11 0.00670333 -8.92484e-05 -6.40168e-12 0.0067681 -8.47811e-05 -1.13226e-11 0.00682117 -7.82639e-05 -1.3248e-11 0.00686538 -7.20692e-05 -1.09745e-11 0.00690151 -6.59123e-05 -7.48173e-12 0.00693127 -5.99346e-05 -4.82891e-12 0.00695851 -5.4378e-05 -4.86445e-12 0.0069876 -4.95968e-05 -7.46958e-12 0.00702113 -4.59128e-05 -9.36823e-12 0.00705997 -4.35231e-05 -7.61859e-12 0.00710552 -4.25586e-05 -4.53582e-12 0.00716083 -4.30732e-05 -3.16897e-12 0.00722952 -4.50568e-05 -2.74285e-12 0.00731632 -4.8496e-05 -1.66054e-12 0.00742381 -5.34947e-05 2.1415e-12 0.00754646 -5.99179e-05 7.30364e-12 0.00768505 -6.73573e-05 1.5963e-11 0.0078896 -7.68492e-05 2.10712e-11 0.00825799 -7.98874e-05 3.33846e-11 0.00879586 -8.36678e-05 4.11667e-11 0.00947113 -9.37581e-05 5.5962e-11 0.0102529 -0.000108766 6.22769e-11 0.0111044 -0.000118738 6.35999e-11 0.0119974 -0.00012511 6.582e-11 0.0129037 -0.000131911 6.67135e-11 0.0137967 -0.000138989 6.33409e-11 0.0146551 -0.000146167 5.01594e-11 0.0154637 -0.000153279 3.58681e-11 0.0162088 -0.000160257 2.79553e-11 0.0168752 -0.00016708 2.20815e-11 0.0174482 -0.000173336 1.30027e-11 0.0179188 -0.000178105 4.17656e-12 0.0182936 -0.000180676 -2.35807e-12 0.0185978 -0.000180896 -4.67526e-12 0.0188489 -0.000179003 -4.95701e-12 0.0190533 -0.000175195 -5.43543e-12 0.0192088 -0.000169673 -5.62738e-12 0.0192905 -0.00016259 -4.35961e-12 0.0192117 -0.000153781 6.9856e-13 0.0186789 -0.000141311 1.24328e-11 0.0179502 -0.000121861 6.79496e-11 0.0169525 -0.00010446 1.16881e-10 0.0158223 -8.55748e-05 1.32794e-10 0.0147296 -6.63939e-05 1.16831e-10 0.0137923 -4.92919e-05 9.21069e-11 0.0130552 -3.54788e-05 6.73489e-11 0.0125103 -2.50512e-05 4.68789e-11 0.012125 -1.74833e-05 3.16684e-11 0.0118611 -1.2071e-05 2.36221e-11 0.0116849 -8.18211e-06 1.98328e-11 0.0115695 -5.37297e-06 1.28535e-11 0.0114948 -3.33072e-06 6.61356e-12 0.0114458 -2.01666e-06 3.75904e-12 0.0114117 -1.1668e-06 1.74016e-12 0.0113854 -4.42649e-07 3.71868e-13 0.0113627 9.59166e-08 -4.95954e-13 0.0113415 4.15201e-07 -1.00293e-12 0.0113211 5.6876e-07 -1.26257e-12 0.0113016 6.08616e-07 -1.36493e-12 0.0112834 5.77644e-07 -1.37822e-12 0.0112669 5.08535e-07 -1.34937e-12 0.0112525 4.24321e-07 -1.30758e-12 0.0112404 3.39797e-07 -1.26785e-12 0.0112305 2.63296e-07 -1.23651e-12 0.0112226 1.98559e-07 -1.21443e-12 0.0112165 1.46353e-07 -1.20035e-12 0.0112118 1.05875e-07 -1.19163e-12 0.0112084 7.52454e-08 -1.18805e-12 0.0112058 5.28305e-08 -1.18385e-12 0.011204 3.6462e-08 -1.18704e-12 0.0112027 2.47549e-08 -1.17933e-12 1.64395e-08 -1.19374e-12 0.0130292 0.0127326 6.59691e-11 0.0099136 0.00657394 4.98968e-11 0.00828175 0.00314166 2.95352e-11 0.00759418 0.00131575 2.13581e-11 0.00732374 0.000392665 2.00539e-11 0.00717237 -9.33979e-05 2.27649e-11 0.00703822 -0.000253825 4.17056e-11 0.00707729 -0.000268359 5.16213e-11 0.00722636 -0.000207537 4.4464e-11 0.0073873 -0.00011131 6.95276e-11 0.00750232 -3.56274e-05 6.80246e-11 0.00754094 6.97401e-06 7.30172e-11 0.00754271 1.70878e-05 7.4819e-11 0.00752913 3.3652e-07 7.48995e-11 0.00753144 -3.27155e-05 7.11577e-11 0.00755603 -6.11168e-05 7.11449e-11 0.00760848 -8.47197e-05 6.94195e-11 0.00768895 -0.000101885 6.41398e-11 0.00778324 -0.000111132 5.95987e-11 0.00788743 -0.000120598 3.88001e-11 0.00800318 -0.00013282 2.799e-11 0.00813093 -0.000144533 1.84335e-11 0.00826775 -0.00015526 1.09242e-11 0.00840772 -0.000163757 3.40259e-12 0.00854313 -0.000169911 -6.08114e-13 0.00866694 -0.000173494 -3.77144e-12 0.00877686 -0.000174477 -1.31775e-11 0.00887846 -0.000172759 -1.23793e-11 0.00897684 -0.000169184 -5.12883e-12 0.00906521 -0.000165283 -1.05768e-11 0.00913743 -0.00015988 -1.83784e-11 0.00920127 -0.000151472 -1.00021e-11 0.00926347 -0.000142893 -5.2261e-12 0.00932478 -0.000134489 -2.9965e-12 0.00938298 -0.000126155 -1.75179e-12 0.0094379 -0.000118421 -4.12847e-12 0.00949228 -0.000111953 -5.77988e-12 0.00954829 -0.000107112 -2.6232e-12 0.00960381 -0.00010404 3.88678e-12 0.00965173 -0.000102821 5.60463e-12 0.00968552 -0.00010362 4.41819e-12 0.0097092 -0.000106529 3.26782e-12 0.00973884 -0.000111498 5.70567e-12 0.00978542 -0.00011876 1.03506e-11 0.00985327 -0.000128675 1.80697e-11 0.00995798 -0.000138218 2.55168e-11 0.0100915 -0.000147933 3.33651e-11 0.0102358 -0.000159726 4.0173e-11 0.0104489 -0.000169553 5.63155e-11 0.010824 -0.000178049 7.01346e-11 0.0113615 -0.000195561 5.70887e-11 0.0120182 -0.000211472 6.14732e-11 0.0127628 -0.000226487 6.39768e-11 0.0135665 -0.000240529 5.81216e-11 0.0144042 -0.000253947 4.34558e-11 0.0152505 -0.000266894 3.24018e-11 0.0160774 -0.000279242 2.62957e-11 0.0168547 -0.000290623 1.88229e-11 0.0175526 -0.000300329 1.20324e-11 0.0181478 -0.000307397 1.9008e-12 0.0186336 -0.000311153 -6.48888e-12 0.0190247 -0.000311393 -9.06812e-12 0.0193328 -0.00030812 -9.21942e-12 0.0195618 -0.000301476 -9.07104e-12 0.019715 -0.000291789 -7.66542e-12 0.0197699 -0.000279401 -2.80368e-12 0.0196124 -0.000264109 5.65405e-12 0.0191064 -0.000243307 2.73688e-11 0.0183301 -0.000216158 7.20274e-11 0.017266 -0.000184629 1.1763e-10 0.0160703 -0.000150302 1.33751e-10 0.0149187 -0.000116282 1.17512e-10 0.0139319 -8.61765e-05 9.25913e-11 0.0131558 -6.18776e-05 6.75969e-11 0.0125822 -4.3472e-05 4.69357e-11 0.0121768 -3.00591e-05 3.1548e-11 0.011899 -2.05068e-05 2.33786e-11 0.0117126 -1.38099e-05 1.98288e-11 0.0115891 -9.04457e-06 1.25464e-11 0.0115078 -5.60554e-06 6.43137e-12 0.0114542 -3.13805e-06 3.70668e-12 0.0114175 -1.40833e-06 1.74199e-12 0.0113896 -1.98881e-07 3.03563e-13 0.0113658 6.35913e-07 -5.22961e-13 0.0113436 1.12241e-06 -1.01004e-12 0.0113225 1.33207e-06 -1.26279e-12 0.0113025 1.34715e-06 -1.36282e-12 0.0112839 1.24161e-06 -1.37553e-12 0.0112671 1.0739e-06 -1.3469e-12 0.0112526 8.8568e-07 -1.30562e-12 0.0112404 7.03503e-07 -1.26644e-12 0.0112305 5.41947e-07 -1.23561e-12 0.0112226 4.06954e-07 -1.21388e-12 0.0112164 2.99042e-07 -1.20003e-12 0.0112118 2.15642e-07 -1.1915e-12 0.0112083 1.5296e-07 -1.18797e-12 0.0112058 1.06794e-07 -1.18382e-12 0.011204 7.35716e-08 -1.18696e-12 0.0112027 5.01459e-08 -1.17936e-12 3.29273e-08 -1.19377e-12 0.0165193 0.0143393 2.41945e-12 0.0141112 0.0090532 2.42065e-11 0.0120973 0.00520005 2.44844e-11 0.0105783 0.00285982 1.88276e-11 0.00951436 0.00148332 2.12214e-11 0.00878014 0.000667251 1.85585e-11 0.00835104 0.000205255 2.01638e-11 0.00814791 -2.58298e-05 5.73747e-11 0.00817924 -0.000197542 5.98666e-11 0.00836084 -0.000253071 6.66473e-11 0.00858901 -0.000221723 7.85118e-11 0.00875309 -0.000127008 8.08784e-11 0.00885948 -6.69407e-05 7.51062e-11 0.00890629 -3.53653e-05 8.31524e-11 0.00892238 -3.42727e-05 7.56322e-11 0.00892624 -5.12285e-05 7.4679e-11 0.00893224 -7.70569e-05 6.76876e-11 0.00895741 -0.000105853 6.50784e-11 0.0090143 -0.000132717 5.57603e-11 0.00909958 -0.00015152 3.49686e-11 0.00919585 -0.000166011 3.09125e-11 0.00929874 -0.000183326 1.76704e-11 0.00940886 -0.000199247 1.14946e-11 0.0095263 -0.000213142 6.4281e-12 0.0096486 -0.000224758 1.99362e-12 0.00976973 -0.000233557 -1.82273e-12 0.00988397 -0.00023914 -3.703e-12 0.0099896 -0.000241529 -1.24107e-11 0.0100895 -0.000241262 -1.24428e-11 0.0101895 -0.000238511 1.04288e-11 0.0102884 -0.0002338 -3.26697e-12 0.0103794 -0.000227684 -2.95236e-11 0.0104648 -0.000219658 -2.98381e-13 0.010551 -0.000210622 -4.79808e-13 0.0106415 -0.000201533 3.41515e-12 0.0107369 -0.000192674 3.0556e-12 0.0108377 -0.000184734 -5.54223e-12 0.0109425 -0.000178632 -2.83488e-12 0.0110458 -0.000174262 1.62202e-11 0.0111362 -0.00017136 2.39027e-11 0.0111997 -0.00017053 9.80387e-12 0.0112305 -0.000172493 7.89997e-12 0.011238 -0.000176164 1.11775e-11 0.0112377 -0.000183002 1.58355e-11 0.0112497 -0.000193245 2.53718e-11 0.0113018 -0.000203768 3.47992e-11 0.0114055 -0.000215587 3.794e-11 0.011542 -0.000233152 4.33445e-11 0.0117175 -0.000248709 5.77078e-11 0.0119977 -0.000257768 6.6269e-11 0.0124354 -0.000270089 6.25363e-11 0.0130032 -0.000294759 5.25796e-11 0.0136649 -0.000314356 5.89144e-11 0.014391 -0.000332505 4.69886e-11 0.0151567 -0.00034943 3.72237e-11 0.0159372 -0.000365094 2.94971e-11 0.0167075 -0.000379295 2.37851e-11 0.0174409 -0.000391921 1.80138e-11 0.0181056 -0.000402457 7.10238e-12 0.0186736 -0.000410091 1.42331e-12 0.0191333 -0.000413897 -7.08884e-12 0.0194966 -0.000413393 -1.12914e-11 0.0197729 -0.000408626 -1.21482e-11 0.0199667 -0.000399846 -1.44518e-11 0.0200796 -0.000387444 -1.72304e-11 0.0200845 -0.000371676 -1.27797e-11 0.0198609 -0.000352655 1.05897e-12 0.01935 -0.000329669 3.44385e-11 0.0185371 -0.000294745 7.75218e-11 0.0174358 -0.000252522 1.19007e-10 0.0162047 -0.000205647 1.34413e-10 0.0150203 -0.000159079 1.18349e-10 0.0140052 -0.000117833 9.32864e-11 0.0132068 -8.44935e-05 6.79947e-11 0.0126167 -5.91708e-05 4.70472e-11 0.0121998 -4.07062e-05 3.14826e-11 0.0119142 -2.76149e-05 2.32385e-11 0.0117227 -1.85533e-05 1.94174e-11 0.011596 -1.20866e-05 1.22598e-11 0.0115127 -7.36757e-06 6.28172e-12 0.0114576 -3.89538e-06 3.5562e-12 0.0114197 -1.45553e-06 1.62809e-12 0.0113909 1.7032e-07 2.55941e-13 0.0113664 1.26768e-06 -5.54645e-13 0.0113438 1.88124e-06 -1.02617e-12 0.0113223 2.11583e-06 -1.26786e-12 0.0113021 2.08664e-06 -1.36185e-12 0.0112834 1.89617e-06 -1.37206e-12 0.0112667 1.62557e-06 -1.34297e-12 0.0112522 1.33273e-06 -1.30225e-12 0.0112401 1.05424e-06 -1.26392e-12 0.0112302 8.09675e-07 -1.23392e-12 0.0112223 6.06608e-07 -1.21285e-12 0.0112163 4.44909e-07 -1.19943e-12 0.0112117 3.20349e-07 -1.1912e-12 0.0112082 2.26913e-07 -1.18782e-12 0.0112058 1.58484e-07 -1.18371e-12 0.011204 1.09091e-07 -1.18703e-12 0.0112027 7.41992e-08 -1.17936e-12 4.8901e-08 -1.19377e-12 0.0179746 0.0144781 5.72274e-12 0.0165564 0.0105754 1.31024e-11 0.0147018 0.00712378 3.32303e-11 0.0130224 0.00458468 1.24423e-11 0.0117105 0.00283332 2.34815e-11 0.0107545 0.00166494 1.05569e-11 0.0101209 0.000884885 1.92553e-11 0.00973584 0.00039119 1.8983e-11 0.00952329 7.97805e-05 3.62178e-11 0.00941687 -9.64429e-05 5.85806e-11 0.00940629 -0.000164334 6.0694e-11 0.00952301 -0.000199945 6.58185e-11 0.00966183 -0.000173443 7.28273e-11 0.00977869 -0.000125393 6.41957e-11 0.00985872 -9.18679e-05 8.29316e-11 0.00990468 -7.56177e-05 8.5168e-11 0.00993649 -7.7032e-05 5.77649e-11 0.00995692 -9.50042e-05 5.59629e-11 0.00998264 -0.000121926 4.73754e-11 0.0100304 -0.000151838 4.44717e-11 0.0101032 -0.000180408 3.57063e-11 0.010198 -0.00020548 8.57741e-12 0.0102882 -0.00022844 1.64408e-11 0.0103796 -0.000248962 5.5399e-12 0.0104786 -0.000266234 2.97856e-12 0.0105863 -0.000280995 9.41273e-13 0.0106996 -0.000292348 -4.3823e-12 0.0108151 -0.000300252 -8.67781e-12 0.0109322 -0.000304864 -5.34218e-12 0.0110525 -0.000305761 -5.00396e-12 0.0111776 -0.000303517 -1.18364e-11 0.0113089 -0.000298763 -1.08761e-11 0.0114465 -0.000292456 -4.91579e-12 0.0115894 -0.000285001 -5.89518e-12 0.0117356 -0.000276935 3.15298e-12 0.0118817 -0.00026904 2.70538e-11 0.0120263 -0.000261461 9.508e-12 0.0121711 -0.000253893 -1.589e-11 0.0123115 -0.000247854 1.86791e-11 0.0124312 -0.000246322 7.61492e-11 0.012516 -0.000246993 5.31603e-11 0.0125648 -0.00024699 -1.87091e-11 0.0125827 -0.00024877 1.67776e-11 0.0125802 -0.000255254 2.64498e-11 0.0125756 -0.000264786 3.73327e-11 0.012592 -0.000276278 4.86966e-11 0.012652 -0.00028927 4.03001e-11 0.0127644 -0.000305581 4.29994e-11 0.0129136 -0.000325077 7.92672e-11 0.0131018 -0.000340884 6.87458e-11 0.0133884 -0.00035196 2.65686e-11 0.0138227 -0.000367025 3.65774e-11 0.014374 -0.000391763 6.93594e-11 0.0150035 -0.000411906 3.98472e-11 0.0156791 -0.000430763 3.15763e-11 0.0163751 -0.000447573 2.53255e-11 0.0170725 -0.000462488 2.31646e-11 0.0177473 -0.000475382 1.38795e-11 0.0183708 -0.000485722 8.94225e-12 0.0189145 -0.000492908 1.38604e-12 0.019362 -0.000496187 -5.49514e-12 0.0197181 -0.00049498 -8.1461e-12 0.019988 -0.000489078 -8.5523e-12 0.0201742 -0.000478484 -9.11149e-12 0.0202734 -0.000463512 -9.45711e-12 0.0202501 -0.000444578 -5.37601e-12 0.0200522 -0.000421581 1.45769e-12 0.0196273 -0.000393106 1.59003e-11 0.0187424 -0.000353845 6.51402e-11 0.0176168 -0.000303764 1.17302e-10 0.0163631 -0.000247574 1.34509e-10 0.015152 -0.000191545 1.1915e-10 0.0141092 -0.000141738 9.41384e-11 0.0132855 -0.000101328 6.86238e-11 0.0126747 -7.06246e-05 4.73866e-11 0.0122416 -4.83127e-05 3.17161e-11 0.011944 -3.25782e-05 2.30896e-11 0.0117443 -2.15764e-05 1.90093e-11 0.011612 -1.37149e-05 1.20604e-11 0.0115247 -8.03042e-06 6.14006e-12 0.0114663 -3.9054e-06 3.40458e-12 0.0114258 -9.68164e-07 1.50247e-12 0.0113951 1.0132e-06 1.94535e-13 0.011369 2.23906e-06 -5.97014e-13 0.0113453 2.87049e-06 -1.04794e-12 0.011323 3.04963e-06 -1.2749e-12 0.0113023 2.91936e-06 -1.36062e-12 0.0112833 2.60563e-06 -1.36728e-12 0.0112664 2.20763e-06 -1.3375e-12 0.0112518 1.79526e-06 -1.29749e-12 0.0112397 1.41187e-06 -1.26038e-12 0.0112299 1.07978e-06 -1.23151e-12 0.0112221 8.0643e-07 -1.21136e-12 0.011216 5.90087e-07 -1.1986e-12 0.0112115 4.24081e-07 -1.19076e-12 0.0112081 2.99965e-07 -1.18756e-12 0.0112057 2.09067e-07 -1.18371e-12 0.0112039 1.43754e-07 -1.18697e-12 0.0112027 9.78513e-08 -1.17939e-12 6.42349e-08 -1.1938e-12 0.0181938 0.0146237 -1.05974e-11 0.0175262 0.0113752 7.3606e-12 0.0163543 0.00846757 2.20498e-11 0.0150079 0.00605951 -1.0916e-11 0.0137217 0.0042125 8.46192e-12 0.0126499 0.0028146 -3.18023e-12 0.011774 0.00182727 1.00871e-11 0.0111199 0.00110792 5.00743e-12 0.0106405 0.000617353 1.47238e-11 0.0103292 0.000273327 3.6789e-11 0.0101655 5.84051e-05 4.14658e-11 0.0100929 -7.61185e-05 5.6593e-11 0.0101112 -0.000144802 5.87361e-11 0.0102082 -0.000181028 6.62721e-11 0.0103225 -0.000173704 7.74475e-11 0.0104197 -0.000139178 8.08014e-11 0.0105004 -0.000120257 8.18214e-11 0.0105653 -0.00011811 6.02524e-11 0.0106234 -0.000129842 4.84618e-11 0.0106825 -0.000152641 3.83444e-11 0.0107444 -0.000182553 2.80356e-11 0.0108127 -0.000214353 1.9536e-11 0.010892 -0.000245019 8.58924e-12 0.0109797 -0.000274272 7.93311e-12 0.011072 -0.000300958 6.59989e-12 0.0111707 -0.000323168 -6.22021e-13 0.0112756 -0.000341431 -4.69005e-12 0.0113846 -0.000355339 -7.11997e-12 0.0114956 -0.000364991 -5.88519e-12 0.0116091 -0.000370067 -6.02955e-12 0.01173 -0.00037152 -7.34071e-12 0.0118658 -0.00036988 -6.47129e-12 0.012022 -0.000365821 -5.94803e-12 0.0121975 -0.000360086 -3.87062e-12 0.012386 -0.00035336 6.28712e-12 0.0125801 -0.000346104 1.45907e-11 0.0127737 -0.000338768 9.8272e-12 0.0129597 -0.000332228 1.40099e-11 0.0131362 -0.000326878 3.10359e-11 0.013309 -0.000322687 3.95294e-11 0.0134739 -0.000321629 4.21075e-11 0.0136087 -0.000324797 3.27526e-11 0.0136989 -0.000329647 2.03189e-11 0.0137541 -0.000334193 2.85962e-11 0.0137901 -0.000342627 4.5659e-11 0.0138249 -0.000354248 4.78338e-11 0.0138787 -0.000368057 4.24658e-11 0.0139725 -0.000383296 5.07674e-11 0.0141108 -0.000401372 5.71901e-11 0.0142785 -0.000421465 4.63415e-11 0.0144856 -0.000436101 3.54883e-11 0.0147848 -0.000447106 3.94837e-11 0.0152083 -0.000462846 3.73616e-11 0.0157301 -0.000485957 3.11563e-11 0.0163178 -0.000504137 2.62193e-11 0.016942 -0.00052044 2.36295e-11 0.0175741 -0.000534673 1.72845e-11 0.0181856 -0.000546319 9.67928e-12 0.0187501 -0.000555238 3.38746e-12 0.0192442 -0.000560994 -1.26864e-12 0.0196542 -0.000562689 -4.86638e-12 0.0199831 -0.00055956 -6.52948e-12 0.020233 -0.000551469 -6.83659e-12 0.020399 -0.000538665 -7.20235e-12 0.0204679 -0.000521542 -8.00582e-12 0.0204173 -0.000500585 -4.75433e-12 0.0202482 -0.000475291 -1.77594e-12 0.0198304 -0.000443339 2.14154e-11 0.0189095 -0.000399833 6.83754e-11 0.0177653 -0.000344043 1.19884e-10 0.0164925 -0.000280885 1.3531e-10 0.0152586 -0.000217492 1.2062e-10 0.0141918 -0.000160879 9.54159e-11 0.0133463 -0.000114834 6.95491e-11 0.0127177 -7.98455e-05 4.81297e-11 0.0122712 -5.43912e-05 3.21572e-11 0.0119644 -3.64055e-05 2.24128e-11 0.0117587 -2.37598e-05 1.8962e-11 0.0116224 -1.47466e-05 1.21273e-11 0.0115322 -8.23772e-06 6.08647e-12 0.0114718 -3.50376e-06 3.34963e-12 0.0114295 -1.67133e-07 1.41318e-12 0.0113974 2.01635e-06 1.45877e-13 0.0113701 3.31226e-06 -6.13935e-13 0.0113455 3.91667e-06 -1.05561e-12 0.0113226 4.00303e-06 -1.27277e-12 0.0113015 3.74668e-06 -1.35275e-12 0.0112824 3.29592e-06 -1.35756e-12 0.0112655 2.765e-06 -1.32845e-12 0.011251 2.23287e-06 -1.2903e-12 0.011239 1.7472e-06 -1.25522e-12 0.0112293 1.33129e-06 -1.22815e-12 0.0112216 9.91518e-07 -1.2093e-12 0.0112157 7.23975e-07 -1.19743e-12 0.0112112 5.19475e-07 -1.19015e-12 0.0112079 3.66955e-07 -1.18735e-12 0.0112055 2.55647e-07 -1.18357e-12 0.0112038 1.75647e-07 -1.18702e-12 0.0112026 1.19359e-07 -1.17939e-12 7.84709e-08 -1.19381e-12 0.0187299 0.0150159 2.44274e-11 0.0179926 0.0121145 1.95621e-12 0.0170555 0.00945638 -7.43693e-12 0.0160552 0.0071719 -1.31083e-11 0.0150128 0.00536808 -1.54376e-12 0.0140606 0.00389867 -1.67901e-12 0.0132258 0.00279973 -9.83007e-13 0.0125242 0.00193634 6.59658e-12 0.0119678 0.0013003 1.39302e-12 0.0115194 0.000811898 2.39257e-11 0.0112118 0.000455184 2.72308e-11 0.0110167 0.000198906 2.99845e-11 0.0108951 2.90302e-05 5.75795e-11 0.0108351 -7.04461e-05 6.04938e-11 0.0108418 -0.000128012 6.13542e-11 0.0109185 -0.000166983 6.29194e-11 0.0110266 -0.000173517 6.69217e-11 0.0111306 -0.000163161 6.46509e-11 0.0112224 -0.00016105 5.72566e-11 0.0113111 -0.000172635 4.86182e-11 0.0113944 -0.000192551 3.81922e-11 0.0114658 -0.000220649 2.54382e-11 0.0115281 -0.00025403 1.7786e-11 0.0115924 -0.000287751 9.54378e-12 0.0116647 -0.000321028 3.13524e-12 0.0117447 -0.000352373 2.18937e-12 0.011835 -0.000378301 -4.99144e-12 0.0119372 -0.000399617 -6.98319e-12 0.0120504 -0.000415945 -8.36528e-12 0.0121726 -0.00042749 -9.85285e-12 0.012304 -0.000435463 -9.95041e-12 0.0124468 -0.000439058 -9.20971e-12 0.012606 -0.000438939 -6.70178e-12 0.0127848 -0.000435685 -7.394e-13 0.0129823 -0.000430401 7.18e-12 0.0131932 -0.000424288 1.39636e-11 0.0134098 -0.000417921 2.12986e-11 0.0136248 -0.000411876 2.93635e-11 0.0138328 -0.000406842 2.40354e-11 0.0140312 -0.000403232 2.90476e-11 0.014223 -0.000401064 6.1643e-11 0.0144103 -0.000401433 6.68882e-11 0.0145809 -0.000406252 1.0971e-11 0.0147181 -0.000414621 -1.67752e-11 0.014822 -0.000422867 6.03648e-11 0.0149036 -0.000432344 4.74252e-11 0.0149766 -0.000445535 3.79312e-11 0.0150589 -0.000460186 4.11109e-11 0.0151716 -0.000475667 4.46551e-11 0.015321 -0.000493188 3.00583e-11 0.0154952 -0.000510786 2.36572e-11 0.0157039 -0.000523566 2.4048e-11 0.0159949 -0.000533363 2.93824e-11 0.0163951 -0.000547882 2.18652e-11 0.0168773 -0.0005663 1.75453e-11 0.0174112 -0.000580898 9.71408e-12 0.0179667 -0.000593205 3.72827e-12 0.0185138 -0.000603016 -2.26985e-12 0.0190242 -0.000609755 -7.29354e-12 0.0194727 -0.000613374 -1.06299e-11 0.019842 -0.000612861 -1.20241e-11 0.020137 -0.000607834 -1.21909e-11 0.0203626 -0.000598432 -1.22041e-11 0.0205106 -0.000583978 -1.22331e-11 0.0205822 -0.000564548 -1.18395e-11 0.0205597 -0.000540982 -8.997e-12 0.0203931 -0.000512992 -4.05192e-13 0.0199828 -0.000478221 2.6125e-11 0.0190569 -0.00043163 8.3542e-11 0.0179123 -0.000371741 1.26509e-10 0.0166313 -0.000303671 1.36286e-10 0.0153795 -0.000235157 1.21901e-10 0.0142899 -0.000173832 9.70777e-11 0.0134219 -0.000123885 7.08701e-11 0.0127739 -8.58635e-05 4.89566e-11 0.0123123 -5.8174e-05 3.29218e-11 0.0119944 -3.8512e-05 2.20435e-11 0.011781 -2.46303e-05 1.87469e-11 0.0116393 -1.47265e-05 1.23121e-11 0.0115451 -7.59867e-06 6.14446e-12 0.0114813 -2.47844e-06 3.31222e-12 0.0114363 1.08183e-06 1.35993e-12 0.0114017 3.36284e-06 1.29895e-13 0.0113727 4.62474e-06 -5.97632e-13 0.0113467 5.11199e-06 -1.04172e-12 0.0113229 5.043e-06 -1.25582e-12 0.0113011 4.61825e-06 -1.33479e-12 0.0112817 4.00373e-06 -1.34114e-12 0.0112647 3.32454e-06 -1.31512e-12 0.0112502 2.66497e-06 -1.28043e-12 0.0112383 2.07408e-06 -1.24849e-12 0.0112287 1.57408e-06 -1.22386e-12 0.0112211 1.16887e-06 -1.20677e-12 0.0112153 8.51583e-07 -1.19606e-12 0.011211 6.09982e-07 -1.18947e-12 0.0112077 4.30316e-07 -1.18697e-12 0.0112054 2.99335e-07 -1.18353e-12 0.0112037 2.05431e-07 -1.18695e-12 0.0112025 1.39582e-07 -1.17943e-12 9.15279e-08 -1.19386e-12 0.0193152 0.0153586 9.48624e-12 0.0185337 0.0128025 -3.5818e-12 0.0176018 0.0103443 -4.93107e-12 0.016656 0.00815601 -2.51489e-11 0.0157472 0.00636649 -2.80317e-11 0.0148946 0.00489157 -2.04183e-11 0.0141445 0.00372266 -1.96077e-11 0.0134764 0.00278395 -7.62162e-12 0.0129308 0.0020404 -2.04522e-12 0.0124483 0.00145487 9.88349e-12 0.012065 0.00098518 1.52836e-11 0.0117475 0.000630316 2.3685e-11 0.0115282 0.000355067 3.23231e-11 0.011393 0.00015469 2.96891e-11 0.0113218 2.59217e-05 4.49467e-11 0.01131 -6.71783e-05 4.64797e-11 0.0113416 -0.000123317 4.62511e-11 0.0114295 -0.000168678 4.48461e-11 0.0115479 -0.000190224 4.09484e-11 0.0116609 -0.000195711 3.17661e-11 0.0117616 -0.00021088 2.63415e-11 0.0118496 -0.000237255 2.01326e-11 0.0119174 -0.000265539 1.33312e-11 0.0119671 -0.000298926 1.01902e-11 0.012018 -0.000334813 4.10466e-12 0.0120854 -0.000369781 -1.59258e-12 0.0121721 -0.000402865 -2.52685e-12 0.0122795 -0.000431189 -6.70073e-12 0.012405 -0.000454944 -7.67945e-12 0.0125444 -0.000474188 -1.24185e-11 0.0126937 -0.000489256 -1.39048e-11 0.0128514 -0.000499513 -1.27609e-11 0.0130186 -0.000505245 -8.00057e-12 0.0131996 -0.00050704 -7.44408e-12 0.0133994 -0.000505731 -1.5074e-12 0.0136186 -0.000502391 5.32119e-12 0.0138525 -0.000497936 9.35323e-12 0.0140928 -0.000493105 1.15765e-11 0.0143325 -0.000488389 2.16284e-11 0.014567 -0.00048438 3.32119e-11 0.0147926 -0.000481993 3.28136e-11 0.0150085 -0.000481696 2.47032e-11 0.0152188 -0.000483416 3.4402e-11 0.0154224 -0.000488262 3.155e-11 0.0156051 -0.000497458 1.25176e-11 0.0157544 -0.000509069 1.49873e-11 0.0158745 -0.000519975 3.87438e-11 0.0159774 -0.000532577 2.87168e-11 0.0160829 -0.000546388 2.44868e-11 0.0162134 -0.000560312 1.86945e-11 0.0163724 -0.000576202 1.94687e-11 0.016552 -0.000590102 2.15752e-11 0.0167715 -0.000599132 1.77299e-11 0.0170707 -0.000606749 2.75489e-12 0.0174577 -0.000619055 2.71973e-12 0.0179082 -0.000631608 -2.29887e-12 0.0183927 -0.000641527 -9.97469e-12 0.0188779 -0.000648701 -1.52169e-11 0.0193333 -0.000653043 -1.87426e-11 0.0197327 -0.000654552 -2.16566e-11 0.0200605 -0.000652917 -2.28801e-11 0.0203257 -0.00064558 -2.16096e-11 0.0205358 -0.000631544 -2.10838e-11 0.0206665 -0.00061283 -2.09847e-11 0.0207192 -0.000590303 -1.94964e-11 0.0206908 -0.000564846 -1.35113e-11 0.020527 -0.000535892 -9.40375e-13 0.0201148 -0.000501343 2.97865e-11 0.0191925 -0.000453314 9.44411e-11 0.0180486 -0.00039017 1.32328e-10 0.016759 -0.000318647 1.38318e-10 0.0154898 -0.000246735 1.2455e-10 0.0143785 -0.000182304 9.88435e-11 0.0134891 -0.000129746 7.21642e-11 0.0128231 -8.9666e-05 4.99347e-11 0.0123477 -6.03774e-05 3.35641e-11 0.0120199 -3.94712e-05 2.18456e-11 0.0117996 -2.46635e-05 1.85239e-11 0.011653 -1.40968e-05 1.25755e-11 0.0115552 -6.50853e-06 6.20626e-12 0.0114885 -1.07994e-06 3.35103e-12 0.011441 2.56888e-06 1.36215e-12 0.0114044 4.83507e-06 1.47941e-13 0.0113738 5.99069e-06 -5.63902e-13 0.0113466 6.31572e-06 -1.01009e-12 0.0113221 6.06147e-06 -1.22522e-12 0.0112999 5.45205e-06 -1.3073e-12 0.0112803 4.66797e-06 -1.31849e-12 0.0112634 3.84153e-06 -1.2979e-12 0.011249 3.05929e-06 -1.26828e-12 0.0112373 2.36947e-06 -1.24044e-12 0.0112278 1.79176e-06 -1.2189e-12 0.0112205 1.3269e-06 -1.20387e-12 0.0112148 9.64677e-07 -1.19449e-12 0.0112106 6.89852e-07 -1.18869e-12 0.0112075 4.85991e-07 -1.18668e-12 0.0112052 3.3774e-07 -1.18342e-12 0.0112036 2.31582e-07 -1.18694e-12 0.0112024 1.57122e-07 -1.17946e-12 1.03054e-07 -1.1939e-12 0.0200727 0.015707 -2.03016e-11 0.0192539 0.0134478 -4.96678e-12 0.0182946 0.0111848 7.55479e-12 0.0173042 0.00910554 -1.15893e-11 0.0163877 0.0073169 -2.67498e-11 0.0155494 0.00582933 -2.36713e-11 0.0148181 0.00460751 -2.39175e-11 0.0141693 0.0036123 -1.03708e-11 0.0136063 0.00278852 -3.05855e-12 0.0131016 0.00212087 6.66002e-12 0.012668 0.0015675 1.44772e-11 0.0123129 0.0011269 1.80474e-11 0.0120264 0.000772011 2.22299e-11 0.0118425 0.000495561 3.07776e-11 0.0117268 0.000281491 2.48767e-11 0.0116766 0.000126552 4.2732e-11 0.0116797 1.03168e-05 2.62235e-11 0.011704 -7.11826e-05 2.60855e-11 0.011759 -0.000133167 2.57564e-11 0.0118565 -0.000188476 2.40019e-11 0.0119629 -0.000224598 1.99425e-11 0.0120485 -0.000249704 1.51496e-11 0.0121173 -0.000279352 1.15203e-11 0.012177 -0.000313601 6.68864e-12 0.012235 -0.000350548 3.92915e-12 0.012307 -0.000385417 8.61396e-14 0.0124076 -0.000419922 -5.15281e-12 0.012534 -0.000453849 -5.99568e-12 0.0126783 -0.000483881 -8.15145e-12 0.0128352 -0.000509273 -1.38996e-11 0.0130002 -0.000530927 -1.51836e-11 0.013171 -0.000548195 -1.27671e-11 0.0133473 -0.000560967 -1.07728e-11 0.0135319 -0.000569195 -6.69285e-12 0.0137295 -0.000573703 -6.33351e-12 0.0139449 -0.000575238 -4.71684e-12 0.0141801 -0.000574232 -4.12724e-12 0.0144321 -0.00057157 -2.3654e-12 0.0146937 -0.000568126 1.97729e-12 0.0149568 -0.000564564 7.06691e-12 0.0152159 -0.000561521 8.18635e-12 0.0154675 -0.000559851 8.40035e-12 0.0157084 -0.000560282 9.21405e-12 0.0159383 -0.000562871 9.4217e-12 0.0161605 -0.000567485 6.44387e-12 0.0163704 -0.000575354 5.59425e-12 0.0165534 -0.000587143 7.91715e-12 0.0167018 -0.000599925 1.12365e-11 0.0168253 -0.000610907 9.81899e-12 0.0169467 -0.000621456 2.83854e-12 0.017088 -0.000632656 4.02072e-12 0.01725 -0.000644933 -2.21582e-12 0.0174327 -0.000653955 -4.99039e-12 0.017663 -0.0006579 -5.23655e-12 0.017968 -0.000662142 -9.67567e-12 0.0183404 -0.000671328 -1.86959e-11 0.0187534 -0.000678194 -2.22193e-11 0.0191768 -0.000682517 -2.66143e-11 0.0195802 -0.00068474 -2.96512e-11 0.0199356 -0.000684416 -3.18304e-11 0.0202327 -0.000678792 -2.95721e-11 0.0204778 -0.000666223 -3.20616e-11 0.0206607 -0.000649787 -3.29274e-11 0.0207735 -0.00062919 -3.29241e-11 0.0208178 -0.000605291 -3.02656e-11 0.0207827 -0.000578326 -2.30615e-11 0.0206195 -0.000548026 -5.81151e-12 0.0202279 -0.00051223 3.02081e-11 0.0193201 -0.000462973 1.04069e-10 0.0181836 -0.000398027 1.38119e-10 0.0168908 -0.000324846 1.40546e-10 0.0156073 -0.000251386 1.2596e-10 0.0144755 -0.000185524 1.00772e-10 0.0135649 -0.000131706 7.35049e-11 0.0128803 -9.05677e-05 5.08501e-11 0.01239 -6.04112e-05 3.40713e-11 0.0120512 -3.88043e-05 2.19523e-11 0.0118229 -2.34575e-05 1.81416e-11 0.0116705 -1.25097e-05 1.27139e-11 0.0115682 -4.69075e-06 6.24048e-12 0.0114978 7.79771e-07 3.36363e-12 0.0114472 4.4039e-06 1.38486e-12 0.0114081 6.53491e-06 1.60555e-13 0.0113755 7.48928e-06 -5.26135e-13 0.0113469 7.58196e-06 -9.71921e-13 0.0113215 7.09807e-06 -1.18922e-12 0.0112988 6.27832e-06 -1.27604e-12 0.011279 5.31188e-06 -1.29344e-12 0.011262 4.33372e-06 -1.27928e-12 0.0112478 3.42917e-06 -1.25535e-12 0.0112362 2.64323e-06 -1.23203e-12 0.011227 1.99155e-06 -1.21374e-12 0.0112198 1.47078e-06 -1.20091e-12 0.0112143 1.06699e-06 -1.19292e-12 0.0112102 7.6168e-07 -1.18794e-12 0.0112072 5.35817e-07 -1.18632e-12 0.011205 3.71807e-07 -1.18334e-12 0.0112034 2.54629e-07 -1.18697e-12 0.0112023 1.72625e-07 -1.17951e-12 1.12983e-07 -1.19395e-12 0.0206563 0.0160617 -8.53911e-12 0.0198762 0.0140565 -6.42461e-12 0.0190054 0.0119562 5.51574e-12 0.0180765 0.0100007 6.62281e-12 0.0171533 0.00826101 -2.98697e-12 0.0162969 0.00675617 2.9331e-12 0.0155185 0.00547892 6.76695e-12 0.0148103 0.0044113 3.51494e-12 0.0141756 0.00351974 7.80996e-13 0.0136161 0.0027813 5.80913e-12 0.0131333 0.00216607 9.76239e-12 0.0127391 0.00166127 1.6538e-11 0.0124149 0.00124676 1.91139e-11 0.0121776 0.000907621 2.55005e-11 0.0119954 0.000632993 2.08074e-11 0.0118811 0.000409691 2.14024e-11 0.011817 0.000231334 2.83958e-11 0.0117976 9.50884e-05 1.7354e-11 0.0118176 -1.64844e-05 1.07596e-11 0.0118517 -0.000100298 1.04787e-11 0.0119099 -0.000171311 8.57376e-12 0.011989 -0.000234102 4.87973e-12 0.0120732 -0.000282886 3.77703e-13 0.0121625 -0.000322574 -8.08707e-13 0.0122609 -0.000360882 -4.4943e-12 0.0123763 -0.00040123 -7.98196e-12 0.0125135 -0.000440791 -9.08403e-12 0.0126743 -0.000476222 -1.39301e-11 0.0128502 -0.00050985 -1.7091e-11 0.0130306 -0.000541527 -1.60878e-11 0.0132121 -0.000567985 -1.75455e-11 0.0133947 -0.000590386 -1.59411e-11 0.013579 -0.000608995 -1.24372e-11 0.0137671 -0.000623415 -1.15301e-11 0.0139637 -0.000633719 -1.01563e-11 0.0141747 -0.000640411 -8.63961e-12 0.0144052 -0.000644014 -6.63354e-12 0.014656 -0.000645138 -3.82748e-12 0.0149243 -0.000644404 -1.44947e-12 0.0152043 -0.000642521 1.19826e-12 0.0154883 -0.000640228 3.39165e-12 0.0157696 -0.00063808 2.1793e-12 0.0160442 -0.000636698 -9.38016e-13 0.0163089 -0.000637005 1.81472e-12 0.0165602 -0.000639397 5.22861e-12 0.0167989 -0.000643432 -5.64111e-12 0.0170282 -0.000649202 -3.25005e-11 0.0172387 -0.000658479 -8.23435e-12 0.0174124 -0.000670145 1.22599e-11 0.017552 -0.000678552 -1.14064e-11 0.0176851 -0.000683843 -1.51335e-11 0.0178323 -0.000691239 -1.5962e-11 0.0179945 -0.000698419 -2.04353e-11 0.0181817 -0.000700237 -1.82702e-11 0.0184227 -0.000699431 -1.94257e-11 0.0187317 -0.000701359 -2.18019e-11 0.0190856 -0.000705677 -3.30778e-11 0.0194543 -0.000707841 -3.3733e-11 0.0198109 -0.000707598 -3.78994e-11 0.0201331 -0.000703308 -3.68764e-11 0.020408 -0.000692426 -3.81597e-11 0.0206291 -0.000677386 -4.33239e-11 0.0207875 -0.000658795 -4.31062e-11 0.0208837 -0.000636609 -4.22068e-11 0.0209172 -0.000611201 -3.88847e-11 0.020877 -0.000582551 -2.99899e-11 0.0207179 -0.000550489 -1.07903e-11 0.020344 -0.000512933 3.31289e-11 0.0194477 -0.000462984 1.16211e-10 0.0183153 -0.000397792 1.47778e-10 0.0170176 -0.000324453 1.40383e-10 0.0157195 -0.000250808 1.2846e-10 0.0145675 -0.000184702 1.03074e-10 0.0136363 -0.000130607 7.4852e-11 0.0129337 -8.91867e-05 5.16804e-11 0.0124292 -5.87434e-05 3.45571e-11 0.0120797 -3.68676e-05 2.21979e-11 0.0118437 -2.13055e-05 1.76018e-11 0.0116856 -1.02264e-05 1.27639e-11 0.011579 -2.38547e-06 6.22491e-12 0.0115052 2.99213e-06 3.34474e-12 0.0114517 6.434e-06 1.37284e-12 0.0114103 8.32129e-06 1.72192e-13 0.011376 9.00174e-06 -4.93644e-13 0.0113462 8.81976e-06 -9.37076e-13 0.01132 8.08324e-06 -1.1549e-12 0.011297 7.04467e-06 -1.24571e-12 0.0112771 5.8967e-06 -1.26903e-12 0.0112603 4.77279e-06 -1.26113e-12 0.0112463 3.75414e-06 -1.24279e-12 0.0112349 2.88065e-06 -1.22387e-12 0.0112259 2.1629e-06 -1.20881e-12 0.011219 1.59296e-06 -1.19809e-12 0.0112137 1.15307e-06 -1.19144e-12 0.0112097 8.21621e-07 -1.18722e-12 0.0112068 5.77047e-07 -1.18606e-12 0.0112047 3.99897e-07 -1.18322e-12 0.0112033 2.73489e-07 -1.18704e-12 0.0112022 1.85131e-07 -1.17955e-12 1.21085e-07 -1.19399e-12 0.0214686 0.0164602 -1.24916e-11 0.0207063 0.0146789 -2.06138e-12 0.0197991 0.0127464 7.33483e-12 0.0188912 0.0108698 9.83146e-13 0.0179877 0.00917214 4.20387e-12 0.0170867 0.00766201 -3.67139e-12 0.01623 0.00634143 -5.09025e-12 0.0154556 0.00520849 -4.19398e-13 0.0147662 0.00425126 9.39708e-12 0.0141629 0.00344701 9.61207e-12 0.0136434 0.00277831 9.40574e-12 0.0132101 0.00222059 1.31054e-11 0.0128553 0.00175602 1.35941e-11 0.0125712 0.00136526 1.63099e-11 0.012339 0.00103724 1.51164e-11 0.0121612 0.000759417 1.42426e-11 0.012034 0.000527325 1.27904e-11 0.0119559 0.000331854 1.12736e-11 0.0119319 0.000172756 4.04662e-12 0.0119406 4.20336e-05 3.85297e-12 0.0119787 -6.99353e-05 8.43256e-13 0.0120249 -0.000159658 -5.94563e-12 0.0120983 -0.000237093 -6.71823e-12 0.012199 -0.000304249 -8.28196e-12 0.0123246 -0.000363693 -1.01319e-11 0.0124688 -0.000414134 -1.38794e-11 0.0126275 -0.000458237 -2.30215e-11 0.0128037 -0.000499013 -2.63768e-11 0.0129952 -0.000539737 -2.64088e-11 0.0131958 -0.00057775 -2.52685e-11 0.0133979 -0.000607892 -2.46273e-11 0.0136029 -0.000634549 -2.26771e-11 0.0138121 -0.000657232 -1.83855e-11 0.0140246 -0.000675381 -1.56006e-11 0.014241 -0.000689994 -1.27614e-11 0.0144639 -0.000701048 -1.03348e-11 0.0146973 -0.000708618 -8.03087e-12 0.0149454 -0.000713241 -6.18936e-12 0.0152097 -0.000715446 -4.65778e-12 0.0154876 -0.000715755 -3.65626e-12 0.0157744 -0.000714634 -4.78097e-12 0.0160653 -0.000712686 -5.00328e-12 0.0163559 -0.000710631 -6.12549e-12 0.0166421 -0.000709147 -1.02057e-11 0.0169192 -0.000708762 -1.37156e-11 0.0171819 -0.000709794 -1.13888e-11 0.0174293 -0.000711758 -1.9913e-11 0.0176641 -0.000714392 -4.48285e-11 0.0178795 -0.000720386 -2.95142e-11 0.0180564 -0.000727534 -2.14222e-11 0.0181951 -0.00073128 -2.9377e-11 0.018327 -0.000731424 -2.86094e-11 0.0184708 -0.000733504 -2.90712e-11 0.018629 -0.000733766 -3.39955e-11 0.0188231 -0.000729195 -3.25092e-11 0.0190784 -0.000724138 -3.42243e-11 0.0193844 -0.000723716 -4.31795e-11 0.0197079 -0.000723147 -4.63895e-11 0.0200234 -0.000719478 -4.87215e-11 0.0203128 -0.00071024 -4.32794e-11 0.0205606 -0.000695861 -5.15788e-11 0.020759 -0.00067809 -5.37939e-11 0.0209 -0.000657254 -5.31296e-11 0.0209814 -0.000633587 -5.12258e-11 0.0210036 -0.000607217 -4.62421e-11 0.0209574 -0.000578014 -3.5342e-11 0.0208028 -0.00054526 -1.17524e-11 0.0204445 -0.00050678 3.89706e-11 0.0195652 -0.000456423 1.33868e-10 0.0184424 -0.000391258 1.3875e-10 0.0171439 -0.000318173 1.47849e-10 0.0158338 -0.000245128 1.34312e-10 0.0146632 -0.000179735 1.05092e-10 0.0137118 -0.000126256 7.6096e-11 0.0129912 -8.52828e-05 5.2544e-11 0.0124719 -5.51364e-05 3.50698e-11 0.0121112 -3.34351e-05 2.23581e-11 0.0118669 -1.80019e-05 1.67539e-11 0.0117025 -7.07536e-06 1.27134e-11 0.011591 5.39084e-07 6.16852e-12 0.0115133 5.62481e-06 3.30106e-12 0.0114566 8.72098e-06 1.34676e-12 0.0114127 1.02498e-05 1.71475e-13 0.0113764 1.05743e-05 -4.72323e-13 0.0113454 1.00639e-05 -9.08396e-13 0.0113184 9.04459e-06 -1.12446e-12 0.0112951 7.77298e-06 -1.21802e-12 0.0112751 6.43949e-06 -1.24646e-12 0.0112584 5.17178e-06 -1.2443e-12 0.0112446 4.04393e-06 -1.23113e-12 0.0112336 3.08882e-06 -1.21632e-12 0.0112249 2.31088e-06 -1.20424e-12 0.0112181 1.69704e-06 -1.19548e-12 0.011213 1.22549e-06 -1.19008e-12 0.0112093 8.71444e-07 -1.18658e-12 0.0112065 6.10935e-07 -1.1858e-12 0.0112045 4.22638e-07 -1.18318e-12 0.0112031 2.88584e-07 -1.18709e-12 0.0112021 1.95074e-07 -1.17961e-12 1.27323e-07 -1.19406e-12 0.02209 0.0169259 -2.22109e-11 0.0214589 0.0152386 -2.10042e-11 0.0206617 0.0135038 -1.42884e-11 0.019783 0.0117324 -1.13153e-11 0.0188731 0.0100557 -9.16605e-12 0.0179546 0.00854179 -1.04342e-11 0.0170501 0.00719519 -4.04668e-12 0.0161966 0.006016 -1.21495e-12 0.0154251 0.00500175 -7.67617e-13 0.0147592 0.0041407 2.32594e-12 0.0142013 0.00341731 6.27368e-12 0.013739 0.00280789 9.05064e-12 0.0133511 0.00229412 8.9119e-12 0.0130252 0.00185577 1.0296e-11 0.0127518 0.00148058 9.15379e-12 0.0125268 0.00115557 7.60982e-12 0.0123557 0.000876054 5.12701e-12 0.0122257 0.000634714 1.96173e-12 0.0121505 0.000426991 1.27115e-13 0.0121136 0.000248445 -8.43304e-12 0.012109 9.6874e-05 -8.47893e-12 0.0121347 -3.45951e-05 -1.41343e-11 0.0121927 -0.000148077 -1.51211e-11 0.0122791 -0.000244134 -1.62556e-11 0.0123982 -0.000324956 -1.87251e-11 0.0125474 -0.000396859 -2.39455e-11 0.0127213 -0.00046155 -3.46551e-11 0.0129128 -0.000520279 -3.61586e-11 0.0131172 -0.000569049 -3.54896e-11 0.0133278 -0.000610417 -3.83932e-11 0.0135451 -0.000648918 -3.95924e-11 0.0137719 -0.000686076 -3.5049e-11 0.0140038 -0.000712934 -3.17349e-11 0.0142415 -0.000734353 -2.83546e-11 0.0144849 -0.00075247 -2.44238e-11 0.0147306 -0.000765073 -2.04321e-11 0.0149791 -0.000773879 -1.64458e-11 0.0152343 -0.000779575 -1.3796e-11 0.0154984 -0.000782449 -1.22533e-11 0.0157703 -0.000783034 -1.14599e-11 0.0160488 -0.000781777 -1.21697e-11 0.0163331 -0.000779349 -1.34408e-11 0.016621 -0.000776218 -1.68194e-11 0.0169096 -0.000772935 -1.97655e-11 0.0171962 -0.000769869 -2.48122e-11 0.0174764 -0.000767289 -2.95503e-11 0.0177436 -0.000766162 -2.9302e-11 0.0179939 -0.000765463 -3.56503e-11 0.01823 -0.000765447 -6.74983e-11 0.0184439 -0.000767913 -5.43514e-11 0.0186177 -0.000770179 -3.52663e-11 0.0187563 -0.000767824 -2.49527e-11 0.0188889 -0.000762343 -4.39303e-11 0.0190285 -0.000759065 -5.21266e-11 0.0191869 -0.000753108 -5.75246e-11 0.0193947 -0.000742158 -5.26383e-11 0.0196634 -0.000733993 -5.36519e-11 0.0199584 -0.00072931 -6.53779e-11 0.0202463 -0.000720991 -5.05344e-11 0.0205035 -0.000708166 -4.9721e-11 0.0207166 -0.000691185 -5.34392e-11 0.0208877 -0.000670331 -5.09134e-11 0.0210134 -0.000646338 -5.02258e-11 0.0210842 -0.000620169 -4.83521e-11 0.0210947 -0.000592295 -4.38264e-11 0.021037 -0.000562793 -3.49787e-11 0.0208787 -0.000530738 -2.09826e-11 0.0205324 -0.000493392 3.76573e-11 0.0196761 -0.000444449 1.23741e-10 0.0185649 -0.000378956 1.66015e-10 0.017266 -0.000306527 1.57393e-10 0.015944 -0.000234946 1.34472e-10 0.0147547 -0.000171173 1.06186e-10 0.0137835 -0.00011911 7.75806e-11 0.0130452 -7.92362e-05 5.35223e-11 0.0125118 -4.98891e-05 3.55606e-11 0.0121402 -2.87559e-05 2.24559e-11 0.0118878 -1.37645e-05 1.56348e-11 0.0117175 -3.24743e-06 1.25961e-11 0.0116012 3.93137e-06 6.08332e-12 0.0115197 8.54834e-06 3.2344e-12 0.01146 1.11672e-05 1.30729e-12 0.0114137 1.22353e-05 1.64619e-13 0.0113757 1.2138e-05 -4.52108e-13 0.0113436 1.12629e-05 -8.82856e-13 0.0113161 9.94376e-06 -1.09686e-12 0.0112926 8.43496e-06 -1.19262e-12 0.0112727 6.91952e-06 -1.22569e-12 0.0112562 5.5155e-06 -1.2288e-12 0.0112428 4.28743e-06 -1.22042e-12 0.011232 3.25967e-06 -1.2094e-12 0.0112236 2.42961e-06 -1.20007e-12 0.0112172 1.77876e-06 -1.19312e-12 0.0112123 1.28115e-06 -1.18887e-12 0.0112087 9.08938e-07 -1.18602e-12 0.0112061 6.35892e-07 -1.18559e-12 0.0112042 4.39075e-07 -1.18316e-12 0.0112029 2.99251e-07 -1.18714e-12 0.0112019 2.01911e-07 -1.17968e-12 1.31588e-07 -1.19412e-12 0.022956 0.0176377 -3.74797e-11 0.022298 0.0158526 -3.24468e-11 0.0215402 0.0142074 -2.52252e-11 0.0206358 0.012543 -1.88568e-11 0.0196984 0.0109132 -1.19114e-11 0.0187733 0.00938372 -7.05404e-12 0.0178706 0.00801367 -2.77633e-12 0.017008 0.00681308 3.29786e-13 0.016211 0.00576533 1.68806e-13 0.0155025 0.00486415 1.40111e-12 0.0148882 0.0040919 1.12366e-12 0.0143641 0.0034321 2.87907e-12 0.0139245 0.00286677 3.56729e-12 0.013553 0.00237952 4.48442e-12 0.013236 0.00195608 3.17708e-12 0.0129725 0.00158761 1.87945e-12 0.0127601 0.00126575 -1.14819e-12 0.0125972 0.000982828 -4.44107e-12 0.0124799 0.000734211 -7.86123e-12 0.0123981 0.000514243 -1.30645e-11 0.0123583 0.000320564 -1.32646e-11 0.0123451 0.000149286 -2.01074e-11 0.0123708 1.42499e-06 -2.02752e-11 0.0124414 -0.000132353 -2.04892e-11 0.0125506 -0.000247124 -3.33211e-11 0.0126943 -0.000345911 -3.88097e-11 0.012862 -0.000432194 -4.53063e-11 0.013048 -0.00050777 -4.57174e-11 0.0132508 -0.000574906 -4.6958e-11 0.0134758 -0.000638808 -4.80091e-11 0.013707 -0.000692702 -4.88472e-11 0.0139405 -0.000733192 -4.83738e-11 0.0141801 -0.000766937 -4.71438e-11 0.0144357 -0.000801661 -4.45036e-11 0.0146995 -0.000826673 -4.05797e-11 0.0149653 -0.000840223 -3.6791e-11 0.0152367 -0.000850722 -3.17426e-11 0.0155109 -0.000855014 -2.84025e-11 0.0157845 -0.000855544 -2.58318e-11 0.0160572 -0.000852737 -2.36761e-11 0.0163306 -0.000847781 -2.29501e-11 0.0166058 -0.000841917 -2.244e-11 0.0168832 -0.000835456 -2.54611e-11 0.0171625 -0.000828654 -2.74912e-11 0.0174438 -0.000822202 -3.38382e-11 0.0177266 -0.000816368 -4.45461e-11 0.0180059 -0.000811513 -4.09062e-11 0.0182735 -0.000808004 -3.99146e-11 0.0185249 -0.000804647 -5.33862e-11 0.0187587 -0.000800937 -1.06893e-10 0.0189625 -0.000798779 -4.88272e-11 0.019123 -0.000795471 -2.52234e-11 0.0192536 -0.000786974 -5.21781e-11 0.0193804 -0.000777524 -7.65665e-11 0.0195159 -0.000768114 -7.63281e-11 0.0196806 -0.000753973 -7.46705e-11 0.0199074 -0.00073744 -7.71843e-11 0.0201813 -0.000726327 -8.62466e-11 0.020454 -0.000715493 -6.1597e-11 0.0206869 -0.000700452 -4.87656e-11 0.020867 -0.000681196 -3.32133e-11 0.0210093 -0.000657338 -2.76244e-11 0.0211175 -0.000629713 -2.69628e-11 0.0211803 -0.000599888 -2.51722e-11 0.0211871 -0.000568876 -2.34373e-11 0.0211235 -0.000537354 -1.71606e-11 0.0209629 -0.000504947 -1.50741e-11 0.0206286 -0.000468909 1.19527e-11 0.0197952 -0.000421738 7.51188e-11 0.0186898 -0.00035767 1.56417e-10 0.0173886 -0.000287901 1.42195e-10 0.0160543 -0.000219517 1.29267e-10 0.0148467 -0.000158692 1.10139e-10 0.0138559 -0.000108999 7.97936e-11 0.0131002 -7.09081e-05 5.41537e-11 0.0125526 -4.28626e-05 3.58944e-11 0.0121702 -2.26969e-05 2.26008e-11 0.0119095 -8.47652e-06 1.47393e-11 0.0117328 1.33624e-06 1.23994e-11 0.0116115 7.84158e-06 5.99358e-12 0.011526 1.18028e-05 3.15032e-12 0.0114631 1.37991e-05 1.26317e-12 0.0114143 1.42994e-05 1.57878e-13 0.0113747 1.3712e-05 -4.30798e-13 0.0113415 1.24328e-05 -8.58931e-13 0.0113135 1.07944e-05 -1.07117e-12 0.0112898 9.04186e-06 -1.1691e-12 0.0112701 7.34575e-06 -1.20658e-12 0.0112539 5.81094e-06 -1.21463e-12 0.0112408 4.48991e-06 -1.21067e-12 0.0112304 3.39704e-06 -1.20314e-12 0.0112224 2.52189e-06 -1.19632e-12 0.0112162 1.84013e-06 -1.19099e-12 0.0112116 1.32151e-06 -1.18779e-12 0.0112082 9.35125e-07 -1.18552e-12 0.0112057 6.52697e-07 -1.18542e-12 0.0112039 4.49662e-07 -1.18316e-12 0.0112027 3.05809e-07 -1.1872e-12 0.0112018 2.0592e-07 -1.17975e-12 1.33887e-07 -1.19419e-12 0.0238473 0.0185329 -4.21779e-11 0.0230819 0.0166198 -3.67857e-11 0.0223748 0.0148838 -3.36764e-11 0.0215886 0.0132976 -2.50382e-11 0.0206588 0.0117494 -1.85348e-11 0.0196615 0.0102504 -1.46127e-11 0.0187024 0.00885538 -1.17183e-11 0.017823 0.00761043 -3.79584e-12 0.0170293 0.00652944 -2.51902e-13 0.0163099 0.00559758 -2.24252e-13 0.0156646 0.00478721 -1.39176e-12 0.0150975 0.00408376 -5.13449e-13 0.0145999 0.00346998 -9.24287e-13 0.0141679 0.00293437 2.22639e-13 0.0138012 0.00246518 -1.06934e-12 0.0134967 0.0020533 -3.88014e-12 0.0132499 0.00169003 -6.09213e-12 0.0130549 0.00136882 -9.44253e-12 0.0129037 0.00108287 -1.30241e-11 0.0127894 0.000825965 -1.69541e-11 0.0127122 0.000595347 -2.10379e-11 0.0126728 0.000387612 -2.23888e-11 0.0126701 0.000202268 -2.27122e-11 0.012707 3.63717e-05 -2.59935e-11 0.0127925 -0.00011528 -3.91387e-11 0.0129172 -0.000246755 -4.62381e-11 0.0130769 -0.000362493 -5.17088e-11 0.0132597 -0.00046424 -5.40862e-11 0.0134562 -0.000554694 -5.68851e-11 0.0136651 -0.000632237 -5.79379e-11 0.0138809 -0.000702337 -5.94759e-11 0.014115 -0.000769639 -5.7362e-11 0.0143647 -0.00082428 -5.45142e-11 0.0146199 -0.000862246 -5.47757e-11 0.0148745 -0.000890673 -5.23046e-11 0.0151426 -0.000919299 -5.3124e-11 0.015428 -0.000939704 -4.77106e-11 0.0157179 -0.000943379 -4.65184e-11 0.0160087 -0.00094422 -4.35694e-11 0.0162949 -0.000936984 -4.11503e-11 0.0165777 -0.000926653 -3.9598e-11 0.0168561 -0.000913568 -3.86878e-11 0.0171289 -0.000899459 -4.19338e-11 0.0173976 -0.000885133 -4.34302e-11 0.017668 -0.000871454 -4.92776e-11 0.0179426 -0.000859352 -5.71249e-11 0.0182204 -0.000849188 -5.42537e-11 0.0184962 -0.000841327 -6.43154e-11 0.0187586 -0.000833527 -4.79588e-11 0.0190022 -0.000824558 -1.09615e-10 0.0192248 -0.000817839 -1.03349e-10 0.0194112 -0.000810692 -4.13749e-11 0.0195535 -0.000800701 -2.51965e-11 0.0196752 -0.000786538 -8.23704e-11 0.0197987 -0.000773542 -1.0747e-10 0.0199353 -0.000758084 -1.00279e-10 0.0201162 -0.000737296 -9.92949e-11 0.0203595 -0.000717892 -1.21159e-10 0.0206238 -0.00070402 -6.55552e-11 0.0208509 -0.000687751 -3.89906e-11 0.0210159 -0.000667003 -1.4619e-11 0.0211317 -0.000641313 -4.33591e-12 0.0212167 -0.000611136 -3.08159e-12 0.0212707 -0.000577709 -1.98524e-12 0.0212801 -0.000542465 -1.07212e-12 0.0212243 -0.000506238 6.19383e-12 0.0210758 -0.000470077 1.07001e-11 0.0207545 -0.000431279 1.83263e-11 0.0199278 -0.000386982 1.66904e-11 0.018818 -0.000326948 1.19457e-10 0.0175095 -0.000262748 1.41938e-10 0.0161611 -0.000199579 1.39317e-10 0.0149348 -0.000142936 1.10703e-10 0.0139248 -9.63978e-05 8.00578e-11 0.0131522 -6.06225e-05 5.4155e-11 0.012591 -3.43189e-05 3.62495e-11 0.012198 -1.54767e-05 2.2852e-11 0.0119292 -2.32348e-06 1.38173e-11 0.0117462 6.52452e-06 1.21544e-11 0.01162 1.21404e-05 5.87021e-12 0.0115306 1.52773e-05 3.06949e-12 0.0114647 1.65256e-05 1.22373e-12 0.0114137 1.63747e-05 1.52491e-13 0.0113726 1.52447e-05 -4.17991e-13 0.0113386 1.3536e-05 -8.38581e-13 0.0113102 1.15692e-05 -1.04793e-12 0.0112866 9.5742e-06 -1.14775e-12 0.0112672 7.70441e-06 -1.18931e-12 0.0112513 6.04835e-06 -1.2019e-12 0.0112387 4.64454e-06 -1.20196e-12 0.0112287 3.49616e-06 -1.19757e-12 0.011221 2.58441e-06 -1.193e-12 0.0112152 1.87884e-06 -1.18911e-12 0.0112108 1.34498e-06 -1.18686e-12 0.0112076 9.49002e-07 -1.18508e-12 0.0112053 6.60567e-07 -1.18531e-12 0.0112037 4.53958e-07 -1.18303e-12 0.0112025 3.07991e-07 -1.18731e-12 0.0112017 2.06896e-07 -1.17987e-12 1.34228e-07 -1.19429e-12 0.0251602 0.0197413 -6.04111e-11 0.0240982 0.0176285 -4.61009e-11 0.023198 0.0157287 -4.28801e-11 0.0223702 0.014068 -3.35208e-11 0.0215268 0.0125241 -2.55243e-11 0.0206296 0.0110868 -2.18647e-11 0.0196762 0.00972429 -1.80546e-11 0.0187435 0.00846615 -1.54404e-11 0.0178968 0.00734146 -1.01118e-11 0.0171499 0.00635947 -8.68607e-12 0.0164838 0.00550447 -8.8656e-12 0.015881 0.00475727 -6.67121e-12 0.0153407 0.00409872 -6.70448e-12 0.0148645 0.00351798 -5.72405e-12 0.0144521 0.00300445 -6.67521e-12 0.0141025 0.00255099 -7.90891e-12 0.0138145 0.00214808 -9.85102e-12 0.0135857 0.00178947 -1.38617e-11 0.0134049 0.00146731 -1.64312e-11 0.0132654 0.00117632 -2.05493e-11 0.0131645 0.000912233 -2.29778e-11 0.0131014 0.000671936 -2.48262e-11 0.0130786 0.000452662 -2.65891e-11 0.0131011 0.000254945 -2.90336e-11 0.0131577 7.38516e-05 -4.38313e-11 0.0132555 -9.34912e-05 -5.08163e-11 0.0133889 -0.000241808 -5.61256e-11 0.013553 -0.000373616 -5.96142e-11 0.0137342 -0.000491316 -6.19117e-11 0.0139292 -0.000595264 -6.29089e-11 0.0141426 -0.000687408 -6.34693e-11 0.0143545 -0.000766231 -6.35612e-11 0.0145667 -0.000837116 -6.31497e-11 0.0148036 -0.000902985 -6.22744e-11 0.0150621 -0.000954855 -5.9733e-11 0.0153233 -0.000988549 -5.6319e-11 0.0155884 -0.00100769 -5.24373e-11 0.0158672 -0.0010278 -5.22018e-11 0.0161662 -0.00104007 -5.28892e-11 0.0164675 -0.00103498 -5.27309e-11 0.0167629 -0.00102249 -5.27133e-11 0.0170496 -0.00100454 -4.88781e-11 0.0173291 -0.00098196 -5.57581e-11 0.0176039 -0.000956904 -5.478e-11 0.0178743 -0.000932266 -6.069e-11 0.0181449 -0.000909358 -7.15858e-11 0.0184198 -0.000889301 -6.31949e-11 0.0186944 -0.000872202 -7.25953e-11 0.0189613 -0.000857226 -7.28707e-11 0.0192145 -0.000844349 -9.58227e-11 0.0194462 -0.00083065 -1.2864e-10 0.0196465 -0.000816265 -5.74188e-11 0.0198052 -0.000802407 -2.71381e-11 0.0199291 -0.000786281 -4.2635e-11 0.0200434 -0.000768744 -1.31167e-10 0.0201611 -0.000751829 -1.15978e-10 0.0203047 -0.000729604 -1.13918e-10 0.0205091 -0.000704338 -1.22735e-10 0.0207597 -0.000684474 -9.18196e-11 0.0209918 -0.000667369 -4.68027e-11 0.0211586 -0.000646427 -2.62193e-11 0.0212589 -0.000620741 -1.63092e-11 0.0213211 -0.000590051 -1.49845e-11 0.0213586 -0.000554916 -1.2491e-11 0.0213688 -0.00051625 -8.23242e-12 0.0213307 -0.000475425 -3.77146e-12 0.0212041 -0.000433092 -1.66578e-13 0.0208989 -0.000390275 8.60614e-12 0.0200659 -0.00034478 3.94647e-11 0.0189452 -0.000290924 1.27001e-10 0.0176271 -0.000234101 1.525e-10 0.0162646 -0.000176885 1.41311e-10 0.0150204 -0.000124778 1.09853e-10 0.0139922 -8.1692e-05 7.91377e-11 0.0132033 -4.8559e-05 5.45991e-11 0.0126289 -2.43182e-05 3.69406e-11 0.0122254 -7.12339e-06 2.30373e-11 0.0119484 4.63898e-06 1.32001e-11 0.011759 1.22737e-05 1.18517e-11 0.0116278 1.6785e-05 5.71385e-12 0.0115343 1.89323e-05 2.98682e-12 0.0114654 1.93165e-05 1.14582e-12 0.0114123 1.84369e-05 1.96716e-13 0.0113699 1.67209e-05 -4.42184e-13 0.0113352 1.45631e-05 -8.23757e-13 0.0113066 1.22631e-05 -1.02806e-12 0.0112832 1.00298e-05 -1.12926e-12 0.011264 7.99497e-06 -1.17433e-12 0.0112486 6.22819e-06 -1.19085e-12 0.0112364 4.75218e-06 -1.19441e-12 0.0112269 3.55806e-06 -1.19273e-12 0.0112196 2.61815e-06 -1.19012e-12 0.0112141 1.8958e-06 -1.1875e-12 0.01121 1.35233e-06 -1.18605e-12 0.0112071 9.51116e-07 -1.18471e-12 0.0112049 6.60113e-07 -1.18519e-12 0.0112034 4.52346e-07 -1.18319e-12 0.0112023 3.06073e-07 -1.18735e-12 0.0112015 2.05071e-07 -1.1799e-12 1.3268e-07 -1.19434e-12 0.026348 0.020967 -5.87988e-11 0.0252815 0.018803 -7.62071e-11 0.0242744 0.0167779 -5.8158e-11 0.0233392 0.0149743 -5.05616e-11 0.0224252 0.0133743 -3.88131e-11 0.0215149 0.0119249 -3.20466e-11 0.0206061 0.0105817 -2.6727e-11 0.019707 0.00933597 -2.45106e-11 0.0188486 0.00819368 -1.99141e-11 0.018058 0.00716307 -1.25123e-11 0.0173468 0.00625385 -1.25328e-11 0.0167085 0.00545608 -1.36696e-11 0.0161326 0.00475198 -1.28711e-11 0.0156182 0.00412795 -1.18576e-11 0.0151685 0.00357297 -1.24384e-11 0.0147826 0.00307931 -1.29758e-11 0.0144609 0.00263852 -1.47551e-11 0.0141946 0.00224375 -1.64456e-11 0.0139814 0.00188642 -1.92441e-11 0.0138152 0.00156282 -2.27693e-11 0.0136921 0.0012661 -2.44132e-11 0.0136138 0.000995417 -2.65779e-11 0.0135771 0.000746759 -2.79009e-11 0.013582 0.000518453 -3.11801e-11 0.013628 0.000309248 -3.34692e-11 0.0137023 0.000115792 -5.17067e-11 0.013809 -6.43316e-05 -5.71261e-11 0.013949 -0.000228935 -6.08023e-11 0.014109 -0.000376159 -6.29126e-11 0.014281 -0.000508013 -6.27557e-11 0.0144668 -0.000625578 -6.42722e-11 0.0146662 -0.000729276 -6.20922e-11 0.0148658 -0.000820417 -6.10555e-11 0.015061 -0.000895842 -6.08119e-11 0.0152748 -0.000965545 -5.99941e-11 0.0155074 -0.00102734 -5.68727e-11 0.0157655 -0.00107205 -5.32178e-11 0.0160339 -0.00109867 -4.86089e-11 0.0163025 -0.00110698 -5.03121e-11 0.0165891 -0.00111528 -4.32046e-11 0.0168785 -0.00111526 -5.21915e-11 0.0171705 -0.00110291 -4.23472e-11 0.0174559 -0.00107888 -5.38819e-11 0.0177358 -0.00104874 -7.28231e-11 0.0180163 -0.00101478 -5.66889e-11 0.0182966 -0.000980712 -6.84507e-11 0.0185753 -0.000947255 -5.63713e-11 0.0188551 -0.000916061 -7.36044e-11 0.0191305 -0.000889039 -1.03499e-10 0.0193901 -0.000864426 -9.66772e-11 0.019629 -0.000841766 -1.37706e-10 0.019843 -0.000820864 -6.53792e-11 0.0200172 -0.00080059 -3.95854e-11 0.0201506 -0.000778226 -6.57724e-11 0.0202645 -0.000755852 -1.12956e-10 0.0203743 -0.000734766 -1.10954e-10 0.0204901 -0.000712231 -1.00386e-10 0.0206495 -0.000683684 -1.22677e-10 0.0208729 -0.000656842 -1.25678e-10 0.0211075 -0.000637095 -6.38084e-11 0.0212897 -0.000615876 -3.87003e-11 0.0213959 -0.00059117 -2.68986e-11 0.0214428 -0.00056197 -2.47237e-11 0.021457 -0.00052787 -2.25916e-11 0.0214549 -0.000488829 -1.62947e-11 0.0214228 -0.000445505 -4.25868e-12 0.021315 -0.000399397 1.49916e-11 0.0210223 -0.000352205 4.11339e-11 0.0201777 -0.000304802 9.96907e-11 0.0190567 -0.000257388 1.34765e-10 0.0177348 -0.000206258 1.55133e-10 0.0163612 -0.000153513 1.40583e-10 0.0151009 -0.000105183 1.10713e-10 0.0140556 -6.53571e-05 8.10999e-11 0.0132514 -3.50047e-05 5.65098e-11 0.0126642 -1.30656e-05 3.77199e-11 0.0122504 2.17467e-06 2.29473e-11 0.0119654 1.22669e-05 1.28845e-11 0.0117697 1.84317e-05 1.14691e-11 0.0116335 2.16452e-05 5.53724e-12 0.0115363 2.26609e-05 2.86902e-12 0.0114647 2.20825e-05 1.08491e-12 0.0114097 2.04196e-05 1.86076e-13 0.0113661 1.80926e-05 -4.37535e-13 0.011331 1.5479e-05 -8.10826e-13 0.0113025 1.28514e-05 -1.01192e-12 0.0112793 1.03916e-05 -1.11388e-12 0.0112606 8.20624e-06 -1.1617e-12 0.0112458 6.3432e-06 -1.18148e-12 0.0112341 4.8083e-06 -1.18798e-12 0.0112251 3.57996e-06 -1.18861e-12 0.0112182 2.62149e-06 -1.18766e-12 0.0112131 1.8901e-06 -1.18611e-12 0.0112092 1.34309e-06 -1.18537e-12 0.0112065 9.41314e-07 -1.1844e-12 0.0112045 6.51159e-07 -1.18511e-12 0.0112031 4.44856e-07 -1.18324e-12 0.0112021 3.00121e-07 -1.18742e-12 0.0112014 2.00492e-07 -1.17998e-12 1.29354e-07 -1.19441e-12 0.0277492 0.0216761 -5.71468e-11 0.0265585 0.0201091 -8.41168e-11 0.0253667 0.0179884 -6.88428e-11 0.0243277 0.016022 -5.85835e-11 0.0234175 0.0143111 -4.84742e-11 0.0225407 0.0128184 -3.8357e-11 0.0216526 0.0114573 -3.27352e-11 0.0207582 0.0102121 -3.28344e-11 0.0198577 0.00906062 -3.08171e-11 0.0189987 0.0079967 -2.57548e-11 0.0182282 0.00703544 -1.70855e-11 0.0175497 0.00617776 -1.60333e-11 0.0169476 0.00542618 -1.61326e-11 0.0164108 0.00475989 -1.69493e-11 0.0159363 0.00416776 -1.72501e-11 0.0155252 0.00363674 -1.76849e-11 0.0151733 0.00316081 -1.88354e-11 0.0148784 0.00272999 -2.01428e-11 0.0146359 0.00233985 -2.19762e-11 0.0144416 0.00198277 -2.38841e-11 0.0142972 0.00165613 -2.54874e-11 0.0142002 0.00135557 -2.73521e-11 0.014151 0.00107886 -2.91055e-11 0.0141442 0.000823241 -3.10999e-11 0.0141773 0.000586697 -3.3884e-11 0.0142437 0.000367535 -4.02401e-11 0.0143317 0.000163291 -5.50983e-11 0.0144425 -2.61832e-05 -5.73323e-11 0.014581 -0.000205316 -5.90881e-11 0.0147327 -0.000365765 -5.9342e-11 0.0148903 -0.000510118 -5.88231e-11 0.015061 -0.000638903 -5.86571e-11 0.0152358 -0.00075335 -5.5103e-11 0.0154092 -0.000853005 -5.59744e-11 0.015594 -0.00093747 -5.11777e-11 0.0157844 -0.00100816 -5.057e-11 0.0159855 -0.0010753 -4.89476e-11 0.0162135 -0.00112808 -4.70753e-11 0.016468 -0.00116319 -4.53255e-11 0.0167392 -0.00117903 -3.72222e-11 0.0170099 -0.00118215 -4.59067e-11 0.0172745 -0.00117205 -3.26025e-11 0.017544 -0.00116152 -4.52136e-11 0.0178169 -0.00113945 -4.51882e-11 0.0180914 -0.00110452 -4.71939e-11 0.0183717 -0.00106582 -5.43851e-11 0.0186607 -0.00102356 -7.1419e-11 0.0189527 -0.000981387 -8.89303e-11 0.0192419 -0.000939874 -8.11058e-11 0.0195207 -0.000900701 -1.01658e-10 0.019778 -0.000864322 -1.05779e-10 0.0200035 -0.000831294 -5.70376e-11 0.0201954 -0.000800873 -4.7302e-11 0.02035 -0.000772245 -6.58674e-11 0.0204746 -0.000740482 -1.0403e-10 0.020588 -0.000711085 -9.80738e-11 0.0206929 -0.000685135 -8.73515e-11 0.0208105 -0.00065557 -9.13444e-11 0.0209861 -0.000622364 -8.75144e-11 0.0212093 -0.000595116 -7.26835e-11 0.0214069 -0.000573295 -5.3115e-11 0.0215316 -0.000548659 -4.86493e-11 0.0215837 -0.000521399 -4.76515e-11 0.0215836 -0.000490201 -4.31213e-11 0.0215549 -0.000454217 -3.29866e-11 0.0214962 -0.00041299 -2.11785e-11 0.0213797 -0.000367509 1.25835e-12 0.0210853 -0.000320868 3.45806e-11 0.0202498 -0.00027439 1.22039e-10 0.0191506 -0.000229777 1.6104e-10 0.0178345 -0.000180187 1.56677e-10 0.0164535 -0.000129512 1.38436e-10 0.0151787 -8.39918e-05 1.08899e-10 0.014117 -4.72578e-05 8.01538e-11 0.0132975 -1.98761e-05 5.59555e-11 0.0126978 -5.76717e-07 3.62737e-11 0.0122738 1.23645e-05 2.27418e-11 0.0119807 2.04751e-05 1.28638e-11 0.0117786 2.49129e-05 1.10334e-11 0.0116376 2.66334e-05 5.34022e-12 0.0115369 2.63838e-05 2.75063e-12 0.0114626 2.47641e-05 1.02168e-12 0.0114061 2.22735e-05 1.64651e-13 0.0113617 1.93245e-05 -4.38753e-13 0.0113263 1.62603e-05 -8.01944e-13 0.0112979 1.33194e-05 -9.99264e-13 0.0112752 1.0651e-05 -1.10139e-12 0.0112571 8.33334e-06 -1.15129e-12 0.0112428 6.39109e-06 -1.17369e-12 0.0112317 4.81217e-06 -1.18261e-12 0.0112232 3.56204e-06 -1.18515e-12 0.0112168 2.59503e-06 -1.18559e-12 0.011212 1.86249e-06 -1.18494e-12 0.0112084 1.31801e-06 -1.18481e-12 0.0112059 9.20251e-07 -1.18415e-12 0.0112041 6.34354e-07 -1.18507e-12 0.0112028 4.3193e-07 -1.18329e-12 0.0112019 2.90479e-07 -1.18752e-12 0.0112013 1.93435e-07 -1.18007e-12 1.24401e-07 -1.19449e-12 0.0291085 0.0207363 -1.37274e-11 0.0280508 0.0211752 -3.92158e-11 0.0267854 0.0193014 -7.35642e-11 0.0255588 0.017248 -6.51547e-11 0.0244808 0.0154035 -5.71141e-11 0.0235263 0.0137993 -4.57013e-11 0.0226367 0.0123781 -3.91258e-11 0.0217743 0.0110943 -3.84827e-11 0.020922 0.00991981 -3.60601e-11 0.0200721 0.0088463 -3.36972e-11 0.0192344 0.007857 -2.91698e-11 0.0184693 0.00695359 -2.101e-11 0.0178059 0.00614313 -1.86918e-11 0.0172355 0.00542376 -1.84897e-11 0.0167401 0.00478879 -1.85462e-11 0.0163099 0.0042224 -1.8465e-11 0.0159383 0.00371244 -2.27321e-11 0.0156214 0.00324921 -2.11711e-11 0.0153555 0.00282621 -2.3894e-11 0.0151409 0.00243768 -2.5133e-11 0.0149755 0.00208066 -2.66127e-11 0.0148618 0.00175072 -2.81479e-11 0.0147992 0.00144672 -2.96933e-11 0.0147825 0.0011648 -3.1438e-11 0.0148048 0.000903221 -3.33068e-11 0.0148605 0.000659418 -3.58462e-11 0.0149425 0.000431619 -3.95889e-11 0.0150392 0.000219279 -5.43317e-11 0.0151471 2.29716e-05 -5.803e-11 0.0152786 -0.000170757 -5.47657e-11 0.0154161 -0.000341502 -5.22127e-11 0.0155564 -0.000495577 -5.07465e-11 0.0157038 -0.000633261 -4.73999e-11 0.0158475 -0.000755654 -4.377e-11 0.0159937 -0.000861487 -4.28219e-11 0.0161578 -0.000952584 -3.86157e-11 0.0163262 -0.00102728 -4.01316e-11 0.016499 -0.00109244 -4.02377e-11 0.0166955 -0.00115104 -4.05601e-11 0.0169182 -0.00119417 -4.01798e-11 0.0171709 -0.00121815 -4.07027e-11 0.0174227 -0.00122557 -3.42584e-11 0.0176712 -0.00121635 -3.35161e-11 0.0179127 -0.00119668 -2.97062e-11 0.0181583 -0.00116853 -3.56938e-11 0.0184194 -0.00113806 -4.44758e-11 0.0186976 -0.00109929 -5.52217e-11 0.0189897 -0.00105269 -6.55637e-11 0.0192889 -0.00100345 -7.41753e-11 0.0195842 -0.000953244 -7.65493e-11 0.019864 -0.000904184 -7.84956e-11 0.0201154 -0.000856881 -7.12703e-11 0.0203292 -0.000812173 -6.943e-11 0.0205067 -0.000770011 -7.73162e-11 0.020654 -0.000729684 -8.26342e-11 0.0207805 -0.000689358 -7.94027e-11 0.0208917 -0.000653176 -7.14644e-11 0.0209906 -0.000620342 -6.40451e-11 0.0211148 -0.000583285 -7.0102e-11 0.021303 -0.000546753 -7.06539e-11 0.0215097 -0.000518584 -5.67848e-11 0.0216626 -0.000492126 -5.2157e-11 0.0217294 -0.000465399 -5.07751e-11 0.0217215 -0.000437505 -4.56725e-11 0.0216676 -0.000407308 -3.80196e-11 0.0215668 -0.000373024 -1.51273e-11 0.0213941 -0.000333997 -2.63219e-13 0.0210867 -0.000292691 5.63403e-11 0.0203012 -0.000249746 1.29776e-10 0.0192379 -0.000203535 1.46272e-10 0.017931 -0.000152763 1.50111e-10 0.0165432 -0.000103113 1.32849e-10 0.0152536 -6.03157e-05 1.06436e-10 0.0141753 -2.70144e-05 7.80926e-11 0.0133407 -3.07221e-06 5.46028e-11 0.0127283 1.31032e-05 3.62419e-11 0.0122943 2.33316e-05 2.28836e-11 0.0119933 2.91127e-05 1.30149e-11 0.0117851 3.15641e-05 1.05717e-11 0.0116395 3.16123e-05 5.13263e-12 0.0115354 2.99838e-05 2.63178e-12 0.011459 2.72682e-05 9.6906e-13 0.0114012 2.3935e-05 1.38998e-13 0.0113562 2.03702e-05 -4.49655e-13 0.0113209 1.6875e-05 -7.97723e-13 0.0112929 1.36458e-05 -9.8951e-13 0.0112707 1.07946e-05 -1.09116e-12 0.0112533 8.36847e-06 -1.14262e-12 0.0112397 6.36765e-06 -1.16716e-12 0.0112292 4.76182e-06 -1.17808e-12 0.0112213 3.50363e-06 -1.18223e-12 0.0112153 2.53885e-06 -1.18385e-12 0.0112109 1.81341e-06 -1.18396e-12 0.0112076 1.27763e-06 -1.18434e-12 0.0112053 8.88453e-07 -1.18394e-12 0.0112036 6.10115e-07 -1.18505e-12 0.0112025 4.1397e-07 -1.18338e-12 0.0112017 2.7746e-07 -1.18762e-12 0.0112011 1.84137e-07 -1.18016e-12 1.18021e-07 -1.19456e-12 0.0289652 0.0203652 9.58894e-12 0.0292885 0.0206982 -1.60155e-11 0.0281248 0.0204326 -4.78576e-11 0.0269549 0.0185913 -8.59106e-11 0.0258294 0.0166598 -7.53061e-11 0.0247747 0.0149214 -6.18212e-11 0.0237839 0.0134026 -5.02936e-11 0.0228463 0.0120438 -4.92057e-11 0.0219569 0.0108188 -4.52982e-11 0.021109 0.00970428 -4.15878e-11 0.0202981 0.00868761 -3.79701e-11 0.01952 0.00776112 -3.24757e-11 0.0187922 0.00691295 -2.43663e-11 0.0181485 0.00614584 -2.28027e-11 0.0176018 0.00545681 -2.32754e-11 0.017139 0.00484459 -2.29418e-11 0.016747 0.00429576 -2.61466e-11 0.0164144 0.00379956 -2.1774e-11 0.0161339 0.00334468 -2.63919e-11 0.0159031 0.00292633 -2.52368e-11 0.0157223 0.00253909 -2.72967e-11 0.015593 0.0021809 -2.87146e-11 0.0155154 0.00184882 -3.00313e-11 0.0154872 0.00154111 -3.15615e-11 0.0155 0.00125477 -3.29479e-11 0.0155485 0.000987636 -3.4442e-11 0.01562 0.000738098 -3.59183e-11 0.0157114 0.000503205 -3.75341e-11 0.0158191 0.000285011 -4.11963e-11 0.0159219 7.88218e-05 -5.0524e-11 0.0160345 -0.00011855 -4.52656e-11 0.0161519 -0.000298123 -3.98774e-11 0.0162702 -0.000459402 -3.6337e-11 0.0163884 -0.000603391 -3.33435e-11 0.0165013 -0.000730595 -2.93958e-11 0.0166194 -0.000841596 -2.81869e-11 0.0167556 -0.000936018 -2.52535e-11 0.0169002 -0.0010164 -2.41358e-11 0.0170507 -0.00107983 -2.40753e-11 0.0172236 -0.00114 -2.43463e-11 0.0174152 -0.00118909 -2.53126e-11 0.0176291 -0.00122105 -2.96537e-11 0.0178405 -0.00123237 -3.03399e-11 0.0180577 -0.00122754 -2.56499e-11 0.0182802 -0.00121285 -2.58208e-11 0.0185098 -0.00118206 -4.0433e-11 0.0187541 -0.00114334 -4.29951e-11 0.0190202 -0.00109991 -4.86618e-11 0.0193077 -0.0010559 -5.40435e-11 0.0196068 -0.00100595 -5.81556e-11 0.0199013 -0.000950768 -6.25029e-11 0.0201767 -0.000892389 -6.71667e-11 0.020422 -0.000835089 -7.09058e-11 0.0206283 -0.000779148 -7.34888e-11 0.0207968 -0.000725403 -7.50996e-11 0.0209417 -0.000674178 -6.79304e-11 0.0210711 -0.000626064 -6.01187e-11 0.0211785 -0.00058272 -5.35961e-11 0.0212745 -0.000541141 -5.10244e-11 0.0214099 -0.000497231 -5.28695e-11 0.0216033 -0.000457879 -4.61532e-11 0.0217839 -0.00042607 -3.50906e-11 0.0218792 -0.000396231 -3.51111e-11 0.0218724 -0.000369695 -2.93417e-11 0.0217921 -0.000345065 -1.92917e-11 0.0216505 -0.000319905 -2.94573e-12 0.0214305 -0.00029181 2.03644e-11 0.0210886 -0.000258631 5.72237e-11 0.02037 -0.000218967 1.14072e-10 0.019335 -0.000171106 1.36691e-10 0.0180318 -0.000119867 1.39467e-10 0.0166336 -7.22479e-05 1.27179e-10 0.0153273 -3.32161e-05 1.03286e-10 0.0142313 -4.28288e-06 7.65209e-11 0.0133811 1.54335e-05 5.351e-11 0.0127559 2.78652e-05 3.61063e-11 0.0123118 3.48935e-05 2.30242e-11 0.0120029 3.79861e-05 1.28811e-11 0.0117889 3.82062e-05 1.01018e-11 0.011639 3.64322e-05 4.93012e-12 0.0115321 3.33472e-05 2.50844e-12 0.0114539 2.9509e-05 9.02595e-13 0.0113951 2.53414e-05 1.14769e-13 0.01135 2.11885e-05 -4.55651e-13 0.0113149 1.72972e-05 -7.94176e-13 0.0112875 1.38154e-05 -9.82022e-13 0.0112661 1.08142e-05 -1.08313e-12 0.0112494 8.30791e-06 -1.13571e-12 0.0112366 6.27183e-06 -1.1619e-12 0.0112268 4.65771e-06 -1.17442e-12 0.0112194 3.40594e-06 -1.17986e-12 0.0112138 2.4544e-06 -1.18244e-12 0.0112098 1.74425e-06 -1.18317e-12 0.0112068 1.22322e-06 -1.18398e-12 0.0112047 8.46952e-07 -1.18381e-12 0.0112032 5.79297e-07 -1.18507e-12 0.0112022 3.91562e-07 -1.18353e-12 0.0112015 2.61513e-07 -1.18777e-12 0.011201 1.72947e-07 -1.18027e-12 1.10454e-07 -1.19461e-12 0.0290947 0.0180867 1.1316e-10 0.029679 0.0200408 1.54888e-12 0.0294067 0.0206928 -2.51734e-11 0.0283035 0.0197768 -5.88161e-11 0.0271379 0.0179971 -9.73404e-11 0.0260345 0.0161559 -8.10603e-11 0.025003 0.0145124 -6.44549e-11 0.0240224 0.0130669 -5.96232e-11 0.0230958 0.0117767 -5.77001e-11 0.0222143 0.0106084 -5.50919e-11 0.0213798 0.00954631 -5.05537e-11 0.0205854 0.00858099 -4.41545e-11 0.019841 0.00770086 -3.22687e-11 0.019156 0.00690356 -2.90095e-11 0.0185506 0.00617968 -2.63203e-11 0.0180358 0.00552314 -2.62825e-11 0.0176068 0.00492873 -2.62249e-11 0.0172508 0.00438986 -2.5908e-11 0.0169566 0.00389826 -2.86364e-11 0.0167162 0.00344744 -2.45035e-11 0.0165257 0.00303029 -2.91135e-11 0.0163854 0.00264386 -3.05651e-11 0.0162958 0.00228487 -3.00651e-11 0.0162542 0.0019512 -3.1091e-11 0.0162575 0.00164025 -3.23005e-11 0.0162956 0.00135037 -3.33098e-11 0.0163611 0.00107869 -3.38527e-11 0.0164462 0.000824437 -3.34734e-11 0.0165403 0.000585714 -3.26614e-11 0.0166443 0.000362365 -2.98383e-11 0.0167429 0.000152519 -2.89751e-11 0.0168354 -4.37548e-05 -2.398e-11 0.016928 -0.000231041 -2.08938e-11 0.0170158 -0.000397164 -1.88449e-11 0.0171006 -0.000545294 -1.64925e-11 0.017182 -0.000675562 -1.50262e-11 0.0172736 -0.000789592 -1.30752e-11 0.0173817 -0.000886836 -1.35311e-11 0.0175 -0.000970114 -1.35438e-11 0.0176398 -0.00103616 -1.82391e-11 0.0177905 -0.00109413 -1.87346e-11 0.0179458 -0.00114688 -1.9106e-11 0.0181128 -0.00118385 -2.15999e-11 0.0182802 -0.00120189 -2.62215e-11 0.0184536 -0.00120123 -2.15618e-11 0.0186427 -0.00118997 -3.07011e-11 0.0188569 -0.00116495 -3.59563e-11 0.0190981 -0.00112983 -3.95984e-11 0.0193617 -0.00108437 -4.26833e-11 0.0196417 -0.00103338 -4.60771e-11 0.0199296 -0.00097821 -5.06167e-11 0.0202133 -0.000921178 -5.49848e-11 0.0204787 -0.000860396 -5.84731e-11 0.0207123 -0.000795608 -6.18961e-11 0.0209084 -0.000729707 -6.1555e-11 0.0210726 -0.000666476 -5.84047e-11 0.0212186 -0.000606471 -4.74224e-11 0.0213481 -0.000551477 -4.18633e-11 0.0214497 -0.000499836 -3.64297e-11 0.0215463 -0.00044941 -3.32373e-11 0.0216954 -0.000400386 -2.74497e-11 0.0218872 -0.00035808 -1.90485e-11 0.0220187 -0.000321033 -1.63989e-11 0.0220334 -0.000290706 -1.04057e-11 0.0219456 -0.000267681 -2.52642e-12 0.0217703 -0.000249937 9.10964e-12 0.0215275 -0.000232716 2.93276e-11 0.021149 -0.000209809 5.59781e-11 0.0204718 -0.000175112 1.01812e-10 0.0194465 -0.000128584 1.24556e-10 0.018138 -7.93854e-05 1.33252e-10 0.0167244 -3.58498e-05 1.23547e-10 0.0153984 -2.25344e-06 1.00984e-10 0.0142834 2.0972e-05 7.50569e-11 0.0134171 3.54868e-05 5.23257e-11 0.0127791 4.34536e-05 3.51737e-11 0.0123252 4.67765e-05 2.30851e-11 0.0120089 4.68441e-05 1.26913e-11 0.0117895 4.46291e-05 9.63933e-12 0.0116359 4.09178e-05 4.73331e-12 0.0115266 3.63481e-05 2.39367e-12 0.0114471 3.1398e-05 8.45094e-13 0.0113879 2.6434e-05 8.72581e-14 0.0113429 2.17416e-05 -4.64511e-13 0.0113084 1.75041e-05 -7.93029e-13 0.0112818 1.38155e-05 -9.76729e-13 0.0112612 1.07038e-05 -1.07699e-12 0.0112454 8.14964e-06 -1.13029e-12 0.0112334 6.10391e-06 -1.15773e-12 0.0112243 4.50124e-06 -1.17151e-12 0.0112175 3.27079e-06 -1.17797e-12 0.0112124 2.34354e-06 -1.18132e-12 0.0112087 1.65674e-06 -1.18257e-12 0.0112061 1.15622e-06 -1.18373e-12 0.0112042 7.96948e-07 -1.18372e-12 0.0112029 5.42765e-07 -1.1852e-12 0.0112019 3.65425e-07 -1.18365e-12 0.0112013 2.43129e-07 -1.18785e-12 0.0112009 1.60191e-07 -1.18034e-12 1.0195e-07 -1.19471e-12 0.0284475 0.0114583 3.88277e-10 0.0295846 0.0187254 6.43317e-11 0.0303994 0.0198596 -1.61112e-11 0.0296326 0.0205602 -4.82701e-11 0.0285553 0.0192099 -9.24587e-11 0.0273694 0.0174794 -9.77093e-11 0.0262568 0.0157388 -8.22537e-11 0.0252216 0.0141664 -6.82342e-11 0.024238 0.0127849 -6.9046e-11 0.0233115 0.0115529 -6.77394e-11 0.0224486 0.0104471 -6.46441e-11 0.0216521 0.00944582 -5.88889e-11 0.0209207 0.00853804 -5.24818e-11 0.0202517 0.00771015 -4.08734e-11 0.0196413 0.00695486 -3.1376e-11 0.0190936 0.00626304 -2.7137e-11 0.0186124 0.00562899 -2.66626e-11 0.0182002 0.00504619 -2.57992e-11 0.0178598 0.00450935 -2.685e-11 0.0175884 0.00401547 -3.23612e-11 0.017381 0.00356108 -2.64817e-11 0.0172311 0.00314226 -3.14001e-11 0.0171324 0.00275494 -2.71481e-11 0.017081 0.00239522 -2.91396e-11 0.017072 0.00205989 -3.14547e-11 0.0170999 0.00174656 -3.2272e-11 0.0171575 0.00145347 -3.23085e-11 0.0172353 0.0011791 -3.15145e-11 0.0173253 0.000921716 -2.97894e-11 0.0174212 0.000681144 -2.71427e-11 0.0175158 0.00045557 -2.3881e-11 0.0175996 0.000245521 -2.18756e-11 0.0176667 5.02726e-05 -1.96712e-11 0.01773 -0.000138499 -1.55023e-11 0.0177822 -0.000306597 -1.39109e-11 0.0178322 -0.000457167 -1.2756e-11 0.017886 -0.000590026 -1.10465e-11 0.0179529 -0.000705621 -1.10643e-11 0.0180351 -0.000805395 -1.0889e-11 0.0181325 -0.000889258 -1.12518e-11 0.0182619 -0.0009594 -1.43234e-11 0.0183874 -0.00101557 -1.5547e-11 0.0185009 -0.00106902 -1.79843e-11 0.0186179 -0.00110979 -2.03733e-11 0.0187381 -0.00113438 -2.28338e-11 0.018874 -0.00113935 -2.51365e-11 0.01903 -0.00113053 -3.00335e-11 0.0192235 -0.00111066 -3.044e-11 0.019455 -0.00107981 -3.53194e-11 0.0197159 -0.00103952 -4.0214e-11 0.0199935 -0.000990904 -4.4607e-11 0.0202739 -0.000933836 -4.78296e-11 0.0205408 -0.000870717 -4.3238e-11 0.0207846 -0.000803515 -3.70764e-11 0.0209996 -0.000734588 -3.70915e-11 0.0211843 -0.000665237 -3.34249e-11 0.0213436 -0.000594771 -2.96951e-11 0.0214862 -0.000528421 -2.45253e-11 0.0216077 -0.000467644 -1.99181e-11 0.021702 -0.000409504 -1.49587e-11 0.0218058 -0.000351992 -1.20176e-11 0.0219666 -0.000298201 -6.55031e-12 0.0221297 -0.000251005 -1.4958e-12 0.0221898 -0.000210833 -1.09734e-13 0.0221202 -0.000182516 6.81393e-12 0.0219348 -0.000165589 1.3578e-11 0.0216835 -0.00015385 3.42758e-11 0.0212874 -0.000141426 5.45918e-11 0.020607 -0.000116379 9.57643e-11 0.0195735 -7.4686e-05 1.18988e-10 0.0182496 -3.04487e-05 1.29404e-10 0.0168146 6.39677e-06 1.20899e-10 0.0154659 3.24538e-05 9.89582e-11 0.0143305 4.84469e-05 7.34352e-11 0.0134477 5.6693e-05 5.10659e-11 0.0127972 5.94932e-05 3.4263e-11 0.0123339 5.86621e-05 2.24409e-11 0.0120109 5.54288e-05 1.22838e-11 0.0117867 5.06169e-05 9.15757e-12 0.0116301 4.49271e-05 4.52941e-12 0.011519 3.8879e-05 2.27145e-12 0.0114387 3.28666e-05 7.74859e-13 0.0113795 2.71703e-05 5.54284e-14 0.0113351 2.20048e-05 -4.77438e-13 0.0113015 1.7483e-05 -7.95859e-13 0.0112758 1.36412e-05 -9.74822e-13 0.0112563 1.04628e-05 -1.07346e-12 0.0112414 7.89567e-06 -1.12679e-12 0.0112302 5.86701e-06 -1.15486e-12 0.0112218 4.29584e-06 -1.16947e-12 0.0112156 3.10145e-06 -1.17666e-12 0.011211 2.20912e-06 -1.18049e-12 0.0112077 1.55325e-06 -1.18222e-12 0.0112054 1.07852e-06 -1.18361e-12 0.0112037 7.39888e-07 -1.18367e-12 0.0112025 5.01653e-07 -1.18532e-12 0.0112017 3.36322e-07 -1.18381e-12 0.0112011 2.22875e-07 -1.18798e-12 0.0112008 1.46272e-07 -1.18046e-12 9.27653e-08 -1.1948e-12 0.025767 0.00496305 1.80709e-10 0.0294337 0.0140361 2.62762e-10 0.0300168 0.019041 4.46386e-11 0.030898 0.0196381 -3.01813e-11 0.0299572 0.0201878 -5.15138e-11 0.0288372 0.0187134 -8.2583e-11 0.0276147 0.0170505 -8.39314e-11 0.0264619 0.0153899 -7.7382e-11 0.0254203 0.0138891 -7.77943e-11 0.0244725 0.0125726 -7.66265e-11 0.0236074 0.011409 -7.51472e-11 0.0228126 0.0103652 -7.15809e-11 0.0220789 0.00942166 -6.54694e-11 0.0214017 0.0085606 -5.59882e-11 0.0207797 0.00777028 -4.12279e-11 0.0202149 0.00704224 -3.16962e-11 0.0197102 0.00636862 -2.88109e-11 0.0192652 0.00574498 -2.79518e-11 0.0188819 0.00516717 -2.44522e-11 0.0185647 0.00463225 -2.46282e-11 0.0183174 0.00413861 -3.00197e-11 0.0181404 0.00368372 -3.12082e-11 0.0180267 0.00326402 -3.16489e-11 0.017965 0.00287551 -3.23562e-11 0.0179457 0.0025146 -2.75253e-11 0.0179622 0.0021776 -2.77683e-11 0.018009 0.00186242 -2.8738e-11 0.0180789 0.00156747 -2.84499e-11 0.0181628 0.00129154 -2.73096e-11 0.0182512 0.00103335 -2.48226e-11 0.0183368 0.000792225 -2.27778e-11 0.0184143 0.000567349 -1.96549e-11 0.0184775 0.00035822 -1.52071e-11 0.018517 0.000164165 -1.27068e-11 0.01854 -1.07002e-05 -1.06795e-11 0.0185613 -0.00018866 -1.04513e-11 0.018582 -0.000338458 -1.02949e-11 0.0186124 -0.00047176 -1.02283e-11 0.0186545 -0.000588606 -1.10074e-11 0.0187137 -0.000690002 -1.19328e-11 0.0187962 -0.000775497 -1.32089e-11 0.0189035 -0.000848911 -1.44806e-11 0.0189978 -0.000906657 -2.44562e-11 0.019066 -0.000956908 -2.53829e-11 0.0191368 -0.00100079 -2.79324e-11 0.0192162 -0.00103059 -3.06688e-11 0.0193154 -0.00104304 -3.54293e-11 0.019448 -0.00103822 -3.23743e-11 0.0196299 -0.00102405 -3.60163e-11 0.019851 -0.000998811 -4.42838e-11 0.0200979 -0.000963143 -4.86062e-11 0.0203595 -0.000917415 -4.71623e-11 0.0206211 -0.000862764 -3.9008e-11 0.0208678 -0.00080064 -3.17323e-11 0.0210893 -0.000732111 -2.95097e-11 0.0212808 -0.000659591 -2.77607e-11 0.0214485 -0.000586126 -2.53515e-11 0.0215989 -0.000514222 -2.24117e-11 0.0217309 -0.000445381 -1.91933e-11 0.0218361 -0.0003799 -1.08958e-11 0.0219234 -0.000316758 -5.57119e-12 0.0220376 -0.000255781 -1.57267e-13 0.0221979 -0.000198583 6.25917e-12 0.022304 -0.000146072 7.75725e-12 0.0222842 -0.000104014 1.56137e-11 0.0221354 -7.69411e-05 1.6125e-11 0.0218707 -6.42025e-05 3.1188e-11 0.0214899 -5.55156e-05 5.20605e-11 0.0207792 -4.2144e-05 8.39826e-11 0.019716 -9.48564e-06 1.18004e-10 0.0183641 2.6495e-05 1.28672e-10 0.0169011 5.39145e-05 1.19442e-10 0.0155268 7.02211e-05 9.72923e-11 0.0143704 7.74825e-05 7.1861e-11 0.0134714 7.85092e-05 4.97344e-11 0.012809 7.55555e-05 3.32316e-11 0.0123372 7.02139e-05 2.16514e-11 0.0120082 6.34738e-05 1.17071e-11 0.0117802 5.59909e-05 8.61688e-12 0.0116213 4.83282e-05 4.30647e-12 0.0115092 4.08588e-05 2.11931e-12 0.0114288 3.38616e-05 7.21802e-13 0.0113702 2.75205e-05 -5.41064e-15 0.0113267 2.19637e-05 -4.94106e-13 0.0112941 1.72292e-05 -8.02421e-13 0.0112696 1.32933e-05 -9.76257e-13 0.0112512 1.00953e-05 -1.07244e-12 0.0112374 7.55104e-06 -1.12504e-12 0.0112271 5.56637e-06 -1.15321e-12 0.0112194 4.04637e-06 -1.16809e-12 0.0112138 2.90213e-06 -1.17601e-12 0.0112097 2.05464e-06 -1.17972e-12 0.0112068 1.43653e-06 -1.1822e-12 0.0112047 9.92257e-07 -1.18364e-12 0.0112032 6.7737e-07 -1.18346e-12 0.0112022 4.57134e-07 -1.1852e-12 0.0112015 3.05131e-07 -1.18388e-12 0.011201 2.01349e-07 -1.18805e-12 0.0112006 1.31604e-07 -1.1806e-12 8.31556e-08 -1.19488e-12 0.0203136 0.00201691 1.83028e-10 0.0266061 0.00617813 5.14018e-10 0.0299769 0.0150422 2.0585e-10 0.0303968 0.0191057 2.20349e-11 0.0312692 0.019279 -3.92015e-11 0.0302817 0.0197367 -6.51917e-11 0.0291532 0.018282 -9.05242e-11 0.0279229 0.0167004 -8.89232e-11 0.0267497 0.0151154 -8.53803e-11 0.0257058 0.013687 -8.33356e-11 0.0247829 0.0124356 -8.20287e-11 0.023965 0.0113319 -7.99399e-11 0.0232323 0.0103467 -7.49003e-11 0.0225611 0.00945273 -6.67364e-11 0.0219405 0.00863008 -5.49551e-11 0.0213659 0.00786549 -3.74435e-11 0.0208398 0.00715079 -3.07545e-11 0.0203688 0.00648378 -2.89807e-11 0.019956 0.00586238 -2.9504e-11 0.019609 0.00528578 -2.80681e-11 0.0193336 0.00475374 -3.12787e-11 0.0191288 0.0042641 -2.7437e-11 0.0189902 0.00381292 -2.84736e-11 0.0189101 0.00339532 -3.00064e-11 0.0188778 0.00300688 -2.81888e-11 0.0188831 0.00264489 -2.71836e-11 0.018917 0.00230666 -3.01311e-11 0.0189741 0.00199037 -2.79987e-11 0.0190471 0.00169488 -2.62638e-11 0.0191261 0.00141894 -2.37247e-11 0.0192022 0.00116176 -1.99299e-11 0.0192675 0.000922026 -1.59024e-11 0.0193175 0.000699699 -1.13668e-11 0.0193521 0.000493037 -8.89407e-12 0.0193717 0.000303832 -8.16032e-12 0.0193649 0.000127641 -5.66723e-12 0.0193504 -3.12093e-05 -7.36637e-12 0.0193475 -0.000187381 -1.03692e-11 0.0193561 -0.000321419 -1.1703e-11 0.0193755 -0.000438402 -1.40106e-11 0.0194155 -0.000540571 -1.47117e-11 0.0194801 -0.00062923 -1.58004e-11 0.0195513 -0.000704758 -2.3238e-11 0.019605 -0.000767029 -3.26329e-11 0.0196331 -0.000815099 -3.33323e-11 0.0196649 -0.000861191 -3.55539e-11 0.0197111 -0.000896158 -3.41233e-11 0.0197832 -0.000915092 -3.56875e-11 0.0199022 -0.000916457 -6.29468e-11 0.0200771 -0.000906242 -4.00505e-11 0.020288 -0.000887807 -4.91686e-11 0.020515 -0.000857147 -4.44107e-11 0.0207497 -0.000816283 -4.53461e-11 0.0209793 -0.000766427 -3.7218e-11 0.0211914 -0.000707998 -2.87752e-11 0.021381 -0.000642334 -2.62011e-11 0.0215477 -0.00057258 -2.65396e-11 0.0216955 -0.000500791 -2.05745e-11 0.0218273 -0.000429749 -1.5632e-11 0.0219372 -0.000361395 -7.25528e-12 0.0220222 -0.000294949 -2.12019e-12 0.0221084 -0.000229855 5.83872e-12 0.0222312 -0.000166861 8.86567e-12 0.0223586 -0.000106352 1.39551e-11 0.0223986 -5.09428e-05 1.73394e-11 0.0223077 -6.88667e-06 2.1177e-11 0.0220767 2.10899e-05 2.53091e-11 0.0217123 3.42387e-05 5.01555e-11 0.0209876 4.28383e-05 7.75403e-11 0.0198706 6.34935e-05 1.2202e-10 0.0184767 8.97362e-05 1.27831e-10 0.0169798 0.000105127 1.18127e-10 0.0155783 0.000109741 9.56856e-11 0.014401 0.000107093 7.03031e-11 0.0134868 0.00010023 4.83605e-11 0.0128137 9.11567e-05 3.21386e-11 0.0123346 8.10884e-05 2.08098e-11 0.0120008 7.07265e-05 1.10078e-11 0.01177 6.05951e-05 8.05876e-12 0.0116098 5.10108e-05 4.06619e-12 0.0114974 4.22163e-05 1.97557e-12 0.0114176 3.43472e-05 6.36779e-13 0.0113599 2.74698e-05 -1.03185e-13 0.0113177 2.16136e-05 -4.84041e-13 0.0112865 1.67455e-05 -8.12316e-13 0.0112634 1.27783e-05 -9.81333e-13 0.0112462 9.60887e-06 -1.07407e-12 0.0112334 7.12369e-06 -1.12507e-12 0.011224 5.20927e-06 -1.15282e-12 0.0112171 3.7591e-06 -1.16749e-12 0.0112121 2.67799e-06 -1.17573e-12 0.0112084 1.88418e-06 -1.17958e-12 0.0112058 1.30973e-06 -1.18186e-12 0.011204 8.99783e-07 -1.18392e-12 0.0112027 6.11121e-07 -1.1836e-12 0.0112018 4.10443e-07 -1.18493e-12 0.0112012 2.7272e-07 -1.18368e-12 0.0112008 1.79178e-07 -1.18794e-12 0.0112005 1.16616e-07 -1.1809e-12 7.33859e-08 -1.19498e-12 0.0181601 0.0007681 1.10969e-10 0.0212084 0.00251163 2.85219e-10 0.0274854 0.00685012 6.17692e-10 0.0303932 0.0155597 1.94112e-10 0.0306879 0.018814 2.19098e-12 0.0314303 0.0188699 -2.76198e-11 0.0304435 0.0192747 -7.17548e-11 0.0293552 0.0178909 -1.06818e-10 0.0281641 0.0164008 -9.42086e-11 0.027031 0.0148977 -8.54779e-11 0.0260329 0.0135582 -8.1902e-11 0.0251748 0.0123841 -8.01114e-11 0.0244313 0.0113459 -7.73806e-11 0.0237677 0.0104074 -7.22688e-11 0.0231499 0.00954275 -6.33258e-11 0.0225624 0.00873439 -4.71664e-11 0.0220101 0.00797391 -3.30086e-11 0.0215045 0.00725949 -2.99507e-11 0.0210594 0.00659331 -2.89783e-11 0.0206846 0.00597634 -2.82683e-11 0.0203857 0.00540728 -3.1082e-11 0.0201639 0.00488329 -2.90992e-11 0.020011 0.00440043 -2.91922e-11 0.0199151 0.00395345 -2.80444e-11 0.0198659 0.00353754 -2.73748e-11 0.0198556 0.00314943 -2.73335e-11 0.0198757 0.00278699 -2.65558e-11 0.0199168 0.00244842 -2.51773e-11 0.0199733 0.00213245 -2.29191e-11 0.020039 0.00183803 -1.98879e-11 0.0201035 0.00156425 -1.61539e-11 0.0201572 0.00130969 -1.24641e-11 0.0201945 0.00107337 -8.37501e-12 0.0202141 0.000854327 -6.20248e-12 0.020216 0.000652515 -3.63124e-12 0.0202037 0.000466275 -3.89565e-12 0.0201841 0.000296663 -4.97992e-12 0.0201541 0.000139465 -6.9301e-12 0.020127 2.78801e-06 -1.28047e-11 0.0201107 -0.000136107 -1.39476e-11 0.02011 -0.000256199 -1.58714e-11 0.0201317 -0.000360204 -1.71688e-11 0.020168 -0.000451213 -2.44699e-11 0.0201924 -0.000529671 -3.38627e-11 0.020202 -0.00059617 -3.58485e-11 0.020203 -0.000648604 -4.40139e-11 0.0202035 -0.000692767 -5.09509e-11 0.0202135 -0.00073245 -5.26659e-11 0.0202749 -0.000758298 -2.28727e-10 0.0203879 -0.000768068 6.32179e-11 0.02056 -0.000763019 8.74371e-12 0.0207557 -0.00075109 -3.16348e-11 0.0209549 -0.000726144 -3.79151e-11 0.0211539 -0.000691137 -3.40049e-11 0.0213432 -0.000647827 -3.056e-11 0.0215132 -0.000595975 -2.74079e-11 0.021663 -0.000537057 -2.50428e-11 0.0217957 -0.000474258 -1.97024e-11 0.0219142 -0.000409458 -1.43089e-11 0.0220157 -0.000344532 -6.70763e-12 0.0220957 -0.000279912 -1.80021e-12 0.0221643 -0.000215074 4.80837e-12 0.0222523 -0.000151143 7.66085e-12 0.0223711 -8.76094e-05 1.27501e-11 0.0224482 -2.42158e-05 1.39333e-11 0.0224233 3.49702e-05 2.37022e-11 0.0222609 8.21444e-05 2.2128e-11 0.0219172 0.000113859 4.37095e-11 0.0213075 0.000131354 6.8957e-11 0.0200431 0.000143679 1.21797e-10 0.0185817 0.000157081 1.28807e-10 0.0170454 0.000157814 1.16982e-10 0.0156168 0.000149329 9.38148e-11 0.0144202 0.000136188 6.84441e-11 0.0134925 0.000121198 4.69238e-11 0.0128104 0.00010585 3.08913e-11 0.0123255 9.09221e-05 1.99165e-11 0.0119883 7.69894e-05 1.04344e-11 0.011756 6.42627e-05 7.48888e-12 0.0115955 5.28854e-05 3.8045e-12 0.0114838 4.28986e-05 1.83128e-12 0.0114051 3.42953e-05 5.45797e-13 0.011349 2.70073e-05 -1.59369e-13 0.0113084 2.09594e-05 -5.25468e-13 0.0112788 1.60407e-05 -8.29424e-13 0.0112571 1.21072e-05 -9.89327e-13 0.0112412 9.01497e-06 -1.07766e-12 0.0112296 6.62404e-06 -1.12654e-12 0.0112211 4.80469e-06 -1.15322e-12 0.0112149 3.4414e-06 -1.16767e-12 0.0112104 2.43486e-06 -1.17567e-12 0.0112072 1.70223e-06 -1.1795e-12 0.011205 1.17624e-06 -1.18224e-12 0.0112034 8.0358e-07 -1.18373e-12 0.0112023 5.42923e-07 -1.18369e-12 0.0112016 3.62835e-07 -1.18539e-12 0.011201 2.39954e-07 -1.18413e-12 0.0112007 1.56946e-07 -1.18825e-12 0.0112005 1.01711e-07 -1.18083e-12 6.37306e-08 -1.19502e-12 0.0173275 0.000281258 3.13551e-11 0.018554 0.000940353 1.65814e-10 0.0220241 0.00266896 2.79298e-10 0.027844 0.00771184 6.21827e-10 0.0304971 0.015571 1.87135e-10 0.0308436 0.0184313 3.48868e-12 0.0315414 0.0185036 -2.03497e-11 0.0305975 0.0188516 -6.67554e-11 0.0295607 0.0175747 -1.05221e-10 0.0284485 0.0161877 -9.9074e-11 0.0274181 0.0147885 -8.31952e-11 0.0265158 0.0135436 -7.89977e-11 0.0257346 0.0124346 -7.83909e-11 0.0250377 0.0114315 -7.6704e-11 0.0243944 0.0105064 -7.0252e-11 0.0237821 0.00964231 -5.70859e-11 0.023197 0.00883052 -3.64401e-11 0.0226577 0.00806893 -3.15229e-11 0.0221852 0.00735934 -2.97647e-11 0.0217917 0.00670371 -2.8801e-11 0.0214787 0.00610017 -2.96369e-11 0.0212416 0.00554334 -2.96127e-11 0.0210745 0.0050285 -2.7888e-11 0.0209651 0.00455122 -2.65367e-11 0.0209017 0.00410669 -2.53691e-11 0.0208738 0.00369187 -2.41225e-11 0.0208751 0.0033039 -2.22545e-11 0.0209 0.002942 -2.09638e-11 0.0209382 0.00260475 -1.8524e-11 0.0209852 0.00229114 -1.57061e-11 0.0210356 0.00200014 -1.2577e-11 0.021077 0.0017305 -9.51771e-12 0.021101 0.00148024 -6.37772e-12 0.0211065 0.0012482 -4.27224e-12 0.0210932 0.00103373 -2.87541e-12 0.0210636 0.000836042 -2.95862e-12 0.0210244 0.000654516 -3.5214e-12 0.0209846 0.000488625 -6.4551e-12 0.0209459 0.000337323 -7.42292e-12 0.0209068 0.000199109 -1.34621e-11 0.0208714 7.34246e-05 -1.66856e-11 0.0208486 -3.68015e-05 -1.88351e-11 0.0208466 -0.000148148 -2.8819e-11 0.0208432 -0.000244052 -3.66958e-11 0.0208198 -0.000327449 -3.91998e-11 0.020792 -0.000397791 -3.99149e-11 0.0207676 -0.000457313 -4.48713e-11 0.0207399 -0.000502548 -4.56623e-11 0.0207423 -0.000543895 -4.9469e-11 0.0207859 -0.000576656 -5.12101e-11 0.0209088 -0.000594385 -4.99713e-11 0.0210742 -0.000596768 -5.54313e-11 0.0212435 -0.000589978 -5.37418e-11 0.0214063 -0.00057192 -3.2122e-11 0.0215616 -0.000544656 -3.20215e-11 0.0217029 -0.000509885 -2.71829e-11 0.0218252 -0.000467122 -2.45137e-11 0.0219309 -0.000418094 -1.95294e-11 0.0220233 -0.000365341 -1.39199e-11 0.0221022 -0.000310464 -8.05911e-12 0.022165 -0.000254065 -2.52277e-12 0.0222168 -0.000195392 1.23878e-12 0.0222784 -0.000134912 4.13265e-12 0.0223726 -7.27076e-05 8.28592e-12 0.0224595 -7.17292e-06 9.38208e-12 0.0224873 5.9939e-05 1.53349e-11 0.0224002 0.000122925 1.78628e-11 0.0221337 0.000175085 3.23687e-11 0.0215705 0.000211734 6.49435e-11 0.0202022 0.000227214 1.33066e-10 0.0186676 0.000224456 1.3296e-10 0.0170923 0.000208656 1.16155e-10 0.0156394 0.000187097 9.17182e-11 0.0144266 0.000163853 6.64453e-11 0.0134879 0.000140865 4.5329e-11 0.0127987 0.000119153 2.96114e-11 0.0123098 9.94866e-05 1.89233e-11 0.0119708 8.20406e-05 9.97683e-12 0.0117383 6.68659e-05 6.90552e-12 0.0115787 5.38592e-05 3.52705e-12 0.0114684 4.28639e-05 1.65155e-12 0.0113916 3.36924e-05 4.67677e-13 0.0113375 2.6137e-05 -2.28442e-13 0.0112988 2.00101e-05 -5.75114e-13 0.011271 1.51297e-05 -8.50803e-13 0.0112509 1.12959e-05 -1.00028e-12 0.0112364 8.32832e-06 -1.08325e-12 0.0112259 6.06484e-06 -1.12927e-12 0.0112183 4.36311e-06 -1.15451e-12 0.0112128 3.1016e-06 -1.16837e-12 0.0112089 2.17916e-06 -1.17582e-12 0.0112061 1.51359e-06 -1.17994e-12 0.0112042 1.03956e-06 -1.18222e-12 0.0112029 7.0616e-07 -1.18378e-12 0.0112019 4.74545e-07 -1.18409e-12 0.0112013 3.1553e-07 -1.18572e-12 0.0112009 2.07664e-07 -1.1843e-12 0.0112006 1.35204e-07 -1.18836e-12 0.0112004 8.72425e-08 -1.18089e-12 5.44288e-08 -1.19508e-12 0.016956 0.000112812 2.24552e-11 0.0173117 0.000354409 6.75942e-11 0.0188852 0.00095701 1.43115e-10 0.0227881 0.00295756 3.16486e-10 0.0283814 0.00807759 6.08118e-10 0.030748 0.0154973 1.74145e-10 0.0310684 0.018051 2.32847e-11 0.031716 0.0181641 -1.66697e-11 0.0308733 0.018477 -5.48723e-11 0.0298864 0.0173358 -9.09384e-11 0.0288711 0.0160755 -9.46127e-11 0.0279329 0.0147828 -7.85961e-11 0.0270934 0.0136069 -8.0257e-11 0.0263434 0.0125258 -8.07896e-11 0.025651 0.0115263 -7.58812e-11 0.0249989 0.0105946 -6.33075e-11 0.0243876 0.00972631 -3.94855e-11 0.0238254 0.00891776 -3.36097e-11 0.0233321 0.00816676 -3.23893e-11 0.0229248 0.00747292 -3.03912e-11 0.0226027 0.00683396 -3.03123e-11 0.0223561 0.0062444 -2.87095e-11 0.0221748 0.00569727 -2.62776e-11 0.0220509 0.0051885 -2.39348e-11 0.0219732 0.00471492 -2.2159e-11 0.0219295 0.00427239 -2.02597e-11 0.0219109 0.0038584 -1.9043e-11 0.0219132 0.00347152 -1.65508e-11 0.0219339 0.00311217 -1.48876e-11 0.0219625 0.00277903 -1.24258e-11 0.0219948 0.00247055 -9.75035e-12 0.0220243 0.00218523 -7.37085e-12 0.0220358 0.00192101 -5.2552e-12 0.0220252 0.0016756 -3.69848e-12 0.0219957 0.00144808 -3.13598e-12 0.0219482 0.0012379 -3.55905e-12 0.0218882 0.00104424 -4.72893e-12 0.021827 0.000866677 -6.95521e-12 0.0217702 0.000704475 -1.00153e-11 0.0217147 0.000556629 -1.3136e-11 0.0216624 0.000421598 -1.77112e-11 0.021618 0.000298586 -1.88943e-11 0.0215829 0.000185805 -2.20082e-11 0.0215514 8.27502e-05 -2.59643e-11 0.0214997 -5.35437e-06 -3.54591e-11 0.0214354 -9.65612e-05 -4.38306e-11 0.0213729 -0.000175633 -4.85059e-11 0.0213216 -0.00024204 -4.54318e-11 0.0212909 -0.000294277 -5.22191e-11 0.0212863 -0.000336969 -5.30942e-11 0.0213437 -0.000372028 -5.37941e-11 0.0214623 -0.000397441 -5.33009e-11 0.0216047 -0.000408696 -4.84353e-11 0.0217363 -0.000407908 -3.56988e-11 0.0218538 -0.000396954 -2.9283e-11 0.0219596 -0.000379426 -2.60522e-11 0.0220496 -0.000354731 -2.29336e-11 0.0221242 -0.000322457 -2.08259e-11 0.0221856 -0.000284778 -1.39021e-11 0.022235 -0.00024355 -7.42388e-12 0.0222718 -0.000199245 -5.32303e-13 0.0222999 -0.000150975 2.86645e-12 0.0223378 -9.83525e-05 6.53418e-12 0.0224098 -4.12553e-05 1.00849e-11 0.022497 2.15409e-05 1.21123e-11 0.0225536 9.04314e-05 1.67818e-11 0.0225267 0.000162019 1.818e-11 0.0223252 0.000229879 3.33607e-11 0.0217781 0.000282285 6.2038e-11 0.0202998 0.000303434 1.28509e-10 0.0187164 0.000283451 1.30196e-10 0.0171153 0.000254043 1.13421e-10 0.0156449 0.000222039 8.9168e-11 0.0144195 0.00018972 6.42242e-11 0.0134724 0.000158832 4.344e-11 0.0127783 0.000130926 2.82104e-11 0.0122873 0.000106518 1.78819e-11 0.0119483 8.56951e-05 9.7612e-12 0.011717 6.82765e-05 6.23891e-12 0.0115595 5.38781e-05 3.2203e-12 0.0114517 4.20916e-05 1.44871e-12 0.0113774 3.25376e-05 3.63763e-13 0.0113256 2.48708e-05 -3.10616e-13 0.0112892 1.87886e-05 -6.23731e-13 0.0112633 1.40355e-05 -8.74023e-13 0.0112449 1.03654e-05 -1.01327e-12 0.0112317 7.56715e-06 -1.09019e-12 0.0112223 5.46108e-06 -1.13285e-12 0.0112156 3.89638e-06 -1.15637e-12 0.0112109 2.74875e-06 -1.16931e-12 0.0112075 1.91763e-06 -1.17636e-12 0.0112052 1.32318e-06 -1.18031e-12 0.0112035 9.03186e-07 -1.18241e-12 0.0112024 6.09977e-07 -1.18395e-12 0.0112016 4.07673e-07 -1.18424e-12 0.0112011 2.69667e-07 -1.18584e-12 0.0112007 1.76611e-07 -1.18434e-12 0.0112005 1.14449e-07 -1.18841e-12 0.0112003 7.35252e-08 -1.18091e-12 4.5673e-08 -1.19519e-12 0.0168444 5.41735e-05 1.12302e-11 0.0170006 0.000122979 2.59105e-11 0.0173626 0.000370213 6.67645e-11 0.019105 0.00102215 1.495e-10 0.0233928 0.00303727 3.12957e-10 0.0287076 0.00813189 6.14607e-10 0.0308854 0.0151896 1.89448e-10 0.0312418 0.0176418 2.16339e-11 0.0318786 0.0178517 -3.79489e-11 0.0311374 0.0181274 -3.93996e-11 0.0302609 0.0171378 -7.42401e-11 0.0293469 0.016022 -8.49799e-11 0.0284781 0.0148316 -7.043e-11 0.0276716 0.0136927 -7.9776e-11 0.0269302 0.0126143 -8.15129e-11 0.0262418 0.0116096 -7.31902e-11 0.0256027 0.010678 -4.62429e-11 0.0250246 0.00981861 -3.59265e-11 0.0245176 0.00902671 -3.25039e-11 0.0240922 0.00829322 -3.06735e-11 0.0237567 0.00761432 -2.97843e-11 0.0234995 0.00698645 -2.71318e-11 0.0233061 0.00640662 -2.4175e-11 0.0231674 0.00586634 -2.09898e-11 0.0230742 0.0053623 -1.88045e-11 0.023014 0.00489127 -1.75846e-11 0.0229758 0.00445028 -1.49782e-11 0.0229568 0.00403849 -1.31668e-11 0.022955 0.00365597 -1.07807e-11 0.0229684 0.00330266 -9.19497e-12 0.022984 0.0029768 -7.48642e-12 0.0229956 0.00267529 -5.91356e-12 0.0229963 0.0023964 -4.75392e-12 0.0229698 0.00213743 -4.16037e-12 0.0229197 0.0018963 -4.20733e-12 0.0228535 0.00167267 -5.30527e-12 0.0227727 0.00146614 -6.90612e-12 0.0226868 0.00127589 -9.21738e-12 0.0226072 0.00110149 -1.22947e-11 0.0225328 0.000942087 -1.50554e-11 0.0224594 0.000796097 -1.8864e-11 0.0223894 0.000662092 -2.14592e-11 0.0223276 0.000539228 -2.31766e-11 0.0222757 0.000426528 -2.45475e-11 0.0222127 0.000322505 -2.75465e-11 0.0221275 0.000227153 -4.14756e-11 0.022037 0.000139553 -5.01164e-11 0.0219486 6.05671e-05 -4.74677e-11 0.021879 -3.74431e-06 -5.62982e-11 0.0218514 -6.27388e-05 -5.31248e-11 0.0218701 -0.000112864 -5.125e-11 0.0219347 -0.000150583 -4.52907e-11 0.022026 -0.000179164 -4.75552e-11 0.02213 -0.000199536 -4.49006e-11 0.0222169 -0.000209009 -2.75452e-11 0.0222875 -0.000207187 -2.51463e-11 0.0223437 -0.000198472 -2.19403e-11 0.0223856 -0.000183609 -1.81778e-11 0.0224161 -0.000161703 -1.21913e-11 0.0224368 -0.000134703 -7.56945e-12 0.0224467 -0.000103772 3.49635e-13 0.0224498 -6.8185e-05 3.75614e-12 0.0224639 -2.62228e-05 4.54077e-12 0.022514 2.25714e-05 5.41834e-12 0.0225972 7.96105e-05 6.82279e-12 0.0226651 0.000145568 1.15568e-11 0.0226674 0.000218063 1.4342e-11 0.0224746 0.000290193 3.46706e-11 0.0218568 0.000346483 7.2245e-11 0.0203095 0.000358422 1.39767e-10 0.0187269 0.000331008 1.2746e-10 0.0171179 0.000295313 1.09927e-10 0.0156356 0.00025522 8.62392e-11 0.0143998 0.000214056 6.17554e-11 0.013446 0.00017525 4.14376e-11 0.012749 0.000140897 2.6764e-11 0.012258 0.000111773 1.67777e-11 0.011921 8.77782e-05 9.62768e-12 0.0116926 6.84023e-05 5.55558e-12 0.0115383 5.2894e-05 2.88759e-12 0.0114338 4.05735e-05 1.25151e-12 0.0113626 3.08548e-05 2.40268e-13 0.0113136 2.32423e-05 -3.89084e-13 0.0112796 1.73258e-05 -6.73389e-13 0.0112559 1.27878e-05 -9.00386e-13 0.0112392 9.34178e-06 -1.02767e-12 0.0112274 6.75276e-06 -1.09804e-12 0.0112191 4.82948e-06 -1.13706e-12 0.0112132 3.41723e-06 -1.15862e-12 0.0112091 2.39229e-06 -1.17052e-12 0.0112063 1.65709e-06 -1.17706e-12 0.0112043 1.13583e-06 -1.18073e-12 0.0112029 7.70485e-07 -1.18273e-12 0.0112019 5.17317e-07 -1.18415e-12 0.0112013 3.4384e-07 -1.18442e-12 0.0112009 2.26257e-07 -1.18592e-12 0.0112006 1.47448e-07 -1.18439e-12 0.0112004 9.51013e-08 -1.18844e-12 0.0112003 6.08251e-08 -1.18103e-12 3.76202e-08 -1.19529e-12 0.0168308 1.81233e-05 3.70735e-12 0.0168535 5.39926e-05 1.14451e-11 0.0170152 0.000124407 2.62957e-11 0.0174338 0.000374926 6.69857e-11 0.0192308 0.0010325 1.47831e-10 0.023572 0.00301646 3.02776e-10 0.028765 0.00785357 5.95701e-10 0.030927 0.0146953 1.98475e-10 0.0314062 0.0172127 2.30946e-11 0.0320075 0.0175857 -3.4354e-11 0.0314577 0.0177931 -3.6721e-11 0.0307238 0.0169634 -4.30065e-11 0.0298681 0.0160009 -4.26619e-11 0.029021 0.0148991 -6.91428e-11 0.0282313 0.0137836 -8.1446e-11 0.027509 0.0127082 -7.93137e-11 0.0268526 0.0117059 -5.47753e-11 0.0262658 0.0107893 -3.66654e-11 0.0257521 0.00994779 -3.38497e-11 0.0253091 0.00916964 -3.09569e-11 0.0249429 0.00844638 -2.75678e-11 0.0246673 0.00777679 -2.44411e-11 0.0244637 0.0071581 -2.19245e-11 0.0243132 0.00658629 -1.77774e-11 0.0242037 0.00605157 -1.50327e-11 0.0241246 0.00555015 -1.23543e-11 0.0240675 0.00508104 -1.09416e-11 0.0240267 0.00464373 -9.42886e-12 0.0240048 0.00423784 -8.00151e-12 0.0239979 0.00386405 -6.77425e-12 0.0239998 0.0035196 -5.88596e-12 0.0239947 0.00320242 -5.25682e-12 0.0239755 0.00290761 -5.00606e-12 0.023937 0.00263421 -5.2798e-12 0.0238655 0.00237916 -6.15922e-12 0.0237741 0.00214113 -7.68686e-12 0.0236728 0.00192054 -9.82979e-12 0.0235626 0.00171688 -1.22998e-11 0.0234562 0.00152915 -1.54095e-11 0.0233599 0.00135687 -1.79144e-11 0.023267 0.00119868 -2.13788e-11 0.0231738 0.00105271 -2.46619e-11 0.0230832 0.000917691 -2.65289e-11 0.0230034 0.000793052 -2.71443e-11 0.0229211 0.000677647 -2.8569e-11 0.0228175 0.000570437 -2.95459e-11 0.0227068 0.000471498 -3.65062e-11 0.0225983 0.000380108 -3.52306e-11 0.0225026 0.000299145 -4.83745e-11 0.0224424 0.000228273 -5.35661e-11 0.0224306 0.000167644 -4.93761e-11 0.0224623 0.000116894 -3.88718e-11 0.0225214 7.53892e-05 -4.15947e-11 0.022583 4.36235e-05 -3.1081e-11 0.0226356 1.9358e-05 -2.65915e-11 0.0226764 3.03494e-06 -2.08456e-11 0.0227038 -4.84449e-06 -1.98344e-11 0.0227156 -5.31726e-06 -1.84059e-11 0.0227167 4.58238e-07 -1.19278e-11 0.0227101 1.23359e-05 -5.03516e-12 0.0226971 2.95989e-05 -9.71217e-13 0.0226788 5.23642e-05 -7.68225e-13 0.0226677 8.22922e-05 1.20593e-12 0.0226962 0.000121728 2.20161e-12 0.022769 0.000171576 4.18638e-12 0.0228288 0.000231895 8.45374e-12 0.0228105 0.00029826 1.67461e-11 0.022538 0.000361564 4.50892e-11 0.0216977 0.00040593 8.9371e-11 0.0202739 0.0004059 1.34567e-10 0.0187263 0.0003789 1.21097e-10 0.0171108 0.000338171 1.06116e-10 0.0156142 0.000288828 8.31941e-11 0.0143673 0.000237521 5.924e-11 0.0134081 0.00018975 3.94282e-11 0.0127106 0.000148638 2.52277e-11 0.012222 0.000114936 1.56228e-11 0.0118891 8.81067e-05 8.86316e-12 0.0116653 6.71507e-05 4.86682e-12 0.0115156 5.08938e-05 2.56824e-12 0.0114152 3.83385e-05 1.04247e-12 0.0113476 2.86825e-05 1.16994e-13 0.0113018 2.12914e-05 -4.45967e-13 0.0112704 1.56646e-05 -7.33408e-13 0.0112487 1.14238e-05 -9.26465e-13 0.0112338 8.25522e-06 -1.04186e-12 0.0112233 5.90874e-06 -1.10588e-12 0.0112161 4.1879e-06 -1.14135e-12 0.011211 2.93877e-06 -1.16096e-12 0.0112076 2.0416e-06 -1.17183e-12 0.0112051 1.40413e-06 -1.17782e-12 0.0112035 9.56055e-07 -1.18121e-12 0.0112023 6.44506e-07 -1.18305e-12 0.0112016 4.30204e-07 -1.18438e-12 0.011201 2.84362e-07 -1.18462e-12 0.0112007 1.86143e-07 -1.18604e-12 0.0112005 1.20706e-07 -1.18448e-12 0.0112003 7.74865e-08 -1.1885e-12 0.0112002 4.93408e-08 -1.18113e-12 3.03857e-08 -1.19537e-12 0.0168095 7.12421e-06 1.58083e-12 0.0168319 1.77896e-05 3.73693e-12 0.0168592 4.89671e-05 1.14295e-11 0.0170203 0.000124401 2.64934e-11 0.0174653 0.000353591 6.67053e-11 0.0192521 0.00100599 1.4665e-10 0.023323 0.00296053 2.98771e-10 0.0287046 0.00712163 5.97691e-10 0.0309349 0.0141734 1.95021e-10 0.031596 0.016816 1.7665e-11 0.0321526 0.0173251 -3.09338e-11 0.0317704 0.0174791 -3.21775e-11 0.0311985 0.0167888 -3.19964e-11 0.0303942 0.0159849 -2.44683e-11 0.0295939 0.0149696 -6.30823e-11 0.0288366 0.0138874 -7.81025e-11 0.0281556 0.0128301 -7.16568e-11 0.0275494 0.0118484 -4.03652e-11 0.0270155 0.0109436 -3.2584e-11 0.0265573 0.0101105 -3.09274e-11 0.0261697 0.00933921 -2.55572e-11 0.0258664 0.00862268 -2.21256e-11 0.0256495 0.00796234 -1.84101e-11 0.0254879 0.00735271 -1.56941e-11 0.0253608 0.00678443 -1.17917e-11 0.0252594 0.00625077 -9.33721e-12 0.0251807 0.00575202 -7.83824e-12 0.0251212 0.0052884 -6.6377e-12 0.0250788 0.00485969 -5.78584e-12 0.0250536 0.00446465 -5.07177e-12 0.0250364 0.00410179 -5.17417e-12 0.0250161 0.00376688 -5.28801e-12 0.0249768 0.00345682 -6.12235e-12 0.0249151 0.00316693 -7.07554e-12 0.0248288 0.00289703 -8.7388e-12 0.0247113 0.0026443 -1.08048e-11 0.0245831 0.00240828 -1.31666e-11 0.0244527 0.00218993 -1.58778e-11 0.0243195 0.00198811 -1.88695e-11 0.024196 0.0018015 -2.1037e-11 0.0240823 0.00162959 -2.40393e-11 0.0239679 0.00147053 -2.69355e-11 0.0238505 0.00132214 -2.73361e-11 0.0237408 0.00118405 -2.77355e-11 0.0236349 0.00105568 -2.87809e-11 0.0235114 0.000935458 -2.89738e-11 0.0233785 0.000823328 -3.35985e-11 0.023251 0.000718984 -3.72615e-11 0.0231313 0.000623957 -4.4163e-11 0.0230418 0.000539688 -5.03114e-11 0.0229967 0.000465194 -4.7301e-11 0.0229945 0.00040078 -4.394e-11 0.0230215 0.00034586 -4.03777e-11 0.0230589 0.000299747 -2.95535e-11 0.0230901 0.00026187 -2.32894e-11 0.0231052 0.000231563 -1.92044e-11 0.0231003 0.000208899 -1.79922e-11 0.0230849 0.000193519 -1.41627e-11 0.0230604 0.000185707 -1.09706e-11 0.0230296 0.000184938 -1.6782e-12 0.0229964 0.000190202 1.24795e-12 0.0229628 0.000201868 1.2484e-12 0.0229385 0.000221523 2.53487e-12 0.0229407 0.000251245 3.89282e-12 0.0229717 0.000291882 6.83157e-12 0.0229777 0.000341874 1.1528e-11 0.0228854 0.000396772 2.64337e-11 0.0225545 0.000446831 5.05428e-11 0.021566 0.000477156 1.02068e-10 0.0202837 0.000469628 1.14827e-10 0.018736 0.000437852 1.15359e-10 0.0170968 0.000385872 1.0251e-10 0.015579 0.000322931 8.01321e-11 0.01432 0.000258964 5.65678e-11 0.0133576 0.000201346 3.73056e-11 0.0126625 0.000153473 2.3618e-11 0.0121794 0.000115599 1.44281e-11 0.0118531 8.64791e-05 8.12125e-12 0.0116357 6.44639e-05 4.2779e-12 0.0114917 4.78853e-05 2.2445e-12 0.0113963 3.54267e-05 8.47346e-13 0.0113328 2.60799e-05 -2.12023e-15 0.0112902 1.90833e-05 -5.26692e-13 0.0112616 1.38588e-05 -7.78525e-13 0.0112421 9.98566e-06 -9.49601e-13 0.0112288 7.1389e-06 -1.05551e-12 0.0112197 5.06002e-06 -1.11376e-12 0.0112134 3.55444e-06 -1.14576e-12 0.0112091 2.47384e-06 -1.16342e-12 0.0112062 1.7056e-06 -1.17322e-12 0.0112042 1.16478e-06 -1.17863e-12 0.0112028 7.8788e-07 -1.18173e-12 0.0112019 5.27865e-07 -1.18338e-12 0.0112012 3.50306e-07 -1.18462e-12 0.0112008 2.30286e-07 -1.1848e-12 0.0112005 1.49966e-07 -1.18617e-12 0.0112004 9.6771e-08 -1.18459e-12 0.0112002 6.18318e-08 -1.18859e-12 0.0112002 3.92017e-08 -1.18123e-12 2.40395e-08 -1.19543e-12 0.0168055 2.33446e-06 3.57557e-13 0.0168144 5.3884e-06 1.01691e-12 0.0168267 1.77329e-05 4.18528e-12 0.016885 3.94507e-05 7.18022e-12 0.0169974 0.000124676 2.93876e-11 0.0175687 0.000296375 4.66841e-11 0.0191373 0.000968604 1.40693e-10 0.0227487 0.0026097 2.84758e-10 0.0283013 0.00643212 5.78843e-10 0.0309125 0.0134936 1.86021e-10 0.0318511 0.0163828 1.11196e-11 0.0323829 0.0170661 -1.68156e-11 0.0320978 0.0172036 -1.11282e-11 0.0315972 0.0166284 -5.9768e-12 0.0309136 0.0159157 -7.36131e-12 0.030207 0.0150221 -6.39512e-11 0.0295162 0.0140068 -7.0525e-11 0.0288851 0.0129934 -4.36829e-11 0.0283226 0.012032 -3.21145e-11 0.0278446 0.0111381 -2.97022e-11 0.02744 0.0103103 -2.35986e-11 0.0271117 0.00954026 -1.92574e-11 0.0268698 0.00882831 -1.67575e-11 0.0266878 0.00817179 -1.23521e-11 0.0265394 0.00756343 -8.94413e-12 0.0264157 0.00699594 -6.25305e-12 0.0263142 0.00646674 -4.93432e-12 0.0262362 0.00597626 -4.32503e-12 0.0261776 0.00552425 -4.24422e-12 0.0261329 0.00510824 -4.3313e-12 0.0260959 0.00472545 -5.18858e-12 0.0260546 0.00437232 -6.21944e-12 0.0259957 0.00404463 -7.73763e-12 0.0259097 0.00373862 -9.37082e-12 0.0257987 0.00345145 -1.14338e-11 0.0256636 0.00318285 -1.39206e-11 0.025506 0.00293094 -1.64409e-11 0.0253494 0.00269587 -1.91587e-11 0.0251957 0.00247851 -2.20087e-11 0.0250427 0.00227658 -2.39207e-11 0.0249027 0.00208904 -2.60504e-11 0.0247669 0.00191523 -2.8434e-11 0.0246254 0.00175239 -2.90655e-11 0.0244859 0.00159938 -2.99224e-11 0.0243526 0.00145635 -3.00631e-11 0.0242083 0.00132184 -2.91422e-11 0.0240529 0.00119535 -2.92898e-11 0.0239049 0.00107696 -3.05815e-11 0.0237656 0.000967372 -3.10407e-11 0.0236505 0.000868875 -4.14697e-11 0.0235749 0.000779928 -3.96118e-11 0.0235389 0.000701256 -3.66951e-11 0.023533 0.000632252 -3.05575e-11 0.0235401 0.000572074 -2.35583e-11 0.0235447 0.00051997 -1.93022e-11 0.0235373 0.000475514 -1.5894e-11 0.0235139 0.000438645 -1.37309e-11 0.0234768 0.000409418 -9.09187e-12 0.0234303 0.000388039 -4.26536e-12 0.023379 0.000374696 -1.35879e-14 0.0233287 0.000369207 3.41653e-12 0.0232805 0.000371289 3.96162e-12 0.0232373 0.000381678 5.08427e-12 0.0232034 0.000401672 7.16772e-12 0.0231897 0.000432073 1.12542e-11 0.0231633 0.000471814 1.75359e-11 0.0230237 0.000516607 2.96e-11 0.0226259 0.000556112 5.64162e-11 0.0216325 0.000570767 1.03226e-10 0.0203328 0.000552231 1.1243e-10 0.0187459 0.000504946 1.13264e-10 0.017068 0.000434962 1.00052e-10 0.0155244 0.000354344 7.73199e-11 0.0142549 0.000276095 5.38779e-11 0.0132931 0.000208529 3.51167e-11 0.0126047 0.000154551 2.19862e-11 0.0121308 0.000113351 1.31702e-11 0.0118136 8.27607e-05 7.40357e-12 0.0116044 6.03347e-05 3.68801e-12 0.0114673 4.39299e-05 1.93395e-12 0.0113774 3.19254e-05 6.45134e-13 0.0113183 2.31324e-05 -1.24572e-13 0.0112793 1.66893e-05 -5.81819e-13 0.0112534 1.19674e-05 -8.42991e-13 0.011236 8.52145e-06 -9.69043e-13 0.0112243 6.02777e-06 -1.0696e-12 0.0112164 4.23171e-06 -1.12165e-12 0.011211 2.94672e-06 -1.15013e-12 0.0112074 2.03446e-06 -1.16585e-12 0.011205 1.39228e-06 -1.17461e-12 0.0112033 9.44274e-07 -1.17945e-12 0.0112022 6.34621e-07 -1.18225e-12 0.0112015 4.22626e-07 -1.18372e-12 0.011201 2.7888e-07 -1.18486e-12 0.0112006 1.82353e-07 -1.18498e-12 0.0112004 1.18152e-07 -1.1863e-12 0.0112003 7.58771e-08 -1.18469e-12 0.0112002 4.82607e-08 -1.18867e-12 0.0112001 3.04686e-08 -1.18133e-12 1.86074e-08 -1.19549e-12 0.016805 4.2598e-07 -1.32363e-13 0.0168066 1.63526e-06 2.5947e-13 0.0168177 4.46493e-06 7.83844e-13 0.0168255 1.4373e-05 3.7014e-12 0.0168931 3.47609e-05 5.8402e-12 0.0169684 0.000106418 2.73071e-11 0.0175503 0.000262265 3.9409e-11 0.0188931 0.000835872 1.42958e-10 0.0221795 0.00226359 2.53574e-10 0.027971 0.00557272 5.82712e-10 0.0310632 0.0127138 1.58439e-10 0.0322011 0.015845 3.19921e-11 0.0325732 0.0168447 1.2391e-11 0.0323239 0.0169008 1.16483e-11 0.0318875 0.016396 2.03999e-11 0.0314275 0.0157883 -1.9784e-11 0.0308541 0.0150578 -4.03057e-11 0.0302427 0.0141384 -4.35167e-11 0.0296781 0.0131736 -3.3163e-11 0.0291855 0.0122432 -2.81505e-11 0.0287646 0.0113627 -2.1563e-11 0.028408 0.0105357 -1.81371e-11 0.0281272 0.0097637 -1.26573e-11 0.0279142 0.0090533 -8.8316e-12 0.0277401 0.00839994 -5.93663e-12 0.0275955 0.0077949 -3.49675e-12 0.0274744 0.00723416 -2.76144e-12 0.0273767 0.00671564 -2.78698e-12 0.0273005 0.00623846 -3.36342e-12 0.0272369 0.00580022 -4.3101e-12 0.0271767 0.00539611 -5.89341e-12 0.0271114 0.00502249 -7.71693e-12 0.0270298 0.00467561 -9.59824e-12 0.0269208 0.00435139 -1.18316e-11 0.0267826 0.00404632 -1.41567e-11 0.0266215 0.00375921 -1.67053e-11 0.0264435 0.00348963 -1.89204e-11 0.0262544 0.00323708 -2.11139e-11 0.0260749 0.00300116 -2.33279e-11 0.0258996 0.00278253 -2.4982e-11 0.0257279 0.00257784 -2.62265e-11 0.0255691 0.00238692 -2.78232e-11 0.0254055 0.00220821 -2.79845e-11 0.0252368 0.00203893 -2.67627e-11 0.0250744 0.00187941 -2.63773e-11 0.0249075 0.00172908 -2.52459e-11 0.024729 0.00158689 -2.48742e-11 0.0245581 0.00145314 -3.18732e-11 0.0243997 0.00132826 -2.59955e-11 0.0242609 0.00121422 -3.51583e-11 0.0241579 0.00111053 -3.30329e-11 0.024091 0.00101693 -2.60696e-11 0.0240523 0.000933215 -2.06049e-11 0.0240286 0.00085847 -1.71319e-11 0.0240059 0.000791915 -1.38096e-11 0.0239753 0.000733152 -1.11121e-11 0.0239327 0.00068219 -6.99414e-12 0.0238777 0.000639269 -2.54497e-12 0.0238134 0.000604693 1.33427e-12 0.0237455 0.000578843 5.38647e-12 0.02368 0.000561933 7.0481e-12 0.0236204 0.00055387 7.55505e-12 0.0235654 0.000555253 8.13926e-12 0.0235135 0.000566446 1.0334e-11 0.0234691 0.000588296 9.43999e-12 0.0234141 0.000619088 1.91909e-11 0.0232304 0.000653939 3.63108e-11 0.0227265 0.000680751 6.60701e-11 0.02173 0.000677706 1.05454e-10 0.0203833 0.000640743 1.12466e-10 0.0187369 0.000572134 1.12516e-10 0.017012 0.000478884 9.78819e-11 0.0154435 0.0003787 7.43603e-11 0.0141688 0.000286187 5.10183e-11 0.0132139 0.000209781 3.27505e-11 0.0125377 0.000151135 2.03186e-11 0.012077 0.000107945 1.19718e-11 0.0117717 7.69268e-05 6.59642e-12 0.0115724 5.48649e-05 3.08557e-12 0.011443 3.91641e-05 1.61318e-12 0.0113592 2.79637e-05 4.52416e-13 0.0113047 1.99486e-05 -2.39896e-13 0.0112692 1.41979e-05 -6.45003e-13 0.0112459 1.00601e-05 -8.89293e-13 0.0112305 7.08176e-06 -9.9723e-13 0.0112203 4.95768e-06 -1.08285e-12 0.0112135 3.44814e-06 -1.12919e-12 0.011209 2.38091e-06 -1.15437e-12 0.011206 1.63115e-06 -1.16825e-12 0.011204 1.10833e-06 -1.17599e-12 0.0112026 7.4672e-07 -1.18026e-12 0.0112017 4.98751e-07 -1.18276e-12 0.0112011 3.30221e-07 -1.18405e-12 0.0112008 2.16718e-07 -1.18509e-12 0.0112005 1.40979e-07 -1.18514e-12 0.0112003 9.09005e-08 -1.18642e-12 0.0112002 5.81078e-08 -1.18478e-12 0.0112002 3.67966e-08 -1.18876e-12 0.0112001 2.31372e-08 -1.18142e-12 1.40747e-08 -1.19556e-12 0.0168034 4.79268e-08 -2.73186e-13 0.016807 2.56227e-07 -2.71914e-13 0.01681 8.89676e-07 1.33266e-13 0.0168209 3.07243e-06 4.78106e-13 0.016832 1.07249e-05 2.70698e-12 0.0168876 2.77914e-05 5.57409e-12 0.0169696 8.56661e-05 2.19162e-11 0.0174327 0.000218178 3.66765e-11 0.0186267 0.000679212 1.23528e-10 0.0214775 0.00186247 2.2594e-10 0.0276884 0.0046296 5.07609e-10 0.0311521 0.0115193 1.64831e-10 0.0323214 0.0150564 1.36607e-10 0.0324978 0.0164633 7.08322e-11 0.032432 0.0164459 4.3381e-11 0.0322595 0.0160839 -1.00113e-11 0.0319544 0.0155984 -1.45896e-11 0.0315117 0.0150389 -2.98752e-11 0.0310158 0.014254 -3.05307e-11 0.0305444 0.0133623 -2.22388e-11 0.0301227 0.0124672 -2.06534e-11 0.029744 0.0116027 -1.37887e-11 0.029426 0.0107777 -1.38653e-11 0.0291801 0.0100133 -7.9026e-12 0.0289795 0.00931168 -3.13896e-12 0.0288122 0.00866512 -2.34029e-12 0.0286714 0.00806921 -1.44349e-12 0.0285524 0.00751975 -2.01238e-12 0.0284544 0.00701437 -3.93005e-12 0.0283688 0.00655017 -5.00058e-12 0.0282826 0.00612199 -6.63367e-12 0.0281889 0.00572511 -9.33499e-12 0.0280803 0.00535606 -1.19398e-11 0.0279472 0.00501099 -1.37832e-11 0.0277832 0.00468587 -1.54892e-11 0.0275933 0.0043782 -1.7424e-11 0.0273874 0.00408805 -1.95781e-11 0.027175 0.00381522 -2.15172e-11 0.0269606 0.00355979 -2.31014e-11 0.0267595 0.00332034 -2.43223e-11 0.026562 0.00309751 -2.45851e-11 0.0263706 0.00288706 -2.51454e-11 0.0261874 0.0026899 -2.53186e-11 0.0259925 0.00250318 -2.45482e-11 0.0257984 0.00232528 -2.53298e-11 0.0256072 0.00215712 -2.51142e-11 0.0254065 0.00199771 -2.32925e-11 0.0252108 0.00184714 -2.47274e-11 0.0250316 0.00170572 -2.3308e-11 0.0248702 0.00157509 -2.13214e-11 0.0247412 0.00145555 -2.03457e-11 0.0246457 0.00134625 -1.79309e-11 0.0245764 0.0012471 -1.50075e-11 0.024522 0.0011572 -1.10063e-11 0.0244716 0.0010758 -6.80875e-12 0.0244177 0.00100254 -2.16655e-12 0.0243563 0.000937525 1.42545e-12 0.0242858 0.00088103 5.83893e-12 0.0242073 0.000833524 9.26849e-12 0.0241249 0.000795365 1.06308e-11 0.0240463 0.000767116 1.3425e-11 0.0239765 0.000748622 1.21447e-11 0.0239137 0.000740039 1.25116e-11 0.0238518 0.000742554 1.59887e-11 0.0237862 0.000755378 1.35386e-11 0.0236948 0.000776839 2.23386e-11 0.0234696 0.000800063 3.99872e-11 0.0228337 0.000809984 7.85496e-11 0.0218283 0.000785356 9.90293e-11 0.0204103 0.000725313 1.12105e-10 0.0186921 0.000629888 1.11504e-10 0.0169188 0.000511263 9.5262e-11 0.0153317 0.000391707 7.09896e-11 0.0140606 0.000286843 4.78375e-11 0.0131208 0.000204016 3.028e-11 0.0124629 0.000142865 1.84982e-11 0.0120194 9.94076e-05 1.07234e-11 0.0117286 6.91777e-05 5.83816e-12 0.0115404 4.82925e-05 2.57457e-12 0.0114196 3.38149e-05 1.30023e-12 0.011342 2.37308e-05 2.61681e-13 0.0112922 1.66709e-05 -3.52517e-13 0.01126 1.17066e-05 -7.06985e-13 0.0112392 8.20408e-06 -9.23631e-13 0.0112257 5.7196e-06 -1.03589e-12 0.0112169 3.96194e-06 -1.08897e-12 0.0112111 2.7315e-06 -1.13558e-12 0.0112073 1.87086e-06 -1.15829e-12 0.0112048 1.27233e-06 -1.1705e-12 0.0112031 8.58698e-07 -1.17729e-12 0.0112021 5.74921e-07 -1.18103e-12 0.0112013 3.81768e-07 -1.18325e-12 0.0112009 2.51387e-07 -1.18435e-12 0.0112006 1.64132e-07 -1.18531e-12 0.0112004 1.06253e-07 -1.18529e-12 0.0112003 6.8195e-08 -1.18653e-12 0.0112002 4.34037e-08 -1.18485e-12 0.0112001 2.7371e-08 -1.18885e-12 0.0112001 1.71453e-08 -1.1815e-12 1.03913e-08 -1.19563e-12 0.0168033 4.16349e-08 -3.55369e-13 0.0168051 2.86756e-08 -2.4463e-13 0.0168089 1.35922e-07 -3.48693e-13 0.0168142 4.66323e-07 -1.4481e-13 0.0168265 1.87862e-06 3.6848e-14 0.0168356 6.61975e-06 2.64111e-12 0.0168894 2.02307e-05 2.24167e-12 0.0169707 6.23354e-05 2.27401e-11 0.0172994 0.000172391 2.48147e-11 0.0183088 0.000515389 1.16003e-10 0.0207238 0.00144131 1.9674e-10 0.0269976 0.00377435 4.16011e-10 0.0306974 0.00879384 5.16356e-10 0.0319899 0.0139992 2.62704e-10 0.0324683 0.0157519 6.03708e-11 0.0325286 0.0160533 1.16932e-11 0.0324893 0.0158096 1.1316e-11 0.0324585 0.015368 6.50858e-12 0.0322084 0.014931 -2.9705e-12 0.0318471 0.0143157 -1.34085e-11 0.0314722 0.0135339 -1.15951e-11 0.03111 0.0126985 -1.13892e-11 0.0307778 0.0118617 -9.42737e-12 0.0305038 0.0110603 -6.97423e-12 0.0302757 0.0103139 -2.18265e-12 0.0300835 0.00962422 -1.60688e-12 0.0299196 0.00898963 -2.4413e-12 0.0297774 0.00840538 -2.70606e-12 0.029651 0.00786768 -3.94387e-12 0.0295351 0.00737152 -6.6831e-12 0.0294197 0.00691444 -9.0007e-12 0.0292946 0.00649049 -1.04509e-11 0.0291554 0.00609568 -1.25866e-11 0.0289944 0.00572599 -1.53179e-11 0.0288034 0.00537723 -1.73608e-11 0.0285838 0.00504609 -1.80027e-11 0.0283462 0.00473202 -1.76368e-11 0.0281026 0.00443553 -1.75492e-11 0.0278613 0.00415694 -1.75699e-11 0.0276248 0.00389545 -1.85551e-11 0.0274019 0.00364943 -1.88369e-11 0.0271806 0.00341893 -1.91661e-11 0.0269668 0.00319951 -1.93582e-11 0.0267532 0.00299304 -1.82647e-11 0.0265263 0.0027954 -1.78563e-11 0.0263058 0.00260681 -1.76585e-11 0.0260842 0.0024282 -1.50554e-11 0.025864 0.00225904 -1.55748e-11 0.0256625 0.00209962 -1.4632e-11 0.0254782 0.00195093 -9.48316e-12 0.0253229 0.00181417 -1.19148e-11 0.0252002 0.00168801 -7.20389e-12 0.0251026 0.00157254 -3.39684e-12 0.0250201 0.00146682 6.91818e-13 0.0249434 0.00137009 4.84228e-12 0.0248661 0.00128203 9.06627e-12 0.0247854 0.00120275 1.22641e-11 0.0246998 0.00113268 1.77228e-11 0.024609 0.00107222 2.05725e-11 0.024515 0.00102186 2.27152e-11 0.0244245 0.000982004 2.28098e-11 0.0243451 0.000953064 1.92446e-11 0.0242755 0.000934589 1.92787e-11 0.0242048 0.000926202 1.76506e-11 0.0241191 0.000928363 1.60374e-11 0.0239867 0.000937869 2.80954e-11 0.0236952 0.000945736 4.80333e-11 0.0229879 0.00093216 8.58086e-11 0.0219031 0.000883349 1.02122e-10 0.0203928 0.000795373 1.13911e-10 0.0185972 0.000668497 1.10732e-10 0.0167817 0.000526117 9.22486e-11 0.0151877 0.000390037 6.71572e-11 0.013932 0.000276623 4.43903e-11 0.0130164 0.000190919 2.76838e-11 0.0123829 0.000129997 1.66569e-11 0.0119603 8.81504e-05 9.48176e-12 0.0116857 5.99417e-05 5.06567e-12 0.0115097 4.0982e-05 2.09465e-12 0.0113976 2.8173e-05 9.97345e-13 0.0113264 1.94528e-05 7.75863e-14 0.011281 1.34677e-05 -4.60455e-13 0.011252 9.33204e-06 -7.6933e-13 0.0112335 6.46409e-06 -9.49889e-13 0.0112216 4.46991e-06 -1.05685e-12 0.011214 3.07376e-06 -1.1089e-12 0.0112091 2.09882e-06 -1.14235e-12 0.0112059 1.42684e-06 -1.16188e-12 0.0112038 9.63768e-07 -1.17257e-12 0.0112025 6.46303e-07 -1.1785e-12 0.0112016 4.30202e-07 -1.18174e-12 0.011201 2.84133e-07 -1.1837e-12 0.0112007 1.86151e-07 -1.18462e-12 0.0112004 1.20961e-07 -1.18551e-12 0.0112003 7.79533e-08 -1.18541e-12 0.0112002 4.98191e-08 -1.18663e-12 0.0112001 3.15803e-08 -1.18492e-12 0.0112001 1.98382e-08 -1.18894e-12 0.0112001 1.23833e-08 -1.18155e-12 7.4798e-09 -1.19571e-12 0.0168034 1.09154e-08 -2.93657e-13 0.0168051 8.65292e-09 -3.20535e-13 0.016808 1.52218e-08 -3.67165e-13 0.0168122 9.05636e-08 -2.49612e-13 0.0168199 1.56027e-07 -3.61326e-13 0.0168317 1.05607e-06 -2.0719e-13 0.0168548 3.06322e-06 1.43051e-12 0.0168815 1.39513e-05 3.33176e-12 0.01699 3.78221e-05 1.21889e-11 0.0172207 0.000130301 2.64246e-11 0.0180746 0.000347234 7.08473e-11 0.0200517 0.00107255 1.67966e-10 0.0245846 0.00272901 3.95174e-10 0.0291895 0.00619478 6.97719e-10 0.0315445 0.0124659 1.93246e-10 0.0324944 0.0148146 5.41279e-11 0.0327335 0.0156426 3.48824e-11 0.0327983 0.0155615 2.10188e-11 0.0329332 0.0151522 1.93061e-11 0.0329184 0.0147271 1.20648e-11 0.0326915 0.0142459 9.52594e-12 0.0324306 0.0136269 2.36125e-13 0.0321407 0.0129004 -3.92383e-12 0.0318714 0.0121272 -5.99711e-12 0.0316301 0.0113745 -1.07873e-12 0.0314179 0.0106605 -2.37956e-12 0.0312315 0.00999436 -2.73788e-12 0.0310617 0.00937655 -4.19296e-12 0.0309005 0.00880276 -6.79986e-12 0.0307463 0.00827179 -7.91502e-12 0.0305955 0.00778135 -1.00039e-11 0.0304384 0.00732743 -1.20839e-11 0.0302659 0.0069039 -1.34479e-11 0.0300721 0.00650551 -1.45314e-11 0.0298502 0.00612875 -1.56404e-11 0.0295987 0.00577012 -1.67148e-11 0.0293267 0.00542829 -1.743e-11 0.0290481 0.00510405 -1.78321e-11 0.0287738 0.00479816 -1.71999e-11 0.028507 0.00451053 -1.6411e-11 0.0282491 0.00423928 -1.51234e-11 0.0280018 0.0039832 -1.36138e-11 0.0277546 0.0037409 -1.26567e-11 0.0275139 0.00350954 -1.07319e-11 0.0272659 0.0032903 -9.34831e-12 0.0270101 0.00307918 -8.12477e-12 0.0267645 0.00287833 -5.65605e-12 0.0265219 0.00268823 -3.48747e-12 0.0262963 0.00250891 -3.99185e-12 0.0260905 0.00234033 3.72116e-12 0.0259084 0.00218454 1.26679e-12 0.0257584 0.00204004 5.51755e-12 0.0256342 0.001907 1.00923e-11 0.0255261 0.00178456 1.42565e-11 0.0254251 0.00167188 1.83486e-11 0.0253258 0.00156853 2.37545e-11 0.0252256 0.0014746 2.9392e-11 0.0251239 0.00139058 3.32233e-11 0.0250204 0.0013169 3.50264e-11 0.0249159 0.00125393 3.54474e-11 0.0248149 0.00120197 3.40974e-11 0.0247243 0.00116135 2.91855e-11 0.0246452 0.00113176 3.05613e-11 0.0245638 0.00111243 2.54104e-11 0.0244539 0.00110098 2.06954e-11 0.0242725 0.00109333 3.91061e-11 0.0238527 0.00107817 6.75553e-11 0.0231072 0.00103735 8.80106e-11 0.0219262 0.000960001 1.0705e-10 0.0203128 0.000837806 1.16811e-10 0.0184427 0.000682265 1.10068e-10 0.0165988 0.000519015 8.88905e-11 0.0150142 0.000372 6.29877e-11 0.0137874 0.000255509 4.07861e-11 0.012905 0.000171151 2.49801e-11 0.0123012 0.000113401 1.48587e-11 0.0119023 7.49909e-05 8.20291e-12 0.0116451 4.98645e-05 4.36758e-12 0.0114814 3.34182e-05 1.69406e-12 0.0113779 2.25721e-05 7.14281e-13 0.0113125 1.53472e-05 -9.02279e-14 0.0112713 1.04849e-05 -5.59179e-13 0.0112453 7.18208e-06 -8.29103e-13 0.0112288 4.92135e-06 -9.83123e-13 0.0112183 3.36695e-06 -1.06983e-12 0.0112117 2.29845e-06 -1.12184e-12 0.0112075 1.56337e-06 -1.15093e-12 0.0112048 1.05553e-06 -1.16419e-12 0.011203 7.07626e-07 -1.17427e-12 0.011202 4.71707e-07 -1.17951e-12 0.0112013 3.12404e-07 -1.18236e-12 0.0112008 2.05324e-07 -1.1841e-12 0.0112005 1.33887e-07 -1.18486e-12 0.0112003 8.66173e-08 -1.18569e-12 0.0112002 5.55931e-08 -1.18551e-12 0.0112002 3.53928e-08 -1.18672e-12 0.0112001 2.23538e-08 -1.18497e-12 0.0112001 1.3993e-08 -1.18903e-12 0.0112001 8.70709e-09 -1.1816e-12 5.24334e-09 -1.1958e-12 0.0168034 2.05661e-09 -2.86912e-13 0.016805 8.06392e-10 -3.48462e-13 0.016808 1.77535e-09 -3.10658e-13 0.0168118 1.5346e-08 -3.59702e-13 0.0168182 1.0147e-08 -3.14607e-13 0.0168267 1.34192e-07 -3.85121e-13 0.0168413 3.59585e-07 -1.1935e-13 0.0168691 1.76287e-06 -1.86287e-13 0.0169038 6.27376e-06 2.27371e-12 0.0170114 2.33264e-05 5.46346e-12 0.017162 7.96756e-05 2.25634e-11 0.0178207 0.000228774 4.71247e-11 0.0192869 0.000716609 1.16941e-10 0.0225877 0.00189095 2.34012e-10 0.0280425 0.0045245 4.70779e-10 0.0312208 0.0105439 1.59849e-10 0.0324722 0.013769 1.47555e-10 0.0330177 0.0150373 5.48519e-11 0.0332036 0.0151723 3.22918e-11 0.0332895 0.0148821 3.34647e-11 0.0334443 0.0144407 2.99386e-11 0.0334849 0.0140377 2.24425e-11 0.0333466 0.0135854 1.35592e-11 0.0331631 0.0130061 3.8194e-12 0.0329674 0.0123439 2.63889e-12 0.0327679 0.011669 -4.3548e-13 0.0325732 0.01101 -3.85966e-12 0.0323779 0.0103808 -6.30505e-12 0.0321844 0.00978571 -5.14941e-12 0.0319955 0.00923036 -7.54272e-12 0.0318108 0.00871186 -9.57435e-12 0.0316231 0.00822991 -1.12592e-11 0.0314178 0.00777719 -1.19836e-11 0.0311877 0.00734846 -1.27665e-11 0.0309304 0.0069402 -1.35053e-11 0.0306443 0.00655048 -1.36384e-11 0.0303357 0.00617717 -1.30159e-11 0.0300186 0.00582095 -1.1905e-11 0.0297072 0.00548333 -1.01256e-11 0.0294074 0.00516505 -8.31168e-12 0.0291172 0.00486444 -6.50331e-12 0.0288366 0.00457949 -4.65567e-12 0.0285629 0.00430905 -3.35488e-12 0.0282882 0.00405127 -1.26066e-12 0.0280166 0.00380446 5.72347e-13 0.0277362 0.00356918 2.50734e-12 0.0274578 0.00334284 5.27416e-12 0.0271943 0.00312857 8.05243e-12 0.0269443 0.00292636 1.01479e-11 0.0267172 0.00273611 1.39303e-11 0.0265101 0.00255829 1.95534e-11 0.0263329 0.0023941 1.7675e-11 0.0261836 0.00224166 2.4603e-11 0.0260523 0.0021013 3.00841e-11 0.0259291 0.00197183 3.83683e-11 0.0258077 0.0018526 4.42576e-11 0.0256873 0.00174352 4.82627e-11 0.0255676 0.00164502 5.03044e-11 0.0254485 0.00155757 5.08596e-11 0.0253308 0.00148138 4.98546e-11 0.0252175 0.0014165 4.72605e-11 0.0251128 0.00136277 4.30368e-11 0.0250171 0.00131975 4.14091e-11 0.024916 0.00128585 3.97739e-11 0.0247717 0.00125765 3.29905e-11 0.0245124 0.0012282 4.91513e-11 0.0240242 0.00118476 7.66849e-11 0.0231767 0.00111356 9.67351e-11 0.0218764 0.00100182 1.14113e-10 0.0201568 0.000844046 1.19919e-10 0.0182264 0.000664758 1.08467e-10 0.0163749 0.000488066 8.45324e-11 0.0148187 0.000338087 5.8266e-11 0.013634 0.000224982 3.69455e-11 0.0127926 0.000146382 2.22713e-11 0.0122221 9.44469e-05 1.30145e-11 0.011848 6.09816e-05 7.05829e-12 0.0116083 3.96886e-05 3.65812e-12 0.0114564 2.60999e-05 1.41818e-12 0.0113609 1.73407e-05 4.5437e-13 0.0113009 1.16236e-05 -2.43334e-13 0.0112633 7.84401e-06 -6.47301e-13 0.0112397 5.316e-06 -8.79171e-13 0.011225 3.60942e-06 -1.01179e-12 0.0112157 2.45029e-06 -1.08767e-12 0.0112099 1.66002e-06 -1.1305e-12 0.0112062 1.12016e-06 -1.15415e-12 0.0112039 7.52407e-07 -1.16818e-12 0.0112025 5.03013e-07 -1.17676e-12 0.0112016 3.33876e-07 -1.18018e-12 0.011201 2.20012e-07 -1.18283e-12 0.0112006 1.43856e-07 -1.18441e-12 0.0112004 9.33671e-08 -1.18506e-12 0.0112003 6.01827e-08 -1.18584e-12 0.0112002 3.84908e-08 -1.18559e-12 0.0112001 2.44223e-08 -1.1868e-12 0.0112001 1.53744e-08 -1.18499e-12 0.0112001 9.5932e-09 -1.18911e-12 0.0112001 5.95233e-09 -1.18163e-12 3.57495e-09 -1.19591e-12 0.0168033 4.01387e-10 -3.06482e-13 0.0168051 2.11195e-10 -3.2518e-13 0.0168078 -5.12039e-10 -3.49855e-13 0.016812 6.08419e-09 -3.05267e-13 0.0168177 -9.38693e-09 -4.36438e-13 0.0168265 3.96793e-08 -2.33468e-13 0.0168386 1.12575e-08 -5.26113e-13 0.016857 2.46501e-07 -1.0019e-13 0.0168856 6.84287e-07 -3.41062e-13 0.016932 2.92353e-06 6.98018e-13 0.0170252 1.20358e-05 2.73267e-12 0.0171625 4.1169e-05 1.30799e-11 0.0176428 0.00013658 2.90124e-11 0.0186597 0.000435575 8.1116e-11 0.0210486 0.00123092 1.65312e-10 0.026501 0.00310894 3.13432e-10 0.030334 0.00665096 5.22312e-10 0.0322222 0.0121802 1.86848e-10 0.0331406 0.0138566 9.36241e-11 0.0335262 0.0145554 5.34949e-11 0.0337116 0.0145119 3.74033e-11 0.0338883 0.0141548 3.65545e-11 0.0340959 0.0137471 3.28285e-11 0.034137 0.0133802 2.73538e-11 0.0340701 0.0129447 1.75663e-11 0.0339589 0.0124186 1.3264e-11 0.0338054 0.0118529 5.86496e-12 0.0336278 0.011276 2.34124e-12 0.0334351 0.0107064 4.49417e-13 0.0332365 0.0101568 -1.27444e-12 0.0330338 0.00963378 -3.7912e-12 0.0328218 0.00913842 -5.70739e-12 0.0325884 0.0086659 -6.91813e-12 0.0323259 0.0082128 -7.43415e-12 0.0320336 0.00777579 -7.46341e-12 0.0317136 0.00735555 -6.91121e-12 0.0313694 0.00694992 -6.15534e-12 0.0310151 0.00655992 -5.19063e-12 0.0306667 0.00618795 -3.56472e-12 0.0303326 0.00583533 -1.5494e-12 0.0300118 0.00550131 6.76516e-13 0.0297009 0.00518378 2.94149e-12 0.0293983 0.00488124 4.93901e-12 0.0290985 0.0045922 7.2307e-12 0.0287968 0.00431537 9.82196e-12 0.0284977 0.00404978 1.24639e-11 0.0281952 0.00379637 1.58221e-11 0.0279046 0.00355376 1.94269e-11 0.0276348 0.00332526 2.30523e-11 0.027384 0.00311016 2.66155e-11 0.0271567 0.00290857 3.41928e-11 0.0269541 0.00272169 3.20508e-11 0.0267794 0.0025491 4.39697e-11 0.0266248 0.00238932 5.30404e-11 0.0264802 0.00224252 5.97244e-11 0.0263377 0.0021074 6.4416e-11 0.0261948 0.00198339 6.76105e-11 0.0260519 0.00187063 6.87259e-11 0.02591 0.00176943 6.80987e-11 0.0257703 0.00167989 6.66058e-11 0.0256348 0.00160162 6.31363e-11 0.0255065 0.00153396 5.84412e-11 0.0253827 0.00147572 5.66973e-11 0.0252455 0.00142451 6.05351e-11 0.0250507 0.00137561 4.82389e-11 0.0247177 0.00132048 6.55854e-11 0.0241306 0.00124709 8.96056e-11 0.0231616 0.00114206 1.08471e-10 0.0217353 0.000990286 1.22127e-10 0.0199218 0.000807823 1.21912e-10 0.0179555 0.000613254 1.05507e-10 0.0161218 0.000434387 7.92623e-11 0.0146129 0.000290988 5.31576e-11 0.0134812 0.000187784 3.30251e-11 0.0126854 0.00011886 1.9629e-11 0.0121496 7.47841e-05 1.1263e-11 0.0117999 4.72068e-05 5.99678e-12 0.0115765 3.01123e-05 3.01415e-12 0.0114354 1.94574e-05 1.25764e-12 0.0113469 1.27331e-05 2.24431e-13 0.0112915 8.42553e-06 -3.76758e-13 0.011257 5.62365e-06 -7.23616e-13 0.0112354 3.77571e-06 -9.22591e-13 0.011222 2.54317e-06 -1.03633e-12 0.0112137 1.71442e-06 -1.10117e-12 0.0112085 1.15428e-06 -1.13797e-12 0.0112053 7.74812e-07 -1.15888e-12 0.0112033 5.17888e-07 -1.1708e-12 0.011202 3.44449e-07 -1.17747e-12 0.0112013 2.27682e-07 -1.1812e-12 0.0112008 1.49412e-07 -1.18341e-12 0.0112005 9.74696e-08 -1.18456e-12 0.0112003 6.31295e-08 -1.18532e-12 0.0112002 4.05365e-08 -1.18598e-12 0.0112001 2.58411e-08 -1.18569e-12 0.0112001 1.63446e-08 -1.18681e-12 0.0112001 1.02553e-08 -1.18504e-12 0.0112001 6.37874e-09 -1.18922e-12 0.0112001 3.94878e-09 -1.18166e-12 2.36647e-09 -1.19601e-12 0.0168033 1.01916e-10 -3.10824e-13 0.0168051 -4.04322e-11 -3.2561e-13 0.0168078 -1.46609e-10 -3.4322e-13 0.0168119 1.3047e-09 -3.31766e-13 0.0168178 -2.8458e-09 -3.93964e-13 0.0168262 8.57847e-09 -3.13823e-13 0.0168384 -6.89974e-09 -4.559e-13 0.0168558 3.80366e-08 -2.65114e-13 0.0168802 7.09097e-08 -4.61704e-13 0.0169149 3.53896e-07 -1.45665e-13 0.0169686 1.30617e-06 2.38273e-14 0.017051 5.33829e-06 1.10288e-12 0.0172283 1.89998e-05 5.65525e-12 0.0175601 7.07635e-05 1.47388e-11 0.0182909 0.000233247 5.44856e-11 0.0201819 0.000716083 9.69213e-11 0.0235455 0.0018689 2.66779e-10 0.0285596 0.0042059 4.57524e-10 0.0316059 0.00892944 2.34467e-10 0.0329699 0.0123921 1.37053e-10 0.0337396 0.0134626 7.66141e-11 0.0341017 0.0139012 5.08167e-11 0.0343028 0.013799 4.01294e-11 0.0345326 0.0134317 3.97931e-11 0.0346974 0.0130685 3.83775e-11 0.0347434 0.0126995 3.45078e-11 0.0347121 0.0122869 2.76392e-11 0.0346219 0.0118276 1.94304e-11 0.0344879 0.0113463 1.61419e-11 0.0343228 0.010856 1.31341e-11 0.034138 0.0103688 1.12039e-11 0.0339299 0.00989211 1.05397e-11 0.0336914 0.00942374 7.19505e-12 0.0334162 0.00896513 6.6859e-12 0.0331068 0.00851353 6.80086e-12 0.0327665 0.0080724 7.48687e-12 0.0324011 0.00764101 7.40377e-12 0.0320243 0.00722162 7.19153e-12 0.0316518 0.00681699 7.62583e-12 0.031294 0.00642976 8.88928e-12 0.0309519 0.00606051 1.11063e-11 0.0306223 0.00570839 1.3779e-11 0.0302998 0.00537107 1.63762e-11 0.029982 0.00504754 1.90683e-11 0.0296641 0.00473686 2.19607e-11 0.0293454 0.00443893 2.52684e-11 0.0290323 0.00415351 2.90316e-11 0.028722 0.003882 3.38315e-11 0.0284299 0.00362395 4.01834e-11 0.0281619 0.00338255 5.03265e-11 0.0279129 0.00315648 5.78309e-11 0.0276892 0.0029474 6.84493e-11 0.027488 0.00275457 6.55338e-11 0.0273049 0.00257825 7.73552e-11 0.0271328 0.00241646 8.27474e-11 0.0269631 0.00226813 8.72002e-11 0.0267913 0.00213291 9.02997e-11 0.0266159 0.00200981 9.09159e-11 0.026437 0.00189861 9.03289e-11 0.0262566 0.00179906 8.767e-11 0.0260784 0.00171055 8.4501e-11 0.0259056 0.00163189 7.99226e-11 0.0257336 0.00156084 7.87741e-11 0.0255401 0.00149391 8.50423e-11 0.0252743 0.00142481 7.45418e-11 0.0248493 0.0013439 7.44362e-11 0.0241456 0.00123906 1.07073e-10 0.0230436 0.0010963 1.22486e-10 0.0214994 0.000919622 1.30084e-10 0.0196186 0.000723172 1.22892e-10 0.0176479 0.000529125 1.0143e-10 0.0158579 0.000362003 7.34598e-11 0.0144114 0.000234948 4.7972e-11 0.0133389 0.000147371 2.92636e-11 0.0125897 9.09351e-05 1.71363e-11 0.012087 5.59174e-05 9.67774e-12 0.0117596 3.45729e-05 5.04826e-12 0.0115506 2.16541e-05 2.44421e-12 0.0114187 1.37724e-05 9.20793e-13 0.0113359 8.89211e-06 2.87894e-14 0.0112843 5.81751e-06 -4.88755e-13 0.0112522 3.84615e-06 -7.87045e-13 0.0112322 2.56177e-06 -9.58248e-13 0.0112198 1.7139e-06 -1.05625e-12 0.0112122 1.14869e-06 -1.11223e-12 0.0112075 7.69477e-07 -1.14414e-12 0.0112046 5.14224e-07 -1.16231e-12 0.0112028 3.42355e-07 -1.17267e-12 0.0112017 2.26842e-07 -1.17854e-12 0.0112011 1.49429e-07 -1.18188e-12 0.0112007 9.77908e-08 -1.18375e-12 0.0112004 6.35726e-08 -1.18491e-12 0.0112003 4.10456e-08 -1.18537e-12 0.0112002 2.63056e-08 -1.18604e-12 0.0112001 1.67209e-08 -1.1857e-12 0.0112001 1.05484e-08 -1.18684e-12 0.0112001 6.60864e-09 -1.18522e-12 0.0112001 4.10744e-09 -1.18931e-12 0.0112 2.53238e-09 -1.18161e-12 1.51687e-09 -1.19607e-12 0.0168033 2.45693e-11 -3.12436e-13 0.0168051 -2.44505e-11 -3.25896e-13 0.0168078 -8.45248e-12 -3.40136e-13 0.0168119 2.52845e-10 -3.44829e-13 0.0168178 -6.69518e-10 -3.76277e-13 0.0168262 1.83214e-09 -3.58336e-13 0.0168384 -2.13785e-09 -4.19321e-13 0.0168556 5.84745e-09 -3.61152e-13 0.0168797 8.51039e-09 -4.37475e-13 0.0169127 3.31734e-08 -3.55755e-13 0.0169587 1.73375e-07 -3.08807e-13 0.0170225 5.73332e-07 -2.36464e-13 0.0171157 2.3471e-06 6.79903e-13 0.0172656 8.63834e-06 1.68845e-12 0.0175494 3.24915e-05 8.00422e-12 0.018117 0.000112339 2.55634e-11 0.0193388 0.000365517 6.64252e-11 0.0218088 0.0010347 1.33827e-10 0.0258386 0.00243742 3.03204e-10 0.0298655 0.00485786 4.2567e-10 0.0323532 0.009219 1.8601e-10 0.0335441 0.0118943 1.12579e-10 0.0342327 0.0126994 7.93569e-11 0.0346053 0.0130077 5.62769e-11 0.034878 0.012964 4.52561e-11 0.0350633 0.0127019 4.70005e-11 0.035185 0.0123554 4.71962e-11 0.0351939 0.0119758 4.25624e-11 0.0351517 0.0115646 3.85208e-11 0.0350631 0.0111377 3.70398e-11 0.0349441 0.0106971 3.32317e-11 0.0347884 0.0102556 3.40439e-11 0.0345922 0.00980961 3.2584e-11 0.034352 0.00936243 3.20143e-11 0.0340694 0.00890996 3.45147e-11 0.0337535 0.00845692 3.43891e-11 0.0334094 0.0080073 3.1979e-11 0.0330505 0.00756346 3.08386e-11 0.0326921 0.00712981 3.05111e-11 0.032345 0.00671002 3.13879e-11 0.0320152 0.00630634 3.33345e-11 0.0316969 0.00591984 3.60637e-11 0.0313829 0.00554881 3.86453e-11 0.0310676 0.00519142 4.14448e-11 0.0307527 0.00484811 4.46503e-11 0.0304354 0.00451949 4.86968e-11 0.0301172 0.00420562 5.33677e-11 0.0298046 0.00390746 5.91141e-11 0.0294974 0.00362661 6.88169e-11 0.0292053 0.003365 7.81857e-11 0.0289352 0.00312337 8.4794e-11 0.0286808 0.00290227 9.52952e-11 0.0284435 0.00270202 9.68596e-11 0.0282181 0.00252129 1.07982e-10 0.0279954 0.0023583 1.12492e-10 0.027773 0.0022122 1.14242e-10 0.0275474 0.00208111 1.20264e-10 0.0273161 0.00196354 1.20406e-10 0.0270767 0.00185742 1.18879e-10 0.0268299 0.00176216 1.16736e-10 0.026581 0.00167743 1.12293e-10 0.0263348 0.00160018 1.06841e-10 0.026086 0.00152636 1.07131e-10 0.0258077 0.00144998 1.17602e-10 0.0254416 0.00136319 1.21479e-10 0.0248949 0.00125729 9.77635e-11 0.0240533 0.00112459 1.18533e-10 0.0228215 0.000960718 1.39638e-10 0.0211865 0.000778741 1.37958e-10 0.0192743 0.000590723 1.22822e-10 0.0173321 0.000417667 9.6643e-11 0.0156059 0.000276941 6.75685e-11 0.0142295 0.000174785 4.30777e-11 0.013216 0.000106955 2.58538e-11 0.0125101 6.45465e-05 1.49057e-11 0.0120366 3.89174e-05 8.36393e-12 0.011728 2.36293e-05 4.22422e-12 0.0115308 1.45684e-05 1.96802e-12 0.0114061 9.14123e-06 6.44344e-13 0.0113279 5.8351e-06 -1.29508e-13 0.011279 3.78149e-06 -5.78281e-13 0.0112487 2.48058e-06 -8.37217e-13 0.0112299 1.64156e-06 -9.8618e-13 0.0112183 1.09234e-06 -1.07172e-12 0.0112112 7.28763e-07 -1.12077e-12 0.0112068 4.86256e-07 -1.14886e-12 0.0112041 3.23836e-07 -1.16493e-12 0.0112025 2.14931e-07 -1.17412e-12 0.0112015 1.41998e-07 -1.17935e-12 0.0112009 9.32971e-08 -1.18236e-12 0.0112006 6.09162e-08 -1.18402e-12 0.0112004 3.95105e-08 -1.18509e-12 0.0112002 2.54499e-08 -1.18546e-12 0.0112001 1.62746e-08 -1.18614e-12 0.0112001 1.03281e-08 -1.1857e-12 0.0112001 6.50381e-09 -1.18699e-12 0.0112001 4.06503e-09 -1.18503e-12 0.0112001 2.52259e-09 -1.1893e-12 0.0112 1.54864e-09 -1.1819e-12 9.30014e-10 -1.19617e-12 0.0168033 6.62978e-12 -3.13106e-13 0.0168051 -7.62659e-12 -3.25808e-13 0.0168078 4.8727e-12 -3.39928e-13 0.0168119 4.90012e-11 -3.49157e-13 0.0168178 -1.42266e-10 -3.71538e-13 0.0168262 3.98554e-10 -3.75737e-13 0.0168384 -5.64521e-10 -4.06954e-13 0.0168556 1.12615e-09 -4.006e-13 0.0168796 7.31584e-10 -4.36804e-13 0.0169125 3.15075e-09 -4.20852e-13 0.0169576 2.29202e-08 -4.15407e-13 0.0170187 5.8359e-08 -3.94169e-13 0.0171006 2.96043e-07 -1.76521e-13 0.0172117 9.99163e-07 -2.0031e-15 0.0173686 4.06901e-06 1.25938e-12 0.0176119 1.43578e-05 4.03666e-12 0.0180555 5.14766e-05 1.20665e-11 0.0188862 0.000173071 3.56613e-11 0.0204375 0.000501441 8.72459e-11 0.0230156 0.00125327 1.33514e-10 0.0267074 0.00260628 3.25566e-10 0.0302531 0.00462002 3.34733e-10 0.0325621 0.00772378 2.05121e-10 0.0337783 0.0105201 1.16277e-10 0.0345002 0.0115323 9.09029e-11 0.0349608 0.0117718 7.80077e-11 0.0352979 0.0117504 6.49084e-11 0.0355395 0.0114669 6.74241e-11 0.0356974 0.0111463 6.36402e-11 0.0357146 0.0108253 5.62338e-11 0.0356569 0.0104523 5.56006e-11 0.0355847 0.0100305 5.88755e-11 0.0354815 0.00956431 5.99517e-11 0.0353422 0.00907222 6.36637e-11 0.0351631 0.00857276 6.92653e-11 0.0349459 0.008082 7.46473e-11 0.0346965 0.00759422 7.25873e-11 0.0344259 0.0071166 7.29506e-11 0.034146 0.00665125 6.87022e-11 0.0338655 0.00620297 6.66446e-11 0.0335915 0.00577118 6.38619e-11 0.0333246 0.00536183 6.71444e-11 0.0330505 0.00496851 7.54958e-11 0.0327669 0.00458449 8.55431e-11 0.0324722 0.0042203 8.95264e-11 0.0321678 0.00387733 9.81223e-11 0.0318515 0.00355856 1.08661e-10 0.0315206 0.00326274 1.20711e-10 0.0311881 0.00299253 1.30184e-10 0.0308553 0.00274847 1.35262e-10 0.0305227 0.00253116 1.39417e-10 0.0302028 0.00233939 1.43544e-10 0.0298945 0.00217287 1.45978e-10 0.0295834 0.0020297 1.49906e-10 0.0292649 0.00190641 1.52644e-10 0.0289435 0.00180024 1.55821e-10 0.0286207 0.00170869 1.57902e-10 0.0282917 0.00162914 1.57617e-10 0.0279532 0.00155911 1.50551e-10 0.0276047 0.00149451 1.48028e-10 0.0272458 0.00143238 1.46208e-10 0.0268788 0.00136991 1.42866e-10 0.0264974 0.00130055 1.45007e-10 0.0260733 0.00121927 1.60574e-10 0.0255506 0.00112161 1.7698e-10 0.0248468 0.00100562 1.29213e-10 0.0238654 0.000870734 1.4351e-10 0.0225297 0.000722557 1.56772e-10 0.0208417 0.000567341 1.44956e-10 0.0189351 0.000417423 1.21921e-10 0.0170451 0.000286948 9.18343e-11 0.0153904 0.000185548 6.22374e-11 0.0140811 0.000114537 3.88752e-11 0.0131196 6.87357e-05 2.30132e-11 0.0124496 4.0771e-05 1.31243e-11 0.0119993 2.42034e-05 7.27657e-12 0.0117051 1.44875e-05 3.596e-12 0.0115167 8.82181e-06 1.60144e-12 0.0113973 5.47728e-06 4.34075e-13 0.0113223 3.46563e-06 -2.48469e-13 0.0112755 2.22973e-06 -6.44871e-13 0.0112464 1.45405e-06 -8.74204e-13 0.0112284 9.57627e-07 -1.00661e-12 0.0112173 6.34715e-07 -1.08296e-12 0.0112105 4.22053e-07 -1.12694e-12 0.0112063 2.80813e-07 -1.15225e-12 0.0112038 1.86556e-07 -1.1668e-12 0.0112023 1.23545e-07 -1.17515e-12 0.0112014 8.14577e-08 -1.17993e-12 0.0112008 5.3421e-08 -1.18269e-12 0.0112005 3.48214e-08 -1.18421e-12 0.0112003 2.25485e-08 -1.18521e-12 0.0112002 1.45005e-08 -1.18551e-12 0.0112001 9.2584e-09 -1.18623e-12 0.0112001 5.86772e-09 -1.18564e-12 0.0112001 3.69068e-09 -1.18716e-12 0.0112001 2.30351e-09 -1.18493e-12 0.0112 1.42769e-09 -1.18937e-12 0.0112 8.74697e-10 -1.18199e-12 5.24703e-10 -1.19622e-12 0.0168033 2.61227e-12 -3.13394e-13 0.0168051 -8.5828e-13 -3.25677e-13 0.0168078 4.59268e-12 -3.40518e-13 0.0168119 1.0008e-11 -3.50183e-13 0.0168178 -2.13333e-11 -3.71206e-13 0.0168262 7.92241e-11 -3.82066e-13 0.0168384 -1.04013e-10 -4.04913e-13 0.0168556 2.10349e-10 -4.1783e-13 0.0168796 8.38322e-11 -4.4082e-13 0.0169125 2.06393e-10 -4.52948e-13 0.0169574 3.27538e-09 -4.59182e-13 0.0170182 5.30346e-09 -4.59815e-13 0.0170989 3.68244e-08 -3.80371e-13 0.0172049 1.12672e-07 -2.8301e-13 0.0173438 4.94325e-07 1.25433e-13 0.017527 1.73111e-06 8.3334e-13 0.0177764 6.52232e-06 2.63455e-12 0.018141 2.27977e-05 7.77604e-12 0.0187395 7.3302e-05 1.88659e-11 0.0197256 0.000217149 4.29422e-11 0.0212664 0.000544154 9.03441e-11 0.0234321 0.00117051 1.41079e-10 0.026322 0.00213662 2.44502e-10 0.0293711 0.00347535 2.92516e-10 0.0318791 0.00489515 2.75378e-10 0.0336435 0.0067662 1.89412e-10 0.0347549 0.00837438 1.41921e-10 0.0354894 0.00904945 1.18632e-10 0.0360639 0.00900295 1.19724e-10 0.0365248 0.00876385 1.16267e-10 0.0368789 0.00848986 1.11221e-10 0.0371525 0.00808328 1.23872e-10 0.0373706 0.00758747 1.27887e-10 0.0375184 0.00708894 1.32133e-10 0.0375465 0.00659738 1.38699e-10 0.0375096 0.00608794 1.52709e-10 0.0374288 0.00559874 1.48797e-10 0.037302 0.00514194 1.49669e-10 0.0371362 0.00470024 1.48925e-10 0.0369455 0.00428071 1.472e-10 0.0367308 0.00388568 1.44678e-10 0.0364989 0.00352519 1.46419e-10 0.0362378 0.00319102 1.43854e-10 0.0359308 0.00288244 1.4668e-10 0.0355872 0.00258886 1.53137e-10 0.0352253 0.0023108 1.5867e-10 0.0348357 0.00206394 1.63419e-10 0.0344153 0.00184975 1.71372e-10 0.033971 0.00166627 1.79039e-10 0.0335132 0.00151124 1.80142e-10 0.0330531 0.00138323 1.80035e-10 0.0325849 0.0012793 1.80952e-10 0.0321209 0.00119613 1.81247e-10 0.0316631 0.00113156 1.82271e-10 0.0311931 0.00108164 1.83585e-10 0.0307029 0.00104125 1.85119e-10 0.0302034 0.00100758 1.87303e-10 0.0297035 0.000978941 1.87416e-10 0.0291933 0.000950031 1.85465e-10 0.0286593 0.000918344 1.83414e-10 0.0280979 0.000882719 1.88242e-10 0.0275138 0.000838635 1.94403e-10 0.0269119 0.000785304 2.02298e-10 0.0262798 0.000722145 2.20426e-10 0.0255752 0.00064965 2.3845e-10 0.0247254 0.000568848 1.78202e-10 0.0236386 0.000481783 1.57893e-10 0.0222407 0.000390608 1.7167e-10 0.0205372 0.000299879 1.50121e-10 0.0186591 0.000216062 1.20628e-10 0.0168254 0.000145739 8.77847e-11 0.0152329 9.26829e-05 5.81016e-11 0.0139766 5.63879e-05 3.57509e-11 0.0130537 3.34113e-05 2.09635e-11 0.0124092 1.95957e-05 1.18558e-11 0.0119749 1.15155e-05 6.52213e-12 0.0116905 6.8283e-06 3.1616e-12 0.0115078 4.12449e-06 1.35097e-12 0.0113918 2.54347e-06 2.92223e-13 0.0113189 1.60029e-06 -3.27858e-13 0.0112733 1.02489e-06 -6.88922e-13 0.0112449 6.65876e-07 -8.98492e-13 0.0112274 4.37234e-07 -1.01994e-12 0.0112167 2.89095e-07 -1.09026e-12 0.0112101 1.91847e-07 -1.13093e-12 0.0112061 1.27428e-07 -1.15444e-12 0.0112036 8.4531e-08 -1.168e-12 0.0112022 5.59067e-08 -1.17582e-12 0.0112013 3.6817e-08 -1.1803e-12 0.0112008 2.41182e-08 -1.1829e-12 0.0112005 1.5705e-08 -1.18434e-12 0.0112003 1.01599e-08 -1.18528e-12 0.0112002 6.52754e-09 -1.18556e-12 0.0112001 4.16392e-09 -1.18627e-12 0.0112001 2.6367e-09 -1.18562e-12 0.0112001 1.65718e-09 -1.18725e-12 0.0112001 1.03347e-09 -1.18487e-12 0.0112 6.4005e-10 -1.18948e-12 0.0112 3.91736e-10 -1.18205e-12 2.3487e-10 -1.19623e-12 0.0168033 -3.13491e-13 0.0168051 -3.25821e-13 0.0168078 -3.40729e-13 0.0168119 -3.50644e-13 0.0168178 -3.71457e-13 0.0168262 -3.84e-13 0.0168384 -4.05049e-13 0.0168556 -4.23589e-13 0.0168796 -4.44463e-13 0.0169125 -4.64843e-13 0.0169574 -4.79383e-13 0.0170181 -4.83475e-13 0.0170987 -4.51252e-13 0.0172041 -3.56041e-13 0.0173409 -1.26444e-13 0.0175161 3.46037e-13 0.017737 1.26852e-12 0.0180149 3.16531e-12 0.0183745 6.60253e-12 0.0188652 1.42371e-11 0.0195733 2.84686e-11 0.0206002 5.50689e-11 0.0220447 9.16752e-11 0.0239227 1.42875e-10 0.0262008 1.98774e-10 0.0288332 2.74525e-10 0.0316036 3.31181e-10 0.0342039 3.43696e-10 0.036486 3.31937e-10 0.0384574 3.34674e-10 0.0401285 3.2146e-10 0.0414978 3.38289e-10 0.042586 3.35197e-10 0.0434193 3.21652e-10 0.0440074 3.07715e-10 0.0443609 3.03449e-10 0.0445694 2.79076e-10 0.044563 2.65589e-10 0.0444354 2.49137e-10 0.0441696 2.42223e-10 0.0438063 2.12549e-10 0.0433696 1.65684e-10 0.0428672 1.79483e-10 0.0422874 1.72018e-10 0.0416235 1.76494e-10 0.0408907 1.69146e-10 0.040113 1.5155e-10 0.0393002 1.57959e-10 0.0384701 1.6932e-10 0.03764 1.80095e-10 0.0368215 1.87446e-10 0.0360146 1.93769e-10 0.035221 1.95364e-10 0.0344418 1.99318e-10 0.0336638 2.03498e-10 0.0328782 2.01133e-10 0.0320834 2.06975e-10 0.0312844 2.14433e-10 0.0304873 2.16589e-10 0.0296851 2.22108e-10 0.0288666 2.34794e-10 0.0280433 2.42704e-10 0.0272321 2.51544e-10 0.0264281 2.66684e-10 0.0255916 2.8052e-10 0.0246466 2.19754e-10 0.0234976 1.68292e-10 0.0220683 1.81865e-10 0.020363 1.53804e-10 0.0185067 1.20255e-10 0.0167077 8.57473e-11 0.0151507 5.59912e-11 0.0139232 3.41332e-11 0.0130206 1.99054e-11 0.0123892 1.12048e-11 0.011963 6.13877e-12 0.0116834 2.93693e-12 0.0115035 1.22274e-12 0.0113892 2.20488e-13 0.0113173 -3.67649e-13 0.0112723 -7.10857e-13 0.0112443 -9.10524e-13 0.011227 -1.02652e-12 0.0112164 -1.09384e-12 0.0112099 -1.13289e-12 0.0112059 -1.1555e-12 0.0112036 -1.16858e-12 0.0112021 -1.17614e-12 0.0112013 -1.18049e-12 0.0112008 -1.183e-12 0.0112005 -1.1844e-12 0.0112003 -1.18531e-12 0.0112002 -1.18558e-12 0.0112001 -1.18628e-12 0.0112001 -1.18561e-12 0.0112001 -1.1873e-12 0.0112001 -1.18482e-12 0.0112 -1.18957e-12 0.0112 -1.18208e-12 -1.19622e-12 0.00965477 0.00861958 -2.39022e-11 0.00623248 0.00343665 -1.04389e-11 0.00472738 0.00149963 -4.75837e-12 0.00411248 0.000617686 -1.24085e-11 0.00399547 0.000112912 -1.42325e-11 0.00424335 -0.000253266 -1.66442e-11 0.00466731 -0.000409682 -1.85912e-11 0.00494048 -0.000254881 -4.19587e-12 0.00503744 -8.76255e-05 1.30021e-11 0.00502709 1.56985e-05 1.03091e-11 0.00496792 6.2343e-05 9.17858e-12 0.00493169 3.42581e-05 9.18733e-12 0.00492524 7.70123e-06 9.63701e-12 0.00495949 -2.53498e-05 8.99235e-12 0.00503028 -4.66188e-05 -6.42227e-14 0.0051201 -5.68568e-05 1.69319e-11 0.00521607 -6.02287e-05 1.62496e-11 0.0053216 -6.20112e-05 2.2569e-11 0.00544235 -6.76961e-05 3.1898e-11 0.00557881 -7.54378e-05 3.96836e-11 0.00572802 -8.35761e-05 4.23863e-11 0.00588367 -9.03835e-05 4.22002e-11 0.00603675 -9.53511e-05 4.11513e-11 0.00617927 -9.82425e-05 3.51691e-11 0.00630614 -9.92205e-05 2.96806e-11 0.00641805 -9.85986e-05 2.84543e-11 0.00652242 -9.60138e-05 1.24931e-11 0.00662068 -9.24688e-05 5.71024e-12 0.0067033 -8.92478e-05 7.21834e-12 0.00676805 -8.47812e-05 5.46648e-12 0.00682112 -7.82678e-05 8.82426e-13 0.00686533 -7.20748e-05 -3.08176e-12 0.00690147 -6.59184e-05 -6.59702e-12 0.00693125 -5.99421e-05 -9.53729e-12 0.0069585 -5.43872e-05 -1.19282e-11 0.0069876 -4.9608e-05 -1.44728e-11 0.00702115 -4.59246e-05 -1.7939e-11 0.00706 -4.35331e-05 -2.27204e-11 0.00710555 -4.25656e-05 -2.81055e-11 0.00716084 -4.30794e-05 -3.22654e-11 0.00722952 -4.50634e-05 -3.50661e-11 0.00731632 -4.8503e-05 -3.89789e-11 0.00742381 -5.35011e-05 -3.99064e-11 0.00754644 -5.99231e-05 -3.84412e-11 0.00768502 -6.73616e-05 -4.00638e-11 0.00788956 -7.68514e-05 -3.83881e-11 0.00825795 -7.98909e-05 -4.35323e-11 0.00879583 -8.36715e-05 -2.5145e-11 0.00947109 -9.37598e-05 -2.74385e-11 0.0102528 -0.000108767 -2.47624e-11 0.0111044 -0.000118742 -1.81033e-11 0.0119974 -0.000125114 -1.20976e-11 0.0129037 -0.000131914 -5.86089e-12 0.0137967 -0.00013899 3.60009e-13 0.0146551 -0.000146167 5.09606e-12 0.0154637 -0.000153278 1.7041e-11 0.0162088 -0.000160256 2.28941e-11 0.0168752 -0.000167078 2.38097e-11 0.0174482 -0.000173332 2.15315e-11 0.0179188 -0.000178101 1.94613e-11 0.0182936 -0.000180673 1.96377e-11 0.0185978 -0.000180894 2.05401e-11 0.018849 -0.000179002 2.07592e-11 0.0190534 -0.000175194 2.12215e-11 0.0192089 -0.000169671 2.18191e-11 0.0192906 -0.000162586 2.1836e-11 0.0192117 -0.000153775 1.94701e-11 0.0186789 -0.000141305 1.21573e-11 0.01795 -0.000121857 -1.84062e-11 0.0169522 -0.000104456 -3.14837e-11 0.015822 -8.55705e-05 -2.70434e-11 0.0147293 -6.63898e-05 -1.79948e-11 0.013792 -4.92885e-05 -9.77702e-12 0.0130549 -3.54762e-05 -4.28101e-12 0.0125101 -2.50494e-05 -1.21532e-12 0.0121249 -1.7482e-05 2.51074e-13 0.011861 -1.20701e-05 7.97998e-13 0.0116848 -8.18156e-06 8.6168e-13 0.0115694 -5.37267e-06 7.25549e-13 0.0114948 -3.33052e-06 5.29433e-13 0.0114458 -2.01649e-06 3.20053e-13 0.0114117 -1.16669e-06 1.32117e-13 0.0113854 -4.42578e-07 4.01279e-15 0.0113627 9.59816e-08 -6.2711e-14 0.0113415 4.15261e-07 -8.65064e-14 0.0113211 5.68812e-07 -8.39704e-14 0.0113016 6.08657e-07 -6.86998e-14 0.0112834 5.77675e-07 -5.03795e-14 0.0112669 5.08557e-07 -3.45791e-14 0.0112525 4.24335e-07 -2.3463e-14 0.0112404 3.39806e-07 -1.70244e-14 0.0112305 2.63302e-07 -1.41736e-14 0.0112226 1.98562e-07 -1.36092e-14 0.0112165 1.46355e-07 -1.4211e-14 0.0112118 1.05875e-07 -1.51977e-14 0.0112084 7.52456e-08 -1.6176e-14 0.0112059 5.28305e-08 -1.68885e-14 0.011204 3.64619e-08 -1.74564e-14 0.0112028 2.47547e-08 -1.75087e-14 1.64394e-08 -1.79865e-14 0.0130293 0.0127328 -8.785e-12 0.00991368 0.00657403 -8.10216e-13 0.00828182 0.0031417 -7.4957e-12 0.00759425 0.00131577 -5.94399e-12 0.00732381 0.000392675 -7.06642e-12 0.00717246 -9.33938e-05 -5.5394e-12 0.00703835 -0.000253827 -4.14637e-12 0.00707747 -0.000268355 -4.49632e-13 0.00722649 -0.00020753 -2.85958e-12 0.00738746 -0.000111303 1.08465e-12 0.0075025 -3.56193e-05 8.47921e-12 0.00754111 6.98152e-06 1.15209e-11 0.00754286 1.70901e-05 1.13965e-11 0.00752926 3.29426e-07 1.17559e-11 0.00753154 -3.27336e-05 1.34022e-11 0.00755609 -6.11409e-05 1.41614e-11 0.00760851 -8.47505e-05 1.5708e-11 0.00768896 -0.00010192 1.95654e-11 0.00778322 -0.000111173 2.43054e-11 0.00788738 -0.000120643 3.90605e-11 0.00800311 -0.00013286 3.97581e-11 0.00813084 -0.000144572 3.90696e-11 0.00826766 -0.000155293 3.73178e-11 0.00840766 -0.000163783 3.47476e-11 0.00854309 -0.000169931 2.85082e-11 0.00866694 -0.000173507 2.5425e-11 0.00877691 -0.000174485 2.89148e-11 0.00887853 -0.000172769 8.97773e-12 0.00897694 -0.00016919 1.14908e-12 0.00906538 -0.000165284 1.84749e-11 0.00913768 -0.000159895 1.68377e-11 0.00920161 -0.000151499 -5.01174e-12 0.00926388 -0.000142915 -3.0161e-12 0.00932525 -0.000134518 -4.12525e-12 0.0093835 -0.000126188 -6.27717e-12 0.00943848 -0.000118458 -8.68833e-12 0.00949288 -0.000111992 -1.1966e-11 0.00954889 -0.000107148 -1.66136e-11 0.00960437 -0.000104067 -2.15236e-11 0.00965225 -0.000102844 -2.52569e-11 0.00968598 -0.000103643 -2.73713e-11 0.00970959 -0.000106553 -2.86212e-11 0.00973915 -0.000111517 -2.97923e-11 0.00978565 -0.000118774 -2.97592e-11 0.00985343 -0.000128684 -2.90315e-11 0.00995808 -0.000138224 -3.09818e-11 0.0100915 -0.000147937 -2.72732e-11 0.0102359 -0.00015973 -1.83493e-11 0.0104489 -0.000169556 -1.96857e-11 0.0108239 -0.000178051 -2.26982e-11 0.0113614 -0.000195565 -7.11784e-12 0.0120182 -0.000211477 -4.5353e-12 0.0127627 -0.000226488 -1.28079e-13 0.0135664 -0.000240529 5.8137e-12 0.0144042 -0.000253946 1.43688e-11 0.0152504 -0.000266892 2.26211e-11 0.0160774 -0.000279238 2.65114e-11 0.0168547 -0.000290618 2.61635e-11 0.0175527 -0.000300321 2.3196e-11 0.0181478 -0.00030739 1.88784e-11 0.0186336 -0.000311147 1.80921e-11 0.0190248 -0.000311389 1.82683e-11 0.0193328 -0.000308115 1.83817e-11 0.0195619 -0.000301469 1.86026e-11 0.0197151 -0.000291781 1.88356e-11 0.01977 -0.000279391 1.78456e-11 0.0196124 -0.000264098 1.43259e-11 0.0191063 -0.000243294 2.2395e-12 0.0183299 -0.000216147 -2.56928e-11 0.0172657 -0.00018462 -3.32567e-11 0.01607 -0.000150293 -2.7636e-11 0.0149183 -0.000116275 -1.81129e-11 0.0139316 -8.61705e-05 -9.75287e-12 0.0131555 -6.18732e-05 -4.24754e-12 0.012582 -4.34688e-05 -1.22774e-12 0.0121766 -3.00569e-05 1.70037e-13 0.0118989 -2.05054e-05 7.29814e-13 0.0117125 -1.3809e-05 9.15326e-13 0.0115891 -9.04399e-06 6.78035e-13 0.0115078 -5.60514e-06 4.74235e-13 0.0114542 -3.13778e-06 3.3911e-13 0.0114175 -1.40811e-06 1.41514e-13 0.0113896 -1.9869e-07 -2.39046e-14 0.0113658 6.36064e-07 -7.42698e-14 0.0113436 1.12254e-06 -8.87025e-14 0.0113225 1.33218e-06 -8.39391e-14 0.0113025 1.34724e-06 -6.82251e-14 0.0112839 1.24168e-06 -4.99038e-14 0.0112672 1.07395e-06 -3.42221e-14 0.0112526 8.85708e-07 -2.32428e-14 0.0112404 7.03521e-07 -1.69188e-14 0.0112305 5.41957e-07 -1.4145e-14 0.0112226 4.0696e-07 -1.36235e-14 0.0112164 2.99045e-07 -1.42419e-14 0.0112118 2.15643e-07 -1.52297e-14 0.0112084 1.5296e-07 -1.62038e-14 0.0112058 1.06794e-07 -1.69078e-14 0.011204 7.35714e-08 -1.74748e-14 0.0112027 5.01457e-08 -1.75158e-14 3.29271e-08 -1.79861e-14 0.0165195 0.0143396 1.3135e-11 0.0141114 0.00905335 1.30318e-12 0.0120975 0.00520015 -1.44069e-13 0.0105784 0.00285987 -2.64508e-12 0.00951448 0.00148336 -5.16335e-12 0.00878029 0.000667279 -6.22884e-12 0.0083512 0.000205279 -2.92764e-12 0.00814808 -2.581e-05 -5.57043e-12 0.00817944 -0.000197527 -6.16249e-12 0.00836103 -0.00025306 -6.02623e-12 0.0085892 -0.000221722 -4.52788e-12 0.0087533 -0.000127016 -1.92653e-12 0.00885967 -6.69518e-05 8.04181e-12 0.00890646 -3.53881e-05 4.91002e-12 0.00892251 -3.43004e-05 1.0643e-11 0.00892632 -5.12654e-05 1.08937e-11 0.00893229 -7.71091e-05 1.3925e-11 0.00895742 -0.000105913 1.49891e-11 0.00901427 -0.000132779 2.71699e-11 0.00909953 -0.000151574 4.42415e-11 0.00919577 -0.000166069 3.81669e-11 0.00929863 -0.000183382 4.07129e-11 0.00940874 -0.000199294 3.83017e-11 0.00952616 -0.000213182 3.45067e-11 0.00964847 -0.000224788 3.08234e-11 0.00976963 -0.00023358 2.91851e-11 0.00988393 -0.000239157 2.4662e-11 0.00998966 -0.000241542 2.1839e-11 0.0100897 -0.000241278 1.31682e-11 0.0101897 -0.000238533 3.85747e-12 0.0102888 -0.000233819 1.40676e-11 0.01038 -0.000227705 2.94935e-11 0.0104655 -0.000219696 1.50452e-12 0.010552 -0.000210664 2.89539e-12 0.0106426 -0.000201573 2.35621e-12 0.0107382 -0.000192713 1.62841e-12 0.0108391 -0.000184782 9.70376e-13 0.0109439 -0.000178681 -3.18685e-12 0.0110472 -0.000174293 -9.87182e-12 0.0111375 -0.000171375 -1.25571e-11 0.0112008 -0.000170555 -1.15163e-11 0.0112314 -0.00017252 -1.21871e-11 0.0112387 -0.00017618 -1.32806e-11 0.0112382 -0.000183011 -1.29973e-11 0.01125 -0.000193248 -1.27011e-11 0.011302 -0.000203767 -1.34932e-11 0.0114056 -0.000215588 -1.06133e-11 0.0115421 -0.000233148 -6.83906e-12 0.0117175 -0.000248701 -5.66099e-12 0.0119977 -0.000257772 -2.70276e-12 0.0124352 -0.000270097 3.60498e-13 0.0130031 -0.000294756 7.21111e-12 0.0136648 -0.000314352 8.95761e-12 0.0143909 -0.000332503 1.91106e-11 0.0151567 -0.000349427 2.57624e-11 0.0159372 -0.00036509 3.0258e-11 0.0167075 -0.000379291 3.23797e-11 0.0174409 -0.000391913 3.04449e-11 0.0181056 -0.000402451 2.57116e-11 0.0186736 -0.000410081 1.99679e-11 0.0191333 -0.000413886 1.73613e-11 0.0194966 -0.00041338 1.67297e-11 0.019773 -0.000408613 1.66962e-11 0.0199669 -0.000399832 1.65347e-11 0.0200797 -0.00038743 1.61208e-11 0.0200845 -0.000371661 1.3664e-11 0.0198609 -0.000352641 7.18069e-12 0.0193499 -0.000329658 -1.02582e-11 0.0185369 -0.000294732 -3.67325e-11 0.0174355 -0.000252508 -3.65533e-11 0.0162044 -0.000205634 -2.8065e-11 0.0150199 -0.000159068 -1.78219e-11 0.0140049 -0.000117825 -9.43643e-12 0.0132066 -8.44877e-05 -4.08186e-12 0.0126166 -5.91668e-05 -1.18562e-12 0.0121996 -4.07033e-05 1.65151e-13 0.0119141 -2.76131e-05 8.03014e-13 0.0117226 -1.85521e-05 8.30225e-13 0.011596 -1.20858e-05 6.2529e-13 0.0115126 -7.36701e-06 4.35004e-13 0.0114576 -3.89497e-06 2.85787e-13 0.0114197 -1.45521e-06 1.24411e-13 0.0113909 1.70593e-07 -4.0163e-14 0.0113664 1.26791e-06 -8.56672e-14 0.0113438 1.88143e-06 -9.47808e-14 0.0113223 2.11599e-06 -8.65395e-14 0.0113021 2.08676e-06 -6.89971e-14 0.0112834 1.89626e-06 -4.98844e-14 0.0112667 1.62564e-06 -3.39754e-14 0.0112522 1.33277e-06 -2.30266e-14 0.0112401 1.05426e-06 -1.68066e-14 0.0112302 8.09689e-07 -1.41318e-14 0.0112223 6.06616e-07 -1.36656e-14 0.0112163 4.44913e-07 -1.43107e-14 0.0112117 3.2035e-07 -1.52971e-14 0.0112082 2.26914e-07 -1.62583e-14 0.0112058 1.58484e-07 -1.69542e-14 0.011204 1.0909e-07 -1.74951e-14 0.0112027 7.41989e-08 -1.75306e-14 4.89007e-08 -1.79896e-14 0.0179748 0.0144782 1.17644e-11 0.0165567 0.0105756 1.8855e-12 0.014702 0.00712393 6.71041e-14 0.0130226 0.0045848 1.08702e-11 0.0117106 0.00283339 -3.64499e-12 0.0107547 0.00166501 1.18466e-11 0.0101211 0.000884936 -1.57044e-12 0.00973609 0.000391231 4.59955e-12 0.00952354 7.98067e-05 1.92644e-12 0.00941713 -9.64346e-05 4.97469e-14 0.00940655 -0.000164336 -1.85183e-12 0.00952328 -0.000199957 -4.00706e-12 0.00966207 -0.000173471 -2.69177e-12 0.00977888 -0.000125425 1.06516e-11 0.00985885 -9.19125e-05 2.49002e-12 0.00990477 -7.5674e-05 5.84249e-12 0.00993654 -7.70937e-05 2.63213e-11 0.0099569 -9.50802e-05 2.94813e-11 0.00998255 -0.000122008 3.45499e-11 0.0100303 -0.000151918 3.62396e-11 0.0101031 -0.00018048 3.89827e-11 0.0101978 -0.000205544 4.3747e-11 0.010288 -0.0002285 3.88508e-11 0.0103795 -0.00024901 3.70705e-11 0.0104784 -0.000266275 3.36956e-11 0.0105862 -0.00028103 3.0642e-11 0.0106996 -0.000292376 2.91699e-11 0.0108151 -0.000300278 2.46605e-11 0.0109323 -0.000304892 1.75857e-11 0.0110527 -0.000305791 1.80957e-11 0.0111779 -0.000303551 2.40304e-11 0.0113091 -0.000298801 1.85969e-11 0.0114466 -0.000292499 1.10652e-11 0.0115893 -0.000285046 1.1467e-11 0.0117352 -0.000276981 9.37675e-12 0.011881 -0.000269084 7.33292e-12 0.0120254 -0.00026149 9.89272e-12 0.0121701 -0.000253918 1.31004e-11 0.0123102 -0.000247886 4.93286e-12 0.0124296 -0.000246354 -1.56895e-12 0.0125142 -0.000246994 3.39851e-12 0.012563 -0.000246983 1.29578e-11 0.0125809 -0.00024877 8.35947e-12 0.0125786 -0.000255252 7.82353e-12 0.0125742 -0.00026478 7.29503e-12 0.0125909 -0.000276269 6.48012e-12 0.012651 -0.000289259 7.79174e-12 0.0127636 -0.000305571 8.44757e-12 0.0129128 -0.000325072 8.57738e-12 0.0131011 -0.000340871 1.36173e-11 0.0133879 -0.000351941 1.99639e-11 0.0138224 -0.000367016 2.34933e-11 0.0143738 -0.000391757 2.86358e-11 0.0150034 -0.000411898 3.32377e-11 0.015679 -0.000430755 3.71638e-11 0.0163751 -0.000447563 3.89397e-11 0.0170725 -0.000462477 3.88944e-11 0.0177473 -0.000475369 3.55731e-11 0.0183708 -0.000485709 2.9877e-11 0.0189145 -0.000492895 2.20043e-11 0.019362 -0.000496174 1.75574e-11 0.0197182 -0.000494967 1.60344e-11 0.0199881 -0.000489066 1.57859e-11 0.0201743 -0.000478472 1.51258e-11 0.0202735 -0.000463498 1.36929e-11 0.0202502 -0.000444561 9.80628e-12 0.0200523 -0.000421562 1.63989e-12 0.0196273 -0.000393084 -2.56989e-11 0.0187422 -0.000353824 -4.7896e-11 0.0176165 -0.000303745 -3.86291e-11 0.0163627 -0.000247558 -2.77079e-11 0.0151517 -0.000191533 -1.70021e-11 0.0141089 -0.000141729 -8.80097e-12 0.0132853 -0.000101322 -3.69925e-12 0.0126745 -7.06201e-05 -9.93808e-13 0.0122414 -4.83097e-05 2.98752e-13 0.0119439 -3.25762e-05 8.91002e-13 0.0117442 -2.1575e-05 7.3293e-13 0.011612 -1.3714e-05 5.71167e-13 0.0115246 -8.02977e-06 3.81545e-13 0.0114663 -3.90491e-06 2.10822e-13 0.0114258 -9.67768e-07 7.27934e-14 0.0113951 1.01355e-06 -5.00749e-14 0.011369 2.23937e-06 -1.03492e-13 0.0113453 2.87074e-06 -1.06163e-13 0.011323 3.04984e-06 -9.22332e-14 0.0113023 2.91952e-06 -7.12987e-14 0.0112833 2.60575e-06 -5.05218e-14 0.0112664 2.20771e-06 -3.39782e-14 0.0112518 1.79531e-06 -2.29019e-14 0.0112397 1.4119e-06 -1.67459e-14 0.0112299 1.0798e-06 -1.41605e-14 0.0112221 8.0644e-07 -1.37584e-14 0.011216 5.90091e-07 -1.44199e-14 0.0112115 4.24082e-07 -1.54012e-14 0.0112081 2.99965e-07 -1.63428e-14 0.0112057 2.09067e-07 -1.7008e-14 0.0112039 1.43754e-07 -1.75391e-14 0.0112027 9.78509e-08 -1.7552e-14 6.42345e-08 -1.7991e-14 0.0181938 0.0146237 3.92325e-11 0.0175265 0.0113753 3.51662e-11 0.0163547 0.00846771 1.00493e-11 0.0150082 0.00605969 7.39525e-12 0.013722 0.00421261 -3.4992e-12 0.0126502 0.00281471 1.21313e-11 0.0117744 0.00182735 8.78413e-12 0.0111202 0.00110799 2.30649e-11 0.0106408 0.000617399 1.8724e-11 0.0103295 0.000273358 1.7254e-11 0.0101659 5.84164e-05 1.82276e-11 0.0100932 -7.61271e-05 6.67589e-12 0.0101114 -0.000144821 5.29622e-12 0.0102084 -0.000181067 5.72496e-12 0.0103227 -0.000173764 4.84855e-12 0.0104198 -0.000139256 3.41545e-12 0.0105005 -0.000120345 6.67567e-12 0.0105653 -0.000118201 2.84403e-11 0.0106234 -0.000129937 3.58659e-11 0.0106824 -0.000152735 3.69994e-11 0.0107443 -0.000182642 4.06303e-11 0.0108125 -0.000214434 4.19058e-11 0.0108918 -0.000245089 3.74361e-11 0.0109796 -0.000274335 3.80857e-11 0.0110719 -0.000301009 3.70483e-11 0.0111706 -0.00032321 3.28314e-11 0.0112756 -0.000341469 3.15071e-11 0.0113847 -0.000355375 2.86594e-11 0.0114957 -0.00036503 2.46329e-11 0.0116093 -0.000370109 2.3475e-11 0.0117302 -0.000371565 2.4856e-11 0.011866 -0.000369928 2.5037e-11 0.012022 -0.00036587 2.48763e-11 0.0121974 -0.000360136 2.47925e-11 0.0123855 -0.000353409 2.40107e-11 0.0125794 -0.000346147 2.4378e-11 0.0127728 -0.000338802 2.57414e-11 0.0129587 -0.000332258 2.91656e-11 0.0131351 -0.000326913 2.87496e-11 0.0133079 -0.000322717 1.57458e-11 0.0134727 -0.000321643 2.11868e-11 0.0136075 -0.000324808 3.44518e-11 0.0136979 -0.000329666 4.24301e-11 0.0137532 -0.000334211 3.04374e-11 0.0137893 -0.000342629 3.04391e-11 0.0138243 -0.000354251 3.01048e-11 0.0138782 -0.000368058 3.0581e-11 0.013972 -0.000383295 3.0307e-11 0.0141104 -0.000401369 3.18136e-11 0.0142782 -0.000421458 3.35229e-11 0.0144853 -0.000436089 3.62769e-11 0.0147846 -0.000447091 3.61776e-11 0.0152081 -0.000462832 4.12282e-11 0.01573 -0.000485947 4.26696e-11 0.0163177 -0.000504125 4.2657e-11 0.016942 -0.000520425 4.33129e-11 0.0175741 -0.000534656 4.12435e-11 0.0181856 -0.000546302 3.66096e-11 0.0187501 -0.00055522 2.93332e-11 0.0192442 -0.000560976 2.14709e-11 0.0196542 -0.000562673 1.67205e-11 0.0199831 -0.000559547 1.48025e-11 0.0202331 -0.000551458 1.44155e-11 0.0203991 -0.000538655 1.3246e-11 0.0204679 -0.000521531 1.06898e-11 0.0204174 -0.000500571 6.22099e-12 0.0202482 -0.000475272 -6.99211e-12 0.0198304 -0.000443315 -2.56383e-11 0.0189093 -0.000399809 -5.68568e-11 0.017765 -0.000344022 -3.9087e-11 0.0164921 -0.000280868 -2.62081e-11 0.0152582 -0.000217479 -1.55253e-11 0.0141915 -0.000160869 -7.76395e-12 0.0133461 -0.000114827 -3.0719e-12 0.0127175 -7.9841e-05 -6.24661e-13 0.0122711 -5.43881e-05 4.74166e-13 0.0119643 -3.64035e-05 8.95252e-13 0.0117586 -2.37585e-05 7.19299e-13 0.0116224 -1.47456e-05 5.22889e-13 0.0115322 -8.23706e-06 3.20065e-13 0.0114717 -3.50319e-06 1.4549e-13 0.0114295 -1.66703e-07 1.44719e-14 0.0113974 2.01675e-06 -6.99181e-14 0.0113701 3.31261e-06 -1.2664e-13 0.0113455 3.91697e-06 -1.17415e-13 0.0113226 4.00326e-06 -9.74284e-14 0.0113015 3.74686e-06 -7.30288e-14 0.0112824 3.29605e-06 -5.06312e-14 0.0112655 2.76509e-06 -3.35794e-14 0.011251 2.23292e-06 -2.25215e-14 0.011239 1.74724e-06 -1.65506e-14 0.0112293 1.33131e-06 -1.41407e-14 0.0112216 9.91528e-07 -1.3847e-14 0.0112157 7.2398e-07 -1.45515e-14 0.0112112 5.19476e-07 -1.55303e-14 0.0112079 3.66955e-07 -1.64435e-14 0.0112055 2.55646e-07 -1.70886e-14 0.0112038 1.75646e-07 -1.75797e-14 0.0112026 1.19359e-07 -1.75797e-14 7.84705e-08 -1.79953e-14 0.0187299 0.0150159 4.87555e-11 0.0179925 0.0121145 2.85924e-11 0.0170557 0.00945638 1.30685e-11 0.0160555 0.00717199 2.15644e-11 0.0150131 0.00536818 2.30726e-11 0.0140609 0.00389877 1.688e-11 0.0132261 0.00279983 8.25378e-12 0.0125246 0.00193641 7.30336e-12 0.0119681 0.00130037 9.43378e-12 0.0115198 0.000811933 1.23267e-11 0.0112122 0.000455209 1.64493e-11 0.011017 0.000198908 1.97655e-11 0.0108954 2.90086e-05 -9.78127e-13 0.0108354 -7.04909e-05 7.19046e-12 0.010842 -0.00012807 9.22054e-12 0.0109187 -0.00016706 9.95959e-12 0.0110266 -0.000173608 1.37173e-11 0.0111306 -0.000163258 1.75873e-11 0.0112223 -0.00016115 2.88328e-11 0.011311 -0.000172739 3.47907e-11 0.0113942 -0.000192652 3.72078e-11 0.0114656 -0.000220742 4.18669e-11 0.0115279 -0.00025411 4.09094e-11 0.0115922 -0.000287818 3.72734e-11 0.0116646 -0.000321087 3.82525e-11 0.0117446 -0.000352422 3.97537e-11 0.0118351 -0.000378344 3.41838e-11 0.0119374 -0.000399658 3.20529e-11 0.0120506 -0.000415988 3.02411e-11 0.0121729 -0.000427537 2.86701e-11 0.0123042 -0.000435513 2.70055e-11 0.0124469 -0.000439108 2.68825e-11 0.0126058 -0.000438986 2.74999e-11 0.0127844 -0.000435729 2.7365e-11 0.0129818 -0.00043044 2.77677e-11 0.0131925 -0.000424322 2.95454e-11 0.013409 -0.000417951 3.16681e-11 0.013624 -0.000411903 3.33273e-11 0.0138321 -0.000406866 3.8536e-11 0.0140306 -0.000403259 4.32099e-11 0.0142225 -0.000401093 3.48372e-11 0.01441 -0.000401446 3.2452e-11 0.0145808 -0.000406243 4.89481e-11 0.0147183 -0.000414621 6.30706e-11 0.0148223 -0.000422885 3.93717e-11 0.0149039 -0.000432351 3.97328e-11 0.0149768 -0.000445529 4.00159e-11 0.0150591 -0.000460175 4.00249e-11 0.0151717 -0.000475653 4.15289e-11 0.015321 -0.000493169 4.27787e-11 0.0154952 -0.000510761 4.07672e-11 0.0157039 -0.000523543 4.17824e-11 0.0159948 -0.000533344 4.639e-11 0.0163951 -0.000547861 4.39653e-11 0.0168773 -0.000566276 4.25622e-11 0.0174112 -0.000580875 3.95943e-11 0.0179667 -0.000593181 3.66268e-11 0.0185138 -0.000602993 3.125e-11 0.0190242 -0.000609732 2.37846e-11 0.0194728 -0.000613353 1.81512e-11 0.0198421 -0.000612841 1.33787e-11 0.020137 -0.000607816 1.14954e-11 0.0203626 -0.000598417 1.06698e-11 0.0205106 -0.000583967 8.75047e-12 0.0205822 -0.000564539 5.54552e-12 0.0205598 -0.000540971 -3.49963e-13 0.0203932 -0.000512978 -1.44404e-11 0.0199827 -0.000478202 -2.77344e-11 0.0190567 -0.000431608 -4.97425e-11 0.017912 -0.000371721 -3.57729e-11 0.0166309 -0.000303655 -2.35239e-11 0.0153791 -0.000235144 -1.3477e-11 0.0142896 -0.000173823 -6.43342e-12 0.0134216 -0.000123878 -2.26051e-12 0.0127737 -8.58591e-05 -2.18541e-13 0.0123121 -5.81713e-05 6.97071e-13 0.0119943 -3.85103e-05 9.42985e-13 0.011781 -2.46291e-05 6.73413e-13 0.0116393 -1.47257e-05 4.74358e-13 0.0115451 -7.59809e-06 2.62614e-13 0.0114813 -2.47797e-06 9.04487e-14 0.0114362 1.08225e-06 -3.50199e-14 0.0114017 3.36323e-06 -9.69568e-14 0.0113726 4.6251e-06 -1.24496e-13 0.0113467 5.11229e-06 -1.22991e-13 0.0113229 5.04324e-06 -9.89036e-14 0.0113011 4.61844e-06 -7.22613e-14 0.0112817 4.00386e-06 -4.91571e-14 0.0112647 3.32463e-06 -3.22477e-14 0.0112502 2.66503e-06 -2.16422e-14 0.0112383 2.07412e-06 -1.61204e-14 0.0112287 1.5741e-06 -1.40351e-14 0.0112211 1.16888e-06 -1.39211e-14 0.0112153 8.51588e-07 -1.46949e-14 0.011211 6.09983e-07 -1.56796e-14 0.0112077 4.30317e-07 -1.65691e-14 0.0112054 2.99335e-07 -1.71693e-14 0.0112037 2.05431e-07 -1.76415e-14 0.0112025 1.39581e-07 -1.76099e-14 9.15274e-08 -1.79969e-14 0.0193151 0.0153585 4.08053e-11 0.0185336 0.0128024 2.68167e-11 0.0176018 0.0103443 1.5031e-11 0.0166561 0.00815601 6.7198e-12 0.0157473 0.00636654 3.32484e-12 0.0148948 0.00489163 2.07141e-12 0.0141448 0.00372272 -5.13738e-12 0.0134766 0.002784 1.05806e-11 0.0129311 0.00204044 5.15039e-12 0.0124485 0.00145489 1.45633e-11 0.0120653 0.000985189 9.51351e-12 0.0117477 0.000630306 4.8378e-12 0.0115283 0.000355042 5.00238e-12 0.0113931 0.000154653 1.56739e-11 0.0113219 2.58675e-05 1.17699e-11 0.0113101 -6.725e-05 2.51738e-11 0.0113416 -0.000123402 2.67883e-11 0.0114294 -0.000168773 3.09531e-11 0.0115477 -0.000190323 3.89552e-11 0.0116607 -0.000195809 4.3391e-11 0.0117614 -0.000210975 4.52018e-11 0.0118494 -0.000237343 4.76934e-11 0.0119171 -0.000265617 4.64363e-11 0.0119669 -0.000298994 4.26821e-11 0.0120179 -0.000334869 4.12835e-11 0.0120854 -0.000369831 3.95528e-11 0.0121722 -0.000402911 3.95033e-11 0.0122795 -0.000431232 3.31398e-11 0.0124051 -0.000454987 3.11436e-11 0.0125444 -0.000474231 3.0278e-11 0.0126936 -0.000489299 2.93511e-11 0.0128512 -0.000499553 2.88045e-11 0.0130182 -0.000505281 2.81694e-11 0.013199 -0.000507069 3.06631e-11 0.0133986 -0.000505756 3.08997e-11 0.0136176 -0.000502414 3.20805e-11 0.0138514 -0.000497956 3.46072e-11 0.0140918 -0.000493123 3.78462e-11 0.0143316 -0.000488407 3.89798e-11 0.0145662 -0.000484399 4.0579e-11 0.0147919 -0.000482008 4.71573e-11 0.0150079 -0.000481706 5.01902e-11 0.0152182 -0.000483416 3.31577e-11 0.0154219 -0.000488253 3.54992e-11 0.0156047 -0.000497447 5.96903e-11 0.0157539 -0.00050906 6.18125e-11 0.0158741 -0.000519962 2.94415e-11 0.015977 -0.000532554 3.75411e-11 0.0160824 -0.000546361 4.17516e-11 0.016213 -0.000560277 4.29606e-11 0.0163719 -0.00057617 4.2866e-11 0.0165516 -0.000590073 4.36887e-11 0.0167711 -0.000599099 4.18634e-11 0.0170704 -0.000606717 3.91269e-11 0.0174575 -0.000619026 3.79466e-11 0.0179081 -0.000631579 3.47376e-11 0.0183927 -0.000641498 2.78528e-11 0.0188779 -0.000648673 2.26784e-11 0.0193334 -0.000653016 1.7017e-11 0.0197327 -0.000654529 1.02898e-11 0.0200605 -0.000652898 5.96058e-12 0.0203258 -0.000645565 5.62496e-12 0.0205359 -0.000631533 5.55917e-12 0.0206666 -0.000612821 3.78096e-12 0.0207193 -0.000590294 4.38921e-13 0.0206909 -0.000564837 -3.46359e-12 0.0205271 -0.000535879 -1.89384e-11 0.0201147 -0.000501325 -2.81447e-11 0.0191923 -0.000453291 -4.7137e-11 0.0180482 -0.000390149 -3.20848e-11 0.0167586 -0.000318629 -2.02948e-11 0.0154894 -0.000246722 -1.11321e-11 0.0143781 -0.000182294 -4.91397e-12 0.0134889 -0.00012974 -1.40681e-12 0.012823 -8.96619e-05 2.44582e-13 0.0123475 -6.03749e-05 8.95084e-13 0.0120198 -3.94697e-05 9.71284e-13 0.0117995 -2.46625e-05 6.45393e-13 0.011653 -1.40962e-05 4.24092e-13 0.0115551 -6.50809e-06 2.08361e-13 0.0114885 -1.07956e-06 3.91664e-14 0.011441 2.56924e-06 -7.38502e-14 0.0114044 4.83542e-06 -1.18069e-13 0.0113738 5.99102e-06 -1.22841e-13 0.0113466 6.316e-06 -1.22547e-13 0.0113221 6.0617e-06 -9.58433e-14 0.0112999 5.45223e-06 -6.84784e-14 0.0112803 4.6681e-06 -4.58537e-14 0.0112634 3.84162e-06 -2.99022e-14 0.011249 3.05934e-06 -2.0255e-14 0.0112373 2.3695e-06 -1.54741e-14 0.0112279 1.79178e-06 -1.38606e-14 0.0112205 1.32691e-06 -1.39958e-14 0.0112148 9.64682e-07 -1.48647e-14 0.0112106 6.89853e-07 -1.58539e-14 0.0112075 4.85991e-07 -1.67096e-14 0.0112052 3.37739e-07 -1.72698e-14 0.0112036 2.31581e-07 -1.77043e-14 0.0112024 1.57122e-07 -1.76448e-14 1.03053e-07 -1.79988e-14 0.0200726 0.015707 4.54812e-11 0.0192537 0.0134478 3.98592e-11 0.0182944 0.0111847 2.9928e-11 0.0173042 0.00910552 1.17973e-11 0.0163877 0.00731692 -9.53396e-13 0.0155494 0.00582936 -8.79894e-12 0.0148182 0.00460755 -2.09186e-11 0.0141694 0.00361233 -1.73909e-11 0.0136064 0.00278854 -1.55404e-11 0.0131017 0.00212088 -9.86701e-12 0.0126681 0.00156749 -6.7351e-12 0.0123129 0.00112688 5.537e-13 0.0120263 0.000771979 9.82811e-12 0.0118424 0.000495516 4.29828e-12 0.0117267 0.000281438 1.4275e-11 0.0116764 0.000126484 1.2557e-11 0.0116794 1.02296e-05 2.59822e-11 0.0117037 -7.12614e-05 3.64999e-11 0.0117587 -0.000133251 3.79698e-11 0.0118561 -0.000188561 4.16539e-11 0.0119626 -0.000224679 4.8284e-11 0.0120481 -0.000249779 5.2155e-11 0.012117 -0.00027942 5.21089e-11 0.0121768 -0.00031366 5.15019e-11 0.0122348 -0.0003506 4.80088e-11 0.012307 -0.000385464 4.46851e-11 0.0124077 -0.000419966 4.20598e-11 0.0125341 -0.000453892 3.79729e-11 0.0126783 -0.000483923 3.35265e-11 0.0128351 -0.000509314 3.16201e-11 0.013 -0.000530967 3.00111e-11 0.0131706 -0.000548233 2.77092e-11 0.0133467 -0.000561001 2.73348e-11 0.0135312 -0.000569224 2.60199e-11 0.0137287 -0.000573727 2.89895e-11 0.0139442 -0.00057526 3.25465e-11 0.0141795 -0.000574254 3.6022e-11 0.0144317 -0.000571593 3.75164e-11 0.0146934 -0.00056815 3.95784e-11 0.0149567 -0.000564587 4.09676e-11 0.015216 -0.000561541 3.96485e-11 0.0154677 -0.000559866 3.83083e-11 0.0157086 -0.00056029 4.07315e-11 0.0159386 -0.00056287 4.14774e-11 0.0161608 -0.000567478 2.99207e-11 0.0163707 -0.000575349 3.75702e-11 0.0165536 -0.000587139 4.71656e-11 0.016702 -0.000599909 3.46934e-11 0.0168254 -0.000610877 3.36222e-11 0.0169467 -0.000621426 3.58736e-11 0.017088 -0.000632624 3.66088e-11 0.0172499 -0.000644899 3.70507e-11 0.0174326 -0.000653923 3.53389e-11 0.0176629 -0.000657866 3.20303e-11 0.0179679 -0.000662107 2.9642e-11 0.0183403 -0.000671291 2.49482e-11 0.0187533 -0.00067816 2.07308e-11 0.0191769 -0.000682487 1.51629e-11 0.0195802 -0.000684716 9.61158e-12 0.0199357 -0.000684399 4.36675e-12 0.0202327 -0.000678784 4.13876e-12 0.0204778 -0.000666221 1.97697e-13 0.0206608 -0.000649787 -9.70193e-13 0.0207736 -0.000629191 -2.63406e-12 0.0208178 -0.000605289 -4.7446e-12 0.0207827 -0.000578318 -9.81463e-12 0.0206195 -0.00054801 -2.34401e-11 0.0202277 -0.000512204 -2.88461e-11 0.0193198 -0.000462942 -4.26821e-11 0.0181832 -0.000397999 -2.82821e-11 0.0168904 -0.000324825 -1.7063e-11 0.0156069 -0.000251371 -8.77373e-12 0.0144751 -0.000185515 -3.40427e-12 0.0135646 -0.0001317 -5.49993e-13 0.0128801 -9.05642e-05 6.73717e-13 0.0123899 -6.04091e-05 1.05315e-12 0.0120511 -3.88032e-05 9.83902e-13 0.0118228 -2.34568e-05 6.10787e-13 0.0116704 -1.25093e-05 3.71248e-13 0.0115681 -4.69045e-06 1.53497e-13 0.0114978 7.80041e-07 -4.28753e-15 0.0114472 4.40418e-06 -1.04244e-13 0.0114081 6.53521e-06 -1.3336e-13 0.0113755 7.48957e-06 -1.2107e-13 0.0113469 7.58222e-06 -1.17894e-13 0.0113215 7.09829e-06 -8.98645e-14 0.0112988 6.27849e-06 -6.29098e-14 0.011279 5.312e-06 -4.15859e-14 0.011262 4.3338e-06 -2.7111e-14 0.0112478 3.42922e-06 -1.87186e-14 0.0112362 2.64326e-06 -1.48222e-14 0.011227 1.99157e-06 -1.37358e-14 0.0112198 1.47079e-06 -1.41278e-14 0.0112143 1.06699e-06 -1.50805e-14 0.0112102 7.61681e-07 -1.60633e-14 0.0112072 5.35817e-07 -1.6875e-14 0.011205 3.71806e-07 -1.738e-14 0.0112034 2.54629e-07 -1.77689e-14 0.0112023 1.72624e-07 -1.76815e-14 1.12982e-07 -1.80013e-14 0.0206563 0.0160617 5.33323e-11 0.0198761 0.0140566 5.10603e-11 0.0190052 0.0119562 4.75687e-11 0.0180764 0.0100006 2.98166e-11 0.0171533 0.00826101 1.06813e-11 0.0162969 0.00675618 -1.09422e-12 0.0155186 0.00547893 -9.03993e-12 0.0148103 0.0044113 -1.94754e-11 0.0141756 0.00351974 -2.16376e-11 0.0136161 0.00278129 -1.75813e-11 0.0131333 0.00216605 -9.12705e-12 0.012739 0.00166124 -6.00882e-12 0.0124148 0.00124673 1.53334e-12 0.0121775 0.000907573 -1.94694e-13 0.0119952 0.000632939 1.32142e-11 0.0118808 0.000409627 6.20385e-12 0.0118167 0.000231263 2.8878e-11 0.0117972 9.50168e-05 2.88043e-11 0.0118173 -1.65611e-05 3.78572e-11 0.0118514 -0.00010037 3.92573e-11 0.0119096 -0.000171379 4.38795e-11 0.0119887 -0.000234166 5.02657e-11 0.0120731 -0.000282942 5.66778e-11 0.0121624 -0.000322625 5.40134e-11 0.0122609 -0.000360927 5.31318e-11 0.0123764 -0.00040127 4.97103e-11 0.0125136 -0.000440828 4.64384e-11 0.0126744 -0.000476259 4.45237e-11 0.0128502 -0.000509888 3.88368e-11 0.0130304 -0.000541563 3.21492e-11 0.0132118 -0.000568021 3.0925e-11 0.0133943 -0.00059042 2.82077e-11 0.0135785 -0.000609029 2.56342e-11 0.0137666 -0.000623446 2.44803e-11 0.0139632 -0.000633748 2.44965e-11 0.0141744 -0.000640438 2.5301e-11 0.0144051 -0.00064404 2.63977e-11 0.0146561 -0.000645164 2.7264e-11 0.0149246 -0.000644427 2.79159e-11 0.0152049 -0.000642541 2.80776e-11 0.015489 -0.000640243 2.88388e-11 0.0157704 -0.000638086 2.8472e-11 0.016045 -0.000636697 2.6788e-11 0.0163097 -0.000636998 2.66659e-11 0.016561 -0.000639381 2.83942e-11 0.0167996 -0.000643405 2.87245e-11 0.0170288 -0.000649178 2.61281e-11 0.0172392 -0.000658464 2.70457e-11 0.0174127 -0.000670127 2.8386e-11 0.0175521 -0.000678508 2.81872e-11 0.0176851 -0.000683803 2.89403e-11 0.0178323 -0.000691196 2.95428e-11 0.0179944 -0.000698377 2.78505e-11 0.0181816 -0.0007002 2.66849e-11 0.0184226 -0.000699394 2.45133e-11 0.0187316 -0.000701323 2.09058e-11 0.0190856 -0.000705644 1.50399e-11 0.0194543 -0.000707814 1.03034e-11 0.0198109 -0.000707582 4.59147e-12 0.0201331 -0.000703305 2.22941e-12 0.020408 -0.000692434 -1.07018e-12 0.0206291 -0.0006774 -5.28825e-12 0.0207876 -0.000658813 -5.58258e-12 0.0208837 -0.000636626 -6.82398e-12 0.0209173 -0.000611212 -8.32802e-12 0.0208771 -0.000582548 -1.5346e-11 0.0207179 -0.000550467 -2.4866e-11 0.0203438 -0.000512893 -2.90159e-11 0.0194474 -0.000462938 -3.95772e-11 0.0183149 -0.000397755 -2.49475e-11 0.0170172 -0.000324427 -1.4037e-11 0.0157191 -0.000250792 -6.44421e-12 0.0145672 -0.000184693 -1.88315e-12 0.013636 -0.000130602 3.06599e-13 0.0129335 -8.91838e-05 1.08394e-12 0.012429 -5.8742e-05 1.19344e-12 0.0120796 -3.68668e-05 9.77036e-13 0.0118436 -2.13051e-05 5.61621e-13 0.0116856 -1.02262e-05 3.07369e-13 0.011579 -2.38531e-06 9.52874e-14 0.0115052 2.99232e-06 -4.7954e-14 0.0114517 6.43423e-06 -1.32964e-13 0.0114103 8.32155e-06 -1.45581e-13 0.011376 9.002e-06 -1.19926e-13 0.0113462 8.82e-06 -1.12054e-13 0.01132 8.08344e-06 -8.32082e-14 0.011297 7.04483e-06 -5.71045e-14 0.0112771 5.89682e-06 -3.73664e-14 0.0112603 4.77287e-06 -2.45131e-14 0.0112463 3.75419e-06 -1.74132e-14 0.0112349 2.88068e-06 -1.43779e-14 0.0112259 2.16292e-06 -1.37732e-14 0.011219 1.59297e-06 -1.43737e-14 0.0112137 1.15307e-06 -1.53706e-14 0.0112097 8.21622e-07 -1.63152e-14 0.0112068 5.77046e-07 -1.70605e-14 0.0112047 3.99897e-07 -1.75097e-14 0.0112033 2.73488e-07 -1.78332e-14 0.0112022 1.8513e-07 -1.77209e-14 1.21084e-07 -1.80033e-14 0.0214686 0.0164603 5.4662e-11 0.0207062 0.014679 5.62259e-11 0.019799 0.0127464 5.33832e-11 0.0188911 0.0108698 3.79862e-11 0.0179876 0.00917213 2.30566e-11 0.0170867 0.00766201 9.40179e-12 0.01623 0.00634143 8.36298e-13 0.0154556 0.00520849 -7.4426e-12 0.0147662 0.00425125 -3.91865e-12 0.0141628 0.00344699 -8.50514e-12 0.0136433 0.00277829 -6.75893e-12 0.01321 0.00222055 -5.60465e-12 0.0128552 0.00175598 8.74436e-13 0.0125711 0.00136521 2.83414e-12 0.0123388 0.00103719 1.07887e-11 0.012161 0.000759357 1.35552e-11 0.0120338 0.000527259 2.1728e-11 0.0119557 0.000331788 2.14996e-11 0.0119317 0.000172692 3.69847e-11 0.0119404 4.19728e-05 3.92615e-11 0.0119785 -6.99941e-05 4.28322e-11 0.0120248 -0.00015971 4.94898e-11 0.0120982 -0.00023714 5.01475e-11 0.012199 -0.00030429 5.15226e-11 0.0123247 -0.00036373 5.36844e-11 0.0124688 -0.000414165 5.24947e-11 0.0126276 -0.000458267 4.98166e-11 0.0128038 -0.000499041 4.87402e-11 0.0129952 -0.000539765 4.60528e-11 0.0131958 -0.000577776 3.9995e-11 0.0133978 -0.000607919 3.40156e-11 0.0136027 -0.000634576 3.29301e-11 0.0138118 -0.000657259 2.81804e-11 0.0140244 -0.000675408 2.40919e-11 0.0142408 -0.00069002 2.10568e-11 0.0144638 -0.000701073 1.96727e-11 0.0146973 -0.000708641 1.93221e-11 0.0149456 -0.00071326 1.87814e-11 0.0152101 -0.000715459 1.81752e-11 0.0154881 -0.000715761 1.78627e-11 0.015775 -0.000714632 1.75536e-11 0.0160659 -0.000712675 1.66193e-11 0.0163565 -0.000710613 1.5109e-11 0.0166427 -0.000709122 1.62319e-11 0.0169197 -0.000708731 1.58968e-11 0.0171824 -0.000709758 1.60841e-11 0.0174297 -0.000711717 1.69959e-11 0.0176645 -0.000714356 2.0053e-11 0.0178798 -0.000720363 2.26509e-11 0.0180565 -0.000727506 2.43081e-11 0.0181952 -0.000731236 2.32639e-11 0.018327 -0.000731374 2.64972e-11 0.0184708 -0.000733455 2.6599e-11 0.0186289 -0.000733727 2.263e-11 0.0188231 -0.000729163 1.90685e-11 0.0190784 -0.000724107 1.52227e-11 0.0193844 -0.000723689 9.67558e-12 0.0197079 -0.00072313 4.10308e-12 0.0200235 -0.000719471 -7.62516e-13 0.0203129 -0.000710248 -2.25626e-12 0.0205606 -0.000695877 -9.48047e-12 0.0207591 -0.000678115 -1.11981e-11 0.0209001 -0.000657282 -1.11239e-11 0.0209814 -0.000633613 -1.1448e-11 0.0210036 -0.000607234 -1.18264e-11 0.0209575 -0.000578013 -2.06783e-11 0.0208028 -0.000545241 -2.72669e-11 0.0204443 -0.000506744 -2.85497e-11 0.0195648 -0.000456379 -3.61453e-11 0.018442 -0.000391222 -2.14961e-11 0.0171435 -0.000318148 -1.09503e-11 0.0158334 -0.000245113 -4.05927e-12 0.0146628 -0.000179727 -3.33387e-13 0.0137116 -0.000126252 1.15532e-12 0.012991 -8.5281e-05 1.46274e-12 0.0124718 -5.51356e-05 1.29606e-12 0.0121111 -3.34349e-05 9.40386e-13 0.0118668 -1.80019e-05 4.91533e-13 0.0117025 -7.07536e-06 2.27642e-13 0.011591 5.39115e-07 2.6414e-14 0.0115133 5.62492e-06 -9.63019e-14 0.0114566 8.72116e-06 -1.62847e-13 0.0114127 1.02501e-05 -1.57172e-13 0.0113764 1.05745e-05 -1.19962e-13 0.0113454 1.00641e-05 -1.0699e-13 0.0113184 9.04477e-06 -7.73086e-14 0.0112951 7.77312e-06 -5.20602e-14 0.0112751 6.4396e-06 -3.38542e-14 0.0112584 5.17185e-06 -2.25107e-14 0.0112446 4.04397e-06 -1.65648e-14 0.0112336 3.08885e-06 -1.42574e-14 0.0112249 2.31089e-06 -1.40223e-14 0.0112181 1.69705e-06 -1.47491e-14 0.011213 1.22549e-06 -1.57333e-14 0.0112093 8.71445e-07 -1.66054e-14 0.0112065 6.10935e-07 -1.72659e-14 0.0112045 4.22638e-07 -1.76381e-14 0.0112031 2.88583e-07 -1.79043e-14 0.0112021 1.95074e-07 -1.77574e-14 1.27322e-07 -1.80029e-14 0.02209 0.016926 5.45346e-11 0.0214589 0.0152387 5.76516e-11 0.0206617 0.0135039 5.55722e-11 0.0197829 0.0117324 4.56451e-11 0.0188731 0.0100557 3.23646e-11 0.0179546 0.00854178 2.41317e-11 0.0170501 0.00719519 1.32401e-11 0.0161966 0.006016 5.73995e-12 0.0154251 0.00500174 -1.10799e-12 0.0147592 0.00414068 -2.02469e-12 0.0142013 0.00341729 3.96639e-12 0.013739 0.00280787 6.83724e-12 0.013351 0.00229408 5.87161e-12 0.0130251 0.00185573 5.00275e-12 0.0127517 0.00148053 9.69079e-12 0.0125267 0.00115552 1.28678e-11 0.0123555 0.000875997 1.74141e-11 0.0122256 0.000634656 2.08154e-11 0.0121503 0.000426934 2.58824e-11 0.0121135 0.000248393 3.31442e-11 0.0121089 9.68274e-05 3.46213e-11 0.0121346 -3.46382e-05 4.24331e-11 0.0121927 -0.000148113 4.56853e-11 0.0122792 -0.000244164 4.88689e-11 0.0123983 -0.000324981 4.91517e-11 0.0125475 -0.000396881 4.95572e-11 0.0127214 -0.00046157 5.10583e-11 0.012913 -0.000520296 5.02848e-11 0.0131173 -0.000569064 4.90054e-11 0.0133278 -0.000610432 4.5088e-11 0.0135451 -0.000648933 4.30109e-11 0.0137718 -0.000686088 4.12904e-11 0.0140037 -0.000712946 3.69659e-11 0.0142414 -0.000734364 3.2709e-11 0.0144849 -0.000752481 2.7682e-11 0.0147307 -0.000765084 2.44291e-11 0.0149793 -0.000773888 2.22325e-11 0.0152345 -0.00077958 1.99471e-11 0.0154988 -0.000782449 1.72885e-11 0.0157707 -0.000783029 1.52877e-11 0.0160493 -0.000781767 1.34434e-11 0.0163337 -0.000779334 1.28137e-11 0.0166217 -0.0007762 1.21806e-11 0.0169103 -0.000772913 1.33136e-11 0.0171969 -0.000769844 1.2656e-11 0.0174771 -0.000767263 1.42323e-11 0.0177441 -0.000766132 1.43481e-11 0.0179944 -0.000765435 1.67907e-11 0.0182305 -0.000765426 2.53597e-11 0.0184443 -0.000767908 2.16223e-11 0.018618 -0.000770152 1.58842e-11 0.0187565 -0.000767783 1.99134e-11 0.018889 -0.000762304 3.11193e-11 0.0190285 -0.000759032 2.14824e-11 0.0191869 -0.000753082 1.41058e-11 0.0193947 -0.000742139 1.02999e-11 0.0196635 -0.000733978 4.52311e-12 0.0199585 -0.000729301 -1.3442e-12 0.0202463 -0.00072099 -3.80157e-12 0.0205036 -0.00070817 -9.27659e-12 0.0207166 -0.000691193 -1.33457e-11 0.0208878 -0.000670345 -1.45161e-11 0.0210135 -0.000646357 -1.47609e-11 0.0210843 -0.000620186 -1.59732e-11 0.0210947 -0.000592308 -2.26265e-11 0.0210371 -0.000562793 -2.68043e-11 0.0208788 -0.000530735 -2.96763e-11 0.0205322 -0.000493393 -2.82632e-11 0.0196757 -0.00044445 -3.26324e-11 0.0185644 -0.000378946 -1.81467e-11 0.0172655 -0.000306516 -7.83025e-12 0.0159435 -0.000234938 -1.62008e-12 0.0147543 -0.000171169 1.23831e-12 0.0137832 -0.000119108 1.99789e-12 0.013045 -7.92359e-05 1.81781e-12 0.0125116 -4.98892e-05 1.37294e-12 0.0121401 -2.87563e-05 8.67207e-13 0.0118877 -1.37649e-05 3.89131e-13 0.0117174 -3.24767e-06 1.30353e-13 0.0116012 3.93126e-06 -5.03041e-14 0.0115197 8.54836e-06 -1.47728e-13 0.01146 1.11674e-05 -1.97806e-13 0.0114137 1.22355e-05 -1.68209e-13 0.0113757 1.21382e-05 -1.19772e-13 0.0113436 1.12631e-05 -1.02485e-13 0.0113161 9.94393e-06 -7.22489e-14 0.0112926 8.43509e-06 -4.79174e-14 0.0112727 6.91961e-06 -3.11656e-14 0.0112562 5.51556e-06 -2.11758e-14 0.0112428 4.28747e-06 -1.62064e-14 0.011232 3.25969e-06 -1.44678e-14 0.0112236 2.42962e-06 -1.44785e-14 0.0112172 1.77877e-06 -1.52421e-14 0.0112123 1.28116e-06 -1.61591e-14 0.0112087 9.08938e-07 -1.69247e-14 0.0112061 6.35892e-07 -1.74819e-14 0.0112042 4.39074e-07 -1.77679e-14 0.0112029 2.9925e-07 -1.7974e-14 0.011202 2.0191e-07 -1.77908e-14 1.31588e-07 -1.80006e-14 0.022956 0.0176378 6.40029e-11 0.022298 0.0158526 5.89851e-11 0.0215402 0.0142074 5.77211e-11 0.0206358 0.012543 5.44796e-11 0.0196984 0.0109133 4.13924e-11 0.0187733 0.00938373 3.5378e-11 0.0178706 0.00801367 2.68983e-11 0.017008 0.00681308 1.87352e-11 0.016211 0.00576533 1.08641e-11 0.0155025 0.00486414 8.69078e-12 0.0148882 0.00409189 4.92341e-12 0.0143641 0.00343208 4.50383e-12 0.0139245 0.00286675 8.2517e-12 0.0135529 0.00237948 1.30651e-11 0.0132359 0.00195604 1.38517e-11 0.0129724 0.00158756 1.1654e-11 0.0127601 0.0012657 1.6554e-11 0.0125972 0.000982778 1.70708e-11 0.0124798 0.000734163 2.25993e-11 0.012398 0.000514198 2.55058e-11 0.0123582 0.000320525 3.04016e-11 0.0123451 0.000149255 3.8563e-11 0.0123709 1.39413e-06 3.72402e-11 0.0124415 -0.000132372 4.1181e-11 0.0125508 -0.000247138 4.44155e-11 0.0126945 -0.000345921 4.63412e-11 0.0128622 -0.0004322 4.92564e-11 0.0130481 -0.000507774 4.9424e-11 0.0132509 -0.000574911 4.95652e-11 0.0134759 -0.000638809 4.9828e-11 0.0137071 -0.0006927 4.78629e-11 0.0139406 -0.000733189 4.82033e-11 0.0141802 -0.000766933 4.72258e-11 0.0144357 -0.000801654 4.66017e-11 0.0146996 -0.000826663 4.10661e-11 0.0149655 -0.000840213 3.72864e-11 0.015237 -0.00085071 3.32193e-11 0.0155113 -0.000855 2.96543e-11 0.0157851 -0.000855529 2.53377e-11 0.0160579 -0.000852721 2.19216e-11 0.0163316 -0.000847767 1.85198e-11 0.0166069 -0.000841905 1.59276e-11 0.0168844 -0.000835445 1.44163e-11 0.0171639 -0.000828643 1.44712e-11 0.0174452 -0.000822192 1.46156e-11 0.0177279 -0.000816359 1.47583e-11 0.0180072 -0.000811504 1.66506e-11 0.0182746 -0.000807998 1.94144e-11 0.0185259 -0.000804633 2.08168e-11 0.0187595 -0.000800935 2.09301e-11 0.0189632 -0.000798781 1.84193e-11 0.0191235 -0.000795454 1.85814e-11 0.019254 -0.000786943 2.86831e-11 0.0193806 -0.000777504 2.0021e-11 0.0195159 -0.000768096 1.07331e-11 0.0196806 -0.000753958 7.77725e-12 0.0199075 -0.000737428 4.26987e-12 0.0201814 -0.000726326 -3.65196e-12 0.020454 -0.000715488 -9.03522e-12 0.0206869 -0.000700448 -1.61252e-11 0.020867 -0.000681194 -2.53744e-11 0.0210093 -0.000657336 -2.70549e-11 0.0211175 -0.00062972 -2.74648e-11 0.0211803 -0.000599891 -2.82764e-11 0.021187 -0.000568884 -2.94519e-11 0.0211236 -0.00053736 -3.12457e-11 0.0209631 -0.000504969 -3.35737e-11 0.0206288 -0.000468954 -3.15583e-11 0.0197949 -0.000421787 -3.17592e-11 0.0186894 -0.000357694 -1.66659e-11 0.0173881 -0.00028791 -5.40735e-12 0.0160539 -0.000219521 5.4475e-13 0.0148463 -0.000158694 2.65615e-12 0.0138556 -0.000109001 2.73037e-12 0.0131 -7.09096e-05 2.08468e-12 0.0125525 -4.28639e-05 1.38065e-12 0.0121701 -2.26979e-05 7.54691e-13 0.0119094 -8.47726e-06 2.62825e-13 0.0117327 1.33575e-06 1.82491e-14 0.0116115 7.84132e-06 -1.29736e-13 0.011526 1.18027e-05 -2.0306e-13 0.0114631 1.37992e-05 -2.41544e-13 0.0114143 1.42995e-05 -1.79127e-13 0.0113747 1.37122e-05 -1.1929e-13 0.0113415 1.2433e-05 -9.90232e-14 0.0113135 1.07945e-05 -6.83605e-14 0.0112898 9.04197e-06 -4.49033e-14 0.0112701 7.34583e-06 -2.94324e-14 0.0112539 5.81099e-06 -2.05671e-14 0.0112408 4.48994e-06 -1.63504e-14 0.0112304 3.39706e-06 -1.49952e-14 0.0112224 2.5219e-06 -1.51175e-14 0.0112162 1.84014e-06 -1.58312e-14 0.0112116 1.32151e-06 -1.6627e-14 0.0112082 9.35125e-07 -1.72574e-14 0.0112057 6.52696e-07 -1.76969e-14 0.0112039 4.49662e-07 -1.7891e-14 0.0112027 3.05808e-07 -1.8038e-14 0.0112018 2.0592e-07 -1.78188e-14 1.33887e-07 -1.79956e-14 0.0238473 0.0185331 5.01216e-11 0.023082 0.0166199 5.11905e-11 0.0223749 0.0148839 5.19925e-11 0.0215887 0.0132976 5.35113e-11 0.0206588 0.0117494 4.89051e-11 0.0196616 0.0102505 3.69127e-11 0.0187024 0.00885541 3.09021e-11 0.017823 0.00761045 2.66778e-11 0.0170293 0.00652945 1.9115e-11 0.01631 0.00559758 1.63145e-11 0.0156647 0.00478722 1.35225e-11 0.0150975 0.00408375 1.16294e-11 0.0146 0.00346997 1.46885e-11 0.0141679 0.00293434 8.52155e-12 0.0138012 0.00246514 1.58669e-11 0.0134967 0.00205326 1.00003e-11 0.0132499 0.00168999 2.14914e-11 0.0130548 0.00136878 1.06035e-11 0.0129036 0.00108283 2.16466e-11 0.0127894 0.000825927 2.03301e-11 0.0127122 0.000595316 2.35609e-11 0.0126728 0.000387587 3.001e-11 0.0126702 0.000202252 3.37012e-11 0.0127071 3.63617e-05 3.93286e-11 0.0127926 -0.000115284 4.02375e-11 0.0129173 -0.000246755 4.16317e-11 0.0130771 -0.00036249 4.45862e-11 0.0132598 -0.000464233 4.64322e-11 0.0134563 -0.000554684 4.93749e-11 0.0136652 -0.000632225 4.91909e-11 0.013881 -0.000702323 5.0013e-11 0.0141151 -0.00076962 5.13406e-11 0.0143648 -0.000824258 5.28206e-11 0.01462 -0.000862222 5.15236e-11 0.0148746 -0.000890645 5.00434e-11 0.0151428 -0.00091927 4.89882e-11 0.0154283 -0.000939671 4.98153e-11 0.0157185 -0.000943348 4.23814e-11 0.0160095 -0.000944188 3.9403e-11 0.0162959 -0.000936956 3.48334e-11 0.016579 -0.000926631 3.16341e-11 0.0168575 -0.00091355 2.81041e-11 0.0171306 -0.000899444 2.57462e-11 0.0173993 -0.00088512 2.48e-11 0.0176698 -0.000871443 2.34552e-11 0.0179443 -0.000859344 2.0364e-11 0.0182221 -0.00084918 2.27697e-11 0.0184976 -0.000841324 2.76763e-11 0.0187599 -0.00083352 3.21636e-11 0.0190034 -0.00082455 1.5692e-11 0.0192258 -0.000817843 4.97851e-12 0.019412 -0.000810689 2.62056e-11 0.0195539 -0.000800685 4.19188e-11 0.0196755 -0.000786516 1.74079e-11 0.0197988 -0.000773529 7.97971e-12 0.0199353 -0.000758069 3.30564e-12 0.0201163 -0.000737285 2.80969e-12 0.0203597 -0.000717889 -1.46427e-12 0.0206239 -0.000704025 -1.01887e-11 0.0208509 -0.000687755 -2.29026e-11 0.0210158 -0.000667009 -2.74249e-11 0.0211316 -0.000641319 -2.89193e-11 0.0212167 -0.00061115 -2.9136e-11 0.0212706 -0.000577731 -2.96516e-11 0.02128 -0.00054249 -3.05311e-11 0.0212243 -0.000506267 -3.1019e-11 0.0210758 -0.0004701 -3.22536e-11 0.0207547 -0.000431302 -3.46276e-11 0.0199277 -0.000387005 -3.49012e-11 0.0188177 -0.00032697 -1.56146e-11 0.0175091 -0.000262767 -3.07894e-12 0.0161607 -0.000199592 2.62471e-12 0.0149344 -0.000142945 3.97521e-12 0.0139245 -9.64034e-05 3.37457e-12 0.013152 -6.06262e-05 2.28603e-12 0.0125909 -3.43213e-05 1.33778e-12 0.0121979 -1.54784e-05 6.06374e-13 0.0119292 -2.32461e-06 1.27875e-13 0.0117462 6.52379e-06 -9.66256e-14 0.01162 1.214e-05 -2.10469e-13 0.0115306 1.52771e-05 -2.51637e-13 0.0114647 1.65256e-05 -2.76188e-13 0.0114137 1.63748e-05 -1.86661e-13 0.0113726 1.52449e-05 -1.19802e-13 0.0113386 1.35361e-05 -9.64551e-14 0.0113102 1.15693e-05 -6.54276e-14 0.0112866 9.5743e-06 -4.28513e-14 0.0112672 7.70448e-06 -2.85253e-14 0.0112513 6.0484e-06 -2.05764e-14 0.0112387 4.64457e-06 -1.69081e-14 0.0112287 3.49618e-06 -1.57704e-14 0.011221 2.58442e-06 -1.58891e-14 0.0112152 1.87885e-06 -1.64797e-14 0.0112108 1.34498e-06 -1.71126e-14 0.0112076 9.49002e-07 -1.75906e-14 0.0112053 6.60567e-07 -1.79068e-14 0.0112037 4.53957e-07 -1.79939e-14 0.0112025 3.0799e-07 -1.80947e-14 0.0112017 2.06895e-07 -1.78424e-14 1.34227e-07 -1.79888e-14 0.0251603 0.0197414 6.69357e-11 0.0240982 0.0176286 5.46328e-11 0.023198 0.0157288 5.47937e-11 0.0223703 0.0140681 4.73159e-11 0.0215269 0.0125241 4.98551e-11 0.0206297 0.0110868 3.75797e-11 0.0196763 0.00972435 3.20592e-11 0.0187436 0.0084662 2.80744e-11 0.0178968 0.0073415 2.55688e-11 0.01715 0.0063595 2.24131e-11 0.0164839 0.00550448 2.30381e-11 0.0158811 0.00475727 1.49214e-11 0.0153408 0.00409871 2.12278e-11 0.0148645 0.00351797 8.14665e-12 0.0144521 0.00300443 2.46656e-11 0.0141025 0.00255096 2.62378e-12 0.0138144 0.00214805 2.52522e-11 0.0135856 0.00178944 5.78904e-12 0.0134048 0.00146728 2.20994e-11 0.0132653 0.00117628 1.47924e-11 0.0131645 0.000912206 1.89587e-11 0.0131014 0.000671918 2.30419e-11 0.0130786 0.000452652 2.50222e-11 0.0131012 0.000254943 2.68191e-11 0.0131578 7.38552e-05 3.42043e-11 0.0132557 -9.34829e-05 3.52057e-11 0.013389 -0.000241795 3.83549e-11 0.0135531 -0.0003736 4.05615e-11 0.0137343 -0.000491297 4.42589e-11 0.0139293 -0.000595241 4.59155e-11 0.0141426 -0.000687383 4.89674e-11 0.0143546 -0.0007662 5.04275e-11 0.0145667 -0.000837082 5.06662e-11 0.0148036 -0.000902946 5.08038e-11 0.0150621 -0.000954811 5.10254e-11 0.0153235 -0.000988502 5.13914e-11 0.0155887 -0.00100765 5.33379e-11 0.0158678 -0.00102776 5.01901e-11 0.0161671 -0.00104003 5.45002e-11 0.0164686 -0.00103495 4.22332e-11 0.0167642 -0.00102247 4.61692e-11 0.0170511 -0.00100451 4.20476e-11 0.0173307 -0.00098194 4.16188e-11 0.0176056 -0.000956885 4.4528e-11 0.017876 -0.000932243 3.95332e-11 0.0181465 -0.000909331 3.47504e-11 0.0184213 -0.000889274 3.57688e-11 0.0186958 -0.000872183 3.53634e-11 0.0189625 -0.000857211 3.33831e-11 0.0192156 -0.000844328 2.88925e-11 0.019447 -0.000830641 1.87765e-11 0.0196472 -0.000816259 2.60573e-11 0.0198057 -0.000802413 3.63869e-11 0.0199293 -0.000786284 3.13879e-11 0.0200435 -0.00076874 6.59784e-12 0.0201611 -0.000751819 6.6571e-12 0.0203047 -0.000729597 9.52353e-13 0.0205092 -0.000704334 -6.98339e-12 0.0207599 -0.000684475 -1.17254e-11 0.0209919 -0.000667364 -1.4177e-11 0.0211587 -0.000646416 -2.48477e-11 0.021259 -0.000620727 -2.89476e-11 0.0213211 -0.000590041 -2.9694e-11 0.0213586 -0.000554911 -3.09832e-11 0.0213688 -0.00051626 -3.26293e-11 0.0213307 -0.000475457 -3.41406e-11 0.0212042 -0.000433143 -3.48955e-11 0.0208991 -0.000390334 -3.13626e-11 0.0200658 -0.000344831 -3.62629e-11 0.0189449 -0.000290968 -1.44362e-11 0.0176267 -0.000234135 -5.20196e-13 0.0162642 -0.000176908 4.77846e-12 0.01502 -0.000124792 5.24765e-12 0.0139919 -8.17007e-05 3.91683e-12 0.0132031 -4.85643e-05 2.37462e-12 0.0126288 -2.43217e-05 1.24129e-12 0.0122253 -7.1257e-06 4.49071e-13 0.0119484 4.63746e-06 -3.40589e-14 0.011759 1.22727e-05 -2.179e-13 0.0116277 1.67844e-05 -2.95158e-13 0.0115343 1.89321e-05 -2.97182e-13 0.0114654 1.93164e-05 -3.13307e-13 0.0114123 1.84369e-05 -1.81464e-13 0.0113699 1.6721e-05 -1.28695e-13 0.0113352 1.45633e-05 -9.55669e-14 0.0113066 1.22632e-05 -6.37693e-14 0.0112832 1.00298e-05 -4.19143e-14 0.011264 7.99503e-06 -2.84794e-14 0.0112486 6.22823e-06 -2.11769e-14 0.0112365 4.75221e-06 -1.78272e-14 0.0112269 3.55808e-06 -1.67407e-14 0.0112196 2.61816e-06 -1.67469e-14 0.0112141 1.89581e-06 -1.71518e-14 0.01121 1.35233e-06 -1.75948e-14 0.0112071 9.51116e-07 -1.79049e-14 0.0112049 6.60112e-07 -1.80927e-14 0.0112034 4.52345e-07 -1.81016e-14 0.0112023 3.06072e-07 -1.81327e-14 0.0112015 2.0507e-07 -1.78523e-14 1.3268e-07 -1.79766e-14 0.0263481 0.0209672 2.89936e-11 0.0252816 0.0188031 7.73427e-11 0.0242745 0.016778 6.2006e-11 0.0233392 0.0149744 5.4331e-11 0.0224253 0.0133744 5.03416e-11 0.0215149 0.011925 4.06972e-11 0.0206062 0.0105817 3.58994e-11 0.0197071 0.00933602 2.95446e-11 0.0188487 0.00819373 2.46512e-11 0.0180581 0.00716311 2.22994e-11 0.0173469 0.00625388 2.04776e-11 0.0167086 0.0054561 2.08692e-11 0.0161327 0.00475198 2.43484e-11 0.0156183 0.00412795 1.37918e-11 0.0151685 0.00357296 2.31063e-11 0.0147827 0.00307929 8.91213e-12 0.0144609 0.0026385 2.04406e-11 0.0141946 0.00224372 9.06515e-12 0.0139814 0.00188639 1.58616e-11 0.0138151 0.00156279 1.34736e-11 0.0136921 0.00126608 1.53056e-11 0.0136138 0.000995405 1.67322e-11 0.0135772 0.000746754 1.90219e-11 0.013582 0.000518457 2.04247e-11 0.0136281 0.000309257 2.38681e-11 0.0137025 0.000115808 2.6072e-11 0.0138092 -6.43103e-05 3.05904e-11 0.0139492 -0.000228911 3.28724e-11 0.0141091 -0.000376133 3.55266e-11 0.0142811 -0.000507984 3.99077e-11 0.0144669 -0.000625546 4.03916e-11 0.0146662 -0.00072924 4.39287e-11 0.0148658 -0.000820376 4.60749e-11 0.015061 -0.000895797 4.63319e-11 0.0152748 -0.000965493 4.68149e-11 0.0155076 -0.00102729 4.9169e-11 0.0157657 -0.001072 4.96181e-11 0.0160344 -0.00109862 5.17643e-11 0.0163032 -0.00110693 4.28551e-11 0.0165901 -0.00111524 4.84871e-11 0.0168797 -0.00111523 5.34227e-11 0.0171717 -0.00110288 5.07269e-11 0.0174573 -0.00107885 4.26852e-11 0.0177372 -0.00104871 5.26608e-11 0.0180176 -0.00101475 7.15402e-11 0.0182979 -0.000980675 4.13968e-11 0.0185765 -0.000947226 5.44642e-11 0.0188562 -0.000916027 5.59976e-11 0.0191315 -0.000888999 3.25349e-11 0.0193909 -0.000864394 2.73114e-11 0.0196296 -0.000841739 3.48607e-11 0.0198434 -0.000820856 3.28293e-11 0.0200176 -0.00080059 1.54956e-11 0.0201509 -0.000778229 5.30701e-12 0.0202646 -0.000755852 2.23435e-11 0.0203743 -0.000734765 1.23311e-11 0.0204901 -0.000712226 3.26384e-12 0.0206497 -0.000683675 -1.11929e-11 0.0208731 -0.000656834 -1.60484e-11 0.0211078 -0.000637097 -1.4583e-11 0.0212898 -0.000615878 -1.90366e-11 0.0213959 -0.000591169 -2.43278e-11 0.0214428 -0.000561971 -2.66265e-11 0.021457 -0.000527881 -2.91741e-11 0.0214549 -0.000488851 -3.22562e-11 0.0214228 -0.000445544 -3.47602e-11 0.021315 -0.000399448 -3.45842e-11 0.0210223 -0.000352251 -3.05231e-11 0.0201774 -0.000304842 -3.34267e-11 0.0190563 -0.000257436 -9.99093e-12 0.0177344 -0.000206298 3.1443e-12 0.0163608 -0.000153541 7.16847e-12 0.0151006 -0.000105201 6.47823e-12 0.0140554 -6.53677e-05 4.40109e-12 0.0132511 -3.50114e-05 2.43194e-12 0.0126641 -1.30699e-05 1.10142e-12 0.0122503 2.17185e-06 2.49337e-13 0.0119654 1.22651e-05 -1.95219e-13 0.0117696 1.84305e-05 -3.35635e-13 0.0116335 2.16445e-05 -3.70476e-13 0.0115363 2.26605e-05 -3.40219e-13 0.0114647 2.20824e-05 -3.42927e-13 0.0114097 2.04196e-05 -1.84161e-13 0.0113661 1.80927e-05 -1.30561e-13 0.011331 1.5479e-05 -9.47941e-14 0.0113025 1.28515e-05 -6.3037e-14 0.0112793 1.03917e-05 -4.18534e-14 0.0112606 8.20628e-06 -2.90947e-14 0.0112458 6.34323e-06 -2.22071e-14 0.0112341 4.80832e-06 -1.89876e-14 0.0112251 3.57997e-06 -1.78201e-14 0.0112182 2.62149e-06 -1.7635e-14 0.0112131 1.8901e-06 -1.78152e-14 0.0112092 1.34309e-06 -1.80492e-14 0.0112065 9.41314e-07 -1.81928e-14 0.0112045 6.51158e-07 -1.82568e-14 0.0112031 4.44855e-07 -1.81807e-14 0.0112021 3.0012e-07 -1.81614e-14 0.0112014 2.00492e-07 -1.78547e-14 1.29353e-07 -1.79614e-14 0.0277493 0.0216762 5.17375e-12 0.0265586 0.0201093 7.05577e-11 0.0253668 0.0179886 6.00551e-11 0.0243278 0.0160221 5.3181e-11 0.0234176 0.0143112 4.71046e-11 0.0225408 0.0128185 4.0482e-11 0.0216527 0.0114573 3.24048e-11 0.0207583 0.0102122 3.06071e-11 0.0198578 0.00906068 2.40282e-11 0.0189988 0.00799675 2.42802e-11 0.0182284 0.00703548 2.21628e-11 0.0175498 0.00617778 2.10048e-11 0.0169477 0.0054262 2.27633e-11 0.0164109 0.00475989 1.90083e-11 0.0159364 0.00416775 2.09953e-11 0.0155252 0.00363673 1.50801e-11 0.0151733 0.00316079 1.59278e-11 0.0148784 0.00272997 1.26213e-11 0.0146359 0.00233983 1.18209e-11 0.0144416 0.00198275 1.14887e-11 0.0142972 0.00165612 1.09912e-11 0.0142002 0.00135557 1.22046e-11 0.014151 0.00107886 1.319e-11 0.0141442 0.000823249 1.48359e-11 0.0141774 0.000586713 1.64393e-11 0.0142439 0.000367556 1.86718e-11 0.0143319 0.000163318 2.18678e-11 0.0144427 -2.6149e-05 2.40059e-11 0.0145811 -0.000205283 2.63402e-11 0.0147329 -0.00036573 2.9769e-11 0.0148904 -0.000510081 3.21876e-11 0.0150611 -0.000638866 3.34343e-11 0.0152358 -0.000753306 3.73365e-11 0.0154091 -0.000852957 3.59605e-11 0.015594 -0.000937417 3.93561e-11 0.0157844 -0.0010081 3.95853e-11 0.0159857 -0.00107524 4.02738e-11 0.0162138 -0.00112802 3.96659e-11 0.0164685 -0.00116313 3.99159e-11 0.0167399 -0.00117898 4.97732e-11 0.0170107 -0.00118211 4.12739e-11 0.0172754 -0.001172 2.90734e-11 0.0175449 -0.00116148 2.63797e-11 0.0178178 -0.00113941 7.48771e-11 0.0180922 -0.00110447 5.03018e-11 0.0183725 -0.00106578 3.68025e-11 0.0186614 -0.00102351 4.48212e-11 0.0189533 -0.000981346 5.03745e-11 0.0192424 -0.000939838 4.46474e-11 0.0195211 -0.000900666 3.89892e-11 0.0197784 -0.000864298 5.17949e-11 0.0200038 -0.000831291 3.24597e-11 0.0201956 -0.000800882 -4.91789e-12 0.0203502 -0.000772252 -7.54634e-12 0.0204748 -0.000740484 3.56773e-11 0.0205881 -0.000711094 1.08151e-11 0.020693 -0.000685145 -1.55692e-13 0.0208107 -0.000655577 -1.14633e-11 0.0209863 -0.00062237 -2.91249e-11 0.0212095 -0.000595123 -2.77398e-11 0.0214071 -0.0005733 -2.57127e-11 0.0215318 -0.000548662 -3.00184e-11 0.0215838 -0.000521404 -3.07216e-11 0.0215836 -0.000490211 -3.2237e-11 0.021555 -0.000454238 -3.45878e-11 0.0214962 -0.000413019 -3.54564e-11 0.0213797 -0.000367555 -3.60165e-11 0.0210851 -0.000320922 -2.94326e-11 0.0202495 -0.000274452 -2.55352e-11 0.0191502 -0.000229833 -3.00559e-12 0.017834 -0.000180229 7.55805e-12 0.0164531 -0.00012954 9.66691e-12 0.0151783 -8.40097e-05 7.61459e-12 0.0141167 -4.72689e-05 4.86718e-12 0.0132973 -1.98837e-05 2.45718e-12 0.0126976 -5.81752e-07 8.98395e-13 0.0122737 1.23611e-05 1.959e-14 0.0119807 2.04729e-05 -3.52664e-13 0.0117786 2.49115e-05 -4.48241e-13 0.0116376 2.66326e-05 -4.4027e-13 0.0115368 2.63834e-05 -3.7702e-13 0.0114626 2.47639e-05 -3.67742e-13 0.011406 2.22735e-05 -1.86213e-13 0.0113617 1.93245e-05 -1.32934e-13 0.0113263 1.62603e-05 -9.50062e-14 0.0112979 1.33194e-05 -6.33018e-14 0.0112752 1.0651e-05 -4.26091e-14 0.0112571 8.33337e-06 -3.02723e-14 0.0112428 6.39112e-06 -2.35659e-14 0.0112317 4.81219e-06 -2.03018e-14 0.0112232 3.56204e-06 -1.89422e-14 0.0112168 2.59504e-06 -1.85067e-14 0.011212 1.8625e-06 -1.84368e-14 0.0112084 1.31801e-06 -1.84594e-14 0.0112059 9.2025e-07 -1.844e-14 0.0112041 6.34353e-07 -1.83911e-14 0.0112028 4.31929e-07 -1.82379e-14 0.0112019 2.90478e-07 -1.81752e-14 0.0112013 1.93435e-07 -1.78472e-14 1.244e-07 -1.79429e-14 0.0291086 0.0207364 -4.71056e-11 0.0280509 0.0211754 -1.10748e-11 0.0267855 0.0193016 5.44818e-11 0.0255589 0.0172481 4.66414e-11 0.0244809 0.0154036 4.19447e-11 0.0235264 0.0137993 3.57815e-11 0.0226369 0.0123782 2.93999e-11 0.0217745 0.0110944 2.4235e-11 0.0209222 0.00991988 2.45594e-11 0.0200722 0.00884636 2.29855e-11 0.0192345 0.00785705 2.48614e-11 0.0184694 0.00695363 2.13026e-11 0.017806 0.00614316 2.25482e-11 0.0172355 0.00542378 2.18932e-11 0.0167402 0.0047888 2.22816e-11 0.01631 0.0042224 1.88502e-11 0.0159383 0.00371243 1.57742e-11 0.0156215 0.0032492 1.31906e-11 0.0153555 0.0028262 1.00989e-11 0.0151409 0.00243767 9.66342e-12 0.0149755 0.00208065 8.23208e-12 0.0148618 0.00175072 8.95512e-12 0.0147992 0.00144673 9.04048e-12 0.0147826 0.00116481 9.85772e-12 0.0148049 0.00090324 1.13545e-11 0.0148606 0.000659444 1.26762e-11 0.0149426 0.000431651 1.40939e-11 0.0150394 0.000219317 1.69055e-11 0.0151473 2.30072e-05 1.88962e-11 0.0152787 -0.000170717 1.97565e-11 0.0154162 -0.000341462 2.20168e-11 0.0155564 -0.000495535 2.31127e-11 0.0157037 -0.000633218 2.46691e-11 0.0158475 -0.000755608 2.64639e-11 0.0159937 -0.000861436 2.612e-11 0.0161577 -0.000952531 2.83463e-11 0.0163263 -0.00102722 2.53827e-11 0.0164992 -0.00109238 2.48098e-11 0.0166958 -0.00115099 2.37257e-11 0.0169186 -0.00119412 2.37733e-11 0.0171714 -0.0012181 2.41868e-11 0.0174232 -0.00122552 1.56046e-11 0.0176717 -0.0012163 1.03309e-11 0.0179131 -0.00119663 4.36981e-11 0.0181587 -0.00116849 3.55944e-11 0.0184197 -0.00113802 6.72838e-12 0.0186979 -0.00109924 2.12622e-11 0.01899 -0.00105265 3.01281e-11 0.0192891 -0.00100342 2.71197e-11 0.0195844 -0.00095322 4.42117e-11 0.0198642 -0.000904169 2.65728e-11 0.0201156 -0.000856874 -2.08399e-12 0.0203294 -0.000812174 1.62238e-12 0.0205069 -0.000770017 3.37729e-11 0.0206542 -0.000729694 8.70961e-12 0.0207806 -0.000689377 -4.61198e-12 0.0208918 -0.0006532 -1.02751e-11 0.0209908 -0.000620366 -2.42757e-11 0.021115 -0.000583304 -3.59756e-11 0.0213032 -0.00054677 -3.82533e-11 0.0215099 -0.0005186 -3.61336e-11 0.0216628 -0.00049214 -3.67497e-11 0.0217295 -0.000465413 -3.69435e-11 0.0217216 -0.00043752 -3.744e-11 0.0216677 -0.000407327 -3.82396e-11 0.0215669 -0.000373053 -3.71406e-11 0.021394 -0.000334036 -3.46591e-11 0.0210864 -0.000292752 -2.47927e-11 0.0203008 -0.000249808 -9.24637e-12 0.0192375 -0.000203588 6.79173e-12 0.0179306 -0.000152802 1.28881e-11 0.0165428 -0.000103139 1.23918e-11 0.0152533 -6.03333e-05 8.89875e-12 0.014175 -2.70261e-05 4.95727e-12 0.0133405 -3.08027e-06 2.2778e-12 0.0127282 1.30976e-05 6.74073e-13 0.0122942 2.33278e-05 -2.20074e-13 0.0119932 2.91103e-05 -4.97939e-13 0.011785 3.15626e-05 -5.46766e-13 0.0116395 3.16114e-05 -4.99947e-13 0.0115354 2.99833e-05 -4.06713e-13 0.011459 2.72679e-05 -3.83957e-13 0.0114012 2.39349e-05 -1.86426e-13 0.0113562 2.03702e-05 -1.36116e-13 0.0113209 1.6875e-05 -9.62191e-14 0.0112929 1.36458e-05 -6.43428e-14 0.0112707 1.07946e-05 -4.39422e-14 0.0112533 8.3685e-06 -3.1815e-14 0.0112397 6.36766e-06 -2.5107e-14 0.0112292 4.76183e-06 -2.16692e-14 0.0112213 3.50364e-06 -2.00426e-14 0.0112153 2.53886e-06 -1.93229e-14 0.0112109 1.81341e-06 -1.89965e-14 0.0112076 1.27763e-06 -1.88139e-14 0.0112053 8.88452e-07 -1.86436e-14 0.0112036 6.10114e-07 -1.8492e-14 0.0112025 4.13969e-07 -1.82757e-14 0.0112017 2.77459e-07 -1.81752e-14 0.0112011 1.84136e-07 -1.78302e-14 1.1802e-07 -1.79208e-14 0.0289651 0.0203653 -6.11507e-11 0.0292886 0.0206982 -2.32196e-11 0.0281249 0.0204328 1.05386e-11 0.0269551 0.0185915 6.20439e-11 0.0258295 0.01666 4.88235e-11 0.0247748 0.0149215 3.76495e-11 0.023784 0.0134027 2.95235e-11 0.0228464 0.0120439 2.28714e-11 0.0219571 0.0108189 2.00875e-11 0.0211092 0.00970435 1.77745e-11 0.0202982 0.00868767 2.05537e-11 0.0195201 0.00776117 2.11769e-11 0.0187923 0.00691299 2.22172e-11 0.0181487 0.00614587 2.09681e-11 0.0176019 0.00545683 1.71223e-11 0.0171391 0.0048446 1.59324e-11 0.0167471 0.00429576 1.54608e-11 0.0164144 0.00379956 1.33948e-11 0.0161339 0.00334467 1.06741e-11 0.0159031 0.00292632 8.72922e-12 0.0157223 0.00253909 7.42072e-12 0.015593 0.0021809 6.43953e-12 0.0155154 0.00184882 7.13856e-12 0.0154872 0.00154112 6.67e-12 0.0155001 0.00125479 8.31567e-12 0.0155486 0.000987666 8.77188e-12 0.0156201 0.000738135 9.79619e-12 0.0157115 0.000503248 1.12936e-11 0.0158193 0.000285056 1.12408e-11 0.015922 7.88668e-05 1.26689e-11 0.0160346 -0.000118503 1.33309e-11 0.0161519 -0.000298078 1.35949e-11 0.0162702 -0.000459358 1.38545e-11 0.0163883 -0.000603346 1.40623e-11 0.0165012 -0.000730549 1.42952e-11 0.0166194 -0.000841548 1.38122e-11 0.0167556 -0.000935969 1.39513e-11 0.0169002 -0.00101635 1.3111e-11 0.0170508 -0.00107978 1.28743e-11 0.0172237 -0.00113995 1.259e-11 0.0174154 -0.00118904 1.14024e-11 0.0176292 -0.001221 9.54149e-12 0.0178406 -0.00123231 9.02957e-12 0.0180578 -0.00122748 2.35305e-11 0.0182802 -0.00121281 1.83971e-11 0.0185099 -0.00118202 -1.33816e-12 0.018754 -0.0011433 8.37118e-12 0.0190202 -0.00109988 1.32965e-11 0.0193077 -0.00105588 1.6965e-11 0.0196069 -0.00100594 1.72131e-11 0.0199014 -0.000950762 1.18305e-11 0.0201768 -0.000892388 8.75129e-12 0.0204221 -0.000835093 5.87585e-12 0.0206285 -0.000779157 1.04054e-12 0.020797 -0.000725417 -5.65341e-12 0.0209419 -0.000674199 -1.63984e-11 0.0210712 -0.000626093 -2.61109e-11 0.0211787 -0.000582753 -3.32847e-11 0.0212747 -0.000541171 -4.10302e-11 0.0214101 -0.000497259 -4.53744e-11 0.0216034 -0.000457907 -4.39241e-11 0.0217841 -0.000426096 -4.1681e-11 0.0218793 -0.000396258 -4.21153e-11 0.0218725 -0.000369724 -4.16278e-11 0.0217922 -0.000345099 -4.0833e-11 0.0216505 -0.000319942 -3.75777e-11 0.0214304 -0.000291853 -3.04446e-11 0.0210883 -0.000258681 -1.90933e-11 0.0203697 -0.000219018 6.17881e-12 0.0193347 -0.000171148 1.43719e-11 0.0180314 -0.0001199 1.65528e-11 0.0166333 -7.22716e-05 1.48415e-11 0.015327 -3.32333e-05 9.88352e-12 0.014231 -4.29517e-06 5.27565e-12 0.0133809 1.54247e-05 2.19977e-12 0.0127558 2.78591e-05 4.52155e-13 0.0123117 3.48894e-05 -4.59859e-13 0.0120029 3.79834e-05 -6.44454e-13 0.0117889 3.82044e-05 -6.39995e-13 0.011639 3.64312e-05 -5.52994e-13 0.0115321 3.33466e-05 -4.34065e-13 0.0114539 2.95087e-05 -4.01843e-13 0.0113951 2.53413e-05 -1.88489e-13 0.01135 2.11884e-05 -1.38462e-13 0.0113149 1.72971e-05 -9.80357e-14 0.0112875 1.38154e-05 -6.60947e-14 0.0112661 1.08142e-05 -4.57818e-14 0.0112494 8.30792e-06 -3.36307e-14 0.0112366 6.27184e-06 -2.6743e-14 0.0112268 4.65772e-06 -2.30207e-14 0.0112194 3.40594e-06 -2.10728e-14 0.0112138 2.4544e-06 -2.00529e-14 0.0112098 1.74425e-06 -1.94752e-14 0.0112069 1.22322e-06 -1.91024e-14 0.0112047 8.46951e-07 -1.87996e-14 0.0112033 5.79296e-07 -1.85569e-14 0.0112022 3.91561e-07 -1.82927e-14 0.0112015 2.61512e-07 -1.81644e-14 0.011201 1.72946e-07 -1.78048e-14 1.10453e-07 -1.78948e-14 0.0290948 0.0180866 -1.42851e-10 0.0296791 0.0200409 -4.04457e-11 0.0294068 0.0206928 -6.5081e-12 0.0283037 0.0197769 2.16053e-11 0.027138 0.0179972 6.03824e-11 0.0260347 0.0161561 4.25405e-11 0.0250032 0.0145125 2.99548e-11 0.0240225 0.013067 2.22213e-11 0.023096 0.0117768 1.89858e-11 0.0222145 0.0106084 1.70995e-11 0.02138 0.00954637 1.62124e-11 0.0205856 0.00858105 1.54648e-11 0.0198412 0.00770091 1.62579e-11 0.0191561 0.00690361 1.58234e-11 0.0185507 0.00617972 1.96594e-11 0.0180359 0.00552317 1.58998e-11 0.0176068 0.00492875 1.31844e-11 0.0172509 0.00438987 1.15295e-11 0.0169566 0.00389827 9.63184e-12 0.0167162 0.00344745 7.79131e-12 0.0165258 0.0030303 6.74451e-12 0.0163854 0.00264387 5.01555e-12 0.0162958 0.00228488 5.45116e-12 0.0162542 0.00195122 4.58284e-12 0.0162576 0.00164028 5.65785e-12 0.0162957 0.0013504 5.70342e-12 0.0163612 0.00107873 6.60608e-12 0.0164463 0.000824483 6.81692e-12 0.0165405 0.000585763 7.33705e-12 0.0166444 0.000362414 6.75783e-12 0.016743 0.000152566 6.92238e-12 0.0168355 -4.37053e-05 6.04833e-12 0.016928 -0.000230997 5.53675e-12 0.0170158 -0.000397121 4.7955e-12 0.0171005 -0.00054525 4.54319e-12 0.017182 -0.000675516 3.66247e-12 0.0172735 -0.000789545 3.52523e-12 0.0173817 -0.000886788 2.66575e-12 0.0175 -0.000970065 2.12012e-12 0.0176398 -0.00103611 6.88455e-13 0.0177905 -0.00109408 6.02228e-13 0.0179457 -0.00114683 -9.10903e-14 0.0181127 -0.0011838 8.9992e-13 0.0182801 -0.00120184 9.76453e-13 0.0184535 -0.00120118 8.17365e-12 0.0186426 -0.00118993 5.9927e-12 0.0188568 -0.00116492 3.24327e-12 0.019098 -0.0011298 7.16625e-12 0.0193616 -0.00108436 -2.79619e-13 0.0196416 -0.00103337 -2.93969e-12 0.0199296 -0.000978208 -5.94323e-12 0.0202133 -0.000921182 -5.83147e-12 0.0204788 -0.000860406 -7.47565e-12 0.0207125 -0.000795622 -1.13561e-11 0.0209085 -0.000729725 -2.05958e-11 0.0210727 -0.000666499 -2.82221e-11 0.0212188 -0.0006065 -3.46728e-11 0.0213483 -0.000551512 -3.98409e-11 0.0214499 -0.000499873 -4.29272e-11 0.0215464 -0.000449446 -4.6591e-11 0.0216955 -0.000400422 -4.76271e-11 0.0218874 -0.000358116 -4.38756e-11 0.0220187 -0.00032107 -4.34381e-11 0.0220335 -0.000290745 -4.23097e-11 0.0219456 -0.000267724 -3.99143e-11 0.0217703 -0.000249985 -3.45558e-11 0.0215274 -0.000232766 -2.49368e-11 0.0211488 -0.000209857 -1.25569e-11 0.0204716 -0.000175154 8.70016e-12 0.0194462 -0.000128621 1.68095e-11 0.0181376 -7.94148e-05 1.90794e-11 0.016724 -3.58729e-05 1.62506e-11 0.0153981 -2.27109e-06 1.05704e-11 0.0142832 2.09588e-05 5.28981e-12 0.0134169 3.54773e-05 1.9724e-12 0.012779 4.34469e-05 1.8761e-13 0.0123251 4.67719e-05 -7.02722e-13 0.0120089 4.6841e-05 -7.86825e-13 0.0117895 4.46271e-05 -7.27478e-13 0.0116359 4.09166e-05 -6.01104e-13 0.0115266 3.63474e-05 -4.577e-13 0.0114471 3.13976e-05 -4.15994e-13 0.0113879 2.64338e-05 -1.91714e-13 0.0113429 2.17415e-05 -1.41001e-13 0.0113084 1.7504e-05 -1.00655e-13 0.0112818 1.38155e-05 -6.83856e-14 0.0112612 1.07038e-05 -4.79148e-14 0.0112454 8.14964e-06 -3.55461e-14 0.0112334 6.10391e-06 -2.83513e-14 0.0112243 4.50124e-06 -2.42783e-14 0.0112175 3.27079e-06 -2.19877e-14 0.0112124 2.34354e-06 -2.06723e-14 0.0112087 1.65674e-06 -1.98619e-14 0.0112061 1.15622e-06 -1.93217e-14 0.0112042 7.96947e-07 -1.89025e-14 0.0112029 5.42764e-07 -1.85951e-14 0.0112019 3.65423e-07 -1.82824e-14 0.0112013 2.43128e-07 -1.81372e-14 0.0112009 1.6019e-07 -1.77732e-14 1.01949e-07 -1.78659e-14 0.0284474 0.0114579 -3.67362e-10 0.0295847 0.0187253 -8.90754e-11 0.0303995 0.0198597 -2.05024e-11 0.0296328 0.0205603 2.89731e-12 0.0285555 0.0192101 4.38866e-11 0.0273695 0.0174796 4.40735e-11 0.0262569 0.0157389 3.32825e-11 0.0252217 0.0141665 2.32814e-11 0.0242381 0.0127849 1.74497e-11 0.0233116 0.011553 1.52117e-11 0.0224487 0.0104472 1.48115e-11 0.0216523 0.00944589 1.57109e-11 0.0209209 0.00853812 1.63267e-11 0.0202519 0.00771021 1.67665e-11 0.0196414 0.00695492 1.61633e-11 0.0190937 0.00626309 1.70457e-11 0.0186125 0.00562902 1.47298e-11 0.0182003 0.00504622 1.22332e-11 0.0178598 0.00450938 8.30912e-12 0.0175885 0.0040155 6.04986e-12 0.017381 0.0035611 4.80978e-12 0.0172311 0.00314228 4.00841e-12 0.0171324 0.00275496 3.56668e-12 0.017081 0.00239524 3.01805e-12 0.017072 0.00205991 3.16401e-12 0.0170999 0.00174659 3.15545e-12 0.0171576 0.00145352 3.3988e-12 0.0172354 0.00117915 3.34507e-12 0.0173254 0.000921767 3.28411e-12 0.0174213 0.000681194 2.53492e-12 0.0175159 0.000455618 1.80867e-12 0.0175997 0.000245567 6.46763e-13 0.0176667 5.03143e-05 -3.74227e-13 0.01773 -0.000138454 -1.99696e-12 0.0177821 -0.000306554 -2.55565e-12 0.0178321 -0.000457124 -2.98301e-12 0.0178859 -0.000589982 -3.51994e-12 0.0179528 -0.000705575 -3.29078e-12 0.018035 -0.000805347 -3.85531e-12 0.0181325 -0.000889209 -3.40777e-12 0.0182618 -0.000959352 -4.78831e-12 0.0183873 -0.00101553 -4.86315e-12 0.0185007 -0.00106898 -5.552e-12 0.0186177 -0.00110975 -5.54175e-12 0.0187379 -0.00113434 -7.78265e-12 0.0188738 -0.00113932 -1.68372e-11 0.0190298 -0.00113051 -1.18412e-11 0.0192234 -0.00111063 -1.31346e-11 0.0194549 -0.00107979 -1.0192e-11 0.0197159 -0.00103951 -1.16876e-11 0.0199935 -0.000990904 -1.5686e-11 0.020274 -0.000933841 -2.18083e-11 0.0205409 -0.000870727 -2.53481e-11 0.0207847 -0.00080353 -2.95606e-11 0.0209997 -0.000734609 -3.23126e-11 0.0211844 -0.000665263 -3.6498e-11 0.0213437 -0.000594801 -4.00766e-11 0.0214864 -0.000528454 -4.15822e-11 0.0216078 -0.000467682 -4.15407e-11 0.0217021 -0.000409544 -4.20292e-11 0.0218059 -0.000352032 -4.47478e-11 0.0219667 -0.000298243 -4.20434e-11 0.0221298 -0.000251048 -3.97119e-11 0.0221898 -0.000210876 -3.90822e-11 0.0221202 -0.000182563 -3.62023e-11 0.0219347 -0.00016564 -3.09525e-11 0.0216834 -0.0001539 -1.99405e-11 0.0212872 -0.000141476 -1.18783e-11 0.0206067 -0.000116425 6.55435e-12 0.0195732 -7.47253e-05 1.78458e-11 0.0182493 -3.0479e-05 2.03049e-11 0.0168142 6.37243e-06 1.63809e-11 0.0154655 3.24347e-05 1.08049e-11 0.0143303 4.84324e-05 5.02725e-12 0.0134475 5.66825e-05 1.60162e-12 0.0127971 5.94857e-05 -1.47556e-13 0.0123338 5.8657e-05 -9.74259e-13 0.0120108 5.54254e-05 -9.22726e-13 0.0117867 5.06147e-05 -8.09268e-13 0.01163 4.49257e-05 -6.46506e-13 0.011519 3.88781e-05 -4.85846e-13 0.0114387 3.28661e-05 -4.30164e-13 0.0113795 2.71701e-05 -1.96718e-13 0.0113351 2.20046e-05 -1.43788e-13 0.0113015 1.74829e-05 -1.03968e-13 0.0112758 1.36412e-05 -7.10664e-14 0.0112563 1.04628e-05 -5.019e-14 0.0112414 7.89566e-06 -3.74339e-14 0.0112302 5.86701e-06 -2.98389e-14 0.0112218 4.29584e-06 -2.53808e-14 0.0112156 3.10145e-06 -2.27515e-14 0.011211 2.20912e-06 -2.11629e-14 0.0112077 1.55325e-06 -2.01488e-14 0.0112054 1.07852e-06 -1.94675e-14 0.0112037 7.39887e-07 -1.89566e-14 0.0112025 5.01652e-07 -1.85993e-14 0.0112017 3.36321e-07 -1.82544e-14 0.0112011 2.22874e-07 -1.81013e-14 0.0112008 1.46271e-07 -1.77349e-14 9.27648e-08 -1.78361e-14 0.0257666 0.00496282 -1.44969e-10 0.0294337 0.0140355 -2.20377e-10 0.0300169 0.0190409 -6.21064e-11 0.0308981 0.0196381 -6.15866e-12 0.0299573 0.0201878 2.27542e-12 0.0288373 0.0187135 1.95001e-11 0.0276148 0.0170506 2.24564e-11 0.026462 0.01539 1.98796e-11 0.0254204 0.0138892 1.62199e-11 0.0244727 0.0125727 1.4526e-11 0.0236075 0.0114091 1.37729e-11 0.0228128 0.0103653 1.38089e-11 0.0220791 0.00942174 1.38874e-11 0.0214019 0.00856068 1.45602e-11 0.0207798 0.00777035 1.4666e-11 0.020215 0.00704229 1.45581e-11 0.0197104 0.00636866 1.32731e-11 0.0192653 0.00574501 1.09755e-11 0.018882 0.00516721 1.02903e-11 0.0185648 0.00463228 8.26968e-12 0.0183174 0.00413864 5.93545e-12 0.0181404 0.00368375 3.85177e-12 0.0180267 0.00326404 2.56283e-12 0.017965 0.00287553 1.495e-12 0.0179457 0.00251463 7.17806e-13 0.0179622 0.00217764 5.09832e-13 0.018009 0.00186247 2.29296e-13 0.018079 0.00156752 2.53206e-14 0.0181629 0.00129159 -5.12229e-13 0.0182513 0.0010334 -1.27881e-12 0.0183369 0.000792273 -2.3858e-12 0.0184143 0.000567394 -3.34244e-12 0.0184775 0.000358261 -4.42746e-12 0.018517 0.000164204 -7.4088e-12 0.01854 -1.0645e-05 -7.94013e-12 0.0185613 -0.000188618 -9.13538e-12 0.0185819 -0.000338417 -8.60819e-12 0.0186123 -0.000471718 -7.10359e-12 0.0186544 -0.000588563 -6.83777e-12 0.0187136 -0.000689957 -6.59181e-12 0.0187961 -0.000775452 -6.07763e-12 0.0189033 -0.000848866 -5.78333e-12 0.0189976 -0.000906613 -6.67376e-12 0.0190658 -0.000956869 -7.14503e-12 0.0191366 -0.00100075 -7.62991e-12 0.019216 -0.00103056 -8.03065e-12 0.0193152 -0.00104301 -1.14301e-11 0.0194479 -0.0010382 -1.75673e-11 0.0196299 -0.00102404 -2.3757e-11 0.019851 -0.000998802 -2.76004e-11 0.020098 -0.000963135 -3.36827e-11 0.0203596 -0.000917413 -3.58568e-11 0.0206212 -0.00086277 -3.51007e-11 0.0208679 -0.000800654 -3.62829e-11 0.0210894 -0.00073213 -3.79057e-11 0.021281 -0.000659615 -4.02578e-11 0.0214486 -0.000586155 -4.15464e-11 0.0215991 -0.000514254 -4.07168e-11 0.0217311 -0.000445417 -4.0269e-11 0.0218362 -0.000379939 -3.49836e-11 0.0219235 -0.0003168 -3.64072e-11 0.0220376 -0.000255823 -3.56568e-11 0.0221979 -0.000198627 -3.17412e-11 0.022304 -0.000146116 -3.14585e-11 0.0222842 -0.000104059 -2.97077e-11 0.0221354 -7.699e-05 -2.6402e-11 0.0218706 -6.42562e-05 -1.87297e-11 0.0214898 -5.55718e-05 -1.0027e-11 0.0207789 -4.22035e-05 8.5848e-12 0.0197157 -9.52335e-06 2.04295e-11 0.0183638 2.6463e-05 2.19404e-11 0.0169008 5.38884e-05 1.68274e-11 0.0155265 7.02005e-05 1.0613e-11 0.0143702 7.74667e-05 4.49116e-12 0.0134712 7.84976e-05 1.10479e-12 0.0128089 7.55474e-05 -5.20734e-13 0.0123371 7.02083e-05 -1.2389e-12 0.0120082 6.34701e-05 -1.05838e-12 0.0117802 5.59885e-05 -8.89644e-13 0.0116213 4.83267e-05 -6.89101e-13 0.0115092 4.08579e-05 -5.36012e-13 0.0114288 3.38611e-05 -4.38596e-13 0.0113702 2.75201e-05 -2.03956e-13 0.0113267 2.19635e-05 -1.46792e-13 0.0112941 1.72291e-05 -1.0722e-13 0.0112696 1.32933e-05 -7.36238e-14 0.0112512 1.00952e-05 -5.22581e-14 0.0112374 7.55102e-06 -3.90677e-14 0.0112271 5.56636e-06 -3.10687e-14 0.0112194 4.04637e-06 -2.62511e-14 0.0112138 2.90213e-06 -2.33248e-14 0.0112097 2.05464e-06 -2.1507e-14 0.0112068 1.43653e-06 -2.03302e-14 0.0112047 9.92255e-07 -1.95411e-14 0.0112032 6.77369e-07 -1.89631e-14 0.0112022 4.57132e-07 -1.85715e-14 0.0112015 3.0513e-07 -1.82112e-14 0.011201 2.01348e-07 -1.80557e-14 0.0112006 1.31603e-07 -1.7692e-14 8.31551e-08 -1.78057e-14 0.0203134 0.00201677 -1.15127e-10 0.026606 0.00617771 -3.30156e-10 0.029977 0.0150418 -1.40367e-10 0.0303969 0.0191057 -4.09304e-11 0.0312693 0.0192791 -1.21128e-12 0.0302818 0.0197367 1.21049e-12 0.0291533 0.0182821 8.98302e-12 0.027923 0.0167005 1.10827e-11 0.0267498 0.0151155 1.12248e-11 0.025706 0.0136871 1.07217e-11 0.0247831 0.0124357 1.10363e-11 0.0239652 0.011332 1.14227e-11 0.0232325 0.0103468 1.2399e-11 0.0225613 0.00945282 1.31971e-11 0.0219407 0.00863016 1.34402e-11 0.0213661 0.00786555 1.32087e-11 0.0208399 0.00715085 1.23565e-11 0.0203689 0.00648382 1.06613e-11 0.0199561 0.00586242 8.69592e-12 0.0196091 0.00528582 6.67548e-12 0.0193336 0.00475378 4.77607e-12 0.0191288 0.00426413 2.83861e-12 0.0189902 0.00381295 1.06735e-12 0.0189101 0.00339534 -3.66693e-13 0.0188778 0.00300691 -1.72581e-12 0.0188831 0.00264493 -2.65409e-12 0.018917 0.0023067 -3.28409e-12 0.0189742 0.00199042 -3.68811e-12 0.0190472 0.00169493 -4.07018e-12 0.0191262 0.00141899 -4.48204e-12 0.0192023 0.00116181 -5.85264e-12 0.0192675 0.00092207 -8.84024e-12 0.0193175 0.000699739 -1.12826e-11 0.0193521 0.000493074 -1.29744e-11 0.0193717 0.000303867 -1.39515e-11 0.0193649 0.000127675 -1.47001e-11 0.0193503 -3.11686e-05 -1.27009e-11 0.0193475 -0.000187343 -9.19911e-12 0.019356 -0.000321381 -7.77987e-12 0.0193754 -0.000438362 -7.16156e-12 0.0194154 -0.000540531 -6.9264e-12 0.01948 -0.00062919 -6.63185e-12 0.0195512 -0.000704718 -7.50584e-12 0.0196049 -0.00076699 -8.09809e-12 0.019633 -0.000815064 -8.32009e-12 0.0196648 -0.00086116 -7.52444e-12 0.019711 -0.000896133 -1.08015e-11 0.0197831 -0.00091506 -1.70625e-11 0.0199022 -0.000916499 -5.01178e-13 0.0200771 -0.000906194 -3.43046e-11 0.0202881 -0.00088778 -3.26168e-11 0.0205151 -0.000857137 -3.85792e-11 0.0207498 -0.000816282 -3.71647e-11 0.0209794 -0.000766434 -3.70629e-11 0.0211915 -0.000708012 -4.05367e-11 0.0213811 -0.000642354 -4.1821e-11 0.0215478 -0.000572605 -4.17646e-11 0.0216956 -0.000500821 -3.93043e-11 0.0218274 -0.000429782 -3.65057e-11 0.0219373 -0.000361433 -3.01511e-11 0.0220223 -0.000294989 -2.91764e-11 0.0221084 -0.000229897 -2.37939e-11 0.0222312 -0.000166904 -2.36561e-11 0.0223586 -0.000106395 -1.8878e-11 0.0223985 -5.09895e-05 -1.85538e-11 0.0223077 -6.9343e-06 -1.56956e-11 0.0220766 2.10426e-05 -1.24892e-11 0.0217122 3.41917e-05 -6.18959e-12 0.0209873 4.27941e-05 4.27137e-12 0.0198703 6.34571e-05 2.75525e-11 0.0184764 8.9705e-05 2.48408e-11 0.0169794 0.0001051 1.74343e-11 0.015578 0.000109719 1.04301e-11 0.0144008 0.000107076 3.89069e-12 0.0134866 0.000100217 5.71333e-13 0.0128136 9.11477e-05 -8.88295e-13 0.0123345 8.10824e-05 -1.48396e-12 0.0120007 7.07224e-05 -1.19127e-12 0.0117699 6.05925e-05 -9.65355e-13 0.0116098 5.10092e-05 -7.28931e-13 0.0114974 4.22153e-05 -5.79058e-13 0.0114176 3.43466e-05 -4.45587e-13 0.0113599 2.74694e-05 -2.0949e-13 0.0113177 2.16134e-05 -1.49486e-13 0.0112865 1.67454e-05 -1.10075e-13 0.0112634 1.27782e-05 -7.57683e-14 0.0112462 9.60883e-06 -5.39054e-14 0.0112334 7.12367e-06 -4.03117e-14 0.011224 5.20926e-06 -3.19634e-14 0.0112171 3.75909e-06 -2.68507e-14 0.0112121 2.67798e-06 -2.36917e-14 0.0112084 1.88417e-06 -2.17019e-14 0.0112058 1.30973e-06 -2.04079e-14 0.011204 8.99781e-07 -1.95467e-14 0.0112027 6.11119e-07 -1.89276e-14 0.0112018 4.10442e-07 -1.85168e-14 0.0112012 2.72719e-07 -1.81528e-14 0.0112008 1.79177e-07 -1.80025e-14 0.0112006 1.16615e-07 -1.76461e-14 7.33854e-08 -1.77754e-14 0.01816 0.000768032 -4.99008e-11 0.0212081 0.00251142 -1.38414e-10 0.0274852 0.00684958 -2.98447e-10 0.0303932 0.0155593 -1.06361e-10 0.0306879 0.0188139 -2.43401e-11 0.0314304 0.0188699 -8.37031e-12 0.0304436 0.0192748 -1.01031e-12 0.0293553 0.017891 4.83511e-12 0.0281642 0.016401 2.14935e-12 0.0270312 0.0148978 5.68761e-12 0.026033 0.0135583 8.83213e-12 0.025175 0.0123842 1.13852e-11 0.0244315 0.011346 1.28806e-11 0.0237679 0.0104075 1.4035e-11 0.0231501 0.00954285 1.39092e-11 0.0225626 0.00873446 1.26149e-11 0.0220102 0.00797397 1.09446e-11 0.0215045 0.00725954 9.09377e-12 0.0210594 0.00659335 7.21133e-12 0.0206846 0.00597638 5.32742e-12 0.0203857 0.00540732 3.32499e-12 0.0201639 0.00488333 1.31082e-12 0.020011 0.00440046 -8.98712e-13 0.0199151 0.00395348 -2.72299e-12 0.0198659 0.00353757 -3.73211e-12 0.0198556 0.00314947 -4.6834e-12 0.0198758 0.00278703 -5.89968e-12 0.0199169 0.00244846 -7.05618e-12 0.0199733 0.0021325 -8.77372e-12 0.0200391 0.00183807 -1.05975e-11 0.0201036 0.00156429 -1.26047e-11 0.0201573 0.00130973 -1.4362e-11 0.0201945 0.00107341 -1.61511e-11 0.0202141 0.000854362 -1.7444e-11 0.020216 0.000652548 -1.84763e-11 0.0202037 0.000466306 -1.86725e-11 0.020184 0.000296694 -1.88344e-11 0.020154 0.000139496 -1.73111e-11 0.0201269 2.8116e-06 -1.18226e-11 0.0201106 -0.000136071 -1.00176e-11 0.0201099 -0.000256163 -8.74238e-12 0.0201316 -0.000360168 -8.74575e-12 0.020168 -0.000451177 -9.03068e-12 0.0201924 -0.000529636 -1.02507e-11 0.0202019 -0.000596136 -1.07475e-11 0.020203 -0.000648572 -8.98615e-12 0.0202034 -0.000692738 -4.81216e-12 0.0202133 -0.000732432 -5.01838e-12 0.0202747 -0.00075823 1.42697e-10 0.0203878 -0.000768071 -1.31323e-10 0.02056 -0.000763017 -8.31799e-11 0.0207558 -0.000751086 -5.10783e-11 0.020955 -0.000726142 -3.90254e-11 0.0211541 -0.000691138 -3.64017e-11 0.0213434 -0.000647834 -3.70422e-11 0.0215134 -0.000595989 -4.03588e-11 0.0216632 -0.000537077 -4.12308e-11 0.0217958 -0.000474283 -3.89098e-11 0.0219143 -0.000409488 -3.51744e-11 0.0220158 -0.000344567 -2.72081e-11 0.0220957 -0.00027995 -2.28295e-11 0.0221643 -0.000215116 -1.74279e-11 0.0222524 -0.000151184 -1.57618e-11 0.0223711 -8.76532e-05 -9.30693e-12 0.0224482 -2.42611e-05 -8.86184e-12 0.0224233 3.49264e-05 -6.07425e-12 0.0222608 8.21017e-05 -3.54942e-12 0.0219171 0.000113817 1.58993e-12 0.0213073 0.000131318 1.51398e-11 0.0200428 0.000143649 4.39674e-11 0.0185814 0.000157051 3.06428e-11 0.0170451 0.000157786 1.85947e-11 0.0156165 0.000149306 1.02166e-11 0.01442 0.00013617 3.26514e-12 0.0134924 0.000121184 -2.4305e-15 0.0128103 0.00010584 -1.21827e-12 0.0123254 9.09156e-05 -1.69187e-12 0.0119883 7.69851e-05 -1.31983e-12 0.0117559 6.42599e-05 -1.03267e-12 0.0115955 5.28837e-05 -7.62872e-13 0.0114838 4.28975e-05 -6.15833e-13 0.0114051 3.42947e-05 -4.44654e-13 0.011349 2.70069e-05 -2.09802e-13 0.0113084 2.09591e-05 -1.55714e-13 0.0112788 1.60406e-05 -1.12052e-13 0.0112571 1.21071e-05 -7.70585e-14 0.0112412 9.01493e-06 -5.48599e-14 0.0112296 6.62402e-06 -4.10112e-14 0.0112211 4.80467e-06 -3.24421e-14 0.0112149 3.44139e-06 -2.7144e-14 0.0112104 2.43486e-06 -2.384e-14 0.0112072 1.70223e-06 -2.17473e-14 0.011205 1.17624e-06 -2.03878e-14 0.0112034 8.03578e-07 -1.94887e-14 0.0112023 5.42921e-07 -1.88546e-14 0.0112016 3.62834e-07 -1.84419e-14 0.011201 2.39953e-07 -1.80837e-14 0.0112007 1.56945e-07 -1.79438e-14 0.0112005 1.01711e-07 -1.75977e-14 6.37301e-08 -1.77452e-14 0.0173274 0.000281238 -1.29894e-11 0.0185538 0.000940257 -5.44981e-11 0.0220236 0.00266874 -1.07645e-10 0.0278436 0.00771124 -2.3355e-10 0.0304971 0.0155707 -7.31434e-11 0.0308436 0.0184313 -1.74065e-11 0.0315415 0.0185036 -1.12066e-11 0.0305977 0.0188517 -3.61805e-12 0.0295608 0.0175747 -8.0864e-13 0.0284486 0.0161878 7.36232e-13 0.0274183 0.0147887 5.10277e-12 0.026516 0.0135437 7.65294e-12 0.0257348 0.0124347 9.77478e-12 0.0250379 0.0114316 1.01589e-11 0.0243945 0.0105065 1.03437e-11 0.0237822 0.00964239 9.74522e-12 0.0231971 0.00883058 8.43047e-12 0.0226578 0.00806898 6.73429e-12 0.0221852 0.00735939 4.9473e-12 0.0217918 0.00670376 3.23482e-12 0.0214787 0.00610021 1.27795e-12 0.0212416 0.00554337 -8.02917e-13 0.0210745 0.00502853 -2.65906e-12 0.0209652 0.00455125 -4.8178e-12 0.0209017 0.00410672 -8.85161e-12 0.0208738 0.0036919 -1.10367e-11 0.0208752 0.00330394 -1.30328e-11 0.0209001 0.00294205 -1.41293e-11 0.0209383 0.00260479 -1.55251e-11 0.0209853 0.00229118 -1.65968e-11 0.0210357 0.00200018 -1.78468e-11 0.021077 0.00173054 -1.91218e-11 0.0211011 0.00148028 -2.05765e-11 0.0211066 0.00124824 -2.18149e-11 0.0210932 0.00103376 -2.26927e-11 0.0210637 0.000836071 -2.30473e-11 0.0210244 0.000654544 -2.33442e-11 0.0209845 0.000488653 -2.29469e-11 0.0209459 0.000337351 -2.29842e-11 0.0209068 0.000199139 -2.16329e-11 0.0208713 7.34557e-05 -1.89056e-11 0.0208486 -3.6766e-05 -1.49075e-11 0.0208465 -0.000148112 -1.57528e-11 0.0208432 -0.000244016 -1.48635e-11 0.0208198 -0.000327415 -1.53866e-11 0.020792 -0.000397759 -1.45477e-11 0.0207676 -0.000457283 -1.38027e-11 0.0207399 -0.000502521 -1.43896e-11 0.0207424 -0.000543871 -1.18662e-11 0.020786 -0.00057663 -1.1932e-11 0.0209089 -0.000594369 -1.3388e-11 0.0210744 -0.000596756 -1.63714e-11 0.0212437 -0.00058997 -2.49865e-11 0.0214064 -0.000571917 -3.30826e-11 0.0215617 -0.000544658 -3.51149e-11 0.021703 -0.000509893 -3.75431e-11 0.0218253 -0.000467137 -4.06646e-11 0.021931 -0.000418115 -3.98409e-11 0.0220234 -0.000365367 -3.5088e-11 0.0221023 -0.000310494 -2.81568e-11 0.022165 -0.000254099 -2.04235e-11 0.0222169 -0.00019543 -1.46877e-11 0.0222784 -0.000134951 -1.08411e-11 0.0223727 -7.2747e-05 -4.74887e-12 0.0224595 -7.21258e-06 -3.84581e-12 0.0224873 5.99023e-05 -1.80453e-12 0.0224002 0.00012289 7.37901e-13 0.0221336 0.000175053 8.33424e-12 0.0215703 0.0002117 3.13027e-11 0.0202019 0.000227178 7.37748e-11 0.0186673 0.000224422 4.14104e-11 0.017092 0.000208625 2.01272e-11 0.0156391 0.000187072 9.68044e-12 0.0144263 0.000163834 2.47159e-12 0.0134877 0.000140851 -5.94285e-13 0.0127986 0.000119143 -1.59417e-12 0.0123097 9.94797e-05 -1.88439e-12 0.0119708 8.20361e-05 -1.43341e-12 0.0117382 6.6863e-05 -1.09052e-12 0.0115786 5.38573e-05 -7.8976e-13 0.0114684 4.28628e-05 -6.47374e-13 0.0113916 3.36918e-05 -4.34366e-13 0.0113375 2.61366e-05 -2.08623e-13 0.0112988 2.00099e-05 -1.62429e-13 0.011271 1.51296e-05 -1.12609e-13 0.0112509 1.12958e-05 -7.73309e-14 0.0112364 8.32828e-06 -5.5054e-14 0.0112259 6.06482e-06 -4.11466e-14 0.0112183 4.3631e-06 -3.25114e-14 0.0112128 3.10159e-06 -2.71477e-14 0.0112089 2.17915e-06 -2.379e-14 0.0112062 1.51359e-06 -2.16621e-14 0.0112042 1.03955e-06 -2.02837e-14 0.0112029 7.06158e-07 -1.93801e-14 0.0112019 4.74543e-07 -1.87524e-14 0.0112013 3.15529e-07 -1.83511e-14 0.0112009 2.07664e-07 -1.80066e-14 0.0112006 1.35203e-07 -1.7882e-14 0.0112004 8.72421e-08 -1.7549e-14 5.44283e-08 -1.77157e-14 0.016956 0.000112803 -5.24141e-12 0.0173117 0.000354376 -1.76606e-11 0.018885 0.00095691 -3.9955e-11 0.0227876 0.0029573 -8.95211e-11 0.0283811 0.00807696 -1.74984e-10 0.030748 0.015497 -5.34654e-11 0.0310684 0.0180509 -1.87097e-11 0.0317161 0.0181641 -8.72977e-12 0.0308734 0.0184771 -5.82283e-12 0.0298866 0.0173359 -1.10031e-11 0.0288713 0.0160756 -3.51333e-12 0.027933 0.014783 1.58866e-12 0.0270936 0.013607 2.37132e-12 0.0263436 0.012526 4.99361e-12 0.0256512 0.0115264 6.25162e-12 0.0249991 0.0105947 6.2916e-12 0.0243877 0.00972638 4.7893e-12 0.0238255 0.00891782 2.54965e-12 0.0233322 0.00816681 4.48141e-13 0.0229249 0.00747296 -1.01399e-12 0.0226028 0.00683401 -2.39465e-12 0.0223561 0.00624444 -3.34359e-12 0.0221748 0.0056973 -6.07371e-12 0.0220509 0.00518853 -9.19824e-12 0.0219732 0.00471495 -1.29878e-11 0.0219296 0.00427243 -1.58295e-11 0.021911 0.00385844 -1.82999e-11 0.0219133 0.00347156 -1.99826e-11 0.0219339 0.00311221 -2.05877e-11 0.0219625 0.00277907 -2.18479e-11 0.0219949 0.00247059 -2.31147e-11 0.0220244 0.00218526 -2.40782e-11 0.0220359 0.00192105 -2.49485e-11 0.0220253 0.00167564 -2.59035e-11 0.0219957 0.00144811 -2.69361e-11 0.0219482 0.00123793 -2.7704e-11 0.0218883 0.00104427 -2.82483e-11 0.021827 0.000866705 -2.84362e-11 0.0217702 0.000704503 -2.85802e-11 0.0217147 0.000556658 -2.91684e-11 0.0216624 0.000421628 -2.88858e-11 0.0216181 0.000298618 -2.94358e-11 0.0215829 0.000185839 -2.99452e-11 0.0215514 8.2784e-05 -2.92136e-11 0.0214998 -5.3363e-06 -2.90475e-11 0.0214355 -9.65257e-05 -2.82858e-11 0.021373 -0.000175599 -2.1405e-11 0.0213217 -0.000242009 -2.3643e-11 0.021291 -0.000294251 -1.58361e-11 0.0212864 -0.000336944 -1.47127e-11 0.0213438 -0.000372006 -1.37346e-11 0.0214624 -0.000397423 -1.44739e-11 0.0216049 -0.000408684 -2.01835e-11 0.0217365 -0.000407901 -2.79461e-11 0.0218539 -0.000396952 -3.46988e-11 0.0219597 -0.000379429 -3.66787e-11 0.0220497 -0.00035474 -3.89556e-11 0.0221243 -0.000322473 -3.90217e-11 0.0221857 -0.000284799 -3.60354e-11 0.0222351 -0.000243577 -2.9943e-11 0.0222719 -0.000199276 -2.11191e-11 0.0222999 -0.000151009 -1.69943e-11 0.0223378 -9.83889e-05 -1.05766e-11 0.0224098 -4.12925e-05 -4.21664e-12 0.0224971 2.15054e-05 -2.07834e-12 0.0225536 9.03984e-05 2.23938e-13 0.0225267 0.000161989 7.43796e-12 0.0223251 0.000229849 1.96571e-11 0.021778 0.000282255 4.63143e-11 0.0202995 0.000303395 9.90414e-11 0.018716 0.000283412 4.84984e-11 0.0171149 0.000254008 2.00295e-11 0.0156446 0.000222012 8.27943e-12 0.0144193 0.000189699 1.37576e-12 0.0134722 0.000158817 -1.30836e-12 0.0127782 0.000130915 -2.00425e-12 0.0122872 0.000106511 -2.08343e-12 0.0119483 8.56904e-05 -1.52445e-12 0.011717 6.82736e-05 -1.13562e-12 0.0115595 5.38762e-05 -8.51096e-13 0.0114517 4.20904e-05 -6.67434e-13 0.0113774 3.25369e-05 -4.15045e-13 0.0113256 2.48704e-05 -2.07057e-13 0.0112892 1.87884e-05 -1.66579e-13 0.0112633 1.40354e-05 -1.11561e-13 0.0112449 1.03653e-05 -7.64548e-14 0.0112317 7.5671e-06 -5.44327e-14 0.0112223 5.46105e-06 -4.07086e-14 0.0112156 3.89636e-06 -3.21837e-14 0.0112109 2.74874e-06 -2.68827e-14 0.0112075 1.91762e-06 -2.35634e-14 0.0112052 1.32318e-06 -2.14641e-14 0.0112035 9.03184e-07 -2.01107e-14 0.0112024 6.09975e-07 -1.92318e-14 0.0112016 4.07671e-07 -1.8628e-14 0.0112011 2.69666e-07 -1.82493e-14 0.0112007 1.7661e-07 -1.79252e-14 0.0112005 1.14449e-07 -1.78195e-14 0.0112003 7.35247e-08 -1.75012e-14 4.56726e-08 -1.76877e-14 0.0168444 5.41684e-05 -1.26651e-12 0.0170005 0.000122967 -3.28434e-12 0.0173625 0.000370176 -1.09908e-11 0.0191048 0.00102203 -2.57255e-11 0.0233922 0.003037 -5.81265e-11 0.0287072 0.00813123 -1.1665e-10 0.0308853 0.0151892 -3.3065e-11 0.0312418 0.0176417 -1.63718e-11 0.0318786 0.0178517 -8.90081e-12 0.0311374 0.0181274 -7.60774e-12 0.030261 0.0171379 -3.98053e-12 0.0293471 0.0160222 -3.63709e-12 0.0284783 0.0148317 -5.93566e-13 0.0276718 0.0136928 -1.58867e-12 0.0269304 0.0126144 1.45748e-13 0.026242 0.0116096 8.15156e-13 0.0256029 0.0106781 7.70778e-13 0.0250247 0.00981868 -6.6956e-13 0.0245176 0.00902677 -2.84657e-12 0.0240923 0.00829327 -4.11496e-12 0.0237568 0.00761437 -4.73781e-12 0.0234996 0.00698649 -8.92049e-12 0.0233061 0.00640666 -1.10609e-11 0.0231674 0.00586637 -1.52351e-11 0.0230742 0.00536233 -1.68429e-11 0.023014 0.00489131 -2.0535e-11 0.0229759 0.00445031 -2.29792e-11 0.0229568 0.00403852 -2.52668e-11 0.022955 0.003656 -2.69334e-11 0.0229684 0.00330269 -2.71771e-11 0.022984 0.00297683 -2.76409e-11 0.0229957 0.00267532 -2.87912e-11 0.0229963 0.00239644 -3.00893e-11 0.0229699 0.00213746 -3.09204e-11 0.0229198 0.00189634 -3.13551e-11 0.0228536 0.0016727 -3.19355e-11 0.0227727 0.00146617 -3.29851e-11 0.0226868 0.00127592 -3.41007e-11 0.0226072 0.00110152 -3.49513e-11 0.0225328 0.000942118 -3.57433e-11 0.0224594 0.000796129 -3.51255e-11 0.0223895 0.000662125 -3.48942e-11 0.0223276 0.000539263 -3.54473e-11 0.0222758 0.000426564 -3.55151e-11 0.0222128 0.000322541 -3.62096e-11 0.0221276 0.000227189 -3.65601e-11 0.0220371 0.000139588 -3.49064e-11 0.0219487 6.05992e-05 -3.09223e-11 0.0218791 -3.72015e-06 -2.80477e-11 0.0218515 -6.27108e-05 -2.29588e-11 0.0218702 -0.00011284 -2.22736e-11 0.0219349 -0.000150563 -2.43921e-11 0.0220261 -0.000179149 -2.38795e-11 0.0221301 -0.000199525 -2.34815e-11 0.022217 -0.000209003 -3.31293e-11 0.0222876 -0.000207187 -3.54649e-11 0.0223437 -0.000198477 -3.7811e-11 0.0223857 -0.000183619 -3.74729e-11 0.0224161 -0.00016172 -3.60126e-11 0.0224368 -0.000134725 -3.06992e-11 0.0224467 -0.000103797 -2.23037e-11 0.0224499 -6.82114e-05 -1.85874e-11 0.0224639 -2.62544e-05 -1.21719e-11 0.0225141 2.25402e-05 -7.14591e-12 0.0225972 7.95799e-05 -4.23576e-12 0.0226651 0.000145538 -7.66081e-13 0.0226674 0.000218034 8.42168e-12 0.0224745 0.000290162 2.97749e-11 0.0218565 0.000346447 6.84729e-11 0.0203092 0.000358375 1.09986e-10 0.0187266 0.000330966 4.13498e-11 0.0171175 0.000295276 1.60564e-11 0.0156353 0.000255191 5.58714e-12 0.0143996 0.000214034 -1.47429e-13 0.0134458 0.000175234 -2.08798e-12 0.0127489 0.000140886 -2.44146e-12 0.0122579 0.000111765 -2.26239e-12 0.0119209 8.77735e-05 -1.60009e-12 0.0116926 6.83993e-05 -1.16668e-12 0.0115383 5.28921e-05 -9.01906e-13 0.0114338 4.05724e-05 -6.75845e-13 0.0113626 3.08541e-05 -3.79196e-13 0.0113136 2.32419e-05 -2.02293e-13 0.0112796 1.73255e-05 -1.63237e-13 0.0112559 1.27877e-05 -1.08933e-13 0.0112392 9.3417e-06 -7.4554e-14 0.0112274 6.75271e-06 -5.31099e-14 0.0112191 4.82946e-06 -3.97916e-14 0.0112132 3.41722e-06 -3.1534e-14 0.0112091 2.39228e-06 -2.64062e-14 0.0112063 1.65708e-06 -2.32019e-14 0.0112043 1.13582e-06 -2.11832e-14 0.0112029 7.70483e-07 -1.98893e-14 0.0112019 5.17316e-07 -1.90568e-14 0.0112013 3.43839e-07 -1.84906e-14 0.0112009 2.26256e-07 -1.81427e-14 0.0112006 1.47448e-07 -1.7843e-14 0.0112004 9.51008e-08 -1.77586e-14 0.0112003 6.08247e-08 -1.74551e-14 3.76199e-08 -1.76617e-14 0.0168308 1.81214e-05 -1.56313e-13 0.0168535 5.39872e-05 -5.99045e-13 0.0170151 0.000124394 -1.95134e-12 0.0174337 0.000374887 -5.72207e-12 0.0192306 0.00103238 -1.48767e-11 0.0235714 0.00301619 -3.14334e-11 0.0287645 0.00785294 -6.12408e-11 0.0309269 0.0146948 -2.57758e-11 0.0314062 0.0172126 -1.63786e-11 0.0320076 0.0175857 -5.75915e-12 0.0314578 0.0177931 -3.6509e-12 0.0307239 0.0169634 2.0632e-12 0.0298682 0.016001 1.59788e-11 0.0290211 0.0148992 6.33175e-12 0.0282314 0.0137837 6.76928e-14 0.0275091 0.0127083 2.43378e-13 0.0268528 0.011706 -1.15159e-12 0.0262659 0.0107894 -2.66397e-12 0.0257522 0.00994785 -3.73796e-12 0.0253092 0.0091697 -1.00674e-11 0.0249429 0.00844643 -1.20903e-11 0.0246673 0.00777683 -1.42007e-11 0.0244637 0.00715813 -2.07296e-11 0.0243132 0.00658632 -1.87208e-11 0.0242037 0.0060516 -2.44759e-11 0.0241246 0.00555018 -2.69274e-11 0.0240675 0.00508107 -2.94878e-11 0.0240267 0.00464376 -3.08735e-11 0.0240048 0.00423787 -3.20976e-11 0.0239979 0.00386408 -3.33809e-11 0.0239999 0.00351963 -3.41842e-11 0.0239948 0.00320245 -3.41819e-11 0.0239756 0.00290764 -3.44651e-11 0.0239371 0.00263424 -3.55491e-11 0.0238656 0.00237919 -3.72198e-11 0.0237742 0.00214116 -3.82653e-11 0.0236728 0.00192057 -3.87001e-11 0.0235627 0.00171692 -3.86862e-11 0.0234563 0.00152919 -3.90334e-11 0.0233599 0.0013569 -4.06561e-11 0.0232671 0.00119872 -4.09522e-11 0.0231738 0.00105275 -4.16374e-11 0.0230832 0.000917729 -4.19946e-11 0.0230034 0.000793091 -4.18647e-11 0.0229212 0.000677686 -4.29171e-11 0.0228176 0.000570475 -4.28156e-11 0.0227069 0.000471535 -4.34567e-11 0.0225984 0.000380144 -3.85449e-11 0.0225027 0.00029918 -3.5818e-11 0.0224425 0.000228305 -3.2765e-11 0.0224308 0.000167673 -2.81588e-11 0.0224625 0.000116918 -3.09831e-11 0.0225216 7.54091e-05 -2.95096e-11 0.0225831 4.36375e-05 -3.03552e-11 0.0226356 1.93663e-05 -3.17637e-11 0.0226764 3.03837e-06 -3.3304e-11 0.0227038 -4.84584e-06 -3.52205e-11 0.0227157 -5.32363e-06 -3.55276e-11 0.0227167 4.46294e-07 -3.33826e-11 0.0227102 1.23196e-05 -2.91545e-11 0.0226971 2.95786e-05 -2.13465e-11 0.0226788 5.23407e-05 -1.66158e-11 0.0226678 8.22665e-05 -1.34871e-11 0.0226963 0.000121701 -9.85814e-12 0.0227691 0.000171548 -6.81148e-12 0.0228288 0.000231866 -2.05088e-12 0.0228105 0.00029823 1.17208e-11 0.0225378 0.00036153 4.52954e-11 0.0216973 0.000405889 9.22703e-11 0.0202735 0.000405854 8.52837e-11 0.0187259 0.000378858 2.74534e-11 0.0171105 0.000338135 1.17245e-11 0.0156139 0.000288799 2.03924e-12 0.0143671 0.000237498 -1.8946e-12 0.013408 0.000189734 -2.94765e-12 0.0127105 0.000148627 -2.85124e-12 0.012222 0.000114928 -2.42183e-12 0.011889 8.81018e-05 -1.65885e-12 0.0116653 6.71477e-05 -1.18622e-12 0.0115156 5.08919e-05 -9.31673e-13 0.0114152 3.83374e-05 -6.68466e-13 0.0113476 2.86819e-05 -3.39468e-13 0.0113018 2.1291e-05 -1.96525e-13 0.0112704 1.56644e-05 -1.56283e-13 0.0112487 1.14236e-05 -1.0485e-13 0.0112338 8.25514e-06 -7.17277e-14 0.0112233 5.9087e-06 -5.1174e-14 0.0112161 4.18787e-06 -3.84702e-14 0.0112111 2.93875e-06 -3.06214e-14 0.0112076 2.04159e-06 -2.5763e-14 0.0112051 1.40412e-06 -2.27382e-14 0.0112035 9.56051e-07 -2.08425e-14 0.0112023 6.44504e-07 -1.96352e-14 0.0112016 4.30202e-07 -1.88661e-14 0.011201 2.84361e-07 -1.83472e-14 0.0112007 1.86142e-07 -1.80353e-14 0.0112005 1.20706e-07 -1.77632e-14 0.0112003 7.74861e-08 -1.77001e-14 0.0112002 4.93405e-08 -1.74133e-14 3.03854e-08 -1.76374e-14 0.0168095 7.1234e-06 1.45834e-13 0.0168319 1.77876e-05 1.99198e-13 0.0168592 4.89617e-05 3.47279e-14 0.0170203 0.000124386 -2.24183e-13 0.0174652 0.000353551 -1.20957e-12 0.0192519 0.00100587 -8.46085e-12 0.0233224 0.00296024 -1.80868e-14 0.0287041 0.00712101 -1.41711e-11 0.0309348 0.0141729 -2.27544e-11 0.0315961 0.0168158 -6.99986e-12 0.0321527 0.017325 3.68608e-12 0.0317705 0.0174791 7.48298e-12 0.0311986 0.0167888 1.42947e-11 0.0303943 0.015985 2.02336e-11 0.029594 0.0149697 3.73321e-12 0.0288367 0.0138875 -4.00289e-13 0.0281558 0.0128301 -3.30802e-12 0.0275496 0.0118485 -8.84832e-12 0.0270156 0.0109437 -1.13629e-11 0.0265573 0.0101105 -1.86984e-11 0.0261697 0.00933926 -2.06912e-11 0.0258664 0.00862272 -2.20363e-11 0.0256495 0.00796237 -2.40575e-11 0.0254879 0.00735274 -2.88911e-11 0.0253608 0.00678446 -2.7358e-11 0.0252594 0.0062508 -3.15105e-11 0.0251807 0.00575204 -3.51142e-11 0.0251213 0.00528843 -3.73577e-11 0.0250789 0.00485972 -3.87181e-11 0.0250536 0.00446467 -3.94794e-11 0.0250364 0.00410183 -4.04034e-11 0.0250162 0.00376691 -4.08239e-11 0.0249768 0.00345686 -4.12978e-11 0.0249152 0.00316696 -4.15682e-11 0.0248289 0.00289707 -4.22886e-11 0.0247113 0.00264434 -4.3135e-11 0.0245832 0.00240832 -4.45077e-11 0.0244528 0.00218997 -4.59074e-11 0.0243196 0.00198815 -4.68876e-11 0.0241961 0.00180154 -4.79289e-11 0.0240824 0.00162963 -4.6754e-11 0.023968 0.00147057 -4.57363e-11 0.0238506 0.00132218 -4.50741e-11 0.0237409 0.0011841 -4.50684e-11 0.023635 0.00105572 -4.72312e-11 0.0235115 0.000935501 -4.89369e-11 0.0233786 0.00082337 -5.15621e-11 0.0232511 0.000719024 -4.8647e-11 0.0231314 0.000623996 -4.42061e-11 0.023042 0.000539724 -4.20422e-11 0.0229969 0.000465228 -3.69813e-11 0.0229947 0.00040081 -3.39409e-11 0.0230216 0.000345886 -3.23293e-11 0.023059 0.000299766 -3.23487e-11 0.0230902 0.000261884 -3.29325e-11 0.0231053 0.000231571 -3.30888e-11 0.0231003 0.000208901 -3.22721e-11 0.023085 0.000193516 -3.1635e-11 0.0230604 0.000185699 -3.01818e-11 0.0230296 0.000184924 -2.15664e-11 0.0229964 0.000190184 -1.75248e-11 0.0229628 0.000201847 -1.49232e-11 0.0229386 0.000221499 -1.16895e-11 0.0229407 0.000251219 -8.71622e-12 0.0229717 0.000291854 -2.23598e-12 0.0229777 0.000341845 9.35166e-12 0.0228853 0.000396741 2.76191e-11 0.0225544 0.000446798 4.97954e-11 0.0215657 0.000477115 8.46204e-11 0.0202834 0.000469586 3.62743e-11 0.0187356 0.00043781 1.65585e-11 0.0170965 0.000385835 4.95745e-12 0.0155787 0.0003229 -1.27579e-12 0.0143198 0.000258941 -3.51043e-12 0.0133574 0.000201329 -3.70937e-12 0.0126624 0.000153461 -3.17773e-12 0.0121794 0.000115592 -2.52497e-12 0.011853 8.64742e-05 -1.69112e-12 0.0116357 6.44609e-05 -1.25557e-12 0.0114917 4.78835e-05 -9.40626e-13 0.0113963 3.54256e-05 -6.44897e-13 0.0113328 2.60793e-05 -3.0415e-13 0.0112902 1.90829e-05 -1.98864e-13 0.0112616 1.38586e-05 -1.48738e-13 0.0112421 9.98553e-06 -1.00008e-13 0.0112288 7.13883e-06 -6.8283e-14 0.0112197 5.05998e-06 -4.88004e-14 0.0112134 3.55442e-06 -3.68628e-14 0.0112091 2.47383e-06 -2.95295e-14 0.0112062 1.70559e-06 -2.50115e-14 0.0112042 1.16478e-06 -2.22122e-14 0.0112028 7.87877e-07 -2.04687e-14 0.0112019 5.27863e-07 -1.93658e-14 0.0112012 3.50305e-07 -1.86703e-14 0.0112008 2.30285e-07 -1.82044e-14 0.0112006 1.49965e-07 -1.79314e-14 0.0112004 9.67705e-08 -1.76876e-14 0.0112003 6.18314e-08 -1.76464e-14 0.0112002 3.92014e-08 -1.73745e-14 2.40392e-08 -1.7616e-14 0.0168055 2.33416e-06 8.81891e-14 0.0168144 5.38777e-06 -2.2914e-14 0.0168267 1.77308e-05 4.3248e-13 0.016885 3.94464e-05 -2.51921e-13 0.0169974 0.000124661 3.35338e-12 0.0175686 0.000296343 -6.69172e-12 0.019137 0.000968486 1.63383e-11 0.0227481 0.00260943 -7.69565e-12 0.0283009 0.00643154 -1.533e-11 0.0309124 0.0134932 4.40104e-12 0.0318512 0.0163826 2.11072e-11 0.0323829 0.0170661 6.77987e-12 0.0320979 0.0172036 7.9404e-12 0.0315973 0.0166285 1.26579e-11 0.0309137 0.0159157 2.36141e-11 0.0302071 0.0150222 -2.95721e-12 0.0295163 0.0140068 -2.3783e-12 0.0288852 0.0129935 -1.66529e-11 0.0283227 0.0120321 -2.22762e-11 0.0278447 0.0111382 -2.76381e-11 0.02744 0.0103104 -3.13284e-11 0.0271117 0.0095403 -2.99867e-11 0.0268698 0.00882833 -3.2382e-11 0.0266878 0.00817181 -3.72879e-11 0.0265394 0.00756345 -3.6726e-11 0.0264157 0.00699596 -3.81881e-11 0.0263142 0.00646676 -4.14411e-11 0.0262362 0.00597629 -4.42089e-11 0.0261776 0.00552428 -4.57652e-11 0.0261329 0.00510827 -4.66294e-11 0.0260959 0.00472548 -4.77684e-11 0.0260546 0.00437235 -4.85004e-11 0.0259958 0.00404467 -4.86385e-11 0.0259097 0.00373866 -4.84775e-11 0.0257988 0.00345149 -4.90175e-11 0.0256637 0.00318289 -4.99134e-11 0.0255061 0.00293099 -5.09855e-11 0.0253495 0.00269591 -5.19384e-11 0.0251957 0.00247855 -5.2866e-11 0.0250428 0.00227662 -5.47283e-11 0.0249028 0.00208909 -5.56886e-11 0.024767 0.00191527 -5.61066e-11 0.0246255 0.00175244 -5.64582e-11 0.024486 0.00159943 -5.58921e-11 0.0243527 0.0014564 -5.69578e-11 0.0242084 0.00132189 -5.70145e-11 0.024053 0.00119539 -5.84768e-11 0.023905 0.00107701 -5.61336e-11 0.0237657 0.000967416 -4.88572e-11 0.0236506 0.000868918 -4.86134e-11 0.023575 0.000779968 -4.17644e-11 0.023539 0.000701292 -3.73861e-11 0.0235331 0.000632283 -3.49077e-11 0.0235401 0.000572099 -3.38259e-11 0.0235447 0.000519989 -3.34463e-11 0.0235373 0.000475526 -3.23956e-11 0.023514 0.000438651 -3.12198e-11 0.0234768 0.000409417 -2.77616e-11 0.0234303 0.000388033 -2.45906e-11 0.0233791 0.000374686 -1.8431e-11 0.0233287 0.000369192 -1.2763e-11 0.0232806 0.00037127 -7.62821e-12 0.0232373 0.000381656 -5.00843e-12 0.0232034 0.000401647 -2.04695e-12 0.0231897 0.000432047 4.54685e-12 0.0231633 0.000471786 1.25346e-11 0.0230236 0.000516578 2.50239e-11 0.0226257 0.000556079 4.02571e-11 0.0216323 0.000570726 4.78075e-11 0.0203326 0.000552187 1.87288e-11 0.0187456 0.000504902 8.12138e-12 0.0170677 0.000434923 -1.76727e-13 0.0155241 0.000354312 -3.94347e-12 0.0142547 0.000276071 -4.80886e-12 0.0132929 0.000208512 -4.29596e-12 0.0126046 0.000154539 -3.41385e-12 0.0121307 0.000113344 -2.5539e-12 0.0118136 8.27559e-05 -1.70263e-12 0.0116044 6.03317e-05 -1.29136e-12 0.0114673 4.39281e-05 -9.30193e-13 0.0113774 3.19243e-05 -5.93064e-13 0.0113183 2.31318e-05 -2.75992e-13 0.0112793 1.66889e-05 -1.85025e-13 0.0112534 1.19672e-05 -1.36591e-13 0.011236 8.52133e-06 -9.47276e-14 0.0112243 6.0277e-06 -6.4171e-14 0.0112164 4.23167e-06 -4.60605e-14 0.011211 2.9467e-06 -3.50484e-14 0.0112074 2.03444e-06 -2.83185e-14 0.011205 1.39227e-06 -2.41936e-14 0.0112033 9.44269e-07 -2.16525e-14 0.0112022 6.34619e-07 -2.00805e-14 0.0112015 4.22624e-07 -1.90933e-14 0.011201 2.78879e-07 -1.84775e-14 0.0112006 1.82352e-07 -1.80672e-14 0.0112004 1.18151e-07 -1.78336e-14 0.0112003 7.58767e-08 -1.76181e-14 0.0112002 4.82604e-08 -1.75977e-14 0.0112001 3.04684e-08 -1.73402e-14 1.86072e-08 -1.75971e-14 0.016805 4.25883e-07 4.97528e-14 0.0168066 1.63497e-06 1.13632e-13 0.0168177 4.46432e-06 1.13401e-13 0.0168255 1.43711e-05 4.75744e-13 0.0168931 3.4757e-05 7.03648e-14 0.0169684 0.000106405 3.65984e-12 0.0175501 0.000262236 -1.48458e-12 0.0188929 0.000835767 1.54932e-11 0.0221789 0.00226335 4.55898e-12 0.0279707 0.00557217 6.82934e-12 0.0310632 0.0127133 2.67415e-11 0.0322011 0.0158448 6.17973e-12 0.0325732 0.0168447 1.18275e-11 0.0323239 0.0169008 1.84149e-11 0.0318875 0.0163959 2.41403e-11 0.0314276 0.0157883 -1.36336e-12 0.0308542 0.0150578 -8.97125e-12 0.0302428 0.0141385 -1.66283e-11 0.0296782 0.0131737 -3.80023e-11 0.0291855 0.0122433 -3.61454e-11 0.0287646 0.0113627 -3.80998e-11 0.028408 0.0105357 -4.31762e-11 0.0281272 0.00976373 -4.36437e-11 0.0279142 0.00905332 -4.37535e-11 0.0277401 0.00839997 -4.61371e-11 0.0275955 0.00779492 -4.60839e-11 0.0274744 0.00723418 -4.86185e-11 0.0273767 0.00671567 -5.18926e-11 0.0273005 0.00623848 -5.41268e-11 0.0272369 0.00580024 -5.50272e-11 0.0271768 0.00539614 -5.60922e-11 0.0271114 0.00502252 -5.7476e-11 0.0270299 0.00467565 -5.78671e-11 0.0269209 0.00435143 -5.71103e-11 0.0267827 0.00404636 -5.69265e-11 0.0266216 0.00375925 -5.8132e-11 0.0264436 0.00348968 -5.95926e-11 0.0262546 0.00323713 -6.02315e-11 0.026075 0.00300122 -6.03048e-11 0.0258997 0.00278258 -6.13144e-11 0.025728 0.0025779 -6.30183e-11 0.0255692 0.00238698 -6.42884e-11 0.0254056 0.00220827 -6.53015e-11 0.0252369 0.00203898 -6.50447e-11 0.0250745 0.00187947 -6.52663e-11 0.0249076 0.00172914 -6.49671e-11 0.0247291 0.00158695 -6.52481e-11 0.0245581 0.00145319 -6.40595e-11 0.0243998 0.00132831 -5.59856e-11 0.024261 0.00121427 -5.32774e-11 0.024158 0.00111058 -4.80666e-11 0.0240911 0.00101698 -4.16409e-11 0.0240524 0.000933253 -3.76836e-11 0.0240286 0.000858502 -3.5237e-11 0.024006 0.000791939 -3.39193e-11 0.0239753 0.000733169 -3.19046e-11 0.0239327 0.0006822 -2.98634e-11 0.0238777 0.000639273 -2.59651e-11 0.0238134 0.000604691 -2.11151e-11 0.0237455 0.000578836 -1.55966e-11 0.02368 0.000561921 -8.86154e-12 0.0236204 0.000553854 -3.73137e-12 0.0235654 0.000555234 -2.11013e-13 0.0235135 0.000566425 5.64786e-12 0.0234691 0.000588273 8.58808e-12 0.023414 0.000619061 1.33819e-11 0.0232303 0.000653907 2.11713e-11 0.0227262 0.000680713 2.71824e-11 0.0217297 0.000677661 2.31753e-11 0.020383 0.000640696 1.11862e-11 0.0187366 0.000572088 1.92399e-12 0.0170117 0.000478842 -3.7451e-12 0.0154432 0.000378666 -5.85619e-12 0.0141686 0.000286162 -5.73388e-12 0.0132138 0.000209763 -4.6632e-12 0.0125376 0.000151123 -3.56174e-12 0.0120769 0.000107938 -2.5586e-12 0.0117717 7.69222e-05 -1.74501e-12 0.0115724 5.48621e-05 -1.29141e-12 0.011443 3.91624e-05 -8.98454e-13 0.0113592 2.79627e-05 -5.11334e-13 0.0113047 1.9948e-05 -2.55768e-13 0.0112692 1.41976e-05 -1.93018e-13 0.0112459 1.00599e-05 -1.2538e-13 0.0112305 7.08165e-06 -8.75962e-14 0.0112203 4.95761e-06 -5.983e-14 0.0112135 3.44811e-06 -4.31647e-14 0.011209 2.38089e-06 -3.31409e-14 0.011206 1.63114e-06 -2.70604e-14 0.011204 1.10833e-06 -2.33564e-14 0.0112026 7.46716e-07 -2.10893e-14 0.0112017 4.98749e-07 -1.96971e-14 0.0112011 3.30219e-07 -1.88295e-14 0.0112008 2.16717e-07 -1.82944e-14 0.0112005 1.40978e-07 -1.79395e-14 0.0112003 9.09e-08 -1.77444e-14 0.0112002 5.81074e-08 -1.75559e-14 0.0112002 3.67963e-08 -1.75547e-14 0.0112001 2.3137e-08 -1.73105e-14 1.40744e-08 -1.7581e-14 0.0168034 4.78966e-08 -3.22421e-13 0.016807 2.56169e-07 4.17879e-14 0.01681 8.89475e-07 2.65823e-14 0.0168209 3.07195e-06 3.75463e-13 0.016832 1.07233e-05 5.25576e-13 0.0168876 2.7788e-05 7.3756e-13 0.0169696 8.56547e-05 3.01354e-12 0.0174326 0.000218153 3.34973e-12 0.0186265 0.000679123 1.59701e-11 0.021477 0.00186226 2.39587e-11 0.0276882 0.00462913 6.27746e-11 0.031152 0.0115186 2.77994e-11 0.0323213 0.0150561 3.85493e-11 0.0324977 0.0164632 2.67971e-11 0.0324321 0.0164459 2.33549e-11 0.0322595 0.0160839 1.62465e-12 0.0319544 0.0155984 -4.33683e-12 0.0315118 0.0150389 -1.19289e-11 0.0310159 0.0142541 -4.77476e-11 0.0305445 0.0133624 -5.00178e-11 0.0301228 0.0124672 -4.7458e-11 0.029744 0.0116027 -5.58753e-11 0.029426 0.0107777 -5.16447e-11 0.0291801 0.0100133 -5.28382e-11 0.0289795 0.0093117 -5.69951e-11 0.0288122 0.00866513 -5.63161e-11 0.0286714 0.00806923 -5.80584e-11 0.0285524 0.00751977 -6.16084e-11 0.0284545 0.0070144 -6.50163e-11 0.0283688 0.0065502 -6.56139e-11 0.0282826 0.00612203 -6.57299e-11 0.0281889 0.00572515 -6.75223e-11 0.0280804 0.0053561 -6.85427e-11 0.0279472 0.00501103 -6.71537e-11 0.0277833 0.00468592 -6.57304e-11 0.0275933 0.00437825 -6.65052e-11 0.0273875 0.00408811 -6.86432e-11 0.027175 0.00381529 -6.98715e-11 0.0269606 0.00355986 -6.98456e-11 0.0267596 0.00332041 -6.97496e-11 0.0265621 0.00309758 -7.03973e-11 0.0263707 0.00288713 -7.09022e-11 0.0261875 0.00268997 -7.11102e-11 0.0259926 0.00250325 -7.08042e-11 0.0257985 0.00232535 -7.04826e-11 0.0256073 0.00215718 -7.03252e-11 0.0254066 0.00199777 -6.95898e-11 0.0252109 0.00184721 -6.88158e-11 0.0250317 0.00170578 -6.10013e-11 0.0248703 0.00157515 -5.49744e-11 0.0247413 0.0014556 -5.09693e-11 0.0246458 0.0013463 -4.26676e-11 0.0245765 0.00124715 -3.75844e-11 0.024522 0.00115724 -3.43715e-11 0.0244716 0.00107583 -3.20819e-11 0.0244177 0.00100257 -3.02902e-11 0.0243563 0.00093754 -2.69681e-11 0.0242858 0.000881038 -2.36886e-11 0.0242073 0.000833526 -1.8553e-11 0.0241249 0.000795362 -1.17568e-11 0.0240463 0.000767109 -8.22353e-12 0.0239764 0.000748611 -2.33407e-12 0.0239137 0.000740024 1.9583e-12 0.0238518 0.000742536 5.7098e-12 0.0237862 0.000755356 8.51525e-12 0.0236948 0.000776814 1.44456e-11 0.0234695 0.000800032 1.90078e-11 0.0228336 0.000809944 2.45098e-11 0.021828 0.000785309 1.38422e-11 0.02041 0.000725263 5.44299e-12 0.0186918 0.000629838 -2.02513e-12 0.0169185 0.000511219 -6.20256e-12 0.0153315 0.000391672 -7.19452e-12 0.0140604 0.000286817 -6.33161e-12 0.0131207 0.000203999 -4.88689e-12 0.0124628 0.000142854 -3.58492e-12 0.0120194 9.94004e-05 -2.52188e-12 0.0117285 6.91733e-05 -1.77614e-12 0.0115404 4.82899e-05 -1.26622e-12 0.0114196 3.38134e-05 -8.4495e-13 0.011342 2.37299e-05 -4.15662e-13 0.0112922 1.66704e-05 -2.35837e-13 0.01126 1.17064e-05 -1.80613e-13 0.0112392 8.20391e-06 -1.15222e-13 0.0112257 5.7195e-06 -7.75033e-14 0.0112169 3.96189e-06 -5.67499e-14 0.0112111 2.73147e-06 -4.03648e-14 0.0112073 1.87084e-06 -3.12318e-14 0.0112048 1.27232e-06 -2.58063e-14 0.0112031 8.58692e-07 -2.25329e-14 0.0112021 5.74918e-07 -2.05439e-14 0.0112013 3.81766e-07 -1.93319e-14 0.0112009 2.51385e-07 -1.85826e-14 0.0112006 1.64131e-07 -1.81261e-14 0.0112004 1.06252e-07 -1.78242e-14 0.0112003 6.81946e-08 -1.7665e-14 0.0112002 4.34034e-08 -1.75016e-14 0.0112001 2.73708e-08 -1.75177e-14 0.0112001 1.71451e-08 -1.72854e-14 1.03911e-08 -1.75675e-14 0.0168034 4.16483e-08 -7.8665e-13 0.0168051 2.86566e-08 1.70333e-12 0.0168089 1.35901e-07 -7.85437e-13 0.0168142 4.66242e-07 -1.75874e-14 0.0168265 1.87831e-06 2.78334e-13 0.0168356 6.61855e-06 7.1725e-13 0.0168894 2.02284e-05 2.46102e-12 0.0169707 6.23258e-05 2.16435e-12 0.0172994 0.000172372 1.04104e-11 0.0183086 0.000515315 1.70959e-11 0.0207234 0.00144113 5.79197e-11 0.026997 0.00377393 1.16359e-10 0.0306968 0.00879241 1.7663e-10 0.0319896 0.0139987 9.87799e-11 0.0324683 0.0157517 1.92775e-11 0.0325286 0.0160532 7.68375e-12 0.0324893 0.0158096 4.70111e-12 0.0324585 0.015368 -1.46671e-12 0.0322085 0.014931 -2.12936e-11 0.0318471 0.0143157 -4.62264e-11 0.0314723 0.0135339 -5.77264e-11 0.03111 0.0126985 -6.37558e-11 0.0307778 0.0118617 -6.34909e-11 0.0305038 0.0110603 -6.47694e-11 0.0302757 0.0103139 -7.26215e-11 0.0300835 0.00962424 -7.16339e-11 0.0299196 0.00898965 -7.18487e-11 0.0297774 0.0084054 -7.48338e-11 0.029651 0.00786772 -7.87936e-11 0.0295351 0.00737156 -7.90719e-11 0.0294198 0.00691448 -7.74599e-11 0.0292947 0.00649054 -7.83905e-11 0.0291554 0.00609574 -8.0357e-11 0.0289944 0.00572605 -7.90149e-11 0.0288035 0.00537729 -7.59845e-11 0.0285839 0.00504615 -7.52601e-11 0.0283463 0.00473209 -7.7223e-11 0.0281027 0.0044356 -7.89846e-11 0.0278615 0.00415702 -7.89304e-11 0.0276249 0.00389553 -7.75995e-11 0.027402 0.00364952 -7.63582e-11 0.0271807 0.00341901 -7.49753e-11 0.0269668 0.00319959 -7.34241e-11 0.0267533 0.00299312 -7.2314e-11 0.0265264 0.00279547 -7.11546e-11 0.0263059 0.00260689 -7.09533e-11 0.0260842 0.00242828 -6.93505e-11 0.0258641 0.00225911 -6.80602e-11 0.0256625 0.00209969 -6.14895e-11 0.0254783 0.001951 -5.19899e-11 0.025323 0.00181423 -4.89878e-11 0.0252002 0.00168807 -3.95509e-11 0.0251026 0.00157259 -3.3736e-11 0.0250201 0.00146686 -2.99827e-11 0.0249434 0.00137012 -2.7563e-11 0.0248661 0.00128205 -2.55962e-11 0.0247853 0.00120277 -2.25266e-11 0.0246998 0.00113269 -1.95797e-11 0.024609 0.00107223 -1.54103e-11 0.024515 0.00102186 -1.14936e-11 0.0244245 0.000982001 -7.05534e-12 0.0243451 0.000953057 -1.328e-12 0.0242755 0.000934579 2.49905e-12 0.0242048 0.000926188 7.20364e-12 0.0241191 0.000928345 1.01073e-11 0.0239867 0.000937846 1.29923e-11 0.023695 0.000945704 1.26895e-11 0.0229877 0.000932116 1.69962e-11 0.0219028 0.000883299 9.22972e-12 0.0203925 0.000795319 5.85385e-13 0.0185969 0.000668444 -5.54709e-12 0.0167814 0.000526071 -8.30481e-12 0.0151875 0.000390001 -8.26699e-12 0.0139319 0.000276597 -6.7676e-12 0.0130163 0.000190902 -5.01346e-12 0.0123828 0.000129986 -3.56156e-12 0.0119603 8.81437e-05 -2.58289e-12 0.0116857 5.99377e-05 -1.75915e-12 0.0115097 4.09796e-05 -1.21578e-12 0.0113976 2.81716e-05 -7.56999e-13 0.0113264 1.9452e-05 -3.50411e-13 0.011281 1.34673e-05 -2.32044e-13 0.011252 9.33178e-06 -1.64534e-13 0.0112335 6.46395e-06 -1.06755e-13 0.0112216 4.46983e-06 -7.03188e-14 0.011214 3.07371e-06 -5.05222e-14 0.0112091 2.0988e-06 -3.74804e-14 0.0112059 1.42682e-06 -2.94064e-14 0.0112038 9.6376e-07 -2.46088e-14 0.0112025 6.46298e-07 -2.1752e-14 0.0112016 4.30199e-07 -2.00339e-14 0.011201 2.84131e-07 -1.89956e-14 0.0112007 1.8615e-07 -1.83587e-14 0.0112004 1.2096e-07 -1.79759e-14 0.0112003 7.79528e-08 -1.77228e-14 0.0112002 4.98188e-08 -1.75964e-14 0.0112001 3.15801e-08 -1.74554e-14 0.0112001 1.9838e-08 -1.74865e-14 0.0112001 1.23831e-08 -1.72647e-14 7.47955e-09 -1.75565e-14 0.0168034 1.09172e-08 -2.85267e-14 0.0168051 8.64461e-09 1.53473e-14 0.016808 1.52248e-08 -1.43992e-13 0.0168122 9.05328e-08 1.54965e-13 0.0168199 1.55997e-07 -5.89047e-14 0.0168317 1.05584e-06 -4.56101e-13 0.0168548 3.06265e-06 2.83727e-12 0.0168814 1.39489e-05 -2.06914e-12 0.01699 3.78167e-05 1.0163e-11 0.0172207 0.000130285 1.1604e-12 0.0180744 0.000347186 3.56899e-11 0.0200514 0.00107241 4.63083e-11 0.0245837 0.00272867 1.48495e-10 0.029189 0.00619418 2.86265e-10 0.0315443 0.0124654 6.64499e-11 0.0324943 0.0148144 2.73073e-11 0.0327335 0.0156425 2.10601e-11 0.0327984 0.0155615 5.11238e-12 0.0329332 0.0151521 -4.18067e-12 0.0329184 0.0147271 -1.97002e-11 0.0326915 0.0142459 -3.34394e-11 0.0324307 0.0136269 -5.49471e-11 0.0321407 0.0129004 -7.69742e-11 0.0318715 0.0121272 -7.28638e-11 0.0316302 0.0113746 -8.89026e-11 0.031418 0.0106606 -8.59704e-11 0.0312315 0.00999439 -8.7082e-11 0.0310617 0.00937658 -8.96434e-11 0.0309005 0.00880279 -9.34834e-11 0.0307463 0.00827184 -9.36584e-11 0.0305956 0.0077814 -9.05115e-11 0.0304384 0.00732749 -8.96851e-11 0.030266 0.00690396 -9.13551e-11 0.0300721 0.00650558 -9.01826e-11 0.0298503 0.00612883 -8.58465e-11 0.0295988 0.0057702 -8.29954e-11 0.0293268 0.00542838 -8.3729e-11 0.0290481 0.00510413 -8.53235e-11 0.0287739 0.00479824 -8.50384e-11 0.0285071 0.00451062 -8.23884e-11 0.0282491 0.00423937 -7.86988e-11 0.0280019 0.00398329 -7.47853e-11 0.0277546 0.003741 -7.06716e-11 0.027514 0.00350963 -6.77814e-11 0.0272659 0.0032904 -6.53184e-11 0.0270101 0.00307927 -6.42281e-11 0.0267645 0.00287841 -6.22564e-11 0.0265219 0.00268831 -5.8936e-11 0.0262964 0.00250899 -5.40786e-11 0.0260906 0.0023404 -4.133e-11 0.0259084 0.00218461 -3.88661e-11 0.0257584 0.0020401 -2.91075e-11 0.0256342 0.00190706 -2.32124e-11 0.0255261 0.00178461 -2.06377e-11 0.025425 0.00167192 -1.93725e-11 0.0253257 0.00156856 -1.84271e-11 0.0252256 0.00147463 -1.71952e-11 0.0251239 0.0013906 -1.54474e-11 0.0250203 0.00131691 -1.27178e-11 0.0249159 0.00125394 -9.55501e-12 0.0248148 0.00120197 -5.51987e-12 0.0247242 0.00116135 -1.15363e-12 0.0246452 0.00113176 3.78081e-12 0.0245638 0.00111242 4.65237e-12 0.0244539 0.00110097 5.94204e-12 0.0242724 0.00109331 7.90751e-12 0.0238525 0.00107813 1.24061e-11 0.023107 0.00103731 8.92301e-12 0.021926 0.000959947 1.96918e-12 0.0203124 0.000837748 -4.63852e-12 0.0184423 0.000682209 -9.24183e-12 0.0165986 0.000518968 -1.05385e-11 0.015014 0.000371964 -9.33797e-12 0.0137873 0.000255484 -7.16971e-12 0.0129049 0.000171135 -5.07678e-12 0.0123012 0.000113391 -3.67315e-12 0.0119022 7.49849e-05 -2.55337e-12 0.0116451 4.9861e-05 -1.73571e-12 0.0114814 3.34162e-05 -1.14451e-12 0.0113779 2.25709e-05 -6.22129e-13 0.0113125 1.53465e-05 -3.11853e-13 0.0112713 1.04845e-05 -2.12655e-13 0.0112453 7.18186e-06 -1.47791e-13 0.0112288 4.92123e-06 -9.62169e-14 0.0112183 3.36688e-06 -6.51931e-14 0.0112117 2.29841e-06 -4.55526e-14 0.0112075 1.56335e-06 -3.39266e-14 0.0112048 1.05552e-06 -2.79751e-14 0.011203 7.07619e-07 -2.35494e-14 0.011202 4.71703e-07 -2.106e-14 0.0112013 3.12402e-07 -1.95783e-14 0.0112008 2.05323e-07 -1.86951e-14 0.0112005 1.33886e-07 -1.81607e-14 0.0112003 8.66167e-08 -1.78452e-14 0.0112002 5.55928e-08 -1.76361e-14 0.0112002 3.53925e-08 -1.75386e-14 0.0112001 2.23536e-08 -1.74169e-14 0.0112001 1.39928e-08 -1.74607e-14 0.0112001 8.70692e-09 -1.72482e-14 5.24307e-09 -1.75479e-14 0.0168034 2.05186e-09 -2.96088e-15 0.016805 8.10134e-10 -7.56257e-16 0.016808 1.76406e-09 -1.29616e-13 0.0168118 1.53457e-08 1.58621e-13 0.0168182 1.01167e-08 -2.64408e-13 0.0168267 1.34175e-07 7.4436e-15 0.0168413 3.5942e-07 1.1555e-13 0.0168691 1.76253e-06 -4.34191e-13 0.0169038 6.27237e-06 1.44182e-12 0.0170114 2.3323e-05 2.03268e-12 0.017162 7.96633e-05 1.81714e-11 0.0178206 0.000228744 2.1232e-11 0.0192866 0.000716514 8.64413e-11 0.0225871 0.00189074 1.02629e-10 0.0280422 0.00452409 2.48721e-10 0.0312206 0.0105432 1.04246e-10 0.0324721 0.0137687 1.12285e-10 0.0330177 0.0150371 3.221e-11 0.0332036 0.0151722 3.68451e-12 0.0332894 0.0148821 -1.31326e-12 0.0334443 0.0144407 -1.06693e-11 0.0334849 0.0140376 -3.21003e-11 0.0333466 0.0135854 -4.53846e-11 0.0331631 0.0130061 -7.64893e-11 0.0329674 0.0123439 -9.01591e-11 0.0327679 0.011669 -9.4361e-11 0.0325732 0.01101 -9.6272e-11 0.0323779 0.0103808 -1.00699e-10 0.0321844 0.00978574 -1.06391e-10 0.0319956 0.00923041 -1.06532e-10 0.0318108 0.00871192 -1.02026e-10 0.0316232 0.00822998 -9.93109e-11 0.0314179 0.00777726 -9.95627e-11 0.0311877 0.00734854 -9.79337e-11 0.0309305 0.00694029 -9.20509e-11 0.0306444 0.00655057 -8.648e-11 0.0303357 0.00617727 -8.45278e-11 0.0300186 0.00582105 -8.42884e-11 0.0297073 0.00548343 -8.29032e-11 0.0294075 0.00516516 -7.91221e-11 0.0291172 0.00486454 -7.35544e-11 0.0288367 0.0045796 -6.72509e-11 0.0285629 0.00430915 -6.06294e-11 0.0282882 0.00405138 -5.54636e-11 0.0280166 0.00380456 -5.15055e-11 0.0277362 0.00356928 -4.9053e-11 0.0274578 0.00334293 -4.65959e-11 0.0271943 0.00312866 -4.17033e-11 0.0269443 0.00292645 -3.61798e-11 0.0267172 0.00273619 -2.54573e-11 0.0265101 0.00255836 -1.87324e-11 0.0263329 0.00239417 -1.60984e-11 0.0261835 0.00224172 -1.09743e-11 0.0260523 0.00210135 -9.46508e-12 0.025929 0.00197188 -9.20311e-12 0.0258077 0.00185264 -9.33508e-12 0.0256872 0.00174355 -9.22705e-12 0.0255675 0.00164504 -8.59168e-12 0.0254484 0.00155758 -7.30119e-12 0.0253307 0.0014814 -5.46015e-12 0.0252174 0.0014165 -2.85451e-12 0.0251127 0.00136278 3.58938e-13 0.025017 0.00131975 3.85258e-12 0.0249159 0.00128584 5.87298e-12 0.0247716 0.00125764 7.02009e-12 0.0245123 0.00122818 7.7539e-12 0.024024 0.00118472 6.4901e-12 0.0231765 0.00111351 1.91754e-12 0.0218761 0.00100176 -4.00534e-12 0.0201565 0.000843985 -9.77095e-12 0.0182261 0.000664701 -1.26874e-11 0.0163747 0.000488019 -1.24515e-11 0.0148185 0.000338052 -1.01764e-11 0.0136339 0.000224958 -7.42026e-12 0.0127925 0.000146368 -5.11763e-12 0.0122221 9.4438e-05 -3.77207e-12 0.011848 6.09763e-05 -2.51617e-12 0.0116082 3.96856e-05 -1.66072e-12 0.0114564 2.60982e-05 -1.03904e-12 0.0113609 1.73397e-05 -4.89965e-13 0.0113009 1.16231e-05 -2.80468e-13 0.0112633 7.84369e-06 -2.09333e-13 0.0112397 5.31582e-06 -1.32768e-13 0.011225 3.60932e-06 -8.64136e-14 0.0112157 2.45024e-06 -5.84195e-14 0.0112099 1.65999e-06 -4.17681e-14 0.0112062 1.12014e-06 -3.20612e-14 0.0112039 7.52397e-07 -2.60494e-14 0.0112025 5.03008e-07 -2.22676e-14 0.0112016 3.33873e-07 -2.05128e-14 0.011201 2.20011e-07 -1.92076e-14 0.0112006 1.43855e-07 -1.84396e-14 0.0112004 9.33664e-08 -1.79955e-14 0.0112003 6.01823e-08 -1.77366e-14 0.0112002 3.84906e-08 -1.75645e-14 0.0112001 2.44221e-08 -1.74911e-14 0.0112001 1.53743e-08 -1.73855e-14 0.0112001 9.59306e-09 -1.74401e-14 0.0112001 5.95217e-09 -1.72354e-14 3.57467e-09 -1.75416e-14 0.0168033 3.99252e-10 -2.17039e-14 0.0168051 2.11782e-10 5.98817e-14 0.0168078 -5.15669e-10 -1.97646e-13 0.016812 6.07306e-09 3.91037e-13 0.0168177 -9.39317e-09 -8.89218e-13 0.0168265 3.96385e-08 1.16439e-12 0.0168386 1.12218e-08 -1.88928e-12 0.016857 2.46397e-07 1.55187e-12 0.0168856 6.84068e-07 -1.49991e-12 0.016932 2.92288e-06 1.25307e-13 0.0170252 1.20335e-05 1.97672e-12 0.0171625 4.11623e-05 8.71404e-12 0.0176427 0.00013656 2.26914e-11 0.0186595 0.000435517 5.51831e-11 0.0210481 0.00123078 1.25761e-10 0.0265003 0.00310865 2.4472e-10 0.0303335 0.00665005 4.53156e-10 0.0322221 0.0121797 1.47813e-10 0.0331405 0.0138563 7.67614e-11 0.0335262 0.0145552 2.44104e-11 0.0337116 0.0145119 -4.33411e-12 0.0338883 0.0141548 -1.06721e-11 0.0340959 0.013747 -1.92386e-11 0.034137 0.0133802 -3.4612e-11 0.03407 0.0129447 -6.08668e-11 0.0339589 0.0124186 -8.35184e-11 0.0338054 0.0118529 -9.09461e-11 0.0336278 0.011276 -1.00214e-10 0.0334351 0.0107064 -1.04699e-10 0.0332365 0.0101568 -1.07552e-10 0.0330338 0.00963385 -1.03549e-10 0.0328219 0.00913849 -9.95255e-11 0.0325885 0.00866598 -9.83839e-11 0.0323259 0.00821289 -9.59349e-11 0.0320336 0.00777589 -8.83521e-11 0.0317137 0.00735565 -8.04479e-11 0.0313695 0.00695003 -7.54503e-11 0.0310152 0.00656003 -7.28948e-11 0.0306668 0.00618806 -7.00104e-11 0.0303327 0.00583545 -6.50598e-11 0.0300119 0.00550142 -5.81173e-11 0.029701 0.00518389 -4.99518e-11 0.0293983 0.00488135 -4.15081e-11 0.0290985 0.00459231 -3.39484e-11 0.0287968 0.00431548 -2.88676e-11 0.0284977 0.00404989 -2.4263e-11 0.0281952 0.00379647 -2.15232e-11 0.0279046 0.00355385 -1.7303e-11 0.0276348 0.00332535 -1.08247e-11 0.027384 0.00311024 -4.59207e-12 0.0271567 0.00290865 3.76476e-12 0.0269541 0.00272176 2.30757e-12 0.0267793 0.00254916 6.95947e-12 0.0266248 0.00238938 7.12171e-12 0.0264801 0.00224257 5.98911e-12 0.0263376 0.00210745 4.56785e-12 0.0261947 0.00198343 3.33978e-12 0.0260518 0.00187066 2.52052e-12 0.0259099 0.00176946 2.11627e-12 0.0257702 0.00167991 2.023e-12 0.0256346 0.00160164 2.58985e-12 0.0255064 0.00153397 3.87668e-12 0.0253826 0.00147573 5.62954e-12 0.0252454 0.00142451 6.8932e-12 0.0250506 0.00137559 6.91381e-12 0.0247175 0.00132046 5.43253e-12 0.0241304 0.00124705 2.02282e-12 0.0231614 0.00114201 -3.26149e-12 0.021735 0.000990223 -9.53543e-12 0.0199215 0.000807759 -1.42231e-11 0.0179552 0.000613198 -1.57238e-11 0.0161215 0.000434342 -1.40474e-11 0.0146128 0.000290956 -1.08071e-11 0.0134811 0.000187764 -7.55786e-12 0.0126854 0.000118848 -5.42868e-12 0.0121496 7.47765e-05 -3.78405e-12 0.0117999 4.72024e-05 -2.44468e-12 0.0115765 3.01098e-05 -1.56494e-12 0.0114354 1.9456e-05 -8.7859e-13 0.0113469 1.27323e-05 -4.17522e-13 0.0112915 8.42509e-06 -2.73789e-13 0.011257 5.6234e-06 -1.87924e-13 0.0112354 3.77557e-06 -1.18889e-13 0.011222 2.54309e-06 -7.75356e-14 0.0112137 1.71438e-06 -5.2904e-14 0.0112085 1.15426e-06 -3.83279e-14 0.0112053 7.74799e-07 -2.97123e-14 0.0112033 5.17881e-07 -2.46072e-14 0.011202 3.44445e-07 -2.16295e-14 0.0112013 2.2768e-07 -1.98852e-14 0.0112008 1.49411e-07 -1.88485e-14 0.0112005 9.74687e-08 -1.81819e-14 0.0112003 6.3129e-08 -1.7868e-14 0.0112002 4.05363e-08 -1.76553e-14 0.0112001 2.58409e-08 -1.75095e-14 0.0112001 1.63446e-08 -1.7453e-14 0.0112001 1.0255e-08 -1.73617e-14 0.0112001 6.37865e-09 -1.74247e-14 0.0112001 3.94867e-09 -1.72264e-14 2.3662e-09 -1.75372e-14 0.0168033 1.01219e-10 -8.98981e-15 0.0168051 -4.06667e-11 1.654e-14 0.0168078 -1.47589e-10 -8.88596e-14 0.0168119 1.29987e-09 1.34311e-13 0.0168178 -2.84634e-09 -2.61881e-13 0.0168263 8.55926e-09 3.62274e-13 0.0168384 -6.9065e-09 -5.26813e-13 0.0168558 3.79829e-08 3.91392e-13 0.0168802 7.08515e-08 -3.29506e-13 0.0169149 3.53718e-07 -6.30503e-13 0.0169686 1.3058e-06 1.15211e-12 0.017051 5.33707e-06 -1.42219e-12 0.0172283 1.89963e-05 4.39038e-12 0.01756 7.07527e-05 9.68809e-12 0.0182908 0.000233213 6.28128e-11 0.0201815 0.000715994 7.7249e-11 0.023545 0.00186869 2.51947e-10 0.0285591 0.00420553 4.25155e-10 0.0316056 0.00892866 2.64279e-10 0.0329697 0.0123919 1.44106e-10 0.0337396 0.0134625 5.68851e-11 0.0341017 0.0139011 8.47971e-12 0.0343028 0.0137989 -1.10477e-11 0.0345325 0.0134317 -1.40053e-11 0.0346974 0.0130685 -1.99478e-11 0.0347434 0.0126995 -3.06575e-11 0.034712 0.0122869 -4.94911e-11 0.0346219 0.0118276 -6.76058e-11 0.0344878 0.0113463 -7.73286e-11 0.0343228 0.0108561 -8.07289e-11 0.034138 0.0103688 -8.21779e-11 0.0339299 0.00989218 -7.64039e-11 0.0336915 0.00942381 -7.75879e-11 0.0334162 0.00896522 -7.33461e-11 0.0331068 0.00851362 -6.50952e-11 0.0327666 0.00807249 -5.49606e-11 0.0324011 0.00764111 -4.67387e-11 0.0320244 0.00722173 -4.15746e-11 0.0316519 0.0068171 -3.7705e-11 0.031294 0.00642987 -3.3091e-11 0.030952 0.00606063 -2.62495e-11 0.0306224 0.00570851 -1.73658e-11 0.0302998 0.00537119 -8.05837e-12 0.029982 0.00504765 -1.67877e-12 0.029664 0.00473696 3.25013e-12 0.0293454 0.00443903 5.24563e-12 0.0290323 0.00415361 7.86527e-12 0.028722 0.0038821 1.42356e-11 0.0284299 0.00362404 2.87258e-11 0.0281618 0.00338263 3.92299e-11 0.0279128 0.00315656 4.50053e-11 0.0276892 0.00294747 4.61121e-11 0.0274879 0.00275463 3.85538e-11 0.0273048 0.00257831 3.5079e-11 0.0271327 0.00241651 2.738e-11 0.0269629 0.00226818 2.25839e-11 0.0267911 0.00213295 1.95542e-11 0.0266157 0.00200986 1.72583e-11 0.0264368 0.00189865 1.51037e-11 0.0262565 0.00179909 1.35993e-11 0.0260783 0.00171058 1.19623e-11 0.0259054 0.00163192 1.10351e-11 0.0257335 0.00156086 1.05429e-11 0.02554 0.00149392 9.8338e-12 0.0252741 0.0014248 7.94529e-12 0.0248491 0.00134387 3.53539e-12 0.0241453 0.00123902 -1.31508e-12 0.0230433 0.00109624 -8.13982e-12 0.0214991 0.000919558 -1.46984e-11 0.0196182 0.00072311 -1.848e-11 0.0176476 0.000529073 -1.84414e-11 0.0158577 0.000361963 -1.53772e-11 0.0144113 0.00023492 -1.12698e-11 0.0133388 0.000147354 -8.08946e-12 0.0125896 9.09246e-05 -5.60341e-12 0.012087 5.59113e-05 -3.74349e-12 0.0117596 3.45694e-05 -2.34785e-12 0.0115506 2.16521e-05 -1.43819e-12 0.0114187 1.37713e-05 -6.96176e-13 0.0113359 8.89149e-06 -3.79032e-13 0.0112843 5.81717e-06 -2.53066e-13 0.0112522 3.84596e-06 -1.69222e-13 0.0112322 2.56167e-06 -1.069e-13 0.0112198 1.71385e-06 -6.99516e-14 0.0112122 1.14866e-06 -4.81594e-14 0.0112075 7.6946e-07 -3.53608e-14 0.0112046 5.14215e-07 -2.7863e-14 0.0112028 3.4235e-07 -2.34752e-14 0.0112017 2.26839e-07 -2.0915e-14 0.0112011 1.49428e-07 -1.94256e-14 0.0112007 9.77899e-08 -1.85536e-14 0.0112004 6.35721e-08 -1.80427e-14 0.0112003 4.10453e-08 -1.77469e-14 0.0112002 2.63054e-08 -1.7577e-14 0.0112001 1.67208e-08 -1.74631e-14 0.0112001 1.05482e-08 -1.74218e-14 0.0112001 6.60874e-09 -1.7345e-14 0.0112001 4.10735e-09 -1.74135e-14 0.0112001 2.53212e-09 -1.72209e-14 1.51665e-09 -1.75335e-14 0.0168033 2.4384e-11 -4.4458e-15 0.0168051 -2.451e-11 5.60275e-16 0.0168078 -9.01842e-12 -3.59321e-14 0.0168119 2.50802e-10 3.49987e-14 0.0168178 -6.70915e-10 -1.25369e-13 0.0168262 1.82277e-09 1.02433e-13 0.0168384 -2.1449e-09 -2.53418e-13 0.0168556 5.81747e-09 9.34495e-14 0.0168797 8.47882e-09 -2.95358e-13 0.0169127 3.309e-08 -4.83687e-13 0.0169587 1.73233e-07 4.4016e-13 0.0170225 5.73039e-07 -2.14547e-12 0.0171157 2.34639e-06 2.85086e-12 0.0172656 8.63651e-06 -5.49453e-12 0.0175494 3.24857e-05 1.21781e-11 0.0181169 0.000112322 1.94301e-11 0.0193386 0.000365467 6.96678e-11 0.0218084 0.00103459 1.35257e-10 0.025838 0.00243719 3.81009e-10 0.0298651 0.0048575 6.00878e-10 0.032353 0.00921843 2.52823e-10 0.033544 0.0118941 1.29444e-10 0.0342326 0.0126993 6.77852e-11 0.0346052 0.0130076 1.72217e-11 0.034878 0.0129639 -1.16613e-11 0.0350633 0.0127019 -9.10261e-12 0.0351849 0.0123553 -7.68712e-12 0.0351938 0.0119758 -1.79588e-11 0.0351517 0.0115646 -2.40448e-11 0.0350631 0.0111378 -2.17138e-11 0.0349441 0.0106972 -2.60363e-11 0.0347884 0.0102557 -1.91674e-11 0.0345922 0.00980967 -1.46334e-11 0.034352 0.0093625 -1.12042e-11 0.0340694 0.00891004 1.22046e-12 0.0337535 0.00845701 9.698e-12 0.0334094 0.00800739 1.76848e-11 0.0330505 0.00756356 2.59912e-11 0.0326921 0.00712991 3.23399e-11 0.032345 0.00671012 3.79246e-11 0.0320152 0.00630645 4.56101e-11 0.0316969 0.00591994 5.17667e-11 0.0313828 0.00554891 6.30735e-11 0.0310676 0.00519153 6.36455e-11 0.0307527 0.00484821 7.84461e-11 0.0304353 0.00451959 7.48116e-11 0.0301171 0.00420571 8.0263e-11 0.0298045 0.00390756 9.458e-11 0.0294973 0.0036267 1.00618e-10 0.0292052 0.00336508 9.84698e-11 0.0289351 0.00312345 9.5246e-11 0.0286807 0.00290234 9.26781e-11 0.0284434 0.00270209 8.79221e-11 0.0282179 0.00252136 8.42222e-11 0.0279952 0.00235837 7.86364e-11 0.0277728 0.00221226 7.21508e-11 0.0275472 0.00208117 6.64927e-11 0.0273158 0.00196359 6.01705e-11 0.0270765 0.00185747 5.18004e-11 0.0268297 0.00176221 3.91884e-11 0.0265808 0.00167747 2.89426e-11 0.0263346 0.00160022 2.26765e-11 0.0260858 0.00152638 1.82916e-11 0.0258075 0.00144999 1.65603e-11 0.0254414 0.00136318 1.12444e-11 0.0248946 0.00125727 3.45465e-12 0.024053 0.00112454 -4.69146e-12 0.0228212 0.000960662 -1.31568e-11 0.0211861 0.000778682 -1.95845e-11 0.0192739 0.000590667 -2.23171e-11 0.0173318 0.000417622 -2.07398e-11 0.0156057 0.000276908 -1.6411e-11 0.0142293 0.000174764 -1.20499e-11 0.0132159 0.000106941 -8.49635e-12 0.01251 6.45385e-05 -5.6697e-12 0.0120366 3.89128e-05 -3.68071e-12 0.011728 2.36267e-05 -2.2312e-12 0.0115308 1.4567e-05 -1.26863e-12 0.0114061 9.14043e-06 -5.92947e-13 0.0113279 5.83465e-06 -3.47219e-13 0.011279 3.78125e-06 -2.49747e-13 0.0112487 2.48044e-06 -1.53767e-13 0.0112299 1.64149e-06 -9.70715e-14 0.0112183 1.0923e-06 -6.3777e-14 0.0112112 7.28741e-07 -4.43134e-14 0.0112068 4.86244e-07 -3.29755e-14 0.0112041 3.23829e-07 -2.63874e-14 0.0112025 2.14928e-07 -2.25662e-14 0.0112015 1.41996e-07 -2.03541e-14 0.0112009 9.3296e-08 -1.90756e-14 0.0112006 6.09156e-08 -1.83351e-14 0.0112004 3.95101e-08 -1.79095e-14 0.0112002 2.54496e-08 -1.766e-14 0.0112002 1.62744e-08 -1.75227e-14 0.0112001 1.0328e-08 -1.74289e-14 0.0112001 6.50369e-09 -1.74023e-14 0.0112001 4.06498e-09 -1.73297e-14 0.0112001 2.52251e-09 -1.74048e-14 0.0112 1.54851e-09 -1.72157e-14 9.29814e-10 -1.75315e-14 0.0168033 6.61233e-12 -3.19613e-15 0.0168051 -7.61923e-12 -4.61041e-15 0.0168078 4.51475e-12 -1.35334e-14 0.0168119 4.83729e-11 -2.61806e-15 0.0168178 -1.43432e-10 -4.46494e-14 0.0168262 3.945e-10 -3.2547e-16 0.0168384 -5.69131e-10 -1.11188e-13 0.0168556 1.11152e-09 -4.24657e-14 0.0168796 7.13566e-10 -1.87749e-13 0.0169125 3.10634e-09 -2.8108e-13 0.0169576 2.28465e-08 -1.88506e-13 0.0170187 5.82253e-08 -9.62613e-13 0.0171006 2.95778e-07 -2.28846e-14 0.0172117 9.98679e-07 -2.03047e-12 0.0173685 4.06782e-06 6.06978e-13 0.0176119 1.43548e-05 -1.091e-12 0.0180554 5.14682e-05 9.11522e-12 0.0188861 0.000173047 3.48173e-11 0.0204373 0.000501381 1.08006e-10 0.0230152 0.00125316 1.88594e-10 0.026707 0.00260606 5.35779e-10 0.0302527 0.00461974 6.10645e-10 0.0325619 0.00772325 3.83309e-10 0.0337782 0.0105199 1.74009e-10 0.0345001 0.0115321 1.0553e-10 0.0349607 0.0117717 7.99084e-11 0.0352978 0.0117503 4.98428e-11 0.0355394 0.0114669 5.53344e-11 0.0356973 0.0111463 4.67744e-11 0.0357145 0.0108253 4.09194e-11 0.0356568 0.0104524 5.41235e-11 0.0355847 0.0100305 6.44279e-11 0.0354814 0.00956437 8.08751e-11 0.0353421 0.00907229 9.37335e-11 0.0351631 0.00857284 1.10925e-10 0.0349458 0.00808209 1.31274e-10 0.0346964 0.00759431 1.37179e-10 0.0344258 0.0071167 1.51083e-10 0.0341459 0.00665136 1.56058e-10 0.0338655 0.00620308 1.59551e-10 0.0335914 0.00577129 1.65555e-10 0.0333245 0.00536194 1.6976e-10 0.0330504 0.00496862 1.76111e-10 0.0327668 0.0045846 1.93548e-10 0.032472 0.00422041 1.81292e-10 0.0321676 0.00387744 2.18378e-10 0.0318514 0.00355867 1.99282e-10 0.0315204 0.00326284 1.79207e-10 0.031188 0.00299263 1.76638e-10 0.0308551 0.00274857 1.80718e-10 0.0305225 0.00253125 1.82971e-10 0.0302025 0.00233947 1.80178e-10 0.0298943 0.00217295 1.71416e-10 0.0295831 0.00202977 1.59589e-10 0.0292647 0.00190649 1.47558e-10 0.0289433 0.00180032 1.37304e-10 0.0286205 0.00170876 1.28047e-10 0.0282914 0.00162921 1.1825e-10 0.0279529 0.00155917 1.08059e-10 0.0276044 0.00149457 9.5904e-11 0.0272455 0.00143244 7.83663e-11 0.0268786 0.00136996 5.39553e-11 0.0264971 0.00130058 3.61695e-11 0.026073 0.00121928 2.6444e-11 0.0255503 0.0011216 1.83967e-11 0.0248464 0.0010056 5.89881e-12 0.023865 0.000870695 -6.21384e-12 0.0225293 0.00072251 -1.65632e-11 0.0208413 0.000567293 -2.34869e-11 0.0189348 0.00041738 -2.53466e-11 0.0170448 0.000286915 -2.24803e-11 0.0153902 0.000185525 -1.72123e-11 0.014081 0.000114522 -1.28222e-11 0.0131195 6.87264e-05 -8.75118e-12 0.0124495 4.07656e-05 -5.69342e-12 0.0119993 2.42004e-05 -3.58521e-12 0.0117051 1.44858e-05 -2.11884e-12 0.0115167 8.82086e-06 -1.08416e-12 0.0113973 5.47676e-06 -5.4077e-13 0.0113223 3.46535e-06 -3.49789e-13 0.0112755 2.22958e-06 -2.31415e-13 0.0112464 1.45397e-06 -1.41977e-13 0.0112284 9.57581e-07 -8.96095e-14 0.0112173 6.3469e-07 -5.91086e-14 0.0112105 4.22039e-07 -4.1416e-14 0.0112063 2.80806e-07 -3.11863e-14 0.0112038 1.86552e-07 -2.52862e-14 0.0112023 1.23543e-07 -2.18903e-14 0.0112014 8.14564e-08 -1.99381e-14 0.0112008 5.34203e-08 -1.88187e-14 0.0112005 3.4821e-08 -1.81762e-14 0.0112003 2.25483e-08 -1.78115e-14 0.0112002 1.45004e-08 -1.75991e-14 0.0112001 9.25832e-09 -1.74844e-14 0.0112001 5.86767e-09 -1.74049e-14 0.0112001 3.69064e-09 -1.7388e-14 0.0112001 2.30349e-09 -1.73201e-14 0.0112001 1.4276e-09 -1.73989e-14 0.0112 8.74603e-10 -1.72123e-14 5.24556e-10 -1.75298e-14 0.0168033 2.62171e-12 -3.1165e-15 0.0168051 -8.79964e-13 -5.12228e-15 0.0168078 4.44537e-12 -7.47971e-15 0.0168119 9.71473e-12 -1.03409e-14 0.0168178 -2.16615e-11 -2.32976e-14 0.0168262 7.76893e-11 -2.21423e-14 0.0168384 -1.06168e-10 -6.40228e-14 0.0168556 2.04466e-10 -6.94457e-14 0.0168796 7.66129e-11 -1.4603e-13 0.0169125 1.87398e-10 -2.3048e-13 0.0169574 3.24177e-09 -3.16523e-13 0.0170182 5.24601e-09 -6.72359e-13 0.0170989 3.67163e-08 -6.8256e-13 0.0172049 1.12492e-07 -1.43244e-12 0.0173438 4.9397e-07 -1.35649e-12 0.017527 1.73043e-06 -2.55188e-12 0.0177764 6.52078e-06 -2.06848e-12 0.018141 2.27937e-05 4.13912e-13 0.0187394 7.32917e-05 1.17818e-11 0.0197255 0.000217123 4.96427e-11 0.0212662 0.000544097 1.29521e-10 0.0234318 0.00117041 2.47032e-10 0.0263216 0.00213647 4.75858e-10 0.0293708 0.00347515 6.60843e-10 0.0318788 0.00489494 6.58352e-10 0.0336433 0.00676589 4.5208e-10 0.0347547 0.00837417 3.21254e-10 0.0354892 0.00904937 2.49647e-10 0.0360638 0.00900297 2.6095e-10 0.0365247 0.00876385 2.72233e-10 0.0368788 0.00848991 2.71927e-10 0.0371523 0.00808334 2.96706e-10 0.0373705 0.00758755 3.15612e-10 0.0375183 0.00708904 3.23906e-10 0.0375464 0.00659748 3.44824e-10 0.0375095 0.00608805 3.89643e-10 0.0374287 0.00559884 3.80722e-10 0.0373018 0.00514205 3.86735e-10 0.0371361 0.00470035 3.87692e-10 0.0369453 0.00428082 3.81032e-10 0.0367307 0.00388579 3.78278e-10 0.0364987 0.0035253 3.69672e-10 0.0362377 0.00319113 3.68582e-10 0.0359307 0.00288255 3.53982e-10 0.035587 0.00258898 3.57555e-10 0.0352251 0.00231091 3.35752e-10 0.0348355 0.00206405 3.3208e-10 0.034415 0.00184985 3.1878e-10 0.0339707 0.00166637 3.00037e-10 0.0335129 0.00151133 2.84794e-10 0.0330529 0.00138331 2.76415e-10 0.0325847 0.00127938 2.66615e-10 0.0321206 0.00119621 2.51145e-10 0.0316628 0.00113163 2.33315e-10 0.0311928 0.00108171 2.17692e-10 0.0307026 0.00104131 2.04155e-10 0.0302031 0.00100765 1.94697e-10 0.0297032 0.000979006 1.88216e-10 0.029193 0.00095009 1.78138e-10 0.028659 0.000918399 1.63575e-10 0.0280975 0.000882765 1.4274e-10 0.0275134 0.000838669 1.09059e-10 0.0269115 0.000785325 6.67118e-11 0.0262793 0.000722152 4.37698e-11 0.0255747 0.000649644 3.05064e-11 0.024725 0.000568831 1.13992e-11 0.0236382 0.000481758 -5.38898e-12 0.0222402 0.00039058 -1.84507e-11 0.0205368 0.000299852 -2.60537e-11 0.0186588 0.000216039 -2.73666e-11 0.0168251 0.000145721 -2.36081e-11 0.0152327 9.26706e-05 -1.83711e-11 0.0139765 5.63801e-05 -1.32923e-11 0.0130536 3.34066e-05 -8.89072e-12 0.0124092 1.95929e-05 -5.68434e-12 0.0119749 1.15139e-05 -3.50181e-12 0.0116904 6.82745e-06 -2.01306e-12 0.0115078 4.12402e-06 -9.62753e-13 0.0113918 2.54321e-06 -5.14064e-13 0.0113189 1.60015e-06 -3.26866e-13 0.0112733 1.02481e-06 -2.18982e-13 0.011245 6.65835e-07 -1.34012e-13 0.0112274 4.37211e-07 -8.45865e-14 0.0112167 2.89083e-07 -5.59761e-14 0.0112101 1.9184e-07 -3.94779e-14 0.0112061 1.27425e-07 -2.99935e-14 0.0112036 8.4529e-08 -2.45546e-14 0.0112022 5.59056e-08 -2.14424e-14 0.0112013 3.68164e-08 -1.96638e-14 0.0112008 2.41179e-08 -1.86506e-14 0.0112005 1.57048e-08 -1.80728e-14 0.0112003 1.01598e-08 -1.77481e-14 0.0112002 6.52747e-09 -1.75597e-14 0.0112001 4.16388e-09 -1.746e-14 0.0112001 2.63668e-09 -1.73899e-14 0.0112001 1.65716e-09 -1.73783e-14 0.0112001 1.03347e-09 -1.7315e-14 0.0112 6.4e-10 -1.73956e-14 0.0112 3.91691e-10 -1.72103e-14 2.34788e-10 -1.7529e-14 0.0168033 -3.45874e-15 0.0168051 -4.63517e-15 0.0168078 -6.52786e-15 0.0168119 -1.12953e-14 0.0168178 -1.81494e-14 0.0168262 -2.62168e-14 0.0168384 -5.13852e-14 0.0168556 -7.25333e-14 0.0168796 -1.33064e-13 0.0169125 -2.08836e-13 0.0169574 -3.42431e-13 0.0170181 -5.67372e-13 0.0170987 -8.48167e-13 0.0172041 -1.28107e-12 0.0173409 -1.67652e-12 0.0175161 -2.60646e-12 0.017737 -4.72216e-12 0.0180149 -6.20332e-12 0.0183745 -6.18177e-12 0.0188651 8.68049e-13 0.0195732 1.87219e-11 0.0206001 6.93255e-11 0.0220445 1.48296e-10 0.0239224 2.88211e-10 0.0262005 4.51895e-10 0.0288328 7.15399e-10 0.0316032 9.44884e-10 0.0342034 1.07401e-09 0.0364855 1.08424e-09 0.0384569 1.1394e-09 0.0401281 1.09068e-09 0.0414974 1.09723e-09 0.0425857 1.06824e-09 0.0434189 1.01254e-09 0.0440071 9.62466e-10 0.0443606 9.36109e-10 0.0445691 8.52973e-10 0.0445627 8.10646e-10 0.0444352 7.60015e-10 0.0441694 7.21778e-10 0.0438061 6.74232e-10 0.0433694 6.07729e-10 0.042867 5.73085e-10 0.0422872 5.24085e-10 0.0416233 4.81473e-10 0.0408905 4.28021e-10 0.0401128 4.07325e-10 0.0393 3.77249e-10 0.0384699 3.51391e-10 0.0376398 3.36497e-10 0.0368213 3.29418e-10 0.0360144 3.21578e-10 0.0352208 3.12782e-10 0.0344415 2.96468e-10 0.0336635 2.83801e-10 0.0328779 2.77214e-10 0.032083 2.69986e-10 0.0312841 2.66219e-10 0.0304869 2.58106e-10 0.0296847 2.40763e-10 0.0288662 2.10468e-10 0.0280429 1.6634e-10 0.0272316 1.05841e-10 0.0264276 6.24205e-11 0.0255911 4.11786e-11 0.0246461 1.82043e-11 0.0234971 -3.01322e-12 0.0220679 -1.84932e-11 0.0203626 -2.69608e-11 0.0185064 -2.8223e-11 0.0167075 -2.41104e-11 0.0151505 -1.89167e-11 0.0139231 -1.35114e-11 0.0130205 -8.95097e-12 0.0123892 -5.67288e-12 0.011963 -3.45311e-12 0.0116833 -1.9447e-12 0.0115035 -9.14245e-13 0.0113892 -5.0514e-13 0.0113173 -3.15946e-13 0.0112723 -2.12715e-13 0.0112443 -1.30007e-13 0.011227 -8.20648e-14 0.0112164 -5.44061e-14 0.0112099 -3.85081e-14 0.0112059 -2.93977e-14 0.0112036 -2.41898e-14 0.0112021 -2.12195e-14 0.0112013 -1.95277e-14 0.0112008 -1.85675e-14 0.0112005 -1.80217e-14 0.0112003 -1.7717e-14 0.0112002 -1.75403e-14 0.0112001 -1.74482e-14 0.0112001 -1.73828e-14 0.0112001 -1.73732e-14 0.0112001 -1.7313e-14 0.0112 -1.7394e-14 0.0112 -1.72092e-14 -1.75288e-14 0.00965475 0.00861958 3.24105e-11 0.00623245 0.00343664 2.07636e-11 0.00472736 0.00149962 1.5492e-11 0.00411245 0.000617678 7.03385e-12 0.00399544 0.000112905 6.14809e-12 0.00424332 -0.00025327 3.12859e-12 0.00466728 -0.000409677 -3.04263e-12 0.00494042 -0.000254875 -1.36116e-11 0.00503737 -8.76257e-05 -1.56899e-11 0.00502701 1.56948e-05 -1.76432e-11 0.00496786 6.23367e-05 -1.91819e-11 0.00493163 3.42564e-05 -2.04373e-11 0.00492521 7.70459e-06 -2.06939e-11 0.00495951 -2.53419e-05 -2.09856e-11 0.00503032 -4.66066e-05 -1.76578e-11 0.00512016 -5.68461e-05 -1.86558e-11 0.00521613 -6.02188e-05 -1.47888e-11 0.00532166 -6.20019e-05 -1.17574e-11 0.00544242 -6.76871e-05 -9.13772e-12 0.00557889 -7.5428e-05 -5.82464e-12 0.00572811 -8.35685e-05 -1.23846e-12 0.00588378 -9.03793e-05 3.27408e-12 0.00603686 -9.53503e-05 6.90481e-12 0.00617936 -9.82442e-05 2.10114e-11 0.00630623 -9.92255e-05 2.7963e-11 0.00641812 -9.86051e-05 3.19305e-11 0.0065225 -9.60194e-05 4.95717e-11 0.00662075 -9.24785e-05 5.55554e-11 0.00670332 -8.926e-05 4.27824e-11 0.00676803 -8.47863e-05 5.28552e-11 0.00682104 -7.82703e-05 6.07852e-11 0.0068652 -7.20783e-05 6.28019e-11 0.00690129 -6.59207e-05 6.29896e-11 0.00693103 -5.99429e-05 6.35716e-11 0.00695825 -5.43866e-05 6.66858e-11 0.00698735 -4.96064e-05 7.30382e-11 0.00702091 -4.59226e-05 7.85507e-11 0.00705979 -4.35313e-05 8.05631e-11 0.00710537 -4.25641e-05 8.19416e-11 0.0071607 -4.3078e-05 8.50278e-11 0.00722943 -4.50619e-05 8.86334e-11 0.00731626 -4.8501e-05 9.29338e-11 0.00742377 -5.34998e-05 9.20671e-11 0.00754642 -5.99223e-05 8.59585e-11 0.00768501 -6.73607e-05 8.13591e-11 0.00788958 -7.68508e-05 7.53885e-11 0.008258 -7.98889e-05 8.09321e-11 0.00879589 -8.36737e-05 5.28079e-11 0.00947116 -9.3764e-05 4.74656e-11 0.0102529 -0.000108772 4.25563e-11 0.0111044 -0.000118746 3.67544e-11 0.0119974 -0.000125119 2.79169e-11 0.0129037 -0.000131921 1.66813e-11 0.0137967 -0.000138998 5.50034e-12 0.0146551 -0.000146176 -5.46727e-12 0.0154637 -0.000153286 -1.61141e-11 0.0162087 -0.000160263 -2.48303e-11 0.0168751 -0.000167084 -3.10454e-11 0.0174481 -0.000173337 -3.54259e-11 0.0179187 -0.000178104 -3.98316e-11 0.0182936 -0.000180675 -4.44812e-11 0.0185978 -0.000180894 -4.6624e-11 0.0188489 -0.000179 -4.71506e-11 0.0190533 -0.000175192 -4.85285e-11 0.0192088 -0.00016967 -5.10461e-11 0.0192905 -0.000162589 -5.45712e-11 0.0192117 -0.000153781 -5.83889e-11 0.0186788 -0.00014131 -6.24268e-11 0.0179501 -0.00012186 -3.1534e-11 0.0169523 -0.000104456 -1.64463e-11 0.0158221 -8.55694e-05 -1.37754e-11 0.0147294 -6.63885e-05 -1.50714e-11 0.013792 -4.92875e-05 -1.57098e-11 0.0130549 -3.54756e-05 -1.46473e-11 0.0125101 -2.50491e-05 -1.25157e-11 0.0121249 -1.74819e-05 -1.00602e-11 0.011861 -1.20701e-05 -7.71082e-12 0.0116848 -8.1816e-06 -5.67963e-12 0.0115694 -5.37274e-06 -4.05874e-12 0.0114948 -3.33058e-06 -2.80204e-12 0.0114458 -2.01653e-06 -1.79458e-12 0.0114117 -1.16672e-06 -9.99857e-13 0.0113854 -4.42612e-07 -4.47914e-13 0.0113627 9.59657e-08 -1.25379e-13 0.0113415 4.15256e-07 4.46803e-14 0.0113211 5.68812e-07 1.20857e-13 0.0113016 6.0866e-07 1.28422e-13 0.0112834 5.77678e-07 1.04318e-13 0.0112669 5.08559e-07 7.05168e-14 0.0112525 4.24337e-07 3.78743e-14 0.0112404 3.39806e-07 1.25676e-14 0.0112305 2.63302e-07 2.58245e-15 0.0112226 1.98562e-07 -4.2479e-15 0.0112165 1.46355e-07 -8.28313e-15 0.0112118 1.05875e-07 -8.87453e-15 0.0112084 7.52455e-08 -6.84744e-15 0.0112059 5.28304e-08 -4.16378e-15 0.011204 3.64618e-08 -3.02991e-15 0.0112028 2.47547e-08 -2.46792e-15 1.64394e-08 -1.62767e-15 0.0130293 0.0127328 1.83414e-11 0.00991364 0.00657398 2.03186e-11 0.00828178 0.00314167 1.75448e-11 0.00759422 0.00131575 1.0204e-11 0.00732378 0.000392662 6.92769e-12 0.00717241 -9.34033e-05 3.14265e-12 0.00703829 -0.000253829 -4.71876e-12 0.00707739 -0.000268356 -6.4479e-12 0.0072264 -0.000207529 -9.7095e-12 0.00738736 -0.000111302 -1.71296e-11 0.00750239 -3.56176e-05 -1.8759e-11 0.00754102 6.98494e-06 -2.03994e-11 0.00754278 1.70972e-05 -2.00374e-11 0.0075292 3.41345e-07 -1.96052e-11 0.0075315 -3.27167e-05 -1.77592e-11 0.00755608 -6.11247e-05 -1.7207e-11 0.00760854 -8.4734e-05 -1.56474e-11 0.00768901 -0.000101905 -1.23393e-11 0.00778328 -0.000111157 -9.18358e-12 0.00788746 -0.000120627 -5.50324e-12 0.00800322 -0.00013285 -1.32961e-12 0.00813099 -0.000144566 3.04142e-12 0.00826783 -0.000155293 6.46036e-12 0.00840783 -0.000163789 1.78732e-11 0.00854323 -0.000169942 2.69958e-11 0.00866702 -0.000173523 3.17472e-11 0.00877693 -0.000174503 3.87823e-11 0.00887853 -0.000172784 5.00808e-11 0.0089769 -0.00016921 4.95193e-11 0.00906523 -0.00016531 4.20494e-11 0.00913743 -0.000159908 4.89121e-11 0.00920128 -0.000151505 6.399e-11 0.00926351 -0.000142925 5.72578e-11 0.00932484 -0.000134524 5.70612e-11 0.00938309 -0.000126191 5.91497e-11 0.00943806 -0.000118459 6.62597e-11 0.00949248 -0.000111992 7.2379e-11 0.00954853 -0.000107147 7.30924e-11 0.00960406 -0.000104067 7.01118e-11 0.00965199 -0.000102843 7.2629e-11 0.00968578 -0.000103642 7.71719e-11 0.00970943 -0.000106549 8.07806e-11 0.00973904 -0.000111514 8.03351e-11 0.00978558 -0.000118772 7.61315e-11 0.0098534 -0.000128683 6.79361e-11 0.00995807 -0.000138224 6.37227e-11 0.0100915 -0.00014794 5.96535e-11 0.0102359 -0.000159735 4.80016e-11 0.0104489 -0.000169562 3.71221e-11 0.010824 -0.000178059 2.88559e-11 0.0113615 -0.000195578 2.8079e-11 0.0120182 -0.000211492 1.98492e-11 0.0127628 -0.000226507 7.73963e-12 0.0135664 -0.000240548 -3.44915e-12 0.0144042 -0.000253967 -1.36757e-11 0.0152504 -0.000266913 -2.31807e-11 0.0160773 -0.000279258 -3.08288e-11 0.0168547 -0.000290636 -3.61373e-11 0.0175526 -0.000300335 -3.93279e-11 0.0181478 -0.000307402 -4.19325e-11 0.0186336 -0.000311155 -4.44528e-11 0.0190247 -0.000311392 -4.56608e-11 0.0193328 -0.000308115 -4.59783e-11 0.0195618 -0.000301467 -4.67957e-11 0.019715 -0.000291779 -4.81833e-11 0.0197699 -0.000279391 -4.94229e-11 0.0196124 -0.000264102 -4.9924e-11 0.0191063 -0.0002433 -4.66272e-11 0.0183299 -0.00021615 -2.266e-11 0.0172658 -0.000184618 -1.22251e-11 0.01607 -0.00015029 -1.22095e-11 0.0149184 -0.000116272 -1.456e-11 0.0139316 -8.61684e-05 -1.55893e-11 0.0131556 -6.18719e-05 -1.46253e-11 0.012582 -4.34682e-05 -1.24567e-11 0.0121766 -3.00566e-05 -9.90308e-12 0.0118989 -2.05053e-05 -7.58935e-12 0.0117125 -1.38091e-05 -5.72839e-12 0.0115891 -9.04411e-06 -3.93437e-12 0.0115078 -5.60526e-06 -2.66291e-12 0.0114542 -3.13787e-06 -1.82198e-12 0.0114175 -1.40817e-06 -1.04224e-12 0.0113896 -1.98722e-07 -3.65189e-13 0.0113658 6.36052e-07 -1.03269e-13 0.0113436 1.12254e-06 4.9918e-14 0.0113225 1.33219e-06 1.203e-13 0.0113025 1.34724e-06 1.26703e-13 0.0112839 1.24168e-06 1.02548e-13 0.0112672 1.07395e-06 6.90309e-14 0.0112526 8.85711e-07 3.65989e-14 0.0112404 7.03522e-07 1.19821e-14 0.0112305 5.41957e-07 2.29472e-15 0.0112226 4.0696e-07 -4.44181e-15 0.0112164 2.99044e-07 -8.34488e-15 0.0112118 2.15643e-07 -8.85675e-15 0.0112084 1.5296e-07 -6.79919e-15 0.0112058 1.06794e-07 -4.12757e-15 0.011204 7.35713e-08 -3.03192e-15 0.0112027 5.01456e-08 -2.39779e-15 3.29271e-08 -1.6073e-15 0.0165194 0.0143395 -4.04621e-12 0.0141113 0.00905328 8.16113e-12 0.0120974 0.00520009 1.22674e-11 0.0105783 0.00285983 9.96953e-12 0.00951442 0.00148333 6.71861e-12 0.00878021 0.000667262 5.18584e-12 0.00835112 0.000205265 6.83437e-13 0.008148 -2.58183e-05 -7.75696e-12 0.00817935 -0.000197527 -8.58285e-12 0.00836094 -0.000253054 -1.10802e-11 0.00858912 -0.00022171 -1.63963e-11 0.00875322 -0.000127 -1.78377e-11 0.0088596 -6.69345e-05 -1.84784e-11 0.00890641 -3.53641e-05 -1.87481e-11 0.00892249 -3.42769e-05 -1.69615e-11 0.00892632 -5.12417e-05 -1.67544e-11 0.00893231 -7.70815e-05 -1.45698e-11 0.00895748 -0.000105886 -1.3451e-11 0.00901435 -0.000132757 -1.01017e-11 0.00909963 -0.000151561 -5.90816e-12 0.00919589 -0.000166059 -2.07214e-12 0.00929878 -0.000183378 2.92871e-12 0.00940892 -0.000199297 5.93415e-12 0.00952637 -0.000213193 1.37536e-11 0.00964866 -0.000224806 2.18427e-11 0.00976977 -0.000233604 2.57996e-11 0.00988399 -0.000239184 3.01901e-11 0.00998962 -0.00024157 4.28232e-11 0.0100896 -0.000241306 4.45358e-11 0.0101895 -0.00023856 2.56504e-11 0.0102886 -0.000233848 3.81895e-11 0.0103797 -0.000227732 6.3245e-11 0.0104653 -0.000219713 4.56878e-11 0.0105517 -0.000210679 4.81613e-11 0.0106423 -0.000201587 4.66031e-11 0.010738 -0.000192724 5.19039e-11 0.0108389 -0.00018479 6.62583e-11 0.0109438 -0.000178687 6.77581e-11 0.0110471 -0.000174301 5.04245e-11 0.0111375 -0.000171382 4.50376e-11 0.0112008 -0.000170559 6.33358e-11 0.0112315 -0.000172521 6.5564e-11 0.0112388 -0.000176182 6.26741e-11 0.0112382 -0.000183015 5.70348e-11 0.01125 -0.000193253 4.80472e-11 0.011302 -0.000203775 4.33672e-11 0.0114057 -0.000215599 3.95064e-11 0.0115421 -0.000233164 3.32485e-11 0.0117175 -0.000248721 1.88009e-11 0.0119977 -0.000257794 9.64281e-12 0.0124353 -0.000270124 8.74062e-12 0.0130032 -0.000294788 9.85337e-12 0.0136648 -0.000314387 -6.9896e-12 0.014391 -0.00033254 -1.60606e-11 0.0151567 -0.000349466 -2.42428e-11 0.0159371 -0.000365129 -3.20357e-11 0.0167074 -0.000379327 -3.85765e-11 0.0174408 -0.000391946 -4.2784e-11 0.0181056 -0.00040248 -4.4967e-11 0.0186735 -0.000410106 -4.58346e-11 0.0191333 -0.000413905 -4.6125e-11 0.0194966 -0.000413393 -4.63428e-11 0.0197729 -0.00040862 -4.64096e-11 0.0199668 -0.000399834 -4.65333e-11 0.0200796 -0.000387428 -4.65822e-11 0.0200845 -0.000371658 -4.535e-11 0.0198609 -0.000352638 -4.08323e-11 0.01935 -0.000329657 -2.86386e-11 0.018537 -0.000294728 -7.32183e-12 0.0174356 -0.000252502 -6.77061e-12 0.0162044 -0.000205628 -1.06364e-11 0.01502 -0.000159063 -1.4364e-11 0.014005 -0.000117822 -1.57533e-11 0.0132066 -8.44858e-05 -1.47443e-11 0.0126166 -5.91659e-05 -1.24632e-11 0.0121996 -4.07029e-05 -9.8645e-12 0.0119141 -2.7613e-05 -7.69323e-12 0.0117226 -1.85522e-05 -5.55141e-12 0.011596 -1.2086e-05 -3.81321e-12 0.0115126 -7.36715e-06 -2.57978e-12 0.0114576 -3.89507e-06 -1.7172e-12 0.0114197 -1.45526e-06 -9.84731e-13 0.0113909 1.70575e-07 -3.33495e-13 0.0113664 1.26791e-06 -8.44626e-14 0.0113438 1.88144e-06 6.21261e-14 0.0113223 2.116e-06 1.23844e-13 0.0113021 2.08678e-06 1.26347e-13 0.0112834 1.89627e-06 1.00689e-13 0.0112667 1.62564e-06 6.69088e-14 0.0112522 1.33278e-06 3.44974e-14 0.0112401 1.05426e-06 1.10657e-14 0.0112302 8.0969e-07 1.76206e-15 0.0112223 6.06616e-07 -4.78597e-15 0.0112163 4.44912e-07 -8.46361e-15 0.0112117 3.2035e-07 -8.82845e-15 0.0112082 2.26913e-07 -6.65977e-15 0.0112058 1.58483e-07 -4.08938e-15 0.011204 1.0909e-07 -2.97259e-15 0.0112027 7.41988e-08 -2.3414e-15 4.89007e-08 -1.59408e-15 0.0179748 0.0144782 -1.86034e-11 0.0165566 0.0105756 5.77353e-13 0.0147018 0.00712388 5.34663e-12 0.0130225 0.00458474 6.77292e-12 0.0117105 0.00283335 4.0192e-12 0.0107546 0.00166497 7.51045e-13 0.010121 0.000884918 -1.588e-12 0.00973597 0.000391217 -5.39693e-12 0.00952343 7.98034e-05 -6.66515e-12 0.00941701 -9.64239e-05 -1.09438e-11 0.00940645 -0.000164317 -1.07267e-11 0.00952317 -0.000199928 -1.13988e-11 0.00966199 -0.000173438 -1.43433e-11 0.00977885 -0.000125395 -1.52617e-11 0.00985886 -9.18797e-05 -1.6795e-11 0.00990482 -7.56412e-05 -1.76561e-11 0.00993663 -7.70647e-05 -1.09452e-11 0.00995702 -9.50496e-05 -1.07506e-11 0.0099827 -0.000121982 -8.68819e-12 0.0100305 -0.0001519 -7.79532e-12 0.0101033 -0.000180472 -4.85538e-12 0.010198 -0.000205545 4.41996e-12 0.0102882 -0.00022851 4.1144e-12 0.0103797 -0.000249028 7.76425e-12 0.0104786 -0.0002663 1.50642e-11 0.0105863 -0.00028106 1.90283e-11 0.0106996 -0.000292411 2.54543e-11 0.0108151 -0.000300314 3.34897e-11 0.0109323 -0.000304927 3.35219e-11 0.0110526 -0.000305825 3.3367e-11 0.0111778 -0.000303583 3.99581e-11 0.0113091 -0.000298829 4.20506e-11 0.0114467 -0.000292523 3.98841e-11 0.0115895 -0.000285067 4.40618e-11 0.0117355 -0.000277 3.73851e-11 0.0118814 -0.000269103 1.46255e-11 0.0120259 -0.000261509 3.99981e-11 0.0121706 -0.000253934 7.29756e-11 0.0123107 -0.000247899 3.66652e-11 0.0124301 -0.000246369 -1.52467e-11 0.0125147 -0.000247012 7.99231e-12 0.0125634 -0.000246997 7.32332e-11 0.0125813 -0.000248783 3.90948e-11 0.0125789 -0.000255267 3.02156e-11 0.0125744 -0.000264797 2.10919e-11 0.012591 -0.000276291 1.22206e-11 0.0126511 -0.000289286 1.73346e-11 0.0127636 -0.000305603 1.24144e-11 0.0129129 -0.00032511 -2.04978e-11 0.0131011 -0.000340915 -1.66803e-11 0.013388 -0.000351989 1.17061e-11 0.0138224 -0.000367068 8.99793e-12 0.0143738 -0.000391811 -4.29561e-11 0.0150034 -0.000411955 -3.19711e-11 0.015679 -0.000430811 -3.56166e-11 0.0163751 -0.000447619 -4.09825e-11 0.0170725 -0.00046253 -4.59388e-11 0.0177473 -0.000475417 -4.90299e-11 0.0183708 -0.000485752 -4.98686e-11 0.0189145 -0.000492932 -4.91347e-11 0.019362 -0.000496204 -4.78857e-11 0.0197181 -0.000494989 -4.73487e-11 0.019988 -0.00048908 -4.71946e-11 0.0201742 -0.000478479 -4.67207e-11 0.0202734 -0.000463498 -4.55604e-11 0.0202501 -0.000444555 -4.27513e-11 0.0200523 -0.000421553 -3.54474e-11 0.0196274 -0.000393071 -1.45979e-11 0.0187423 -0.000353812 3.91776e-12 0.0176166 -0.000303733 -3.08101e-12 0.0163628 -0.000247548 -9.95117e-12 0.0151517 -0.000191526 -1.4724e-11 0.0141089 -0.000141724 -1.62771e-11 0.0132853 -0.00010132 -1.51622e-11 0.0126745 -7.0619e-05 -1.27181e-11 0.0122414 -4.83093e-05 -1.01093e-11 0.0119439 -3.25762e-05 -7.86964e-12 0.0117442 -2.15752e-05 -5.40239e-12 0.011612 -1.37142e-05 -3.73831e-12 0.0115246 -8.02991e-06 -2.49563e-12 0.0114663 -3.90501e-06 -1.57982e-12 0.0114258 -9.67819e-07 -8.98007e-13 0.0113951 1.01355e-06 -3.12397e-13 0.011369 2.23938e-06 -5.93025e-14 0.0113453 2.87077e-06 8.09163e-14 0.011323 3.04986e-06 1.30604e-13 0.0113023 2.91954e-06 1.26925e-13 0.0112833 2.60576e-06 9.86195e-14 0.0112664 2.20772e-06 6.41625e-14 0.0112518 1.79532e-06 3.15302e-14 0.0112397 1.41191e-06 9.93967e-15 0.0112299 1.0798e-06 1.03504e-15 0.0112221 8.06439e-07 -5.27104e-15 0.011216 5.90091e-07 -8.59424e-15 0.0112115 4.24082e-07 -8.80403e-15 0.0112081 2.99964e-07 -6.46233e-15 0.0112057 2.09067e-07 -3.96369e-15 0.0112039 1.43753e-07 -2.95652e-15 0.0112027 9.78508e-08 -2.31347e-15 6.42345e-08 -1.56033e-15 0.0181938 0.0146236 -3.46209e-11 0.0175264 0.0113753 -1.59778e-11 0.0163546 0.0084677 -2.87328e-12 0.0150082 0.00605967 7.5875e-12 0.0137219 0.00421261 4.25984e-12 0.0126501 0.00281469 1.19487e-12 0.0117742 0.00182734 -3.68448e-12 0.01112 0.00110798 -5.8101e-12 0.0106407 0.000617398 -9.10548e-12 0.0103293 0.000273364 -1.04729e-11 0.0101657 5.84295e-05 -1.07998e-11 0.0100931 -7.60988e-05 -1.20214e-11 0.0101114 -0.000144794 -1.20934e-11 0.0102084 -0.000181032 -1.35435e-11 0.0103227 -0.000173726 -1.42507e-11 0.0104199 -0.000139215 -1.32413e-11 0.0105006 -0.000120306 -1.30096e-11 0.0105654 -0.000118172 -1.00095e-11 0.0106236 -0.000129914 -8.41849e-12 0.0106826 -0.000152721 -5.34333e-12 0.0107445 -0.000182638 -2.63757e-12 0.0108127 -0.00021444 -6.4717e-14 0.010892 -0.000245106 5.25955e-12 0.0109798 -0.000274362 5.63182e-12 0.0110721 -0.000301043 6.1499e-12 0.0111707 -0.000323249 1.36518e-11 0.0112756 -0.000341511 1.8588e-11 0.0113846 -0.000355416 2.2084e-11 0.0114956 -0.000365069 2.24827e-11 0.0116091 -0.000370145 2.33454e-11 0.0117301 -0.000371598 2.60113e-11 0.0118659 -0.000369957 2.75597e-11 0.0120221 -0.000365896 3.018e-11 0.0121976 -0.00036016 2.99253e-11 0.0123858 -0.000353432 2.15094e-11 0.0125799 -0.00034617 1.82811e-11 0.0127733 -0.000338825 2.80364e-11 0.0129592 -0.000332281 2.64533e-11 0.0131357 -0.000326933 7.73023e-12 0.0133085 -0.000322736 1.25862e-12 0.0134733 -0.000321669 5.88075e-12 0.013608 -0.000324837 5.24952e-12 0.0136983 -0.00032969 9.5434e-12 0.0137534 -0.000334235 8.02811e-12 0.0137895 -0.000342662 -2.94454e-12 0.0138244 -0.00035429 -5.5028e-12 0.0138782 -0.000368104 -3.27622e-12 0.0139721 -0.000383347 -1.27188e-11 0.0141104 -0.000401427 -2.25606e-11 0.0142782 -0.000421522 -1.99562e-11 0.0144853 -0.000436158 -1.58957e-11 0.0147846 -0.000447162 -2.28724e-11 0.0152081 -0.000462904 -3.60834e-11 0.0157299 -0.000486021 -3.99243e-11 0.0163176 -0.000504197 -4.21559e-11 0.0169419 -0.000520494 -4.6273e-11 0.017574 -0.000534721 -4.91073e-11 0.0181855 -0.000546361 -5.03962e-11 0.01875 -0.000555273 -4.97628e-11 0.0192442 -0.000561021 -4.80089e-11 0.0196542 -0.00056271 -4.60743e-11 0.0199831 -0.000559575 -4.523e-11 0.020233 -0.000551478 -4.49843e-11 0.020399 -0.000538667 -4.40475e-11 0.0204679 -0.000521534 -4.2291e-11 0.0204173 -0.000500566 -3.87201e-11 0.0202482 -0.000475259 -3.10274e-11 0.0198305 -0.000443297 -1.61287e-11 0.0189094 -0.00039979 8.13822e-12 0.017765 -0.000344006 -2.05331e-12 0.0164922 -0.000280856 -1.0607e-11 0.0152583 -0.000217471 -1.58321e-11 0.0141915 -0.000160864 -1.73223e-11 0.0133461 -0.000114824 -1.59628e-11 0.0127175 -7.98399e-05 -1.33296e-11 0.0122711 -5.43878e-05 -1.04848e-11 0.0119643 -3.64036e-05 -7.96439e-12 0.0117586 -2.37587e-05 -5.47404e-12 0.0116224 -1.47459e-05 -3.73023e-12 0.0115322 -8.23723e-06 -2.43885e-12 0.0114717 -3.50331e-06 -1.51438e-12 0.0114295 -1.6675e-07 -8.18539e-13 0.0113974 2.01675e-06 -2.87868e-13 0.0113701 3.31264e-06 -3.25031e-14 0.0113455 3.917e-06 9.19929e-14 0.0113226 4.0033e-06 1.32392e-13 0.0113015 3.74688e-06 1.23857e-13 0.0112824 3.29607e-06 9.37709e-14 0.0112655 2.7651e-06 5.92275e-14 0.011251 2.23293e-06 2.66071e-14 0.011239 1.74724e-06 8.19359e-15 0.0112293 1.33131e-06 -1.71567e-17 0.0112216 9.91528e-07 -5.9543e-15 0.0112157 7.23979e-07 -8.82715e-15 0.0112112 5.19476e-07 -8.76209e-15 0.0112079 3.66955e-07 -6.14893e-15 0.0112055 2.55646e-07 -3.86722e-15 0.0112038 1.75646e-07 -2.92521e-15 0.0112026 1.19359e-07 -2.38126e-15 7.84705e-08 -1.52803e-15 0.0187298 0.0150158 -4.05082e-11 0.0179925 0.0121144 -1.47214e-11 0.0170557 0.00945635 -6.1406e-12 0.0160555 0.00717199 -1.81128e-12 0.0150131 0.00536819 -4.55822e-12 0.014061 0.0038988 -4.09992e-12 0.0132262 0.00279986 -1.86552e-12 0.0125246 0.00193644 -4.58286e-12 0.0119681 0.0013004 -2.82328e-12 0.0115197 0.000811963 -7.69239e-12 0.0112121 0.00045523 -8.27694e-12 0.011017 0.000198934 -8.09288e-12 0.0108954 2.90401e-05 -7.95525e-12 0.0108354 -7.04573e-05 -8.53499e-12 0.010842 -0.000128037 -8.68743e-12 0.0109188 -0.000167025 -8.77579e-12 0.0110268 -0.000173578 -9.13066e-12 0.0111308 -0.000163235 -8.48602e-12 0.0112225 -0.000161135 -7.80143e-12 0.0113112 -0.000172733 -6.61375e-12 0.0113945 -0.000192656 -4.12164e-12 0.0114658 -0.000220756 -1.49488e-12 0.0115281 -0.000254135 8.97547e-13 0.0115924 -0.000287852 4.31812e-12 0.0116647 -0.000321128 6.39523e-12 0.0117447 -0.000352466 5.44152e-12 0.011835 -0.000378388 9.39092e-12 0.0119372 -0.000399702 1.11587e-11 0.0120504 -0.000416029 1.26402e-11 0.0121727 -0.000427574 1.41368e-11 0.0123041 -0.000435547 1.45014e-11 0.0124469 -0.000439139 1.52035e-11 0.012606 -0.000439016 1.56745e-11 0.0127847 -0.000435759 1.17567e-11 0.0129822 -0.00043047 6.87307e-12 0.013193 -0.000424351 5.49412e-12 0.0134096 -0.00041798 4.20133e-12 0.0136246 -0.000411931 4.22632e-13 0.0138327 -0.000406894 1.01668e-12 0.0140311 -0.000403287 -1.81449e-12 0.0142231 -0.00040112 -2.19681e-11 0.0144105 -0.000401481 -2.3002e-11 0.0145812 -0.000406293 -6.62085e-14 0.0147185 -0.000414669 1.06583e-11 0.0148225 -0.000422926 -2.50492e-11 0.0149041 -0.000432403 -2.2652e-11 0.014977 -0.000445593 -2.13911e-11 0.0150592 -0.000460245 -2.40947e-11 0.0151717 -0.000475728 -3.23112e-11 0.0153211 -0.000493248 -3.12358e-11 0.0154953 -0.000510844 -2.08025e-11 0.015704 -0.000523628 -2.84586e-11 0.0159948 -0.00053343 -4.39686e-11 0.0163951 -0.000547944 -4.24606e-11 0.0168773 -0.000566356 -4.23114e-11 0.0174111 -0.000580951 -4.43069e-11 0.0179666 -0.000593251 -4.6195e-11 0.0185137 -0.000603056 -4.64483e-11 0.0190241 -0.000609788 -4.46836e-11 0.0194727 -0.0006134 -4.2374e-11 0.019842 -0.000612879 -4.04206e-11 0.020137 -0.000607844 -4.01094e-11 0.0203626 -0.000598437 -3.89977e-11 0.0205106 -0.00058398 -3.71222e-11 0.0205822 -0.000564543 -3.4998e-11 0.0205598 -0.000540967 -3.1308e-11 0.0203932 -0.000512966 -2.45164e-11 0.0199828 -0.000478184 -1.25324e-11 0.0190568 -0.000431589 5.25802e-12 0.0179121 -0.000371704 -3.29532e-12 0.0166309 -0.000303642 -1.1806e-11 0.0153791 -0.000235136 -1.72725e-11 0.0142896 -0.000173818 -1.85786e-11 0.0134216 -0.000123876 -1.69885e-11 0.0127737 -8.58581e-05 -1.39715e-11 0.0123121 -5.81711e-05 -1.0997e-11 0.0119943 -3.85105e-05 -8.19918e-12 0.011781 -2.46294e-05 -5.52613e-12 0.0116393 -1.4726e-05 -3.76285e-12 0.0115451 -7.5983e-06 -2.44171e-12 0.0114813 -2.4781e-06 -1.45554e-12 0.0114362 1.0822e-06 -7.58151e-13 0.0114017 3.36323e-06 -2.67783e-13 0.0113727 4.62512e-06 -3.86906e-14 0.0113467 5.11233e-06 8.62432e-14 0.0113229 5.04328e-06 1.23851e-13 0.0113011 4.61846e-06 1.13875e-13 0.0112817 4.00388e-06 8.42826e-14 0.0112647 3.32464e-06 5.07271e-14 0.0112502 2.66503e-06 2.00293e-14 0.0112383 2.07412e-06 6.87054e-15 0.0112287 1.57409e-06 -1.43041e-15 0.0112211 1.16887e-06 -6.80962e-15 0.0112153 8.51586e-07 -9.07923e-15 0.011211 6.09982e-07 -8.70565e-15 0.0112077 4.30316e-07 -5.8308e-15 0.0112054 2.99334e-07 -3.7138e-15 0.0112037 2.0543e-07 -2.93462e-15 0.0112025 1.39581e-07 -2.42681e-15 9.15274e-08 -1.47921e-15 0.0193149 0.0153584 -3.86066e-11 0.0185335 0.0128024 -2.15867e-11 0.0176017 0.0103442 -1.44642e-11 0.0166561 0.00815598 -3.49238e-12 0.0157474 0.00636653 1.08862e-12 0.0148949 0.00489165 2.45541e-13 0.014145 0.00372278 4.16781e-12 0.0134769 0.00278406 -3.89436e-12 0.0129314 0.00204051 -2.7581e-12 0.0124488 0.00145496 -6.07014e-12 0.0120655 0.00098525 -5.09702e-12 0.0117479 0.00063036 -3.13853e-12 0.0115286 0.00035509 -2.95689e-12 0.0113933 0.000154691 -1.73971e-12 0.0113221 2.58995e-05 -4.44595e-12 0.0113103 -6.72231e-05 -5.03282e-12 0.0113419 -0.000123382 -5.11029e-12 0.0114297 -0.000168759 -5.17705e-12 0.011548 -0.00019032 -5.33775e-12 0.011661 -0.000195816 -3.92706e-12 0.0117617 -0.000210991 -2.65167e-12 0.0118496 -0.00023737 -1.26749e-12 0.0119174 -0.000265652 8.95142e-13 0.011967 -0.000299036 2.70032e-12 0.012018 -0.000334916 4.83123e-12 0.0120854 -0.000369881 5.20848e-12 0.0121721 -0.00040296 5.03483e-12 0.0122794 -0.000431277 6.38855e-12 0.012405 -0.000455031 5.79938e-12 0.0125444 -0.000474273 4.94604e-12 0.0126937 -0.000489338 3.94783e-12 0.0128513 -0.000499591 2.73553e-12 0.0130185 -0.000505318 7.76594e-13 0.0131995 -0.000507105 -5.42735e-14 0.0133992 -0.000505791 -2.42808e-12 0.0136183 -0.000502447 -5.1006e-12 0.0138521 -0.000497988 -6.7923e-12 0.0140925 -0.000493155 -8.57427e-12 0.0143323 -0.000488437 -1.18951e-11 0.0145668 -0.000484431 -1.55948e-11 0.0147925 -0.000482044 -1.5086e-11 0.0150084 -0.000481744 -1.63666e-11 0.0152186 -0.000483459 -2.95977e-11 0.0154222 -0.00048831 -2.00868e-11 0.0156049 -0.000497517 -4.70704e-12 0.015754 -0.000509126 -1.14494e-11 0.0158741 -0.000520027 -4.22488e-11 0.015977 -0.000532631 -2.67083e-11 0.0160824 -0.000546444 -2.96137e-11 0.0162129 -0.000560363 -3.75708e-11 0.0163719 -0.000576258 -2.88841e-11 0.0165515 -0.000590163 -2.48425e-11 0.0167711 -0.000599189 -3.88144e-11 0.0170704 -0.000606805 -5.16598e-11 0.0174574 -0.000619108 -3.9487e-11 0.017908 -0.000631656 -4.00207e-11 0.0183926 -0.000641568 -4.06917e-11 0.0188779 -0.000648735 -4.03597e-11 0.0193333 -0.000653071 -3.76665e-11 0.0197327 -0.000654575 -3.26351e-11 0.0200605 -0.000652935 -3.05788e-11 0.0203257 -0.000645595 -3.37419e-11 0.0205359 -0.000631555 -3.4315e-11 0.0206665 -0.000612834 -3.2164e-11 0.0207193 -0.000590299 -2.88119e-11 0.0206909 -0.000564833 -2.43398e-11 0.0205271 -0.000535867 -1.6131e-11 0.0201148 -0.000501308 -6.98605e-12 0.0191924 -0.000453273 1.02669e-11 0.0180483 -0.000390133 -2.37402e-12 0.0167586 -0.000318617 -1.26779e-11 0.0154894 -0.000246714 -1.86404e-11 0.0143782 -0.000182289 -1.99161e-11 0.0134889 -0.000129738 -1.79627e-11 0.012823 -8.96611e-05 -1.47097e-11 0.0123475 -6.03749e-05 -1.14646e-11 0.0120198 -3.94701e-05 -8.41389e-12 0.0117995 -2.46629e-05 -5.64232e-12 0.011653 -1.40966e-05 -3.83051e-12 0.0115551 -6.50834e-06 -2.45297e-12 0.0114885 -1.07972e-06 -1.44928e-12 0.011441 2.56917e-06 -7.39299e-13 0.0114044 4.8354e-06 -2.71022e-13 0.0113738 5.99103e-06 -5.43991e-14 0.0113466 6.31603e-06 6.44964e-14 0.0113221 6.06173e-06 1.04027e-13 0.0112999 5.45225e-06 9.61337e-14 0.0112803 4.66811e-06 6.93861e-14 0.0112634 3.84163e-06 3.67146e-14 0.011249 3.05934e-06 1.40341e-14 0.0112373 2.3695e-06 4.07401e-15 0.0112279 1.79178e-06 -3.09871e-15 0.0112205 1.3269e-06 -7.79316e-15 0.0112148 9.6468e-07 -9.37283e-15 0.0112106 6.89852e-07 -8.5916e-15 0.0112075 4.8599e-07 -5.41125e-15 0.0112052 3.37739e-07 -3.56796e-15 0.0112036 2.31581e-07 -2.77492e-15 0.0112024 1.57122e-07 -2.28976e-15 1.03053e-07 -1.42582e-15 0.0200724 0.015707 -3.93997e-11 0.0192536 0.0134477 -3.08442e-11 0.0182943 0.0111846 -2.67155e-11 0.0173041 0.00910545 -1.37074e-11 0.0163876 0.00731689 -1.66826e-12 0.0155495 0.00582937 1.25412e-12 0.0148183 0.0046076 6.05667e-12 0.0141697 0.0036124 3.94153e-12 0.0136067 0.00278862 3.16368e-12 0.0131021 0.00212095 1.3778e-12 0.0126685 0.00156757 4.97814e-13 0.0123133 0.00112695 -7.29866e-13 0.0120268 0.000772032 -2.25449e-12 0.0118428 0.000495563 -8.10759e-13 0.0117271 0.000281474 7.84959e-13 0.0116768 0.000126507 -3.05649e-12 0.0116798 1.02465e-05 3.2648e-13 0.0117041 -7.12588e-05 -9.96883e-13 0.011759 -0.000133257 -1.19272e-12 0.0118564 -0.000188577 -1.41667e-12 0.0119628 -0.000224706 -1.78192e-12 0.0120483 -0.000249816 -7.30794e-13 0.0121171 -0.000279462 4.99878e-13 0.0121768 -0.000313708 1.83803e-12 0.0122348 -0.000350651 3.57443e-12 0.0123069 -0.000385515 4.29601e-12 0.0124075 -0.000420015 4.06802e-12 0.0125339 -0.000453938 3.93016e-12 0.0126782 -0.000483966 3.80997e-12 0.0128352 -0.000509355 1.45276e-12 0.0130001 -0.000531005 -1.58257e-12 0.0131708 -0.000548268 -4.61472e-12 0.0133471 -0.000561033 -7.57062e-12 0.0135317 -0.000569254 -1.05781e-11 0.0137293 -0.000573756 -1.20334e-11 0.0139448 -0.000575288 -1.34425e-11 0.0141801 -0.000574281 -1.54858e-11 0.0144323 -0.000571619 -1.7907e-11 0.0146939 -0.000568176 -2.0175e-11 0.0149571 -0.000564615 -2.10166e-11 0.0152164 -0.000561572 -2.03924e-11 0.015468 -0.000559903 -2.43506e-11 0.0157089 -0.000560335 -3.0192e-11 0.0159388 -0.000562922 -2.28405e-11 0.0161609 -0.000567539 -5.47044e-13 0.0163708 -0.000575422 -1.73719e-11 0.0165536 -0.000587218 -4.2875e-11 0.016702 -0.000599988 -3.97059e-11 0.0168253 -0.00061096 -3.70429e-11 0.0169466 -0.000621514 -3.50413e-11 0.0170879 -0.000632713 -3.50558e-11 0.0172499 -0.000644989 -2.90283e-11 0.0174325 -0.000654011 -3.28946e-11 0.0176628 -0.000657952 -4.57126e-11 0.0179679 -0.000662188 -5.15866e-11 0.0183403 -0.000671365 -3.26036e-11 0.0187533 -0.000678228 -3.45434e-11 0.0191768 -0.000682548 -3.38468e-11 0.0195802 -0.000684768 -3.12119e-11 0.0199357 -0.000684443 -2.77534e-11 0.0202327 -0.000678821 -3.19975e-11 0.0204778 -0.000666251 -2.73824e-11 0.0206608 -0.000649809 -2.59282e-11 0.0207736 -0.000629204 -2.40585e-11 0.0208178 -0.000605293 -2.20222e-11 0.0207828 -0.000578315 -1.70411e-11 0.0206196 -0.000548 -6.4714e-12 0.0202278 -0.000512189 7.02249e-13 0.0193199 -0.000462926 1.6238e-11 0.0181833 -0.000397984 -3.36836e-13 0.0168904 -0.000324813 -1.29831e-11 0.0156069 -0.000251363 -1.97423e-11 0.0144751 -0.00018551 -2.10798e-11 0.0135646 -0.000131698 -1.88829e-11 0.0128801 -9.05636e-05 -1.53522e-11 0.0123899 -6.04093e-05 -1.18498e-11 0.0120511 -3.88036e-05 -8.61666e-12 0.0118228 -2.34573e-05 -5.7427e-12 0.0116704 -1.25098e-05 -3.87827e-12 0.0115681 -4.69075e-06 -2.46489e-12 0.0114978 7.79856e-07 -1.4452e-12 0.0114472 4.40409e-06 -7.34305e-13 0.0114081 6.53518e-06 -2.83625e-13 0.0113755 7.48958e-06 -7.80808e-14 0.0113469 7.58224e-06 2.60242e-14 0.0113215 7.09831e-06 7.61288e-14 0.0112988 6.27851e-06 7.28277e-14 0.011279 5.31201e-06 4.82043e-14 0.011262 4.3338e-06 2.23971e-14 0.0112478 3.42922e-06 9.38383e-15 0.0112362 2.64326e-06 7.50611e-16 0.011227 1.99157e-06 -4.79435e-15 0.0112198 1.47078e-06 -8.72975e-15 0.0112143 1.06699e-06 -9.58765e-15 0.0112102 7.6168e-07 -8.39077e-15 0.0112072 5.35816e-07 -5.01141e-15 0.011205 3.71806e-07 -3.40166e-15 0.0112034 2.54628e-07 -2.57773e-15 0.0112023 1.72624e-07 -2.14064e-15 1.12982e-07 -1.36922e-15 0.0206562 0.0160617 -4.28318e-11 0.019876 0.0140565 -3.48227e-11 0.0190051 0.0119561 -3.24724e-11 0.0180762 0.0100006 -2.64102e-11 0.0171532 0.00826096 -1.51543e-11 0.0162969 0.00675616 -9.56841e-12 0.0155186 0.00547894 -6.33312e-12 0.0148104 0.00441134 2.94522e-13 0.0141758 0.0035198 3.46779e-12 0.0136163 0.00278136 3.15237e-12 0.0131336 0.00216612 2.23233e-12 0.0127393 0.0016613 1.65934e-12 0.0124151 0.00124678 7.99709e-13 0.0121778 0.000907621 1.50824e-12 0.0119955 0.000632972 7.96168e-13 0.0118812 0.000409654 2.82231e-12 0.011817 0.000231275 -1.89844e-12 0.0117975 9.50182e-05 8.48406e-13 0.0118176 -1.65698e-05 1.52125e-12 0.0118516 -0.000100389 1.43175e-12 0.0119097 -0.000171408 1.45305e-12 0.0119888 -0.000234203 1.85036e-12 0.0120731 -0.000282988 2.71211e-12 0.0121624 -0.000322675 3.67049e-12 0.0122608 -0.000360979 4.55613e-12 0.0123763 -0.000401322 5.23062e-12 0.0125135 -0.000440879 5.2193e-12 0.0126743 -0.000476306 2.09198e-12 0.0128501 -0.00050993 1.4339e-12 0.0130305 -0.000541602 9.14653e-13 0.013212 -0.000568057 -4.39438e-12 0.0133946 -0.000590451 -8.71542e-12 0.0135788 -0.000609055 -1.33663e-11 0.0137669 -0.000623468 -1.86002e-11 0.0139636 -0.000633768 -2.26052e-11 0.0141748 -0.000640455 -2.6117e-11 0.0144055 -0.000644057 -2.96202e-11 0.0146565 -0.00064518 -3.26161e-11 0.014925 -0.000644445 -3.29292e-11 0.0152051 -0.000642561 -3.39396e-11 0.0154893 -0.000640268 -3.75982e-11 0.0157706 -0.000638117 -3.58949e-11 0.0160451 -0.000636736 -2.96633e-11 0.0163098 -0.000637046 -3.40421e-11 0.0165611 -0.000639439 -4.2303e-11 0.0167997 -0.000643471 -2.82313e-11 0.0170288 -0.000649251 -5.01833e-13 0.0172393 -0.000658542 -3.82016e-11 0.0174127 -0.000670209 -7.43507e-11 0.0175521 -0.000678591 -3.80363e-11 0.0176851 -0.000683888 -3.28796e-11 0.0178323 -0.000691279 -3.40733e-11 0.0179944 -0.000698458 -3.3587e-11 0.0181816 -0.000700278 -4.37253e-11 0.0184226 -0.000699469 -4.64805e-11 0.0187316 -0.000701393 -4.09405e-11 0.0190856 -0.000705707 -3.00976e-11 0.0194543 -0.00070787 -3.08873e-11 0.0198109 -0.00070763 -2.80491e-11 0.0201331 -0.000703347 -2.9495e-11 0.020408 -0.000692468 -2.63596e-11 0.0206291 -0.000677427 -2.07629e-11 0.0207876 -0.000658833 -2.04532e-11 0.0208837 -0.000636638 -1.89334e-11 0.0209173 -0.000611217 -1.60001e-11 0.0208772 -0.000582547 -9.92422e-12 0.020718 -0.00055046 -2.60879e-12 0.0203439 -0.000512881 8.04264e-12 0.0194474 -0.000462924 2.15434e-11 0.018315 -0.000397741 9.20224e-13 0.0170172 -0.000324417 -1.37112e-11 0.0157191 -0.000250784 -2.11392e-11 0.0145672 -0.000184689 -2.23983e-11 0.013636 -0.0001306 -1.98596e-11 0.0129335 -8.91834e-05 -1.59867e-11 0.012429 -5.87423e-05 -1.22212e-11 0.0120796 -3.68674e-05 -8.80119e-12 0.0118436 -2.13058e-05 -5.82391e-12 0.0116856 -1.02267e-05 -3.90558e-12 0.011579 -2.38565e-06 -2.46327e-12 0.0115052 2.99211e-06 -1.43639e-12 0.0114517 6.43412e-06 -7.29845e-13 0.0114103 8.32151e-06 -2.97948e-13 0.011376 9.00199e-06 -1.02035e-13 0.0113462 8.82001e-06 2.40997e-15 0.01132 8.08345e-06 3.71086e-14 0.011297 7.04483e-06 3.98325e-14 0.0112771 5.89682e-06 2.63929e-14 0.0112603 4.77287e-06 1.46299e-14 0.0112463 3.75419e-06 5.26168e-15 0.0112349 2.88068e-06 -2.31072e-15 0.0112259 2.16291e-06 -6.30323e-15 0.011219 1.59297e-06 -9.48613e-15 0.0112137 1.15307e-06 -9.66677e-15 0.0112097 8.2162e-07 -8.01799e-15 0.0112068 5.77045e-07 -4.58652e-15 0.0112047 3.99896e-07 -3.25768e-15 0.0112033 2.73488e-07 -2.64287e-15 0.0112022 1.8513e-07 -2.16472e-15 1.21084e-07 -1.30726e-15 0.0214685 0.0164602 -4.17496e-11 0.0207061 0.0146789 -4.03713e-11 0.0197988 0.0127464 -3.53188e-11 0.018891 0.0108697 -2.56603e-11 0.0179875 0.00917208 -2.01092e-11 0.0170866 0.00766197 -1.23141e-11 0.0162299 0.00634141 -8.40797e-12 0.0154556 0.0052085 -4.35228e-12 0.0147662 0.00425128 -6.7319e-12 0.0141629 0.00344704 -2.00656e-12 0.0136434 0.00277834 -7.2092e-14 0.0132102 0.0022206 5.48943e-13 0.0128554 0.00175602 3.80626e-13 0.0125713 0.00136525 1.16063e-12 0.012339 0.00103722 1.26764e-12 0.0121613 0.000759377 1.69038e-12 0.012034 0.00052727 1.04831e-12 0.0119559 0.000331789 1.61235e-12 0.0119318 0.000172681 2.2424e-12 0.0119405 4.19536e-05 2.33352e-12 0.0119786 -7.00223e-05 3.14376e-12 0.0120248 -0.000159746 4.91586e-12 0.0120982 -0.000237182 5.20355e-12 0.0121989 -0.000304337 5.56765e-12 0.0123246 -0.00036378 6.32091e-12 0.0124687 -0.000414216 6.44952e-12 0.0126275 -0.000458315 6.36283e-12 0.0128037 -0.000499087 4.79445e-12 0.0129951 -0.000539808 1.46041e-12 0.0131958 -0.000577816 -7.79951e-13 0.0133978 -0.000607953 -2.91664e-12 0.0136028 -0.000634605 -1.09562e-11 0.013812 -0.000657283 -1.66101e-11 0.0140246 -0.000675427 -2.34729e-11 0.014241 -0.000690035 -2.91274e-11 0.014464 -0.000701084 -3.41915e-11 0.0146975 -0.000708649 -3.8937e-11 0.0149458 -0.000713268 -4.1792e-11 0.0152103 -0.00071547 -4.36482e-11 0.0154882 -0.000715774 -4.53988e-11 0.0157751 -0.000714648 -4.5206e-11 0.0160661 -0.000712697 -4.45756e-11 0.0163566 -0.000710642 -4.43984e-11 0.0166428 -0.000709157 -4.24664e-11 0.0169197 -0.000708775 -4.17622e-11 0.0171824 -0.000709809 -4.59837e-11 0.0174297 -0.000711776 -3.96122e-11 0.0176645 -0.000714421 -2.57095e-11 0.0178798 -0.000720432 -4.2354e-11 0.0180565 -0.000727582 -6.44387e-11 0.0181951 -0.000731313 -4.35939e-11 0.0183269 -0.000731448 -3.94074e-11 0.0184707 -0.000733526 -4.16116e-11 0.0186289 -0.000733797 -4.16858e-11 0.0188231 -0.000729231 -4.25222e-11 0.0190784 -0.000724172 -3.93797e-11 0.0193844 -0.000723747 -3.32153e-11 0.0197079 -0.000723182 -3.01046e-11 0.0200235 -0.000719516 -2.67507e-11 0.0203129 -0.000710287 -2.49255e-11 0.0205606 -0.000695909 -1.44427e-11 0.0207591 -0.000678138 -1.12126e-11 0.0209001 -0.000657299 -1.05873e-11 0.0209815 -0.000633624 -8.853e-12 0.0210037 -0.000607239 -4.95409e-12 0.0209575 -0.000578012 -1.93149e-12 0.0208029 -0.000545235 3.31419e-12 0.0204445 -0.000506734 1.26024e-11 0.0195649 -0.000456367 2.21262e-11 0.018442 -0.00039121 -5.15264e-13 0.0171435 -0.000318138 -1.57931e-11 0.0158334 -0.000245107 -2.3214e-11 0.0146628 -0.000179723 -2.40214e-11 0.0137115 -0.000126251 -2.09278e-11 0.012991 -8.52809e-05 -1.66165e-11 0.0124718 -5.51362e-05 -1.25604e-11 0.0121111 -3.34356e-05 -8.95965e-12 0.0118668 -1.80026e-05 -5.88086e-12 0.0117025 -7.0759e-06 -3.90616e-12 0.011591 5.38745e-07 -2.44114e-12 0.0115133 5.62469e-06 -1.41666e-12 0.0114566 8.72104e-06 -7.20308e-13 0.0114127 1.025e-05 -3.07627e-13 0.0113764 1.05745e-05 -1.21878e-13 0.0113454 1.00641e-05 -1.82759e-14 0.0113184 9.04477e-06 1.89581e-14 0.0112951 7.77312e-06 2.18557e-14 0.0112751 6.43959e-06 1.64575e-14 0.0112584 5.17184e-06 8.91927e-15 0.0112446 4.04397e-06 4.86108e-16 0.0112336 3.08884e-06 -4.88372e-15 0.0112249 2.31089e-06 -8.02837e-15 0.0112181 1.69704e-06 -9.99937e-15 0.011213 1.22549e-06 -9.58345e-15 0.0112093 8.71444e-07 -7.44308e-15 0.0112065 6.10934e-07 -4.19233e-15 0.0112045 4.22637e-07 -3.07108e-15 0.0112031 2.88583e-07 -2.48051e-15 0.0112021 1.95074e-07 -2.11418e-15 1.27322e-07 -1.23812e-15 0.0220899 0.016926 -4.08636e-11 0.0214588 0.0152387 -3.71914e-11 0.0206615 0.0135039 -3.3326e-11 0.0197828 0.0117324 -2.81704e-11 0.0188729 0.0100556 -2.07798e-11 0.0179544 0.00854175 -1.50362e-11 0.01705 0.00719517 -1.14936e-11 0.0161965 0.00601599 -9.73585e-12 0.0154251 0.00500174 -4.36657e-12 0.0147592 0.0041407 -3.71324e-12 0.0142014 0.00341732 -4.40475e-12 0.0137391 0.00280789 -4.055e-12 0.0133511 0.00229411 -1.57506e-12 0.0130251 0.00185575 3.21071e-13 0.0127517 0.00148055 1.70231e-12 0.0125268 0.00115553 2.30248e-12 0.0123556 0.000876001 1.64989e-12 0.0122256 0.000634653 2.37658e-12 0.0121504 0.000426923 2.64096e-12 0.0121135 0.000248374 4.19315e-12 0.0121089 9.68001e-05 4.63317e-12 0.0121346 -3.46734e-05 5.94072e-12 0.0121927 -0.000148154 6.59843e-12 0.0122791 -0.000244208 7.16843e-12 0.0123982 -0.000325027 7.25238e-12 0.0125474 -0.000396928 7.49897e-12 0.0127213 -0.000461615 7.43929e-12 0.0129129 -0.00052034 7.83899e-12 0.0131173 -0.000569107 3.76539e-12 0.0133278 -0.00061047 3.54329e-12 0.0135451 -0.000648967 -6.31403e-13 0.0137719 -0.00068612 -9.14922e-12 0.0140038 -0.000712974 -1.46842e-11 0.0142415 -0.000734387 -2.25367e-11 0.014485 -0.0007525 -2.95002e-11 0.0147308 -0.000765097 -3.61758e-11 0.0149794 -0.000773898 -4.244e-11 0.0152347 -0.000779587 -4.60129e-11 0.0154989 -0.000782456 -4.84226e-11 0.0157708 -0.000783035 -5.02615e-11 0.0160493 -0.000781773 -5.08983e-11 0.0163336 -0.000779344 -5.03248e-11 0.0166215 -0.000776216 -4.99593e-11 0.0169101 -0.000772937 -5.00658e-11 0.0171966 -0.000769877 -5.22965e-11 0.0174768 -0.000767304 -5.08069e-11 0.0177439 -0.000766182 -4.89632e-11 0.0179942 -0.000765492 -5.01699e-11 0.0182303 -0.000765491 -4.97925e-11 0.0184442 -0.000767976 -5.37016e-11 0.0186179 -0.000770222 -5.49896e-11 0.0187564 -0.000767853 -5.39911e-11 0.0188889 -0.000762371 -4.74007e-11 0.0190285 -0.000759098 -4.58471e-11 0.0191869 -0.000753147 -4.19009e-11 0.0193947 -0.0007422 -4.02792e-11 0.0196635 -0.000734033 -3.45846e-11 0.0199585 -0.00072935 -3.12087e-11 0.0202463 -0.000721033 -2.4368e-11 0.0205036 -0.000708206 -1.3219e-11 0.0207167 -0.000691221 -1.64004e-12 0.0208878 -0.000670365 1.61486e-12 0.0210135 -0.000646371 2.03787e-12 0.0210843 -0.000620194 3.08164e-12 0.0210948 -0.00059231 4.66267e-12 0.0210372 -0.000562791 6.72142e-12 0.0208788 -0.000530729 9.46004e-12 0.0205323 -0.000493384 1.46535e-11 0.0196758 -0.000444441 1.73465e-11 0.0185645 -0.000378936 -5.27087e-12 0.0172655 -0.000306508 -1.98874e-11 0.0159435 -0.000234933 -2.63046e-11 0.0147543 -0.000171166 -2.60693e-11 0.0137832 -0.000119107 -2.21493e-11 0.013045 -7.92361e-05 -1.72851e-11 0.0125116 -4.989e-05 -1.29047e-11 0.0121401 -2.87572e-05 -9.08818e-12 0.0118877 -1.37657e-05 -5.8998e-12 0.0117174 -3.24826e-06 -3.88279e-12 0.0116012 3.93087e-06 -2.4039e-12 0.0115197 8.54813e-06 -1.3878e-12 0.01146 1.11672e-05 -7.06003e-13 0.0114137 1.22354e-05 -3.14567e-13 0.0113757 1.21382e-05 -1.40248e-13 0.0113436 1.12631e-05 -3.69174e-14 0.0113161 9.94392e-06 2.89553e-15 0.0112926 8.43508e-06 1.21422e-14 0.0112727 6.9196e-06 8.74407e-15 0.0112562 5.51555e-06 2.13255e-15 0.0112428 4.28746e-06 -3.51113e-15 0.011232 3.25968e-06 -6.93191e-15 0.0112236 2.42962e-06 -9.31698e-15 0.0112172 1.77876e-06 -1.02637e-14 0.0112123 1.28115e-06 -9.33746e-15 0.0112087 9.08937e-07 -6.63252e-15 0.0112061 6.35891e-07 -3.82475e-15 0.0112042 4.39074e-07 -2.88507e-15 0.0112029 2.9925e-07 -2.29915e-15 0.011202 2.0191e-07 -1.97272e-15 1.31588e-07 -1.16598e-15 0.0229559 0.0176378 -3.90101e-11 0.022298 0.0158526 -3.36893e-11 0.0215401 0.0142074 -3.0797e-11 0.0206357 0.012543 -2.79836e-11 0.0196982 0.0109132 -1.99929e-11 0.0187731 0.00938371 -1.63359e-11 0.0178705 0.00801365 -1.35059e-11 0.0170079 0.00681306 -1.3152e-11 0.0162109 0.00576532 -7.799e-12 0.0155024 0.00486415 -6.52329e-12 0.0148882 0.0040919 -3.16904e-12 0.014364 0.00343209 -1.33088e-12 0.0139245 0.00286676 -1.37757e-12 0.0135529 0.00237949 -1.2134e-12 0.0132359 0.00195604 5.07208e-13 0.0129724 0.00158756 1.23526e-12 0.01276 0.00126569 2.09402e-12 0.0125972 0.000982767 2.55469e-12 0.0124798 0.00073415 4.1161e-12 0.012398 0.000514178 5.26645e-12 0.0123582 0.000320501 5.32896e-12 0.0123451 0.000149224 1.02319e-11 0.0123708 1.35045e-06 1.04105e-11 0.0124414 -0.00013241 1.16631e-11 0.0125507 -0.000247179 1.09278e-11 0.0126944 -0.000345963 1.05081e-11 0.0128621 -0.000432243 7.79173e-12 0.0130481 -0.000507815 7.53617e-12 0.0132508 -0.00057495 7.41582e-12 0.0134759 -0.000638846 4.89056e-12 0.0137071 -0.000692735 1.294e-12 0.0139406 -0.00073322 -4.29392e-12 0.0141802 -0.000766961 -9.69692e-12 0.0144357 -0.00080168 -1.96128e-11 0.0146996 -0.000826689 -2.39363e-11 0.0149655 -0.000840233 -3.26108e-11 0.0152369 -0.000850727 -4.03621e-11 0.0155112 -0.000855015 -4.4331e-11 0.0157849 -0.000855542 -4.76532e-11 0.0160577 -0.000852735 -5.09517e-11 0.0163313 -0.000847787 -5.2521e-11 0.0166066 -0.000841934 -5.28621e-11 0.0168842 -0.000835484 -5.37326e-11 0.0171636 -0.000828693 -5.50869e-11 0.017445 -0.000822251 -5.59031e-11 0.0177278 -0.000816428 -5.26448e-11 0.0180071 -0.000811581 -5.6489e-11 0.0182745 -0.000808076 -5.80672e-11 0.0185259 -0.000804717 -5.7762e-11 0.0187596 -0.000801024 -5.68415e-11 0.0189633 -0.000798866 -5.55781e-11 0.0191236 -0.000795529 -5.65283e-11 0.0192541 -0.000787014 -5.81966e-11 0.0193807 -0.000777575 -4.93517e-11 0.019516 -0.000768163 -4.52518e-11 0.0196807 -0.00075402 -4.42863e-11 0.0199075 -0.000737482 -3.55493e-11 0.0201814 -0.000726373 -2.25917e-11 0.020454 -0.000715529 -1.35586e-11 0.0206869 -0.000700481 -1.69529e-12 0.020867 -0.000681219 8.99877e-12 0.0210093 -0.000657353 1.27442e-11 0.0211176 -0.000629731 1.31773e-11 0.0211803 -0.000599896 1.37764e-11 0.0211871 -0.000568885 1.45037e-11 0.0211236 -0.000537356 1.52445e-11 0.0209632 -0.000504962 1.55638e-11 0.0206289 -0.000468946 1.49209e-11 0.019795 -0.000421778 1.31959e-11 0.0186894 -0.000357685 -8.39819e-12 0.0173881 -0.000287903 -2.33095e-11 0.0160539 -0.000219516 -2.90674e-11 0.0148463 -0.000158692 -2.78877e-11 0.0138556 -0.000109001 -2.3232e-11 0.0131 -7.09102e-05 -1.78287e-11 0.0125525 -4.2865e-05 -1.31693e-11 0.01217 -2.2699e-05 -9.16655e-12 0.0119094 -8.4781e-06 -5.8569e-12 0.0117327 1.33514e-06 -3.82513e-12 0.0116115 7.84092e-06 -2.35772e-12 0.011526 1.18025e-05 -1.34916e-12 0.0114631 1.3799e-05 -6.89206e-13 0.0114143 1.42995e-05 -3.20659e-13 0.0113747 1.37121e-05 -1.57377e-13 0.0113415 1.2433e-05 -5.36162e-14 0.0113135 1.07945e-05 -1.24252e-14 0.0112898 9.04196e-06 -2.04926e-16 0.0112701 7.34582e-06 -1.03498e-16 0.0112539 5.81098e-06 -3.54468e-15 0.0112408 4.48993e-06 -6.73107e-15 0.0112304 3.39706e-06 -8.47102e-15 0.0112224 2.5219e-06 -1.02081e-14 0.0112162 1.84013e-06 -1.03118e-14 0.0112116 1.32151e-06 -8.93251e-15 0.0112082 9.35124e-07 -5.67594e-15 0.0112057 6.52696e-07 -3.49611e-15 0.0112039 4.49661e-07 -2.78714e-15 0.0112027 3.05808e-07 -2.33452e-15 0.0112018 2.0592e-07 -1.83141e-15 1.33887e-07 -1.09265e-15 0.0238473 0.018533 -3.83911e-11 0.0230819 0.0166198 -3.08786e-11 0.0223748 0.0148838 -2.60021e-11 0.0215886 0.0132976 -2.51887e-11 0.0206587 0.0117494 -2.32855e-11 0.0196615 0.0102505 -1.69121e-11 0.0187023 0.0088554 -1.2077e-11 0.0178229 0.00761043 -1.21419e-11 0.0170292 0.00652944 -9.81323e-12 0.0163099 0.00559758 -7.9381e-12 0.0156646 0.00478722 -5.04004e-12 0.0150975 0.00408375 -3.36855e-12 0.0145999 0.00346996 -2.13187e-12 0.0141678 0.00293434 -7.4461e-13 0.0138011 0.00246513 5.76587e-13 0.0134966 0.00205326 7.38087e-13 0.0132498 0.00168997 2.27298e-12 0.0130548 0.00136877 3.60862e-12 0.0129036 0.00108281 4.17678e-12 0.0127893 0.000825907 7.5917e-12 0.0127122 0.000595296 1.02619e-11 0.0126727 0.00038756 1.18744e-11 0.0126701 0.000202223 1.4236e-11 0.012707 3.63309e-05 1.42999e-11 0.0127925 -0.000115319 1.59375e-11 0.0129173 -0.000246792 1.56955e-11 0.013077 -0.000362526 1.06911e-11 0.0132598 -0.000464269 9.71469e-12 0.0134563 -0.00055472 6.89474e-12 0.0136652 -0.00063226 6.47541e-12 0.013881 -0.000702356 4.22011e-12 0.014115 -0.00076965 6.29075e-14 0.0143647 -0.000824288 -8.44034e-12 0.0146199 -0.000862252 -1.1833e-11 0.0148746 -0.000890672 -1.58257e-11 0.0151427 -0.000919292 -2.28616e-11 0.0154283 -0.000939692 -3.50509e-11 0.0157185 -0.000943377 -3.30597e-11 0.0160095 -0.000944217 -4.05791e-11 0.0162961 -0.000936998 -4.23198e-11 0.0165793 -0.000926684 -4.67245e-11 0.016858 -0.000913617 -4.82924e-11 0.0171312 -0.00089952 -5.07349e-11 0.0174001 -0.000885203 -5.26316e-11 0.0176707 -0.000871534 -5.60516e-11 0.0179453 -0.000859438 -5.13063e-11 0.018223 -0.000849274 -5.57804e-11 0.0184985 -0.00084142 -5.90725e-11 0.0187607 -0.000833612 -6.66404e-11 0.0190042 -0.000824638 -4.99083e-11 0.0192264 -0.000817928 -3.60212e-11 0.0194125 -0.000810772 -6.73361e-11 0.0195543 -0.00080076 -8.12753e-11 0.0196757 -0.000786579 -4.53895e-11 0.019799 -0.000773587 -3.49787e-11 0.0199355 -0.000758121 -3.29573e-11 0.0201165 -0.000737334 -2.62756e-11 0.0203598 -0.000717933 -1.24244e-11 0.020624 -0.000704061 -4.89031e-12 0.020851 -0.000687784 3.00454e-12 0.0210159 -0.00066703 1.0541e-11 0.0211317 -0.000641335 1.21582e-11 0.0212168 -0.00061116 1.22052e-11 0.0212707 -0.000577735 1.23861e-11 0.0212801 -0.000542489 1.29922e-11 0.0212244 -0.000506262 1.451e-11 0.0210759 -0.000470092 1.81014e-11 0.0207548 -0.000431292 2.4131e-11 0.0199278 -0.000386995 3.35015e-11 0.0188177 -0.00032696 -3.34524e-12 0.0175091 -0.000262759 -2.40851e-11 0.0161607 -0.000199587 -3.08387e-11 0.0149344 -0.000142943 -2.92322e-11 0.0139245 -9.64035e-05 -2.40798e-11 0.013152 -6.06272e-05 -1.82469e-11 0.0125909 -3.43226e-05 -1.33275e-11 0.0121979 -1.54795e-05 -9.17699e-12 0.0119292 -2.3255e-06 -5.83091e-12 0.0117462 6.52317e-06 -3.76227e-12 0.01162 1.21396e-05 -2.3029e-12 0.0115306 1.52769e-05 -1.31578e-12 0.0114647 1.65255e-05 -6.77353e-13 0.0114137 1.63747e-05 -3.28842e-13 0.0113726 1.52448e-05 -1.72094e-13 0.0113386 1.35361e-05 -6.88407e-14 0.0113102 1.15693e-05 -2.63386e-14 0.0112866 9.57428e-06 -1.11669e-14 0.0112672 7.70446e-06 -7.75251e-15 0.0112513 6.04839e-06 -8.29559e-15 0.0112387 4.64456e-06 -9.30675e-15 0.0112287 3.49617e-06 -9.59726e-15 0.011221 2.58441e-06 -1.07873e-14 0.0112152 1.87884e-06 -1.01831e-14 0.0112108 1.34498e-06 -8.35758e-15 0.0112076 9.49001e-07 -4.81435e-15 0.0112053 6.60566e-07 -3.21552e-15 0.0112037 4.53957e-07 -2.47616e-15 0.0112025 3.0799e-07 -2.13422e-15 0.0112017 2.06895e-07 -1.70277e-15 1.34227e-07 -1.02504e-15 0.0251602 0.0197414 -4.43043e-11 0.0240981 0.0176286 -3.07374e-11 0.0231979 0.0157288 -2.51647e-11 0.0223702 0.0140681 -1.96417e-11 0.0215268 0.0125241 -2.08114e-11 0.0206296 0.0110868 -1.33643e-11 0.0196762 0.00972435 -1.0796e-11 0.0187435 0.0084662 -9.66818e-12 0.0178968 0.0073415 -7.47772e-12 0.0171499 0.00635949 -8.28615e-12 0.0164838 0.00550447 -5.44418e-12 0.015881 0.00475727 -4.06525e-12 0.0153407 0.00409869 -2.13088e-12 0.0148644 0.00351797 -1.33105e-12 0.014452 0.00300439 5.80543e-14 0.0141024 0.00255096 7.43654e-13 0.0138144 0.00214801 1.85388e-12 0.0135856 0.00178944 3.99387e-12 0.0134047 0.00146725 3.57375e-12 0.0132653 0.00117627 8.89711e-12 0.0131644 0.000912184 1.06039e-11 0.0131014 0.000671896 1.43433e-11 0.0130786 0.000452629 1.5817e-11 0.0131011 0.000254917 1.83577e-11 0.0131578 7.38281e-05 1.90141e-11 0.0132556 -9.35127e-05 1.89903e-11 0.013389 -0.000241825 1.62464e-11 0.0135531 -0.000373631 1.34914e-11 0.0137342 -0.000491328 7.70343e-12 0.0139292 -0.00059527 6.56673e-12 0.0141426 -0.000687414 2.89463e-12 0.0143545 -0.000766226 -9.14579e-13 0.0145666 -0.000837108 -2.02538e-12 0.0148035 -0.000902972 -4.05969e-12 0.0150621 -0.000954832 -8.87719e-12 0.0153234 -0.000988527 -1.74642e-11 0.0155887 -0.00100768 -2.4701e-11 0.0158678 -0.00102778 -2.42162e-11 0.0161672 -0.00104007 -3.64544e-11 0.0164689 -0.00103501 -2.52588e-11 0.0167647 -0.00102253 -3.86675e-11 0.0170516 -0.00100459 -3.87774e-11 0.0173313 -0.000982022 -4.45916e-11 0.0176063 -0.000956963 -4.93508e-11 0.0178767 -0.000932319 -5.21532e-11 0.0181472 -0.000909408 -4.62984e-11 0.0184219 -0.000889344 -5.77611e-11 0.0186963 -0.000872249 -5.66782e-11 0.018963 -0.000857275 -5.06502e-11 0.019216 -0.000844384 -5.76149e-11 0.0194474 -0.00083069 -2.92596e-11 0.0196475 -0.000816313 -6.6792e-11 0.0198058 -0.000802478 -6.13645e-11 0.0199294 -0.000786337 -4.07586e-11 0.0200435 -0.000768778 -1.71123e-11 0.0201612 -0.000751854 -1.76595e-11 0.0203049 -0.00072963 -4.17413e-12 0.0205093 -0.000704367 1.43677e-11 0.02076 -0.000684504 7.44549e-12 0.020992 -0.000667386 -9.59171e-12 0.0211588 -0.000646433 -1.05468e-11 0.0212591 -0.000620739 -8.82617e-12 0.0213213 -0.000590047 -8.36676e-12 0.0213587 -0.000554913 -7.05674e-12 0.0213689 -0.000516257 -5.03868e-12 0.0213308 -0.00047545 9.95685e-13 0.0212044 -0.000433132 1.72302e-11 0.0208992 -0.00039032 4.46134e-11 0.0200659 -0.000344816 1.21123e-10 0.0189449 -0.000290955 2.76945e-11 0.0176267 -0.000234126 -1.66294e-11 0.0162642 -0.000176903 -3.02989e-11 0.01502 -0.00012479 -2.97711e-11 0.0139919 -8.1701e-05 -2.44944e-11 0.0132031 -4.85655e-05 -1.84017e-11 0.0126288 -2.4323e-05 -1.33303e-11 0.0122253 -7.12689e-06 -9.12459e-12 0.0119484 4.63656e-06 -5.74788e-12 0.011759 1.22721e-05 -3.68032e-12 0.0116277 1.6784e-05 -2.23599e-12 0.0115343 1.89318e-05 -1.28425e-12 0.0114654 1.93163e-05 -6.58341e-13 0.0114123 1.84369e-05 -3.56097e-13 0.0113699 1.6721e-05 -1.73837e-13 0.0113352 1.45632e-05 -8.19496e-14 0.0113066 1.22632e-05 -3.86563e-14 0.0112832 1.00298e-05 -2.06414e-14 0.011264 7.99501e-06 -1.41765e-14 0.0112486 6.22822e-06 -1.21461e-14 0.0112365 4.7522e-06 -1.12801e-14 0.0112269 3.55807e-06 -1.09826e-14 0.0112196 2.61815e-06 -1.10963e-14 0.0112141 1.8958e-06 -9.90309e-15 0.01121 1.35233e-06 -7.5743e-15 0.0112071 9.51115e-07 -4.16966e-15 0.0112049 6.60112e-07 -2.98788e-15 0.0112034 4.52345e-07 -2.52341e-15 0.0112023 3.06072e-07 -2.0973e-15 0.0112015 2.0507e-07 -1.55622e-15 1.3268e-07 -9.49282e-16 0.026348 0.0209671 -3.55262e-11 0.0252815 0.0188031 -3.14129e-11 0.0242744 0.016778 -2.40303e-11 0.0233392 0.0149744 -1.88306e-11 0.0224252 0.0133744 -1.87783e-11 0.0215149 0.011925 -1.12955e-11 0.0206061 0.0105817 -8.80395e-12 0.019707 0.00933603 -6.89969e-12 0.0188486 0.00819374 -4.96847e-12 0.018058 0.00716311 -3.32551e-12 0.0173468 0.00625387 -2.64438e-12 0.0167085 0.00545609 -2.91329e-12 0.0161326 0.00475197 -2.12887e-12 0.0156182 0.00412793 -1.76685e-12 0.0151684 0.00357293 -5.04879e-13 0.0147826 0.00307928 3.14065e-13 0.0144608 0.00263847 1.53631e-12 0.0141945 0.0022437 2.87026e-12 0.0139813 0.00188637 4.78913e-12 0.0138151 0.00156277 8.64751e-12 0.0136921 0.00126606 1.12283e-11 0.0136138 0.000995387 1.49229e-11 0.0135771 0.000746734 1.62515e-11 0.013582 0.000518438 2.01668e-11 0.0136281 0.000309236 1.89256e-11 0.0137025 0.000115786 2.15238e-11 0.0138091 -6.43348e-05 1.8414e-11 0.0139491 -0.000228935 1.67192e-11 0.0141091 -0.000376158 1.04759e-11 0.0142811 -0.000508008 6.19331e-12 0.0144668 -0.000625571 5.12658e-12 0.0146661 -0.000729263 1.52415e-12 0.0148657 -0.000820397 -3.68043e-12 0.0150609 -0.000895818 -4.46154e-12 0.0152747 -0.000965509 -6.12968e-12 0.0155075 -0.00102731 -1.06292e-11 0.0157657 -0.00107202 -1.48362e-11 0.0160344 -0.00109865 -2.37183e-11 0.0163032 -0.00110696 -2.04291e-11 0.0165902 -0.00111528 -2.5006e-11 0.0168798 -0.00111528 -3.14906e-11 0.0171718 -0.00110292 -2.89348e-11 0.0174572 -0.0010789 -2.63334e-11 0.0177371 -0.00104875 -4.47577e-11 0.0180173 -0.00101479 -6.50175e-11 0.0182974 -0.000980715 -2.94753e-11 0.018576 -0.000947263 -5.89799e-11 0.0188556 -0.000916057 -4.67394e-11 0.0191309 -0.000889023 -2.97711e-11 0.0193904 -0.000864417 -5.22497e-11 0.0196292 -0.000841765 -2.73487e-11 0.019843 -0.000820894 -5.71007e-11 0.0200173 -0.000800636 -1.67351e-11 0.0201507 -0.000778266 1.5378e-11 0.0202646 -0.000755875 -2.89967e-11 0.0203744 -0.000734789 -1.01761e-11 0.0204902 -0.000712246 1.59179e-12 0.0206498 -0.000683693 2.82853e-11 0.0208733 -0.000656851 3.71639e-11 0.021108 -0.000637109 -8.00828e-12 0.02129 -0.000615885 -2.45312e-11 0.0213961 -0.000591173 -2.79961e-11 0.021443 -0.000561972 -2.75389e-11 0.0214572 -0.000527878 -2.63174e-11 0.0214551 -0.000488845 -2.27168e-11 0.021423 -0.000445532 -1.53127e-11 0.0213152 -0.000399433 -5.99232e-12 0.0210224 -0.000352233 2.85297e-11 0.0201775 -0.000304823 1.45802e-10 0.0190564 -0.000257419 4.32422e-11 0.0177344 -0.000206288 -1.21784e-11 0.0163608 -0.000153536 -3.08276e-11 0.0151005 -0.0001052 -3.08266e-11 0.0140553 -6.53682e-05 -2.51501e-11 0.0132511 -3.50128e-05 -1.8671e-11 0.0126641 -1.30714e-05 -1.3354e-11 0.0122503 2.17064e-06 -9.04681e-12 0.0119654 1.22642e-05 -5.64951e-12 0.0117696 1.84299e-05 -3.59213e-12 0.0116335 2.16442e-05 -2.17497e-12 0.0115363 2.26603e-05 -1.25084e-12 0.0114647 2.20822e-05 -6.4943e-13 0.0114097 2.04195e-05 -3.69068e-13 0.0113661 1.80926e-05 -1.87084e-13 0.011331 1.5479e-05 -9.49375e-14 0.0113025 1.28515e-05 -4.96652e-14 0.0112793 1.03917e-05 -2.88165e-14 0.0112606 8.20627e-06 -1.95522e-14 0.0112458 6.34322e-06 -1.5246e-14 0.0112341 4.80831e-06 -1.27705e-14 0.0112251 3.57997e-06 -1.20434e-14 0.0112182 2.62149e-06 -1.12e-14 0.0112131 1.8901e-06 -9.50995e-15 0.0112092 1.34309e-06 -6.5349e-15 0.0112065 9.41313e-07 -3.68846e-15 0.0112045 6.51158e-07 -2.74569e-15 0.0112031 4.44855e-07 -2.2698e-15 0.0112021 3.0012e-07 -1.91371e-15 0.0112014 2.00492e-07 -1.42458e-15 1.29353e-07 -8.79189e-16 0.0277493 0.0216762 -2.75617e-11 0.0265585 0.0201093 -3.11255e-11 0.0253668 0.0179885 -2.27317e-11 0.0243277 0.0160221 -1.69236e-11 0.0234175 0.0143112 -1.43307e-11 0.0225407 0.0128185 -1.04272e-11 0.0216526 0.0114573 -5.42815e-12 0.0207582 0.0102122 -4.11491e-12 0.0198578 0.00906069 -1.41327e-12 0.0189987 0.00799676 -2.56978e-12 0.0182283 0.00703549 -8.45896e-13 0.0175498 0.00617778 -1.30716e-12 0.0169476 0.00542618 -2.20346e-12 0.0164108 0.00475987 -2.95943e-12 0.0159363 0.00416773 -2.09063e-12 0.0155251 0.0036367 -7.30701e-13 0.0151732 0.00316077 8.55826e-13 0.0148783 0.00272994 2.28651e-12 0.0146359 0.00233981 5.67117e-12 0.0144416 0.00198273 8.37631e-12 0.0142972 0.0016561 1.1953e-11 0.0142002 0.00135555 1.41698e-11 0.014151 0.00107885 1.74508e-11 0.0141442 0.000823233 1.88017e-11 0.0141774 0.000586697 2.04784e-11 0.0142439 0.000367539 2.06735e-11 0.0143319 0.000163301 1.99311e-11 0.0144427 -2.6168e-05 1.68714e-11 0.0145811 -0.000205301 1.3448e-11 0.0147328 -0.000365749 6.82486e-12 0.0148904 -0.000510099 4.25958e-12 0.015061 -0.000638883 2.59604e-12 0.0152357 -0.000753321 -2.74063e-12 0.0154091 -0.000852971 -2.5e-12 0.0155939 -0.000937432 -8.5961e-12 0.0157844 -0.00100811 -9.26271e-12 0.0159857 -0.00107526 -1.0951e-11 0.0162137 -0.00112804 -1.24795e-11 0.0164685 -0.00116315 -1.67458e-11 0.0167397 -0.00117901 -2.54678e-11 0.0170104 -0.00118213 -2.23706e-11 0.0172749 -0.00117202 -1.67248e-11 0.0175443 -0.00116149 -9.97735e-12 0.017817 -0.0011394 -5.84134e-11 0.0180912 -0.00110447 -3.54811e-11 0.0183714 -0.00106578 -1.52892e-11 0.0186602 -0.00102351 -3.35965e-11 0.0189521 -0.000981348 -3.3293e-11 0.0192413 -0.000939842 -3.22534e-11 0.0195201 -0.000900668 -3.20976e-11 0.0197775 -0.000864312 -3.87182e-11 0.0200032 -0.0008313 -3.30969e-11 0.0201952 -0.000800881 1.99991e-11 0.02035 -0.000772255 1.98385e-11 0.0204747 -0.000740504 -3.47012e-11 0.0205881 -0.000711108 -6.9043e-12 0.0206931 -0.000685154 8.14018e-12 0.0208109 -0.000655578 2.23718e-11 0.0209865 -0.000622368 2.24095e-11 0.0212097 -0.00059512 1.08029e-11 0.0214073 -0.000573295 -9.58023e-14 0.021532 -0.000548655 1.47473e-12 0.021584 -0.000521396 1.73875e-12 0.0215838 -0.000490202 2.26737e-12 0.0215552 -0.000454227 4.01557e-12 0.0214964 -0.000413006 1.1508e-11 0.0213798 -0.000367537 2.45401e-11 0.0210853 -0.0003209 4.26031e-11 0.0202496 -0.00027443 5.83317e-11 0.0191503 -0.000229817 -7.56091e-12 0.017834 -0.000180219 -3.32259e-11 0.0164531 -0.000129536 -3.76751e-11 0.0151783 -8.4009e-05 -3.32922e-11 0.0141167 -4.72698e-05 -2.614e-11 0.0132973 -1.98853e-05 -1.90746e-11 0.0126976 -5.83302e-07 -1.32948e-11 0.0122737 1.23599e-05 -9.00632e-12 0.0119807 2.0472e-05 -5.53683e-12 0.0117786 2.4911e-05 -3.49764e-12 0.0116376 2.66322e-05 -2.11646e-12 0.0115368 2.63832e-05 -1.22431e-12 0.0114626 2.47638e-05 -6.44306e-13 0.011406 2.22734e-05 -3.80434e-13 0.0113617 1.93244e-05 -1.98914e-13 0.0113263 1.62603e-05 -1.06398e-13 0.0112979 1.33194e-05 -5.90794e-14 0.0112752 1.0651e-05 -3.55945e-14 0.0112571 8.33336e-06 -2.38614e-14 0.0112428 6.39111e-06 -1.76183e-14 0.0112317 4.81218e-06 -1.38133e-14 0.0112232 3.56204e-06 -1.27388e-14 0.0112168 2.59503e-06 -1.11257e-14 0.011212 1.86249e-06 -8.99038e-15 0.0112084 1.31801e-06 -5.39184e-15 0.0112059 9.2025e-07 -3.3166e-15 0.0112041 6.34353e-07 -2.50929e-15 0.0112028 4.3193e-07 -2.17093e-15 0.0112019 2.90478e-07 -1.7395e-15 0.0112013 1.93435e-07 -1.29936e-15 1.24401e-07 -8.1281e-16 0.0291086 0.0207365 -9.72029e-12 0.0280508 0.0211754 -1.19266e-11 0.0267855 0.0193016 -1.8105e-11 0.0255588 0.0172481 -1.24995e-11 0.0244808 0.0154036 -9.12388e-12 0.0235263 0.0137993 -5.84296e-12 0.0226368 0.0123782 -2.38706e-12 0.0217744 0.0110944 -6.93856e-14 0.0209221 0.00991989 6.80638e-13 0.0200722 0.00884637 1.648e-12 0.0192345 0.00785707 -7.42736e-13 0.0184694 0.00695364 -2.41019e-12 0.0178059 0.00614316 6.09392e-13 0.0172354 0.00542376 -4.02831e-13 0.0167401 0.00478878 -2.50929e-12 0.0163099 0.00422238 -1.74122e-12 0.0159383 0.00371241 3.87337e-13 0.0156214 0.00324918 2.1075e-12 0.0153554 0.00282618 6.39858e-12 0.0151408 0.00243765 8.67053e-12 0.0149755 0.00208064 1.27449e-11 0.0148618 0.00175071 1.42718e-11 0.0147992 0.00144672 1.73475e-11 0.0147826 0.0011648 1.87636e-11 0.0148049 0.000903228 1.95855e-11 0.0148606 0.000659432 1.9927e-11 0.0149426 0.000431639 1.8547e-11 0.0150394 0.000219303 1.73723e-11 0.0151473 2.29957e-05 1.57897e-11 0.0152787 -0.00017073 1.06776e-11 0.0154162 -0.000341474 4.602e-12 0.0155564 -0.000495547 2.65215e-12 0.0157037 -0.00063323 -1.95426e-13 0.0158475 -0.000755618 -4.10923e-12 0.0159937 -0.000861447 -5.1306e-12 0.0161578 -0.000952543 -8.47757e-12 0.0163263 -0.00102724 -9.39968e-12 0.0164991 -0.00109239 -9.45084e-12 0.0166957 -0.00115099 -9.37874e-12 0.0169183 -0.00119412 -1.06574e-11 0.0171708 -0.0012181 -1.31835e-11 0.0174224 -0.0012255 -4.39301e-12 0.0176707 -0.00121628 -5.64646e-12 0.017912 -0.00119662 -3.92028e-11 0.0181575 -0.00116846 -2.88782e-11 0.0184184 -0.00113799 4.92133e-12 0.0186966 -0.00109922 -1.00013e-11 0.0189888 -0.00105263 -1.712e-11 0.019288 -0.0010034 -1.2544e-11 0.0195835 -0.000953212 -3.14311e-11 0.0198634 -0.000904158 -9.73229e-12 0.020115 -0.000856867 1.68556e-11 0.0203291 -0.000812173 7.79844e-12 0.0205067 -0.00077002 -2.89996e-11 0.0206542 -0.000729694 -3.93161e-12 0.0207807 -0.000689371 7.62938e-12 0.020892 -0.000653191 1.14943e-11 0.020991 -0.000620352 1.77767e-11 0.0211152 -0.000583286 3.01457e-11 0.0213034 -0.000546751 3.15769e-11 0.0215101 -0.000518581 2.91072e-11 0.0216629 -0.000492121 2.91532e-11 0.0217297 -0.000465394 2.91109e-11 0.0217218 -0.000437502 2.89848e-11 0.0216679 -0.000407309 3.07957e-11 0.021567 -0.000373036 2.81638e-11 0.0213942 -0.000334019 3.17043e-11 0.0210865 -0.000292734 1.05143e-11 0.0203009 -0.000249791 -2.19211e-11 0.0192375 -0.000203576 -3.65907e-11 0.0179305 -0.000152795 -4.25561e-11 0.0165427 -0.000103137 -4.14952e-11 0.0152532 -6.03336e-05 -3.51681e-11 0.014175 -2.70276e-05 -2.67968e-11 0.0133405 -3.08211e-06 -1.92254e-11 0.0127282 1.3096e-05 -1.32698e-11 0.0122942 2.33266e-05 -8.89945e-12 0.0119932 2.91094e-05 -5.43633e-12 0.011785 3.15621e-05 -3.42081e-12 0.0116395 3.1611e-05 -2.06848e-12 0.0115354 2.99831e-05 -1.20737e-12 0.011459 2.72678e-05 -6.48853e-13 0.0114012 2.39349e-05 -3.92776e-13 0.0113562 2.03701e-05 -2.11552e-13 0.0113209 1.6875e-05 -1.162e-13 0.0112929 1.36458e-05 -6.71663e-14 0.0112707 1.07946e-05 -4.12603e-14 0.0112533 8.36848e-06 -2.73292e-14 0.0112397 6.36765e-06 -1.94257e-14 0.0112292 4.76182e-06 -1.53502e-14 0.0112213 3.50363e-06 -1.31636e-14 0.0112153 2.53885e-06 -1.09165e-14 0.0112109 1.81341e-06 -8.31795e-15 0.0112076 1.27763e-06 -4.50557e-15 0.0112053 8.88452e-07 -3.04519e-15 0.0112036 6.10114e-07 -2.5529e-15 0.0112025 4.13969e-07 -2.13784e-15 0.0112017 2.77459e-07 -1.57737e-15 0.0112011 1.84136e-07 -1.18087e-15 1.18021e-07 -7.48663e-16 0.0289652 0.0203653 -3.46179e-12 0.0292886 0.0206983 -9.01885e-12 0.0281248 0.0204328 -1.01561e-11 0.026955 0.0185915 -1.26323e-11 0.0258294 0.0166599 -6.2512e-12 0.0247748 0.0149215 -1.29821e-12 0.023784 0.0134027 1.42069e-12 0.0228463 0.0120439 3.81242e-12 0.0219571 0.0108189 3.24058e-12 0.0211091 0.00970437 3.72291e-12 0.0202982 0.00868769 2.74238e-12 0.0195201 0.00776118 2.02045e-12 0.0187923 0.00691299 -1.9188e-12 0.0181486 0.00614587 -2.13989e-12 0.0176019 0.00545682 4.20252e-14 0.017139 0.00484458 9.80302e-13 0.016747 0.00429574 1.34851e-12 0.0164143 0.00379954 2.6462e-12 0.0161338 0.00334466 6.09921e-12 0.0159031 0.00292631 9.39218e-12 0.0157223 0.00253908 1.2346e-11 0.015593 0.0021809 1.49185e-11 0.0155154 0.00184881 1.62267e-11 0.0154872 0.00154112 1.85029e-11 0.0155001 0.00125478 1.81548e-11 0.0155486 0.000987658 1.86188e-11 0.0156201 0.000738126 1.75488e-11 0.0157115 0.000503238 1.55081e-11 0.0158193 0.000285047 1.25293e-11 0.015922 7.88574e-05 1.21223e-11 0.0160347 -0.000118512 7.68947e-12 0.0161519 -0.000298086 2.91261e-12 0.0162703 -0.000459365 8.04364e-13 0.0163884 -0.000603353 -1.95494e-12 0.0165013 -0.000730557 -3.99574e-12 0.0166194 -0.000841557 -5.78628e-12 0.0167556 -0.000935978 -7.19509e-12 0.0169002 -0.00101636 -8.99655e-12 0.0170506 -0.00107978 -9.05617e-12 0.0172234 -0.00113995 -9.49542e-12 0.0174148 -0.00118903 -9.14272e-12 0.0176285 -0.00122098 -9.16921e-12 0.0178397 -0.00123229 -1.44688e-11 0.0180568 -0.00122747 -2.64206e-11 0.0182791 -0.00121278 -1.56639e-11 0.0185088 -0.00118198 1.84329e-13 0.018753 -0.00114326 -1.08023e-11 0.0190192 -0.00109985 -1.48153e-11 0.0193069 -0.00105585 -1.4461e-11 0.0196062 -0.00100592 -1.29265e-11 0.0199009 -0.000950749 -5.96449e-12 0.0201765 -0.000892375 -3.31653e-13 0.0204219 -0.00083508 2.5459e-12 0.0206284 -0.000779144 6.51742e-12 0.020797 -0.000725402 1.10125e-11 0.020942 -0.000674181 1.34842e-11 0.0210714 -0.00062607 1.47694e-11 0.0211788 -0.000582728 2.05368e-11 0.0212749 -0.000541142 2.8744e-11 0.0214102 -0.000497229 3.41219e-11 0.0216036 -0.000457877 3.54844e-11 0.0217842 -0.000426068 3.47567e-11 0.0218794 -0.00039623 3.48881e-11 0.0218726 -0.000369699 3.42288e-11 0.0217923 -0.000345076 3.28377e-11 0.0216506 -0.000319922 2.68608e-11 0.0214305 -0.000291836 1.65349e-11 0.0210884 -0.000258667 -2.96156e-12 0.0203697 -0.000219007 -3.94849e-11 0.0193346 -0.00017114 -4.2139e-11 0.0180314 -0.000119895 -4.52866e-11 0.0166332 -7.22708e-05 -4.30238e-11 0.0153269 -3.32346e-05 -3.58998e-11 0.014231 -4.29736e-06 -2.71257e-11 0.0133809 1.54225e-05 -1.92584e-11 0.0127557 2.78573e-05 -1.31739e-11 0.0123117 3.48882e-05 -8.77022e-12 0.0120029 3.79826e-05 -5.33742e-12 0.0117889 3.82039e-05 -3.354e-12 0.011639 3.64309e-05 -2.03188e-12 0.0115321 3.33464e-05 -1.19403e-12 0.0114539 2.95085e-05 -6.50882e-13 0.0113951 2.53412e-05 -4.05878e-13 0.01135 2.11883e-05 -2.25576e-13 0.0113149 1.72971e-05 -1.24783e-13 0.0112875 1.38153e-05 -7.36498e-14 0.0112661 1.08142e-05 -4.5589e-14 0.0112494 8.30791e-06 -2.98518e-14 0.0112366 6.27184e-06 -2.06358e-14 0.0112268 4.65771e-06 -1.64326e-14 0.0112194 3.40594e-06 -1.33265e-14 0.0112138 2.4544e-06 -1.05728e-14 0.0112098 1.74425e-06 -7.40266e-15 0.0112069 1.22322e-06 -3.90275e-15 0.0112047 8.46951e-07 -2.78021e-15 0.0112033 5.79297e-07 -2.23662e-15 0.0112022 3.91562e-07 -1.95708e-15 0.0112015 2.61512e-07 -1.43247e-15 0.011201 1.72946e-07 -1.0705e-15 1.10454e-07 -6.86441e-16 0.0290948 0.0180868 1.2837e-11 0.0296791 0.020041 -2.81679e-12 0.0294068 0.0206929 -6.36704e-12 0.0283036 0.0197769 -5.62225e-12 0.0271379 0.0179972 -5.13855e-12 0.0260346 0.0161561 1.714e-12 0.0250031 0.0145125 4.90089e-12 0.0240225 0.013067 5.81248e-12 0.023096 0.0117768 5.4365e-12 0.0222145 0.0106084 4.98607e-12 0.02138 0.00954639 3.91513e-12 0.0205855 0.00858107 2.98148e-12 0.0198411 0.00770092 1.00225e-12 0.0191561 0.00690361 1.96818e-12 0.0185506 0.00617972 2.2431e-13 0.0180358 0.00552316 3.01726e-12 0.0176068 0.00492874 4.30494e-12 0.0172508 0.00438986 6.71956e-12 0.0169566 0.00389825 8.89113e-12 0.0167162 0.00344744 1.0847e-11 0.0165257 0.0030303 1.24855e-11 0.0163854 0.00264386 1.51252e-11 0.0162958 0.00228487 1.56267e-11 0.0162542 0.00195121 1.76022e-11 0.0162576 0.00164027 1.69874e-11 0.0162957 0.0013504 1.70492e-11 0.0163612 0.00107872 1.54908e-11 0.0164464 0.000824475 1.35216e-11 0.0165405 0.000585754 1.13668e-11 0.0166444 0.000362406 8.5877e-12 0.016743 0.000152558 6.65161e-12 0.0168355 -4.37129e-05 3.69869e-12 0.016928 -0.000231003 1.31368e-12 0.0170159 -0.000397126 -5.07444e-15 0.0171007 -0.000545255 -1.91054e-12 0.0171821 -0.000675522 -3.07039e-12 0.0172736 -0.000789552 -5.29258e-12 0.0173817 -0.000886794 -6.65205e-12 0.0174999 -0.00097007 -7.05007e-12 0.0176395 -0.00103611 -8.38416e-12 0.01779 -0.00109408 -8.76003e-12 0.0179451 -0.00114682 -8.75088e-12 0.018112 -0.00118379 -1.2405e-11 0.0182794 -0.00120182 -1.70797e-11 0.0184527 -0.00120117 -2.21796e-11 0.0186418 -0.00118991 -1.81682e-11 0.0188561 -0.0011649 -1.75107e-11 0.0190974 -0.00112978 -1.92877e-11 0.0193611 -0.00108434 -1.3276e-11 0.0196413 -0.00103335 -8.02785e-12 0.0199293 -0.00097819 -2.36174e-12 0.0202132 -0.000921159 3.52208e-12 0.0204787 -0.000860383 7.51146e-12 0.0207124 -0.000795599 1.1924e-11 0.0209086 -0.000729699 1.58696e-11 0.0210728 -0.000666472 1.75456e-11 0.0212189 -0.000606471 1.72794e-11 0.0213484 -0.00055148 2.0048e-11 0.02145 -0.000499839 2.44215e-11 0.0215466 -0.00044941 2.73676e-11 0.0216957 -0.000400388 2.93727e-11 0.0218875 -0.000358084 2.93641e-11 0.0220189 -0.00032104 2.91056e-11 0.0220336 -0.000290718 2.78906e-11 0.0219457 -0.000267699 2.44759e-11 0.0217704 -0.000249963 1.69662e-11 0.0215275 -0.000232749 5.63424e-12 0.0211489 -0.000209845 -8.80569e-12 0.0204716 -0.000175145 -3.07224e-11 0.0194461 -0.000128614 -4.14598e-11 0.0181376 -7.94119e-05 -4.63895e-11 0.016724 -3.58733e-05 -4.39578e-11 0.0153981 -2.27337e-06 -3.63786e-11 0.0142831 2.0956e-05 -2.7292e-11 0.0134169 3.54748e-05 -1.91939e-11 0.012779 4.3445e-05 -1.30345e-11 0.0123251 4.67706e-05 -8.63764e-12 0.0120089 4.68402e-05 -5.28157e-12 0.0117895 4.46267e-05 -3.31003e-12 0.0116359 4.09163e-05 -2.0115e-12 0.0115266 3.63472e-05 -1.19279e-12 0.0114471 3.13976e-05 -6.61584e-13 0.0113879 2.64337e-05 -4.19593e-13 0.0113429 2.17414e-05 -2.38925e-13 0.0113084 1.7504e-05 -1.34261e-13 0.0112818 1.38155e-05 -7.90614e-14 0.0112612 1.07037e-05 -4.90316e-14 0.0112454 8.14963e-06 -3.17434e-14 0.0112334 6.10391e-06 -2.25617e-14 0.0112243 4.50124e-06 -1.71602e-14 0.0112175 3.27079e-06 -1.3315e-14 0.0112124 2.34353e-06 -1.01269e-14 0.0112087 1.65674e-06 -6.26642e-15 0.0112061 1.15622e-06 -3.47999e-15 0.0112042 7.96947e-07 -2.59198e-15 0.0112029 5.42764e-07 -2.1788e-15 0.0112019 3.65424e-07 -1.76571e-15 0.0112013 2.43128e-07 -1.29372e-15 0.0112009 1.60191e-07 -9.71998e-16 1.01949e-07 -6.24162e-16 0.0284476 0.0114583 5.08167e-11 0.0295847 0.0187255 6.16321e-12 0.0303995 0.0198598 -9.42422e-13 0.0296327 0.0205604 -1.3003e-12 0.0285554 0.0192101 -1.17372e-12 0.0273694 0.0174796 4.91839e-12 0.0262569 0.0157389 7.17587e-12 0.0252217 0.0141665 8.24445e-12 0.0242381 0.012785 9.45655e-12 0.0233116 0.011553 7.10369e-12 0.0224487 0.0104472 6.06794e-12 0.0216523 0.00944591 5.12567e-12 0.0209209 0.00853814 4.53786e-12 0.0202519 0.00771023 3.99275e-12 0.0196414 0.00695492 4.05605e-12 0.0190937 0.00626309 2.86903e-12 0.0186125 0.00562902 3.71371e-12 0.0182003 0.00504622 7.49333e-12 0.0178598 0.00450937 1.16624e-11 0.0175885 0.0040155 1.35399e-11 0.017381 0.0035611 1.44279e-11 0.0172312 0.00314228 1.54394e-11 0.0171325 0.00275496 1.6001e-11 0.017081 0.00239524 1.6527e-11 0.0170721 0.00205991 1.60596e-11 0.0170999 0.00174659 1.5293e-11 0.0171577 0.00145351 1.37296e-11 0.0172354 0.00117914 1.17255e-11 0.0173254 0.000921758 9.23449e-12 0.0174213 0.000681186 7.00648e-12 0.017516 0.000455609 4.3304e-12 0.0175997 0.00024556 3.3802e-12 0.0176668 5.03087e-05 2.22321e-12 0.0177301 -0.000138459 5.80462e-13 0.0177823 -0.000306558 -1.52102e-12 0.0178322 -0.000457128 -2.92931e-12 0.017886 -0.000589987 -4.47633e-12 0.0179528 -0.00070558 -6.9087e-12 0.018035 -0.000805353 -7.74089e-12 0.0181322 -0.000889214 -9.84061e-12 0.0182615 -0.000959353 -1.10735e-11 0.0183869 -0.00101553 -1.12981e-11 0.0185003 -0.00106898 -1.10264e-11 0.0186173 -0.00110974 -1.16392e-11 0.0187375 -0.00113433 -1.00092e-11 0.0188735 -0.0011393 -5.28529e-12 0.0190295 -0.00113049 -6.72087e-12 0.0192231 -0.00111062 -5.13958e-12 0.0194548 -0.00107977 -3.87389e-12 0.0197158 -0.00103949 -1.17472e-12 0.0199935 -0.000990883 2.60752e-12 0.020274 -0.000933819 4.55683e-12 0.0205409 -0.000870701 6.74835e-12 0.0207848 -0.000803501 1.02471e-11 0.0209998 -0.000734577 1.37622e-11 0.0211845 -0.00066523 1.60577e-11 0.0213438 -0.000594768 1.74504e-11 0.0214865 -0.00052842 1.75849e-11 0.0216079 -0.000467648 1.88202e-11 0.0217023 -0.000409511 2.00511e-11 0.021806 -0.000352001 2.07039e-11 0.0219668 -0.000298214 1.99927e-11 0.0221299 -0.00025102 1.94251e-11 0.0221899 -0.000210851 1.85278e-11 0.0221203 -0.000182541 1.56058e-11 0.0219348 -0.000165622 1.02943e-11 0.0216835 -0.000153886 2.29988e-12 0.0212873 -0.000141464 -9.06797e-12 0.0206067 -0.000116416 -3.02029e-11 0.0195732 -7.47193e-05 -4.19689e-11 0.0182492 -3.04772e-05 -4.70843e-11 0.0168142 6.3708e-06 -4.43857e-11 0.0154655 3.24314e-05 -3.64403e-11 0.0143303 4.8429e-05 -2.71319e-11 0.0134475 5.66797e-05 -1.89776e-11 0.0127971 5.94837e-05 -1.28556e-11 0.0123338 5.86558e-05 -8.5069e-12 0.0120108 5.54246e-05 -5.19151e-12 0.0117867 5.06143e-05 -3.25989e-12 0.01163 4.49255e-05 -1.98949e-12 0.011519 3.8878e-05 -1.18848e-12 0.0114387 3.2866e-05 -6.6654e-13 0.0113795 2.717e-05 -4.29923e-13 0.0113351 2.20046e-05 -2.491e-13 0.0113015 1.74829e-05 -1.42913e-13 0.0112758 1.36412e-05 -8.41465e-14 0.0112563 1.04628e-05 -5.18792e-14 0.0112414 7.89566e-06 -3.40507e-14 0.0112302 5.86701e-06 -2.38403e-14 0.0112218 4.29583e-06 -1.75116e-14 0.0112156 3.10145e-06 -1.31163e-14 0.011211 2.20912e-06 -9.54137e-15 0.0112077 1.55325e-06 -5.16957e-15 0.0112054 1.07852e-06 -3.17319e-15 0.0112037 7.39887e-07 -2.58302e-15 0.0112025 5.01652e-07 -2.11836e-15 0.0112017 3.36322e-07 -1.59251e-15 0.0112011 2.22875e-07 -1.17042e-15 0.0112008 1.46271e-07 -8.80093e-16 9.2765e-08 -5.69284e-16 0.025767 0.00496299 1.31174e-11 0.0294338 0.014036 1.92438e-11 0.0300169 0.0190411 3.48869e-12 0.0308981 0.0196382 2.99077e-12 0.0299573 0.0201879 5.93179e-12 0.0288373 0.0187136 1.06017e-11 0.0276148 0.0170507 1.17041e-11 0.026462 0.01539 1.13756e-11 0.0254204 0.0138892 1.198e-11 0.0244727 0.0125727 1.09111e-11 0.0236075 0.0114091 1.0347e-11 0.0228128 0.0103653 8.91682e-12 0.0220791 0.00942175 7.75252e-12 0.0214019 0.00856069 6.57037e-12 0.0207798 0.00777036 7.22793e-12 0.020215 0.0070423 8.11829e-12 0.0197103 0.00636867 1.02196e-11 0.0192653 0.00574502 1.24498e-11 0.018882 0.00516721 1.27106e-11 0.0185648 0.00463228 1.40808e-11 0.0183174 0.00413864 1.51871e-11 0.0181405 0.00368375 1.63627e-11 0.0180267 0.00326404 1.63223e-11 0.017965 0.00287553 1.60959e-11 0.0179458 0.00251463 1.51817e-11 0.0179623 0.00217764 1.37812e-11 0.0180091 0.00186246 1.20158e-11 0.0180791 0.00156751 9.76044e-12 0.0181629 0.00129158 7.2604e-12 0.0182513 0.00103339 4.85587e-12 0.018337 0.000792264 2.16532e-12 0.0184144 0.000567386 6.97961e-13 0.0184776 0.000358255 -9.98474e-13 0.0185171 0.0001642 -1.85559e-12 0.0185402 -1.06503e-05 -3.47128e-12 0.0185614 -0.000188622 -4.52261e-12 0.0185821 -0.000338422 -6.26833e-12 0.0186123 -0.000471724 -8.47332e-12 0.0186544 -0.00058857 -9.4694e-12 0.0187135 -0.000689965 -1.13587e-11 0.0187959 -0.000775459 -1.42085e-11 0.0189032 -0.000848873 -1.59227e-11 0.0189975 -0.00090662 -1.68391e-11 0.0190656 -0.000956873 -1.66947e-11 0.0191365 -0.00100075 -1.67326e-11 0.019216 -0.00103056 -1.60881e-11 0.0193152 -0.001043 -1.29034e-11 0.0194479 -0.00103819 -8.73034e-12 0.0196299 -0.00102402 -3.43944e-12 0.019851 -0.000998776 -2.07153e-12 0.020098 -0.00096311 1.40751e-12 0.0203597 -0.000917385 4.51696e-12 0.0206212 -0.000862739 7.52603e-12 0.020868 -0.00080062 1.02022e-11 0.0210895 -0.000732096 1.20611e-11 0.021281 -0.00065958 1.3094e-11 0.0214487 -0.000586121 1.43065e-11 0.0215991 -0.000514221 1.47039e-11 0.0217311 -0.000445387 1.54643e-11 0.0218363 -0.000379909 1.27723e-11 0.0219236 -0.000316773 1.32379e-11 0.0220377 -0.000255798 1.27987e-11 0.022198 -0.000198606 1.07158e-11 0.0223041 -0.000146097 1.02815e-11 0.0222843 -0.000104043 8.8181e-12 0.0221354 -7.69764e-05 5.86855e-12 0.0218706 -6.42456e-05 -1.39143e-12 0.0214898 -5.55637e-05 -1.04018e-11 0.0207789 -4.21967e-05 -2.87565e-11 0.0197157 -9.51945e-06 -4.34045e-11 0.0183637 2.64628e-05 -4.85707e-11 0.0169007 5.3885e-05 -4.51423e-11 0.0155265 7.01958e-05 -3.65695e-11 0.0143702 7.74625e-05 -2.69443e-11 0.0134712 7.84945e-05 -1.87054e-11 0.0128089 7.55453e-05 -1.26099e-11 0.0123372 7.02071e-05 -8.3048e-12 0.0120082 6.34694e-05 -5.07755e-12 0.0117802 5.59881e-05 -3.18671e-12 0.0116213 4.83265e-05 -1.95193e-12 0.0115092 4.08578e-05 -1.16764e-12 0.0114288 3.3861e-05 -6.73256e-13 0.0113702 2.75201e-05 -4.27684e-13 0.0113267 2.19635e-05 -2.56135e-13 0.0112941 1.72291e-05 -1.48921e-13 0.0112696 1.32933e-05 -8.87418e-14 0.0112512 1.00952e-05 -5.50421e-14 0.0112374 7.55102e-06 -3.58978e-14 0.0112271 5.56637e-06 -2.46578e-14 0.0112194 4.04637e-06 -1.76341e-14 0.0112138 2.90213e-06 -1.28116e-14 0.0112097 2.05464e-06 -8.8001e-15 0.0112068 1.43653e-06 -4.43469e-15 0.0112047 9.92256e-07 -2.90955e-15 0.0112032 6.7737e-07 -2.2296e-15 0.0112022 4.57133e-07 -1.95663e-15 0.0112015 3.0513e-07 -1.43915e-15 0.011201 2.01349e-07 -1.05765e-15 0.0112006 1.31603e-07 -7.95923e-16 8.31553e-08 -5.2038e-16 0.0203135 0.00201685 3.52044e-12 0.0266062 0.00617798 1.53413e-11 0.029977 0.0150421 1.58239e-12 0.0303969 0.0191058 3.81872e-12 0.0312693 0.0192792 8.30783e-12 0.0302818 0.0197368 1.10716e-11 0.0291533 0.0182822 1.78062e-11 0.027923 0.0167006 1.65539e-11 0.0267499 0.0151155 1.47311e-11 0.025706 0.0136872 1.38084e-11 0.0247831 0.0124357 1.3634e-11 0.0239652 0.011332 1.39419e-11 0.0232325 0.0103468 1.38833e-11 0.0225613 0.00945284 1.36285e-11 0.0219407 0.00863018 1.35297e-11 0.0213661 0.00786557 1.37471e-11 0.0208399 0.00715086 1.44947e-11 0.0203689 0.00648383 1.558e-11 0.0199561 0.00586243 1.63884e-11 0.0196091 0.00528582 1.67244e-11 0.0193336 0.00475378 1.65327e-11 0.0191288 0.00426413 1.55461e-11 0.0189902 0.00381295 1.50784e-11 0.0189101 0.00339534 1.45646e-11 0.0188779 0.00300691 1.38412e-11 0.0188832 0.00264493 1.227e-11 0.0189171 0.0023067 1.02987e-11 0.0189742 0.00199041 7.87311e-12 0.0190472 0.00169493 5.30606e-12 0.0191262 0.00141898 2.63419e-12 0.0192023 0.0011618 8.34317e-13 0.0192676 0.000922061 -7.15656e-13 0.0193176 0.000699733 -1.60289e-12 0.0193522 0.00049307 -2.4781e-12 0.0193718 0.000303864 -4.61581e-12 0.019365 0.000127672 -5.76342e-12 0.0193504 -3.11732e-05 -8.68036e-12 0.0193475 -0.000187349 -1.14739e-11 0.019356 -0.000321389 -1.32068e-11 0.0193754 -0.000438372 -1.51078e-11 0.0194154 -0.000540542 -1.71142e-11 0.01948 -0.0006292 -1.78119e-11 0.0195512 -0.000704728 -1.8229e-11 0.0196049 -0.000766999 -1.89775e-11 0.019633 -0.000815071 -1.89495e-11 0.0196649 -0.000861165 -1.87204e-11 0.0197111 -0.000896131 -1.50675e-11 0.0197833 -0.000915062 -6.50452e-12 0.0199023 -0.000916423 -2.66813e-11 0.0200773 -0.000906206 2.82111e-12 0.0202882 -0.000887769 2.01884e-12 0.0205152 -0.00085711 5.5655e-12 0.0207499 -0.00081625 5.35794e-12 0.0209794 -0.000766399 7.19654e-12 0.0211916 -0.000707975 9.73599e-12 0.0213812 -0.000642318 1.08769e-11 0.0215479 -0.000572571 1.24108e-11 0.0216957 -0.00050079 1.19194e-11 0.0218274 -0.000429754 1.17268e-11 0.0219374 -0.000361408 8.94392e-12 0.0220223 -0.000294967 8.13641e-12 0.0221085 -0.000229879 6.69025e-12 0.0222313 -0.00016689 6.09396e-12 0.0223587 -0.000106385 3.25416e-12 0.0223986 -5.09832e-05 2.69026e-12 0.0223077 -6.93024e-06 7.72219e-13 0.0220767 2.10459e-05 -4.229e-12 0.0217122 3.41941e-05 -1.22596e-11 0.0209872 4.27953e-05 -2.51985e-11 0.0198702 6.34571e-05 -4.7628e-11 0.0184763 8.97012e-05 -5.07937e-11 0.0169794 0.000105093 -4.6297e-11 0.015578 0.000109712 -3.68731e-11 0.0144008 0.000107071 -2.68062e-11 0.0134866 0.000100214 -1.84321e-11 0.0128136 9.11456e-05 -1.23695e-11 0.0123345 8.10812e-05 -8.08425e-12 0.0120007 7.07218e-05 -4.93674e-12 0.01177 6.05922e-05 -3.11135e-12 0.0116098 5.10091e-05 -1.9152e-12 0.0114974 4.22152e-05 -1.15077e-12 0.0114176 3.43466e-05 -6.65222e-13 0.0113599 2.74694e-05 -4.11763e-13 0.0113177 2.16134e-05 -2.73294e-13 0.0112865 1.67454e-05 -1.53563e-13 0.0112634 1.27783e-05 -9.17599e-14 0.0112462 9.60883e-06 -5.70738e-14 0.0112334 7.12367e-06 -3.7025e-14 0.011224 5.20927e-06 -2.50656e-14 0.0112171 3.75909e-06 -1.75478e-14 0.0112121 2.67798e-06 -1.24033e-14 0.0112084 1.88418e-06 -7.84945e-15 0.0112058 1.30973e-06 -3.94233e-15 0.011204 8.99782e-07 -2.75533e-15 0.0112027 6.1112e-07 -2.27205e-15 0.0112018 4.10443e-07 -1.77591e-15 0.0112012 2.72719e-07 -1.30018e-15 0.0112008 1.79178e-07 -9.55553e-16 0.0112006 1.16616e-07 -7.195e-16 7.33856e-08 -4.76431e-16 0.01816 0.000768062 -6.23802e-12 0.0212083 0.00251153 -1.02025e-11 0.0274854 0.00684984 -2.34762e-11 0.0303933 0.0155596 -7.38267e-12 0.0306879 0.0188141 3.11936e-12 0.0314305 0.0188699 8.23864e-12 0.0304436 0.0192748 1.33921e-11 0.0293553 0.0178911 1.94591e-11 0.0281642 0.016401 1.89208e-11 0.0270312 0.0148979 1.72467e-11 0.0260331 0.0135584 1.76797e-11 0.025175 0.0123842 1.93845e-11 0.0244315 0.011346 2.04186e-11 0.0237679 0.0104075 2.04626e-11 0.0231501 0.00954287 1.97542e-11 0.0225626 0.00873449 1.9046e-11 0.0220102 0.00797399 1.85943e-11 0.0215046 0.00725956 1.84882e-11 0.0210594 0.00659337 1.83657e-11 0.0206846 0.00597639 1.77431e-11 0.0203857 0.00540732 1.71194e-11 0.0201639 0.00488333 1.61021e-11 0.020011 0.00440046 1.50214e-11 0.0199151 0.00395348 1.36273e-11 0.0198659 0.00353757 1.2194e-11 0.0198557 0.00314947 1.04943e-11 0.0198758 0.00278703 8.40204e-12 0.0199169 0.00244846 5.87136e-12 0.0199734 0.00213249 3.17877e-12 0.0200391 0.00183807 1.22454e-12 0.0201036 0.00156429 -3.58056e-13 0.0201573 0.00130973 -1.55842e-12 0.0201946 0.0010734 -2.22348e-12 0.0202142 0.000854359 -2.90283e-12 0.0202161 0.000652546 -3.45192e-12 0.0202038 0.000466305 -5.56609e-12 0.0201841 0.000296692 -6.71557e-12 0.0201541 0.000139493 -9.21814e-12 0.020127 2.80837e-06 -1.31624e-11 0.0201107 -0.000136078 -1.43854e-11 0.02011 -0.000256172 -1.65689e-11 0.0201317 -0.000360178 -1.69081e-11 0.0201681 -0.000451187 -1.758e-11 0.0201925 -0.000529644 -1.64311e-11 0.0202021 -0.000596143 -1.65786e-11 0.0202032 -0.000648575 -1.56816e-11 0.0202036 -0.000692738 -2.15486e-11 0.0202136 -0.000732418 -2.00615e-11 0.020275 -0.000758263 -1.91231e-10 0.0203881 -0.000768029 1.08904e-10 0.0205602 -0.000762978 5.41215e-11 0.0207559 -0.000751049 2.28776e-11 0.0209551 -0.000726105 9.55998e-12 0.0211541 -0.000691102 8.17222e-12 0.0213434 -0.000647798 8.4318e-12 0.0215134 -0.000595953 1.00065e-11 0.0216632 -0.000537043 1.10767e-11 0.0217959 -0.000474252 1.09527e-11 0.0219144 -0.000409461 1.03321e-11 0.0220159 -0.000344545 7.0529e-12 0.0220958 -0.00027993 4.8489e-12 0.0221643 -0.000215102 2.53721e-12 0.0222524 -0.000151175 1.57178e-12 0.0223712 -8.76506e-05 -2.06603e-12 0.0224482 -2.42638e-05 -2.61599e-12 0.0224233 3.49198e-05 -4.97325e-12 0.0222609 8.20938e-05 -8.11532e-12 0.0219171 0.000113809 -1.45045e-11 0.0213073 0.000131313 -2.63733e-11 0.0200427 0.000143644 -5.29215e-11 0.0185813 0.000157042 -5.444e-11 0.017045 0.000157775 -4.74454e-11 0.0156164 0.000149296 -3.68794e-11 0.01442 0.000136164 -2.64924e-11 0.0134924 0.00012118 -1.81415e-11 0.0128103 0.000105838 -1.20699e-11 0.0123254 9.09145e-05 -7.90184e-12 0.0119883 7.69846e-05 -4.86091e-12 0.0117559 6.42597e-05 -3.04918e-12 0.0115955 5.28836e-05 -1.87931e-12 0.0114838 4.28975e-05 -1.14503e-12 0.0114051 3.42947e-05 -6.6839e-13 0.011349 2.70069e-05 -4.12442e-13 0.0113084 2.09592e-05 -2.69804e-13 0.0112788 1.60406e-05 -1.5585e-13 0.0112571 1.21071e-05 -9.40971e-14 0.0112412 9.01494e-06 -5.86563e-14 0.0112296 6.62403e-06 -3.78522e-14 0.0112211 4.80468e-06 -2.53054e-14 0.0112149 3.4414e-06 -1.73865e-14 0.0112104 2.43486e-06 -1.19549e-14 0.0112072 1.70223e-06 -6.80942e-15 0.011205 1.17624e-06 -3.60454e-15 0.0112034 8.03579e-07 -2.60994e-15 0.0112023 5.42922e-07 -2.09826e-15 0.0112016 3.62835e-07 -1.61463e-15 0.011201 2.39954e-07 -1.17585e-15 0.0112007 1.56946e-07 -8.634e-16 0.0112005 1.01711e-07 -6.50246e-16 6.37303e-08 -4.36884e-16 0.0173274 0.000281245 -5.15426e-13 0.0185539 0.000940292 -2.22553e-11 0.0220238 0.00266882 -1.89741e-11 0.0278438 0.00771148 -4.67861e-11 0.0304972 0.0155709 -1.64259e-11 0.0308436 0.0184314 2.60584e-12 0.0315415 0.0185037 6.51604e-12 0.0305977 0.0188517 1.35817e-11 0.0295608 0.0175748 2.03451e-11 0.0284487 0.0161878 2.13761e-11 0.0274184 0.0147887 1.97e-11 0.0265161 0.0135438 2.14491e-11 0.0257349 0.0124348 2.37077e-11 0.025038 0.0114317 2.47415e-11 0.0243946 0.0105066 2.42217e-11 0.0237823 0.00964242 2.29775e-11 0.0231972 0.00883062 2.1702e-11 0.0226578 0.00806901 2.06443e-11 0.0221853 0.00735941 1.95847e-11 0.0217918 0.00670377 1.81822e-11 0.0214787 0.00610022 1.6625e-11 0.0212416 0.00554338 1.49785e-11 0.0210745 0.00502853 1.35911e-11 0.0209652 0.00455126 1.21012e-11 0.0209017 0.00410673 1.06859e-11 0.0208739 0.00369191 8.58404e-12 0.0208752 0.00330394 6.32992e-12 0.0209001 0.00294205 3.73632e-12 0.0209383 0.00260479 1.88642e-12 0.0209853 0.00229118 6.57091e-14 0.0210357 0.00200018 -1.3263e-12 0.0210771 0.00173053 -2.1754e-12 0.0211012 0.00148028 -2.65599e-12 0.0211066 0.00124824 -2.9808e-12 0.0210933 0.00103376 -3.16929e-12 0.0210638 0.000836072 -3.45448e-12 0.0210245 0.000654545 -3.58696e-12 0.0209847 0.000488653 -4.13049e-12 0.020946 0.00033735 -3.73507e-12 0.0209069 0.000199137 -5.47804e-12 0.0208715 7.34516e-05 -7.65699e-12 0.0208488 -3.67714e-05 -9.69223e-12 0.0208467 -0.000148118 -8.10005e-12 0.0208434 -0.000244022 -8.77902e-12 0.02082 -0.000327418 -5.51475e-12 0.0207922 -0.000397758 -6.36222e-12 0.0207678 -0.000457278 -2.03945e-12 0.0207401 -0.00050251 -9.33028e-13 0.0207425 -0.000543854 -2.46192e-12 0.0207861 -0.000576614 -7.66451e-13 0.020909 -0.000594342 1.46311e-12 0.0210744 -0.000596724 5.07803e-12 0.0212437 -0.000589936 6.33275e-12 0.0214065 -0.000571882 1.00781e-11 0.0215617 -0.000544623 1.04163e-11 0.021703 -0.000509859 1.08207e-11 0.0218254 -0.000467104 1.22139e-11 0.0219311 -0.000418084 1.23869e-11 0.0220234 -0.000365341 1.06827e-11 0.0221023 -0.000310471 7.93329e-12 0.0221651 -0.000254082 4.20002e-12 0.0222169 -0.000195418 7.8299e-13 0.0222785 -0.000134945 -1.95191e-12 0.0223727 -7.27471e-05 -5.15738e-12 0.0224595 -7.21867e-06 -5.73717e-12 0.0224873 5.98914e-05 -7.45079e-12 0.0224002 0.000122876 -1.07532e-11 0.0221336 0.00017504 -1.64236e-11 0.0215702 0.000211684 -3.07582e-11 0.0202018 0.00022716 -6.14222e-11 0.0186672 0.000224402 -5.93264e-11 0.0170919 0.000208608 -4.883e-11 0.0156391 0.00018706 -3.68993e-11 0.0144263 0.000163826 -2.61738e-11 0.0134877 0.000140847 -1.7822e-11 0.0127986 0.000119141 -1.18021e-11 0.0123097 9.94788e-05 -7.69477e-12 0.0119708 8.20358e-05 -4.75992e-12 0.0117382 6.68629e-05 -2.98555e-12 0.0115786 5.38574e-05 -1.8469e-12 0.0114684 4.28628e-05 -1.12896e-12 0.0113916 3.36918e-05 -6.74014e-13 0.0113375 2.61367e-05 -4.082e-13 0.0112988 2.00099e-05 -2.66398e-13 0.011271 1.51296e-05 -1.57219e-13 0.0112509 1.12958e-05 -9.55685e-14 0.0112364 8.32829e-06 -5.96407e-14 0.0112259 6.06483e-06 -3.8319e-14 0.0112183 4.3631e-06 -2.53548e-14 0.0112128 3.10159e-06 -1.71402e-14 0.0112089 2.17916e-06 -1.14415e-14 0.0112062 1.51359e-06 -5.88649e-15 0.0112042 1.03955e-06 -3.3505e-15 0.0112029 7.06159e-07 -2.45745e-15 0.0112019 4.74544e-07 -2.06252e-15 0.0112013 3.15529e-07 -1.4704e-15 0.0112009 2.07664e-07 -1.0647e-15 0.0112006 1.35203e-07 -7.80792e-16 0.0112004 8.72423e-08 -5.8813e-16 5.44285e-08 -4.01059e-16 0.016956 0.000112805 -4.59599e-12 0.0173117 0.000354385 -1.23867e-11 0.0188851 0.000956939 -2.45805e-11 0.0227878 0.00295738 -5.2266e-11 0.0283813 0.00807715 -1.04299e-10 0.030748 0.0154971 -3.3443e-11 0.0310685 0.018051 -1.81633e-12 0.0317162 0.0181642 6.88514e-12 0.0308735 0.0184771 1.43139e-11 0.0298866 0.0173359 1.97718e-11 0.0288713 0.0160756 2.60257e-11 0.027933 0.014783 2.34649e-11 0.0270936 0.013607 2.487e-11 0.0263436 0.012526 2.68114e-11 0.0256512 0.0115264 2.68875e-11 0.0249991 0.0105947 2.5545e-11 0.0243878 0.00972641 2.36508e-11 0.0238256 0.00891785 2.18211e-11 0.0233322 0.00816684 2.00917e-11 0.0229249 0.00747299 1.81073e-11 0.0226028 0.00683402 1.6045e-11 0.0223561 0.00624444 1.37846e-11 0.0221748 0.00569731 1.19051e-11 0.0220509 0.00518854 1.0124e-11 0.0219732 0.00471497 8.36533e-12 0.0219296 0.00427244 6.47969e-12 0.021911 0.00385845 4.34783e-12 0.0219133 0.00347157 2.62055e-12 0.021934 0.00311222 5.6771e-13 0.0219625 0.00277907 -9.45706e-13 0.0219949 0.00247059 -2.02596e-12 0.0220244 0.00218526 -2.56024e-12 0.0220359 0.00192105 -2.77048e-12 0.0220254 0.00167564 -2.58225e-12 0.0219958 0.00144811 -2.16165e-12 0.0219483 0.00123794 -1.7035e-12 0.0218884 0.00104428 -1.12365e-12 0.0218271 0.000866708 -5.62566e-13 0.0217703 0.000704505 -6.11989e-14 0.0217148 0.000556659 7.72848e-13 0.0216626 0.000421629 9.88642e-13 0.0216182 0.000298617 2.09088e-12 0.0215831 0.000185837 3.09671e-12 0.0215516 8.2783e-05 3.18726e-12 0.0215 -5.33645e-06 3.41097e-12 0.0214356 -9.65226e-05 4.45006e-12 0.0213731 -0.000175592 5.07295e-12 0.0213218 -0.000241997 8.51433e-12 0.0212911 -0.000294235 7.55831e-12 0.0212865 -0.000336924 7.26567e-12 0.0213439 -0.000371983 7.23103e-12 0.0214624 -0.000397398 7.98863e-12 0.0216049 -0.000408656 1.12779e-11 0.0217365 -0.00040787 1.21955e-11 0.021854 -0.000396922 1.5428e-11 0.0219597 -0.0003794 1.39185e-11 0.0220498 -0.000354711 1.27909e-11 0.0221244 -0.000322445 1.36628e-11 0.0221857 -0.000284774 1.25614e-11 0.0222352 -0.000243556 1.01474e-11 0.0222719 -0.000199259 5.89091e-12 0.0223 -0.000150997 2.95306e-12 0.0223379 -9.83831e-05 -4.60662e-13 0.0224098 -4.12926e-05 -3.44316e-12 0.0224971 2.14997e-05 -5.06138e-12 0.0225536 9.03876e-05 -6.97284e-12 0.0225267 0.000161973 -1.14932e-11 0.022325 0.000229829 -1.94657e-11 0.0217778 0.00028223 -3.6769e-11 0.0202993 0.000303361 -7.47695e-11 0.0187159 0.000283381 -6.37485e-11 0.0171149 0.000253987 -4.95663e-11 0.0156446 0.000221998 -3.66609e-11 0.0144193 0.000189692 -2.57539e-11 0.0134722 0.000158814 -1.74004e-11 0.0127782 0.000130914 -1.14744e-11 0.0122872 0.00010651 -7.45855e-12 0.0119483 8.56903e-05 -4.59674e-12 0.011717 6.82736e-05 -2.89175e-12 0.0115595 5.38763e-05 -1.79577e-12 0.0114517 4.20905e-05 -1.09958e-12 0.0113774 3.2537e-05 -6.6784e-13 0.0113256 2.48705e-05 -3.97749e-13 0.0112892 1.87884e-05 -2.63457e-13 0.0112633 1.40354e-05 -1.57604e-13 0.0112449 1.03653e-05 -9.62606e-14 0.0112317 7.56712e-06 -6.02155e-14 0.0112223 5.46106e-06 -3.8595e-14 0.0112156 3.89637e-06 -2.53312e-14 0.0112109 2.74874e-06 -1.68795e-14 0.0112075 1.91762e-06 -1.08824e-14 0.0112052 1.32318e-06 -5.26588e-15 0.0112035 9.03185e-07 -3.19278e-15 0.0112024 6.09976e-07 -2.37761e-15 0.0112016 4.07672e-07 -1.90028e-15 0.0112011 2.69667e-07 -1.34243e-15 0.0112007 1.76611e-07 -9.65919e-16 0.0112005 1.14449e-07 -7.07358e-16 0.0112003 7.3525e-08 -5.33007e-16 4.56728e-08 -3.69091e-16 0.0168444 5.41689e-05 -2.87267e-12 0.0170005 0.000122968 -6.02619e-12 0.0173625 0.000370182 -1.49099e-11 0.0191048 0.00102205 -3.22389e-11 0.0233923 0.00303706 -6.848e-11 0.0287073 0.00813136 -1.38274e-10 0.0308854 0.0151893 -4.3684e-11 0.0312418 0.0176418 -5.79793e-12 0.0318786 0.0178518 1.00217e-11 0.0311375 0.0181274 1.42867e-11 0.0302611 0.0171379 2.38685e-11 0.0293471 0.0160222 3.0561e-11 0.0284783 0.0148318 2.62003e-11 0.0276719 0.0136928 2.97138e-11 0.0269304 0.0126144 3.12083e-11 0.026242 0.0116097 2.94696e-11 0.0256029 0.0106781 2.65146e-11 0.0250248 0.00981871 2.33674e-11 0.0245177 0.00902681 2.064e-11 0.0240923 0.0082933 1.81202e-11 0.0237568 0.00761439 1.53813e-11 0.0234996 0.0069865 1.27816e-11 0.0233061 0.00640667 1.05379e-11 0.0231674 0.00586638 8.2407e-12 0.0230743 0.00536235 6.56347e-12 0.0230141 0.00489132 4.61122e-12 0.0229759 0.00445033 3.01179e-12 0.0229569 0.00403853 1.25659e-12 0.022955 0.00365601 -1.24935e-13 0.0229684 0.0033027 -1.4122e-12 0.0229841 0.00297684 -2.21959e-12 0.0229957 0.00267532 -2.31175e-12 0.0229964 0.00239644 -1.80837e-12 0.0229699 0.00213746 -8.96461e-13 0.0229199 0.00189634 4.45836e-13 0.0228537 0.00167271 1.86834e-12 0.0227729 0.00146618 3.44303e-12 0.0226869 0.00127593 5.08263e-12 0.0226073 0.00110153 6.56959e-12 0.022533 0.000942123 8.53188e-12 0.0224596 0.000796133 9.90589e-12 0.0223896 0.000662127 1.11168e-11 0.0223278 0.000539264 1.30632e-11 0.022276 0.000426565 1.3483e-11 0.022213 0.000322542 1.51143e-11 0.0221277 0.000227191 1.54512e-11 0.0220372 0.000139593 1.48921e-11 0.0219488 6.06076e-05 1.63084e-11 0.0218792 -3.71092e-06 1.61107e-11 0.0218516 -6.26955e-05 1.3338e-11 0.0218703 -0.00011282 1.35784e-11 0.0219349 -0.000150541 1.61777e-11 0.0220261 -0.000179128 1.64988e-11 0.0221301 -0.000199503 1.7909e-11 0.0222171 -0.00020898 1.62188e-11 0.0222876 -0.000207163 1.81102e-11 0.0223438 -0.000198454 1.53966e-11 0.0223857 -0.000183598 1.40953e-11 0.0224162 -0.0001617 1.56212e-11 0.0224369 -0.000134707 1.25448e-11 0.0224467 -0.000103783 8.41162e-12 0.0224499 -6.82017e-05 5.16029e-12 0.022464 -2.62495e-05 9.14108e-13 0.0225141 2.25395e-05 -2.44074e-12 0.0225972 7.95741e-05 -3.77532e-12 0.0226651 0.000145527 -6.10766e-12 0.0226674 0.000218016 -1.13063e-11 0.0224744 0.000290137 -2.31804e-11 0.0218562 0.000346413 -4.63247e-11 0.020309 0.000358332 -8.41065e-11 0.0187265 0.000330934 -6.30973e-11 0.0171175 0.000295256 -4.83158e-11 0.0156353 0.00025518 -3.58095e-11 0.0143996 0.000214028 -2.51303e-11 0.0134458 0.000175232 -1.69024e-11 0.0127489 0.000140885 -1.11318e-11 0.0122579 0.000111765 -7.20948e-12 0.0119209 8.77735e-05 -4.42996e-12 0.0116926 6.83995e-05 -2.79361e-12 0.0115383 5.28923e-05 -1.73885e-12 0.0114338 4.05725e-05 -1.07389e-12 0.0113626 3.08542e-05 -6.54655e-13 0.0113136 2.3242e-05 -3.90431e-13 0.0112796 1.73256e-05 -2.59206e-13 0.0112559 1.27877e-05 -1.56915e-13 0.0112392 9.34173e-06 -9.64425e-14 0.0112274 6.75273e-06 -6.04647e-14 0.0112191 4.82947e-06 -3.86796e-14 0.0112132 3.41722e-06 -2.52126e-14 0.0112091 2.39228e-06 -1.65818e-14 0.0112063 1.65708e-06 -1.02489e-14 0.0112043 1.13583e-06 -4.83629e-15 0.0112029 7.70484e-07 -3.01678e-15 0.0112019 5.17317e-07 -2.33584e-15 0.0112013 3.43839e-07 -1.75562e-15 0.0112009 2.26257e-07 -1.22855e-15 0.0112006 1.47448e-07 -8.78199e-16 0.0112004 9.51011e-08 -6.42216e-16 0.0112003 6.08249e-08 -4.84285e-16 3.762e-08 -3.40831e-16 0.0168308 1.81215e-05 -1.28679e-12 0.0168535 5.39873e-05 -3.38427e-12 0.0170151 0.000124395 -7.39911e-12 0.0174337 0.000374889 -1.75572e-11 0.0192306 0.00103239 -3.84357e-11 0.0235715 0.00301622 -7.8645e-11 0.0287646 0.00785301 -1.5555e-10 0.0309269 0.0146949 -5.77676e-11 0.0314062 0.0172127 -8.11127e-12 0.0320076 0.0175857 1.32715e-11 0.0314578 0.0177932 1.71401e-11 0.0307239 0.0169634 2.25369e-11 0.0298682 0.016001 2.36776e-11 0.0290212 0.0148993 3.04107e-11 0.0282314 0.0137837 3.58855e-11 0.0275091 0.0127083 3.49717e-11 0.0268528 0.011706 2.99949e-11 0.026266 0.0107894 2.49983e-11 0.0257522 0.0099479 2.09241e-11 0.0253092 0.00916974 1.78094e-11 0.024943 0.00844646 1.43489e-11 0.0246674 0.00777686 1.15473e-11 0.0244638 0.00715816 8.85174e-12 0.0243133 0.00658634 6.06286e-12 0.0242037 0.00605162 4.31404e-12 0.0241247 0.0055502 3.006e-12 0.0240676 0.00508109 1.72556e-12 0.0240268 0.00464377 5.02746e-13 0.0240049 0.00423788 -6.77211e-13 0.0239979 0.00386409 -1.35065e-12 0.0239999 0.00351964 -1.4676e-12 0.0239948 0.00320246 -9.83128e-13 0.0239757 0.00290765 2.28321e-13 0.0239371 0.00263425 1.91253e-12 0.0238656 0.0023792 4.04992e-12 0.0237742 0.00214116 6.50451e-12 0.0236729 0.00192058 9.03121e-12 0.0235628 0.00171692 1.16217e-11 0.0234565 0.00152919 1.39235e-11 0.0233601 0.00135691 1.65427e-11 0.0232672 0.00119872 1.84517e-11 0.0231739 0.00105275 1.96934e-11 0.0230833 0.000917732 2.16846e-11 0.0230035 0.000793093 2.19099e-11 0.0229213 0.000677688 2.18585e-11 0.0228177 0.000570477 2.2602e-11 0.022707 0.000471538 2.06515e-11 0.0225985 0.000380149 2.11218e-11 0.0225028 0.000299186 2.04177e-11 0.0224426 0.000228314 1.64155e-11 0.0224308 0.000167683 1.70988e-11 0.0224625 0.000116931 2.09015e-11 0.0225216 7.54228e-05 1.9513e-11 0.0225832 4.36515e-05 1.90296e-11 0.0226357 1.938e-05 1.80047e-11 0.0226765 3.05155e-06 1.77884e-11 0.0227039 -4.83332e-06 1.85734e-11 0.0227157 -5.31149e-06 1.66963e-11 0.0227168 4.57928e-07 1.63846e-11 0.0227102 1.2331e-05 1.43185e-11 0.0226972 2.95872e-05 9.88668e-12 0.0226788 5.23465e-05 5.533e-12 0.0226678 8.22695e-05 3.65645e-12 0.0226963 0.000121699 2.40272e-12 0.0227691 0.000171543 6.20092e-13 0.0228288 0.000231854 -2.31393e-12 0.0228104 0.00029821 -1.03636e-11 0.0225377 0.000361499 -3.2304e-11 0.0216969 0.000405848 -6.45754e-11 0.0202734 0.000405814 -8.35737e-11 0.0187258 0.000378831 -5.86839e-11 0.0171104 0.000338119 -4.60969e-11 0.0156139 0.00028879 -3.45797e-11 0.0143671 0.000237494 -2.43583e-11 0.013408 0.000189732 -1.63846e-11 0.0127105 0.000148627 -1.07796e-11 0.012222 0.000114928 -6.97349e-12 0.011889 8.81021e-05 -4.2881e-12 0.0116653 6.7148e-05 -2.7163e-12 0.0115156 5.08921e-05 -1.6987e-12 0.0114152 3.83376e-05 -1.05152e-12 0.0113476 2.8682e-05 -6.4722e-13 0.0113018 2.12911e-05 -3.92519e-13 0.0112704 1.56644e-05 -2.53573e-13 0.0112487 1.14237e-05 -1.57225e-13 0.0112338 8.25517e-06 -9.71114e-14 0.0112233 5.90872e-06 -6.09259e-14 0.0112161 4.18788e-06 -3.88575e-14 0.0112111 2.93876e-06 -2.51427e-14 0.0112076 2.0416e-06 -1.63155e-14 0.0112051 1.40412e-06 -9.60051e-15 0.0112035 9.56053e-07 -4.53315e-15 0.0112023 6.44506e-07 -2.88337e-15 0.0112016 4.30203e-07 -2.15097e-15 0.011201 2.84362e-07 -1.62738e-15 0.0112007 1.86142e-07 -1.1277e-15 0.0112005 1.20706e-07 -8.00749e-16 0.0112003 7.74863e-08 -5.8487e-16 0.0112002 4.93406e-08 -4.41609e-16 3.03855e-08 -3.16087e-16 0.0168095 7.12332e-06 -7.06976e-13 0.0168319 1.77875e-05 -1.46718e-12 0.0168592 4.89612e-05 -3.90997e-12 0.0170203 0.000124386 -8.74827e-12 0.0174652 0.000353551 -2.05951e-11 0.019252 0.00100587 -4.54369e-11 0.0233224 0.00296024 -8.75013e-11 0.0287041 0.00712108 -1.78057e-10 0.0309348 0.0141729 -6.69887e-11 0.0315961 0.0168158 -2.76111e-12 0.0321527 0.0173251 1.5896e-11 0.0317705 0.0174792 1.63485e-11 0.0311986 0.0167889 1.46122e-11 0.0303944 0.0159851 1.2075e-11 0.029594 0.0149697 3.1375e-11 0.0288367 0.0138875 3.85819e-11 0.0281558 0.0128302 3.50515e-11 0.0275496 0.0118485 2.81944e-11 0.0270156 0.0109437 2.2555e-11 0.0265574 0.0101106 1.81662e-11 0.0261698 0.00933931 1.44294e-11 0.0258665 0.00862276 1.02388e-11 0.0256496 0.0079624 7.0341e-12 0.025488 0.00735277 5.22939e-12 0.0253609 0.00678448 3.56983e-12 0.0252595 0.00625082 2.1392e-12 0.0251808 0.00575207 1.11678e-12 0.0251213 0.00528845 3.03924e-13 0.0250789 0.00485974 -1.50414e-13 0.0250537 0.00446469 -1.5836e-13 0.0250365 0.00410184 4.0142e-13 0.0250162 0.00376692 1.64086e-12 0.0249768 0.00345686 3.58591e-12 0.0249153 0.00316697 6.16089e-12 0.024829 0.00289708 9.04133e-12 0.0247114 0.00264435 1.22288e-11 0.0245833 0.00240833 1.55895e-11 0.0244528 0.00218998 1.87749e-11 0.0243197 0.00198815 2.15182e-11 0.0241963 0.00180154 2.43487e-11 0.0240826 0.00162964 2.62105e-11 0.0239682 0.00147058 2.74573e-11 0.0238508 0.00132219 2.92101e-11 0.023741 0.0011841 2.80413e-11 0.0236351 0.00105572 2.62984e-11 0.0235116 0.000935502 2.5724e-11 0.0233786 0.00082337 2.28524e-11 0.0232511 0.000719025 2.17061e-11 0.0231315 0.000623998 2.15183e-11 0.023042 0.000539727 1.75424e-11 0.0229969 0.000465232 1.83617e-11 0.0229947 0.000400815 1.95595e-11 0.0230216 0.000345892 1.9611e-11 0.0230591 0.000299772 1.94506e-11 0.0230902 0.00026189 1.92432e-11 0.0231053 0.000231576 1.89056e-11 0.0231003 0.000208906 1.83554e-11 0.023085 0.00019352 1.77642e-11 0.0230604 0.000185702 1.6762e-11 0.0230296 0.000184925 1.26248e-11 0.0229964 0.000190185 1.12321e-11 0.0229628 0.000201847 8.44919e-12 0.0229386 0.000221497 6.07937e-12 0.0229407 0.000251214 4.29532e-12 0.0229717 0.000291844 1.35232e-13 0.0229776 0.000341828 -6.92473e-12 0.0228852 0.000396718 -2.0155e-11 0.0225542 0.000446766 -3.89011e-11 0.0215656 0.000477077 -7.37948e-11 0.0202833 0.000469557 -6.17643e-11 0.0187356 0.000437791 -5.27743e-11 0.0170965 0.000385824 -4.36933e-11 0.0155787 0.000322894 -3.33394e-11 0.0143198 0.000258938 -2.35984e-11 0.0133574 0.000201328 -1.59027e-11 0.0126624 0.000153461 -1.04642e-11 0.0121794 0.000115592 -6.76638e-12 0.011853 8.64747e-05 -4.18425e-12 0.0116357 6.44613e-05 -2.65725e-12 0.0114917 4.78838e-05 -1.66743e-12 0.0113963 3.54258e-05 -1.03954e-12 0.0113328 2.60794e-05 -6.42704e-13 0.0112902 1.9083e-05 -3.87851e-13 0.0112616 1.38587e-05 -2.53171e-13 0.0112421 9.98557e-06 -1.58581e-13 0.0112288 7.13885e-06 -9.787e-14 0.0112197 5.06e-06 -6.12737e-14 0.0112134 3.55443e-06 -3.89325e-14 0.0112091 2.47383e-06 -2.50156e-14 0.0112062 1.7056e-06 -1.60238e-14 0.0112042 1.16478e-06 -8.9351e-15 0.0112028 7.87879e-07 -4.29907e-15 0.0112019 5.27864e-07 -2.91108e-15 0.0112012 3.50306e-07 -2.1983e-15 0.0112008 2.30286e-07 -1.51293e-15 0.0112006 1.49966e-07 -1.03836e-15 0.0112004 9.67708e-08 -7.32616e-16 0.0112003 6.18317e-08 -5.34733e-16 0.0112002 3.92015e-08 -4.04584e-16 2.40393e-08 -2.94631e-16 0.0168055 2.33409e-06 -3.02103e-13 0.0168144 5.38773e-06 -5.53189e-13 0.0168267 1.77305e-05 -1.7792e-12 0.016885 3.94464e-05 -3.02768e-12 0.0169974 0.00012466 -1.0708e-11 0.0175686 0.000296344 -1.67492e-11 0.019137 0.000968478 -4.84635e-11 0.0227481 0.00260944 -9.82543e-11 0.0283007 0.00643157 -2.07807e-10 0.0309123 0.0134931 -6.5221e-11 0.0318512 0.0163826 2.48017e-12 0.032383 0.0170662 8.74041e-12 0.032098 0.0172037 6.00491e-12 0.0315973 0.0166286 5.13184e-12 0.0309137 0.0159157 1.54724e-11 0.0302071 0.0150222 3.5552e-11 0.0295163 0.0140069 3.87001e-11 0.0288853 0.0129936 3.05594e-11 0.0283228 0.0120321 2.32144e-11 0.0278448 0.0111382 1.79207e-11 0.0274401 0.0103104 1.30574e-11 0.0271118 0.00954035 9.5339e-12 0.0268699 0.00882838 7.12224e-12 0.0266879 0.00817185 6.17632e-12 0.0265394 0.00756348 3.28379e-12 0.0264158 0.00699599 1.75275e-12 0.0263143 0.0064668 1.20369e-12 0.0262363 0.00597632 1.05436e-12 0.0261777 0.00552431 1.38897e-12 0.026133 0.00510829 2.15845e-12 0.026096 0.0047255 3.66486e-12 0.0260547 0.00437237 5.66895e-12 0.0259958 0.00404468 8.33195e-12 0.0259098 0.00373867 1.15083e-11 0.0257989 0.0034515 1.51184e-11 0.0256638 0.0031829 1.87495e-11 0.0255062 0.002931 2.26053e-11 0.0253496 0.00269593 2.60004e-11 0.0251958 0.00247856 2.92307e-11 0.0250428 0.00227663 3.21806e-11 0.0249028 0.00208909 3.39357e-11 0.0247672 0.00191528 3.44091e-11 0.0246257 0.00175244 3.48715e-11 0.0244862 0.00159943 3.36176e-11 0.0243529 0.0014564 3.07745e-11 0.0242086 0.00132189 3.03279e-11 0.0240531 0.0011954 2.67939e-11 0.0239051 0.00107701 2.46241e-11 0.0237658 0.000967418 2.72166e-11 0.0236507 0.000868919 2.1713e-11 0.0235751 0.000779969 2.38236e-11 0.0235391 0.000701293 2.42856e-11 0.0235331 0.000632283 2.43201e-11 0.0235402 0.000572099 2.39147e-11 0.0235448 0.000519988 2.3201e-11 0.0235374 0.000475524 2.20786e-11 0.023514 0.000438648 2.07719e-11 0.0234768 0.000409413 1.91098e-11 0.0234303 0.000388028 1.71992e-11 0.0233791 0.000374679 1.44763e-11 0.0233287 0.000369184 1.1483e-11 0.0232806 0.000371262 6.85359e-12 0.0232373 0.000381647 4.70423e-12 0.0232034 0.000401636 1.5603e-12 0.0231897 0.000432032 -2.66624e-12 0.0231632 0.000471766 -9.0332e-12 0.0230235 0.000516552 -2.05336e-11 0.0226256 0.000556049 -3.84324e-11 0.0216322 0.000570698 -6.40111e-11 0.0203325 0.000552164 -5.4595e-11 0.0187456 0.000504888 -4.95062e-11 0.0170677 0.000434915 -4.20581e-11 0.0155241 0.000354308 -3.23347e-11 0.0142547 0.000276069 -2.29074e-11 0.013293 0.000208512 -1.54453e-11 0.0126046 0.000154539 -1.01786e-11 0.0121307 0.000113344 -6.55911e-12 0.0118136 8.27565e-05 -4.10683e-12 0.0116044 6.03322e-05 -2.61008e-12 0.0114673 4.39284e-05 -1.64463e-12 0.0113774 3.19246e-05 -1.02658e-12 0.0113183 2.31319e-05 -6.38152e-13 0.0112793 1.6689e-05 -3.93667e-13 0.0112534 1.19672e-05 -2.45282e-13 0.011236 8.52137e-06 -1.60612e-13 0.0112243 6.02773e-06 -9.82994e-14 0.0112164 4.23169e-06 -6.15179e-14 0.011211 2.94671e-06 -3.8966e-14 0.0112074 2.03445e-06 -2.48697e-14 0.011205 1.39228e-06 -1.57233e-14 0.0112033 9.44272e-07 -8.32278e-15 0.0112022 6.34621e-07 -4.11153e-15 0.0112015 4.22626e-07 -2.69618e-15 0.011201 2.7888e-07 -2.12618e-15 0.0112006 1.82353e-07 -1.41111e-15 0.0112004 1.18151e-07 -9.59645e-16 0.0112003 7.5877e-08 -6.73144e-16 0.0112002 4.82606e-08 -4.9131e-16 0.0112001 3.04685e-08 -3.72755e-16 1.86073e-08 -2.76263e-16 0.016805 4.25755e-07 -1.54285e-13 0.0168066 1.63493e-06 -3.43548e-13 0.0168177 4.46419e-06 -6.25457e-13 0.0168255 1.43708e-05 -1.83158e-12 0.0168931 3.47565e-05 -3.0578e-12 0.0169684 0.000106404 -1.10489e-11 0.0175501 0.000262234 -1.70383e-11 0.0188929 0.000835758 -5.5066e-11 0.0221788 0.00226335 -1.01361e-10 0.0279705 0.00557214 -2.33793e-10 0.0310633 0.0127133 -5.37642e-11 0.0322013 0.0158449 -1.01447e-11 0.0325733 0.0168448 -1.9134e-12 0.0323239 0.0169009 -7.62311e-13 0.0318875 0.016396 2.035e-14 0.0314276 0.0157884 2.0659e-11 0.0308542 0.0150579 3.25786e-11 0.0302429 0.0141385 3.16813e-11 0.0296783 0.0131738 2.0899e-11 0.0291856 0.0122433 1.52959e-11 0.0287647 0.0113628 1.22921e-11 0.0284081 0.0105358 9.70569e-12 0.0281273 0.00976379 7.22831e-12 0.0279143 0.00905337 4.52001e-12 0.0277402 0.00840002 3.70138e-12 0.0275956 0.00779496 2.23217e-12 0.0274744 0.00723422 2.36225e-12 0.0273768 0.00671571 3.03039e-12 0.0273006 0.00623852 4.21344e-12 0.027237 0.00580027 5.92133e-12 0.0271769 0.00539617 8.1923e-12 0.0271115 0.00502255 1.08302e-11 0.0270299 0.00467567 1.41066e-11 0.0269209 0.00435145 1.74958e-11 0.0267827 0.00404637 2.13505e-11 0.0266217 0.00375926 2.49486e-11 0.0264437 0.00348969 2.8714e-11 0.0262547 0.00323715 3.25001e-11 0.0260751 0.00300124 3.57767e-11 0.0258998 0.00278259 3.84358e-11 0.025728 0.0025779 3.98623e-11 0.0255692 0.00238697 4.0219e-11 0.0254056 0.00220825 4.04351e-11 0.025237 0.00203897 3.98565e-11 0.0250747 0.00187947 3.7728e-11 0.0249078 0.00172914 3.75604e-11 0.0247293 0.00158696 3.57859e-11 0.0245584 0.0014532 3.27212e-11 0.0244 0.00132832 3.64608e-11 0.0242611 0.00121428 3.29723e-11 0.0241581 0.00111058 3.13942e-11 0.0240912 0.00101697 3.23998e-11 0.0240525 0.000933249 3.14601e-11 0.0240287 0.000858496 2.99656e-11 0.024006 0.000791932 2.81388e-11 0.0239754 0.000733161 2.5935e-11 0.0239327 0.000682191 2.37115e-11 0.0238777 0.000639262 2.10857e-11 0.0238134 0.000604679 1.85739e-11 0.0237455 0.000578822 1.53947e-11 0.02368 0.000561906 1.11296e-11 0.0236204 0.000553838 5.53323e-12 0.0235654 0.000555217 1.9171e-12 0.0235134 0.000566406 -1.17189e-12 0.0234691 0.000588252 -3.84394e-12 0.023414 0.000619038 -9.11973e-12 0.0232303 0.000653882 -2.07708e-11 0.0227261 0.000680687 -3.9251e-11 0.0217297 0.000677636 -5.41546e-11 0.0203829 0.000640677 -5.01282e-11 0.0187366 0.000572076 -4.75934e-11 0.0170117 0.000478836 -4.09521e-11 0.0154432 0.000378663 -3.1521e-11 0.0141686 0.000286161 -2.23078e-11 0.0132138 0.000209763 -1.50027e-11 0.0125377 0.000151124 -9.94257e-12 0.0120769 0.000107938 -6.40238e-12 0.0117717 7.69228e-05 -4.00111e-12 0.0115724 5.48625e-05 -2.56089e-12 0.011443 3.91627e-05 -1.61985e-12 0.0113592 2.79629e-05 -1.01743e-12 0.0113047 1.99481e-05 -6.35335e-13 0.0112692 1.41977e-05 -3.95416e-13 0.0112459 1.006e-05 -2.42169e-13 0.0112305 7.08169e-06 -1.60106e-13 0.0112203 4.95764e-06 -9.87337e-14 0.0112135 3.44813e-06 -6.16497e-14 0.011209 2.3809e-06 -3.89065e-14 0.011206 1.63115e-06 -2.46758e-14 0.011204 1.10833e-06 -1.54012e-14 0.0112026 7.46719e-07 -7.77237e-15 0.0112017 4.98751e-07 -3.95476e-15 0.0112011 3.3022e-07 -2.56141e-15 0.0112008 2.16718e-07 -2.01156e-15 0.0112005 1.40979e-07 -1.321e-15 0.0112003 9.09003e-08 -8.90878e-16 0.0112002 5.81077e-08 -6.21809e-16 0.0112002 3.67964e-08 -4.5426e-16 0.0112001 2.31371e-08 -3.45881e-16 1.40745e-08 -2.60792e-16 0.0168034 4.78131e-08 -8.64363e-14 0.016807 2.56295e-07 -2.40888e-13 0.01681 8.89237e-07 -4.10784e-13 0.0168209 3.07171e-06 -7.84757e-13 0.016832 1.0723e-05 -1.79623e-12 0.0168876 2.77873e-05 -3.35799e-12 0.0169696 8.5653e-05 -1.02646e-11 0.0174326 0.000218149 -1.75563e-11 0.0186265 0.000679113 -5.29112e-11 0.021477 0.00186224 -9.78492e-11 0.0276882 0.00462905 -2.10642e-10 0.0311522 0.0115185 -7.29061e-11 0.0323215 0.0150562 -6.07738e-11 0.0324978 0.0164632 -2.9193e-11 0.0324322 0.0164459 -1.28321e-11 0.0322595 0.0160839 1.39283e-11 0.0319545 0.0155984 1.62386e-11 0.0315119 0.015039 2.26257e-11 0.031016 0.0142541 1.77337e-11 0.0305446 0.0133624 1.26681e-11 0.0301229 0.0124673 1.08532e-11 0.0297442 0.0116028 1.01799e-11 0.0294261 0.0107778 5.94521e-12 0.0291802 0.0100134 4.58131e-12 0.0289796 0.00931176 5.08377e-12 0.0288123 0.00866519 3.99751e-12 0.0286715 0.00806927 4.84524e-12 0.0285526 0.00751982 6.35661e-12 0.0284546 0.00701445 8.30895e-12 0.0283689 0.00655024 1.08732e-11 0.0282827 0.00612205 1.38213e-11 0.0281891 0.00572519 1.68235e-11 0.0280805 0.00535615 2.01042e-11 0.0279473 0.00501107 2.33973e-11 0.0277833 0.00468593 2.67883e-11 0.0275934 0.00437825 2.99311e-11 0.0273876 0.00408812 3.29347e-11 0.0271753 0.00381532 3.63705e-11 0.0269608 0.00355989 3.91331e-11 0.0267597 0.00332043 4.16003e-11 0.026562 0.00309758 4.32948e-11 0.0263706 0.00288712 4.4213e-11 0.0261874 0.00268995 4.51759e-11 0.0259926 0.00250323 4.54532e-11 0.0257986 0.00232535 4.47253e-11 0.0256075 0.00215719 4.47231e-11 0.0254068 0.00199779 4.39455e-11 0.0252111 0.00184722 4.18156e-11 0.0250319 0.00170579 4.34165e-11 0.0248704 0.00157516 4.2465e-11 0.0247414 0.0014556 3.84796e-11 0.0246459 0.00134629 3.94311e-11 0.0245765 0.00124714 3.75315e-11 0.0245221 0.00115723 3.51503e-11 0.0244717 0.00107582 3.24604e-11 0.0244178 0.00100255 2.94488e-11 0.0243563 0.000937527 2.65163e-11 0.0242858 0.000881022 2.33474e-11 0.0242073 0.000833508 2.03194e-11 0.0241249 0.000795342 1.67908e-11 0.0240463 0.000767087 1.25111e-11 0.0239764 0.000748587 5.9256e-12 0.0239137 0.000739999 1.9102e-12 0.0238518 0.00074251 -1.36624e-12 0.0237861 0.00075533 -4.0446e-12 0.0236947 0.000776787 -9.13917e-12 0.0234694 0.000800005 -1.95786e-11 0.0228335 0.000809917 -4.22897e-11 0.021828 0.000785286 -4.47322e-11 0.02041 0.000725246 -4.73171e-11 0.0186918 0.000629828 -4.6314e-11 0.0169185 0.000511214 -4.00244e-11 0.0153315 0.00039167 -3.07467e-11 0.0140605 0.000286817 -2.16861e-11 0.0131207 0.000203999 -1.45866e-11 0.0124628 0.000142854 -9.6607e-12 0.0120194 9.94013e-05 -6.23193e-12 0.0117285 6.9174e-05 -3.91754e-12 0.0115404 4.82903e-05 -2.51304e-12 0.0114196 3.38137e-05 -1.59485e-12 0.011342 2.37301e-05 -1.00632e-12 0.0112922 1.66705e-05 -6.31445e-13 0.01126 1.17064e-05 -3.96377e-13 0.0112392 8.20397e-06 -2.42373e-13 0.0112257 5.71954e-06 -1.53755e-13 0.0112169 3.96191e-06 -1.01689e-13 0.0112111 2.73149e-06 -6.19122e-14 0.0112073 1.87085e-06 -3.87701e-14 0.0112048 1.27233e-06 -2.44316e-14 0.0112031 8.58696e-07 -1.506e-14 0.0112021 5.7492e-07 -7.31102e-15 0.0112013 3.81767e-07 -3.83244e-15 0.0112009 2.51386e-07 -2.60523e-15 0.0112006 1.64132e-07 -1.90935e-15 0.0112004 1.06253e-07 -1.24189e-15 0.0112003 6.81949e-08 -8.31518e-16 0.0112002 4.34036e-08 -5.78205e-16 0.0112001 2.73709e-08 -4.23207e-16 0.0112001 1.71452e-08 -3.23601e-16 1.03911e-08 -2.47916e-16 0.0168033 4.18401e-08 -7.03959e-14 0.0168051 2.84619e-08 -3.48764e-13 0.0168089 1.35977e-07 -1.52476e-13 0.0168142 4.66308e-07 -5.05188e-13 0.0168265 1.87826e-06 -9.23892e-13 0.0168356 6.6183e-06 -1.77721e-12 0.0168894 2.02279e-05 -4.37103e-12 0.0169707 6.23238e-05 -6.48155e-12 0.0172994 0.000172368 -2.10422e-11 0.0183086 0.000515299 -3.97936e-11 0.0207233 0.00144109 -9.8565e-11 0.0269969 0.00377382 -1.84043e-10 0.0306967 0.00879202 -2.42536e-10 0.0319896 0.0139985 -1.23665e-10 0.0324683 0.0157516 -2.03994e-11 0.0325287 0.0160532 1.07997e-12 0.0324893 0.0158096 3.04116e-13 0.0324586 0.015368 8.64212e-13 0.0322086 0.0149311 3.29434e-12 0.0318472 0.0143158 7.71441e-12 0.0314724 0.013534 7.03699e-12 0.0311101 0.0126986 8.04286e-12 0.030778 0.0118618 6.52422e-12 0.0305039 0.0110604 5.47731e-12 0.0302758 0.010314 7.41627e-12 0.0300836 0.00962432 6.67893e-12 0.0299197 0.0089897 8.16972e-12 0.0297775 0.00840546 1.07725e-11 0.0296511 0.00786778 1.34493e-11 0.0295352 0.00737161 1.63005e-11 0.0294198 0.00691451 1.93816e-11 0.0292948 0.00649057 2.23681e-11 0.0291556 0.00609579 2.53452e-11 0.0289945 0.0057261 2.80927e-11 0.0288035 0.00537731 3.06229e-11 0.0285839 0.00504616 3.30059e-11 0.0283464 0.0047321 3.51206e-11 0.0281029 0.00443564 3.72278e-11 0.0278617 0.00415706 3.91926e-11 0.027625 0.00389556 4.14259e-11 0.027402 0.00364953 4.32992e-11 0.0271806 0.003419 4.47516e-11 0.0269668 0.00319957 4.61412e-11 0.0267533 0.00299311 4.69292e-11 0.0265265 0.00279547 4.69587e-11 0.026306 0.0026069 4.70175e-11 0.0260844 0.00242829 4.65745e-11 0.0258643 0.00225913 4.54815e-11 0.0256627 0.0020997 4.58916e-11 0.0254784 0.00195101 4.59052e-11 0.0253231 0.00181424 4.25972e-11 0.0252003 0.00168807 4.25671e-11 0.0251027 0.00157258 4.05709e-11 0.0250202 0.00146685 3.7954e-11 0.0249434 0.00137011 3.48724e-11 0.0248661 0.00128204 3.14598e-11 0.0247854 0.00120276 2.80926e-11 0.0246998 0.00113268 2.4642e-11 0.024609 0.0010722 2.13793e-11 0.024515 0.00102183 1.75625e-11 0.0244245 0.000981974 1.32923e-11 0.0243451 0.000953027 6.90053e-12 0.0242754 0.000934548 2.81396e-12 0.0242048 0.000926156 -9.85521e-13 0.0241191 0.000928314 -4.63666e-12 0.0239866 0.000937815 -1.0138e-11 0.023695 0.000945674 -1.86889e-11 0.0229876 0.000932088 -3.6449e-11 0.0219028 0.000883277 -4.1185e-11 0.0203925 0.000795303 -4.57189e-11 0.0185969 0.000668435 -4.53569e-11 0.0167814 0.000526067 -3.91638e-11 0.0151875 0.00039 -2.99544e-11 0.0139319 0.000276598 -2.10678e-11 0.0130163 0.000190903 -1.41881e-11 0.0123828 0.000129987 -9.41187e-12 0.0119603 8.81446e-05 -6.07302e-12 0.0116857 5.99384e-05 -3.82862e-12 0.0115097 4.09801e-05 -2.46786e-12 0.0113976 2.81719e-05 -1.57129e-12 0.0113264 1.94522e-05 -9.94223e-13 0.011281 1.34674e-05 -6.27236e-13 0.011252 9.33187e-06 -3.95642e-13 0.0112335 6.464e-06 -2.47668e-13 0.0112216 4.46986e-06 -1.51797e-13 0.011214 3.07374e-06 -9.83528e-14 0.0112091 2.09881e-06 -6.1897e-14 0.0112059 1.42683e-06 -3.86548e-14 0.0112038 9.63765e-07 -2.41702e-14 0.0112025 6.46301e-07 -1.47124e-14 0.0112016 4.30201e-07 -6.95001e-15 0.011201 2.84132e-07 -3.71422e-15 0.0112007 1.8615e-07 -2.63933e-15 0.0112004 1.2096e-07 -1.82108e-15 0.0112003 7.79532e-08 -1.17507e-15 0.0112002 4.9819e-08 -7.82584e-16 0.0112001 3.15803e-08 -5.43116e-16 0.0112001 1.98381e-08 -3.98349e-16 0.0112001 1.23832e-08 -3.05627e-16 7.47959e-09 -2.37115e-16 0.0168034 1.09892e-08 -1.30831e-13 0.0168051 8.66719e-09 -2.84423e-13 0.016808 1.52933e-08 -2.72162e-13 0.0168122 9.06257e-08 -5.22996e-13 0.0168199 1.56014e-07 -6.74628e-13 0.0168317 1.05599e-06 -8.61724e-13 0.0168548 3.06221e-06 -1.98082e-12 0.0168814 1.39488e-05 -2.58638e-12 0.01699 3.78138e-05 -8.60995e-12 0.0172207 0.000130281 -1.28748e-11 0.0180743 0.00034717 -3.90141e-11 0.0200514 0.00107237 -7.82725e-11 0.0245835 0.00272855 -1.91102e-10 0.0291888 0.00619401 -3.42728e-10 0.0315443 0.0124653 -9.10914e-11 0.0324944 0.0148143 -2.16096e-11 0.0327336 0.0156425 -1.31011e-11 0.0327984 0.0155615 -8.04702e-12 0.0329333 0.0151522 -8.75529e-12 0.0329185 0.0147271 -4.90851e-12 0.0326916 0.014246 -1.88703e-12 0.0324308 0.013627 3.13535e-12 0.0321409 0.0129005 6.36782e-12 0.0318716 0.0121273 5.92718e-12 0.0316303 0.0113746 1.09132e-11 0.0314181 0.0106607 1.03384e-11 0.0312316 0.00999445 1.26884e-11 0.0310619 0.00937664 1.5373e-11 0.0309007 0.00880287 1.76098e-11 0.0307464 0.00827191 2.0758e-11 0.0305956 0.00778144 2.36131e-11 0.0304386 0.00732753 2.59566e-11 0.0302662 0.00690402 2.82295e-11 0.0300723 0.00650564 3.00268e-11 0.0298504 0.00612887 3.14217e-11 0.0295988 0.00577022 3.27093e-11 0.0293268 0.00542839 3.38838e-11 0.0290483 0.00510417 3.53344e-11 0.0287741 0.00479829 3.67961e-11 0.0285072 0.00451067 3.85215e-11 0.0282492 0.0042394 4.07942e-11 0.0280018 0.0039833 4.37826e-11 0.0277546 0.003741 4.68726e-11 0.027514 0.00350964 4.92248e-11 0.027266 0.00329041 5.08139e-11 0.0270103 0.00307929 5.18783e-11 0.0267647 0.00287844 5.19803e-11 0.0265221 0.00268833 5.20728e-11 0.0262965 0.00250901 5.10441e-11 0.0260907 0.00234042 5.20384e-11 0.0259085 0.00218463 4.77371e-11 0.0257585 0.00204011 4.65471e-11 0.0256342 0.00190706 4.38204e-11 0.0255261 0.00178461 4.03041e-11 0.0254251 0.00167192 3.63424e-11 0.0253257 0.00156855 3.22397e-11 0.0252256 0.00147461 2.82744e-11 0.0251239 0.00139058 2.45483e-11 0.0250203 0.00131689 2.1085e-11 0.0249159 0.00125391 1.74419e-11 0.0248148 0.00120194 1.32545e-11 0.0247242 0.00116131 7.55351e-12 0.0246452 0.00113172 2.7502e-12 0.0245637 0.00111238 4.35981e-13 0.0244539 0.00110093 -2.8458e-12 0.0242723 0.00109327 -8.8753e-12 0.0238525 0.0010781 -2.26829e-11 0.023107 0.00103728 -3.04918e-11 0.0219259 0.000959925 -3.86474e-11 0.0203125 0.000837734 -4.44183e-11 0.0184424 0.000682201 -4.42231e-11 0.0165986 0.000518965 -3.80518e-11 0.0150141 0.000371963 -2.89594e-11 0.0137873 0.000255485 -2.03504e-11 0.0129049 0.000171136 -1.36947e-11 0.0123012 0.000113392 -9.18796e-12 0.0119023 7.49858e-05 -5.86336e-12 0.0116451 4.98616e-05 -3.76913e-12 0.0114814 3.34166e-05 -2.42418e-12 0.0113779 2.25712e-05 -1.54914e-12 0.0113125 1.53467e-05 -9.84509e-13 0.0112713 1.04847e-05 -6.22093e-13 0.0112453 7.18194e-06 -3.91935e-13 0.0112288 4.92128e-06 -2.47022e-13 0.0112183 3.36691e-06 -1.56211e-13 0.0112117 2.29843e-06 -9.61054e-14 0.0112075 1.56336e-06 -5.95373e-14 0.0112048 1.05552e-06 -3.91695e-14 0.011203 7.07624e-07 -2.40393e-14 0.011202 4.71705e-07 -1.44685e-14 0.0112013 3.12404e-07 -6.67218e-15 0.0112008 2.05324e-07 -3.58841e-15 0.0112005 1.33887e-07 -2.50193e-15 0.0112003 8.66172e-08 -1.74143e-15 0.0112002 5.5593e-08 -1.12024e-15 0.0112002 3.53927e-08 -7.45292e-16 0.0112001 2.23537e-08 -5.16578e-16 0.0112001 1.39929e-08 -3.78412e-16 0.0112001 8.70696e-09 -2.90238e-16 5.2431e-09 -2.268e-16 0.0168034 2.0551e-09 -1.44763e-13 0.016805 8.49013e-10 -2.35495e-13 0.016808 1.75982e-09 -2.86287e-13 0.0168118 1.53901e-08 -4.86913e-13 0.0168182 1.00665e-08 -6.10341e-13 0.0168267 1.34336e-07 -8.81969e-13 0.0168413 3.59134e-07 -1.31809e-12 0.0168691 1.76279e-06 -1.66015e-12 0.0169038 6.27139e-06 -3.13022e-12 0.0170114 2.33222e-05 -5.68295e-12 0.017162 7.96564e-05 -1.37504e-11 0.0178205 0.000228732 -2.89345e-11 0.0192865 0.000716467 -6.00447e-11 0.022587 0.00189065 -1.26987e-10 0.0280421 0.0045239 -2.49595e-10 0.0312205 0.0105428 -8.21032e-11 0.032472 0.0137686 -8.09298e-11 0.0330178 0.0150371 -2.81891e-11 0.0332036 0.0151722 -1.58585e-11 0.0332895 0.0148821 -1.6539e-11 0.0334444 0.0144407 -1.35014e-11 0.033485 0.0140377 -3.69301e-12 0.0333468 0.0135855 1.01488e-12 0.0331632 0.0130061 7.2231e-12 0.0329676 0.012344 1.25179e-11 0.032768 0.0116691 1.44843e-11 0.0325733 0.0110101 1.62409e-11 0.032378 0.0103809 1.91872e-11 0.0321846 0.00978582 2.3018e-11 0.0319957 0.00923049 2.46515e-11 0.0318109 0.00871198 2.62535e-11 0.0316233 0.00823003 2.72776e-11 0.0314181 0.00777733 2.81591e-11 0.0311879 0.00734861 2.86537e-11 0.0309306 0.00694035 2.86759e-11 0.0306444 0.00655062 2.86663e-11 0.0303358 0.0061773 2.90395e-11 0.0300188 0.00582109 2.97188e-11 0.0297075 0.00548349 3.07623e-11 0.0294076 0.00516521 3.22594e-11 0.0291173 0.00486459 3.41745e-11 0.0288367 0.00457964 3.63103e-11 0.0285629 0.00430918 3.9135e-11 0.0282882 0.0040514 4.21595e-11 0.0280166 0.00380459 4.40234e-11 0.0277363 0.00356931 4.51385e-11 0.0274579 0.00334297 4.51015e-11 0.0271945 0.0031287 4.47877e-11 0.0269444 0.00292648 4.31989e-11 0.0267173 0.00273622 4.2253e-11 0.0265102 0.00255839 4.00363e-11 0.0263329 0.00239418 3.61144e-11 0.0261835 0.00224173 3.42253e-11 0.0260523 0.00210135 3.09873e-11 0.025929 0.00197188 2.75174e-11 0.0258077 0.00185263 2.40541e-11 0.0256872 0.00174354 2.08327e-11 0.0255675 0.00164503 1.79996e-11 0.0254484 0.00155756 1.55395e-11 0.0253307 0.00148137 1.3036e-11 0.0252174 0.00141647 9.65452e-12 0.0251127 0.00136274 4.84664e-12 0.025017 0.00131971 2.42566e-12 0.0249159 0.0012858 -4.65044e-13 0.0247716 0.0012576 -4.07586e-12 0.0245123 0.00122814 -9.19892e-12 0.024024 0.00118469 -1.72657e-11 0.0231765 0.00111348 -2.69693e-11 0.0218761 0.00100174 -3.6716e-11 0.0201565 0.000843971 -4.29522e-11 0.0182261 0.000664694 -4.28411e-11 0.0163747 0.000488017 -3.67114e-11 0.0148186 0.000338052 -2.78886e-11 0.0136339 0.000224959 -1.96044e-11 0.0127925 0.000146369 -1.3251e-11 0.0122221 9.44391e-05 -8.93027e-12 0.011848 6.09772e-05 -5.71605e-12 0.0116083 3.96861e-05 -3.69056e-12 0.0114564 2.60986e-05 -2.38571e-12 0.0113609 1.734e-05 -1.53106e-12 0.0113009 1.16233e-05 -9.76235e-13 0.0112633 7.8438e-06 -6.19308e-13 0.0112397 5.31589e-06 -3.91509e-13 0.011225 3.60937e-06 -2.46537e-13 0.0112157 2.45026e-06 -1.54288e-13 0.0112099 1.66e-06 -9.66128e-14 0.0112062 1.12015e-06 -6.1378e-14 0.0112039 7.52403e-07 -3.81443e-14 0.0112025 5.03012e-07 -2.24773e-14 0.0112016 3.33875e-07 -1.46665e-14 0.011201 2.20012e-07 -6.58007e-15 0.0112006 1.43856e-07 -3.49041e-15 0.0112004 9.33669e-08 -2.39687e-15 0.0112003 6.01826e-08 -1.6882e-15 0.0112002 3.84908e-08 -1.08445e-15 0.0112001 2.44223e-08 -7.21234e-16 0.0112001 1.53744e-08 -4.9752e-16 0.0112001 9.59311e-09 -3.61537e-16 0.0112001 5.9522e-09 -2.75519e-16 3.57469e-09 -2.15931e-16 0.0168033 4.02808e-10 -1.40082e-13 0.0168051 2.15638e-10 -2.31341e-13 0.0168078 -4.86439e-10 -3.01371e-13 0.016812 6.02536e-09 -4.57022e-13 0.0168177 -9.27085e-09 -5.8734e-13 0.0168264 3.94797e-08 -8.24709e-13 0.0168386 1.14e-08 -1.13748e-12 0.016857 2.46248e-07 -1.50139e-12 0.0168856 6.84155e-07 -2.25903e-12 0.016932 2.92268e-06 -3.24133e-12 0.0170252 1.20321e-05 -4.87919e-12 0.0171625 4.11591e-05 -1.10239e-11 0.0176427 0.000136547 -2.06778e-11 0.0186595 0.000435483 -4.9927e-11 0.0210479 0.0012307 -9.65343e-11 0.0264999 0.00310846 -1.77222e-10 0.0303333 0.0066494 -3.06358e-10 0.032222 0.0121794 -1.06876e-10 0.0331405 0.0138562 -4.88909e-11 0.0335262 0.0145552 -2.69522e-11 0.0337117 0.0145119 -1.65526e-11 0.0338883 0.0141548 -7.82284e-12 0.034096 0.0137471 -5.27252e-12 0.0341371 0.0133802 4.73519e-13 0.0340702 0.0129447 8.72331e-12 0.033959 0.0124187 2.06612e-11 0.0338055 0.011853 2.25344e-11 0.0336279 0.0112761 2.56107e-11 0.0334353 0.0107065 2.58896e-11 0.0332367 0.0101569 2.67943e-11 0.033034 0.00963392 2.69548e-11 0.032822 0.00913855 2.63265e-11 0.0325886 0.00866604 2.57323e-11 0.0323261 0.00821296 2.45178e-11 0.0320338 0.00777596 2.26644e-11 0.0317138 0.00735572 2.12262e-11 0.0313695 0.00695009 2.02343e-11 0.0310152 0.00656009 2.00019e-11 0.0306669 0.00618813 2.05743e-11 0.0303328 0.00583552 2.17844e-11 0.030012 0.00550149 2.35813e-11 0.029701 0.00518396 2.5742e-11 0.0293983 0.00488141 2.79302e-11 0.0290985 0.00459236 2.95459e-11 0.0287968 0.00431554 3.11496e-11 0.0284977 0.00404994 3.1005e-11 0.0281953 0.00379653 3.0876e-11 0.0279047 0.00355391 2.87433e-11 0.0276348 0.00332541 2.55277e-11 0.027384 0.00311029 2.24208e-11 0.0271566 0.00290869 2.08196e-11 0.026954 0.00272179 1.73843e-11 0.0267792 0.00254918 1.62558e-11 0.0266247 0.00238939 1.36347e-11 0.0264801 0.00224258 1.09749e-11 0.0263376 0.00210745 8.62279e-12 0.0261947 0.00198342 6.75484e-12 0.0260518 0.00187065 5.24873e-12 0.0259099 0.00176944 3.20228e-12 0.0257701 0.00167989 2.55461e-12 0.0256346 0.00160161 2.33707e-12 0.0255064 0.00153393 1.76767e-12 0.0253825 0.00147568 3.97018e-13 0.0252453 0.00142447 -1.33964e-12 0.0250506 0.00137555 -3.73167e-12 0.0247175 0.00132042 -7.8783e-12 0.0241304 0.00124701 -1.44983e-11 0.0231614 0.00114198 -2.47974e-11 0.021735 0.000990203 -3.47009e-11 0.0199215 0.000807747 -4.09352e-11 0.0179552 0.000613192 -4.0859e-11 0.0161216 0.00043434 -3.49315e-11 0.0146128 0.000290957 -2.65709e-11 0.0134811 0.000187765 -1.87274e-11 0.0126854 0.000118849 -1.2785e-11 0.0121496 7.47775e-05 -8.65074e-12 0.0117999 4.72032e-05 -5.56839e-12 0.0115765 3.01103e-05 -3.61951e-12 0.0114354 1.94563e-05 -2.35006e-12 0.0113469 1.27326e-05 -1.51414e-12 0.0112915 8.42523e-06 -9.68908e-13 0.011257 5.62349e-06 -6.16434e-13 0.0112354 3.77563e-06 -3.90263e-13 0.011222 2.54312e-06 -2.45893e-13 0.0112137 1.7144e-06 -1.54308e-13 0.0112085 1.15427e-06 -9.66906e-14 0.0112053 7.74807e-07 -6.04439e-14 0.0112033 5.17886e-07 -3.76211e-14 0.011202 3.44448e-07 -2.33462e-14 0.0112013 2.27682e-07 -1.39593e-14 0.0112008 1.49412e-07 -6.33126e-15 0.0112005 9.74694e-08 -3.35721e-15 0.0112003 6.31294e-08 -2.39873e-15 0.0112002 4.05365e-08 -1.67589e-15 0.0112001 2.58411e-08 -1.07107e-15 0.0112001 1.63447e-08 -6.95582e-16 0.0112001 1.02551e-08 -4.75073e-16 0.0112001 6.37869e-09 -3.40562e-16 0.0112001 3.94869e-09 -2.6293e-16 2.36621e-09 -2.10552e-16 0.0168033 1.03271e-10 -1.32857e-13 0.0168051 -3.88882e-11 -2.14529e-13 0.0168078 -1.28539e-10 -2.85605e-13 0.0168119 1.2871e-09 -4.58283e-13 0.0168178 -2.78795e-09 -5.94058e-13 0.0168262 8.51499e-09 -9.16249e-13 0.0168384 -6.77548e-09 -1.10892e-12 0.0168558 3.79328e-08 -1.77198e-12 0.0168802 7.10245e-08 -1.91139e-12 0.0169149 3.53792e-07 -3.37882e-12 0.0169685 1.30575e-06 -3.19561e-12 0.017051 5.33677e-06 -6.146e-12 0.0172283 1.89946e-05 -8.45284e-12 0.0175599 7.07451e-05 -1.53114e-11 0.0182908 0.000233187 -3.35445e-11 0.0201813 0.000715931 -6.48736e-11 0.0235446 0.00186852 -1.553e-10 0.0285589 0.00420522 -2.69356e-10 0.0316054 0.0089279 -1.24881e-10 0.0329697 0.0123916 -6.94539e-11 0.0337396 0.0134623 -3.41907e-11 0.0341017 0.013901 -1.43788e-11 0.0343028 0.0137989 -6.32244e-12 0.0345326 0.0134317 -4.48662e-12 0.0346975 0.0130685 1.8762e-13 0.0347435 0.0126995 6.25403e-12 0.0347121 0.0122869 1.96946e-11 0.034622 0.0118276 2.18232e-11 0.034488 0.0113464 2.26849e-11 0.0343229 0.0108561 2.23467e-11 0.0341381 0.0103689 2.20669e-11 0.03393 0.00989223 1.98729e-11 0.0336916 0.00942386 1.80007e-11 0.0334164 0.00896529 1.5443e-11 0.0331069 0.0085137 1.18609e-11 0.0327666 0.00807257 8.91664e-12 0.0324012 0.00764119 6.36233e-12 0.0320244 0.00722181 4.55984e-12 0.0316519 0.00681718 3.74835e-12 0.0312941 0.00642996 3.36422e-12 0.030952 0.00606072 3.161e-12 0.0306224 0.0057086 2.81646e-12 0.0302998 0.00537128 2.36148e-12 0.029982 0.00504774 1.54627e-12 0.029664 0.00473705 -1.22386e-13 0.0293453 0.00443911 -9.73706e-13 0.0290323 0.0041537 -4.69008e-12 0.0287219 0.00388218 -1.21383e-11 0.0284298 0.00362412 -1.86545e-11 0.0281618 0.00338271 -2.32419e-11 0.0279127 0.00315662 -2.35797e-11 0.0276891 0.00294752 -2.39204e-11 0.0274878 0.00275467 -1.86283e-11 0.0273047 0.00257834 -1.90188e-11 0.0271326 0.00241653 -1.74788e-11 0.0269628 0.0022682 -1.64853e-11 0.0267911 0.00213296 -1.54735e-11 0.0266157 0.00200986 -1.4062e-11 0.0264368 0.00189864 -1.22584e-11 0.0262564 0.00179907 -1.00538e-11 0.0260782 0.00171055 -7.79222e-12 0.0259054 0.00163188 -5.6291e-12 0.0257334 0.00156082 -4.24599e-12 0.0255399 0.00149387 -4.14521e-12 0.0252741 0.00142476 -5.23067e-12 0.0248491 0.00134383 -7.04696e-12 0.0241453 0.00123898 -1.29891e-11 0.0230433 0.00109621 -2.26923e-11 0.0214991 0.000919539 -3.23956e-11 0.0196183 0.000723099 -3.86752e-11 0.0176476 0.000529068 -3.86364e-11 0.0158577 0.000361961 -3.30997e-11 0.0144113 0.000234921 -2.52618e-11 0.0133388 0.000147355 -1.79526e-11 0.0125897 9.09257e-05 -1.23562e-11 0.012087 5.59122e-05 -8.40998e-12 0.0117596 3.45701e-05 -5.43671e-12 0.0115506 2.16525e-05 -3.55906e-12 0.0114187 1.37715e-05 -2.32363e-12 0.0113359 8.89168e-06 -1.50324e-12 0.0112843 5.81728e-06 -9.64888e-13 0.0112522 3.84603e-06 -6.15209e-13 0.0112322 2.56171e-06 -3.89953e-13 0.0112198 1.71387e-06 -2.45862e-13 0.0112122 1.14868e-06 -1.54336e-13 0.0112075 7.6947e-07 -9.6571e-14 0.0112046 5.14221e-07 -6.02811e-14 0.0112028 3.42354e-07 -3.75291e-14 0.0112017 2.26842e-07 -2.31966e-14 0.0112011 1.49429e-07 -1.3631e-14 0.0112007 9.77907e-08 -6.07618e-15 0.0112004 6.35726e-08 -3.34635e-15 0.0112003 4.10456e-08 -2.28919e-15 0.0112002 2.63056e-08 -1.53885e-15 0.0112001 1.67209e-08 -1.01871e-15 0.0112001 1.05482e-08 -6.44584e-16 0.0112001 6.60878e-09 -4.51382e-16 0.0112001 4.10737e-09 -3.65414e-16 0.0112001 2.53214e-09 -2.77444e-16 1.51665e-09 -2.00457e-16 0.0168033 2.52076e-11 -1.29469e-13 0.0168051 -2.30708e-11 -2.03956e-13 0.0168078 -8.54572e-13 -2.92625e-13 0.0168119 2.48756e-10 -4.38962e-13 0.0168178 -6.42383e-10 -6.10946e-13 0.0168262 1.81487e-09 -8.83812e-13 0.0168384 -2.07329e-09 -1.18041e-12 0.0168556 5.82119e-09 -1.67965e-12 0.0168797 8.58076e-09 -2.13867e-12 0.0169127 3.32056e-08 -3.06337e-12 0.0169587 1.73262e-07 -3.54701e-12 0.0170225 5.73415e-07 -5.34957e-12 0.0171157 2.34599e-06 -5.68242e-12 0.0172656 8.63619e-06 -9.42739e-12 0.0175494 3.24809e-05 -1.1364e-11 0.0181169 0.000112309 -2.46251e-11 0.0193385 0.000365423 -4.6788e-11 0.0218081 0.00103448 -8.77382e-11 0.0258373 0.00243694 -1.71695e-10 0.0298646 0.00485708 -2.29881e-10 0.0323528 0.00921768 -9.32671e-11 0.0335439 0.0118938 -4.59404e-11 0.0342326 0.0126991 -2.32455e-11 0.0346052 0.0130075 -9.49182e-12 0.034878 0.0129639 -1.46707e-13 0.0350633 0.0127019 8.18187e-13 0.035185 0.0123554 3.90274e-12 0.0351939 0.0119758 1.12277e-11 0.0351517 0.0115646 1.06509e-11 0.0350631 0.0111378 8.52189e-12 0.0349442 0.0106972 7.38435e-12 0.0347884 0.0102557 3.43884e-12 0.0345922 0.0098097 -8.74789e-13 0.0343521 0.00936255 -3.89448e-12 0.0340695 0.00891011 -1.31257e-11 0.0337535 0.00845708 -1.76065e-11 0.0334093 0.00800747 -2.14177e-11 0.0330505 0.00756365 -2.57046e-11 0.0326921 0.00713001 -2.91602e-11 0.0323449 0.00671022 -3.20532e-11 0.0320151 0.00630655 -3.59098e-11 0.0316968 0.00592005 -3.73452e-11 0.0313827 0.00554902 -4.34477e-11 0.0310675 0.00519164 -4.06634e-11 0.0307525 0.00484832 -5.19693e-11 0.0304352 0.00451971 -5.02936e-11 0.030117 0.00420583 -5.61092e-11 0.0298043 0.00390766 -6.92616e-11 0.0294971 0.0036268 -7.3247e-11 0.029205 0.00336518 -6.86173e-11 0.0289349 0.00312354 -6.20676e-11 0.0286805 0.00290242 -5.86897e-11 0.0284432 0.00270216 -5.36021e-11 0.0282178 0.00252141 -5.35516e-11 0.0279951 0.00235841 -5.06872e-11 0.0277727 0.0022123 -4.69298e-11 0.027547 0.00208119 -4.52713e-11 0.0273157 0.00196361 -4.13518e-11 0.0270764 0.00185748 -3.66989e-11 0.0268296 0.0017622 -3.08053e-11 0.0265807 0.00167745 -2.5039e-11 0.0263345 0.00160019 -1.93794e-11 0.0260857 0.00152634 -1.45278e-11 0.0258074 0.00144995 -1.06797e-11 0.0254414 0.00136314 -9.03227e-12 0.0248946 0.00125723 -8.5714e-12 0.024053 0.00112451 -1.22669e-11 0.0228212 0.000960637 -2.0539e-11 0.0211862 0.000778665 -2.97718e-11 0.019274 0.000590658 -3.5846e-11 0.0173319 0.000417618 -3.60151e-11 0.0156058 0.000276907 -3.10526e-11 0.0142294 0.000174764 -2.39045e-11 0.013216 0.000106942 -1.71672e-11 0.0125101 6.45393e-05 -1.18825e-11 0.0120366 3.89134e-05 -8.26657e-12 0.011728 2.36272e-05 -5.2879e-12 0.0115308 1.45673e-05 -3.5011e-12 0.0114061 9.14064e-06 -2.29907e-12 0.0113279 5.83479e-06 -1.49323e-12 0.0112791 3.78134e-06 -9.61186e-13 0.0112487 2.4805e-06 -6.14026e-13 0.0112299 1.64152e-06 -3.8964e-13 0.0112183 1.09232e-06 -2.45796e-13 0.0112112 7.28753e-07 -1.54286e-13 0.0112068 4.86252e-07 -9.64709e-14 0.0112041 3.23834e-07 -6.01484e-14 0.0112025 2.1493e-07 -3.73976e-14 0.0112015 1.41998e-07 -2.3074e-14 0.0112009 9.32969e-08 -1.34302e-14 0.0112006 6.09162e-08 -5.97103e-15 0.0112004 3.95105e-08 -3.35527e-15 0.0112002 2.54499e-08 -2.26648e-15 0.0112002 1.62745e-08 -1.56168e-15 0.0112001 1.03281e-08 -1.00701e-15 0.0112001 6.50374e-09 -6.58084e-16 0.0112001 4.065e-09 -4.5187e-16 0.0112001 2.52253e-09 -3.23736e-16 0.0112 1.54852e-09 -2.56609e-16 9.29819e-10 -2.02779e-16 0.0168033 6.97457e-12 -1.27653e-13 0.0168051 -6.4744e-12 -1.94601e-13 0.0168078 7.90381e-12 -2.89399e-13 0.0168119 4.95444e-11 -4.2504e-13 0.0168178 -1.31232e-10 -6.11461e-13 0.0168262 3.9874e-10 -8.74645e-13 0.0168384 -5.37838e-10 -1.19886e-12 0.0168556 1.13036e-09 -1.67571e-12 0.0168796 7.72782e-10 -2.21111e-12 0.0169125 3.18307e-09 -3.0113e-12 0.0169576 2.29246e-08 -3.77406e-12 0.0170187 5.84613e-08 -5.06352e-12 0.0171006 2.95778e-07 -5.96388e-12 0.0172117 9.99072e-07 -7.85219e-12 0.0173685 4.06712e-06 -8.92235e-12 0.0176119 1.43535e-05 -1.24641e-11 0.0180554 5.14609e-05 -1.63124e-11 0.018886 0.000173023 -2.9857e-11 0.0204372 0.000501312 -5.56234e-11 0.0230147 0.00125301 -7.644e-11 0.0267063 0.00260574 -1.79296e-10 0.0302522 0.00461929 -1.68986e-10 0.0325616 0.0077223 -9.14044e-11 0.0337781 0.0105194 -3.92925e-11 0.0345 0.0115319 -2.17604e-11 0.0349606 0.0117716 -1.5928e-11 0.0352978 0.0117503 -7.89081e-12 0.0355394 0.0114669 -9.8263e-12 0.0356973 0.0111463 -8.88146e-12 0.0357145 0.0108253 -7.84836e-12 0.0356568 0.0104524 -1.36019e-11 0.0355846 0.0100306 -2.05493e-11 0.0354813 0.00956445 -2.75387e-11 0.035342 0.00907236 -3.31172e-11 0.0351629 0.00857292 -3.93551e-11 0.0349457 0.00808221 -4.6801e-11 0.0346962 0.00759443 -5.1712e-11 0.0344256 0.00711683 -5.77576e-11 0.0341457 0.0066515 -6.21134e-11 0.0338652 0.00620323 -6.70229e-11 0.0335912 0.00577145 -7.19792e-11 0.0333243 0.0053621 -7.64355e-11 0.0330502 0.0049688 -8.11922e-11 0.0327665 0.00458479 -9.59594e-11 0.0324717 0.00422059 -8.6563e-11 0.0321674 0.00387762 -1.22424e-10 0.031851 0.00355885 -1.13762e-10 0.0315201 0.00326298 -1.0238e-10 0.0311876 0.00299275 -1.0239e-10 0.0308548 0.00274867 -1.05673e-10 0.0305222 0.00253135 -1.07288e-10 0.0302022 0.00233957 -1.06195e-10 0.029894 0.00217304 -1.01884e-10 0.0295828 0.00202985 -9.69627e-11 0.0292644 0.00190656 -9.17632e-11 0.028943 0.00180038 -8.78464e-11 0.0286202 0.00170881 -8.39476e-11 0.0282912 0.00162925 -7.86117e-11 0.0279527 0.0015592 -7.14189e-11 0.0276042 0.00149458 -6.41633e-11 0.0272453 0.00143243 -5.41956e-11 0.0268784 0.00136994 -4.25613e-11 0.026497 0.00130055 -3.22984e-11 0.0260729 0.00121925 -2.30205e-11 0.0255503 0.00112157 -1.59691e-11 0.0248464 0.00100557 -1.21772e-11 0.023865 0.000870668 -1.28197e-11 0.0225293 0.000722491 -1.90476e-11 0.0208414 0.00056728 -2.73614e-11 0.0189348 0.000417373 -3.31479e-11 0.0170449 0.000286912 -3.36555e-11 0.0153902 0.000185524 -2.92685e-11 0.014081 0.000114522 -2.27643e-11 0.0131195 6.8727e-05 -1.65291e-11 0.0124495 4.07661e-05 -1.15615e-11 0.0119993 2.42008e-05 -8.10118e-12 0.0117051 1.44861e-05 -5.19948e-12 0.0115167 8.82108e-06 -3.46439e-12 0.0113973 5.47691e-06 -2.28504e-12 0.0113223 3.46544e-06 -1.48852e-12 0.0112755 2.22964e-06 -9.60074e-13 0.0112464 1.454e-06 -6.14093e-13 0.0112284 9.57604e-07 -3.89943e-13 0.0112173 6.34703e-07 -2.46032e-13 0.0112105 4.22047e-07 -1.54395e-13 0.0112063 2.80811e-07 -9.64759e-14 0.0112038 1.86554e-07 -6.00943e-14 0.0112023 1.23545e-07 -3.73201e-14 0.0112014 8.14575e-08 -2.29867e-14 0.0112008 5.34209e-08 -1.32983e-14 0.0112005 3.48213e-08 -5.90824e-15 0.0112003 2.25485e-08 -3.34415e-15 0.0112002 1.45005e-08 -2.26157e-15 0.0112001 9.2584e-09 -1.53735e-15 0.0112001 5.86772e-09 -9.79384e-16 0.0112001 3.69067e-09 -6.48506e-16 0.0112001 2.30351e-09 -4.48445e-16 0.0112001 1.42761e-09 -3.26417e-16 0.0112 8.74609e-10 -2.5767e-16 5.24558e-10 -2.01225e-16 0.0168033 2.77013e-12 -1.26524e-13 0.0168051 -3.68545e-13 -1.9498e-13 0.0168078 5.5849e-12 -2.8846e-13 0.0168119 1.10761e-11 -4.24931e-13 0.0168178 -1.83885e-11 -6.14574e-13 0.0168262 8.14911e-11 -8.74988e-13 0.0168384 -9.4451e-11 -1.21399e-12 0.0168556 2.17056e-10 -1.68122e-12 0.0168796 1.06457e-10 -2.25834e-12 0.0169125 2.26019e-10 -3.00723e-12 0.0169574 3.29163e-09 -3.89562e-12 0.0170182 5.3453e-09 -4.99531e-12 0.0170989 3.67786e-08 -6.14437e-12 0.0172049 1.12676e-07 -7.52168e-12 0.0173438 4.93944e-07 -8.75035e-12 0.017527 1.7304e-06 -1.00876e-11 0.0177764 6.51974e-06 -1.13012e-11 0.018141 2.27899e-05 -1.35357e-11 0.0187394 7.32798e-05 -1.85769e-11 0.0197254 0.000217089 -2.6933e-11 0.021266 0.000544012 -5.15398e-11 0.0234313 0.00117025 -7.26992e-11 0.0263209 0.00213619 -1.23741e-10 0.02937 0.00347475 -1.40764e-10 0.0318782 0.00489447 -1.26999e-10 0.0336429 0.0067651 -8.10657e-11 0.0347544 0.0083736 -5.75133e-11 0.0354889 0.00904911 -4.68968e-11 0.0360635 0.00900302 -5.21505e-11 0.0365243 0.00876378 -5.64007e-11 0.0368785 0.00848996 -5.85767e-11 0.037152 0.00808343 -7.1953e-11 0.0373701 0.00758771 -7.86365e-11 0.0375178 0.00708924 -8.24921e-11 0.0375459 0.0065977 -9.09518e-11 0.037509 0.00608823 -1.07429e-10 0.0374282 0.00559903 -1.1065e-10 0.0373013 0.00514225 -1.16702e-10 0.0371356 0.00470057 -1.22826e-10 0.0369448 0.00428105 -1.26773e-10 0.0367301 0.00388601 -1.31709e-10 0.0364982 0.00352552 -1.35298e-10 0.0362371 0.00319135 -1.38784e-10 0.0359302 0.00288279 -1.3562e-10 0.0355865 0.00258922 -1.47796e-10 0.0352246 0.00231116 -1.43058e-10 0.034835 0.00206428 -1.53953e-10 0.0344146 0.00185005 -1.57005e-10 0.0339703 0.00166653 -1.52219e-10 0.0335125 0.00151147 -1.44359e-10 0.0330524 0.00138345 -1.40515e-10 0.0325842 0.0012795 -1.3718e-10 0.0321202 0.00119632 -1.31114e-10 0.0316624 0.00113173 -1.24016e-10 0.0311925 0.0010818 -1.18625e-10 0.0307023 0.00104139 -1.15164e-10 0.0302028 0.00100771 -1.14678e-10 0.0297028 0.000979054 -1.14443e-10 0.0291926 0.000950123 -1.10466e-10 0.0286587 0.000918417 -1.02821e-10 0.0280973 0.000882769 -9.21691e-11 0.0275132 0.000838662 -7.52575e-11 0.0269113 0.00078531 -5.64904e-11 0.0262792 0.000722132 -4.00036e-11 0.0255747 0.000649624 -2.65219e-11 0.0247249 0.000568813 -1.775e-11 0.0236382 0.000481743 -1.46159e-11 0.0222403 0.000390569 -1.84599e-11 0.0205369 0.000299845 -2.5534e-11 0.0186589 0.000216035 -3.10365e-11 0.0168252 0.000145719 -3.17575e-11 0.0152328 9.26703e-05 -2.78516e-11 0.0139765 5.63802e-05 -2.18799e-11 0.0130536 3.34069e-05 -1.60576e-11 0.0124092 1.95932e-05 -1.13156e-11 0.0119749 1.15142e-05 -7.97969e-12 0.0116905 6.82761e-06 -5.13418e-12 0.0115078 4.12413e-06 -3.43634e-12 0.0113918 2.54329e-06 -2.27421e-12 0.0113189 1.6002e-06 -1.4848e-12 0.0112733 1.02484e-06 -9.5908e-13 0.011245 6.65853e-07 -6.14011e-13 0.0112274 4.37223e-07 -3.90073e-13 0.0112167 2.8909e-07 -2.46145e-13 0.0112101 1.91844e-07 -1.54439e-13 0.0112061 1.27427e-07 -9.6462e-14 0.0112036 8.45305e-08 -6.00469e-14 0.0112022 5.59065e-08 -3.7259e-14 0.0112013 3.68169e-08 -2.29237e-14 0.0112008 2.41182e-08 -1.32153e-14 0.0112005 1.5705e-08 -5.86461e-15 0.0112003 1.01599e-08 -3.33603e-15 0.0112002 6.52754e-09 -2.26189e-15 0.0112001 4.16392e-09 -1.52026e-15 0.0112001 2.6367e-09 -9.59754e-16 0.0112001 1.65717e-09 -6.31299e-16 0.0112001 1.03348e-09 -4.38193e-16 0.0112 6.40005e-10 -3.23054e-16 0.0112 3.91693e-10 -2.59007e-16 2.34789e-10 -2.04351e-16 0.0168033 -1.25875e-13 0.0168051 -1.93992e-13 0.0168078 -2.89841e-13 0.0168119 -4.25329e-13 0.0168178 -6.18553e-13 0.0168262 -8.78796e-13 0.0168384 -1.22126e-12 0.0168556 -1.69352e-12 0.0168796 -2.27468e-12 0.0169125 -3.02512e-12 0.0169574 -3.93022e-12 0.0170181 -5.00683e-12 0.0170987 -6.18519e-12 0.0172041 -7.49279e-12 0.0173409 -8.70381e-12 0.0175161 -9.76861e-12 0.017737 -1.04519e-11 0.0180149 -1.08271e-11 0.0183745 -1.10039e-11 0.0188651 -1.20145e-11 0.0195731 -1.57654e-11 0.0205999 -2.65628e-11 0.0220442 -4.3114e-11 0.0239219 -6.90137e-11 0.0261997 -9.71718e-11 0.0288318 -1.42261e-10 0.031602 -1.80032e-10 0.0342022 -1.97558e-10 0.0364843 -1.98118e-10 0.0384557 -2.08745e-10 0.0401268 -1.98388e-10 0.0414962 -2.00921e-10 0.0425845 -1.9922e-10 0.0434178 -1.90205e-10 0.044006 -1.82041e-10 0.0443595 -1.84704e-10 0.0445681 -1.75947e-10 0.0445617 -1.7131e-10 0.0444343 -1.6541e-10 0.0441685 -1.61287e-10 0.0438053 -1.52828e-10 0.0433686 -1.4116e-10 0.0428663 -1.3624e-10 0.0422866 -1.25143e-10 0.0416227 -1.22223e-10 0.0408899 -9.55674e-11 0.0401122 -9.40156e-11 0.0392995 -8.79751e-11 0.0384694 -8.59452e-11 0.0376392 -9.07552e-11 0.0368208 -9.95442e-11 0.0360139 -1.07906e-10 0.0352203 -1.14391e-10 0.034441 -1.15696e-10 0.033663 -1.19386e-10 0.0328774 -1.25106e-10 0.0320826 -1.3071e-10 0.0312836 -1.39829e-10 0.0304865 -1.43609e-10 0.0296842 -1.41234e-10 0.0288658 -1.30425e-10 0.0280426 -1.07669e-10 0.0272313 -8.18196e-11 0.0264275 -5.70161e-11 0.025591 -3.73944e-11 0.0246461 -2.37041e-11 0.0234971 -1.71622e-11 0.0220679 -1.90041e-11 0.0203627 -2.49692e-11 0.0185065 -3.00888e-11 0.0167076 -3.08374e-11 0.0151506 -2.71893e-11 0.0139231 -2.14349e-11 0.0130205 -1.58242e-11 0.0123892 -1.11975e-11 0.011963 -7.92125e-12 0.0116833 -5.0963e-12 0.0115035 -3.42049e-12 0.0113892 -2.26869e-12 0.0113173 -1.48321e-12 0.0112723 -9.58838e-13 0.0112443 -6.14149e-13 0.011227 -3.90251e-13 0.0112164 -2.46268e-13 0.0112099 -1.545e-13 0.0112059 -9.64773e-14 0.0112036 -6.00359e-14 0.0112021 -3.72359e-14 0.0112013 -2.28965e-14 0.0112008 -1.31793e-14 0.0112005 -5.8439e-15 0.0112003 -3.33304e-15 0.0112002 -2.26259e-15 0.0112001 -1.51427e-15 0.0112001 -9.52533e-16 0.0112001 -6.23948e-16 0.0112001 -4.33006e-16 0.0112 -3.20871e-16 0.0112 -2.59096e-16 -2.0572e-16 0.00965471 0.00861956 -2.25338e-11 0.00623243 0.00343663 -1.68434e-11 0.00472734 0.00149961 -1.24732e-11 0.00411244 0.000617677 -4.04544e-12 0.00399543 0.000112905 -2.59081e-12 0.00424331 -0.00025327 1.03833e-12 0.00466727 -0.000409679 8.18542e-12 0.00494042 -0.000254874 8.06891e-12 0.00503736 -8.76244e-05 3.06486e-12 0.00502701 1.56956e-05 2.28692e-12 0.00496785 6.23364e-05 1.31933e-12 0.00493163 3.42557e-05 -8.26412e-14 0.00492521 7.70414e-06 -2.65928e-14 0.00495951 -2.5342e-05 -5.08844e-13 0.0050303 -4.66071e-05 -8.00371e-13 0.00512013 -5.68462e-05 -4.86441e-12 0.00521611 -6.0219e-05 -2.27981e-12 0.00532165 -6.20018e-05 -1.16139e-12 0.0054424 -6.76864e-05 -1.19428e-14 0.00557885 -7.54265e-05 1.12935e-12 0.00572805 -8.35664e-05 1.46556e-12 0.00588369 -9.03767e-05 1.07726e-12 0.00603676 -9.53475e-05 -7.67677e-14 0.00617928 -9.82418e-05 -2.12065e-12 0.00630616 -9.92227e-05 -3.96877e-12 0.00641808 -9.86036e-05 -6.22183e-12 0.00652245 -9.602e-05 -1.00122e-11 0.00662074 -9.24769e-05 -1.19377e-11 0.00670339 -8.92569e-05 -1.19767e-11 0.00676816 -8.47896e-05 -1.58156e-11 0.00682123 -7.82728e-05 -1.80179e-11 0.00686544 -7.20788e-05 -1.93696e-11 0.00690157 -6.59225e-05 -2.04611e-11 0.00693133 -5.99453e-05 -2.14109e-11 0.00695856 -5.43887e-05 -2.23445e-11 0.00698764 -4.96072e-05 -2.32497e-11 0.00702117 -4.59226e-05 -2.373e-11 0.00706001 -4.35321e-05 -2.34157e-11 0.00710555 -4.25664e-05 -2.25502e-11 0.00716084 -4.30797e-05 -2.15322e-11 0.00722952 -4.50619e-05 -2.034e-11 0.00731631 -4.85001e-05 -1.89277e-11 0.0074238 -5.34981e-05 -1.72092e-11 0.00754644 -5.99208e-05 -1.53589e-11 0.00768502 -6.73606e-05 -1.31791e-11 0.00788956 -7.68518e-05 -1.16724e-11 0.00825794 -7.98909e-05 -9.27801e-12 0.00879582 -8.36715e-05 -8.27098e-12 0.00947108 -9.37626e-05 -6.21813e-12 0.0102528 -0.00010877 -5.25041e-12 0.0111044 -0.000118742 -5.13754e-12 0.0119974 -0.000125114 -4.79766e-12 0.0129037 -0.000131915 -4.29196e-12 0.0137966 -0.000138992 -3.89294e-12 0.0146551 -0.000146169 -3.82321e-12 0.0154637 -0.000153279 -3.91972e-12 0.0162088 -0.000160256 -3.98369e-12 0.0168752 -0.000167077 -3.61673e-12 0.0174482 -0.000173331 -2.60391e-12 0.0179188 -0.0001781 -1.32445e-12 0.0182937 -0.000180672 -2.91431e-13 0.0185979 -0.000180894 8.87517e-14 0.018849 -0.000179002 1.93425e-13 0.0190534 -0.000175194 5.76913e-13 0.019209 -0.000169671 1.60606e-12 0.0192907 -0.000162585 4.06882e-12 0.0192118 -0.000153773 9.91446e-12 0.018679 -0.000141303 2.31441e-11 0.0179502 -0.000121856 3.88841e-11 0.0169524 -0.000104455 4.85724e-11 0.0158221 -8.55706e-05 4.7901e-11 0.0147294 -6.63903e-05 4.20994e-11 0.0137921 -4.92892e-05 3.37386e-11 0.013055 -3.54769e-05 2.53523e-11 0.0125102 -2.505e-05 1.82934e-11 0.0121249 -1.74825e-05 1.28693e-11 0.0118611 -1.20704e-05 8.88968e-12 0.0116848 -8.18181e-06 6.05004e-12 0.0115695 -5.37282e-06 4.06388e-12 0.0114948 -3.33063e-06 2.68995e-12 0.0114458 -2.01659e-06 1.73758e-12 0.0114117 -1.16675e-06 1.08509e-12 0.0113854 -4.4261e-07 6.59078e-13 0.0113627 9.59555e-08 3.96896e-13 0.0113415 4.15239e-07 2.44628e-13 0.0113211 5.68794e-07 1.60994e-13 0.0113016 6.08643e-07 1.16565e-13 0.0112834 5.77666e-07 9.20189e-14 0.0112669 5.0855e-07 7.61023e-14 0.0112525 4.24331e-07 6.32818e-14 0.0112404 3.39803e-07 5.15338e-14 0.0112305 2.633e-07 4.05846e-14 0.0112226 1.98561e-07 3.07821e-14 0.0112165 1.46355e-07 2.24941e-14 0.0112118 1.05875e-07 1.58769e-14 0.0112084 7.52457e-08 1.08766e-14 0.0112059 5.28307e-08 7.2505e-15 0.011204 3.6462e-08 4.72626e-15 0.0112028 2.47548e-08 3.1387e-15 1.64395e-08 1.44673e-15 0.0130292 0.0127328 -2.27545e-11 0.00991361 0.00657398 -2.07506e-11 0.00828175 0.00314167 -1.53953e-11 0.0075942 0.00131575 -1.09208e-11 0.00732376 0.00039266 -7.205e-12 0.0071724 -9.34039e-05 -4.32959e-12 0.00703828 -0.000253829 1.82192e-12 0.00707739 -0.000268358 2.29328e-12 0.00722641 -0.000207531 4.65609e-12 0.00738736 -0.000111303 8.19927e-12 0.00750239 -3.56194e-05 6.42042e-12 0.00754101 6.98288e-06 9.59574e-13 0.00754278 1.70957e-05 3.93641e-14 0.0075292 3.40523e-07 -5.18386e-13 0.0075315 -3.27173e-05 -2.30925e-12 0.00755608 -6.11243e-05 -2.65116e-12 0.00760852 -8.47323e-05 -2.63199e-12 0.00768899 -0.000101902 -1.73613e-12 0.00778327 -0.000111153 -7.25354e-13 0.00788744 -0.000120621 1.01493e-12 0.00800319 -0.000132843 1.18115e-12 0.00813093 -0.000144558 8.229e-13 0.00826775 -0.000155284 -2.90668e-13 0.00840772 -0.00016378 -2.14572e-12 0.00854312 -0.000169933 -4.13531e-12 0.00866693 -0.000173515 -6.15938e-12 0.00877686 -0.000174496 -9.25395e-12 0.00887847 -0.000172777 -1.16434e-11 0.00897686 -0.000169203 -1.26424e-11 0.00906523 -0.000165303 -1.42167e-11 0.00913744 -0.000159899 -1.74413e-11 0.00920128 -0.000151491 -1.94638e-11 0.00926347 -0.000142914 -1.96075e-11 0.00932476 -0.000134511 -2.04084e-11 0.00938295 -0.000126178 -2.11404e-11 0.00943786 -0.000118443 -2.20484e-11 0.00949223 -0.000111975 -2.26711e-11 0.00954823 -0.000107132 -2.23627e-11 0.00960374 -0.000104059 -2.12897e-11 0.00965165 -0.000102838 -2.04052e-11 0.00968545 -0.000103635 -1.9422e-11 0.00970913 -0.000106541 -1.82705e-11 0.00973877 -0.000111508 -1.67127e-11 0.00978536 -0.00011877 -1.49532e-11 0.00985321 -0.000128684 -1.26256e-11 0.00995792 -0.000138226 -1.0465e-11 0.0100914 -0.000147942 -9.28859e-12 0.0102358 -0.000159735 -8.02659e-12 0.0104489 -0.000169562 -5.45747e-12 0.0108239 -0.000178057 -3.5509e-12 0.0113614 -0.00019557 -5.15172e-12 0.0120182 -0.000211481 -4.48248e-12 0.0127628 -0.000226495 -3.57963e-12 0.0135664 -0.000240535 -3.0445e-12 0.0144042 -0.000253951 -2.80979e-12 0.0152504 -0.000266895 -2.79948e-12 0.0160774 -0.00027924 -2.76983e-12 0.0168547 -0.000290619 -2.48983e-12 0.0175527 -0.00030032 -1.74744e-12 0.0181478 -0.000307389 -6.30413e-13 0.0186336 -0.000311146 3.57652e-13 0.0190248 -0.000311387 7.39516e-13 0.0193329 -0.000308113 8.42057e-13 0.019562 -0.000301467 1.21769e-12 0.0197151 -0.000291779 2.1526e-12 0.01977 -0.000279388 4.57602e-12 0.0196125 -0.000264095 9.87817e-12 0.0191064 -0.000243291 2.2007e-11 0.01833 -0.000216145 3.95184e-11 0.0172658 -0.000184619 4.7093e-11 0.0160701 -0.000150293 4.73488e-11 0.0149184 -0.000116276 4.19127e-11 0.0139316 -8.61717e-05 3.37025e-11 0.0131556 -6.18744e-05 2.53553e-11 0.012582 -4.34699e-05 1.82841e-11 0.0121767 -3.00577e-05 1.28199e-11 0.0118989 -2.0506e-05 8.85193e-12 0.0117125 -1.38094e-05 6.06449e-12 0.0115891 -9.04429e-06 4.01149e-12 0.0115078 -5.60536e-06 2.64654e-12 0.0114542 -3.13793e-06 1.72714e-12 0.0114175 -1.40822e-06 1.08172e-12 0.0113896 -1.98775e-07 6.40876e-13 0.0113658 6.36003e-07 3.91083e-13 0.0113436 1.12249e-06 2.43775e-13 0.0113225 1.33214e-06 1.61538e-13 0.0113025 1.34721e-06 1.17368e-13 0.0112839 1.24166e-06 9.27032e-14 0.0112672 1.07393e-06 7.65615e-14 0.0112526 8.857e-07 6.35227e-14 0.0112404 7.03516e-07 5.16128e-14 0.0112305 5.41955e-07 4.05649e-14 0.0112226 4.06959e-07 3.07167e-14 0.0112164 2.99044e-07 2.24149e-14 0.0112118 2.15643e-07 1.58071e-14 0.0112084 1.52961e-07 1.08199e-14 0.0112058 1.06794e-07 7.20855e-15 0.011204 7.35717e-08 4.68973e-15 0.0112027 5.01459e-08 3.12139e-15 3.29273e-08 1.44026e-15 0.0165194 0.0143395 -1.68312e-11 0.0141113 0.00905329 -2.00218e-11 0.0120974 0.00520009 -1.61203e-11 0.0105783 0.00285983 -1.45248e-11 0.00951441 0.00148333 -9.61856e-12 0.0087802 0.00066726 -6.58106e-12 0.00835111 0.000205264 -2.9323e-12 0.008148 -2.58208e-05 2.11074e-12 0.00817934 -0.000197532 2.61814e-12 0.00836094 -0.000253059 3.50125e-12 0.00858912 -0.000221715 4.86309e-12 0.0087532 -0.000127004 3.49351e-12 0.00885959 -6.69377e-05 9.52052e-13 0.0089064 -3.53661e-05 -1.28194e-12 0.00892248 -3.42779e-05 -2.47115e-12 0.00892631 -5.12403e-05 -2.71383e-12 0.0089323 -7.70769e-05 -2.48317e-12 0.00895746 -0.000105879 -2.26517e-12 0.00901434 -0.000132749 -1.47146e-12 0.00909961 -0.000151552 3.80158e-13 0.00919586 -0.000166048 2.47119e-13 0.00929873 -0.000183365 6.67171e-13 0.00940885 -0.000199284 -4.24588e-13 0.00952628 -0.000213179 -1.91655e-12 0.00964857 -0.000224792 -3.62285e-12 0.0097697 -0.00023359 -5.47482e-12 0.00988394 -0.00023917 -7.57039e-12 0.00998957 -0.000241558 -1.09093e-11 0.0100895 -0.00024129 -1.28758e-11 0.0101895 -0.000238539 -1.17503e-11 0.0102884 -0.000233829 -1.53922e-11 0.0103794 -0.000227715 -2.08686e-11 0.0104647 -0.000219689 -1.81222e-11 0.010551 -0.000210655 -1.93187e-11 0.0106414 -0.000201567 -1.98575e-11 0.0107368 -0.000192709 -2.04505e-11 0.0108375 -0.000184768 -2.20742e-11 0.0109423 -0.000178665 -2.20398e-11 0.0110456 -0.000174294 -1.95509e-11 0.011136 -0.000171391 -1.78936e-11 0.0111995 -0.000170556 -1.85697e-11 0.0112304 -0.000172517 -1.7313e-11 0.0112379 -0.000176186 -1.55976e-11 0.0112376 -0.000183022 -1.39454e-11 0.0112496 -0.000193263 -1.17461e-11 0.0113017 -0.000203785 -9.50669e-12 0.0114055 -0.000215604 -8.32107e-12 0.011542 -0.000233168 -7.23838e-12 0.0117174 -0.000248723 -4.08745e-12 0.0119977 -0.000257783 -2.53224e-12 0.0124353 -0.000270102 -3.05543e-12 0.0130032 -0.000294772 -3.6655e-12 0.0136648 -0.000314368 -1.79591e-12 0.014391 -0.000332515 -1.25165e-12 0.0151567 -0.000349436 -1.07938e-12 0.0159372 -0.000365097 -1.00594e-12 0.0167075 -0.000379296 -9.88832e-13 0.0174409 -0.000391916 -7.13777e-13 0.0181056 -0.000402452 -4.39048e-14 0.0186736 -0.000410081 8.88598e-13 0.0191334 -0.000413885 1.75083e-12 0.0194967 -0.000413378 2.08133e-12 0.019773 -0.00040861 2.17041e-12 0.0199669 -0.000399828 2.52608e-12 0.0200797 -0.000387425 3.38648e-12 0.0200846 -0.000371657 5.74247e-12 0.019861 -0.000352637 1.06473e-11 0.01935 -0.000329655 2.10352e-11 0.018537 -0.000294729 3.81469e-11 0.0174357 -0.000252506 4.57083e-11 0.0162045 -0.000205634 4.65766e-11 0.01502 -0.000159069 4.16133e-11 0.014005 -0.000117827 3.36438e-11 0.0132066 -8.44893e-05 2.53616e-11 0.0126166 -5.91682e-05 1.82847e-11 0.0121997 -4.07045e-05 1.28146e-11 0.0119141 -2.76139e-05 8.91849e-12 0.0117227 -1.85527e-05 5.98416e-12 0.011596 -1.20862e-05 3.96997e-12 0.0115127 -7.36731e-06 2.61137e-12 0.0114576 -3.89518e-06 1.69237e-12 0.0114197 -1.45537e-06 1.056e-12 0.0113909 1.70474e-07 6.29977e-13 0.0113664 1.26782e-06 3.85324e-13 0.0113438 1.88136e-06 2.4175e-13 0.0113223 2.11594e-06 1.61644e-13 0.0113021 2.08672e-06 1.18297e-13 0.0112834 1.89623e-06 9.37013e-14 0.0112667 1.62562e-06 7.72953e-14 0.0112522 1.33276e-06 6.39214e-14 0.0112401 1.05426e-06 5.17362e-14 0.0112302 8.09686e-07 4.05138e-14 0.0112223 6.06614e-07 3.05822e-14 0.0112163 4.44912e-07 2.22591e-14 0.0112117 3.20351e-07 1.56628e-14 0.0112082 2.26914e-07 1.0707e-14 0.0112058 1.58484e-07 7.11785e-15 0.011204 1.09091e-07 4.64046e-15 0.0112027 7.41992e-08 3.0804e-15 4.8901e-08 1.42435e-15 0.0179748 0.0144782 -9.7507e-12 0.0165566 0.0105756 -1.74314e-11 0.0147018 0.00712388 -1.6847e-11 0.0130225 0.00458474 -1.44046e-11 0.0117105 0.00283335 -1.12698e-11 0.0107546 0.00166497 -8.13343e-12 0.010121 0.000884913 -4.55132e-12 0.00973597 0.000391212 -3.15725e-12 0.00952342 7.97971e-05 -8.29801e-13 0.00941701 -9.64319e-05 9.67776e-13 0.00940643 -0.000164326 1.23515e-12 0.00952316 -0.000199937 1.43889e-12 0.00966197 -0.000173444 1.34038e-12 0.00977882 -0.000125399 -3.70057e-14 0.00985883 -9.18808e-05 -1.33578e-12 0.00990479 -7.56388e-05 -1.94363e-12 0.00993659 -7.70593e-05 -1.98889e-12 0.00995699 -9.50406e-05 -2.05346e-12 0.00998267 -0.00012197 -1.69087e-12 0.0100304 -0.000151886 -1.47767e-12 0.0101032 -0.000180457 -8.13382e-13 0.010198 -0.000205529 1.31981e-12 0.0102881 -0.00022849 -4.35604e-13 0.0103796 -0.000249009 -1.04434e-12 0.0104785 -0.000266279 -2.43413e-12 0.0105862 -0.000281038 -3.90507e-12 0.0106996 -0.000292389 -6.08454e-12 0.010815 -0.00030029 -8.79488e-12 0.0109322 -0.0003049 -1.04879e-11 0.0110524 -0.000305796 -1.23216e-11 0.0111775 -0.000303554 -1.50182e-11 0.0113088 -0.0002988 -1.66946e-11 0.0114465 -0.000292494 -1.72566e-11 0.0115894 -0.000285041 -1.86198e-11 0.0117356 -0.000276976 -1.88928e-11 0.0118817 -0.000269083 -1.65751e-11 0.0120263 -0.000261506 -1.91083e-11 0.0121712 -0.000253938 -2.33129e-11 0.0123116 -0.000247896 -1.9119e-11 0.0124313 -0.000246363 -1.22028e-11 0.0125161 -0.000247032 -1.25758e-11 0.0125649 -0.000247024 -1.94595e-11 0.0125828 -0.000248802 -1.41866e-11 0.0125802 -0.000255283 -1.22131e-11 0.0125756 -0.000264812 -1.00852e-11 0.012592 -0.000276301 -7.5905e-12 0.012652 -0.000289293 -7.04944e-12 0.0127644 -0.000305602 -5.94703e-12 0.0129136 -0.000325096 -1.17924e-12 0.0131017 -0.000340901 -3.17185e-13 0.0133884 -0.000351977 -3.32844e-12 0.0138227 -0.00036704 -3.63254e-12 0.014374 -0.000391776 1.9746e-12 0.0150035 -0.000411917 9.50953e-13 0.0156791 -0.000430771 1.24509e-12 0.0163752 -0.000447577 1.42045e-12 0.0170726 -0.000462488 1.4733e-12 0.0177474 -0.000475377 1.6527e-12 0.0183709 -0.000485715 2.12621e-12 0.0189146 -0.000492898 2.87375e-12 0.0193621 -0.000496175 3.65802e-12 0.0197182 -0.000494966 3.97537e-12 0.0199881 -0.000489063 4.0572e-12 0.0201743 -0.000478467 4.35781e-12 0.0202735 -0.000463492 5.10843e-12 0.0202503 -0.000444554 7.23168e-12 0.0200524 -0.000421556 1.15474e-11 0.0196274 -0.000393078 1.99672e-11 0.0187423 -0.00035382 3.56954e-11 0.0176166 -0.000303742 4.37495e-11 0.0163628 -0.000247557 4.54853e-11 0.0151517 -0.000191534 4.11732e-11 0.0141089 -0.00014173 3.3559e-11 0.0132853 -0.000101324 2.54235e-11 0.0126745 -7.06217e-05 1.83699e-11 0.0122415 -4.8311e-05 1.29617e-11 0.0119439 -3.25772e-05 9.05149e-12 0.0117442 -2.15757e-05 5.92534e-12 0.011612 -1.37145e-05 3.95181e-12 0.0115246 -8.03012e-06 2.59163e-12 0.0114663 -3.90517e-06 1.65961e-12 0.0114258 -9.67956e-07 1.02735e-12 0.0113951 1.0134e-06 6.21869e-13 0.011369 2.23925e-06 3.80827e-13 0.0113453 2.87065e-06 2.40462e-13 0.011323 3.04977e-06 1.62487e-13 0.0113023 2.91947e-06 1.19956e-13 0.0112833 2.60571e-06 9.5289e-14 0.0112664 2.20769e-06 7.84155e-14 0.0112518 1.7953e-06 6.45173e-14 0.0112397 1.4119e-06 5.19159e-14 0.0112299 1.07979e-06 4.04336e-14 0.0112221 8.06438e-07 3.03779e-14 0.011216 5.90091e-07 2.20281e-14 0.0112115 4.24083e-07 1.54528e-14 0.0112081 2.99965e-07 1.05377e-14 0.0112057 2.09068e-07 7.00157e-15 0.0112039 1.43754e-07 4.54844e-15 0.0112027 9.78514e-08 3.02625e-15 6.42349e-08 1.40329e-15 0.0181938 0.0146237 -6.74671e-12 0.0175265 0.0113753 -1.15362e-11 0.0163546 0.00846771 -1.39938e-11 0.0150082 0.00605966 -1.2353e-11 0.0137219 0.0042126 -1.15215e-11 0.01265 0.00281468 -8.5787e-12 0.0117742 0.00182733 -7.11182e-12 0.01112 0.00110797 -5.26892e-12 0.0106407 0.000617386 -4.72521e-12 0.0103293 0.000273352 -3.17916e-12 0.0101657 5.84193e-05 -2.78648e-12 0.0100931 -7.61108e-05 -1.63884e-12 0.0101114 -0.000144803 -1.64328e-12 0.0102084 -0.000181037 -1.49055e-12 0.0103227 -0.000173726 -2.32235e-12 0.0104198 -0.000139211 -3.12996e-12 0.0105005 -0.000120298 -2.79039e-12 0.0105654 -0.00011816 -2.31109e-12 0.0106235 -0.000129899 -1.88289e-12 0.0106826 -0.000152703 -1.20244e-12 0.0107444 -0.000182618 -2.98118e-13 0.0108127 -0.000214418 1.0281e-13 0.010892 -0.000245082 -4.66295e-13 0.0109797 -0.000274335 -1.14987e-12 0.011072 -0.000301015 -1.74229e-12 0.0111706 -0.00032322 -3.03755e-12 0.0112755 -0.000341481 -4.73517e-12 0.0113845 -0.000355384 -6.34278e-12 0.0114955 -0.000365033 -7.61439e-12 0.011609 -0.000370107 -9.09933e-12 0.0117299 -0.00037156 -1.10736e-11 0.0118658 -0.00036992 -1.27569e-11 0.0120219 -0.000365862 -1.43491e-11 0.0121975 -0.00036013 -1.53553e-11 0.0123859 -0.000353406 -1.52895e-11 0.0125801 -0.000346151 -1.58496e-11 0.0127736 -0.000338817 -1.76206e-11 0.0129596 -0.000332277 -1.66764e-11 0.0131361 -0.000326926 -1.4343e-11 0.0133089 -0.000322732 -1.55543e-11 0.0134738 -0.000321672 -1.47944e-11 0.0136085 -0.000324842 -1.16023e-11 0.0136988 -0.000329689 -1.06937e-11 0.0137539 -0.000334229 -1.18268e-11 0.0137899 -0.000342656 -8.67174e-12 0.0138247 -0.000354278 -6.66967e-12 0.0138785 -0.000368086 -5.47779e-12 0.0139723 -0.000383321 -3.36452e-12 0.0141106 -0.000401394 -1.35546e-12 0.0142783 -0.000421483 -5.25609e-13 0.0144854 -0.000436115 -2.0483e-13 0.0147847 -0.000447118 2.33668e-13 0.0152082 -0.000462856 1.22128e-12 0.01573 -0.000485967 2.63275e-12 0.0163178 -0.000504142 3.33096e-12 0.0169421 -0.00052044 3.47576e-12 0.0175741 -0.000534668 3.60379e-12 0.0181856 -0.000546311 3.80955e-12 0.0187502 -0.000555226 4.17057e-12 0.0192443 -0.00056098 4.6825e-12 0.0196543 -0.000562675 5.2321e-12 0.0199832 -0.000559547 5.4816e-12 0.0202332 -0.000551456 5.54803e-12 0.0203991 -0.00053865 5.78815e-12 0.020468 -0.000521523 6.43868e-12 0.0204175 -0.000500562 8.14542e-12 0.0202483 -0.000475261 1.20248e-11 0.0198305 -0.000443305 1.91221e-11 0.0189094 -0.0003998 3.39331e-11 0.0177651 -0.000344017 4.17603e-11 0.0164922 -0.000280866 4.423e-11 0.0152583 -0.000217479 4.06505e-11 0.0141915 -0.000160871 3.34932e-11 0.0133461 -0.000114829 2.55486e-11 0.0127175 -7.98428e-05 1.85972e-11 0.0122711 -5.43896e-05 1.31527e-11 0.0119643 -3.64046e-05 9.11648e-12 0.0117586 -2.37593e-05 6.00986e-12 0.0116224 -1.47462e-05 3.99143e-12 0.0115322 -8.23745e-06 2.60044e-12 0.0114717 -3.5035e-06 1.66951e-12 0.0114295 -1.66913e-07 1.01946e-12 0.0113974 2.01658e-06 6.20934e-13 0.0113701 3.31248e-06 3.89819e-13 0.0113455 3.91686e-06 2.46199e-13 0.0113226 4.00319e-06 1.67749e-13 0.0113015 3.7468e-06 1.24456e-13 0.0112824 3.29601e-06 9.86416e-14 0.0112655 2.76507e-06 8.05555e-14 0.011251 2.23291e-06 6.56412e-14 0.011239 1.74723e-06 5.23217e-14 0.0112293 1.3313e-06 4.04105e-14 0.0112216 9.91526e-07 3.01484e-14 0.0112157 7.2398e-07 2.17389e-14 0.0112112 5.19477e-07 1.5184e-14 0.0112079 3.66956e-07 1.0324e-14 0.0112055 2.55647e-07 6.83512e-15 0.0112038 1.75647e-07 4.44815e-15 0.0112026 1.19359e-07 2.95245e-15 7.84709e-08 1.37268e-15 0.0187299 0.0150158 -6.89172e-12 0.0179926 0.0121145 -1.29832e-11 0.0170557 0.00945639 -1.27861e-11 0.0160555 0.00717199 -1.16953e-11 0.0150131 0.00536818 -1.00004e-11 0.0140609 0.00389877 -8.3112e-12 0.0132261 0.00279983 -6.25039e-12 0.0125245 0.00193641 -7.6529e-12 0.0119681 0.00130037 -5.86975e-12 0.0115196 0.000811942 -7.42283e-12 0.0112121 0.000455213 -6.33333e-12 0.011017 0.000198921 -6.78078e-12 0.0108953 2.90317e-05 -6.32151e-12 0.0108354 -7.04606e-05 -5.90069e-12 0.010842 -0.000128036 -5.77598e-12 0.0109187 -0.00016702 -5.51036e-12 0.0110267 -0.000173568 -5.02078e-12 0.0111307 -0.000163221 -4.21296e-12 0.0112225 -0.000161118 -3.00204e-12 0.0113112 -0.000172712 -1.68061e-12 0.0113944 -0.000192632 -9.45445e-13 0.0114657 -0.000220729 -4.02693e-13 0.011528 -0.000254106 -4.27531e-13 0.0115923 -0.000287822 -9.42356e-13 0.0116646 -0.000321095 -1.84432e-12 0.0117446 -0.000352433 -2.19549e-12 0.011835 -0.000378354 -3.43993e-12 0.0119372 -0.000399665 -4.32268e-12 0.0120503 -0.000415989 -4.99211e-12 0.0121726 -0.00042753 -5.82644e-12 0.0123039 -0.000435503 -6.76906e-12 0.0124468 -0.000439097 -7.99935e-12 0.0126059 -0.00043898 -9.24654e-12 0.0127847 -0.000435729 -9.72044e-12 0.0129823 -0.000430447 -1.02686e-11 0.0131932 -0.000424335 -1.11141e-11 0.0134098 -0.000417969 -1.16038e-11 0.0136248 -0.000411923 -1.15407e-11 0.0138328 -0.000406887 -1.15962e-11 0.0140312 -0.000403275 -1.14275e-11 0.0142231 -0.000401104 -1.05139e-11 0.0144104 -0.000401471 -9.93122e-12 0.0145811 -0.000406286 -9.3346e-12 0.0147183 -0.000414646 -8.05876e-12 0.0148222 -0.000422884 -7.19633e-12 0.0149038 -0.000432361 -4.78023e-12 0.0149767 -0.000445552 -3.23853e-12 0.015059 -0.000460193 -1.91524e-12 0.0151716 -0.000475671 1.57896e-13 0.0153209 -0.000493189 1.06057e-12 0.0154951 -0.000510779 1.02261e-12 0.0157039 -0.000523559 2.44399e-12 0.0159948 -0.000533361 3.23497e-12 0.0163951 -0.00054788 4.66135e-12 0.0168774 -0.000566288 4.94437e-12 0.0174112 -0.000580885 5.62338e-12 0.0179668 -0.000593188 5.77542e-12 0.0185139 -0.000602998 5.88827e-12 0.0190243 -0.000609735 5.95069e-12 0.0194729 -0.000613354 6.16523e-12 0.0198422 -0.000612841 6.53439e-12 0.0201371 -0.000607815 6.83729e-12 0.0203627 -0.000598414 6.82196e-12 0.0205107 -0.000583961 6.96938e-12 0.0205823 -0.00056453 7.5958e-12 0.0205599 -0.000540959 9.13078e-12 0.0203933 -0.000512964 1.23868e-11 0.0199829 -0.000478188 1.84222e-11 0.0190568 -0.000431597 3.07804e-11 0.0179121 -0.000371714 3.93349e-11 0.016631 -0.000303652 4.27098e-11 0.0153792 -0.000235144 4.00797e-11 0.0142897 -0.000173824 3.34245e-11 0.0134217 -0.00012388 2.57669e-11 0.0127737 -8.58609e-05 1.88028e-11 0.0123121 -5.81728e-05 1.3437e-11 0.0119943 -3.85114e-05 9.2832e-12 0.011781 -2.463e-05 6.07198e-12 0.0116393 -1.47263e-05 4.05477e-12 0.0115451 -7.59849e-06 2.65574e-12 0.0114813 -2.47826e-06 1.67794e-12 0.0114362 1.08203e-06 1.02661e-12 0.0114017 3.36305e-06 6.37596e-13 0.0113727 4.62496e-06 4.09856e-13 0.0113467 5.11218e-06 2.60968e-13 0.0113229 5.04316e-06 1.79148e-13 0.0113011 4.61838e-06 1.32816e-13 0.0112817 4.00382e-06 1.04258e-13 0.0112647 3.32461e-06 8.39218e-14 0.0112502 2.66501e-06 6.7353e-14 0.0112383 2.07411e-06 5.29582e-14 0.0112287 1.57409e-06 4.04312e-14 0.0112211 1.16887e-06 2.98868e-14 0.0112153 8.51588e-07 2.13927e-14 0.011211 6.09984e-07 1.48579e-14 0.0112077 4.30317e-07 1.00587e-14 0.0112054 2.99336e-07 6.64902e-15 0.0112037 2.05431e-07 4.30845e-15 0.0112025 1.39582e-07 2.8662e-15 9.15279e-08 1.34014e-15 0.019315 0.0153585 -2.92814e-12 0.0185336 0.0128024 -3.89005e-12 0.0176018 0.0103443 -5.80642e-12 0.0166561 0.00815601 -6.61166e-12 0.0157474 0.00636654 -6.68217e-12 0.0148949 0.00489164 -7.09627e-12 0.0141449 0.00372275 -6.39158e-12 0.0134768 0.00278402 -7.74505e-12 0.0129312 0.00204048 -7.17054e-12 0.0124487 0.00145493 -8.98848e-12 0.0120654 0.000985224 -8.80412e-12 0.0117478 0.000630342 -9.58054e-12 0.0115285 0.000355078 -9.41184e-12 0.0113932 0.000154686 -8.26423e-12 0.0113221 2.5901e-05 -9.3133e-12 0.0113102 -6.72167e-05 -6.85356e-12 0.0113418 -0.000123371 -6.54938e-12 0.0114296 -0.000168743 -5.72135e-12 0.0115479 -0.000190301 -3.92123e-12 0.0116609 -0.000195794 -2.81957e-12 0.0117616 -0.000210966 -1.73713e-12 0.0118496 -0.000237343 -1.17127e-12 0.0119173 -0.000265623 -1.10409e-12 0.011967 -0.000299005 -1.23608e-12 0.0120179 -0.000334884 -1.79287e-12 0.0120853 -0.000369846 -2.48618e-12 0.012172 -0.000402923 -2.23353e-12 0.0122794 -0.000431239 -3.05146e-12 0.012405 -0.000454989 -3.28095e-12 0.0125443 -0.000474229 -3.28865e-12 0.0126936 -0.000489295 -3.26668e-12 0.0128514 -0.000499551 -3.15718e-12 0.0130186 -0.000505283 -2.98606e-12 0.0131996 -0.000507077 -3.23695e-12 0.0133994 -0.000505768 -3.53422e-12 0.0136186 -0.000502428 -3.9701e-12 0.0138523 -0.000497971 -4.51076e-12 0.0140925 -0.000493136 -4.6532e-12 0.0143322 -0.000488416 -4.64508e-12 0.0145666 -0.000484403 -5.48282e-12 0.0147921 -0.000482011 -6.44964e-12 0.0150079 -0.000481707 -5.39284e-12 0.0152181 -0.000483418 -2.41173e-12 0.0154216 -0.000488263 -3.93485e-12 0.0156042 -0.000497459 -7.32169e-12 0.0157534 -0.000509062 -5.52899e-12 0.0158736 -0.000519959 9.07224e-13 0.0159765 -0.000532555 -1.08175e-12 0.0160821 -0.000546362 9.41367e-14 0.0162127 -0.000560287 3.51724e-12 0.0163717 -0.00057618 2.40754e-12 0.0165514 -0.000590079 9.66498e-13 0.016771 -0.000599104 4.92945e-12 0.0170704 -0.000606722 8.84413e-12 0.0174575 -0.000619034 6.4708e-12 0.0179081 -0.000631581 6.63608e-12 0.0183927 -0.000641498 7.55278e-12 0.018878 -0.000648672 7.81611e-12 0.0193334 -0.000653014 7.6389e-12 0.0197328 -0.000654525 7.26701e-12 0.0200606 -0.000652893 7.40194e-12 0.0203259 -0.000645559 8.10507e-12 0.020536 -0.000631525 8.3024e-12 0.0206667 -0.000612813 8.28796e-12 0.0207194 -0.000590285 8.57124e-12 0.020691 -0.000564826 9.63112e-12 0.0205272 -0.000535866 1.19313e-11 0.0201148 -0.000501311 1.67878e-11 0.0191924 -0.00045328 2.64058e-11 0.0180483 -0.000390143 3.64424e-11 0.0167587 -0.000318627 4.10937e-11 0.0154895 -0.000246722 3.94032e-11 0.0143782 -0.000182296 3.33657e-11 0.0134889 -0.000129742 2.59022e-11 0.012823 -8.96638e-05 1.90721e-11 0.0123475 -6.03764e-05 1.36851e-11 0.0120198 -3.94709e-05 9.43171e-12 0.0117995 -2.46633e-05 6.18418e-12 0.011653 -1.40968e-05 4.15629e-12 0.0115552 -6.50848e-06 2.71833e-12 0.0114885 -1.07984e-06 1.73272e-12 0.011441 2.56903e-06 1.06161e-12 0.0114044 4.83525e-06 6.69048e-13 0.0113738 5.99088e-06 4.37668e-13 0.0113466 6.3159e-06 2.8246e-13 0.0113221 6.06162e-06 1.95186e-13 0.0112999 5.45217e-06 1.4404e-13 0.0112803 4.66806e-06 1.11466e-13 0.0112634 3.8416e-06 8.80629e-14 0.011249 3.05933e-06 6.93685e-14 0.0112373 2.3695e-06 5.36496e-14 0.0112279 1.79178e-06 4.04024e-14 0.0112205 1.3269e-06 2.95372e-14 0.0112148 9.64682e-07 2.09584e-14 0.0112106 6.89854e-07 1.44618e-14 0.0112075 4.85992e-07 9.74638e-15 0.0112052 3.3774e-07 6.41968e-15 0.0112036 2.31582e-07 4.15276e-15 0.0112024 1.57123e-07 2.76368e-15 1.03054e-07 1.30032e-15 0.0200725 0.015707 1.67295e-12 0.0192537 0.0134478 -2.18919e-13 0.0182944 0.0111847 -2.54106e-12 0.0173041 0.00910549 -2.58748e-12 0.0163877 0.0073169 -2.46714e-12 0.0155495 0.00582936 -3.43269e-12 0.0148183 0.00460757 -4.04719e-12 0.0141696 0.00361237 -5.48137e-12 0.0136066 0.00278859 -6.3018e-12 0.0131019 0.00212092 -7.80508e-12 0.0126683 0.00156755 -9.22332e-12 0.0123132 0.00112693 -9.98004e-12 0.0120267 0.000772024 -1.11824e-11 0.0118427 0.000495561 -1.06515e-11 0.011727 0.000281476 -9.53302e-12 0.0116767 0.000126516 -1.01586e-11 0.0116797 1.02598e-05 -8.39109e-12 0.011704 -7.12446e-05 -6.27508e-12 0.011759 -0.00013324 -5.96519e-12 0.0118564 -0.000188556 -5.18398e-12 0.0119628 -0.000224683 -3.58082e-12 0.0120483 -0.000249791 -3.1601e-12 0.0121171 -0.000279435 -2.87657e-12 0.0121768 -0.000313681 -2.87252e-12 0.0122348 -0.000350623 -2.3647e-12 0.0123069 -0.000385484 -2.33822e-12 0.0124075 -0.000419982 -2.71493e-12 0.0125339 -0.000453902 -1.67449e-12 0.0126782 -0.000483927 -1.67808e-12 0.0128352 -0.000509315 -1.28966e-12 0.0130001 -0.000530965 -4.14375e-13 0.0131709 -0.000548231 5.33445e-13 0.0133473 -0.000561 1.57537e-12 0.0135318 -0.000569224 2.46041e-12 0.0137293 -0.000573728 3.01542e-12 0.0139447 -0.00057526 3.22337e-12 0.0141798 -0.00057425 3.29737e-12 0.0144318 -0.000571583 3.21175e-12 0.0146932 -0.000568134 2.79807e-12 0.0149562 -0.000564567 2.11976e-12 0.0152153 -0.000561517 1.31965e-12 0.0154668 -0.000559841 1.15291e-12 0.0157077 -0.000560268 1.83299e-12 0.0159376 -0.000562856 1.28942e-12 0.0161598 -0.000567469 -2.37097e-12 0.0163698 -0.000575332 -1.16956e-12 0.0165528 -0.000587116 1.88073e-12 0.0167013 -0.000599903 4.78294e-12 0.0168249 -0.000610878 5.56998e-12 0.0169464 -0.000621424 6.00022e-12 0.0170878 -0.000632624 6.7733e-12 0.0172498 -0.000644899 5.18835e-12 0.0174325 -0.000653919 6.18877e-12 0.0176629 -0.000657861 1.00196e-11 0.017968 -0.000662102 1.24072e-11 0.0183404 -0.000671287 8.09287e-12 0.0187535 -0.000678153 9.1738e-12 0.019177 -0.00068248 9.64822e-12 0.0195803 -0.000684708 9.26048e-12 0.0199358 -0.00068439 8.61987e-12 0.0202328 -0.000678772 9.29494e-12 0.0204779 -0.000666209 8.80877e-12 0.0206609 -0.000649776 8.6881e-12 0.0207737 -0.000629179 8.71193e-12 0.0208179 -0.000605277 9.1358e-12 0.0207828 -0.000578307 9.89411e-12 0.0206196 -0.000547998 1.15285e-11 0.0202278 -0.000512192 1.48369e-11 0.0193199 -0.000462932 2.22662e-11 0.0181833 -0.000397993 3.34117e-11 0.0168904 -0.000324823 3.94383e-11 0.015607 -0.000251372 3.87229e-11 0.0144752 -0.000185516 3.32757e-11 0.0135647 -0.000131702 2.60612e-11 0.0128802 -9.05661e-05 1.93068e-11 0.0123899 -6.04106e-05 1.38953e-11 0.0120511 -3.88043e-05 9.59163e-12 0.0118228 -2.34576e-05 6.2912e-12 0.0116704 -1.25099e-05 4.24163e-12 0.0115681 -4.69083e-06 2.78172e-12 0.0114978 7.79774e-07 1.78157e-12 0.0114472 4.40398e-06 1.10466e-12 0.0114081 6.53505e-06 7.00781e-13 0.0113755 7.48944e-06 4.68236e-13 0.0113469 7.58212e-06 3.06118e-13 0.0113215 7.09821e-06 2.12472e-13 0.0112988 6.27844e-06 1.55786e-13 0.011279 5.31196e-06 1.18744e-13 0.011262 4.33377e-06 9.20438e-14 0.0112478 3.42921e-06 7.11386e-14 0.0112362 2.64325e-06 5.40923e-14 0.011227 1.99157e-06 4.01631e-14 0.0112198 1.47078e-06 2.90261e-14 0.0112143 1.06699e-06 2.04132e-14 0.0112102 7.61682e-07 1.39887e-14 0.0112072 5.35818e-07 9.37846e-15 0.011205 3.71807e-07 6.16165e-15 0.0112034 2.5463e-07 3.98049e-15 0.0112023 1.72625e-07 2.65053e-15 1.12983e-07 1.25321e-15 0.0206562 0.0160617 8.72228e-13 0.0198761 0.0140565 -1.84449e-12 0.0190052 0.0119561 -8.82401e-13 0.0180763 0.0100006 1.30832e-12 0.0171533 0.00826098 1.75532e-12 0.0162969 0.00675616 1.43554e-12 0.0155186 0.00547893 5.5487e-13 0.0148104 0.00441133 -1.80361e-12 0.0141757 0.00351978 -4.24129e-12 0.0136163 0.00278135 -6.35175e-12 0.0131335 0.00216611 -8.56132e-12 0.0127393 0.0016613 -9.84619e-12 0.0124151 0.00124678 -1.14023e-11 0.0121778 0.000907623 -1.1323e-11 0.0119955 0.000632978 -1.15984e-11 0.0118812 0.000409662 -9.26305e-12 0.011817 0.000231287 -1.17971e-11 0.0117975 9.50309e-05 -8.26156e-12 0.0118176 -1.65542e-05 -7.1836e-12 0.0118516 -0.000100372 -6.98759e-12 0.0119097 -0.000171389 -6.38134e-12 0.0119888 -0.000234182 -5.59837e-12 0.0120731 -0.000282967 -4.81603e-12 0.0121624 -0.000322653 -4.84082e-12 0.0122608 -0.000360955 -5.24076e-12 0.0123762 -0.000401297 -4.88744e-12 0.0125134 -0.000440852 -3.8267e-12 0.0126743 -0.000476277 -3.19265e-12 0.0128501 -0.000509899 -1.85398e-12 0.0130305 -0.000541571 -1.71975e-13 0.013212 -0.000568024 9.21774e-13 0.0133946 -0.00059042 2.8033e-12 0.0135789 -0.000609025 4.68041e-12 0.013767 -0.000623439 6.40268e-12 0.0139635 -0.000633738 7.93961e-12 0.0141746 -0.000640424 9.16358e-12 0.014405 -0.000644021 1.00987e-11 0.0146557 -0.000645138 1.07995e-11 0.014924 -0.000644396 1.0902e-11 0.015204 -0.000642505 1.07989e-11 0.015488 -0.000640204 1.0958e-11 0.0157692 -0.000638049 1.03113e-11 0.0160438 -0.000636664 8.84929e-12 0.0163086 -0.000636967 9.41251e-12 0.0165599 -0.000639358 1.0791e-11 0.0167986 -0.00064339 7.67081e-12 0.0170279 -0.000649159 3.77827e-13 0.0172385 -0.000658433 7.82668e-12 0.0174122 -0.000670103 1.64095e-11 0.0175518 -0.000678509 1.0243e-11 0.0176849 -0.000683796 9.53292e-12 0.0178322 -0.000691187 9.5122e-12 0.0179944 -0.000698367 9.23645e-12 0.0181816 -0.000700186 1.22096e-11 0.0184227 -0.000699379 1.39415e-11 0.0187317 -0.000701311 1.29303e-11 0.0190857 -0.000705632 1.0362e-11 0.0194544 -0.000707803 1.08087e-11 0.019811 -0.000707569 1.0347e-11 0.0201332 -0.00070329 1.0482e-11 0.0204081 -0.000692418 9.82894e-12 0.0206292 -0.000677384 8.95581e-12 0.0207877 -0.000658798 9.00028e-12 0.0208838 -0.00063661 9.08248e-12 0.0209173 -0.000611197 9.29631e-12 0.0208772 -0.000582534 9.81427e-12 0.020718 -0.000550454 1.09508e-11 0.0203439 -0.000512882 1.29234e-11 0.0194474 -0.00046293 1.84304e-11 0.018315 -0.00039775 3.06341e-11 0.0170173 -0.000324426 3.78744e-11 0.0157191 -0.000250793 3.8117e-11 0.0145672 -0.000184695 3.32179e-11 0.0136361 -0.000130604 2.62266e-11 0.0129336 -8.91857e-05 1.95239e-11 0.0124291 -5.87434e-05 1.40971e-11 0.0120796 -3.68679e-05 9.74664e-12 0.0118436 -2.13059e-05 6.39089e-12 0.0116856 -1.02268e-05 4.3152e-12 0.011579 -2.38567e-06 2.83578e-12 0.0115052 2.99207e-06 1.82425e-12 0.0114517 6.43404e-06 1.13938e-12 0.0114103 8.32139e-06 7.32924e-13 0.011376 9.00187e-06 4.96775e-13 0.0113462 8.8199e-06 3.27692e-13 0.01132 8.08337e-06 2.27987e-13 0.011297 7.04477e-06 1.66059e-13 0.0112771 5.89678e-06 1.2484e-13 0.0112603 4.77284e-06 9.51107e-14 0.0112463 3.75418e-06 7.22337e-14 0.0112349 2.88068e-06 5.40581e-14 0.0112259 2.16291e-06 3.95964e-14 0.011219 1.59297e-06 2.83007e-14 0.0112137 1.15307e-06 1.97303e-14 0.0112097 8.21623e-07 1.3431e-14 0.0112068 5.77048e-07 8.96461e-15 0.0112047 3.99898e-07 5.86138e-15 0.0112033 2.73489e-07 3.79733e-15 0.0112022 1.85131e-07 2.52383e-15 1.21085e-07 1.20137e-15 0.0214685 0.0164602 1.76713e-12 0.0207062 0.0146789 2.88402e-12 0.0197989 0.0127464 1.41598e-12 0.018891 0.0108698 1.96168e-12 0.0179875 0.0091721 1.79485e-12 0.0170866 0.00766198 2.50159e-12 0.0162299 0.00634142 1.83178e-12 0.0154556 0.0052085 4.78149e-13 0.0147662 0.00425128 -8.1456e-13 0.0141629 0.00344704 -3.09775e-12 0.0136435 0.00277834 -5.56077e-12 0.0132102 0.00222061 -7.49208e-12 0.0128554 0.00175603 -9.13692e-12 0.0125713 0.00136525 -9.83789e-12 0.012339 0.00103723 -1.03627e-11 0.0121613 0.000759386 -9.64723e-12 0.012034 0.000527282 -9.82107e-12 0.0119559 0.000331801 -8.17005e-12 0.0119318 0.000172693 -9.70778e-12 0.0119405 4.19671e-05 -8.61602e-12 0.0119786 -7.00075e-05 -8.4453e-12 0.0120248 -0.000159731 -8.24786e-12 0.0120982 -0.000237166 -8.18508e-12 0.012199 -0.00030432 -7.985e-12 0.0123246 -0.000363763 -7.70279e-12 0.0124687 -0.000414199 -7.14565e-12 0.0126274 -0.000458297 -6.6196e-12 0.0128037 -0.000499067 -5.29743e-12 0.0129951 -0.000539787 -3.81517e-12 0.0131958 -0.000577794 -9.78745e-13 0.0133979 -0.000607931 1.38341e-12 0.0136029 -0.000634583 3.62193e-12 0.013812 -0.00065726 6.20947e-12 0.0140245 -0.000675403 8.69507e-12 0.0142409 -0.000690009 1.09164e-11 0.0144637 -0.000701056 1.28178e-11 0.0146972 -0.000708618 1.448e-11 0.0149452 -0.000713231 1.5702e-11 0.0152095 -0.000715426 1.66048e-11 0.0154874 -0.000715725 1.72613e-11 0.0157742 -0.000714594 1.74196e-11 0.0160651 -0.000712639 1.7506e-11 0.0163556 -0.000710579 1.78102e-11 0.0166419 -0.000709091 1.68936e-11 0.0169189 -0.000708707 1.68314e-11 0.0171817 -0.000709735 1.78323e-11 0.0174291 -0.000711701 1.58833e-11 0.017664 -0.000714339 9.97759e-12 0.0178794 -0.000720336 1.3479e-11 0.0180563 -0.000727483 1.98683e-11 0.0181951 -0.000731227 1.63159e-11 0.018327 -0.000731363 1.4284e-11 0.0184708 -0.000733441 1.43505e-11 0.018629 -0.000733711 1.47569e-11 0.0188232 -0.000729147 1.63477e-11 0.0190785 -0.000724094 1.55626e-11 0.0193845 -0.000723677 1.36612e-11 0.019708 -0.000723118 1.301e-11 0.0200236 -0.000719456 1.2414e-11 0.020313 -0.000710231 1.18654e-11 0.0205607 -0.000695858 1.00617e-11 0.0207592 -0.000678094 9.58055e-12 0.0209002 -0.000657262 9.55808e-12 0.0209815 -0.000633593 9.53643e-12 0.0210037 -0.000607215 9.53495e-12 0.0209575 -0.000577996 9.76397e-12 0.0208029 -0.000545227 1.01508e-11 0.0204444 -0.000506735 1.08644e-11 0.0195649 -0.000456375 1.46322e-11 0.0184421 -0.00039122 2.82085e-11 0.0171436 -0.000318148 3.64912e-11 0.0158335 -0.000245115 3.76505e-11 0.0146629 -0.000179729 3.32518e-11 0.0137116 -0.000126254 2.64271e-11 0.012991 -8.52828e-05 1.97444e-11 0.0124718 -5.51371e-05 1.42919e-11 0.0121111 -3.34359e-05 9.90102e-12 0.0118668 -1.80026e-05 6.49102e-12 0.0117025 -7.07586e-06 4.38078e-12 0.011591 5.3877e-07 2.88114e-12 0.0115133 5.62467e-06 1.8611e-12 0.0114566 8.72097e-06 1.17009e-12 0.0114127 1.02499e-05 7.59972e-13 0.0113764 1.05744e-05 5.19854e-13 0.0113454 1.0064e-05 3.45452e-13 0.0113184 9.0447e-06 2.40618e-13 0.0112951 7.77307e-06 1.74155e-13 0.0112751 6.43956e-06 1.29327e-13 0.0112584 5.17182e-06 9.70314e-14 0.0112446 4.04396e-06 7.25432e-14 0.0112336 3.08884e-06 5.35081e-14 0.0112249 2.31089e-06 3.87061e-14 0.0112181 1.69704e-06 2.73779e-14 0.011213 1.22549e-06 1.893e-14 0.0112093 8.71446e-07 1.28064e-14 0.0112065 6.10936e-07 8.51077e-15 0.0112045 4.22639e-07 5.54903e-15 0.0112031 2.88585e-07 3.59521e-15 0.0112021 1.95075e-07 2.3924e-15 1.27323e-07 1.14712e-15 0.02209 0.016926 3.76073e-12 0.0214588 0.0152387 4.52043e-12 0.0206616 0.0135039 3.47371e-12 0.0197828 0.0117323 3.78866e-12 0.018873 0.0100556 3.28354e-12 0.0179545 0.00854175 2.08743e-12 0.01705 0.00719517 2.53802e-12 0.0161965 0.006016 2.11541e-12 0.0154251 0.00500175 4.76375e-13 0.0147593 0.00414071 -1.00248e-12 0.0142014 0.00341733 -2.89506e-12 0.0137391 0.00280791 -4.50517e-12 0.0133511 0.00229412 -6.64155e-12 0.0130252 0.00185577 -7.53785e-12 0.0127518 0.00148056 -8.55301e-12 0.0125268 0.00115554 -8.44149e-12 0.0123556 0.000876013 -8.52263e-12 0.0122257 0.000634663 -8.37548e-12 0.0121504 0.000426935 -8.40326e-12 0.0121136 0.000248385 -9.2755e-12 0.0121089 9.68111e-05 -9.32655e-12 0.0121346 -3.46619e-05 -1.03779e-11 0.0121927 -0.000148143 -1.07656e-11 0.0122791 -0.000244198 -1.05276e-11 0.0123982 -0.000325016 -1.04701e-11 0.0125474 -0.000396917 -1.03623e-11 0.0127213 -0.000461606 -8.81402e-12 0.0129129 -0.00052033 -7.86519e-12 0.0131173 -0.000569095 -5.76899e-12 0.0133278 -0.00061046 -4.30113e-12 0.0135451 -0.000648957 -1.18256e-12 0.0137719 -0.00068611 2.34616e-12 0.0140038 -0.000712961 5.25345e-12 0.0142415 -0.000734374 8.5568e-12 0.0144849 -0.000752484 1.12838e-11 0.0147306 -0.000765078 1.3709e-11 0.0149791 -0.000773876 1.59115e-11 0.0152343 -0.000779562 1.74808e-11 0.0154984 -0.000782427 1.89047e-11 0.0157703 -0.000783003 2.00202e-11 0.0160488 -0.000781739 2.08729e-11 0.0163332 -0.000779306 2.10048e-11 0.0166212 -0.000776173 2.16059e-11 0.0169098 -0.00077289 2.1146e-11 0.0171965 -0.000769825 2.25639e-11 0.0174768 -0.000767246 2.18277e-11 0.0177439 -0.000766119 2.14501e-11 0.0179942 -0.00076542 2.19823e-11 0.0182303 -0.00076541 1.73368e-11 0.0184442 -0.000767886 2.02558e-11 0.018618 -0.00077013 2.47668e-11 0.0187566 -0.000767768 2.30694e-11 0.018889 -0.00076229 1.57639e-11 0.0190286 -0.000759017 1.81132e-11 0.019187 -0.000753069 1.85251e-11 0.0193948 -0.000742129 1.7789e-11 0.0196635 -0.000733967 1.56518e-11 0.0199585 -0.000729288 1.51248e-11 0.0202464 -0.000720974 1.37997e-11 0.0205036 -0.00070815 1.20716e-11 0.0207167 -0.000691169 1.0412e-11 0.0208878 -0.000670319 9.87963e-12 0.0210135 -0.000646331 9.81414e-12 0.0210843 -0.000620161 9.67271e-12 0.0210948 -0.000592286 9.47289e-12 0.0210371 -0.000562776 9.37761e-12 0.0208788 -0.000530725 9.67078e-12 0.0205323 -0.00049339 9.01572e-12 0.0196758 -0.000444451 1.13082e-11 0.0185645 -0.000378949 2.62862e-11 0.0172656 -0.000306519 3.55266e-11 0.0159436 -0.000234941 3.73766e-11 0.0147544 -0.000171172 3.33463e-11 0.0137833 -0.000119111 2.66453e-11 0.0130451 -7.92377e-05 1.99684e-11 0.0125117 -4.98906e-05 1.44922e-11 0.0121401 -2.87573e-05 1.00436e-11 0.0118878 -1.37656e-05 6.5778e-12 0.0117174 -3.24815e-06 4.43987e-12 0.0116012 3.93093e-06 2.91887e-12 0.0115197 8.54812e-06 1.88976e-12 0.01146 1.11672e-05 1.19486e-12 0.0114137 1.22353e-05 7.83108e-13 0.0113757 1.21381e-05 5.40152e-13 0.0113436 1.1263e-05 3.60109e-13 0.0113161 9.94385e-06 2.50649e-13 0.0112926 8.43504e-06 1.80235e-13 0.0112727 6.91958e-06 1.32327e-13 0.0112562 5.51554e-06 9.79014e-14 0.0112428 4.28746e-06 7.21454e-14 0.011232 3.25968e-06 5.25018e-14 0.0112236 2.42962e-06 3.75355e-14 0.0112172 1.77877e-06 2.62919e-14 0.0112123 1.28116e-06 1.80343e-14 0.0112087 9.0894e-07 1.21297e-14 0.0112061 6.35893e-07 8.02962e-15 0.0112042 4.39075e-07 5.22182e-15 0.0112029 2.99252e-07 3.3841e-15 0.011202 2.01911e-07 2.25585e-15 1.31588e-07 1.08977e-15 0.022956 0.0176378 3.89454e-12 0.022298 0.0158526 5.33372e-12 0.0215401 0.0142074 4.7079e-12 0.0206357 0.012543 4.94484e-12 0.0196982 0.0109132 3.23523e-12 0.0187732 0.0093837 3.93551e-12 0.0178706 0.00801365 4.36309e-12 0.017008 0.00681308 5.09434e-12 0.016211 0.00576534 2.95792e-12 0.0155025 0.00486417 1.50544e-12 0.0148882 0.00409192 -8.72415e-13 0.0143641 0.00343211 -2.20721e-12 0.0139245 0.00286678 -4.28673e-12 0.013553 0.0023795 -4.53834e-12 0.0132359 0.00195605 -6.05118e-12 0.0129724 0.00158757 -6.1765e-12 0.0127601 0.0012657 -6.71042e-12 0.0125972 0.000982779 -7.00072e-12 0.0124799 0.00073416 -7.4598e-12 0.0123981 0.000514187 -8.48554e-12 0.0123582 0.000320509 -8.80794e-12 0.0123451 0.000149231 -1.1607e-11 0.0123708 1.35753e-06 -1.16774e-11 0.0124414 -0.000132406 -1.26643e-11 0.0125507 -0.000247175 -1.26895e-11 0.0126944 -0.00034596 -1.26833e-11 0.0128621 -0.000432239 -1.04776e-11 0.013048 -0.000507812 -1.01165e-11 0.0132508 -0.000574949 -9.11065e-12 0.0134759 -0.000638848 -6.97198e-12 0.0137071 -0.000692736 -3.51654e-12 0.0139406 -0.00073322 -1.43262e-12 0.0141802 -0.000766962 1.90542e-12 0.0144357 -0.000801682 6.56678e-12 0.0146995 -0.000826684 9.1825e-12 0.0149654 -0.000840227 1.21208e-11 0.0152368 -0.000850719 1.48872e-11 0.0155111 -0.000855003 1.65884e-11 0.0157848 -0.000855527 1.8361e-11 0.0160577 -0.000852715 1.98139e-11 0.0163313 -0.000847758 2.09598e-11 0.0166067 -0.000841895 2.15569e-11 0.0168842 -0.000835435 2.27269e-11 0.0171637 -0.000828634 2.28853e-11 0.017445 -0.000822184 2.418e-11 0.0177278 -0.000816352 2.47764e-11 0.0180071 -0.0008115 2.34305e-11 0.0182746 -0.000807987 2.53009e-11 0.0185259 -0.000804624 2.42755e-11 0.0187596 -0.000800922 2.28951e-11 0.0189633 -0.000798765 2.59074e-11 0.0191236 -0.000795441 2.65256e-11 0.0192541 -0.000786933 2.09903e-11 0.0193807 -0.000777492 2.02888e-11 0.0195161 -0.000768086 2.07643e-11 0.0196807 -0.00075395 1.96172e-11 0.0199076 -0.000737418 1.57646e-11 0.0201814 -0.000726311 1.55951e-11 0.020454 -0.000715469 1.3851e-11 0.0206869 -0.000700426 1.21884e-11 0.020867 -0.00068117 1.04221e-11 0.0210093 -0.00065731 9.71701e-12 0.0211175 -0.000629695 9.61761e-12 0.0211803 -0.000599869 9.38064e-12 0.0211871 -0.000568869 9.10464e-12 0.0211236 -0.000537353 8.57762e-12 0.0209631 -0.000504968 8.23523e-12 0.0206288 -0.000468957 8.39422e-12 0.019795 -0.000421788 9.02712e-12 0.0186895 -0.000357697 2.4318e-11 0.0173882 -0.000287914 3.4693e-11 0.016054 -0.000219525 3.72259e-11 0.0148464 -0.000158697 3.34991e-11 0.0138557 -0.000109003 2.69145e-11 0.0131 -7.09114e-05 2.01853e-11 0.0125525 -4.28653e-05 1.46955e-11 0.0121701 -2.26989e-05 1.01839e-11 0.0119095 -8.47792e-06 6.62526e-12 0.0117327 1.33529e-06 4.47964e-12 0.0116115 7.841e-06 2.95607e-12 0.011526 1.18025e-05 1.91178e-12 0.0114631 1.3799e-05 1.2164e-12 0.0114143 1.42994e-05 8.0426e-13 0.0113747 1.37121e-05 5.58782e-13 0.0113415 1.24329e-05 3.72538e-13 0.0113135 1.07944e-05 2.58738e-13 0.0112898 9.04192e-06 1.84753e-13 0.0112701 7.3458e-06 1.34151e-13 0.0112539 5.81097e-06 9.79405e-14 0.0112408 4.48993e-06 7.11962e-14 0.0112304 3.39706e-06 5.11529e-14 0.0112224 2.5219e-06 3.6162e-14 0.0112162 1.84014e-06 2.50918e-14 0.0112116 1.32152e-06 1.70822e-14 0.0112082 9.35126e-07 1.14259e-14 0.0112057 6.52698e-07 7.53882e-15 0.0112039 4.49663e-07 4.89363e-15 0.0112027 3.05809e-07 3.16954e-15 0.0112018 2.05921e-07 2.11759e-15 1.33887e-07 1.03135e-15 0.0238473 0.018533 9.45016e-12 0.0230819 0.0166198 7.93238e-12 0.0223748 0.0148838 6.29052e-12 0.0215886 0.0132976 5.71302e-12 0.0206587 0.0117494 6.0175e-12 0.0196615 0.0102505 5.46818e-12 0.0187023 0.00885539 3.48639e-12 0.0178229 0.00761044 4.92718e-12 0.0170293 0.00652946 5.80863e-12 0.01631 0.0055976 4.45878e-12 0.0156646 0.00478724 2.18968e-12 0.0150975 0.00408377 5.05199e-13 0.0145999 0.00346998 -1.46319e-12 0.0141679 0.00293436 -2.37269e-12 0.0138012 0.00246514 -3.54905e-12 0.0134967 0.00205327 -3.65389e-12 0.0132499 0.00168998 -4.39967e-12 0.0130549 0.00136878 -4.98315e-12 0.0129036 0.00108282 -6.00384e-12 0.0127894 0.000825915 -7.12333e-12 0.0127122 0.0005953 -8.6775e-12 0.0126728 0.000387564 -1.04113e-11 0.0126702 0.000202224 -1.1679e-11 0.012707 3.63307e-05 -1.33256e-11 0.0127925 -0.000115321 -1.3796e-11 0.0129172 -0.000246794 -1.40914e-11 0.013077 -0.00036253 -1.30945e-11 0.0132598 -0.000464273 -1.22899e-11 0.0134563 -0.000554726 -9.29859e-12 0.0136652 -0.000632267 -8.51965e-12 0.013881 -0.000702367 -6.95856e-12 0.0141151 -0.000769664 -4.95512e-12 0.0143648 -0.000824298 4.64474e-14 0.0146199 -0.000862258 1.75847e-12 0.0148746 -0.00089068 4.0592e-12 0.0151427 -0.000919302 8.48094e-12 0.0154282 -0.000939701 1.22715e-11 0.0157184 -0.000943371 1.33314e-11 0.0160093 -0.00094421 1.5452e-11 0.0162958 -0.000936974 1.69048e-11 0.0165789 -0.000926647 1.83288e-11 0.0168575 -0.000913565 1.93858e-11 0.0171305 -0.000899458 2.07033e-11 0.0173994 -0.000885133 2.15979e-11 0.0176698 -0.000871456 2.36665e-11 0.0179444 -0.000859354 2.41205e-11 0.0182222 -0.000849189 2.51754e-11 0.0184978 -0.000841328 2.60741e-11 0.01876 -0.000833524 2.59646e-11 0.0190036 -0.00082455 2.65572e-11 0.0192259 -0.000817836 2.64069e-11 0.0194122 -0.000810687 2.578e-11 0.0195541 -0.00080068 2.39011e-11 0.0196756 -0.000786507 2.06056e-11 0.0197989 -0.000773519 2.07591e-11 0.0199355 -0.000758059 2.02179e-11 0.0201164 -0.000737269 1.60931e-11 0.0203597 -0.000717868 1.27839e-11 0.0206239 -0.000704005 1.39529e-11 0.0208509 -0.00068774 1.18877e-11 0.0210158 -0.000666997 9.86808e-12 0.0211317 -0.00064131 8.91995e-12 0.0212167 -0.000611143 8.80335e-12 0.0212707 -0.000577728 8.58206e-12 0.0212801 -0.000542493 8.26772e-12 0.0212243 -0.000506275 7.75645e-12 0.0210759 -0.000470104 7.60952e-12 0.0207547 -0.000431294 7.07644e-12 0.0199277 -0.000386982 7.14229e-12 0.0188177 -0.00032696 2.33479e-11 0.0175091 -0.000262765 3.43281e-11 0.0161608 -0.000199594 3.72433e-11 0.0149345 -0.000142948 3.36629e-11 0.0139246 -9.64055e-05 2.71595e-11 0.0131521 -6.06278e-05 2.03614e-11 0.0125909 -3.43226e-05 1.48388e-11 0.0121979 -1.54793e-05 1.02886e-11 0.0119292 -2.32523e-06 6.70496e-12 0.0117462 6.52336e-06 4.51933e-12 0.01162 1.21397e-05 2.98335e-12 0.0115306 1.52769e-05 1.93561e-12 0.0114647 1.65254e-05 1.23896e-12 0.0114137 1.63747e-05 8.24418e-13 0.0113726 1.52447e-05 5.73525e-13 0.0113386 1.3536e-05 3.82816e-13 0.0113102 1.15692e-05 2.65255e-13 0.0112866 9.57426e-06 1.88025e-13 0.0112672 7.70445e-06 1.35026e-13 0.0112513 6.04838e-06 9.73152e-14 0.0112387 4.64456e-06 6.98096e-14 0.0112287 3.49617e-06 4.95405e-14 0.011221 2.58442e-06 3.46376e-14 0.0112152 1.87885e-06 2.38134e-14 0.0112108 1.34498e-06 1.60971e-14 0.0112076 9.49004e-07 1.07041e-14 0.0112053 6.60568e-07 7.03399e-15 0.0112037 4.53958e-07 4.60402e-15 0.0112025 3.07991e-07 2.94752e-15 0.0112017 2.06896e-07 1.9689e-15 1.34228e-07 9.67323e-16 0.0251602 0.0197414 1.09497e-11 0.0240982 0.0176286 8.9666e-12 0.0231979 0.0157288 8.23661e-12 0.0223702 0.0140681 5.73445e-12 0.0215268 0.0125241 6.18379e-12 0.0206296 0.0110868 3.85932e-12 0.0196762 0.00972433 5.09607e-12 0.0187435 0.00846619 4.57014e-12 0.0178968 0.0073415 2.88264e-12 0.0171499 0.00635951 3.73398e-12 0.0164839 0.00550449 2.75836e-12 0.0158811 0.00475729 2.19337e-12 0.0153407 0.00409871 8.86892e-13 0.0148645 0.00351798 -1.40595e-13 0.0144521 0.0030044 -8.82985e-13 0.0141024 0.00255097 -1.55473e-12 0.0138144 0.00214802 -2.19794e-12 0.0135856 0.00178944 -2.9266e-12 0.0134048 0.00146725 -4.22928e-12 0.0132654 0.00117628 -5.64295e-12 0.0131645 0.000912188 -7.58224e-12 0.0131014 0.000671895 -9.37219e-12 0.0130786 0.000452627 -1.12434e-11 0.0131011 0.000254912 -1.27106e-11 0.0131578 7.38205e-05 -1.37627e-11 0.0132556 -9.35211e-05 -1.41946e-11 0.013389 -0.000241835 -1.38595e-11 0.013553 -0.000373641 -1.32176e-11 0.0137342 -0.00049134 -1.10517e-11 0.0139292 -0.000595285 -9.93538e-12 0.0141426 -0.000687428 -7.00384e-12 0.0143545 -0.000766246 -4.68976e-12 0.0145666 -0.000837129 -4.05632e-12 0.0148036 -0.000902993 -2.65448e-12 0.0150621 -0.000954856 2.39136e-13 0.0153234 -0.000988541 5.54894e-12 0.0155886 -0.00100768 7.90697e-12 0.0158677 -0.00102779 1.06398e-11 0.016167 -0.00104007 1.32221e-11 0.0164686 -0.00103499 1.41388e-11 0.0167642 -0.0010225 1.63772e-11 0.0170511 -0.00100455 1.73611e-11 0.0173308 -0.000981976 1.90991e-11 0.0176057 -0.000956921 2.02032e-11 0.0178762 -0.000932276 2.1909e-11 0.0181467 -0.000909361 2.31706e-11 0.0184215 -0.000889301 2.44359e-11 0.018696 -0.000872201 2.50935e-11 0.0189628 -0.000857228 2.469e-11 0.0192158 -0.000844341 2.46636e-11 0.0194472 -0.000830645 2.53672e-11 0.0196474 -0.000816276 2.3872e-11 0.0198058 -0.000802412 1.97966e-11 0.0199294 -0.000786275 1.7511e-11 0.0200436 -0.000768733 1.86322e-11 0.0201612 -0.000751813 1.72882e-11 0.0203048 -0.000729587 1.44685e-11 0.0205092 -0.000704323 1.18689e-11 0.0207599 -0.000684461 1.05704e-11 0.0209919 -0.000667357 1.06192e-11 0.0211587 -0.000646415 8.83169e-12 0.021259 -0.000620731 8.12911e-12 0.0213212 -0.000590047 8.01817e-12 0.0213587 -0.000554921 7.81663e-12 0.0213689 -0.00051627 7.46592e-12 0.0213307 -0.000475463 7.15234e-12 0.0212042 -0.000433138 6.90143e-12 0.020899 -0.000390315 7.42234e-12 0.0200657 -0.000344804 6.24288e-12 0.0189449 -0.000290959 2.2508e-11 0.0176267 -0.000234133 3.4168e-11 0.0162642 -0.000176908 3.7352e-11 0.0150201 -0.000124793 3.39399e-11 0.0139919 -8.17023e-05 2.74096e-11 0.0132032 -4.85657e-05 2.05136e-11 0.0126288 -2.43228e-05 1.49184e-11 0.0122253 -7.12651e-06 1.03566e-11 0.0119484 4.63689e-06 6.75724e-12 0.011759 1.22723e-05 4.55202e-12 0.0116277 1.67841e-05 3.0031e-12 0.0115343 1.89318e-05 1.95979e-12 0.0114654 1.93162e-05 1.25024e-12 0.0114123 1.84368e-05 8.58388e-13 0.0113699 1.67209e-05 5.77423e-13 0.0113352 1.45632e-05 3.91077e-13 0.0113066 1.22631e-05 2.70378e-13 0.0112832 1.00298e-05 1.90166e-13 0.011264 7.995e-06 1.35065e-13 0.0112486 6.22822e-06 9.61231e-14 0.0112365 4.7522e-06 6.80735e-14 0.0112269 3.55807e-06 4.77284e-14 0.0112196 2.61816e-06 3.30136e-14 0.0112141 1.89581e-06 2.24965e-14 0.01121 1.35233e-06 1.5095e-14 0.0112071 9.51118e-07 9.98797e-15 0.0112049 6.60114e-07 6.5539e-15 0.0112034 4.52346e-07 4.24255e-15 0.0112023 3.06073e-07 2.75815e-15 0.0112015 2.05071e-07 1.84086e-15 1.3268e-07 9.11331e-16 0.026348 0.0209671 2.11456e-11 0.0252815 0.0188031 9.20788e-12 0.0242744 0.0167779 9.35095e-12 0.0233392 0.0149744 8.26556e-12 0.0224252 0.0133744 9.11065e-12 0.0215149 0.011925 4.83653e-12 0.0206061 0.0105817 4.12211e-12 0.019707 0.00933602 3.91376e-12 0.0188486 0.00819373 4.51614e-12 0.0180581 0.00716311 3.52895e-12 0.0173468 0.00625388 3.51422e-12 0.0167086 0.0054561 2.12567e-12 0.0161326 0.00475198 2.39676e-12 0.0156182 0.00412795 1.88661e-12 0.0151684 0.00357294 1.32406e-12 0.0147826 0.00307928 6.03255e-13 0.0144608 0.00263848 -8.75594e-14 0.0141946 0.00224371 -1.22636e-12 0.0139814 0.00188637 -2.56648e-12 0.0138151 0.00156277 -4.21386e-12 0.0136921 0.00126606 -6.21674e-12 0.0136138 0.000995384 -8.18872e-12 0.0135771 0.000746728 -1.0313e-11 0.013582 0.000518428 -1.1614e-11 0.0136281 0.000309225 -1.31235e-11 0.0137024 0.000115772 -1.34156e-11 0.0138091 -6.43505e-05 -1.3461e-11 0.0139491 -0.000228952 -1.288e-11 0.0141091 -0.000376175 -1.1404e-11 0.0142811 -0.000508027 -1.01623e-11 0.0144668 -0.00062559 -7.53001e-12 0.0146661 -0.000729284 -6.28911e-12 0.0148657 -0.00082042 -2.44892e-12 0.015061 -0.000895842 -1.94619e-12 0.0152748 -0.000965539 -7.81924e-13 0.0155075 -0.00102733 1.25639e-12 0.0157657 -0.00107204 4.1694e-12 0.0160343 -0.00109866 9.07222e-12 0.0163031 -0.00110697 1.16261e-11 0.0165901 -0.00111528 1.2117e-11 0.0168797 -0.00111526 1.56796e-11 0.0171718 -0.00110292 1.63658e-11 0.0174574 -0.0010789 1.83101e-11 0.0177374 -0.00104875 2.2212e-11 0.0180178 -0.00101479 2.18367e-11 0.018298 -0.000980716 2.17051e-11 0.0185766 -0.000947264 2.18363e-11 0.0188563 -0.000916062 2.14138e-11 0.0191316 -0.000889028 2.19411e-11 0.0193909 -0.000864415 2.22197e-11 0.0196297 -0.000841756 2.24047e-11 0.0198435 -0.000820863 1.87274e-11 0.0200175 -0.000800604 1.55726e-11 0.0201508 -0.000778238 1.39023e-11 0.0202646 -0.000755856 1.40788e-11 0.0203744 -0.000734768 1.20168e-11 0.0204902 -0.000712231 1.00972e-11 0.0206497 -0.000683682 9.31876e-12 0.0208731 -0.000656839 8.38827e-12 0.0211077 -0.000637089 7.59229e-12 0.0212899 -0.000615866 7.17308e-12 0.021396 -0.000591157 6.81781e-12 0.0214429 -0.000561958 6.73625e-12 0.0214571 -0.000527865 6.6496e-12 0.021455 -0.000488834 6.47733e-12 0.0214228 -0.000445528 6.33634e-12 0.021315 -0.000399443 6.55262e-12 0.0210222 -0.000352261 7.39511e-12 0.0201773 -0.000304868 8.51015e-12 0.0190563 -0.00025745 2.39136e-11 0.0177344 -0.000206303 3.48639e-11 0.0163609 -0.000153542 3.77903e-11 0.0151006 -0.000105202 3.42545e-11 0.0140554 -6.53687e-05 2.7618e-11 0.0132512 -3.50125e-05 2.06504e-11 0.0126641 -1.30708e-05 1.49925e-11 0.0122504 2.17114e-06 1.04086e-11 0.0119654 1.22646e-05 6.78667e-12 0.0117697 1.84302e-05 4.57012e-12 0.0116335 2.16443e-05 3.01854e-12 0.0115363 2.26603e-05 1.97389e-12 0.0114647 2.20822e-05 1.26579e-12 0.0114097 2.04195e-05 8.76043e-13 0.0113661 1.80926e-05 5.89093e-13 0.011331 1.5479e-05 3.9809e-13 0.0113025 1.28515e-05 2.73882e-13 0.0112793 1.03917e-05 1.9105e-13 0.0112606 8.20626e-06 1.34224e-13 0.0112458 6.34322e-06 9.43653e-14 0.0112341 4.80831e-06 6.60045e-14 0.0112251 3.57997e-06 4.57382e-14 0.0112182 2.62149e-06 3.13071e-14 0.0112131 1.89011e-06 2.11445e-14 0.0112092 1.34309e-06 1.40934e-14 0.0112065 9.41316e-07 9.27358e-15 0.0112045 6.5116e-07 6.07437e-15 0.0112031 4.44856e-07 3.92891e-15 0.0112021 3.00121e-07 2.55933e-15 0.0112014 2.00493e-07 1.70895e-15 1.29354e-07 8.52222e-16 0.0277493 0.0216762 2.38705e-11 0.0265586 0.0201093 1.22648e-11 0.0253668 0.0179885 1.04122e-11 0.0243277 0.0160221 9.3425e-12 0.0234175 0.0143112 9.04168e-12 0.0225407 0.0128185 7.61122e-12 0.0216526 0.0114573 5.27523e-12 0.0207582 0.0102122 4.28343e-12 0.0198578 0.00906068 3.42173e-12 0.0189987 0.00799675 3.81326e-12 0.0182283 0.00703548 3.10728e-12 0.0175498 0.00617778 3.46503e-12 0.0169477 0.00542619 3.48176e-12 0.0164108 0.00475988 3.86392e-12 0.0159363 0.00416774 3.44333e-12 0.0155251 0.00363671 2.65073e-12 0.0151733 0.00316077 1.67339e-12 0.0148783 0.00272995 3.56507e-13 0.0146359 0.00233981 -1.16652e-12 0.0144416 0.00198273 -3.06328e-12 0.0142972 0.0016561 -5.09573e-12 0.0142002 0.00135554 -7.09959e-12 0.014151 0.00107884 -9.04492e-12 0.0141442 0.000823222 -1.05324e-11 0.0141773 0.000586682 -1.16191e-11 0.0142438 0.000367523 -1.22081e-11 0.0143319 0.000163283 -1.20581e-11 0.0144426 -2.619e-05 -1.17438e-11 0.0145811 -0.000205322 -1.05908e-11 0.0147328 -0.00036577 -9.5155e-12 0.0148904 -0.000510122 -7.49609e-12 0.015061 -0.000638906 -6.03344e-12 0.0152357 -0.000753346 -3.45256e-12 0.0154091 -0.000852998 -2.1777e-12 0.0155939 -0.000937456 1.71573e-12 0.0157844 -0.00100814 2.20803e-12 0.0159856 -0.00107528 3.43865e-12 0.0162138 -0.00112806 5.78414e-12 0.0164685 -0.00116317 1.00956e-11 0.0167399 -0.00117902 1.16137e-11 0.0170108 -0.00118215 1.37204e-11 0.0172754 -0.00117204 1.71725e-11 0.017545 -0.00116151 1.79771e-11 0.0178179 -0.00113945 2.04688e-11 0.0180923 -0.00110452 2.00578e-11 0.0183725 -0.00106582 1.90716e-11 0.0186614 -0.00102355 2.04259e-11 0.0189533 -0.000981383 1.93322e-11 0.0192424 -0.000939872 1.67134e-11 0.0195211 -0.000900697 1.76794e-11 0.0197783 -0.000864325 1.49852e-11 0.0200038 -0.000831311 1.28477e-11 0.0201955 -0.000800898 1.08194e-11 0.0203501 -0.000772265 9.85612e-12 0.0204747 -0.000740493 7.81557e-12 0.0205881 -0.000711101 6.61765e-12 0.020693 -0.000685153 5.07218e-12 0.0208107 -0.000655585 5.08349e-12 0.0209863 -0.000622376 5.49849e-12 0.0212095 -0.000595126 4.80391e-12 0.0214071 -0.000573302 4.74736e-12 0.0215318 -0.000548662 4.94595e-12 0.0215839 -0.000521403 4.95665e-12 0.0215837 -0.000490207 4.9794e-12 0.021555 -0.00045423 5.22105e-12 0.0214962 -0.000413011 4.8432e-12 0.0213796 -0.000367548 7.02556e-12 0.021085 -0.000320927 8.12421e-12 0.0202495 -0.000274461 1.38763e-11 0.0191503 -0.000229837 2.69921e-11 0.0178341 -0.000180228 3.62548e-11 0.0164532 -0.000129539 3.84805e-11 0.0151784 -8.40098e-05 3.46588e-11 0.0141168 -4.72695e-05 2.78225e-11 0.0132974 -1.98846e-05 2.08516e-11 0.0126977 -5.82515e-07 1.4968e-11 0.0122737 1.23606e-05 1.04941e-11 0.0119807 2.04725e-05 6.8002e-12 0.0117786 2.49112e-05 4.57654e-12 0.0116376 2.66324e-05 3.02997e-12 0.0115368 2.63832e-05 1.98852e-12 0.0114626 2.47638e-05 1.2796e-12 0.0114061 2.22733e-05 8.88899e-13 0.0113617 1.93244e-05 5.9778e-13 0.0113263 1.62602e-05 4.02904e-13 0.0112979 1.33194e-05 2.75642e-13 0.0112752 1.0651e-05 1.90637e-13 0.0112571 8.33335e-06 1.32506e-13 0.0112428 6.39111e-06 9.20624e-14 0.0112317 4.81218e-06 6.36318e-14 0.0112232 3.56204e-06 4.35989e-14 0.0112168 2.59504e-06 2.95438e-14 0.011212 1.8625e-06 1.97831e-14 0.0112084 1.31801e-06 1.30986e-14 0.0112059 9.20252e-07 8.57914e-15 0.0112041 6.34355e-07 5.60208e-15 0.0112028 4.31931e-07 3.62873e-15 0.0112019 2.90479e-07 2.36994e-15 0.0112013 1.93436e-07 1.58322e-15 1.24401e-07 7.92402e-16 0.0291086 0.0207365 2.6046e-11 0.0280508 0.0211754 2.04042e-11 0.0267855 0.0193015 1.08565e-11 0.0255588 0.0172481 9.62454e-12 0.0244808 0.0154035 8.60154e-12 0.0235263 0.0137993 7.68805e-12 0.0226368 0.0123782 5.98193e-12 0.0217744 0.0110944 4.72408e-12 0.0209221 0.00991987 4.07975e-12 0.0200722 0.00884635 3.48191e-12 0.0192345 0.00785705 4.33164e-12 0.0184694 0.00695362 5.37383e-12 0.0178059 0.00614315 3.99969e-12 0.0172355 0.00542376 4.46982e-12 0.0167401 0.00478878 5.04337e-12 0.0163099 0.00422238 4.46008e-12 0.0159383 0.0037124 3.0046e-12 0.0156214 0.00324918 1.45115e-12 0.0153554 0.00282617 -3.26466e-13 0.0151409 0.00243765 -2.26998e-12 0.0149755 0.00208063 -4.28081e-12 0.0148618 0.0017507 -6.18864e-12 0.0147992 0.0014467 -7.96225e-12 0.0147826 0.00116479 -9.27052e-12 0.0148049 0.000903212 -1.02029e-11 0.0148606 0.000659414 -1.06231e-11 0.0149426 0.000431619 -1.04234e-11 0.0150393 0.000219282 -1.00284e-11 0.0151473 2.29755e-05 -8.86926e-12 0.0152787 -0.000170753 -7.897e-12 0.0154162 -0.000341498 -6.37051e-12 0.0155564 -0.000495571 -4.85959e-12 0.0157037 -0.000633253 -3.36958e-12 0.0158475 -0.000755642 -1.22818e-12 0.0159937 -0.000861469 1.87124e-13 0.0161577 -0.000952563 1.7497e-12 0.0163263 -0.00102725 5.20213e-12 0.0164992 -0.00109241 5.75025e-12 0.0166959 -0.00115101 6.776e-12 0.0169186 -0.00119414 8.90562e-12 0.0171714 -0.00121812 1.27367e-11 0.0174232 -0.00122554 1.5929e-11 0.0176717 -0.00121633 1.8704e-11 0.0179132 -0.00119666 1.81902e-11 0.0181588 -0.00116851 1.81382e-11 0.0184197 -0.00113804 1.82482e-11 0.0186978 -0.00109927 1.79015e-11 0.0189899 -0.00105268 1.66752e-11 0.019289 -0.00100344 1.5587e-11 0.0195843 -0.000953246 1.29142e-11 0.0198641 -0.000904196 1.11267e-11 0.0201155 -0.000856898 1.05656e-11 0.0203293 -0.000812193 8.54317e-12 0.0205068 -0.000770031 3.8178e-12 0.0206542 -0.000729704 3.09651e-12 0.0207806 -0.000689382 2.40796e-12 0.0208918 -0.000653203 1.14716e-12 0.0209908 -0.000620369 8.91452e-13 0.021115 -0.000583309 2.54406e-12 0.0213032 -0.000546777 2.3822e-12 0.0215099 -0.000518608 3.01549e-12 0.0216628 -0.000492149 3.44342e-12 0.0217296 -0.000465422 3.51467e-12 0.0217216 -0.000437529 3.7851e-12 0.0216677 -0.000407334 4.4372e-12 0.0215669 -0.000373056 5.52871e-12 0.0213941 -0.000334034 8.12203e-12 0.0210865 -0.000292742 1.09622e-11 0.0203009 -0.000249798 1.77211e-11 0.0192376 -0.000203579 2.92618e-11 0.0179306 -0.000152796 3.7431e-11 0.0165428 -0.000103137 3.91688e-11 0.0152533 -6.03328e-05 3.50254e-11 0.0141751 -2.70264e-05 2.80373e-11 0.0133406 -3.08095e-06 2.09193e-11 0.0127282 1.3097e-05 1.50005e-11 0.0122942 2.33274e-05 1.05176e-11 0.0119932 2.91099e-05 6.80918e-12 0.0117851 3.15623e-05 4.58399e-12 0.0116395 3.16112e-05 3.03787e-12 0.0115354 2.99831e-05 2.00181e-12 0.011459 2.72678e-05 1.29574e-12 0.0114012 2.39348e-05 8.97786e-13 0.0113562 2.03701e-05 6.01349e-13 0.0113209 1.6875e-05 4.04796e-13 0.0112929 1.36458e-05 2.75503e-13 0.0112707 1.07946e-05 1.88914e-13 0.0112533 8.36848e-06 1.29926e-13 0.0112397 6.36766e-06 8.92364e-14 0.0112292 4.76183e-06 6.09722e-14 0.0112213 3.50364e-06 4.13266e-14 0.0112153 2.53886e-06 2.77337e-14 0.0112109 1.81341e-06 1.84167e-14 0.0112076 1.27763e-06 1.21147e-14 0.0112053 8.88454e-07 7.89816e-15 0.0112036 6.10116e-07 5.15139e-15 0.0112025 4.1397e-07 3.32876e-15 0.0112017 2.7746e-07 2.18781e-15 0.0112011 1.84137e-07 1.4633e-15 1.18021e-07 7.35664e-16 0.0289652 0.0203653 2.24686e-11 0.0292886 0.0206983 1.98664e-11 0.0281248 0.0204327 1.55416e-11 0.026955 0.0185914 8.98448e-12 0.0258294 0.0166599 8.11187e-12 0.0247747 0.0149215 6.66768e-12 0.023784 0.0134027 5.81394e-12 0.0228463 0.0120439 4.31918e-12 0.021957 0.0108189 4.41902e-12 0.0211091 0.00970434 3.78909e-12 0.0202982 0.00868767 4.10773e-12 0.0195201 0.00776116 4.40247e-12 0.0187923 0.00691297 5.83361e-12 0.0181486 0.00614585 5.80139e-12 0.0176019 0.00545681 4.74706e-12 0.017139 0.00484457 4.25601e-12 0.016747 0.00429573 3.79391e-12 0.0164143 0.00379953 2.6584e-12 0.0161338 0.00334465 7.12417e-13 0.0159031 0.0029263 -1.33409e-12 0.0157223 0.00253907 -3.47663e-12 0.015593 0.00218088 -5.22297e-12 0.0155154 0.0018488 -6.86187e-12 0.0154872 0.0015411 -7.91543e-12 0.0155001 0.00125476 -8.65438e-12 0.0155486 0.000987639 -8.85537e-12 0.0156201 0.000738106 -8.65544e-12 0.0157115 0.000503217 -8.04217e-12 0.0158193 0.000285024 -7.10673e-12 0.015922 7.8835e-05 -5.91272e-12 0.0160346 -0.000118537 -4.66997e-12 0.0161519 -0.00029811 -3.32162e-12 0.0162702 -0.000459388 -2.07809e-12 0.0163883 -0.000603374 -3.0428e-13 0.0165012 -0.000730575 9.27828e-13 0.0166194 -0.000841572 3.01561e-12 0.0167556 -0.000935991 4.16735e-12 0.0169003 -0.00101637 7.15108e-12 0.0170509 -0.0010798 7.48959e-12 0.0172238 -0.00113997 8.40627e-12 0.0174154 -0.00118905 9.77628e-12 0.0176293 -0.00122101 1.26751e-11 0.0178406 -0.00123233 2.02567e-11 0.0180578 -0.0012275 1.72012e-11 0.0182802 -0.00121282 1.5972e-11 0.0185097 -0.00118203 1.86168e-11 0.0187539 -0.00114331 1.78345e-11 0.01902 -0.00109989 1.70316e-11 0.0193075 -0.00105589 1.53744e-11 0.0196067 -0.00100595 1.38322e-11 0.0199012 -0.00095078 1.22796e-11 0.0201767 -0.000892403 8.25417e-12 0.020422 -0.000835107 4.72956e-12 0.0206284 -0.000779169 2.18799e-12 0.0207969 -0.000725427 7.37911e-13 0.0209419 -0.000674204 1.05463e-13 0.0210712 -0.000626094 -8.4465e-13 0.0211787 -0.000582753 -2.06346e-12 0.0212747 -0.000541172 -5.87754e-14 0.0214101 -0.000497262 1.75243e-12 0.0216034 -0.000457912 2.24288e-12 0.0217841 -0.000426103 2.4617e-12 0.0218793 -0.000396264 2.76471e-12 0.0218725 -0.00036973 3.34856e-12 0.0217922 -0.000345102 4.4948e-12 0.0216506 -0.000319943 6.51055e-12 0.0214305 -0.00029185 1.02924e-11 0.0210884 -0.000258673 1.38885e-11 0.0203698 -0.000219008 2.06044e-11 0.0193347 -0.00017114 3.13641e-11 0.0180315 -0.000119895 3.86429e-11 0.0166333 -7.22696e-05 3.98261e-11 0.015327 -3.3233e-05 3.53768e-11 0.0142311 -4.2957e-06 2.82028e-11 0.0133809 1.5424e-05 2.09916e-11 0.0127558 2.78585e-05 1.50406e-11 0.0123117 3.4889e-05 1.05449e-11 0.0120029 3.79831e-05 6.82649e-12 0.0117889 3.82042e-05 4.59704e-12 0.011639 3.6431e-05 3.04959e-12 0.0115321 3.33465e-05 2.01202e-12 0.0114539 2.95086e-05 1.30362e-12 0.0113951 2.53412e-05 9.04346e-13 0.01135 2.11883e-05 6.03995e-13 0.0113149 1.72971e-05 4.0454e-13 0.0112875 1.38153e-05 2.73358e-13 0.0112661 1.08142e-05 1.85743e-13 0.0112494 8.30791e-06 1.26418e-13 0.0112366 6.27184e-06 8.58743e-14 0.0112268 4.65772e-06 5.80373e-14 0.0112194 3.40594e-06 3.89364e-14 0.0112138 2.4544e-06 2.58896e-14 0.0112098 1.74425e-06 1.70592e-14 0.0112069 1.22322e-06 1.11535e-14 0.0112047 8.46953e-07 7.23312e-15 0.0112033 5.79298e-07 4.72621e-15 0.0112022 3.91563e-07 3.03332e-15 0.0112015 2.61513e-07 2.00271e-15 0.011201 1.72947e-07 1.34923e-15 1.10454e-07 6.84382e-16 0.0290948 0.0180867 1.95416e-11 0.0296791 0.0200409 1.80021e-11 0.0294067 0.0206929 1.58037e-11 0.0283036 0.0197769 1.21889e-11 0.0271379 0.0179972 6.99154e-12 0.0260346 0.016156 5.73034e-12 0.0250031 0.0145125 4.99709e-12 0.0240225 0.013067 4.07156e-12 0.0230959 0.0117768 4.15394e-12 0.0222144 0.0106084 4.02439e-12 0.0213799 0.00954636 4.4562e-12 0.0205855 0.00858104 4.73374e-12 0.0198411 0.00770089 5.57037e-12 0.019156 0.00690358 4.71558e-12 0.0185506 0.00617969 5.62137e-12 0.0180358 0.00552314 3.23845e-12 0.0176068 0.00492872 2.44654e-12 0.0172508 0.00438985 1.91478e-12 0.0169566 0.00389824 6.03355e-13 0.0167162 0.00344743 -7.08561e-13 0.0165257 0.00303028 -2.60422e-12 0.0163854 0.00264385 -4.16327e-12 0.0162958 0.00228486 -5.52504e-12 0.0162542 0.0019512 -6.43825e-12 0.0162576 0.00164025 -6.92812e-12 0.0162957 0.00135038 -6.95079e-12 0.0163612 0.0010787 -6.67816e-12 0.0164463 0.000824454 -5.96307e-12 0.0165405 0.000585734 -5.14183e-12 0.0166444 0.000362385 -3.9689e-12 0.016743 0.000152538 -2.89338e-12 0.0168355 -4.3734e-05 -1.58113e-12 0.016928 -0.000231022 -5.23422e-13 0.0170158 -0.000397143 8.00679e-13 0.0171006 -0.00054527 1.86927e-12 0.017182 -0.000675534 2.99905e-12 0.0172736 -0.000789561 4.13175e-12 0.0173818 -0.000886802 5.80767e-12 0.0175001 -0.000970077 6.14946e-12 0.0176398 -0.00103612 8.71005e-12 0.0177905 -0.00109409 9.17717e-12 0.0179457 -0.00114684 1.01143e-11 0.0181126 -0.00118381 1.2993e-11 0.01828 -0.00120184 1.83125e-11 0.0184533 -0.00120118 1.52903e-11 0.0186424 -0.00118993 1.72161e-11 0.0188565 -0.00116491 1.98322e-11 0.0190977 -0.0011298 1.95477e-11 0.0193613 -0.00108436 1.8027e-11 0.0196414 -0.00103337 1.47126e-11 0.0199293 -0.000978209 1.17489e-11 0.0202131 -0.000921182 7.10118e-12 0.0204787 -0.000860412 3.96165e-12 0.0207123 -0.00079563 1.47094e-12 0.0209085 -0.000729731 -2.11723e-13 0.0210727 -0.000666504 -8.37393e-13 0.0212188 -0.000606502 -1.15609e-12 0.0213483 -0.000551511 -2.28834e-12 0.0214499 -0.000499871 -1.91327e-12 0.0215464 -0.000449444 8.92713e-13 0.0216956 -0.000400422 2.28439e-12 0.0218874 -0.000358117 3.12278e-12 0.0220188 -0.000321071 3.41984e-12 0.0220335 -0.000290746 4.03455e-12 0.0219457 -0.000267723 5.42486e-12 0.0217703 -0.00024998 7.98088e-12 0.0215275 -0.00023276 1.14452e-11 0.0211489 -0.000209851 1.52465e-11 0.0204716 -0.000175149 2.30848e-11 0.0194462 -0.000128616 3.28996e-11 0.0181377 -7.94119e-05 3.95912e-11 0.0167241 -3.58719e-05 4.03094e-11 0.0153982 -2.27138e-06 3.56288e-11 0.0142832 2.09581e-05 2.83481e-11 0.0134169 3.54766e-05 2.10244e-11 0.012779 4.34463e-05 1.50435e-11 0.0123251 4.67715e-05 1.05622e-11 0.0120089 4.68408e-05 6.87063e-12 0.0117895 4.4627e-05 4.61721e-12 0.0116359 4.09165e-05 3.06386e-12 0.0115266 3.63473e-05 2.02328e-12 0.0114471 3.13976e-05 1.31239e-12 0.0113879 2.64337e-05 9.07374e-13 0.0113429 2.17414e-05 6.0363e-13 0.0113084 1.7504e-05 4.01952e-13 0.0112818 1.38155e-05 2.69484e-13 0.0112612 1.07038e-05 1.81386e-13 0.0112454 8.14964e-06 1.22167e-13 0.0112334 6.10391e-06 8.20919e-14 0.0112243 4.50124e-06 5.48962e-14 0.0112175 3.27079e-06 3.64652e-14 0.0112124 2.34354e-06 2.40359e-14 0.0112087 1.65674e-06 1.572e-14 0.0112061 1.15622e-06 1.02174e-14 0.0112042 7.96949e-07 6.60845e-15 0.0112029 5.42765e-07 4.29271e-15 0.0112019 3.65425e-07 2.78162e-15 0.0112013 2.43129e-07 1.83768e-15 0.0112009 1.60191e-07 1.23235e-15 1.0195e-07 6.40614e-16 0.0284475 0.0114582 1.79939e-11 0.0295847 0.0187254 1.64991e-11 0.0303995 0.0198597 1.45747e-11 0.0296327 0.0205603 1.23986e-11 0.0285554 0.0192101 7.8351e-12 0.0273694 0.0174795 5.67399e-12 0.0262568 0.0157389 4.5515e-12 0.0252216 0.0141665 4.01305e-12 0.0242381 0.0127849 3.98889e-12 0.0233116 0.011553 4.34416e-12 0.0224487 0.0104472 4.36895e-12 0.0216523 0.00944589 4.57898e-12 0.0209209 0.00853811 4.55945e-12 0.0202518 0.0077102 4.90039e-12 0.0196414 0.0069549 4.05331e-12 0.0190937 0.00626306 5.23296e-12 0.0186125 0.005629 3.67835e-12 0.0182003 0.0050462 1.99e-12 0.0178598 0.00450936 -2.68482e-13 0.0175885 0.00401548 -1.72505e-12 0.017381 0.00356108 -2.61801e-12 0.0172312 0.00314226 -3.79077e-12 0.0171325 0.00275494 -4.66997e-12 0.017081 0.00239522 -4.91697e-12 0.0170721 0.00205989 -5.14405e-12 0.0170999 0.00174657 -4.98407e-12 0.0171576 0.00145349 -4.58325e-12 0.0172354 0.00117912 -3.90882e-12 0.0173254 0.000921741 -3.0636e-12 0.0174213 0.000681169 -2.12808e-12 0.0175159 0.000455593 -1.05916e-12 0.0175997 0.000245544 -1.2803e-13 0.0176668 5.02952e-05 5.83442e-13 0.01773 -0.000138472 1.61338e-12 0.0177822 -0.000306569 2.45414e-12 0.0178322 -0.000457136 3.04354e-12 0.017886 -0.000589992 4.07672e-12 0.0179529 -0.000705583 4.73039e-12 0.0180351 -0.000805354 5.82313e-12 0.0181325 -0.000889215 6.52217e-12 0.0182619 -0.000959355 8.97906e-12 0.0183873 -0.00101553 9.34218e-12 0.0185006 -0.00106898 1.00616e-11 0.0186175 -0.00110975 1.15366e-11 0.0187377 -0.00113433 1.29271e-11 0.0188736 -0.00113931 1.53726e-11 0.0190295 -0.0011305 1.39526e-11 0.0192231 -0.00111063 1.25728e-11 0.0194546 -0.00107979 1.07695e-11 0.0197156 -0.00103952 9.08222e-12 0.0199933 -0.000990911 7.11932e-12 0.0202738 -0.00093385 7.07239e-12 0.0205408 -0.000870734 5.40626e-12 0.0207846 -0.000803536 2.78811e-12 0.0209997 -0.000734612 7.69558e-13 0.0211844 -0.000665265 -3.85161e-13 0.0213437 -0.000594802 -1.08394e-12 0.0214864 -0.000528454 -1.70802e-12 0.0216079 -0.00046768 -2.43199e-12 0.0217022 -0.000409541 -5.51171e-13 0.0218059 -0.00035203 2.51143e-12 0.0219667 -0.000298241 3.9221e-12 0.0221298 -0.000251046 4.25359e-12 0.0221899 -0.000210874 4.91689e-12 0.0221203 -0.00018256 6.55806e-12 0.0219348 -0.000165637 9.30454e-12 0.0216835 -0.000153896 1.28945e-11 0.0212873 -0.000141471 1.71024e-11 0.0206068 -0.00011642 2.53158e-11 0.0195733 -7.47217e-05 3.44756e-11 0.0182493 -3.04775e-05 4.06142e-11 0.0168143 6.37227e-06 4.08767e-11 0.0154656 3.24337e-05 3.58815e-11 0.0143303 4.84314e-05 2.84271e-11 0.0134476 5.66817e-05 2.10418e-11 0.0127971 5.94852e-05 1.50694e-11 0.0123339 5.86568e-05 1.06004e-11 0.0120108 5.54253e-05 6.87178e-12 0.0117867 5.06147e-05 4.62029e-12 0.0116301 4.49257e-05 3.0666e-12 0.011519 3.88781e-05 2.02406e-12 0.0114387 3.2866e-05 1.30976e-12 0.0113795 2.717e-05 9.04366e-13 0.0113351 2.20046e-05 5.98677e-13 0.0113015 1.74829e-05 3.95933e-13 0.0112758 1.36412e-05 2.63261e-13 0.0112563 1.04628e-05 1.75546e-13 0.0112414 7.89566e-06 1.17055e-13 0.0112302 5.86701e-06 7.78574e-14 0.0112218 4.29584e-06 5.15501e-14 0.0112156 3.10145e-06 3.39274e-14 0.011211 2.20913e-06 2.2181e-14 0.0112077 1.55325e-06 1.44081e-14 0.0112054 1.07852e-06 9.31556e-15 0.0112037 7.39889e-07 6.00797e-15 0.0112025 5.01653e-07 3.89014e-15 0.0112017 3.36322e-07 2.53565e-15 0.0112011 2.22875e-07 1.67203e-15 0.0112008 1.46272e-07 1.12274e-15 9.27654e-08 5.95246e-16 0.0257669 0.00496297 8.62705e-12 0.0294337 0.0140359 1.65085e-11 0.0300168 0.0190411 1.42159e-11 0.0308981 0.0196381 1.15167e-11 0.0299572 0.0201879 9.75024e-12 0.0288373 0.0187135 6.14633e-12 0.0276147 0.0170506 4.80737e-12 0.026462 0.01539 4.52044e-12 0.0254204 0.0138892 4.18714e-12 0.0244726 0.0125727 4.50551e-12 0.0236075 0.0114091 4.40123e-12 0.0228128 0.0103653 4.51608e-12 0.0220791 0.00942172 4.28653e-12 0.0214018 0.00856066 4.28509e-12 0.0207798 0.00777033 3.6403e-12 0.0202149 0.00704227 3.24984e-12 0.0197103 0.00636864 2.33668e-12 0.0192653 0.00574499 1.09501e-12 0.018882 0.00516719 5.13769e-13 0.0185648 0.00463226 -8.08524e-13 0.0183174 0.00413862 -2.05342e-12 0.0181404 0.00368373 -3.2435e-12 0.0180267 0.00326402 -3.51953e-12 0.017965 0.00287552 -3.79328e-12 0.0179458 0.00251462 -3.25433e-12 0.0179623 0.00217762 -2.90744e-12 0.0180091 0.00186245 -2.33107e-12 0.018079 0.0015675 -1.72666e-12 0.0181629 0.00129157 -9.73364e-13 0.0182513 0.00103338 -2.41934e-13 0.018337 0.000792252 5.74934e-13 0.0184144 0.000567375 1.28094e-12 0.0184776 0.000358246 1.97687e-12 0.0185171 0.000164192 2.41618e-12 0.0185401 -1.06574e-05 2.97912e-12 0.0185614 -0.000188624 3.15527e-12 0.0185821 -0.000338421 3.82403e-12 0.0186124 -0.000471721 4.42396e-12 0.0186545 -0.000588564 4.77275e-12 0.0187137 -0.000689958 6.00669e-12 0.0187961 -0.000775452 6.78759e-12 0.0189033 -0.000848867 7.26479e-12 0.0189976 -0.000906614 9.19252e-12 0.0190657 -0.00095687 9.57147e-12 0.0191365 -0.00100075 9.95558e-12 0.0192159 -0.00103056 1.13561e-11 0.0193151 -0.00104301 1.3509e-11 0.0194478 -0.0010382 1.26498e-11 0.0196298 -0.00102405 1.30776e-11 0.0198509 -0.000998806 1.44167e-11 0.0200979 -0.000963137 1.47605e-11 0.0203596 -0.000917416 1.23342e-11 0.0206212 -0.000862774 6.8238e-12 0.0208679 -0.000800656 2.73763e-12 0.0210894 -0.000732133 1.04901e-12 0.021281 -0.000659616 -3.64161e-14 0.0214486 -0.000586155 -1.28455e-12 0.0215991 -0.000514253 -2.01172e-12 0.0217311 -0.000445416 -2.54605e-12 0.0218363 -0.000379938 -7.3757e-13 0.0219236 -0.000316799 1.53891e-12 0.0220377 -0.000255821 3.4751e-12 0.0221979 -0.000198627 5.12163e-12 0.022304 -0.000146116 5.6606e-12 0.0222843 -0.000104059 7.03393e-12 0.0221354 -7.69894e-05 9.55916e-12 0.0218706 -6.42549e-05 1.46967e-11 0.0214899 -5.55701e-05 1.89886e-11 0.020779 -4.22015e-05 2.80308e-11 0.0197158 -9.52222e-06 3.69893e-11 0.0183638 2.64625e-05 4.22114e-11 0.0169008 5.38868e-05 4.17515e-11 0.0155266 7.01986e-05 3.62872e-11 0.0143702 7.74653e-05 2.85507e-11 0.0134713 7.84968e-05 2.10265e-11 0.0128089 7.5547e-05 1.50178e-11 0.0123372 7.02082e-05 1.05418e-11 0.0120082 6.34701e-05 6.83031e-12 0.0117802 5.59885e-05 4.58364e-12 0.0116213 4.83267e-05 3.03946e-12 0.0115092 4.08579e-05 1.99864e-12 0.0114288 3.38611e-05 1.30031e-12 0.0113702 2.75201e-05 8.86036e-13 0.0113267 2.19635e-05 5.88262e-13 0.0112941 1.72291e-05 3.86189e-13 0.0112696 1.32933e-05 2.54685e-13 0.0112512 1.00952e-05 1.68368e-13 0.0112374 7.55103e-06 1.11245e-13 0.0112271 5.56637e-06 7.33003e-14 0.0112194 4.04637e-06 4.80867e-14 0.0112138 2.90213e-06 3.13754e-14 0.0112097 2.05465e-06 2.03555e-14 0.0112068 1.43653e-06 1.31385e-14 0.0112047 9.92258e-07 8.45436e-15 0.0112032 6.77371e-07 5.43894e-15 0.0112022 4.57134e-07 3.51716e-15 0.0112015 3.05131e-07 2.29634e-15 0.011201 2.01349e-07 1.51791e-15 0.0112006 1.31604e-07 1.01944e-15 8.31556e-08 5.47353e-16 0.0203135 0.00201685 5.80764e-12 0.0266061 0.00617796 1.47772e-11 0.029977 0.0150421 1.57225e-11 0.0303969 0.0191058 1.18854e-11 0.0312693 0.0192791 9.14507e-12 0.0302818 0.0197368 7.9207e-12 0.0291533 0.0182821 5.1533e-12 0.027923 0.0167005 5.18268e-12 0.0267498 0.0151155 4.75091e-12 0.0257059 0.0136871 4.76815e-12 0.024783 0.0124357 4.52783e-12 0.0239652 0.011332 4.13566e-12 0.0232324 0.0103468 3.66186e-12 0.0225612 0.00945281 3.07763e-12 0.0219406 0.00863014 2.55011e-12 0.021366 0.00786554 1.86737e-12 0.0208399 0.00715083 1.12808e-12 0.0203688 0.00648381 1.40311e-13 0.0199561 0.0058624 -6.57283e-13 0.019609 0.0052858 -1.35759e-12 0.0193336 0.00475376 -1.88907e-12 0.0191288 0.00426411 -1.69048e-12 0.0189902 0.00381294 -1.79433e-12 0.0189101 0.00339533 -1.69554e-12 0.0188779 0.0030069 -1.41784e-12 0.0188832 0.00264491 -6.46124e-13 0.0189171 0.00230668 -6.09161e-14 0.0189742 0.0019904 4.75875e-13 0.0190472 0.00169491 1.05578e-12 0.0191262 0.00141897 1.52222e-12 0.0192023 0.00116179 1.98849e-12 0.0192676 0.000922054 2.36644e-12 0.0193176 0.000699728 2.70807e-12 0.0193522 0.000493066 2.8253e-12 0.0193718 0.000303863 2.98964e-12 0.019365 0.000127674 3.13103e-12 0.0193504 -3.11672e-05 3.5815e-12 0.0193476 -0.00018734 3.75677e-12 0.0193561 -0.000321377 3.80157e-12 0.0193755 -0.000438359 4.67328e-12 0.0194155 -0.000540529 5.40765e-12 0.01948 -0.000629189 5.78533e-12 0.0195512 -0.000704719 6.94532e-12 0.0196049 -0.000766992 7.54919e-12 0.019633 -0.000815067 7.60472e-12 0.0196648 -0.000861165 7.78758e-12 0.019711 -0.000896138 7.64013e-12 0.0197832 -0.000915064 8.71597e-12 0.0199023 -0.000916501 7.21891e-12 0.0200772 -0.000906195 1.04071e-11 0.0202882 -0.00088778 1.05136e-11 0.0205152 -0.000857134 8.84553e-12 0.0207499 -0.000816279 6.71877e-12 0.0209794 -0.00076643 2.51392e-12 0.0211916 -0.000708008 5.24659e-13 0.0213812 -0.00064235 4.09716e-14 0.0215479 -0.000572602 -2.31874e-12 0.0216957 -0.000500818 -2.46906e-12 0.0218274 -0.00042978 -3.09531e-12 0.0219373 -0.000361432 -1.30739e-12 0.0220223 -0.000294989 8.7557e-13 0.0221084 -0.000229899 2.74261e-12 0.0222313 -0.000166907 5.04249e-12 0.0223587 -0.000106399 6.17778e-12 0.0223986 -5.09954e-05 7.32888e-12 0.0223077 -6.94009e-06 9.50195e-12 0.0220767 2.10385e-05 1.35216e-11 0.0217122 3.4189e-05 1.98871e-11 0.0209873 4.27919e-05 2.87643e-11 0.0198703 6.34547e-05 4.02076e-11 0.0184764 8.97016e-05 4.37761e-11 0.0169795 0.000105096 4.27856e-11 0.0155781 0.000109716 3.68208e-11 0.0144009 0.000107074 2.87441e-11 0.0134867 0.000100216 2.10222e-11 0.0128136 9.11475e-05 1.49584e-11 0.0123345 8.10824e-05 1.04413e-11 0.0120008 7.07226e-05 6.74827e-12 0.01177 6.05927e-05 4.53178e-12 0.0116098 5.10093e-05 3.00315e-12 0.0114974 4.22153e-05 1.96854e-12 0.0114176 3.43466e-05 1.27219e-12 0.0113599 2.74695e-05 8.51945e-13 0.0113177 2.16134e-05 5.85626e-13 0.0112865 1.67454e-05 3.74517e-13 0.0112634 1.27783e-05 2.44465e-13 0.0112462 9.60884e-06 1.60212e-13 0.0112334 7.12368e-06 1.04924e-13 0.011224 5.20927e-06 6.85215e-14 0.0112171 3.7591e-06 4.45635e-14 0.0112121 2.67799e-06 2.88429e-14 0.0112084 1.88418e-06 1.85786e-14 0.0112058 1.30974e-06 1.19231e-14 0.011204 8.99783e-07 7.639e-15 0.0112027 6.11121e-07 4.90418e-15 0.0112018 4.10444e-07 3.17022e-15 0.0112012 2.7272e-07 2.07314e-15 0.0112008 1.79178e-07 1.37224e-15 0.0112006 1.16616e-07 9.22795e-16 7.33859e-08 4.98813e-16 0.01816 0.000768066 4.08811e-12 0.0212083 0.00251153 9.62767e-12 0.0274853 0.00684986 2.22898e-11 0.0303932 0.0155596 1.55578e-11 0.0306879 0.018814 1.00987e-11 0.0314304 0.0188699 8.70939e-12 0.0304436 0.0192748 6.94765e-12 0.0293553 0.017891 5.06703e-12 0.0281642 0.016401 4.28833e-12 0.0270312 0.0148978 4.11011e-12 0.026033 0.0135583 3.67014e-12 0.025175 0.0123842 2.9991e-12 0.0244315 0.011346 2.1813e-12 0.0237679 0.0104075 1.3658e-12 0.02315 0.00954284 9.21757e-13 0.0225625 0.00873445 4.43999e-13 0.0220101 0.00797396 4.71025e-14 0.0215045 0.00725953 -5.12863e-13 0.0210594 0.00659334 -1.05574e-12 0.0206846 0.00597637 -1.24415e-12 0.0203857 0.0054073 -1.36219e-12 0.0201639 0.00488332 -1.01364e-12 0.0200111 0.00440045 -5.74234e-13 0.0199151 0.00395347 2.12061e-13 0.0198659 0.00353756 9.23411e-13 0.0198557 0.00314946 1.3968e-12 0.0198758 0.00278701 2.11201e-12 0.0199169 0.00244845 2.54462e-12 0.0199734 0.00213248 2.91016e-12 0.0200391 0.00183806 3.08985e-12 0.0201037 0.00156428 3.16489e-12 0.0201573 0.00130972 3.15347e-12 0.0201946 0.0010734 3.09907e-12 0.0202142 0.000854358 2.86652e-12 0.0202161 0.000652547 2.76096e-12 0.0202038 0.000466309 2.52146e-12 0.0201841 0.000296699 2.48149e-12 0.0201541 0.000139503 2.59148e-12 0.020127 2.8171e-06 2.46801e-12 0.0201107 -0.000136063 3.02893e-12 0.0201099 -0.000256156 3.41259e-12 0.0201317 -0.000360163 3.0311e-12 0.020168 -0.000451174 3.81148e-12 0.0201924 -0.000529635 3.69748e-12 0.020202 -0.000596135 4.28188e-12 0.0202031 -0.000648573 3.63246e-12 0.0202035 -0.000692736 3.43943e-12 0.0202134 -0.000732429 4.01036e-12 0.0202748 -0.000758226 3.61588e-12 0.0203879 -0.000768064 7.73618e-12 0.0205601 -0.000763007 6.19911e-12 0.0207559 -0.000751075 2.58377e-12 0.0209551 -0.00072613 5.12613e-12 0.0211541 -0.000691126 2.39801e-13 0.0213434 -0.000647823 -1.66747e-12 0.0215134 -0.000595979 -1.57036e-12 0.0216632 -0.000537068 -1.34036e-12 0.0217959 -0.000474276 -2.34758e-12 0.0219143 -0.000409483 -3.09143e-12 0.0220158 -0.000344565 -1.73221e-12 0.0220958 -0.000279949 6.23353e-13 0.0221643 -0.000215118 3.19542e-12 0.0222524 -0.000151189 5.07905e-12 0.0223712 -8.76611e-05 6.7363e-12 0.0224482 -2.42719e-05 7.33819e-12 0.0224233 3.49144e-05 9.2259e-12 0.0222609 8.20899e-05 1.22361e-11 0.0219171 0.000113806 1.83021e-11 0.0213073 0.00013131 2.69302e-11 0.0200428 0.000143642 4.30715e-11 0.0185814 0.000157044 4.53079e-11 0.0170451 0.000157779 4.32904e-11 0.0156165 0.000149301 3.69159e-11 0.0144201 0.000136168 2.86866e-11 0.0134924 0.000121183 2.09713e-11 0.0128103 0.00010584 1.47858e-11 0.0123254 9.09158e-05 1.0336e-11 0.0119883 7.69853e-05 6.71018e-12 0.0117559 6.42601e-05 4.47429e-12 0.0115955 5.28838e-05 2.95414e-12 0.0114838 4.28976e-05 1.9403e-12 0.0114051 3.42948e-05 1.24967e-12 0.011349 2.70069e-05 8.2858e-13 0.0113084 2.09592e-05 5.62246e-13 0.0112788 1.60406e-05 3.59658e-13 0.0112571 1.21072e-05 2.33215e-13 0.0112412 9.01494e-06 1.51567e-13 0.0112296 6.62403e-06 9.83924e-14 0.0112211 4.80468e-06 6.36965e-14 0.0112149 3.4414e-06 4.10767e-14 0.0112104 2.43486e-06 2.6381e-14 0.0112072 1.70223e-06 1.68769e-14 0.011205 1.17624e-06 1.0774e-14 0.0112034 8.0358e-07 6.87462e-15 0.0112023 5.42923e-07 4.40586e-15 0.0112016 3.62835e-07 2.84801e-15 0.011201 2.39954e-07 1.86545e-15 0.0112007 1.56946e-07 1.23714e-15 0.0112005 1.01711e-07 8.33054e-16 6.37305e-08 4.51286e-16 0.0173275 0.000281247 5.61919e-13 0.0185539 0.000940302 8.19693e-12 0.0220239 0.00266884 1.09921e-11 0.0278438 0.00771153 2.77745e-11 0.0304972 0.0155709 1.67873e-11 0.0308436 0.0184313 1.00481e-11 0.0315415 0.0185036 8.76524e-12 0.0305977 0.0188517 6.7979e-12 0.0295608 0.0175748 4.61031e-12 0.0284486 0.0161878 4.03887e-12 0.0274183 0.0147887 3.13261e-12 0.026516 0.0135437 2.42424e-12 0.0257348 0.0124347 1.47849e-12 0.0250379 0.0114316 4.32423e-13 0.0243945 0.0105065 -2.66192e-13 0.0237822 0.00964239 -6.99495e-13 0.0231971 0.00883058 -1.06135e-12 0.0226577 0.00806897 -1.21338e-12 0.0221852 0.00735938 -1.31136e-12 0.0217918 0.00670374 -1.02399e-12 0.0214787 0.0061002 -5.84703e-13 0.0212416 0.00554336 1.96194e-13 0.0210746 0.00502852 9.63901e-13 0.0209652 0.00455124 1.8703e-12 0.0209017 0.00410672 2.65631e-12 0.0208739 0.00369189 3.52291e-12 0.0208752 0.00330393 4.15296e-12 0.0209001 0.00294204 4.41869e-12 0.0209383 0.00260478 4.53657e-12 0.0209854 0.00229117 4.42453e-12 0.0210357 0.00200017 4.09986e-12 0.0210771 0.00173053 3.68093e-12 0.0211012 0.00148028 3.23683e-12 0.0211066 0.00124824 2.63569e-12 0.0210933 0.00103376 2.00571e-12 0.0210637 0.000836078 1.43453e-12 0.0210244 0.000654554 9.82178e-13 0.0209846 0.000488664 5.74068e-13 0.020946 0.000337363 2.24735e-13 0.0209069 0.000199151 -6.98231e-14 0.0208714 7.34663e-05 -2.84813e-14 0.0208487 -3.67563e-05 -1.05264e-13 0.0208466 -0.000148103 4.29194e-13 0.0208432 -0.000244009 9.29378e-13 0.0208198 -0.000327409 1.29514e-12 0.020792 -0.000397751 1.39136e-12 0.0207677 -0.000457275 1.41145e-12 0.02074 -0.00050251 1.08864e-12 0.0207424 -0.000543856 1.18911e-12 0.020786 -0.000576615 7.72154e-13 0.0209089 -0.000594353 -2.19814e-13 0.0210744 -0.000596738 -1.19108e-12 0.0212437 -0.000589951 8.51068e-14 0.0214065 -0.0005719 -3.98293e-12 0.0215617 -0.000544642 -3.86188e-12 0.021703 -0.000509879 -2.74531e-12 0.0218253 -0.000467125 -3.84276e-12 0.0219311 -0.000418105 -3.96118e-12 0.0220234 -0.00036536 -3.38475e-12 0.0221023 -0.000310489 -2.71562e-12 0.0221651 -0.000254097 -9.32504e-13 0.0222169 -0.000195431 3.27801e-12 0.0222785 -0.000134956 6.87995e-12 0.0223727 -7.27548e-05 7.92125e-12 0.0224595 -7.22396e-06 8.3491e-12 0.0224873 5.98886e-05 9.53346e-12 0.0224002 0.000122874 1.22778e-11 0.0221336 0.000175038 1.7081e-11 0.0215703 0.000211684 2.63894e-11 0.0202019 0.000227163 4.37947e-11 0.0186673 0.000224409 4.63398e-11 0.0170921 0.000208615 4.37937e-11 0.0156392 0.000187066 3.70819e-11 0.0144264 0.000163831 2.86659e-11 0.0134878 0.00014085 2.08815e-11 0.0127986 0.000119143 1.46555e-11 0.0123097 9.94801e-05 1.01833e-11 0.0119708 8.20366e-05 6.62835e-12 0.0117382 6.68633e-05 4.40203e-12 0.0115787 5.38576e-05 2.89857e-12 0.0114684 4.2863e-05 1.89564e-12 0.0113916 3.36919e-05 1.22471e-12 0.0113375 2.61367e-05 7.97645e-13 0.0112988 2.00099e-05 5.37468e-13 0.011271 1.51296e-05 3.43323e-13 0.0112509 1.12958e-05 2.21002e-13 0.0112364 8.32829e-06 1.42439e-13 0.0112259 6.06483e-06 9.16859e-14 0.0112183 4.3631e-06 5.88623e-14 0.0112128 3.10159e-06 3.7659e-14 0.0112089 2.17916e-06 2.40109e-14 0.0112062 1.51359e-06 1.52647e-14 0.0112042 1.03956e-06 9.69524e-15 0.0112029 7.0616e-07 6.16662e-15 0.0112019 4.74545e-07 3.94593e-15 0.0112013 3.1553e-07 2.55128e-15 0.0112009 2.07665e-07 1.67347e-15 0.0112006 1.35204e-07 1.11168e-15 0.0112004 8.72426e-08 7.49052e-16 5.44287e-08 4.06512e-16 0.016956 0.000112806 1.25047e-12 0.0173117 0.00035439 3.4934e-12 0.0188851 0.000956952 7.32756e-12 0.0227878 0.00295742 1.61601e-11 0.0283813 0.00807723 3.25287e-11 0.030748 0.0154972 1.76e-11 0.0310684 0.018051 1.04919e-11 0.0317161 0.0181641 8.30856e-12 0.0308735 0.0184771 6.7602e-12 0.0298866 0.0173359 5.80152e-12 0.0288713 0.0160756 3.29311e-12 0.027933 0.0147829 1.32235e-12 0.0270935 0.013607 8.19798e-13 0.0263436 0.0125259 -2.34571e-13 0.0256511 0.0115264 -1.14048e-12 0.024999 0.0105947 -1.50461e-12 0.0243877 0.00972637 -1.6013e-12 0.0238255 0.00891781 -1.44568e-12 0.0233322 0.0081668 -1.10496e-12 0.0229249 0.00747295 -4.95217e-13 0.0226028 0.00683399 2.71517e-13 0.0223561 0.00624442 1.36293e-12 0.0221748 0.00569729 2.40206e-12 0.0220509 0.00518852 3.51305e-12 0.0219732 0.00471495 4.55257e-12 0.0219296 0.00427242 5.24431e-12 0.021911 0.00385844 5.68035e-12 0.0219134 0.00347155 6.05719e-12 0.021934 0.00311221 5.8531e-12 0.0219626 0.00277906 5.43597e-12 0.0219949 0.00247059 4.8435e-12 0.0220245 0.00218526 3.972e-12 0.022036 0.00192105 3.0912e-12 0.0220254 0.00167564 2.16365e-12 0.0219958 0.00144812 1.09474e-12 0.0219483 0.00123795 3.16508e-15 0.0218883 0.00104429 -1.07108e-12 0.0218271 0.00086672 -2.21795e-12 0.0217703 0.000704519 -3.29233e-12 0.0217147 0.000556674 -4.38736e-12 0.0216625 0.000421644 -5.4697e-12 0.0216181 0.000298632 -6.35854e-12 0.0215829 0.000185851 -7.85953e-12 0.0215514 8.2795e-05 -8.50235e-12 0.0214998 -5.33153e-06 -9.70795e-12 0.0214354 -9.65146e-05 -8.97567e-12 0.0213729 -0.000175587 -9.57584e-12 0.0213216 -0.000241994 -1.06798e-11 0.0212909 -0.000294234 -8.82833e-12 0.0212864 -0.000336926 -8.76952e-12 0.0213438 -0.000371987 -8.05188e-12 0.0214623 -0.000397404 -7.89521e-12 0.0216048 -0.000408665 -7.70095e-12 0.0217364 -0.000407882 -6.99161e-12 0.0218539 -0.000396936 -9.7745e-12 0.0219597 -0.000379415 -6.69643e-12 0.0220497 -0.000354728 -4.06217e-12 0.0221244 -0.000322463 -4.94601e-12 0.0221857 -0.00028479 -3.68461e-12 0.0222352 -0.000243571 -2.20347e-12 0.0222719 -0.000199273 3.81149e-13 0.0223 -0.000151009 4.0341e-12 0.0223379 -9.8392e-05 6.85813e-12 0.0224098 -4.12991e-05 8.138e-12 0.0224971 2.14954e-05 8.73829e-12 0.0225536 9.03851e-05 9.82545e-12 0.0225267 0.000161972 1.23661e-11 0.0223251 0.00022983 1.7029e-11 0.021778 0.000282234 2.64687e-11 0.0202995 0.000303372 4.57842e-11 0.0187161 0.000283393 4.76522e-11 0.017115 0.000253997 4.44635e-11 0.0156447 0.000222006 3.73263e-11 0.0144194 0.000189697 2.86516e-11 0.0134723 0.000158817 2.07133e-11 0.0127782 0.000130916 1.4455e-11 0.0122872 0.000106511 9.98866e-12 0.0119483 8.5691e-05 6.45428e-12 0.011717 6.8274e-05 4.27952e-12 0.0115595 5.38766e-05 2.8103e-12 0.0114517 4.20906e-05 1.82794e-12 0.0113774 3.25371e-05 1.18314e-12 0.0113256 2.48705e-05 7.57271e-13 0.0112892 1.87884e-05 5.10686e-13 0.0112633 1.40354e-05 3.25074e-13 0.0112449 1.03653e-05 2.07705e-13 0.0112317 7.56712e-06 1.32898e-13 0.0112223 5.46106e-06 8.49062e-14 0.0112156 3.89637e-06 5.41006e-14 0.0112109 2.74875e-06 3.43613e-14 0.0112075 1.91763e-06 2.17609e-14 0.0112052 1.32318e-06 1.3752e-14 0.0112035 9.03186e-07 8.69425e-15 0.0112024 6.09977e-07 5.5145e-15 0.0112016 4.07673e-07 3.52404e-15 0.0112011 2.69667e-07 2.27936e-15 0.0112007 1.76611e-07 1.49683e-15 0.0112005 1.1445e-07 9.95482e-16 0.0112003 7.35252e-08 6.70338e-16 4.5673e-08 3.6386e-16 0.0168444 5.41699e-05 6.54213e-13 0.0170006 0.00012297 1.4321e-12 0.0173626 0.000370188 3.79311e-12 0.0191049 0.00102207 8.28409e-12 0.0233924 0.0030371 1.80599e-11 0.0287073 0.00813146 3.7773e-11 0.0308854 0.0151894 1.83313e-11 0.0312418 0.0176418 1.10135e-11 0.0318786 0.0178517 7.69145e-12 0.0311374 0.0181274 6.49929e-12 0.030261 0.0171379 3.46707e-12 0.029347 0.0160221 3.18071e-13 0.0284783 0.0148317 7.37302e-14 0.0276718 0.0136928 -9.80798e-13 0.0269303 0.0126144 -2.00697e-12 0.0262419 0.0116096 -2.24631e-12 0.0256028 0.0106781 -1.96598e-12 0.0250247 0.00981866 -1.50103e-12 0.0245176 0.00902676 -6.95251e-13 0.0240923 0.00829326 1.42642e-13 0.0237568 0.00761436 1.21791e-12 0.0234996 0.00698648 2.37097e-12 0.0233061 0.00640665 3.66537e-12 0.0231674 0.00586636 5.08874e-12 0.0230743 0.00536233 5.82066e-12 0.0230141 0.00489131 6.4588e-12 0.0229759 0.00445031 7.1722e-12 0.0229569 0.00403852 7.24185e-12 0.0229551 0.003656 7.0525e-12 0.0229685 0.00330269 6.19258e-12 0.0229841 0.00297684 5.24732e-12 0.0229957 0.00267532 4.06183e-12 0.0229964 0.00239644 2.73873e-12 0.0229699 0.00213747 1.3858e-12 0.0229199 0.00189635 -1.51161e-13 0.0228537 0.00167272 -1.73094e-12 0.0227728 0.00146619 -3.35745e-12 0.0226868 0.00127594 -5.10184e-12 0.0226072 0.00110154 -6.70124e-12 0.0225328 0.000942139 -8.55788e-12 0.0224594 0.000796149 -1.01921e-11 0.0223894 0.000662142 -1.13844e-11 0.0223276 0.000539277 -1.3253e-11 0.0222757 0.000426575 -1.3964e-11 0.0222127 0.00032255 -1.46945e-11 0.0221274 0.000227197 -1.52867e-11 0.0220369 0.000139596 -1.42909e-11 0.0219485 6.06086e-05 -1.66594e-11 0.0218789 -3.71104e-06 -1.38674e-11 0.0218514 -6.26987e-05 -1.14484e-11 0.0218701 -0.000112826 -9.61601e-12 0.0219347 -0.000150549 -1.14376e-11 0.022026 -0.000179137 -1.1109e-11 0.02213 -0.000199515 -1.10571e-11 0.022217 -0.000208993 -7.79833e-12 0.0222876 -0.000207177 -8.50802e-12 0.0223438 -0.000198467 -5.48303e-12 0.0223857 -0.000183611 -4.25958e-12 0.0224162 -0.000161713 -4.39271e-12 0.0224369 -0.00013472 -2.03487e-12 0.0224467 -0.000103794 3.75638e-13 0.0224499 -6.82102e-05 3.90982e-12 0.022464 -2.62561e-05 6.99922e-12 0.0225141 2.25355e-05 8.69043e-12 0.0225972 7.95716e-05 8.88232e-12 0.0226651 0.000145526 9.71651e-12 0.0226674 0.000218016 1.19853e-11 0.0224744 0.00029014 1.80212e-11 0.0218564 0.000346421 3.05917e-11 0.0203092 0.000358349 5.18973e-11 0.0187267 0.000330948 4.95568e-11 0.0171176 0.000295267 4.53253e-11 0.0156354 0.000255187 3.76726e-11 0.0143996 0.000214033 2.86787e-11 0.0134459 0.000175235 2.05133e-11 0.012749 0.000140887 1.42572e-11 0.012258 0.000111766 9.75845e-12 0.0119209 8.77742e-05 6.25798e-12 0.0116926 6.83998e-05 4.13771e-12 0.0115383 5.28925e-05 2.70531e-12 0.0114338 4.05726e-05 1.75676e-12 0.0113626 3.08543e-05 1.13024e-12 0.0113136 2.3242e-05 7.16939e-13 0.0112796 1.73256e-05 4.81538e-13 0.0112559 1.27877e-05 3.05378e-13 0.0112392 9.34173e-06 1.9392e-13 0.0112274 6.75273e-06 1.23234e-13 0.0112191 4.82947e-06 7.8183e-14 0.0112132 3.41723e-06 4.9473e-14 0.0112091 2.39228e-06 3.12105e-14 0.0112063 1.65709e-06 1.9645e-14 0.0112043 1.13583e-06 1.23473e-14 0.0112029 7.70485e-07 7.77583e-15 0.0112019 5.17318e-07 4.91836e-15 0.0112013 3.4384e-07 3.14076e-15 0.0112009 2.26257e-07 2.0323e-15 0.0112006 1.47448e-07 1.33571e-15 0.0112004 9.51014e-08 8.8875e-16 0.0112003 6.08251e-08 5.97267e-16 3.76201e-08 3.23383e-16 0.0168308 1.8122e-05 3.66673e-13 0.0168535 5.39885e-05 8.21735e-13 0.0170152 0.000124398 1.66901e-12 0.0174338 0.000374897 4.02179e-12 0.0192306 0.00103242 8.84094e-12 0.0235716 0.00301627 1.90349e-11 0.0287647 0.00785314 3.89787e-11 0.0309269 0.014695 2.08339e-11 0.0314062 0.0172126 1.16333e-11 0.0320075 0.0175857 6.2967e-12 0.0314577 0.0177931 4.91081e-12 0.0307238 0.0169634 2.61714e-12 0.0298682 0.016001 -1.82946e-13 0.0290211 0.0148992 -1.89305e-12 0.0282314 0.0137836 -3.24344e-12 0.027509 0.0127083 -3.50164e-12 0.0268527 0.011706 -2.58757e-12 0.0262659 0.0107894 -1.52882e-12 0.0257522 0.00994784 -2.23532e-13 0.0253092 0.00916969 7.97451e-13 0.0249429 0.00844642 2.40018e-12 0.0246674 0.00777683 3.69212e-12 0.0244638 0.00715813 5.30931e-12 0.0243133 0.00658632 6.50438e-12 0.0242037 0.00605161 7.39044e-12 0.0241247 0.00555018 8.3166e-12 0.0240676 0.00508107 8.49637e-12 0.0240268 0.00464376 8.19464e-12 0.0240049 0.00423788 7.62613e-12 0.023998 0.00386409 6.57827e-12 0.0239999 0.00351964 5.23046e-12 0.0239949 0.00320247 3.72045e-12 0.0239757 0.00290766 2.01892e-12 0.0239372 0.00263426 2.10543e-13 0.0238656 0.00237921 -1.64951e-12 0.0237742 0.00214118 -3.78991e-12 0.0236729 0.0019206 -5.90918e-12 0.0235628 0.00171694 -8.11575e-12 0.0234564 0.00152921 -1.01426e-11 0.02336 0.00135693 -1.23522e-11 0.0232671 0.00119874 -1.41681e-11 0.0231737 0.00105277 -1.53377e-11 0.0230831 0.000917743 -1.6986e-11 0.0230033 0.0007931 -1.741e-11 0.022921 0.000677692 -1.74423e-11 0.0228175 0.000570478 -1.78088e-11 0.0227068 0.000471536 -1.59604e-11 0.0225983 0.000380145 -1.65886e-11 0.0225026 0.000299181 -1.41852e-11 0.0224424 0.000228307 -1.01993e-11 0.0224307 0.000167675 -9.83853e-12 0.0224624 0.000116922 -1.17476e-11 0.0225216 7.54131e-05 -9.58343e-12 0.0225831 4.36416e-05 -8.75072e-12 0.0226356 1.937e-05 -7.04851e-12 0.0226764 3.0417e-06 -6.15948e-12 0.0227039 -4.84273e-06 -6.42128e-12 0.0227157 -5.32043e-06 -5.25054e-12 0.0227168 4.48905e-07 -4.39876e-12 0.0227102 1.23218e-05 -2.68886e-12 0.0226972 2.95795e-05 -3.63175e-13 0.0226789 5.23401e-05 2.79624e-12 0.0226678 8.22639e-05 4.27301e-12 0.0226963 0.000121695 5.54572e-12 0.0227691 0.00017154 6.06929e-12 0.0228288 0.000231854 7.39002e-12 0.0228104 0.000298213 1.19985e-11 0.0225378 0.000361507 2.42945e-11 0.0216972 0.000405864 4.42253e-11 0.0202736 0.000405833 5.72543e-11 0.018726 0.000378845 5.08446e-11 0.0171105 0.000338129 4.61649e-11 0.015614 0.000288797 3.80874e-11 0.0143671 0.000237499 2.86748e-11 0.013408 0.000189735 2.0321e-11 0.0127105 0.000148628 1.40084e-11 0.012222 0.000114929 9.50619e-12 0.0118891 8.81027e-05 6.06177e-12 0.0116653 6.71483e-05 3.99567e-12 0.0115156 5.08923e-05 2.60253e-12 0.0114152 3.83377e-05 1.67944e-12 0.0113476 2.8682e-05 1.07772e-12 0.0113018 2.12911e-05 6.83874e-13 0.0112704 1.56645e-05 4.4917e-13 0.0112487 1.14237e-05 2.86184e-13 0.0112338 8.25517e-06 1.80614e-13 0.0112233 5.90872e-06 1.13972e-13 0.0112161 4.18788e-06 7.17981e-14 0.0112111 2.93876e-06 4.51179e-14 0.0112076 2.0416e-06 2.82733e-14 0.0112051 1.40412e-06 1.76889e-14 0.0112035 9.56055e-07 1.1062e-14 0.0112023 6.44507e-07 6.94047e-15 0.0112016 4.30204e-07 4.37897e-15 0.011201 2.84362e-07 2.79469e-15 0.0112007 1.86143e-07 1.80889e-15 0.0112005 1.20706e-07 1.18927e-15 0.0112003 7.74866e-08 7.90992e-16 0.0112002 4.93408e-08 5.29808e-16 3.03857e-08 2.8537e-16 0.0168095 7.12354e-06 2.55307e-13 0.0168319 1.77881e-05 4.30732e-13 0.0168592 4.89626e-05 9.59211e-13 0.0170203 0.00012439 1.95347e-12 0.0174652 0.000353561 4.60129e-12 0.019252 0.0010059 1.04196e-11 0.0233225 0.00296031 2.00857e-11 0.0287042 0.00712123 4.25431e-11 0.0309347 0.014173 2.34842e-11 0.031596 0.0168158 9.27095e-12 0.0321526 0.017325 4.31353e-12 0.0317704 0.0174791 3.56848e-12 0.0311986 0.0167889 2.91041e-12 0.0303943 0.015985 1.91835e-12 0.029594 0.0149697 -2.52179e-12 0.0288367 0.0138875 -4.19137e-12 0.0281557 0.0128301 -3.40385e-12 0.0275495 0.0118484 -1.82522e-12 0.0270156 0.0109437 -2.57609e-13 0.0265573 0.0101105 1.9071e-12 0.0261698 0.00933926 3.05486e-12 0.0258665 0.00862272 5.10379e-12 0.0256496 0.00796238 6.38326e-12 0.025488 0.00735275 7.73254e-12 0.0253609 0.00678446 8.27741e-12 0.0252595 0.00625081 9.02125e-12 0.0251808 0.00575206 9.05738e-12 0.0251214 0.00528844 8.66875e-12 0.0250789 0.00485973 7.71377e-12 0.0250537 0.00446469 6.4149e-12 0.0250365 0.00410185 4.7416e-12 0.0250162 0.00376693 2.85521e-12 0.0249769 0.00345687 7.53938e-13 0.0249153 0.00316699 -1.5085e-12 0.024829 0.0028971 -3.76627e-12 0.0247114 0.00264437 -6.17056e-12 0.0245833 0.00240835 -8.7249e-12 0.0244528 0.00219 -1.10798e-11 0.0243196 0.00198817 -1.31885e-11 0.0241962 0.00180156 -1.52468e-11 0.0240824 0.00162966 -1.65327e-11 0.023968 0.00147059 -1.70256e-11 0.0238506 0.00132219 -1.74867e-11 0.0237408 0.0011841 -1.6486e-11 0.0236349 0.00105572 -1.51699e-11 0.0235113 0.000935491 -1.38195e-11 0.0233784 0.000823356 -1.14272e-11 0.0232509 0.000719009 -1.00388e-11 0.0231312 0.000623983 -8.38074e-12 0.0230418 0.000539713 -5.35292e-12 0.0229967 0.000465219 -5.02796e-12 0.0229945 0.000400803 -4.82789e-12 0.0230215 0.000345881 -4.34847e-12 0.023059 0.000299763 -4.0308e-12 0.0230901 0.000261882 -3.68257e-12 0.0231053 0.000231569 -3.68021e-12 0.0231003 0.0002089 -3.29584e-12 0.023085 0.000193515 -2.9908e-12 0.0230604 0.000185698 -1.95568e-12 0.0230296 0.000184923 -3.01303e-13 0.0229964 0.000190183 -1.9097e-13 0.0229628 0.000201844 2.25644e-12 0.0229386 0.000221495 3.7936e-12 0.0229407 0.000251213 4.67545e-12 0.0229717 0.000291845 7.20427e-12 0.0229777 0.000341832 1.11697e-11 0.0228853 0.000396725 1.96569e-11 0.0225543 0.000446778 3.02408e-11 0.0215657 0.000477094 4.98206e-11 0.0202835 0.000469571 5.05273e-11 0.0187357 0.000437802 5.10408e-11 0.0170966 0.000385832 4.69365e-11 0.0155788 0.000322901 3.8411e-11 0.0143199 0.000258942 2.86216e-11 0.0133575 0.000201331 2.01087e-11 0.0126624 0.000153463 1.37411e-11 0.0121794 0.000115593 9.23842e-12 0.011853 8.64753e-05 5.88125e-12 0.0116357 6.44616e-05 3.85584e-12 0.0114917 4.7884e-05 2.49804e-12 0.0113963 3.54259e-05 1.60676e-12 0.0113328 2.60795e-05 1.02514e-12 0.0112902 1.90831e-05 6.42026e-13 0.0112616 1.38587e-05 4.21938e-13 0.0112421 9.98558e-06 2.68365e-13 0.0112288 7.13886e-06 1.67858e-13 0.0112197 5.06e-06 1.05061e-13 0.0112134 3.55443e-06 6.5715e-14 0.0112091 2.47384e-06 4.10232e-14 0.0112062 1.7056e-06 2.55511e-14 0.0112042 1.16478e-06 1.58969e-14 0.0112028 7.8788e-07 9.89716e-15 0.0112019 5.27865e-07 6.1882e-15 0.0112012 3.50307e-07 3.89813e-15 0.0112008 2.30286e-07 2.48598e-15 0.0112006 1.49966e-07 1.60923e-15 0.0112004 9.67711e-08 1.05773e-15 0.0112003 6.18318e-08 7.02487e-16 0.0112002 3.92017e-08 4.682e-16 2.40394e-08 2.49991e-16 0.0168055 2.33418e-06 3.88652e-14 0.0168144 5.38793e-06 1.08806e-13 0.0168267 1.77311e-05 4.95588e-13 0.016885 3.94477e-05 9.09195e-13 0.0169974 0.000124664 2.15614e-12 0.0175686 0.000296353 4.12686e-12 0.0191371 0.00096851 9.51668e-12 0.0227482 0.00260951 2.33174e-11 0.0283008 0.00643173 5.133e-11 0.0309123 0.0134932 2.13601e-11 0.0318511 0.0163827 5.84272e-12 0.032383 0.0170662 5.05936e-12 0.032098 0.0172037 5.27566e-12 0.0315973 0.0166285 4.60258e-12 0.0309137 0.0159157 3.9193e-13 0.030207 0.0150222 -3.19869e-12 0.0295162 0.0140068 -3.64517e-12 0.0288852 0.0129935 -1.78394e-12 0.0283227 0.012032 7.69998e-13 0.0278447 0.0111382 2.66034e-12 0.0274401 0.0103104 4.63084e-12 0.0271118 0.00954031 5.97173e-12 0.0268699 0.00882835 7.7457e-12 0.0266879 0.00817183 7.49869e-12 0.0265395 0.00756346 9.22335e-12 0.0264158 0.00699598 9.6289e-12 0.0263143 0.00646679 9.27892e-12 0.0262363 0.00597631 8.57501e-12 0.0261777 0.0055243 7.28672e-12 0.026133 0.00510829 5.74649e-12 0.026096 0.00472551 3.63816e-12 0.0260547 0.00437239 1.46489e-12 0.0259959 0.0040447 -9.89043e-13 0.0259098 0.00373869 -3.45184e-12 0.0257989 0.00345152 -6.15105e-12 0.0256638 0.00318293 -8.68055e-12 0.0255062 0.00293103 -1.14367e-11 0.0253496 0.00269595 -1.37599e-11 0.0251957 0.00247858 -1.5696e-11 0.0250427 0.00227665 -1.71931e-11 0.0249027 0.00208911 -1.77905e-11 0.024767 0.00191528 -1.74849e-11 0.0246254 0.00175243 -1.67708e-11 0.0244858 0.00159941 -1.51499e-11 0.0243525 0.00145638 -1.28994e-11 0.0242081 0.00132187 -1.12952e-11 0.0240526 0.00119537 -8.97103e-12 0.0239046 0.00107698 -7.27042e-12 0.0237653 0.000967395 -6.71079e-12 0.0236502 0.000868898 -4.49504e-12 0.0235747 0.000779951 -4.48416e-12 0.0235388 0.00070128 -4.34093e-12 0.0235329 0.000632273 -4.26915e-12 0.02354 0.000572092 -4.06941e-12 0.0235446 0.000519984 -3.80462e-12 0.0235373 0.000475522 -3.4028e-12 0.0235139 0.000438648 -2.7009e-12 0.0234767 0.000409414 -1.98988e-12 0.0234303 0.00038803 -9.93285e-13 0.0233791 0.000374683 1.94969e-13 0.0233287 0.000369188 1.3176e-12 0.0232806 0.000371266 4.55613e-12 0.0232373 0.000381651 5.36189e-12 0.0232034 0.000401641 7.1445e-12 0.0231897 0.000432037 9.94351e-12 0.0231633 0.000471773 1.36222e-11 0.0230236 0.000516561 2.05696e-11 0.0226257 0.000556061 3.08322e-11 0.0216323 0.000570712 4.6997e-11 0.0203326 0.000552176 5.02341e-11 0.0187457 0.000504898 5.19332e-11 0.0170678 0.000434923 4.76716e-11 0.0155242 0.000354314 3.85715e-11 0.0142548 0.000276073 2.84079e-11 0.013293 0.000208514 1.97798e-11 0.0126047 0.000154541 1.34205e-11 0.0121308 0.000113345 8.90538e-12 0.0118136 8.2757e-05 5.70135e-12 0.0116044 6.03325e-05 3.70869e-12 0.0114673 4.39286e-05 2.39044e-12 0.0113774 3.19246e-05 1.52617e-12 0.0113183 2.3132e-05 9.69173e-13 0.0112793 1.6689e-05 6.10571e-13 0.0112534 1.19672e-05 3.85959e-13 0.011236 8.52138e-06 2.51682e-13 0.0112243 6.02773e-06 1.55212e-13 0.0112164 4.23169e-06 9.65238e-14 0.011211 2.94671e-06 6.00069e-14 0.0112074 2.03445e-06 3.72303e-14 0.011205 1.39228e-06 2.30576e-14 0.0112033 9.44273e-07 1.42719e-14 0.0112022 6.34621e-07 8.8504e-15 0.0112015 4.22626e-07 5.51689e-15 0.011201 2.7888e-07 3.47023e-15 0.0112006 1.82353e-07 2.21275e-15 0.0112004 1.18152e-07 1.43166e-15 0.0112003 7.58772e-08 9.40085e-16 0.0112002 4.82608e-08 6.22135e-16 0.0112001 3.04686e-08 4.12874e-16 1.86073e-08 2.17468e-16 0.016805 4.25767e-07 1.049e-13 0.0168066 1.63497e-06 1.32683e-13 0.0168177 4.46437e-06 2.53096e-13 0.0168255 1.43713e-05 5.16013e-13 0.0168931 3.47578e-05 8.98235e-13 0.0169684 0.000106408 2.38736e-12 0.0175501 0.000262243 4.43174e-12 0.018893 0.000835791 1.1971e-11 0.022179 0.00226342 2.46293e-11 0.0279706 0.00557231 5.67507e-11 0.0310633 0.0127134 1.73108e-11 0.0322013 0.015845 9.31788e-12 0.0325733 0.0168448 7.43489e-12 0.0323239 0.0169009 6.40104e-12 0.0318875 0.0163959 4.84969e-12 0.0314276 0.0157883 1.36511e-12 0.0308541 0.0150578 -1.01456e-12 0.0302428 0.0141384 -5.63334e-13 0.0296782 0.0131737 3.26339e-12 0.0291856 0.0122433 5.06176e-12 0.0287647 0.0113627 5.73938e-12 0.0284081 0.0105357 7.80952e-12 0.0281273 0.00976376 8.86297e-12 0.0279143 0.00905335 9.69025e-12 0.0277402 0.0084 9.41516e-12 0.0275956 0.00779495 9.71776e-12 0.0274745 0.00723421 8.96619e-12 0.0273768 0.0067157 7.87656e-12 0.0273006 0.00623852 6.34114e-12 0.027237 0.00580028 4.42317e-12 0.0271769 0.00539618 2.19614e-12 0.0271116 0.00502256 -5.75444e-14 0.02703 0.00467569 -2.71955e-12 0.026921 0.00435147 -5.13599e-12 0.0267828 0.0040464 -7.82513e-12 0.0266217 0.00375929 -1.01908e-11 0.0264438 0.00348972 -1.27547e-11 0.0262547 0.00323718 -1.48703e-11 0.0260751 0.00300126 -1.64052e-11 0.0258997 0.00278261 -1.76274e-11 0.0257279 0.00257791 -1.80362e-11 0.025569 0.00238697 -1.77353e-11 0.0254054 0.00220825 -1.72203e-11 0.0252366 0.00203896 -1.60519e-11 0.0250743 0.00187945 -1.46305e-11 0.0249073 0.00172912 -1.36994e-11 0.0247288 0.00158694 -1.25866e-11 0.0245579 0.00145318 -1.10181e-11 0.0243996 0.0013283 -1.1542e-11 0.0242608 0.00121426 -9.65814e-12 0.0241578 0.00111057 -8.39549e-12 0.0240909 0.00101697 -8.22032e-12 0.0240523 0.000933246 -7.23509e-12 0.0240285 0.000858496 -6.07003e-12 0.0240059 0.000791934 -4.91672e-12 0.0239753 0.000733165 -3.63015e-12 0.0239327 0.000682196 -2.37912e-12 0.0238777 0.000639269 -9.5237e-13 0.0238134 0.000604687 3.61079e-13 0.0237455 0.000578831 1.76864e-12 0.02368 0.000561916 3.92036e-12 0.0236204 0.000553848 6.46526e-12 0.0235654 0.000555227 8.57914e-12 0.0235135 0.000566416 1.04835e-11 0.0234691 0.000588261 1.21099e-11 0.0234141 0.000619048 1.53589e-11 0.0232303 0.000653893 2.1489e-11 0.0227263 0.0006807 3.20024e-11 0.0217298 0.00067765 4.50139e-11 0.020383 0.000640689 5.10605e-11 0.0187367 0.000572086 5.32051e-11 0.0170118 0.000478844 4.83833e-11 0.0154433 0.000378669 3.86425e-11 0.0141687 0.000286165 2.81301e-11 0.0132139 0.000209766 1.93576e-11 0.0125377 0.000151125 1.30988e-11 0.0120769 0.000107939 8.6042e-12 0.0117717 7.69233e-05 5.45337e-12 0.0115724 5.48628e-05 3.545e-12 0.011443 3.91629e-05 2.27437e-12 0.0113592 2.7963e-05 1.44748e-12 0.0113047 1.99482e-05 9.14845e-13 0.0112692 1.41977e-05 5.7532e-13 0.0112459 1.006e-05 3.56247e-13 0.0112305 7.0817e-06 2.33048e-13 0.0112203 4.95764e-06 1.43513e-13 0.0112135 3.44813e-06 8.86187e-14 0.011209 2.3809e-06 5.47609e-14 0.011206 1.63115e-06 3.37869e-14 0.011204 1.10833e-06 2.08185e-14 0.0112026 7.4672e-07 1.28287e-14 0.0112017 4.98751e-07 7.92752e-15 0.0112011 3.30221e-07 4.92992e-15 0.0112008 2.16718e-07 3.09641e-15 0.0112005 1.40979e-07 1.97393e-15 0.0112003 9.09006e-08 1.27636e-15 0.0112002 5.81079e-08 8.36631e-16 0.0112002 3.67966e-08 5.51592e-16 0.0112001 2.31372e-08 3.63062e-16 1.40745e-08 1.88108e-16 0.0168034 4.78221e-08 1.424e-13 0.016807 2.56297e-07 1.80581e-13 0.01681 8.89335e-07 2.16776e-13 0.0168209 3.07192e-06 3.20298e-13 0.016832 1.07235e-05 5.93058e-13 0.0168876 2.77886e-05 1.06001e-12 0.0169696 8.56567e-05 2.52779e-12 0.0174326 0.000218159 4.92075e-12 0.0186265 0.000679143 1.17283e-11 0.0214772 0.00186231 2.37051e-11 0.0276883 0.00462921 4.8459e-11 0.0311522 0.0115187 2.33688e-11 0.0323215 0.0150562 2.04897e-11 0.0324978 0.0164632 1.37873e-11 0.0324321 0.0164459 8.87414e-12 0.0322595 0.0160839 3.25103e-12 0.0319544 0.0155984 3.82825e-12 0.0315118 0.0150389 3.81457e-12 0.031016 0.0142541 6.04991e-12 0.0305445 0.0133624 7.88043e-12 0.0301229 0.0124672 8.35255e-12 0.0297441 0.0116027 8.1349e-12 0.0294261 0.0107777 1.04036e-11 0.0291802 0.0100133 1.02858e-11 0.0289796 0.00931174 9.17877e-12 0.0288123 0.00866518 9.29524e-12 0.0286715 0.00806926 8.28548e-12 0.0285526 0.00751982 6.73942e-12 0.0284546 0.00701446 5.0175e-12 0.0283689 0.00655025 2.97072e-12 0.0282827 0.00612206 6.00996e-13 0.0281891 0.0057252 -1.55808e-12 0.0280805 0.00535616 -3.85878e-12 0.0279473 0.00501109 -6.06204e-12 0.0277833 0.00468595 -8.26836e-12 0.0275934 0.00437828 -1.02517e-11 0.0273877 0.00408815 -1.21628e-11 0.0271753 0.00381534 -1.40753e-11 0.0269609 0.00355991 -1.54593e-11 0.0267597 0.00332045 -1.67847e-11 0.026562 0.00309759 -1.77006e-11 0.0263705 0.00288712 -1.81238e-11 0.0261873 0.00268995 -1.87564e-11 0.0259925 0.00250323 -1.86513e-11 0.0257985 0.00232534 -1.83711e-11 0.0256073 0.00215718 -1.85064e-11 0.0254067 0.00199777 -1.74196e-11 0.025211 0.00184721 -1.71353e-11 0.0250318 0.00170578 -1.64197e-11 0.0248703 0.00157515 -1.4947e-11 0.0247413 0.0014556 -1.30687e-11 0.0246458 0.00134629 -1.20556e-11 0.0245765 0.00124714 -1.01516e-11 0.024522 0.00115724 -8.18687e-12 0.0244716 0.00107583 -6.22599e-12 0.0244177 0.00100256 -4.2891e-12 0.0243563 0.000937535 -2.43015e-12 0.0242858 0.000881033 -7.19808e-13 0.0242073 0.00083352 9.35299e-13 0.0241249 0.000795356 2.80052e-12 0.0240463 0.000767101 4.80589e-12 0.0239764 0.000748602 7.40262e-12 0.0239137 0.000740014 9.77914e-12 0.0238518 0.000742525 1.18021e-11 0.0237861 0.000755344 1.3598e-11 0.0236948 0.000776801 1.66905e-11 0.0234695 0.000800019 2.29762e-11 0.0228336 0.000809932 3.54446e-11 0.0218281 0.0007853 4.49545e-11 0.0204101 0.000725258 5.28264e-11 0.0186919 0.000629838 5.4696e-11 0.0169186 0.000511222 4.89647e-11 0.0153316 0.000391676 3.85214e-11 0.0140605 0.000286821 2.76565e-11 0.0131207 0.000204002 1.88625e-11 0.0124629 0.000142856 1.26411e-11 0.0120194 9.94021e-05 8.24342e-12 0.0117286 6.91744e-05 5.21682e-12 0.0115404 4.82906e-05 3.37135e-12 0.0114196 3.38138e-05 2.15218e-12 0.011342 2.37302e-05 1.36431e-12 0.0112922 1.66706e-05 8.59186e-13 0.01126 1.17065e-05 5.40055e-13 0.0112392 8.20397e-06 3.31569e-13 0.0112257 5.71955e-06 2.08778e-13 0.0112169 3.96192e-06 1.35606e-13 0.0112111 2.73149e-06 8.16134e-14 0.0112073 1.87085e-06 4.9981e-14 0.0112048 1.27233e-06 3.06709e-14 0.0112031 8.58697e-07 1.88201e-14 0.0112021 5.74921e-07 1.15567e-14 0.0112013 3.81768e-07 7.12064e-15 0.0112009 2.51387e-07 4.41827e-15 0.0112006 1.64132e-07 2.77443e-15 0.0112004 1.06253e-07 1.76614e-15 0.0112003 6.81951e-08 1.14143e-15 0.0112002 4.34037e-08 7.46508e-16 0.0112001 2.7371e-08 4.90476e-16 0.0112001 1.71452e-08 3.18745e-16 1.03912e-08 1.61986e-16 0.0168033 4.18701e-08 1.10742e-13 0.0168051 2.85169e-08 3.29846e-13 0.0168089 1.36024e-07 1.4708e-13 0.0168142 4.66382e-07 3.48726e-13 0.0168265 1.87845e-06 6.07939e-13 0.0168356 6.61878e-06 6.3061e-13 0.0168894 2.02292e-05 2.4503e-12 0.0169707 6.23266e-05 -2.22226e-13 0.0172994 0.000172377 8.81158e-12 0.0183086 0.000515325 3.35277e-12 0.0207235 0.00144116 2.67388e-11 0.0269971 0.00377398 4.23163e-11 0.030697 0.00879258 5.7352e-11 0.0319897 0.0139987 3.51618e-11 0.0324683 0.0157517 1.26253e-11 0.0325286 0.0160532 7.37082e-12 0.0324893 0.0158096 8.17626e-12 0.0324585 0.015368 9.38289e-12 0.0322085 0.014931 1.0894e-11 0.0318472 0.0143157 1.12928e-11 0.0314724 0.0135339 1.23257e-11 0.0311101 0.0126986 1.08671e-11 0.0307779 0.0118618 1.13551e-11 0.0305039 0.0110604 1.11558e-11 0.0302758 0.010314 9.02286e-12 0.0300836 0.00962431 8.86922e-12 0.0299197 0.00898969 7.46689e-12 0.0297775 0.00840546 5.61851e-12 0.0296511 0.00786779 3.78591e-12 0.0295352 0.00737162 1.73821e-12 0.0294198 0.00691452 -4.04185e-13 0.0292948 0.00649059 -2.32901e-12 0.0291556 0.00609581 -4.22099e-12 0.0289945 0.00572612 -5.96179e-12 0.0288035 0.00537733 -7.54051e-12 0.0285839 0.00504618 -9.15563e-12 0.0283464 0.00473212 -1.07007e-11 0.028103 0.00443565 -1.24258e-11 0.0278617 0.00415708 -1.38393e-11 0.027625 0.00389557 -1.5546e-11 0.027402 0.00364953 -1.71972e-11 0.0271805 0.003419 -1.85413e-11 0.0269667 0.00319956 -1.98711e-11 0.0267532 0.00299309 -2.05955e-11 0.0265263 0.00279546 -2.07071e-11 0.0263059 0.00260688 -2.13343e-11 0.0260842 0.00242827 -2.02493e-11 0.0258641 0.0022591 -2.01532e-11 0.0256625 0.00209968 -1.96084e-11 0.0254782 0.001951 -1.69871e-11 0.0253229 0.00181423 -1.68893e-11 0.0252002 0.00168807 -1.44485e-11 0.0251025 0.00157258 -1.229e-11 0.0250201 0.00146686 -9.99293e-12 0.0249433 0.00137012 -7.56242e-12 0.024866 0.00128205 -5.10811e-12 0.0247853 0.00120277 -2.72413e-12 0.0246998 0.00113269 -5.55371e-13 0.0246089 0.00107222 1.62588e-12 0.024515 0.00102185 3.8394e-12 0.0244245 0.000981994 6.0212e-12 0.0243451 0.000953048 8.2903e-12 0.0242755 0.000934569 1.06397e-11 0.0242048 0.000926177 1.32374e-11 0.0241191 0.000928333 1.60315e-11 0.0239867 0.000937833 1.9281e-11 0.023695 0.000945691 2.45996e-11 0.0229877 0.000932105 3.57969e-11 0.0219029 0.000883292 4.69413e-11 0.0203926 0.000795316 5.52012e-11 0.018597 0.000668446 5.63891e-11 0.0167815 0.000526075 4.94927e-11 0.0151876 0.000390006 3.82626e-11 0.013932 0.000276602 2.71013e-11 0.0130163 0.000190905 1.83307e-11 0.0123828 0.000129989 1.21871e-11 0.0119603 8.81454e-05 7.87568e-12 0.0116857 5.99388e-05 4.96282e-12 0.0115097 4.09803e-05 3.19704e-12 0.0113976 2.8172e-05 2.03198e-12 0.0113264 1.94523e-05 1.28222e-12 0.011281 1.34675e-05 8.05663e-13 0.0112521 9.33188e-06 5.05228e-13 0.0112335 6.464e-06 3.14201e-13 0.0112216 4.46986e-06 1.915e-13 0.011214 3.07374e-06 1.21804e-13 0.0112091 2.09881e-06 7.51583e-14 0.0112059 1.42683e-06 4.58411e-14 0.0112038 9.63766e-07 2.79562e-14 0.0112025 6.46302e-07 1.70868e-14 0.0112016 4.30202e-07 1.04661e-14 0.011201 2.84133e-07 6.43502e-15 0.0112007 1.86151e-07 3.98733e-15 0.0112004 1.20961e-07 2.50195e-15 0.0112003 7.79534e-08 1.59208e-15 0.0112002 4.98192e-08 1.02844e-15 0.0112001 3.15804e-08 6.7136e-16 0.0112001 1.98382e-08 4.38747e-16 0.0112001 1.23832e-08 2.81461e-16 7.47962e-09 1.3863e-16 0.0168034 1.10065e-08 1.54598e-13 0.0168051 8.71139e-09 1.88641e-13 0.016808 1.53257e-08 2.41987e-13 0.0168122 9.06848e-08 3.74178e-13 0.0168199 1.56102e-07 5.20952e-13 0.0168317 1.05612e-06 6.13525e-13 0.0168548 3.06264e-06 1.36513e-12 0.0168815 1.39495e-05 7.1827e-13 0.0169901 3.78167e-05 3.57746e-12 0.0172207 0.000130287 2.7004e-12 0.0180744 0.000347191 1.1875e-11 0.0200515 0.00107243 1.74774e-11 0.0245839 0.0027287 4.65726e-11 0.029189 0.00619427 8.14536e-11 0.0315444 0.0124655 2.93978e-11 0.0324944 0.0148144 1.42496e-11 0.0327335 0.0156425 1.25927e-11 0.0327984 0.0155615 1.32047e-11 0.0329333 0.0151522 1.41695e-11 0.0329185 0.0147271 1.41397e-11 0.0326916 0.0142459 1.47917e-11 0.0324308 0.013627 1.31748e-11 0.0321408 0.0129004 1.22595e-11 0.0318716 0.0121273 1.21051e-11 0.0316303 0.0113746 8.54155e-12 0.0314181 0.0106606 8.30119e-12 0.0312316 0.00999445 6.67607e-12 0.0310619 0.00937664 4.71987e-12 0.0309007 0.00880288 2.97842e-12 0.0307464 0.00827192 1.14895e-12 0.0305956 0.00778146 -7.24109e-13 0.0304386 0.00732754 -2.19862e-12 0.0302661 0.00690404 -3.6781e-12 0.0300723 0.00650566 -4.98962e-12 0.0298504 0.00612888 -6.20942e-12 0.0295988 0.00577023 -7.59513e-12 0.0293269 0.00542841 -9.18525e-12 0.0290483 0.00510418 -1.13177e-11 0.0287741 0.0047983 -1.3626e-11 0.0285072 0.00451067 -1.6336e-11 0.0282491 0.00423939 -1.93881e-11 0.0280017 0.00398329 -2.24103e-11 0.0277544 0.00374097 -2.53228e-11 0.0275138 0.0035096 -2.7507e-11 0.0272657 0.00329037 -2.88236e-11 0.02701 0.00307925 -2.98993e-11 0.0267644 0.0028784 -2.95228e-11 0.0265217 0.00268829 -2.90041e-11 0.0262962 0.00250898 -2.8316e-11 0.0260904 0.00234039 -2.54422e-11 0.0259082 0.0021846 -2.42457e-11 0.0257583 0.00204009 -2.12427e-11 0.0256341 0.00190705 -1.81439e-11 0.025526 0.00178461 -1.48735e-11 0.0254249 0.00167192 -1.14054e-11 0.0253256 0.00156856 -7.9488e-12 0.0252255 0.00147462 -4.5965e-12 0.0251238 0.00139059 -1.47183e-12 0.0250203 0.0013169 1.48145e-12 0.0249158 0.00125393 4.31714e-12 0.0248148 0.00120196 6.87122e-12 0.0247242 0.00116134 9.08467e-12 0.0246452 0.00113175 1.1562e-11 0.0245638 0.00111241 1.35788e-11 0.0244539 0.00110096 1.60446e-11 0.0242724 0.00109329 2.00651e-11 0.0238526 0.00107812 2.81602e-11 0.023107 0.0010373 3.88178e-11 0.021926 0.000959942 5.00431e-11 0.0203126 0.000837748 5.77444e-11 0.0184425 0.000682212 5.76262e-11 0.0165987 0.000518973 4.95272e-11 0.0150141 0.000371969 3.75927e-11 0.0137874 0.000255488 2.63055e-11 0.012905 0.000171138 1.76049e-11 0.0123012 0.000113393 1.17125e-11 0.0119023 7.49864e-05 7.422e-12 0.0116451 4.98619e-05 4.73707e-12 0.0114814 3.34168e-05 3.02136e-12 0.0113779 2.25713e-05 1.91329e-12 0.0113125 1.53467e-05 1.20433e-12 0.0112713 1.04847e-05 7.53575e-13 0.0112453 7.18195e-06 4.69747e-13 0.0112288 4.92128e-06 2.92372e-13 0.0112183 3.36692e-06 1.82119e-13 0.0112117 2.29843e-06 1.10568e-13 0.0112075 1.56336e-06 6.71626e-14 0.0112048 1.05552e-06 4.2897e-14 0.011203 7.07625e-07 2.5733e-14 0.011202 4.71706e-07 1.56725e-14 0.0112013 3.12404e-07 9.54891e-15 0.0112008 2.05324e-07 5.84733e-15 0.0112005 1.33887e-07 3.61695e-15 0.0112003 8.66174e-08 2.26858e-15 0.0112002 5.55932e-08 1.44813e-15 0.0112002 3.53928e-08 9.37975e-16 0.0112001 2.23538e-08 6.11264e-16 0.0112001 1.39929e-08 3.95192e-16 0.0112001 8.70701e-09 2.47744e-16 5.24313e-09 1.14487e-16 0.0168034 2.07816e-09 1.45747e-13 0.016805 8.89241e-10 1.44528e-13 0.016808 1.79906e-09 2.4591e-13 0.0168118 1.5444e-08 3.65809e-13 0.0168182 1.01355e-08 4.6424e-13 0.0168267 1.34406e-07 7.37446e-13 0.0168413 3.59287e-07 9.74831e-13 0.0168691 1.76296e-06 1.36209e-12 0.0169038 6.27208e-06 1.85623e-12 0.0170114 2.33236e-05 2.95548e-12 0.017162 7.96618e-05 4.80835e-12 0.0178206 0.000228745 9.31462e-12 0.0192866 0.000716509 1.6443e-11 0.0225872 0.00189075 3.38392e-11 0.0280422 0.00452409 6.62126e-11 0.0312206 0.0105431 2.93504e-11 0.0324721 0.0137687 3.02961e-11 0.0330178 0.0150371 1.82619e-11 0.0332036 0.0151722 1.6133e-11 0.0332895 0.0148821 1.73874e-11 0.0334444 0.0144407 1.6678e-11 0.033485 0.0140377 1.514e-11 0.0333468 0.0135855 1.34255e-11 0.0331632 0.0130061 1.19157e-11 0.0329676 0.012344 8.43825e-12 0.032768 0.0116691 7.20673e-12 0.0325733 0.0110101 5.77868e-12 0.032378 0.0103809 3.54097e-12 0.0321846 0.00978583 2.24675e-12 0.0319957 0.0092305 5.59242e-13 0.0318109 0.00871199 -9.0395e-13 0.0316233 0.00823004 -2.18173e-12 0.0314181 0.00777733 -3.44209e-12 0.0311879 0.00734862 -4.78103e-12 0.0309306 0.00694036 -6.12265e-12 0.0306444 0.00655062 -7.84587e-12 0.0303358 0.0061773 -1.02586e-11 0.0300188 0.00582109 -1.3101e-11 0.0297075 0.00548348 -1.6106e-11 0.0294076 0.0051652 -1.9355e-11 0.0291172 0.00486457 -2.27411e-11 0.0288365 0.00457961 -2.59581e-11 0.0285627 0.00430915 -2.86865e-11 0.028288 0.00405136 -3.07417e-11 0.0280163 0.00380455 -3.17127e-11 0.027736 0.00356927 -3.20642e-11 0.0274576 0.00334293 -3.13552e-11 0.0271941 0.00312866 -2.99207e-11 0.0269441 0.00292644 -2.78368e-11 0.026717 0.00273619 -2.516e-11 0.0265099 0.00255836 -2.1956e-11 0.0263327 0.00239417 -1.94768e-11 0.0261834 0.00224172 -1.60483e-11 0.0260522 0.00210135 -1.26541e-11 0.0259289 0.00197188 -9.17731e-12 0.0258076 0.00185264 -5.74285e-12 0.0256871 0.00174354 -2.38188e-12 0.0255675 0.00164504 8.41418e-13 0.0254484 0.00155758 3.919e-12 0.0253307 0.00148139 6.81617e-12 0.0252174 0.0014165 9.33651e-12 0.0251127 0.00136277 1.14725e-11 0.025017 0.00131974 1.33247e-11 0.0249159 0.00128583 1.53472e-11 0.0247716 0.00125763 1.80429e-11 0.0245123 0.00122817 2.25542e-11 0.024024 0.00118471 3.05832e-11 0.0231765 0.00111351 4.17456e-11 0.0218761 0.00100176 5.3225e-11 0.0201566 0.000843986 6.02839e-11 0.0182262 0.000664705 5.86604e-11 0.0163748 0.000488025 4.92841e-11 0.0148186 0.000338058 3.67893e-11 0.013634 0.000224963 2.54417e-11 0.0127925 0.000146371 1.69198e-11 0.0122221 9.44401e-05 1.11839e-11 0.011848 6.09777e-05 7.05219e-12 0.0116083 3.96864e-05 4.48943e-12 0.0114564 2.60987e-05 2.85773e-12 0.0113609 1.734e-05 1.80585e-12 0.0113009 1.16233e-05 1.13404e-12 0.0112633 7.84381e-06 7.0867e-13 0.0112398 5.31589e-06 4.41223e-13 0.011225 3.60937e-06 2.73533e-13 0.0112157 2.45027e-06 1.68423e-13 0.0112099 1.66e-06 1.03488e-13 0.0112062 1.12015e-06 6.41711e-14 0.0112039 7.52404e-07 3.89582e-14 0.0112025 5.03012e-07 2.26159e-14 0.0112016 3.33876e-07 1.4803e-14 0.011201 2.20013e-07 8.89778e-15 0.0112006 1.43856e-07 5.38391e-15 0.0112004 9.33672e-08 3.33128e-15 0.0112003 6.01828e-08 2.09338e-15 0.0112002 3.84909e-08 1.34212e-15 0.0112001 2.44223e-08 8.73953e-16 0.0112001 1.53744e-08 5.65162e-16 0.0112001 9.59316e-09 3.57446e-16 0.0112001 5.95224e-09 2.12455e-16 3.57472e-09 8.54995e-17 0.0168033 4.2623e-10 1.12486e-13 0.0168051 2.41084e-10 1.59662e-13 0.0168078 -4.40245e-10 2.29844e-13 0.016812 6.09013e-09 3.65119e-13 0.0168177 -9.18925e-09 4.21409e-13 0.0168265 3.9572e-08 7.82933e-13 0.0168386 1.15046e-08 8.26946e-13 0.016857 2.46338e-07 1.44739e-12 0.0168856 6.84317e-07 1.73269e-12 0.016932 2.9229e-06 2.49927e-12 0.0170252 1.20331e-05 3.4433e-12 0.0171625 4.11619e-05 4.95164e-12 0.0176427 0.000136556 8.6185e-12 0.0186596 0.000435511 1.47845e-11 0.0210481 0.00123076 2.8839e-11 0.0265003 0.00310861 5.17675e-11 0.0303335 0.00664988 8.6675e-11 0.0322221 0.0121796 3.82352e-11 0.0331405 0.0138563 2.40239e-11 0.0335263 0.0145552 1.98363e-11 0.0337117 0.0145119 1.72906e-11 0.0338883 0.0141548 1.52268e-11 0.034096 0.0137471 1.42654e-11 0.0341371 0.0133802 1.29328e-11 0.0340702 0.0129447 1.02176e-11 0.033959 0.0124187 5.76892e-12 0.0338055 0.011853 4.79018e-12 0.0336279 0.0112761 2.64111e-12 0.0334353 0.0107065 1.65573e-12 0.0332367 0.0101569 9.24475e-14 0.0330339 0.00963392 -1.67291e-12 0.032822 0.00913855 -3.08564e-12 0.0325886 0.00866604 -4.85925e-12 0.0323261 0.00821296 -6.44087e-12 0.0320337 0.00777595 -8.04798e-12 0.0317138 0.00735571 -1.0257e-11 0.0313695 0.00695008 -1.32478e-11 0.0310153 0.00656007 -1.69924e-11 0.0306669 0.00618811 -2.10436e-11 0.0303328 0.00583549 -2.53347e-11 0.030012 0.00550146 -2.97257e-11 0.029701 0.00518392 -3.39379e-11 0.0293983 0.00488136 -3.76343e-11 0.0290985 0.00459232 -4.02452e-11 0.0287968 0.00431549 -4.21142e-11 0.0284977 0.00404989 -4.15698e-11 0.0281953 0.00379648 -4.08369e-11 0.0279047 0.00355386 -3.76557e-11 0.0276348 0.00332536 -3.24942e-11 0.027384 0.00311024 -2.81111e-11 0.0271567 0.00290865 -2.3092e-11 0.0269541 0.00272176 -2.07847e-11 0.0267793 0.00254916 -1.60888e-11 0.0266248 0.00238937 -1.17071e-11 0.0264801 0.00224257 -7.52855e-12 0.0263376 0.00210744 -3.61914e-12 0.0261947 0.00198342 -1.85409e-14 0.0260518 0.00187066 3.43937e-12 0.0259099 0.00176945 6.72839e-12 0.0257701 0.00167991 9.73972e-12 0.0256346 0.00160163 1.22126e-11 0.0255064 0.00153396 1.41426e-11 0.0253826 0.00147571 1.55401e-11 0.0252454 0.0014245 1.69367e-11 0.0250506 0.00137558 1.9359e-11 0.0247175 0.00132045 2.45568e-11 0.0241304 0.00124704 3.34484e-11 0.0231614 0.001142 4.5087e-11 0.0217351 0.000990222 5.63115e-11 0.0199216 0.000807762 6.18794e-11 0.0179553 0.000613203 5.87126e-11 0.0161217 0.000434348 4.82614e-11 0.0146129 0.000290962 3.55088e-11 0.0134812 0.000187768 2.43197e-11 0.0126854 0.00011885 1.6147e-11 0.0121496 7.47783e-05 1.06107e-11 0.0117999 4.72035e-05 6.67924e-12 0.0115765 3.01105e-05 4.25234e-12 0.0114354 1.94564e-05 2.70244e-12 0.0113469 1.27326e-05 1.70551e-12 0.0112915 8.42524e-06 1.07002e-12 0.011257 5.6235e-06 6.68032e-13 0.0112354 3.77563e-06 4.15261e-13 0.011222 2.54313e-06 2.56949e-13 0.0112137 1.7144e-06 1.58262e-13 0.0112085 1.15427e-06 9.71655e-14 0.0112053 7.74808e-07 5.939e-14 0.0112033 5.17886e-07 3.60846e-14 0.011202 3.44448e-07 2.19403e-14 0.0112013 2.27682e-07 1.34562e-14 0.0112008 1.49413e-07 8.2222e-15 0.0112005 9.74697e-08 4.81049e-15 0.0112003 6.31297e-08 3.11961e-15 0.0112002 4.05367e-08 1.98799e-15 0.0112001 2.58412e-08 1.2753e-15 0.0112001 1.63448e-08 8.11882e-16 0.0112001 1.02551e-08 5.14634e-16 0.0112001 6.37872e-09 3.08517e-16 0.0112001 3.94871e-09 1.79142e-16 2.36623e-09 7.11652e-17 0.0168033 1.2131e-10 9.44501e-14 0.0168051 -1.12653e-11 1.48645e-13 0.0168078 -7.21009e-11 2.00641e-13 0.0168119 1.33397e-09 3.47255e-13 0.0168178 -2.74301e-09 4.19355e-13 0.0168263 8.58777e-09 7.60251e-13 0.0168384 -6.72335e-09 8.00034e-13 0.0168558 3.80173e-08 1.54608e-12 0.0168802 7.10463e-08 1.46444e-12 0.0169149 3.5387e-07 2.92402e-12 0.0169686 1.30576e-06 2.70574e-12 0.017051 5.33711e-06 4.9714e-12 0.0172283 1.89959e-05 5.76554e-12 0.01756 7.07498e-05 9.04036e-12 0.0182909 0.000233203 1.10104e-11 0.0201815 0.000715975 2.46738e-11 0.0235449 0.00186863 4.44776e-11 0.0285591 0.00420541 8.00049e-11 0.0316056 0.0089283 4.29726e-11 0.0329697 0.0123917 2.9279e-11 0.0337396 0.0134624 2.10707e-11 0.0341017 0.0139011 1.70414e-11 0.0343028 0.013799 1.42386e-11 0.0345326 0.0134317 1.3519e-11 0.0346975 0.0130685 1.19704e-11 0.0347435 0.0126995 9.59062e-12 0.0347121 0.0122869 4.5835e-12 0.034622 0.0118276 2.5593e-12 0.034488 0.0113464 1.62734e-12 0.0343229 0.0108561 -4.04072e-14 0.0341381 0.0103689 -2.29905e-12 0.03393 0.00989222 -3.33049e-12 0.0336916 0.00942386 -6.37302e-12 0.0334164 0.00896527 -8.32204e-12 0.0331069 0.00851368 -1.06713e-11 0.0327666 0.00807255 -1.38833e-11 0.0324012 0.00764116 -1.74496e-11 0.0320244 0.00722178 -2.12845e-11 0.0316519 0.00681714 -2.50314e-11 0.0312941 0.00642991 -2.79583e-11 0.030952 0.00606066 -3.03701e-11 0.0306224 0.00570853 -3.18013e-11 0.0302998 0.0053712 -3.24206e-11 0.029982 0.00504766 -3.19493e-11 0.029664 0.00473696 -3.03405e-11 0.0293453 0.00443902 -2.94989e-11 0.0290323 0.0041536 -2.51723e-11 0.028722 0.00388209 -1.83087e-11 0.0284299 0.00362403 -1.00102e-11 0.0281618 0.00338262 -2.83e-12 0.0279128 0.00315654 5.02391e-13 0.0276891 0.00294745 3.70045e-12 0.0274879 0.00275462 1.25665e-12 0.0273048 0.00257829 4.69084e-12 0.0271326 0.0024165 6.15643e-12 0.0269629 0.00226817 7.8433e-12 0.0267911 0.00213294 9.58223e-12 0.0266157 0.00200985 1.15112e-11 0.0264368 0.00189864 1.37776e-11 0.0262564 0.00179908 1.59791e-11 0.0260782 0.00171057 1.77468e-11 0.0259054 0.00163191 1.86173e-11 0.0257334 0.00156085 1.90727e-11 0.02554 0.00149391 1.99038e-11 0.0252741 0.00142479 2.24078e-11 0.0248491 0.00134386 2.75112e-11 0.0241453 0.00123901 3.67176e-11 0.0230434 0.00109624 4.86036e-11 0.0214992 0.000919559 5.90931e-11 0.0196184 0.000723115 6.32221e-11 0.0176477 0.000529078 5.84196e-11 0.0158578 0.000361969 4.70969e-11 0.0144114 0.000234925 3.42096e-11 0.0133388 0.000147357 2.33142e-11 0.0125897 9.09269e-05 1.5441e-11 0.012087 5.59127e-05 1.0108e-11 0.0117596 3.45703e-05 6.35154e-12 0.0115506 2.16526e-05 4.04885e-12 0.0114187 1.37716e-05 2.57413e-12 0.011336 8.89169e-06 1.62437e-12 0.0112843 5.81729e-06 1.01877e-12 0.0112522 3.84603e-06 6.35674e-13 0.0112322 2.56171e-06 3.94765e-13 0.0112198 1.71387e-06 2.44009e-13 0.0112122 1.14868e-06 1.50145e-13 0.0112075 7.69471e-07 9.19972e-14 0.0112046 5.14222e-07 5.61372e-14 0.0112028 3.42355e-07 3.41266e-14 0.0112017 2.26842e-07 2.0698e-14 0.0112011 1.4943e-07 1.26052e-14 0.0112007 9.7791e-08 7.64987e-15 0.0112004 6.35728e-08 4.66747e-15 0.0112003 4.10458e-08 2.9755e-15 0.0112002 2.63057e-08 1.75476e-15 0.0112001 1.6721e-08 1.17579e-15 0.0112001 1.05483e-08 7.21957e-16 0.0112001 6.60883e-09 4.89251e-16 0.0112001 4.1074e-09 3.13464e-16 0.0112001 2.53215e-09 1.83333e-16 1.51666e-09 4.69654e-17 0.0168033 3.89075e-11 8.67527e-14 0.0168051 -3.43165e-12 1.42868e-13 0.0168078 2.51909e-11 2.06706e-13 0.0168119 2.82167e-10 3.14398e-13 0.0168178 -6.0607e-10 4.41392e-13 0.0168262 1.86479e-09 6.80999e-13 0.0168384 -2.03125e-09 8.67451e-13 0.0168556 5.87394e-09 1.40124e-12 0.0168797 8.59043e-09 1.59987e-12 0.0169127 3.32265e-08 2.8027e-12 0.0169587 1.73178e-07 2.65141e-12 0.0170225 5.73383e-07 5.39387e-12 0.0171157 2.34589e-06 3.92774e-12 0.0172656 8.63661e-06 9.90519e-12 0.0175494 3.24831e-05 6.50823e-12 0.0181169 0.000112317 1.50181e-11 0.0193386 0.000365449 2.03134e-11 0.0218083 0.00103454 3.80057e-11 0.0258377 0.00243706 5.16439e-11 0.0298649 0.00485727 5.95823e-11 0.0323529 0.00921797 3.15533e-11 0.033544 0.0118939 2.24599e-11 0.0342326 0.0126992 1.66816e-11 0.0346053 0.0130075 1.41745e-11 0.034878 0.0129639 1.09783e-11 0.0350633 0.0127019 9.96219e-12 0.035185 0.0123554 7.84483e-12 0.0351939 0.0119758 2.66826e-12 0.0351517 0.0115646 4.35071e-13 0.0350631 0.0111378 -1.27288e-12 0.0349442 0.0106972 -4.73326e-12 0.0347884 0.0102557 -5.53573e-12 0.0345923 0.00980969 -8.07498e-12 0.0343521 0.00936253 -1.11898e-11 0.0340695 0.00891008 -1.20976e-11 0.0337536 0.00845705 -1.58289e-11 0.0334094 0.00800743 -1.93157e-11 0.0330505 0.0075636 -2.21157e-11 0.0326921 0.00712995 -2.47133e-11 0.032345 0.00671016 -2.6461e-11 0.0320152 0.00630648 -2.69124e-11 0.0316968 0.00591997 -2.88246e-11 0.0313827 0.00554893 -2.52691e-11 0.0310674 0.00519153 -3.09281e-11 0.0307525 0.00484821 -2.02789e-11 0.0304351 0.00451958 -2.48239e-11 0.0301169 0.0042057 -1.85671e-11 0.0298043 0.00390754 -2.07999e-12 0.0294971 0.00362668 5.93023e-12 0.029205 0.00336506 5.42819e-12 0.0289349 0.00312343 3.93245e-12 0.0286805 0.00290232 6.17493e-12 0.0284432 0.00270208 9.67339e-12 0.0282178 0.00252135 1.41197e-11 0.0279951 0.00235835 1.75892e-11 0.0277728 0.00221225 1.95232e-11 0.0275471 0.00208116 2.10715e-11 0.0273158 0.00196358 2.16084e-11 0.0270765 0.00185746 2.26463e-11 0.0268297 0.0017622 2.40118e-11 0.0265808 0.00167746 2.48906e-11 0.0263345 0.00160021 2.49083e-11 0.0260858 0.00152637 2.44914e-11 0.0258074 0.00144998 2.43684e-11 0.0254414 0.00136317 2.61558e-11 0.0248946 0.00125726 3.14636e-11 0.024053 0.00112454 4.05104e-11 0.0228212 0.00096066 5.15783e-11 0.0211862 0.000778683 6.04772e-11 0.0192741 0.000590671 6.29554e-11 0.017332 0.000417627 5.69374e-11 0.0156058 0.000276913 4.52613e-11 0.0142294 0.000174767 3.26444e-11 0.013216 0.000106944 2.22011e-11 0.0125101 6.45402e-05 1.46569e-11 0.0120366 3.89138e-05 9.72413e-12 0.011728 2.36274e-05 6.02515e-12 0.0115308 1.45674e-05 3.86261e-12 0.0114061 9.14066e-06 2.46072e-12 0.0113279 5.83479e-06 1.55449e-12 0.0112791 3.78134e-06 9.75554e-13 0.0112487 2.48049e-06 6.08844e-13 0.0112299 1.64152e-06 3.78047e-13 0.0112183 1.09232e-06 2.33585e-13 0.0112112 7.28754e-07 1.4364e-13 0.0112068 4.86252e-07 8.79301e-14 0.0112041 3.23834e-07 5.36015e-14 0.0112025 2.14931e-07 3.25621e-14 0.0112015 1.41998e-07 1.97412e-14 0.0112009 9.32973e-08 1.19885e-14 0.0112006 6.09164e-08 7.27783e-15 0.0112004 3.95106e-08 4.47526e-15 0.0112002 2.545e-08 2.75224e-15 0.0112002 1.62746e-08 1.73893e-15 0.0112001 1.03282e-08 1.13227e-15 0.0112001 6.5038e-09 7.23869e-16 0.0112001 4.06504e-09 4.58366e-16 0.0112001 2.52254e-09 2.65393e-16 0.0112 1.54852e-09 1.57922e-16 9.29817e-10 4.98716e-17 0.0168033 1.80151e-11 8.38303e-14 0.0168051 9.50334e-12 1.30675e-13 0.0168078 2.73337e-11 1.99421e-13 0.0168119 7.18733e-11 2.99055e-13 0.0168178 -1.08574e-10 4.36324e-13 0.0168262 4.3e-10 6.49638e-13 0.0168384 -5.10008e-10 8.94407e-13 0.0168556 1.15954e-09 1.32421e-12 0.0168796 7.80556e-10 1.72434e-12 0.0169125 3.17998e-09 2.53519e-12 0.0169576 2.2861e-08 3.10677e-12 0.0170187 5.83809e-08 4.62744e-12 0.0171006 2.95603e-07 5.19219e-12 0.0172117 9.98956e-07 7.93762e-12 0.0173686 4.06711e-06 7.94729e-12 0.0176119 1.43545e-05 1.29185e-11 0.0180554 5.14647e-05 1.19015e-11 0.018886 0.000173036 2.18737e-11 0.0204373 0.000501345 2.23194e-11 0.023015 0.00125307 3.30314e-11 0.0267066 0.00260586 4.2357e-11 0.0302524 0.00461944 3.84497e-11 0.0325617 0.00772258 2.44459e-11 0.0337781 0.0105195 1.63617e-11 0.0345001 0.011532 1.21117e-11 0.0349607 0.0117716 1.00679e-11 0.0352978 0.0117503 6.77775e-12 0.0355394 0.0114669 5.26812e-12 0.0356973 0.0111463 1.53678e-12 0.0357145 0.0108253 -2.01526e-12 0.0356568 0.0104524 -5.07824e-12 0.0355847 0.0100306 -5.48612e-12 0.0354813 0.00956441 -5.40247e-12 0.0353421 0.00907233 -5.8584e-12 0.035163 0.00857288 -3.80231e-12 0.0349458 0.00808216 -9.59408e-13 0.0346963 0.00759438 -1.26867e-12 0.0344257 0.00711677 8.90699e-13 0.0341458 0.00665143 1.35731e-12 0.0338653 0.00620315 2.42118e-12 0.0335913 0.00577136 4.37163e-12 0.0333244 0.005362 5.97691e-12 0.0330502 0.00496868 6.45477e-12 0.0327666 0.00458466 1.71941e-11 0.0324718 0.00422045 2.46605e-12 0.0321674 0.00387748 3.87155e-11 0.0318511 0.0035587 2.46014e-11 0.0315202 0.00326286 1.28296e-11 0.0311878 0.00299265 1.75813e-11 0.0308549 0.00274858 2.76939e-11 0.0305224 0.00253126 3.55185e-11 0.0302024 0.00233948 4.14084e-11 0.0298941 0.00217295 4.54611e-11 0.029583 0.00202977 4.71783e-11 0.0292646 0.00190649 4.71727e-11 0.0289432 0.00180032 4.56836e-11 0.0286204 0.00170876 4.33951e-11 0.0282913 0.00162921 4.08342e-11 0.0279529 0.00155917 3.66376e-11 0.0276044 0.00149457 3.53714e-11 0.0272455 0.00143244 3.54564e-11 0.0268785 0.00136995 3.36481e-11 0.0264971 0.00130058 3.1472e-11 0.026073 0.00121928 3.01267e-11 0.0255503 0.00112159 3.11413e-11 0.0248464 0.00100559 3.56518e-11 0.023865 0.000870691 4.37791e-11 0.0225294 0.000722509 5.35181e-11 0.0208414 0.000567294 6.12229e-11 0.0189349 0.000417383 6.23095e-11 0.017045 0.000286919 5.54643e-11 0.0153903 0.000185528 4.3631e-11 0.0140811 0.000114524 3.13522e-11 0.0131196 6.87281e-05 2.13404e-11 0.0124496 4.07667e-05 1.41275e-11 0.0119993 2.4201e-05 9.35317e-12 0.0117051 1.44862e-05 5.81071e-12 0.0115167 8.82111e-06 3.7349e-12 0.0113973 5.47691e-06 2.38277e-12 0.0113223 3.46544e-06 1.50651e-12 0.0112755 2.22963e-06 9.45889e-13 0.0112464 1.454e-06 5.90412e-13 0.0112284 9.57602e-07 3.66547e-13 0.0112173 6.34703e-07 2.26398e-13 0.0112105 4.22047e-07 1.3914e-13 0.0112063 2.80811e-07 8.51159e-14 0.0112038 1.86555e-07 5.18455e-14 0.0112023 1.23545e-07 3.14754e-14 0.0112014 8.14578e-08 1.907e-14 0.0112008 5.34211e-08 1.1561e-14 0.0112005 3.48215e-08 7.02774e-15 0.0112003 2.25486e-08 4.30759e-15 0.0112002 1.45006e-08 2.66e-15 0.0112001 9.25845e-09 1.67147e-15 0.0112001 5.86776e-09 1.07597e-15 0.0112001 3.6907e-09 6.99563e-16 0.0112001 2.30353e-09 4.49535e-16 0.0112001 1.42762e-09 2.72861e-16 0.0112 8.74613e-10 1.62083e-16 5.24558e-10 4.56873e-17 0.0168033 1.01062e-11 8.15534e-14 0.0168051 9.5518e-12 1.29584e-13 0.0168078 1.67451e-11 1.95184e-13 0.0168119 2.56295e-11 2.96947e-13 0.0168178 4.96943e-13 4.35827e-13 0.0168262 9.77236e-11 6.39399e-13 0.0168384 -8.07264e-11 9.0759e-13 0.0168556 2.3014e-10 1.29637e-12 0.0168796 1.12597e-10 1.77001e-12 0.0169125 2.19279e-10 2.46795e-12 0.0169574 3.25978e-09 3.245e-12 0.0170182 5.29384e-09 4.42098e-12 0.0170989 3.66857e-08 5.53565e-12 0.0172049 1.12568e-07 7.39053e-12 0.0173438 4.93833e-07 8.75516e-12 0.017527 1.73043e-06 1.13074e-11 0.0177764 6.52019e-06 1.26534e-11 0.018141 2.27918e-05 1.57811e-11 0.0187394 7.32855e-05 1.72317e-11 0.0197255 0.000217104 2.06519e-11 0.0212661 0.000544045 2.33325e-11 0.0234315 0.0011703 2.38388e-11 0.0263211 0.00213627 2.54568e-11 0.0293702 0.00347486 2.02977e-11 0.0318783 0.00489459 1.70897e-11 0.033643 0.00676527 1.13339e-11 0.0347545 0.00837372 8.09968e-12 0.035489 0.00904917 5.72421e-12 0.0360635 0.009003 3.95161e-12 0.0365244 0.00876378 4.02922e-12 0.0368786 0.00848993 3.71686e-12 0.0371521 0.0080834 7.9906e-12 0.0373702 0.00758765 1.29456e-11 0.037518 0.00708917 1.56536e-11 0.0375461 0.00659762 2.29814e-11 0.0375092 0.00608817 3.82536e-11 0.0374284 0.00559896 4.27735e-11 0.0373015 0.00514217 5.0576e-11 0.0371358 0.00470047 5.72043e-11 0.036945 0.00428095 6.10464e-11 0.0367304 0.00388591 6.75444e-11 0.0364984 0.00352541 7.14061e-11 0.0362374 0.00319124 7.73267e-11 0.0359304 0.00288265 7.59697e-11 0.0355867 0.00258908 9.15432e-11 0.0352249 0.002311 7.55673e-11 0.0348353 0.00206412 8.95186e-11 0.0344149 0.00184991 9.77958e-11 0.0339706 0.00166642 9.61335e-11 0.0335128 0.00151137 9.24036e-11 0.0330527 0.00138335 9.06626e-11 0.0325845 0.00127941 8.94072e-11 0.0321205 0.00119623 8.75932e-11 0.0316627 0.00113165 8.4485e-11 0.0311927 0.00108173 7.96945e-11 0.0307025 0.00104133 7.36327e-11 0.030203 0.00100766 6.69997e-11 0.0297031 0.000979013 6.03106e-11 0.0291929 0.000950094 5.42431e-11 0.0286589 0.0009184 4.93683e-11 0.0280975 0.000882763 4.70468e-11 0.0275133 0.000838666 4.47998e-11 0.0269115 0.000785321 4.10928e-11 0.0262793 0.000722147 3.80763e-11 0.0255747 0.00064964 3.7098e-11 0.024725 0.000568828 3.97685e-11 0.0236382 0.000481756 4.62421e-11 0.0222403 0.000390579 5.47327e-11 0.020537 0.000299853 6.10925e-11 0.0186589 0.000216041 6.11716e-11 0.0168253 0.000145723 5.38564e-11 0.0152329 9.26724e-05 4.2133e-11 0.0139766 5.63813e-05 3.02607e-11 0.0130537 3.34075e-05 2.06533e-11 0.0124092 1.95935e-05 1.37012e-11 0.0119749 1.15143e-05 9.08639e-12 0.0116905 6.82765e-06 5.65255e-12 0.0115078 4.12414e-06 3.64077e-12 0.0113918 2.54328e-06 2.3264e-12 0.0113189 1.60019e-06 1.47244e-12 0.0112733 1.02484e-06 9.25115e-13 0.011245 6.65852e-07 5.77658e-13 0.0112274 4.37222e-07 3.58675e-13 0.0112167 2.89089e-07 2.2152e-13 0.0112101 1.91844e-07 1.36112e-13 0.0112061 1.27427e-07 8.32337e-14 0.0112036 8.45307e-08 5.06796e-14 0.0112022 5.59067e-08 3.07542e-14 0.0112013 3.6817e-08 1.86266e-14 0.0112008 2.41183e-08 1.12863e-14 0.0112005 1.5705e-08 6.86157e-15 0.0112003 1.016e-08 4.20094e-15 0.0112002 6.52757e-09 2.60062e-15 0.0112001 4.16395e-09 1.62697e-15 0.0112001 2.63672e-09 1.03741e-15 0.0112001 1.65719e-09 6.66886e-16 0.0112001 1.03349e-09 4.28788e-16 0.0112 6.40011e-10 2.65327e-16 0.0112 3.91696e-10 1.67081e-16 2.3479e-10 5.79328e-17 0.0168033 8.15937e-14 0.0168051 1.27404e-13 0.0168078 1.95233e-13 0.0168119 2.9529e-13 0.0168178 4.36743e-13 0.0168262 6.37743e-13 0.0168384 9.11165e-13 0.0168556 1.29206e-12 0.0168796 1.78593e-12 0.0169125 2.45125e-12 0.0169574 3.28739e-12 0.0170182 4.37199e-12 0.0170987 5.64237e-12 0.0172041 7.26859e-12 0.0173409 8.96795e-12 0.0175161 1.10444e-11 0.0177371 1.29057e-11 0.0180149 1.49446e-11 0.0183745 1.631e-11 0.0188651 1.74758e-11 0.0195732 1.7962e-11 0.0206 1.76145e-11 0.0220443 1.62331e-11 0.0239221 1.30731e-11 0.0261999 1.0662e-11 0.0288321 7.88247e-12 0.0316023 1.32606e-11 0.0342025 1.98863e-11 0.0364846 2.83611e-11 0.038456 4.66096e-11 0.0401271 5.6437e-11 0.0414965 7.5569e-11 0.0425848 9.61203e-11 0.0434181 1.11193e-10 0.0440062 1.25962e-10 0.0443598 1.45986e-10 0.0445683 1.60282e-10 0.0445619 1.67617e-10 0.0444345 1.73102e-10 0.0441687 1.73403e-10 0.0438055 1.7456e-10 0.0433688 1.65723e-10 0.0428665 1.61336e-10 0.0422867 1.5337e-10 0.0416229 1.52727e-10 0.0408901 1.35528e-10 0.0401124 1.34616e-10 0.0392997 1.22064e-10 0.0384696 1.10395e-10 0.0376394 1.07529e-10 0.036821 1.09098e-10 0.0360141 1.09515e-10 0.0352205 1.06845e-10 0.0344413 1.03455e-10 0.0336633 9.90137e-11 0.0328777 9.34417e-11 0.0320829 8.68188e-11 0.0312839 7.94982e-11 0.0304868 7.23141e-11 0.0296845 6.59194e-11 0.0288661 6.06022e-11 0.0280428 5.55115e-11 0.0272315 4.97182e-11 0.0264276 4.45508e-11 0.0255911 4.16703e-11 0.0246461 4.28245e-11 0.0234971 4.80942e-11 0.022068 5.56069e-11 0.0203627 6.11245e-11 0.0185066 6.06234e-11 0.0167076 5.3067e-11 0.0151507 4.14343e-11 0.0139232 2.97291e-11 0.0130206 2.03243e-11 0.0123892 1.35014e-11 0.011963 8.96005e-12 0.0116834 5.57233e-12 0.0115035 3.59441e-12 0.0113892 2.29956e-12 0.0113173 1.45651e-12 0.0112723 9.15481e-13 0.0112443 5.71754e-13 0.011227 3.55027e-13 0.0112164 2.19252e-13 0.0112099 1.34701e-13 0.0112059 8.23529e-14 0.0112036 5.01328e-14 0.0112021 3.04138e-14 0.0112013 1.84165e-14 0.0112008 1.11574e-14 0.0112005 6.78167e-15 0.0112003 4.15245e-15 0.0112002 2.56976e-15 0.0112001 1.60938e-15 0.0112001 1.02171e-15 0.0112001 6.52666e-16 0.0112001 4.18294e-16 0.0112 2.60383e-16 0.0112 1.67227e-16 6.22264e-17 0.00965474 0.00861957 -1.2547e-11 0.00623245 0.00343664 -4.82462e-12 0.00472736 0.00149962 -2.56345e-12 0.00411245 0.00061768 -3.59227e-12 0.00399544 0.000112907 -3.95454e-12 0.00424333 -0.000253269 -4.01874e-12 0.00466729 -0.000409681 -3.15705e-12 0.00494043 -0.000254878 3.42589e-12 0.00503738 -8.76273e-05 1.30279e-11 0.00502703 1.56936e-05 1.56011e-11 0.00496787 6.23363e-05 1.80653e-11 0.00493165 3.4256e-05 2.0555e-11 0.00492522 7.7049e-06 2.07711e-11 0.00495951 -2.53409e-05 2.14902e-11 0.0050303 -4.66054e-05 1.84216e-11 0.00512012 -5.68439e-05 2.30131e-11 0.0052161 -6.02176e-05 1.68388e-11 0.00532164 -6.2001e-05 1.28467e-11 0.00544239 -6.7686e-05 9.27832e-12 0.00557884 -7.54262e-05 5.00117e-12 0.00572804 -8.35666e-05 1.16512e-13 0.00588368 -9.03773e-05 -4.08986e-12 0.00603676 -9.53486e-05 -6.64836e-12 0.00617927 -9.82432e-05 -1.76492e-11 0.00630616 -9.92244e-05 -2.27465e-11 0.00641807 -9.86053e-05 -2.45352e-11 0.00652245 -9.60217e-05 -3.92459e-11 0.00662073 -9.24788e-05 -4.36232e-11 0.00670338 -8.92588e-05 -3.01413e-11 0.00676816 -8.47908e-05 -3.71515e-11 0.00682124 -7.82744e-05 -4.31518e-11 0.00686545 -7.20805e-05 -4.40561e-11 0.00690159 -6.59239e-05 -4.33965e-11 0.00693136 -5.99464e-05 -4.32365e-11 0.0069586 -5.43896e-05 -4.55716e-11 0.00698769 -4.96081e-05 -5.11347e-11 0.00702122 -4.59233e-05 -5.62949e-11 0.00706006 -4.35325e-05 -5.87769e-11 0.00710561 -4.25664e-05 -6.11212e-11 0.0071609 -4.30795e-05 -6.52019e-11 0.00722958 -4.50617e-05 -6.98984e-11 0.00731637 -4.85e-05 -7.54927e-11 0.00742386 -5.34979e-05 -7.61776e-11 0.0075465 -5.99205e-05 -7.17683e-11 0.00768508 -6.73601e-05 -6.91646e-11 0.00788962 -7.6851e-05 -6.45654e-11 0.00825799 -7.98902e-05 -7.23391e-11 0.00879587 -8.36705e-05 -4.50087e-11 0.00947113 -9.37612e-05 -4.16139e-11 0.0102529 -0.000108769 -3.76019e-11 0.0111044 -0.000118741 -3.18617e-11 0.0119974 -0.000125113 -2.32853e-11 0.0129037 -0.000131914 -1.23196e-11 0.0137967 -0.000138991 -1.63049e-12 0.0146551 -0.000146168 8.96665e-12 0.0154638 -0.000153278 1.97427e-11 0.0162088 -0.000160256 2.85473e-11 0.0168752 -0.000167078 3.44756e-11 0.0174482 -0.000173332 3.79734e-11 0.0179188 -0.000178101 4.1221e-11 0.0182937 -0.000180673 4.49219e-11 0.0185979 -0.000180895 4.67021e-11 0.018849 -0.000179003 4.71369e-11 0.0190534 -0.000175195 4.81731e-11 0.019209 -0.000169672 4.97656e-11 0.0192907 -0.000162587 5.10807e-11 0.0192118 -0.000153775 4.95239e-11 0.0186789 -0.000141305 3.83511e-11 0.0179501 -0.000121857 -5.13515e-12 0.0169523 -0.000104456 -2.66614e-11 0.015822 -8.55704e-05 -2.82633e-11 0.0147293 -6.63897e-05 -2.21646e-11 0.013792 -4.92884e-05 -1.45622e-11 0.0130549 -3.54762e-05 -8.45771e-12 0.0125101 -2.50493e-05 -4.41145e-12 0.0121248 -1.7482e-05 -2.01787e-12 0.011861 -1.20701e-05 -7.37436e-13 0.0116848 -8.18157e-06 -1.32606e-13 0.0115694 -5.37268e-06 1.16064e-13 0.0114948 -3.33053e-06 1.74287e-13 0.0114458 -2.01652e-06 1.03528e-13 0.0114117 -1.1667e-06 -3.10831e-14 0.0113854 -4.4258e-07 -1.46036e-13 0.0113627 9.59792e-08 -2.28851e-13 0.0113415 4.15258e-07 -2.73224e-13 0.0113211 5.68807e-07 -2.69752e-13 0.0113016 6.08653e-07 -2.3792e-13 0.0112834 5.77671e-07 -1.93219e-13 0.0112669 5.08553e-07 -1.46854e-13 0.0112525 4.24333e-07 -1.0552e-13 0.0112404 3.39803e-07 -7.2168e-14 0.0112305 2.633e-07 -4.70969e-14 0.0112226 1.98561e-07 -2.92486e-14 0.0112165 1.46354e-07 -1.73476e-14 0.0112118 1.05875e-07 -1.07932e-14 0.0112084 7.52454e-08 -6.66605e-15 0.0112059 5.28305e-08 -4.01778e-15 0.011204 3.64619e-08 -2.40992e-15 0.0112028 2.47548e-08 -1.47768e-15 1.64394e-08 -5.62675e-16 0.0130293 0.0127328 2.06145e-12 0.00991364 0.00657399 1.24683e-13 0.00828178 0.00314168 -2.25575e-12 0.00759422 0.00131575 -3.14763e-13 0.00732378 0.000392665 -7.81255e-13 0.00717242 -9.34016e-05 9.42508e-13 0.0070383 -0.00025383 2.57477e-12 0.00707741 -0.000268359 4.13376e-12 0.00722642 -0.000207534 4.93549e-12 0.00738738 -0.000111307 9.20406e-12 0.00750241 -3.5622e-05 1.29843e-11 0.00754104 6.98095e-06 1.95934e-11 0.0075428 1.70947e-05 2.00708e-11 0.00752922 3.40225e-07 2.0128e-11 0.00753151 -3.27164e-05 1.98177e-11 0.00755609 -6.1123e-05 1.95685e-11 0.00760852 -8.4731e-05 1.7993e-11 0.00768898 -0.000101901 1.39211e-11 0.00778326 -0.000111153 9.95148e-12 0.00788743 -0.000120621 4.78673e-12 0.00800318 -0.000132845 4.5255e-13 0.00813092 -0.000144559 -3.64242e-12 0.00826774 -0.000155287 -6.26289e-12 0.00840771 -0.000163783 -1.39594e-11 0.00854312 -0.000169936 -2.17931e-11 0.00866693 -0.000173518 -2.43376e-11 0.00877686 -0.0001745 -2.8142e-11 0.00887847 -0.000172781 -3.83878e-11 0.00897686 -0.000169207 -3.68793e-11 0.00906524 -0.000165306 -2.53021e-11 0.00913746 -0.000159903 -3.12217e-11 0.00920132 -0.000151496 -4.4771e-11 0.00926353 -0.000142918 -3.81538e-11 0.00932485 -0.000134515 -3.72789e-11 0.00938305 -0.000126182 -3.88177e-11 0.00943798 -0.000118447 -4.51715e-11 0.00949236 -0.000111978 -5.08199e-11 0.00954837 -0.000107135 -5.20417e-11 0.00960387 -0.00010406 -5.03128e-11 0.00965179 -0.000102839 -5.37269e-11 0.00968558 -0.000103635 -5.91465e-11 0.00970924 -0.000106542 -6.37721e-11 0.00973887 -0.000111508 -6.47665e-11 0.00978544 -0.000118769 -6.21828e-11 0.00985328 -0.000128682 -5.61525e-11 0.00995798 -0.000138224 -5.39739e-11 0.0100915 -0.000147939 -5.09212e-11 0.0102358 -0.000159732 -4.03474e-11 0.0104489 -0.000169559 -3.19326e-11 0.010824 -0.000178054 -2.54836e-11 0.0113615 -0.000195567 -2.29027e-11 0.0120182 -0.000211478 -1.5171e-11 0.0127628 -0.000226492 -3.79105e-12 0.0135665 -0.000240533 6.27324e-12 0.0144042 -0.000253949 1.6334e-11 0.0152505 -0.000266894 2.58392e-11 0.0160774 -0.00027924 3.34732e-11 0.0168548 -0.00029062 3.85515e-11 0.0175527 -0.000300322 4.10892e-11 0.0181479 -0.000307391 4.26819e-11 0.0186337 -0.000311148 4.42898e-11 0.0190248 -0.000311389 4.5139e-11 0.0193329 -0.000308115 4.53656e-11 0.019562 -0.00030147 4.58467e-11 0.0197151 -0.000291782 4.63914e-11 0.01977 -0.000279392 4.54154e-11 0.0196125 -0.000264099 4.08619e-11 0.0191064 -0.000243295 2.14319e-11 0.0183299 -0.000216148 -1.33705e-11 0.0172657 -0.00018462 -2.90144e-11 0.01607 -0.000150293 -2.91401e-11 0.0149183 -0.000116275 -2.24405e-11 0.0139315 -8.61703e-05 -1.46303e-11 0.0131555 -6.18731e-05 -8.47501e-12 0.012582 -4.34688e-05 -4.45038e-12 0.0121766 -3.00569e-05 -2.10892e-12 0.0118989 -2.05054e-05 -8.12893e-13 0.0117125 -1.3809e-05 -9.8387e-14 0.0115891 -9.04401e-06 5.7787e-14 0.0115078 -5.60517e-06 9.29023e-14 0.0114542 -3.13779e-06 1.31811e-13 0.0114175 -1.40813e-06 8.23749e-15 0.0113896 -1.98697e-07 -1.97888e-13 0.0113658 6.36059e-07 -2.49842e-13 0.0113436 1.12253e-06 -2.77196e-13 0.0113225 1.33217e-06 -2.69743e-13 0.0113025 1.34723e-06 -2.37021e-13 0.0112839 1.24167e-06 -1.92177e-13 0.0112672 1.07394e-06 -1.45908e-13 0.0112526 8.85703e-07 -1.04759e-13 0.0112404 7.03517e-07 -7.15943e-14 0.0112305 5.41954e-07 -4.67229e-14 0.0112226 4.06958e-07 -2.89996e-14 0.0112164 2.99043e-07 -1.72294e-14 0.0112118 2.15642e-07 -1.07316e-14 0.0112084 1.5296e-07 -6.62403e-15 0.0112058 1.06794e-07 -3.99904e-15 0.011204 7.35714e-08 -2.37727e-15 0.0112027 5.01457e-08 -1.47999e-15 3.29272e-08 -5.67532e-16 0.0165195 0.0143395 1.90496e-11 0.0141113 0.0090533 8.97202e-12 0.0120974 0.0052001 2.68984e-12 0.0105783 0.00285984 2.90601e-12 0.00951443 0.00148334 1.7241e-12 0.00878023 0.000667265 7.56831e-13 0.00835113 0.000205266 2.58393e-12 0.00814801 -2.58205e-05 5.3277e-12 0.00817936 -0.000197534 5.56041e-12 0.00836096 -0.000253062 7.18622e-12 0.00858914 -0.000221719 1.14055e-11 0.00875323 -0.000127007 1.4429e-11 0.00885962 -6.694e-05 1.76527e-11 0.00890643 -3.53674e-05 2.00093e-11 0.0089225 -3.42781e-05 1.92437e-11 0.00892634 -5.12399e-05 1.92442e-11 0.00893232 -7.70761e-05 1.68041e-11 0.00895747 -0.000105878 1.54826e-11 0.00901434 -0.000132749 1.14492e-11 0.00909961 -0.000151554 5.7529e-12 0.00919586 -0.00016605 1.96757e-12 0.00929873 -0.000183368 -3.37513e-12 0.00940885 -0.000199288 -5.68586e-12 0.00952628 -0.000213184 -8.97868e-12 0.00964857 -0.000224798 -1.63194e-11 0.0097697 -0.000233596 -1.82688e-11 0.00988394 -0.000239177 -2.12452e-11 0.00998958 -0.000241565 -3.0896e-11 0.0100895 -0.000241298 -3.06659e-11 0.0101895 -0.000238547 -1.32224e-11 0.0102884 -0.000233837 -2.12658e-11 0.0103795 -0.000227722 -4.01232e-11 0.0104648 -0.000219697 -2.7773e-11 0.0105511 -0.000210662 -2.85856e-11 0.0106415 -0.000201574 -2.65259e-11 0.010737 -0.000192715 -3.15156e-11 0.0108378 -0.000184773 -4.44206e-11 0.0109426 -0.00017867 -4.61731e-11 0.0110459 -0.000174296 -3.18269e-11 0.0111363 -0.000171391 -2.82634e-11 0.0111997 -0.000170556 -4.55753e-11 0.0112306 -0.000172516 -4.89836e-11 0.0112381 -0.000176184 -4.77562e-11 0.0112377 -0.000183018 -4.36679e-11 0.0112496 -0.000193258 -3.67945e-11 0.0113018 -0.00020378 -3.426e-11 0.0114055 -0.000215598 -3.14174e-11 0.011542 -0.000233162 -2.60507e-11 0.0117174 -0.000248717 -1.4646e-11 0.0119976 -0.000257777 -6.84465e-12 0.0124353 -0.000270098 -4.38989e-12 0.0130032 -0.000294767 -6.42213e-12 0.0136648 -0.000314363 8.75968e-12 0.014391 -0.000332511 1.73551e-11 0.0151567 -0.000349433 2.53819e-11 0.0159372 -0.000365095 3.31127e-11 0.0167075 -0.000379295 3.96451e-11 0.0174409 -0.000391916 4.36131e-11 0.0181057 -0.000402454 4.51914e-11 0.0186736 -0.000410083 4.5201e-11 0.0191334 -0.000413887 4.46823e-11 0.0194967 -0.000413381 4.45855e-11 0.019773 -0.000408613 4.4571e-11 0.0199669 -0.000399832 4.43705e-11 0.0200797 -0.000387429 4.36321e-11 0.0200846 -0.000371662 4.0178e-11 0.0198609 -0.000352642 2.99001e-11 0.01935 -0.00032966 7.316e-12 0.0185369 -0.000294733 -2.5041e-11 0.0174356 -0.000252508 -3.26746e-11 0.0162044 -0.000205634 -2.98612e-11 0.0150199 -0.000159068 -2.2349e-11 0.0140049 -0.000117825 -1.44297e-11 0.0132066 -8.44875e-05 -8.36977e-12 0.0126166 -5.91667e-05 -4.44029e-12 0.0121996 -4.07033e-05 -2.13533e-12 0.0119141 -2.76131e-05 -7.75821e-13 0.0117226 -1.85522e-05 -1.79319e-13 0.011596 -1.20858e-05 -9.26205e-15 0.0115126 -7.36703e-06 5.23542e-14 0.0114576 -3.89497e-06 7.05581e-14 0.0114197 -1.45521e-06 -1.84305e-14 0.0113909 1.70589e-07 -2.15009e-13 0.0113664 1.26791e-06 -2.67233e-13 0.0113438 1.88143e-06 -2.86241e-13 0.0113223 2.11598e-06 -2.73281e-13 0.0113021 2.08675e-06 -2.3758e-13 0.0112834 1.89624e-06 -1.91359e-13 0.0112667 1.62563e-06 -1.44642e-13 0.0112522 1.33276e-06 -1.03537e-13 0.0112401 1.05426e-06 -7.06128e-14 0.0112302 8.09685e-07 -4.60111e-14 0.0112223 6.06613e-07 -2.85339e-14 0.0112163 4.44911e-07 -1.69977e-14 0.0112117 3.20349e-07 -1.0605e-14 0.0112082 2.26913e-07 -6.54842e-15 0.0112058 1.58484e-07 -3.94077e-15 0.011204 1.0909e-07 -2.37843e-15 0.0112027 7.4199e-08 -1.46567e-15 4.89009e-08 -5.58815e-16 0.0179748 0.0144782 2.7273e-11 0.0165566 0.0105756 1.62661e-11 0.0147019 0.00712389 9.87634e-12 0.0130225 0.00458475 6.54789e-12 0.0117106 0.00283337 6.69888e-12 0.0107546 0.00166498 6.24589e-12 0.010121 0.000884918 6.25639e-12 0.00973599 0.000391215 8.21427e-12 0.00952344 7.97979e-05 7.45703e-12 0.00941703 -9.64329e-05 1.00427e-11 0.00940645 -0.000164328 9.52299e-12 0.00952318 -0.000199939 9.9665e-12 0.009662 -0.000173446 1.30901e-11 0.00977885 -0.0001254 1.53175e-11 0.00985887 -9.1881e-05 1.81178e-11 0.00990482 -7.56385e-05 1.95169e-11 0.00993662 -7.70588e-05 1.27109e-11 0.00995702 -9.50401e-05 1.25796e-11 0.0099827 -0.00012197 1.02036e-11 0.0100305 -0.000151887 9.14841e-12 0.0101032 -0.00018046 5.67075e-12 0.010198 -0.000205534 -5.3775e-12 0.0102882 -0.000228497 -3.65392e-12 0.0103796 -0.000249016 -7.07178e-12 0.0104785 -0.000266288 -9.18349e-12 0.0105862 -0.000281048 -1.16931e-11 0.0106996 -0.0002924 -1.71718e-11 0.0108151 -0.000300302 -2.3151e-11 0.0109322 -0.000304913 -2.16135e-11 0.0110525 -0.000305809 -1.88027e-11 0.0111776 -0.000303566 -2.20074e-11 0.0113089 -0.000298812 -2.28976e-11 0.0114466 -0.000292506 -2.05045e-11 0.0115895 -0.000285052 -2.24451e-11 0.0117357 -0.000276986 -1.34466e-11 0.0118817 -0.000269092 1.64054e-12 0.0120264 -0.000261511 -1.96308e-11 0.0121712 -0.000253941 -4.80883e-11 0.0123115 -0.000247899 -1.48908e-11 0.0124312 -0.000246366 2.73022e-11 0.012516 -0.000247029 5.21931e-12 0.0125648 -0.000247019 -5.25504e-11 0.0125826 -0.000248797 -2.31374e-11 0.0125801 -0.000255278 -1.47041e-11 0.0125754 -0.000264805 -7.69744e-12 0.0125919 -0.000276294 -3.41617e-12 0.0126518 -0.000289285 -6.62951e-12 0.0127643 -0.000305595 -6.18509e-12 0.0129134 -0.000325089 2.18421e-11 0.0131016 -0.000340893 1.71754e-11 0.0133883 -0.000351969 -4.25494e-12 0.0138226 -0.000367034 -5.26873e-12 0.0143739 -0.000391771 4.12598e-11 0.0150035 -0.000411913 3.13352e-11 0.0156791 -0.000430768 3.47228e-11 0.0163752 -0.000447575 3.99204e-11 0.0170726 -0.000462487 4.48125e-11 0.0177474 -0.000475378 4.77277e-11 0.0183709 -0.000485716 4.81188e-11 0.0189146 -0.0004929 4.66753e-11 0.0193621 -0.000496178 4.46724e-11 0.0197182 -0.000494969 4.38279e-11 0.0199881 -0.000489067 4.35967e-11 0.0201743 -0.000478471 4.28409e-11 0.0202735 -0.000463497 4.09694e-11 0.0202502 -0.000444561 3.60568e-11 0.0200523 -0.000421563 2.19093e-11 0.0196274 -0.000393085 -1.19621e-12 0.0187422 -0.000353825 -3.35916e-11 0.0176165 -0.000303745 -3.43528e-11 0.0163627 -0.000247558 -2.95614e-11 0.0151516 -0.000191532 -2.16623e-11 0.0141089 -0.000141728 -1.38957e-11 0.0132853 -0.000101322 -8.05312e-12 0.0126745 -7.062e-05 -4.28669e-12 0.0122414 -4.83097e-05 -2.0442e-12 0.0119439 -3.25763e-05 -7.26521e-13 0.0117442 -2.15751e-05 -2.6018e-13 0.011612 -1.37141e-05 -5.86697e-14 0.0115246 -8.02978e-06 -1.49746e-15 0.0114663 -3.90491e-06 -1.65397e-14 0.0114258 -9.67766e-07 -7.20306e-14 0.0113951 1.01355e-06 -2.25264e-13 0.011369 2.23936e-06 -2.93561e-13 0.0113453 2.87073e-06 -3.02382e-13 0.011323 3.04982e-06 -2.80641e-13 0.0113023 2.9195e-06 -2.39748e-13 0.0112833 2.60573e-06 -1.90921e-13 0.0112664 2.2077e-06 -1.43203e-13 0.0112518 1.7953e-06 -1.01959e-13 0.0112397 1.4119e-06 -6.92925e-14 0.0112299 1.07979e-06 -4.50267e-14 0.0112221 8.06436e-07 -2.78682e-14 0.011216 5.90089e-07 -1.66862e-14 0.0112115 4.24081e-07 -1.04116e-14 0.0112081 2.99964e-07 -6.42968e-15 0.0112057 2.09067e-07 -3.90772e-15 0.0112039 1.43754e-07 -2.33592e-15 0.0112027 9.7851e-08 -1.45673e-15 6.42347e-08 -5.56088e-16 0.0181938 0.0146236 4.03273e-11 0.0175265 0.0113753 2.58603e-11 0.0163546 0.00846771 1.55159e-11 0.0150082 0.00605966 4.10275e-12 0.0137219 0.00421261 6.5986e-12 0.0126501 0.00281469 6.18625e-12 0.0117743 0.00182734 9.97106e-12 0.0111201 0.00110797 1.03326e-11 0.0106407 0.00061739 1.32071e-11 0.0103294 0.000273354 1.32582e-11 0.0101657 5.84203e-05 1.32226e-11 0.0100931 -7.61103e-05 1.3557e-11 0.0101114 -0.000144803 1.35817e-11 0.0102084 -0.000181036 1.49753e-11 0.0103227 -0.000173725 1.64525e-11 0.0104199 -0.00013921 1.62251e-11 0.0105006 -0.000120297 1.56327e-11 0.0105654 -0.000118159 1.20597e-11 0.0106235 -0.000129899 1.01176e-11 0.0106826 -0.000152704 6.47265e-12 0.0107445 -0.000182621 2.9994e-12 0.0108127 -0.000214423 5.74965e-14 0.010892 -0.000245089 -4.99504e-12 0.0109797 -0.000274344 -5.42365e-12 0.011072 -0.000301026 -5.65679e-12 0.0111706 -0.000323233 -7.76388e-12 0.0112755 -0.000341495 -9.20389e-12 0.0113845 -0.0003554 -1.0773e-11 0.0114955 -0.00036505 -9.96344e-12 0.011609 -0.000370124 -9.13952e-12 0.01173 -0.000371577 -9.46741e-12 0.0118659 -0.000369938 -9.21851e-12 0.012022 -0.000365879 -9.82545e-12 0.0121976 -0.000360145 -9.23092e-12 0.012386 -0.00035342 -4.47104e-12 0.0125801 -0.000346163 -8.76145e-13 0.0127737 -0.000338826 -6.61769e-12 0.0129597 -0.000332284 -7.3385e-12 0.0131361 -0.000326931 3.85445e-12 0.013309 -0.000322734 1.18999e-11 0.0134738 -0.000321673 6.90502e-12 0.0136085 -0.000324841 4.12511e-12 0.0136987 -0.000329686 -6.12189e-13 0.0137538 -0.000334225 1.64257e-12 0.0137899 -0.000342651 1.05801e-11 0.0138247 -0.000354273 1.14193e-11 0.0138784 -0.00036808 8.2048e-12 0.0139722 -0.000383314 1.59383e-11 0.0141106 -0.000401388 2.4037e-11 0.0142783 -0.000421477 2.06925e-11 0.0144854 -0.00043611 1.63512e-11 0.0147847 -0.000447113 2.29212e-11 0.0152082 -0.000462852 3.52999e-11 0.01573 -0.000485964 3.78548e-11 0.0163177 -0.00050414 3.94476e-11 0.0169421 -0.000520439 4.34071e-11 0.0175741 -0.000534668 4.61029e-11 0.0181856 -0.000546312 4.71739e-11 0.0187502 -0.000555228 4.61714e-11 0.0192443 -0.000560983 4.3898e-11 0.0196543 -0.000562679 4.14079e-11 0.0199832 -0.000559551 4.03126e-11 0.0202332 -0.000551461 3.99997e-11 0.0203991 -0.000538656 3.88222e-11 0.020468 -0.000521529 3.64091e-11 0.0204174 -0.000500569 3.10439e-11 0.0202483 -0.000475269 1.52081e-11 0.0198305 -0.000443313 1.71558e-13 0.0189094 -0.000399807 -3.63501e-11 0.017765 -0.00034402 -3.37298e-11 0.0164921 -0.000280867 -2.79705e-11 0.0152582 -0.000217478 -2.02628e-11 0.0141914 -0.000160869 -1.29303e-11 0.0133461 -0.000114827 -7.46201e-12 0.0127175 -7.98409e-05 -3.94567e-12 0.012271 -5.43881e-05 -1.8779e-12 0.0119643 -3.64036e-05 -7.00836e-13 0.0117586 -2.37585e-05 -2.69159e-13 0.0116224 -1.47457e-05 -9.89582e-14 0.0115322 -8.23707e-06 -5.74926e-14 0.0114717 -3.50319e-06 -8.0537e-14 0.0114295 -1.66701e-07 -1.32917e-13 0.0113974 2.01674e-06 -2.42872e-13 0.0113701 3.3126e-06 -3.31175e-13 0.0113455 3.91695e-06 -3.18127e-13 0.0113226 4.00325e-06 -2.87277e-13 0.0113015 3.74684e-06 -2.41042e-13 0.0112824 3.29603e-06 -1.89516e-13 0.0112655 2.76507e-06 -1.40854e-13 0.011251 2.23291e-06 -9.96527e-14 0.011239 1.74723e-06 -6.74184e-14 0.0112293 1.3313e-06 -4.36808e-14 0.0112216 9.91524e-07 -2.69621e-14 0.0112157 7.23977e-07 -1.62447e-14 0.0112112 5.19475e-07 -1.01597e-14 0.0112079 3.66954e-07 -6.30208e-15 0.0112055 2.55646e-07 -3.81997e-15 0.0112038 1.75646e-07 -2.31661e-15 0.0112026 1.19359e-07 -1.43166e-15 7.84707e-08 -5.44299e-16 0.0187298 0.0150158 4.62848e-11 0.0179925 0.0121145 2.58895e-11 0.0170557 0.00945638 1.74885e-11 0.0160555 0.00717199 1.18786e-11 0.0150131 0.00536818 1.31863e-11 0.0140609 0.00389878 1.12922e-11 0.0132261 0.00279984 7.29901e-12 0.0125246 0.00193642 1.14998e-11 0.0119681 0.00130037 7.91015e-12 0.0115197 0.000811946 1.4272e-11 0.0112121 0.000455217 1.38042e-11 0.011017 0.000198925 1.39142e-11 0.0108953 2.90351e-05 1.43875e-11 0.0108354 -7.04567e-05 1.3908e-11 0.010842 -0.000128032 1.3782e-11 0.0109188 -0.000167015 1.35768e-11 0.0110267 -0.000173564 1.34799e-11 0.0111308 -0.000163219 1.21581e-11 0.0112225 -0.000161117 1.04654e-11 0.0113112 -0.000172713 8.15835e-12 0.0113944 -0.000192635 5.03181e-12 0.0114658 -0.000220735 1.92798e-12 0.0115281 -0.000254115 -4.65962e-13 0.0115924 -0.000287833 -4.17882e-12 0.0116646 -0.000321109 -5.32376e-12 0.0117447 -0.000352449 -4.23849e-12 0.011835 -0.000378371 -6.44946e-12 0.0119372 -0.000399684 -6.32776e-12 0.0120504 -0.00041601 -6.32639e-12 0.0121726 -0.000427553 -6.2502e-12 0.012304 -0.000435526 -5.73862e-12 0.0124469 -0.000439121 -5.54559e-12 0.012606 -0.000439002 -5.24101e-12 0.0127848 -0.00043575 -2.4902e-12 0.0129824 -0.000430466 1.24024e-12 0.0131933 -0.000424351 3.0991e-12 0.0134098 -0.000417982 4.95532e-12 0.0136249 -0.000411934 9.45991e-12 0.0138329 -0.000406896 8.92128e-12 0.0140313 -0.000403282 1.16497e-11 0.0142231 -0.000401109 3.13679e-11 0.0144105 -0.000401473 3.18106e-11 0.0145811 -0.000406287 8.20073e-12 0.0147183 -0.000414646 -3.56653e-12 0.0148222 -0.000422885 3.16739e-11 0.0149038 -0.000432361 2.71238e-11 0.0149767 -0.00044555 2.45017e-11 0.0150589 -0.000460192 2.61076e-11 0.0151716 -0.000475669 3.25117e-11 0.0153209 -0.000493187 3.06187e-11 0.0154951 -0.000510779 2.02683e-11 0.0157039 -0.000523559 2.66616e-11 0.0159948 -0.00053336 4.13968e-11 0.0163951 -0.000547879 3.86311e-11 0.0168773 -0.000566289 3.82156e-11 0.0174112 -0.000580887 3.95665e-11 0.0179667 -0.000593191 4.12661e-11 0.0185139 -0.000603001 4.13615e-11 0.0190243 -0.000609739 3.94699e-11 0.0194728 -0.000613358 3.68846e-11 0.0198421 -0.000612845 3.45132e-11 0.0201371 -0.00060782 3.38821e-11 0.0203627 -0.000598419 3.27665e-11 0.0205107 -0.000583968 3.07041e-11 0.0205823 -0.000564537 2.78707e-11 0.0205599 -0.000540967 2.19743e-11 0.0203933 -0.000512973 8.27195e-12 0.0199828 -0.000478197 -2.47827e-12 0.0190568 -0.000431604 -3.08288e-11 0.017912 -0.000371718 -3.05821e-11 0.0166309 -0.000303653 -2.56143e-11 0.0153791 -0.000235143 -1.8503e-11 0.0142896 -0.000173822 -1.17662e-11 0.0134216 -0.000123878 -6.74742e-12 0.0127737 -8.5859e-05 -3.56114e-12 0.0123121 -5.81713e-05 -1.6724e-12 0.0119943 -3.85104e-05 -6.40133e-13 0.011781 -2.46292e-05 -2.8025e-13 0.0116393 -1.47258e-05 -1.26441e-13 0.0115451 -7.5981e-06 -1.02391e-13 0.0114813 -2.47797e-06 -1.3664e-13 0.0114362 1.08225e-06 -1.89702e-13 0.0114017 3.36322e-06 -2.74952e-13 0.0113726 4.62508e-06 -3.42399e-13 0.0113467 5.11227e-06 -3.26649e-13 0.0113229 5.04322e-06 -2.89769e-13 0.0113011 4.61841e-06 -2.39414e-13 0.0112817 4.00384e-06 -1.86024e-13 0.0112647 3.32461e-06 -1.37069e-13 0.0112502 2.66502e-06 -9.63731e-14 0.0112383 2.0741e-06 -6.49316e-14 0.0112287 1.57409e-06 -4.19389e-14 0.0112211 1.16887e-06 -2.58334e-14 0.0112153 8.51584e-07 -1.57233e-14 0.011211 6.09981e-07 -9.85407e-15 0.0112077 4.30316e-07 -6.12031e-15 0.0112054 2.99334e-07 -3.74749e-15 0.0112037 2.05431e-07 -2.25437e-15 0.0112025 1.39581e-07 -1.41039e-15 9.15276e-08 -5.36567e-16 0.019315 0.0153585 4.10706e-11 0.0185336 0.0128024 2.49572e-11 0.0176018 0.0103443 1.96533e-11 0.0166561 0.008156 9.37163e-12 0.0157474 0.00636653 4.84234e-12 0.0148949 0.00489163 6.74832e-12 0.0141449 0.00372275 1.7852e-12 0.0134767 0.00278402 1.06554e-11 0.0129312 0.00204048 9.30978e-12 0.0124487 0.00145493 1.39149e-11 0.0120654 0.00098523 1.30702e-11 0.0117478 0.000630348 1.20309e-11 0.0115285 0.000355085 1.15249e-11 0.0113933 0.000154693 8.81495e-12 0.0113221 2.59077e-05 1.23986e-11 0.0113103 -6.721e-05 1.09273e-11 0.0113418 -0.000123365 1.075e-11 0.0114297 -0.000168738 1.01258e-11 0.011548 -0.000190299 8.78603e-12 0.011661 -0.000195794 6.4344e-12 0.0117617 -0.000210969 4.22614e-12 0.0118496 -0.000237349 2.33941e-12 0.0119173 -0.000265632 1.00997e-13 0.011967 -0.000299017 -1.60536e-12 0.0120179 -0.000334898 -3.29232e-12 0.0120854 -0.000369863 -3.9524e-12 0.0121721 -0.000402943 -3.48867e-12 0.0122794 -0.00043126 -4.95412e-12 0.012405 -0.000455013 -4.08437e-12 0.0125444 -0.000474255 -2.67959e-12 0.0126937 -0.000489322 -1.10287e-12 0.0128514 -0.000499578 3.85341e-14 0.0130186 -0.00050531 1.8564e-12 0.0131997 -0.000507103 2.90876e-12 0.0133994 -0.000505792 5.54212e-12 0.0136186 -0.000502449 8.5896e-12 0.0138524 -0.00049799 1.07577e-11 0.0140926 -0.000493154 1.26855e-11 0.0143323 -0.000488431 1.59965e-11 0.0145667 -0.000484417 2.04207e-11 0.0147922 -0.000482023 2.0774e-11 0.0150081 -0.000481718 2.12817e-11 0.0152182 -0.000483427 3.19963e-11 0.0154218 -0.000488271 2.35805e-11 0.0156044 -0.000497466 1.1262e-11 0.0157536 -0.00050907 1.66489e-11 0.0158737 -0.000519966 4.17063e-11 0.0159766 -0.000532562 2.79854e-11 0.0160822 -0.00054637 2.9961e-11 0.0162128 -0.000560292 3.48406e-11 0.0163718 -0.000576185 2.70781e-11 0.0165514 -0.000590084 2.44367e-11 0.016771 -0.000599109 3.48703e-11 0.0170704 -0.000606727 4.40245e-11 0.0174575 -0.000619038 3.40169e-11 0.0179081 -0.000631586 3.44181e-11 0.0183927 -0.000641504 3.41844e-11 0.018878 -0.000648677 3.35073e-11 0.0193334 -0.00065302 3.08476e-11 0.0197328 -0.000654531 2.60106e-11 0.0200606 -0.0006529 2.374e-11 0.0203258 -0.000645565 2.62118e-11 0.020536 -0.000631532 2.6539e-11 0.0206666 -0.00061282 2.42955e-11 0.0207194 -0.000590292 2.03754e-11 0.020691 -0.000564834 1.20307e-11 0.0205271 -0.000535875 3.30168e-12 0.0201148 -0.00050132 -6.89829e-12 0.0191923 -0.000453286 -3.21212e-11 0.0180482 -0.000390146 -2.88414e-11 0.0167586 -0.000318627 -2.33973e-11 0.0154894 -0.000246721 -1.66898e-11 0.0143781 -0.000182293 -1.0526e-11 0.0134889 -0.00012974 -6.00488e-12 0.0128229 -8.96619e-05 -3.1436e-12 0.0123475 -6.03749e-05 -1.47624e-12 0.0120198 -3.94698e-05 -5.83444e-13 0.0117995 -2.46626e-05 -2.77563e-13 0.011653 -1.40962e-05 -1.55495e-13 0.0115551 -6.50811e-06 -1.45801e-13 0.0114885 -1.07957e-06 -1.87579e-13 0.011441 2.56923e-06 -2.34481e-13 0.0114044 4.8354e-06 -2.98897e-13 0.0113738 5.99099e-06 -3.48453e-13 0.0113466 6.31597e-06 -3.27798e-13 0.0113221 6.06167e-06 -2.86216e-13 0.0112999 5.4522e-06 -2.33439e-13 0.0112803 4.66807e-06 -1.79609e-13 0.0112634 3.8416e-06 -1.31403e-13 0.011249 3.05932e-06 -9.1945e-14 0.0112373 2.36949e-06 -6.17517e-14 0.0112279 1.79177e-06 -3.98155e-14 0.0112205 1.3269e-06 -2.44686e-14 0.0112148 9.64678e-07 -1.50905e-14 0.0112106 6.89851e-07 -9.50024e-15 0.0112075 4.8599e-07 -5.93201e-15 0.0112052 3.37739e-07 -3.64208e-15 0.0112036 2.31581e-07 -2.19692e-15 0.0112024 1.57122e-07 -1.37878e-15 1.03054e-07 -5.24678e-16 0.0200725 0.015707 3.78051e-11 0.0192537 0.0134478 3.0996e-11 0.0182944 0.0111847 2.89594e-11 0.0173041 0.00910549 1.60706e-11 0.0163876 0.0073169 4.93868e-12 0.0155494 0.00582936 1.48699e-12 0.0148182 0.00460757 -2.5546e-12 0.0141696 0.00361237 7.89672e-13 0.0136066 0.00278859 2.93049e-12 0.0131019 0.00212093 6.80909e-12 0.0126683 0.00156755 9.16063e-12 0.0123132 0.00112694 1.08935e-11 0.0120267 0.000772033 1.20745e-11 0.0118427 0.00049557 1.09768e-11 0.0117271 0.000281485 7.41089e-12 0.0116768 0.000126525 1.17876e-11 0.0116798 1.02688e-05 6.88653e-12 0.0117041 -7.12384e-05 6.4298e-12 0.011759 -0.000133236 6.3648e-12 0.0118565 -0.000188555 5.926e-12 0.0119629 -0.000224685 4.92398e-12 0.0120484 -0.000249796 3.4888e-12 0.0121171 -0.000279443 1.99282e-12 0.0121768 -0.000313691 6.30341e-13 0.0122348 -0.000350636 -1.53708e-12 0.0123069 -0.000385501 -2.29999e-12 0.0124075 -0.000420001 -1.73684e-12 0.0125339 -0.000453924 -2.43996e-12 0.0126782 -0.000483952 -2.36395e-12 0.0128352 -0.000509341 -2.91162e-13 0.0130002 -0.000530993 2.01112e-12 0.013171 -0.000548259 4.26304e-12 0.0133473 -0.000561028 6.35108e-12 0.0135318 -0.000569252 8.62318e-12 0.0137294 -0.000573755 9.62124e-12 0.0139448 -0.000575285 1.08709e-11 0.0141799 -0.000574275 1.2898e-11 0.0144319 -0.000571607 1.54089e-11 0.0146934 -0.000568157 1.8038e-11 0.0149564 -0.000564589 1.94768e-11 0.0152155 -0.000561539 1.95644e-11 0.0154671 -0.000559862 2.36916e-11 0.015708 -0.000560287 2.89474e-11 0.0159379 -0.000562874 2.20439e-11 0.0161601 -0.000567485 2.87586e-12 0.0163701 -0.000575349 1.8836e-11 0.016553 -0.000587134 4.16849e-11 0.0167015 -0.000599916 3.58026e-11 0.0168251 -0.000610889 3.24568e-11 0.0169464 -0.000621435 3.01636e-11 0.0170878 -0.000632634 2.94637e-11 0.0172498 -0.000644908 2.48866e-11 0.0174325 -0.000653929 2.79156e-11 0.0176629 -0.00065787 3.70733e-11 0.0179679 -0.000662111 4.06229e-11 0.0183404 -0.000671295 2.57187e-11 0.0187534 -0.000678162 2.65602e-11 0.0191769 -0.000682488 2.52193e-11 0.0195803 -0.000684716 2.2732e-11 0.0199358 -0.000684398 1.96805e-11 0.0202328 -0.00067878 2.32191e-11 0.0204779 -0.000666217 1.87717e-11 0.0206609 -0.000649783 1.7364e-11 0.0207737 -0.000629187 1.51016e-11 0.0208179 -0.000605284 1.06171e-11 0.0207828 -0.000578314 5.30441e-12 0.0206196 -0.000548005 -2.97239e-12 0.0202278 -0.000512199 -1.3034e-11 0.0193198 -0.000462938 -3.46502e-11 0.0181833 -0.000397996 -2.78098e-11 0.0168904 -0.000324823 -2.15932e-11 0.0156069 -0.00025137 -1.50817e-11 0.0144751 -0.000185514 -9.39994e-12 0.0135646 -0.0001317 -5.32284e-12 0.0128801 -9.05642e-05 -2.77839e-12 0.0123899 -6.04092e-05 -1.31959e-12 0.0120511 -3.88032e-05 -5.46347e-13 0.0118228 -2.34569e-05 -2.84061e-13 0.0116704 -1.25094e-05 -1.88147e-13 0.0115681 -4.69048e-06 -1.89718e-13 0.0114978 7.80027e-07 -2.31304e-13 0.0114472 4.40417e-06 -2.74912e-13 0.0114081 6.53519e-06 -3.15064e-13 0.0113755 7.48954e-06 -3.47583e-13 0.0113469 7.58219e-06 -3.22758e-13 0.0113215 7.09825e-06 -2.77942e-13 0.0112988 6.27846e-06 -2.24197e-13 0.011279 5.31197e-06 -1.71078e-13 0.011262 4.33377e-06 -1.24447e-13 0.0112478 3.4292e-06 -8.67545e-14 0.0112362 2.64325e-06 -5.81427e-14 0.011227 1.99156e-06 -3.7447e-14 0.0112198 1.47078e-06 -2.29793e-14 0.0112143 1.06699e-06 -1.44118e-14 0.0112102 7.61679e-07 -9.11254e-15 0.0112072 5.35816e-07 -5.71335e-15 0.011205 3.71806e-07 -3.53178e-15 0.0112034 2.54629e-07 -2.14237e-15 0.0112023 1.72624e-07 -1.34496e-15 1.12983e-07 -5.08129e-16 0.0206562 0.0160617 4.19704e-11 0.0198761 0.0140565 3.63218e-11 0.0190052 0.0119561 3.32469e-11 0.0180763 0.0100006 2.53019e-11 0.0171533 0.00826098 1.3649e-11 0.0162969 0.00675616 8.20401e-12 0.0155186 0.00547893 5.86342e-12 0.0148103 0.00441132 1.29392e-12 0.0141757 0.00351978 1.92946e-13 0.0136162 0.00278134 2.23191e-12 0.0131335 0.00216611 6.46342e-12 0.0127393 0.0016613 8.27066e-12 0.0124151 0.00124678 1.00019e-11 0.0121778 0.000907632 9.21955e-12 0.0119955 0.000632989 9.0652e-12 0.0118812 0.000409672 5.71894e-12 0.011817 0.000231297 1.20605e-11 0.0117976 9.50394e-05 6.30721e-12 0.0118176 -1.65483e-05 4.66885e-12 0.0118517 -0.000100369 4.6049e-12 0.0119098 -0.000171389 4.07573e-12 0.0119889 -0.000234185 2.97589e-12 0.0120731 -0.000282972 1.38503e-12 0.0121624 -0.000322662 4.64687e-13 0.0122609 -0.000360967 -9.90667e-14 0.0123763 -0.000401312 -1.76159e-12 0.0125135 -0.000440869 -1.9552e-12 0.0126743 -0.000476297 6.38589e-13 0.0128502 -0.000509922 2.04989e-13 0.0130305 -0.000541595 -7.18386e-13 0.013212 -0.00056805 3.70639e-12 0.0133947 -0.000590447 6.44353e-12 0.0135789 -0.000609053 9.54255e-12 0.013767 -0.000623467 1.32552e-11 0.0139635 -0.000633765 1.58846e-11 0.0141746 -0.000640451 1.82999e-11 0.0144051 -0.000644048 2.09558e-11 0.0146559 -0.000645166 2.33113e-11 0.0149242 -0.000644424 2.35615e-11 0.0152042 -0.000642533 2.46716e-11 0.0154882 -0.000640233 2.8157e-11 0.0157696 -0.000638077 2.70641e-11 0.0160441 -0.00063669 2.22489e-11 0.0163089 -0.000636993 2.6087e-11 0.0165602 -0.000639382 3.298e-11 0.0167989 -0.000643411 2.18446e-11 0.0170282 -0.00064918 6.64653e-13 0.0172387 -0.000658456 3.17546e-11 0.0174124 -0.000670123 5.95071e-11 0.0175519 -0.000678522 2.92497e-11 0.017685 -0.000683811 2.48978e-11 0.0178322 -0.0006912 2.60821e-11 0.0179944 -0.00069838 2.58658e-11 0.0181816 -0.000700199 3.30998e-11 0.0184227 -0.000699392 3.4137e-11 0.0187316 -0.000701322 2.94091e-11 0.0190856 -0.000705643 2.09452e-11 0.0194544 -0.000707813 2.10096e-11 0.019811 -0.000707579 1.82672e-11 0.0201332 -0.0007033 1.9441e-11 0.0204081 -0.000692427 1.59625e-11 0.0206292 -0.000677393 1.05621e-11 0.0207876 -0.000658805 9.51912e-12 0.0208838 -0.000636618 6.95179e-12 0.0209173 -0.000611203 4.4955e-12 0.0208772 -0.00058254 3.88959e-13 0.020718 -0.00055046 -6.51055e-12 0.0203439 -0.000512888 -1.87995e-11 0.0194474 -0.000462934 -3.69047e-11 0.0183149 -0.000397753 -2.64045e-11 0.0170172 -0.000324426 -1.95535e-11 0.015719 -0.000250791 -1.33033e-11 0.0145671 -0.000184693 -8.17498e-12 0.013636 -0.000130601 -4.59992e-12 0.0129335 -8.91838e-05 -2.40653e-12 0.012429 -5.8742e-05 -1.16818e-12 0.0120796 -3.68669e-05 -5.20893e-13 0.0118436 -2.13052e-05 -3.00878e-13 0.0116856 -1.02263e-05 -2.28457e-13 0.011579 -2.38534e-06 -2.37193e-13 0.0115051 2.9923e-06 -2.74559e-13 0.0114517 6.43421e-06 -3.07583e-13 0.0114103 8.32152e-06 -3.30369e-13 0.011376 9.00196e-06 -3.44623e-13 0.0113462 8.81996e-06 -3.14822e-13 0.01132 8.0834e-06 -2.67273e-13 0.011297 7.04479e-06 -2.13269e-13 0.0112771 5.89678e-06 -1.61486e-13 0.0112603 4.77284e-06 -1.16866e-13 0.0112463 3.75417e-06 -8.1227e-14 0.0112349 2.88067e-06 -5.4364e-14 0.0112259 2.16291e-06 -3.49906e-14 0.011219 1.59296e-06 -2.14435e-14 0.0112137 1.15307e-06 -1.37116e-14 0.0112097 8.2162e-07 -8.71617e-15 0.0112068 5.77045e-07 -5.49713e-15 0.0112047 3.99896e-07 -3.39663e-15 0.0112033 2.73488e-07 -2.08837e-15 0.0112022 1.85131e-07 -1.30326e-15 1.21084e-07 -4.89117e-16 0.0214686 0.0164603 4.01253e-11 0.0207062 0.0146789 3.78895e-11 0.0197989 0.0127464 3.41604e-11 0.018891 0.0108698 2.40649e-11 0.0179875 0.0091721 1.8607e-11 0.0170866 0.00766198 1.01969e-11 0.0162299 0.00634141 6.70411e-12 0.0154556 0.00520849 3.93138e-12 0.0147662 0.00425127 7.74325e-12 0.0141629 0.00344703 6.29323e-12 0.0136434 0.00277834 6.1291e-12 0.0132102 0.00222061 7.28161e-12 0.0128554 0.00175603 8.39498e-12 0.0125713 0.00136526 7.73424e-12 0.012339 0.00103724 7.95437e-12 0.0121613 0.000759397 6.60611e-12 0.0120341 0.000527292 7.41685e-12 0.0119559 0.00033181 5.4517e-12 0.0119319 0.000172701 6.07798e-12 0.0119406 4.19718e-05 5.10052e-12 0.0119786 -7.00053e-05 4.10643e-12 0.0120248 -0.000159732 2.1318e-12 0.0120982 -0.000237169 1.78696e-12 0.012199 -0.000304326 1.21951e-12 0.0123246 -0.000363771 -1.55794e-13 0.0124687 -0.00041421 -9.09366e-13 0.0126275 -0.000458311 -1.8466e-12 0.0128037 -0.000499083 -2.91417e-13 0.0129952 -0.000539805 1.80898e-12 0.0131958 -0.000577814 1.67751e-12 0.0133979 -0.000607954 1.80589e-12 0.0136029 -0.000634607 7.97786e-12 0.013812 -0.000657285 1.14758e-11 0.0140245 -0.000675429 1.60757e-11 0.0142409 -0.000690036 1.96252e-11 0.0144638 -0.000701083 2.28686e-11 0.0146972 -0.000708645 2.60166e-11 0.0149453 -0.000713259 2.76972e-11 0.0152097 -0.000715455 2.86872e-11 0.0154876 -0.000715754 2.98085e-11 0.0157744 -0.000714624 2.94809e-11 0.0160653 -0.000712668 2.8746e-11 0.0163559 -0.000710608 2.8224e-11 0.0166421 -0.000709119 2.72721e-11 0.0169192 -0.000708733 2.66445e-11 0.017182 -0.000709761 2.98477e-11 0.0174293 -0.000711722 2.54309e-11 0.0176642 -0.00071436 1.74017e-11 0.0178795 -0.000720359 3.06604e-11 0.0180564 -0.000727504 4.6501e-11 0.0181951 -0.000731242 2.91964e-11 0.018327 -0.000731378 2.70846e-11 0.0184708 -0.000733455 2.9155e-11 0.018629 -0.000733725 2.86996e-11 0.0188231 -0.00072916 2.78606e-11 0.0190784 -0.000724106 2.52464e-11 0.0193844 -0.000723689 2.05499e-11 0.019708 -0.000723129 1.75767e-11 0.0200235 -0.000719467 1.40218e-11 0.0203129 -0.00071024 1.08033e-11 0.0205607 -0.000695867 3.52047e-12 0.0207591 -0.000678102 9.91218e-13 0.0209001 -0.000657269 5.94017e-13 0.0209815 -0.000633599 -5.48691e-13 0.0210037 -0.000607221 -2.78362e-12 0.0209575 -0.000578001 -6.17516e-12 0.0208028 -0.000545232 -1.1799e-11 0.0204444 -0.000506739 -2.17565e-11 0.0195648 -0.000456378 -3.42637e-11 0.018442 -0.000391221 -2.31069e-11 0.0171435 -0.000318148 -1.65736e-11 0.0158334 -0.000245113 -1.10847e-11 0.0146628 -0.000179726 -6.77271e-12 0.0137115 -0.000126252 -3.82999e-12 0.012991 -8.52811e-05 -2.04286e-12 0.0124718 -5.51357e-05 -1.03992e-12 0.0121111 -3.3435e-05 -5.17624e-13 0.0118668 -1.8002e-05 -3.38796e-13 0.0117025 -7.07543e-06 -2.85115e-13 0.011591 5.39072e-07 -2.95172e-13 0.0115133 5.62488e-06 -3.2258e-13 0.0114566 8.72112e-06 -3.4149e-13 0.0114127 1.025e-05 -3.45635e-13 0.0113764 1.05744e-05 -3.41578e-13 0.0113454 1.00641e-05 -3.06323e-13 0.0113184 9.04472e-06 -2.56121e-13 0.0112951 7.77308e-06 -2.02081e-13 0.0112751 6.43956e-06 -1.51818e-13 0.0112584 5.17182e-06 -1.09321e-13 0.0112446 4.04395e-06 -7.57739e-14 0.0112336 3.08883e-06 -5.06542e-14 0.0112249 2.31088e-06 -3.25888e-14 0.0112181 1.69704e-06 -2.01338e-14 0.011213 1.22549e-06 -1.30238e-14 0.0112093 8.71443e-07 -8.32038e-15 0.0112065 6.10934e-07 -5.27168e-15 0.0112045 4.22638e-07 -3.27214e-15 0.0112031 2.88584e-07 -2.01913e-15 0.0112021 1.95074e-07 -1.26131e-15 1.27323e-07 -4.70178e-16 0.02209 0.016926 3.75554e-11 0.0214588 0.0152387 3.33056e-11 0.0206616 0.0135039 3.03973e-11 0.0197828 0.0117324 2.4944e-11 0.018873 0.0100556 1.80375e-11 0.0179545 0.00854175 1.33256e-11 0.01705 0.00719517 9.36597e-12 0.0161965 0.006016 7.92277e-12 0.0154251 0.00500175 4.01795e-12 0.0147592 0.00414071 4.90753e-12 0.0142014 0.00341733 7.11756e-12 0.0137391 0.00280791 8.13678e-12 0.0133511 0.00229413 7.60935e-12 0.0130252 0.00185577 6.29091e-12 0.0127518 0.00148057 6.0868e-12 0.0125268 0.00115555 5.30868e-12 0.0123556 0.000876022 5.34945e-12 0.0122257 0.000634671 4.35917e-12 0.0121504 0.000426941 4.16279e-12 0.0121136 0.00024839 3.00149e-12 0.0121089 9.6814e-05 2.31717e-12 0.0121346 -3.46612e-05 1.68444e-12 0.0121927 -0.000148144 1.19793e-12 0.0122791 -0.000244201 2.96499e-13 0.0123982 -0.000325022 1.61179e-13 0.0125474 -0.000396925 -1.78886e-13 0.0127213 -0.000461615 -1.26388e-12 0.0129129 -0.000520342 -1.35143e-12 0.0131173 -0.00056911 1.15078e-12 0.0133279 -0.000610476 1.49123e-13 0.0135451 -0.000648975 1.68209e-12 0.0137719 -0.000686128 7.23962e-12 0.0140038 -0.000712982 1.03227e-11 0.0142415 -0.000734395 1.53801e-11 0.0144849 -0.000752507 1.98352e-11 0.0147306 -0.000765102 2.41757e-11 0.0149791 -0.0007739 2.82672e-11 0.0152343 -0.000779587 3.02616e-11 0.0154985 -0.000782453 3.1205e-11 0.0157704 -0.000783029 3.1883e-11 0.0160489 -0.000781766 3.16063e-11 0.0163333 -0.000779333 3.09019e-11 0.0166213 -0.0007762 2.99384e-11 0.01691 -0.000772915 3.05968e-11 0.0171966 -0.000769849 3.13606e-11 0.0174769 -0.000767268 3.07246e-11 0.017744 -0.00076614 2.92931e-11 0.0179943 -0.000765438 3.02097e-11 0.0182304 -0.000765428 3.45209e-11 0.0184443 -0.000767906 3.54551e-11 0.018618 -0.000770148 3.20836e-11 0.0187565 -0.000767783 3.31622e-11 0.018889 -0.000762303 3.37677e-11 0.0190286 -0.00075903 2.96177e-11 0.019187 -0.000753081 2.4891e-11 0.0193947 -0.00074214 2.36852e-11 0.0196635 -0.000733979 1.94831e-11 0.0199585 -0.000729298 1.52436e-11 0.0202464 -0.000720983 7.84225e-12 0.0205036 -0.000708158 1.2069e-12 0.0207167 -0.000691176 -7.0449e-12 0.0208878 -0.000670325 -9.82427e-12 0.0210135 -0.000646336 -1.01933e-11 0.0210843 -0.000620166 -1.11226e-11 0.0210947 -0.00059229 -1.25448e-11 0.0210371 -0.000562779 -1.44655e-11 0.0208788 -0.000530728 -1.75428e-11 0.0205322 -0.000493392 -2.23193e-11 0.0196758 -0.000444453 -2.64743e-11 0.0185644 -0.000378949 -1.76295e-11 0.0172655 -0.000306518 -1.23222e-11 0.0159435 -0.000234939 -8.19967e-12 0.0147543 -0.00017117 -5.07287e-12 0.0137832 -0.000119108 -2.94929e-12 0.013045 -7.92361e-05 -1.65123e-12 0.0125116 -4.98894e-05 -9.13474e-13 0.0121401 -2.87565e-05 -5.31631e-13 0.0118877 -1.3765e-05 -3.99065e-13 0.0117174 -3.24777e-06 -3.57028e-13 0.0116012 3.9312e-06 -3.60025e-13 0.0115197 8.54831e-06 -3.71835e-13 0.01146 1.11673e-05 -3.74629e-13 0.0114137 1.22354e-05 -3.59952e-13 0.0113757 1.21382e-05 -3.37885e-13 0.0113436 1.12631e-05 -2.97351e-13 0.0113161 9.94387e-06 -2.44804e-13 0.0112926 8.43504e-06 -1.90975e-13 0.0112727 6.91957e-06 -1.42365e-13 0.0112562 5.51553e-06 -1.02017e-13 0.0112428 4.28745e-06 -7.05297e-14 0.011232 3.25967e-06 -4.70957e-14 0.0112236 2.42961e-06 -3.02826e-14 0.0112172 1.77876e-06 -1.90181e-14 0.0112123 1.28115e-06 -1.23538e-14 0.0112087 9.08936e-07 -7.93009e-15 0.0112061 6.35891e-07 -5.04617e-15 0.0112042 4.39074e-07 -3.14367e-15 0.0112029 2.99251e-07 -1.94359e-15 0.011202 2.01911e-07 -1.21453e-15 1.31588e-07 -4.48931e-16 0.022956 0.0176378 3.54932e-11 0.022298 0.0158526 2.90802e-11 0.0215401 0.0142074 2.67348e-11 0.0206357 0.012543 2.38192e-11 0.0196983 0.0109132 1.733e-11 0.0187732 0.00938371 1.30455e-11 0.0178705 0.00801365 1.00041e-11 0.017008 0.00681307 8.89207e-12 0.016211 0.00576534 5.35786e-12 0.0155025 0.00486416 5.31722e-12 0.0148882 0.00409192 4.0231e-12 0.0143641 0.00343211 3.31384e-12 0.0139245 0.00286678 5.12859e-12 0.0135529 0.00237951 5.18042e-12 0.0132359 0.00195606 4.75941e-12 0.0129724 0.00158758 3.8849e-12 0.0127601 0.00126571 3.27239e-12 0.0125972 0.000982785 3.064e-12 0.0124798 0.000734165 1.92655e-12 0.012398 0.000514191 1.42802e-12 0.0123582 0.000320512 1.6104e-12 0.0123451 0.000149232 4.89266e-14 0.0123708 1.35716e-06 3.25592e-13 0.0124414 -0.000132407 1.43755e-13 0.0125507 -0.000247178 -4.40508e-13 0.0126944 -0.000345965 -1.05604e-12 0.0128621 -0.000432246 -4.26966e-13 0.013048 -0.000507821 -3.60329e-13 0.0132508 -0.000574959 -1.30002e-13 0.0134759 -0.000638858 1.06144e-12 0.0137071 -0.000692749 1.74111e-12 0.0139406 -0.000733235 5.58151e-12 0.0141802 -0.000766977 8.15931e-12 0.0144357 -0.000801697 1.41304e-11 0.0146995 -0.000826702 1.62676e-11 0.0149654 -0.000840245 2.23302e-11 0.0152368 -0.000850738 2.74766e-11 0.0155111 -0.000855024 2.97817e-11 0.0157849 -0.000855548 3.13147e-11 0.0160577 -0.000852737 3.30949e-11 0.0163314 -0.00084778 3.34252e-11 0.0166068 -0.000841917 3.30826e-11 0.0168843 -0.000835456 3.27656e-11 0.0171638 -0.000828653 3.39645e-11 0.0174451 -0.000822202 3.35222e-11 0.0177279 -0.000816367 2.9807e-11 0.0180072 -0.000811513 3.50427e-11 0.0182746 -0.000808 3.49724e-11 0.0185259 -0.000804635 3.5694e-11 0.0187596 -0.000800933 3.60991e-11 0.0189633 -0.000798776 3.18654e-11 0.0191236 -0.000795452 3.22852e-11 0.019254 -0.000786942 3.94862e-11 0.0193806 -0.000777502 3.09761e-11 0.019516 -0.000768095 2.57896e-11 0.0196807 -0.000753958 2.57722e-11 0.0199075 -0.000737426 2.01408e-11 0.0201814 -0.000726319 5.01271e-12 0.020454 -0.000715476 -3.04248e-13 0.0206869 -0.000700431 -8.49564e-12 0.020867 -0.000681175 -1.77393e-11 0.0210093 -0.000657314 -2.08971e-11 0.0211175 -0.000629698 -2.12516e-11 0.0211803 -0.000599872 -2.16559e-11 0.0211871 -0.00056887 -2.21516e-11 0.0211236 -0.000537354 -2.24348e-11 0.0209631 -0.000504969 -2.24772e-11 0.0206288 -0.000468957 -2.19285e-11 0.019795 -0.000421788 -2.04878e-11 0.0186894 -0.000357696 -1.3619e-11 0.0173881 -0.000287912 -8.80809e-12 0.0160539 -0.000219522 -5.71019e-12 0.0148463 -0.000158695 -3.61951e-12 0.0138556 -0.000109002 -2.23037e-12 0.0131 -7.091e-05 -1.36242e-12 0.0125525 -4.28643e-05 -8.5848e-13 0.01217 -2.26982e-05 -5.8804e-13 0.0119094 -8.47743e-06 -4.79968e-13 0.0117327 1.33563e-06 -4.42528e-13 0.0116115 7.84124e-06 -4.31861e-13 0.011526 1.18027e-05 -4.24254e-13 0.0114631 1.37991e-05 -4.07336e-13 0.0114143 1.42995e-05 -3.73358e-13 0.0113747 1.37121e-05 -3.34294e-13 0.0113415 1.24329e-05 -2.88594e-13 0.0113135 1.07944e-05 -2.33933e-13 0.0112898 9.04192e-06 -1.80442e-13 0.0112701 7.34579e-06 -1.33487e-13 0.0112539 5.81096e-06 -9.51942e-14 0.0112408 4.48992e-06 -6.56417e-14 0.0112304 3.39705e-06 -4.37771e-14 0.0112224 2.52189e-06 -2.81193e-14 0.0112162 1.84013e-06 -1.79617e-14 0.0112116 1.32151e-06 -1.17118e-14 0.0112082 9.35123e-07 -7.54799e-15 0.0112057 6.52696e-07 -4.82152e-15 0.0112039 4.49662e-07 -3.01457e-15 0.0112027 3.05808e-07 -1.86088e-15 0.0112018 2.0592e-07 -1.16192e-15 1.33887e-07 -4.25401e-16 0.0238473 0.018533 3.02641e-11 0.0230819 0.0166198 2.41052e-11 0.0223748 0.0148838 2.0655e-11 0.0215886 0.0132976 2.03302e-11 0.0206588 0.0117494 1.8181e-11 0.0196615 0.0102505 1.2305e-11 0.0187023 0.0088554 9.15789e-12 0.0178229 0.00761044 8.0334e-12 0.0170293 0.00652945 4.94448e-12 0.0163099 0.0055976 4.19795e-12 0.0156646 0.00478723 3.24534e-12 0.0150975 0.00408377 3.01297e-12 0.0145999 0.00346998 3.47151e-12 0.0141678 0.00293436 2.8667e-12 0.0138011 0.00246515 2.56102e-12 0.0134966 0.00205328 2.49058e-12 0.0132498 0.00168998 1.58462e-12 0.0130548 0.00136878 1.42753e-12 0.0129036 0.00108282 3.34373e-13 0.0127894 0.000825917 -1.52568e-13 0.0127122 0.000595302 -8.77384e-13 0.0126727 0.000387565 -9.48795e-13 0.0126701 0.000202224 -1.52745e-12 0.012707 3.63302e-05 -1.03229e-12 0.0127925 -0.000115322 -1.41002e-12 0.0129172 -0.000246797 -1.45384e-12 0.013077 -0.000362534 -6.8181e-13 0.0132597 -0.000464279 -1.04342e-12 0.0134563 -0.000554732 9.3082e-13 0.0136652 -0.000632275 7.58095e-13 0.013881 -0.000702375 1.67413e-12 0.014115 -0.000769672 4.19805e-12 0.0143648 -0.000824309 8.49209e-12 0.0146199 -0.000862272 1.04307e-11 0.0148746 -0.000890693 1.24668e-11 0.0151427 -0.000919314 1.57768e-11 0.0154282 -0.000939714 2.47153e-11 0.0157184 -0.000943387 2.18135e-11 0.0160094 -0.000944226 2.73572e-11 0.0162958 -0.00093699 2.77224e-11 0.0165789 -0.000926663 3.06852e-11 0.0168575 -0.000913579 3.11755e-11 0.0171305 -0.000899471 3.23004e-11 0.0173993 -0.000885143 3.33264e-11 0.0176698 -0.000871464 3.46914e-11 0.0179443 -0.00085936 2.94861e-11 0.0182221 -0.000849194 3.30837e-11 0.0184977 -0.000841332 3.57777e-11 0.0187599 -0.000833527 4.33215e-11 0.0190035 -0.000824553 2.42286e-11 0.0192258 -0.000817841 1.09388e-11 0.019412 -0.000810692 4.41097e-11 0.019554 -0.000800685 5.99393e-11 0.0196755 -0.000786512 2.62633e-11 0.0197988 -0.000773524 1.48977e-11 0.0199354 -0.000758063 1.32731e-11 0.0201163 -0.000737274 9.84622e-12 0.0203597 -0.000717872 4.35035e-15 0.0206239 -0.000704009 -7.00064e-12 0.0208509 -0.000687743 -1.28931e-11 0.0210158 -0.000666999 -1.88074e-11 0.0211316 -0.000641311 -1.95833e-11 0.0212167 -0.000611144 -1.95255e-11 0.0212707 -0.000577728 -1.95147e-11 0.0212801 -0.000542493 -1.98564e-11 0.0212243 -0.000506274 -2.09638e-11 0.0210759 -0.000470103 -2.45104e-11 0.0207546 -0.000431291 -3.01743e-11 0.0199277 -0.00038698 -3.93969e-11 0.0188177 -0.000326957 -1.73426e-11 0.0175091 -0.000262763 -7.90982e-12 0.0161607 -0.000199591 -4.18961e-12 0.0149344 -0.000142945 -2.57454e-12 0.0139245 -9.64039e-05 -1.69227e-12 0.013152 -6.06266e-05 -1.14996e-12 0.0125909 -3.43218e-05 -8.46273e-13 0.0121979 -1.54787e-05 -6.73643e-13 0.0119292 -2.32483e-06 -5.72749e-13 0.0117462 6.52365e-06 -5.32255e-13 0.01162 1.21399e-05 -5.02959e-13 0.0115306 1.5277e-05 -4.73225e-13 0.0114647 1.65255e-05 -4.36424e-13 0.0114137 1.63747e-05 -3.84379e-13 0.0113726 1.52448e-05 -3.29712e-13 0.0113386 1.35361e-05 -2.79447e-13 0.0113102 1.15692e-05 -2.2316e-13 0.0112866 9.57425e-06 -1.7029e-13 0.0112672 7.70443e-06 -1.25059e-13 0.0112513 6.04837e-06 -8.8773e-14 0.0112387 4.64454e-06 -6.10486e-14 0.0112287 3.49616e-06 -4.06516e-14 0.011221 2.58441e-06 -2.60621e-14 0.0112152 1.87884e-06 -1.69488e-14 0.0112108 1.34497e-06 -1.10878e-14 0.0112076 9.49001e-07 -7.16398e-15 0.0112053 6.60566e-07 -4.57905e-15 0.0112037 4.53957e-07 -2.92191e-15 0.0112025 3.0799e-07 -1.76322e-15 0.0112017 2.06895e-07 -1.09244e-15 1.34228e-07 -3.93625e-16 0.0251602 0.0197414 3.47006e-11 0.0240982 0.0176286 2.30034e-11 0.0231979 0.0157288 1.81643e-11 0.0223702 0.0140681 1.47477e-11 0.0215268 0.0125241 1.55919e-11 0.0206296 0.0110868 1.01161e-11 0.0196762 0.00972435 6.52527e-12 0.0187435 0.0084662 5.86106e-12 0.0178968 0.00734151 5.10482e-12 0.0171499 0.00635951 5.18164e-12 0.0164838 0.00550449 3.15187e-12 0.015881 0.00475729 2.27547e-12 0.0153407 0.00409871 1.46439e-12 0.0148644 0.00351799 1.54917e-12 0.0144521 0.00300441 8.03802e-13 0.0141024 0.00255098 6.76386e-13 0.0138144 0.00214802 1.22071e-13 0.0135856 0.00178945 -5.38193e-13 0.0134047 0.00146726 -6.98089e-13 0.0132653 0.00117628 -2.15787e-12 0.0131644 0.000912189 -1.93405e-12 0.0131014 0.000671895 -3.36022e-12 0.0130786 0.000452627 -2.95695e-12 0.0131011 0.000254911 -3.69807e-12 0.0131577 7.38199e-05 -3.56331e-12 0.0132556 -9.35221e-05 -3.27474e-12 0.013389 -0.000241837 -1.91927e-12 0.013553 -0.000373644 -1.61488e-12 0.0137342 -0.000491343 1.86541e-13 0.0139292 -0.000595289 9.24527e-13 0.0141426 -0.000687433 3.14152e-12 0.0143545 -0.000766252 4.92891e-12 0.0145666 -0.000837134 5.50982e-12 0.0148036 -0.000903 6.3815e-12 0.0150621 -0.000954864 8.78147e-12 0.0153234 -0.000988552 1.28872e-11 0.0155886 -0.0010077 1.81398e-11 0.0158677 -0.0010278 1.53102e-11 0.016167 -0.00104008 2.53382e-11 0.0164686 -0.001035 1.34327e-11 0.0167642 -0.00102251 2.48193e-11 0.0170511 -0.00100456 2.40646e-11 0.0173307 -0.000981982 2.82496e-11 0.0176056 -0.000956924 3.20231e-11 0.0178761 -0.000932278 3.31403e-11 0.0181466 -0.000909361 2.62469e-11 0.0184214 -0.0008893 3.62567e-11 0.0186959 -0.000872201 3.46225e-11 0.0189626 -0.000857228 2.89975e-11 0.0192156 -0.000844341 3.55089e-11 0.0194471 -0.000830647 6.9024e-12 0.0196473 -0.000816277 4.51968e-11 0.0198057 -0.000802415 4.39199e-11 0.0199293 -0.000786278 2.55894e-11 0.0200435 -0.000768736 4.89498e-13 0.0201612 -0.000751817 1.52206e-12 0.0203048 -0.00072959 -1.01447e-11 0.0205092 -0.000704324 -2.50673e-11 0.0207599 -0.000684462 -1.60786e-11 0.0209919 -0.000667357 3.91591e-14 0.0211587 -0.000646415 3.34638e-12 0.021259 -0.00062073 2.99756e-12 0.0213212 -0.000590046 2.75102e-12 0.0213587 -0.00055492 1.72318e-12 0.0213689 -0.000516268 -1.10491e-12 0.0213307 -0.000475461 -6.88661e-12 0.0212042 -0.000433134 -2.30283e-11 0.020899 -0.000390311 -5.11111e-11 0.0200656 -0.0003448 -1.26935e-10 0.0189448 -0.000290955 -4.99915e-11 0.0176266 -0.00023413 -1.37569e-11 0.0162641 -0.000176906 -4.5802e-12 0.01502 -0.000124791 -2.25428e-12 0.0139919 -8.1701e-05 -1.50958e-12 0.0132031 -4.85648e-05 -1.13836e-12 0.0126288 -2.43221e-05 -9.1495e-13 0.0122253 -7.12606e-06 -7.80746e-13 0.0119484 4.6372e-06 -6.92595e-13 0.011759 1.22725e-05 -6.3245e-13 0.0116277 1.67843e-05 -5.78325e-13 0.0115343 1.89319e-05 -5.21182e-13 0.0114654 1.93163e-05 -4.62674e-13 0.0114123 1.84368e-05 -3.90531e-13 0.0113698 1.67209e-05 -3.27198e-13 0.0113352 1.45632e-05 -2.70601e-13 0.0113066 1.22631e-05 -2.12873e-13 0.0112832 1.00298e-05 -1.60756e-13 0.011264 7.99498e-06 -1.17218e-13 0.0112486 6.2282e-06 -8.28188e-14 0.0112365 4.75218e-06 -5.6784e-14 0.0112269 3.55806e-06 -3.77253e-14 0.0112196 2.61815e-06 -2.41149e-14 0.0112141 1.8958e-06 -1.59797e-14 0.01121 1.35233e-06 -1.04716e-14 0.0112071 9.51115e-07 -6.78151e-15 0.0112049 6.60112e-07 -4.35132e-15 0.0112034 4.52345e-07 -2.73174e-15 0.0112023 3.06072e-07 -1.68557e-15 0.0112015 2.0507e-07 -1.03993e-15 1.3268e-07 -3.691e-16 0.026348 0.0209671 1.72966e-11 0.0252815 0.0188031 2.32995e-11 0.0242744 0.0167779 1.59364e-11 0.0233392 0.0149744 1.17737e-11 0.0224252 0.0133744 1.10271e-11 0.0215149 0.011925 7.20841e-12 0.0206061 0.0105817 5.38787e-12 0.019707 0.00933603 3.66011e-12 0.0188486 0.00819374 1.20107e-12 0.0180581 0.00716312 3.90142e-13 0.0173468 0.00625388 -2.67017e-13 0.0167085 0.00545611 1.18152e-12 0.0161326 0.00475198 1.74941e-13 0.0156182 0.00412795 2.57642e-13 0.0151684 0.00357294 -5.2072e-13 0.0147826 0.00307929 -7.25138e-13 0.0144608 0.00263848 -1.37062e-12 0.0141945 0.00224371 -1.5435e-12 0.0139813 0.00188637 -2.32348e-12 0.0138151 0.00156277 -2.88908e-12 0.0136921 0.00126606 -3.27883e-12 0.0136138 0.000995383 -4.23887e-12 0.0135771 0.000746728 -4.03217e-12 0.013582 0.000518428 -5.35197e-12 0.013628 0.000309225 -3.84279e-12 0.0137024 0.000115772 -5.65403e-12 0.0138091 -6.43513e-05 -3.35787e-12 0.0139491 -0.000228953 -2.78869e-12 0.0141091 -0.000376176 -1.47868e-12 0.0142811 -0.000508029 1.3661e-12 0.0144668 -0.000625593 1.32477e-12 0.0146661 -0.000729288 3.88125e-12 0.0148657 -0.000820425 5.8582e-12 0.015061 -0.000895846 6.21687e-12 0.0152748 -0.000965543 6.90866e-12 0.0155075 -0.00102734 9.69415e-12 0.0157657 -0.00107205 1.14495e-11 0.0160343 -0.00109867 1.61956e-11 0.0163031 -0.00110698 1.07281e-11 0.0165901 -0.00111529 1.49275e-11 0.0168797 -0.00111527 1.83361e-11 0.0171718 -0.00110293 1.5189e-11 0.0174573 -0.0010789 1.10307e-11 0.0177373 -0.00104876 2.59875e-11 0.0180177 -0.00101479 4.63807e-11 0.0182979 -0.000980716 1.12142e-11 0.0185765 -0.000947264 4.024e-11 0.0188562 -0.000916062 2.87259e-11 0.0191315 -0.000889029 1.13073e-11 0.0193909 -0.000864416 3.24964e-11 0.0196297 -0.000841759 8.45947e-12 0.0198435 -0.000820866 4.03762e-11 0.0200175 -0.000800605 2.48459e-12 0.0201508 -0.00077824 -3.15028e-11 0.0202646 -0.000755858 1.68457e-11 0.0203744 -0.00073477 -4.36531e-13 0.0204902 -0.000712232 -1.08644e-11 0.0206497 -0.000683681 -3.66054e-11 0.0208731 -0.000656837 -4.45954e-11 0.0211077 -0.000637087 -1.4231e-12 0.0212899 -0.000615863 1.55737e-11 0.021396 -0.000591155 1.95617e-11 0.0214429 -0.000561955 1.91953e-11 0.0214571 -0.000527862 1.77907e-11 0.021455 -0.000488831 1.17265e-11 0.0214228 -0.000445525 7.39935e-12 0.021315 -0.000399439 6.14286e-13 0.0210222 -0.000352256 -3.48371e-11 0.0201773 -0.000304863 -1.5385e-10 0.0190562 -0.000257446 -6.86698e-11 0.0177343 -0.0002063 -1.73832e-11 0.0163608 -0.00015354 -4.34433e-12 0.0151005 -0.000105201 -1.56627e-12 0.0140553 -6.53678e-05 -1.10985e-12 0.0132511 -3.50118e-05 -1.02525e-12 0.0126641 -1.30704e-05 -9.64287e-13 0.0122503 2.17144e-06 -8.98798e-13 0.0119654 1.22647e-05 -8.06614e-13 0.0117696 1.84303e-05 -7.26002e-13 0.0116335 2.16444e-05 -6.45031e-13 0.0115363 2.26604e-05 -5.62496e-13 0.0114647 2.20822e-05 -4.84079e-13 0.0114097 2.04195e-05 -3.95675e-13 0.0113661 1.80926e-05 -3.20966e-13 0.011331 1.54789e-05 -2.6087e-13 0.0113025 1.28514e-05 -2.02536e-13 0.0112793 1.03917e-05 -1.51487e-13 0.0112606 8.20624e-06 -1.0971e-13 0.0112458 6.3432e-06 -7.71513e-14 0.0112341 4.80829e-06 -5.2719e-14 0.0112251 3.57996e-06 -3.49175e-14 0.0112182 2.62148e-06 -2.26217e-14 0.0112131 1.8901e-06 -1.50203e-14 0.0112092 1.34308e-06 -9.85689e-15 0.0112065 9.41312e-07 -6.38509e-15 0.0112045 6.51157e-07 -4.10228e-15 0.0112031 4.44855e-07 -2.57452e-15 0.0112021 3.00121e-07 -1.58724e-15 0.0112014 2.00492e-07 -9.72279e-16 1.29353e-07 -3.38351e-16 0.0277493 0.0216762 4.39883e-12 0.0265586 0.0201093 2.05159e-11 0.0253668 0.0179885 1.37305e-11 0.0243277 0.0160221 8.91475e-12 0.0234175 0.0143112 6.59114e-12 0.0225407 0.0128185 3.95203e-12 0.0216526 0.0114573 9.81182e-13 0.0207582 0.0102122 5.31438e-13 0.0198578 0.00906069 -1.43606e-12 0.0189987 0.00799676 -6.13545e-13 0.0182283 0.00703549 -1.73068e-12 0.0175498 0.00617779 -1.56204e-12 0.0169476 0.00542619 -6.78778e-13 0.0164108 0.00475988 -2.38456e-13 0.0159363 0.00416774 -7.43395e-13 0.0155251 0.00363671 -1.42961e-12 0.0151732 0.00316077 -2.10846e-12 0.0148783 0.00272995 -2.27865e-12 0.0146358 0.00233981 -3.04332e-12 0.0144416 0.00198273 -3.26162e-12 0.0142972 0.0016561 -4.14047e-12 0.0142002 0.00135554 -4.24882e-12 0.014151 0.00107884 -5.05234e-12 0.0141442 0.000823221 -5.08582e-12 0.0141773 0.000586682 -5.43535e-12 0.0142438 0.000367523 -5.35125e-12 0.0143318 0.000163282 -5.32137e-12 0.0144426 -2.61904e-05 -3.53248e-12 0.0145811 -0.000205323 -2.23973e-12 0.0147328 -0.000365771 1.30049e-13 0.0148904 -0.000510123 1.76453e-12 0.015061 -0.000638908 2.59929e-12 0.0152357 -0.000753348 5.78119e-12 0.0154091 -0.000853 4.46978e-12 0.0155939 -0.00093746 7.29505e-12 0.0157844 -0.00100814 7.54652e-12 0.0159856 -0.00107529 8.19704e-12 0.0162138 -0.00112807 7.74673e-12 0.0164685 -0.00116317 8.38668e-12 0.0167399 -0.00117903 1.58115e-11 0.0170108 -0.00118215 1.09957e-11 0.0172754 -0.00117205 1.05025e-12 0.017545 -0.00116152 -4.99112e-12 0.0178179 -0.00113945 4.11085e-11 0.0180923 -0.00110452 1.86422e-11 0.0183725 -0.00106582 -6.52848e-13 0.0186614 -0.00102355 1.65222e-11 0.0189533 -0.000981386 1.70099e-11 0.0192424 -0.000939874 1.83283e-11 0.0195211 -0.0009007 1.72787e-11 0.0197784 -0.000864328 2.6115e-11 0.0200038 -0.000831313 2.21785e-11 0.0201956 -0.000800901 -2.98206e-11 0.0203501 -0.000772268 -2.98171e-11 0.0204747 -0.000740494 2.81181e-11 0.0205881 -0.000711101 6.56318e-13 0.020693 -0.000685152 -1.25997e-11 0.0208107 -0.000655583 -2.6656e-11 0.0209863 -0.000622373 -2.69376e-11 0.0212095 -0.000595123 -1.46657e-11 0.0214071 -0.000573298 -3.67552e-12 0.0215318 -0.000548658 -5.43729e-12 0.0215839 -0.000521399 -5.71117e-12 0.0215837 -0.000490203 -6.26082e-12 0.021555 -0.000454226 -8.20264e-12 0.0214962 -0.000413007 -1.53779e-11 0.0213796 -0.000367544 -3.04238e-11 0.021085 -0.000320923 -4.97023e-11 0.0202494 -0.000274457 -7.15571e-11 0.0191502 -0.000229833 -1.63067e-11 0.017834 -0.000180226 -1.34561e-12 0.0164531 -0.000129538 9.00006e-13 0.0151783 -8.4009e-05 2.06541e-13 0.0141167 -4.7269e-05 -4.36005e-13 0.0132973 -1.98843e-05 -8.56466e-13 0.0126976 -5.82357e-07 -1.01124e-12 0.0122737 1.23606e-05 -1.01299e-12 0.0119807 2.04725e-05 -9.20579e-13 0.0117786 2.49113e-05 -8.1527e-13 0.0116376 2.66324e-05 -7.06369e-13 0.0115368 2.63832e-05 -5.98512e-13 0.0114626 2.47638e-05 -5.01116e-13 0.011406 2.22733e-05 -3.98632e-13 0.0113616 1.93244e-05 -3.13537e-13 0.0113263 1.62602e-05 -2.50827e-13 0.0112979 1.33193e-05 -1.92381e-13 0.0112752 1.0651e-05 -1.42582e-13 0.0112571 8.33333e-06 -1.02568e-13 0.0112428 6.39108e-06 -7.1771e-14 0.0112317 4.81217e-06 -4.88459e-14 0.0112232 3.56203e-06 -3.222e-14 0.0112168 2.59503e-06 -2.1198e-14 0.011212 1.86249e-06 -1.4073e-14 0.0112084 1.31801e-06 -9.23451e-15 0.0112059 9.20249e-07 -5.98179e-15 0.0112041 6.34353e-07 -3.8378e-15 0.0112028 4.3193e-07 -2.4096e-15 0.0112019 2.90478e-07 -1.4826e-15 0.0112013 1.93435e-07 -9.00423e-16 1.24401e-07 -3.04707e-16 0.0291086 0.0207364 -1.2988e-11 0.0280508 0.0211754 -6.51877e-12 0.0267855 0.0193015 8.80496e-12 0.0255588 0.0172481 4.25132e-12 0.0244808 0.0154035 1.76259e-12 0.0235263 0.0137993 -7.33676e-13 0.0226368 0.0123782 -2.70226e-12 0.0217744 0.0110944 -3.37763e-12 0.0209221 0.00991988 -3.5685e-12 0.0200722 0.00884636 -3.83508e-12 0.0192345 0.00785706 -2.86991e-12 0.0184694 0.00695363 -2.07099e-12 0.0178059 0.00614315 -3.39473e-12 0.0172354 0.00542376 -2.96128e-12 0.0167401 0.00478878 -1.69278e-12 0.0163098 0.00422238 -1.97111e-12 0.0159383 0.0037124 -2.47151e-12 0.0156214 0.00324918 -2.83057e-12 0.0153554 0.00282617 -5.58659e-12 0.0151408 0.00243765 -4.97985e-12 0.0149754 0.00208063 -7.36734e-12 0.0148618 0.0017507 -5.2838e-12 0.0147991 0.0014467 -6.48616e-12 0.0147825 0.00116479 -6.01915e-12 0.0148049 0.000903212 -5.76602e-12 0.0148605 0.000659414 -5.70715e-12 0.0149426 0.000431619 -5.03068e-12 0.0150393 0.000219282 -4.9811e-12 0.0151473 2.29759e-05 -4.81673e-12 0.0152787 -0.000170752 -2.41287e-12 0.0154161 -0.000341498 -2.15077e-15 0.0155564 -0.000495571 1.54927e-12 0.0157037 -0.000633254 3.16807e-12 0.0158475 -0.000755642 5.28781e-12 0.0159937 -0.000861471 5.13573e-12 0.0161577 -0.000952565 7.21356e-12 0.0163263 -0.00102726 5.21582e-12 0.0164992 -0.00109241 4.80447e-12 0.0166959 -0.00115102 3.87079e-12 0.0169186 -0.00119415 3.36348e-12 0.0171714 -0.00121813 2.67705e-12 0.0174232 -0.00122555 -1.12945e-11 0.0176717 -0.00121634 -1.12219e-11 0.0179132 -0.00119667 2.38315e-11 0.0181588 -0.00116852 1.26609e-11 0.0184197 -0.00113805 -2.29524e-11 0.0186979 -0.00109928 -4.5159e-12 0.01899 -0.00105269 3.21427e-12 0.0192891 -0.00100345 -4.79712e-13 0.0195844 -0.000953254 2.07053e-11 0.0198641 -0.000904202 -2.36728e-12 0.0201156 -0.000856904 -2.7964e-11 0.0203294 -0.000812198 -1.56975e-11 0.0205068 -0.000770034 2.5913e-11 0.0206542 -0.000729706 1.02536e-12 0.0207806 -0.000689382 -9.5399e-12 0.0208918 -0.000653202 -1.22473e-11 0.0209908 -0.000620367 -1.82409e-11 0.021115 -0.000583306 -3.20882e-11 0.0213032 -0.000546773 -3.3385e-11 0.0215099 -0.000518604 -3.14467e-11 0.0216628 -0.000492145 -3.18859e-11 0.0217295 -0.000465418 -3.18999e-11 0.0217216 -0.000437525 -3.20041e-11 0.0216677 -0.00040733 -3.43822e-11 0.0215669 -0.000373052 -3.26812e-11 0.0213941 -0.00033403 -3.85391e-11 0.0210865 -0.000292738 -1.98776e-11 0.0203009 -0.000249795 3.80743e-12 0.0192375 -0.000203577 7.05222e-12 0.0179305 -0.000152795 4.83495e-12 0.0165427 -0.000103136 3.67627e-12 0.0152532 -6.03325e-05 1.52475e-12 0.014175 -2.70264e-05 -7.41602e-14 0.0133405 -3.08102e-06 -8.0459e-13 0.0127282 1.30969e-05 -1.07435e-12 0.0122942 2.33272e-05 -1.1353e-12 0.0119932 2.91098e-05 -1.01907e-12 0.011785 3.15623e-05 -8.90331e-13 0.0116395 3.16111e-05 -7.56015e-13 0.0115354 2.99831e-05 -6.25569e-13 0.011459 2.72677e-05 -5.12151e-13 0.0114012 2.39348e-05 -3.98009e-13 0.0113562 2.037e-05 -3.07317e-13 0.0113209 1.68749e-05 -2.39884e-13 0.0112929 1.36457e-05 -1.81916e-13 0.0112707 1.07946e-05 -1.33679e-13 0.0112533 8.36845e-06 -9.55372e-14 0.0112397 6.36763e-06 -6.65043e-14 0.0112292 4.76181e-06 -4.50515e-14 0.0112213 3.50362e-06 -2.95607e-14 0.0112153 2.53885e-06 -1.97786e-14 0.0112109 1.8134e-06 -1.31162e-14 0.0112076 1.27763e-06 -8.59837e-15 0.0112053 8.88451e-07 -5.56245e-15 0.0112036 6.10114e-07 -3.56558e-15 0.0112025 4.13969e-07 -2.22808e-15 0.0112017 2.7746e-07 -1.37028e-15 0.0112011 1.84136e-07 -8.25279e-16 1.18021e-07 -2.70406e-16 0.0289652 0.0203653 -1.49702e-11 0.0292886 0.0206983 -9.22856e-12 0.0281248 0.0204327 -3.57091e-12 0.026955 0.0185914 4.82909e-12 0.0258294 0.0166599 -7.82758e-13 0.0247747 0.0149215 -4.45951e-12 0.023784 0.0134027 -5.1703e-12 0.0228463 0.0120439 -7.87737e-12 0.021957 0.0108189 -7.53742e-12 0.0211091 0.00970435 -7.34903e-12 0.0202982 0.00868768 -5.38235e-12 0.0195201 0.00776117 -4.78855e-12 0.0187923 0.00691298 -2.62753e-12 0.0181486 0.00614586 -2.40458e-12 0.0176018 0.00545681 -3.45368e-12 0.017139 0.00484457 -4.62484e-12 0.016747 0.00429573 -4.67194e-12 0.0164143 0.00379953 -5.64666e-12 0.0161338 0.00334465 -6.84353e-12 0.015903 0.0029263 -7.55754e-12 0.0157223 0.00253907 -8.2053e-12 0.0155929 0.00218088 -8.98922e-12 0.0155154 0.0018488 -8.08359e-12 0.0154872 0.0015411 -9.47035e-12 0.0155 0.00125476 -6.45202e-12 0.0155486 0.000987639 -6.62647e-12 0.0156201 0.000738106 -5.65872e-12 0.0157115 0.000503218 -4.74416e-12 0.0158193 0.000285026 -3.18653e-12 0.015922 7.88365e-05 -3.93942e-12 0.0160346 -0.000118535 -2.53458e-12 0.0161519 -0.000298108 -5.34393e-13 0.0162702 -0.000459386 1.07972e-12 0.0163883 -0.000603373 2.3697e-12 0.0165012 -0.000730575 3.38808e-12 0.0166194 -0.000841573 3.44523e-12 0.0167556 -0.000935993 3.89671e-12 0.0169003 -0.00101637 3.19756e-12 0.0170509 -0.0010798 2.97431e-12 0.0172238 -0.00113997 2.68949e-12 0.0174154 -0.00118906 1.16073e-12 0.0176293 -0.00122102 -1.69264e-12 0.0178406 -0.00123234 -3.49083e-12 0.0180579 -0.00122751 1.18246e-11 0.0182803 -0.00121283 9.13908e-13 0.0185099 -0.00118205 -1.72863e-11 0.0187541 -0.00114333 -4.3826e-12 0.0190202 -0.0010999 3.79698e-13 0.0193077 -0.00105591 1.5349e-12 0.0196069 -0.00100596 1.46146e-12 0.0199014 -0.000950789 -5.83107e-12 0.0201768 -0.000892414 -8.42006e-12 0.0204221 -0.000835116 -7.30445e-12 0.0206285 -0.000779175 -8.32274e-12 0.020797 -0.00072543 -1.1437e-11 0.0209419 -0.000674205 -1.33391e-11 0.0210713 -0.000626093 -1.38191e-11 0.0211787 -0.000582751 -1.8461e-11 0.0212747 -0.000541169 -2.83338e-11 0.0214101 -0.000497258 -3.5356e-11 0.0216034 -0.000457907 -3.71548e-11 0.0217841 -0.000426098 -3.65829e-11 0.0218793 -0.00039626 -3.69975e-11 0.0218725 -0.000369726 -3.68402e-11 0.0217922 -0.000345098 -3.64305e-11 0.0216505 -0.00031994 -3.21597e-11 0.0214305 -0.000291847 -2.49556e-11 0.0210884 -0.00025867 -1.12317e-11 0.0203697 -0.000219005 2.00069e-11 0.0193346 -0.000171138 1.2587e-11 0.0180314 -0.000119894 6.72157e-12 0.0166332 -7.22695e-05 4.01432e-12 0.0153269 -3.32333e-05 1.93386e-12 0.014231 -4.29609e-06 8.9877e-14 0.0133809 1.54236e-05 -8.39884e-13 0.0127557 2.78582e-05 -1.20013e-12 0.0123117 3.48887e-05 -1.27911e-12 0.0120029 3.79829e-05 -1.12351e-12 0.0117888 3.8204e-05 -9.61898e-13 0.011639 3.64309e-05 -7.99515e-13 0.0115321 3.33464e-05 -6.47614e-13 0.0114539 2.95085e-05 -5.19187e-13 0.0113951 2.53411e-05 -3.95096e-13 0.01135 2.11883e-05 -3.00612e-13 0.0113149 1.7297e-05 -2.28339e-13 0.0112875 1.38153e-05 -1.71413e-13 0.0112661 1.08141e-05 -1.24932e-13 0.0112494 8.30788e-06 -8.86916e-14 0.0112366 6.27182e-06 -6.13857e-14 0.0112268 4.6577e-06 -4.13524e-14 0.0112194 3.40593e-06 -2.74111e-14 0.0112138 2.45439e-06 -1.83658e-14 0.0112098 1.74425e-06 -1.2156e-14 0.0112069 1.22322e-06 -7.95388e-15 0.0112047 8.4695e-07 -5.12903e-15 0.0112033 5.79296e-07 -3.28902e-15 0.0112022 3.91562e-07 -2.0352e-15 0.0112015 2.61512e-07 -1.24502e-15 0.011201 1.72946e-07 -7.46708e-16 1.10454e-07 -2.37167e-16 0.0290948 0.0180867 -2.82248e-11 0.0296791 0.0200409 -1.17205e-11 0.0294068 0.0206928 -7.35679e-12 0.0283036 0.0197769 -5.30959e-12 0.0271379 0.0179972 -1.03579e-12 0.0260346 0.016156 -6.09037e-12 0.0250031 0.0145125 -9.27392e-12 0.0240225 0.013067 -1.24788e-11 0.0230959 0.0117768 -1.21182e-11 0.0222144 0.0106084 -1.10546e-11 0.0213799 0.00954637 -9.60378e-12 0.0205855 0.00858105 -8.01451e-12 0.0198411 0.0077009 -6.33942e-12 0.0191561 0.00690359 -6.27991e-12 0.0185506 0.0061797 -4.39982e-12 0.0180358 0.00552315 -7.14049e-12 0.0176067 0.00492873 -8.24806e-12 0.0172508 0.00438985 -9.11508e-12 0.0169565 0.00389824 -9.44984e-12 0.0167162 0.00344743 -9.91722e-12 0.0165257 0.00303028 -9.51162e-12 0.0163854 0.00264385 -1.06679e-11 0.0162957 0.00228486 -9.59106e-12 0.0162541 0.0019512 -1.07648e-11 0.0162575 0.00164025 -9.24219e-12 0.0162957 0.00135038 -9.26848e-12 0.0163612 0.0010787 -6.90444e-12 0.0164463 0.000824456 -5.31154e-12 0.0165404 0.000585736 -4.05136e-12 0.0166444 0.000362388 -2.99106e-12 0.016743 0.000152541 -2.4981e-12 0.0168355 -4.37307e-05 -1.56286e-12 0.016928 -0.000231019 -9.36126e-13 0.0170158 -0.000397141 -5.04903e-13 0.0171006 -0.000545269 5.20548e-13 0.017182 -0.000675533 7.25589e-13 0.0172736 -0.000789561 1.70823e-12 0.0173817 -0.000886803 1.00655e-12 0.0175001 -0.000970079 1.0303e-12 0.0176398 -0.00103612 1.88051e-13 0.0177906 -0.0010941 1.22071e-13 0.0179458 -0.00114684 -6.56386e-13 0.0181127 -0.00118382 8.95944e-14 0.0182802 -0.00120185 -7.15001e-13 0.0184535 -0.0012012 7.64372e-12 0.0186426 -0.00118995 1.942e-12 0.0188568 -0.00116493 -1.21739e-12 0.019098 -0.00112982 8.19346e-13 0.0193616 -0.00108438 -3.33032e-12 0.0196417 -0.00103339 -5.06221e-12 0.0199296 -0.000978227 -7.46477e-12 0.0202134 -0.000921197 -9.53507e-12 0.0204788 -0.000860421 -1.08012e-11 0.0207125 -0.000795635 -1.30266e-11 0.0209085 -0.000729734 -1.54659e-11 0.0210727 -0.000666504 -1.65896e-11 0.0212188 -0.000606501 -1.60596e-11 0.0213483 -0.000551508 -1.78393e-11 0.0214499 -0.000499867 -2.24134e-11 0.0215464 -0.00044944 -2.77901e-11 0.0216955 -0.000400417 -3.10097e-11 0.0218874 -0.000358112 -3.17365e-11 0.0220187 -0.000321066 -3.17324e-11 0.0220335 -0.000290742 -3.10327e-11 0.0219456 -0.00026772 -2.87913e-11 0.0217703 -0.000249978 -2.33094e-11 0.0215274 -0.000232757 -1.50445e-11 0.0211489 -0.000209849 -6.23274e-12 0.0204715 -0.000175147 9.73597e-12 0.0194461 -0.000128615 1.15726e-11 0.0181376 -7.94116e-05 7.80122e-12 0.016724 -3.58724e-05 4.46108e-12 0.0153981 -2.27217e-06 2.17776e-12 0.0142831 2.09572e-05 1.09437e-13 0.0134169 3.54758e-05 -9.36649e-13 0.012779 4.34457e-05 -1.33562e-12 0.0123251 4.6771e-05 -1.41872e-12 0.0120089 4.68404e-05 -1.21501e-12 0.0117895 4.46267e-05 -1.02089e-12 0.0116359 4.09163e-05 -8.32258e-13 0.0115266 3.63471e-05 -6.61009e-13 0.0114471 3.13974e-05 -5.20268e-13 0.0113879 2.64336e-05 -3.89261e-13 0.0113429 2.17413e-05 -2.92214e-13 0.0113084 1.75039e-05 -2.15909e-13 0.0112818 1.38154e-05 -1.60416e-13 0.0112612 1.07037e-05 -1.16017e-13 0.0112454 8.1496e-06 -8.1814e-14 0.0112334 6.10388e-06 -5.62761e-14 0.0112243 4.50122e-06 -3.76616e-14 0.0112175 3.27078e-06 -2.53575e-14 0.0112124 2.34353e-06 -1.69399e-14 0.0112087 1.65674e-06 -1.11821e-14 0.0112061 1.15622e-06 -7.29483e-15 0.0112042 7.96946e-07 -4.69542e-15 0.0112029 5.42764e-07 -2.9873e-15 0.0112019 3.65424e-07 -1.85385e-15 0.0112013 2.43128e-07 -1.12452e-15 0.0112009 1.60191e-07 -6.60701e-16 1.0195e-07 -2.07753e-16 0.0284475 0.0114582 -6.3338e-11 0.0295847 0.0187254 -1.9336e-11 0.0303995 0.0198597 -1.09647e-11 0.0296327 0.0205603 -1.07168e-11 0.0285554 0.0192101 -5.62779e-12 0.0273694 0.0174795 -8.37488e-12 0.0262568 0.0157389 -1.34152e-11 0.0252216 0.0141665 -1.57045e-11 0.0242381 0.0127849 -1.58099e-11 0.0233116 0.011553 -1.46647e-11 0.0224487 0.0104472 -1.34515e-11 0.0216523 0.0094459 -1.21384e-11 0.0209209 0.00853812 -1.11219e-11 0.0202518 0.00771021 -9.99286e-12 0.0196414 0.00695491 -9.68306e-12 0.0190937 0.00626307 -8.76985e-12 0.0186125 0.00562901 -9.45088e-12 0.0182003 0.0050462 -9.98957e-12 0.0178598 0.00450936 -1.12359e-11 0.0175884 0.00401548 -1.16171e-11 0.017381 0.00356108 -1.16339e-11 0.0172311 0.00314226 -1.14797e-11 0.0171324 0.00275494 -1.11569e-11 0.0170809 0.00239522 -1.14851e-11 0.017072 0.0020599 -1.07417e-11 0.0170999 0.00174657 -1.01129e-11 0.0171576 0.00145349 -8.88115e-12 0.0172354 0.00117913 -7.5175e-12 0.0173254 0.000921744 -5.83795e-12 0.0174213 0.000681172 -4.63327e-12 0.0175159 0.000455598 -3.10643e-12 0.0175997 0.000245548 -3.1528e-12 0.0176668 5.02989e-05 -2.61189e-12 0.01773 -0.000138469 -1.77238e-12 0.0177822 -0.000306567 -7.44452e-13 0.0178321 -0.000457134 -6.97913e-14 0.017886 -0.000589991 3.10354e-13 0.0179529 -0.000705583 1.53613e-12 0.0180351 -0.000805354 1.55938e-12 0.0181325 -0.000889216 2.24618e-12 0.0182619 -0.000959358 1.63742e-12 0.0183874 -0.00101553 1.51951e-12 0.0185008 -0.00106899 6.52778e-13 0.0186177 -0.00110975 1.09838e-13 0.0187379 -0.00113434 -2.55241e-12 0.0188739 -0.00113932 -8.51859e-12 0.0190298 -0.00113052 -5.97828e-12 0.0192234 -0.00111064 -5.77925e-12 0.0194549 -0.0010798 -5.1809e-12 0.0197159 -0.00103952 -6.29165e-12 0.0199936 -0.000990915 -8.51774e-12 0.020274 -0.000933852 -1.04567e-11 0.0205409 -0.000870736 -1.12517e-11 0.0207848 -0.000803537 -1.25031e-11 0.0209998 -0.000734611 -1.42582e-11 0.0211845 -0.000665263 -1.55148e-11 0.0213437 -0.000594799 -1.6288e-11 0.0214864 -0.000528449 -1.58774e-11 0.0216079 -0.000467675 -1.64391e-11 0.0217022 -0.000409536 -1.91745e-11 0.0218059 -0.000352024 -2.24709e-11 0.0219667 -0.000298235 -2.30003e-11 0.0221298 -0.00025104 -2.27123e-11 0.0221899 -0.000210869 -2.23524e-11 0.0221203 -0.000182557 -2.08079e-11 0.0219347 -0.000165635 -1.77675e-11 0.0216834 -0.000153894 -1.29144e-11 0.0212873 -0.00014147 -7.22556e-12 0.0206067 -0.000116418 6.93308e-12 0.0195732 -7.47212e-05 1.10859e-11 0.0182492 -3.04778e-05 8.26273e-12 0.0168142 6.37131e-06 4.42811e-12 0.0154655 3.24325e-05 2.04458e-12 0.0143303 4.84301e-05 -1.06519e-13 0.0134475 5.66806e-05 -1.15622e-12 0.0127971 5.94843e-05 -1.52757e-12 0.0123338 5.86561e-05 -1.57675e-12 0.0120108 5.54247e-05 -1.30028e-12 0.0117867 5.06143e-05 -1.07156e-12 0.01163 4.49254e-05 -8.57509e-13 0.011519 3.88779e-05 -6.68988e-13 0.0114387 3.28659e-05 -5.17243e-13 0.0113795 2.71699e-05 -3.81569e-13 0.0113351 2.20045e-05 -2.82748e-13 0.0113015 1.74828e-05 -2.06535e-13 0.0112758 1.36411e-05 -1.49313e-13 0.0112563 1.04628e-05 -1.07144e-13 0.0112414 7.89562e-06 -7.50186e-14 0.0112302 5.86698e-06 -5.12392e-14 0.0112218 4.29582e-06 -3.46129e-14 0.0112156 3.10144e-06 -2.33084e-14 0.011211 2.20912e-06 -1.55128e-14 0.0112077 1.55324e-06 -1.02042e-14 0.0112054 1.07852e-06 -6.63315e-15 0.0112037 7.39886e-07 -4.25446e-15 0.0112025 5.01652e-07 -2.68853e-15 0.0112017 3.36321e-07 -1.66615e-15 0.0112011 2.22875e-07 -9.96688e-16 0.0112008 1.46272e-07 -5.75914e-16 9.27651e-08 -1.73169e-16 0.0257669 0.00496296 -1.9309e-11 0.0294337 0.0140359 -3.1477e-11 0.0300168 0.019041 -1.49034e-11 0.0308981 0.0196381 -1.29055e-11 0.0299572 0.0201879 -1.56059e-11 0.0288373 0.0187135 -1.92058e-11 0.0276148 0.0170506 -1.93802e-11 0.026462 0.01539 -1.8376e-11 0.0254204 0.0138892 -1.77195e-11 0.0244726 0.0125727 -1.7034e-11 0.0236075 0.0114091 -1.63496e-11 0.0228128 0.0103653 -1.55007e-11 0.0220791 0.00942173 -1.45579e-11 0.0214018 0.00856066 -1.34688e-11 0.0207798 0.00777034 -1.29018e-11 0.020215 0.00704228 -1.26796e-11 0.0197103 0.00636865 -1.30282e-11 0.0192653 0.005745 -1.3565e-11 0.018882 0.00516719 -1.31486e-11 0.0185647 0.00463227 -1.30846e-11 0.0183174 0.00413862 -1.2953e-11 0.0181404 0.00368373 -1.30037e-11 0.0180267 0.00326403 -1.27567e-11 0.017965 0.00287552 -1.23129e-11 0.0179457 0.00251462 -1.19634e-11 0.0179622 0.00217762 -1.09067e-11 0.018009 0.00186245 -9.71157e-12 0.018079 0.0015675 -8.0433e-12 0.0181629 0.00129157 -6.27725e-12 0.0182513 0.00103339 -4.55669e-12 0.0183369 0.000792257 -2.5458e-12 0.0184143 0.00056738 -1.66121e-12 0.0184775 0.00035825 -4.3594e-13 0.018517 0.000164196 -1.37371e-13 0.01854 -1.06535e-05 5.05589e-13 0.0185613 -0.000188622 1.14932e-12 0.018582 -0.00033842 1.87416e-12 0.0186123 -0.00047172 2.58511e-12 0.0186545 -0.000588563 2.99518e-12 0.0187137 -0.000689957 3.54497e-12 0.0187961 -0.000775451 6.73579e-12 0.0189034 -0.000848866 8.12351e-12 0.0189977 -0.000906613 6.13599e-12 0.0190658 -0.000956869 5.1966e-12 0.0191367 -0.00100075 4.44779e-12 0.0192161 -0.00103056 3.4565e-12 0.0193153 -0.00104301 -1.02671e-12 0.0194479 -0.0010382 -3.23769e-12 0.0196299 -0.00102404 -6.98152e-12 0.019851 -0.000998804 -1.00201e-11 0.020098 -0.000963136 -1.38309e-11 0.0203596 -0.000917413 -1.49561e-11 0.0206212 -0.00086277 -1.32692e-11 0.0208679 -0.000800652 -1.2406e-11 0.0210894 -0.000732128 -1.27932e-11 0.021281 -0.000659611 -1.28751e-11 0.0214487 -0.000586149 -1.29977e-11 0.0215991 -0.000514247 -1.2762e-11 0.0217311 -0.000445409 -1.30042e-11 0.0218363 -0.00037993 -1.18003e-11 0.0219236 -0.000316792 -1.4203e-11 0.0220377 -0.000255814 -1.54167e-11 0.0221979 -0.000198619 -1.47645e-11 0.022304 -0.000146109 -1.47826e-11 0.0222842 -0.000104053 -1.44518e-11 0.0221354 -7.69859e-05 -1.36192e-11 0.0218706 -6.42534e-05 -1.14477e-11 0.0214898 -5.55698e-05 -7.21483e-12 0.0207789 -4.22016e-05 3.32282e-12 0.0197157 -9.52232e-06 1.07002e-11 0.0183637 2.64617e-05 8.82431e-12 0.0169007 5.38855e-05 4.34169e-12 0.0155265 7.0197e-05 1.80341e-12 0.0143702 7.74637e-05 -4.05369e-13 0.0134712 7.84953e-05 -1.40697e-12 0.0128089 7.55458e-05 -1.71591e-12 0.0123371 7.02073e-05 -1.71536e-12 0.0120082 6.34693e-05 -1.3714e-12 0.0117802 5.5988e-05 -1.10961e-12 0.0116213 4.83264e-05 -8.71747e-13 0.0115092 4.08576e-05 -6.69737e-13 0.0114288 3.38609e-05 -5.07228e-13 0.0113702 2.752e-05 -3.72007e-13 0.0113267 2.19634e-05 -2.71381e-13 0.0112941 1.7229e-05 -1.96092e-13 0.0112696 1.32932e-05 -1.39683e-13 0.0112512 1.00952e-05 -9.81859e-14 0.0112374 7.55099e-06 -6.81597e-14 0.0112271 5.56634e-06 -4.67497e-14 0.0112194 4.04635e-06 -3.16917e-14 0.0112138 2.90212e-06 -2.12389e-14 0.0112097 2.05464e-06 -1.40732e-14 0.0112068 1.43653e-06 -9.21843e-15 0.0112047 9.92254e-07 -5.96634e-15 0.0112032 6.77368e-07 -3.80951e-15 0.0112022 4.57133e-07 -2.39246e-15 0.0112015 3.0513e-07 -1.47205e-15 0.011201 2.01349e-07 -8.69954e-16 0.0112006 1.31603e-07 -4.92741e-16 8.31554e-08 -1.3629e-16 0.0203135 0.00201685 -7.52117e-12 0.0266061 0.00617795 -2.52575e-11 0.029977 0.0150421 -1.35994e-11 0.0303969 0.0191058 -1.34121e-11 0.0312693 0.0192791 -1.6753e-11 0.0302818 0.0197368 -1.86844e-11 0.0291533 0.0182821 -2.32184e-11 0.027923 0.0167005 -2.23416e-11 0.0267498 0.0151155 -2.01803e-11 0.0257059 0.0136871 -1.92525e-11 0.024783 0.0124357 -1.88154e-11 0.0239652 0.011332 -1.86725e-11 0.0232324 0.0103468 -1.81504e-11 0.0225612 0.00945281 -1.72311e-11 0.0219406 0.00863015 -1.64782e-11 0.021366 0.00786555 -1.58152e-11 0.0208399 0.00715084 -1.56373e-11 0.0203688 0.00648381 -1.55848e-11 0.0199561 0.00586241 -1.55597e-11 0.019609 0.00528581 -1.52107e-11 0.0193336 0.00475376 -1.45313e-11 0.0191288 0.00426412 -1.38084e-11 0.0189902 0.00381294 -1.32861e-11 0.0189101 0.00339533 -1.2903e-11 0.0188778 0.0030069 -1.24718e-11 0.0188831 0.00264492 -1.16385e-11 0.018917 0.00230668 -1.02075e-11 0.0189742 0.0019904 -8.25509e-12 0.0190472 0.00169492 -6.16308e-12 0.0191262 0.00141898 -3.84011e-12 0.0192023 0.0011618 -2.4103e-12 0.0192675 0.00092206 -1.15532e-12 0.0193175 0.000699732 -1.42088e-13 0.0193521 0.00049307 5.88419e-13 0.0193717 0.000303866 1.68071e-12 0.0193649 0.000127676 2.37768e-12 0.0193504 -3.11657e-05 3.18213e-12 0.0193475 -0.000187339 7.0309e-12 0.0193561 -0.000321376 9.11265e-12 0.0193754 -0.000438357 1.02217e-11 0.0194155 -0.000540526 1.16629e-11 0.01948 -0.000629185 1.18955e-11 0.0195512 -0.000704713 1.08714e-11 0.019605 -0.000766985 1.08373e-11 0.0196331 -0.000815059 1.07414e-11 0.0196649 -0.000861155 1.01903e-11 0.0197111 -0.000896127 4.81582e-12 0.0197832 -0.000915053 -1.49781e-12 0.0199022 -0.00091649 1.80575e-11 0.0200772 -0.000906184 -1.13834e-11 0.0202881 -0.000887769 -1.09133e-11 0.0205151 -0.000857125 -1.29918e-11 0.0207499 -0.00081627 -1.10068e-11 0.0209794 -0.000766422 -9.22749e-12 0.0211916 -0.000708001 -9.99372e-12 0.0213812 -0.000642342 -1.07129e-11 0.0215479 -0.000572594 -1.02174e-11 0.0216957 -0.00050081 -9.56044e-12 0.0218274 -0.000429772 -8.7917e-12 0.0219374 -0.000361424 -7.46112e-12 0.0220223 -0.000294981 -8.53852e-12 0.0221084 -0.00022989 -8.67083e-12 0.0222313 -0.000166899 -1.00058e-11 0.0223587 -0.000106391 -8.21634e-12 0.0223986 -5.09881e-05 -8.59345e-12 0.0223077 -6.93443e-06 -8.30784e-12 0.0220766 2.10416e-05 -7.93927e-12 0.0217122 3.419e-05 -6.04818e-12 0.0209872 4.27919e-05 -7.68233e-13 0.0198702 6.34548e-05 1.23869e-11 0.0184763 8.97009e-05 1.05473e-11 0.0169794 0.000105095 4.49924e-12 0.015578 0.000109714 1.60006e-12 0.0144008 0.000107072 -7.2604e-13 0.0134866 0.000100215 -1.67088e-12 0.0128135 9.11459e-05 -1.89464e-12 0.0123345 8.10812e-05 -1.83459e-12 0.0120007 7.07217e-05 -1.43209e-12 0.0117699 6.0592e-05 -1.1375e-12 0.0116098 5.10088e-05 -8.78306e-13 0.0114974 4.2215e-05 -6.63607e-13 0.0114176 3.43464e-05 -4.94524e-13 0.0113599 2.74693e-05 -3.60772e-13 0.0113177 2.16133e-05 -2.57744e-13 0.0112865 1.67453e-05 -1.84935e-13 0.0112634 1.27782e-05 -1.30501e-13 0.0112462 9.60879e-06 -9.09518e-14 0.0112334 7.12364e-06 -6.26627e-14 0.011224 5.20924e-06 -4.26925e-14 0.0112171 3.75908e-06 -2.87682e-14 0.0112121 2.67797e-06 -1.91749e-14 0.0112084 1.88417e-06 -1.2641e-14 0.0112058 1.30973e-06 -8.23955e-15 0.011204 8.9978e-07 -5.30543e-15 0.0112027 6.11119e-07 -3.36877e-15 0.0112018 4.10442e-07 -2.10088e-15 0.0112012 2.72719e-07 -1.28082e-15 0.0112008 1.79178e-07 -7.45326e-16 0.0112006 1.16616e-07 -4.11721e-16 7.33857e-08 -9.91181e-17 0.01816 0.000768064 3.26437e-12 0.0212083 0.00251153 3.37407e-12 0.0274853 0.00684984 7.46267e-12 0.0303932 0.0155596 -4.62735e-12 0.0306879 0.018814 -1.13261e-11 0.0314304 0.0188699 -1.57711e-11 0.0304436 0.0192748 -2.00841e-11 0.0293553 0.017891 -2.44868e-11 0.0281642 0.016401 -2.31666e-11 0.0270312 0.0148978 -2.15088e-11 0.026033 0.0135583 -2.15691e-11 0.025175 0.0123842 -2.25863e-11 0.0244315 0.011346 -2.2739e-11 0.0237679 0.0104075 -2.18838e-11 0.02315 0.00954285 -2.06604e-11 0.0225625 0.00873446 -1.93963e-11 0.0220102 0.00797397 -1.84999e-11 0.0215045 0.00725954 -1.78111e-11 0.0210594 0.00659335 -1.71581e-11 0.0206846 0.00597637 -1.6391e-11 0.0203857 0.00540731 -1.56988e-11 0.0201639 0.00488332 -1.50702e-11 0.020011 0.00440045 -1.44415e-11 0.0199151 0.00395347 -1.37967e-11 0.0198659 0.00353756 -1.30124e-11 0.0198556 0.00314946 -1.17077e-11 0.0198758 0.00278702 -1.02148e-11 0.0199169 0.00244845 -7.99366e-12 0.0199733 0.00213249 -5.56791e-12 0.0200391 0.00183806 -3.74483e-12 0.0201036 0.00156429 -2.20127e-12 0.0201573 0.00130973 -7.65936e-13 0.0201945 0.00107341 2.32903e-13 0.0202141 0.000854362 1.34193e-12 0.020216 0.00065255 2.08681e-12 0.0202037 0.000466311 3.02951e-12 0.0201841 0.0002967 3.56512e-12 0.0201541 0.000139504 4.88566e-12 0.020127 2.81778e-06 1.03051e-11 0.0201106 -0.000136062 1.11099e-11 0.0201099 -0.000256154 1.31148e-11 0.0201316 -0.00036016 1.38787e-11 0.020168 -0.00045117 1.36224e-11 0.0201924 -0.000529629 1.24287e-11 0.0202019 -0.000596128 1.18085e-11 0.020203 -0.000648564 1.10803e-11 0.0202034 -0.000692727 1.81353e-11 0.0202133 -0.000732419 1.55166e-11 0.0202746 -0.000758217 1.88322e-10 0.0203877 -0.000768056 -1.15432e-10 0.0205599 -0.000763 -5.93599e-11 0.0207558 -0.000751068 -2.48379e-11 0.020955 -0.000726123 -1.3808e-11 0.0211541 -0.00069112 -8.21051e-12 0.0213434 -0.000647816 -6.83924e-12 0.0215134 -0.000595972 -8.4469e-12 0.0216632 -0.000537062 -9.69781e-12 0.0217959 -0.00047427 -8.6941e-12 0.0219143 -0.000409477 -7.37972e-12 0.0220158 -0.000344559 -5.19594e-12 0.0220958 -0.000279942 -4.97716e-12 0.0221643 -0.00021511 -4.86872e-12 0.0222524 -0.000151181 -5.53424e-12 0.0223711 -8.76534e-05 -3.96155e-12 0.0224482 -2.42643e-05 -4.01042e-12 0.0224233 3.49209e-05 -3.48419e-12 0.0222608 8.20952e-05 -3.12092e-12 0.0219171 0.00011381 -2.27395e-12 0.0213073 0.000131313 3.00363e-12 0.0200427 0.000143644 1.59689e-11 0.0185813 0.000157044 1.39063e-11 0.017045 0.000157778 5.12136e-12 0.0156164 0.000149299 1.50683e-12 0.01442 0.000136165 -9.89219e-13 0.0134924 0.000121181 -1.91426e-12 0.0128103 0.000105838 -2.02827e-12 0.0123254 9.09144e-05 -1.91695e-12 0.0119883 7.69843e-05 -1.47609e-12 0.0117559 6.42594e-05 -1.15023e-12 0.0115955 5.28833e-05 -8.7393e-13 0.0114838 4.28972e-05 -6.49992e-13 0.0114051 3.42945e-05 -4.77217e-13 0.011349 2.70067e-05 -3.44165e-13 0.0113084 2.0959e-05 -2.44115e-13 0.0112788 1.60405e-05 -1.72825e-13 0.0112571 1.21071e-05 -1.20721e-13 0.0112412 9.01489e-06 -8.33968e-14 0.0112296 6.62399e-06 -5.70068e-14 0.0112211 4.80466e-06 -3.85642e-14 0.0112149 3.44138e-06 -2.5819e-14 0.0112104 2.43485e-06 -1.71066e-14 0.0112072 1.70222e-06 -1.12138e-14 0.011205 1.17624e-06 -7.26874e-15 0.0112034 8.03577e-07 -4.65305e-15 0.0112023 5.42921e-07 -2.93522e-15 0.0112016 3.62834e-07 -1.81529e-15 0.011201 2.39953e-07 -1.0941e-15 0.0112007 1.56946e-07 -6.24618e-16 0.0112005 1.01711e-07 -3.33923e-16 6.37304e-08 -6.3065e-17 0.0173275 0.000281246 2.06304e-13 0.0185539 0.000940298 1.30005e-11 0.0220238 0.00266883 1.42485e-11 0.0278438 0.00771151 3.65864e-11 0.0304972 0.0155709 6.70568e-12 0.0308436 0.0184313 -1.07826e-11 0.0315415 0.0185036 -1.38879e-11 0.0305977 0.0188517 -1.98637e-11 0.0295608 0.0175748 -2.47656e-11 0.0284486 0.0161878 -2.53142e-11 0.0274183 0.0147887 -2.28297e-11 0.026516 0.0135437 -2.38713e-11 0.0257348 0.0124347 -2.51612e-11 0.0250379 0.0114316 -2.50975e-11 0.0243945 0.0105065 -2.38274e-11 0.0237822 0.0096424 -2.21156e-11 0.0231971 0.00883059 -2.04679e-11 0.0226577 0.00806898 -1.92881e-11 0.0221852 0.00735939 -1.81701e-11 0.0217918 0.00670375 -1.70983e-11 0.0214787 0.00610021 -1.60098e-11 0.0212416 0.00554337 -1.5134e-11 0.0210745 0.00502853 -1.44609e-11 0.0209652 0.00455125 -1.37672e-11 0.0209017 0.00410672 -1.30023e-11 0.0208739 0.0036919 -1.16027e-11 0.0208752 0.00330393 -9.80578e-12 0.0209001 0.00294204 -7.4051e-12 0.0209383 0.00260478 -5.63848e-12 0.0209853 0.00229118 -3.70247e-12 0.0210357 0.00200018 -2.01106e-12 0.0210771 0.00173054 -5.26054e-13 0.0211011 0.00148028 4.99268e-13 0.0211066 0.00124824 1.40711e-12 0.0210933 0.00103376 2.16161e-12 0.0210637 0.00083608 3.07092e-12 0.0210244 0.000654554 3.37582e-12 0.0209846 0.000488664 4.03244e-12 0.0209459 0.000337363 3.87767e-12 0.0209069 0.000199151 5.64502e-12 0.0208714 7.34673e-05 8.01726e-12 0.0208487 -3.67536e-05 1.00896e-11 0.0208466 -0.0001481 7.05981e-12 0.0208433 -0.000244006 6.2301e-12 0.0208199 -0.000327405 4.49747e-12 0.0207921 -0.000397748 4.36836e-12 0.0207678 -0.000457272 1.06676e-12 0.02074 -0.000502507 2.41483e-13 0.0207425 -0.000543853 1.67118e-12 0.0207861 -0.000576612 3.33984e-13 0.020909 -0.000594349 -1.17843e-12 0.0210745 -0.000596735 -3.81188e-12 0.0212438 -0.000589948 -6.2666e-12 0.0214065 -0.000571895 -6.52589e-12 0.0215618 -0.000544638 -6.90111e-12 0.0217031 -0.000509874 -8.22619e-12 0.0218254 -0.00046712 -8.68245e-12 0.0219311 -0.0004181 -8.70025e-12 0.0220234 -0.000365355 -7.45393e-12 0.0221023 -0.000310484 -5.24568e-12 0.0221651 -0.000254092 -2.9607e-12 0.0222169 -0.000195426 -3.08228e-12 0.0222785 -0.000134951 -4.13394e-12 0.0223727 -7.27495e-05 -2.17406e-12 0.0224595 -7.21809e-06 -1.98518e-12 0.0224873 5.98946e-05 -1.3913e-12 0.0224001 0.000122881 -5.90069e-13 0.0221336 0.000175044 1.19241e-12 0.0215702 0.000211689 8.56906e-12 0.0202018 0.000227166 2.43162e-11 0.0186672 0.000224409 1.86069e-11 0.0170919 0.000208614 5.94371e-12 0.0156391 0.000187064 1.34225e-12 0.0144263 0.000163829 -1.29757e-12 0.0134877 0.000140848 -2.15091e-12 0.0127986 0.000119141 -2.17351e-12 0.0123097 9.94785e-05 -1.98072e-12 0.0119708 8.20354e-05 -1.50448e-12 0.0117382 6.68625e-05 -1.15194e-12 0.0115786 5.3857e-05 -8.61207e-13 0.0114684 4.28625e-05 -6.3126e-13 0.0113916 3.36916e-05 -4.55829e-13 0.0113374 2.61365e-05 -3.24995e-13 0.0112988 2.00098e-05 -2.28912e-13 0.011271 1.51295e-05 -1.59902e-13 0.0112509 1.12957e-05 -1.10528e-13 0.0112364 8.32824e-06 -7.5654e-14 0.0112259 6.0648e-06 -5.12856e-14 0.0112183 4.36308e-06 -3.4432e-14 0.0112128 3.10158e-06 -2.28923e-14 0.0112089 2.17915e-06 -1.50691e-14 0.0112062 1.51359e-06 -9.81664e-15 0.0112042 1.03955e-06 -6.32348e-15 0.0112029 7.06157e-07 -4.02106e-15 0.0112019 4.74543e-07 -2.51707e-15 0.0112013 3.15529e-07 -1.54113e-15 0.0112009 2.07664e-07 -9.15549e-16 0.0112006 1.35203e-07 -5.09711e-16 0.0112004 8.72424e-08 -2.60032e-16 5.44286e-08 -2.90016e-17 0.016956 0.000112806 3.02501e-12 0.0173117 0.000354388 6.87522e-12 0.0188851 0.000956948 1.28018e-11 0.0227878 0.00295741 2.53616e-11 0.0283813 0.0080772 5.02274e-11 0.030748 0.0154971 1.17386e-11 0.0310684 0.018051 -6.31829e-12 0.0317161 0.0181641 -1.42249e-11 0.0308735 0.0184771 -2.01845e-11 0.0298866 0.0173359 -2.49818e-11 0.0288713 0.0160756 -2.91946e-11 0.027933 0.0147829 -2.46651e-11 0.0270936 0.013607 -2.56083e-11 0.0263436 0.012526 -2.65077e-11 0.0256512 0.0115264 -2.56552e-11 0.0249991 0.0105947 -2.39328e-11 0.0243877 0.00972638 -2.19607e-11 0.0238255 0.00891782 -2.03236e-11 0.0233322 0.00816681 -1.89652e-11 0.0229249 0.00747296 -1.75914e-11 0.0226028 0.00683401 -1.62672e-11 0.0223561 0.00624443 -1.50186e-11 0.0221748 0.0056973 -1.40435e-11 0.0220509 0.00518853 -1.31974e-11 0.0219732 0.00471496 -1.2239e-11 0.0219296 0.00427243 -1.08673e-11 0.021911 0.00385844 -9.07879e-12 0.0219133 0.00347156 -7.6625e-12 0.021934 0.00311221 -5.41783e-12 0.0219625 0.00277907 -3.52939e-12 0.0219949 0.00247059 -1.92588e-12 0.0220244 0.00218527 -5.79051e-13 0.0220359 0.00192105 3.57891e-13 0.0220254 0.00167565 9.72043e-13 0.0219958 0.00144812 1.47634e-12 0.0219482 0.00123795 1.94047e-12 0.0218883 0.00104429 2.31123e-12 0.021827 0.000866719 2.73703e-12 0.0217702 0.000704517 3.13792e-12 0.0217147 0.000556673 3.15194e-12 0.0216625 0.000421644 3.47296e-12 0.0216181 0.000298633 2.99745e-12 0.021583 0.000185853 3.38084e-12 0.0215516 8.27984e-05 3.58276e-12 0.0214999 -5.32946e-06 4.37156e-12 0.0214356 -9.651e-05 3.05815e-12 0.0213731 -0.000175582 2.59028e-12 0.0213218 -0.00024199 8.29147e-13 0.0212911 -0.00029423 1.65003e-13 0.0212865 -0.000336921 4.09299e-13 0.0213439 -0.000371982 -9.4706e-14 0.0214625 -0.000397399 -1.19637e-12 0.0216049 -0.00040866 -4.50463e-12 0.0217365 -0.000407876 -6.08291e-12 0.021854 -0.000396929 -6.85691e-12 0.0219597 -0.000379409 -7.93499e-12 0.0220498 -0.000354722 -9.03966e-12 0.0221244 -0.000322457 -9.14323e-12 0.0221857 -0.000284784 -9.06533e-12 0.0222351 -0.000243566 -7.87388e-12 0.0222719 -0.000199268 -5.76303e-12 0.0222999 -0.000151005 -5.93408e-12 0.0223378 -9.83884e-05 -5.25496e-12 0.0224098 -4.12951e-05 -3.68349e-12 0.0224971 2.15e-05 -2.64429e-12 0.0225536 9.03906e-05 -1.76546e-12 0.0225267 0.000161979 7.15216e-13 0.0223251 0.000229837 5.281e-12 0.0217779 0.00028224 1.47515e-11 0.0202994 0.000303375 3.60438e-11 0.018716 0.000283393 2.1851e-11 0.0171149 0.000253995 5.93746e-12 0.0156446 0.000222003 8.37215e-13 0.0144193 0.000189693 -1.71728e-12 0.0134722 0.000158814 -2.41768e-12 0.0127782 0.000130913 -2.31376e-12 0.0122872 0.00010651 -2.03501e-12 0.0119483 8.56898e-05 -1.50842e-12 0.011717 6.82731e-05 -1.13714e-12 0.0115595 5.38759e-05 -8.36907e-13 0.0114517 4.20902e-05 -6.04272e-13 0.0113774 3.25368e-05 -4.30197e-13 0.0113256 2.48703e-05 -3.02769e-13 0.0112892 1.87883e-05 -2.11338e-13 0.0112633 1.40353e-05 -1.45853e-13 0.0112449 1.03653e-05 -9.97634e-14 0.0112317 7.56707e-06 -6.76451e-14 0.0112223 5.46103e-06 -4.54643e-14 0.0112156 3.89635e-06 -3.02838e-14 0.0112109 2.74873e-06 -1.99874e-14 0.0112075 1.91762e-06 -1.30661e-14 0.0112052 1.32318e-06 -8.45467e-15 0.0112035 9.03183e-07 -5.40884e-15 0.0112024 6.09975e-07 -3.41362e-15 0.0112016 4.07672e-07 -2.11757e-15 0.0112011 2.69666e-07 -1.28071e-15 0.0112007 1.76611e-07 -7.46816e-16 0.0112005 1.14449e-07 -4.01702e-16 0.0112003 7.3525e-08 -1.90855e-16 4.56728e-08 2.97308e-18 0.0168444 5.41697e-05 2.22442e-12 0.0170006 0.00012297 4.58256e-12 0.0173626 0.000370187 1.08027e-11 0.0191049 0.00102207 2.33233e-11 0.0233924 0.00303709 4.80374e-11 0.0287073 0.00813143 9.59046e-11 0.0308854 0.0151894 2.1441e-11 0.0312418 0.0176418 -4.14086e-12 0.0318786 0.0178517 -1.66569e-11 0.0311374 0.0181274 -2.00361e-11 0.030261 0.0171379 -2.70453e-11 0.029347 0.0160221 -3.07419e-11 0.0284783 0.0148317 -2.61656e-11 0.0276718 0.0136928 -2.87293e-11 0.0269303 0.0126144 -2.92322e-11 0.0262419 0.0116096 -2.7247e-11 0.0256028 0.0106781 -2.45575e-11 0.0250247 0.00981868 -2.188e-11 0.0245176 0.00902677 -1.99494e-11 0.0240923 0.00829328 -1.82203e-11 0.0237568 0.00761437 -1.64667e-11 0.0234996 0.00698649 -1.48696e-11 0.0233061 0.00640666 -1.37151e-11 0.0231674 0.00586637 -1.25367e-11 0.0230742 0.00536234 -1.14292e-11 0.023014 0.00489131 -9.96523e-12 0.0229759 0.00445032 -8.98128e-12 0.0229569 0.00403853 -7.27413e-12 0.022955 0.003656 -5.72436e-12 0.0229684 0.0033027 -3.68888e-12 0.0229841 0.00297684 -2.05842e-12 0.0229957 0.00267533 -9.41143e-13 0.0229964 0.00239645 -3.01296e-13 0.0229699 0.00213748 -4.97924e-14 0.0229198 0.00189635 -6.38456e-14 0.0228537 0.00167272 -1.38537e-13 0.0227728 0.00146619 -3.24475e-13 0.0226868 0.00127594 -4.72638e-13 0.0226072 0.00110154 -5.97805e-13 0.0225329 0.000942137 -9.83806e-13 0.0224594 0.000796148 -9.59074e-13 0.0223895 0.000662143 -1.16933e-12 0.0223277 0.00053928 -1.53345e-12 0.0222759 0.00042658 -1.34549e-12 0.0222129 0.000322556 -2.418e-12 0.0221276 0.000227204 -2.20113e-12 0.0220371 0.000139604 -2.55833e-12 0.0219487 6.0617e-05 -1.93602e-12 0.0218791 -3.70513e-06 -4.07566e-12 0.0218515 -6.26895e-05 -3.38733e-12 0.0218702 -0.000112816 -5.17099e-12 0.0219349 -0.000150538 -6.35031e-12 0.0220261 -0.000179126 -6.84256e-12 0.0221301 -0.000199504 -8.07166e-12 0.0222171 -0.000208982 -9.35852e-12 0.0222876 -0.000207167 -1.05842e-11 0.0223438 -0.000198459 -1.04417e-11 0.0223857 -0.000183603 -1.01789e-11 0.0224162 -0.000161706 -1.152e-11 0.0224369 -0.000134714 -1.04024e-11 0.0224467 -0.000103789 -8.29968e-12 0.0224499 -6.82063e-05 -8.03001e-12 0.0224639 -2.62526e-05 -6.41574e-12 0.0225141 2.25387e-05 -5.04476e-12 0.0225972 7.95755e-05 -3.97332e-12 0.0226651 0.000145531 -2.46204e-12 0.0226674 0.000218022 1.07035e-12 0.0224744 0.000290146 8.49443e-12 0.0218563 0.000346426 2.13057e-11 0.0203091 0.000358349 3.99221e-11 0.0187265 0.000330946 1.78343e-11 0.0171175 0.000295263 4.83106e-12 0.0156353 0.000255183 -3.55818e-13 0.0143996 0.00021403 -2.36994e-12 0.0134458 0.000175231 -2.72734e-12 0.0127489 0.000140884 -2.47084e-12 0.0122579 0.000111764 -2.07123e-12 0.0119209 8.77728e-05 -1.49712e-12 0.0116926 6.83989e-05 -1.10979e-12 0.0115383 5.28918e-05 -8.03236e-13 0.0114338 4.05722e-05 -5.7109e-13 0.0113626 3.0854e-05 -4.0059e-13 0.0113136 2.32418e-05 -2.77786e-13 0.0112796 1.73254e-05 -1.92318e-13 0.0112559 1.27876e-05 -1.31118e-13 0.0112392 9.34166e-06 -8.87067e-14 0.0112274 6.75269e-06 -5.95601e-14 0.0112191 4.82944e-06 -3.96737e-14 0.0112132 3.41721e-06 -2.62093e-14 0.0112091 2.39227e-06 -1.71651e-14 0.0112063 1.65708e-06 -1.11386e-14 0.0112043 1.13582e-06 -7.15498e-15 0.0112029 7.70482e-07 -4.54256e-15 0.0112019 5.17315e-07 -2.84218e-15 0.0112013 3.43839e-07 -1.74406e-15 0.0112009 2.26256e-07 -1.03863e-15 0.0112006 1.47448e-07 -5.90802e-16 0.0112004 9.51011e-08 -3.02354e-16 0.0112003 6.0825e-08 -1.27475e-16 3.762e-08 3.24354e-17 0.0168308 1.81218e-05 9.37277e-13 0.0168535 5.39882e-05 2.60551e-12 0.0170151 0.000124397 5.80958e-12 0.0174337 0.000374895 1.36875e-11 0.0192306 0.00103241 2.9871e-11 0.0235716 0.00301626 5.99557e-11 0.0287647 0.0078531 1.17568e-10 0.0309269 0.014695 3.57144e-11 0.0314062 0.0172126 -2.62886e-12 0.0320075 0.0175857 -1.88911e-11 0.0314577 0.0177931 -2.16319e-11 0.0307238 0.0169634 -2.51336e-11 0.0298682 0.016001 -2.33723e-11 0.0290211 0.0148992 -2.84159e-11 0.0282314 0.0137837 -3.27258e-11 0.0275091 0.0127083 -3.15559e-11 0.0268527 0.011706 -2.74814e-11 0.0262659 0.0107894 -2.3515e-11 0.0257522 0.00994786 -2.06835e-11 0.0253092 0.00916971 -1.84954e-11 0.0249429 0.00844644 -1.64379e-11 0.0246674 0.00777684 -1.47107e-11 0.0244638 0.00715814 -1.32768e-11 0.0243133 0.00658633 -1.14571e-11 0.0242037 0.00605162 -1.048e-11 0.0241246 0.00555019 -9.95031e-12 0.0240676 0.00508108 -8.8051e-12 0.0240268 0.00464377 -7.31224e-12 0.0240049 0.00423788 -5.63611e-12 0.0239979 0.00386409 -4.06071e-12 0.0239999 0.00351965 -2.78309e-12 0.0239949 0.00320247 -1.97009e-12 0.0239757 0.00290766 -1.7229e-12 0.0239371 0.00263426 -1.88412e-12 0.0238656 0.00237922 -2.408e-12 0.0237742 0.00214118 -3.03794e-12 0.0236729 0.0019206 -3.76091e-12 0.0235628 0.00171694 -4.4722e-12 0.0234564 0.00152921 -5.05505e-12 0.02336 0.00135692 -5.80213e-12 0.0232671 0.00119874 -6.16338e-12 0.0231738 0.00105277 -6.42977e-12 0.0230831 0.000917749 -7.03317e-12 0.0230033 0.000793108 -6.89393e-12 0.0229211 0.000677702 -6.85011e-12 0.0228176 0.000570491 -7.27141e-12 0.0227069 0.00047155 -6.92636e-12 0.0225984 0.00038016 -6.89657e-12 0.0225027 0.000299196 -8.16836e-12 0.0224425 0.000228322 -7.58611e-12 0.0224307 0.000167691 -8.65999e-12 0.0224624 0.000116938 -1.06155e-11 0.0225216 7.54287e-05 -1.11094e-11 0.0225831 4.36563e-05 -1.12441e-11 0.0226356 1.93835e-05 -1.16041e-11 0.0226765 3.05374e-06 -1.23103e-11 0.0227039 -4.8324e-06 -1.28017e-11 0.0227157 -5.31151e-06 -1.18539e-11 0.0227168 4.56954e-07 -1.22205e-11 0.0227102 1.2329e-05 -1.15635e-11 0.0226972 2.95856e-05 -9.08016e-12 0.0226788 5.23454e-05 -7.50901e-12 0.0226678 8.22689e-05 -6.90857e-12 0.0226963 0.0001217 -6.70078e-12 0.0227691 0.000171545 -5.37614e-12 0.0228288 0.000231859 -3.69248e-12 0.0228104 0.000298217 8.38726e-13 0.0225377 0.00036151 1.24153e-11 0.0216971 0.000405863 2.8464e-11 0.0202734 0.000405829 3.30362e-11 0.0187259 0.000378841 9.00037e-12 0.0171104 0.000338124 1.79223e-12 0.0156139 0.000288792 -1.98036e-12 0.0143671 0.000237494 -3.13939e-12 0.013408 0.000189732 -3.06817e-12 0.0127105 0.000148626 -2.5965e-12 0.012222 0.000114927 -2.07895e-12 0.011889 8.81013e-05 -1.46529e-12 0.0116653 6.71473e-05 -1.06487e-12 0.0115156 5.08916e-05 -7.57268e-13 0.0114152 3.83372e-05 -5.2961e-13 0.0113476 2.86817e-05 -3.66132e-13 0.0113018 2.12909e-05 -2.50597e-13 0.0112704 1.56643e-05 -1.71369e-13 0.0112487 1.14236e-05 -1.15635e-13 0.0112338 8.25511e-06 -7.73641e-14 0.0112233 5.90868e-06 -5.1422e-14 0.0112161 4.18786e-06 -3.39385e-14 0.0112111 2.93874e-06 -2.22297e-14 0.0112076 2.04159e-06 -1.44418e-14 0.0112051 1.40412e-06 -9.29858e-15 0.0112035 9.5605e-07 -5.92606e-15 0.0112023 6.44504e-07 -3.73038e-15 0.0112016 4.30202e-07 -2.31055e-15 0.011201 2.84361e-07 -1.399e-15 0.0112007 1.86142e-07 -8.16414e-16 0.0112005 1.20706e-07 -4.48465e-16 0.0112003 7.74863e-08 -2.12215e-16 0.0112002 4.93406e-08 -7.03139e-17 3.03856e-08 5.91034e-17 0.0168095 7.12347e-06 4.75181e-13 0.0168319 1.77879e-05 1.06769e-12 0.0168592 4.89623e-05 3.03236e-12 0.0170203 0.000124389 6.93329e-12 0.0174652 0.000353558 1.63732e-11 0.019252 0.0010059 3.55065e-11 0.0233225 0.00296029 6.93916e-11 0.0287042 0.00712119 1.38798e-10 0.0309347 0.014173 4.2793e-11 0.031596 0.0168158 -4.86826e-12 0.0321526 0.017325 -2.03772e-11 0.0317704 0.0174791 -2.06594e-11 0.0311986 0.0167889 -1.92497e-11 0.0303943 0.015985 -1.44002e-11 0.029594 0.0149697 -2.88416e-11 0.0288367 0.0138875 -3.45319e-11 0.0281557 0.0128301 -3.1814e-11 0.0275495 0.0118485 -2.6489e-11 0.0270156 0.0109437 -2.22812e-11 0.0265574 0.0101105 -1.98116e-11 0.0261698 0.00933928 -1.70012e-11 0.0258665 0.00862274 -1.44974e-11 0.0256496 0.00796239 -1.23649e-11 0.025488 0.00735276 -1.16951e-11 0.0253609 0.00678447 -1.04454e-11 0.0252594 0.00625081 -9.64856e-12 0.0251808 0.00575206 -8.6464e-12 0.0251213 0.00528845 -7.49703e-12 0.0250789 0.00485974 -6.2216e-12 0.0250537 0.00446469 -5.10044e-12 0.0250365 0.00410185 -4.22954e-12 0.0250162 0.00376693 -3.85593e-12 0.0249769 0.00345688 -4.01242e-12 0.0249153 0.00316699 -4.65174e-12 0.024829 0.0028971 -5.61063e-12 0.0247114 0.00264437 -6.7553e-12 0.0245832 0.00240835 -7.94506e-12 0.0244528 0.00219 -9.12761e-12 0.0243196 0.00198817 -1.0086e-11 0.0241962 0.00180156 -1.11718e-11 0.0240825 0.00162966 -1.19251e-11 0.0239681 0.0014706 -1.27628e-11 0.0238506 0.0013222 -1.40946e-11 0.0237409 0.00118412 -1.38097e-11 0.023635 0.00105574 -1.32449e-11 0.0235114 0.000935517 -1.38305e-11 0.0233785 0.000823384 -1.3019e-11 0.023251 0.000719038 -1.30735e-11 0.0231313 0.000624011 -1.42469e-11 0.0230419 0.00053974 -1.28793e-11 0.0229968 0.000465244 -1.39559e-11 0.0229946 0.000400827 -1.52619e-11 0.0230216 0.000345902 -1.56804e-11 0.023059 0.000299782 -1.57595e-11 0.0230902 0.000261899 -1.58203e-11 0.0231053 0.000231584 -1.54637e-11 0.0231003 0.000208912 -1.51807e-11 0.023085 0.000193525 -1.48581e-11 0.0230604 0.000185706 -1.46486e-11 0.0230296 0.000184929 -1.19666e-11 0.0229964 0.000190188 -1.05912e-11 0.0229628 0.000201849 -9.90772e-12 0.0229386 0.0002215 -8.90292e-12 0.0229407 0.000251217 -7.96775e-12 0.0229717 0.000291848 -6.13842e-12 0.0229776 0.000341835 -1.91799e-12 0.0228852 0.000396726 4.18344e-12 0.0225542 0.000446777 1.37287e-11 0.0215656 0.00047709 3.10675e-11 0.0202834 0.000469567 1.42939e-11 0.0187356 0.000437797 3.88506e-12 0.0170965 0.000385827 -1.33419e-12 0.0155787 0.000322895 -3.52049e-12 0.0143198 0.000258937 -3.85124e-12 0.0133574 0.000201327 -3.35844e-12 0.0126624 0.00015346 -2.67328e-12 0.0121794 0.000115591 -2.04904e-12 0.011853 8.64737e-05 -1.41424e-12 0.0116357 6.44606e-05 -1.00584e-12 0.0114917 4.78833e-05 -7.01751e-13 0.0113963 3.54254e-05 -4.82829e-13 0.0113328 2.60792e-05 -3.2867e-13 0.0112902 1.90828e-05 -2.21272e-13 0.0112616 1.38585e-05 -1.49912e-13 0.0112421 9.98549e-06 -1.0007e-13 0.0112288 7.1388e-06 -6.61335e-14 0.0112197 5.05996e-06 -4.3479e-14 0.0112134 3.55441e-06 -2.84162e-14 0.0112091 2.47382e-06 -1.8445e-14 0.0112062 1.70559e-06 -1.18807e-14 0.0112042 1.16478e-06 -7.58531e-15 0.0112028 7.87876e-07 -4.79204e-15 0.0112019 5.27862e-07 -2.98702e-15 0.0112012 3.50305e-07 -1.82755e-15 0.0112008 2.30285e-07 -1.08762e-15 0.0112006 1.49965e-07 -6.17153e-16 0.0112004 9.67707e-08 -3.21596e-16 0.0112003 6.18316e-08 -1.32288e-16 0.0112002 3.92015e-08 -1.98231e-17 2.40394e-08 8.28085e-17 0.0168055 2.33421e-06 2.69992e-13 0.0168144 5.38795e-06 4.55203e-13 0.0168267 1.7731e-05 1.33369e-12 0.016885 3.94475e-05 2.17185e-12 0.0169974 0.000124663 8.80925e-12 0.0175686 0.000296351 1.26998e-11 0.019137 0.000968503 4.02322e-11 0.0227482 0.00260949 7.65053e-11 0.0283008 0.00643169 1.59174e-10 0.0309123 0.0134932 4.58861e-11 0.0318511 0.0163826 -6.46889e-12 0.032383 0.0170662 -1.48099e-11 0.032098 0.0172037 -1.28081e-11 0.0315973 0.0166285 -9.71508e-12 0.0309137 0.0159157 -1.5525e-11 0.030207 0.0150222 -3.24857e-11 0.0295162 0.0140068 -3.51416e-11 0.0288852 0.0129935 -2.88936e-11 0.0283227 0.0120321 -2.38265e-11 0.0278447 0.0111382 -2.01424e-11 0.0274401 0.0103104 -1.6892e-11 0.0271117 0.00954032 -1.4504e-11 0.0268699 0.00882836 -1.359e-11 0.0266879 0.00817184 -1.23904e-11 0.0265394 0.00756347 -1.09463e-11 0.0264158 0.00699598 -9.75835e-12 0.0263143 0.00646679 -8.90103e-12 0.0262363 0.00597632 -8.151e-12 0.0261777 0.00552431 -7.38486e-12 0.026133 0.0051083 -6.84429e-12 0.026096 0.00472551 -6.55555e-12 0.0260547 0.00437239 -6.70817e-12 0.0259958 0.0040447 -7.28011e-12 0.0259098 0.00373869 -8.36295e-12 0.0257989 0.00345152 -9.67626e-12 0.0256638 0.00318293 -1.11606e-11 0.0255062 0.00293102 -1.26734e-11 0.0253496 0.00269595 -1.40914e-11 0.0251957 0.00247859 -1.56588e-11 0.0250428 0.00227665 -1.73224e-11 0.0249028 0.00208912 -1.85518e-11 0.0247671 0.0019153 -1.92905e-11 0.0246256 0.00175246 -2.03581e-11 0.0244861 0.00159945 -2.04973e-11 0.0243528 0.00145642 -1.96235e-11 0.0242084 0.00132191 -2.05418e-11 0.024053 0.00119541 -1.90084e-11 0.023905 0.00107702 -1.83162e-11 0.0237657 0.000967435 -2.12872e-11 0.0236506 0.000868936 -1.76982e-11 0.023575 0.000779984 -1.9773e-11 0.023539 0.000701308 -2.03001e-11 0.0235331 0.000632298 -2.03512e-11 0.0235401 0.000572113 -2.0085e-11 0.0235447 0.000520001 -1.95775e-11 0.0235374 0.000475536 -1.87758e-11 0.023514 0.000438659 -1.80498e-11 0.0234768 0.000409423 -1.69707e-11 0.0234303 0.000388037 -1.5899e-11 0.0233791 0.000374687 -1.42027e-11 0.0233287 0.000369191 -1.2163e-11 0.0232805 0.000371268 -1.05841e-11 0.0232373 0.000381653 -9.61669e-12 0.0232034 0.000401643 -8.15306e-12 0.0231897 0.000432039 -6.01509e-12 0.0231632 0.000471774 -2.16546e-12 0.0230235 0.000516562 3.56676e-12 0.0226257 0.00055606 1.23981e-11 0.0216322 0.000570709 2.18064e-11 0.0203325 0.000552172 6.49248e-12 0.0187456 0.000504892 -2.55886e-13 0.0170677 0.000434916 -3.67773e-12 0.0155241 0.000354307 -4.6911e-12 0.0142547 0.000276068 -4.35728e-12 0.013293 0.00020851 -3.52447e-12 0.0126046 0.000154538 -2.67788e-12 0.0121307 0.000113343 -1.96267e-12 0.0118136 8.27555e-05 -1.34036e-12 0.0116044 6.03314e-05 -9.30038e-13 0.0114673 4.39279e-05 -6.3588e-13 0.0113774 3.19242e-05 -4.29477e-13 0.0113183 2.31317e-05 -2.87722e-13 0.0112793 1.66888e-05 -1.91406e-13 0.0112534 1.19671e-05 -1.26876e-13 0.011236 8.52129e-06 -8.45506e-14 0.0112243 6.02768e-06 -5.50175e-14 0.0112164 4.23166e-06 -3.5766e-14 0.011211 2.94669e-06 -2.31393e-14 0.0112074 2.03444e-06 -1.48778e-14 0.011205 1.39227e-06 -9.49572e-15 0.0112033 9.44268e-07 -6.00707e-15 0.0112022 6.34618e-07 -3.75754e-15 0.0112015 4.22624e-07 -2.31484e-15 0.011201 2.78879e-07 -1.39431e-15 0.0112006 1.82352e-07 -8.10375e-16 0.0112004 1.18151e-07 -4.40926e-16 0.0112003 7.58769e-08 -2.10093e-16 0.0112002 4.82606e-08 -6.24568e-17 0.0112001 3.04685e-08 2.39914e-17 1.86073e-08 1.03467e-16 0.016805 4.25779e-07 4.88422e-14 0.0168066 1.635e-06 2.22132e-13 0.0168177 4.46437e-06 3.8932e-13 0.0168255 1.43713e-05 1.36788e-12 0.0168931 3.47575e-05 2.22165e-12 0.0169684 0.000106407 8.9602e-12 0.0175501 0.000262241 1.28445e-11 0.0188929 0.000835783 4.45409e-11 0.022179 0.0022634 7.86525e-11 0.0279706 0.00557227 1.81242e-10 0.0310633 0.0127134 3.90912e-11 0.0322013 0.0158449 2.55917e-12 0.0325733 0.0168448 -3.8906e-12 0.0323239 0.0169009 -4.38142e-12 0.0318875 0.016396 -4.65032e-12 0.0314276 0.0157883 -2.18047e-11 0.0308541 0.0150578 -3.15551e-11 0.0302428 0.0141385 -3.10957e-11 0.0296782 0.0131737 -2.35767e-11 0.0291856 0.0122433 -1.95073e-11 0.0287647 0.0113628 -1.70781e-11 0.0284081 0.0105357 -1.62392e-11 0.0281273 0.00976377 -1.45983e-11 0.0279143 0.00905336 -1.26142e-11 0.0277402 0.00840001 -1.15067e-11 0.0275955 0.00779496 -1.02956e-11 0.0274744 0.00723422 -9.7794e-12 0.0273768 0.00671571 -9.52202e-12 0.0273006 0.00623853 -9.40056e-12 0.027237 0.00580028 -9.48187e-12 0.0271769 0.00539618 -9.86209e-12 0.0271115 0.00502256 -1.0581e-11 0.0270299 0.00467569 -1.15995e-11 0.0269209 0.00435147 -1.29378e-11 0.0267827 0.00404639 -1.45055e-11 0.0266217 0.00375929 -1.60967e-11 0.0264437 0.00348972 -1.76818e-11 0.0262547 0.00323718 -1.96407e-11 0.0260751 0.00300127 -2.15819e-11 0.0258997 0.00278262 -2.3169e-11 0.0257279 0.00257792 -2.423e-11 0.0255691 0.00238699 -2.48457e-11 0.0254056 0.00220828 -2.54954e-11 0.0252369 0.002039 -2.59005e-11 0.0250746 0.00187949 -2.50118e-11 0.0249077 0.00172916 -2.56171e-11 0.0247292 0.00158698 -2.4774e-11 0.0245583 0.00145322 -2.30714e-11 0.0243999 0.00132833 -2.6235e-11 0.0242611 0.00121429 -2.43164e-11 0.0241581 0.00111059 -2.38548e-11 0.0240911 0.00101699 -2.48812e-11 0.0240524 0.000933266 -2.47553e-11 0.0240286 0.000858513 -2.4258e-11 0.024006 0.000791948 -2.34329e-11 0.0239753 0.000733176 -2.23439e-11 0.0239327 0.000682205 -2.1205e-11 0.0238777 0.000639275 -1.9814e-11 0.0238134 0.000604692 -1.84573e-11 0.0237455 0.000578834 -1.6516e-11 0.02368 0.000561918 -1.42686e-11 0.0236204 0.000553849 -1.20821e-11 0.0235654 0.000555227 -1.03033e-11 0.0235134 0.000566416 -8.68812e-12 0.0234691 0.000588262 -7.06544e-12 0.023414 0.000619048 -3.79371e-12 0.0232303 0.000653894 2.62629e-12 0.0227262 0.000680698 1.14519e-11 0.0217297 0.000677646 9.82867e-12 0.0203829 0.000640684 1.31274e-12 0.0187366 0.000572079 -3.3388e-12 0.0170117 0.000478836 -5.4448e-12 0.0154432 0.000378662 -5.57667e-12 0.0141686 0.000286159 -4.71012e-12 0.0132138 0.000209761 -3.58853e-12 0.0125377 0.000151122 -2.63472e-12 0.0120769 0.000107937 -1.85823e-12 0.0117717 7.69218e-05 -1.23034e-12 0.0115724 5.48618e-05 -8.40293e-13 0.011443 3.91622e-05 -5.63253e-13 0.0113592 2.79626e-05 -3.73582e-13 0.0113047 1.99479e-05 -2.45921e-13 0.0112692 1.41975e-05 -1.61068e-13 0.0112459 1.00599e-05 -1.04675e-13 0.0112305 7.08162e-06 -6.916e-14 0.0112203 4.9576e-06 -4.44576e-14 0.0112135 3.4481e-06 -2.8531e-14 0.011209 2.38088e-06 -1.82501e-14 0.011206 1.63114e-06 -1.16118e-14 0.011204 1.10832e-06 -7.33611e-15 0.0112026 7.46715e-07 -4.59227e-15 0.0112017 4.98748e-07 -2.83871e-15 0.0112011 3.30219e-07 -1.72288e-15 0.0112008 2.16717e-07 -1.01572e-15 0.0112005 1.40978e-07 -5.69842e-16 0.0112003 9.09002e-08 -2.89052e-16 0.0112002 5.81076e-08 -1.14577e-16 0.0112002 3.67964e-08 -2.98579e-18 0.0112001 2.31371e-08 6.11541e-17 1.40745e-08 1.21106e-16 0.0168034 4.77929e-08 -2.67134e-14 0.016807 2.5629e-07 7.25866e-14 0.01681 8.89287e-07 2.11677e-13 0.0168209 3.07186e-06 4.89683e-13 0.016832 1.07234e-05 1.25459e-12 0.0168876 2.77883e-05 2.39118e-12 0.0169696 8.56561e-05 8.02162e-12 0.0174326 0.000218156 1.30909e-11 0.0186265 0.000679137 4.25925e-11 0.0214771 0.0018623 7.66719e-11 0.0276883 0.00462918 1.67845e-10 0.0311522 0.0115187 5.31231e-11 0.0323215 0.0150562 4.37182e-11 0.0324978 0.0164632 1.78033e-11 0.0324321 0.0164459 2.81841e-12 0.0322595 0.0160839 -1.74597e-11 0.0319544 0.0155984 -1.97196e-11 0.0315118 0.0150389 -2.59882e-11 0.031016 0.0142541 -2.26974e-11 0.0305445 0.0133624 -1.92253e-11 0.0301229 0.0124672 -1.78257e-11 0.0297441 0.0116028 -1.69559e-11 0.0294261 0.0107778 -1.46255e-11 0.0291802 0.0100134 -1.31754e-11 0.0289796 0.00931175 -1.26775e-11 0.0288123 0.00866519 -1.16848e-11 0.0286715 0.00806927 -1.16767e-11 0.0285526 0.00751982 -1.18769e-11 0.0284546 0.00701446 -1.23709e-11 0.0283689 0.00655025 -1.32058e-11 0.0282827 0.00612207 -1.41548e-11 0.0281891 0.0057252 -1.53143e-11 0.0280805 0.00535617 -1.66442e-11 0.0279473 0.00501109 -1.80696e-11 0.0277833 0.00468596 -1.95866e-11 0.0275934 0.00437828 -2.10467e-11 0.0273876 0.00408815 -2.2417e-11 0.0271753 0.00381535 -2.42089e-11 0.0269608 0.00355992 -2.57694e-11 0.0267597 0.00332046 -2.7072e-11 0.026562 0.00309761 -2.79498e-11 0.0263706 0.00288714 -2.84809e-11 0.0261874 0.00268997 -2.88682e-11 0.0259926 0.00250326 -2.91871e-11 0.0257985 0.00232537 -2.86973e-11 0.0256074 0.00215721 -2.85346e-11 0.0254067 0.00199781 -2.86532e-11 0.025211 0.00184724 -2.67914e-11 0.0250318 0.00170581 -2.88331e-11 0.0248704 0.00157518 -2.90702e-11 0.0247413 0.00145562 -2.67517e-11 0.0246458 0.00134631 -2.84072e-11 0.0245765 0.00124716 -2.81309e-11 0.024522 0.00115725 -2.74683e-11 0.0244716 0.00107584 -2.65099e-11 0.0244177 0.00100257 -2.52135e-11 0.0243563 0.000937542 -2.3918e-11 0.0242858 0.000881038 -2.22789e-11 0.0242073 0.000833524 -2.07089e-11 0.0241249 0.000795357 -1.88997e-11 0.0240462 0.000767102 -1.65425e-11 0.0239764 0.000748601 -1.41112e-11 0.0239137 0.000740013 -1.1697e-11 0.0238517 0.000742524 -9.78214e-12 0.0237861 0.000755343 -8.36017e-12 0.0236947 0.0007768 -5.10794e-12 0.0234694 0.000800018 1.45852e-13 0.0228335 0.000809929 9.58662e-12 0.021828 0.000785296 2.20663e-12 0.02041 0.000725252 -2.86585e-12 0.0186918 0.00062983 -5.90073e-12 0.0169185 0.000511213 -6.8782e-12 0.0153315 0.000391668 -6.23386e-12 0.0140604 0.000286814 -4.90007e-12 0.0131207 0.000203997 -3.56148e-12 0.0124628 0.000142853 -2.51026e-12 0.0120194 9.93999e-05 -1.71071e-12 0.0117285 6.9173e-05 -1.1103e-12 0.0115404 4.82896e-05 -7.39537e-13 0.0114196 3.38132e-05 -4.84425e-13 0.011342 2.37298e-05 -3.14574e-13 0.0112922 1.66703e-05 -2.03123e-13 0.01126 1.17063e-05 -1.30775e-13 0.0112392 8.20387e-06 -8.35033e-14 0.0112257 5.71948e-06 -5.36823e-14 0.0112169 3.96187e-06 -3.47712e-14 0.0112111 2.73146e-06 -2.18371e-14 0.0112073 1.87084e-06 -1.3772e-14 0.0112048 1.27232e-06 -8.6555e-15 0.0112031 8.58691e-07 -5.40284e-15 0.0112021 5.74917e-07 -3.33883e-15 0.0112013 3.81765e-07 -2.03257e-15 0.0112009 2.51385e-07 -1.2083e-15 0.0112006 1.64131e-07 -6.89426e-16 0.0112004 1.06252e-07 -3.64156e-16 0.0112003 6.81947e-08 -1.60098e-16 0.0112002 4.34035e-08 -3.40465e-17 0.0112001 2.73709e-08 4.68706e-17 0.0112001 1.71452e-08 9.21419e-17 1.03911e-08 1.35863e-16 0.0168033 4.18214e-08 -2.02967e-15 0.0168051 2.84492e-08 6.88364e-14 0.0168089 1.35985e-07 6.13919e-14 0.0168142 4.66318e-07 1.48294e-13 0.0168265 1.87835e-06 3.28505e-13 0.0168356 6.61863e-06 1.20775e-12 0.0168894 2.02287e-05 2.13763e-12 0.0169707 6.23263e-05 6.80584e-12 0.0172994 0.000172375 1.31086e-11 0.0183086 0.00051532 3.72499e-11 0.0207234 0.00144115 7.53305e-11 0.0269971 0.00377395 1.4795e-10 0.0306969 0.00879246 1.95446e-10 0.0319896 0.0139987 9.39024e-11 0.0324683 0.0157517 9.93216e-12 0.0325286 0.0160532 -8.38976e-12 0.0324893 0.0158096 -8.2046e-12 0.0324585 0.015368 -9.20718e-12 0.0322085 0.014931 -1.23432e-11 0.0318472 0.0143158 -1.71393e-11 0.0314724 0.013534 -1.73688e-11 0.0311101 0.0126986 -1.71258e-11 0.0307779 0.0118618 -1.59664e-11 0.0305039 0.0110604 -1.4793e-11 0.0302758 0.010314 -1.48715e-11 0.0300836 0.00962431 -1.39964e-11 0.0299197 0.0089897 -1.43039e-11 0.0297775 0.00840547 -1.53421e-11 0.0296511 0.00786779 -1.64665e-11 0.0295352 0.00737163 -1.75927e-11 0.0294198 0.00691453 -1.88557e-11 0.0292948 0.00649059 -2.02149e-11 0.0291556 0.00609581 -2.15909e-11 0.0289945 0.00572612 -2.28621e-11 0.0288035 0.00537734 -2.40558e-11 0.0285839 0.00504618 -2.50692e-11 0.0283464 0.00473212 -2.58715e-11 0.0281029 0.00443566 -2.64976e-11 0.0278617 0.00415709 -2.72345e-11 0.027625 0.00389559 -2.79907e-11 0.027402 0.00364955 -2.84157e-11 0.0271806 0.00341902 -2.86744e-11 0.0269667 0.0031996 -2.88716e-11 0.0267532 0.00299313 -2.89805e-11 0.0265264 0.0027955 -2.88867e-11 0.026306 0.00260692 -2.83784e-11 0.0260844 0.00242831 -2.88088e-11 0.0258642 0.00225914 -2.78262e-11 0.0256626 0.00209972 -2.85288e-11 0.0254784 0.00195103 -3.06675e-11 0.025323 0.00181425 -2.7466e-11 0.0252002 0.00168809 -2.93632e-11 0.0251026 0.0015726 -2.9199e-11 0.0250201 0.00146687 -2.85962e-11 0.0249434 0.00137013 -2.7678e-11 0.0248661 0.00128206 -2.6456e-11 0.0247853 0.00120277 -2.52108e-11 0.0246998 0.00113269 -2.37001e-11 0.0246089 0.00107222 -2.24052e-11 0.024515 0.00102185 -2.06427e-11 0.0244245 0.000981992 -1.85929e-11 0.0243451 0.000953045 -1.61966e-11 0.0242754 0.000934566 -1.37767e-11 0.0242047 0.000926173 -1.18309e-11 0.0241191 0.00092833 -1.0146e-11 0.0239866 0.000937831 -6.66979e-12 0.023695 0.000945688 -2.53781e-12 0.0229876 0.000932102 3.36157e-12 0.0219028 0.000883286 -2.68625e-12 0.0203925 0.000795308 -6.4591e-12 0.0185968 0.000668436 -8.33149e-12 0.0167814 0.000526066 -8.18932e-12 0.0151875 0.000389998 -6.77628e-12 0.0139319 0.000276595 -5.00936e-12 0.0130163 0.000190901 -3.48215e-12 0.0123828 0.000129986 -2.35697e-12 0.0119603 8.81433e-05 -1.54439e-12 0.0116857 5.99374e-05 -9.77417e-13 0.0115097 4.09794e-05 -6.34018e-13 0.0113976 2.81715e-05 -4.04615e-13 0.0113264 1.94519e-05 -2.5626e-13 0.011281 1.34672e-05 -1.61648e-13 0.011252 9.33174e-06 -1.01745e-13 0.0112335 6.46392e-06 -6.39056e-14 0.0112216 4.46981e-06 -4.00484e-14 0.011214 3.0737e-06 -2.53538e-14 0.0112091 2.09879e-06 -1.57881e-14 0.0112059 1.42682e-06 -9.80323e-15 0.0112038 9.63758e-07 -6.06936e-15 0.0112025 6.46297e-07 -3.72888e-15 0.0112016 4.30199e-07 -2.26319e-15 0.011201 2.84131e-07 -1.34704e-15 0.0112007 1.8615e-07 -7.74329e-16 0.0112004 1.2096e-07 -4.1629e-16 0.0112003 7.7953e-08 -1.93159e-16 0.0112002 4.98189e-08 -5.36138e-17 0.0112001 3.15802e-08 3.20246e-17 0.0112001 1.98381e-08 8.74943e-17 0.0112001 1.23832e-08 1.17256e-16 7.47959e-09 1.47894e-16 0.0168034 1.09696e-08 -1.67014e-14 0.0168051 8.64932e-09 6.27001e-14 0.016808 1.52732e-08 1.71019e-14 0.0168122 9.06067e-08 1.67143e-13 0.0168199 1.55994e-07 1.19214e-13 0.0168317 1.05601e-06 1.44464e-13 0.0168548 3.06235e-06 8.14877e-13 0.0168814 1.39494e-05 1.83994e-12 0.0169901 3.78157e-05 5.51379e-12 0.0172207 0.000130286 1.0414e-11 0.0180744 0.000347186 2.88837e-11 0.0200514 0.00107241 6.32149e-11 0.0245838 0.00272867 1.50788e-10 0.029189 0.00619421 2.73379e-10 0.0315444 0.0124654 6.57142e-11 0.0324944 0.0148143 1.00832e-11 0.0327335 0.0156425 2.98108e-12 0.0327984 0.0155615 -3.06265e-12 0.0329333 0.0151522 -4.34635e-12 0.0329185 0.0147271 -8.1293e-12 0.0326916 0.014246 -9.80053e-12 0.0324308 0.013627 -1.40735e-11 0.0321408 0.0129005 -1.65609e-11 0.0318716 0.0121273 -1.60227e-11 0.0316303 0.0113746 -1.79604e-11 0.0314181 0.0106607 -1.71714e-11 0.0312316 0.00999446 -1.81525e-11 0.0310619 0.00937665 -1.91831e-11 0.0309007 0.00880288 -1.99516e-11 0.0307464 0.00827193 -2.15584e-11 0.0305956 0.00778146 -2.28226e-11 0.0304386 0.00732755 -2.39195e-11 0.0302661 0.00690405 -2.49428e-11 0.0300723 0.00650567 -2.56287e-11 0.0298504 0.00612889 -2.59923e-11 0.0295988 0.00577024 -2.61068e-11 0.0293268 0.00542842 -2.59328e-11 0.0290483 0.00510419 -2.55637e-11 0.0287741 0.00479831 -2.50496e-11 0.0285072 0.00451069 -2.44548e-11 0.0282491 0.00423942 -2.40899e-11 0.0280018 0.00398332 -2.44521e-11 0.0277545 0.00374102 -2.49562e-11 0.0275139 0.00350965 -2.53259e-11 0.027266 0.00329042 -2.5691e-11 0.0270102 0.0030793 -2.57595e-11 0.0267647 0.00287845 -2.61057e-11 0.026522 0.00268835 -2.65532e-11 0.0262965 0.00250902 -2.5973e-11 0.0260906 0.00234043 -2.90251e-11 0.0259085 0.00218464 -2.58907e-11 0.0257585 0.00204012 -2.69936e-11 0.0256342 0.00190707 -2.69396e-11 0.0255261 0.00178462 -2.63568e-11 0.025425 0.00167192 -2.5557e-11 0.0253257 0.00156856 -2.45999e-11 0.0252256 0.00147462 -2.36682e-11 0.0251238 0.00139059 -2.27635e-11 0.0250203 0.0013169 -2.1994e-11 0.0249158 0.00125393 -2.10137e-11 0.0248148 0.00120196 -1.94871e-11 0.0247242 0.00116133 -1.76951e-11 0.0246452 0.00113174 -1.47072e-11 0.0245637 0.0011124 -1.39898e-11 0.0244538 0.00110095 -1.23139e-11 0.0242723 0.00109329 -8.69201e-12 0.0238525 0.00107812 -2.16858e-12 0.0231069 0.00103729 -4.79707e-12 0.0219259 0.000959934 -7.84724e-12 0.0203124 0.000837738 -9.98793e-12 0.0184423 0.000682202 -1.05661e-11 0.0165986 0.000518963 -9.32348e-12 0.015014 0.000371961 -7.15345e-12 0.0137873 0.000255482 -5.00126e-12 0.0129049 0.000171134 -3.31742e-12 0.0123012 0.00011339 -2.1633e-12 0.0119022 7.49845e-05 -1.34524e-12 0.0116451 4.98607e-05 -8.42228e-13 0.0114814 3.3416e-05 -5.24727e-13 0.0113779 2.25708e-05 -3.2385e-13 0.0113125 1.53465e-05 -1.98705e-13 0.0112713 1.04845e-05 -1.21593e-13 0.0112453 7.18183e-06 -7.42954e-14 0.0112288 4.92121e-06 -4.5339e-14 0.0112183 3.36687e-06 -2.76709e-14 0.0112117 2.29841e-06 -1.69909e-14 0.0112075 1.56334e-06 -1.04757e-14 0.0112048 1.05551e-06 -6.31197e-15 0.011203 7.07618e-07 -3.8278e-15 0.011202 4.71702e-07 -2.2892e-15 0.0112013 3.12402e-07 -1.3514e-15 0.0112008 2.05323e-07 -7.73987e-16 0.0112005 1.33886e-07 -4.1526e-16 0.0112003 8.66168e-08 -1.91693e-16 0.0112002 5.55929e-08 -5.33902e-17 0.0112002 3.53926e-08 3.28505e-17 0.0112001 2.23537e-08 8.53106e-17 0.0112001 1.39929e-08 1.20048e-16 0.0112001 8.70696e-09 1.37257e-16 5.2431e-09 1.57505e-16 0.0168034 2.04198e-09 2.15234e-15 0.016805 8.37286e-10 6.46408e-14 0.016808 1.74022e-09 2.72533e-14 0.0168118 1.53753e-08 1.2744e-13 0.0168182 1.00381e-08 1.01904e-13 0.0168267 1.34301e-07 1.11707e-13 0.0168413 3.59108e-07 2.44306e-13 0.0168691 1.76281e-06 2.1657e-13 0.0169038 6.27174e-06 1.43388e-12 0.0170114 2.33232e-05 2.92828e-12 0.017162 7.96606e-05 9.72912e-12 0.0178206 0.000228742 2.07693e-11 0.0192866 0.0007165 4.64591e-11 0.0225872 0.00189073 9.78423e-11 0.0280422 0.00452404 1.93259e-10 0.0312205 0.010543 5.82476e-11 0.0324721 0.0137687 5.61053e-11 0.0330177 0.0150371 1.29697e-11 0.0332036 0.0151722 7.57331e-13 0.0332895 0.0148821 -1.35164e-13 0.0334444 0.0144407 -2.67149e-12 0.033485 0.0140377 -8.33001e-12 0.0333468 0.0135855 -1.20553e-11 0.0331632 0.0130061 -1.70726e-11 0.0329676 0.012344 -1.94924e-11 0.032768 0.0116691 -2.0352e-11 0.0325733 0.0110101 -2.09395e-11 0.032378 0.0103809 -2.1999e-11 0.0321846 0.00978583 -2.47424e-11 0.0319957 0.00923051 -2.49831e-11 0.0318109 0.008712 -2.53164e-11 0.0316233 0.00823005 -2.52647e-11 0.0314181 0.00777734 -2.50833e-11 0.0311879 0.00734863 -2.44432e-11 0.0309306 0.00694037 -2.33268e-11 0.0306444 0.00655063 -2.18599e-11 0.0303358 0.00617732 -2.01847e-11 0.0300188 0.00582111 -1.84387e-11 0.0297074 0.0054835 -1.69147e-11 0.0294076 0.00516522 -1.56384e-11 0.0291173 0.00486459 -1.46646e-11 0.0288367 0.00457964 -1.40497e-11 0.0285629 0.00430918 -1.4507e-11 0.0282882 0.00405141 -1.56244e-11 0.0280166 0.00380459 -1.64895e-11 0.0277363 0.00356931 -1.71724e-11 0.0274579 0.00334297 -1.76342e-11 0.0271944 0.00312869 -1.83627e-11 0.0269444 0.00292648 -1.84033e-11 0.0267172 0.00273622 -1.93153e-11 0.0265101 0.00255838 -1.9675e-11 0.0263329 0.00239418 -1.79144e-11 0.0261835 0.00224173 -1.89242e-11 0.0260523 0.00210135 -1.88295e-11 0.025929 0.00197188 -1.86264e-11 0.0258076 0.00185263 -1.83637e-11 0.0256872 0.00174354 -1.82364e-11 0.0255675 0.00164503 -1.83622e-11 0.0254484 0.00155757 -1.87757e-11 0.0253307 0.00148138 -1.91169e-11 0.0252174 0.00141649 -1.88984e-11 0.0251127 0.00136276 -1.79731e-11 0.0250169 0.00131973 -1.6151e-11 0.0249159 0.00128582 -1.46753e-11 0.0247715 0.00125762 -1.28378e-11 0.0245123 0.00122816 -1.04725e-11 0.024024 0.00118471 -8.8539e-12 0.0231764 0.0011135 -1.05245e-11 0.021876 0.00100175 -1.24313e-11 0.0201565 0.000843975 -1.36345e-11 0.0182261 0.000664694 -1.281e-11 0.0163747 0.000488015 -1.03916e-11 0.0148185 0.00033805 -7.46377e-12 0.0136339 0.000224957 -4.94767e-12 0.0127925 0.000146367 -3.13784e-12 0.0122221 9.44375e-05 -1.94708e-12 0.011848 6.0976e-05 -1.16192e-12 0.0116082 3.96854e-05 -7.01676e-13 0.0114564 2.6098e-05 -4.19617e-13 0.0113609 1.73396e-05 -2.48145e-13 0.0113009 1.1623e-05 -1.45709e-13 0.0112633 7.84365e-06 -8.51968e-14 0.0112397 5.3158e-06 -4.96795e-14 0.011225 3.60931e-06 -2.89724e-14 0.0112157 2.45023e-06 -1.6968e-14 0.0112099 1.65998e-06 -9.94479e-15 0.0112062 1.12013e-06 -5.72175e-15 0.0112039 7.52395e-07 -3.34504e-15 0.0112025 5.03007e-07 -2.09749e-15 0.0112016 3.33872e-07 -1.0793e-15 0.011201 2.2001e-07 -5.97707e-16 0.0112006 1.43855e-07 -3.11242e-16 0.0112004 9.33664e-08 -1.23645e-16 0.0112003 6.01823e-08 -1.10436e-17 0.0112002 3.84906e-08 5.74382e-17 0.0112001 2.44222e-08 1.00545e-16 0.0112001 1.53744e-08 1.26553e-16 0.0112001 9.5931e-09 1.45094e-16 0.0112001 5.9522e-09 1.52644e-16 3.57469e-09 1.64952e-16 0.0168033 3.95483e-10 1.99378e-14 0.0168051 2.11881e-10 5.75238e-14 0.0168078 -5.01912e-10 4.78076e-14 0.016812 6.01214e-09 1.36304e-13 0.0168177 -9.30722e-09 1.09759e-13 0.0168264 3.94415e-08 1.63712e-13 0.0168386 1.13392e-08 2.10692e-13 0.016857 2.46164e-07 2.76e-13 0.0168856 6.84089e-07 3.47784e-13 0.016932 2.9227e-06 6.29776e-13 0.0170252 1.20327e-05 1.40585e-12 0.0171625 4.11613e-05 6.66969e-12 0.0176427 0.000136554 1.32925e-11 0.0186595 0.000435505 3.74455e-11 0.0210481 0.00123075 7.2493e-11 0.0265002 0.00310857 1.34418e-10 0.0303334 0.00664977 2.36133e-10 0.0322221 0.0121796 7.52432e-11 0.0331405 0.0138562 2.93667e-11 0.0335262 0.0145552 1.02589e-11 0.0337117 0.0145119 -3.06042e-13 0.0338883 0.0141548 -6.07758e-12 0.034096 0.0137471 -7.60914e-12 0.0341371 0.0133802 -1.10771e-11 0.0340702 0.0129447 -1.70373e-11 0.033959 0.0124187 -2.5264e-11 0.0338055 0.011853 -2.63524e-11 0.0336279 0.0112761 -2.76248e-11 0.0334353 0.0107065 -2.70849e-11 0.0332367 0.0101569 -2.66798e-11 0.0330339 0.00963393 -2.53464e-11 0.032822 0.00913856 -2.35355e-11 0.0325886 0.00866605 -2.14351e-11 0.0323261 0.00821297 -1.88768e-11 0.0320337 0.00777597 -1.56583e-11 0.0317138 0.00735572 -1.23545e-11 0.0313695 0.00695009 -8.82792e-12 0.0310152 0.00656009 -5.41103e-12 0.0306669 0.00618812 -2.5285e-12 0.0303328 0.00583551 -7.37806e-14 0.030012 0.00550148 1.88313e-12 0.029701 0.00518395 3.32918e-12 0.0293983 0.0048814 4.52417e-12 0.0290985 0.00459235 5.3716e-12 0.0287968 0.00431553 5.3109e-12 0.0284977 0.00404994 5.47582e-12 0.0281953 0.00379652 5.33198e-12 0.0279046 0.0035539 5.20295e-12 0.0276348 0.0033254 4.61157e-12 0.0273839 0.00311027 4.43279e-12 0.0271566 0.00290867 2.58286e-12 0.026954 0.00272178 3.36756e-12 0.0267792 0.00254917 9.24026e-13 0.0266247 0.00238938 -5.27018e-13 0.02648 0.00224257 -2.08852e-12 0.0263376 0.00210744 -4.50291e-12 0.0261946 0.00198342 -6.42881e-12 0.0260517 0.00187065 -8.53621e-12 0.0259099 0.00176945 -1.09883e-11 0.0257701 0.0016799 -1.34946e-11 0.0256346 0.00160163 -1.53923e-11 0.0255064 0.00153395 -1.62985e-11 0.0253825 0.00147571 -1.60926e-11 0.0252453 0.00142449 -1.53556e-11 0.0250505 0.00137557 -1.45946e-11 0.0247174 0.00132044 -1.39523e-11 0.0241304 0.00124703 -1.36278e-11 0.0231613 0.00114199 -1.5317e-11 0.021735 0.000990211 -1.69528e-11 0.0199215 0.00080775 -1.69091e-11 0.0179552 0.000613191 -1.47224e-11 0.0161215 0.000434338 -1.11641e-11 0.0146128 0.000290954 -7.57253e-12 0.0134811 0.000187762 -4.78139e-12 0.0126854 0.000118847 -2.90001e-12 0.0121496 7.47761e-05 -1.70815e-12 0.0117999 4.72022e-05 -9.7479e-13 0.0115765 3.01096e-05 -5.62519e-13 0.0114354 1.94559e-05 -3.18325e-13 0.0113469 1.27323e-05 -1.76896e-13 0.0112915 8.42505e-06 -9.68233e-14 0.011257 5.62338e-06 -5.22559e-14 0.0112354 3.77555e-06 -2.78253e-14 0.011222 2.54308e-06 -1.46447e-14 0.0112137 1.71437e-06 -7.61735e-15 0.0112085 1.15425e-06 -3.8888e-15 0.0112053 7.74797e-07 -1.94976e-15 0.0112033 5.17879e-07 -9.59177e-16 0.011202 3.44444e-07 -4.39586e-16 0.0112013 2.2768e-07 -1.42531e-16 0.0112008 1.49411e-07 8.34158e-18 0.0112005 9.74687e-08 1.95605e-17 0.0112003 6.31291e-08 1.07427e-16 0.0112002 4.05363e-08 1.36744e-16 0.0112001 2.5841e-08 1.46463e-16 0.0112001 1.63447e-08 1.53097e-16 0.0112001 1.02551e-08 1.57924e-16 0.0112001 6.37868e-09 1.64489e-16 0.0112001 3.94869e-09 1.64491e-16 2.36621e-09 1.70628e-16 0.0168033 9.93229e-11 2.56207e-14 0.0168051 -4.21453e-11 4.67501e-14 0.0168078 -1.37709e-10 5.46521e-14 0.0168119 1.27696e-09 9.32644e-14 0.0168178 -2.80526e-09 1.17075e-13 0.0168263 8.48672e-09 1.51434e-13 0.0168384 -6.81819e-09 2.16055e-13 0.0168558 3.78668e-08 2.01786e-13 0.0168802 7.09023e-08 3.09639e-13 0.0169149 3.53685e-07 3.69314e-13 0.0169686 1.30555e-06 4.35347e-13 0.017051 5.33694e-06 8.72022e-13 0.0172283 1.89953e-05 3.11356e-12 0.01756 7.07491e-05 7.32785e-12 0.0182908 0.0002332 2.46246e-11 0.0201814 0.000715966 4.4047e-11 0.0235448 0.00186861 1.18259e-10 0.028559 0.00420537 2.02915e-10 0.0316055 0.00892823 9.06388e-11 0.0329697 0.0123917 4.55353e-11 0.0337396 0.0134624 1.71322e-11 0.0341017 0.0139011 1.88871e-13 0.0343028 0.013799 -6.56181e-12 0.0345326 0.0134317 -7.52543e-12 0.0346975 0.0130685 -9.91931e-12 0.0347435 0.0126995 -1.40321e-11 0.0347121 0.0122869 -2.31693e-11 0.034622 0.0118276 -2.36833e-11 0.034488 0.0113464 -2.37809e-11 0.0343229 0.0108561 -2.20661e-11 0.0341381 0.0103689 -1.98834e-11 0.03393 0.00989223 -1.68366e-11 0.0336916 0.00942386 -1.24069e-11 0.0334164 0.00896528 -8.17073e-12 0.0331069 0.00851369 -2.60641e-12 0.0327666 0.00807256 3.05827e-12 0.0324012 0.00764117 7.3121e-12 0.0320244 0.00722179 1.61474e-11 0.031652 0.00681716 2.17268e-11 0.0312941 0.00642993 2.52456e-11 0.0309521 0.00606069 2.77208e-11 0.0306225 0.00570857 2.9104e-11 0.0302999 0.00537124 2.96212e-11 0.0299822 0.0050477 2.95417e-11 0.0296642 0.00473701 2.94641e-11 0.0293455 0.00443907 2.95798e-11 0.0290325 0.00415366 2.95112e-11 0.0287222 0.00388215 2.90559e-11 0.02843 0.00362408 2.76452e-11 0.028162 0.00338267 2.58963e-11 0.0279129 0.00315658 2.3358e-11 0.0276892 0.00294748 2.09553e-11 0.027488 0.00275464 1.77977e-11 0.0273048 0.00257831 1.52491e-11 0.0271326 0.0024165 1.24939e-11 0.0269629 0.00226817 1.00796e-11 0.0267911 0.00213294 7.59843e-12 0.0266157 0.00200984 4.56256e-12 0.0264368 0.00189863 6.50296e-13 0.0262564 0.00179908 -4.5317e-12 0.0260782 0.00171056 -8.95531e-12 0.0259053 0.0016319 -1.23607e-11 0.0257334 0.00156084 -1.43844e-11 0.0255399 0.0014939 -1.5161e-11 0.025274 0.00142478 -1.59779e-11 0.0248491 0.00134385 -1.77303e-11 0.0241452 0.001239 -1.77187e-11 0.0230433 0.00109622 -2.01213e-11 0.0214991 0.000919546 -2.14416e-11 0.0196182 0.000723101 -2.01668e-11 0.0176476 0.000529067 -1.65294e-11 0.0158577 0.000361959 -1.18433e-11 0.0144113 0.000234918 -7.64445e-12 0.0133388 0.000147353 -4.6184e-12 0.0125896 9.0924e-05 -2.68072e-12 0.012087 5.5911e-05 -1.49304e-12 0.0117596 3.45692e-05 -8.0993e-13 0.0115506 2.1652e-05 -4.41374e-13 0.0114187 1.37712e-05 -2.3122e-13 0.0113359 8.89145e-06 -1.16324e-13 0.0112843 5.81714e-06 -5.5696e-14 0.0112522 3.84594e-06 -2.48252e-14 0.0112322 2.56166e-06 -9.79868e-15 0.0112198 1.71384e-06 -2.92239e-15 0.0112122 1.14865e-06 -6.14785e-17 0.0112075 7.69457e-07 9.23038e-16 0.0112046 5.14213e-07 1.09683e-15 0.0112028 3.42349e-07 9.67729e-16 0.0112017 2.26839e-07 7.67037e-16 0.0112011 1.49428e-07 5.91044e-16 0.0112007 9.77898e-08 4.43257e-16 0.0112004 6.35721e-08 3.3847e-16 0.0112003 4.10453e-08 2.7834e-16 0.0112002 2.63054e-08 2.33896e-16 0.0112001 1.67208e-08 2.09437e-16 0.0112001 1.05482e-08 1.89544e-16 0.0112001 6.60876e-09 1.76721e-16 0.0112001 4.10737e-09 1.81706e-16 0.0112001 2.53213e-09 1.74602e-16 1.51665e-09 1.75158e-16 0.0168033 2.27351e-11 3.25921e-14 0.0168051 -2.71024e-11 4.14701e-14 0.0168078 -7.23341e-12 5.56053e-14 0.0168119 2.41311e-10 8.87112e-14 0.0168178 -6.56264e-10 1.11353e-13 0.0168262 1.79328e-09 1.44711e-13 0.0168384 -2.10725e-09 2.1002e-13 0.0168556 5.76204e-09 2.09176e-13 0.0168797 8.50872e-09 3.65817e-13 0.0169127 3.30628e-08 2.07724e-13 0.0169587 1.73122e-07 6.56846e-13 0.0170225 5.73147e-07 -1.48422e-13 0.0171157 2.34592e-06 2.01145e-12 0.0172656 8.63619e-06 -6.03914e-13 0.0175494 3.24829e-05 5.85013e-12 0.0181169 0.000112316 1.07332e-11 0.0193386 0.000365443 2.9941e-11 0.0218083 0.00103453 5.57788e-11 0.0258376 0.00243704 1.28782e-10 0.0298648 0.00485724 1.81418e-10 0.0323529 0.00921793 6.7834e-11 0.033544 0.0118939 2.76702e-11 0.0342326 0.0126992 9.75604e-12 0.0346052 0.0130075 -2.02861e-12 0.034878 0.0129639 -8.822e-12 0.0350633 0.0127019 -9.62279e-12 0.035185 0.0123554 -1.04188e-11 0.0351939 0.0119758 -1.30802e-11 0.0351517 0.0115646 -1.06194e-11 0.0350631 0.0111378 -7.13119e-12 0.0349442 0.0106972 -3.10513e-12 0.0347885 0.0102557 1.54626e-12 0.0345923 0.0098097 9.90029e-12 0.0343521 0.00936254 1.7806e-11 0.0340695 0.00891009 2.49462e-11 0.0337536 0.00845706 3.25747e-11 0.0334094 0.00800745 3.94287e-11 0.0330505 0.00756362 4.60458e-11 0.0326922 0.00712998 5.174e-11 0.032345 0.00671019 5.60983e-11 0.0320152 0.00630651 6.01625e-11 0.0316969 0.00592001 6.32058e-11 0.0313828 0.00554897 6.58967e-11 0.0310676 0.00519158 6.82038e-11 0.0307526 0.00484826 7.00447e-11 0.0304352 0.00451964 7.22118e-11 0.030117 0.00420575 7.28532e-11 0.0298044 0.00390758 7.16407e-11 0.0294972 0.00362672 6.84516e-11 0.0292051 0.00336511 6.41526e-11 0.0289349 0.00312347 5.89684e-11 0.0286806 0.00290236 5.37389e-11 0.0284433 0.0027021 4.57109e-11 0.0282178 0.00252137 4.17993e-11 0.0279951 0.00235837 3.59205e-11 0.0277727 0.00221226 3.05139e-11 0.0275471 0.00208117 2.74654e-11 0.0273158 0.00196359 2.31344e-11 0.0270764 0.00185746 1.76824e-11 0.0268297 0.0017622 1.05847e-11 0.0265807 0.00167746 4.0465e-12 0.0263345 0.0016002 -2.71955e-12 0.0260857 0.00152636 -8.04704e-12 0.0258074 0.00144997 -1.22284e-11 0.0254413 0.00136316 -1.5413e-11 0.0248946 0.00125725 -1.97188e-11 0.024053 0.00112452 -2.20201e-11 0.0228211 0.000960648 -2.46415e-11 0.0211861 0.000778671 -2.50816e-11 0.0192739 0.00059066 -2.2578e-11 0.0173318 0.000417617 -1.76735e-11 0.0156057 0.000276906 -1.21314e-11 0.0142294 0.000174762 -7.52728e-12 0.0132159 0.00010694 -4.37077e-12 0.0125101 6.45381e-05 -2.43165e-12 0.0120366 3.89125e-05 -1.29074e-12 0.011728 2.36266e-05 -6.61997e-13 0.0115308 1.45669e-05 -3.3253e-13 0.0114061 9.14038e-06 -1.55024e-13 0.0113279 5.83463e-06 -6.45036e-14 0.0112791 3.78123e-06 -2.11415e-14 0.0112487 2.48043e-06 -2.14118e-15 0.0112299 1.64148e-06 4.90633e-15 0.0112183 1.0923e-06 6.51563e-15 0.0112112 7.28738e-07 5.94166e-15 0.0112068 4.86242e-07 4.70989e-15 0.0112041 3.23828e-07 3.46888e-15 0.0112025 2.14927e-07 2.4457e-15 0.0112015 1.41996e-07 1.68352e-15 0.0112009 9.32958e-08 1.14944e-15 0.0112006 6.09155e-08 7.87969e-16 0.0112004 3.95101e-08 5.51369e-16 0.0112002 2.54497e-08 4.02009e-16 0.0112002 1.62744e-08 3.09607e-16 0.0112001 1.0328e-08 2.53725e-16 0.0112001 6.50371e-09 2.19181e-16 0.0112001 4.06499e-09 1.98408e-16 0.0112001 2.52252e-09 1.88356e-16 0.0112 1.54852e-09 1.80577e-16 9.29818e-10 1.77093e-16 0.0168033 5.81179e-12 3.34428e-14 0.0168051 -8.8561e-12 4.46811e-14 0.0168078 4.02301e-12 6.08111e-14 0.0168119 4.57657e-11 8.57741e-14 0.0168178 -1.39997e-10 1.15752e-13 0.0168262 3.85608e-10 1.52699e-13 0.0168384 -5.58696e-10 2.04922e-13 0.0168556 1.09245e-09 2.45701e-13 0.0168796 7.2331e-10 3.16172e-13 0.0169125 3.0872e-09 3.88464e-13 0.0169576 2.28115e-08 5.1981e-13 0.0170187 5.82515e-08 3.29192e-13 0.0171006 2.95608e-07 6.98037e-13 0.0172117 9.9875e-07 -1.46002e-13 0.0173685 4.06722e-06 1.00819e-12 0.0176119 1.4354e-05 -2.63644e-13 0.0180554 5.14642e-05 5.23881e-12 0.018886 0.000173033 1.1254e-11 0.0204372 0.00050134 3.72342e-11 0.0230149 0.00125306 4.90098e-11 0.0267065 0.00260585 1.44854e-10 0.0302524 0.00461943 1.38209e-10 0.0325617 0.00772256 7.2113e-11 0.0337781 0.0105195 2.62258e-11 0.0345001 0.011532 1.21698e-11 0.0349606 0.0117716 7.95803e-12 0.0352978 0.0117503 2.6293e-12 0.0355394 0.0114669 5.80917e-12 0.0356974 0.0111463 7.92059e-12 0.0357146 0.0108253 9.91074e-12 0.0356568 0.0104524 1.84267e-11 0.0355847 0.0100306 2.55279e-11 0.0354814 0.00956443 3.23201e-11 0.0353421 0.00907234 3.82687e-11 0.035163 0.0085729 4.28113e-11 0.0349458 0.00808219 4.76989e-11 0.0346963 0.00759441 5.28305e-11 0.0344257 0.00711681 5.70788e-11 0.0341458 0.00665148 6.10416e-11 0.0338653 0.0062032 6.49956e-11 0.0335913 0.00577141 6.83542e-11 0.0333244 0.00536206 7.15064e-11 0.0330502 0.00496874 7.59717e-11 0.0327665 0.00458472 8.12563e-11 0.0324717 0.00422052 8.50155e-11 0.0321674 0.00387754 8.95746e-11 0.031851 0.00355878 9.2491e-11 0.03152 0.00326292 9.1976e-11 0.0311876 0.00299268 8.85773e-11 0.0308548 0.00274861 8.3219e-11 0.0305223 0.00253129 7.78557e-11 0.0302023 0.00233951 7.14604e-11 0.029894 0.00217299 6.34835e-11 0.0295829 0.00202981 5.69319e-11 0.0292645 0.00190652 5.16277e-11 0.0289431 0.00180034 4.88843e-11 0.0286203 0.00170878 4.68892e-11 0.0282913 0.00162922 4.37035e-11 0.0279528 0.00155918 4.01331e-11 0.0276043 0.00149457 3.41483e-11 0.0272454 0.00143243 2.41299e-11 0.0268785 0.00136995 1.39714e-11 0.026497 0.00130057 5.5507e-12 0.0260729 0.00121927 -3.96951e-12 0.0255502 0.00112158 -1.25069e-11 0.0248464 0.00100558 -1.97674e-11 0.023865 0.000870681 -2.44706e-11 0.0225293 0.000722499 -2.76445e-11 0.0208413 0.000567285 -2.79501e-11 0.0189348 0.000417375 -2.45083e-11 0.0170448 0.000286912 -1.85637e-11 0.0153902 0.000185523 -1.23438e-11 0.014081 0.000114521 -7.43972e-12 0.0131195 6.87259e-05 -4.201e-12 0.0124495 4.07653e-05 -2.26401e-12 0.0119993 2.42002e-05 -1.11924e-12 0.0117051 1.44857e-05 -5.54891e-13 0.0115167 8.82081e-06 -2.54627e-13 0.0113973 5.47673e-06 -9.98194e-14 0.0113223 3.46533e-06 -2.68074e-14 0.0112755 2.22957e-06 3.9897e-15 0.0112464 1.45396e-06 1.43183e-14 0.0112284 9.57576e-07 1.55406e-14 0.0112173 6.34687e-07 1.33105e-14 0.0112105 4.22037e-07 1.02415e-14 0.0112063 2.80804e-07 7.40776e-15 0.0112038 1.86551e-07 5.14901e-15 0.0112023 1.23543e-07 3.48598e-15 0.0112014 8.14563e-08 2.32291e-15 0.0112008 5.34202e-08 1.53912e-15 0.0112005 3.48209e-08 1.02527e-15 0.0112003 2.25483e-08 6.95888e-16 0.0112002 1.45004e-08 4.89185e-16 0.0112001 9.25833e-09 3.61827e-16 0.0112001 5.86769e-09 2.8432e-16 0.0112001 3.69065e-09 2.38108e-16 0.0112001 2.3035e-09 2.10056e-16 0.0112001 1.42761e-09 1.94654e-16 0.0112 8.74607e-10 1.84472e-16 5.24558e-10 1.78982e-16 0.0168033 3.46076e-12 3.55831e-14 0.0168051 -4.0509e-13 4.70914e-14 0.0168078 5.15904e-12 6.51867e-14 0.0168119 9.8362e-12 8.65933e-14 0.0168178 -2.06688e-11 1.19694e-13 0.0168262 7.60278e-11 1.58607e-13 0.0168384 -1.03866e-10 2.0692e-13 0.0168556 1.98711e-10 2.65443e-13 0.0168796 7.76322e-11 3.79412e-13 0.0169125 1.78723e-10 3.83983e-13 0.0169574 3.22949e-09 5.23316e-13 0.0170182 5.24405e-09 4.65392e-13 0.0170989 3.66706e-08 5.1498e-13 0.0172049 1.12505e-07 8.87069e-14 0.0173438 4.93851e-07 3.74008e-14 0.017527 1.73033e-06 -1.00609e-12 0.0177764 6.52021e-06 -9.83144e-13 0.018141 2.27915e-05 -1.38739e-12 0.0187394 7.32849e-05 2.48692e-12 0.0197254 0.000217102 9.67858e-12 0.021266 0.000544042 3.21842e-11 0.0234315 0.0011703 5.31962e-11 0.0263211 0.00213627 1.0323e-10 0.0293702 0.00347485 1.25123e-10 0.0318783 0.00489458 1.14025e-10 0.033643 0.00676526 7.26229e-11 0.0347544 0.00837371 5.16879e-11 0.035489 0.00904916 4.27813e-11 0.0360636 0.00900299 4.9433e-11 0.0365244 0.00876377 5.3794e-11 0.0368786 0.00848993 5.60296e-11 0.0371521 0.00808341 6.56271e-11 0.0373702 0.00758767 6.7943e-11 0.037518 0.0070892 6.95093e-11 0.0375461 0.00659767 7.17491e-11 0.0375092 0.00608821 7.52874e-11 0.0374284 0.00559901 7.44856e-11 0.0373015 0.00514223 7.40172e-11 0.0371357 0.00470054 7.43878e-11 0.036945 0.00428102 7.50463e-11 0.0367303 0.00388599 7.44969e-11 0.0364983 0.0035255 7.46892e-11 0.0362372 0.00319133 7.33382e-11 0.0359302 0.00288276 7.12773e-11 0.0355866 0.00258918 7.01235e-11 0.0352247 0.00231111 7.90283e-11 0.0348351 0.00206423 7.8322e-11 0.0344147 0.00185001 7.39644e-11 0.0339704 0.00166649 7.03275e-11 0.0335126 0.00151144 6.57233e-11 0.0330525 0.00138341 6.35273e-11 0.0325843 0.00127946 6.13367e-11 0.0321204 0.00119629 5.68064e-11 0.0316625 0.0011317 5.22837e-11 0.0311926 0.00108177 5.08774e-11 0.0307024 0.00104136 5.26863e-11 0.0302029 0.00100768 5.76853e-11 0.029703 0.000979029 6.30368e-11 0.0291928 0.000950104 6.4185e-11 0.0286588 0.000918405 6.07028e-11 0.0280974 0.000882763 5.21204e-11 0.0275133 0.000838663 3.70826e-11 0.0269114 0.000785316 2.15324e-11 0.0262792 0.000722141 7.53756e-12 0.0255746 0.000649633 -6.63454e-12 0.0247249 0.000568822 -1.75858e-11 0.0236381 0.00048175 -2.48266e-11 0.0222402 0.000390573 -2.92488e-11 0.0205368 0.000299847 -2.9553e-11 0.0186588 0.000216036 -2.54885e-11 0.0168251 0.000145719 -1.89165e-11 0.0152328 9.26697e-05 -1.23361e-11 0.0139765 5.63796e-05 -7.29544e-12 0.0130536 3.34064e-05 -4.03308e-12 0.0124092 1.95928e-05 -2.11768e-12 0.0119749 1.15139e-05 -9.9744e-13 0.0116905 6.82741e-06 -4.76262e-13 0.0115078 4.124e-06 -1.98167e-13 0.0113918 2.5432e-06 -6.05523e-14 0.0113189 1.60014e-06 -3.93933e-16 0.0112733 1.0248e-06 2.13698e-14 0.011245 6.65832e-07 2.557e-14 0.0112274 4.37209e-07 2.27349e-14 0.0112167 2.89082e-07 1.78636e-14 0.0112101 1.91839e-07 1.30975e-14 0.0112061 1.27424e-07 9.18499e-15 0.0112036 8.45288e-08 6.24728e-15 0.0112022 5.59055e-08 4.16055e-15 0.0112013 3.68163e-08 2.73485e-15 0.0112008 2.41179e-08 1.78913e-15 0.0112005 1.57048e-08 1.17641e-15 0.0112003 1.01598e-08 7.87141e-16 0.0112002 6.52748e-09 5.4397e-16 0.0112001 4.16389e-09 3.94526e-16 0.0112001 2.63668e-09 3.03711e-16 0.0112001 1.65716e-09 2.49628e-16 0.0112001 1.03348e-09 2.17045e-16 0.0112 6.40003e-10 1.98821e-16 0.0112 3.91692e-10 1.86911e-16 2.34789e-10 1.80166e-16 0.0168033 3.40776e-14 0.0168051 4.97282e-14 0.0168078 6.65535e-14 0.0168119 8.84478e-14 0.0168178 1.22494e-13 0.0168262 1.62221e-13 0.0168384 2.09287e-13 0.0168556 2.75484e-13 0.0168796 3.74146e-13 0.0169125 4.69983e-13 0.0169574 5.27661e-13 0.0170181 5.21448e-13 0.0170987 4.49994e-13 0.0172041 1.8217e-13 0.0173409 -2.09436e-13 0.0175161 -1.05298e-12 0.017737 -2.01049e-12 0.0180149 -3.34185e-12 0.0183745 -4.19299e-12 0.0188651 -3.69707e-12 0.0195732 7.34374e-13 0.0206 1.19486e-11 0.0220443 2.98038e-11 0.0239221 5.86577e-11 0.0261999 8.90753e-11 0.028832 1.36892e-10 0.0316023 1.70369e-10 0.0342025 1.82405e-10 0.0364845 1.75959e-10 0.0384559 1.70992e-10 0.0401271 1.52302e-10 0.0414964 1.39019e-10 0.0425847 1.19752e-10 0.043418 9.81885e-11 0.0440061 7.77793e-11 0.0443596 6.32721e-11 0.0445682 4.20335e-11 0.0445618 3.1802e-11 0.0444343 2.10729e-11 0.0441685 1.67223e-11 0.0438053 7.41241e-12 0.0433686 3.36279e-12 0.0428663 2.04438e-12 0.0422866 -1.82909e-12 0.0416227 -4.64366e-12 0.0408899 -1.6071e-11 0.0401122 -1.71953e-11 0.0392995 -1.33939e-11 0.0384694 -5.83293e-12 0.0376393 1.38412e-12 0.0368208 8.7234e-12 0.036014 1.647e-11 0.0352203 2.4945e-11 0.0344411 2.88569e-11 0.0336631 3.60393e-11 0.0328775 4.62295e-11 0.0320827 5.72208e-11 0.0312838 7.25231e-11 0.0304866 8.2211e-11 0.0296844 8.50699e-11 0.028866 7.8653e-11 0.0280427 6.0198e-11 0.0272314 3.93141e-11 0.0264275 1.89109e-11 0.025591 9.78508e-13 0.0246461 -1.39722e-11 0.023497 -2.37614e-11 0.0220679 -2.95057e-11 0.0203626 -3.01132e-11 0.0185064 -2.58906e-11 0.0167075 -1.90744e-11 0.0151506 -1.23324e-11 0.0139231 -7.23604e-12 0.0130205 -3.95862e-12 0.0123892 -2.05117e-12 0.011963 -9.40215e-13 0.0116833 -4.4017e-13 0.0115035 -1.71976e-13 0.0113892 -4.2091e-14 0.0113173 1.21296e-14 0.0112723 2.96542e-14 0.0112443 3.09517e-14 0.011227 2.61829e-14 0.0112164 2.00477e-14 0.0112099 1.44675e-14 0.0112059 1.0037e-14 0.0112036 6.77313e-15 0.0112021 4.48297e-15 0.0112013 2.93139e-15 0.0112008 1.90825e-15 0.0112005 1.24825e-15 0.0112003 8.30343e-16 0.0112002 5.69885e-16 0.0112001 4.09991e-16 0.0112001 3.12913e-16 0.0112001 2.55073e-16 0.0112001 2.20279e-16 0.0112 2.00739e-16 0.0112 1.88036e-16 1.80721e-16 0.00965475 0.00861958 2.39609e-11 0.00623245 0.00343664 1.04442e-11 0.00472736 0.00149962 4.77631e-12 0.00411245 0.000617678 1.24326e-11 0.00399544 0.000112905 1.42553e-11 0.00424332 -0.00025327 1.66553e-11 0.00466728 -0.000409677 1.85704e-11 0.00494042 -0.000254875 4.13671e-12 0.00503737 -8.76257e-05 -1.2675e-11 0.00502701 1.56948e-05 -1.06582e-11 0.00496786 6.23367e-05 -9.00132e-12 0.00493163 3.42564e-05 -9.12282e-12 0.00492521 7.7046e-06 -9.71647e-12 0.00495951 -2.53419e-05 -9.07346e-12 0.00503032 -4.66066e-05 -2.37309e-14 0.00512016 -5.68461e-05 -1.7205e-11 0.00521613 -6.02188e-05 -1.63274e-11 0.00532166 -6.20019e-05 -2.28315e-11 0.00544242 -6.76872e-05 -3.19357e-11 0.00557889 -7.5428e-05 -3.97499e-11 0.00572811 -8.35685e-05 -4.24972e-11 0.00588378 -9.03793e-05 -4.23205e-11 0.00603686 -9.53503e-05 -4.12401e-11 0.00617936 -9.82442e-05 -3.52303e-11 0.00630623 -9.92255e-05 -2.97457e-11 0.00641812 -9.86051e-05 -2.85233e-11 0.0065225 -9.60194e-05 -1.58951e-11 0.00662075 -9.24785e-05 -4.88255e-12 0.00670333 -8.926e-05 -1.07215e-11 0.00676803 -8.47863e-05 -4.47073e-12 0.00682104 -7.82703e-05 -6.69566e-13 0.0068652 -7.20783e-05 3.31508e-12 0.00690129 -6.59207e-05 6.84824e-12 0.00693103 -5.9943e-05 9.80072e-12 0.00695825 -5.43866e-05 1.21975e-11 0.00698735 -4.96064e-05 1.47419e-11 0.00702091 -4.59226e-05 1.82003e-11 0.00705979 -4.35313e-05 2.38477e-11 0.00710537 -4.25641e-05 3.02558e-11 0.0071607 -4.3078e-05 3.49825e-11 0.00722943 -4.50619e-05 3.80134e-11 0.00731626 -4.8501e-05 4.1985e-11 0.00742377 -5.34998e-05 4.24587e-11 0.00754642 -5.99222e-05 4.01865e-11 0.00768501 -6.73607e-05 4.08582e-11 0.00788958 -7.68508e-05 3.83428e-11 0.008258 -7.98888e-05 4.35182e-11 0.00879589 -8.36737e-05 2.50753e-11 0.00947116 -9.3764e-05 2.7351e-11 0.0102529 -0.000108772 2.46837e-11 0.0111045 -0.000118746 1.80398e-11 0.0119974 -0.000125119 1.20409e-11 0.0129037 -0.000131921 5.8108e-12 0.0137967 -0.000138998 -4.03481e-13 0.0146551 -0.000146176 -4.91992e-12 0.0154637 -0.000153286 -1.7262e-11 0.0162087 -0.000160263 -2.28712e-11 0.0168751 -0.000167084 -2.37047e-11 0.0174481 -0.000173337 -2.14844e-11 0.0179187 -0.000178104 -1.9596e-11 0.0182936 -0.000180675 -1.97457e-11 0.0185978 -0.000180894 -2.05956e-11 0.0188489 -0.000179 -2.08152e-11 0.0190533 -0.000175192 -2.12813e-11 0.0192088 -0.00016967 -2.18914e-11 0.0192905 -0.000162589 -2.19392e-11 0.0192117 -0.000153781 -1.99121e-11 0.0186788 -0.000141311 -1.36037e-11 0.0179501 -0.00012186 1.7851e-11 0.0169523 -0.000104456 3.07837e-11 0.0158221 -8.55694e-05 2.63387e-11 0.0147294 -6.63885e-05 1.73524e-11 0.013792 -4.92875e-05 9.24035e-12 0.0130549 -3.54756e-05 3.86088e-12 0.0125101 -2.50491e-05 9.01474e-13 0.0121249 -1.74819e-05 -4.74007e-13 0.011861 -1.20701e-05 -9.48226e-13 0.0116848 -8.18159e-06 -9.60059e-13 0.0115694 -5.37274e-06 -7.90058e-13 0.0114948 -3.33058e-06 -5.7191e-13 0.0114458 -2.01653e-06 -3.47863e-13 0.0114117 -1.16672e-06 -1.50468e-13 0.0113854 -4.42612e-07 -1.62656e-14 0.0113627 9.59657e-08 5.45216e-14 0.0113415 4.15256e-07 8.12419e-14 0.0113211 5.68812e-07 8.10165e-14 0.0113016 6.0866e-07 6.771e-14 0.0112834 5.77678e-07 5.10821e-14 0.0112669 5.08559e-07 3.6686e-14 0.0112525 4.24337e-07 2.66486e-14 0.0112404 3.39806e-07 2.09271e-14 0.0112305 2.63302e-07 1.84479e-14 0.0112226 1.98562e-07 1.79394e-14 0.0112165 1.46355e-07 1.83497e-14 0.0112118 1.05875e-07 1.89867e-14 0.0112084 7.52456e-08 1.94872e-14 0.0112059 5.28305e-08 1.97368e-14 0.011204 3.64619e-08 1.97793e-14 0.0112028 2.47548e-08 1.93666e-14 1.64394e-08 1.91827e-14 0.0130293 0.0127328 8.90728e-12 0.00991364 0.00657399 8.60539e-13 0.00828178 0.00314167 7.54454e-12 0.00759422 0.00131575 5.99653e-12 0.00732378 0.000392662 7.11884e-12 0.00717241 -9.34033e-05 5.57588e-12 0.00703829 -0.000253829 4.13158e-12 0.00707739 -0.000268356 4.30342e-13 0.0072264 -0.000207529 2.80714e-12 0.00738736 -0.000111302 -1.18728e-12 0.00750239 -3.56176e-05 -8.34377e-12 0.00754102 6.98494e-06 -1.16025e-11 0.00754278 1.70973e-05 -1.14521e-11 0.0075292 3.41346e-07 -1.17726e-11 0.0075315 -3.27167e-05 -1.34125e-11 0.00755608 -6.11247e-05 -1.41868e-11 0.00760854 -8.4734e-05 -1.58476e-11 0.00768901 -0.000101905 -1.99526e-11 0.00778328 -0.000111157 -2.43923e-11 0.00788746 -0.000120627 -3.9118e-11 0.00800322 -0.00013285 -3.98443e-11 0.00813099 -0.000144566 -3.91669e-11 0.00826783 -0.000155293 -3.74034e-11 0.00840783 -0.000163789 -3.48131e-11 0.00854323 -0.000169942 -2.86569e-11 0.00866702 -0.000173523 -2.55268e-11 0.00877693 -0.000174503 -2.89375e-11 0.00887853 -0.000172784 -8.90675e-12 0.0089769 -0.00016921 -5.11363e-13 0.00906523 -0.00016531 -1.84712e-11 0.00913743 -0.000159908 -1.76613e-11 0.00920128 -0.000151505 5.24297e-12 0.00926351 -0.000142925 3.25737e-12 0.00932485 -0.000134524 4.37279e-12 0.00938309 -0.000126191 6.52621e-12 0.00943806 -0.000118459 8.93616e-12 0.00949248 -0.000111992 1.22078e-11 0.00954853 -0.000107147 1.68396e-11 0.00960406 -0.000104067 2.17257e-11 0.00965199 -0.000102843 2.54323e-11 0.00968578 -0.000103642 2.75435e-11 0.00970943 -0.000106549 2.87267e-11 0.00973904 -0.000111514 2.98646e-11 0.00978558 -0.000118772 2.98001e-11 0.0098534 -0.000128683 2.90253e-11 0.00995807 -0.000138224 3.09472e-11 0.0100915 -0.00014794 2.72345e-11 0.0102359 -0.000159735 1.82967e-11 0.0104489 -0.000169562 1.96051e-11 0.010824 -0.000178059 2.25956e-11 0.0113615 -0.000195578 7.05218e-12 0.0120182 -0.000211492 4.46572e-12 0.0127628 -0.000226507 6.22543e-14 0.0135664 -0.000240548 -5.8698e-12 0.0144042 -0.000253967 -1.46644e-11 0.0152504 -0.000266913 -2.26782e-11 0.0160773 -0.000279258 -2.64948e-11 0.0168547 -0.000290636 -2.61248e-11 0.0175526 -0.000300335 -2.32432e-11 0.0181478 -0.000307402 -1.91416e-11 0.0186336 -0.000311155 -1.81473e-11 0.0190247 -0.000311392 -1.83283e-11 0.0193328 -0.000308115 -1.84435e-11 0.0195618 -0.000301467 -1.86698e-11 0.019715 -0.000291779 -1.89153e-11 0.0197699 -0.000279392 -1.79561e-11 0.0196124 -0.000264102 -1.51483e-11 0.0191063 -0.0002433 -3.78292e-12 0.0183299 -0.00021615 2.51291e-11 0.0172658 -0.000184618 3.25765e-11 0.01607 -0.00015029 2.69372e-11 0.0149184 -0.000116272 1.7473e-11 0.0139316 -8.61683e-05 9.21756e-12 0.0131555 -6.18719e-05 3.82854e-12 0.012582 -4.34682e-05 9.15059e-13 0.0121766 -3.00566e-05 -3.91464e-13 0.0118989 -2.05053e-05 -8.79275e-13 0.0117125 -1.38091e-05 -1.0149e-12 0.0115891 -9.04411e-06 -7.41908e-13 0.0115078 -5.60526e-06 -5.1655e-13 0.0114542 -3.13787e-06 -3.66595e-13 0.0114175 -1.40817e-06 -1.68498e-13 0.0113896 -1.98722e-07 2.07626e-14 0.0113658 6.36052e-07 6.60685e-14 0.0113436 1.12254e-06 8.345e-14 0.0113225 1.33219e-06 8.10037e-14 0.0113025 1.34724e-06 6.72557e-14 0.0112839 1.24168e-06 5.06289e-14 0.0112672 1.07395e-06 3.63507e-14 0.0112526 8.85711e-07 2.64461e-14 0.0112404 7.03522e-07 2.0838e-14 0.0112305 5.41958e-07 1.84232e-14 0.0112226 4.0696e-07 1.79548e-14 0.0112164 2.99045e-07 1.8378e-14 0.0112118 2.15643e-07 1.90094e-14 0.0112084 1.5296e-07 1.95099e-14 0.0112058 1.06794e-07 1.97467e-14 0.011204 7.35715e-08 1.98035e-14 0.0112027 5.01457e-08 1.93631e-14 3.29272e-08 1.91729e-14 0.0165194 0.0143395 -1.12022e-11 0.0141113 0.00905328 -1.14227e-12 0.0120974 0.00520009 2.43716e-13 0.0105783 0.00285983 2.73216e-12 0.00951442 0.00148333 5.21881e-12 0.00878021 0.000667262 6.27254e-12 0.00835112 0.000205265 2.94326e-12 0.008148 -2.58183e-05 5.52675e-12 0.00817935 -0.000197527 6.11217e-12 0.00836094 -0.000253054 5.95938e-12 0.00858912 -0.00022171 4.42711e-12 0.00875322 -0.000127 1.81944e-12 0.0088596 -6.69345e-05 -8.14195e-12 0.00890641 -3.53641e-05 -4.99415e-12 0.00892249 -3.42769e-05 -1.05438e-11 0.00892632 -5.12417e-05 -1.07904e-11 0.00893231 -7.70815e-05 -1.39314e-11 0.00895748 -0.000105886 -1.52022e-11 0.00901435 -0.000132757 -2.74442e-11 0.00909963 -0.000151561 -4.43413e-11 0.00919589 -0.000166059 -3.82592e-11 0.00929878 -0.000183378 -4.08175e-11 0.00940892 -0.000199298 -3.8386e-11 0.00952637 -0.000213193 -3.45782e-11 0.00964866 -0.000224806 -3.08977e-11 0.00976977 -0.000233604 -2.92421e-11 0.00988399 -0.000239184 -2.48438e-11 0.00998962 -0.00024157 -2.23023e-11 0.0100896 -0.000241306 -1.59664e-11 0.0101895 -0.00023856 -3.68701e-12 0.0102886 -0.000233848 -1.45451e-11 0.0103798 -0.000227732 -2.94134e-11 0.0104653 -0.000219713 -1.27422e-12 0.0105517 -0.000210679 -2.66069e-12 0.0106423 -0.000201587 -2.12508e-12 0.010738 -0.000192724 -1.40163e-12 0.0108389 -0.00018479 -7.47108e-13 0.0109438 -0.000178687 3.39481e-12 0.0110471 -0.000174301 1.00548e-11 0.0111375 -0.000171382 1.27125e-11 0.0112008 -0.000170559 1.16409e-11 0.0112315 -0.000172521 1.22765e-11 0.0112388 -0.000176182 1.33374e-11 0.0112382 -0.000183015 1.30204e-11 0.01125 -0.000193253 1.2685e-11 0.011302 -0.000203775 1.34529e-11 0.0114057 -0.000215599 1.05643e-11 0.0115421 -0.000233164 6.76823e-12 0.0117175 -0.000248721 5.57167e-12 0.0119977 -0.000257794 2.61618e-12 0.0124353 -0.000270124 -4.34296e-13 0.0130032 -0.000294788 -7.29795e-12 0.0136648 -0.000314387 -9.21094e-12 0.014391 -0.00033254 -1.92142e-11 0.0151567 -0.000349466 -2.58408e-11 0.0159371 -0.000365129 -3.03433e-11 0.0167074 -0.000379327 -3.2479e-11 0.0174408 -0.000391946 -3.06e-11 0.0181056 -0.00040248 -2.60071e-11 0.0186735 -0.000410106 -2.0513e-11 0.0191333 -0.000413905 -1.74392e-11 0.0194966 -0.000413393 -1.68108e-11 0.0197729 -0.00040862 -1.67781e-11 0.0199668 -0.000399834 -1.66203e-11 0.0200796 -0.000387428 -1.6216e-11 0.0200845 -0.000371658 -1.37872e-11 0.0198609 -0.000352638 -7.36398e-12 0.01935 -0.000329657 7.99166e-12 0.018537 -0.000294728 3.61868e-11 0.0174356 -0.000252502 3.58919e-11 0.0162044 -0.000205628 2.73772e-11 0.01502 -0.000159063 1.71877e-11 0.014005 -0.000117822 8.90443e-12 0.0132066 -8.44858e-05 3.66551e-12 0.0126166 -5.91659e-05 8.74953e-13 0.0121996 -4.07029e-05 -3.8584e-13 0.0119141 -2.7613e-05 -9.54532e-13 0.0117226 -1.85522e-05 -9.28233e-13 0.011596 -1.2086e-05 -6.88995e-13 0.0115126 -7.36715e-06 -4.76881e-13 0.0114576 -3.89507e-06 -3.12976e-13 0.0114197 -1.45526e-06 -1.42156e-13 0.0113909 1.70576e-07 3.68927e-14 0.0113664 1.26791e-06 7.07816e-14 0.0113438 1.88144e-06 8.95726e-14 0.0113223 2.11601e-06 8.36472e-14 0.0113021 2.08678e-06 6.8073e-14 0.0112834 1.89627e-06 5.06548e-14 0.0112667 1.62564e-06 3.61461e-14 0.0112522 1.33278e-06 2.62621e-14 0.0112401 1.05427e-06 2.07471e-14 0.0112302 8.0969e-07 1.84215e-14 0.0112223 6.06616e-07 1.7995e-14 0.0112163 4.44913e-07 1.84412e-14 0.0112117 3.2035e-07 1.90626e-14 0.0112082 2.26914e-07 1.95495e-14 0.0112058 1.58484e-07 1.97887e-14 0.011204 1.09091e-07 1.97957e-14 0.0112027 7.4199e-08 1.93656e-14 4.89009e-08 1.91689e-14 0.0179748 0.0144782 -9.94968e-12 0.0165566 0.0105756 -1.81038e-12 0.0147018 0.00712388 7.65065e-14 0.0130225 0.00458474 -1.14418e-11 0.0117105 0.00283335 3.72067e-12 0.0107546 0.00166497 -1.17543e-11 0.010121 0.000884918 1.5936e-12 0.00973597 0.000391217 -5.63754e-12 0.00952343 7.98034e-05 -1.95198e-12 0.00941701 -9.64239e-05 -1.3162e-13 0.00940645 -0.000164317 1.76248e-12 0.00952317 -0.000199928 3.9043e-12 0.00966199 -0.000173438 2.56749e-12 0.00977885 -0.000125395 -1.074e-11 0.00985886 -9.18797e-05 -2.59241e-12 0.00990482 -7.56412e-05 -5.93391e-12 0.00993663 -7.70647e-05 -2.67855e-11 0.00995702 -9.50497e-05 -2.98016e-11 0.0099827 -0.000121982 -3.47705e-11 0.0100305 -0.0001519 -3.63937e-11 0.0101033 -0.000180472 -3.90852e-11 0.010198 -0.000205545 -4.38802e-11 0.0102882 -0.00022851 -3.89415e-11 0.0103797 -0.000249028 -3.71312e-11 0.0104786 -0.0002663 -3.37333e-11 0.0105863 -0.000281061 -3.06558e-11 0.0106996 -0.000292411 -2.91326e-11 0.0108151 -0.000300314 -2.48034e-11 0.0109323 -0.000304927 -1.83011e-11 0.0110526 -0.000305825 -1.83714e-11 0.0111778 -0.000303583 -2.38919e-11 0.0113091 -0.000298829 -1.99378e-11 0.0114467 -0.000292523 -1.51478e-11 0.0115895 -0.000285068 -1.61402e-11 0.0117355 -0.000277 -1.03379e-11 0.0118814 -0.000269103 -5.81992e-12 0.0120259 -0.000261509 -1.5463e-11 0.0121706 -0.000253934 -1.55318e-11 0.0123107 -0.000247899 -4.77181e-12 0.0124301 -0.000246369 1.69768e-12 0.0125147 -0.000247012 -2.10921e-12 0.0125634 -0.000246997 -1.22972e-11 0.0125813 -0.000248782 -7.61238e-12 0.0125789 -0.000255267 -7.14424e-12 0.0125744 -0.000264797 -6.73572e-12 0.012591 -0.000276291 -6.53759e-12 0.0126511 -0.000289286 -7.72505e-12 0.0127636 -0.000305603 -8.35854e-12 0.0129129 -0.000325109 -8.77032e-12 0.0131011 -0.000340914 -1.37471e-11 0.013388 -0.000351989 -2.06478e-11 0.0138224 -0.000367068 -2.36105e-11 0.0143738 -0.000391811 -2.86997e-11 0.0150034 -0.000411955 -3.33648e-11 0.015679 -0.000430811 -3.73569e-11 0.0163751 -0.000447619 -3.92013e-11 0.0170725 -0.00046253 -3.9211e-11 0.0177473 -0.000475417 -3.59913e-11 0.0183708 -0.000485752 -3.0436e-11 0.0189145 -0.000492932 -2.28753e-11 0.019362 -0.000496204 -1.76511e-11 0.0197181 -0.000494989 -1.6132e-11 0.019988 -0.00048908 -1.58845e-11 0.0201742 -0.000478479 -1.52281e-11 0.0202734 -0.000463498 -1.38048e-11 0.0202501 -0.000444555 -9.94507e-12 0.0200523 -0.000421553 -3.11198e-13 0.0196274 -0.000393071 2.31906e-11 0.0187423 -0.000353813 4.68279e-11 0.0176166 -0.000303733 3.79866e-11 0.0163628 -0.000247548 2.70313e-11 0.0151517 -0.000191526 1.63741e-11 0.0141089 -0.000141724 8.27274e-12 0.0132853 -0.00010132 3.28523e-12 0.0126745 -7.0619e-05 6.84471e-13 0.0122414 -4.83093e-05 -5.21058e-13 0.0119439 -3.25762e-05 -1.04542e-12 0.0117442 -2.15751e-05 -8.2918e-13 0.011612 -1.37142e-05 -6.34355e-13 0.0115246 -8.02991e-06 -4.23072e-13 0.0114663 -3.90501e-06 -2.37738e-13 0.0114258 -9.67817e-07 -9.02101e-14 0.0113951 1.01355e-06 5.49372e-14 0.011369 2.23938e-06 8.11096e-14 0.0113453 2.87077e-06 1.01031e-13 0.011323 3.04986e-06 8.94211e-14 0.0113023 2.91954e-06 7.04565e-14 0.0112833 2.60576e-06 5.13721e-14 0.0112664 2.20772e-06 3.6219e-14 0.0112518 1.79532e-06 2.61949e-14 0.0112397 1.41191e-06 2.07227e-14 0.0112299 1.0798e-06 1.84718e-14 0.0112221 8.0644e-07 1.80927e-14 0.011216 5.90091e-07 1.85376e-14 0.0112115 4.24082e-07 1.91511e-14 0.0112081 2.99965e-07 1.96191e-14 0.0112057 2.09067e-07 1.98065e-14 0.0112039 1.43754e-07 1.98275e-14 0.0112027 9.78511e-08 1.93632e-14 6.42347e-08 1.91527e-14 0.0181938 0.0146236 -3.80594e-11 0.0175264 0.0113753 -3.41618e-11 0.0163546 0.0084677 -1.02209e-11 0.0150082 0.00605967 -6.1007e-12 0.0137219 0.00421261 4.00237e-12 0.0126501 0.00281469 -1.13313e-11 0.0117742 0.00182734 -8.53287e-12 0.01112 0.00110798 -2.27633e-11 0.0106407 0.000617398 -1.87003e-11 0.0103293 0.000273364 -1.76217e-11 0.0101657 5.84295e-05 -1.8562e-11 0.0100931 -7.60988e-05 -6.76682e-12 0.0101114 -0.000144794 -5.38548e-12 0.0102084 -0.000181032 -5.82381e-12 0.0103227 -0.000173726 -4.94616e-12 0.0104199 -0.000139215 -3.50434e-12 0.0105006 -0.000120306 -6.76407e-12 0.0105654 -0.000118172 -2.87856e-11 0.0106236 -0.000129914 -3.60642e-11 0.0106826 -0.000152721 -3.71226e-11 0.0107445 -0.000182639 -4.07266e-11 0.0108127 -0.00021444 -4.20018e-11 0.010892 -0.000245106 -3.75087e-11 0.0109798 -0.000274363 -3.81444e-11 0.0110721 -0.000301043 -3.70816e-11 0.0111707 -0.000323249 -3.28006e-11 0.0112756 -0.000341511 -3.14026e-11 0.0113846 -0.000355417 -2.8517e-11 0.0114956 -0.000365069 -2.45002e-11 0.0116091 -0.000370145 -2.32671e-11 0.0117301 -0.000371598 -2.45516e-11 0.0118659 -0.000369957 -2.47548e-11 0.0120221 -0.000365896 -2.47164e-11 0.0121976 -0.00036016 -2.48395e-11 0.0123858 -0.000353432 -2.44159e-11 0.0125799 -0.00034617 -2.51431e-11 0.0127733 -0.000338825 -2.67006e-11 0.0129592 -0.000332281 -2.98382e-11 0.0131357 -0.000326933 -3.06359e-11 0.0133085 -0.000322736 -2.09721e-11 0.0134733 -0.000321669 -2.31698e-11 0.013608 -0.000324837 -3.48344e-11 0.0136983 -0.00032969 -4.26368e-11 0.0137534 -0.000334235 -3.09975e-11 0.0137895 -0.000342662 -3.09691e-11 0.0138244 -0.00035429 -3.05486e-11 0.0138782 -0.000368103 -3.09055e-11 0.0139721 -0.000383347 -3.05398e-11 0.0141104 -0.000401427 -3.19908e-11 0.0142782 -0.000421522 -3.36795e-11 0.0144853 -0.000436158 -3.643e-11 0.0147846 -0.000447162 -3.63361e-11 0.0152081 -0.000462904 -4.14368e-11 0.0157299 -0.000486021 -4.2962e-11 0.0163176 -0.000504197 -4.30539e-11 0.0169419 -0.000520494 -4.37849e-11 0.017574 -0.000534721 -4.18124e-11 0.0181855 -0.000546361 -3.73102e-11 0.01875 -0.000555273 -3.02376e-11 0.0192442 -0.000561022 -2.23895e-11 0.0196542 -0.00056271 -1.68358e-11 0.0199831 -0.000559575 -1.49205e-11 0.020233 -0.000551479 -1.45344e-11 0.020399 -0.000538667 -1.33682e-11 0.0204679 -0.000521534 -1.08206e-11 0.0204173 -0.000500567 -6.37363e-12 0.0202482 -0.000475259 7.20753e-12 0.0198305 -0.000443297 2.29045e-11 0.0189094 -0.000399791 5.41476e-11 0.017765 -0.000344006 3.84644e-11 0.0164922 -0.000280856 2.55453e-11 0.0152583 -0.000217471 1.49053e-11 0.0141915 -0.000160864 7.24014e-12 0.0133461 -0.000114824 2.6602e-12 0.0127175 -7.98399e-05 3.14933e-13 0.0122711 -5.43878e-05 -6.97769e-13 0.0119643 -3.64036e-05 -1.04939e-12 0.0117586 -2.37587e-05 -8.16729e-13 0.0116224 -1.47458e-05 -5.8648e-13 0.0115322 -8.23722e-06 -3.61674e-13 0.0114717 -3.5033e-06 -1.72542e-13 0.0114295 -1.66748e-07 -3.19472e-14 0.0113974 2.01675e-06 8.93246e-14 0.0113701 3.31264e-06 1.04376e-13 0.0113455 3.917e-06 1.12239e-13 0.0113226 4.0033e-06 9.4629e-14 0.0113015 3.74688e-06 7.22336e-14 0.0112824 3.29607e-06 5.15465e-14 0.0112655 2.7651e-06 3.58898e-14 0.011251 2.23293e-06 2.58702e-14 0.011239 1.74724e-06 2.05672e-14 0.0112293 1.33131e-06 1.84683e-14 0.0112216 9.91528e-07 1.81808e-14 0.0112157 7.2398e-07 1.86582e-14 0.0112112 5.19476e-07 1.92557e-14 0.0112079 3.66955e-07 1.96821e-14 0.0112055 2.55646e-07 1.98647e-14 0.0112038 1.75646e-07 1.98249e-14 0.0112026 1.19359e-07 1.93654e-14 7.84707e-08 1.91391e-14 0.0187298 0.0150158 -4.78725e-11 0.0179925 0.0121144 -2.71553e-11 0.0170557 0.00945635 -1.12523e-11 0.0160555 0.00717199 -2.0108e-11 0.0150131 0.00536819 -2.21772e-11 0.014061 0.0038988 -1.60981e-11 0.0132262 0.00279986 -7.62963e-12 0.0125246 0.00193644 -6.83893e-12 0.0119681 0.0013004 -9.0056e-12 0.0115197 0.000811963 -1.24776e-11 0.0112121 0.00045523 -1.67635e-11 0.011017 0.000198934 -2.02523e-11 0.0108954 2.90402e-05 9.12731e-13 0.0108354 -7.04572e-05 -7.26608e-12 0.010842 -0.000128037 -8.63535e-12 0.0109188 -0.000167025 -9.82705e-12 0.0110268 -0.000173578 -1.37784e-11 0.0111308 -0.000163235 -1.89726e-11 0.0112225 -0.000161135 -2.93378e-11 0.0113112 -0.000172733 -3.49955e-11 0.0113945 -0.000192656 -3.73313e-11 0.0114658 -0.000220756 -4.19636e-11 0.0115281 -0.000254135 -4.09933e-11 0.0115924 -0.000287852 -3.73282e-11 0.0116647 -0.000321128 -3.826e-11 0.0117447 -0.000352467 -3.97323e-11 0.011835 -0.000378388 -3.40782e-11 0.0119372 -0.000399702 -3.18841e-11 0.0120504 -0.000416029 -3.00117e-11 0.0121727 -0.000427574 -2.83844e-11 0.0123041 -0.000435547 -2.66877e-11 0.0124469 -0.000439139 -2.65118e-11 0.012606 -0.000439017 -2.71211e-11 0.0127847 -0.000435759 -2.70505e-11 0.0129822 -0.00043047 -2.75441e-11 0.013193 -0.000424351 -2.94518e-11 0.0134096 -0.00041798 -3.17238e-11 0.0136246 -0.000411931 -3.3385e-11 0.0138327 -0.000406894 -3.83869e-11 0.0140311 -0.000403287 -4.31743e-11 0.0142231 -0.00040112 -3.56946e-11 0.0144105 -0.000401481 -3.2661e-11 0.0145812 -0.000406293 -4.8608e-11 0.0147185 -0.000414669 -6.27923e-11 0.0148225 -0.000422926 -3.96642e-11 0.0149041 -0.000432403 -3.98386e-11 0.014977 -0.000445593 -4.01313e-11 0.0150592 -0.000460245 -4.01975e-11 0.0151717 -0.000475728 -4.17571e-11 0.0153211 -0.000493248 -4.30269e-11 0.0154953 -0.000510844 -4.10076e-11 0.015704 -0.000523628 -4.21072e-11 0.0159948 -0.00053343 -4.67818e-11 0.0163951 -0.000547944 -4.45379e-11 0.0168773 -0.000566356 -4.32055e-11 0.0174111 -0.000580951 -4.04197e-11 0.0179666 -0.000593251 -3.75815e-11 0.0185137 -0.000603057 -3.23927e-11 0.0190241 -0.000609788 -2.48625e-11 0.0194727 -0.0006134 -1.82774e-11 0.019842 -0.000612879 -1.35082e-11 0.020137 -0.000607844 -1.16276e-11 0.0203626 -0.000598437 -1.08032e-11 0.0205106 -0.00058398 -8.8882e-12 0.0205822 -0.000564543 -5.69344e-12 0.0205598 -0.000540967 1.79384e-13 0.0203932 -0.000512966 1.39898e-11 0.0199828 -0.000478184 2.48037e-11 0.0190568 -0.000431589 4.92676e-11 0.0179121 -0.000371704 3.51763e-11 0.0166309 -0.000303642 2.2879e-11 0.0153791 -0.000235136 1.28658e-11 0.0142896 -0.000173818 5.91443e-12 0.0134216 -0.000123876 1.85038e-12 0.0127737 -8.5858e-05 -8.9345e-14 0.0123121 -5.81711e-05 -9.22161e-13 0.0119943 -3.85105e-05 -1.0984e-12 0.011781 -2.46294e-05 -7.70733e-13 0.0116393 -1.4726e-05 -5.38273e-13 0.0115451 -7.59829e-06 -3.04663e-13 0.0114813 -2.47809e-06 -1.1779e-13 0.0114362 1.0822e-06 1.71477e-14 0.0114017 3.36323e-06 1.17412e-13 0.0113727 4.62512e-06 1.04043e-13 0.0113467 5.11233e-06 1.17678e-13 0.0113229 5.04328e-06 9.60612e-14 0.0113011 4.61846e-06 7.14941e-14 0.0112817 4.00388e-06 5.01413e-14 0.0112647 3.32464e-06 3.4636e-14 0.0112502 2.66504e-06 2.50633e-14 0.0112383 2.07412e-06 2.01855e-14 0.0112287 1.5741e-06 1.83894e-14 0.0112211 1.16888e-06 1.82537e-14 0.0112153 8.51587e-07 1.87782e-14 0.011211 6.09983e-07 1.93727e-14 0.0112077 4.30316e-07 1.97764e-14 0.0112054 2.99335e-07 1.98935e-14 0.0112037 2.05431e-07 1.98601e-14 0.0112025 1.39582e-07 1.93586e-14 9.15277e-08 1.91135e-14 0.0193149 0.0153585 -4.03055e-11 0.0185335 0.0128024 -2.6233e-11 0.0176017 0.0103442 -1.40767e-11 0.0166561 0.00815598 -6.64969e-12 0.0157474 0.00636653 -3.27364e-12 0.0148949 0.00489165 -2.04302e-12 0.014145 0.00372278 5.04706e-12 0.0134769 0.00278406 -9.50653e-12 0.0129314 0.00204051 -4.17238e-12 0.0124488 0.00145496 -1.40653e-11 0.0120655 0.00098525 -1.07951e-11 0.0117479 0.00063036 -5.69765e-12 0.0115286 0.00035509 -4.5912e-12 0.0113933 0.000154692 -1.6714e-11 0.0113221 2.58996e-05 -1.51601e-11 0.0113103 -6.7223e-05 -2.61398e-11 0.0113419 -0.000123382 -2.76055e-11 0.0114297 -0.000168759 -3.14719e-11 0.011548 -0.00019032 -3.91756e-11 0.011661 -0.000195816 -4.35211e-11 0.0117617 -0.000210991 -4.53082e-11 0.0118496 -0.00023737 -4.7778e-11 0.0119174 -0.000265652 -4.64977e-11 0.011967 -0.000299036 -4.27235e-11 0.012018 -0.000334916 -4.12734e-11 0.0120854 -0.000369881 -3.9493e-11 0.0121721 -0.00040296 -3.94417e-11 0.0122794 -0.000431277 -3.30137e-11 0.012405 -0.000455031 -3.09744e-11 0.0125444 -0.000474273 -3.00811e-11 0.0126937 -0.000489338 -2.91368e-11 0.0128513 -0.000499591 -2.85946e-11 0.0130185 -0.000505318 -2.79733e-11 0.0131995 -0.000507106 -3.04478e-11 0.0133992 -0.000505791 -3.07013e-11 0.0136183 -0.000502447 -3.19073e-11 0.0138521 -0.000497988 -3.44663e-11 0.0140925 -0.000493155 -3.77158e-11 0.0143323 -0.000488438 -3.88755e-11 0.0145668 -0.000484431 -4.05046e-11 0.0147925 -0.000482044 -4.70618e-11 0.0150084 -0.000481744 -5.01248e-11 0.0152186 -0.000483459 -3.32002e-11 0.0154222 -0.00048831 -3.54809e-11 0.0156049 -0.000497517 -5.96096e-11 0.015754 -0.000509126 -6.1883e-11 0.0158741 -0.000520027 -2.97295e-11 0.015977 -0.000532631 -3.77313e-11 0.0160824 -0.000546444 -4.2033e-11 0.0162129 -0.000560363 -4.34676e-11 0.0163719 -0.000576258 -4.3183e-11 0.0165515 -0.000590163 -4.40003e-11 0.0167711 -0.000599189 -4.25775e-11 0.0170704 -0.000606805 -4.05033e-11 0.0174574 -0.000619108 -3.88229e-11 0.017908 -0.000631656 -3.58555e-11 0.0183926 -0.000641569 -2.94038e-11 0.0188779 -0.000648736 -2.28365e-11 0.0193333 -0.000653071 -1.717e-11 0.0197327 -0.000654575 -1.04407e-11 0.0200605 -0.000652935 -6.11368e-12 0.0203257 -0.000645595 -5.77916e-12 0.0205359 -0.000631555 -5.71392e-12 0.0206665 -0.000612834 -3.93864e-12 0.0207193 -0.000590299 -6.04527e-13 0.0206909 -0.000564834 5.35008e-12 0.0205271 -0.000535867 1.80992e-11 0.0201148 -0.000501308 2.51408e-11 0.0191924 -0.000453273 4.66966e-11 0.0180483 -0.000390133 3.15169e-11 0.0167586 -0.000318617 1.96683e-11 0.0154894 -0.000246714 1.05317e-11 0.0143781 -0.000182289 4.40013e-12 0.0134889 -0.000129738 1.00052e-12 0.012823 -8.96611e-05 -5.51082e-13 0.0123475 -6.03749e-05 -1.12021e-12 0.0120198 -3.94701e-05 -1.12722e-12 0.0117995 -2.46629e-05 -7.4354e-13 0.011653 -1.40965e-05 -4.88855e-13 0.0115551 -6.50834e-06 -2.51185e-13 0.0114885 -1.07972e-06 -6.73755e-14 0.011441 2.56917e-06 5.52294e-14 0.0114044 4.8354e-06 1.30338e-13 0.0113738 5.99103e-06 1.05738e-13 0.0113466 6.31603e-06 1.16988e-13 0.0113221 6.06173e-06 9.29021e-14 0.0112999 5.45225e-06 6.77169e-14 0.0112803 4.66811e-06 4.69014e-14 0.0112634 3.84163e-06 3.23746e-14 0.011249 3.05934e-06 2.37505e-14 0.0112373 2.3695e-06 1.95906e-14 0.0112279 1.79178e-06 1.82326e-14 0.0112205 1.3269e-06 1.83235e-14 0.0112148 9.64681e-07 1.8924e-14 0.0112106 6.89853e-07 1.95048e-14 0.0112075 4.85991e-07 1.98644e-14 0.0112052 3.37739e-07 1.99451e-14 0.0112036 2.31581e-07 1.98784e-14 0.0112024 1.57122e-07 1.9353e-14 1.03054e-07 1.90852e-14 0.0200724 0.015707 -4.55027e-11 0.0192536 0.0134477 -3.97139e-11 0.0182943 0.0111846 -2.96095e-11 0.0173041 0.00910545 -1.17587e-11 0.0163876 0.00731689 9.69967e-13 0.0155495 0.00582937 7.18249e-12 0.0148183 0.0046076 2.0653e-11 0.0141697 0.0036124 1.73259e-11 0.0136067 0.00278862 1.56464e-11 0.0131021 0.00212095 1.05096e-11 0.0126685 0.00156757 7.13689e-12 0.0123133 0.00112695 -2.16721e-12 0.0120268 0.000772032 -1.11484e-11 0.0118428 0.000495563 -3.74145e-12 0.0117271 0.000281474 -1.53129e-11 0.0116768 0.000126508 -1.51242e-11 0.0116798 1.02465e-05 -2.64333e-11 0.0117041 -7.12588e-05 -3.66444e-11 0.011759 -0.000133257 -3.80925e-11 0.0118564 -0.000188577 -4.17327e-11 0.0119628 -0.000224706 -4.83377e-11 0.0120483 -0.000249816 -5.21793e-11 0.0121171 -0.000279462 -5.21106e-11 0.0121768 -0.000313708 -5.14626e-11 0.0122348 -0.000350651 -4.79739e-11 0.0123069 -0.000385516 -4.46178e-11 0.0124075 -0.000420016 -4.19415e-11 0.0125339 -0.000453938 -3.7926e-11 0.0126782 -0.000483967 -3.34379e-11 0.0128352 -0.000509355 -3.15554e-11 0.0130001 -0.000531005 -3.00116e-11 0.0131708 -0.000548268 -2.78038e-11 0.0133471 -0.000561034 -2.75424e-11 0.0135317 -0.000569255 -2.6313e-11 0.0137293 -0.000573757 -2.9332e-11 0.0139448 -0.000575288 -3.29021e-11 0.0141801 -0.000574281 -3.6396e-11 0.0144323 -0.000571619 -3.78909e-11 0.0146939 -0.000568177 -3.9917e-11 0.0149571 -0.000564615 -4.12578e-11 0.0152164 -0.000561572 -3.99054e-11 0.015468 -0.000559904 -3.85956e-11 0.0157089 -0.000560335 -4.10954e-11 0.0159388 -0.000562922 -4.17588e-11 0.0161609 -0.000567539 -3.00716e-11 0.0163708 -0.000575422 -3.7778e-11 0.0165536 -0.000587218 -4.77001e-11 0.0167019 -0.000599988 -3.53999e-11 0.0168253 -0.00061096 -3.44136e-11 0.0169466 -0.000621514 -3.67862e-11 0.0170879 -0.000632713 -3.75286e-11 0.0172499 -0.000644989 -3.7845e-11 0.0174325 -0.000654011 -3.6442e-11 0.0176628 -0.000657952 -3.3819e-11 0.0179679 -0.000662188 -3.19486e-11 0.0183403 -0.000671365 -2.6224e-11 0.0187533 -0.000678228 -2.0927e-11 0.0191768 -0.000682548 -1.53566e-11 0.0195802 -0.000684769 -9.7969e-12 0.0199357 -0.000684443 -4.54318e-12 0.0202327 -0.000678821 -4.31159e-12 0.0204778 -0.000666251 -3.70827e-13 0.0206608 -0.000649809 7.96072e-13 0.0207736 -0.000629204 2.45683e-12 0.0208178 -0.000605293 4.55965e-12 0.0207828 -0.000578315 1.1514e-11 0.0206196 -0.000548 2.25363e-11 0.0202278 -0.00051219 2.64489e-11 0.0193199 -0.000462926 4.22801e-11 0.0181833 -0.000397984 2.7745e-11 0.0168904 -0.000324813 1.6455e-11 0.0156069 -0.000251363 8.18393e-12 0.0144751 -0.00018551 2.89628e-12 0.0135646 -0.000131698 1.47488e-13 0.0128801 -9.05635e-05 -9.77647e-13 0.0123899 -6.04093e-05 -1.27681e-12 0.0120511 -3.88036e-05 -1.13999e-12 0.0118228 -2.34573e-05 -7.09552e-13 0.0116704 -1.25097e-05 -4.36593e-13 0.0115681 -4.69075e-06 -1.96943e-13 0.0114978 7.79858e-07 -2.45977e-14 0.0114472 4.40409e-06 8.49184e-14 0.0114081 6.53518e-06 1.36031e-13 0.0113755 7.48958e-06 1.04807e-13 0.0113469 7.58224e-06 1.12185e-13 0.0113215 7.09831e-06 8.69144e-14 0.0112988 6.27851e-06 6.22307e-14 0.011279 5.31201e-06 4.27608e-14 0.011262 4.3338e-06 2.97125e-14 0.0112478 3.42922e-06 2.23203e-14 0.0112362 2.64326e-06 1.90072e-14 0.011227 1.99157e-06 1.81355e-14 0.0112198 1.47078e-06 1.84488e-14 0.0112143 1.06699e-06 1.91068e-14 0.0112102 7.61681e-07 1.96664e-14 0.0112072 5.35817e-07 1.99771e-14 0.011205 3.71806e-07 1.99954e-14 0.0112034 2.54629e-07 1.98855e-14 0.0112023 1.72624e-07 1.93417e-14 1.12983e-07 1.90549e-14 0.0206562 0.0160617 -5.32543e-11 0.019876 0.0140565 -5.06814e-11 0.0190051 0.0119561 -4.74203e-11 0.0180762 0.0100006 -2.99189e-11 0.0171532 0.00826096 -1.09986e-11 0.0162969 0.00675616 1.39083e-12 0.0155186 0.00547894 8.96519e-12 0.0148104 0.00441134 1.95287e-11 0.0141758 0.0035198 2.18141e-11 0.0136163 0.00278136 1.79997e-11 0.0131336 0.00216612 1.00698e-11 0.0127393 0.0016613 6.00585e-12 0.0124151 0.00124678 -1.53535e-12 0.0121778 0.000907621 1.93352e-13 0.0119955 0.000632972 -1.42762e-11 0.0118812 0.000409654 -8.66291e-12 0.011817 0.000231275 -2.90683e-11 0.0117975 9.50183e-05 -2.88696e-11 0.0118176 -1.65698e-05 -3.77775e-11 0.0118516 -0.000100389 -3.91403e-11 0.0119097 -0.000171408 -4.37477e-11 0.0119888 -0.000234203 -5.01344e-11 0.0120731 -0.000282988 -5.65343e-11 0.0121624 -0.000322675 -5.38484e-11 0.0122608 -0.000360979 -5.28962e-11 0.0123763 -0.000401322 -4.94634e-11 0.0125135 -0.000440879 -4.62234e-11 0.0126743 -0.000476306 -4.43126e-11 0.0128501 -0.00050993 -3.87365e-11 0.0130305 -0.000541603 -3.21653e-11 0.013212 -0.000568057 -3.10636e-11 0.0133946 -0.000590451 -2.85662e-11 0.0135788 -0.000609055 -2.6249e-11 0.0137669 -0.000623469 -2.53627e-11 0.0139636 -0.000633768 -2.55989e-11 0.0141748 -0.000640456 -2.65713e-11 0.0144055 -0.000644057 -2.77812e-11 0.0146565 -0.00064518 -2.87052e-11 0.014925 -0.000644445 -2.93143e-11 0.0152051 -0.000642562 -2.94541e-11 0.0154892 -0.000640268 -3.02639e-11 0.0157706 -0.000638118 -2.98329e-11 0.0160451 -0.000636737 -2.80223e-11 0.0163098 -0.000637046 -2.80499e-11 0.0165611 -0.000639439 -2.99307e-11 0.0167997 -0.000643471 -2.97699e-11 0.0170288 -0.000649251 -2.6519e-11 0.0172393 -0.000658542 -2.87637e-11 0.0174127 -0.000670209 -3.12704e-11 0.0175521 -0.000678591 -2.98281e-11 0.0176851 -0.000683889 -3.0616e-11 0.0178323 -0.00069128 -3.12661e-11 0.0179944 -0.000698458 -2.97798e-11 0.0181816 -0.000700279 -2.77486e-11 0.0184226 -0.000699469 -2.47483e-11 0.0187316 -0.000701393 -2.11333e-11 0.0190856 -0.000705707 -1.52717e-11 0.0194543 -0.00070787 -1.0524e-11 0.0198109 -0.00070763 -4.80145e-12 0.0201331 -0.000703347 -2.43031e-12 0.020408 -0.000692469 8.76897e-13 0.0206291 -0.000677427 5.09707e-12 0.0207876 -0.000658833 5.39046e-12 0.0208837 -0.000636638 6.62882e-12 0.0209173 -0.000611217 7.82461e-12 0.0208772 -0.000582547 1.65585e-11 0.020718 -0.00055046 2.38917e-11 0.0203439 -0.000512881 2.85416e-11 0.0194474 -0.000462924 3.92032e-11 0.018315 -0.000397741 2.44375e-11 0.0170172 -0.000324417 1.34461e-11 0.0157191 -0.000250784 5.86355e-12 0.0145672 -0.000184689 1.38001e-12 0.013636 -0.0001306 -7.05931e-13 0.0129335 -8.91834e-05 -1.38536e-12 0.012429 -5.87423e-05 -1.41553e-12 0.0120796 -3.68674e-05 -1.13311e-12 0.0118436 -2.13057e-05 -6.60964e-13 0.0116856 -1.02267e-05 -3.73239e-13 0.011579 -2.38565e-06 -1.39297e-13 0.0115052 2.99211e-06 1.84834e-14 0.0114517 6.43412e-06 1.13127e-13 0.0114103 8.3215e-06 1.4211e-13 0.011376 9.00199e-06 1.0277e-13 0.0113462 8.82e-06 1.06311e-13 0.01132 8.08345e-06 8.03423e-14 0.011297 7.04483e-06 5.65816e-14 0.0112771 5.89682e-06 3.87219e-14 0.0112603 4.77287e-06 2.7281e-14 0.0112463 3.75419e-06 2.11394e-14 0.0112349 2.88068e-06 1.86358e-14 0.0112259 2.16291e-06 1.81987e-14 0.011219 1.59297e-06 1.86814e-14 0.0112137 1.15307e-06 1.93554e-14 0.0112097 8.21621e-07 1.9859e-14 0.0112068 5.77046e-07 2.00925e-14 0.0112047 3.99897e-07 2.00696e-14 0.0112033 2.73488e-07 1.9878e-14 0.0112022 1.85131e-07 1.93298e-14 1.21085e-07 1.90208e-14 0.0214685 0.0164602 -5.47057e-11 0.0207061 0.0146789 -5.64398e-11 0.0197988 0.0127464 -5.34665e-11 0.018891 0.0108697 -3.8192e-11 0.0179875 0.00917208 -2.32359e-11 0.0170866 0.00766197 -9.86648e-12 0.0162299 0.00634141 -9.06257e-13 0.0154556 0.0052085 7.3556e-12 0.0147662 0.00425128 3.96703e-12 0.0141629 0.00344704 8.75557e-12 0.0136434 0.00277834 7.38029e-12 0.0132102 0.0022206 5.97804e-12 0.0128554 0.00175602 -6.29275e-13 0.0125713 0.00136525 -3.29738e-12 0.012339 0.00103722 -1.14527e-11 0.0121613 0.000759377 -1.40042e-11 0.012034 0.00052727 -2.1698e-11 0.0119559 0.000331789 -2.15416e-11 0.0119318 0.000172681 -3.66227e-11 0.0119405 4.19536e-05 -3.90039e-11 0.0119786 -7.00223e-05 -4.2523e-11 0.0120248 -0.000159747 -4.90958e-11 0.0120982 -0.000237182 -4.97481e-11 0.0121989 -0.000304337 -5.11112e-11 0.0123246 -0.00036378 -5.32494e-11 0.0124687 -0.000414216 -5.20542e-11 0.0126275 -0.000458316 -4.93573e-11 0.0128037 -0.000499088 -4.8326e-11 0.0129951 -0.000539808 -4.5744e-11 0.0131958 -0.000577816 -3.99503e-11 0.0133978 -0.000607954 -3.42104e-11 0.0136028 -0.000634605 -3.34287e-11 0.013812 -0.000657284 -2.90818e-11 0.0140246 -0.000675427 -2.54525e-11 0.014241 -0.000690035 -2.28812e-11 0.014464 -0.000701084 -2.15918e-11 0.0146975 -0.00070865 -2.10955e-11 0.0149458 -0.000713269 -2.04364e-11 0.0152103 -0.00071547 -1.97443e-11 0.0154882 -0.000715774 -1.9299e-11 0.0157751 -0.000714649 -1.86944e-11 0.0160661 -0.000712698 -1.74071e-11 0.0163566 -0.000710642 -1.55128e-11 0.0166428 -0.000709157 -1.66369e-11 0.0169197 -0.000708776 -1.62986e-11 0.0171824 -0.000709809 -1.64839e-11 0.0174297 -0.000711777 -1.73886e-11 0.0176645 -0.000714421 -2.04254e-11 0.0178798 -0.000720432 -2.30117e-11 0.0180565 -0.000727583 -2.46711e-11 0.0181951 -0.000731313 -2.36108e-11 0.0183269 -0.000731448 -2.68857e-11 0.0184707 -0.000733526 -2.69141e-11 0.0186289 -0.000733797 -2.29343e-11 0.0188231 -0.000729232 -1.93647e-11 0.0190784 -0.000724172 -1.55037e-11 0.0193844 -0.000723747 -9.95615e-12 0.0197079 -0.000723182 -4.37384e-12 0.0200235 -0.000719516 5.06895e-13 0.0203129 -0.000710287 2.01723e-12 0.0205606 -0.000695909 8.73043e-12 0.0207591 -0.000678139 1.03745e-11 0.0209001 -0.000657299 1.04507e-11 0.0209815 -0.000633624 1.06449e-11 0.0210037 -0.000607239 1.38863e-11 0.0209575 -0.000578012 2.13898e-11 0.0208029 -0.000545235 2.61668e-11 0.0204444 -0.000506734 2.82674e-11 0.0195649 -0.000456367 3.58082e-11 0.018442 -0.00039121 2.10101e-11 0.0171435 -0.000318138 1.03753e-11 0.0158334 -0.000245107 3.48653e-12 0.0146628 -0.000179723 -1.65932e-13 0.0137115 -0.000126251 -1.55184e-12 0.012991 -8.52809e-05 -1.76157e-12 0.0124718 -5.51362e-05 -1.51609e-12 0.0121111 -3.34356e-05 -1.09597e-12 0.0118668 -1.80026e-05 -5.91247e-13 0.0117025 -7.07589e-06 -2.93752e-13 0.011591 5.38747e-07 -7.06754e-14 0.0115133 5.62469e-06 6.65471e-14 0.0114566 8.72104e-06 1.42762e-13 0.0114127 1.025e-05 1.53073e-13 0.0113764 1.05745e-05 1.01856e-13 0.0113454 1.00641e-05 1.01407e-13 0.0113184 9.04477e-06 7.46812e-14 0.0112951 7.77312e-06 5.18086e-14 0.0112751 6.43959e-06 3.54694e-14 0.0112584 5.17184e-06 2.54918e-14 0.0112446 4.04397e-06 2.04401e-14 0.0112336 3.08884e-06 1.85997e-14 0.0112249 2.31089e-06 1.84733e-14 0.0112181 1.69704e-06 1.90377e-14 0.011213 1.22549e-06 1.96677e-14 0.0112093 8.71445e-07 2.00808e-14 0.0112065 6.10935e-07 2.02234e-14 0.0112045 4.22638e-07 2.01226e-14 0.0112031 2.88584e-07 1.98795e-14 0.0112021 1.95074e-07 1.93066e-14 1.27323e-07 1.89791e-14 0.02209 0.016926 -5.48854e-11 0.0214588 0.0152387 -5.8112e-11 0.0206615 0.0135039 -5.59202e-11 0.0197828 0.0117324 -4.60167e-11 0.0188729 0.0100556 -3.27575e-11 0.0179544 0.00854175 -2.44042e-11 0.01705 0.00719517 -1.36032e-11 0.0161965 0.00601599 -6.14192e-12 0.0154251 0.00500174 1.03236e-12 0.0147592 0.0041407 1.79981e-12 0.0142014 0.00341732 -3.93944e-12 0.0137391 0.00280789 -6.98151e-12 0.0133511 0.00229411 -6.15792e-12 0.0130251 0.00185575 -5.99822e-12 0.0127517 0.00148055 -9.89845e-12 0.0125268 0.00115553 -1.28883e-11 0.0123556 0.000876001 -1.72144e-11 0.0122256 0.000634653 -2.05596e-11 0.0121504 0.000426923 -2.55187e-11 0.0121135 0.000248374 -3.26655e-11 0.0121089 9.68001e-05 -3.40622e-11 0.0121346 -3.46735e-05 -4.17569e-11 0.0121927 -0.000148154 -4.49673e-11 0.0122791 -0.000244209 -4.81155e-11 0.0123982 -0.000325027 -4.83994e-11 0.0125474 -0.000396928 -4.88054e-11 0.0127213 -0.000461615 -5.0325e-11 0.0129129 -0.000520341 -4.96042e-11 0.0131173 -0.000569107 -4.84817e-11 0.0133278 -0.00061047 -4.46865e-11 0.0135451 -0.000648968 -4.29399e-11 0.0137719 -0.00068612 -4.16831e-11 0.0140038 -0.000712974 -3.77952e-11 0.0142415 -0.000734387 -3.41069e-11 0.014485 -0.0007525 -2.96513e-11 0.0147308 -0.000765097 -2.61775e-11 0.0149794 -0.000773898 -2.33762e-11 0.0152347 -0.000779588 -2.04024e-11 0.0154989 -0.000782456 -1.76668e-11 0.0157708 -0.000783035 -1.56961e-11 0.0160493 -0.000781774 -1.38765e-11 0.0163336 -0.000779345 -1.32655e-11 0.0166215 -0.000776216 -1.2649e-11 0.0169101 -0.000772937 -1.37907e-11 0.0171966 -0.000769878 -1.31404e-11 0.0174768 -0.000767305 -1.47162e-11 0.0177439 -0.000766182 -1.48312e-11 0.0179942 -0.000765492 -1.72739e-11 0.0182303 -0.000765491 -2.58241e-11 0.0184442 -0.000767976 -2.20723e-11 0.0186179 -0.000770222 -1.63259e-11 0.0187564 -0.000767853 -2.03321e-11 0.0188889 -0.000762371 -3.15092e-11 0.0190285 -0.000759098 -2.18621e-11 0.0191869 -0.000753147 -1.44713e-11 0.0193947 -0.0007422 -1.06512e-11 0.0196635 -0.000734033 -4.8521e-12 0.0199585 -0.00072935 1.01943e-12 0.0202463 -0.000721033 3.5011e-12 0.0205036 -0.000708206 8.32893e-12 0.0207166 -0.000691221 1.31375e-11 0.0208878 -0.000670365 1.47688e-11 0.0210135 -0.000646371 1.53317e-11 0.0210843 -0.000620194 1.98523e-11 0.0210948 -0.00059231 2.37661e-11 0.0210372 -0.000562791 2.68122e-11 0.0208788 -0.000530729 2.87767e-11 0.0205323 -0.000493384 2.79902e-11 0.0196758 -0.000444441 3.23378e-11 0.0185645 -0.000378936 1.76848e-11 0.0172655 -0.000306508 7.26787e-12 0.0159435 -0.000234933 1.05317e-12 0.0147543 -0.000171166 -1.73454e-12 0.0137832 -0.000119107 -2.39207e-12 0.013045 -7.92361e-05 -2.11444e-12 0.0125116 -4.989e-05 -1.59125e-12 0.0121401 -2.87572e-05 -1.02199e-12 0.0118877 -1.37656e-05 -4.88992e-13 0.0117174 -3.24825e-06 -1.96694e-13 0.0116012 3.93088e-06 5.81676e-15 0.0115197 8.54813e-06 1.17763e-13 0.01146 1.11672e-05 1.72813e-13 0.0114137 1.22354e-05 1.63674e-13 0.0113757 1.21382e-05 1.00689e-13 0.0113436 1.12631e-05 9.71533e-14 0.0113161 9.94392e-06 6.99357e-14 0.0112926 8.43508e-06 4.79921e-14 0.0112727 6.9196e-06 3.30719e-14 0.0112562 5.51556e-06 2.43855e-14 0.0112428 4.28747e-06 2.02344e-14 0.011232 3.25968e-06 1.88905e-14 0.0112236 2.42962e-06 1.89466e-14 0.0112172 1.77876e-06 1.94982e-14 0.0112123 1.28116e-06 2.00319e-14 0.0112087 9.08938e-07 2.03202e-14 0.0112061 6.35892e-07 2.03535e-14 0.0112042 4.39075e-07 2.01679e-14 0.0112029 2.99251e-07 1.98735e-14 0.011202 2.01911e-07 1.92749e-14 1.31588e-07 1.89323e-14 0.0229559 0.0176378 -6.42761e-11 0.022298 0.0158526 -5.95412e-11 0.0215401 0.0142074 -5.81595e-11 0.0206357 0.012543 -5.49963e-11 0.0196982 0.0109132 -4.17473e-11 0.0187731 0.00938371 -3.57932e-11 0.0178705 0.00801365 -2.74121e-11 0.0170079 0.00681306 -1.92798e-11 0.0162109 0.00576532 -1.12216e-11 0.0155024 0.00486415 -8.90945e-12 0.0148882 0.0040919 -4.9446e-12 0.014364 0.00343209 -4.49697e-12 0.0139245 0.00286676 -8.13623e-12 0.0135529 0.00237949 -1.29717e-11 0.0132359 0.00195604 -1.36925e-11 0.0129724 0.00158756 -1.14824e-11 0.01276 0.00126569 -1.62749e-11 0.0125972 0.000982767 -1.66938e-11 0.0124798 0.00073415 -2.21553e-11 0.012398 0.000514178 -2.49004e-11 0.0123582 0.000320501 -2.97626e-11 0.0123451 0.000149224 -3.76039e-11 0.0123708 1.35043e-06 -3.62589e-11 0.0124414 -0.00013241 -4.0088e-11 0.0125507 -0.000247179 -4.32821e-11 0.0126944 -0.000345963 -4.51923e-11 0.0128621 -0.000432243 -4.82474e-11 0.0130481 -0.000507815 -4.84411e-11 0.0132508 -0.00057495 -4.86608e-11 0.0134759 -0.000638847 -4.91117e-11 0.0137071 -0.000692736 -4.75268e-11 0.0139406 -0.000733221 -4.81369e-11 0.0141802 -0.000766962 -4.7627e-11 0.0144357 -0.00080168 -4.77091e-11 0.0146996 -0.000826689 -4.26343e-11 0.0149655 -0.000840233 -3.94448e-11 0.0152369 -0.000850727 -3.57014e-11 0.0155112 -0.000855015 -3.11751e-11 0.0157849 -0.000855543 -2.57319e-11 0.0160577 -0.000852736 -2.23501e-11 0.0163313 -0.000847787 -1.89782e-11 0.0166066 -0.000841934 -1.64097e-11 0.0168842 -0.000835484 -1.49207e-11 0.0171636 -0.000828693 -1.49901e-11 0.0174449 -0.000822251 -1.51473e-11 0.0177278 -0.000816428 -1.52963e-11 0.0180071 -0.000811582 -1.71876e-11 0.0182745 -0.000808076 -1.99526e-11 0.0185259 -0.000804717 -2.13477e-11 0.0187596 -0.000801024 -2.14482e-11 0.0189633 -0.000798866 -1.89286e-11 0.0191236 -0.000795529 -1.90784e-11 0.0192541 -0.000787014 -2.91518e-11 0.0193807 -0.000777575 -2.04691e-11 0.019516 -0.000768163 -1.11629e-11 0.0196807 -0.00075402 -8.19149e-12 0.0199075 -0.000737482 -4.65288e-12 0.0201814 -0.000726373 3.28076e-12 0.020454 -0.000715529 8.34475e-12 0.0206869 -0.000700481 1.86709e-11 0.020867 -0.000681219 2.54157e-11 0.0210093 -0.000657354 2.6863e-11 0.0211175 -0.000629731 2.71909e-11 0.0211803 -0.000599896 2.78517e-11 0.0211871 -0.000568885 2.8927e-11 0.0211236 -0.000537356 3.05055e-11 0.0209632 -0.000504963 3.27702e-11 0.0206289 -0.000468947 2.99808e-11 0.019795 -0.000421778 3.14998e-11 0.0186894 -0.000357685 1.62318e-11 0.0173881 -0.000287903 4.85771e-12 0.0160539 -0.000219516 -1.10591e-12 0.0148463 -0.000158692 -3.14885e-12 0.0138556 -0.000109001 -3.12237e-12 0.0131 -7.09102e-05 -2.3789e-12 0.0125525 -4.2865e-05 -1.59707e-12 0.01217 -2.2699e-05 -9.08425e-13 0.0119094 -8.4781e-06 -3.62161e-13 0.0117327 1.33514e-06 -8.45271e-14 0.0116115 7.84092e-06 8.51322e-14 0.011526 1.18025e-05 1.73009e-13 0.0114631 1.3799e-05 2.0235e-13 0.0114143 1.42995e-05 1.73616e-13 0.0113747 1.37121e-05 1.00314e-13 0.0113415 1.2433e-05 9.40385e-14 0.0113135 1.07945e-05 6.64311e-14 0.0112898 9.04196e-06 4.53504e-14 0.0112701 7.34582e-06 3.1656e-14 0.0112539 5.81098e-06 2.40175e-14 0.0112408 4.48993e-06 2.05324e-14 0.0112304 3.39706e-06 1.94906e-14 0.0112224 2.5219e-06 1.9591e-14 0.0112162 1.84013e-06 2.00443e-14 0.0112116 1.32151e-06 2.04252e-14 0.0112082 9.35125e-07 2.05612e-14 0.0112057 6.52697e-07 2.04708e-14 0.0112039 4.49662e-07 2.01951e-14 0.0112027 3.05808e-07 1.98566e-14 0.0112018 2.0592e-07 1.92336e-14 1.33887e-07 1.88798e-14 0.0238473 0.018533 -5.148e-11 0.0230819 0.0166198 -5.2198e-11 0.0223748 0.0148838 -5.27464e-11 0.0215886 0.0132976 -5.41197e-11 0.0206587 0.0117494 -4.95503e-11 0.0196615 0.0102505 -3.75335e-11 0.0187023 0.0088554 -3.12876e-11 0.0178229 0.00761043 -2.72023e-11 0.0170292 0.00652944 -1.96788e-11 0.0163099 0.00559758 -1.67633e-11 0.0156646 0.00478722 -1.37982e-11 0.0150975 0.00408375 -1.17669e-11 0.0145999 0.00346996 -1.46962e-11 0.0141678 0.00293434 -8.48329e-12 0.0138011 0.00246513 -1.57727e-11 0.0134966 0.00205326 -9.81354e-12 0.0132498 0.00168997 -2.13038e-11 0.0130548 0.00136877 -1.01814e-11 0.0129036 0.00108281 -2.12264e-11 0.0127893 0.000825907 -1.96992e-11 0.0127122 0.000595296 -2.27195e-11 0.0126727 0.00038756 -2.90084e-11 0.0126701 0.000202223 -3.253e-11 0.012707 3.63309e-05 -3.80369e-11 0.0127925 -0.000115319 -3.88164e-11 0.0129173 -0.000246792 -4.01449e-11 0.013077 -0.000362526 -4.3172e-11 0.0132598 -0.000464269 -4.51035e-11 0.0134563 -0.00055472 -4.83431e-11 0.0136652 -0.00063226 -4.82594e-11 0.013881 -0.000702356 -4.92055e-11 0.014115 -0.00076965 -5.08272e-11 0.0143647 -0.000824288 -5.29996e-11 0.0146199 -0.000862252 -5.19545e-11 0.0148746 -0.000890672 -5.08191e-11 0.0151427 -0.000919292 -5.05313e-11 0.0154283 -0.000939692 -5.19547e-11 0.0157185 -0.000943377 -4.48455e-11 0.0160095 -0.000944218 -4.19481e-11 0.0162961 -0.000936998 -3.62914e-11 0.0165793 -0.000926684 -3.20915e-11 0.016858 -0.000913617 -2.85868e-11 0.0171312 -0.000899521 -2.62552e-11 0.0174001 -0.000885204 -2.53301e-11 0.0176707 -0.000871534 -2.40045e-11 0.0179453 -0.000859438 -2.09274e-11 0.018223 -0.000849274 -2.33399e-11 0.0184985 -0.00084142 -2.82472e-11 0.0187607 -0.000833613 -3.27367e-11 0.0190042 -0.000824638 -1.6261e-11 0.0192264 -0.000817928 -5.52431e-12 0.0194125 -0.000810772 -2.67368e-11 0.0195543 -0.00080076 -4.44143e-11 0.0196757 -0.00078658 -1.78929e-11 0.019799 -0.000773587 -8.44283e-12 0.0199355 -0.000758122 -3.74927e-12 0.0201165 -0.000737334 -3.22798e-12 0.0203598 -0.000717933 1.07339e-12 0.020624 -0.000704061 1.33588e-11 0.020851 -0.000687784 2.28412e-11 0.0210159 -0.00066703 2.64865e-11 0.0211317 -0.000641335 2.78378e-11 0.0212168 -0.00061116 2.8031e-11 0.0212707 -0.000577735 2.85237e-11 0.0212801 -0.000542489 2.93798e-11 0.0212244 -0.000506262 2.97077e-11 0.0210759 -0.000470092 3.0914e-11 0.0207548 -0.000431292 3.33802e-11 0.0199278 -0.000386995 3.40383e-11 0.0188177 -0.00032696 1.51964e-11 0.0175091 -0.000262759 2.53791e-12 0.0161607 -0.000199587 -3.18092e-12 0.0149344 -0.000142943 -4.46483e-12 0.0139245 -9.64035e-05 -3.76456e-12 0.013152 -6.06272e-05 -2.57787e-12 0.0125909 -3.43226e-05 -1.55195e-12 0.0121979 -1.54795e-05 -7.58605e-13 0.0119292 -2.3255e-06 -2.2728e-13 0.0117462 6.52317e-06 3.02103e-14 0.01162 1.21396e-05 1.65712e-13 0.0115306 1.52769e-05 2.21439e-13 0.0114647 1.65255e-05 2.26652e-13 0.0114137 1.63747e-05 1.81333e-13 0.0113726 1.52448e-05 1.01045e-13 0.0113386 1.35361e-05 9.18579e-14 0.0113102 1.15693e-05 6.39106e-14 0.0112866 9.57428e-06 4.36841e-14 0.0112672 7.70447e-06 3.1069e-14 0.0112513 6.04839e-06 2.42595e-14 0.0112387 4.64456e-06 2.1232e-14 0.0112287 3.49617e-06 2.03223e-14 0.011221 2.58442e-06 2.03528e-14 0.0112152 1.87885e-06 2.06345e-14 0.0112108 1.34498e-06 2.08199e-14 0.0112076 9.49003e-07 2.07925e-14 0.0112053 6.60567e-07 2.05812e-14 0.0112037 4.53958e-07 2.01659e-14 0.0112025 3.07991e-07 1.98314e-14 0.0112017 2.06896e-07 1.91909e-14 1.34228e-07 1.88272e-14 0.0251602 0.0197414 -6.83304e-11 0.0240981 0.0176286 -5.57427e-11 0.0231979 0.0157288 -5.58354e-11 0.0223702 0.0140681 -4.79744e-11 0.0215268 0.0125241 -5.05531e-11 0.0206296 0.0110868 -3.80283e-11 0.0196762 0.00972435 -3.26622e-11 0.0187435 0.0084662 -2.86237e-11 0.0178968 0.0073415 -2.59494e-11 0.0171499 0.00635949 -2.2884e-11 0.0164838 0.00550447 -2.3381e-11 0.015881 0.00475727 -1.52448e-11 0.0153407 0.00409869 -2.14116e-11 0.0148644 0.00351797 -8.26506e-12 0.014452 0.00300439 -2.47305e-11 0.0141024 0.00255096 -2.69406e-12 0.0138144 0.00214801 -2.52164e-11 0.0135856 0.00178944 -5.83819e-12 0.0134047 0.00146725 -2.18005e-11 0.0132653 0.00117627 -1.41466e-11 0.0131644 0.000912184 -1.80801e-11 0.0131014 0.000671896 -2.19604e-11 0.0130786 0.000452629 -2.36387e-11 0.0131011 0.000254917 -2.52437e-11 0.0131578 7.38281e-05 -3.26062e-11 0.0132556 -9.35127e-05 -3.34901e-11 0.013389 -0.000241824 -3.66634e-11 0.0135531 -0.000373631 -3.89407e-11 0.0137342 -0.000491328 -4.29107e-11 0.0139292 -0.00059527 -4.46983e-11 0.0141426 -0.000687414 -4.81846e-11 0.0143545 -0.000766226 -4.99062e-11 0.0145666 -0.000837108 -5.02384e-11 0.0148035 -0.000902972 -5.05959e-11 0.0150621 -0.000954833 -5.12714e-11 0.0153234 -0.000988527 -5.24788e-11 0.0155887 -0.00100768 -5.47881e-11 0.0158678 -0.00102778 -5.20922e-11 0.0161672 -0.00104007 -5.68523e-11 0.0164689 -0.00103501 -4.496e-11 0.0167647 -0.00102253 -4.92763e-11 0.0170516 -0.00100459 -4.52186e-11 0.0173313 -0.000982022 -4.31711e-11 0.0176063 -0.000956963 -4.66785e-11 0.0178767 -0.000932319 -4.00818e-11 0.0181472 -0.000909408 -3.53152e-11 0.0184219 -0.000889344 -3.63384e-11 0.0186963 -0.000872249 -3.59377e-11 0.018963 -0.000857275 -3.39568e-11 0.019216 -0.000844384 -2.94601e-11 0.0194474 -0.00083069 -1.93237e-11 0.0196475 -0.000816313 -2.65859e-11 0.0198058 -0.000802478 -3.93491e-11 0.0199294 -0.000786337 -3.18772e-11 0.0200435 -0.000768778 -7.0503e-12 0.0201612 -0.000751854 -7.09795e-12 0.0203049 -0.000729631 -1.36889e-12 0.0205093 -0.000704367 6.58827e-12 0.02076 -0.000684504 1.08673e-11 0.020992 -0.000667386 1.76054e-11 0.0211588 -0.000646433 2.55009e-11 0.0212591 -0.000620739 2.90906e-11 0.0213213 -0.000590047 2.96814e-11 0.0213587 -0.000554913 3.07379e-11 0.0213689 -0.000516257 3.21125e-11 0.0213308 -0.00047545 3.33828e-11 0.0212044 -0.000433132 3.38752e-11 0.0208992 -0.00039032 3.02491e-11 0.0200659 -0.000344816 3.60487e-11 0.0189449 -0.000290955 1.40317e-11 0.0176267 -0.000234126 -1.45213e-14 0.0162642 -0.000176903 -5.33107e-12 0.01502 -0.00012479 -5.73547e-12 0.0139919 -8.1701e-05 -4.30504e-12 0.0132031 -4.85655e-05 -2.66376e-12 0.0126288 -2.4323e-05 -1.45279e-12 0.0122253 -7.12689e-06 -5.99437e-13 0.0119484 4.63656e-06 -6.49584e-14 0.011759 1.22721e-05 1.51517e-13 0.0116277 1.6784e-05 2.50367e-13 0.0115343 1.89318e-05 2.6694e-13 0.0114654 1.93163e-05 2.53691e-13 0.0114123 1.84369e-05 1.76979e-13 0.0113699 1.6721e-05 1.10753e-13 0.0113352 1.45632e-05 9.1424e-14 0.0113066 1.22632e-05 6.27061e-14 0.0112832 1.00298e-05 4.31524e-14 0.011264 7.99501e-06 3.1345e-14 0.0112486 6.22822e-06 2.5083e-14 0.0112365 4.7522e-06 2.22752e-14 0.0112269 3.55807e-06 2.13312e-14 0.0112196 2.61816e-06 2.11816e-14 0.0112141 1.89581e-06 2.12291e-14 0.01121 1.35233e-06 2.11998e-14 0.0112071 9.51117e-07 2.09896e-14 0.0112049 6.60113e-07 2.0643e-14 0.0112034 4.52346e-07 2.0191e-14 0.0112023 3.06073e-07 1.97637e-14 0.0112015 2.05071e-07 1.91164e-14 1.3268e-07 1.87613e-14 0.026348 0.0209671 -2.93517e-11 0.0252815 0.0188031 -7.83466e-11 0.0242744 0.016778 -6.31287e-11 0.0233392 0.0149744 -5.53897e-11 0.0224252 0.0133744 -5.14685e-11 0.0215149 0.011925 -4.12901e-11 0.0206061 0.0105817 -3.64339e-11 0.019707 0.00933603 -3.00623e-11 0.0188486 0.00819374 -2.52319e-11 0.018058 0.00716311 -2.27595e-11 0.0173468 0.00625387 -2.09545e-11 0.0167085 0.00545609 -2.12024e-11 0.0161326 0.00475197 -2.46931e-11 0.0156182 0.00412793 -1.4157e-11 0.0151684 0.00357293 -2.33674e-11 0.0147826 0.00307928 -9.18089e-12 0.0144608 0.00263847 -2.05813e-11 0.0141945 0.0022437 -9.03734e-12 0.0139813 0.00188637 -1.56702e-11 0.0138151 0.00156277 -1.29528e-11 0.0136921 0.00126606 -1.44612e-11 0.0136138 0.000995387 -1.55497e-11 0.0135771 0.000746734 -1.75162e-11 0.013582 0.000518438 -1.86857e-11 0.0136281 0.000309236 -2.19505e-11 0.0137025 0.000115786 -2.4134e-11 0.0138091 -6.43348e-05 -2.87063e-11 0.0139491 -0.000228935 -3.108e-11 0.0141091 -0.000376158 -3.39554e-11 0.0142811 -0.000508008 -3.85613e-11 0.0144668 -0.000625571 -3.94172e-11 0.0146661 -0.000729263 -4.31671e-11 0.0148657 -0.000820397 -4.59048e-11 0.0150609 -0.000895818 -4.62407e-11 0.0152747 -0.000965509 -4.69099e-11 0.0155075 -0.00102731 -4.95848e-11 0.0157657 -0.00107202 -5.04943e-11 0.0160344 -0.00109865 -5.33935e-11 0.0163032 -0.00110696 -4.50061e-11 0.0165902 -0.00111528 -5.0592e-11 0.0168798 -0.00111528 -5.61516e-11 0.0171718 -0.00110292 -5.33667e-11 0.0174572 -0.0010789 -4.63253e-11 0.0177371 -0.00104875 -5.70568e-11 0.0180173 -0.00101479 -7.53845e-11 0.0182974 -0.000980715 -4.36101e-11 0.018576 -0.000947263 -5.85604e-11 0.0188556 -0.000916057 -5.80458e-11 0.0191309 -0.000889023 -3.3093e-11 0.0193904 -0.000864417 -2.78616e-11 0.0196292 -0.000841765 -3.53917e-11 0.019843 -0.000820894 -3.33265e-11 0.0200173 -0.000800636 -1.59809e-11 0.0201507 -0.000778266 -5.77056e-12 0.0202646 -0.000755875 -2.27672e-11 0.0203744 -0.000734789 -1.27418e-11 0.0204902 -0.000712246 -3.65829e-12 0.0206498 -0.000683693 1.02718e-11 0.0208733 -0.000656851 1.55627e-11 0.021108 -0.000637109 1.41506e-11 0.02129 -0.000615885 2.18548e-11 0.0213961 -0.000591172 2.65623e-11 0.021443 -0.000561972 2.79765e-11 0.0214572 -0.000527878 2.97326e-11 0.0214551 -0.000488845 3.22011e-11 0.021423 -0.000445532 3.42404e-11 0.0213152 -0.000399433 3.35725e-11 0.0210224 -0.000352233 3.0227e-11 0.0201775 -0.000304823 3.31722e-11 0.0190564 -0.000257419 9.56481e-12 0.0177344 -0.000206288 -3.68579e-12 0.0163608 -0.000153536 -7.7231e-12 0.0151005 -0.0001052 -6.96588e-12 0.0140553 -6.53682e-05 -4.78767e-12 0.0132511 -3.50128e-05 -2.71887e-12 0.0126641 -1.30714e-05 -1.31069e-12 0.0122503 2.17063e-06 -3.98035e-13 0.0119654 1.22642e-05 9.68408e-14 0.0117696 1.84299e-05 2.69388e-13 0.0116335 2.16442e-05 3.25702e-13 0.0115363 2.26603e-05 3.1003e-13 0.0114647 2.20822e-05 2.73125e-13 0.0114097 2.04195e-05 1.82207e-13 0.0113661 1.80926e-05 1.12342e-13 0.011331 1.5479e-05 9.11582e-14 0.0113025 1.28515e-05 6.246e-14 0.0112793 1.03917e-05 4.35067e-14 0.0112606 8.20627e-06 3.22762e-14 0.0112458 6.34322e-06 2.63186e-14 0.0112341 4.80831e-06 2.35375e-14 0.0112251 3.57997e-06 2.24261e-14 0.0112182 2.62149e-06 2.20187e-14 0.0112131 1.8901e-06 2.18001e-14 0.0112092 1.34309e-06 2.15334e-14 0.0112065 9.41315e-07 2.11518e-14 0.0112045 6.51159e-07 2.06804e-14 0.0112031 4.44856e-07 2.01528e-14 0.0112021 3.00121e-07 1.96911e-14 0.0112014 2.00493e-07 1.90371e-14 1.29354e-07 1.86932e-14 0.0277493 0.0216762 -5.7904e-12 0.0265585 0.0201093 -7.23034e-11 0.0253668 0.0179885 -6.14665e-11 0.0243277 0.0160221 -5.44423e-11 0.0234175 0.0143112 -4.82945e-11 0.0225407 0.0128185 -4.14558e-11 0.0216526 0.0114573 -3.31189e-11 0.0207582 0.0102122 -3.11815e-11 0.0198578 0.00906069 -2.45291e-11 0.0189987 0.00799676 -2.48187e-11 0.0182283 0.00703549 -2.26214e-11 0.0175498 0.00617778 -2.15246e-11 0.0169476 0.00542618 -2.32798e-11 0.0164108 0.00475987 -1.96228e-11 0.0159363 0.00416773 -2.15454e-11 0.0155251 0.0036367 -1.56076e-11 0.0151732 0.00316077 -1.63123e-11 0.0148783 0.00272994 -1.28395e-11 0.0146359 0.00233981 -1.17773e-11 0.0144416 0.00198273 -1.10737e-11 0.0142972 0.0016561 -1.04413e-11 0.0142002 0.00135555 -1.15248e-11 0.014151 0.00107885 -1.23003e-11 0.0141442 0.000823233 -1.38075e-11 0.0141774 0.000586697 -1.52337e-11 0.0142439 0.000367539 -1.71773e-11 0.0143319 0.000163301 -2.00358e-11 0.0144427 -2.61679e-05 -2.20342e-11 0.0145811 -0.000205301 -2.46306e-11 0.0147328 -0.000365748 -2.83182e-11 0.0148904 -0.000510099 -3.11077e-11 0.015061 -0.000638883 -3.26025e-11 0.0152357 -0.000753321 -3.69724e-11 0.0154091 -0.000852971 -3.57955e-11 0.0155939 -0.000937432 -3.9834e-11 0.0157844 -0.00100811 -4.01422e-11 0.0159857 -0.00107526 -4.10262e-11 0.0162137 -0.00112804 -4.08035e-11 0.0164685 -0.00116315 -4.17879e-11 0.0167397 -0.00117901 -5.1674e-11 0.0170104 -0.00118213 -4.38428e-11 0.0172749 -0.00117202 -3.21659e-11 0.0175443 -0.00116149 -2.97814e-11 0.017817 -0.0011394 -7.80898e-11 0.0180912 -0.00110447 -5.40988e-11 0.0183714 -0.00106578 -4.02999e-11 0.0186602 -0.00102351 -4.6727e-11 0.0189521 -0.000981348 -5.22671e-11 0.0192413 -0.000939842 -4.51906e-11 0.0195201 -0.000900668 -3.95115e-11 0.0197775 -0.000864312 -5.22874e-11 0.0200032 -0.0008313 -3.2933e-11 0.0201952 -0.000800881 7.01458e-12 0.02035 -0.000772255 7.12736e-12 0.0204747 -0.000740504 -3.6059e-11 0.0205881 -0.000711108 -1.11825e-11 0.0206931 -0.000685154 -2.04164e-13 0.0208109 -0.000655578 1.25001e-11 0.0209865 -0.000622368 2.94487e-11 0.0212097 -0.00059512 2.83278e-11 0.0214073 -0.000573295 2.5936e-11 0.021532 -0.000548655 3.01127e-11 0.021584 -0.000521396 3.07529e-11 0.0215838 -0.000490202 3.21124e-11 0.0215552 -0.000454227 3.42379e-11 0.0214964 -0.000413006 3.48659e-11 0.0213798 -0.000367537 3.47531e-11 0.0210853 -0.0003209 2.91169e-11 0.0202496 -0.00027443 2.52106e-11 0.0191503 -0.000229817 2.54011e-12 0.017834 -0.000180219 -8.11572e-12 0.0164531 -0.000129536 -1.02283e-11 0.0151783 -8.4009e-05 -8.10455e-12 0.0141167 -4.72698e-05 -5.25381e-12 0.0132973 -1.98853e-05 -2.74396e-12 0.0126976 -5.83307e-07 -1.10454e-12 0.0122737 1.23599e-05 -1.67292e-13 0.0119807 2.0472e-05 2.54938e-13 0.0117786 2.4911e-05 3.82288e-13 0.0116376 2.66322e-05 3.95645e-13 0.0115368 2.63832e-05 3.4703e-13 0.0114626 2.47638e-05 2.89354e-13 0.011406 2.22734e-05 1.88971e-13 0.0113617 1.93244e-05 1.14464e-13 0.0113263 1.62603e-05 9.1952e-14 0.0112979 1.33194e-05 6.32503e-14 0.0112752 1.0651e-05 4.46892e-14 0.0112571 8.33336e-06 3.37605e-14 0.0112428 6.39111e-06 2.78615e-14 0.0112317 4.81218e-06 2.49268e-14 0.0112232 3.56204e-06 2.35358e-14 0.0112168 2.59504e-06 2.28161e-14 0.011212 1.8625e-06 2.23074e-14 0.0112084 1.31801e-06 2.18092e-14 0.0112059 9.20251e-07 2.12584e-14 0.0112041 6.34354e-07 2.06833e-14 0.0112028 4.31931e-07 2.00858e-14 0.0112019 2.90479e-07 1.95982e-14 0.0112013 1.93436e-07 1.89444e-14 1.24401e-07 1.86214e-14 0.0291086 0.0207365 4.68723e-11 0.0280508 0.0211754 1.04119e-11 0.0267855 0.0193016 -5.62081e-11 0.0255588 0.0172481 -4.81413e-11 0.0244808 0.0154036 -4.32346e-11 0.0235263 0.0137993 -3.68676e-11 0.0226368 0.0123782 -3.02542e-11 0.0217744 0.0110944 -2.49278e-11 0.0209221 0.00991989 -2.51512e-11 0.0200722 0.00884637 -2.35064e-11 0.0192345 0.00785707 -2.55027e-11 0.0184694 0.00695364 -2.20748e-11 0.0178059 0.00614316 -2.315e-11 0.0172354 0.00542376 -2.25845e-11 0.0167401 0.00478878 -2.30685e-11 0.0163099 0.00422238 -1.96208e-11 0.0159383 0.00371241 -1.63917e-11 0.0156214 0.00324918 -1.35987e-11 0.0153554 0.00282618 -1.01676e-11 0.0151408 0.00243765 -9.68287e-12 0.0149755 0.00208064 -8.21264e-12 0.0148618 0.00175071 -8.89752e-12 0.0147992 0.00144672 -8.94979e-12 0.0147826 0.0011648 -9.74154e-12 0.0148049 0.000903228 -1.12212e-11 0.0148606 0.000659432 -1.25348e-11 0.0149426 0.000431639 -1.39587e-11 0.0150394 0.000219304 -1.66682e-11 0.0151473 2.29958e-05 -1.8494e-11 0.0152787 -0.000170729 -1.9171e-11 0.0154162 -0.000341474 -2.10285e-11 0.0155564 -0.000495546 -2.23321e-11 0.0157037 -0.000633229 -2.42207e-11 0.0158475 -0.000755618 -2.6409e-11 0.0159937 -0.000861447 -2.63269e-11 0.0161578 -0.000952543 -2.88501e-11 0.0163263 -0.00102724 -2.65252e-11 0.0164991 -0.00109239 -2.6068e-11 0.0166957 -0.00115099 -2.52131e-11 0.0169183 -0.00119412 -2.50534e-11 0.0171708 -0.0012181 -2.51273e-11 0.0174224 -0.0012255 -1.70701e-11 0.0176707 -0.00121628 -1.11038e-11 0.017912 -0.00119662 -4.67149e-11 0.0181575 -0.00116846 -3.68901e-11 0.0184184 -0.00113799 -7.29136e-12 0.0186966 -0.00109922 -2.18214e-11 0.0189888 -0.00105263 -3.06719e-11 0.019288 -0.0010034 -2.7647e-11 0.0195835 -0.000953212 -4.49491e-11 0.0198634 -0.000904158 -2.70461e-11 0.020115 -0.000856867 1.63681e-12 0.0203291 -0.000812173 -2.03604e-12 0.0205067 -0.00077002 -3.41458e-11 0.0206542 -0.000729694 -9.05646e-12 0.0207807 -0.000689371 4.28221e-12 0.020892 -0.000653191 9.94872e-12 0.020991 -0.000620352 2.39368e-11 0.0211152 -0.000583286 3.56327e-11 0.0213034 -0.000546751 3.79017e-11 0.0215101 -0.000518581 3.57274e-11 0.0216629 -0.000492121 3.63176e-11 0.0217297 -0.000465394 3.64948e-11 0.0217218 -0.000437502 3.69422e-11 0.0216679 -0.000407309 3.76354e-11 0.021567 -0.000373036 3.62433e-11 0.0213942 -0.000334019 3.3072e-11 0.0210865 -0.000292734 2.44444e-11 0.0203009 -0.000249791 8.86973e-12 0.0192375 -0.000203576 -7.28762e-12 0.0179305 -0.000152795 -1.34603e-11 0.0165427 -0.000103137 -1.29598e-11 0.0152532 -6.03336e-05 -9.39158e-12 0.014175 -2.70276e-05 -5.34274e-12 0.0133405 -3.08213e-06 -2.56261e-12 0.0127282 1.3096e-05 -8.78707e-13 0.0122942 2.33266e-05 7.3468e-14 0.0119932 2.91094e-05 4.00914e-13 0.011785 3.15621e-05 4.81098e-13 0.0116395 3.1611e-05 4.55607e-13 0.0115354 2.99831e-05 3.77111e-13 0.011459 2.72678e-05 3.0056e-13 0.0114012 2.39348e-05 2.02519e-13 0.0113562 2.03701e-05 1.17282e-13 0.0113209 1.6875e-05 9.38193e-14 0.0112929 1.36458e-05 6.48507e-14 0.0112707 1.07946e-05 4.64543e-14 0.0112533 8.36849e-06 3.55952e-14 0.0112397 6.36766e-06 2.95616e-14 0.0112292 4.76183e-06 2.63399e-14 0.0112213 3.50364e-06 2.45952e-14 0.0112153 2.53886e-06 2.35325e-14 0.0112109 1.81341e-06 2.27334e-14 0.0112076 1.27763e-06 2.20145e-14 0.0112053 8.88453e-07 2.13125e-14 0.0112036 6.10116e-07 2.06418e-14 0.0112025 4.1397e-07 2.00013e-14 0.0112017 2.7746e-07 1.94894e-14 0.0112011 1.84137e-07 1.88392e-14 1.18021e-07 1.85447e-14 0.0289652 0.0203653 5.88125e-11 0.0292886 0.0206983 2.58445e-11 0.0281248 0.0204328 -1.09324e-11 0.026955 0.0185915 -6.33664e-11 0.0258294 0.0166599 -5.0065e-11 0.0247748 0.0149215 -3.86919e-11 0.023784 0.0134027 -3.04568e-11 0.0228463 0.0120439 -2.36234e-11 0.0219571 0.0108189 -2.08689e-11 0.0211091 0.00970437 -1.84832e-11 0.0202982 0.00868769 -2.12547e-11 0.0195201 0.00776118 -2.1942e-11 0.0187923 0.00691299 -2.31881e-11 0.0181486 0.00614587 -2.19468e-11 0.0176019 0.00545682 -1.8029e-11 0.017139 0.00484458 -1.67846e-11 0.016747 0.00429574 -1.62388e-11 0.0164143 0.00379954 -1.40079e-11 0.0161338 0.00334466 -1.08068e-11 0.0159031 0.00292631 -8.7577e-12 0.0157223 0.00253908 -7.40853e-12 0.015593 0.0021809 -6.38909e-12 0.0155154 0.00184881 -7.05654e-12 0.0154872 0.00154112 -6.56335e-12 0.0155001 0.00125478 -8.19337e-12 0.0155486 0.000987658 -8.64342e-12 0.0156201 0.000738126 -9.67221e-12 0.0157115 0.000503238 -1.1185e-11 0.0158193 0.000285047 -1.11645e-11 0.015922 7.88576e-05 -1.26207e-11 0.0160347 -0.000118512 -1.33289e-11 0.0161519 -0.000298086 -1.36441e-11 0.0162703 -0.000459365 -1.3953e-11 0.0163884 -0.000603353 -1.42166e-11 0.0165013 -0.000730557 -1.45057e-11 0.0166194 -0.000841557 -1.4146e-11 0.0167556 -0.000935978 -1.47613e-11 0.0169002 -0.00101636 -1.38301e-11 0.0170506 -0.00107978 -1.35277e-11 0.0172234 -0.00113995 -1.31024e-11 0.0174148 -0.00118903 -1.1834e-11 0.0176285 -0.00122098 -1.00356e-11 0.0178397 -0.00123229 -9.53886e-12 0.0180568 -0.00122747 -2.56853e-11 0.0182791 -0.00121278 -1.89467e-11 0.0185088 -0.00118198 8.03334e-13 0.018753 -0.00114326 -8.89546e-12 0.0190192 -0.00109985 -1.38072e-11 0.0193069 -0.00105585 -1.74644e-11 0.0196062 -0.00100592 -1.76876e-11 0.0199009 -0.000950749 -1.22768e-11 0.0201765 -0.000892375 -9.16405e-12 0.0204219 -0.00083508 -6.2535e-12 0.0206283 -0.000779144 -1.38612e-12 0.020797 -0.000725402 5.32932e-12 0.020942 -0.000674181 1.57901e-11 0.0210714 -0.00062607 2.55876e-11 0.0211788 -0.000582728 3.28645e-11 0.0212749 -0.000541142 4.06377e-11 0.0214102 -0.000497229 4.49414e-11 0.0216036 -0.000457877 4.3439e-11 0.0217842 -0.000426068 4.11483e-11 0.0218794 -0.00039623 4.15677e-11 0.0218726 -0.000369699 4.10134e-11 0.0217923 -0.000345076 4.00717e-11 0.0216506 -0.000319922 3.64515e-11 0.0214305 -0.000291835 2.87443e-11 0.0210884 -0.000258667 1.87038e-11 0.0203697 -0.000219007 -6.59386e-12 0.0193346 -0.00017114 -1.48912e-11 0.0180314 -0.000119895 -1.79383e-11 0.0166332 -7.22708e-05 -1.54125e-11 0.0153269 -3.32346e-05 -1.03774e-11 0.014231 -4.29737e-06 -5.66256e-12 0.0133809 1.54225e-05 -2.48467e-12 0.0127557 2.78573e-05 -6.56177e-13 0.0123117 3.48881e-05 3.14001e-13 0.0120029 3.79826e-05 5.48132e-13 0.0117889 3.82039e-05 5.74765e-13 0.011639 3.64309e-05 5.09144e-13 0.0115321 3.33464e-05 4.05085e-13 0.0114539 2.95085e-05 3.12601e-13 0.0113951 2.53412e-05 2.13905e-13 0.01135 2.11883e-05 1.20237e-13 0.0113149 1.72971e-05 9.63548e-14 0.0112875 1.38153e-05 6.71864e-14 0.0112661 1.08142e-05 4.87204e-14 0.0112494 8.30791e-06 3.76791e-14 0.0112366 6.27184e-06 3.13243e-14 0.0112268 4.65772e-06 2.77031e-14 0.0112194 3.40594e-06 2.55522e-14 0.0112138 2.4544e-06 2.41358e-14 0.0112098 1.74425e-06 2.30562e-14 0.0112069 1.22322e-06 2.21376e-14 0.0112047 8.46953e-07 2.13128e-14 0.0112033 5.79298e-07 2.05534e-14 0.0112022 3.91563e-07 1.98959e-14 0.0112015 2.61513e-07 1.93749e-14 0.011201 1.72947e-07 1.87247e-14 1.10454e-07 1.8462e-14 0.0290948 0.0180868 1.39177e-10 0.0296791 0.020041 3.86244e-11 0.0294068 0.0206929 5.1815e-12 0.0283036 0.0197769 -2.18452e-11 0.0271379 0.0179972 -6.14274e-11 0.0260346 0.0161561 -4.35013e-11 0.0250031 0.0145125 -3.0463e-11 0.0240225 0.013067 -2.22579e-11 0.023096 0.0117768 -1.90381e-11 0.0222145 0.0106084 -1.71563e-11 0.02138 0.00954639 -1.62761e-11 0.0205855 0.00858107 -1.5694e-11 0.0198411 0.00770092 -1.69644e-11 0.0191561 0.00690361 -1.67952e-11 0.0185506 0.00617972 -2.0725e-11 0.0180358 0.00552316 -1.66571e-11 0.0176068 0.00492874 -1.35831e-11 0.0172508 0.00438986 -1.174e-11 0.0169566 0.00389825 -9.69869e-12 0.0167162 0.00344744 -7.82793e-12 0.0165257 0.0030303 -6.74304e-12 0.0163854 0.00264386 -4.97815e-12 0.0162958 0.00228487 -5.38393e-12 0.0162542 0.00195121 -4.49275e-12 0.0162576 0.00164027 -5.55522e-12 0.0162957 0.0013504 -5.59844e-12 0.0163612 0.00107872 -6.50751e-12 0.0164464 0.000824475 -6.73635e-12 0.0165405 0.000585754 -7.2828e-12 0.0166444 0.000362406 -6.74123e-12 0.016743 0.000152558 -6.94435e-12 0.0168355 -4.37127e-05 -6.12141e-12 0.016928 -0.000231003 -5.65533e-12 0.0170159 -0.000397126 -4.96404e-12 0.0171007 -0.000545255 -4.75939e-12 0.0171821 -0.000675522 -3.92978e-12 0.0172736 -0.000789552 -3.8331e-12 0.0173817 -0.000886794 -3.01885e-12 0.0174999 -0.00097007 -2.49743e-12 0.0176395 -0.00103611 -1.10937e-12 0.01779 -0.00109408 -1.02874e-12 0.0179451 -0.00114682 -3.47831e-13 0.018112 -0.00118379 -1.35775e-12 0.0182794 -0.00120182 -1.46767e-12 0.0184527 -0.00120117 -8.6779e-12 0.0186418 -0.00118991 -6.50103e-12 0.0188561 -0.0011649 -3.74588e-12 0.0190974 -0.00112978 -7.66224e-12 0.0193611 -0.00108434 -1.86747e-13 0.0196413 -0.00103335 2.50134e-12 0.0199293 -0.00097819 5.13666e-12 0.0202132 -0.000921159 5.54941e-12 0.0204787 -0.000860383 7.02426e-12 0.0207124 -0.000795599 1.0687e-11 0.0209086 -0.000729699 1.99718e-11 0.0210728 -0.000666472 2.77273e-11 0.0212189 -0.000606471 3.4264e-11 0.0213484 -0.00055148 3.94943e-11 0.02145 -0.000499839 4.26083e-11 0.0215466 -0.00044941 4.6167e-11 0.0216957 -0.000400388 4.71235e-11 0.0218875 -0.000358084 4.32675e-11 0.0220189 -0.00032104 4.27962e-11 0.0220336 -0.000290717 4.15867e-11 0.0219457 -0.000267699 3.89984e-11 0.0217704 -0.000249963 3.30065e-11 0.0215275 -0.000232749 2.43925e-11 0.0211489 -0.000209845 1.21513e-11 0.0204716 -0.000175145 -1.00596e-11 0.0194461 -0.000128614 -1.9634e-11 0.0181376 -7.94119e-05 -2.09199e-11 0.016724 -3.58733e-05 -1.74397e-11 0.0153981 -2.27339e-06 -1.10644e-11 0.0142831 2.0956e-05 -5.67726e-12 0.0134169 3.54748e-05 -2.25698e-12 0.012779 4.3445e-05 -3.90738e-13 0.0123251 4.67706e-05 5.57604e-13 0.0120089 4.68402e-05 6.90933e-13 0.0117895 4.46267e-05 6.62734e-13 0.0116359 4.09163e-05 5.57943e-13 0.0115266 3.63472e-05 4.2957e-13 0.0114471 3.13976e-05 3.22708e-13 0.0113879 2.64337e-05 2.28133e-13 0.0113429 2.17414e-05 1.2407e-13 0.0113084 1.7504e-05 9.97364e-14 0.0112818 1.38155e-05 7.00668e-14 0.0112612 1.07038e-05 5.12596e-14 0.0112454 8.14964e-06 3.98288e-14 0.0112334 6.10391e-06 3.30203e-14 0.0112243 4.50124e-06 2.89351e-14 0.0112175 3.27079e-06 2.63623e-14 0.0112124 2.34354e-06 2.46016e-14 0.0112087 1.65674e-06 2.32665e-14 0.0112061 1.15622e-06 2.21792e-14 0.0112042 7.96949e-07 2.12418e-14 0.0112029 5.42765e-07 2.04501e-14 0.0112019 3.65425e-07 1.97454e-14 0.0112013 2.43129e-07 1.92365e-14 0.0112009 1.60191e-07 1.86092e-14 1.0195e-07 1.83712e-14 0.0284476 0.0114583 3.6216e-10 0.0295847 0.0187255 8.62031e-11 0.0303995 0.0198598 1.98293e-11 0.0296327 0.0205604 -3.28411e-12 0.0285554 0.0192101 -4.38705e-11 0.0273694 0.0174796 -4.39963e-11 0.0262569 0.0157389 -3.32476e-11 0.0252217 0.0141665 -2.32902e-11 0.0242381 0.012785 -1.74805e-11 0.0233116 0.011553 -1.52577e-11 0.0224487 0.0104472 -1.48682e-11 0.0216523 0.00944592 -1.57828e-11 0.0209209 0.00853814 -1.64165e-11 0.0202519 0.00771023 -1.77343e-11 0.0196414 0.00695492 -1.71075e-11 0.0190937 0.00626309 -1.81115e-11 0.0186125 0.00562902 -1.55666e-11 0.0182003 0.00504622 -1.24732e-11 0.0178598 0.00450937 -8.36275e-12 0.0175885 0.0040155 -6.07342e-12 0.017381 0.0035611 -4.8084e-12 0.0172312 0.00314228 -3.97777e-12 0.0171325 0.00275496 -3.51357e-12 0.017081 0.00239524 -2.9509e-12 0.0170721 0.00205991 -3.08843e-12 0.0170999 0.00174659 -3.08028e-12 0.0171577 0.00145351 -3.33366e-12 0.0172354 0.00117914 -3.29877e-12 0.0173254 0.000921758 -3.26493e-12 0.0174213 0.000681186 -2.54971e-12 0.017516 0.000455609 -1.86246e-12 0.0175997 0.00024556 -7.40625e-13 0.0176668 5.03088e-05 2.40837e-13 0.0177301 -0.000138458 1.81654e-12 0.0177823 -0.000306558 2.38426e-12 0.0178322 -0.000457128 2.61626e-12 0.017886 -0.000589987 3.20445e-12 0.0179528 -0.00070558 2.87892e-12 0.018035 -0.000805353 3.40995e-12 0.0181322 -0.000889214 3.10629e-12 0.0182615 -0.000959353 4.16161e-12 0.0183869 -0.00101553 4.2829e-12 0.0185003 -0.00106898 5.03763e-12 0.0186173 -0.00110974 5.92555e-12 0.0187375 -0.00113433 1.07294e-11 0.0188735 -0.0011393 1.79124e-11 0.0190295 -0.00113049 1.40082e-11 0.0192231 -0.00111062 1.43018e-11 0.0194548 -0.00107977 1.17757e-11 0.0197158 -0.00103949 1.28082e-11 0.0199935 -0.000990883 1.59568e-11 0.020274 -0.000933819 2.19385e-11 0.0205409 -0.000870701 2.52071e-11 0.0207847 -0.000803501 2.92128e-11 0.0209998 -0.000734577 3.19096e-11 0.0211845 -0.00066523 3.6112e-11 0.0213438 -0.000594768 3.97263e-11 0.0214865 -0.00052842 4.12743e-11 0.0216079 -0.000467647 4.12745e-11 0.0217023 -0.00040951 4.16683e-11 0.021806 -0.000352001 4.42153e-11 0.0219668 -0.000298214 4.13806e-11 0.0221299 -0.00025102 3.89732e-11 0.0221899 -0.000210851 3.8253e-11 0.0221203 -0.000182541 3.51302e-11 0.0219348 -0.000165622 2.91656e-11 0.0216835 -0.000153885 1.95422e-11 0.0212873 -0.000141464 1.1453e-11 0.0206067 -0.000116415 -7.02918e-12 0.0195732 -7.47193e-05 -1.92163e-11 0.0182492 -3.04772e-05 -2.17915e-11 0.0168142 6.37078e-06 -1.87372e-11 0.0154655 3.24314e-05 -1.12982e-11 0.0143303 4.8429e-05 -5.41376e-12 0.0134475 5.66797e-05 -1.88549e-12 0.0127971 5.94837e-05 -5.53518e-14 0.0123338 5.86558e-05 8.29415e-13 0.0120108 5.54246e-05 8.27834e-13 0.0117867 5.06143e-05 7.45429e-13 0.01163 4.49255e-05 6.04355e-13 0.011519 3.8878e-05 4.54086e-13 0.0114387 3.2866e-05 3.33774e-13 0.0113795 2.717e-05 2.44446e-13 0.0113351 2.20046e-05 1.28638e-13 0.0113015 1.74829e-05 1.03828e-13 0.0112758 1.36412e-05 7.33203e-14 0.0112563 1.04628e-05 5.39037e-14 0.0112414 7.89566e-06 4.1904e-14 0.0112302 5.86701e-06 3.45489e-14 0.0112218 4.29584e-06 2.99701e-14 0.0112156 3.10145e-06 2.6987e-14 0.011211 2.20912e-06 2.49125e-14 0.0112077 1.55325e-06 2.3358e-14 0.0112054 1.07852e-06 2.21324e-14 0.0112037 7.39889e-07 2.11171e-14 0.0112025 5.01653e-07 2.03038e-14 0.0112017 3.36323e-07 1.95802e-14 0.0112011 2.22875e-07 1.90958e-14 0.0112008 1.46272e-07 1.84863e-14 9.27654e-08 1.82844e-14 0.025767 0.00496299 1.42633e-10 0.0294338 0.014036 2.1626e-10 0.0300169 0.0190411 5.96598e-11 0.0308981 0.0196382 7.36013e-12 0.0299573 0.0201879 -2.59876e-12 0.0288373 0.0187136 -1.95886e-11 0.0276148 0.0170507 -2.24764e-11 0.026462 0.01539 -1.9899e-11 0.0254204 0.0138892 -1.62489e-11 0.0244727 0.0125727 -1.45708e-11 0.0236075 0.0114091 -1.38286e-11 0.0228128 0.0103653 -1.38784e-11 0.0220791 0.00942175 -1.39733e-11 0.0214019 0.00856069 -1.46655e-11 0.0207798 0.00777036 -1.47718e-11 0.020215 0.0070423 -1.5124e-11 0.0197103 0.00636867 -1.37992e-11 0.0192653 0.00574502 -1.10601e-11 0.018882 0.00516721 -1.03596e-11 0.0185648 0.00463228 -8.30834e-12 0.0183174 0.00413864 -5.94293e-12 0.0181405 0.00368375 -3.83269e-12 0.0180267 0.00326404 -2.52772e-12 0.017965 0.00287553 -1.44889e-12 0.0179458 0.00251463 -6.74346e-13 0.0179623 0.00217764 -4.70863e-13 0.0180091 0.00186246 -2.03171e-13 0.0180791 0.00156751 -1.84636e-14 0.0181629 0.00129158 4.92957e-13 0.0182513 0.00103339 1.22873e-12 0.018337 0.000792264 2.30075e-12 0.0184144 0.000567386 3.345e-12 0.0184776 0.000358256 4.63167e-12 0.0185171 0.0001642 7.43276e-12 0.0185402 -1.06501e-05 8.27658e-12 0.0185614 -0.000188622 9.27212e-12 0.018582 -0.000338422 9.39328e-12 0.0186123 -0.000471724 7.54067e-12 0.0186544 -0.00058857 6.96438e-12 0.0187135 -0.000689965 6.4256e-12 0.0187959 -0.000775459 5.18508e-12 0.0189032 -0.000848873 5.36704e-12 0.0189975 -0.00090662 5.59553e-12 0.0190656 -0.000956873 6.21984e-12 0.0191365 -0.00100075 6.0428e-12 0.019216 -0.00103056 7.58005e-12 0.0193152 -0.001043 1.15954e-11 0.0194479 -0.00103819 1.874e-11 0.0196299 -0.00102402 2.43575e-11 0.019851 -0.000998776 2.82804e-11 0.020098 -0.00096311 3.40665e-11 0.0203597 -0.000917385 3.58942e-11 0.0206212 -0.000862739 3.48777e-11 0.020868 -0.00080062 3.59338e-11 0.0210895 -0.000732096 3.75484e-11 0.021281 -0.00065958 3.99135e-11 0.0214487 -0.000586121 4.12293e-11 0.0215991 -0.000514221 4.04406e-11 0.0217311 -0.000445387 4.00166e-11 0.0218363 -0.000379909 3.46661e-11 0.0219236 -0.000316773 3.59406e-11 0.0220377 -0.000255797 3.50129e-11 0.022198 -0.000198606 3.09039e-11 0.0223041 -0.000146097 3.05446e-11 0.0222843 -0.000104043 2.85358e-11 0.0221354 -7.69764e-05 2.46451e-11 0.0218706 -6.42456e-05 1.83124e-11 0.0214898 -5.55636e-05 9.58251e-12 0.0207789 -4.21967e-05 -9.08403e-12 0.0197157 -9.51944e-06 -2.1625e-11 0.0183637 2.64628e-05 -2.37739e-11 0.0169007 5.38849e-05 -1.96341e-11 0.0155265 7.01958e-05 -1.11072e-11 0.0143702 7.74625e-05 -4.87723e-12 0.0134712 7.84945e-05 -1.38779e-12 0.0128089 7.55453e-05 3.18687e-13 0.0123372 7.02071e-05 1.09515e-12 0.0120082 6.34694e-05 9.6475e-13 0.0117802 5.59881e-05 8.27071e-13 0.0116213 4.83265e-05 6.48317e-13 0.0115092 4.08578e-05 4.7841e-13 0.0114288 3.3861e-05 3.41188e-13 0.0113702 2.75201e-05 2.63195e-13 0.0113267 2.19635e-05 1.32942e-13 0.0112941 1.72291e-05 1.07844e-13 0.0112696 1.32933e-05 7.64072e-14 0.0112512 1.00952e-05 5.62842e-14 0.0112374 7.55103e-06 4.36668e-14 0.0112271 5.56637e-06 3.57656e-14 0.0112194 4.04637e-06 3.07276e-14 0.0112138 2.90213e-06 2.73859e-14 0.0112097 2.05465e-06 2.50517e-14 0.0112068 1.43653e-06 2.33271e-14 0.0112047 9.92258e-07 2.20033e-14 0.0112032 6.77371e-07 2.09395e-14 0.0112022 4.57134e-07 2.01195e-14 0.0112015 3.05131e-07 1.94052e-14 0.011201 2.01349e-07 1.89459e-14 0.0112006 1.31604e-07 1.83605e-14 8.31557e-08 1.82012e-14 0.0203135 0.00201685 1.13387e-10 0.0266062 0.00617798 3.25499e-10 0.029977 0.0150421 1.36612e-10 0.0303969 0.0191058 3.89783e-11 0.0312693 0.0192792 8.82041e-13 0.0302818 0.0197368 -1.48024e-12 0.0291533 0.0182822 -9.09217e-12 0.027923 0.0167006 -1.11503e-11 0.0267499 0.0151155 -1.12837e-11 0.025706 0.0136872 -1.07848e-11 0.0247831 0.0124357 -1.11047e-11 0.0239652 0.011332 -1.14976e-11 0.0232325 0.0103468 -1.24839e-11 0.0225613 0.00945284 -1.32953e-11 0.0219407 0.00863018 -1.35428e-11 0.0213661 0.00786557 -1.3304e-11 0.0208399 0.00715086 -1.25932e-11 0.0203689 0.00648383 -1.07352e-11 0.0199561 0.00586243 -8.74962e-12 0.0196091 0.00528582 -6.70636e-12 0.0193336 0.00475378 -4.78809e-12 0.0191288 0.00426413 -2.84098e-12 0.0189902 0.00381295 -1.06028e-12 0.0189101 0.00339535 3.78113e-13 0.0188779 0.00300691 1.73707e-12 0.0188832 0.00264493 2.65287e-12 0.0189171 0.0023067 3.26799e-12 0.0189742 0.00199042 3.68099e-12 0.0190472 0.00169493 4.01968e-12 0.0191262 0.00141898 4.38918e-12 0.0192023 0.0011618 6.24025e-12 0.0192676 0.000922062 8.95215e-12 0.0193176 0.000699734 1.11896e-11 0.0193522 0.00049307 1.28073e-11 0.0193718 0.000303864 1.37058e-11 0.019365 0.000127672 1.4419e-11 0.0193504 -3.11732e-05 1.31031e-11 0.0193475 -0.000187349 9.47901e-12 0.019356 -0.000321389 7.65982e-12 0.0193754 -0.000438372 6.86004e-12 0.0194154 -0.000540542 6.30369e-12 0.01948 -0.0006292 6.54847e-12 0.0195512 -0.000704728 7.03537e-12 0.0196049 -0.000766999 7.38732e-12 0.019633 -0.000815071 7.889e-12 0.0196649 -0.000861165 7.32074e-12 0.0197111 -0.000896131 1.00829e-11 0.0197833 -0.000915062 1.88426e-11 0.0199023 -0.000916423 1.48795e-13 0.0200773 -0.000906206 3.49044e-11 0.0202882 -0.000887769 3.31157e-11 0.0205152 -0.00085711 3.85474e-11 0.0207499 -0.00081625 3.70658e-11 0.0209794 -0.000766399 3.67591e-11 0.0211916 -0.000707975 4.02088e-11 0.0213812 -0.000642318 4.15035e-11 0.0215479 -0.000572571 4.14732e-11 0.0216957 -0.00050079 3.9045e-11 0.0218274 -0.000429754 3.62785e-11 0.0219374 -0.000361408 2.98651e-11 0.0220223 -0.000294967 2.87735e-11 0.0221085 -0.000229879 2.31834e-11 0.0222313 -0.00016689 2.27004e-11 0.0223587 -0.000106385 1.78148e-11 0.0223986 -5.0983e-05 1.71919e-11 0.0223077 -6.93013e-06 1.45119e-11 0.0220767 2.1046e-05 1.20817e-11 0.0217122 3.41942e-05 5.72945e-12 0.0209872 4.27953e-05 -6.08399e-12 0.0198702 6.34572e-05 -2.77625e-11 0.0184763 8.97012e-05 -2.69508e-11 0.0169794 0.000105093 -2.07129e-11 0.0155779 0.000109712 -1.09264e-11 0.0144008 0.000107071 -4.27724e-12 0.0134866 0.000100214 -8.53653e-13 0.0128135 9.11455e-05 6.87551e-13 0.0123345 8.10812e-05 1.34181e-12 0.0120007 7.07218e-05 1.09923e-12 0.01177 6.05922e-05 9.04452e-13 0.0116098 5.10091e-05 6.89855e-13 0.0114974 4.22152e-05 4.99192e-13 0.0114176 3.43466e-05 3.5056e-13 0.0113599 2.74694e-05 2.82603e-13 0.0113177 2.16134e-05 1.34687e-13 0.0112865 1.67454e-05 1.11423e-13 0.0112634 1.27783e-05 7.90177e-14 0.0112462 9.60884e-06 5.81732e-14 0.0112334 7.12368e-06 4.49723e-14 0.011224 5.20927e-06 3.65893e-14 0.0112171 3.7591e-06 3.11682e-14 0.0112121 2.67799e-06 2.75438e-14 0.0112084 1.88418e-06 2.50178e-14 0.0112058 1.30974e-06 2.31774e-14 0.011204 8.99784e-07 2.17984e-14 0.0112027 6.11122e-07 2.07172e-14 0.0112018 4.10444e-07 1.99071e-14 0.0112012 2.7272e-07 1.92163e-14 0.0112008 1.79178e-07 1.87912e-14 0.0112006 1.16616e-07 1.82346e-14 7.33859e-08 1.8122e-14 0.01816 0.000768061 4.93716e-11 0.0212083 0.00251153 1.37019e-10 0.0274854 0.00684984 2.9537e-10 0.0303933 0.0155596 1.02468e-10 0.0306879 0.0188141 2.29058e-11 0.0314305 0.0188699 9.18974e-12 0.0304436 0.0192748 7.81832e-13 0.0293553 0.0178911 -4.90945e-12 0.0281642 0.016401 -2.2341e-12 0.0270312 0.0148979 -5.77778e-12 0.0260331 0.0135584 -8.92465e-12 0.025175 0.0123842 -1.14773e-11 0.0244315 0.011346 -1.2972e-11 0.0237679 0.0104075 -1.41283e-11 0.0231501 0.00954287 -1.40038e-11 0.0225626 0.00873449 -1.26986e-11 0.0220102 0.00797399 -1.10203e-11 0.0215046 0.00725956 -9.15687e-12 0.0210594 0.00659337 -7.25707e-12 0.0206846 0.00597639 -5.35744e-12 0.0203857 0.00540732 -3.34189e-12 0.0201639 0.00488333 -1.32253e-12 0.020011 0.00440046 8.85618e-13 0.0199151 0.00395348 2.70209e-12 0.0198659 0.00353757 3.69038e-12 0.0198557 0.00314947 4.74027e-12 0.0198758 0.00278703 6.49761e-12 0.0199169 0.00244846 7.85187e-12 0.0199734 0.00213249 9.32387e-12 0.0200391 0.00183807 1.0856e-11 0.0201036 0.00156429 1.26454e-11 0.0201573 0.00130973 1.42632e-11 0.0201946 0.0010734 1.59374e-11 0.0202142 0.000854359 1.71798e-11 0.0202161 0.000652546 1.81588e-11 0.0202038 0.000466305 1.83618e-11 0.0201841 0.000296692 1.8507e-11 0.0201541 0.000139493 1.71427e-11 0.020127 2.8084e-06 1.21208e-11 0.0201107 -0.000136078 9.94398e-12 0.02011 -0.000256172 8.49057e-12 0.0201317 -0.000360178 8.47493e-12 0.0201681 -0.000451187 8.6482e-12 0.0201925 -0.000529644 9.80061e-12 0.0202021 -0.000596143 1.03175e-11 0.0202032 -0.000648575 8.63372e-12 0.0202036 -0.000692738 4.5116e-12 0.0202136 -0.000732418 4.97133e-12 0.020275 -0.000758263 -1.42994e-10 0.0203881 -0.000768029 1.3e-10 0.0205602 -0.000762978 8.24255e-11 0.0207559 -0.000751049 5.08017e-11 0.0209551 -0.000726105 3.89194e-11 0.0211541 -0.000691102 3.60653e-11 0.0213434 -0.000647798 3.66399e-11 0.0215134 -0.000595953 4.00565e-11 0.0216632 -0.000537043 4.09562e-11 0.0217959 -0.000474252 3.86642e-11 0.0219144 -0.000409461 3.49492e-11 0.0220159 -0.000344544 2.69382e-11 0.0220958 -0.00027993 2.24265e-11 0.0221643 -0.000215102 1.67754e-11 0.0222524 -0.000151175 1.48591e-11 0.0223712 -8.76505e-05 8.30924e-12 0.0224482 -2.42637e-05 8.05518e-12 0.0224233 3.49199e-05 5.71106e-12 0.0222609 8.20939e-05 3.16006e-12 0.0219171 0.000113809 -2.03012e-12 0.0213073 0.000131313 -1.26271e-11 0.0200427 0.000143644 -3.4708e-11 0.0185813 0.000157042 -3.04066e-11 0.017045 0.000157775 -2.09125e-11 0.0156164 0.000149296 -1.07161e-11 0.01442 0.000136164 -3.65224e-12 0.0134924 0.00012118 -2.79951e-13 0.0128103 0.000105838 1.0195e-12 0.0123254 9.09145e-05 1.55172e-12 0.0119883 7.69846e-05 1.22951e-12 0.0117559 6.42597e-05 9.73761e-13 0.0115955 5.28836e-05 7.25767e-13 0.0114838 4.28975e-05 5.16674e-13 0.0114051 3.42947e-05 3.5768e-13 0.011349 2.70069e-05 2.94153e-13 0.0113084 2.09592e-05 1.37919e-13 0.0112788 1.60406e-05 1.14048e-13 0.0112571 1.21072e-05 8.06873e-14 0.0112412 9.01494e-06 5.92843e-14 0.0112296 6.62403e-06 4.56582e-14 0.0112211 4.80468e-06 3.69358e-14 0.0112149 3.4414e-06 3.12559e-14 0.0112104 2.43486e-06 2.74505e-14 0.0112072 1.70223e-06 2.48133e-14 0.011205 1.17624e-06 2.2918e-14 0.0112034 8.03581e-07 2.15245e-14 0.0112023 5.42923e-07 2.04572e-14 0.0112016 3.62836e-07 1.96763e-14 0.011201 2.39954e-07 1.90203e-14 0.0112007 1.56946e-07 1.86338e-14 0.0112005 1.01712e-07 1.81091e-14 6.37306e-08 1.80459e-14 0.0173274 0.000281245 1.28384e-11 0.0185539 0.000940291 5.37865e-11 0.0220238 0.00266882 1.06348e-10 0.0278438 0.00771148 2.3062e-10 0.0304972 0.0155709 7.1906e-11 0.0308436 0.0184314 1.60771e-11 0.0315415 0.0185037 1.17026e-11 0.0305977 0.0188517 3.38995e-12 0.0295608 0.0175748 7.15431e-13 0.0284487 0.0161878 -8.17259e-13 0.0274184 0.0147887 -5.21057e-12 0.0265161 0.0135438 -7.76095e-12 0.0257349 0.0124348 -9.86971e-12 0.025038 0.0114317 -1.02426e-11 0.0243946 0.0105066 -1.04209e-11 0.0237823 0.00964242 -9.80943e-12 0.0231972 0.00883062 -8.48662e-12 0.0226578 0.00806901 -6.78227e-12 0.0221853 0.00735941 -4.98428e-12 0.0217918 0.00670377 -3.26416e-12 0.0214787 0.00610022 -1.3036e-12 0.0212416 0.00554338 7.73118e-13 0.0210745 0.00502853 2.56803e-12 0.0209652 0.00455126 5.39542e-12 0.0209017 0.00410673 9.19401e-12 0.0208739 0.00369191 1.13227e-11 0.0208752 0.00330394 1.32242e-11 0.0209001 0.00294205 1.42764e-11 0.0209383 0.00260479 1.55801e-11 0.0209853 0.00229118 1.6559e-11 0.0210357 0.00200018 1.77073e-11 0.0210771 0.00173053 1.89008e-11 0.0211012 0.00148028 2.02889e-11 0.0211066 0.00124824 2.14959e-11 0.0210933 0.00103376 2.23614e-11 0.0210638 0.000836072 2.27148e-11 0.0210245 0.000654545 2.30064e-11 0.0209847 0.000488653 2.2609e-11 0.020946 0.00033735 2.26368e-11 0.0209069 0.000199137 2.12706e-11 0.0208715 7.34516e-05 1.84811e-11 0.0208488 -3.67714e-05 1.45671e-11 0.0208467 -0.000148118 1.55647e-11 0.0208434 -0.000244022 1.47364e-11 0.02082 -0.000327418 1.53416e-11 0.0207922 -0.000397758 1.44196e-11 0.0207678 -0.000457278 1.37019e-11 0.0207401 -0.00050251 1.43002e-11 0.0207425 -0.000543854 1.17043e-11 0.0207861 -0.000576614 1.17687e-11 0.020909 -0.000594342 1.33155e-11 0.0210744 -0.000596724 1.56484e-11 0.0212437 -0.000589936 2.45739e-11 0.0214065 -0.000571882 3.25499e-11 0.0215617 -0.000544623 3.47049e-11 0.021703 -0.000509859 3.72404e-11 0.0218254 -0.000467104 4.04316e-11 0.0219311 -0.000418084 3.96448e-11 0.0220234 -0.000365341 3.48763e-11 0.0221023 -0.000310471 2.79188e-11 0.0221651 -0.000254082 2.00822e-11 0.0222169 -0.000195418 1.40563e-11 0.0222785 -0.000134945 9.82638e-12 0.0223727 -7.2747e-05 3.83792e-12 0.0224595 -7.21857e-06 3.23374e-12 0.0224873 5.98915e-05 1.43919e-12 0.0224002 0.000122876 -1.65923e-12 0.0221336 0.00017504 -4.58096e-12 0.0215702 0.000211684 -2.85068e-11 0.0202018 0.00022716 -6.08342e-11 0.0186672 0.000224402 -3.79131e-11 0.0170919 0.000208608 -2.17025e-11 0.0156391 0.00018706 -1.0185e-11 0.0144263 0.000163826 -2.86054e-12 0.0134877 0.000140847 3.11954e-13 0.0127986 0.000119141 1.39687e-12 0.0123097 9.94788e-05 1.74657e-12 0.0119708 8.20358e-05 1.34528e-12 0.0117382 6.68629e-05 1.03393e-12 0.0115786 5.38573e-05 7.54837e-13 0.0114684 4.28628e-05 5.30153e-13 0.0113916 3.36918e-05 3.70388e-13 0.0113375 2.61367e-05 2.99257e-13 0.0112988 2.00099e-05 1.39233e-13 0.011271 1.51296e-05 1.15158e-13 0.0112509 1.12958e-05 8.12396e-14 0.0112364 8.32829e-06 5.95439e-14 0.0112259 6.06483e-06 4.57038e-14 0.0112183 4.36311e-06 3.68136e-14 0.0112128 3.1016e-06 3.10115e-14 0.0112089 2.17916e-06 2.71307e-14 0.0112062 1.51359e-06 2.44615e-14 0.0112042 1.03956e-06 2.25669e-14 0.0112029 7.06161e-07 2.11981e-14 0.0112019 4.74545e-07 2.01699e-14 0.0112013 3.1553e-07 1.94338e-14 0.0112009 2.07665e-07 1.88214e-14 0.0112006 1.35204e-07 1.84781e-14 0.0112004 8.72427e-08 1.79876e-14 5.44288e-08 1.7973e-14 0.016956 0.000112805 5.1504e-12 0.0173117 0.000354385 1.73775e-11 0.0188851 0.000956939 3.93414e-11 0.0227878 0.00295738 8.81241e-11 0.0283813 0.00807715 1.72226e-10 0.030748 0.0154971 5.23472e-11 0.0310685 0.018051 1.66294e-11 0.0317162 0.0181642 9.17928e-12 0.0308735 0.0184771 5.51432e-12 0.0298866 0.0173359 1.09456e-11 0.0288713 0.0160756 3.40887e-12 0.027933 0.014783 -1.70961e-12 0.0270936 0.013607 -2.46588e-12 0.0263436 0.012526 -5.05958e-12 0.0256512 0.0115264 -6.30361e-12 0.0249991 0.0105947 -6.32929e-12 0.0243878 0.00972641 -4.82299e-12 0.0238256 0.00891785 -2.58308e-12 0.0233322 0.00816684 -4.78589e-13 0.0229249 0.00747299 9.82656e-13 0.0226028 0.00683402 2.35812e-12 0.0223561 0.00624444 3.29235e-12 0.0221748 0.00569731 6.71131e-12 0.0220509 0.00518854 9.4881e-12 0.0219732 0.00471497 1.30714e-11 0.0219296 0.00427244 1.58103e-11 0.021911 0.00385845 1.82319e-11 0.0219133 0.00347157 1.98549e-11 0.021934 0.00311222 2.04339e-11 0.0219625 0.00277907 2.1631e-11 0.0219949 0.00247059 2.28415e-11 0.0220244 0.00218526 2.37687e-11 0.0220359 0.00192105 2.46164e-11 0.0220254 0.00167564 2.55677e-11 0.0219958 0.00144811 2.66157e-11 0.0219483 0.00123794 2.74012e-11 0.0218884 0.00104428 2.79579e-11 0.0218271 0.000866708 2.81392e-11 0.0217703 0.000704505 2.82471e-11 0.0217148 0.000556659 2.87764e-11 0.0216626 0.000421629 2.83212e-11 0.0216182 0.000298617 2.88334e-11 0.0215831 0.000185837 2.90284e-11 0.0215516 8.2783e-05 2.75331e-11 0.0215 -5.33647e-06 2.66482e-11 0.0214356 -9.65226e-05 2.4844e-11 0.0213731 -0.000175592 1.85131e-11 0.0213218 -0.000241997 1.97402e-11 0.0212911 -0.000294235 1.46693e-11 0.0212865 -0.000336924 1.39526e-11 0.0213439 -0.000371983 1.345e-11 0.0214624 -0.000397398 1.31979e-11 0.0216049 -0.000408656 1.8346e-11 0.0217365 -0.00040787 2.71538e-11 0.021854 -0.000396922 3.42295e-11 0.0219597 -0.0003794 3.63693e-11 0.0220498 -0.000354711 3.8716e-11 0.0221244 -0.000322445 3.88565e-11 0.0221857 -0.000284773 3.58572e-11 0.0222352 -0.000243556 2.97089e-11 0.0222719 -0.000199259 2.07072e-11 0.0223 -0.000150997 1.62622e-11 0.0223379 -9.8383e-05 9.36612e-12 0.0224098 -4.12925e-05 3.85924e-12 0.0224971 2.14998e-05 1.71485e-12 0.0225536 9.03876e-05 -5.94546e-13 0.0225267 0.000161973 -6.16363e-12 0.022325 0.000229829 -1.94582e-11 0.0217778 0.00028223 -4.61982e-11 0.0202993 0.000303362 -9.23133e-11 0.0187159 0.000283381 -4.28529e-11 0.0171149 0.000253987 -2.1997e-11 0.0156446 0.000221998 -8.792e-12 0.0144193 0.000189692 -1.76781e-12 0.0134722 0.000158814 1.02619e-12 0.0127782 0.000130914 1.8086e-12 0.0122872 0.00010651 1.94813e-12 0.0119483 8.56903e-05 1.43941e-12 0.011717 6.82736e-05 1.0818e-12 0.0115595 5.38763e-05 7.75602e-13 0.0114517 4.20905e-05 5.36703e-13 0.0113774 3.2537e-05 3.91763e-13 0.0113256 2.48705e-05 2.89074e-13 0.0112892 1.87884e-05 1.3931e-13 0.0112633 1.40354e-05 1.1455e-13 0.0112449 1.03654e-05 8.05346e-14 0.0112317 7.56712e-06 5.88932e-14 0.0112223 5.46106e-06 4.50997e-14 0.0112156 3.89638e-06 3.62379e-14 0.0112109 2.74875e-06 3.04598e-14 0.0112075 1.91763e-06 2.66106e-14 0.0112052 1.32318e-06 2.39847e-14 0.0112035 9.03187e-07 2.21428e-14 0.0112024 6.09978e-07 2.08332e-14 0.0112016 4.07673e-07 1.98651e-14 0.0112011 2.69667e-07 1.91861e-14 0.0112007 1.76611e-07 1.86246e-14 0.0112005 1.1445e-07 1.83276e-14 0.0112003 7.35253e-08 1.78725e-14 4.5673e-08 1.7905e-14 0.0168444 5.41689e-05 1.22312e-12 0.0170005 0.000122968 3.18442e-12 0.0173625 0.000370182 1.07211e-11 0.0191048 0.00102205 2.5114e-11 0.0233923 0.00303705 5.68002e-11 0.0287073 0.00813136 1.13976e-10 0.0308854 0.0151893 3.19225e-11 0.0312418 0.0176418 1.42385e-11 0.0318786 0.0178518 1.11608e-11 0.0311375 0.0181274 7.3884e-12 0.0302611 0.0171379 3.80206e-12 0.0293471 0.0160222 3.51258e-12 0.0284783 0.0148318 4.75743e-13 0.0276719 0.0136928 1.52645e-12 0.0269304 0.0126145 -1.72727e-13 0.026242 0.0116097 -8.25834e-13 0.0256029 0.0106781 -7.79527e-13 0.0250248 0.00981871 6.51648e-13 0.0245177 0.00902681 2.80273e-12 0.0240923 0.0082933 4.05538e-12 0.0237568 0.00761439 5.16544e-12 0.0234996 0.0069865 9.23085e-12 0.0233061 0.00640667 1.12189e-11 0.0231674 0.00586638 1.52084e-11 0.0230743 0.00536235 1.67411e-11 0.0230141 0.00489132 2.03306e-11 0.0229759 0.00445033 2.26926e-11 0.0229569 0.00403853 2.49413e-11 0.022955 0.00365601 2.65733e-11 0.0229684 0.0033027 2.68194e-11 0.0229841 0.00297684 2.72752e-11 0.0229957 0.00267532 2.84247e-11 0.0229964 0.00239644 2.97377e-11 0.0229699 0.00213746 3.0599e-11 0.0229199 0.00189634 3.10784e-11 0.0228537 0.00167271 3.17037e-11 0.0227729 0.00146618 3.27962e-11 0.0226869 0.00127593 3.39376e-11 0.0226073 0.00110153 3.47871e-11 0.022533 0.000942123 3.55722e-11 0.0224596 0.000796133 3.48437e-11 0.0223896 0.000662127 3.45239e-11 0.0223278 0.000539264 3.49829e-11 0.022276 0.000426565 3.48133e-11 0.022213 0.000322542 3.53644e-11 0.0221277 0.000227191 3.5509e-11 0.0220372 0.000139593 3.25679e-11 0.0219488 6.06076e-05 2.72094e-11 0.0218792 -3.71091e-06 2.31832e-11 0.0218516 -6.26954e-05 1.84525e-11 0.0218703 -0.00011282 1.81334e-11 0.0219349 -0.00015054 2.16816e-11 0.0220261 -0.000179128 2.16128e-11 0.0221301 -0.000199503 2.22798e-11 0.0222171 -0.000208979 3.2841e-11 0.0222876 -0.000207163 3.52381e-11 0.0223438 -0.000198454 3.76296e-11 0.0223857 -0.000183598 3.73083e-11 0.0224162 -0.0001617 3.59217e-11 0.0224369 -0.000134707 3.04635e-11 0.0224467 -0.000103783 2.1901e-11 0.0224499 -6.82017e-05 1.78439e-11 0.022464 -2.62495e-05 1.11074e-11 0.0225141 2.25395e-05 5.77399e-12 0.0225972 7.95741e-05 3.42719e-12 0.0226651 0.000145527 2.91608e-13 0.0226674 0.000218016 -8.46279e-12 0.0224744 0.000290137 -3.01294e-11 0.0218562 0.000346413 -6.85927e-11 0.020309 0.000358332 -1.00413e-10 0.0187265 0.000330934 -3.88441e-11 0.0171175 0.000295256 -1.9036e-11 0.0156353 0.00025518 -6.1097e-12 0.0143996 0.000214028 -2.48278e-13 0.0134458 0.000175231 1.80708e-12 0.0127489 0.000140885 2.24792e-12 0.0122579 0.000111765 2.13055e-12 0.0119209 8.77735e-05 1.51899e-12 0.0116926 6.83994e-05 1.11614e-12 0.0115383 5.28923e-05 7.85689e-13 0.0114338 4.05725e-05 5.37409e-13 0.0113626 3.08542e-05 4.08339e-13 0.0113136 2.3242e-05 2.63541e-13 0.0112796 1.73256e-05 1.4221e-13 0.0112559 1.27877e-05 1.12231e-13 0.0112392 9.34173e-06 7.86864e-14 0.0112274 6.75273e-06 5.74447e-14 0.0112191 4.82947e-06 4.39443e-14 0.0112132 3.41723e-06 3.52898e-14 0.0112091 2.39228e-06 2.96651e-14 0.0112063 1.65709e-06 2.59385e-14 0.0112043 1.13583e-06 2.34186e-14 0.0112029 7.70486e-07 2.16713e-14 0.0112019 5.17318e-07 2.04469e-14 0.0112013 3.4384e-07 1.95545e-14 0.0112009 2.26258e-07 1.89416e-14 0.0112006 1.47449e-07 1.84346e-14 0.0112004 9.51015e-08 1.81854e-14 0.0112003 6.08252e-08 1.77648e-14 3.76202e-08 1.78426e-14 0.0168308 1.81215e-05 1.41493e-13 0.0168535 5.39873e-05 5.55279e-13 0.0170151 0.000124395 1.85216e-12 0.0174337 0.000374889 5.46012e-12 0.0192306 0.00103239 1.4291e-11 0.0235715 0.00301622 3.01841e-11 0.0287646 0.00785301 5.87051e-11 0.0309269 0.0146949 2.46361e-11 0.0314062 0.0172127 1.42504e-11 0.0320076 0.0175857 5.51943e-12 0.0314578 0.0177932 3.3921e-12 0.0307239 0.0169634 -2.24856e-12 0.0298682 0.016001 -1.6304e-11 0.0290212 0.0148993 -6.38525e-12 0.0282314 0.0137837 -6.48581e-14 0.0275091 0.0127083 -2.19543e-13 0.0268528 0.011706 1.16528e-12 0.026266 0.0107894 2.73166e-12 0.0257522 0.0099479 3.74282e-12 0.0253092 0.00916974 1.01373e-11 0.024943 0.00844647 1.22414e-11 0.0246674 0.00777686 1.41918e-11 0.0244638 0.00715816 2.06218e-11 0.0243133 0.00658634 1.851e-11 0.0242037 0.00605162 2.41296e-11 0.0241247 0.0055502 2.64836e-11 0.0240676 0.00508109 2.90061e-11 0.0240268 0.00464377 3.03816e-11 0.0240049 0.00423788 3.16087e-11 0.0239979 0.00386409 3.2916e-11 0.0239999 0.00351964 3.37541e-11 0.0239948 0.00320246 3.37934e-11 0.0239757 0.00290765 3.4128e-11 0.0239371 0.00263425 3.5275e-11 0.0238656 0.0023792 3.70195e-11 0.0237742 0.00214116 3.81473e-11 0.0236729 0.00192058 3.86567e-11 0.0235628 0.00171692 3.87037e-11 0.0234565 0.00152919 3.90868e-11 0.0233601 0.00135691 4.07648e-11 0.0232672 0.00119872 4.10159e-11 0.0231739 0.00105275 4.16672e-11 0.0230833 0.000917732 4.20181e-11 0.0230035 0.000793093 4.17059e-11 0.0229213 0.000677688 4.26682e-11 0.0228177 0.000570477 4.24831e-11 0.022707 0.000471538 4.28325e-11 0.0225985 0.000380149 3.7432e-11 0.0225028 0.000299186 3.46036e-11 0.0224426 0.000228314 3.05582e-11 0.0224308 0.000167683 2.61362e-11 0.0224625 0.000116931 3.0005e-11 0.0225216 7.54229e-05 2.86199e-11 0.0225832 4.36516e-05 2.99892e-11 0.0226357 1.93801e-05 3.157e-11 0.0226765 3.05165e-06 3.31005e-11 0.0227039 -4.83324e-06 3.5118e-11 0.0227157 -5.31142e-06 3.54314e-11 0.0227168 4.5799e-07 3.32979e-11 0.0227102 1.2331e-05 2.89929e-11 0.0226972 2.95873e-05 2.10021e-11 0.0226788 5.23466e-05 1.60516e-11 0.0226678 8.22695e-05 1.27723e-11 0.0226963 0.000121699 8.95034e-12 0.0227691 0.000171543 5.69416e-12 0.0228288 0.000231854 2.61664e-12 0.0228104 0.00029821 -1.21795e-11 0.0225377 0.000361499 -4.58985e-11 0.0216969 0.000405848 -9.0668e-11 0.0202734 0.000405814 -7.4463e-11 0.0187258 0.000378831 -2.7941e-11 0.0171104 0.000338119 -1.2374e-11 0.0156139 0.00028879 -2.57092e-12 0.0143671 0.000237494 1.49758e-12 0.013408 0.000189732 2.66957e-12 0.0127105 0.000148627 2.66223e-12 0.012222 0.000114928 2.29455e-12 0.011889 8.81021e-05 1.58212e-12 0.0116653 6.7148e-05 1.13463e-12 0.0115156 5.08921e-05 7.84872e-13 0.0114152 3.83376e-05 5.29114e-13 0.0113476 2.8682e-05 4.13226e-13 0.0113018 2.12911e-05 2.24104e-13 0.0112704 1.56644e-05 1.39104e-13 0.0112487 1.14237e-05 1.0833e-13 0.0112338 8.25517e-06 7.58e-14 0.0112233 5.90872e-06 5.52937e-14 0.0112161 4.18789e-06 4.23198e-14 0.0112111 2.93876e-06 3.40366e-14 0.0112076 2.0416e-06 2.86793e-14 0.0112051 1.40413e-06 2.51538e-14 0.0112035 9.56055e-07 2.27916e-14 0.0112023 6.44507e-07 2.1172e-14 0.0112016 4.30204e-07 2.0053e-14 0.011201 2.84362e-07 1.92473e-14 0.0112007 1.86143e-07 1.87055e-14 0.0112005 1.20706e-07 1.82557e-14 0.0112003 7.74867e-08 1.80529e-14 0.0112002 4.93409e-08 1.76676e-14 3.03857e-08 1.77858e-14 0.0168095 7.12332e-06 -1.47245e-13 0.0168319 1.77875e-05 -2.14331e-13 0.0168592 4.89612e-05 -7.83415e-14 0.0170203 0.000124386 1.26276e-13 0.0174652 0.000353551 9.57037e-13 0.019252 0.00100587 7.88979e-12 0.0233224 0.00296024 -1.16598e-12 0.0287041 0.00712108 1.17205e-11 0.0309347 0.0141729 2.16426e-11 0.0315961 0.0168158 6.52497e-12 0.0321527 0.0173251 -3.95336e-12 0.0317705 0.0174792 -8.40198e-12 0.0311986 0.0167889 -1.4965e-11 0.0303944 0.0159851 -2.05713e-11 0.029594 0.0149697 -3.75638e-12 0.0288367 0.0138875 4.42149e-13 0.0281558 0.0128302 3.52214e-12 0.0275496 0.0118485 8.64333e-12 0.0270156 0.0109437 1.13845e-11 0.0265574 0.0101106 1.86708e-11 0.0261698 0.00933931 2.05843e-11 0.0258665 0.00862276 2.18857e-11 0.0256496 0.0079624 2.37515e-11 0.025488 0.00735277 2.85028e-11 0.0253609 0.00678448 2.68425e-11 0.0252595 0.00625082 3.09213e-11 0.0251808 0.00575207 3.44984e-11 0.0251213 0.00528845 3.67497e-11 0.0250789 0.00485974 3.81454e-11 0.0250537 0.00446469 3.89575e-11 0.0250365 0.00410184 3.99546e-11 0.0250162 0.00376692 4.04516e-11 0.0249768 0.00345686 4.10161e-11 0.0249153 0.00316697 4.13865e-11 0.024829 0.00289708 4.22099e-11 0.0247114 0.00264435 4.31668e-11 0.0245833 0.00240833 4.46552e-11 0.0244528 0.00218998 4.61472e-11 0.0243197 0.00198815 4.71964e-11 0.0241963 0.00180154 4.83194e-11 0.0240826 0.00162964 4.71146e-11 0.0239682 0.00147058 4.60589e-11 0.0238508 0.00132219 4.54107e-11 0.023741 0.0011841 4.5238e-11 0.0236351 0.00105572 4.7341e-11 0.0235116 0.000935502 4.90196e-11 0.0233786 0.00082337 5.14781e-11 0.0232511 0.000719025 4.84441e-11 0.0231315 0.000623998 4.3949e-11 0.023042 0.000539727 4.16894e-11 0.0229969 0.000465232 3.6593e-11 0.0229947 0.000400816 3.35891e-11 0.0230216 0.000345892 3.20352e-11 0.0230591 0.000299772 3.21289e-11 0.0230902 0.00026189 3.27563e-11 0.0231053 0.000231576 3.2934e-11 0.0231003 0.000208906 3.21389e-11 0.023085 0.00019352 3.14721e-11 0.0230604 0.000185702 2.9969e-11 0.0230296 0.000184926 2.12504e-11 0.0229964 0.000190185 1.71773e-11 0.0229628 0.000201847 1.43335e-11 0.0229386 0.000221497 1.09019e-11 0.0229407 0.000251214 7.7538e-12 0.0229717 0.000291844 2.99086e-12 0.0229776 0.000341828 -9.55154e-12 0.0228852 0.000396718 -2.81713e-11 0.0225542 0.000446766 -4.9761e-11 0.0215656 0.000477077 -7.72981e-11 0.0202833 0.000469557 -3.44212e-11 0.0187356 0.000437791 -1.81454e-11 0.0170965 0.000385824 -5.62308e-12 0.0155787 0.000322894 7.38555e-13 0.0143198 0.000258938 3.11546e-12 0.0133574 0.000201328 3.43645e-12 0.0126624 0.000153461 2.99507e-12 0.0121794 0.000115592 2.40468e-12 0.011853 8.64746e-05 1.61966e-12 0.0116357 6.44613e-05 1.13494e-12 0.0114917 4.78838e-05 7.71721e-13 0.0113963 3.54258e-05 5.14789e-13 0.0113328 2.60794e-05 4.09489e-13 0.0112902 1.9083e-05 1.9367e-13 0.0112616 1.38587e-05 1.30192e-13 0.0112421 9.98558e-06 1.03494e-13 0.0112288 7.13886e-06 7.21692e-14 0.0112197 5.06e-06 5.26162e-14 0.0112134 3.55444e-06 4.03507e-14 0.0112091 2.47384e-06 3.25696e-14 0.0112062 1.7056e-06 2.75691e-14 0.0112042 1.16478e-06 2.43034e-14 0.0112028 7.8788e-07 2.21364e-14 0.0112019 5.27865e-07 2.06669e-14 0.0112012 3.50307e-07 1.96656e-14 0.0112008 2.30286e-07 1.89525e-14 0.0112006 1.49966e-07 1.84839e-14 0.0112004 9.67712e-08 1.80904e-14 0.0112003 6.18319e-08 1.79329e-14 0.0112002 3.92017e-08 1.75797e-14 2.40395e-08 1.77357e-14 0.0168055 2.33409e-06 -9.23792e-14 0.0168144 5.38773e-06 1.63476e-14 0.0168267 1.77305e-05 -4.50991e-13 0.016885 3.94464e-05 2.20552e-13 0.0169974 0.00012466 -3.46315e-12 0.0175686 0.000296344 6.49744e-12 0.019137 0.000968477 -1.68756e-11 0.0227481 0.00260943 6.5487e-12 0.0283007 0.00643156 1.29414e-11 0.0309123 0.0134931 -5.43567e-12 0.0318512 0.0163826 -2.10714e-11 0.032383 0.0170662 -7.41196e-12 0.032098 0.0172037 -8.30172e-12 0.0315973 0.0166286 -1.29757e-11 0.0309137 0.0159157 -2.3856e-11 0.0302071 0.0150222 3.11427e-12 0.0295163 0.0140069 2.40695e-12 0.0288853 0.0129936 1.66524e-11 0.0283228 0.0120321 2.22642e-11 0.0278448 0.0111382 2.75028e-11 0.0274401 0.0103104 3.10769e-11 0.0271118 0.00954035 2.96451e-11 0.0268699 0.00882838 3.19249e-11 0.0266879 0.00817185 3.67546e-11 0.0265394 0.00756348 3.60671e-11 0.0264158 0.00699599 3.74741e-11 0.0263143 0.0064668 4.07266e-11 0.0262363 0.00597632 4.35314e-11 0.0261777 0.00552431 4.51553e-11 0.026133 0.00510829 4.61002e-11 0.026096 0.0047255 4.73489e-11 0.0260547 0.00437237 4.819e-11 0.0259958 0.00404468 4.84531e-11 0.0259098 0.00373867 4.84198e-11 0.0257989 0.0034515 4.90987e-11 0.0256638 0.0031829 5.01253e-11 0.0255062 0.002931 5.13381e-11 0.0253496 0.00269593 5.23982e-11 0.0251958 0.00247856 5.34072e-11 0.0250428 0.00227663 5.53471e-11 0.0249028 0.00208909 5.63048e-11 0.0247672 0.00191528 5.66748e-11 0.0246257 0.00175244 5.70103e-11 0.0244862 0.00159943 5.63111e-11 0.0243529 0.0014564 5.72463e-11 0.0242086 0.00132189 5.72622e-11 0.0240531 0.0011954 5.85668e-11 0.0239051 0.00107701 5.61259e-11 0.0237658 0.000967419 4.8809e-11 0.0236507 0.000868919 4.8467e-11 0.0235751 0.000779969 4.15901e-11 0.0235391 0.000701293 3.72104e-11 0.0235331 0.000632283 3.47522e-11 0.0235402 0.000572099 3.36974e-11 0.0235448 0.000519988 3.33346e-11 0.0235374 0.000475524 3.22809e-11 0.023514 0.000438648 3.10762e-11 0.0234768 0.000409413 2.75777e-11 0.0234303 0.000388028 2.43361e-11 0.0233791 0.000374679 1.80634e-11 0.0233287 0.000369184 1.2191e-11 0.0232806 0.000371262 6.94193e-12 0.0232373 0.000381647 4.67497e-12 0.0232034 0.000401636 1.6979e-12 0.0231897 0.000432032 -3.93059e-12 0.0231632 0.000471766 -1.22745e-11 0.0230235 0.000516552 -2.42573e-11 0.0226256 0.000556049 -3.5405e-11 0.0216322 0.000570698 -4.14985e-11 0.0203325 0.000552164 -2.2829e-11 0.0187456 0.000504888 -8.87507e-12 0.0170677 0.000434915 -4.9916e-13 0.0155241 0.000354308 3.40645e-12 0.0142547 0.000276069 4.42045e-12 0.013293 0.000208512 4.03147e-12 0.0126046 0.000154539 3.23934e-12 0.0121307 0.000113344 2.44182e-12 0.0118136 8.27564e-05 1.63639e-12 0.0116044 6.03322e-05 1.11876e-12 0.0114673 4.39284e-05 7.48542e-13 0.0113774 3.19246e-05 5.15194e-13 0.0113183 2.31319e-05 3.92737e-13 0.0112793 1.6689e-05 1.77751e-13 0.0112534 1.19672e-05 1.37649e-13 0.011236 8.52137e-06 9.80368e-14 0.0112243 6.02774e-06 6.77519e-14 0.0112164 4.23169e-06 4.94904e-14 0.011211 2.94671e-06 3.81241e-14 0.0112074 2.03445e-06 3.09575e-14 0.011205 1.39228e-06 2.63841e-14 0.0112033 9.44274e-07 2.34223e-14 0.0112022 6.34622e-07 2.14767e-14 0.0112015 4.22627e-07 2.01717e-14 0.011201 2.7888e-07 1.92949e-14 0.0112006 1.82353e-07 1.86765e-14 0.0112004 1.18152e-07 1.82801e-14 0.0112003 7.58773e-08 1.79413e-14 0.0112002 4.82608e-08 1.7826e-14 0.0112001 3.04686e-08 1.75027e-14 1.86074e-08 1.76918e-14 0.016805 4.25754e-07 -5.16778e-14 0.0168066 1.63493e-06 -1.19655e-13 0.0168177 4.46419e-06 -8.30048e-14 0.0168255 1.43707e-05 -5.04677e-13 0.0168931 3.47565e-05 -1.00494e-13 0.0169684 0.000106403 -3.82543e-12 0.0175501 0.000262234 1.31006e-12 0.0188929 0.000835757 -1.61416e-11 0.0221788 0.00226334 -5.61063e-12 0.0279705 0.00557214 -9.24836e-12 0.0310633 0.0127133 -2.77957e-11 0.0322013 0.0158449 -6.82001e-12 0.0325733 0.0168448 -9.9861e-12 0.0323239 0.0169009 -1.8123e-11 0.0318875 0.016396 -2.42925e-11 0.0314276 0.0157884 1.65937e-12 0.0308542 0.0150579 8.9972e-12 0.0302429 0.0141385 1.66412e-11 0.0296783 0.0131738 3.78448e-11 0.0291856 0.0122433 3.59001e-11 0.0287647 0.0113628 3.77289e-11 0.0284081 0.0105358 4.26777e-11 0.0281273 0.00976379 4.30229e-11 0.0279143 0.00905337 4.30317e-11 0.0277402 0.00840002 4.53866e-11 0.0275956 0.00779496 4.52902e-11 0.0274744 0.00723422 4.78577e-11 0.0273768 0.00671571 5.11997e-11 0.0273006 0.00623852 5.35271e-11 0.027237 0.00580027 5.4542e-11 0.0271769 0.00539617 5.57388e-11 0.0271115 0.00502255 5.7254e-11 0.0270299 0.00467567 5.77965e-11 0.0269209 0.00435145 5.71797e-11 0.0267827 0.00404637 5.71495e-11 0.0266217 0.00375926 5.84892e-11 0.0264437 0.00348969 6.0096e-11 0.0262547 0.00323715 6.08498e-11 0.0260751 0.00300124 6.10015e-11 0.0258998 0.00278259 6.20794e-11 0.025728 0.0025779 6.37964e-11 0.0255692 0.00238697 6.50267e-11 0.0254056 0.00220825 6.60163e-11 0.025237 0.00203897 6.56816e-11 0.0250747 0.00187947 6.57731e-11 0.0249078 0.00172914 6.54543e-11 0.0247293 0.00158696 6.56179e-11 0.0245584 0.0014532 6.42968e-11 0.0244 0.00132832 5.62752e-11 0.0242611 0.00121428 5.33999e-11 0.0241581 0.00111058 4.81474e-11 0.0240912 0.00101697 4.17276e-11 0.0240525 0.000933249 3.77675e-11 0.0240287 0.000858496 3.52998e-11 0.024006 0.000791932 3.39473e-11 0.0239754 0.000733161 3.18631e-11 0.0239327 0.000682191 2.97412e-11 0.0238777 0.000639262 2.57261e-11 0.0238134 0.000604679 2.07376e-11 0.0237455 0.000578822 1.49792e-11 0.02368 0.000561906 8.55327e-12 0.0236204 0.000553838 3.40431e-12 0.0235654 0.000555217 -2.81035e-13 0.0235134 0.000566406 -4.98169e-12 0.0234691 0.000588252 -7.76451e-12 0.023414 0.000619038 -1.07877e-11 0.0232303 0.000653883 -1.54057e-11 0.0227261 0.000680687 -2.08411e-11 0.0217297 0.000677636 -2.4515e-11 0.0203829 0.000640677 -1.19506e-11 0.0187366 0.000572076 -2.69097e-12 0.0170117 0.000478836 3.06536e-12 0.0154432 0.000378663 5.32442e-12 0.0141686 0.000286161 5.35499e-12 0.0132138 0.000209763 4.40958e-12 0.0125377 0.000151124 3.39562e-12 0.0120769 0.000107938 2.45393e-12 0.0117717 7.69228e-05 1.59129e-12 0.0115724 5.48625e-05 1.08024e-12 0.011443 3.91627e-05 7.13664e-13 0.0113592 2.79629e-05 5.15933e-13 0.0113047 1.99482e-05 3.59138e-13 0.0112692 1.41977e-05 1.6402e-13 0.0112459 1.006e-05 1.27883e-13 0.0112305 7.0817e-06 9.05793e-14 0.0112203 4.95764e-06 6.29755e-14 0.0112135 3.44813e-06 4.61308e-14 0.011209 2.3809e-06 3.57636e-14 0.011206 1.63115e-06 2.9283e-14 0.011204 1.10833e-06 2.5181e-14 0.0112026 7.4672e-07 2.25485e-14 0.0112017 4.98752e-07 2.08373e-14 0.0112011 3.30221e-07 1.97024e-14 0.0112008 2.16718e-07 1.89507e-14 0.0112005 1.40979e-07 1.84248e-14 0.0112003 9.09007e-08 1.80975e-14 0.0112002 5.81079e-08 1.78096e-14 0.0112002 3.67966e-08 1.77329e-14 0.0112001 2.31372e-08 1.74365e-14 1.40746e-08 1.76545e-14 0.0168034 4.78125e-08 3.25198e-13 0.016807 2.56295e-07 -4.43535e-14 0.01681 8.89236e-07 -5.39821e-14 0.0168209 3.07171e-06 -3.99825e-13 0.016832 1.07229e-05 -4.50931e-13 0.0168876 2.77873e-05 -7.87866e-13 0.0169696 8.5653e-05 -3.16884e-12 0.0174326 0.000218149 -3.78509e-12 0.0186265 0.000679112 -1.67598e-11 0.021477 0.00186224 -2.56454e-11 0.0276882 0.00462905 -6.60368e-11 0.0311522 0.0115185 -2.8838e-11 0.0323215 0.0150562 -3.35921e-11 0.0324978 0.0164632 -2.33692e-11 0.0324322 0.0164459 -2.24525e-11 0.0322595 0.0160839 -7.54789e-13 0.0319545 0.0155984 3.65413e-12 0.0315119 0.015039 1.17637e-11 0.031016 0.0142541 4.73572e-11 0.0305446 0.0133624 4.94949e-11 0.0301229 0.0124673 4.6906e-11 0.0297442 0.0116028 5.52643e-11 0.0294261 0.0107778 5.09332e-11 0.0291802 0.0100134 5.20411e-11 0.0289796 0.00931176 5.61934e-11 0.0288123 0.00866519 5.55039e-11 0.0286715 0.00806927 5.72955e-11 0.0285526 0.00751982 6.09478e-11 0.0284546 0.00701445 6.44727e-11 0.0283689 0.00655024 6.52e-11 0.0282827 0.00612205 6.54674e-11 0.0281891 0.00572519 6.73991e-11 0.0280805 0.00535615 6.85637e-11 0.0279473 0.00501107 6.73195e-11 0.0277833 0.00468593 6.60425e-11 0.0275934 0.00437825 6.6945e-11 0.0273876 0.00408812 6.91955e-11 0.0271753 0.00381532 7.0532e-11 0.0269608 0.00355989 7.05841e-11 0.0267597 0.00332043 7.05654e-11 0.026562 0.00309758 7.12727e-11 0.0263706 0.00288712 7.17924e-11 0.0261874 0.00268995 7.20378e-11 0.0259926 0.00250323 7.17244e-11 0.0257986 0.00232535 7.13524e-11 0.0256075 0.00215719 7.11989e-11 0.0254068 0.00199779 7.03974e-11 0.0252111 0.00184722 6.95253e-11 0.0250319 0.00170579 6.17404e-11 0.0248704 0.00157516 5.56274e-11 0.0247414 0.0014556 5.14967e-11 0.0246459 0.00134629 4.32208e-11 0.0245765 0.00124714 3.80786e-11 0.0245221 0.00115723 3.47741e-11 0.0244717 0.00107582 3.23585e-11 0.0244178 0.00100255 3.04127e-11 0.0243563 0.000937527 2.69167e-11 0.0242858 0.000881022 2.3447e-11 0.0242073 0.000833508 1.80606e-11 0.0241249 0.000795342 1.14711e-11 0.0240463 0.000767087 7.92108e-12 0.0239764 0.000748587 2.01573e-12 0.0239137 0.000739999 -2.30509e-12 0.0238518 0.00074251 -3.59672e-12 0.0237861 0.00075533 -5.69332e-12 0.0236947 0.000776787 -1.01516e-11 0.0234694 0.000800005 -1.39154e-11 0.0228335 0.000809917 -2.31711e-11 0.021828 0.000785286 -1.58082e-11 0.02041 0.000725246 -6.22025e-12 0.0186918 0.000629828 1.24847e-12 0.0169185 0.000511214 5.5239e-12 0.0153315 0.00039167 6.67138e-12 0.0140605 0.000286817 5.96472e-12 0.0131207 0.000203999 4.64416e-12 0.0124628 0.000142854 3.42806e-12 0.0120194 9.94013e-05 2.40208e-12 0.0117285 6.9174e-05 1.54318e-12 0.0115404 4.82903e-05 1.02974e-12 0.0114196 3.38137e-05 6.7117e-13 0.011342 2.37301e-05 5.04168e-13 0.0112922 1.66705e-05 3.01307e-13 0.01126 1.17064e-05 1.57963e-13 0.0112392 8.20397e-06 1.1732e-13 0.0112257 5.71955e-06 8.0149e-14 0.0112169 3.96191e-06 5.92838e-14 0.0112111 2.73149e-06 4.28054e-14 0.0112073 1.87085e-06 3.33794e-14 0.0112048 1.27233e-06 2.76119e-14 0.0112031 8.58697e-07 2.40031e-14 0.0112021 5.74922e-07 2.17104e-14 0.0112013 3.81768e-07 2.02364e-14 0.0112009 2.51387e-07 1.927e-14 0.0112006 1.64132e-07 1.86392e-14 0.0112004 1.06253e-07 1.8201e-14 0.0112003 6.81951e-08 1.79375e-14 0.0112002 4.34038e-08 1.76961e-14 0.0112001 2.7371e-08 1.76535e-14 0.0112001 1.71453e-08 1.7381e-14 1.03912e-08 1.76233e-14 0.0168033 4.18397e-08 7.88114e-13 0.0168051 2.84613e-08 -1.72703e-12 0.0168089 1.35977e-07 7.80543e-13 0.0168142 4.66307e-07 1.23037e-14 0.0168265 1.87826e-06 -3.31047e-13 0.0168356 6.61829e-06 -6.00086e-13 0.0168894 2.02279e-05 -2.64756e-12 0.0169707 6.23238e-05 -2.23686e-12 0.0172994 0.000172368 -1.05051e-11 0.0183086 0.000515299 -1.73952e-11 0.0207233 0.00144109 -5.3368e-11 0.0269969 0.00377382 -1.06489e-10 0.0306967 0.00879202 -1.61851e-10 0.0319896 0.0139985 -9.27402e-11 0.0324683 0.0157516 -1.75374e-11 0.0325287 0.0160532 -7.00435e-12 0.0324893 0.0158096 -4.67508e-12 0.0324586 0.015368 1.09993e-12 0.0322086 0.0149311 2.01958e-11 0.0318472 0.0143158 4.5372e-11 0.0314724 0.013534 5.68619e-11 0.0311101 0.0126986 6.29397e-11 0.030778 0.0118618 6.26439e-11 0.0305039 0.0110604 6.38822e-11 0.0302758 0.010314 7.18021e-11 0.0300836 0.00962432 7.08227e-11 0.0299197 0.0089897 7.11284e-11 0.0297775 0.00840546 7.42267e-11 0.0296511 0.00786778 7.83123e-11 0.0295352 0.00737161 7.87322e-11 0.0294198 0.00691451 7.72667e-11 0.0292948 0.00649057 7.83348e-11 0.0291556 0.00609579 8.04327e-11 0.0289945 0.0057261 7.92057e-11 0.0288035 0.00537731 7.62874e-11 0.0285839 0.00504616 7.5687e-11 0.0283464 0.0047321 7.77712e-11 0.0281029 0.00443564 7.96534e-11 0.0278617 0.00415706 7.96973e-11 0.027625 0.00389556 7.84705e-11 0.027402 0.00364953 7.73364e-11 0.0271806 0.003419 7.60361e-11 0.0269668 0.00319957 7.45736e-11 0.0267533 0.00299311 7.35296e-11 0.0265265 0.00279547 7.23806e-11 0.026306 0.0026069 7.22158e-11 0.0260844 0.00242829 7.05803e-11 0.0258643 0.00225913 6.9257e-11 0.0256627 0.0020997 6.26994e-11 0.0254784 0.00195101 5.31853e-11 0.0253231 0.00181424 5.01014e-11 0.0252003 0.00168807 4.06778e-11 0.0251027 0.00157258 3.47984e-11 0.0250202 0.00146685 3.0902e-11 0.0249434 0.00137011 2.82572e-11 0.0248661 0.00128204 2.60125e-11 0.0247854 0.00120276 2.26341e-11 0.0246998 0.00113268 1.93435e-11 0.024609 0.0010722 1.51551e-11 0.024515 0.00102183 1.12222e-11 0.0244245 0.000981974 6.76765e-12 0.0243451 0.000953027 1.02506e-12 0.0242754 0.000934548 -3.5409e-12 0.0242048 0.000926156 -5.18573e-12 0.0241191 0.000928314 -6.77313e-12 0.0239866 0.000937815 -9.99712e-12 0.023695 0.000945674 -1.26875e-11 0.0229876 0.000932088 -1.79341e-11 0.0219028 0.000883277 -9.93736e-12 0.0203925 0.000795303 -1.37578e-12 0.0185969 0.000668435 4.76368e-12 0.0167814 0.000526067 7.63073e-12 0.0151875 0.00039 7.75529e-12 0.0139319 0.000276598 6.41344e-12 0.0130163 0.000190903 4.78114e-12 0.0123828 0.000129987 3.41264e-12 0.0119603 8.81446e-05 2.32077e-12 0.0116857 5.99384e-05 1.46815e-12 0.0115097 4.09801e-05 9.6768e-13 0.0113976 2.81719e-05 6.33195e-13 0.0113264 1.94522e-05 4.79403e-13 0.011281 1.34674e-05 2.35111e-13 0.011252 9.33187e-06 1.41289e-13 0.0112335 6.464e-06 1.08129e-13 0.0112216 4.46986e-06 7.23581e-14 0.011214 3.07374e-06 5.25695e-14 0.0112091 2.09881e-06 3.93797e-14 0.0112059 1.42683e-06 3.10796e-14 0.0112038 9.63767e-07 2.6015e-14 0.0112025 6.46302e-07 2.28927e-14 0.0112016 4.30202e-07 2.09346e-14 0.011201 2.84133e-07 1.96902e-14 0.0112007 1.86151e-07 1.88837e-14 0.0112004 1.20961e-07 1.83656e-14 0.0112003 7.79535e-08 1.80075e-14 0.0112002 4.98192e-08 1.78011e-14 0.0112001 3.15804e-08 1.76007e-14 0.0112001 1.98382e-08 1.75874e-14 0.0112001 1.23832e-08 1.73355e-14 7.47963e-09 1.75979e-14 0.0168034 1.09889e-08 2.72202e-14 0.0168051 8.66652e-09 -1.78864e-14 0.016808 1.52927e-08 1.48038e-13 0.0168122 9.06246e-08 -1.59938e-13 0.0168199 1.56013e-07 2.47709e-14 0.0168317 1.05598e-06 5.01967e-13 0.0168548 3.0622e-06 -2.90405e-12 0.0168814 1.39488e-05 1.98083e-12 0.01699 3.78138e-05 -1.02288e-11 0.0172207 0.000130281 -1.29255e-12 0.0180743 0.00034717 -3.54643e-11 0.0200514 0.00107237 -4.46243e-11 0.0245835 0.00272855 -1.45188e-10 0.0291888 0.00619401 -2.80628e-10 0.0315443 0.0124653 -6.16739e-11 0.0324944 0.0148143 -2.70969e-11 0.0327336 0.0156425 -1.99193e-11 0.0327984 0.0155615 -4.99372e-12 0.0329333 0.0151522 2.97711e-12 0.0329185 0.0147271 1.7591e-11 0.0326916 0.014246 3.18787e-11 0.0324308 0.013627 5.3764e-11 0.0321409 0.0129005 7.59715e-11 0.0318716 0.0121273 7.18879e-11 0.0316303 0.0113746 8.80869e-11 0.0314181 0.0106607 8.51793e-11 0.0312316 0.00999445 8.63966e-11 0.0310619 0.00937664 8.90948e-11 0.0309007 0.00880287 9.30596e-11 0.0307464 0.00827191 9.33626e-11 0.0305956 0.00778144 9.03511e-11 0.0304386 0.00732753 8.9637e-11 0.0302662 0.00690402 9.14201e-11 0.0300723 0.00650564 9.03469e-11 0.0298504 0.00612887 8.61052e-11 0.0295988 0.00577022 8.33558e-11 0.0293268 0.00542839 8.41977e-11 0.0290483 0.00510417 8.59269e-11 0.0287741 0.00479829 8.5799e-11 0.0285072 0.00451067 8.33431e-11 0.0282492 0.0042394 7.9895e-11 0.0280018 0.0039833 7.62445e-11 0.0277546 0.003741 7.24018e-11 0.027514 0.00350964 6.97629e-11 0.027266 0.00329041 6.74769e-11 0.0270103 0.00307929 6.65248e-11 0.0267647 0.00287844 6.46215e-11 0.0265221 0.00268833 6.13631e-11 0.0262965 0.00250901 5.64911e-11 0.0260907 0.00234042 4.41223e-11 0.0259085 0.00218463 4.13055e-11 0.0257585 0.00204011 3.18508e-11 0.0256342 0.00190706 2.54235e-11 0.0255261 0.00178461 2.14454e-11 0.0254251 0.00167192 1.92493e-11 0.0253257 0.00156855 1.82731e-11 0.0252256 0.00147461 1.70099e-11 0.0251239 0.00139058 1.52345e-11 0.0250203 0.00131689 1.24826e-11 0.0249159 0.00125391 9.30246e-12 0.0248148 0.00120194 5.25435e-12 0.0247242 0.00116131 8.71914e-13 0.0246452 0.00113172 -4.07812e-12 0.0245637 0.00111238 -5.63975e-12 0.0244538 0.00110093 -6.33328e-12 0.0242723 0.00109327 -8.72206e-12 0.0238525 0.0010781 -1.30763e-11 0.023107 0.00103728 -9.50846e-12 0.0219259 0.000959925 -2.68769e-12 0.0203125 0.000837734 3.83495e-12 0.0184424 0.000682201 8.45507e-12 0.0165986 0.000518965 9.87123e-12 0.0150141 0.000371963 8.83909e-12 0.0137873 0.000255485 6.82779e-12 0.0129049 0.000171136 4.85461e-12 0.0123012 0.000113392 3.38383e-12 0.0119023 7.49858e-05 2.18822e-12 0.0116451 4.98616e-05 1.40647e-12 0.0114814 3.34166e-05 9.01915e-13 0.0113779 2.25712e-05 6.23306e-13 0.0113125 1.53467e-05 4.40583e-13 0.0112713 1.04847e-05 1.94894e-13 0.0112453 7.18194e-06 1.47178e-13 0.0112288 4.92128e-06 9.69019e-14 0.0112183 3.36692e-06 6.64187e-14 0.0112117 2.29844e-06 4.70174e-14 0.0112075 1.56336e-06 3.53789e-14 0.0112048 1.05552e-06 2.9174e-14 0.011203 7.07625e-07 2.45838e-14 0.011202 4.71706e-07 2.19015e-14 0.0112013 3.12404e-07 2.02443e-14 0.0112008 2.05325e-07 1.92089e-14 0.0112005 1.33887e-07 1.85481e-14 0.0112003 8.66174e-08 1.81316e-14 0.0112002 5.55933e-08 1.78445e-14 0.0112002 3.53928e-08 1.76878e-14 0.0112001 2.23538e-08 1.75224e-14 0.0112001 1.3993e-08 1.75337e-14 0.0112001 8.70701e-09 1.72991e-14 5.24313e-09 1.75779e-14 0.0168034 2.05476e-09 1.6989e-15 0.016805 8.48335e-10 -1.2336e-15 0.016808 1.75919e-09 1.2223e-13 0.0168118 1.53892e-08 -1.63137e-13 0.0168182 1.00654e-08 3.78204e-13 0.0168267 1.34334e-07 -1.66679e-14 0.0168413 3.59132e-07 -1.29517e-13 0.0168691 1.76278e-06 5.8991e-13 0.0169038 6.27139e-06 -1.55301e-12 0.0170114 2.33222e-05 -2.04384e-12 0.017162 7.96563e-05 -1.82759e-11 0.0178205 0.000228732 -1.97619e-11 0.0192865 0.000716466 -8.68607e-11 0.022587 0.00189065 -1.01319e-10 0.0280421 0.0045239 -2.48187e-10 0.0312205 0.0105428 -1.04993e-10 0.032472 0.0137686 -1.12806e-10 0.0330178 0.0150371 -3.16248e-11 0.0332036 0.0151722 -4.72871e-12 0.0332895 0.0148821 7.31794e-13 0.0334444 0.0144407 9.40888e-12 0.033485 0.0140377 3.02456e-11 0.0333468 0.0135855 4.37989e-11 0.0331632 0.0130061 7.53725e-11 0.0329676 0.012344 8.93016e-11 0.032768 0.0116691 9.36011e-11 0.0325733 0.0110101 9.56391e-11 0.032378 0.0103809 1.00227e-10 0.0321846 0.00978582 1.06019e-10 0.0319957 0.00923049 1.0629e-10 0.0318109 0.00871198 1.01901e-10 0.0316233 0.00823003 9.9291e-11 0.0314181 0.00777733 9.96454e-11 0.0311879 0.00734861 9.8117e-11 0.0309306 0.00694035 9.23318e-11 0.0306444 0.00655062 8.68868e-11 0.0303358 0.0061773 8.51028e-11 0.0300188 0.00582109 8.50558e-11 0.0297075 0.00548349 8.38908e-11 0.0294076 0.00516521 8.03703e-11 0.0291173 0.00486459 7.5113e-11 0.0288367 0.00457964 6.9155e-11 0.0285629 0.00430918 6.28868e-11 0.0282882 0.0040514 5.80823e-11 0.0280166 0.00380459 5.43847e-11 0.0277363 0.00356931 5.21189e-11 0.0274579 0.00334297 4.97704e-11 0.0271945 0.0031287 4.49978e-11 0.0269444 0.00292648 3.95196e-11 0.0267173 0.00273622 2.86509e-11 0.0265102 0.00255839 1.93234e-11 0.0263329 0.00239418 1.6114e-11 0.0261835 0.00224173 1.09471e-11 0.0260523 0.00210135 9.40321e-12 0.025929 0.00197188 9.10784e-12 0.0258077 0.00185263 9.20706e-12 0.0256872 0.00174354 9.06459e-12 0.0255675 0.00164503 8.39514e-12 0.0254484 0.00155756 7.0781e-12 0.0253307 0.00148137 5.22018e-12 0.0252174 0.00141647 2.60379e-12 0.0251127 0.00136274 -6.2306e-13 0.025017 0.00131971 -4.13294e-12 0.0249159 0.0012858 -6.39334e-12 0.0247716 0.0012576 -7.73713e-12 0.0245123 0.00122814 -8.11927e-12 0.024024 0.00118469 -6.9482e-12 0.0231765 0.00111348 -2.5129e-12 0.0218761 0.00100174 3.27106e-12 0.0201565 0.000843971 8.95432e-12 0.0182261 0.000664694 1.18994e-11 0.0163747 0.000488017 1.17938e-11 0.0148186 0.000338052 9.6905e-12 0.0136339 0.000224959 7.08998e-12 0.0127925 0.000146369 4.86673e-12 0.0122221 9.44391e-05 3.28166e-12 0.011848 6.09772e-05 2.07525e-12 0.0116083 3.96861e-05 1.31483e-12 0.0114564 2.60986e-05 8.31585e-13 0.0113609 1.734e-05 5.99435e-13 0.0113009 1.16233e-05 3.75883e-13 0.0112633 7.8438e-06 1.735e-13 0.0112397 5.31589e-06 1.31348e-13 0.011225 3.60937e-06 8.63521e-14 0.0112157 2.45027e-06 5.90362e-14 0.0112099 1.66e-06 4.26434e-14 0.0112062 1.12015e-06 3.29339e-14 0.0112039 7.52405e-07 2.68672e-14 0.0112025 5.03013e-07 2.30334e-14 0.0112016 3.33876e-07 2.10882e-14 0.011201 2.20012e-07 1.96723e-14 0.0112006 1.43856e-07 1.88034e-14 0.0112004 9.33672e-08 1.82692e-14 0.0112003 6.01828e-08 1.79389e-14 0.0112002 3.84909e-08 1.77117e-14 0.0112001 2.44224e-08 1.75963e-14 0.0112001 1.53745e-08 1.74599e-14 0.0112001 9.59316e-09 1.74914e-14 0.0112001 5.95223e-09 1.72711e-14 3.57472e-09 1.75626e-14 0.0168033 4.0249e-10 2.05576e-14 0.0168051 2.1528e-10 -6.17889e-14 0.0168078 -4.87155e-10 2.05842e-13 0.016812 6.02439e-09 -4.3574e-13 0.0168177 -9.27234e-09 9.35724e-13 0.0168264 3.9478e-08 -1.24374e-12 0.0168386 1.13979e-08 1.88962e-12 0.016857 2.46246e-07 -1.6961e-12 0.0168856 6.84152e-07 1.51129e-12 0.016932 2.92267e-06 -3.08527e-13 0.0170252 1.20321e-05 -2.27215e-12 0.0171625 4.11591e-05 -8.66716e-12 0.0176427 0.000136547 -2.28223e-11 0.0186595 0.000435483 -5.53755e-11 0.0210479 0.0012307 -1.26383e-10 0.0264999 0.00310846 -2.45897e-10 0.0303333 0.0066494 -4.55612e-10 0.032222 0.0121794 -1.48524e-10 0.0331405 0.0138562 -7.74262e-11 0.0335262 0.0145552 -2.28733e-11 0.0337117 0.0145119 3.72584e-12 0.0338883 0.0141548 1.00916e-11 0.034096 0.0137471 1.76919e-11 0.0341371 0.0133802 3.26831e-11 0.0340702 0.0129447 5.95916e-11 0.033959 0.0124187 8.27442e-11 0.0338055 0.011853 9.03187e-11 0.0336279 0.0112761 9.97841e-11 0.0334353 0.0107065 1.04371e-10 0.0332367 0.0101569 1.0737e-10 0.033034 0.00963392 1.03507e-10 0.032822 0.00913855 9.96064e-11 0.0325886 0.00866604 9.85954e-11 0.0323261 0.00821296 9.62595e-11 0.0320338 0.00777596 8.87876e-11 0.0317138 0.00735572 8.10374e-11 0.0313695 0.00695009 7.62299e-11 0.0310152 0.00656009 7.39033e-11 0.0306669 0.00618813 7.12886e-11 0.0303328 0.00583552 6.66626e-11 0.030012 0.00550149 6.01247e-11 0.029701 0.00518396 5.24583e-11 0.0293983 0.00488141 4.46016e-11 0.0290985 0.00459236 3.77088e-11 0.0287968 0.00431554 3.32914e-11 0.0284977 0.00404994 2.91627e-11 0.0281953 0.00379653 2.65945e-11 0.0279047 0.00355391 2.06828e-11 0.0276348 0.00332541 1.14636e-11 0.027384 0.00311029 4.68742e-12 0.0271566 0.00290869 -3.7233e-12 0.026954 0.00272179 -2.29071e-12 0.0267792 0.00254918 -6.99417e-12 0.0266247 0.00238939 -7.19554e-12 0.0264801 0.00224258 -6.09703e-12 0.0263376 0.00210745 -4.70755e-12 0.0261947 0.00198342 -3.51041e-12 0.0260518 0.00187065 -2.72435e-12 0.0259099 0.00176944 -2.34999e-12 0.0257701 0.00167989 -2.27435e-12 0.0256346 0.00160161 -2.84648e-12 0.0255064 0.00153393 -4.13742e-12 0.0253825 0.00147568 -5.8994e-12 0.0252453 0.00142447 -7.18187e-12 0.0250506 0.00137555 -7.22763e-12 0.0247175 0.00132042 -5.7903e-12 0.0241304 0.00124701 -2.48526e-12 0.0231614 0.00114198 2.65345e-12 0.021735 0.000990203 8.78331e-12 0.0199215 0.000807747 1.33969e-11 0.0179552 0.000613192 1.49385e-11 0.0161216 0.00043434 1.34023e-11 0.0146128 0.000290957 1.03352e-11 0.0134811 0.000187765 7.23907e-12 0.0126854 0.000118849 4.83263e-12 0.0121496 7.47775e-05 3.15587e-12 0.0117999 4.72032e-05 1.95838e-12 0.0115765 3.01103e-05 1.22557e-12 0.0114354 1.94563e-05 7.88214e-13 0.0113469 1.27326e-05 5.65432e-13 0.0112915 8.42523e-06 2.89912e-13 0.011257 5.6235e-06 1.57481e-13 0.0112354 3.77563e-06 1.16655e-13 0.011222 2.54313e-06 7.67505e-14 0.0112137 1.7144e-06 5.28819e-14 0.0112085 1.15427e-06 3.86618e-14 0.0112053 7.74808e-07 3.01826e-14 0.0112033 5.17886e-07 2.50997e-14 0.011202 3.44448e-07 2.20808e-14 0.0112013 2.27682e-07 2.02631e-14 0.0112008 1.49413e-07 1.91519e-14 0.0112005 9.74697e-08 1.84376e-14 0.0112003 6.31296e-08 1.80518e-14 0.0112002 4.05367e-08 1.77901e-14 0.0112001 2.58412e-08 1.76084e-14 0.0112001 1.63448e-08 1.75245e-14 0.0112001 1.02551e-08 1.74124e-14 0.0112001 6.37872e-09 1.74596e-14 0.0112001 3.94871e-09 1.72506e-14 2.36623e-09 1.75516e-14 0.0168033 1.0302e-10 7.93861e-15 0.0168051 -3.92886e-11 -1.8263e-14 0.0168078 -1.29147e-10 8.62823e-14 0.0168119 1.28637e-09 -1.38351e-13 0.0168178 -2.78882e-09 2.88808e-13 0.0168262 8.51375e-09 -4.06444e-13 0.0168384 -6.77685e-09 7.25365e-13 0.0168558 3.7931e-08 -4.85164e-13 0.0168802 7.10224e-08 5.27184e-13 0.0169149 3.53789e-07 6.20238e-13 0.0169685 1.30575e-06 -1.37051e-12 0.017051 5.33676e-06 1.99195e-12 0.0172283 1.89946e-05 -4.83974e-12 0.0175599 7.07451e-05 -9.90799e-12 0.0182908 0.000233187 -6.31816e-11 0.0201813 0.00071593 -7.77085e-11 0.0235446 0.00186852 -2.53535e-10 0.0285589 0.00420522 -4.27804e-10 0.0316054 0.00892789 -2.66702e-10 0.0329697 0.0123916 -1.45275e-10 0.0337396 0.0134623 -5.73722e-11 0.0341017 0.013901 -6.2022e-12 0.0343028 0.0137989 1.04608e-11 0.0345326 0.0134317 1.34278e-11 0.0346975 0.0130685 1.93996e-11 0.0347435 0.0126995 2.89311e-11 0.0347121 0.0122869 4.87348e-11 0.034622 0.0118276 6.71519e-11 0.034488 0.0113464 7.70025e-11 0.0343229 0.0108561 8.05998e-11 0.0341381 0.0103689 8.2262e-11 0.03393 0.00989223 7.66055e-11 0.0336916 0.00942386 7.80197e-11 0.0334164 0.00896529 7.39108e-11 0.0331069 0.0085137 6.58208e-11 0.0327666 0.00807257 5.58974e-11 0.0324012 0.00764119 4.78395e-11 0.0320244 0.00722181 4.28088e-11 0.0316519 0.00681718 3.90896e-11 0.0312941 0.00642996 3.46539e-11 0.030952 0.00606072 2.80907e-11 0.0306224 0.0057086 1.9654e-11 0.0302998 0.00537128 1.07628e-11 0.029982 0.00504774 2.79357e-12 0.029664 0.00473705 -3.0038e-12 0.0293453 0.00443911 -5.53231e-12 0.0290323 0.0041537 -1.01001e-11 0.0287219 0.00388218 -1.81614e-11 0.0284298 0.00362412 -2.94814e-11 0.0281618 0.00338271 -3.93737e-11 0.0279127 0.00315662 -4.51293e-11 0.0276891 0.00294752 -4.60922e-11 0.0274878 0.00275467 -3.88623e-11 0.0273047 0.00257834 -3.44711e-11 0.0271326 0.00241653 -2.68341e-11 0.0269628 0.0022682 -2.23607e-11 0.0267911 0.00213296 -1.96244e-11 0.0266157 0.00200986 -1.76115e-11 0.0264368 0.00189864 -1.62982e-11 0.0262564 0.00179907 -1.48806e-11 0.0260782 0.00171055 -1.35097e-11 0.0259054 0.00163188 -1.18161e-11 0.0257334 0.00156082 -1.08093e-11 0.0255399 0.00149387 -1.01156e-11 0.0252741 0.00142476 -8.2615e-12 0.0248491 0.00134383 -3.89789e-12 0.0241453 0.00123898 8.45409e-13 0.0230433 0.00109621 7.51588e-12 0.0214991 0.000919539 1.39324e-11 0.0196183 0.000723099 1.76494e-11 0.0176476 0.000529067 1.76655e-11 0.0158577 0.000361961 1.47478e-11 0.0144113 0.000234921 1.0813e-11 0.0133388 0.000147355 7.31975e-12 0.0125897 9.09257e-05 4.75742e-12 0.012087 5.59122e-05 3.02622e-12 0.0117596 3.45701e-05 1.84568e-12 0.0115506 2.16525e-05 1.14018e-12 0.0114187 1.37715e-05 7.69063e-13 0.0113359 8.89168e-06 5.2213e-13 0.0112843 5.81729e-06 2.30289e-13 0.0112522 3.84603e-06 1.53861e-13 0.0112322 2.56172e-06 1.03895e-13 0.0112198 1.71387e-06 6.85075e-14 0.0112122 1.14868e-06 4.75878e-14 0.0112075 7.69471e-07 3.52527e-14 0.0112046 5.14222e-07 2.79818e-14 0.0112028 3.42355e-07 2.36883e-14 0.0112017 2.26842e-07 2.11501e-14 0.0112011 1.4943e-07 1.96434e-14 0.0112007 9.77909e-08 1.87416e-14 0.0112004 6.35728e-08 1.81958e-14 0.0112003 4.10457e-08 1.78637e-14 0.0112002 2.63057e-08 1.76654e-14 0.0112001 1.6721e-08 1.75272e-14 0.0112001 1.05483e-08 1.74692e-14 0.0112001 6.60881e-09 1.738e-14 0.0112001 4.10739e-09 1.74354e-14 0.0112001 2.53215e-09 1.72363e-14 1.51666e-09 1.7543e-14 0.0168033 2.50057e-11 3.43414e-15 0.0168051 -2.33852e-11 -2.18646e-15 0.0168078 -1.28567e-12 3.34401e-14 0.0168119 2.4823e-10 -3.88844e-14 0.0168178 -6.43107e-10 1.09606e-13 0.0168262 1.81395e-09 -1.11021e-13 0.0168384 -2.07442e-09 2.20228e-13 0.0168556 5.81985e-09 -1.1131e-13 0.0168797 8.57943e-09 2.76066e-13 0.0169127 3.3204e-08 4.23722e-13 0.0169587 1.7326e-07 -4.87249e-13 0.0170225 5.73412e-07 2.8178e-12 0.0171157 2.34598e-06 -3.41532e-12 0.0172656 8.63618e-06 5.52053e-12 0.0175494 3.24809e-05 -1.26347e-11 0.0181169 0.000112309 -1.83232e-11 0.0193385 0.000365423 -7.02503e-11 0.0218081 0.00103448 -1.36441e-10 0.0258373 0.00243694 -3.83241e-10 0.0298646 0.00485707 -6.04282e-10 0.0323528 0.00921767 -2.549e-10 0.0335439 0.0118938 -1.30545e-10 0.0342326 0.0126991 -6.83307e-11 0.0346052 0.0130075 -1.62686e-11 0.034878 0.0129639 1.11213e-11 0.0350633 0.0127019 8.58279e-12 0.035185 0.0123554 7.21718e-12 0.0351939 0.0119758 1.76159e-11 0.0351517 0.0115646 2.37704e-11 0.0350631 0.0111378 2.14949e-11 0.0349442 0.0106972 2.69068e-11 0.0347884 0.0102557 1.90748e-11 0.0345922 0.0098097 1.50177e-11 0.0343521 0.00936255 1.12317e-11 0.0340695 0.00891011 -1.37616e-12 0.0337535 0.00845708 -1.12857e-11 0.0334093 0.00800747 -1.73892e-11 0.0330505 0.00756365 -2.49027e-11 0.0326921 0.00713001 -3.08353e-11 0.0323449 0.00671022 -3.62277e-11 0.0320151 0.00630655 -4.38742e-11 0.0316968 0.00592005 -5.00417e-11 0.0313827 0.00554902 -6.15415e-11 0.0310675 0.00519164 -6.20383e-11 0.0307525 0.00484832 -7.73496e-11 0.0304352 0.00451971 -7.36657e-11 0.030117 0.00420583 -7.95041e-11 0.0298043 0.00390766 -9.46307e-11 0.0294971 0.0036268 -1.00973e-10 0.029205 0.00336518 -9.87926e-11 0.0289349 0.00312354 -9.55747e-11 0.0286805 0.00290242 -9.30471e-11 0.0284432 0.00270216 -8.82899e-11 0.0282178 0.00252141 -8.43511e-11 0.0279951 0.00235841 -7.84573e-11 0.0277727 0.0022123 -7.14043e-11 0.027547 0.00208119 -6.4738e-11 0.0273157 0.00196361 -5.6372e-11 0.0270764 0.00185747 -4.51185e-11 0.0268296 0.0017622 -3.51589e-11 0.0265807 0.00167745 -2.80533e-11 0.0263345 0.00160019 -2.30271e-11 0.0260857 0.00152634 -2.01807e-11 0.0258074 0.00144995 -1.68411e-11 0.0254414 0.00136314 -1.15682e-11 0.0248946 0.00125723 -3.83359e-12 0.024053 0.00112451 4.20616e-12 0.0228212 0.000960637 1.25186e-11 0.0211862 0.000778665 1.88115e-11 0.019274 0.000590658 2.1492e-11 0.0173319 0.000417618 1.99802e-11 0.0156058 0.000276907 1.5801e-11 0.0142294 0.000174764 1.11496e-11 0.013216 0.000106942 7.34552e-12 0.0125101 6.45393e-05 4.66169e-12 0.0120366 3.89134e-05 2.91711e-12 0.011728 2.36272e-05 1.74074e-12 0.0115308 1.45673e-05 1.06603e-12 0.0114061 9.14064e-06 7.42923e-13 0.0113279 5.8348e-06 4.67143e-13 0.0112791 3.78134e-06 2.00422e-13 0.0112487 2.4805e-06 1.47292e-13 0.0112299 1.64153e-06 9.34078e-14 0.0112183 1.09232e-06 6.17881e-14 0.0112112 7.28754e-07 4.3302e-14 0.0112068 4.86252e-07 3.25192e-14 0.0112041 3.23834e-07 2.62343e-14 0.0112025 2.14931e-07 2.2569e-14 0.0112015 1.41998e-07 2.04281e-14 0.0112009 9.32972e-08 1.91736e-14 0.0112006 6.09163e-08 1.84327e-14 0.0112004 3.95106e-08 1.79949e-14 0.0112002 2.54499e-08 1.77292e-14 0.0112002 1.62746e-08 1.75763e-14 0.0112001 1.03281e-08 1.74688e-14 0.0112001 6.50377e-09 1.74317e-14 0.0112001 4.06502e-09 1.73508e-14 0.0112001 2.52254e-09 1.74194e-14 0.0112 1.54853e-09 1.72255e-14 9.29825e-10 1.75379e-14 0.0168033 6.83017e-12 2.25345e-15 0.0168051 -6.69119e-12 3.1146e-15 0.0168078 7.5999e-12 1.11337e-14 0.0168119 4.92193e-11 -1.08333e-15 0.0168178 -1.31722e-10 3.91683e-14 0.0168262 3.98166e-10 -8.13407e-15 0.0168384 -5.38501e-10 9.90994e-14 0.0168556 1.12956e-09 2.48066e-14 0.0168796 7.71965e-10 1.45847e-13 0.0169125 3.18214e-09 2.11536e-13 0.0169576 2.29238e-08 1.40453e-13 0.0170187 5.84603e-08 1.18982e-12 0.0171006 2.95778e-07 -6.49094e-14 0.0172117 9.99071e-07 2.84772e-12 0.0173685 4.06712e-06 -8.72457e-13 0.0176119 1.43535e-05 1.16192e-12 0.0180554 5.14608e-05 -9.59588e-12 0.018886 0.000173023 -3.51046e-11 0.0204372 0.000501312 -1.08887e-10 0.0230147 0.00125301 -1.89961e-10 0.0267063 0.00260574 -5.3834e-10 0.0302522 0.00461929 -6.13335e-10 0.0325616 0.00772229 -3.85233e-10 0.033778 0.0105194 -1.75179e-10 0.0345 0.0115319 -1.06287e-10 0.0349606 0.0117716 -8.04692e-11 0.0352978 0.0117503 -5.02786e-11 0.0355394 0.0114669 -5.5798e-11 0.0356973 0.0111463 -4.74817e-11 0.0357145 0.0108253 -4.15973e-11 0.0356568 0.0104524 -5.44961e-11 0.0355846 0.0100306 -6.47024e-11 0.0354813 0.00956445 -8.09785e-11 0.035342 0.00907236 -9.36855e-11 0.0351629 0.00857292 -1.10885e-10 0.0349457 0.00808221 -1.31296e-10 0.0346962 0.00759443 -1.37142e-10 0.0344256 0.00711683 -1.51156e-10 0.0341457 0.0066515 -1.56138e-10 0.0338652 0.00620323 -1.59696e-10 0.0335912 0.00577145 -1.65831e-10 0.0333243 0.0053621 -1.70169e-10 0.0330502 0.0049688 -1.76632e-10 0.0327665 0.00458479 -1.94511e-10 0.0324717 0.00422059 -1.81842e-10 0.0321674 0.00387762 -2.20573e-10 0.031851 0.00355885 -2.00573e-10 0.0315201 0.00326298 -1.80253e-10 0.0311876 0.00299275 -1.78067e-10 0.0308548 0.00274867 -1.82475e-10 0.0305222 0.00253135 -1.84781e-10 0.0302022 0.00233957 -1.81892e-10 0.029894 0.00217304 -1.72909e-10 0.0295828 0.00202985 -1.60718e-10 0.0292644 0.00190656 -1.48288e-10 0.028943 0.00180038 -1.37632e-10 0.0286202 0.00170881 -1.27974e-10 0.0282912 0.00162925 -1.17824e-10 0.0279527 0.0015592 -1.07386e-10 0.0276042 0.00149458 -9.35406e-11 0.0272453 0.00143243 -7.06966e-11 0.0268784 0.00136994 -4.85943e-11 0.026497 0.00130055 -3.59907e-11 0.0260729 0.00121925 -2.72021e-11 0.0255503 0.00112157 -1.87348e-11 0.0248464 0.00100557 -6.30351e-12 0.023865 0.000870668 5.71474e-12 0.0225293 0.000722491 1.59194e-11 0.0208414 0.00056728 2.27159e-11 0.0189348 0.000417373 2.45353e-11 0.0170449 0.000286912 2.17411e-11 0.0153902 0.000185524 1.65599e-11 0.014081 0.000114522 1.13689e-11 0.0131195 6.8727e-05 7.34082e-12 0.0124495 4.07661e-05 4.58464e-12 0.0119993 2.42008e-05 2.8102e-12 0.0117051 1.44861e-05 1.66519e-12 0.0115167 8.82108e-06 1.05951e-12 0.0113973 5.47691e-06 7.15517e-13 0.0113223 3.46544e-06 4.04372e-13 0.0112755 2.22964e-06 1.89519e-13 0.0112464 1.454e-06 1.34905e-13 0.0112284 9.57604e-07 8.54496e-14 0.0112173 6.34704e-07 5.67189e-14 0.0112105 4.22048e-07 4.00874e-14 0.0112063 2.80811e-07 3.04828e-14 0.0112038 1.86555e-07 2.49425e-14 0.0112023 1.23545e-07 2.17473e-14 0.0112014 8.14577e-08 1.99018e-14 0.0112008 5.3421e-08 1.88345e-14 0.0112005 3.48214e-08 1.82127e-14 0.0112003 2.25485e-08 1.78518e-14 0.0112002 1.45006e-08 1.76356e-14 0.0112001 9.25843e-09 1.75146e-14 0.0112001 5.86774e-09 1.74284e-14 0.0112001 3.69068e-09 1.74057e-14 0.0112001 2.30352e-09 1.73329e-14 0.0112001 1.42762e-09 1.74081e-14 0.0112 8.74614e-10 1.72183e-14 5.24562e-10 1.7534e-14 0.0168033 2.69169e-12 2.21153e-15 0.0168051 -4.79851e-13 3.70662e-15 0.0168078 5.44037e-12 5.15683e-15 0.0168119 1.09008e-11 6.71582e-15 0.0168178 -1.86396e-11 1.78398e-14 0.0168262 8.12317e-11 1.37905e-14 0.0168384 -9.47552e-11 5.19582e-14 0.0168556 2.16696e-10 5.18046e-14 0.0168796 1.05771e-10 1.2098e-13 0.0169125 2.25587e-10 1.7635e-13 0.0169574 3.29126e-09 2.2203e-13 0.0170182 5.34487e-09 7.07168e-13 0.0170989 3.67783e-08 7.46728e-13 0.0172049 1.12676e-07 1.92933e-12 0.0173438 4.93944e-07 1.70087e-12 0.017527 1.7304e-06 3.39584e-12 0.0177764 6.51973e-06 2.40853e-12 0.018141 2.27899e-05 -5.22241e-13 0.0187394 7.32797e-05 -9.93474e-12 0.0197254 0.000217089 -4.98937e-11 0.021266 0.000544012 -1.304e-10 0.0234313 0.00117025 -2.48325e-10 0.0263209 0.00213619 -4.77582e-10 0.02937 0.00347475 -6.62731e-10 0.0318782 0.00489447 -6.60052e-10 0.0336429 0.00676509 -4.53301e-10 0.0347544 0.00837359 -3.22221e-10 0.0354889 0.00904911 -2.5038e-10 0.0360635 0.00900302 -2.61578e-10 0.0365243 0.00876378 -2.7285e-10 0.0368785 0.00848996 -2.72453e-10 0.037152 0.00808343 -2.97345e-10 0.0373701 0.00758771 -3.16405e-10 0.0375178 0.00708924 -3.24819e-10 0.0375459 0.0065977 -3.46061e-10 0.037509 0.00608823 -3.91591e-10 0.0374282 0.00559903 -3.82873e-10 0.0373013 0.00514225 -3.89359e-10 0.0371356 0.00470057 -3.90633e-10 0.0369448 0.00428105 -3.84222e-10 0.0367301 0.00388602 -3.81886e-10 0.0364982 0.00352552 -3.73452e-10 0.0362371 0.00319136 -3.72815e-10 0.0359302 0.00288279 -3.58065e-10 0.0355865 0.00258922 -3.62323e-10 0.0352246 0.00231116 -3.39851e-10 0.034835 0.00206428 -3.36774e-10 0.0344146 0.00185005 -3.23359e-10 0.0339703 0.00166653 -3.04116e-10 0.0335125 0.00151147 -2.88559e-10 0.0330524 0.00138345 -2.8004e-10 0.0325842 0.0012795 -2.69983e-10 0.0321202 0.00119632 -2.54071e-10 0.0316624 0.00113173 -2.35714e-10 0.0311924 0.0010818 -2.19624e-10 0.0307023 0.00104139 -2.0564e-10 0.0302028 0.00100771 -1.95877e-10 0.0297028 0.000979054 -1.89181e-10 0.0291926 0.000950123 -1.78758e-10 0.0286587 0.000918417 -1.63578e-10 0.0280973 0.000882769 -1.40289e-10 0.0275132 0.000838662 -9.93196e-11 0.0269113 0.00078531 -6.34468e-11 0.0262792 0.000722132 -4.53227e-11 0.0255747 0.000649624 -3.08556e-11 0.0247249 0.000568813 -1.18248e-11 0.0236382 0.000481743 4.8786e-12 0.0222403 0.000390569 1.78045e-11 0.0205369 0.000299845 2.529e-11 0.0186589 0.000216035 2.65705e-11 0.0168252 0.000145719 2.2888e-11 0.0152328 9.26703e-05 1.70359e-11 0.0139765 5.63802e-05 1.1495e-11 0.0130536 3.34069e-05 7.32658e-12 0.0124092 1.95932e-05 4.52535e-12 0.0119749 1.15142e-05 2.73457e-12 0.0116905 6.82761e-06 1.61293e-12 0.0115078 4.12413e-06 1.05185e-12 0.0113918 2.54329e-06 6.92818e-13 0.0113189 1.6002e-06 3.53689e-13 0.0112733 1.02484e-06 1.79692e-13 0.011245 6.65854e-07 1.26551e-13 0.0112274 4.37223e-07 8.01074e-14 0.0112167 2.8909e-07 5.33318e-14 0.0112101 1.91845e-07 3.79499e-14 0.0112061 1.27427e-07 2.91357e-14 0.0112036 8.45306e-08 2.40927e-14 0.0112022 5.59066e-08 2.12096e-14 0.0112013 3.6817e-08 1.95599e-14 0.0112008 2.41183e-08 1.8616e-14 0.0112005 1.5705e-08 1.80719e-14 0.0112003 1.016e-08 1.77609e-14 0.0112002 6.52756e-09 1.75763e-14 0.0112001 4.16394e-09 1.7476e-14 0.0112001 2.63671e-09 1.74034e-14 0.0112001 1.65718e-09 1.7389e-14 0.0112001 1.03349e-09 1.73229e-14 0.0112 6.40008e-10 1.74015e-14 0.0112 3.91696e-10 1.72142e-14 2.3479e-10 1.75318e-14 0.0168033 2.55508e-15 0.0168051 3.22158e-15 0.0168078 4.22555e-15 0.0168119 7.64045e-15 0.0168178 1.27124e-14 0.0168262 1.78198e-14 0.0168384 3.93408e-14 0.0168556 5.4842e-14 0.0168796 1.07914e-13 0.0169125 1.65166e-13 0.0169574 2.4383e-13 0.0170181 5.44329e-13 0.0170987 9.49453e-13 0.0172041 1.64446e-12 0.0173409 2.29166e-12 0.0175161 3.51053e-12 0.017737 4.55693e-12 0.0180149 5.23509e-12 0.0183745 4.46999e-12 0.0188651 -1.24525e-12 0.0195731 -1.5669e-11 0.0205999 -6.94924e-11 0.0220442 -1.49044e-10 0.0239219 -2.89221e-10 0.0261997 -4.53018e-10 0.0288318 -7.16644e-10 0.031602 -9.46425e-10 0.0342022 -1.07583e-09 0.0364843 -1.08646e-09 0.0384557 -1.14245e-09 0.0401268 -1.09416e-09 0.0414962 -1.10172e-09 0.0425845 -1.07364e-09 0.0434178 -1.01867e-09 0.044006 -9.69294e-10 0.0443595 -9.43674e-10 0.0445681 -8.61068e-10 0.0445617 -8.19158e-10 0.0444343 -7.6859e-10 0.0441685 -7.30291e-10 0.0438053 -6.82889e-10 0.0433686 -6.15921e-10 0.0428663 -5.81359e-10 0.0422865 -5.31796e-10 0.0416227 -4.88643e-10 0.0408899 -4.34372e-10 0.0401122 -4.13497e-10 0.0392995 -3.82368e-10 0.0384694 -3.55742e-10 0.0376392 -3.40609e-10 0.0368208 -3.33493e-10 0.0360139 -3.25475e-10 0.0352203 -3.16441e-10 0.034441 -2.9958e-10 0.033663 -2.86633e-10 0.0328774 -2.79968e-10 0.0320826 -2.72313e-10 0.0312836 -2.68255e-10 0.0304865 -2.59807e-10 0.0296842 -2.41593e-10 0.0288658 -2.09447e-10 0.0280426 -1.59327e-10 0.0272313 -9.71155e-11 0.0264275 -6.2141e-11 0.025591 -4.43617e-11 0.0246461 -1.86468e-11 0.0234971 2.49121e-12 0.0220679 1.78444e-11 0.0203627 2.62008e-11 0.0185065 2.74356e-11 0.0167076 2.34009e-11 0.0151506 1.72534e-11 0.0139231 1.15506e-11 0.0130205 7.31624e-12 0.0123892 4.49429e-12 0.011963 2.69602e-12 0.0116833 1.58617e-12 0.0115035 1.04602e-12 0.0113892 6.79672e-13 0.0113173 3.27266e-13 0.0112723 1.72261e-13 0.0112443 1.22358e-13 0.011227 7.74334e-14 0.0112164 5.1641e-14 0.0112099 3.68859e-14 0.0112059 2.84673e-14 0.0112036 2.36724e-14 0.0112021 2.09447e-14 0.0112013 1.93921e-14 0.0112008 1.85092e-14 0.0112005 1.80034e-14 0.0112003 1.77171e-14 0.0112002 1.75477e-14 0.0112001 1.74575e-14 0.0112001 1.73916e-14 0.0112001 1.73805e-14 0.0112001 1.73186e-14 0.0112 1.73983e-14 0.0112 1.72121e-14 1.75309e-14 0.00965477 0.00861958 -6.59553e-11 0.00623248 0.00343665 -4.47708e-11 0.00472738 0.00149963 -3.17679e-11 0.00411248 0.000617686 -3.50832e-11 0.00399547 0.000112912 -3.8236e-11 0.00424335 -0.000253266 -4.66319e-11 0.00466731 -0.000409682 -6.37542e-11 0.00494048 -0.000254881 -5.96335e-11 0.00503744 -8.76255e-05 -4.47031e-11 0.00502709 1.56985e-05 -6.1018e-11 0.00496792 6.2343e-05 -6.90732e-11 0.00493169 3.42581e-05 -8.616e-11 0.00492524 7.70123e-06 -8.90809e-11 0.00495949 -2.53498e-05 -9.33923e-11 0.00503028 -4.66188e-05 -1.07462e-10 0.0051201 -5.68568e-05 -8.65274e-11 0.00521607 -6.02286e-05 -7.90076e-11 0.0053216 -6.20112e-05 -6.83053e-11 0.00544235 -6.76961e-05 -5.21562e-11 0.00557881 -7.54377e-05 -3.75612e-11 0.00572802 -8.35761e-05 -2.4757e-11 0.00588367 -9.03835e-05 -1.52369e-11 0.00603675 -9.53511e-05 -7.48216e-12 0.00617927 -9.82425e-05 -9.88083e-13 0.00630614 -9.92205e-05 1.734e-12 0.00641805 -9.85986e-05 5.55641e-12 0.00652242 -9.60138e-05 1.3068e-11 0.00662068 -9.24688e-05 1.18691e-11 0.0067033 -8.92478e-05 5.98199e-12 0.00676805 -8.47812e-05 1.08062e-11 0.00682112 -7.82678e-05 1.26351e-11 0.00686533 -7.20748e-05 1.02696e-11 0.00690147 -6.59184e-05 6.69341e-12 0.00693125 -5.99421e-05 3.97368e-12 0.0069585 -5.43872e-05 3.95633e-12 0.0069876 -4.9608e-05 6.51499e-12 0.00702115 -4.59246e-05 8.36478e-12 0.00706 -4.35331e-05 6.56721e-12 0.00710555 -4.25656e-05 3.42544e-12 0.00716084 -4.30794e-05 1.99791e-12 0.00722952 -4.50635e-05 1.5146e-12 0.00731632 -4.8503e-05 3.48752e-13 0.00742381 -5.35011e-05 -3.54077e-12 0.00754644 -5.99231e-05 -8.78355e-12 0.00768502 -6.73616e-05 -1.79175e-11 0.00788956 -7.68514e-05 -2.7707e-11 0.00825795 -7.98909e-05 -3.90393e-11 0.00879583 -8.36715e-05 -4.64329e-11 0.00947109 -9.37598e-05 -5.97204e-11 0.0102528 -0.000108767 -6.46975e-11 0.0111044 -0.000118742 -6.50133e-11 0.0119974 -0.000125114 -6.64886e-11 0.0129037 -0.000131914 -6.69191e-11 0.0137967 -0.00013899 -6.27631e-11 0.0146551 -0.000146167 -4.79141e-11 0.0154637 -0.000153278 -3.6161e-11 0.0162088 -0.000160256 -2.94365e-11 0.0168752 -0.000167078 -2.4596e-11 0.0174482 -0.000173332 -1.4512e-11 0.0179188 -0.000178101 -5.67763e-12 0.0182936 -0.000180673 8.94135e-13 0.0185978 -0.000180894 3.23691e-12 0.018849 -0.000179002 3.52912e-12 0.0190534 -0.000175194 4.04367e-12 0.0192089 -0.000169671 4.32996e-12 0.0192906 -0.000162587 3.27235e-12 0.0192117 -0.000153775 -1.31171e-12 0.0186789 -0.000141305 -1.19835e-11 0.01795 -0.000121857 -6.62459e-11 0.0169522 -0.000104456 -1.14127e-10 0.015822 -8.55705e-05 -1.17188e-10 0.0147293 -6.63898e-05 -1.0375e-10 0.013792 -4.92885e-05 -8.30847e-11 0.0130549 -3.54762e-05 -6.24728e-11 0.0125101 -2.50494e-05 -5.07036e-11 0.0121249 -1.7482e-05 -4.19399e-11 0.011861 -1.20701e-05 -3.02172e-11 0.0116848 -8.18156e-06 -1.95842e-11 0.0115694 -5.37267e-06 -1.03982e-11 0.0114948 -3.33052e-06 -6.41945e-12 0.0114458 -2.01649e-06 -3.63257e-12 0.0114117 -1.16669e-06 -1.66285e-12 0.0113854 -4.42578e-07 -3.287e-13 0.0113627 9.59815e-08 5.16986e-13 0.0113415 4.15261e-07 1.01063e-12 0.0113211 5.68812e-07 1.2631e-12 0.0113016 6.08657e-07 1.36229e-12 0.0112834 5.77675e-07 1.37475e-12 0.0112669 5.08557e-07 1.34624e-12 0.0112525 4.24335e-07 1.3052e-12 0.0112404 3.39806e-07 1.26626e-12 0.0112305 2.63302e-07 1.23555e-12 0.0112226 1.98562e-07 1.21391e-12 0.0112165 1.46355e-07 1.20011e-12 0.0112118 1.05875e-07 1.19156e-12 0.0112084 7.52456e-08 1.18806e-12 0.0112059 5.28305e-08 1.18389e-12 0.011204 3.64619e-08 1.18709e-12 0.0112028 2.47547e-08 1.17938e-12 1.64394e-08 1.19378e-12 0.0130293 0.0127328 -6.25792e-11 0.00991368 0.00657403 -4.55359e-11 0.00828182 0.0031417 -3.54305e-11 0.00759425 0.00131577 -2.60201e-11 0.00732381 0.000392675 -1.88012e-11 0.00717246 -9.33938e-05 -2.26962e-11 0.00703835 -0.000253827 -2.91751e-11 0.00707747 -0.000268355 -3.89711e-11 0.00722649 -0.00020753 -4.12687e-11 0.00738746 -0.000111303 -7.12311e-11 0.0075025 -3.56193e-05 -7.09981e-11 0.00754111 6.98153e-06 -8.02163e-11 0.00754286 1.70901e-05 -8.30388e-11 0.00752926 3.2943e-07 -8.39705e-11 0.00753154 -3.27336e-05 -8.26086e-11 0.00755609 -6.11409e-05 -8.17939e-11 0.00760851 -8.47505e-05 -7.83194e-11 0.00768896 -0.00010192 -7.01694e-11 0.00778322 -0.000111173 -6.0439e-11 0.00788738 -0.000120643 -3.9017e-11 0.00800311 -0.00013286 -2.81865e-11 0.00813084 -0.000144572 -1.86238e-11 0.00826766 -0.000155293 -1.11167e-11 0.00840766 -0.000163783 -3.6089e-12 0.00854309 -0.000169931 3.9047e-13 0.00866694 -0.000173507 3.54467e-12 0.00877691 -0.000174485 1.29315e-11 0.00887853 -0.000172769 1.20639e-11 0.00897694 -0.00016919 4.75868e-12 0.00906538 -0.000165284 1.0165e-11 0.00913768 -0.000159895 1.67925e-11 0.00920161 -0.000151499 8.98923e-12 0.00926388 -0.000142915 4.5383e-12 0.00932525 -0.000134518 2.24917e-12 0.0093835 -0.000126188 9.6003e-13 0.00943848 -0.000118458 3.29979e-12 0.00949288 -0.000111992 4.90893e-12 0.00954889 -0.000107148 1.71087e-12 0.00960437 -0.000104067 -4.84478e-12 0.00965225 -0.000102844 -6.6225e-12 0.00968598 -0.000103643 -5.49428e-12 0.00970959 -0.000106553 -4.41555e-12 0.00973915 -0.000111517 -6.94567e-12 0.00978565 -0.000118774 -1.1673e-11 0.00985343 -0.000128684 -2.29791e-11 0.00995808 -0.000138224 -3.38707e-11 0.0100915 -0.000147937 -3.93386e-11 0.0102359 -0.00015973 -4.47467e-11 0.0104489 -0.000169556 -5.93444e-11 0.0108239 -0.000178051 -7.18585e-11 0.0113614 -0.000195565 -5.80365e-11 0.0120182 -0.000211476 -6.1624e-11 0.0127627 -0.000226488 -6.36429e-11 0.0135664 -0.000240529 -5.61177e-11 0.0144042 -0.000253946 -4.27295e-11 0.0152504 -0.000266892 -3.32548e-11 0.0160774 -0.000279238 -2.7417e-11 0.0168547 -0.000290618 -2.02528e-11 0.0175527 -0.000300321 -1.35036e-11 0.0181478 -0.00030739 -3.37427e-12 0.0186336 -0.000311147 5.04659e-12 0.0190248 -0.000311389 7.64863e-12 0.0193328 -0.000308115 7.80919e-12 0.0195619 -0.000301469 7.69491e-12 0.0197151 -0.000291781 6.37528e-12 0.01977 -0.000279391 1.72223e-12 0.0196124 -0.000264098 -6.29448e-12 0.0191063 -0.000243294 -2.70086e-11 0.0183299 -0.000216147 -7.02473e-11 0.0172657 -0.00018462 -1.14964e-10 0.01607 -0.000150293 -1.179e-10 0.0149183 -0.000116275 -1.04492e-10 0.0139316 -8.61704e-05 -8.35506e-11 0.0131555 -6.18732e-05 -6.26215e-11 0.012582 -4.34688e-05 -5.01078e-11 0.0121766 -3.00569e-05 -4.15609e-11 0.0118989 -2.05054e-05 -3.0029e-11 0.0117125 -1.3809e-05 -1.95443e-11 0.0115891 -9.04398e-06 -1.01942e-11 0.0115078 -5.60514e-06 -6.24292e-12 0.0114542 -3.13778e-06 -3.58131e-12 0.0114175 -1.40811e-06 -1.66399e-12 0.0113896 -1.9869e-07 -2.62666e-13 0.0113658 6.36064e-07 5.43044e-13 0.0113436 1.12254e-06 1.01745e-12 0.0113225 1.33218e-06 1.26325e-12 0.0113025 1.34724e-06 1.36019e-12 0.0112839 1.24168e-06 1.37211e-12 0.0112672 1.07395e-06 1.34382e-12 0.0112526 8.85708e-07 1.30329e-12 0.0112404 7.03521e-07 1.26487e-12 0.0112305 5.41957e-07 1.23467e-12 0.0112226 4.0696e-07 1.21338e-12 0.0112164 2.99045e-07 1.1998e-12 0.0112118 2.15643e-07 1.19143e-12 0.0112084 1.5296e-07 1.18798e-12 0.0112058 1.06794e-07 1.18387e-12 0.011204 7.35714e-08 1.18701e-12 0.0112027 5.01457e-08 1.17941e-12 3.29271e-08 1.19381e-12 0.0165195 0.0143396 -1.93693e-12 0.0141114 0.00905335 -1.96089e-11 0.0120975 0.00520015 -2.37185e-11 0.0105784 0.00285987 -2.37654e-11 0.00951448 0.00148336 -2.2815e-11 0.00878029 0.000667279 -1.85278e-11 0.0083512 0.000205279 -2.01296e-11 0.00814808 -2.581e-05 -5.68926e-11 0.00817944 -0.000197526 -6.04794e-11 0.00836103 -0.00025306 -6.99142e-11 0.0085892 -0.000221722 -8.75822e-11 0.0087533 -0.000127016 -9.18907e-11 0.00885967 -6.69517e-05 -8.69194e-11 0.00890646 -3.53881e-05 -9.4912e-11 0.00892251 -3.43004e-05 -8.90743e-11 0.00892632 -5.12653e-05 -8.83184e-11 0.00893229 -7.71091e-05 -7.87743e-11 0.00895742 -0.000105913 -7.43505e-11 0.00901427 -0.000132779 -5.92012e-11 0.00909953 -0.000151574 -3.5176e-11 0.00919577 -0.000166069 -3.10858e-11 0.00929863 -0.000183382 -1.78714e-11 0.00940874 -0.000199294 -1.17061e-11 0.00952616 -0.000213182 -6.65012e-12 0.00964847 -0.000224788 -2.21659e-12 0.00976963 -0.00023358 1.60954e-12 0.00988393 -0.000239157 3.48361e-12 0.00998966 -0.000241542 1.14113e-11 0.0100897 -0.000241278 1.21661e-11 0.0101897 -0.000238533 -1.07538e-11 0.0102888 -0.000233819 2.88109e-12 0.01038 -0.000227705 3.95353e-11 0.0104655 -0.000219696 -1.95111e-13 0.010552 -0.000210664 -5.6226e-14 0.0106426 -0.000201573 -3.97463e-12 0.0107382 -0.000192713 -3.62541e-12 0.0108391 -0.000184782 4.94054e-12 0.0109439 -0.000178681 2.19045e-12 0.0110472 -0.000174293 -1.69093e-11 0.0111375 -0.000171375 -2.46449e-11 0.0112008 -0.000170555 -1.06076e-11 0.0112314 -0.00017252 -8.78174e-12 0.0112387 -0.00017618 -1.36316e-11 0.0112382 -0.000183011 -2.09078e-11 0.01125 -0.000193248 -3.15846e-11 0.011302 -0.000203767 -3.917e-11 0.0114056 -0.000215588 -4.15397e-11 0.0115421 -0.000233148 -4.55231e-11 0.0117175 -0.000248701 -5.92469e-11 0.0119977 -0.000257772 -6.79239e-11 0.0124352 -0.000270097 -5.72179e-11 0.0130031 -0.000294756 -5.05298e-11 0.0136648 -0.000314352 -5.61126e-11 0.0143909 -0.000332503 -4.51263e-11 0.0151567 -0.000349427 -3.75473e-11 0.0159372 -0.00036509 -3.04663e-11 0.0167075 -0.000379291 -2.70636e-11 0.0174409 -0.000391913 -1.94117e-11 0.0181056 -0.000402451 -8.55324e-12 0.0186736 -0.000410081 -2.89053e-12 0.0191333 -0.000413886 5.64512e-12 0.0194966 -0.00041338 9.86799e-12 0.019773 -0.000408613 1.07336e-11 0.0199669 -0.000399832 1.3071e-11 0.0200797 -0.00038743 1.59338e-11 0.0200845 -0.000371661 1.16955e-11 0.0198609 -0.000352641 -1.70903e-12 0.0193499 -0.000329658 -3.41398e-11 0.0185369 -0.000294732 -7.58046e-11 0.0174355 -0.000252508 -1.16406e-10 0.0162044 -0.000205634 -1.18694e-10 0.0150199 -0.000159068 -1.05337e-10 0.0140049 -0.000117825 -8.41314e-11 0.0132066 -8.44877e-05 -6.27833e-11 0.0126166 -5.91668e-05 -4.90127e-11 0.0121996 -4.07033e-05 -4.11415e-11 0.0119141 -2.7613e-05 -3.00531e-11 0.0117226 -1.85521e-05 -1.91042e-11 0.011596 -1.20858e-05 -1.00063e-11 0.0115126 -7.36701e-06 -6.09755e-12 0.0114576 -3.89497e-06 -3.43511e-12 0.0114197 -1.45521e-06 -1.55284e-12 0.0113909 1.70593e-07 -2.1656e-13 0.0113664 1.26791e-06 5.73672e-13 0.0113438 1.88143e-06 1.03302e-12 0.0113223 2.11599e-06 1.2681e-12 0.0113021 2.08676e-06 1.3592e-12 0.0112834 1.89626e-06 1.36869e-12 0.0112667 1.62564e-06 1.33997e-12 0.0112522 1.33277e-06 1.29999e-12 0.0112401 1.05426e-06 1.26241e-12 0.0112302 8.09689e-07 1.23301e-12 0.0112223 6.06616e-07 1.21236e-12 0.0112163 4.44913e-07 1.19921e-12 0.0112117 3.2035e-07 1.19113e-12 0.0112082 2.26914e-07 1.18783e-12 0.0112058 1.58484e-07 1.18376e-12 0.011204 1.0909e-07 1.18708e-12 0.0112027 7.41989e-08 1.17941e-12 4.89007e-08 1.1938e-12 0.0179748 0.0144782 -5.29783e-12 0.0165567 0.0105756 -1.06616e-11 0.014702 0.00712393 -3.04222e-11 0.0130226 0.0045848 -1.04108e-11 0.0117106 0.00283339 -2.61649e-11 0.0107547 0.00166501 -1.03808e-11 0.0101211 0.000884936 -1.94884e-11 0.00973609 0.000391231 -1.94342e-11 0.00952354 7.98067e-05 -2.44098e-11 0.00941713 -9.64346e-05 -6.42327e-11 0.00940655 -0.000164336 -6.76991e-11 0.00952328 -0.000199957 -7.65794e-11 0.00966207 -0.000173471 -9.04502e-11 0.00977888 -0.000125425 -7.95321e-11 0.00985885 -9.19125e-05 -1.01581e-10 0.00990477 -7.56739e-05 -1.01882e-10 0.00993654 -7.70937e-05 -6.37848e-11 0.0099569 -9.50802e-05 -6.04507e-11 0.00998255 -0.000122008 -4.83991e-11 0.0100303 -0.000151918 -4.46899e-11 0.0101031 -0.00018048 -3.59298e-11 0.0101978 -0.000205544 -8.82255e-12 0.010288 -0.0002285 -1.6638e-11 0.0103795 -0.00024901 -5.77306e-12 0.0104784 -0.000266275 -3.1975e-12 0.0105862 -0.00028103 -1.13883e-12 0.0106996 -0.000292376 4.20379e-12 0.0108151 -0.000300278 8.50525e-12 0.0109323 -0.000304892 5.16937e-12 0.0110527 -0.000305792 4.8253e-12 0.0111779 -0.000303551 1.11995e-11 0.0113091 -0.000298801 1.01899e-11 0.0114466 -0.000292499 4.68751e-12 0.0115893 -0.000285046 5.65684e-12 0.0117352 -0.000276981 -3.40433e-12 0.011881 -0.000269084 -2.89527e-11 0.0120254 -0.00026149 -9.76035e-12 0.0121701 -0.000253918 1.77752e-11 0.0123102 -0.000247886 -2.19735e-11 0.0124296 -0.000246354 -7.78758e-11 0.0125142 -0.000246994 -5.36056e-11 0.012563 -0.000246983 1.66293e-11 0.0125809 -0.00024877 -1.96744e-11 0.0125786 -0.000255252 -2.94338e-11 0.0125742 -0.00026478 -3.99608e-11 0.0125909 -0.000276269 -5.05801e-11 0.012651 -0.000289259 -4.07198e-11 0.0127636 -0.000305571 -4.40706e-11 0.0129128 -0.000325072 -8.06672e-11 0.0131011 -0.000340871 -6.92247e-11 0.0133879 -0.000351941 -2.69806e-11 0.0138224 -0.000367016 -3.56e-11 0.0143738 -0.000391757 -6.7325e-11 0.0150034 -0.000411898 -4.01537e-11 0.015679 -0.000430755 -3.26674e-11 0.0163751 -0.000447563 -2.77277e-11 0.0170725 -0.000462477 -2.48154e-11 0.0177473 -0.000475369 -1.52325e-11 0.0183708 -0.000485709 -1.03675e-11 0.0189145 -0.000492895 -2.84424e-12 0.019362 -0.000496174 4.04987e-12 0.0197182 -0.000494967 6.71795e-12 0.0199881 -0.000489066 7.13244e-12 0.0201743 -0.000478472 7.72285e-12 0.0202735 -0.000463498 8.15002e-12 0.0202502 -0.000444561 4.27355e-12 0.0200523 -0.000421562 -2.12674e-12 0.0196273 -0.000393084 -1.57466e-11 0.0187422 -0.000353824 -6.35035e-11 0.0176165 -0.000303745 -1.1464e-10 0.0163627 -0.000247558 -1.18951e-10 0.0151517 -0.000191533 -1.06149e-10 0.0141089 -0.000141729 -8.4818e-11 0.0132853 -0.000101322 -6.30914e-11 0.0126745 -7.062e-05 -4.78305e-11 0.0122414 -4.83097e-05 -4.09714e-11 0.0119439 -3.25762e-05 -3.01991e-11 0.0117442 -2.1575e-05 -1.87763e-11 0.011612 -1.3714e-05 -9.85123e-12 0.0115246 -8.02977e-06 -5.96012e-12 0.0114663 -3.90491e-06 -3.28827e-12 0.0114258 -9.67768e-07 -1.43066e-12 0.0113951 1.01355e-06 -1.56655e-13 0.011369 2.23937e-06 6.14657e-13 0.0113453 2.87074e-06 1.05401e-12 0.011323 3.04984e-06 1.27482e-12 0.0113023 2.91952e-06 1.35791e-12 0.0112833 2.60575e-06 1.36398e-12 0.0112664 2.20771e-06 1.3346e-12 0.0112518 1.79531e-06 1.29533e-12 0.0112397 1.4119e-06 1.25895e-12 0.0112299 1.0798e-06 1.23066e-12 0.0112221 8.0644e-07 1.21091e-12 0.011216 5.90091e-07 1.1984e-12 0.0112115 4.24082e-07 1.19071e-12 0.0112081 2.99965e-07 1.18758e-12 0.0112057 2.09067e-07 1.18377e-12 0.0112039 1.43754e-07 1.18702e-12 0.0112027 9.78509e-08 1.17944e-12 6.42346e-08 1.19384e-12 0.0181938 0.0146237 1.13638e-11 0.0175265 0.0113753 -9.99733e-12 0.0163547 0.00846771 -1.99765e-11 0.0150082 0.00605969 1.195e-11 0.013722 0.00421261 -6.98632e-12 0.0126502 0.00281471 3.36552e-12 0.0117744 0.00182735 -9.99561e-12 0.0111202 0.00110799 -5.06395e-12 0.0106408 0.000617399 -1.5867e-11 0.0103295 0.000273358 -3.48508e-11 0.0101659 5.84165e-05 -4.40892e-11 0.0100932 -7.61271e-05 -7.14859e-11 0.0101114 -0.000144821 -7.1981e-11 0.0102084 -0.000181067 -8.06191e-11 0.0103227 -0.000173764 -9.03515e-11 0.0104198 -0.000139256 -9.35315e-11 0.0105005 -0.000120345 -9.39469e-11 0.0105653 -0.000118201 -6.38229e-11 0.0106234 -0.000129937 -4.93049e-11 0.0106824 -0.000152735 -3.87089e-11 0.0107443 -0.000182642 -2.83813e-11 0.0108125 -0.000214434 -1.98615e-11 0.0108918 -0.000245089 -8.92246e-12 0.0109796 -0.000274335 -8.22401e-12 0.0110719 -0.000301009 -6.85129e-12 0.0111706 -0.00032321 3.92441e-13 0.0112756 -0.000341469 4.50662e-12 0.0113847 -0.000355375 6.98282e-12 0.0114957 -0.00036503 5.80174e-12 0.0116093 -0.000370109 6.00025e-12 0.0117302 -0.000371565 7.41725e-12 0.011866 -0.000369928 6.782e-12 0.012022 -0.00036587 5.96854e-12 0.0121974 -0.000360136 3.96314e-12 0.0123855 -0.000353409 -6.19681e-12 0.0125794 -0.000346147 -1.35716e-11 0.0127728 -0.000338802 -9.7448e-12 0.0129587 -0.000332258 -1.1446e-11 0.0131351 -0.000326913 -2.99858e-11 0.0133079 -0.000322717 -4.44366e-11 0.0134727 -0.000321643 -4.25515e-11 0.0136075 -0.000324808 -3.89411e-11 0.0136979 -0.000329666 -2.00128e-11 0.0137532 -0.000334211 -2.95533e-11 0.0137893 -0.000342629 -4.67915e-11 0.0138243 -0.000354251 -4.84302e-11 0.0138782 -0.000368058 -4.26763e-11 0.013972 -0.000383295 -5.1154e-11 0.0141104 -0.000401369 -5.84814e-11 0.0142782 -0.000421458 -5.39148e-11 0.0144853 -0.000436089 -3.55976e-11 0.0147846 -0.000447091 -3.49214e-11 0.0152081 -0.000462832 -3.76481e-11 0.01573 -0.000485947 -3.1996e-11 0.0163177 -0.000504125 -2.78569e-11 0.016942 -0.000520425 -2.52105e-11 0.0175741 -0.000534656 -1.85044e-11 0.0181856 -0.000546302 -1.10001e-11 0.0187501 -0.00055522 -4.79462e-12 0.0192442 -0.000560977 -1.88268e-13 0.0196542 -0.000562673 3.40553e-12 0.0199831 -0.000559547 5.0791e-12 0.0202331 -0.000551458 5.3929e-12 0.0203991 -0.000538655 5.78668e-12 0.0204679 -0.000521531 6.66735e-12 0.0204174 -0.000500571 3.59891e-12 0.0202482 -0.000475272 1.03139e-12 0.0198304 -0.000443315 -2.14478e-11 0.0189093 -0.000399809 -6.68266e-11 0.017765 -0.000344022 -1.16027e-10 0.0164921 -0.000280868 -1.20354e-10 0.0152582 -0.000217479 -1.07568e-10 0.0141915 -0.000160869 -8.59204e-11 0.0133461 -0.000114827 -6.36994e-11 0.0127175 -7.9841e-05 -4.71398e-11 0.0122711 -5.43881e-05 -4.06518e-11 0.0119643 -3.64035e-05 -3.00652e-11 0.0117586 -2.37585e-05 -1.90113e-11 0.0116224 -1.47456e-05 -9.8612e-12 0.0115322 -8.23706e-06 -5.90924e-12 0.0114717 -3.50319e-06 -3.23615e-12 0.0114295 -1.66703e-07 -1.34439e-12 0.0113974 2.01675e-06 -1.09296e-13 0.0113701 3.31261e-06 6.30066e-13 0.0113455 3.91697e-06 1.06107e-12 0.0113226 4.00326e-06 1.27249e-12 0.0113015 3.74686e-06 1.35008e-12 0.0112824 3.29605e-06 1.3544e-12 0.0112655 2.76509e-06 1.32572e-12 0.011251 2.23292e-06 1.28829e-12 0.011239 1.74724e-06 1.2539e-12 0.0112293 1.33131e-06 1.22737e-12 0.0112216 9.91528e-07 1.2089e-12 0.0112157 7.2398e-07 1.19726e-12 0.0112112 5.19476e-07 1.19011e-12 0.0112079 3.66955e-07 1.18737e-12 0.0112055 2.55646e-07 1.18362e-12 0.0112038 1.75646e-07 1.18708e-12 0.0112026 1.19359e-07 1.17945e-12 7.84705e-08 1.19385e-12 0.0187299 0.0150159 -2.13111e-11 0.0179925 0.0121145 -1.88424e-12 0.0170557 0.00945638 3.97867e-12 0.0160555 0.00717199 1.59173e-11 0.0150131 0.00536818 1.81362e-12 0.0140609 0.00389877 1.8699e-12 0.0132261 0.00279983 1.06647e-12 0.0125246 0.00193641 -6.58107e-12 0.0119681 0.00130037 -1.49677e-12 0.0115198 0.000811933 -2.18006e-11 0.0112122 0.000455209 -2.95873e-11 0.011017 0.000198908 -3.81199e-11 0.0108954 2.90086e-05 -7.21105e-11 0.0108354 -7.04908e-05 -7.20563e-11 0.010842 -0.00012807 -7.09906e-11 0.0109187 -0.00016706 -7.13368e-11 0.0110266 -0.000173608 -7.32042e-11 0.0111306 -0.000163258 -6.90368e-11 0.0112223 -0.00016115 -6.02399e-11 0.011311 -0.000172739 -4.99939e-11 0.0113942 -0.000192652 -3.87132e-11 0.0114656 -0.000220742 -2.59232e-11 0.0115279 -0.00025411 -1.82294e-11 0.0115922 -0.000287818 -9.94827e-12 0.0116646 -0.000321087 -3.48348e-12 0.0117446 -0.000352422 -2.44944e-12 0.0118351 -0.000378344 4.79264e-12 0.0119374 -0.000399658 6.86839e-12 0.0120506 -0.000415988 7.92273e-12 0.0121729 -0.000427537 8.39416e-12 0.0123042 -0.000435513 6.978e-12 0.0124469 -0.000439108 6.2417e-12 0.0126058 -0.000438986 4.84001e-12 0.0127844 -0.000435729 1.10204e-12 0.0129818 -0.000430441 -5.40456e-12 0.0131925 -0.000424322 -1.09193e-11 0.013409 -0.000417951 -1.79717e-11 0.013624 -0.000411903 -2.62354e-11 0.0138321 -0.000406866 -2.34617e-11 0.0140306 -0.000403259 -2.77031e-11 0.0142225 -0.000401093 -6.02476e-11 0.01441 -0.000401446 -6.54047e-11 0.0145808 -0.000406243 -1.08946e-11 0.0147183 -0.000414621 1.67527e-11 0.0148223 -0.000422885 -6.19099e-11 0.0149039 -0.000432351 -4.773e-11 0.0149768 -0.000445529 -3.84725e-11 0.0150591 -0.000460175 -4.2218e-11 0.0151717 -0.000475653 -4.66858e-11 0.015321 -0.000493169 -3.23364e-11 0.0154952 -0.000510761 -2.44172e-11 0.0157039 -0.000523543 -2.46885e-11 0.0159948 -0.000533344 -2.87557e-11 0.0163951 -0.000547861 -2.27207e-11 0.0168773 -0.000566276 -1.84845e-11 0.0174112 -0.000580875 -1.07473e-11 0.0179667 -0.000593181 -4.88067e-12 0.0185138 -0.000602993 9.99015e-13 0.0190242 -0.000609732 5.91986e-12 0.0194728 -0.000613353 9.1868e-12 0.0198421 -0.000612841 1.05586e-11 0.020137 -0.000607816 1.07302e-11 0.0203626 -0.000598417 1.07487e-11 0.0205106 -0.000583967 1.08015e-11 0.0205822 -0.000564539 1.04741e-11 0.0205598 -0.000540971 7.79432e-12 0.0203932 -0.000512978 -4.45715e-13 0.0199827 -0.000478202 -2.62978e-11 0.0190567 -0.000431608 -8.22469e-11 0.017912 -0.000371721 -1.19219e-10 0.0166309 -0.000303655 -1.22697e-10 0.0153791 -0.000235144 -1.09584e-10 0.0142896 -0.000173823 -8.73537e-11 0.0134216 -0.000123878 -6.46883e-11 0.0127737 -8.58591e-05 -4.64305e-11 0.0123121 -5.81713e-05 -3.99988e-11 0.0119943 -3.85103e-05 -3.0176e-11 0.011781 -2.46291e-05 -1.91771e-11 0.0116393 -1.47257e-05 -9.94039e-12 0.0115451 -7.59808e-06 -5.96794e-12 0.0114813 -2.47797e-06 -3.20084e-12 0.0114362 1.08225e-06 -1.29344e-12 0.0114017 3.36323e-06 -9.45352e-14 0.0113726 4.6251e-06 6.13567e-13 0.0113467 5.11229e-06 1.04707e-12 0.0113229 5.04324e-06 1.25567e-12 0.0113011 4.61844e-06 1.33238e-12 0.0112817 4.00386e-06 1.33829e-12 0.0112647 3.32463e-06 1.31266e-12 0.0112502 2.66503e-06 1.27863e-12 0.0112383 2.07412e-06 1.24732e-12 0.0112287 1.5741e-06 1.22318e-12 0.0112211 1.16888e-06 1.20643e-12 0.0112153 8.51588e-07 1.19592e-12 0.011211 6.09983e-07 1.18945e-12 0.0112077 4.30317e-07 1.18701e-12 0.0112054 2.99335e-07 1.18358e-12 0.0112037 2.05431e-07 1.18701e-12 0.0112025 1.39581e-07 1.17949e-12 9.15274e-08 1.1939e-12 0.0193151 0.0153585 -9.25257e-12 0.0185336 0.0128024 3.78957e-12 0.0176018 0.0103443 6.16441e-12 0.0166561 0.00815601 2.64469e-11 0.0157473 0.00636654 3.28882e-11 0.0148948 0.00489163 2.46829e-11 0.0141448 0.00372272 1.96678e-11 0.0134766 0.002784 7.65602e-12 0.0129311 0.00204044 1.99098e-12 0.0124485 0.00145489 -8.34362e-12 0.0120653 0.000985189 -1.83236e-11 0.0117477 0.000630306 -2.88463e-11 0.0115283 0.000355042 -3.73712e-11 0.0113931 0.000154653 -3.17435e-11 0.0113219 2.58676e-05 -4.89241e-11 0.0113101 -6.72499e-05 -4.70651e-11 0.0113416 -0.000123402 -4.68414e-11 0.0114294 -0.000168773 -4.5448e-11 0.0115477 -0.000190323 -4.15752e-11 0.0116607 -0.000195809 -3.23975e-11 0.0117614 -0.000210975 -2.6972e-11 0.0118494 -0.000237343 -2.07248e-11 0.0119171 -0.000265617 -1.38852e-11 0.0119669 -0.000298994 -1.06712e-11 0.0120179 -0.000334869 -4.50736e-12 0.0120854 -0.000369831 1.27416e-12 0.0121722 -0.000402911 2.33194e-12 0.0122795 -0.000431232 6.46739e-12 0.0124051 -0.000454987 7.63734e-12 0.0125444 -0.000474231 9.99678e-12 0.0126936 -0.000489299 1.27319e-11 0.0128512 -0.000499553 1.34203e-11 0.0130182 -0.000505281 1.01272e-11 0.013199 -0.000507069 1.00271e-11 0.0133986 -0.000505756 2.16464e-12 0.0136176 -0.000502414 -4.58546e-12 0.0138514 -0.000497956 -1.08544e-11 0.0140918 -0.000493123 -1.44417e-11 0.0143316 -0.000488407 -1.9792e-11 0.0145662 -0.000484399 -2.9674e-11 0.0147919 -0.000482008 -3.29172e-11 0.0150079 -0.000481706 -2.62316e-11 0.0152182 -0.000483416 -2.88614e-11 0.0154219 -0.000488253 -3.24072e-11 0.0156047 -0.000497447 -1.28982e-11 0.0157539 -0.00050906 -1.54737e-11 0.0158741 -0.000519962 -3.95393e-11 0.015977 -0.000532554 -3.39558e-11 0.0160824 -0.000546361 -2.7888e-11 0.016213 -0.000560277 -1.80897e-11 0.0163719 -0.00057617 -1.81542e-11 0.0165516 -0.000590073 -2.19772e-11 0.0167711 -0.000599099 -1.8354e-11 0.0170704 -0.000606717 -3.46517e-12 0.0174575 -0.000619026 -3.54716e-12 0.0179081 -0.000631579 1.35015e-12 0.0183927 -0.000641498 8.90344e-12 0.0188779 -0.000648673 1.40114e-11 0.0193334 -0.000653016 1.74224e-11 0.0197327 -0.000654529 2.02511e-11 0.0200605 -0.000652898 2.14408e-11 0.0203258 -0.000645565 2.01719e-11 0.0205359 -0.000631533 1.96487e-11 0.0206666 -0.000612821 1.95592e-11 0.0207193 -0.000590294 1.81124e-11 0.0206909 -0.000564837 1.22557e-11 0.0205271 -0.000535879 -3.73599e-14 0.0201147 -0.000501325 -3.01294e-11 0.0191923 -0.000453291 -9.34417e-11 0.0180482 -0.000390149 -1.22383e-10 0.0167586 -0.000318629 -1.25439e-10 0.0154894 -0.000246722 -1.11742e-10 0.0143781 -0.000182294 -8.89679e-11 0.0134889 -0.00012974 -6.55609e-11 0.012823 -8.96619e-05 -4.64762e-11 0.0123475 -6.03749e-05 -3.85525e-11 0.0120198 -3.94697e-05 -3.00851e-11 0.0117995 -2.46625e-05 -1.9464e-11 0.011653 -1.40962e-05 -1.03901e-11 0.0115551 -6.50809e-06 -6.03054e-12 0.0114885 -1.07956e-06 -3.24073e-12 0.011441 2.56924e-06 -1.29688e-12 0.0114044 4.83542e-06 -1.13061e-13 0.0113738 5.99102e-06 5.80014e-13 0.0113466 6.316e-06 1.01578e-12 0.0113221 6.0617e-06 1.22555e-12 0.0112999 5.45223e-06 1.3054e-12 0.0112803 4.6681e-06 1.3161e-12 0.0112634 3.84162e-06 1.2958e-12 0.011249 3.05934e-06 1.26674e-12 0.0112373 2.3695e-06 1.23945e-12 0.0112279 1.79178e-06 1.21833e-12 0.0112205 1.32691e-06 1.20359e-12 0.0112148 9.64682e-07 1.19439e-12 0.0112106 6.89853e-07 1.18868e-12 0.0112075 4.85991e-07 1.18672e-12 0.0112052 3.37739e-07 1.18348e-12 0.0112036 2.31581e-07 1.187e-12 0.0112024 1.57122e-07 1.17951e-12 1.03053e-07 1.19394e-12 0.0200726 0.015707 1.46118e-11 0.0192537 0.0134478 5.87219e-12 0.0182944 0.0111847 -7.45903e-12 0.0173042 0.00910552 6.92278e-12 0.0163877 0.00731692 2.80062e-11 0.0155494 0.00582936 2.48619e-11 0.0148182 0.00460755 2.50072e-11 0.0141694 0.00361233 1.0658e-11 0.0136064 0.00278854 2.56766e-12 0.0131017 0.00212088 -8.49701e-12 0.0126681 0.00156749 -1.59481e-11 0.0123129 0.00112688 -1.90826e-11 0.0120263 0.000771979 -2.24408e-11 0.0118424 0.000495516 -3.10807e-11 0.0117267 0.000281438 -2.52037e-11 0.0116764 0.000126484 -4.31602e-11 0.0116794 1.02296e-05 -2.67014e-11 0.0117037 -7.12614e-05 -2.66726e-11 0.0117587 -0.000133251 -2.63539e-11 0.0118561 -0.000188561 -2.46174e-11 0.0119626 -0.000224679 -2.0591e-11 0.0120481 -0.000249779 -1.57646e-11 0.012117 -0.00027942 -1.20858e-11 0.0121768 -0.00031366 -7.18494e-12 0.0122348 -0.0003506 -4.33481e-12 0.012307 -0.000385464 -3.8959e-13 0.0124077 -0.000419966 4.93728e-12 0.0125341 -0.000453892 5.13333e-12 0.0126783 -0.000483923 6.89798e-12 0.0128351 -0.000509314 1.28111e-11 0.013 -0.000530967 1.5226e-11 0.0131706 -0.000548233 1.42973e-11 0.0133467 -0.000561001 1.41237e-11 0.0135312 -0.000569224 8.43611e-12 0.0137287 -0.000573727 8.66726e-12 0.0139442 -0.00057526 6.96986e-12 0.0141795 -0.000574254 6.51835e-12 0.0144317 -0.000571593 3.02052e-12 0.0146934 -0.00056815 -9.36805e-13 0.0149567 -0.000564587 -6.05009e-12 0.015216 -0.000561541 -8.76744e-12 0.0154677 -0.000559866 -9.25368e-12 0.0157086 -0.00056029 -1.21419e-11 0.0159386 -0.00056287 -1.15363e-11 0.0161608 -0.000567478 -5.95363e-12 0.0163707 -0.000575349 -4.21692e-12 0.0165536 -0.000587139 -9.38087e-12 0.016702 -0.000599909 -1.17986e-11 0.0168254 -0.000610877 -9.82014e-12 0.0169467 -0.000621426 -2.93347e-12 0.017088 -0.000632624 -4.19596e-12 0.0172499 -0.000644899 1.87567e-12 0.0174326 -0.000653923 4.54551e-12 0.0176629 -0.000657867 4.67874e-12 0.0179679 -0.000662107 8.98538e-12 0.0183403 -0.000671291 1.78725e-11 0.0187533 -0.00067816 2.12428e-11 0.0191769 -0.000682487 2.54924e-11 0.0195802 -0.000684716 2.84099e-11 0.0199357 -0.000684399 3.0493e-11 0.0202327 -0.000678784 2.81994e-11 0.0204778 -0.000666221 3.06513e-11 0.0206608 -0.000649787 3.15109e-11 0.0207736 -0.000629191 3.1509e-11 0.0208178 -0.000605289 2.88819e-11 0.0207827 -0.000578319 2.1767e-11 0.0206195 -0.00054801 4.73602e-12 0.0202277 -0.000512204 -3.07175e-11 0.0193198 -0.000462942 -1.03359e-10 0.0181832 -0.000397999 -1.25646e-10 0.0168904 -0.000324825 -1.28534e-10 0.0156069 -0.000251371 -1.14136e-10 0.0144751 -0.000185515 -9.06141e-11 0.0135646 -0.0001317 -6.65134e-11 0.0128801 -9.05642e-05 -4.67941e-11 0.0123899 -6.04091e-05 -3.62862e-11 0.0120511 -3.88032e-05 -2.97964e-11 0.0118228 -2.34568e-05 -1.96539e-11 0.0116704 -1.25093e-05 -1.07164e-11 0.0115681 -4.69045e-06 -6.06596e-12 0.0114978 7.80042e-07 -3.25452e-12 0.0114472 4.40418e-06 -1.32055e-12 0.0114081 6.53521e-06 -1.25895e-13 0.0113755 7.48957e-06 5.4273e-13 0.0113469 7.58222e-06 9.78241e-13 0.0113215 7.09829e-06 1.19024e-12 0.0112988 6.27849e-06 1.27479e-12 0.011279 5.312e-06 1.2916e-12 0.011262 4.3338e-06 1.27761e-12 0.0112478 3.42922e-06 1.25411e-12 0.0112362 2.64326e-06 1.23123e-12 0.011227 1.99157e-06 1.21329e-12 0.0112198 1.47079e-06 1.2007e-12 0.0112143 1.06699e-06 1.19286e-12 0.0112102 7.61681e-07 1.18795e-12 0.0112072 5.35817e-07 1.18636e-12 0.011205 3.71806e-07 1.1834e-12 0.0112034 2.54629e-07 1.18703e-12 0.0112023 1.72624e-07 1.17956e-12 1.12982e-07 1.19398e-12 0.0206563 0.0160617 1.007e-11 0.0198761 0.0140566 7.78834e-12 0.0190052 0.0119562 -6.45779e-12 0.0180764 0.0100006 -6.66682e-12 0.0171533 0.00826101 2.92226e-12 0.0162969 0.00675618 -2.97356e-12 0.0155186 0.00547893 -6.80923e-12 0.0148103 0.0044113 -3.56243e-12 0.0141756 0.00351974 -8.4067e-13 0.0136161 0.00278129 -5.88389e-12 0.0131333 0.00216605 -9.84403e-12 0.012739 0.00166124 -1.66521e-11 0.0124148 0.00124673 -1.92405e-11 0.0121775 0.000907573 -2.56908e-11 0.0119952 0.000632939 -2.10239e-11 0.0118808 0.000409627 -2.1739e-11 0.0118167 0.000231263 -2.87422e-11 0.0117972 9.50168e-05 -1.78094e-11 0.0118173 -1.65611e-05 -1.12854e-11 0.0118514 -0.000100369 -1.10126e-11 0.0119096 -0.000171379 -9.12188e-12 0.0119887 -0.000234166 -5.43176e-12 0.0120731 -0.000282942 -9.1595e-13 0.0121624 -0.000322625 3.40153e-13 0.0122609 -0.000360927 4.10854e-12 0.0123764 -0.00040127 5.98389e-12 0.0125136 -0.000440828 9.0869e-12 0.0126744 -0.000476259 1.2756e-11 0.0128502 -0.000509888 1.70663e-11 0.0130304 -0.000541563 1.66635e-11 0.0132118 -0.000568021 1.84549e-11 0.0133943 -0.00059042 1.81125e-11 0.0135785 -0.000609029 1.62516e-11 0.0137666 -0.000623446 1.51744e-11 0.0139632 -0.000633748 1.36001e-11 0.0141744 -0.000640438 1.1914e-11 0.0144051 -0.00064404 9.16053e-12 0.0146561 -0.000645164 4.13661e-12 0.0149246 -0.000644428 2.65838e-12 0.0152049 -0.000642541 6.17378e-14 0.015489 -0.000640243 -2.13826e-12 0.0157704 -0.000638086 -9.63748e-13 0.016045 -0.000636697 2.08458e-12 0.0163097 -0.000636998 -7.61617e-13 0.016561 -0.000639381 -4.29377e-12 0.0167996 -0.000643405 9.17649e-12 0.0170288 -0.000649178 3.59569e-11 0.0172392 -0.000658464 8.64224e-12 0.0174127 -0.000670127 -1.02158e-11 0.0175521 -0.000678508 1.15572e-11 0.0176851 -0.000683803 1.51643e-11 0.0178323 -0.000691196 1.58399e-11 0.0179944 -0.000698377 2.01591e-11 0.0181816 -0.0007002 1.78503e-11 0.0184226 -0.000699394 1.88581e-11 0.0187316 -0.000701323 2.10808e-11 0.0190856 -0.000705644 3.21758e-11 0.0194543 -0.000707815 3.26753e-11 0.0198109 -0.000707582 3.67154e-11 0.0201331 -0.000703305 3.5621e-11 0.020408 -0.000692434 3.68329e-11 0.0206291 -0.0006774 4.19414e-11 0.0207876 -0.000658813 4.17216e-11 0.0208837 -0.000636626 4.08184e-11 0.0209173 -0.000611212 3.75097e-11 0.0208771 -0.000582548 2.86741e-11 0.0207179 -0.000550467 9.65768e-12 0.0203438 -0.000512893 -3.37919e-11 0.0194474 -0.000462938 -1.06322e-10 0.0183149 -0.000397755 -1.30732e-10 0.0170172 -0.000324427 -1.32837e-10 0.0157191 -0.000250792 -1.17172e-10 0.0145672 -0.000184693 -9.25273e-11 0.013636 -0.000130602 -6.75722e-11 0.0129335 -8.91838e-05 -4.7176e-11 0.012429 -5.87419e-05 -3.40237e-11 0.0120796 -3.68668e-05 -2.9199e-11 0.0118436 -2.13051e-05 -1.97232e-11 0.0116856 -1.02262e-05 -1.11176e-11 0.011579 -2.38531e-06 -6.05293e-12 0.0115052 2.99232e-06 -3.2376e-12 0.0114517 6.43423e-06 -1.30983e-12 0.0114103 8.32155e-06 -1.37916e-13 0.011376 9.002e-06 5.10595e-13 0.0113462 8.82e-06 9.43988e-13 0.01132 8.08344e-06 1.15661e-12 0.011297 7.04483e-06 1.24512e-12 0.0112771 5.89682e-06 1.26773e-12 0.0112603 4.77287e-06 1.25988e-12 0.0112463 3.75419e-06 1.24184e-12 0.0112349 2.88068e-06 1.22327e-12 0.0112259 2.16292e-06 1.20848e-12 0.011219 1.59297e-06 1.19794e-12 0.0112137 1.15307e-06 1.19141e-12 0.0112097 8.21622e-07 1.18725e-12 0.0112068 5.77046e-07 1.18611e-12 0.0112047 3.99897e-07 1.18328e-12 0.0112033 2.73488e-07 1.1871e-12 0.0112022 1.8513e-07 1.1796e-12 1.21084e-07 1.19403e-12 0.0214686 0.0164603 1.25317e-11 0.0207062 0.014679 2.03639e-12 0.019799 0.0127464 -7.53258e-12 0.0188911 0.0108698 -8.01487e-13 0.0179876 0.00917213 -4.27389e-12 0.0170867 0.00766201 4.94823e-12 0.01623 0.00634143 4.67579e-12 0.0154556 0.00520849 3.52994e-13 0.0147662 0.00425125 -9.45624e-12 0.0141628 0.00344699 -9.6792e-12 0.0136433 0.00277829 -9.47531e-12 0.01321 0.00222055 -1.31836e-11 0.0128552 0.00175598 -1.36836e-11 0.0125711 0.00136521 -1.64321e-11 0.0123388 0.00103719 -1.5278e-11 0.012161 0.000759357 -1.44789e-11 0.0120338 0.000527259 -1.30777e-11 0.0119557 0.000331788 -1.1669e-11 0.0119317 0.000172692 -4.46056e-12 0.0119404 4.19728e-05 -4.3187e-12 0.0119785 -6.99941e-05 -1.34296e-12 0.0120248 -0.00015971 5.49105e-12 0.0120982 -0.00023714 6.27338e-12 0.012199 -0.00030429 7.86485e-12 0.0123247 -0.00036373 9.49736e-12 0.0124688 -0.000414165 1.44824e-11 0.0126276 -0.000458267 2.28009e-11 0.0128038 -0.000499041 2.62821e-11 0.0129952 -0.000539765 2.68937e-11 0.0131958 -0.000577776 2.61609e-11 0.0133978 -0.000607919 2.62309e-11 0.0136027 -0.000634576 2.53335e-11 0.0138118 -0.000657259 2.22197e-11 0.0140244 -0.000675408 1.92775e-11 0.0142408 -0.00069002 1.63618e-11 0.0144638 -0.000701073 1.38431e-11 0.0146973 -0.000708641 1.11569e-11 0.0149456 -0.00071326 7.00061e-12 0.0152101 -0.00071546 4.99618e-12 0.0154881 -0.000715761 4.78123e-12 0.015775 -0.000714632 5.529e-12 0.0160659 -0.000712675 5.52718e-12 0.0163565 -0.000710613 6.51062e-12 0.0166427 -0.000709122 1.4848e-11 0.0169197 -0.000708731 1.90744e-11 0.0171824 -0.000709758 1.60022e-11 0.0174297 -0.000711717 2.5099e-11 0.0176645 -0.000714356 4.11442e-11 0.0178798 -0.000720363 3.00353e-11 0.0180565 -0.000727506 2.17787e-11 0.0181952 -0.000731236 2.95819e-11 0.018327 -0.000731374 2.86572e-11 0.0184708 -0.000733455 2.89121e-11 0.0186289 -0.000733727 3.36524e-11 0.0188231 -0.000729163 3.20299e-11 0.0190784 -0.000724108 3.35603e-11 0.0193844 -0.000723689 4.23165e-11 0.0197079 -0.00072313 4.53689e-11 0.0200235 -0.000719471 4.75877e-11 0.0203129 -0.000710248 4.20803e-11 0.0205606 -0.000695877 5.02611e-11 0.0207591 -0.000678115 5.244e-11 0.0209001 -0.000657282 5.17707e-11 0.0209814 -0.000633613 4.98597e-11 0.0210036 -0.000607234 4.48797e-11 0.0209575 -0.000578013 3.40269e-11 0.0208028 -0.000545241 1.05824e-11 0.0204443 -0.000506744 -4.24662e-11 0.0195648 -0.000456379 -1.18232e-10 0.018442 -0.000391222 -1.40599e-10 0.0171435 -0.000318148 -1.38924e-10 0.0158334 -0.000245113 -1.20875e-10 0.0146628 -0.000179727 -9.46995e-11 0.0137116 -0.000126252 -6.87311e-11 0.012991 -8.5281e-05 -4.76435e-11 0.0124718 -5.51356e-05 -3.2671e-11 0.0121111 -3.34349e-05 -2.82519e-11 0.0118668 -1.80019e-05 -1.97027e-11 0.0117025 -7.07536e-06 -1.12523e-11 0.011591 5.39117e-07 -6.00025e-12 0.0115133 5.62492e-06 -3.19666e-12 0.0114566 8.72116e-06 -1.28554e-12 0.0114127 1.02501e-05 -1.37938e-13 0.0113764 1.05745e-05 4.89394e-13 0.0113454 1.00641e-05 9.1576e-13 0.0113184 9.04477e-06 1.12677e-12 0.0112951 7.77312e-06 1.21803e-12 0.0112751 6.4396e-06 1.24567e-12 0.0112584 5.17185e-06 1.24343e-12 0.0112446 4.04397e-06 1.23045e-12 0.0112336 3.08885e-06 1.21588e-12 0.0112249 2.31089e-06 1.20401e-12 0.0112181 1.69705e-06 1.19539e-12 0.011213 1.22549e-06 1.19008e-12 0.0112093 8.71445e-07 1.18662e-12 0.0112065 6.10935e-07 1.18586e-12 0.0112045 4.22638e-07 1.18324e-12 0.0112031 2.88583e-07 1.18714e-12 0.0112021 1.95074e-07 1.17966e-12 1.27322e-07 1.19409e-12 0.02209 0.016926 2.22782e-11 0.0214589 0.0152387 2.09312e-11 0.0206617 0.0135039 1.41991e-11 0.0197829 0.0117324 1.12054e-11 0.0188731 0.0100557 9.61612e-12 0.0179546 0.00854178 1.03362e-11 0.0170501 0.00719519 3.64429e-12 0.0161966 0.006016 1.12943e-12 0.0154251 0.00500174 6.77999e-13 0.0147592 0.00414068 -2.40959e-12 0.0142013 0.00341729 -6.35212e-12 0.013739 0.00280787 -9.12861e-12 0.013351 0.00229408 -8.99529e-12 0.0130251 0.00185573 -1.04022e-11 0.0127517 0.00148053 -9.29858e-12 0.0125267 0.00115552 -7.81349e-12 0.0123555 0.000875997 -5.39216e-12 0.0122256 0.000634656 -2.30132e-12 0.0121503 0.000426934 -5.18438e-13 0.0121135 0.000248393 8.00757e-12 0.0121089 9.68274e-05 8.02881e-12 0.0121346 -3.46382e-05 1.33506e-11 0.0121927 -0.000148113 1.38051e-11 0.0122792 -0.000244164 1.622e-11 0.0123983 -0.000324981 2.094e-11 0.0125475 -0.000396881 2.41946e-11 0.0127214 -0.00046157 3.44451e-11 0.012913 -0.000520296 3.61976e-11 0.0131173 -0.000569064 3.60499e-11 0.0133278 -0.000610432 3.84545e-11 0.0135451 -0.000648933 4.00318e-11 0.0137718 -0.000686088 3.62893e-11 0.0140037 -0.000712946 3.2738e-11 0.0142414 -0.000734364 2.8828e-11 0.0144849 -0.000752481 2.5309e-11 0.0147307 -0.000765084 2.19905e-11 0.0149793 -0.000773888 1.88405e-11 0.0152345 -0.00077958 1.69864e-11 0.0154988 -0.000782449 1.62279e-11 0.0157707 -0.000783029 1.57755e-11 0.0160493 -0.000781767 1.68334e-11 0.0163337 -0.000779334 1.83957e-11 0.0166217 -0.0007762 2.22435e-11 0.0169103 -0.000772913 2.55181e-11 0.0171969 -0.000769844 3.14729e-11 0.0174771 -0.000767263 3.61957e-11 0.0177441 -0.000766132 3.41535e-11 0.0179944 -0.000765435 3.88343e-11 0.0182305 -0.000765426 6.06244e-11 0.0184443 -0.000767908 5.81124e-11 0.018618 -0.000770152 3.54901e-11 0.0187565 -0.000767783 2.50149e-11 0.018889 -0.000762304 4.379e-11 0.0190285 -0.000759032 5.17771e-11 0.0191869 -0.000753082 5.70252e-11 0.0193947 -0.000742139 5.04468e-11 0.0196635 -0.000733978 5.08108e-11 0.0199585 -0.000729301 6.0862e-11 0.0202463 -0.00072099 4.9442e-11 0.0205036 -0.00070817 4.85184e-11 0.0207166 -0.000691193 5.21355e-11 0.0208878 -0.000670345 4.95822e-11 0.0210135 -0.000646357 4.8889e-11 0.0210843 -0.000620186 4.70071e-11 0.0210947 -0.000592308 4.2481e-11 0.0210371 -0.000562793 3.36677e-11 0.0208788 -0.000530735 1.97863e-11 0.0205322 -0.000493393 -3.84632e-11 0.0196758 -0.00044445 -1.21065e-10 0.0185644 -0.000378946 -1.45844e-10 0.0172655 -0.000306516 -1.43308e-10 0.0159435 -0.000234938 -1.23961e-10 0.0147543 -0.000171169 -9.66704e-11 0.0137832 -0.000119108 -6.98839e-11 0.013045 -7.92358e-05 -4.8191e-11 0.0125116 -4.98892e-05 -3.24982e-11 0.0121401 -2.87563e-05 -2.66724e-11 0.0118877 -1.37649e-05 -1.95253e-11 0.0117174 -3.24767e-06 -1.14008e-11 0.0116012 3.93126e-06 -5.92028e-12 0.0115197 8.54836e-06 -3.13369e-12 0.01146 1.11674e-05 -1.24842e-12 0.0114137 1.22355e-05 -1.32163e-13 0.0113757 1.21382e-05 4.69067e-13 0.0113436 1.12631e-05 8.90502e-13 0.0113161 9.94393e-06 1.09964e-12 0.0112926 8.43509e-06 1.19313e-12 0.0112727 6.91961e-06 1.22533e-12 0.0112562 5.51556e-06 1.22826e-12 0.0112428 4.28747e-06 1.21997e-12 0.011232 3.25969e-06 1.20912e-12 0.0112236 2.42962e-06 1.19993e-12 0.0112172 1.77877e-06 1.19308e-12 0.0112123 1.28116e-06 1.18889e-12 0.0112087 9.08938e-07 1.18607e-12 0.0112061 6.35892e-07 1.18565e-12 0.0112042 4.39074e-07 1.18322e-12 0.0112029 2.9925e-07 1.18719e-12 0.011202 2.0191e-07 1.17972e-12 1.31588e-07 1.19415e-12 0.022956 0.0176378 3.74551e-11 0.022298 0.0158526 3.23761e-11 0.0215402 0.0142074 2.51635e-11 0.0206358 0.012543 1.87449e-11 0.0196984 0.0109133 1.18503e-11 0.0187733 0.00938373 8.42305e-12 0.0178706 0.00801367 2.54727e-12 0.017008 0.00681308 -4.56261e-13 0.016211 0.00576533 -2.90782e-13 0.0155025 0.00486414 -1.51305e-12 0.0148882 0.00409189 -1.2353e-12 0.0143641 0.00343208 -2.9862e-12 0.0139245 0.00286675 -3.68094e-12 0.0135529 0.00237948 -4.61753e-12 0.0132359 0.00195604 -3.34423e-12 0.0129724 0.00158756 -2.10014e-12 0.0127601 0.0012657 8.72631e-13 0.0125972 0.000982778 4.10677e-12 0.0124798 0.000734163 7.48285e-12 0.012398 0.000514199 1.26536e-11 0.0123582 0.000320525 1.2843e-11 0.0123451 0.000149255 1.92253e-11 0.0123709 1.39415e-06 1.91706e-11 0.0124415 -0.000132372 2.04005e-11 0.0125508 -0.000247138 3.41832e-11 0.0126945 -0.000345921 3.87134e-11 0.0128622 -0.0004322 4.50947e-11 0.0130481 -0.000507774 4.55663e-11 0.0132509 -0.000574911 4.69115e-11 0.0134759 -0.000638809 4.8138e-11 0.0137071 -0.0006927 4.89585e-11 0.0139406 -0.000733189 4.82411e-11 0.0141802 -0.000766933 4.68392e-11 0.0144357 -0.000801654 4.4539e-11 0.0146996 -0.000826663 4.06846e-11 0.0149655 -0.000840213 3.69728e-11 0.015237 -0.00085071 3.20222e-11 0.0155113 -0.000855 2.87708e-11 0.0157851 -0.000855529 2.63071e-11 0.0160579 -0.000852721 2.47652e-11 0.0163316 -0.000847767 2.48008e-11 0.0166069 -0.000841905 2.5236e-11 0.0168844 -0.000835445 2.90406e-11 0.0171639 -0.000828643 3.18579e-11 0.0174452 -0.000822192 3.84662e-11 0.0177279 -0.000816359 4.84235e-11 0.0180072 -0.000811504 4.40801e-11 0.0182746 -0.000807998 4.04367e-11 0.0185259 -0.000804633 5.08987e-11 0.0187595 -0.000800935 1.04151e-10 0.0189632 -0.000798781 4.89313e-11 0.0191235 -0.000795454 2.51517e-11 0.019254 -0.000786943 5.1919e-11 0.0193806 -0.000777504 7.0016e-11 0.0195159 -0.000768096 7.13895e-11 0.0196806 -0.000753958 6.80989e-11 0.0199075 -0.000737428 6.63285e-11 0.0201814 -0.000726326 7.564e-11 0.020454 -0.000715488 5.21937e-11 0.0206869 -0.000700448 4.17919e-11 0.020867 -0.000681194 3.12303e-11 0.0210093 -0.000657335 2.63498e-11 0.0211175 -0.00062972 2.56821e-11 0.0211803 -0.000599891 2.38817e-11 0.021187 -0.000568884 2.21422e-11 0.0211236 -0.00053736 1.5893e-11 0.0209631 -0.000504969 1.3908e-11 0.0206288 -0.000468954 -1.27187e-11 0.0197949 -0.000421787 -7.49536e-11 0.0186894 -0.000357694 -1.35887e-10 0.0173881 -0.00028791 -1.42887e-10 0.0160539 -0.000219521 -1.24988e-10 0.0148463 -0.000158694 -9.76161e-11 0.0138556 -0.000109001 -7.06118e-11 0.0131 -7.09096e-05 -4.85717e-11 0.0125525 -4.28639e-05 -3.25811e-11 0.0121701 -2.26979e-05 -2.50732e-11 0.0119094 -8.47725e-06 -1.92119e-11 0.0117327 1.33575e-06 -1.14178e-11 0.0116115 7.84132e-06 -5.83655e-12 0.011526 1.18027e-05 -3.05387e-12 0.0114631 1.37992e-05 -1.20693e-12 0.0114143 1.42995e-05 -1.26664e-13 0.0113747 1.37122e-05 4.47536e-13 0.0113415 1.2433e-05 8.66756e-13 0.0113135 1.07945e-05 1.07434e-12 0.0112898 9.04197e-06 1.17004e-12 0.0112701 7.34583e-06 1.2066e-12 0.0112539 5.81099e-06 1.21438e-12 0.0112408 4.48994e-06 1.21043e-12 0.0112304 3.39706e-06 1.20298e-12 0.0112224 2.5219e-06 1.19626e-12 0.0112162 1.84014e-06 1.191e-12 0.0112116 1.32151e-06 1.18783e-12 0.0112082 9.35125e-07 1.18558e-12 0.0112057 6.52696e-07 1.18549e-12 0.0112039 4.49662e-07 1.18322e-12 0.0112027 3.05808e-07 1.18725e-12 0.0112018 2.0592e-07 1.1798e-12 1.33887e-07 1.19422e-12 0.0238473 0.0185331 4.21725e-11 0.023082 0.0166199 3.67714e-11 0.0223749 0.0148839 3.3646e-11 0.0215887 0.0132976 2.50083e-11 0.0206588 0.0117494 1.84128e-11 0.0196616 0.0102505 1.44861e-11 0.0187024 0.00885541 1.17498e-11 0.017823 0.00761045 3.26688e-12 0.0170293 0.00652945 9.15054e-14 0.01631 0.00559758 6.22894e-14 0.0156647 0.00478722 1.22244e-12 0.0150975 0.00408375 3.51605e-13 0.0146 0.00346997 7.54934e-13 0.0141679 0.00293434 -4.09672e-13 0.0138012 0.00246514 8.48883e-13 0.0134967 0.00205326 3.61332e-12 0.0132499 0.00168999 5.77793e-12 0.0130548 0.00136878 9.08258e-12 0.0129036 0.00108283 1.26291e-11 0.0127894 0.000825927 1.65428e-11 0.0127122 0.000595316 1.91945e-11 0.0126728 0.000387587 2.10192e-11 0.0126702 0.000202252 2.20508e-11 0.0127071 3.63617e-05 2.6221e-11 0.0127926 -0.000115284 4.0144e-11 0.0129173 -0.000246755 4.61731e-11 0.0130771 -0.00036249 5.14562e-11 0.0132598 -0.000464233 5.39467e-11 0.0134563 -0.000554684 5.66998e-11 0.0136652 -0.000632225 5.76367e-11 0.013881 -0.000702323 5.92264e-11 0.0141151 -0.00076962 5.70002e-11 0.0143648 -0.000824258 5.37341e-11 0.01462 -0.000862222 5.4215e-11 0.0148746 -0.000890645 5.231e-11 0.0151428 -0.00091927 5.31305e-11 0.0154283 -0.000939671 4.77751e-11 0.0157185 -0.000943348 4.65761e-11 0.0160095 -0.000944188 4.36825e-11 0.0162959 -0.000936956 4.12982e-11 0.016579 -0.000926631 3.97866e-11 0.0168575 -0.00091355 3.80484e-11 0.0171306 -0.000899444 3.98881e-11 0.0173993 -0.00088512 4.1628e-11 0.0176698 -0.000871443 4.74032e-11 0.0179443 -0.000859344 5.52268e-11 0.0182221 -0.00084918 5.13766e-11 0.0184976 -0.000841324 6.23687e-11 0.0187599 -0.00083352 4.79447e-11 0.0190034 -0.00082455 1.04567e-10 0.0192258 -0.000817843 9.93824e-11 0.019412 -0.000810689 4.10638e-11 0.0195539 -0.000800685 2.47575e-11 0.0196755 -0.000786515 7.26543e-11 0.0197988 -0.000773529 9.84042e-11 0.0199353 -0.000758069 8.99491e-11 0.0201163 -0.000737285 8.90363e-11 0.0203597 -0.000717889 1.11437e-10 0.0206239 -0.000704025 5.44562e-11 0.0208509 -0.000687755 3.19223e-11 0.0210158 -0.000667009 1.27828e-11 0.0211316 -0.000641319 3.17112e-12 0.0212167 -0.00061115 1.91226e-12 0.0212706 -0.000577731 8.09356e-13 0.02128 -0.00054249 -1.05607e-13 0.0212243 -0.000506267 -7.33777e-12 0.0210758 -0.0004701 -1.17433e-11 0.0207547 -0.000431302 -1.89941e-11 0.0199277 -0.000387005 -1.64742e-11 0.0188177 -0.00032697 -1.17334e-10 0.0175091 -0.000262767 -1.3649e-10 0.0161607 -0.000199592 -1.24411e-10 0.0149344 -0.000142945 -9.84413e-11 0.0139245 -9.64034e-05 -7.14622e-11 0.013152 -6.06261e-05 -4.90533e-11 0.0125909 -3.43213e-05 -3.26855e-11 0.0121979 -1.54783e-05 -2.26762e-11 0.0119292 -2.32461e-06 -1.87599e-11 0.0117462 6.5238e-06 -1.14135e-11 0.01162 1.21401e-05 -5.72005e-12 0.0115306 1.52771e-05 -2.97764e-12 0.0114647 1.65256e-05 -1.17024e-12 0.0114137 1.63748e-05 -1.22588e-13 0.0113726 1.52449e-05 4.34366e-13 0.0113386 1.35361e-05 8.46491e-13 0.0113102 1.15693e-05 1.0514e-12 0.0112866 9.5743e-06 1.14904e-12 0.0112672 7.70448e-06 1.18965e-12 0.0112513 6.0484e-06 1.20189e-12 0.0112387 4.64457e-06 1.20188e-12 0.0112287 3.49618e-06 1.19752e-12 0.011221 2.58442e-06 1.193e-12 0.0112152 1.87885e-06 1.18915e-12 0.0112108 1.34498e-06 1.18691e-12 0.0112076 9.49002e-07 1.18514e-12 0.0112053 6.60567e-07 1.18537e-12 0.0112037 4.53957e-07 1.18309e-12 0.0112025 3.0799e-07 1.18736e-12 0.0112017 2.06895e-07 1.17991e-12 1.34227e-07 1.19431e-12 0.0251603 0.0197414 6.03131e-11 0.0240982 0.0176286 4.61028e-11 0.023198 0.0157288 4.28232e-11 0.0223703 0.0140681 3.35296e-11 0.0215269 0.0125241 2.5512e-11 0.0206297 0.0110868 2.18299e-11 0.0196763 0.00972435 1.8582e-11 0.0187436 0.0084662 1.54318e-11 0.0178968 0.0073415 1.04403e-11 0.01715 0.0063595 7.72337e-12 0.0164839 0.00550448 8.20067e-12 0.0158811 0.00475727 6.45307e-12 0.0153408 0.00409871 6.46512e-12 0.0148645 0.00351797 5.46339e-12 0.0144521 0.00300443 6.38061e-12 0.0141025 0.00255096 7.57493e-12 0.0138144 0.00214805 9.47715e-12 0.0135856 0.00178944 1.34543e-11 0.0134048 0.00146728 1.60026e-11 0.0132653 0.00117628 1.94871e-11 0.0131645 0.000912206 2.12457e-11 0.0131014 0.000671918 2.3543e-11 0.0130786 0.000452652 2.59551e-11 0.0131012 0.000254943 3.06649e-11 0.0131578 7.38552e-05 4.45821e-11 0.0132557 -9.34829e-05 5.06728e-11 0.013389 -0.000241795 5.58663e-11 0.0135531 -0.0003736 5.95496e-11 0.0137343 -0.000491297 6.21101e-11 0.0139293 -0.000595241 6.32343e-11 0.0141426 -0.000687383 6.32809e-11 0.0143546 -0.0007662 6.29998e-11 0.0145667 -0.000837082 6.24516e-11 0.0148036 -0.000902946 6.10507e-11 0.0150621 -0.000954811 5.77381e-11 0.0153235 -0.000988501 5.63685e-11 0.0155887 -0.00100765 5.25396e-11 0.0158678 -0.00102776 5.22541e-11 0.0161671 -0.00104003 5.29266e-11 0.0164686 -0.00103495 5.27308e-11 0.0167642 -0.00102247 5.26718e-11 0.0170511 -0.00100451 4.88045e-11 0.0173307 -0.00098194 5.53802e-11 0.0176056 -0.000956885 5.46397e-11 0.017876 -0.000932243 5.89321e-11 0.0181465 -0.000909331 6.77092e-11 0.0184213 -0.000889274 6.14424e-11 0.0186958 -0.000872183 6.96789e-11 0.0189625 -0.000857211 6.8567e-11 0.0192156 -0.000844327 8.66242e-11 0.019447 -0.000830641 1.21385e-10 0.0196472 -0.000816259 5.68075e-11 0.0198057 -0.000802413 2.64369e-11 0.0199293 -0.000786284 4.18576e-11 0.0200435 -0.00076874 1.23323e-10 0.0201611 -0.000751819 1.05361e-10 0.0203047 -0.000729597 1.04454e-10 0.0205092 -0.000704334 1.15529e-10 0.0207599 -0.000684475 8.26076e-11 0.0209919 -0.000667364 3.88615e-11 0.0211587 -0.000646416 2.36334e-11 0.021259 -0.000620727 1.52982e-11 0.0213211 -0.000590041 1.3972e-11 0.0213586 -0.000554911 1.14768e-11 0.0213688 -0.00051626 7.22692e-12 0.0213307 -0.000475457 2.79753e-12 0.0212042 -0.000433143 -6.90382e-13 0.0208991 -0.000390334 -9.12169e-12 0.0200658 -0.000344831 -3.90228e-11 0.0189449 -0.000290968 -1.26999e-10 0.0176267 -0.000234135 -1.43656e-10 0.0162642 -0.000176908 -1.28253e-10 0.01502 -0.000124792 -1.00441e-10 0.0139919 -8.17007e-05 -7.26173e-11 0.0132031 -4.85643e-05 -4.96459e-11 0.0126288 -2.43217e-05 -3.29243e-11 0.0122253 -7.12569e-06 -2.11931e-11 0.0119484 4.63747e-06 -1.81099e-11 0.011759 1.22727e-05 -1.13345e-11 0.0116277 1.67844e-05 -5.57118e-12 0.0115343 1.89321e-05 -2.89969e-12 0.0114654 1.93164e-05 -1.09538e-12 0.0114123 1.84369e-05 -1.67713e-13 0.0113699 1.6721e-05 4.57888e-13 0.0113352 1.45633e-05 8.31684e-13 0.0113066 1.22632e-05 1.03178e-12 0.0112832 1.00298e-05 1.13084e-12 0.011264 7.99503e-06 1.17493e-12 0.0112486 6.22823e-06 1.19105e-12 0.0112365 4.75221e-06 1.19448e-12 0.0112269 3.55808e-06 1.19277e-12 0.0112196 2.61816e-06 1.19017e-12 0.0112141 1.89581e-06 1.18756e-12 0.01121 1.35233e-06 1.18612e-12 0.0112071 9.51116e-07 1.18478e-12 0.0112049 6.60112e-07 1.18526e-12 0.0112034 4.52345e-07 1.18325e-12 0.0112023 3.06072e-07 1.1874e-12 0.0112015 2.0507e-07 1.17994e-12 1.3268e-07 1.19436e-12 0.0263481 0.0209672 5.85272e-11 0.0252816 0.0188031 7.59605e-11 0.0242745 0.016778 5.80111e-11 0.0233392 0.0149744 5.04071e-11 0.0224253 0.0133744 3.86663e-11 0.0215149 0.011925 3.19746e-11 0.0206062 0.0105817 2.90063e-11 0.0197071 0.00933602 2.4552e-11 0.0188487 0.00819373 2.07773e-11 0.0180581 0.00716311 1.33832e-11 0.0173469 0.00625388 1.14477e-11 0.0167086 0.0054561 1.19436e-11 0.0161327 0.00475198 1.19037e-11 0.0156183 0.00412795 1.15132e-11 0.0151685 0.00357296 1.20559e-11 0.0147827 0.00307929 1.25584e-11 0.0144609 0.0026385 1.43065e-11 0.0141946 0.00224372 1.59787e-11 0.0139814 0.00188639 1.86209e-11 0.0138151 0.00156279 2.08067e-11 0.0136921 0.00126608 2.27498e-11 0.0136138 0.000995405 2.53433e-11 0.0135772 0.000746754 2.70886e-11 0.013582 0.000518457 3.12145e-11 0.0136281 0.000309257 3.51761e-11 0.0137025 0.000115808 5.15653e-11 0.0138092 -6.43102e-05 5.66539e-11 0.0139492 -0.000228911 6.05872e-11 0.0141091 -0.000376133 6.31335e-11 0.0142811 -0.000507984 6.33748e-11 0.0144669 -0.000625546 6.49769e-11 0.0146662 -0.00072924 6.27608e-11 0.0148658 -0.000820376 6.08686e-11 0.015061 -0.000895796 6.04745e-11 0.0152748 -0.000965492 5.9315e-11 0.0155076 -0.00102729 5.56592e-11 0.0157657 -0.001072 5.30445e-11 0.0160344 -0.00109862 4.88129e-11 0.0163032 -0.00110693 5.05301e-11 0.0165901 -0.00111524 4.34125e-11 0.0168797 -0.00111523 5.22432e-11 0.0171717 -0.00110288 4.23466e-11 0.0174573 -0.00107885 5.37585e-11 0.0177372 -0.00104871 7.26184e-11 0.0180176 -0.00101474 5.63788e-11 0.0182979 -0.000980675 6.80275e-11 0.0185765 -0.000947226 5.5848e-11 0.0188562 -0.000916027 7.30116e-11 0.0191315 -0.000888999 9.19882e-11 0.0193909 -0.000864394 8.61223e-11 0.0196296 -0.000841739 1.27888e-10 0.0198434 -0.000820856 6.46187e-11 0.0200176 -0.00080059 3.87484e-11 0.0201509 -0.000778229 5.80475e-11 0.0202646 -0.000755852 1.03329e-10 0.0203743 -0.000734765 1.00992e-10 0.0204901 -0.000712226 9.00973e-11 0.0206497 -0.000683675 1.16543e-10 0.0208731 -0.000656834 1.20894e-10 0.0211078 -0.000637097 5.65369e-11 0.0212898 -0.000615878 3.54541e-11 0.0213959 -0.000591169 2.58458e-11 0.0214428 -0.000561971 2.38709e-11 0.021457 -0.000527881 2.17404e-11 0.0214549 -0.000488851 1.54585e-11 0.0214228 -0.000445544 3.46662e-12 0.021315 -0.000399448 -1.56504e-11 0.0210223 -0.000352251 -4.48058e-11 0.0201774 -0.000304842 -9.07961e-11 0.0190563 -0.000257436 -1.3591e-10 0.0177344 -0.000206298 -1.45869e-10 0.0163608 -0.000153541 -1.28831e-10 0.0151006 -0.000105201 -1.01808e-10 0.0140554 -6.53677e-05 -7.39607e-11 0.0132511 -3.50114e-05 -5.03821e-11 0.0126641 -1.30699e-05 -3.31235e-11 0.0122503 2.17185e-06 -2.07921e-11 0.0119654 1.22651e-05 -1.72158e-11 0.0117696 1.84305e-05 -1.1167e-11 0.0116335 2.16445e-05 -5.40258e-12 0.0115363 2.26605e-05 -2.78695e-12 0.0114647 2.20824e-05 -1.03734e-12 0.0114097 2.04196e-05 -1.58363e-13 0.0113661 1.80927e-05 4.52765e-13 0.011331 1.5479e-05 8.18724e-13 0.0113025 1.28515e-05 1.01581e-12 0.0112793 1.03917e-05 1.1157e-12 0.0112606 8.20628e-06 1.16251e-12 0.0112458 6.34323e-06 1.18184e-12 0.0112341 4.80832e-06 1.18815e-12 0.0112251 3.57997e-06 1.18872e-12 0.0112182 2.62149e-06 1.18775e-12 0.0112131 1.8901e-06 1.18619e-12 0.0112092 1.34309e-06 1.18545e-12 0.0112065 9.41314e-07 1.18447e-12 0.0112045 6.51158e-07 1.18518e-12 0.0112031 4.44855e-07 1.1833e-12 0.0112021 3.0012e-07 1.18747e-12 0.0112014 2.00492e-07 1.18002e-12 1.29353e-07 1.19444e-12 0.0277493 0.0216762 5.71113e-11 0.0265586 0.0201093 8.37297e-11 0.0253668 0.0179886 6.85788e-11 0.0243278 0.0160221 5.83817e-11 0.0234176 0.0143112 4.82831e-11 0.0225408 0.0128185 3.82113e-11 0.0216527 0.0114573 3.51806e-11 0.0207583 0.0102122 3.34049e-11 0.0198578 0.00906068 3.0595e-11 0.0189988 0.00799675 2.66168e-11 0.0182284 0.00703548 2.12395e-11 0.0175498 0.00617778 1.53769e-11 0.0169477 0.0054262 1.48521e-11 0.0164109 0.00475989 1.47053e-11 0.0159364 0.00416775 1.52433e-11 0.0155252 0.00363673 1.62901e-11 0.0151733 0.00316079 1.73399e-11 0.0148784 0.00272997 1.86893e-11 0.0146359 0.00233983 2.01574e-11 0.0144416 0.00198275 2.19574e-11 0.0142972 0.00165612 2.38758e-11 0.0142002 0.00135557 2.61288e-11 0.014151 0.00107886 2.83156e-11 0.0141442 0.000823249 3.07055e-11 0.0141774 0.000586713 3.39426e-11 0.0142439 0.000367556 3.99326e-11 0.0143319 0.000163318 5.4036e-11 0.0144427 -2.6149e-05 5.61133e-11 0.0145811 -0.000205283 5.84062e-11 0.0147329 -0.00036573 5.93899e-11 0.0148904 -0.000510081 5.94843e-11 0.0150611 -0.000638866 5.95919e-11 0.0152358 -0.000753306 5.62352e-11 0.0154091 -0.000852957 5.69133e-11 0.015594 -0.000937417 5.1928e-11 0.0157844 -0.0010081 5.12656e-11 0.0159857 -0.00107524 4.95024e-11 0.0162138 -0.00112802 4.7292e-11 0.0164685 -0.00116313 4.56528e-11 0.0167399 -0.00117898 3.75212e-11 0.0170107 -0.00118211 4.62148e-11 0.0172754 -0.001172 3.2854e-11 0.0175449 -0.00116148 4.5343e-11 0.0178178 -0.00113941 4.52469e-11 0.0180922 -0.00110447 4.70985e-11 0.0183725 -0.00106578 5.41108e-11 0.0186614 -0.00102351 6.54187e-11 0.0189533 -0.000981346 8.04293e-11 0.0192424 -0.000939838 7.24127e-11 0.0195211 -0.000900666 9.24626e-11 0.0197784 -0.000864298 9.53663e-11 0.0200038 -0.000831291 5.34931e-11 0.0201956 -0.000800882 4.21245e-11 0.0203502 -0.000772251 5.70481e-11 0.0204748 -0.000740484 9.43027e-11 0.0205881 -0.000711094 9.06369e-11 0.020693 -0.000685145 7.94513e-11 0.0208107 -0.000655576 8.58265e-11 0.0209863 -0.00062237 8.31725e-11 0.0212095 -0.000595122 6.60682e-11 0.0214071 -0.0005733 4.48794e-11 0.0215318 -0.000548662 4.12455e-11 0.0215838 -0.000521404 4.05797e-11 0.0215836 -0.000490211 3.75768e-11 0.021555 -0.000454238 3.12761e-11 0.0214962 -0.000413019 2.06023e-11 0.0213797 -0.000367555 -1.62103e-12 0.0210851 -0.000320922 -3.55544e-11 0.0202495 -0.000274452 -1.20982e-10 0.0191502 -0.000229833 -1.35516e-10 0.017834 -0.000180229 -1.37523e-10 0.0164531 -0.00012954 -1.36594e-10 0.0151783 -8.40097e-05 -1.0653e-10 0.0141167 -4.72689e-05 -7.50482e-11 0.0132973 -1.98837e-05 -5.08981e-11 0.0126976 -5.81745e-07 -3.31739e-11 0.0122737 1.23612e-05 -2.09568e-11 0.0119807 2.04729e-05 -1.61805e-11 0.0117786 2.49115e-05 -1.09053e-11 0.0116376 2.66326e-05 -5.21363e-12 0.0115368 2.63834e-05 -2.67345e-12 0.0114626 2.47639e-05 -9.76874e-13 0.011406 2.22735e-05 -1.38242e-13 0.0113617 1.93245e-05 4.5348e-13 0.0113263 1.62603e-05 8.09764e-13 0.0112979 1.33194e-05 1.00327e-12 0.0112752 1.0651e-05 1.10338e-12 0.0112571 8.33337e-06 1.15226e-12 0.0112428 6.39112e-06 1.17417e-12 0.0112317 4.81219e-06 1.18286e-12 0.0112232 3.56204e-06 1.18531e-12 0.0112168 2.59504e-06 1.18571e-12 0.011212 1.8625e-06 1.18504e-12 0.0112084 1.31801e-06 1.18489e-12 0.0112059 9.2025e-07 1.18422e-12 0.0112041 6.34353e-07 1.18513e-12 0.0112028 4.31929e-07 1.18334e-12 0.0112019 2.90478e-07 1.18756e-12 0.0112013 1.93435e-07 1.18011e-12 1.244e-07 1.19451e-12 0.0291086 0.0207364 1.35316e-11 0.0280509 0.0211754 3.81087e-11 0.0267855 0.0193016 7.31048e-11 0.0255589 0.0172481 6.47656e-11 0.0244809 0.0154036 5.67855e-11 0.0235264 0.0137993 4.54465e-11 0.0226369 0.0123782 4.12642e-11 0.0217745 0.0110944 3.8587e-11 0.0209222 0.00991988 3.58069e-11 0.0200722 0.00884636 3.37425e-11 0.0192345 0.00785705 3.08121e-11 0.0184694 0.00695363 2.70654e-11 0.017806 0.00614316 2.34739e-11 0.0172355 0.00542378 1.76894e-11 0.0167402 0.0047888 1.75421e-11 0.01631 0.0042224 1.82025e-11 0.0159383 0.00371243 1.93268e-11 0.0156215 0.0032492 2.04509e-11 0.0153555 0.0028262 2.17997e-11 0.0151409 0.00243767 2.33135e-11 0.0149755 0.00208065 2.51161e-11 0.0148618 0.00175072 2.70166e-11 0.0147992 0.00144673 2.89774e-11 0.0147826 0.00116481 3.10407e-11 0.0148049 0.00090324 3.31547e-11 0.0148606 0.000659444 3.55893e-11 0.0149426 0.000431651 3.80192e-11 0.0150394 0.000219317 5.21855e-11 0.0151473 2.30072e-05 5.46049e-11 0.0152787 -0.000170717 5.28607e-11 0.0154162 -0.000341462 5.13847e-11 0.0155564 -0.000495535 5.06573e-11 0.0157037 -0.000633218 4.78094e-11 0.0158475 -0.000755608 4.4795e-11 0.0159937 -0.000861436 4.42292e-11 0.0161577 -0.000952531 4.05087e-11 0.0163263 -0.00102722 4.25034e-11 0.0164992 -0.00109238 4.26447e-11 0.0166958 -0.00115099 4.30246e-11 0.0169186 -0.00119412 4.25823e-11 0.0171714 -0.0012181 4.1405e-11 0.0174232 -0.00122552 3.46291e-11 0.0176717 -0.0012163 3.38593e-11 0.0179131 -0.00119663 2.99907e-11 0.0181587 -0.00116849 3.56556e-11 0.0184197 -0.00113802 4.42638e-11 0.0186979 -0.00109924 5.29957e-11 0.01899 -0.00105265 6.17575e-11 0.0192891 -0.00100342 6.92795e-11 0.0195844 -0.00095322 6.97396e-11 0.0198642 -0.000904168 7.29439e-11 0.0201156 -0.000856874 6.62049e-11 0.0203294 -0.000812174 6.15035e-11 0.0205069 -0.000770017 6.90561e-11 0.0206542 -0.000729694 7.78083e-11 0.0207806 -0.000689376 7.51025e-11 0.0208918 -0.000653199 6.75197e-11 0.0209908 -0.000620366 5.99846e-11 0.021115 -0.000583304 6.68829e-11 0.0213032 -0.00054677 6.83377e-11 0.0215099 -0.0005186 5.21053e-11 0.0216628 -0.00049214 4.71678e-11 0.0217296 -0.000465413 4.5683e-11 0.0217216 -0.00043752 4.03344e-11 0.0216677 -0.000407327 3.43313e-11 0.0215669 -0.000373053 1.48282e-11 0.021394 -0.000334036 1.44825e-13 0.0210864 -0.000292752 -5.62119e-11 0.0203008 -0.000249808 -1.2429e-10 0.0192375 -0.000203588 -1.40142e-10 0.0179306 -0.000152802 -1.43679e-10 0.0165428 -0.000103139 -1.30846e-10 0.0152533 -6.03333e-05 -1.02817e-10 0.014175 -2.70261e-05 -7.29725e-11 0.0133405 -3.08026e-06 -5.09747e-11 0.0127282 1.30976e-05 -3.3366e-11 0.0122942 2.33279e-05 -2.06161e-11 0.0119932 2.91103e-05 -1.46805e-11 0.011785 3.15626e-05 -1.06181e-11 0.0116395 3.16114e-05 -5.01423e-12 0.0115354 2.99833e-05 -2.55946e-12 0.011459 2.72679e-05 -9.26853e-13 0.0114012 2.39349e-05 -1.13938e-13 0.0113562 2.03702e-05 4.63763e-13 0.0113209 1.6875e-05 8.05381e-13 0.0112929 1.36458e-05 9.93555e-13 0.0112707 1.07946e-05 1.09325e-12 0.0112533 8.3685e-06 1.1437e-12 0.0112397 6.36766e-06 1.16772e-12 0.0112292 4.76183e-06 1.1784e-12 0.0112213 3.50364e-06 1.18242e-12 0.0112153 2.53886e-06 1.18399e-12 0.0112109 1.81341e-06 1.18406e-12 0.0112076 1.27763e-06 1.18443e-12 0.0112053 8.88452e-07 1.18402e-12 0.0112036 6.10114e-07 1.18511e-12 0.0112025 4.13969e-07 1.18343e-12 0.0112017 2.77459e-07 1.18766e-12 0.0112011 1.84136e-07 1.18019e-12 1.1802e-07 1.19458e-12 0.0289651 0.0203653 -9.62147e-12 0.0292886 0.0206982 1.58312e-11 0.0281249 0.0204328 4.92605e-11 0.0269551 0.0185915 8.52204e-11 0.0258295 0.01666 7.47167e-11 0.0247748 0.0149215 6.13491e-11 0.023784 0.0134027 4.99097e-11 0.0228464 0.0120439 4.92677e-11 0.0219571 0.0108189 4.47083e-11 0.0211092 0.00970435 4.14028e-11 0.0202982 0.00868767 3.85704e-11 0.0195201 0.00776117 3.56298e-11 0.0187923 0.00691299 3.29882e-11 0.0181487 0.00614587 2.65021e-11 0.0176019 0.00545683 2.26449e-11 0.0171391 0.0048446 2.15272e-11 0.0167471 0.00429576 2.13884e-11 0.0164144 0.00379956 2.1754e-11 0.0161339 0.00334467 2.28918e-11 0.0159031 0.00292632 2.43424e-11 0.0157223 0.00253909 2.60384e-11 0.015593 0.0021809 2.77626e-11 0.0155154 0.00184882 2.94756e-11 0.0154872 0.00154112 3.1339e-11 0.0155001 0.00125479 3.2929e-11 0.0155486 0.000987666 3.44747e-11 0.0156201 0.000738135 3.56923e-11 0.0157115 0.000503248 3.65848e-11 0.0158193 0.000285056 3.55659e-11 0.015922 7.88668e-05 4.75669e-11 0.0160346 -0.000118503 3.8424e-11 0.0161519 -0.000298078 3.18886e-11 0.0162702 -0.000459358 2.86094e-11 0.0163883 -0.000603346 2.60512e-11 0.0165012 -0.000730549 2.24451e-11 0.0166194 -0.000841548 2.35561e-11 0.0167556 -0.000935969 2.08164e-11 0.0169002 -0.00101635 2.5481e-11 0.0170508 -0.00107978 2.57111e-11 0.0172237 -0.00113995 2.64901e-11 0.0174154 -0.00118904 2.78059e-11 0.0176292 -0.001221 3.19725e-11 0.0178406 -0.00123231 3.07765e-11 0.0180578 -0.00122748 2.60196e-11 0.0182802 -0.00121281 2.61067e-11 0.0185099 -0.00118202 3.81152e-11 0.018754 -0.0011433 3.9765e-11 0.0190202 -0.00109988 4.51238e-11 0.0193077 -0.00105588 5.08423e-11 0.0196069 -0.00100594 5.52609e-11 0.0199014 -0.000950762 6.02365e-11 0.0201768 -0.000892388 6.45156e-11 0.0204221 -0.000835093 6.82644e-11 0.0206285 -0.000779157 7.09572e-11 0.020797 -0.000725417 7.28779e-11 0.0209419 -0.000674199 6.68711e-11 0.0210712 -0.000626093 5.94298e-11 0.0211787 -0.000582753 5.26563e-11 0.0212747 -0.000541171 4.95158e-11 0.0214101 -0.000497259 5.214e-11 0.0216034 -0.000457906 4.46825e-11 0.0217841 -0.000426096 3.27469e-11 0.0218793 -0.000396257 3.26936e-11 0.0218725 -0.000369724 2.61875e-11 0.0217922 -0.000345099 1.91466e-11 0.0216505 -0.000319942 2.82378e-12 0.0214304 -0.000291853 -1.94837e-11 0.0210883 -0.000258681 -5.27961e-11 0.0203697 -0.000219018 -1.1642e-10 0.0193347 -0.000171148 -1.35734e-10 0.0180314 -0.0001199 -1.38095e-10 0.0166333 -7.22716e-05 -1.25648e-10 0.015327 -3.32333e-05 -1.01868e-10 0.0142311 -4.29516e-06 -7.53745e-11 0.0133809 1.54247e-05 -5.26539e-11 0.0127558 2.78591e-05 -3.30998e-11 0.0123117 3.48894e-05 -2.0495e-11 0.0120029 3.79834e-05 -1.33916e-11 0.0117889 3.82044e-05 -1.02969e-11 0.011639 3.64312e-05 -4.81996e-12 0.0115321 3.33466e-05 -2.44107e-12 0.0114539 2.95087e-05 -8.6313e-13 0.0113951 2.53413e-05 -9.10777e-14 0.01135 2.11884e-05 4.69138e-13 0.0113149 1.72971e-05 8.01615e-13 0.0112875 1.38154e-05 9.8604e-13 0.0112661 1.08142e-05 1.08527e-12 0.0112494 8.30792e-06 1.13685e-12 0.0112366 6.27184e-06 1.16252e-12 0.0112268 4.65772e-06 1.17477e-12 0.0112194 3.40594e-06 1.18008e-12 0.0112138 2.4544e-06 1.18259e-12 0.0112098 1.74425e-06 1.18328e-12 0.0112069 1.22322e-06 1.18407e-12 0.0112047 8.46951e-07 1.18388e-12 0.0112033 5.79296e-07 1.18512e-12 0.0112022 3.91561e-07 1.18358e-12 0.0112015 2.61512e-07 1.18781e-12 0.011201 1.72946e-07 1.1803e-12 1.10453e-07 1.19463e-12 0.0290948 0.0180866 -1.12411e-10 0.0296791 0.0200409 -1.67489e-12 0.0294068 0.0206928 2.5146e-11 0.0283037 0.0197769 5.82799e-11 0.027138 0.0179972 9.64429e-11 0.0260347 0.0161561 8.03086e-11 0.0250032 0.0145125 6.38527e-11 0.0240225 0.013067 5.92882e-11 0.023096 0.0117768 5.64874e-11 0.0222145 0.0106084 5.38272e-11 0.02138 0.00954637 5.0056e-11 0.0205856 0.00858105 4.5942e-11 0.0198412 0.00770091 4.17081e-11 0.0191561 0.00690361 3.88907e-11 0.0185507 0.00617972 3.31583e-11 0.0180359 0.00552317 2.88455e-11 0.0176068 0.00492875 2.52003e-11 0.0172509 0.00438987 2.37561e-11 0.0169566 0.00389827 2.41109e-11 0.0167162 0.00344745 2.52053e-11 0.0165258 0.0030303 2.65297e-11 0.0163854 0.00264387 2.75051e-11 0.0162958 0.00228488 2.93971e-11 0.0162542 0.00195122 3.11106e-11 0.0162576 0.00164028 3.25467e-11 0.0162957 0.0013504 3.36632e-11 0.0163612 0.00107873 3.41873e-11 0.0164463 0.000824483 3.37607e-11 0.0165405 0.000585763 3.27157e-11 0.0166444 0.000362414 3.00713e-11 0.016743 0.000152566 2.85571e-11 0.0168355 -4.37052e-05 2.43152e-11 0.016928 -0.000230997 2.11305e-11 0.0170158 -0.000397121 1.89893e-11 0.0171005 -0.00054525 1.70913e-11 0.017182 -0.000675516 1.56185e-11 0.0172735 -0.000789545 1.37955e-11 0.0173817 -0.000886788 1.27849e-11 0.0175 -0.000970065 1.1873e-11 0.0176398 -0.00103611 1.57775e-11 0.0177905 -0.00109408 1.80075e-11 0.0179457 -0.00114683 1.94452e-11 0.0181127 -0.0011838 2.22273e-11 0.0182801 -0.00120184 2.51595e-11 0.0184535 -0.00120118 2.15776e-11 0.0186426 -0.00118993 2.77332e-11 0.0188568 -0.00116492 3.30905e-11 0.019098 -0.0011298 3.67993e-11 0.0193616 -0.00108436 4.07163e-11 0.0196416 -0.00103337 4.45226e-11 0.0199296 -0.000978207 4.95634e-11 0.0202133 -0.000921182 5.48717e-11 0.0204788 -0.000860405 5.89514e-11 0.0207125 -0.000795622 6.24784e-11 0.0209085 -0.000729725 6.21266e-11 0.0210727 -0.000666499 5.87612e-11 0.0212188 -0.0006065 4.68981e-11 0.0213483 -0.000551512 4.09328e-11 0.0214499 -0.000499873 3.66804e-11 0.0215464 -0.000449445 3.35909e-11 0.0216955 -0.000400422 2.82551e-11 0.0218874 -0.000358116 1.87559e-11 0.0220187 -0.00032107 1.58177e-11 0.0220335 -0.000290745 1.04587e-11 0.0219456 -0.000267724 2.56314e-12 0.0217703 -0.000249985 -9.02947e-12 0.0215274 -0.000232766 -2.93119e-11 0.0211488 -0.000209857 -5.55776e-11 0.0204716 -0.000175154 -1.01491e-10 0.0194462 -0.000128621 -1.23791e-10 0.0181376 -7.94148e-05 -1.32064e-10 0.016724 -3.58728e-05 -1.22171e-10 0.0153981 -2.27108e-06 -9.96873e-11 0.0142832 2.09588e-05 -7.39948e-11 0.0134169 3.54773e-05 -5.15331e-11 0.012779 4.34469e-05 -3.26502e-11 0.0123251 4.67719e-05 -2.05962e-11 0.0120089 4.6841e-05 -1.20704e-11 0.0117895 4.46271e-05 -9.96637e-12 0.0116359 4.09166e-05 -4.63159e-12 0.0115266 3.63474e-05 -2.33133e-12 0.0114471 3.13976e-05 -8.08418e-13 0.0113879 2.64338e-05 -6.50912e-14 0.0113429 2.17415e-05 4.77243e-13 0.0113084 1.7504e-05 8.00139e-13 0.0112818 1.38155e-05 9.8063e-13 0.0112612 1.07038e-05 1.0791e-12 0.0112454 8.14964e-06 1.13144e-12 0.0112334 6.10391e-06 1.15836e-12 0.0112243 4.50124e-06 1.17187e-12 0.0112175 3.27079e-06 1.1782e-12 0.0112124 2.34354e-06 1.18147e-12 0.0112087 1.65674e-06 1.18267e-12 0.0112061 1.15622e-06 1.18382e-12 0.0112042 7.96947e-07 1.18378e-12 0.0112029 5.42764e-07 1.18525e-12 0.0112019 3.65423e-07 1.18369e-12 0.0112013 2.43128e-07 1.18788e-12 0.0112009 1.6019e-07 1.18037e-12 1.01949e-07 1.19473e-12 0.0284474 0.0114579 -3.85393e-10 0.0295847 0.0187253 -6.40579e-11 0.0303995 0.0198597 1.57315e-11 0.0296328 0.0205603 4.79854e-11 0.0285555 0.0192101 9.15038e-11 0.0273695 0.0174796 9.66973e-11 0.0262569 0.0157389 8.13819e-11 0.0252217 0.0141665 6.71478e-11 0.0242381 0.0127849 6.67316e-11 0.0233116 0.011553 6.51237e-11 0.0224487 0.0104472 6.23416e-11 0.0216523 0.00944589 5.74137e-11 0.0209209 0.00853812 5.25299e-11 0.0202519 0.00771021 4.60078e-11 0.0196414 0.00695492 4.17823e-11 0.0190937 0.00626309 2.85759e-11 0.0186125 0.00562902 2.61308e-11 0.0182003 0.00504622 2.53659e-11 0.0178598 0.00450938 2.7062e-11 0.0175885 0.0040155 2.9244e-11 0.017381 0.0035611 3.05447e-11 0.0172311 0.00314228 3.10858e-11 0.0171324 0.00275496 2.71564e-11 0.017081 0.00239524 3.33943e-11 0.017072 0.00205991 2.98089e-11 0.0170999 0.00174659 3.16657e-11 0.0171576 0.00145352 3.31617e-11 0.0172354 0.00117915 3.28679e-11 0.0173254 0.000921767 3.04747e-11 0.0174213 0.000681194 2.77634e-11 0.0175159 0.000455618 2.47332e-11 0.0175997 0.000245567 2.2807e-11 0.0176667 5.03144e-05 1.99944e-11 0.01773 -0.000138454 1.71185e-11 0.0177821 -0.000306554 1.54141e-11 0.0178321 -0.000457124 1.32726e-11 0.0178859 -0.000589982 1.30841e-11 0.0179528 -0.000705575 1.20676e-11 0.018035 -0.000805347 1.1727e-11 0.0181325 -0.000889209 1.17434e-11 0.0182618 -0.000959352 1.84856e-11 0.0183873 -0.00101553 1.91172e-11 0.0185007 -0.00106898 2.02515e-11 0.0186177 -0.00110975 2.12041e-11 0.0187379 -0.00113434 2.16468e-11 0.0188738 -0.00113932 2.01315e-11 0.0190298 -0.00113051 2.49704e-11 0.0192234 -0.00111063 2.73205e-11 0.0194549 -0.00107979 3.25522e-11 0.0197159 -0.00103951 3.82761e-11 0.0199935 -0.000990904 4.36171e-11 0.020274 -0.000933841 4.8596e-11 0.0205409 -0.000870727 4.85954e-11 0.0207847 -0.00080353 4.08323e-11 0.0209997 -0.000734609 3.74179e-11 0.0211844 -0.000665263 3.32373e-11 0.0213437 -0.000594801 2.97554e-11 0.0214864 -0.000528454 2.5039e-11 0.0216078 -0.000467681 2.06397e-11 0.0217021 -0.000409544 1.51156e-11 0.0218059 -0.000352032 1.32779e-11 0.0219667 -0.000298243 6.86102e-12 0.0221298 -0.000251047 1.7451e-12 0.0221898 -0.000210876 1.1587e-13 0.0221202 -0.000182563 -6.0993e-12 0.0219347 -0.00016564 -1.32766e-11 0.0216834 -0.0001539 -3.41714e-11 0.0212872 -0.000141476 -5.41562e-11 0.0206067 -0.000116425 -9.56279e-11 0.0195732 -7.47252e-05 -1.18446e-10 0.0182493 -3.0479e-05 -1.28404e-10 0.0168142 6.37245e-06 -1.19676e-10 0.0154655 3.24347e-05 -9.77806e-11 0.0143303 4.84324e-05 -7.2463e-11 0.0134475 5.66825e-05 -5.03384e-11 0.0127971 5.94857e-05 -3.3743e-11 0.0123338 5.8657e-05 -2.07939e-11 0.0120108 5.54254e-05 -1.10733e-11 0.0117867 5.06147e-05 -9.59149e-12 0.01163 4.49257e-05 -4.4364e-12 0.011519 3.88781e-05 -2.21436e-12 0.0114387 3.28661e-05 -7.41225e-13 0.0113795 2.71701e-05 -3.4936e-14 0.0113351 2.20046e-05 4.89279e-13 0.0113015 1.74829e-05 8.02523e-13 0.0112758 1.36412e-05 9.78515e-13 0.0112563 1.04628e-05 1.07549e-12 0.0112414 7.89566e-06 1.1279e-12 0.0112302 5.86701e-06 1.15547e-12 0.0112218 4.29584e-06 1.16983e-12 0.0112156 3.10145e-06 1.17687e-12 0.011211 2.20912e-06 1.18064e-12 0.0112077 1.55325e-06 1.18232e-12 0.0112054 1.07852e-06 1.18369e-12 0.0112037 7.39887e-07 1.18374e-12 0.0112025 5.01652e-07 1.18537e-12 0.0112017 3.36321e-07 1.18385e-12 0.0112011 2.22874e-07 1.18801e-12 0.0112008 1.46271e-07 1.18049e-12 9.27648e-08 1.19481e-12 0.0257666 0.00496282 -1.79245e-10 0.0294337 0.0140355 -2.60783e-10 0.0300169 0.0190409 -4.45971e-11 0.0308981 0.0196381 2.95861e-11 0.0299573 0.0201878 5.39544e-11 0.0288373 0.0187135 8.14118e-11 0.0276148 0.0170506 8.28332e-11 0.026462 0.01539 7.49434e-11 0.0254204 0.0138892 7.43257e-11 0.0244727 0.0125727 7.2967e-11 0.0236075 0.0114091 7.14902e-11 0.0228128 0.0103653 6.85026e-11 0.0220791 0.00942174 6.36791e-11 0.0214019 0.00856068 5.66643e-11 0.0207798 0.00777035 4.98247e-11 0.020215 0.00704229 4.04156e-11 0.0197104 0.00636866 2.96674e-11 0.0192653 0.00574502 2.71516e-11 0.018882 0.00516721 2.56162e-11 0.0185648 0.00463228 2.90146e-11 0.0183174 0.00413864 2.502e-11 0.0181404 0.00368375 2.67782e-11 0.0180267 0.00326404 3.14925e-11 0.017965 0.00287553 3.22926e-11 0.0179457 0.00251463 2.8883e-11 0.0179622 0.00217764 2.89391e-11 0.018009 0.00186247 3.04716e-11 0.018079 0.00156752 3.05594e-11 0.0181629 0.00129159 2.77161e-11 0.0182513 0.0010334 2.59565e-11 0.0183369 0.000792273 2.37461e-11 0.0184143 0.000567394 2.01036e-11 0.0184775 0.000358262 1.55728e-11 0.018517 0.000164204 1.30814e-11 0.01854 -1.0645e-05 1.10673e-11 0.0185613 -0.000188618 1.08354e-11 0.0185819 -0.000338417 1.06837e-11 0.0186123 -0.000471718 1.06089e-11 0.0186544 -0.000588563 1.13545e-11 0.0187136 -0.000689957 1.12538e-11 0.0187961 -0.000775452 1.74564e-11 0.0189033 -0.000848866 2.21054e-11 0.0189976 -0.000906613 2.52506e-11 0.0190658 -0.000956869 2.54895e-11 0.0191366 -0.00100075 2.67587e-11 0.019216 -0.00103056 2.78613e-11 0.0193152 -0.00104301 2.9659e-11 0.0194479 -0.0010382 3.00068e-11 0.0196299 -0.00102404 3.22777e-11 0.019851 -0.000998802 4.14422e-11 0.020098 -0.000963135 4.54506e-11 0.0203596 -0.000917413 4.80398e-11 0.0206212 -0.00086277 4.20094e-11 0.0208679 -0.000800654 3.27361e-11 0.0210894 -0.00073213 2.98361e-11 0.021281 -0.000659614 2.87146e-11 0.0214486 -0.000586155 2.77206e-11 0.0215991 -0.000514254 2.43603e-11 0.0217311 -0.000445417 1.98624e-11 0.0218362 -0.000379939 1.15043e-11 0.0219235 -0.0003168 6.14792e-12 0.0220376 -0.000255823 6.80561e-13 0.0221979 -0.000198627 -5.81725e-12 0.022304 -0.000146116 -7.32901e-12 0.0222842 -0.000104059 -1.46673e-11 0.0221354 -7.699e-05 -1.65029e-11 0.0218706 -6.42562e-05 -2.96455e-11 0.0214898 -5.55718e-05 -5.19295e-11 0.0207789 -4.22035e-05 -8.40758e-11 0.0197157 -9.52333e-06 -1.17577e-10 0.0183638 2.6463e-05 -1.27808e-10 0.0169008 5.38885e-05 -1.18354e-10 0.0155265 7.02005e-05 -9.62271e-11 0.0143702 7.74667e-05 -7.09766e-11 0.0134712 7.84976e-05 -4.90722e-11 0.0128089 7.55474e-05 -3.27584e-11 0.0123371 7.02083e-05 -2.02124e-11 0.0120082 6.34701e-05 -1.04958e-11 0.0117802 5.59885e-05 -9.15293e-12 0.0116213 4.83267e-05 -4.22238e-12 0.0115092 4.08579e-05 -2.06781e-12 0.0114288 3.38611e-05 -6.91238e-13 0.0113702 2.75201e-05 2.38862e-14 0.0113267 2.19635e-05 5.04913e-13 0.0112941 1.72291e-05 8.08519e-13 0.0112696 1.32933e-05 9.79646e-13 0.0112512 1.00952e-05 1.07431e-12 0.0112374 7.55102e-06 1.12606e-12 0.0112271 5.56636e-06 1.15378e-12 0.0112194 4.04637e-06 1.16842e-12 0.0112138 2.90213e-06 1.17621e-12 0.0112097 2.05464e-06 1.17986e-12 0.0112068 1.43653e-06 1.1823e-12 0.0112047 9.92255e-07 1.18371e-12 0.0112032 6.77369e-07 1.18352e-12 0.0112022 4.57132e-07 1.18525e-12 0.0112015 3.0513e-07 1.18391e-12 0.011201 2.01348e-07 1.18808e-12 0.0112006 1.31603e-07 1.18063e-12 8.31551e-08 1.1949e-12 0.0203134 0.00201677 -1.81408e-10 0.026606 0.00617771 -5.09492e-10 0.029977 0.0150418 -2.04331e-10 0.0303969 0.0191057 -2.23145e-11 0.0312693 0.0192791 4.09259e-11 0.0302818 0.0197367 6.53687e-11 0.0291533 0.0182821 8.51291e-11 0.027923 0.0167005 8.43208e-11 0.0267498 0.0151155 8.0762e-11 0.025706 0.0136871 7.86568e-11 0.0247831 0.0124357 7.73885e-11 0.0239652 0.011332 7.57112e-11 0.0232325 0.0103468 7.15887e-11 0.0225613 0.00945282 6.50625e-11 0.0219407 0.00863016 5.66095e-11 0.0213661 0.00786555 4.72225e-11 0.0208399 0.00715085 3.27382e-11 0.0203689 0.00648382 2.82797e-11 0.0199561 0.00586242 2.74951e-11 0.0196091 0.00528582 2.89002e-11 0.0193336 0.00475378 3.09132e-11 0.0191288 0.00426413 2.85391e-11 0.0189902 0.00381295 2.9058e-11 0.0189101 0.00339534 2.99774e-11 0.0188778 0.00300691 3.06523e-11 0.0188831 0.00264493 3.03494e-11 0.018917 0.0023067 2.9795e-11 0.0189742 0.00199042 2.90972e-11 0.0190472 0.00169493 2.73657e-11 0.0191262 0.00141899 2.41576e-11 0.0192023 0.00116181 2.01743e-11 0.0192675 0.00092207 1.61588e-11 0.0193175 0.000699739 1.16437e-11 0.0193521 0.000493074 9.16288e-12 0.0193717 0.000303867 8.41147e-12 0.0193649 0.000127675 5.91946e-12 0.0193503 -3.11685e-05 7.58782e-12 0.0193475 -0.000187343 1.05407e-11 0.019356 -0.000321381 1.18254e-11 0.0193754 -0.000438362 1.20653e-11 0.0194154 -0.000540531 1.72953e-11 0.01948 -0.00062919 2.4367e-11 0.0195512 -0.000704718 2.66278e-11 0.0196049 -0.00076699 2.84687e-11 0.019633 -0.000815064 2.83979e-11 0.0196648 -0.00086116 2.90307e-11 0.019711 -0.000896133 2.60924e-11 0.0197831 -0.00091506 2.79449e-11 0.0199022 -0.000916498 5.09418e-11 0.0200771 -0.000906194 3.57434e-11 0.0202881 -0.00088778 4.30347e-11 0.0205151 -0.000857137 4.69478e-11 0.0207498 -0.000816282 4.9657e-11 0.0209794 -0.000766434 4.55942e-11 0.0211915 -0.000708012 2.96207e-11 0.0213811 -0.000642353 2.61386e-11 0.0215478 -0.000572605 2.72095e-11 0.0216956 -0.000500821 2.12881e-11 0.0218274 -0.000429782 1.63706e-11 0.0219373 -0.000361433 7.95319e-12 0.0220223 -0.000294989 2.79371e-12 0.0221084 -0.000229897 -5.22467e-12 0.0222312 -0.000166904 -8.29558e-12 0.0223586 -0.000106395 -1.34367e-11 0.0223985 -5.09895e-05 -1.51786e-11 0.0223077 -6.93423e-06 -2.44349e-11 0.0220766 2.10427e-05 -2.49449e-11 0.0217122 3.41918e-05 -4.98194e-11 0.0209873 4.27942e-05 -7.73014e-11 0.0198703 6.34571e-05 -1.21756e-10 0.0184764 8.9705e-05 -1.27115e-10 0.0169794 0.0001051 -1.17165e-10 0.015578 0.000109719 -9.47281e-11 0.0144008 0.000107076 -6.95033e-11 0.0134866 0.000100217 -4.77623e-11 0.0128136 9.11477e-05 -3.17128e-11 0.0123345 8.10824e-05 -1.89804e-11 0.0120007 7.07224e-05 -1.0462e-11 0.0117699 6.05925e-05 -8.65873e-12 0.0116098 5.10092e-05 -3.99135e-12 0.0114974 4.22153e-05 -1.92977e-12 0.0114176 3.43466e-05 -6.09624e-13 0.0113599 2.74694e-05 1.19268e-13 0.0113177 2.16134e-05 4.93876e-13 0.0112865 1.67454e-05 8.17744e-13 0.0112634 1.27782e-05 9.84338e-13 0.0112462 9.60883e-06 1.07572e-12 0.0112334 7.12367e-06 1.12597e-12 0.011224 5.20926e-06 1.15332e-12 0.0112171 3.75909e-06 1.16778e-12 0.0112121 2.67798e-06 1.17591e-12 0.0112084 1.88417e-06 1.1797e-12 0.0112058 1.30973e-06 1.18194e-12 0.011204 8.99781e-07 1.18399e-12 0.0112027 6.11119e-07 1.18365e-12 0.0112018 4.10442e-07 1.18497e-12 0.0112012 2.72719e-07 1.18371e-12 0.0112008 1.79177e-07 1.18797e-12 0.0112006 1.16615e-07 1.18092e-12 7.33854e-08 1.195e-12 0.01816 0.000768032 -1.09867e-10 0.0212081 0.00251142 -2.82528e-10 0.0274852 0.00684958 -6.11949e-10 0.0303932 0.0155593 -1.9277e-10 0.0306879 0.0188139 -2.72346e-12 0.0314304 0.0188699 2.67745e-11 0.0304436 0.0192748 7.06603e-11 0.0293553 0.017891 1.00569e-10 0.0281642 0.016401 8.88228e-11 0.0270312 0.0148978 8.05042e-11 0.026033 0.0135583 7.67521e-11 0.025175 0.0123842 7.49348e-11 0.0244315 0.011346 7.27093e-11 0.0237679 0.0104075 6.87413e-11 0.0231501 0.00954285 6.18515e-11 0.0225626 0.00873446 5.26135e-11 0.0220102 0.00797397 3.60628e-11 0.0215045 0.00725954 2.92667e-11 0.0210594 0.00659335 2.83717e-11 0.0206846 0.00597638 2.94122e-11 0.0203857 0.00540732 2.98604e-11 0.0201639 0.00488333 2.95235e-11 0.020011 0.00440046 2.90797e-11 0.0199151 0.00395348 2.8033e-11 0.0198659 0.00353757 2.74366e-11 0.0198556 0.00314947 2.74411e-11 0.0198758 0.00278703 2.66971e-11 0.0199169 0.00244846 2.53334e-11 0.0199733 0.0021325 2.30841e-11 0.0200391 0.00183807 2.00554e-11 0.0201036 0.00156429 1.63246e-11 0.0201573 0.00130973 1.26332e-11 0.0201945 0.00107341 8.54558e-12 0.0202141 0.000854362 6.36028e-12 0.020216 0.000652548 3.77674e-12 0.0202037 0.000466306 4.01238e-12 0.020184 0.000296694 5.05852e-12 0.020154 0.000139496 6.95443e-12 0.0201269 2.81162e-06 1.2788e-11 0.0201106 -0.000136071 1.21028e-11 0.0201099 -0.000256163 2.12642e-11 0.0201316 -0.000360168 2.57319e-11 0.020168 -0.000451177 2.61463e-11 0.0201924 -0.000529636 2.71983e-11 0.0202019 -0.000596136 2.79983e-11 0.020203 -0.000648572 3.47135e-11 0.0202034 -0.000692738 4.08442e-11 0.0202133 -0.000732431 4.4633e-11 0.0202747 -0.00075823 1.92765e-10 0.0203878 -0.000768071 -5.84423e-11 0.02056 -0.000763017 -8.73645e-12 0.0207558 -0.000751086 2.8267e-11 0.020955 -0.000726142 4.39616e-11 0.0211541 -0.000691138 4.71167e-11 0.0213434 -0.000647834 4.30166e-11 0.0215134 -0.000595989 2.66e-11 0.0216632 -0.000537077 2.66755e-11 0.0217958 -0.000474283 2.03936e-11 0.0219143 -0.000409488 1.50237e-11 0.0220158 -0.000344567 7.38777e-12 0.0220957 -0.000279949 2.4323e-12 0.0221643 -0.000215116 -4.22506e-12 0.0222524 -0.000151184 -7.12553e-12 0.0223711 -8.76531e-05 -1.22765e-11 0.0224482 -2.4261e-05 -1.3469e-11 0.0224233 3.49265e-05 -2.34379e-11 0.0222608 8.21018e-05 -2.19268e-11 0.0219171 0.000113817 -4.1493e-11 0.0213073 0.000131318 -6.872e-11 0.0200428 0.000143649 -1.21725e-10 0.0185814 0.000157051 -1.28229e-10 0.0170451 0.000157786 -1.16135e-10 0.0156165 0.000149306 -9.29596e-11 0.01442 0.00013617 -6.77303e-11 0.0134924 0.000121184 -4.63893e-11 0.0128103 0.00010584 -3.05146e-11 0.0123254 9.09156e-05 -1.90076e-11 0.0119883 7.69851e-05 -1.07167e-11 0.0117559 6.42599e-05 -8.12535e-12 0.0115955 5.28837e-05 -3.73934e-12 0.0114838 4.28975e-05 -1.79145e-12 0.0114051 3.42947e-05 -5.22347e-13 0.011349 2.70069e-05 1.73214e-13 0.0113084 2.09591e-05 5.3391e-13 0.0112788 1.60406e-05 8.34066e-13 0.0112571 1.21071e-05 9.91879e-13 0.0112412 9.01493e-06 1.07905e-12 0.0112296 6.62402e-06 1.12729e-12 0.0112211 4.80467e-06 1.15364e-12 0.0112149 3.44139e-06 1.16791e-12 0.0112104 2.43486e-06 1.17581e-12 0.0112072 1.70223e-06 1.1796e-12 0.011205 1.17624e-06 1.18231e-12 0.0112034 8.03578e-07 1.18379e-12 0.0112023 5.42921e-07 1.18373e-12 0.0112016 3.62834e-07 1.18543e-12 0.011201 2.39953e-07 1.18416e-12 0.0112007 1.56945e-07 1.18828e-12 0.0112005 1.01711e-07 1.18085e-12 6.37301e-08 1.19503e-12 0.0173274 0.000281238 -3.10505e-11 0.0185538 0.000940257 -1.64054e-10 0.0220236 0.00266874 -2.7656e-10 0.0278436 0.00771124 -6.15813e-10 0.0304971 0.0155707 -1.85775e-10 0.0308436 0.0184313 -4.11326e-12 0.0315415 0.0185036 1.94602e-11 0.0305977 0.0188517 6.90328e-11 0.0295608 0.0175747 9.81554e-11 0.0284486 0.0161878 9.29879e-11 0.0274183 0.0147887 7.81249e-11 0.026516 0.0135437 7.3475e-11 0.0257348 0.0124347 7.27349e-11 0.0250379 0.0114316 7.20215e-11 0.0243945 0.0105065 6.75352e-11 0.0237822 0.00964239 5.90498e-11 0.0231971 0.00883058 4.01118e-11 0.0226578 0.00806898 3.07952e-11 0.0221852 0.00735939 2.92635e-11 0.0217918 0.00670376 2.78238e-11 0.0214787 0.00610021 2.91235e-11 0.0212416 0.00554337 2.93799e-11 0.0210745 0.00502853 2.77784e-11 0.0209652 0.00455125 2.65194e-11 0.0209017 0.00410672 2.54165e-11 0.0208738 0.0036919 2.4211e-11 0.0208752 0.00330394 2.23572e-11 0.0209001 0.00294205 2.10754e-11 0.0209383 0.00260479 1.86256e-11 0.0209853 0.00229118 1.5799e-11 0.0210357 0.00200018 1.26641e-11 0.021077 0.00173054 9.59973e-12 0.0211011 0.00148028 6.45655e-12 0.0211066 0.00124824 4.34321e-12 0.0210932 0.00103376 2.93362e-12 0.0210637 0.000836071 2.99843e-12 0.0210244 0.000654545 3.53736e-12 0.0209845 0.000488653 6.43407e-12 0.0209459 0.000337351 7.34544e-12 0.0209068 0.000199139 1.33655e-11 0.0208713 7.34557e-05 1.50283e-11 0.0208486 -3.6766e-05 2.17941e-11 0.0208465 -0.000148112 3.08464e-11 0.0208432 -0.000244016 3.58636e-11 0.0208198 -0.000327415 3.73519e-11 0.020792 -0.000397758 3.58084e-11 0.0207676 -0.000457283 4.39418e-11 0.0207399 -0.000502521 4.42921e-11 0.0207424 -0.00054387 4.85695e-11 0.020786 -0.00057663 4.95797e-11 0.0209089 -0.000594369 4.29121e-11 0.0210744 -0.000596756 5.43533e-11 0.0212437 -0.00058997 5.41504e-11 0.0214064 -0.000571917 3.38157e-11 0.0215617 -0.000544658 3.6108e-11 0.021703 -0.000509893 2.75589e-11 0.0218253 -0.000467137 2.53177e-11 0.021931 -0.000418115 2.01382e-11 0.0220234 -0.000365367 1.45386e-11 0.0221023 -0.000310494 8.65448e-12 0.022165 -0.000254099 3.06781e-12 0.0222169 -0.00019543 -7.62832e-13 0.0222784 -0.000134951 -3.70444e-12 0.0223727 -7.27469e-05 -7.91533e-12 0.0224595 -7.21252e-06 -9.01861e-12 0.0224873 5.99023e-05 -1.50637e-11 0.0224002 0.00012289 -1.67373e-11 0.0221336 0.000175053 -3.21126e-11 0.0215703 0.0002117 -6.47503e-11 0.0202019 0.000227178 -1.32965e-10 0.0186673 0.000224422 -1.32454e-10 0.017092 0.000208625 -1.15408e-10 0.0156391 0.000187072 -9.09614e-11 0.0144263 0.000163834 -6.58145e-11 0.0134877 0.000140851 -4.48584e-11 0.0127986 0.000119143 -2.92841e-11 0.0123097 9.94797e-05 -1.86964e-11 0.0119708 8.20361e-05 -1.06024e-11 0.0117382 6.6863e-05 -7.53331e-12 0.0115786 5.38573e-05 -3.47186e-12 0.0114684 4.28628e-05 -1.61806e-12 0.0113916 3.36918e-05 -4.47919e-13 0.0113375 2.61366e-05 2.39889e-13 0.0112988 2.00099e-05 5.82026e-13 0.011271 1.51296e-05 8.54584e-13 0.0112509 1.12958e-05 1.00233e-12 0.0112364 8.32828e-06 1.08435e-12 0.0112259 6.06482e-06 1.12986e-12 0.0112183 4.3631e-06 1.15483e-12 0.0112128 3.10159e-06 1.16855e-12 0.0112089 2.17915e-06 1.17593e-12 0.0112062 1.51359e-06 1.18002e-12 0.0112042 1.03955e-06 1.18228e-12 0.0112029 7.06158e-07 1.18382e-12 0.0112019 4.74543e-07 1.18413e-12 0.0112013 3.15529e-07 1.18575e-12 0.0112009 2.07664e-07 1.18433e-12 0.0112006 1.35203e-07 1.18838e-12 0.0112004 8.72421e-08 1.18091e-12 5.44283e-08 1.1951e-12 0.016956 0.000112803 -2.22003e-11 0.0173117 0.000354376 -6.68584e-11 0.018885 0.00095691 -1.41619e-10 0.0227876 0.0029573 -3.13241e-10 0.0283811 0.00807696 -6.02126e-10 0.030748 0.015497 -1.72985e-10 0.0310684 0.0180509 -2.37839e-11 0.0317161 0.0181641 1.32117e-11 0.0308734 0.0184771 5.83742e-11 0.0298866 0.0173359 8.82373e-11 0.0288713 0.0160756 8.78441e-11 0.027933 0.014783 7.36866e-11 0.0270936 0.013607 7.47715e-11 0.0263436 0.012526 7.56959e-11 0.0256512 0.0115264 7.27627e-11 0.0249991 0.0105947 6.4621e-11 0.0243877 0.00972638 4.30563e-11 0.0238255 0.00891782 3.24983e-11 0.0233322 0.00816681 3.18791e-11 0.0229249 0.00747296 2.954e-11 0.0226028 0.00683401 3.03062e-11 0.0223561 0.00624444 2.84601e-11 0.0221748 0.0056973 2.61543e-11 0.0220509 0.00518853 2.39045e-11 0.0219732 0.00471495 2.21837e-11 0.0219296 0.00427243 2.03138e-11 0.021911 0.00385844 1.91044e-11 0.0219133 0.00347156 1.65954e-11 0.0219339 0.00311221 1.49282e-11 0.0219625 0.00277907 1.24508e-11 0.0219949 0.00247059 9.76917e-12 0.0220244 0.00218526 7.39244e-12 0.0220359 0.00192105 5.28525e-12 0.0220253 0.00167564 3.73779e-12 0.0219957 0.00144811 3.18163e-12 0.0219482 0.00123793 3.60977e-12 0.0218883 0.00104427 4.78057e-12 0.021827 0.000866705 6.99951e-12 0.0217702 0.000704503 1.00541e-11 0.0217147 0.000556658 1.31687e-11 0.0216624 0.000421628 1.73976e-11 0.0216181 0.000298618 1.7368e-11 0.0215829 0.000185839 2.4525e-11 0.0215514 8.27841e-05 3.69769e-11 0.0214998 -5.33629e-06 4.43317e-11 0.0214355 -9.65257e-05 4.49318e-11 0.021373 -0.000175599 5.08393e-11 0.0213217 -0.000242009 4.92952e-11 0.021291 -0.000294251 5.20247e-11 0.0212864 -0.000336944 5.24917e-11 0.0213438 -0.000372006 5.26213e-11 0.0214624 -0.000397423 5.44006e-11 0.0216049 -0.000408684 5.40572e-11 0.0217365 -0.000407901 4.58382e-11 0.0218539 -0.000396952 2.90045e-11 0.0219597 -0.000379429 2.65805e-11 0.0220497 -0.00035474 2.361e-11 0.0221243 -0.000322473 2.13081e-11 0.0221857 -0.000284799 1.44144e-11 0.0222351 -0.000243577 7.94453e-12 0.0222719 -0.000199276 1.02089e-12 0.0222999 -0.000151009 -2.39969e-12 0.0223378 -9.83889e-05 -6.10747e-12 0.0224098 -4.12924e-05 -9.69858e-12 0.0224971 2.15054e-05 -1.1742e-11 0.0225536 9.03985e-05 -1.44379e-11 0.0225267 0.000161989 -1.76705e-11 0.0223251 0.000229849 -3.31081e-11 0.021778 0.000282255 -6.18852e-11 0.0202995 0.000303395 -1.28547e-10 0.018716 0.000283412 -1.29773e-10 0.0171149 0.000254008 -1.12761e-10 0.0156446 0.000222012 -8.85014e-11 0.0144193 0.000189699 -6.36759e-11 0.0134722 0.000158817 -4.30382e-11 0.0127782 0.000130915 -2.79327e-11 0.0122872 0.000106511 -1.76914e-11 0.0119483 8.56904e-05 -9.66787e-12 0.011717 6.82736e-05 -6.84173e-12 0.0115595 5.38762e-05 -3.17535e-12 0.0114517 4.20904e-05 -1.42177e-12 0.0113774 3.25369e-05 -3.4794e-13 0.0113256 2.48704e-05 3.1951e-13 0.0112892 1.87884e-05 6.29083e-13 0.0112633 1.40354e-05 8.76902e-13 0.0112449 1.03653e-05 1.01478e-12 0.0112317 7.5671e-06 1.09098e-12 0.0112223 5.46105e-06 1.13326e-12 0.0112156 3.89636e-06 1.15658e-12 0.0112109 2.74874e-06 1.16943e-12 0.0112075 1.91762e-06 1.17643e-12 0.0112052 1.32318e-06 1.18037e-12 0.0112035 9.03184e-07 1.18246e-12 0.0112024 6.09975e-07 1.18398e-12 0.0112016 4.07671e-07 1.18427e-12 0.0112011 2.69666e-07 1.18586e-12 0.0112007 1.7661e-07 1.18436e-12 0.0112005 1.14449e-07 1.18843e-12 0.0112003 7.35247e-08 1.18093e-12 4.56726e-08 1.1952e-12 0.0168444 5.41684e-05 -1.10838e-11 0.0170005 0.000122967 -2.55892e-11 0.0173625 0.000370176 -6.59991e-11 0.0191048 0.00102203 -1.47821e-10 0.0233922 0.003037 -3.09579e-10 0.0287072 0.00813123 -6.08179e-10 0.0308853 0.0151892 -1.88006e-10 0.0312418 0.0176417 -2.22349e-11 0.0318786 0.0178517 3.23035e-11 0.0311374 0.0181274 3.76483e-11 0.030261 0.0171379 7.69583e-11 0.0293471 0.0160222 7.99803e-11 0.0284783 0.0148317 6.64751e-11 0.0276718 0.0136928 7.44044e-11 0.0269304 0.0126144 7.70727e-11 0.026242 0.0116096 7.21333e-11 0.0256029 0.0106781 5.40662e-11 0.0250247 0.00981868 3.47483e-11 0.0245176 0.00902677 3.16571e-11 0.0240923 0.00829327 3.04593e-11 0.0237568 0.00761437 2.9362e-11 0.0234996 0.00698649 2.68608e-11 0.0233061 0.00640666 2.40338e-11 0.0231674 0.00586637 2.09352e-11 0.0230742 0.00536233 1.88008e-11 0.023014 0.00489131 1.75914e-11 0.0229759 0.00445031 1.49874e-11 0.0229568 0.00403852 1.31681e-11 0.022955 0.003656 1.07623e-11 0.0229684 0.00330269 9.17685e-12 0.022984 0.00297683 7.47774e-12 0.0229957 0.00267532 5.9283e-12 0.0229963 0.00239644 4.80072e-12 0.0229699 0.00213746 4.24115e-12 0.0229198 0.00189634 4.32499e-12 0.0228536 0.0016727 5.45675e-12 0.0227727 0.00146617 7.08747e-12 0.0226868 0.00127592 9.42886e-12 0.0226072 0.00110152 1.25379e-11 0.0225328 0.000942118 1.53282e-11 0.0224594 0.000796129 1.91724e-11 0.0223895 0.000662125 2.27303e-11 0.0223276 0.000539263 2.48253e-11 0.0222758 0.000426564 2.6155e-11 0.0222128 0.000322541 2.58513e-11 0.0221276 0.000227189 3.50208e-11 0.0220371 0.000139588 4.67405e-11 0.0219487 6.05993e-05 4.5951e-11 0.0218791 -3.72013e-06 5.5924e-11 0.0218515 -6.27108e-05 5.25629e-11 0.0218702 -0.00011284 4.54185e-11 0.0219349 -0.000150563 3.39412e-11 0.0220261 -0.000179149 4.97472e-11 0.0221301 -0.000199525 5.05297e-11 0.022217 -0.000209003 2.89474e-11 0.0222876 -0.000207187 2.53763e-11 0.0223437 -0.000198477 2.22371e-11 0.0223857 -0.000183619 1.83348e-11 0.0224161 -0.00016172 1.25873e-11 0.0224368 -0.000134725 7.9843e-12 0.0224467 -0.000103797 6.79039e-14 0.0224499 -6.82113e-05 -3.34007e-12 0.0224639 -2.62543e-05 -4.17602e-12 0.0225141 2.25402e-05 -5.09003e-12 0.0225972 7.958e-05 -6.50883e-12 0.0226651 0.000145538 -1.10228e-11 0.0226674 0.000218034 -1.34944e-11 0.0224745 0.000290162 -3.44595e-11 0.0218565 0.000346447 -7.21227e-11 0.0203092 0.000358375 -1.39726e-10 0.0187266 0.000330966 -1.27013e-10 0.0171175 0.000295277 -1.09315e-10 0.0156353 0.000255191 -8.56537e-11 0.0143996 0.000214034 -6.12893e-11 0.0134458 0.000175234 -4.11022e-11 0.0127489 0.000140886 -2.65345e-11 0.0122579 0.000111765 -1.66236e-11 0.0119209 8.77735e-05 -8.63494e-12 0.0116926 6.83993e-05 -6.08868e-12 0.0115383 5.28921e-05 -2.85304e-12 0.0114338 4.05724e-05 -1.23111e-12 0.0113626 3.08541e-05 -2.28546e-13 0.0113136 2.32419e-05 3.95438e-13 0.0112796 1.73255e-05 6.77149e-13 0.0112559 1.27877e-05 9.02326e-13 0.0112392 9.3417e-06 1.02863e-12 0.0112274 6.75271e-06 1.0985e-12 0.0112191 4.82946e-06 1.13727e-12 0.0112132 3.41722e-06 1.15872e-12 0.0112091 2.39228e-06 1.17057e-12 0.0112063 1.65708e-06 1.1771e-12 0.0112043 1.13582e-06 1.18076e-12 0.0112029 7.70483e-07 1.18275e-12 0.0112019 5.17316e-07 1.18417e-12 0.0112013 3.43839e-07 1.18444e-12 0.0112009 2.26256e-07 1.18594e-12 0.0112006 1.47448e-07 1.1844e-12 0.0112004 9.51008e-08 1.18846e-12 0.0112003 6.08247e-08 1.18105e-12 3.76199e-08 1.1953e-12 0.0168308 1.81214e-05 -3.65112e-12 0.0168535 5.39872e-05 -1.129e-11 0.0170151 0.000124394 -2.59535e-11 0.0174337 0.000374887 -6.61649e-11 0.0192306 0.00103238 -1.46063e-10 0.0235714 0.00301619 -2.99298e-10 0.0287645 0.00785294 -5.88989e-10 0.0309269 0.0146948 -1.96883e-10 0.0314062 0.0172126 -2.37756e-11 0.0320076 0.0175857 2.86892e-11 0.0314578 0.0177931 3.29399e-11 0.0307239 0.0169634 4.3713e-11 0.0298682 0.016001 4.37527e-11 0.0290211 0.0148992 6.67704e-11 0.0282314 0.0137837 7.6537e-11 0.0275091 0.0127083 7.61833e-11 0.0268528 0.011706 6.03523e-11 0.0262659 0.0107894 3.56686e-11 0.0257522 0.00994785 3.25599e-11 0.0253092 0.0091697 3.03589e-11 0.0249429 0.00844643 2.71339e-11 0.0246673 0.00777683 2.4162e-11 0.0244637 0.00715813 2.174e-11 0.0243132 0.00658632 1.76833e-11 0.0242037 0.0060516 1.499e-11 0.0241246 0.00555018 1.23265e-11 0.0240675 0.00508107 1.09098e-11 0.0240267 0.00464376 9.39374e-12 0.0240048 0.00423787 7.97048e-12 0.0239979 0.00386408 6.75757e-12 0.0239999 0.00351963 5.89828e-12 0.0239948 0.00320245 5.31689e-12 0.0239756 0.00290764 5.1249e-12 0.0239371 0.00263424 5.45781e-12 0.0238656 0.00237919 6.39605e-12 0.0237742 0.00214116 7.98056e-12 0.0236728 0.00192057 1.01704e-11 0.0235627 0.00171692 1.26913e-11 0.0234563 0.00152919 1.58495e-11 0.0233599 0.0013569 1.84002e-11 0.0232671 0.00119872 2.19076e-11 0.0231738 0.00105275 2.52197e-11 0.0230832 0.000917729 2.74551e-11 0.0230034 0.000793091 3.05902e-11 0.0229212 0.000677686 3.13519e-11 0.0228176 0.000570475 3.21868e-11 0.0227069 0.000471535 3.29614e-11 0.0225984 0.000380144 3.42039e-11 0.0225027 0.00029918 4.14013e-11 0.0224425 0.000228305 5.18732e-11 0.0224308 0.000167673 4.84224e-11 0.0224625 0.000116918 3.734e-11 0.0225216 7.54091e-05 4.43754e-11 0.0225831 4.36375e-05 3.42727e-11 0.0226356 1.93663e-05 2.62687e-11 0.0226764 3.03838e-06 2.07627e-11 0.0227038 -4.84582e-06 1.95257e-11 0.0227157 -5.32362e-06 1.7099e-11 0.0227167 4.46314e-07 1.21635e-11 0.0227102 1.23197e-05 5.34419e-12 0.0226971 2.95786e-05 1.2977e-12 0.0226788 5.23408e-05 1.0765e-12 0.0226678 8.22665e-05 -9.10043e-13 0.0226963 0.000121701 -1.92141e-12 0.0227691 0.000171549 -3.90796e-12 0.0228288 0.000231866 -8.93912e-12 0.0228105 0.00029823 -1.51017e-11 0.0225378 0.00036153 -4.48749e-11 0.0216973 0.000405889 -8.92172e-11 0.0202735 0.000405854 -1.34341e-10 0.0187259 0.000378858 -1.20597e-10 0.0171105 0.000338135 -1.05545e-10 0.0156139 0.000288799 -8.2687e-11 0.0143671 0.000237498 -5.88507e-11 0.013408 0.000189734 -3.91562e-11 0.0127105 0.000148627 -2.50467e-11 0.012222 0.000114928 -1.55059e-11 0.011889 8.81018e-05 -8.63611e-12 0.0116653 6.71477e-05 -5.28388e-12 0.0115156 5.08919e-05 -2.54392e-12 0.0114152 3.83374e-05 -1.02865e-12 0.0113476 2.86819e-05 -1.09387e-13 0.0113018 2.1291e-05 4.49869e-13 0.0112704 1.56644e-05 7.3553e-13 0.0112487 1.14236e-05 9.27472e-13 0.0112338 8.25514e-06 1.04228e-12 0.0112233 5.9087e-06 1.10602e-12 0.0112161 4.18787e-06 1.14137e-12 0.0112111 2.93875e-06 1.16095e-12 0.0112076 2.04159e-06 1.17181e-12 0.0112051 1.40412e-06 1.17781e-12 0.0112035 9.56051e-07 1.18122e-12 0.0112023 6.44504e-07 1.18306e-12 0.0112016 4.30202e-07 1.18439e-12 0.011201 2.84361e-07 1.18463e-12 0.0112007 1.86142e-07 1.18605e-12 0.0112005 1.20706e-07 1.18449e-12 0.0112003 7.74861e-08 1.18851e-12 0.0112002 4.93405e-08 1.18114e-12 3.03854e-08 1.19537e-12 0.0168095 7.1234e-06 -1.55239e-12 0.0168319 1.77876e-05 -3.6772e-12 0.0168592 4.89617e-05 -1.12686e-11 0.0170203 0.000124386 -2.61306e-11 0.0174652 0.000353551 -6.58475e-11 0.0192519 0.00100587 -1.44817e-10 0.0233224 0.00296024 -2.95081e-10 0.0287041 0.00712101 -5.90558e-10 0.0309348 0.0141729 -1.93452e-10 0.0315961 0.0168158 -1.83935e-11 0.0321527 0.017325 2.96063e-11 0.0317705 0.0174791 3.08429e-11 0.0311986 0.0167888 3.06298e-11 0.0303943 0.015985 2.33271e-11 0.029594 0.0149697 6.18562e-11 0.0288367 0.0138875 7.43794e-11 0.0281558 0.0128301 7.02096e-11 0.0275496 0.0118485 4.00927e-11 0.0270156 0.0109437 3.27552e-11 0.0265573 0.0101105 3.028e-11 0.0261697 0.00933926 2.50781e-11 0.0258664 0.00862272 2.17969e-11 0.0256495 0.00796237 1.82002e-11 0.0254879 0.00735274 1.55349e-11 0.0253608 0.00678446 1.17055e-11 0.0252594 0.0062508 9.27508e-12 0.0251807 0.00575204 7.78206e-12 0.0251213 0.00528843 6.59567e-12 0.0250789 0.00485972 5.76683e-12 0.0250536 0.00446467 5.09267e-12 0.0250364 0.00410183 5.24573e-12 0.0250162 0.00376691 5.42577e-12 0.0249768 0.00345686 6.33227e-12 0.0249152 0.00316696 7.35724e-12 0.0248289 0.00289707 9.08546e-12 0.0247113 0.00264434 1.12075e-11 0.0245832 0.00240832 1.362e-11 0.0244528 0.00218997 1.63762e-11 0.0243196 0.00198815 1.94106e-11 0.0241961 0.00180154 2.16193e-11 0.0240824 0.00162963 2.46515e-11 0.023968 0.00147057 2.75764e-11 0.0238506 0.00132218 2.88385e-11 0.0237409 0.0011841 3.21702e-11 0.023635 0.00105572 3.46246e-11 0.0235115 0.000935501 3.45905e-11 0.0233786 0.00082337 3.4413e-11 0.0232511 0.000719024 3.44135e-11 0.0231314 0.000623996 3.36855e-11 0.023042 0.000539724 3.81461e-11 0.0229969 0.000465228 4.02521e-11 0.0229947 0.00040081 4.04081e-11 0.0230216 0.000345886 3.97275e-11 0.023059 0.000299766 3.42029e-11 0.0230902 0.000261884 2.46646e-11 0.0231053 0.000231571 1.91591e-11 0.0231003 0.000208901 1.79783e-11 0.023085 0.000193516 1.24898e-11 0.0230604 0.000185699 1.10826e-11 0.0230296 0.000184924 1.92375e-12 0.0229964 0.000190184 -9.63536e-13 0.0229628 0.000201847 -9.72207e-13 0.0229386 0.000221499 -2.25928e-12 0.0229407 0.000251219 -3.61365e-12 0.0229717 0.000291854 -6.54226e-12 0.0229777 0.000341845 -1.12167e-11 0.0228853 0.000396741 -2.61353e-11 0.0225544 0.000446798 -5.02594e-11 0.0215657 0.000477115 -1.01813e-10 0.0202834 0.000469586 -1.14394e-10 0.0187356 0.00043781 -1.14821e-10 0.0170965 0.000385835 -1.01983e-10 0.0155787 0.0003229 -7.96992e-11 0.0143198 0.000258941 -5.62543e-11 0.0133574 0.000201329 -3.70969e-11 0.0126624 0.000153461 -2.34856e-11 0.0121794 0.000115592 -1.4347e-11 0.011853 8.64742e-05 -8.07579e-12 0.0116357 6.44609e-05 -4.48955e-12 0.0114917 4.78835e-05 -2.23029e-12 0.0113963 3.54256e-05 -8.39889e-13 0.0113328 2.60793e-05 5.76219e-15 0.0112902 1.90829e-05 5.28137e-13 0.0112616 1.38586e-05 7.79117e-13 0.0112421 9.98553e-06 9.49701e-13 0.0112288 7.13883e-06 1.05539e-12 0.0112197 5.05998e-06 1.11358e-12 0.0112134 3.55442e-06 1.1456e-12 0.0112091 2.47383e-06 1.1633e-12 0.0112062 1.70559e-06 1.17314e-12 0.0112042 1.16478e-06 1.17859e-12 0.0112028 7.87877e-07 1.18171e-12 0.0112019 5.27863e-07 1.18338e-12 0.0112012 3.50305e-07 1.18462e-12 0.0112008 2.30285e-07 1.18481e-12 0.0112006 1.49965e-07 1.18618e-12 0.0112004 9.67705e-08 1.1846e-12 0.0112003 6.18314e-08 1.18859e-12 0.0112002 3.92014e-08 1.18124e-12 2.40392e-08 1.19544e-12 0.0168055 2.33416e-06 -3.47287e-13 0.0168144 5.38777e-06 -9.95491e-13 0.0168267 1.77308e-05 -4.11602e-12 0.016885 3.94464e-05 -7.07006e-12 0.0169974 0.000124661 -2.8945e-11 0.0175686 0.000296343 -4.60795e-11 0.019137 0.000968486 -1.38698e-10 0.0227481 0.00260943 -2.8111e-10 0.0283009 0.00643154 -5.71683e-10 0.0309124 0.0134932 -1.84282e-10 0.0318512 0.0163826 -1.18422e-11 0.0323829 0.0170661 1.56932e-11 0.0320979 0.0172036 1.01445e-11 0.0315973 0.0166285 5.16873e-12 0.0309137 0.0159157 6.81478e-12 0.0302071 0.0150222 6.21214e-11 0.0295163 0.0140068 6.86363e-11 0.0288852 0.0129935 4.32429e-11 0.0283227 0.0120321 3.18335e-11 0.0278447 0.0111382 2.9015e-11 0.02744 0.0103104 2.3062e-11 0.0271117 0.0095403 1.88491e-11 0.0268698 0.00882833 1.65139e-11 0.0266878 0.00817181 1.216e-11 0.0265394 0.00756345 8.83338e-12 0.0264157 0.00699596 6.18695e-12 0.0263142 0.00646676 4.88016e-12 0.0262362 0.00597629 4.29871e-12 0.0261776 0.00552428 4.25991e-12 0.0261329 0.00510827 4.40165e-12 0.0260959 0.00472548 5.32464e-12 0.0260546 0.00437235 6.42298e-12 0.0259958 0.00404467 8.01391e-12 0.0259097 0.00373866 9.70755e-12 0.0257988 0.00345149 1.18248e-11 0.0256637 0.00318289 1.43477e-11 0.0255061 0.00293099 1.69002e-11 0.0253495 0.00269591 1.96469e-11 0.0251957 0.00247855 2.25168e-11 0.0250428 0.00227662 2.44559e-11 0.0249028 0.00208909 2.66019e-11 0.024767 0.00191527 2.89786e-11 0.0246255 0.00175244 2.96075e-11 0.024486 0.00159943 3.15226e-11 0.0243527 0.0014564 3.39258e-11 0.0242084 0.00132189 3.34909e-11 0.024053 0.00119539 3.31879e-11 0.023905 0.00107701 3.25209e-11 0.0237657 0.000967416 3.15838e-11 0.0236506 0.000868918 3.06636e-11 0.023575 0.000779968 3.12943e-11 0.023539 0.000701292 3.19401e-11 0.0235331 0.000632283 3.0492e-11 0.0235401 0.000572099 2.56506e-11 0.0235447 0.000519989 1.95453e-11 0.0235373 0.000475526 1.55516e-11 0.023514 0.000438651 1.2837e-11 0.0234768 0.000409417 9.16361e-12 0.0234303 0.000388033 4.37825e-12 0.0233791 0.000374686 1.96823e-13 0.0233287 0.000369192 -3.16625e-12 0.0232806 0.00037127 -3.69483e-12 0.0232373 0.000381656 -4.80463e-12 0.0232034 0.000401647 -6.87758e-12 0.0231897 0.000432047 -1.02357e-11 0.0231633 0.000471786 -1.53136e-11 0.0230236 0.000516578 -2.92459e-11 0.0226257 0.000556079 -5.59903e-11 0.0216323 0.000570726 -1.02682e-10 0.0203326 0.000552187 -1.1186e-10 0.0187456 0.000504902 -1.1271e-10 0.0170677 0.000434923 -9.95787e-11 0.0155241 0.000354312 -7.69671e-11 0.0142547 0.000276071 -5.36427e-11 0.0132929 0.000208512 -3.49719e-11 0.0126046 0.000154539 -2.19022e-11 0.0121307 0.000113344 -1.31248e-11 0.0118136 8.27559e-05 -7.3807e-12 0.0116044 6.03317e-05 -3.69391e-12 0.0114673 4.39281e-05 -1.92952e-12 0.0113774 3.19243e-05 -6.43905e-13 0.0113183 2.31318e-05 1.24318e-13 0.0112793 1.66889e-05 5.80959e-13 0.0112534 1.19672e-05 8.4204e-13 0.011236 8.52133e-06 9.68279e-13 0.0112243 6.0277e-06 1.06896e-12 0.0112164 4.23167e-06 1.12116e-12 0.011211 2.9467e-06 1.14978e-12 0.0112074 2.03444e-06 1.16563e-12 0.011205 1.39227e-06 1.17447e-12 0.0112033 9.44269e-07 1.17937e-12 0.0112022 6.34619e-07 1.1822e-12 0.0112015 4.22624e-07 1.1837e-12 0.011201 2.78879e-07 1.18485e-12 0.0112006 1.82352e-07 1.18498e-12 0.0112004 1.18151e-07 1.1863e-12 0.0112003 7.58767e-08 1.1847e-12 0.0112002 4.82604e-08 1.18868e-12 0.0112001 3.04684e-08 1.18134e-12 1.86072e-08 1.1955e-12 0.016805 4.25883e-07 1.34764e-13 0.0168066 1.63497e-06 -2.51036e-13 0.0168177 4.46432e-06 -7.65857e-13 0.0168255 1.43711e-05 -3.63678e-12 0.0168931 3.4757e-05 -5.74327e-12 0.0169684 0.000106405 -2.68711e-11 0.0175501 0.000262236 -3.88395e-11 0.0188929 0.000835767 -1.40815e-10 0.0221789 0.00226335 -2.50051e-10 0.0279707 0.00557217 -5.7476e-10 0.0310632 0.0127133 -1.56824e-10 0.0322011 0.0158448 -3.23436e-11 0.0325732 0.0168447 -1.28984e-11 0.0323239 0.0169008 -1.20829e-11 0.0318875 0.0163959 -2.04816e-11 0.0314276 0.0157883 1.89385e-11 0.0308542 0.0150578 3.94095e-11 0.0302428 0.0141385 4.1151e-11 0.0296782 0.0131737 3.12013e-11 0.0291855 0.0122433 2.74913e-11 0.0287646 0.0113627 2.10311e-11 0.028408 0.0105357 1.7719e-11 0.0281272 0.00976373 1.24059e-11 0.0279142 0.00905332 8.62808e-12 0.0277401 0.00839997 5.78866e-12 0.0275955 0.00779492 3.43343e-12 0.0274744 0.00723418 2.72551e-12 0.0273767 0.00671567 2.78642e-12 0.0273005 0.00623848 3.41091e-12 0.0272369 0.00580024 4.41507e-12 0.0271768 0.00539614 6.0626e-12 0.0271114 0.00502252 7.94236e-12 0.0270299 0.00467565 9.88027e-12 0.0269209 0.00435143 1.21545e-11 0.0267827 0.00404636 1.45099e-11 0.0266216 0.00375925 1.70732e-11 0.0264436 0.00348968 1.92964e-11 0.0262546 0.00323713 2.15049e-11 0.026075 0.00300122 2.37282e-11 0.0258997 0.00278258 2.54027e-11 0.025728 0.0025779 2.66676e-11 0.0255692 0.00238698 2.82643e-11 0.0254056 0.00220827 2.88224e-11 0.0252369 0.00203898 2.89633e-11 0.0250745 0.00187947 3.11618e-11 0.0249076 0.00172914 3.02016e-11 0.0247291 0.00158695 3.07298e-11 0.0245581 0.00145319 3.28863e-11 0.0243998 0.00132831 3.08591e-11 0.024261 0.00121427 2.76562e-11 0.024158 0.00111058 2.62775e-11 0.0240911 0.00101698 2.42587e-11 0.0240524 0.000933253 2.13688e-11 0.0240286 0.000858502 1.8183e-11 0.024006 0.000791939 1.46462e-11 0.0239753 0.000733169 1.12887e-11 0.0239327 0.0006822 7.11689e-12 0.0238777 0.000639273 2.67478e-12 0.0238134 0.000604691 -1.17505e-12 0.0237455 0.000578836 -5.17511e-12 0.02368 0.000561921 -6.78047e-12 0.0236204 0.000553854 -7.25407e-12 0.0235654 0.000555234 -7.83137e-12 0.0235135 0.000566425 -8.36028e-12 0.0234691 0.000588273 -1.085e-11 0.023414 0.000619061 -1.88099e-11 0.0232303 0.000653907 -3.58286e-11 0.0227262 0.000680713 -6.5418e-11 0.0217297 0.000677661 -1.04657e-10 0.020383 0.000640696 -1.11811e-10 0.0187366 0.000572088 -1.11968e-10 0.0170117 0.000478842 -9.74733e-11 0.0154432 0.000378666 -7.40932e-11 0.0141686 0.000286162 -5.08638e-11 0.0132138 0.000209763 -3.26701e-11 0.0125376 0.000151123 -2.0283e-11 0.0120769 0.000107938 -1.19612e-11 0.0117717 7.69222e-05 -6.59566e-12 0.0115724 5.48621e-05 -2.9853e-12 0.011443 3.91624e-05 -1.61823e-12 0.0113592 2.79627e-05 -4.5718e-13 0.0113047 1.9948e-05 2.35898e-13 0.0112692 1.41976e-05 6.41869e-13 0.0112459 1.00599e-05 8.86953e-13 0.0112305 7.08165e-06 9.95593e-13 0.0112203 4.95761e-06 1.0817e-12 0.0112135 3.44811e-06 1.12841e-12 0.011209 2.38089e-06 1.15386e-12 0.011206 1.63114e-06 1.16792e-12 0.011204 1.10833e-06 1.17579e-12 0.0112026 7.46716e-07 1.18014e-12 0.0112017 4.98749e-07 1.18269e-12 0.0112011 3.30219e-07 1.18401e-12 0.0112008 2.16717e-07 1.18507e-12 0.0112005 1.40978e-07 1.18514e-12 0.0112003 9.09e-08 1.18642e-12 0.0112002 5.81075e-08 1.18478e-12 0.0112002 3.67963e-08 1.18876e-12 0.0112001 2.3137e-08 1.18143e-12 1.40744e-08 1.19557e-12 0.0168034 4.78966e-08 2.73681e-13 0.016807 2.56169e-07 2.71168e-13 0.01681 8.89475e-07 -1.26332e-13 0.0168209 3.07195e-06 -4.65774e-13 0.016832 1.07233e-05 -2.65653e-12 0.0168876 2.7788e-05 -5.4733e-12 0.0169696 8.56547e-05 -2.15393e-11 0.0174326 0.000218153 -3.60942e-11 0.0186265 0.000679123 -1.21503e-10 0.021477 0.00186226 -2.22445e-10 0.0276882 0.00462913 -4.99777e-10 0.031152 0.0115186 -1.62816e-10 0.0323213 0.0150561 -1.3475e-10 0.0324977 0.0164632 -7.01417e-11 0.0324321 0.0164459 -4.31013e-11 0.0322595 0.0160839 9.38375e-12 0.0319544 0.0155984 1.39027e-11 0.0315118 0.0150389 2.90416e-11 0.0310159 0.0142541 2.97058e-11 0.0305445 0.0133624 2.16219e-11 0.0301228 0.0124672 2.01591e-11 0.029744 0.0116027 1.338e-11 0.029426 0.0107777 1.3593e-11 0.0291801 0.0100133 7.71912e-12 0.0289795 0.0093117 2.98437e-12 0.0288122 0.00866513 2.29609e-12 0.0286714 0.00806923 1.43113e-12 0.0285524 0.00751977 2.03681e-12 0.0284545 0.0070144 3.99834e-12 0.0283688 0.0065502 5.12063e-12 0.0282826 0.00612203 6.8068e-12 0.0281889 0.00572515 9.55445e-12 0.0280804 0.0053561 1.21945e-11 0.0279472 0.00501103 1.40651e-11 0.0277833 0.00468592 1.57818e-11 0.0275933 0.00437825 1.7724e-11 0.0273875 0.00408811 1.98766e-11 0.027175 0.00381529 2.18292e-11 0.0269606 0.00355986 2.34299e-11 0.0267596 0.00332041 2.46774e-11 0.0265621 0.00309758 2.49788e-11 0.0263707 0.00288713 2.55577e-11 0.0261875 0.00268997 2.57626e-11 0.0259926 0.00250325 2.50123e-11 0.0257985 0.00232535 2.58086e-11 0.0256073 0.00215718 2.56192e-11 0.0254066 0.00199777 2.3802e-11 0.0252109 0.00184721 2.6169e-11 0.0250317 0.00170578 2.3835e-11 0.0248703 0.00157515 2.18323e-11 0.0247413 0.0014556 2.23924e-11 0.0246458 0.0013463 1.89486e-11 0.0245765 0.00124715 1.54389e-11 0.024522 0.00115724 1.1392e-11 0.0244716 0.00107583 7.14373e-12 0.0244177 0.00100257 2.45568e-12 0.0243563 0.00093754 -1.17521e-12 0.0242858 0.000881038 -5.60388e-12 0.0242073 0.000833526 -9.01917e-12 0.0241249 0.000795362 -1.03446e-11 0.0240463 0.000767109 -1.30884e-11 0.0239764 0.000748611 -1.17763e-11 0.0239137 0.000740024 -1.17745e-11 0.0238518 0.000742536 -1.5042e-11 0.0237862 0.000755356 -1.36192e-11 0.0236948 0.000776814 -2.18547e-11 0.0234695 0.000800032 -3.93373e-11 0.0228336 0.000809944 -7.75172e-11 0.021828 0.000785309 -9.81588e-11 0.02041 0.000725263 -1.11399e-10 0.0186918 0.000629838 -1.10979e-10 0.0169185 0.000511219 -9.49287e-11 0.0153315 0.000391672 -7.08149e-11 0.0140604 0.000286817 -4.7766e-11 0.0131207 0.000203999 -3.02647e-11 0.0124628 0.000142854 -1.85108e-11 0.0120194 9.94004e-05 -1.07467e-11 0.0117285 6.91733e-05 -5.85876e-12 0.0115404 4.82899e-05 -2.49983e-12 0.0114196 3.38134e-05 -1.31436e-12 0.011342 2.37299e-05 -2.72204e-13 0.0112922 1.66704e-05 3.44924e-13 0.01126 1.17064e-05 7.01663e-13 0.0112392 8.20391e-06 9.20007e-13 0.0112257 5.7195e-06 1.03345e-12 0.0112169 3.96189e-06 1.08733e-12 0.0112111 2.73147e-06 1.13452e-12 0.0112073 1.87084e-06 1.15761e-12 0.0112048 1.27232e-06 1.17008e-12 0.0112031 8.58692e-07 1.17704e-12 0.0112021 5.74918e-07 1.18088e-12 0.0112013 3.81766e-07 1.18316e-12 0.0112009 2.51385e-07 1.1843e-12 0.0112006 1.64131e-07 1.18528e-12 0.0112004 1.06252e-07 1.18528e-12 0.0112003 6.81946e-08 1.18653e-12 0.0112002 4.34034e-08 1.18486e-12 0.0112001 2.73708e-08 1.18885e-12 0.0112001 1.71451e-08 1.1815e-12 1.03911e-08 1.19564e-12 0.0168034 4.16483e-08 3.53943e-13 0.0168051 2.86566e-08 2.42024e-13 0.0168089 1.35901e-07 3.4651e-13 0.0168142 4.66242e-07 1.46393e-13 0.0168265 1.87831e-06 -3.44484e-14 0.0168356 6.61855e-06 -2.58266e-12 0.0168894 2.02284e-05 -2.22197e-12 0.0169707 6.23258e-05 -2.19184e-11 0.0172994 0.000172372 -2.44654e-11 0.0183086 0.000515315 -1.13723e-10 0.0207234 0.00144113 -1.93386e-10 0.026997 0.00377393 -4.0872e-10 0.0306968 0.00879241 -5.07072e-10 0.0319896 0.0139987 -2.58189e-10 0.0324683 0.0157517 -5.97459e-11 0.0325286 0.0160532 -1.18884e-11 0.0324893 0.0158096 -1.14644e-11 0.0324585 0.015368 -6.65473e-12 0.0322085 0.014931 2.72311e-12 0.0318471 0.0143157 1.2957e-11 0.0314723 0.0135339 1.12037e-11 0.03111 0.0126985 1.10036e-11 0.0307778 0.0118617 9.17145e-12 0.0305038 0.0110603 6.83676e-12 0.0302757 0.0103139 2.03958e-12 0.0300835 0.00962424 1.59426e-12 0.0299196 0.00898965 2.46244e-12 0.0297774 0.0084054 2.75653e-12 0.029651 0.00786772 4.0326e-12 0.0295351 0.00737156 6.82211e-12 0.0294198 0.00691448 9.18703e-12 0.0292947 0.00649054 1.06796e-11 0.0291554 0.00609574 1.28473e-11 0.0289944 0.00572605 1.56076e-11 0.0288035 0.00537729 1.76651e-11 0.0285839 0.00504615 1.83212e-11 0.0283463 0.00473209 1.79681e-11 0.0281027 0.0044356 1.79015e-11 0.0278615 0.00415702 1.79557e-11 0.0276249 0.00389553 1.89735e-11 0.027402 0.00364952 1.93048e-11 0.0271807 0.00341901 1.9666e-11 0.0269668 0.00319959 1.98933e-11 0.0267533 0.00299312 1.88325e-11 0.0265264 0.00279547 1.84402e-11 0.0263059 0.00260689 1.82789e-11 0.0260842 0.00242828 1.56868e-11 0.0258641 0.00225911 1.62289e-11 0.0256625 0.00209969 1.52917e-11 0.0254783 0.001951 1.01341e-11 0.025323 0.00181423 1.2547e-11 0.0252002 0.00168807 7.8134e-12 0.0251026 0.00157259 3.96575e-12 0.0250201 0.00146686 -1.69888e-13 0.0249434 0.00137012 -4.37461e-12 0.0248661 0.00128205 -8.6483e-12 0.0247853 0.00120277 -1.18912e-11 0.0246998 0.00113269 -1.5741e-11 0.024609 0.00107223 -1.74595e-11 0.024515 0.00102186 -1.92524e-11 0.0244245 0.000982001 -1.97417e-11 0.0243451 0.000953057 -1.76947e-11 0.0242755 0.000934579 -1.59105e-11 0.0242048 0.000926188 -1.92526e-11 0.0241191 0.000928345 -1.50033e-11 0.0239867 0.000937846 -2.74324e-11 0.023695 0.000945704 -4.71302e-11 0.0229877 0.000932116 -8.44777e-11 0.0219028 0.000883299 -1.01119e-10 0.0203925 0.000795319 -1.1316e-10 0.0185969 0.000668444 -1.10243e-10 0.0167814 0.000526071 -9.20011e-11 0.0151875 0.000390001 -6.70801e-11 0.0139319 0.000276597 -4.44034e-11 0.0130163 0.000190902 -2.77333e-11 0.0123828 0.000129986 -1.67171e-11 0.0119603 8.81437e-05 -9.53749e-12 0.0116857 5.99377e-05 -5.10633e-12 0.0115097 4.09796e-05 -2.52206e-12 0.0113976 2.81716e-05 -1.01995e-12 0.0113264 1.9452e-05 -9.34367e-14 0.011281 1.34673e-05 4.49536e-13 0.011252 9.33178e-06 7.61958e-13 0.0112335 6.46395e-06 9.45017e-13 0.0112216 4.46983e-06 1.0537e-12 0.011214 3.07371e-06 1.10685e-12 0.0112091 2.0988e-06 1.14103e-12 0.0112059 1.42682e-06 1.16105e-12 0.0112038 9.6376e-07 1.17206e-12 0.0112025 6.46298e-07 1.1782e-12 0.0112016 4.30199e-07 1.18156e-12 0.011201 2.84131e-07 1.18359e-12 0.0112007 1.8615e-07 1.18456e-12 0.0112004 1.2096e-07 1.18548e-12 0.0112003 7.79528e-08 1.1854e-12 0.0112002 4.98188e-08 1.18662e-12 0.0112001 3.15801e-08 1.18492e-12 0.0112001 1.9838e-08 1.18894e-12 0.0112001 1.23831e-08 1.18156e-12 7.47955e-09 1.19572e-12 0.0168034 1.09172e-08 2.92989e-13 0.0168051 8.64461e-09 3.19663e-13 0.016808 1.52248e-08 3.64884e-13 0.0168122 9.05328e-08 2.49444e-13 0.0168199 1.55997e-07 3.58048e-13 0.0168317 1.05584e-06 2.08667e-13 0.0168548 3.06265e-06 -1.40208e-12 0.0168814 1.39489e-05 -3.25187e-12 0.01699 3.78167e-05 -1.19472e-11 0.0172207 0.000130285 -2.58968e-11 0.0180744 0.000347186 -6.94913e-11 0.0200514 0.00107241 -1.64731e-10 0.0245837 0.00272867 -3.87639e-10 0.029189 0.00619418 -6.84118e-10 0.0315443 0.0124654 -1.89877e-10 0.0324943 0.0148144 -5.34203e-11 0.0327335 0.0156425 -3.44222e-11 0.0327984 0.0155615 -2.08371e-11 0.0329332 0.0151521 -1.90778e-11 0.0329184 0.0147271 -1.19241e-11 0.0326915 0.0142459 -9.49439e-12 0.0324307 0.0136269 -3.29528e-13 0.0321407 0.0129004 3.81153e-12 0.0318715 0.0121272 5.97765e-12 0.0316302 0.0113746 9.8101e-13 0.031418 0.0106606 2.41035e-12 0.0312315 0.00999439 2.7993e-12 0.0310617 0.00937658 4.29255e-12 0.0309005 0.00880279 6.95068e-12 0.0307463 0.00827184 8.12143e-12 0.0305956 0.0077814 1.02684e-11 0.0304384 0.00732749 1.24047e-11 0.030266 0.00690396 1.38195e-11 0.0300721 0.00650558 1.49547e-11 0.0298503 0.00612883 1.61057e-11 0.0295988 0.0057702 1.72192e-11 0.0293268 0.00542838 1.79728e-11 0.0290481 0.00510413 1.84147e-11 0.0287739 0.00479824 1.78294e-11 0.0285071 0.00451062 1.70823e-11 0.0282491 0.00423937 1.58409e-11 0.0280019 0.00398329 1.43657e-11 0.0277546 0.003741 1.34354e-11 0.027514 0.00350963 1.15334e-11 0.0272659 0.0032904 1.01637e-11 0.0270101 0.00307927 8.94528e-12 0.0267645 0.00287841 6.49077e-12 0.0265219 0.00268831 4.30876e-12 0.0262964 0.00250899 4.79863e-12 0.0260906 0.0023404 -2.94112e-12 0.0259084 0.00218461 -5.29297e-13 0.0257584 0.0020401 -4.81773e-12 0.0256342 0.00190706 -9.44084e-12 0.0255261 0.00178461 -1.36547e-11 0.025425 0.00167192 -1.77964e-11 0.0253257 0.00156856 -2.15601e-11 0.0252256 0.00147463 -2.4994e-11 0.0251239 0.0013906 -2.93713e-11 0.0250203 0.00131691 -3.09971e-11 0.0249159 0.00125394 -3.03455e-11 0.0248148 0.00120197 -2.80515e-11 0.0247242 0.00116135 -2.50475e-11 0.0246452 0.00113176 -2.43055e-11 0.0245638 0.00111242 -2.29932e-11 0.0244539 0.00110097 -2.23931e-11 0.0242724 0.00109331 -3.40913e-11 0.0238525 0.00107813 -6.60465e-11 0.023107 0.00103731 -8.66805e-11 0.021926 0.000959947 -1.0596e-10 0.0203124 0.000837748 -1.16029e-10 0.0184423 0.000682209 -1.09629e-10 0.0165986 0.000518968 -8.87403e-11 0.015014 0.000371964 -6.30127e-11 0.0137873 0.000255484 -4.08849e-11 0.0129049 0.000171135 -2.50923e-11 0.0123012 0.000113391 -1.49663e-11 0.0119022 7.49849e-05 -8.2867e-12 0.0116451 4.9861e-05 -4.42844e-12 0.0114814 3.34162e-05 -2.12433e-12 0.0113779 2.25709e-05 -7.44716e-13 0.0113125 1.53465e-05 6.94676e-14 0.0112713 1.04845e-05 5.45268e-13 0.0112453 7.18186e-06 8.19935e-13 0.0112288 4.92123e-06 9.77143e-13 0.0112183 3.36688e-06 1.06596e-12 0.0112117 2.29841e-06 1.11941e-12 0.0112075 1.56335e-06 1.14942e-12 0.0112048 1.05552e-06 1.16322e-12 0.011203 7.07619e-07 1.17368e-12 0.011202 4.71703e-07 1.17916e-12 0.0112013 3.12402e-07 1.18215e-12 0.0112008 2.05323e-07 1.18398e-12 0.0112005 1.33886e-07 1.18479e-12 0.0112003 8.66167e-08 1.18565e-12 0.0112002 5.55928e-08 1.18549e-12 0.0112002 3.53925e-08 1.18671e-12 0.0112001 2.23536e-08 1.18496e-12 0.0112001 1.39928e-08 1.18903e-12 0.0112001 8.70692e-09 1.1816e-12 5.24307e-09 1.1958e-12 0.0168034 2.05185e-09 2.86777e-13 0.016805 8.10159e-10 3.4674e-13 0.016808 1.76405e-09 3.10691e-13 0.0168118 1.53457e-08 3.56413e-13 0.0168182 1.01167e-08 3.14799e-13 0.0168267 1.34175e-07 3.80595e-13 0.0168413 3.59419e-07 1.22468e-13 0.0168691 1.76253e-06 1.87074e-13 0.0169038 6.27237e-06 -2.21988e-12 0.0170114 2.3323e-05 -5.34367e-12 0.017162 7.96633e-05 -2.20775e-11 0.0178206 0.000228744 -4.61372e-11 0.0192866 0.000716514 -1.14486e-10 0.0225871 0.00189074 -2.29211e-10 0.0280422 0.00452409 -4.61099e-10 0.0312206 0.0105432 -1.56768e-10 0.0324721 0.0137687 -1.44319e-10 0.0330177 0.0150371 -5.38716e-11 0.0332036 0.0151722 -3.17092e-11 0.0332894 0.0148821 -3.28024e-11 0.0334443 0.0144407 -2.93331e-11 0.0334849 0.0140376 -2.19887e-11 0.0333466 0.0135854 -1.32237e-11 0.0331631 0.0130061 -3.62615e-12 0.0329674 0.0123439 -2.5223e-12 0.0327679 0.011669 6.05615e-13 0.0325732 0.01101 4.06408e-12 0.0323779 0.0103808 6.53506e-12 0.0321844 0.00978574 5.42219e-12 0.0319956 0.00923041 7.90236e-12 0.0318108 0.00871192 1.00241e-11 0.0316232 0.00822998 1.17979e-11 0.0314179 0.00777726 1.26063e-11 0.0311877 0.00734854 1.34715e-11 0.0309305 0.00694029 1.42795e-11 0.0306444 0.00655057 1.44733e-11 0.0303357 0.00617727 1.3908e-11 0.0300186 0.00582105 1.28478e-11 0.0297073 0.00548343 1.11126e-11 0.0294075 0.00516516 9.33105e-12 0.0291172 0.00486454 7.54942e-12 0.0288367 0.0045796 5.71478e-12 0.0285629 0.00430915 4.41224e-12 0.0282882 0.00405138 2.30892e-12 0.0280166 0.00380456 4.71329e-13 0.0277362 0.00356928 -1.50015e-12 0.0274578 0.00334293 -4.27784e-12 0.0271943 0.00312866 -7.08702e-12 0.0269443 0.00292645 -9.24308e-12 0.0267172 0.00273619 -1.30707e-11 0.0265101 0.00255836 -1.87328e-11 0.0263329 0.00239417 -1.69292e-11 0.0261835 0.00224172 -2.38966e-11 0.0260523 0.00210135 -2.83756e-11 0.025929 0.00197188 -3.52183e-11 0.0258077 0.00185264 -4.08035e-11 0.0256872 0.00174355 -4.49209e-11 0.0255675 0.00164504 -4.71233e-11 0.0254484 0.00155758 -4.72043e-11 0.0253307 0.0014814 -4.46024e-11 0.0252174 0.0014165 -3.89076e-11 0.0251127 0.00136278 -3.50994e-11 0.025017 0.00131975 -3.30438e-11 0.0249159 0.00128584 -3.63718e-11 0.0247716 0.00125764 -4.32427e-11 0.0245123 0.00122818 -4.31269e-11 0.024024 0.00118472 -7.50264e-11 0.0231765 0.00111351 -9.52286e-11 0.0218761 0.00100176 -1.1289e-10 0.0201565 0.000843985 -1.19105e-10 0.0182261 0.000664701 -1.0809e-10 0.0163747 0.000488019 -8.44884e-11 0.0148185 0.000338052 -5.83968e-11 0.0136339 0.000224958 -3.71282e-11 0.0127925 0.000146368 -2.24448e-11 0.0122221 9.4438e-05 -1.31649e-11 0.011848 6.09763e-05 -7.16916e-12 0.0116082 3.96856e-05 -3.73629e-12 0.0114564 2.60982e-05 -1.70137e-12 0.0113609 1.73397e-05 -4.918e-13 0.0113009 1.16231e-05 2.1822e-13 0.0112633 7.84369e-06 6.30719e-13 0.0112397 5.31582e-06 8.68377e-13 0.011225 3.60932e-06 1.00485e-12 0.0112157 2.45024e-06 1.08326e-12 0.0112099 1.65999e-06 1.12773e-12 0.0112062 1.12014e-06 1.1524e-12 0.0112039 7.52397e-07 1.16711e-12 0.0112025 5.03008e-07 1.17614e-12 0.0112016 3.33873e-07 1.17978e-12 0.011201 2.20011e-07 1.18259e-12 0.0112006 1.43855e-07 1.18428e-12 0.0112004 9.33664e-08 1.18498e-12 0.0112003 6.01823e-08 1.1858e-12 0.0112002 3.84906e-08 1.18557e-12 0.0112001 2.44221e-08 1.18679e-12 0.0112001 1.53743e-08 1.18498e-12 0.0112001 9.59306e-09 1.18911e-12 0.0112001 5.95217e-09 1.18163e-12 3.57468e-09 1.19591e-12 0.0168033 3.99252e-10 3.06192e-13 0.0168051 2.11789e-10 3.23732e-13 0.0168078 -5.15663e-10 3.49197e-13 0.016812 6.07305e-09 3.03037e-13 0.0168177 -9.39313e-09 4.35316e-13 0.0168265 3.96385e-08 2.30305e-13 0.0168386 1.12219e-08 5.26034e-13 0.016857 2.46397e-07 9.85863e-14 0.0168856 6.84068e-07 3.45188e-13 0.016932 2.92288e-06 -6.73021e-13 0.0170252 1.20335e-05 -2.66448e-12 0.0171625 4.11623e-05 -1.2766e-11 0.0176427 0.00013656 -2.83501e-11 0.0186595 0.000435517 -7.92138e-11 0.0210481 0.00123078 -1.61538e-10 0.0265003 0.00310865 -3.06396e-10 0.0303335 0.00665005 -5.09755e-10 0.0322221 0.0121797 -1.82574e-10 0.0331405 0.0138563 -9.14527e-11 0.0335262 0.0145552 -5.23162e-11 0.0337116 0.0145119 -3.6562e-11 0.0338883 0.0141548 -3.56518e-11 0.0340959 0.013747 -3.19594e-11 0.034137 0.0133802 -2.65773e-11 0.03407 0.0129447 -1.69287e-11 0.0339589 0.0124186 -1.27678e-11 0.0338054 0.0118529 -5.36753e-12 0.0336278 0.011276 -1.85043e-12 0.0334351 0.0107064 9.69009e-14 0.0332365 0.0101568 1.91851e-12 0.0330338 0.00963385 4.53552e-12 0.0328219 0.00913849 6.55219e-12 0.0325885 0.00866598 7.86112e-12 0.0323259 0.00821289 8.47403e-12 0.0320336 0.00777589 8.58269e-12 0.0317137 0.00735565 8.09798e-12 0.0313695 0.00695003 7.39844e-12 0.0310152 0.00656003 6.48272e-12 0.0306668 0.00618806 4.89036e-12 0.0303327 0.00583545 2.8874e-12 0.0300119 0.00550142 6.62095e-13 0.029701 0.00518389 -1.61548e-12 0.0293983 0.00488135 -3.63961e-12 0.0290985 0.00459231 -5.96609e-12 0.0287968 0.00431548 -8.57541e-12 0.0284977 0.00404989 -1.12643e-11 0.0281952 0.00379647 -1.46617e-11 0.0279046 0.00355385 -1.82867e-11 0.0276348 0.00332535 -2.20053e-11 0.027384 0.00311024 -2.5616e-11 0.0271567 0.00290865 -3.32282e-11 0.0269541 0.00272176 -3.11694e-11 0.0267793 0.00254916 -3.85631e-11 0.0266248 0.00238938 -4.78071e-11 0.0264801 0.00224257 -5.46934e-11 0.0263376 0.00210745 -5.97207e-11 0.0261947 0.00198343 -6.32361e-11 0.0260518 0.00187066 -6.47534e-11 0.0259099 0.00176946 -6.36724e-11 0.0257702 0.00167991 -6.0028e-11 0.0256346 0.00160164 -5.20061e-11 0.0255064 0.00153397 -4.75548e-11 0.0253826 0.00147573 -4.56821e-11 0.0252454 0.00142451 -4.82992e-11 0.0250506 0.00137559 -6.74226e-11 0.0247175 0.00132046 -5.67968e-11 0.0241304 0.00124705 -8.51873e-11 0.0231614 0.00114201 -1.06667e-10 0.021735 0.000990223 -1.20736e-10 0.0199215 0.000807759 -1.21076e-10 0.0179552 0.000613198 -1.0521e-10 0.0161215 0.000434342 -7.93319e-11 0.0146128 0.000290956 -5.33934e-11 0.0134811 0.000187764 -3.32869e-11 0.0126854 0.000118848 -1.98606e-11 0.0121496 7.47765e-05 -1.1452e-11 0.0117999 4.72024e-05 -6.13187e-12 0.0115765 3.01098e-05 -3.10805e-12 0.0114354 1.9456e-05 -1.32233e-12 0.0113469 1.27323e-05 -2.68071e-13 0.0112915 8.42509e-06 3.47795e-13 0.011257 5.6234e-06 7.04691e-13 0.0112354 3.77557e-06 9.10383e-13 0.011222 2.54309e-06 1.02855e-12 0.0112137 1.71438e-06 1.09625e-12 0.0112085 1.15426e-06 1.13489e-12 0.0112053 7.74799e-07 1.15697e-12 0.0112033 5.17881e-07 1.16963e-12 0.011202 3.44445e-07 1.17677e-12 0.0112013 2.2768e-07 1.18077e-12 0.0112008 1.49411e-07 1.18315e-12 0.0112005 9.74688e-08 1.18442e-12 0.0112003 6.3129e-08 1.18524e-12 0.0112002 4.05363e-08 1.18593e-12 0.0112001 2.58409e-08 1.18566e-12 0.0112001 1.63446e-08 1.18679e-12 0.0112001 1.0255e-08 1.18503e-12 0.0112001 6.37865e-09 1.18921e-12 0.0112001 3.94867e-09 1.18166e-12 2.3662e-09 1.19601e-12 0.0168033 1.01221e-10 3.10632e-13 0.0168051 -4.06626e-11 3.24407e-13 0.0168078 -1.4758e-10 3.42737e-13 0.0168119 1.29986e-09 3.29822e-13 0.0168178 -2.84631e-09 3.92817e-13 0.0168263 8.55924e-09 3.1109e-13 0.0168384 -6.90644e-09 4.55571e-13 0.0168558 3.79829e-08 2.62174e-13 0.0168802 7.08516e-08 4.65218e-13 0.0169149 3.53718e-07 1.48634e-13 0.0169686 1.3058e-06 -5.00664e-15 0.017051 5.33707e-06 -1.06113e-12 0.0172283 1.89963e-05 -5.49366e-12 0.01756 7.07527e-05 -1.43713e-11 0.0182908 0.000233213 -5.30728e-11 0.0201815 0.000715994 -9.45791e-11 0.023545 0.00186869 -2.60073e-10 0.0285591 0.00420553 -4.46118e-10 0.0316056 0.00892866 -2.28484e-10 0.0329697 0.0123919 -1.33511e-10 0.0337396 0.0134625 -7.46294e-11 0.0341017 0.0139011 -4.95314e-11 0.0343028 0.0137989 -3.9032e-11 0.0345325 0.0134317 -3.86666e-11 0.0346974 0.0130685 -3.72287e-11 0.0347434 0.0126995 -3.33801e-11 0.034712 0.0122869 -2.65597e-11 0.0346219 0.0118276 -1.84036e-11 0.0344878 0.0113463 -1.51163e-11 0.0343228 0.0108561 -1.20387e-11 0.034138 0.0103688 -1.00072e-11 0.0339299 0.00989218 -9.25793e-12 0.0336915 0.00942381 -5.81919e-12 0.0334162 0.00896522 -5.22814e-12 0.0331068 0.00851362 -5.2848e-12 0.0327666 0.00807249 -5.92297e-12 0.0324011 0.00764111 -5.8101e-12 0.0320244 0.00722173 -5.57786e-12 0.0316519 0.0068171 -6.00885e-12 0.031294 0.00642987 -7.28671e-12 0.030952 0.00606063 -9.53012e-12 0.0306224 0.00570851 -1.22361e-11 0.0302998 0.00537119 -1.48762e-11 0.029982 0.00504765 -1.76108e-11 0.029664 0.00473696 -2.05252e-11 0.0293454 0.00443903 -2.38635e-11 0.0290323 0.00415361 -2.76666e-11 0.028722 0.0038821 -3.24647e-11 0.0284299 0.00362404 -3.69837e-11 0.0281618 0.00338263 -4.16686e-11 0.0279128 0.00315656 -4.65147e-11 0.0276892 0.00294747 -5.73026e-11 0.0274879 0.00275463 -5.92773e-11 0.0273048 0.00257831 -7.12414e-11 0.0271327 0.00241651 -7.66975e-11 0.0269629 0.00226818 -8.15988e-11 0.0267911 0.00213295 -8.43492e-11 0.0266157 0.00200986 -8.50555e-11 0.0264368 0.00189865 -8.39407e-11 0.0262565 0.00179909 -7.79616e-11 0.0260783 0.00171058 -6.79733e-11 0.0259054 0.00163192 -6.54253e-11 0.0257335 0.00156086 -6.44345e-11 0.02554 0.00149392 -6.59706e-11 0.0252741 0.0014248 -9.07853e-11 0.0248491 0.00134387 -7.88261e-11 0.0241453 0.00123902 -9.0026e-11 0.0230433 0.00109624 -1.20314e-10 0.0214991 0.000919558 -1.28503e-10 0.0196182 0.000723111 -1.22041e-10 0.0176476 0.000529073 -1.01218e-10 0.0158577 0.000361963 -7.36437e-11 0.0144113 0.00023492 -4.83059e-11 0.0133388 0.000147354 -2.95991e-11 0.0125896 9.09246e-05 -1.74191e-11 0.012087 5.59113e-05 -9.9009e-12 0.0117596 3.45694e-05 -5.20404e-12 0.0115506 2.16521e-05 -2.55139e-12 0.0114187 1.37713e-05 -9.93966e-13 0.0113359 8.89149e-06 -7.77672e-14 0.0112843 5.81717e-06 4.56501e-13 0.0112522 3.84596e-06 7.6612e-13 0.0112322 2.56167e-06 9.44835e-13 0.0112198 1.71385e-06 1.04774e-12 0.0112122 1.14866e-06 1.10688e-12 0.0112075 7.6946e-07 1.14081e-12 0.0112046 5.14215e-07 1.16026e-12 0.0112028 3.4235e-07 1.17142e-12 0.0112017 2.26839e-07 1.17779e-12 0.0112011 1.49428e-07 1.18143e-12 0.0112007 9.77899e-08 1.18349e-12 0.0112004 6.35721e-08 1.18476e-12 0.0112003 4.10453e-08 1.18528e-12 0.0112002 2.63054e-08 1.18599e-12 0.0112001 1.67208e-08 1.18567e-12 0.0112001 1.05482e-08 1.18682e-12 0.0112001 6.60874e-09 1.18522e-12 0.0112001 4.10735e-09 1.18931e-12 0.0112001 2.53212e-09 1.18161e-12 1.51665e-09 1.19607e-12 0.0168033 2.43884e-11 3.12411e-13 0.0168051 -2.45048e-11 3.24961e-13 0.0168078 -9.0116e-12 3.396e-13 0.0168119 2.50805e-10 3.43619e-13 0.0168178 -6.70903e-10 3.74653e-13 0.0168262 1.82277e-09 3.56794e-13 0.0168384 -2.14486e-09 4.18482e-13 0.0168556 5.81748e-09 3.60042e-13 0.0168797 8.4789e-09 4.39177e-13 0.0169127 3.30901e-08 3.59081e-13 0.0169587 1.73233e-07 3.18746e-13 0.0170225 5.73039e-07 2.54626e-13 0.0171157 2.34639e-06 -6.3688e-13 0.0172656 8.63651e-06 -1.60026e-12 0.0175494 3.24857e-05 -7.76675e-12 0.0181169 0.000112322 -2.48495e-11 0.0193386 0.000365467 -6.46332e-11 0.0218084 0.00103459 -1.30248e-10 0.025838 0.00243719 -2.94873e-10 0.0298651 0.0048575 -4.13694e-10 0.032353 0.00921843 -1.80813e-10 0.033544 0.0118941 -1.09463e-10 0.0342326 0.0126993 -7.70799e-11 0.0346052 0.0130076 -5.46344e-11 0.034878 0.0129639 -4.38873e-11 0.0350633 0.0127019 -4.5565e-11 0.0351849 0.0123553 -4.56809e-11 0.0351938 0.0119758 -4.10201e-11 0.0351517 0.0115646 -3.69793e-11 0.0350631 0.0111378 -3.54466e-11 0.0349441 0.0106972 -3.15846e-11 0.0347884 0.0102557 -3.23526e-11 0.0345922 0.00980967 -3.08329e-11 0.034352 0.0093625 -3.01988e-11 0.0340694 0.00891004 -3.27043e-11 0.0337535 0.00845701 -3.2565e-11 0.0334094 0.00800739 -3.01665e-11 0.0330505 0.00756356 -2.90328e-11 0.0326921 0.00712991 -2.87261e-11 0.032345 0.00671012 -2.96337e-11 0.0320152 0.00630645 -3.16154e-11 0.0316969 0.00591994 -3.43762e-11 0.0313828 0.00554891 -3.69866e-11 0.0310676 0.00519153 -3.97962e-11 0.0307527 0.00484821 -4.29889e-11 0.0304353 0.00451959 -4.70203e-11 0.0301171 0.00420571 -5.16823e-11 0.0298045 0.00390756 -5.73777e-11 0.0294973 0.0036267 -6.27749e-11 0.0292052 0.00336508 -6.7515e-11 0.0289351 0.00312345 -7.13917e-11 0.0286807 0.00290234 -7.83349e-11 0.0284434 0.00270209 -8.19108e-11 0.0282179 0.00252136 -9.34819e-11 0.0279952 0.00235837 -1.01042e-10 0.0277728 0.00221226 -1.02309e-10 0.0275472 0.00208117 -1.10415e-10 0.0273158 0.00196359 -1.0783e-10 0.0270765 0.00185747 -1.04642e-10 0.0268297 0.00176221 -9.9002e-11 0.0265808 0.00167747 -9.03553e-11 0.0263346 0.00160022 -8.85452e-11 0.0260858 0.00152638 -8.92906e-11 0.0258075 0.00144999 -9.30834e-11 0.0254414 0.00136318 -1.1579e-10 0.0248946 0.00125727 -1.18509e-10 0.024053 0.00112454 -1.12197e-10 0.0228212 0.000960662 -1.37009e-10 0.0211861 0.000778682 -1.36181e-10 0.0192739 0.000590667 -1.21966e-10 0.0173318 0.000417622 -9.65204e-11 0.0156057 0.000276908 -6.78585e-11 0.0142293 0.000174764 -4.35e-11 0.0132159 0.000106941 -2.62542e-11 0.01251 6.45385e-05 -1.52299e-11 0.0120366 3.89128e-05 -8.62025e-12 0.011728 2.36267e-05 -4.39521e-12 0.0115308 1.4567e-05 -2.08615e-12 0.0114061 9.14043e-06 -7.24552e-13 0.0113279 5.83465e-06 7.61236e-14 0.011279 3.78125e-06 5.43327e-13 0.0112487 2.48044e-06 8.14655e-13 0.0112299 1.64149e-06 9.71783e-13 0.0112183 1.0923e-06 1.06263e-12 0.0112112 7.28741e-07 1.11508e-12 0.0112068 4.86244e-07 1.14533e-12 0.0112041 3.23829e-07 1.16277e-12 0.0112025 2.14928e-07 1.17281e-12 0.0112015 1.41996e-07 1.17856e-12 0.0112009 9.3296e-08 1.18189e-12 0.0112006 6.09156e-08 1.18374e-12 0.0112004 3.95101e-08 1.18493e-12 0.0112002 2.54496e-08 1.18537e-12 0.0112002 1.62744e-08 1.18609e-12 0.0112001 1.0328e-08 1.18567e-12 0.0112001 6.50369e-09 1.18697e-12 0.0112001 4.06498e-09 1.18502e-12 0.0112001 2.52251e-09 1.1893e-12 0.0112 1.54851e-09 1.1819e-12 9.29814e-10 1.19617e-12 0.0168033 6.61714e-12 3.13326e-13 0.0168051 -7.61461e-12 3.24925e-13 0.0168078 4.51996e-12 3.39749e-13 0.0168119 4.83742e-11 3.48094e-13 0.0168178 -1.43424e-10 3.70331e-13 0.0168262 3.94501e-10 3.74732e-13 0.0168384 -5.69112e-10 4.05879e-13 0.0168556 1.11153e-09 4.00646e-13 0.0168796 7.13603e-10 4.38259e-13 0.0169125 3.10639e-09 4.25301e-13 0.0169576 2.28466e-08 4.24304e-13 0.0170187 5.82254e-08 4.09696e-13 0.0171006 2.95778e-07 2.04772e-13 0.0172117 9.98679e-07 4.69901e-14 0.0173685 4.06782e-06 -1.17594e-12 0.0176119 1.43548e-05 -3.85779e-12 0.0180554 5.14682e-05 -1.16858e-11 0.0188861 0.000173047 -3.4602e-11 0.0204373 0.000501381 -8.476e-11 0.0230152 0.00125316 -1.29667e-10 0.026707 0.00260606 -3.15945e-10 0.0302527 0.00461974 -3.24854e-10 0.0325619 0.00772325 -1.99065e-10 0.0337782 0.0105199 -1.12807e-10 0.0345001 0.0115321 -8.82484e-11 0.0349607 0.0117717 -7.56812e-11 0.0352978 0.0117503 -6.29331e-11 0.0355394 0.0114669 -6.53667e-11 0.0356973 0.0111463 -6.16255e-11 0.0357145 0.0108253 -5.43014e-11 0.0356568 0.0104524 -5.36817e-11 0.0355847 0.0100305 -5.69433e-11 0.0354814 0.00956437 -5.8027e-11 0.0353421 0.00907229 -5.73829e-11 0.0351631 0.00857284 -5.91461e-11 0.0349458 0.00808209 -6.24182e-11 0.0346964 0.00759431 -6.03669e-11 0.0344258 0.0071167 -6.10436e-11 0.0341459 0.00665136 -6.06221e-11 0.0338655 0.00620308 -6.07807e-11 0.0335914 0.00577129 -6.24055e-11 0.0333245 0.00536194 -6.50039e-11 0.0330504 0.00496862 -6.7908e-11 0.0327668 0.0045846 -7.21429e-11 0.032472 0.00422041 -7.75126e-11 0.0321676 0.00387744 -8.3581e-11 0.0318514 0.00355867 -9.02147e-11 0.0315204 0.00326284 -9.72832e-11 0.031188 0.00299263 -1.06255e-10 0.0308551 0.00274857 -1.13556e-10 0.0305225 0.00253125 -1.17845e-10 0.0302025 0.00233947 -1.22678e-10 0.0298943 0.00217295 -1.26486e-10 0.0295831 0.00202977 -1.30307e-10 0.0292647 0.00190649 -1.31564e-10 0.0289433 0.00180032 -1.34469e-10 0.0286205 0.00170876 -1.33133e-10 0.0282914 0.00162921 -1.34971e-10 0.0279529 0.00155917 -1.29233e-10 0.0276044 0.00149457 -1.20015e-10 0.0272455 0.00143244 -1.1889e-10 0.0268786 0.00136996 -1.19994e-10 0.0264971 0.00130058 -1.22718e-10 0.026073 0.00121928 -1.29068e-10 0.0255503 0.0011216 -1.48718e-10 0.0248464 0.0010056 -1.78423e-10 0.023865 0.000870695 -1.26248e-10 0.0225293 0.00072251 -1.53663e-10 0.0208413 0.000567293 -1.42985e-10 0.0189348 0.00041738 -1.21061e-10 0.0170448 0.000286915 -9.17935e-11 0.0153902 0.000185525 -6.26178e-11 0.014081 0.000114522 -3.937e-11 0.0131195 6.87264e-05 -2.34655e-11 0.0124495 4.07656e-05 -1.3484e-11 0.0119993 2.42004e-05 -7.55491e-12 0.0117051 1.44858e-05 -3.78033e-12 0.0115167 8.82086e-06 -1.72819e-12 0.0113973 5.47676e-06 -5.19732e-13 0.0113223 3.46535e-06 1.91708e-13 0.0112755 2.22958e-06 6.0787e-13 0.0112464 1.45397e-06 8.50409e-13 0.0112284 9.57581e-07 9.91477e-13 0.0112173 6.3469e-07 1.07343e-12 0.0112105 4.22039e-07 1.121e-12 0.0112063 2.80806e-07 1.14858e-12 0.0112038 1.86552e-07 1.16455e-12 0.0112023 1.23543e-07 1.17379e-12 0.0112014 8.14564e-08 1.17912e-12 0.0112008 5.34203e-08 1.18221e-12 0.0112005 3.4821e-08 1.18393e-12 0.0112003 2.25483e-08 1.18505e-12 0.0112002 1.45004e-08 1.18542e-12 0.0112001 9.25832e-09 1.18618e-12 0.0112001 5.86767e-09 1.18561e-12 0.0112001 3.69064e-09 1.18715e-12 0.0112001 2.30349e-09 1.18492e-12 0.0112001 1.4276e-09 1.18937e-12 0.0112 8.74603e-10 1.182e-12 5.24556e-10 1.19622e-12 0.0168033 2.62451e-12 3.13863e-13 0.0168051 -8.78476e-13 3.24772e-13 0.0168078 4.44754e-12 3.40621e-13 0.0168119 9.71505e-12 3.4906e-13 0.0168178 -2.16597e-11 3.70176e-13 0.0168262 7.76908e-11 3.81157e-13 0.0168384 -1.06163e-10 4.04086e-13 0.0168556 2.04473e-10 4.18034e-13 0.0168796 7.6625e-11 4.42391e-13 0.0169125 1.87422e-10 4.57775e-13 0.0169574 3.2418e-09 4.68051e-13 0.0170182 5.24608e-09 4.74863e-13 0.0170989 3.67164e-08 4.06456e-13 0.0172049 1.12492e-07 3.21012e-13 0.0173438 4.9397e-07 -6.24238e-14 0.017527 1.73043e-06 -7.41127e-13 0.0177764 6.52078e-06 -2.4819e-12 0.018141 2.27937e-05 -7.47591e-12 0.0187394 7.32917e-05 -1.82539e-11 0.0197255 0.000217123 -4.16502e-11 0.0212662 0.000544097 -8.76488e-11 0.0234318 0.00117041 -1.36919e-10 0.0263216 0.00213647 -2.37325e-10 0.0293708 0.00347515 -2.83902e-10 0.0318788 0.00489494 -2.67613e-10 0.0336433 0.00676589 -1.84095e-10 0.0347547 0.00837417 -1.38005e-10 0.0354892 0.00904937 -1.15436e-10 0.0360638 0.00900297 -1.16581e-10 0.0365247 0.00876385 -1.13389e-10 0.0368788 0.00848991 -1.08527e-10 0.0371523 0.00808334 -1.12121e-10 0.0373705 0.00758755 -1.20999e-10 0.0375183 0.00708904 -1.26655e-10 0.0375464 0.00659748 -1.36126e-10 0.0375095 0.00608805 -1.51812e-10 0.0374287 0.00559884 -1.46968e-10 0.0373018 0.00514205 -1.48408e-10 0.0371361 0.00470035 -1.47686e-10 0.0369453 0.00428082 -1.45684e-10 0.0367307 0.00388579 -1.43644e-10 0.0364987 0.0035253 -1.4579e-10 0.0362377 0.00319113 -1.43988e-10 0.0359307 0.00288255 -1.46285e-10 0.035587 0.00258898 -1.53069e-10 0.0352251 0.00231091 -1.57216e-10 0.0348355 0.00206405 -1.61474e-10 0.034415 0.00184985 -1.68436e-10 0.0339707 0.00166637 -1.76692e-10 0.0335129 0.00151133 -1.78306e-10 0.0330529 0.00138331 -1.76601e-10 0.0325847 0.00127938 -1.73036e-10 0.0321206 0.00119621 -1.69006e-10 0.0316628 0.00113163 -1.64949e-10 0.0311928 0.00108171 -1.60858e-10 0.0307026 0.00104131 -1.55964e-10 0.0302031 0.00100765 -1.5142e-10 0.0297032 0.000979006 -1.49129e-10 0.029193 0.00095009 -1.48171e-10 0.028659 0.000918399 -1.48079e-10 0.0280975 0.000882765 -1.55108e-10 0.0275134 0.000838669 -1.64963e-10 0.0269115 0.000785325 -1.72935e-10 0.0262793 0.000722152 -1.80313e-10 0.0255747 0.000649644 -1.84612e-10 0.024725 0.000568831 -2.28256e-10 0.0236382 0.000481758 -1.50955e-10 0.0222402 0.00039058 -1.65535e-10 0.0205368 0.000299852 -1.4799e-10 0.0186588 0.000216039 -1.19773e-10 0.0168251 0.000145721 -8.78091e-11 0.0152327 9.26706e-05 -5.85494e-11 0.0139765 5.63801e-05 -3.62982e-11 0.0130536 3.34066e-05 -2.14536e-11 0.0124092 1.95929e-05 -1.22403e-11 0.0119749 1.15139e-05 -6.81577e-12 0.0116904 6.82745e-06 -3.35509e-12 0.0115078 4.12402e-06 -1.48356e-12 0.0113918 2.54321e-06 -3.81558e-13 0.0113189 1.60015e-06 2.68837e-13 0.0112733 1.02481e-06 6.50557e-13 0.011245 6.65835e-07 8.73881e-13 0.0112274 4.37211e-07 1.00433e-12 0.0112167 2.89083e-07 1.08045e-12 0.0112101 1.9184e-07 1.12483e-12 0.0112061 1.27425e-07 1.15067e-12 0.0112036 8.4529e-08 1.1657e-12 0.0112022 5.59056e-08 1.17443e-12 0.0112013 3.68164e-08 1.17947e-12 0.0112008 2.41179e-08 1.18241e-12 0.0112005 1.57048e-08 1.18405e-12 0.0112003 1.01598e-08 1.18511e-12 0.0112002 6.52747e-09 1.18546e-12 0.0112001 4.16388e-09 1.18622e-12 0.0112001 2.63668e-09 1.18559e-12 0.0112001 1.65716e-09 1.18724e-12 0.0112001 1.03347e-09 1.18487e-12 0.0112 6.4e-10 1.18948e-12 0.0112 3.91691e-10 1.18205e-12 2.34788e-10 1.19623e-12 0.0168033 3.14046e-13 0.0168051 3.24763e-13 0.0168078 3.40823e-13 0.0168119 3.49532e-13 0.0168178 3.70213e-13 0.0168262 3.83318e-13 0.0168384 4.03807e-13 0.0168556 4.24262e-13 0.0168796 4.45761e-13 0.0169125 4.69797e-13 0.0169574 4.88047e-13 0.0170181 4.98687e-13 0.0170987 4.76134e-13 0.0172041 3.93462e-13 0.0173409 1.843e-13 0.0175161 -2.63808e-13 0.017737 -1.14923e-12 0.0180149 -2.98839e-12 0.0183745 -6.33352e-12 0.0188651 -1.37644e-11 0.0195732 -2.76131e-11 0.0206001 -5.3465e-11 0.0220445 -8.91047e-11 0.0239224 -1.3884e-10 0.0262005 -1.9347e-10 0.0288328 -2.67219e-10 0.0316032 -3.23031e-10 0.0342034 -3.35816e-10 0.0364855 -3.24988e-10 0.0384569 -3.29014e-10 0.0401281 -3.37728e-10 0.0414974 -3.56169e-10 0.0425857 -3.484e-10 0.0434189 -3.30905e-10 0.0440071 -3.14829e-10 0.0443606 -3.04883e-10 0.0445691 -2.71394e-10 0.0445627 -2.33869e-10 0.0444352 -1.94891e-10 0.0441694 -1.79629e-10 0.0438061 -1.54814e-10 0.0433694 -1.35249e-10 0.042867 -1.39105e-10 0.0422872 -1.2612e-10 0.0416233 -1.36031e-10 0.0408905 -1.29168e-10 0.0401128 -1.18429e-10 0.0393 -1.23714e-10 0.0384699 -1.67531e-10 0.0376398 -1.81721e-10 0.0368213 -1.87185e-10 0.0360144 -1.89315e-10 0.0352208 -1.88055e-10 0.0344415 -1.85708e-10 0.0336635 -1.823e-10 0.0328779 -1.74667e-10 0.032083 -1.65167e-10 0.0312841 -1.74037e-10 0.0304869 -1.7572e-10 0.0296847 -1.82849e-10 0.0288662 -1.98827e-10 0.0280429 -2.09669e-10 0.0272316 -2.17058e-10 0.0264276 -2.2056e-10 0.0255911 -2.1849e-10 0.0246461 -2.5676e-10 0.0234971 -1.71354e-10 0.0220679 -1.64482e-10 0.0203626 -1.51559e-10 0.0185064 -1.19391e-10 0.0167075 -8.5802e-11 0.0151505 -5.64748e-11 0.0139231 -3.47069e-11 0.0130205 -2.04146e-11 0.0123892 -1.16019e-11 0.011963 -6.44021e-12 0.0116833 -3.13468e-12 0.0115035 -1.35808e-12 0.0113892 -3.11596e-13 0.0113173 3.07527e-13 0.0112723 6.71827e-13 0.0112443 8.85516e-13 0.011227 1.01067e-12 0.0112164 1.0839e-12 0.0112099 1.1267e-12 0.0112059 1.1517e-12 0.0112036 1.16626e-12 0.0112021 1.17474e-12 0.0112013 1.17965e-12 0.0112008 1.18251e-12 0.0112005 1.18411e-12 0.0112003 1.18514e-12 0.0112002 1.18549e-12 0.0112001 1.18623e-12 0.0112001 1.18558e-12 0.0112001 1.18728e-12 0.0112001 1.18481e-12 0.0112 1.18957e-12 0.0112 1.18208e-12 1.19622e-12 0.00965468 0.00861948 1.64898e-10 0.00623243 0.00343661 3.8276e-11 0.00472735 0.00149961 2.61581e-12 0.00411244 0.000617682 -5.05235e-11 0.00399543 0.000112912 -5.80859e-11 0.00424329 -0.000253262 -7.1081e-11 0.00466725 -0.000409677 -9.22615e-11 0.00494039 -0.00025487 -8.00222e-11 0.00503731 -8.76215e-05 -6.62221e-11 0.00502697 1.56941e-05 -5.72035e-11 0.00496781 6.23301e-05 -4.90913e-11 0.00493159 3.42495e-05 -3.84953e-14 0.00492517 7.69802e-06 1.98107e-12 0.00495947 -2.5344e-05 2.51311e-11 0.00503028 -4.66035e-05 5.81561e-11 0.00512011 -5.68386e-05 1.18588e-10 0.0052161 -6.02102e-05 1.20209e-10 0.00532164 -6.1993e-05 1.20951e-10 0.0054424 -6.76772e-05 1.28944e-10 0.00557885 -7.54161e-05 1.37813e-10 0.00572805 -8.35556e-05 1.39523e-10 0.00588369 -9.03657e-05 1.37923e-10 0.00603676 -9.53369e-05 1.35938e-10 0.00617927 -9.82318e-05 1.30601e-10 0.00630615 -9.92136e-05 1.28134e-10 0.00641805 -9.85952e-05 1.28381e-10 0.00652242 -9.60121e-05 1.11253e-10 0.00662069 -9.24686e-05 9.94821e-11 0.00670333 -8.92485e-05 1.04737e-10 0.0067681 -8.47812e-05 9.20465e-11 0.00682117 -7.8264e-05 7.86029e-11 0.00686538 -7.20693e-05 6.99053e-11 0.00690151 -6.59124e-05 6.53762e-11 0.00693128 -5.99347e-05 6.37857e-11 0.00695851 -5.4378e-05 6.34217e-11 0.0069876 -4.95969e-05 6.20468e-11 0.00702113 -4.59129e-05 5.99959e-11 0.00705998 -4.35232e-05 5.7615e-11 0.00710553 -4.25586e-05 5.31996e-11 0.00716083 -4.30732e-05 4.63666e-11 0.00722952 -4.50568e-05 3.81891e-11 0.00731632 -4.8496e-05 2.49146e-11 0.00742381 -5.34947e-05 8.57904e-12 0.00754646 -5.99179e-05 1.86066e-12 0.00768505 -6.73574e-05 -4.10074e-12 0.0078896 -7.68492e-05 -1.78226e-11 0.00825799 -7.98874e-05 -7.76668e-11 0.00879587 -8.36678e-05 -2.165e-11 0.00947113 -9.37582e-05 -4.88592e-11 0.0102529 -0.000108766 -6.45426e-11 0.0111045 -0.000118738 -6.95897e-11 0.0119974 -0.00012511 -7.4992e-11 0.0129037 -0.000131912 -7.78384e-11 0.0137967 -0.000138989 -8.02161e-11 0.0146551 -0.000146168 -8.18726e-11 0.0154637 -0.000153279 -8.57238e-11 0.0162088 -0.000160258 -9.48619e-11 0.0168752 -0.00016708 -1.14706e-10 0.0174482 -0.000173336 -1.45288e-10 0.0179188 -0.000178105 -1.80563e-10 0.0182936 -0.000180676 -2.10308e-10 0.0185978 -0.000180896 -2.22498e-10 0.0188489 -0.000179003 -2.25188e-10 0.0190533 -0.000175195 -2.34168e-10 0.0192088 -0.000169673 -2.55806e-10 0.0192905 -0.00016259 -3.00648e-10 0.0192117 -0.000153781 -3.97587e-10 0.0186789 -0.000141311 -6.17067e-10 0.0179502 -0.000121861 -7.53142e-10 0.0169525 -0.00010446 -7.7956e-10 0.0158223 -8.55749e-05 -6.54806e-10 0.0147296 -6.63939e-05 -4.99159e-10 0.0137923 -4.92919e-05 -3.47785e-10 0.0130551 -3.54788e-05 -2.24331e-10 0.0125103 -2.50512e-05 -1.33839e-10 0.012125 -1.74833e-05 -7.1248e-11 0.0118611 -1.20709e-05 -2.92086e-11 0.0116849 -8.1821e-06 -1.54054e-12 0.0115695 -5.37297e-06 1.65406e-11 0.0114948 -3.33071e-06 2.84375e-11 0.0114458 -2.01666e-06 3.63896e-11 0.0114117 -1.1668e-06 4.16524e-11 0.0113854 -4.42649e-07 4.49285e-11 0.0113627 9.59173e-08 4.66999e-11 0.0113415 4.15202e-07 4.73534e-11 0.0113211 5.68761e-07 4.72302e-11 0.0113016 6.08616e-07 4.66262e-11 0.0112834 5.77645e-07 4.57766e-11 0.0112669 5.08535e-07 4.48601e-11 0.0112525 4.24321e-07 4.3988e-11 0.0112404 3.39797e-07 4.32241e-11 0.0112305 2.63297e-07 4.25945e-11 0.0112226 1.98559e-07 4.20914e-11 0.0112165 1.46353e-07 4.17142e-11 0.0112118 1.05875e-07 4.14227e-11 0.0112084 7.52454e-08 4.12271e-11 0.0112058 5.28305e-08 4.10594e-11 0.011204 3.6462e-08 4.10043e-11 0.0112027 2.47548e-08 4.08416e-11 1.64395e-08 4.09702e-11 0.0130292 0.0127326 1.22172e-10 0.00991359 0.00657394 5.49807e-11 0.00828175 0.00314166 -2.08284e-11 0.00759418 0.00131575 -4.16962e-11 0.00732374 0.000392665 -6.56654e-11 0.00717237 -9.33977e-05 -6.79683e-11 0.00703822 -0.000253825 -7.5832e-11 0.00707729 -0.000268359 -6.43688e-11 0.00722636 -0.000207537 -8.4441e-11 0.0073873 -0.000111309 -7.02011e-11 0.00750232 -3.56272e-05 -4.83646e-11 0.00754094 6.97418e-06 1.12998e-11 0.00754271 1.70878e-05 2.65476e-11 0.00752913 3.36537e-07 3.83538e-11 0.00753144 -3.27155e-05 8.50442e-11 0.00755603 -6.11169e-05 9.53861e-11 0.00760848 -8.47197e-05 1.08685e-10 0.00768895 -0.000101885 1.23749e-10 0.00778324 -0.000111133 1.31713e-10 0.00788743 -0.000120598 1.44283e-10 0.00800318 -0.00013282 1.40021e-10 0.00813093 -0.000144533 1.35213e-10 0.00826775 -0.00015526 1.31262e-10 0.00840772 -0.000163757 1.27075e-10 0.00854313 -0.000169911 1.22089e-10 0.00866694 -0.000173495 1.19435e-10 0.00877686 -0.000174477 1.1736e-10 0.00887846 -0.000172759 9.32381e-11 0.00897685 -0.000169185 8.36328e-11 0.00906522 -0.000165284 9.57317e-11 0.00913743 -0.00015988 8.77023e-11 0.00920127 -0.000151472 5.18187e-11 0.00926348 -0.000142893 5.79172e-11 0.00932478 -0.000134489 5.87278e-11 0.00938298 -0.000126155 5.93122e-11 0.0094379 -0.000118421 5.82449e-11 0.00949228 -0.000111953 5.66565e-11 0.00954829 -0.000107112 5.50844e-11 0.00960381 -0.00010404 5.2734e-11 0.00965173 -0.000102822 4.70985e-11 0.00968553 -0.00010362 3.83749e-11 0.0097092 -0.000106529 2.66047e-11 0.00973884 -0.000111498 1.04668e-11 0.00978543 -0.00011876 -1.03918e-13 0.00985327 -0.000128675 -5.21735e-12 0.00995798 -0.000138218 -2.67863e-11 0.0100915 -0.000147933 -4.17416e-11 0.0102358 -0.000159726 -3.01997e-11 0.0104489 -0.000169554 -4.2676e-11 0.010824 -0.000178049 -6.94064e-11 0.0113615 -0.000195561 -5.68478e-11 0.0120182 -0.000211473 -6.96332e-11 0.0127628 -0.000226488 -7.53506e-11 0.0135665 -0.000240529 -7.86809e-11 0.0144042 -0.000253947 -8.27225e-11 0.0152505 -0.000266894 -8.86492e-11 0.0160774 -0.000279242 -9.72218e-11 0.0168547 -0.000290623 -1.18408e-10 0.0175526 -0.000300329 -1.43274e-10 0.0181478 -0.000307398 -1.78203e-10 0.0186336 -0.000311154 -2.10466e-10 0.0190247 -0.000311393 -2.23962e-10 0.0193328 -0.000308121 -2.26884e-10 0.0195618 -0.000301476 -2.36137e-10 0.019715 -0.000291789 -2.56443e-10 0.0197699 -0.000279401 -3.01537e-10 0.0196124 -0.000264109 -3.95273e-10 0.0191064 -0.000243307 -5.98851e-10 0.0183301 -0.000216158 -7.97075e-10 0.017266 -0.00018463 -7.67467e-10 0.0160703 -0.000150302 -6.54286e-10 0.0149187 -0.000116282 -5.01585e-10 0.0139319 -8.61765e-05 -3.50348e-10 0.0131558 -6.18776e-05 -2.26232e-10 0.0125822 -4.34719e-05 -1.35076e-10 0.0121768 -3.0059e-05 -7.1976e-11 0.011899 -2.05068e-05 -2.95586e-11 0.0117126 -1.38099e-05 -1.38717e-12 0.0115891 -9.04456e-06 1.68352e-11 0.0115078 -5.60554e-06 2.86356e-11 0.0114542 -3.13805e-06 3.66253e-11 0.0114175 -1.40833e-06 4.17845e-11 0.0113896 -1.98879e-07 4.4978e-11 0.0113658 6.35915e-07 4.67284e-11 0.0113436 1.12241e-06 4.73597e-11 0.0113225 1.33208e-06 4.72227e-11 0.0113025 1.34715e-06 4.66116e-11 0.0112839 1.24162e-06 4.57598e-11 0.0112671 1.0739e-06 4.4844e-11 0.0112526 8.85681e-07 4.39739e-11 0.0112404 7.03504e-07 4.32129e-11 0.0112305 5.41947e-07 4.25853e-11 0.0112226 4.06954e-07 4.20848e-11 0.0112164 2.99042e-07 4.17094e-11 0.0112118 2.15642e-07 4.14192e-11 0.0112083 1.5296e-07 4.12248e-11 0.0112058 1.06794e-07 4.10579e-11 0.011204 7.35716e-08 4.10034e-11 0.0112027 5.01459e-08 4.08409e-11 3.29273e-08 4.09698e-11 0.0165193 0.0143393 1.14297e-10 0.0141112 0.0090532 5.94299e-11 0.0120973 0.00520005 2.7297e-11 0.0105783 0.00285982 -2.78552e-11 0.00951436 0.00148332 -4.41661e-11 0.00878014 0.000667251 -6.82355e-11 0.00835104 0.000205255 -7.26106e-11 0.00814791 -2.58295e-05 -6.88085e-11 0.00817924 -0.000197541 -6.87866e-11 0.00836084 -0.000253071 -6.37957e-11 0.00858901 -0.000221723 -4.83918e-11 0.00875309 -0.000127007 -3.77139e-11 0.00885948 -6.69404e-05 7.42864e-12 0.00890629 -3.53651e-05 -2.23919e-12 0.00892238 -3.42727e-05 6.1102e-11 0.00892623 -5.12284e-05 6.97689e-11 0.00893224 -7.7057e-05 9.3729e-11 0.00895741 -0.000105853 9.97351e-11 0.0090143 -0.000132717 1.16954e-10 0.00909958 -0.00015152 1.5441e-10 0.00919585 -0.000166011 1.46191e-10 0.00929874 -0.000183326 1.4291e-10 0.00940886 -0.000199248 1.33717e-10 0.0095263 -0.000213143 1.25908e-10 0.0096486 -0.000224758 1.19116e-10 0.00976973 -0.000233557 1.15425e-10 0.00988397 -0.00023914 1.08874e-10 0.0099896 -0.000241529 9.49856e-11 0.0100895 -0.000241263 8.31877e-11 0.0101895 -0.000238512 8.71276e-11 0.0102884 -0.000233801 8.26101e-11 0.0103794 -0.000227685 6.21245e-11 0.0104648 -0.000219659 4.81018e-11 0.010551 -0.000210622 5.28103e-11 0.0106415 -0.000201533 5.60423e-11 0.0107369 -0.000192674 5.70186e-11 0.0108377 -0.000184734 5.3267e-11 0.0109425 -0.000178632 5.00896e-11 0.0110458 -0.000174262 5.1506e-11 0.0111362 -0.00017136 4.99291e-11 0.0111997 -0.00017053 3.70066e-11 0.0112305 -0.000172493 2.41145e-11 0.011238 -0.000176164 9.3074e-12 0.0112377 -0.000183002 1.75087e-12 0.0112497 -0.000193245 -6.92615e-12 0.0113018 -0.000203768 -2.03878e-11 0.0114055 -0.000215587 -2.54601e-11 0.011542 -0.000233152 -4.13577e-11 0.0117175 -0.000248709 -4.57019e-11 0.0119977 -0.000257768 -4.11897e-11 0.0124354 -0.00027009 -3.87956e-11 0.0130033 -0.00029476 -8.46348e-11 0.0136649 -0.000314357 -7.29935e-11 0.014391 -0.000332505 -7.69333e-11 0.0151568 -0.00034943 -8.37454e-11 0.0159372 -0.000365095 -9.24058e-11 0.0167075 -0.000379296 -1.00514e-10 0.0174409 -0.000391922 -1.19654e-10 0.0181056 -0.000402458 -1.49137e-10 0.0186736 -0.000410091 -1.78955e-10 0.0191333 -0.000413898 -2.11614e-10 0.0194966 -0.000413393 -2.26841e-10 0.0197729 -0.000408627 -2.30731e-10 0.0199668 -0.000399847 -2.4324e-10 0.0200796 -0.000387445 -2.68584e-10 0.0200845 -0.000371677 -3.18152e-10 0.0198609 -0.000352656 -4.08355e-10 0.01935 -0.000329669 -5.89125e-10 0.0185371 -0.000294746 -7.96437e-10 0.0174358 -0.000252522 -7.64839e-10 0.0162047 -0.000205647 -6.55917e-10 0.0150203 -0.000159079 -5.06015e-10 0.0140052 -0.000117833 -3.55084e-10 0.0132068 -8.44935e-05 -2.30026e-10 0.0126167 -5.91708e-05 -1.37622e-10 0.0121998 -4.07061e-05 -7.34421e-11 0.0119142 -2.76149e-05 -3.02475e-11 0.0117227 -1.85533e-05 -1.40765e-12 0.011596 -1.20866e-05 1.68597e-11 0.0115127 -7.36756e-06 2.87455e-11 0.0114576 -3.89538e-06 3.6735e-11 0.0114197 -1.45553e-06 4.2003e-11 0.0113909 1.70323e-07 4.50375e-11 0.0113664 1.26768e-06 4.67517e-11 0.0113438 1.88124e-06 4.73565e-11 0.0113223 2.11583e-06 4.71995e-11 0.0113021 2.08664e-06 4.65779e-11 0.0112834 1.89617e-06 4.57232e-11 0.0112667 1.62558e-06 4.48097e-11 0.0112522 1.33273e-06 4.39444e-11 0.0112401 1.05424e-06 4.31892e-11 0.0112302 8.09675e-07 4.25671e-11 0.0112223 6.06608e-07 4.20713e-11 0.0112163 4.44909e-07 4.16996e-11 0.0112117 3.20349e-07 4.1412e-11 0.0112082 2.26913e-07 4.12203e-11 0.0112058 1.58484e-07 4.10549e-11 0.011204 1.09091e-07 4.10012e-11 0.0112027 7.41992e-08 4.08395e-11 4.8901e-08 4.09691e-11 0.0179746 0.0144781 6.84349e-11 0.0165564 0.0105754 5.25081e-11 0.0147018 0.00712378 3.22566e-11 0.0130224 0.00458468 -1.07778e-11 0.0117105 0.00283332 -3.67694e-11 0.0107545 0.00166494 -5.56554e-11 0.0101209 0.000884885 -8.37087e-11 0.00973584 0.00039119 -7.64758e-11 0.00952329 7.97808e-05 -8.64269e-11 0.00941687 -9.64424e-05 -5.0663e-11 0.00940629 -0.000164334 -5.03392e-11 0.00952301 -0.000199944 -4.08786e-11 0.00966183 -0.000173443 -9.57525e-12 0.00977869 -0.000125393 3.64302e-11 0.00985872 -9.18676e-05 4.38317e-11 0.00990468 -7.56174e-05 6.81995e-11 0.00993649 -7.70319e-05 1.07524e-10 0.00995692 -9.50042e-05 1.11644e-10 0.00998264 -0.000121926 1.2298e-10 0.0100304 -0.000151838 1.25985e-10 0.0101032 -0.000180408 1.32482e-10 0.010198 -0.00020548 1.46387e-10 0.0102882 -0.00022844 1.3504e-10 0.0103796 -0.000248963 1.21291e-10 0.0104786 -0.000266234 1.12552e-10 0.0105863 -0.000280995 1.06318e-10 0.0106996 -0.000292349 9.77663e-11 0.0108151 -0.000300253 8.63437e-11 0.0109322 -0.000304865 7.82051e-11 0.0110525 -0.000305762 7.38712e-11 0.0111776 -0.000303518 6.41642e-11 0.0113089 -0.000298764 5.28059e-11 0.0114465 -0.000292457 4.84026e-11 0.0115894 -0.000285002 4.55185e-11 0.0117356 -0.000276935 4.74665e-11 0.0118817 -0.000269041 5.77927e-11 0.0120263 -0.000261461 5.45693e-11 0.0121711 -0.000253894 3.92727e-11 0.0123115 -0.000247854 4.46227e-11 0.0124312 -0.000246322 6.11294e-11 0.012516 -0.000246994 5.60593e-11 0.0125648 -0.00024699 1.24493e-11 0.0125827 -0.00024877 1.09178e-11 0.0125802 -0.000255255 3.6446e-12 0.0125756 -0.000264787 6.62572e-14 0.012592 -0.000276278 -5.16858e-12 0.012652 -0.00028927 -2.0433e-11 0.0127644 -0.000305581 -3.00245e-11 0.0129136 -0.000325078 -1.66183e-11 0.0131018 -0.000340884 -3.14037e-11 0.0133884 -0.00035196 -6.76803e-11 0.0138227 -0.000367026 -8.21914e-11 0.014374 -0.000391763 -5.10557e-11 0.0150035 -0.000411907 -7.58246e-11 0.0156791 -0.000430764 -9.01869e-11 0.0163751 -0.000447574 -1.00629e-10 0.0170725 -0.000462489 -1.10451e-10 0.0177473 -0.000475383 -1.29676e-10 0.0183708 -0.000485723 -1.52551e-10 0.0189145 -0.000492909 -1.84398e-10 0.019362 -0.000496188 -2.15509e-10 0.0197181 -0.00049498 -2.29053e-10 0.019988 -0.000489078 -2.32331e-10 0.0201742 -0.000478485 -2.41933e-10 0.0202734 -0.000463513 -2.62453e-10 0.0202501 -0.000444579 -3.09433e-10 0.0200522 -0.000421582 -4.02603e-10 0.0196273 -0.000393107 -5.59578e-10 0.0187424 -0.000353846 -8.03673e-10 0.0176168 -0.000303765 -7.57509e-10 0.016363 -0.000247574 -6.56517e-10 0.015152 -0.000191545 -5.1149e-10 0.0141092 -0.000141738 -3.61559e-10 0.0132855 -0.000101328 -2.35472e-10 0.0126747 -7.06246e-05 -1.41555e-10 0.0122416 -4.83126e-05 -7.61527e-11 0.011944 -3.25782e-05 -3.19277e-11 0.0117443 -2.15763e-05 -1.99547e-12 0.011612 -1.37149e-05 1.65501e-11 0.0115247 -8.03041e-06 2.86569e-11 0.0114663 -3.9054e-06 3.66898e-11 0.0114258 -9.6816e-07 4.2082e-11 0.0113951 1.01321e-06 4.51271e-11 0.011369 2.23906e-06 4.67524e-11 0.0113453 2.87049e-06 4.73252e-11 0.011323 3.04964e-06 4.71506e-11 0.0113023 2.91936e-06 4.6521e-11 0.0112833 2.60564e-06 4.56663e-11 0.0112664 2.20763e-06 4.47582e-11 0.0112518 1.79526e-06 4.39009e-11 0.0112397 1.41187e-06 4.31543e-11 0.0112299 1.07978e-06 4.25407e-11 0.0112221 8.0643e-07 4.20515e-11 0.011216 5.90087e-07 4.16852e-11 0.0112115 4.24081e-07 4.14025e-11 0.0112081 2.99965e-07 4.12136e-11 0.0112057 2.09067e-07 4.10498e-11 0.0112039 1.43754e-07 4.09978e-11 0.0112027 9.78513e-08 4.08373e-11 6.42349e-08 4.09682e-11 0.0181938 0.0146237 6.27635e-11 0.0175262 0.0113752 3.15093e-11 0.0163543 0.00846757 2.90976e-11 0.0150079 0.00605951 -7.40221e-12 0.0137217 0.0042125 -2.53326e-11 0.0126499 0.0028146 -5.05209e-11 0.011774 0.00182727 -7.04494e-11 0.0111199 0.00110792 -6.2255e-11 0.0106405 0.000617353 -6.35402e-11 0.0103292 0.000273328 -4.01275e-11 0.0101655 5.84054e-05 -2.91773e-11 0.0100929 -7.6118e-05 1.68753e-11 0.0101112 -0.000144802 2.64898e-11 0.0102082 -0.000181027 4.67309e-11 0.0103225 -0.000173704 8.35586e-11 0.0104197 -0.000139178 9.12948e-11 0.0105004 -0.000120257 1.03897e-10 0.0105653 -0.00011811 1.23456e-10 0.0106234 -0.000129842 1.22537e-10 0.0106825 -0.000152641 1.19869e-10 0.0107444 -0.000182553 1.2411e-10 0.0108127 -0.000214354 1.23478e-10 0.010892 -0.00024502 1.11046e-10 0.0109797 -0.000274273 1.11277e-10 0.011072 -0.000300958 1.05864e-10 0.0111707 -0.000323169 9.5706e-11 0.0112756 -0.000341432 8.84001e-11 0.0113846 -0.00035534 7.8845e-11 0.0114956 -0.000364992 7.13876e-11 0.0116091 -0.000370068 6.58894e-11 0.01173 -0.000371521 5.90203e-11 0.0118658 -0.000369881 5.22865e-11 0.012022 -0.000365821 4.69398e-11 0.0121975 -0.000360087 4.31398e-11 0.012386 -0.000353361 4.44265e-11 0.0125801 -0.000346104 4.91051e-11 0.0127737 -0.000338769 5.03976e-11 0.0129597 -0.000332229 4.75614e-11 0.0131362 -0.000326879 4.61907e-11 0.013309 -0.000322687 5.02293e-11 0.0134739 -0.000321629 5.06035e-11 0.0136087 -0.000324798 4.06371e-11 0.0136989 -0.000329647 1.82346e-11 0.0137541 -0.000334194 8.34754e-12 0.0137901 -0.000342627 1.57269e-11 0.0138249 -0.000354249 5.70589e-12 0.0138787 -0.000368058 -7.37924e-12 0.0139725 -0.000383296 -1.50038e-11 0.0141108 -0.000401372 -1.43235e-11 0.0142785 -0.000421466 -2.66951e-11 0.0144856 -0.000436102 -5.07419e-11 0.0147848 -0.000447107 -6.57641e-11 0.0152083 -0.000462847 -6.00132e-11 0.0157301 -0.000485958 -7.74862e-11 0.0163178 -0.000504138 -9.34843e-11 0.016942 -0.000520441 -1.04982e-10 0.0175741 -0.000534674 -1.18085e-10 0.0181856 -0.00054632 -1.35334e-10 0.0187501 -0.000555239 -1.61089e-10 0.0192442 -0.000560994 -1.90679e-10 0.0196542 -0.00056269 -2.17833e-10 0.0199831 -0.000559561 -2.29975e-10 0.020233 -0.00055147 -2.32832e-10 0.020399 -0.000538666 -2.41874e-10 0.0204679 -0.000521543 -2.61308e-10 0.0204173 -0.000500586 -3.02255e-10 0.0202482 -0.000475292 -3.8718e-10 0.0198304 -0.000443339 -5.08358e-10 0.0189095 -0.000399834 -7.93833e-10 0.0177653 -0.000344044 -7.50138e-10 0.0164925 -0.000280885 -6.56004e-10 0.0152586 -0.000217492 -5.17378e-10 0.0141918 -0.000160879 -3.69562e-10 0.0133463 -0.000114834 -2.42549e-10 0.0127177 -7.98455e-05 -1.46947e-10 0.0122712 -5.43912e-05 -7.98723e-11 0.0119644 -3.64055e-05 -3.43208e-11 0.0117587 -2.37598e-05 -3.67809e-12 0.0116224 -1.47465e-05 1.55125e-11 0.0115322 -8.23772e-06 2.80879e-11 0.0114717 -3.50376e-06 3.62329e-11 0.0114295 -1.67129e-07 4.19623e-11 0.0113974 2.01636e-06 4.51162e-11 0.0113701 3.31227e-06 4.65662e-11 0.0113455 3.91668e-06 4.7221e-11 0.0113226 4.00303e-06 4.70543e-11 0.0113015 3.74668e-06 4.64278e-11 0.0112824 3.29593e-06 4.55808e-11 0.0112655 2.76501e-06 4.46843e-11 0.011251 2.23287e-06 4.38401e-11 0.011239 1.74721e-06 4.31069e-11 0.0112293 1.33129e-06 4.2504e-11 0.0112216 9.91518e-07 4.20256e-11 0.0112157 7.23975e-07 4.16671e-11 0.0112112 5.19475e-07 4.13889e-11 0.0112079 3.66955e-07 4.12041e-11 0.0112055 2.55647e-07 4.10436e-11 0.0112038 1.75647e-07 4.09935e-11 0.0112026 1.19359e-07 4.08344e-11 7.84709e-08 4.09668e-11 0.0187299 0.0150159 7.54231e-11 0.0179926 0.0121145 5.22877e-11 0.0170555 0.00945638 5.43392e-11 0.0160552 0.0071719 1.03898e-11 0.0150128 0.00536808 -8.28497e-12 0.0140606 0.00389867 -3.09941e-11 0.0132258 0.00279973 -6.92407e-11 0.0125242 0.00193634 -4.91369e-11 0.0119678 0.00130031 -6.7424e-11 0.0115194 0.000811898 -3.08378e-11 0.0112118 0.000455184 -1.56394e-11 0.0110167 0.000198907 1.08753e-11 0.0108951 2.90305e-05 1.07699e-11 0.0108351 -7.04457e-05 5.99012e-11 0.0108418 -0.000128011 7.12358e-11 0.0109185 -0.000166983 8.95213e-11 0.0110266 -0.000173516 1.22649e-10 0.0111306 -0.000163161 1.28858e-10 0.0112224 -0.000161049 1.26684e-10 0.0113111 -0.000172634 1.21198e-10 0.0113944 -0.000192551 1.15404e-10 0.0114658 -0.000220649 1.09931e-10 0.0115281 -0.00025403 9.88542e-11 0.0115924 -0.000287751 9.38204e-11 0.0116647 -0.000321029 9.3043e-11 0.0117447 -0.000352373 8.84548e-11 0.011835 -0.000378301 7.94577e-11 0.0119372 -0.000399617 7.35687e-11 0.0120504 -0.000415946 6.55791e-11 0.0121726 -0.000427491 5.72608e-11 0.012304 -0.000435464 5.05921e-11 0.0124468 -0.000439059 4.6524e-11 0.012606 -0.00043894 4.28269e-11 0.0127848 -0.000435686 4.06169e-11 0.0129823 -0.000430402 4.18643e-11 0.0131932 -0.000424289 4.44554e-11 0.0134098 -0.000417922 5.00345e-11 0.0136248 -0.000411877 5.55197e-11 0.0138328 -0.000406843 4.53759e-11 0.0140312 -0.000403233 3.93799e-11 0.014223 -0.000401064 6.69065e-11 0.0144103 -0.000401433 7.38595e-11 0.0145809 -0.000406252 2.12582e-11 0.0147181 -0.000414621 -1.82753e-11 0.014822 -0.000422868 3.64433e-11 0.0149036 -0.000432345 1.88385e-11 0.0149766 -0.000445536 4.115e-12 0.0150589 -0.000460186 -9.65123e-12 0.0151716 -0.000475668 -1.03342e-11 0.015321 -0.000493189 -2.05126e-11 0.0154952 -0.000510787 -5.47617e-11 0.0157039 -0.000523567 -6.5557e-11 0.0159949 -0.000533363 -5.95738e-11 0.0163951 -0.000547883 -8.33474e-11 0.0168774 -0.000566301 -9.90115e-11 0.0174112 -0.000580899 -1.10296e-10 0.0179667 -0.000593206 -1.24371e-10 0.0185138 -0.000603017 -1.40555e-10 0.0190242 -0.000609756 -1.64992e-10 0.0194727 -0.000613375 -1.9201e-10 0.019842 -0.000612862 -2.16604e-10 0.020137 -0.000607835 -2.26641e-10 0.0203626 -0.000598433 -2.31009e-10 0.0205106 -0.000583979 -2.41267e-10 0.0205822 -0.000564549 -2.5917e-10 0.0205597 -0.000540983 -2.97542e-10 0.0203931 -0.000512993 -3.7513e-10 0.0199828 -0.000478222 -4.91432e-10 0.0190569 -0.00043163 -7.55642e-10 0.0179123 -0.000371741 -7.3806e-10 0.0166312 -0.000303672 -6.57127e-10 0.0153795 -0.000235157 -5.25444e-10 0.0142899 -0.000173832 -3.79264e-10 0.0134219 -0.000123885 -2.51695e-10 0.0127739 -8.58635e-05 -1.54113e-10 0.0123123 -5.81741e-05 -8.56681e-11 0.0119944 -3.85121e-05 -3.81236e-11 0.011781 -2.46303e-05 -5.78815e-12 0.0116393 -1.47265e-05 1.4037e-11 0.0115451 -7.59867e-06 2.70338e-11 0.0114813 -2.47844e-06 3.58809e-11 0.0114362 1.08184e-06 4.18016e-11 0.0114017 3.36284e-06 4.49635e-11 0.0113727 4.62475e-06 4.63935e-11 0.0113467 5.112e-06 4.70839e-11 0.0113229 5.04301e-06 4.69283e-11 0.0113011 4.61825e-06 4.63104e-11 0.0112817 4.00373e-06 4.54759e-11 0.0112647 3.32455e-06 4.45937e-11 0.0112502 2.66497e-06 4.37678e-11 0.0112383 2.07408e-06 4.30485e-11 0.0112287 1.57408e-06 4.24612e-11 0.0112211 1.16887e-06 4.19955e-11 0.0112153 8.51583e-07 4.16461e-11 0.011211 6.09982e-07 4.13742e-11 0.0112077 4.30316e-07 4.1193e-11 0.0112054 2.99335e-07 4.10349e-11 0.0112037 2.05431e-07 4.09876e-11 0.0112025 1.39582e-07 4.08306e-11 9.15279e-08 4.09651e-11 0.0193152 0.0153586 1.29603e-10 0.0185337 0.0128025 9.67715e-11 0.0176018 0.0103443 7.73185e-11 0.016656 0.00815601 3.92205e-11 0.0157472 0.00636649 6.90316e-12 0.0148946 0.00489157 -4.74932e-12 0.0141445 0.00372266 -4.97675e-11 0.0134764 0.00278395 -2.39149e-11 0.0129308 0.0020404 -4.70481e-11 0.0124483 0.00145487 -9.93742e-12 0.012065 0.00098518 -7.95893e-12 0.0117475 0.000630316 1.89594e-11 0.0115282 0.000355068 4.0459e-11 0.011393 0.00015469 6.09758e-11 0.0113218 2.5922e-05 8.38905e-11 0.01131 -6.7178e-05 1.19347e-10 0.0113416 -0.000123317 1.22758e-10 0.0114295 -0.000168678 1.28653e-10 0.0115479 -0.000190224 1.37723e-10 0.0116609 -0.000195711 1.24526e-10 0.0117616 -0.00021088 1.06645e-10 0.0118496 -0.000237255 1.06239e-10 0.0119174 -0.000265539 9.76035e-11 0.0119671 -0.000298926 8.28641e-11 0.012018 -0.000334813 8.62142e-11 0.0120854 -0.000369782 8.59714e-11 0.0121721 -0.000402866 7.39278e-11 0.0122795 -0.000431189 6.88766e-11 0.012405 -0.000454945 6.38918e-11 0.0125444 -0.000474189 5.68044e-11 0.0126937 -0.000489257 4.94531e-11 0.0128514 -0.000499514 4.16534e-11 0.0130186 -0.000505246 3.74348e-11 0.0131996 -0.000507041 3.25922e-11 0.0133994 -0.000505732 3.64795e-11 0.0136186 -0.000502392 4.28717e-11 0.0138525 -0.000497937 4.96308e-11 0.0140928 -0.000493106 5.15358e-11 0.0143325 -0.00048839 5.51565e-11 0.014567 -0.000484381 6.31094e-11 0.0147926 -0.000481994 5.83057e-11 0.0150085 -0.000481697 4.35357e-11 0.0152188 -0.000483416 6.33726e-11 0.0154224 -0.000488262 6.40552e-11 0.0156051 -0.000497459 2.00584e-11 0.0157544 -0.00050907 -3.43737e-12 0.0158745 -0.000519976 2.39721e-11 0.0159774 -0.000532578 8.87217e-12 0.0160829 -0.000546389 -7.0031e-12 0.0162134 -0.000560313 -1.82486e-11 0.0163724 -0.000576203 -4.23697e-11 0.016552 -0.000590103 -5.63742e-11 0.0167715 -0.000599133 -7.72051e-11 0.0170707 -0.00060675 -9.00549e-11 0.0174577 -0.000619056 -9.60538e-11 0.0179082 -0.000631609 -1.11586e-10 0.0183927 -0.000641528 -1.26724e-10 0.0188779 -0.000648702 -1.41967e-10 0.0193333 -0.000653044 -1.64352e-10 0.0197327 -0.000654553 -1.93854e-10 0.0200605 -0.000652918 -2.14996e-10 0.0203257 -0.000645581 -2.18937e-10 0.0205358 -0.000631545 -2.1949e-10 0.0206665 -0.000612831 -2.30707e-10 0.0207192 -0.000590304 -2.53871e-10 0.0206908 -0.000564847 -2.95415e-10 0.020527 -0.000535893 -3.75519e-10 0.0201148 -0.000501344 -4.84418e-10 0.0191925 -0.000453314 -7.36097e-10 0.0180486 -0.000390171 -7.29415e-10 0.016759 -0.000318647 -6.60679e-10 0.0154898 -0.000246735 -5.35856e-10 0.0143785 -0.000182304 -3.91665e-10 0.0134891 -0.000129746 -2.62372e-10 0.0128231 -8.9666e-05 -1.62697e-10 0.0123477 -6.03774e-05 -9.20033e-11 0.0120199 -3.94713e-05 -4.22136e-11 0.0117996 -2.46635e-05 -8.4846e-12 0.011653 -1.40968e-05 1.21169e-11 0.0115552 -6.50853e-06 2.59343e-11 0.0114885 -1.07994e-06 3.51217e-11 0.011441 2.56889e-06 4.1449e-11 0.0114044 4.83507e-06 4.47253e-11 0.0113738 5.99069e-06 4.61797e-11 0.0113466 6.31572e-06 4.69064e-11 0.0113221 6.06147e-06 4.67676e-11 0.0112999 5.45206e-06 4.61635e-11 0.0112803 4.66797e-06 4.53483e-11 0.0112634 3.84154e-06 4.44834e-11 0.011249 3.05929e-06 4.36822e-11 0.0112373 2.36947e-06 4.29806e-11 0.0112278 1.79176e-06 4.24081e-11 0.0112205 1.3269e-06 4.19617e-11 0.0112148 9.64677e-07 4.16207e-11 0.0112106 6.89852e-07 4.13535e-11 0.0112075 4.85991e-07 4.11782e-11 0.0112052 3.3774e-07 4.10253e-11 0.0112036 2.31582e-07 4.09814e-11 0.0112024 1.57122e-07 4.08265e-11 1.03054e-07 4.09631e-11 0.0200727 0.015707 8.08268e-11 0.0192539 0.0134478 7.64796e-11 0.0182946 0.0111848 7.57475e-11 0.0173042 0.00910554 4.89205e-11 0.0163877 0.0073169 1.52443e-11 0.0155494 0.00582933 4.30793e-12 0.0148181 0.00460751 -2.82734e-11 0.0141693 0.00361231 -1.80402e-11 0.0136063 0.00278852 -2.61699e-11 0.0131016 0.00212087 -7.64091e-12 0.012668 0.0015675 1.22775e-11 0.0123129 0.0011269 2.94639e-11 0.0120264 0.000772011 7.078e-11 0.0118425 0.000495561 7.88596e-11 0.0117268 0.000281491 1.0354e-10 0.0116766 0.000126552 1.37331e-10 0.0116797 1.0317e-05 1.25649e-10 0.011704 -7.11824e-05 1.2322e-10 0.011759 -0.000133167 1.2326e-10 0.0118565 -0.000188476 1.22736e-10 0.0119629 -0.000224598 1.21383e-10 0.0120485 -0.000249704 1.17065e-10 0.0121173 -0.000279352 1.03454e-10 0.012177 -0.000313601 9.60849e-11 0.012235 -0.000350549 8.40702e-11 0.012307 -0.000385417 7.93124e-11 0.0124076 -0.000419923 8.34275e-11 0.012534 -0.000453849 6.0806e-11 0.0126783 -0.000483881 5.42252e-11 0.0128352 -0.000509273 5.19016e-11 0.0130002 -0.000530927 4.41646e-11 0.013171 -0.000548196 3.8132e-11 0.0133473 -0.000560968 3.12662e-11 0.0135319 -0.000569196 3.42433e-11 0.0137295 -0.000573703 3.32331e-11 0.0139449 -0.000575238 3.45533e-11 0.0141801 -0.000574233 3.46403e-11 0.0144321 -0.000571571 3.90067e-11 0.0146937 -0.000568127 4.31509e-11 0.0149568 -0.000564565 5.06042e-11 0.0152159 -0.000561522 5.71777e-11 0.0154675 -0.000559852 5.33292e-11 0.0157084 -0.000560283 4.11026e-11 0.0159383 -0.000562872 3.96041e-11 0.0161605 -0.000567486 6.8837e-11 0.0163704 -0.000575355 2.51732e-11 0.0165534 -0.000587144 -2.48912e-11 0.0167018 -0.000599926 -2.99085e-12 0.0168253 -0.000610908 -1.76828e-11 0.0169467 -0.000621457 -2.60733e-11 0.017088 -0.000632657 -3.33355e-11 0.01725 -0.000644934 -7.078e-11 0.0174327 -0.000653956 -1.00115e-10 0.017663 -0.000657901 -9.42398e-11 0.017968 -0.000662143 -7.3332e-11 0.0183404 -0.000671329 -1.23585e-10 0.0187534 -0.000678195 -1.32439e-10 0.0191768 -0.000682518 -1.44536e-10 0.0195802 -0.00068474 -1.65871e-10 0.0199356 -0.000684417 -1.93451e-10 0.0202327 -0.000678793 -1.92388e-10 0.0204778 -0.000666224 -2.12416e-10 0.0206607 -0.000649787 -2.19959e-10 0.0207735 -0.000629191 -2.31475e-10 0.0208178 -0.000605292 -2.48031e-10 0.0207827 -0.000578327 -2.89825e-10 0.0206195 -0.000548027 -3.70967e-10 0.0202279 -0.000512231 -4.7914e-10 0.0193201 -0.000462974 -7.02625e-10 0.0181836 -0.000398027 -7.1927e-10 0.0168908 -0.000324846 -6.6642e-10 0.0156073 -0.000251386 -5.49037e-10 0.0144755 -0.000185524 -4.06138e-10 0.0135649 -0.000131706 -2.7478e-10 0.0128803 -9.05678e-05 -1.72211e-10 0.01239 -6.04112e-05 -9.87826e-11 0.0120512 -3.88043e-05 -4.66899e-11 0.0118229 -2.34575e-05 -1.13512e-11 0.0116705 -1.25098e-05 1.06052e-11 0.0115682 -4.69075e-06 2.49907e-11 0.0114978 7.79766e-07 3.45441e-11 0.0114472 4.4039e-06 4.1004e-11 0.0114081 6.53491e-06 4.45449e-11 0.0113755 7.48928e-06 4.59584e-11 0.0113469 7.58196e-06 4.67086e-11 0.0113215 7.09808e-06 4.65862e-11 0.0112988 6.27833e-06 4.5998e-11 0.011279 5.31188e-06 4.52039e-11 0.011262 4.33372e-06 4.43635e-11 0.0112478 3.42917e-06 4.35781e-11 0.0112362 2.64323e-06 4.2919e-11 0.011227 1.99155e-06 4.23374e-11 0.0112198 1.47078e-06 4.19116e-11 0.0112143 1.06699e-06 4.15913e-11 0.0112102 7.6168e-07 4.13349e-11 0.0112072 5.35817e-07 4.11651e-11 0.011205 3.71807e-07 4.10148e-11 0.0112034 2.54629e-07 4.09736e-11 0.0112023 1.72625e-07 4.08215e-11 1.12983e-07 4.09611e-11 0.0206563 0.0160617 5.57676e-11 0.0198762 0.0140565 5.48197e-11 0.0190054 0.0119562 4.42939e-11 0.0180765 0.0100007 4.09778e-11 0.0171533 0.00826101 2.43243e-11 0.0162969 0.00675617 1.81476e-11 0.0155185 0.00547892 8.02165e-12 0.0148103 0.0044113 6.26865e-13 0.0141756 0.00351974 -4.83574e-12 0.0136161 0.0027813 8.16152e-12 0.0131333 0.00216607 3.21566e-11 0.0127391 0.00166127 4.93963e-11 0.0124149 0.00124676 8.22692e-11 0.0121776 0.000907621 9.18833e-11 0.0119954 0.000632993 1.19554e-10 0.0118811 0.000409692 1.00643e-10 0.011817 0.000231334 1.65228e-10 0.0117976 9.50884e-05 1.30658e-10 0.0118176 -1.64844e-05 1.25121e-10 0.0118517 -0.000100298 1.24045e-10 0.0119099 -0.000171311 1.20145e-10 0.011989 -0.000234102 1.13673e-10 0.0120732 -0.000282886 1.04859e-10 0.0121625 -0.000322575 9.65929e-11 0.0122609 -0.000360882 9.17595e-11 0.0123763 -0.00040123 7.66903e-11 0.0125135 -0.000440791 6.72847e-11 0.0126743 -0.000476223 6.99164e-11 0.0128502 -0.000509851 5.20046e-11 0.0130306 -0.000541527 3.13563e-11 0.0132121 -0.000567986 4.0195e-11 0.0133947 -0.000590386 3.41212e-11 0.013579 -0.000608996 3.04278e-11 0.0137671 -0.000623415 2.6585e-11 0.0139637 -0.000633719 2.6537e-11 0.0141747 -0.000640411 2.89441e-11 0.0144052 -0.000644015 3.47743e-11 0.014656 -0.000645139 4.17563e-11 0.0149243 -0.000644405 4.9838e-11 0.0152043 -0.000642522 5.80682e-11 0.0154883 -0.000640229 5.74058e-11 0.0157696 -0.000638081 5.55064e-11 0.0160442 -0.000636699 5.63942e-11 0.0163089 -0.000637006 5.18277e-11 0.0165602 -0.000639398 3.61221e-11 0.0167989 -0.000643433 1.9578e-11 0.0170282 -0.000649203 1.171e-11 0.0172387 -0.00065848 -6.25459e-12 0.0174124 -0.000670146 -3.39441e-11 0.017552 -0.000678553 -3.28506e-11 0.0176851 -0.000683844 -3.70943e-11 0.0178323 -0.000691239 -6.27041e-11 0.0179945 -0.00069842 -1.00269e-10 0.0181817 -0.000700238 -1.08178e-10 0.0184227 -0.000699432 -8.63207e-11 0.0187317 -0.00070136 -9.68065e-11 0.0190856 -0.000705678 -1.46423e-10 0.0194543 -0.000707841 -1.50631e-10 0.0198109 -0.000707599 -1.73057e-10 0.0201331 -0.000703309 -1.78393e-10 0.020408 -0.000692427 -1.92252e-10 0.0206291 -0.000677386 -2.18986e-10 0.0207875 -0.000658796 -2.20431e-10 0.0208837 -0.00063661 -2.27763e-10 0.0209172 -0.000611202 -2.43959e-10 0.0208771 -0.000582552 -2.831e-10 0.0207179 -0.00055049 -3.46165e-10 0.020344 -0.000512934 -4.66658e-10 0.0194477 -0.000462985 -6.63191e-10 0.0183153 -0.000397793 -7.02508e-10 0.0170176 -0.000324454 -6.69675e-10 0.0157195 -0.000250808 -5.624e-10 0.0145675 -0.000184703 -4.21612e-10 0.0136363 -0.000130607 -2.88197e-10 0.0129337 -8.91868e-05 -1.82433e-10 0.0124292 -5.87435e-05 -1.06074e-10 0.0120797 -3.68676e-05 -5.16206e-11 0.0118437 -2.13056e-05 -1.41455e-11 0.0116856 -1.02265e-05 7.96552e-12 0.011579 -2.38549e-06 2.35021e-11 0.0115052 2.99213e-06 3.37916e-11 0.0114517 6.434e-06 4.06183e-11 0.0114103 8.32129e-06 4.4269e-11 0.011376 9.00174e-06 4.56877e-11 0.0113462 8.81976e-06 4.64787e-11 0.01132 8.08325e-06 4.6377e-11 0.011297 7.04467e-06 4.58105e-11 0.0112771 5.89671e-06 4.50407e-11 0.0112603 4.77279e-06 4.42261e-11 0.0112463 3.75414e-06 4.34753e-11 0.0112349 2.88065e-06 4.28201e-11 0.0112259 2.1629e-06 4.22868e-11 0.011219 1.59296e-06 4.18726e-11 0.0112137 1.15307e-06 4.15562e-11 0.0112097 8.21621e-07 4.13077e-11 0.0112068 5.77047e-07 4.11466e-11 0.0112047 3.99897e-07 4.10032e-11 0.0112033 2.73489e-07 4.09663e-11 0.0112022 1.85131e-07 4.08166e-11 1.21085e-07 4.09585e-11 0.0214686 0.0164602 7.12533e-12 0.0207063 0.0146789 1.11171e-11 0.0197991 0.0127464 4.77681e-11 0.0188912 0.0108698 3.15022e-11 0.0179877 0.00917214 3.29286e-11 0.0170867 0.00766201 1.75314e-11 0.01623 0.00634143 1.66214e-11 0.0154556 0.00520849 1.69937e-11 0.0147662 0.00425126 3.41513e-11 0.0141629 0.00344701 3.70275e-11 0.0136434 0.00277831 5.12015e-11 0.0132101 0.00222059 6.91619e-11 0.0128553 0.00175602 9.1382e-11 0.0125712 0.00136526 1.09918e-10 0.012339 0.00103724 1.2478e-10 0.0121612 0.000759417 1.2834e-10 0.012034 0.000527325 1.44662e-10 0.0119559 0.000331854 1.27664e-10 0.0119319 0.000172756 1.48568e-10 0.0119406 4.20336e-05 1.30344e-10 0.0119787 -6.99354e-05 1.23236e-10 0.0120249 -0.000159658 1.07988e-10 0.0120983 -0.000237093 1.06016e-10 0.012199 -0.000304249 1.01343e-10 0.0123246 -0.000363693 9.18241e-11 0.0124688 -0.000414134 8.14264e-11 0.0126275 -0.000458237 6.36013e-11 0.0128037 -0.000499013 5.39872e-11 0.0129952 -0.000539738 4.15885e-11 0.0131958 -0.00057775 1.99513e-11 0.0133979 -0.000607893 6.895e-12 0.0136029 -0.00063455 1.74025e-11 0.0138121 -0.000657232 1.37726e-11 0.0140246 -0.000675381 1.45763e-11 0.014241 -0.000689994 1.79567e-11 0.0144639 -0.000701048 2.25734e-11 0.0146973 -0.000708619 2.85938e-11 0.0149454 -0.000713242 3.55741e-11 0.0152097 -0.000715447 4.21878e-11 0.0154876 -0.000715755 4.6407e-11 0.0157744 -0.000714634 4.616e-11 0.0160653 -0.000712687 4.60564e-11 0.0163559 -0.000710632 4.37106e-11 0.0166421 -0.000709148 3.37841e-11 0.0169192 -0.000708763 2.68652e-11 0.0171819 -0.000709795 2.2245e-11 0.0174293 -0.000711759 -1.06509e-12 0.0176641 -0.000714393 -2.37932e-11 0.0178795 -0.000720387 -3.49655e-11 0.0180564 -0.000727535 -4.54833e-11 0.0181951 -0.000731281 -5.66113e-11 0.018327 -0.000731424 -7.09044e-11 0.0184708 -0.000733504 -9.08539e-11 0.018629 -0.000733766 -1.29755e-10 0.0188231 -0.000729195 -1.08757e-10 0.0190784 -0.000724139 -1.03381e-10 0.0193844 -0.000723717 -1.38796e-10 0.0197079 -0.000723147 -1.56657e-10 0.0200234 -0.000719478 -1.70756e-10 0.0203128 -0.000710241 -1.67566e-10 0.0205606 -0.000695861 -2.1055e-10 0.020759 -0.000678091 -2.25484e-10 0.0209 -0.000657255 -2.27121e-10 0.0209814 -0.000633587 -2.32549e-10 0.0210036 -0.000607218 -2.45871e-10 0.0209574 -0.000578015 -2.714e-10 0.0208028 -0.000545261 -3.22134e-10 0.0204445 -0.000506781 -4.20724e-10 0.0195652 -0.000456424 -6.07779e-10 0.0184424 -0.000391259 -6.86951e-10 0.0171439 -0.000318174 -6.73859e-10 0.0158338 -0.000245129 -5.77044e-10 0.0146632 -0.000179735 -4.38608e-10 0.0137118 -0.000126256 -3.02869e-10 0.0129912 -8.5283e-05 -1.93548e-10 0.0124719 -5.51365e-05 -1.13927e-10 0.0121112 -3.34352e-05 -5.69665e-11 0.0118669 -1.8002e-05 -1.75607e-11 0.0117025 -7.07538e-06 6.2914e-12 0.011591 5.39067e-07 2.2507e-11 0.0115133 5.6248e-06 3.31386e-11 0.0114566 8.72097e-06 4.02146e-11 0.0114127 1.02498e-05 4.3968e-11 0.0113764 1.05743e-05 4.54049e-11 0.0113454 1.00639e-05 4.62298e-11 0.0113184 9.04459e-06 4.61495e-11 0.0112951 7.77298e-06 4.56075e-11 0.0112751 6.4395e-06 4.48637e-11 0.0112584 5.17178e-06 4.4082e-11 0.0112446 4.04393e-06 4.33563e-11 0.0112336 3.08882e-06 4.27296e-11 0.0112249 2.31088e-06 4.22197e-11 0.0112181 1.69704e-06 4.18186e-11 0.011213 1.22549e-06 4.1518e-11 0.0112093 8.71444e-07 4.12827e-11 0.0112065 6.10935e-07 4.11299e-11 0.0112045 4.22638e-07 4.09913e-11 0.0112031 2.88584e-07 4.0958e-11 0.0112021 1.95074e-07 4.08109e-11 1.27323e-07 4.09557e-11 0.02209 0.0169259 -4.5345e-11 0.0214589 0.0152386 -6.14249e-11 0.0206617 0.0135038 -3.17551e-11 0.019783 0.0117324 -1.28024e-11 0.0188731 0.0100557 1.00436e-11 0.0179546 0.00854179 2.44894e-11 0.0170501 0.00719519 2.49885e-11 0.0161966 0.006016 2.71809e-11 0.0154251 0.00500175 3.26959e-11 0.0147592 0.0041407 4.50317e-11 0.0142013 0.00341731 6.75603e-11 0.013739 0.00280789 8.94354e-11 0.0133511 0.00229412 1.02429e-10 0.0130252 0.00185577 1.1876e-10 0.0127518 0.00148058 1.27817e-10 0.0125268 0.00115557 1.35074e-10 0.0123557 0.000876054 1.38638e-10 0.0122257 0.000634714 1.33696e-10 0.0121505 0.000426991 1.36929e-10 0.0121136 0.000248445 1.30519e-10 0.012109 9.68739e-05 1.25724e-10 0.0121347 -3.45952e-05 1.15709e-10 0.0121927 -0.000148077 1.10131e-10 0.0122791 -0.000244135 9.14358e-11 0.0123982 -0.000324956 9.07718e-11 0.0125474 -0.000396859 9.08226e-11 0.0127213 -0.00046155 5.54693e-11 0.0129128 -0.000520279 4.2499e-11 0.0131172 -0.000569049 3.56236e-11 0.0133278 -0.000610417 6.7034e-12 0.0135451 -0.000648918 -1.7863e-11 0.0137719 -0.000686076 -1.64593e-11 0.0140038 -0.000712934 -2.18875e-11 0.0142415 -0.000734353 -2.20857e-11 0.0144849 -0.00075247 -1.66764e-11 0.0147306 -0.000765073 -8.93314e-12 0.0149791 -0.000773879 5.60343e-13 0.0152343 -0.000779574 8.15496e-12 0.0154984 -0.000782449 1.57099e-11 0.0157703 -0.000783034 2.10241e-11 0.0160488 -0.000781777 2.09631e-11 0.0163331 -0.000779349 1.76389e-11 0.016621 -0.000776218 1.01869e-11 0.0169096 -0.000772935 5.66986e-12 0.0171962 -0.000769869 -7.9928e-13 0.0174764 -0.000767289 -7.70677e-12 0.0177436 -0.000766162 -1.87397e-11 0.0179939 -0.000765463 -3.91312e-11 0.01823 -0.000765447 -6.44911e-11 0.0184439 -0.000767914 -6.60441e-11 0.0186177 -0.000770179 -5.79228e-11 0.0187563 -0.000767825 -7.16994e-11 0.0188889 -0.000762343 -1.06214e-10 0.0190285 -0.000759065 -1.32496e-10 0.0191869 -0.000753109 -1.49614e-10 0.0193947 -0.000742159 -1.17264e-10 0.0196634 -0.000733993 -1.27222e-10 0.0199584 -0.000729311 -1.63923e-10 0.0202463 -0.000720992 -1.49319e-10 0.0205035 -0.000708167 -1.66567e-10 0.0207166 -0.000691185 -2.01352e-10 0.0208877 -0.000670332 -2.09584e-10 0.0210134 -0.000646339 -2.1122e-10 0.0210842 -0.00062017 -2.16183e-10 0.0210947 -0.000592296 -2.2779e-10 0.021037 -0.000562794 -2.52347e-10 0.0208787 -0.000530738 -3.00471e-10 0.0205324 -0.000493393 -4.08718e-10 0.0196761 -0.00044445 -6.08608e-10 0.0185649 -0.000378957 -6.86377e-10 0.017266 -0.000306528 -6.83439e-10 0.0159439 -0.000234946 -5.94511e-10 0.0147547 -0.000171174 -4.57421e-10 0.0137835 -0.00011911 -3.18819e-10 0.0130452 -7.92364e-05 -2.05648e-10 0.0125118 -4.98892e-05 -1.2246e-10 0.0121402 -2.8756e-05 -6.30437e-11 0.0118878 -1.37646e-05 -2.13616e-11 0.0117175 -3.24746e-06 4.02094e-12 0.0116012 3.93135e-06 2.12366e-11 0.0115197 8.54833e-06 3.2422e-11 0.01146 1.11672e-05 3.97957e-11 0.0114137 1.22353e-05 4.36396e-11 0.0113757 1.2138e-05 4.50682e-11 0.0113436 1.12629e-05 4.59551e-11 0.0113161 9.94376e-06 4.59036e-11 0.0112926 8.43496e-06 4.53889e-11 0.0112727 6.91952e-06 4.46753e-11 0.0112562 5.5155e-06 4.3927e-11 0.0112428 4.28743e-06 4.32309e-11 0.011232 3.25967e-06 4.2634e-11 0.0112236 2.42961e-06 4.21465e-11 0.0112172 1.77876e-06 4.17628e-11 0.0112123 1.28115e-06 4.1477e-11 0.0112087 9.08938e-07 4.12541e-11 0.0112061 6.35892e-07 4.11106e-11 0.0112042 4.39075e-07 4.09781e-11 0.0112029 2.99251e-07 4.09492e-11 0.0112019 2.01911e-07 4.08052e-11 1.31588e-07 4.09531e-11 0.022956 0.0176377 -1.45227e-10 0.022298 0.0158526 -1.26217e-10 0.0215402 0.0142074 -8.8231e-11 0.0206358 0.012543 -5.78621e-11 0.0196984 0.0109132 -6.08495e-12 0.0187733 0.00938372 2.06171e-11 0.0178706 0.00801367 2.914e-11 0.017008 0.00681308 3.44505e-11 0.016211 0.00576533 4.26186e-11 0.0155025 0.00486415 5.59293e-11 0.0148882 0.0040919 6.71133e-11 0.0143641 0.0034321 8.45526e-11 0.0139245 0.00286677 1.02249e-10 0.013553 0.00237952 1.22917e-10 0.013236 0.00195608 1.28222e-10 0.0129725 0.00158761 1.34364e-10 0.0127601 0.00126575 1.35742e-10 0.0125972 0.000982828 1.33452e-10 0.0124799 0.000734211 1.3339e-10 0.0123981 0.000514242 1.27671e-10 0.0123583 0.000320564 1.35551e-10 0.0123451 0.000149286 1.10689e-10 0.0123708 1.4249e-06 1.18966e-10 0.0124414 -0.000132353 1.0758e-10 0.0125506 -0.000247124 8.94869e-11 0.0126943 -0.000345911 7.72776e-11 0.012862 -0.000432194 4.47074e-11 0.013048 -0.00050777 4.03277e-11 0.0132508 -0.000574906 2.87428e-11 0.0134758 -0.000638808 8.9662e-12 0.013707 -0.000692702 -2.6456e-11 0.0139405 -0.000733191 -3.00326e-11 0.0141801 -0.000766936 -5.10813e-11 0.0144357 -0.00080166 -6.38786e-11 0.0146995 -0.000826673 -5.93491e-11 0.0149653 -0.000840223 -5.54266e-11 0.0152367 -0.000850722 -4.68097e-11 0.0155109 -0.000855013 -3.9234e-11 0.0157845 -0.000855543 -3.01827e-11 0.0160572 -0.000852736 -2.15101e-11 0.0163306 -0.000847781 -1.92862e-11 0.0166058 -0.000841916 -1.59391e-11 0.0168832 -0.000835455 -1.90018e-11 0.0171625 -0.000828653 -1.9102e-11 0.0174438 -0.000822201 -2.6296e-11 0.0177266 -0.000816367 -3.61782e-11 0.0180059 -0.000811512 -3.75523e-11 0.0182735 -0.000808003 -6.22361e-11 0.0185249 -0.000804647 -6.53686e-11 0.0187587 -0.000800937 -8.25984e-11 0.0189625 -0.000798779 -7.6792e-11 0.019123 -0.000795471 -1.04876e-10 0.0192536 -0.000786973 -1.31163e-10 0.0193804 -0.000777524 -1.39041e-10 0.0195159 -0.000768114 -1.43955e-10 0.0196806 -0.000753973 -1.42722e-10 0.0199074 -0.00073744 -1.39607e-10 0.0201813 -0.000726327 -1.37552e-10 0.020454 -0.000715493 -1.28571e-10 0.0206869 -0.000700452 -1.38219e-10 0.020867 -0.000681196 -1.55015e-10 0.0210093 -0.000657338 -1.6233e-10 0.0211175 -0.000629714 -1.64612e-10 0.0211803 -0.000599888 -1.70898e-10 0.0211871 -0.000568877 -1.86164e-10 0.0211236 -0.000537355 -2.20235e-10 0.0209629 -0.000504948 -2.90661e-10 0.0206286 -0.00046891 -4.13678e-10 0.0197952 -0.000421739 -6.79522e-10 0.0186898 -0.000357671 -7.22316e-10 0.0173886 -0.000287902 -7.07155e-10 0.0160543 -0.000219518 -6.18551e-10 0.0148467 -0.000158693 -4.79885e-10 0.0138559 -0.000109 -3.37139e-10 0.0131002 -7.09083e-05 -2.18614e-10 0.0125526 -4.28628e-05 -1.32063e-10 0.0121702 -2.2697e-05 -6.84767e-11 0.0119095 -8.47658e-06 -2.41133e-11 0.0117328 1.3362e-06 2.15682e-12 0.0116115 7.84155e-06 1.99718e-11 0.011526 1.18028e-05 3.18044e-11 0.0114631 1.37991e-05 3.94084e-11 0.0114143 1.42994e-05 4.33043e-11 0.0113747 1.3712e-05 4.47042e-11 0.0113415 1.24328e-05 4.56724e-11 0.0113135 1.07944e-05 4.56503e-11 0.0112898 9.04186e-06 4.51631e-11 0.0112701 7.34575e-06 4.44807e-11 0.0112539 5.81094e-06 4.37658e-11 0.0112408 4.48991e-06 4.31017e-11 0.0112304 3.39704e-06 4.25339e-11 0.0112224 2.52189e-06 4.2071e-11 0.0112162 1.84013e-06 4.17064e-11 0.0112116 1.32151e-06 4.14358e-11 0.0112082 9.35125e-07 4.12247e-11 0.0112057 6.52697e-07 4.10904e-11 0.0112039 4.49662e-07 4.09638e-11 0.0112027 3.05809e-07 4.09401e-11 0.0112018 2.0592e-07 4.07991e-11 1.33887e-07 4.09502e-11 0.0238473 0.0185329 -1.15938e-10 0.0230819 0.0166198 -1.18809e-10 0.0223748 0.0148838 -1.01477e-10 0.0215886 0.0132976 -6.482e-11 0.0206588 0.0117494 -4.7382e-11 0.0196616 0.0102504 -1.70595e-11 0.0187024 0.00885538 2.40972e-11 0.017823 0.00761043 4.13979e-11 0.0170293 0.00652944 4.79048e-11 0.0163099 0.00559758 6.05244e-11 0.0156646 0.00478721 7.09184e-11 0.0150975 0.00408376 8.70387e-11 0.0145999 0.00346998 1.02291e-10 0.0141679 0.00293437 1.14768e-10 0.0138012 0.00246518 1.23695e-10 0.0134967 0.0020533 1.29648e-10 0.0132499 0.00169003 1.31611e-10 0.0130549 0.00136882 1.3102e-10 0.0129037 0.00108287 1.30893e-10 0.0127894 0.000825965 1.27448e-10 0.0127122 0.000595347 1.27152e-10 0.0126728 0.000387612 1.22675e-10 0.0126701 0.000202268 1.18406e-10 0.012707 3.63717e-05 1.05393e-10 0.0127925 -0.00011528 9.62448e-11 0.0129172 -0.000246755 8.08338e-11 0.0130769 -0.000362493 5.93781e-11 0.0132597 -0.00046424 4.01938e-11 0.0134562 -0.000554693 7.56683e-12 0.0136651 -0.000632237 -2.13335e-12 0.0138809 -0.000702336 -1.72193e-11 0.014115 -0.000769638 -2.47834e-11 0.0143647 -0.000824279 -5.76868e-11 0.0146199 -0.000862246 -6.51923e-11 0.0148745 -0.000890672 -7.03102e-11 0.0151426 -0.000919298 -9.46225e-11 0.015428 -0.000939703 -9.0791e-11 0.0157179 -0.000943378 -9.13929e-11 0.0160087 -0.000944219 -7.95275e-11 0.0162949 -0.000936982 -7.42038e-11 0.0165777 -0.000926652 -6.64875e-11 0.0168561 -0.000913566 -5.5833e-11 0.0171289 -0.000899458 -5.57112e-11 0.0173976 -0.000885132 -5.30084e-11 0.017668 -0.000871453 -6.02372e-11 0.0179426 -0.000859351 -6.90219e-11 0.0182204 -0.000849187 -8.46078e-11 0.0184962 -0.000841326 -1.08349e-10 0.0187586 -0.000833526 -1.09704e-10 0.0190022 -0.000824557 -1.17765e-10 0.0192248 -0.000817838 -8.75068e-11 0.0194112 -0.000810691 -1.22653e-10 0.0195535 -0.0008007 -1.67534e-10 0.0196752 -0.000786537 -1.3212e-10 0.0197987 -0.000773542 -1.36694e-10 0.0199353 -0.000758084 -1.51844e-10 0.0201162 -0.000737295 -1.30104e-10 0.0203595 -0.000717892 -1.33371e-10 0.0206238 -0.00070402 -1.10252e-10 0.0208509 -0.000687751 -1.11647e-10 0.0210159 -0.000667003 -1.16884e-10 0.0211317 -0.000641314 -1.24657e-10 0.0212167 -0.000611136 -1.26605e-10 0.0212707 -0.000577709 -1.3322e-10 0.0212801 -0.000542466 -1.49286e-10 0.0212243 -0.000506239 -1.80014e-10 0.0210758 -0.000470078 -2.4057e-10 0.0207545 -0.00043128 -3.91133e-10 0.0199278 -0.000386984 -7.25904e-10 0.018818 -0.000326949 -7.60694e-10 0.0175095 -0.000262749 -7.37099e-10 0.0161611 -0.000199579 -6.46105e-10 0.0149348 -0.000142937 -5.03751e-10 0.0139248 -9.63981e-05 -3.56152e-10 0.0131522 -6.06227e-05 -2.32064e-10 0.012591 -3.4319e-05 -1.41442e-10 0.012198 -1.54768e-05 -7.48743e-11 0.0119292 -2.32354e-06 -2.80733e-11 0.0117462 6.52448e-06 -4.14637e-14 0.01162 1.21404e-05 1.87526e-11 0.0115306 1.52773e-05 3.11172e-11 0.0114647 1.65256e-05 3.89874e-11 0.0114137 1.63747e-05 4.29519e-11 0.0113726 1.52447e-05 4.43645e-11 0.0113386 1.3536e-05 4.53873e-11 0.0113102 1.15692e-05 4.53875e-11 0.0112866 9.57421e-06 4.49276e-11 0.0112672 7.70441e-06 4.42781e-11 0.0112513 6.04835e-06 4.3598e-11 0.0112387 4.64454e-06 4.29676e-11 0.0112287 3.49616e-06 4.24298e-11 0.011221 2.58441e-06 4.19923e-11 0.0112152 1.87884e-06 4.16483e-11 0.0112108 1.34498e-06 4.13933e-11 0.0112076 9.49002e-07 4.11947e-11 0.0112053 6.60567e-07 4.10701e-11 0.0112037 4.53958e-07 4.09449e-11 0.0112025 3.07991e-07 4.09313e-11 0.0112017 2.06896e-07 4.07939e-11 1.34228e-07 4.09478e-11 0.0251602 0.0197413 -2.32796e-10 0.0240982 0.0176285 -1.68229e-10 0.023198 0.0157287 -1.59257e-10 0.0223702 0.014068 -9.7949e-11 0.0215268 0.0125241 -5.16204e-11 0.0206296 0.0110868 -1.83611e-11 0.0196762 0.00972429 3.10155e-12 0.0187435 0.00846615 2.69242e-11 0.0178968 0.00734146 4.90783e-11 0.0171499 0.00635947 6.09809e-11 0.0164838 0.00550447 7.21806e-11 0.015881 0.00475727 8.3232e-11 0.0153407 0.00409872 9.57722e-11 0.0148645 0.00351798 1.07582e-10 0.0144521 0.00300445 1.16625e-10 0.0141025 0.00255099 1.22602e-10 0.0138145 0.00214808 1.2559e-10 0.0135857 0.00178947 1.26927e-10 0.0134049 0.00146731 1.27825e-10 0.0132654 0.00117632 1.27688e-10 0.0131645 0.000912233 1.27828e-10 0.0131014 0.000671936 1.25381e-10 0.0130786 0.000452662 1.20664e-10 0.0131011 0.000254945 1.17088e-10 0.0131577 7.38517e-05 9.90252e-11 0.0132555 -9.3491e-05 8.84047e-11 0.0133889 -0.000241807 7.10131e-11 0.013553 -0.000373615 5.32196e-11 0.0137342 -0.000491315 2.73475e-11 0.0139292 -0.000595263 1.06117e-11 0.0141426 -0.000687407 -1.63777e-11 0.0143545 -0.00076623 -3.46591e-11 0.0145667 -0.000837115 -3.84545e-11 0.0148036 -0.000902984 -4.7557e-11 0.0150621 -0.000954854 -6.17379e-11 0.0153233 -0.000988548 -8.91407e-11 0.0155884 -0.00100769 -8.49527e-11 0.0158672 -0.0010278 -1.06113e-10 0.0161662 -0.00104007 -9.77086e-11 0.0164675 -0.00103498 -1.08677e-10 0.0167629 -0.00102249 -9.71946e-11 0.0170496 -0.00100454 -9.23123e-11 0.0173291 -0.000981958 -9.86024e-11 0.0176039 -0.000956902 -1.06495e-10 0.0178743 -0.000932264 -1.12581e-10 0.0181449 -0.000909357 -1.23541e-10 0.0184198 -0.000889299 -1.21962e-10 0.0186944 -0.0008722 -1.40479e-10 0.0189613 -0.000857224 -1.37225e-10 0.0192145 -0.000844348 -1.33136e-10 0.0194462 -0.000830649 -1.20226e-10 0.0196465 -0.000816264 -1.32027e-10 0.0198052 -0.000802406 -1.59155e-10 0.0199291 -0.00078628 -1.52614e-10 0.0200434 -0.000768743 -1.08459e-10 0.0201611 -0.000751828 -1.38502e-10 0.0203047 -0.000729604 -1.35735e-10 0.0205091 -0.000704338 -9.65218e-11 0.0207597 -0.000684473 -9.25008e-11 0.0209918 -0.000667369 -1.26919e-10 0.0211586 -0.000646427 -1.30581e-10 0.0212589 -0.000620741 -1.33508e-10 0.0213211 -0.000590052 -1.34671e-10 0.0213586 -0.000554917 -1.38683e-10 0.0213688 -0.000516251 -1.499e-10 0.0213307 -0.000475426 -1.75348e-10 0.0212041 -0.000433093 -2.31074e-10 0.0208989 -0.000390276 -3.46291e-10 0.0200659 -0.000344782 -6.16723e-10 0.0189452 -0.000290925 -7.18634e-10 0.0176271 -0.000234102 -7.40574e-10 0.0162646 -0.000176886 -6.66821e-10 0.0150204 -0.000124778 -5.27301e-10 0.0139922 -8.16924e-05 -3.75307e-10 0.0132033 -4.85592e-05 -2.4564e-10 0.0126289 -2.43184e-05 -1.50181e-10 0.0122254 -7.1235e-06 -8.07985e-11 0.0119484 4.63891e-06 -3.16187e-11 0.011759 1.22736e-05 -2.1289e-12 0.0116278 1.67849e-05 1.76985e-11 0.0115343 1.89323e-05 3.04065e-11 0.0114654 1.93165e-05 3.88381e-11 0.0114123 1.84369e-05 4.22073e-11 0.0113699 1.67209e-05 4.42581e-11 0.0113352 1.45631e-05 4.51078e-11 0.0113066 1.22631e-05 4.51164e-11 0.0112832 1.00298e-05 4.46846e-11 0.011264 7.99497e-06 4.40694e-11 0.0112486 6.22819e-06 4.34255e-11 0.0112364 4.75218e-06 4.283e-11 0.0112269 3.55806e-06 4.23231e-11 0.0112196 2.61815e-06 4.19117e-11 0.0112141 1.8958e-06 4.15887e-11 0.01121 1.35233e-06 4.13504e-11 0.0112071 9.51116e-07 4.11636e-11 0.0112049 6.60113e-07 4.10479e-11 0.0112034 4.52346e-07 4.09336e-11 0.0112023 3.06073e-07 4.09202e-11 0.0112015 2.05071e-07 4.07863e-11 1.3268e-07 4.09443e-11 0.026348 0.020967 -1.17301e-10 0.0252815 0.018803 -3.95934e-10 0.0242744 0.0167779 -2.67647e-10 0.0233392 0.0149743 -1.86173e-10 0.0224252 0.0133743 -1.21166e-10 0.0215149 0.0119249 -5.4758e-11 0.0206061 0.0105817 -2.73948e-12 0.019707 0.00933597 2.21696e-11 0.0188486 0.00819368 3.61842e-11 0.018058 0.00716307 5.1805e-11 0.0173468 0.00625385 6.32325e-11 0.0167085 0.00545608 7.88653e-11 0.0161326 0.00475198 8.80974e-11 0.0156182 0.00412795 9.80519e-11 0.0151685 0.00357297 1.05998e-10 0.0147826 0.00307931 1.13359e-10 0.0144609 0.00263852 1.17864e-10 0.0141946 0.00224375 1.23258e-10 0.0139814 0.00188642 1.25975e-10 0.0138152 0.00156282 1.27696e-10 0.0136921 0.0012661 1.29039e-10 0.0136138 0.000995417 1.28848e-10 0.0135771 0.000746759 1.29395e-10 0.013582 0.000518453 1.20066e-10 0.013628 0.000309249 1.16707e-10 0.0137023 0.000115792 1.00336e-10 0.013809 -6.43312e-05 8.59302e-11 0.013949 -0.000228935 6.88955e-11 0.014109 -0.000376159 5.035e-11 0.014281 -0.000508013 3.3196e-11 0.0144668 -0.000625578 8.90376e-12 0.0146662 -0.000729275 -6.18726e-12 0.0148658 -0.000820416 -3.47775e-11 0.015061 -0.000895841 -3.80827e-11 0.0152748 -0.000965544 -4.50343e-11 0.0155074 -0.00102734 -5.52896e-11 0.0157655 -0.00107205 -6.81104e-11 0.0160339 -0.00109867 -8.50112e-11 0.0163025 -0.00110697 -8.4645e-11 0.0165891 -0.00111528 -8.78567e-11 0.0168785 -0.00111525 -9.87097e-11 0.0171705 -0.0011029 -1.14937e-10 0.0174559 -0.00107888 -1.42305e-10 0.0177358 -0.00104874 -1.46667e-10 0.0180163 -0.00101478 -1.59671e-10 0.0182966 -0.00098071 -1.55456e-10 0.0185753 -0.000947253 -1.60085e-10 0.0188551 -0.000916059 -1.66902e-10 0.0191305 -0.000889037 -1.4312e-10 0.0193901 -0.000864424 -1.26564e-10 0.019629 -0.000841764 -1.30022e-10 0.019843 -0.000820862 -1.23439e-10 0.0200172 -0.000800588 -1.32194e-10 0.0201506 -0.000778225 -1.36364e-10 0.0202645 -0.000755851 -1.06546e-10 0.0203743 -0.000734765 -1.12929e-10 0.0204901 -0.00071223 -1.36054e-10 0.0206495 -0.000683683 -9.7261e-11 0.0208729 -0.000656841 -6.60856e-11 0.0211075 -0.000637094 -1.29809e-10 0.0212897 -0.000615876 -1.32583e-10 0.0213959 -0.00059117 -1.31627e-10 0.0214428 -0.00056197 -1.31927e-10 0.021457 -0.00052787 -1.34013e-10 0.0214549 -0.000488829 -1.41061e-10 0.0214228 -0.000445506 -1.61535e-10 0.021315 -0.000399398 -2.05665e-10 0.0210223 -0.000352207 -3.09861e-10 0.0201777 -0.000304804 -5.40068e-10 0.0190567 -0.00025739 -7.03727e-10 0.0177348 -0.000206259 -7.58091e-10 0.0163612 -0.000153514 -6.94121e-10 0.0151009 -0.000105184 -5.53442e-10 0.0140556 -6.53575e-05 -3.95169e-10 0.0132513 -3.5005e-05 -2.5962e-10 0.0126642 -1.30658e-05 -1.59404e-10 0.0122504 2.17454e-06 -8.68693e-11 0.0119654 1.22668e-05 -3.51621e-11 0.0117697 1.84316e-05 -4.18269e-12 0.0116335 2.16452e-05 1.66135e-11 0.0115363 2.26608e-05 2.9879e-11 0.0114647 2.20825e-05 3.85417e-11 0.0114097 2.04196e-05 4.18013e-11 0.0113661 1.80926e-05 4.39142e-11 0.011331 1.5479e-05 4.47993e-11 0.0113025 1.28514e-05 4.48315e-11 0.0112793 1.03917e-05 4.44301e-11 0.0112606 8.20624e-06 4.38519e-11 0.0112458 6.3432e-06 4.32465e-11 0.0112341 4.8083e-06 4.26877e-11 0.0112251 3.57996e-06 4.22133e-11 0.0112182 2.62149e-06 4.1829e-11 0.0112131 1.8901e-06 4.15278e-11 0.0112092 1.34309e-06 4.1306e-11 0.0112065 9.41314e-07 4.11324e-11 0.0112045 6.51159e-07 4.1026e-11 0.0112031 4.44856e-07 4.09183e-11 0.0112021 3.00121e-07 4.09098e-11 0.0112014 2.00492e-07 4.07796e-11 1.29354e-07 4.09413e-11 0.0277492 0.0216761 3.47687e-11 0.0265585 0.0201091 -4.1164e-10 0.0253667 0.0179884 -3.10856e-10 0.0243277 0.016022 -2.21597e-10 0.0234175 0.0143111 -1.51373e-10 0.0225407 0.0128184 -8.28344e-11 0.0216526 0.0114573 -2.86296e-11 0.0207582 0.0102121 1.17226e-11 0.0198577 0.00906062 3.19008e-11 0.0189987 0.0079967 4.7105e-11 0.0182282 0.00703544 5.94964e-11 0.0175497 0.00617776 7.25277e-11 0.0169476 0.00542618 8.37637e-11 0.0164108 0.00475989 9.18175e-11 0.0159363 0.00416776 9.91319e-11 0.0155252 0.00363674 1.0642e-10 0.0151733 0.00316081 1.12507e-10 0.0148784 0.00272999 1.18291e-10 0.0146359 0.00233985 1.23715e-10 0.0144416 0.00198277 1.29135e-10 0.0142972 0.00165613 1.33889e-10 0.0142002 0.00135557 1.35157e-10 0.014151 0.00107886 1.3564e-10 0.0141442 0.000823241 1.32651e-10 0.0141773 0.000586698 1.24868e-10 0.0142437 0.000367536 1.1636e-10 0.0143317 0.000163292 9.94691e-11 0.0144425 -2.61825e-05 9.28411e-11 0.014581 -0.000205316 7.79248e-11 0.0147327 -0.000365764 6.1928e-11 0.0148903 -0.000510117 4.32422e-11 0.015061 -0.000638903 2.73176e-11 0.0152358 -0.000753349 9.25883e-12 0.0154092 -0.000853004 -4.83437e-13 0.015594 -0.000937469 -2.48277e-11 0.0157844 -0.00100816 -2.81016e-11 0.0159855 -0.0010753 -3.48934e-11 0.0162135 -0.00112808 -4.85181e-11 0.016468 -0.00116318 -7.2484e-11 0.0167392 -0.00117903 -6.85104e-11 0.0170099 -0.00118215 -9.02187e-11 0.0172745 -0.00117205 -8.6318e-11 0.017544 -0.00116152 -9.37293e-11 0.0178169 -0.00113945 -1.10793e-10 0.0180914 -0.00110452 -1.01969e-10 0.0183717 -0.00106582 -8.91293e-11 0.0186607 -0.00102356 -9.44976e-11 0.0189527 -0.000981386 -1.05847e-10 0.0192419 -0.000939872 -8.77955e-11 0.0195207 -0.000900699 -9.99021e-11 0.019778 -0.00086432 -1.05481e-10 0.0200035 -0.000831293 -1.0499e-10 0.0201954 -0.000800871 -1.0847e-10 0.02035 -0.000772244 -1.15758e-10 0.0204746 -0.000740481 -9.63807e-11 0.020588 -0.000711084 -8.62413e-11 0.0206929 -0.000685134 -1.00947e-10 0.0208105 -0.000655569 -9.09034e-11 0.0209861 -0.000622363 -7.54907e-11 0.0212093 -0.000595116 -8.05738e-11 0.0214069 -0.000573295 -1.19433e-10 0.0215316 -0.000548659 -1.14878e-10 0.0215837 -0.000521399 -1.14664e-10 0.0215836 -0.000490202 -1.17602e-10 0.0215549 -0.000454218 -1.24752e-10 0.0214962 -0.000412991 -1.46905e-10 0.0213797 -0.00036751 -1.82005e-10 0.0210853 -0.00032087 -2.81278e-10 0.0202498 -0.000274392 -5.02308e-10 0.0191506 -0.000229779 -7.13816e-10 0.0178345 -0.000180188 -7.87794e-10 0.0164535 -0.000129513 -7.27038e-10 0.0151787 -8.39925e-05 -5.8275e-10 0.014117 -4.72582e-05 -4.14743e-10 0.0132975 -1.98764e-05 -2.74668e-10 0.0126978 -5.76929e-07 -1.68497e-10 0.0122738 1.23643e-05 -9.33717e-11 0.0119807 2.0475e-05 -3.85658e-11 0.0117786 2.49128e-05 -5.96448e-12 0.0116376 2.66334e-05 1.56195e-11 0.0115369 2.63838e-05 2.93042e-11 0.0114626 2.47641e-05 3.82076e-11 0.0114061 2.22735e-05 4.13734e-11 0.0113617 1.93244e-05 4.35141e-11 0.0113263 1.62603e-05 4.4445e-11 0.0112979 1.33194e-05 4.45188e-11 0.0112752 1.0651e-05 4.41598e-11 0.0112571 8.33334e-06 4.36252e-11 0.0112428 6.39109e-06 4.30622e-11 0.0112317 4.81217e-06 4.25424e-11 0.0112232 3.56204e-06 4.21016e-11 0.0112168 2.59503e-06 4.17453e-11 0.011212 1.86249e-06 4.14662e-11 0.0112084 1.31801e-06 4.12618e-11 0.0112059 9.20251e-07 4.11008e-11 0.0112041 6.34354e-07 4.10044e-11 0.0112028 4.3193e-07 4.09033e-11 0.0112019 2.90479e-07 4.08996e-11 0.0112013 1.93435e-07 4.07728e-11 1.24401e-07 4.09382e-11 0.0291085 0.0207363 3.35123e-10 0.0280508 0.0211752 1.23922e-10 0.0267854 0.0193014 -3.19386e-10 0.0255588 0.017248 -2.28784e-10 0.0244808 0.0154035 -1.68701e-10 0.0235263 0.0137993 -9.8169e-11 0.0226367 0.0123781 -3.66809e-11 0.0217743 0.0110943 5.14149e-12 0.020922 0.00991981 3.45504e-11 0.0200721 0.0088463 4.93062e-11 0.0192344 0.007857 5.6809e-11 0.0184693 0.00695359 6.38744e-11 0.0178059 0.00614313 6.8119e-11 0.0172355 0.00542376 8.08121e-11 0.0167401 0.00478879 9.28256e-11 0.0163099 0.0042224 1.01816e-10 0.0159383 0.00371244 1.08488e-10 0.0156214 0.00324921 1.15191e-10 0.0153555 0.00282621 1.22081e-10 0.0151409 0.00243768 1.29344e-10 0.0149755 0.00208066 1.36073e-10 0.0148618 0.00175073 1.40282e-10 0.0147992 0.00144672 1.43281e-10 0.0147825 0.0011648 1.41815e-10 0.0148048 0.000903222 1.38032e-10 0.0148605 0.000659418 1.29673e-10 0.0149425 0.000431619 1.22264e-10 0.0150392 0.00021928 1.0273e-10 0.0151471 2.29723e-05 8.13955e-11 0.0152786 -0.000170756 7.95671e-11 0.0154161 -0.000341501 6.84241e-11 0.0155564 -0.000495576 5.61527e-11 0.0157038 -0.00063326 4.70371e-11 0.0158475 -0.000755653 3.68583e-11 0.0159937 -0.000861486 2.79957e-11 0.0161578 -0.000952583 2.33751e-11 0.0163262 -0.00102728 3.26535e-12 0.016499 -0.00109243 -3.28367e-13 0.0166955 -0.00115104 -7.93043e-12 0.0169182 -0.00119417 -2.49921e-11 0.0171709 -0.00121815 -5.49472e-11 0.0174227 -0.00122557 -6.1867e-11 0.0176712 -0.00121635 -5.75791e-11 0.0179127 -0.00119668 -3.54364e-11 0.0181583 -0.00116853 -6.78728e-11 0.0184194 -0.00113806 -6.65041e-11 0.0186976 -0.00109928 -6.60233e-11 0.0189897 -0.00105269 -6.3931e-11 0.0192889 -0.00100345 -6.41082e-11 0.0195842 -0.000953243 -6.60694e-11 0.019864 -0.000904183 -6.52496e-11 0.0201154 -0.00085688 -6.76467e-11 0.0203292 -0.000812172 -9.53713e-11 0.0205067 -0.00077001 -8.62717e-11 0.020654 -0.000729683 -6.8421e-11 0.0207805 -0.000689357 -6.69139e-11 0.0208917 -0.000653175 -6.45607e-11 0.0209906 -0.000620342 -7.23591e-11 0.0211148 -0.000583284 -7.48894e-11 0.021303 -0.000546753 -5.6016e-11 0.0215097 -0.000518584 -8.78915e-11 0.0216626 -0.000492127 -9.69993e-11 0.0217294 -0.000465399 -9.79148e-11 0.0217215 -0.000437506 -1.00056e-10 0.0216676 -0.000407309 -1.06058e-10 0.0215668 -0.000373025 -1.19962e-10 0.0213941 -0.000333999 -1.58931e-10 0.0210867 -0.000292693 -2.67584e-10 0.0203012 -0.000249747 -5.13167e-10 0.0192379 -0.000203536 -7.36442e-10 0.017931 -0.000152765 -8.17799e-10 0.0165432 -0.000103114 -7.60489e-10 0.0152536 -6.03164e-05 -6.10427e-10 0.0141753 -2.70149e-05 -4.38437e-10 0.0133407 -3.07254e-06 -2.91862e-10 0.0127283 1.31029e-05 -1.77789e-10 0.0122943 2.33314e-05 -9.69733e-11 0.0119932 2.91126e-05 -4.20441e-11 0.0117851 3.15641e-05 -7.774e-12 0.0116395 3.16123e-05 1.43691e-11 0.0115354 2.99838e-05 2.83271e-11 0.011459 2.72681e-05 3.75361e-11 0.0114012 2.3935e-05 4.10203e-11 0.0113562 2.03702e-05 4.31929e-11 0.0113209 1.6875e-05 4.40977e-11 0.0112929 1.36458e-05 4.41943e-11 0.0112707 1.07946e-05 4.38779e-11 0.0112533 8.36847e-06 4.33906e-11 0.0112397 6.36765e-06 4.28729e-11 0.0112292 4.76182e-06 4.23942e-11 0.0112213 3.50363e-06 4.19882e-11 0.0112153 2.53885e-06 4.16608e-11 0.0112109 1.81341e-06 4.14039e-11 0.0112076 1.27763e-06 4.12184e-11 0.0112053 8.88453e-07 4.10667e-11 0.0112036 6.10115e-07 4.09881e-11 0.0112025 4.1397e-07 4.08883e-11 0.0112017 2.7746e-07 4.08882e-11 0.0112011 1.84137e-07 4.07652e-11 1.18021e-07 4.09349e-11 0.0289652 0.0203652 4.51052e-10 0.0292885 0.0206982 2.29686e-10 0.0281248 0.0204326 -9.74683e-12 0.0269549 0.0185913 -3.62683e-10 0.0258294 0.0166598 -2.63963e-10 0.0247747 0.0149214 -1.66649e-10 0.0237839 0.0134026 -8.22016e-11 0.0228463 0.0120438 -2.51257e-11 0.0219569 0.0108188 1.59652e-11 0.021109 0.00970428 3.6624e-11 0.0202981 0.00868761 5.17023e-11 0.01952 0.00776112 5.9675e-11 0.0187922 0.00691295 7.07496e-11 0.0181485 0.00614584 8.08623e-11 0.0176018 0.00545681 8.76838e-11 0.017139 0.00484459 9.44102e-11 0.016747 0.00429576 1.04499e-10 0.0164144 0.00379956 1.14373e-10 0.0161339 0.00334468 1.24756e-10 0.0159031 0.00292633 1.32984e-10 0.0157223 0.00253909 1.4187e-10 0.015593 0.0021809 1.47664e-10 0.0155154 0.00184882 1.5232e-10 0.0154872 0.00154111 1.52078e-10 0.0155 0.00125477 1.50283e-10 0.0155485 0.000987637 1.43655e-10 0.01562 0.000738099 1.35478e-10 0.0157114 0.000503206 1.23653e-10 0.0158191 0.000285012 1.20305e-10 0.0159219 7.88227e-05 8.91241e-11 0.0160345 -0.000118549 8.33693e-11 0.0161519 -0.000298122 7.93117e-11 0.0162702 -0.000459401 7.2569e-11 0.0163884 -0.00060339 6.42307e-11 0.0165013 -0.000730594 5.95436e-11 0.0166194 -0.000841595 4.78929e-11 0.0167556 -0.000936018 4.50599e-11 0.0169002 -0.0010164 2.67648e-11 0.0170507 -0.00107983 2.44074e-11 0.0172236 -0.00114 1.83638e-11 0.0174152 -0.00118909 9.33342e-12 0.0176291 -0.00122105 -9.66489e-12 0.0178405 -0.00123237 -6.70877e-11 0.0180577 -0.00122753 -3.33845e-11 0.0182802 -0.00121285 -3.19408e-11 0.0185098 -0.00118206 -8.39787e-11 0.0187541 -0.00114334 -5.08519e-11 0.0190202 -0.00109991 -4.24704e-11 0.0193077 -0.0010559 -3.50504e-11 0.0196068 -0.00100595 -3.31814e-11 0.0199013 -0.000950768 -2.98354e-11 0.0201768 -0.000892389 -3.73601e-11 0.020422 -0.000835089 -4.00658e-11 0.0206283 -0.000779148 -4.1403e-11 0.0207968 -0.000725403 -4.44774e-11 0.0209418 -0.000674177 -3.24645e-11 0.0210711 -0.000626063 -3.04231e-11 0.0211785 -0.00058272 -3.79207e-11 0.0212745 -0.000541141 -6.11928e-11 0.0214099 -0.000497231 -4.73839e-11 0.0216033 -0.000457879 -4.30345e-11 0.0217839 -0.00042607 -7.71048e-11 0.0218792 -0.000396231 -7.21878e-11 0.0218724 -0.000369695 -7.64469e-11 0.0217921 -0.000345066 -8.15277e-11 0.0216505 -0.000319906 -9.87626e-11 0.0214305 -0.000291811 -1.35067e-10 0.0210886 -0.000258633 -2.63423e-10 0.02037 -0.000218968 -5.81474e-10 0.019335 -0.000171107 -7.75784e-10 0.0180318 -0.000119869 -8.53838e-10 0.0166336 -7.22489e-05 -8.03706e-10 0.0153273 -3.32168e-05 -6.43243e-10 0.0142313 -4.28338e-06 -4.60199e-10 0.0133811 1.54331e-05 -3.03588e-10 0.0127559 2.7865e-05 -1.85966e-10 0.0123118 3.48934e-05 -1.03956e-10 0.0120029 3.7986e-05 -4.43896e-11 0.0117889 3.82061e-05 -9.40974e-12 0.011639 3.64322e-05 1.36255e-11 0.0115321 3.33472e-05 2.79269e-11 0.0114539 2.9509e-05 3.71523e-11 0.0113951 2.53414e-05 4.03555e-11 0.01135 2.11884e-05 4.26885e-11 0.0113149 1.72972e-05 4.36921e-11 0.0112875 1.38154e-05 4.38505e-11 0.0112661 1.08142e-05 4.35877e-11 0.0112494 8.30791e-06 4.31517e-11 0.0112366 6.27183e-06 4.26816e-11 0.0112268 4.65771e-06 4.22455e-11 0.0112194 3.40594e-06 4.18746e-11 0.0112138 2.4544e-06 4.15772e-11 0.0112098 1.74425e-06 4.13408e-11 0.0112068 1.22322e-06 4.11787e-11 0.0112047 8.46952e-07 4.10291e-11 0.0112032 5.79297e-07 4.0974e-11 0.0112022 3.91562e-07 4.08811e-11 0.0112015 2.61513e-07 4.0877e-11 0.011201 1.72947e-07 4.07567e-11 1.10454e-07 4.093e-11 0.0290947 0.0180867 1.13575e-09 0.0296791 0.0200408 3.41171e-10 0.0294067 0.0206928 1.27343e-10 0.0283035 0.0197768 -1.04499e-10 0.0271379 0.0179971 -3.89647e-10 0.0260345 0.0161559 -2.58396e-10 0.025003 0.0145124 -1.37886e-10 0.0240224 0.0130669 -6.53156e-11 0.0230958 0.0117767 -1.79077e-11 0.0222143 0.0106084 1.00841e-11 0.0213798 0.00954631 3.16444e-11 0.0205854 0.00858099 4.85927e-11 0.019841 0.00770086 6.39944e-11 0.019156 0.00690356 7.04819e-11 0.0185506 0.00617968 8.00487e-11 0.0180358 0.00552314 8.38073e-11 0.0176068 0.00492873 9.50728e-11 0.0172508 0.00438986 1.07093e-10 0.0169566 0.00389826 1.20603e-10 0.0167162 0.00344744 1.35016e-10 0.0165257 0.00303029 1.47212e-10 0.0163854 0.00264386 1.54408e-10 0.0162958 0.00228487 1.60124e-10 0.0162542 0.0019512 1.60905e-10 0.0162575 0.00164025 1.60496e-10 0.0162956 0.00135037 1.55241e-10 0.0163611 0.00107869 1.49001e-10 0.0164462 0.000824437 1.40911e-10 0.0165403 0.000585715 1.29234e-10 0.0166443 0.000362366 1.21937e-10 0.0167429 0.00015252 1.02178e-10 0.0168354 -4.37538e-05 9.89339e-11 0.016928 -0.00023104 8.82556e-11 0.0170158 -0.000397163 7.74812e-11 0.0171006 -0.000545293 7.14429e-11 0.017182 -0.000675561 6.46761e-11 0.0172736 -0.000789591 6.25263e-11 0.0173817 -0.000886836 5.19361e-11 0.0175 -0.000970113 5.11849e-11 0.0176398 -0.00103616 2.79778e-11 0.0177905 -0.00109413 2.42248e-11 0.0179458 -0.00114688 1.66723e-11 0.0181128 -0.00118385 8.38955e-13 0.0182802 -0.00120189 -3.54843e-11 0.0184536 -0.00120123 3.54261e-13 0.0186427 -0.00118997 -2.89387e-11 0.0188569 -0.00116495 -3.78123e-11 0.0190981 -0.00112983 -3.45127e-11 0.0193617 -0.00108437 -3.23841e-11 0.0196417 -0.00103338 -2.94886e-11 0.0199296 -0.00097821 -2.73241e-11 0.0202133 -0.000921178 -1.17423e-11 0.0204787 -0.000860396 -1.92999e-12 0.0207123 -0.000795608 3.68263e-12 0.0209084 -0.000729707 6.47923e-12 0.0210726 -0.000666476 5.0937e-12 0.0212186 -0.000606471 1.18919e-11 0.0213481 -0.000551477 1.81456e-11 0.0214497 -0.000499836 -2.19459e-11 0.0215463 -0.000449411 -2.61841e-11 0.0216954 -0.000400387 -4.07284e-12 0.0218872 -0.000358081 -4.04051e-11 0.0220187 -0.000321034 -4.82601e-11 0.0220334 -0.000290706 -5.77624e-11 0.0219456 -0.000267682 -6.71417e-11 0.0217703 -0.000249938 -9.24303e-11 0.0215275 -0.000232717 -1.39784e-10 0.021149 -0.00020981 -2.96533e-10 0.0204718 -0.000175113 -5.89996e-10 0.0194465 -0.000128586 -8.09857e-10 0.018138 -7.93866e-05 -9.02122e-10 0.0167244 -3.58507e-05 -8.2841e-10 0.0153984 -2.25414e-06 -6.65895e-10 0.0142834 2.09715e-05 -4.78634e-10 0.0134171 3.54865e-05 -3.15537e-10 0.0127791 4.34533e-05 -1.93702e-10 0.0123252 4.67763e-05 -1.08317e-10 0.0120089 4.6844e-05 -4.72173e-11 0.0117895 4.4629e-05 -1.10161e-11 0.0116359 4.09178e-05 1.25822e-11 0.0115266 3.63481e-05 2.7117e-11 0.0114471 3.1398e-05 3.65132e-11 0.0113879 2.6434e-05 3.97895e-11 0.0113429 2.17416e-05 4.22215e-11 0.0113084 1.75041e-05 4.32879e-11 0.0112818 1.38155e-05 4.35002e-11 0.0112612 1.07038e-05 4.32918e-11 0.0112454 8.14964e-06 4.29099e-11 0.0112334 6.10391e-06 4.24891e-11 0.0112243 4.50124e-06 4.20971e-11 0.0112175 3.27079e-06 4.17619e-11 0.0112124 2.34354e-06 4.14933e-11 0.0112087 1.65674e-06 4.12825e-11 0.0112061 1.15622e-06 4.11308e-11 0.0112042 7.96948e-07 4.1005e-11 0.0112029 5.42765e-07 4.09473e-11 0.0112019 3.65425e-07 4.08593e-11 0.0112013 2.43129e-07 4.08687e-11 0.0112009 1.60191e-07 4.07522e-11 1.0195e-07 4.09288e-11 0.0284475 0.0114583 3.02077e-09 0.0295846 0.0187254 7.65711e-10 0.0303994 0.0198596 2.16437e-10 0.0296326 0.0205603 4.8352e-11 0.0285553 0.0192099 -3.16037e-10 0.0273694 0.0174794 -3.31909e-10 0.0262568 0.0157388 -2.19339e-10 0.0252216 0.0141664 -1.16631e-10 0.024238 0.0127849 -5.68299e-11 0.0233115 0.0115529 -2.39773e-11 0.0224486 0.0104471 -1.30658e-12 0.0216521 0.00944582 1.80426e-11 0.0209207 0.00853804 3.59631e-11 0.0202517 0.00771015 5.43525e-11 0.0196413 0.00695486 6.64609e-11 0.0190936 0.00626304 8.44009e-11 0.0186124 0.00562899 9.47516e-11 0.0182002 0.00504619 1.08291e-10 0.0178598 0.00450935 1.19291e-10 0.0175884 0.00401547 1.3275e-10 0.017381 0.00356108 1.48328e-10 0.0172311 0.00314226 1.5871e-10 0.0171324 0.00275494 1.65668e-10 0.017081 0.00239522 1.6808e-10 0.017072 0.00205989 1.68026e-10 0.0170999 0.00174656 1.64257e-10 0.0171575 0.00145347 1.58455e-10 0.0172353 0.0011791 1.51269e-10 0.0173253 0.000921717 1.41868e-10 0.0174212 0.000681145 1.31894e-10 0.0175158 0.00045557 1.22187e-10 0.0175996 0.000245522 1.03126e-10 0.0176667 5.02734e-05 8.57524e-11 0.01773 -0.000138498 8.75856e-11 0.0177822 -0.000306596 8.36139e-11 0.0178322 -0.000457166 8.0698e-11 0.017886 -0.000590026 7.26726e-11 0.0179529 -0.00070562 6.78512e-11 0.0180351 -0.000805395 5.45134e-11 0.0181325 -0.000889258 4.43835e-11 0.0182619 -0.0009594 1.88338e-11 0.0183874 -0.00101557 1.55029e-11 0.0185009 -0.00106902 6.87752e-12 0.0186179 -0.00110979 -5.91885e-12 0.0187381 -0.00113438 -2.5006e-11 0.018874 -0.00113935 -6.00771e-11 0.01903 -0.00113054 -6.5034e-11 0.0192235 -0.00111066 -5.11736e-11 0.019455 -0.00107981 -4.70227e-11 0.0197159 -0.00103952 -4.03633e-11 0.0199935 -0.000990904 -3.39869e-11 0.0202739 -0.000933836 -1.89191e-11 0.0205408 -0.000870718 4.59195e-12 0.0207846 -0.000803516 3.39066e-11 0.0209996 -0.000734589 4.37665e-11 0.0211843 -0.000665238 5.61879e-11 0.0213436 -0.000594772 5.66281e-11 0.0214862 -0.000528421 6.54518e-11 0.0216077 -0.000467645 5.15309e-11 0.021702 -0.000409505 1.34512e-11 0.0218058 -0.000351993 2.68799e-11 0.0219666 -0.000298202 5.5005e-12 0.0221297 -0.000251006 -3.02182e-11 0.0221898 -0.000210833 -3.31386e-11 0.0221202 -0.000182517 -6.16792e-11 0.0219348 -0.00016559 -9.22438e-11 0.0216835 -0.000153851 -1.85045e-10 0.0212874 -0.000141428 -3.09089e-10 0.020607 -0.00011638 -5.61781e-10 0.0195735 -7.46873e-05 -8.47822e-10 0.0182496 -3.04497e-05 -9.47655e-10 0.0168146 6.39588e-06 -8.76448e-10 0.0154658 3.24531e-05 -7.00052e-10 0.0143305 4.84463e-05 -4.99789e-10 0.0134477 5.66927e-05 -3.28316e-10 0.0127972 5.94929e-05 -2.01298e-10 0.0123339 5.86619e-05 -1.12694e-10 0.0120109 5.54287e-05 -4.93881e-11 0.0117867 5.06168e-05 -1.24222e-11 0.0116301 4.4927e-05 1.15827e-11 0.011519 3.88789e-05 2.63269e-11 0.0114387 3.28665e-05 3.59087e-11 0.0113795 2.71703e-05 3.91702e-11 0.0113351 2.20047e-05 4.16996e-11 0.0113015 1.74829e-05 4.28509e-11 0.0112758 1.36412e-05 4.31347e-11 0.0112563 1.04628e-05 4.29906e-11 0.0112414 7.89567e-06 4.26674e-11 0.0112302 5.86701e-06 4.22982e-11 0.0112218 4.29584e-06 4.19504e-11 0.0112156 3.10145e-06 4.16525e-11 0.011211 2.20912e-06 4.141e-11 0.0112077 1.55325e-06 4.12267e-11 0.0112054 1.07852e-06 4.10869e-11 0.0112037 7.39888e-07 4.09751e-11 0.0112025 5.01653e-07 4.09217e-11 0.0112017 3.36322e-07 4.08457e-11 0.0112011 2.22875e-07 4.08614e-11 0.0112008 1.46272e-07 4.07476e-11 9.27653e-08 4.09263e-11 0.025767 0.00496305 1.34976e-09 0.0294337 0.0140361 2.04193e-09 0.0300168 0.019041 6.12361e-10 0.030898 0.0196381 1.23955e-10 0.0299572 0.0201878 2.43999e-11 0.0288372 0.0187134 -1.83305e-10 0.0276147 0.0170505 -1.88029e-10 0.0264619 0.0153899 -1.29659e-10 0.0254203 0.0138891 -8.0954e-11 0.0244725 0.0125726 -4.84738e-11 0.0236074 0.011409 -2.83593e-11 0.0228126 0.0103652 -8.46801e-12 0.0220789 0.00942166 1.25494e-11 0.0214017 0.0085606 3.5591e-11 0.0207797 0.00777028 5.46225e-11 0.0202149 0.00704224 7.20241e-11 0.0197102 0.00636862 8.67867e-11 0.0192652 0.00574498 1.0144e-10 0.0188819 0.00516717 1.21061e-10 0.0185647 0.00463225 1.36918e-10 0.0183174 0.00413861 1.50368e-10 0.0181404 0.00368372 1.60759e-10 0.0180267 0.00326402 1.70053e-10 0.017965 0.00287551 1.74829e-10 0.0179457 0.0025146 1.74742e-10 0.0179622 0.00217761 1.71627e-10 0.018009 0.00186243 1.65572e-10 0.0180789 0.00156747 1.58375e-10 0.0181628 0.00129154 1.49139e-10 0.0182512 0.00103335 1.40363e-10 0.0183368 0.000792226 1.32358e-10 0.0184143 0.00056735 1.22134e-10 0.0184775 0.00035822 1.17855e-10 0.018517 0.000164165 1.06473e-10 0.01854 -1.06995e-05 9.90541e-11 0.0185613 -0.00018866 8.79998e-11 0.018582 -0.000338458 8.22487e-11 0.0186124 -0.00047176 7.73839e-11 0.0186545 -0.000588606 6.63639e-11 0.0187137 -0.000690002 5.13338e-11 0.0187962 -0.000775497 2.98113e-11 0.0189035 -0.000848911 1.58412e-11 0.0189978 -0.000906658 -1.28312e-11 0.019066 -0.000956909 -1.73166e-11 0.0191368 -0.00100079 -2.5214e-11 0.0192162 -0.00103059 -3.96117e-11 0.0193154 -0.00104304 -6.52988e-11 0.019448 -0.00103822 -5.1573e-11 0.0196299 -0.00102406 -5.83275e-11 0.019851 -0.000998811 -5.62817e-11 0.0200979 -0.000963144 -6.51598e-11 0.0203595 -0.000917416 -3.3397e-11 0.0206211 -0.000862764 1.11367e-11 0.0208678 -0.000800641 4.29365e-11 0.0210893 -0.000732112 6.33048e-11 0.0212808 -0.000659592 8.19268e-11 0.0214485 -0.000586127 9.90862e-11 0.0215989 -0.000514222 1.04653e-10 0.0217309 -0.000445381 1.05241e-10 0.0218361 -0.000379901 6.67207e-11 0.0219234 -0.000316759 6.77679e-11 0.0220376 -0.000255782 6.313e-11 0.0221979 -0.000198584 2.48178e-11 0.022304 -0.000146073 1.59883e-11 0.0222842 -0.000104015 -1.00132e-11 0.0221354 -7.69421e-05 -5.74316e-11 0.0218707 -6.42034e-05 -1.59066e-10 0.0214899 -5.55168e-05 -3.07302e-10 0.0207792 -4.21454e-05 -6.47329e-10 0.019716 -9.48674e-06 -9.08044e-10 0.0183641 2.6494e-05 -1.00126e-09 0.0169011 5.39137e-05 -9.1982e-10 0.0155268 7.02205e-05 -7.30168e-10 0.0143704 7.7482e-05 -5.18962e-10 0.0134714 7.85088e-05 -3.39901e-10 0.012809 7.55553e-05 -2.0822e-10 0.0123372 7.02138e-05 -1.16462e-10 0.0120082 6.34736e-05 -5.16057e-11 0.0117802 5.59908e-05 -1.38413e-11 0.0116213 4.83282e-05 1.05028e-11 0.0115092 4.08588e-05 2.56804e-11 0.0114288 3.38616e-05 3.50064e-11 0.0113702 2.75205e-05 3.8795e-11 0.0113267 2.19637e-05 4.11525e-11 0.0112941 1.72292e-05 4.2402e-11 0.0112696 1.32933e-05 4.27669e-11 0.0112512 1.00953e-05 4.26904e-11 0.0112374 7.55104e-06 4.24273e-11 0.0112271 5.56637e-06 4.21106e-11 0.0112194 4.04637e-06 4.18071e-11 0.0112138 2.90213e-06 4.15447e-11 0.0112097 2.05464e-06 4.13322e-11 0.0112068 1.43653e-06 4.1168e-11 0.0112047 9.92257e-07 4.10476e-11 0.0112032 6.7737e-07 4.09484e-11 0.0112022 4.57134e-07 4.09018e-11 0.0112015 3.05131e-07 4.08317e-11 0.011201 2.01349e-07 4.08527e-11 0.0112006 1.31604e-07 4.07423e-11 8.31556e-08 4.0924e-11 0.0203136 0.0020169 1.28079e-09 0.0266061 0.00617813 3.44157e-09 0.0299769 0.0150422 1.56774e-09 0.0303968 0.0191057 4.62041e-10 0.0312692 0.019279 4.94071e-11 0.0302817 0.0197367 6.50383e-12 0.0291532 0.018282 -1.30581e-10 0.0279229 0.0167004 -1.17524e-10 0.0267497 0.0151154 -7.85411e-11 0.0257058 0.013687 -5.48218e-11 0.0247829 0.0124356 -4.06908e-11 0.023965 0.0113319 -2.61091e-11 0.0232323 0.0103467 -8.29171e-12 0.0225611 0.00945273 1.49433e-11 0.0219405 0.00863008 4.04018e-11 0.0213659 0.00786549 6.39001e-11 0.0208398 0.00715079 8.40262e-11 0.0203688 0.00648378 1.01594e-10 0.019956 0.00586238 1.19291e-10 0.019609 0.00528578 1.36871e-10 0.0193336 0.00475374 1.54193e-10 0.0191288 0.0042641 1.70292e-10 0.0189902 0.00381292 1.78429e-10 0.0189101 0.00339532 1.81226e-10 0.0188778 0.00300688 1.81431e-10 0.0188831 0.00264489 1.7722e-10 0.018917 0.00230666 1.70605e-10 0.0189741 0.00199037 1.62677e-10 0.0190471 0.00169489 1.54755e-10 0.0191261 0.00141894 1.46041e-10 0.0192022 0.00116176 1.38387e-10 0.0192675 0.000922027 1.29562e-10 0.0193175 0.0006997 1.25696e-10 0.0193521 0.000493037 1.15534e-10 0.0193717 0.000303832 1.04555e-10 0.0193649 0.000127641 1.04879e-10 0.0193504 -3.12092e-05 9.23438e-11 0.0193475 -0.000187381 7.82914e-11 0.0193561 -0.000321419 6.9016e-11 0.0193755 -0.000438402 5.13693e-11 0.0194155 -0.000540571 3.60361e-11 0.0194801 -0.00062923 1.06731e-11 0.0195513 -0.000704758 -3.77261e-12 0.019605 -0.000767029 -4.52014e-11 0.0196331 -0.0008151 -4.98122e-11 0.0196649 -0.000861191 -6.09086e-11 0.0197111 -0.000896159 -6.93021e-11 0.0197832 -0.000915093 -9.45724e-11 0.0199022 -0.000916457 -1.17603e-10 0.0200771 -0.000906243 -7.5189e-11 0.020288 -0.000887807 -9.3015e-11 0.020515 -0.000857147 -4.27475e-11 0.0207497 -0.000816284 -1.33993e-11 0.0209793 -0.000766428 1.11842e-11 0.0211914 -0.000707998 4.1182e-11 0.021381 -0.000642334 8.34149e-11 0.0215477 -0.000572581 1.14689e-10 0.0216955 -0.000500792 1.33158e-10 0.0218273 -0.000429749 1.48164e-10 0.0219372 -0.000361396 1.19525e-10 0.0220222 -0.00029495 1.18679e-10 0.0221084 -0.000229856 8.64927e-11 0.0222312 -0.000166862 9.76259e-11 0.0223586 -0.000106353 4.89628e-11 0.0223986 -5.09438e-05 3.53e-11 0.0223077 -6.88763e-06 -1.52034e-11 0.0220767 2.10889e-05 -1.0547e-10 0.0217123 3.42377e-05 -2.76778e-10 0.0209876 4.28373e-05 -5.42496e-10 0.0198706 6.34924e-05 -1.0261e-09 0.0184767 8.97353e-05 -1.07451e-09 0.0169798 0.000105126 -9.68539e-10 0.0155783 0.00010974 -7.60712e-10 0.014401 0.000107093 -5.37796e-10 0.0134868 0.000100229 -3.50819e-10 0.0128137 9.11564e-05 -2.14455e-10 0.0123346 8.10883e-05 -1.19891e-10 0.0120008 7.07263e-05 -5.36959e-11 0.01177 6.0595e-05 -1.51067e-11 0.0116098 5.10108e-05 9.53726e-12 0.0114974 4.22162e-05 2.48174e-11 0.0114176 3.43472e-05 3.42701e-11 0.0113599 2.74698e-05 3.8759e-11 0.0113177 2.16136e-05 4.0258e-11 0.0112865 1.67455e-05 4.19401e-11 0.0112634 1.27783e-05 4.24026e-11 0.0112462 9.60887e-06 4.2395e-11 0.0112334 7.12369e-06 4.21927e-11 0.011224 5.20927e-06 4.19283e-11 0.0112171 3.7591e-06 4.16687e-11 0.0112121 2.67799e-06 4.14411e-11 0.0112084 1.88418e-06 4.12575e-11 0.0112058 1.30973e-06 4.11126e-11 0.011204 8.99783e-07 4.10093e-11 0.0112027 6.11121e-07 4.09225e-11 0.0112018 4.10443e-07 4.08843e-11 0.0112012 2.7272e-07 4.08192e-11 0.0112008 1.79178e-07 4.08435e-11 0.0112005 1.16616e-07 4.07364e-11 7.33859e-08 4.09225e-11 0.0181601 0.000768099 7.34364e-10 0.0212084 0.00251163 1.79165e-09 0.0274854 0.00685011 3.90791e-09 0.0303932 0.0155597 1.47303e-09 0.0306879 0.018814 3.3589e-10 0.0314303 0.0188699 1.663e-10 0.0304435 0.0192747 3.44865e-12 0.0293552 0.0178909 -1.46781e-10 0.0281641 0.0164009 -7.80194e-11 0.027031 0.0148977 -4.78374e-11 0.0260329 0.0135582 -4.61584e-11 0.0251748 0.0123841 -4.76158e-11 0.0244313 0.0113459 -3.81448e-11 0.0237677 0.0104074 -1.58913e-11 0.0231499 0.00954275 1.66672e-11 0.0225624 0.00873439 5.07274e-11 0.0220101 0.00797391 7.9564e-11 0.0215045 0.00725949 1.03044e-10 0.0210594 0.00659331 1.23158e-10 0.0206846 0.00597634 1.41933e-10 0.0203857 0.00540728 1.57903e-10 0.0201639 0.0048833 1.7143e-10 0.020011 0.00440043 1.81406e-10 0.0199151 0.00395345 1.8656e-10 0.0198659 0.00353754 1.85639e-10 0.0198556 0.00314943 1.80715e-10 0.0198757 0.00278699 1.73648e-10 0.0199168 0.00244842 1.65535e-10 0.0199733 0.00213245 1.57735e-10 0.020039 0.00183803 1.49541e-10 0.0201035 0.00156425 1.42705e-10 0.0201572 0.00130969 1.35501e-10 0.0201945 0.00107337 1.31771e-10 0.0202141 0.000854327 1.25193e-10 0.020216 0.000652515 1.23559e-10 0.0202037 0.000466275 1.16941e-10 0.0201841 0.000296663 1.08357e-10 0.0201541 0.000139465 9.71019e-11 0.020127 2.78791e-06 7.58025e-11 0.0201107 -0.000136107 5.50628e-11 0.02011 -0.000256199 2.67223e-11 0.0201317 -0.000360204 -2.77104e-12 0.020168 -0.000451214 -3.39567e-11 0.0201924 -0.000529671 -6.45216e-11 0.020202 -0.000596171 -9.22518e-11 0.020203 -0.000648605 -1.0984e-10 0.0202035 -0.000692768 -1.17008e-10 0.0202135 -0.000732451 -1.17514e-10 0.0202749 -0.000758298 -2.66318e-10 0.0203879 -0.000768069 1.56945e-11 0.02056 -0.00076302 -6.0485e-11 0.0207557 -0.000751091 -8.4725e-11 0.0209549 -0.000726144 1.62994e-11 0.0211539 -0.000691137 4.91545e-12 0.0213432 -0.000647827 1.77072e-11 0.0215132 -0.000595976 7.50749e-11 0.021663 -0.000537058 1.21337e-10 0.0217957 -0.000474259 1.47482e-10 0.0219142 -0.000409459 1.64777e-10 0.0220157 -0.000344533 1.47611e-10 0.0220957 -0.000279912 1.3566e-10 0.0221643 -0.000215075 1.18874e-10 0.0222523 -0.000151144 1.19302e-10 0.0223711 -8.76101e-05 7.50458e-11 0.0224482 -2.42166e-05 6.2202e-11 0.0224233 3.49693e-05 1.57346e-11 0.0222609 8.21436e-05 -5.9353e-11 0.0219172 0.000113858 -2.12671e-10 0.0213075 0.000131353 -5.21569e-10 0.0200431 0.000143679 -1.16731e-09 0.0185817 0.000157081 -1.16665e-09 0.0170454 0.000157813 -1.01745e-09 0.0156168 0.000149328 -7.88929e-10 0.0144202 0.000136188 -5.54106e-10 0.0134925 0.000121197 -3.6073e-10 0.0128104 0.00010585 -2.19226e-10 0.0123255 9.09219e-05 -1.22734e-10 0.0119883 7.69892e-05 -5.55372e-11 0.011756 6.42626e-05 -1.62495e-11 0.0115955 5.28854e-05 8.70002e-12 0.0114838 4.28985e-05 2.39094e-11 0.0114051 3.42953e-05 3.36621e-11 0.011349 2.70073e-05 3.82278e-11 0.0113084 2.09594e-05 3.98108e-11 0.0112788 1.60407e-05 4.15121e-11 0.0112571 1.21072e-05 4.20454e-11 0.0112412 9.01497e-06 4.21068e-11 0.0112296 6.62404e-06 4.19652e-11 0.0112211 4.80469e-06 4.17527e-11 0.0112149 3.4414e-06 4.15359e-11 0.0112104 2.43486e-06 4.13425e-11 0.0112072 1.70223e-06 4.11861e-11 0.011205 1.17624e-06 4.10607e-11 0.0112034 8.0358e-07 4.09728e-11 0.0112023 5.42923e-07 4.08987e-11 0.0112016 3.62835e-07 4.08648e-11 0.011201 2.39954e-07 4.08085e-11 0.0112007 1.56946e-07 4.08363e-11 0.0112005 1.01711e-07 4.07305e-11 6.37305e-08 4.09198e-11 0.0173275 0.000281258 2.9717e-10 0.018554 0.000940352 8.91604e-10 0.0220241 0.00266896 1.7771e-09 0.027844 0.00771183 3.78134e-09 0.0304971 0.015571 1.36032e-09 0.0308436 0.0184313 3.48063e-10 0.0315414 0.0185036 2.13392e-10 0.0305975 0.0188516 2.31255e-11 0.0295607 0.0175747 -1.29273e-10 0.0284485 0.0161877 -9.31603e-11 0.0274181 0.0147885 -4.37868e-11 0.0265158 0.0135436 -4.34554e-11 0.0257346 0.0124346 -4.84083e-11 0.0250377 0.0114315 -3.48002e-11 0.0243944 0.0105064 -3.72874e-12 0.0237821 0.00964231 3.77105e-11 0.023197 0.00883052 7.6795e-11 0.0226577 0.00806893 1.07003e-10 0.0221852 0.00735934 1.30573e-10 0.0217917 0.00670371 1.49995e-10 0.0214787 0.00610017 1.66177e-10 0.0212416 0.00554334 1.7836e-10 0.0210745 0.0050285 1.8666e-10 0.0209651 0.00455122 1.88316e-10 0.0209017 0.00410669 1.86403e-10 0.0208738 0.00369187 1.81003e-10 0.0208751 0.0033039 1.75788e-10 0.0209 0.00294201 1.66926e-10 0.0209382 0.00260475 1.60355e-10 0.0209852 0.00229114 1.53155e-10 0.0210356 0.00200014 1.47831e-10 0.021077 0.0017305 1.42057e-10 0.021101 0.00148024 1.39424e-10 0.0211065 0.00124821 1.3634e-10 0.0210932 0.00103373 1.34658e-10 0.0210636 0.000836042 1.31351e-10 0.0210244 0.000654516 1.28251e-10 0.0209846 0.000488625 1.17661e-10 0.0209459 0.000337323 1.07568e-10 0.0209068 0.000199109 9.33914e-11 0.0208714 7.34246e-05 6.47841e-11 0.0208486 -3.68015e-05 4.79369e-11 0.0208466 -0.000148148 2.15375e-11 0.0208432 -0.000244052 -1.30094e-11 0.0208198 -0.000327449 -3.3914e-11 0.020792 -0.000397791 -6.88639e-11 0.0207676 -0.000457313 -4.99361e-11 0.0207399 -0.000502548 -4.50533e-11 0.0207423 -0.000543894 -4.07657e-11 0.0207859 -0.000576656 -5.64716e-11 0.0209088 -0.000594385 -7.84558e-11 0.0210742 -0.000596768 -6.77381e-11 0.0212435 -0.000589978 -2.66553e-11 0.0214063 -0.00057192 5.66662e-11 0.0215616 -0.000544657 3.34309e-11 0.0217029 -0.000509885 4.44817e-11 0.0218252 -0.000467123 1.0272e-10 0.0219309 -0.000418095 1.41317e-10 0.0220233 -0.000365342 1.51449e-10 0.0221022 -0.000310465 1.50342e-10 0.022165 -0.000254065 1.30538e-10 0.0222168 -0.000195393 1.10015e-10 0.0222784 -0.000134913 1.06078e-10 0.0223726 -7.27082e-05 7.04543e-11 0.0224595 -7.1736e-06 5.92037e-11 0.0224873 5.99383e-05 2.39018e-11 0.0224002 0.000122924 -5.51804e-11 0.0221337 0.000175084 -1.98471e-10 0.0215705 0.000211734 -5.31705e-10 0.0202022 0.000227213 -1.21498e-09 0.0186676 0.000224456 -1.23002e-09 0.0170923 0.000208655 -1.0564e-09 0.0156394 0.000187097 -8.1179e-10 0.0144266 0.000163853 -5.67131e-10 0.0134879 0.000140865 -3.68058e-10 0.0127987 0.000119152 -2.23646e-10 0.0123098 9.94864e-05 -1.24876e-10 0.0119708 8.20405e-05 -5.71032e-11 0.0117383 6.68658e-05 -1.71812e-11 0.0115787 5.38591e-05 8.0249e-12 0.0114684 4.28639e-05 2.34036e-11 0.0113916 3.36924e-05 3.27673e-11 0.0113375 2.6137e-05 3.77772e-11 0.0112988 2.00101e-05 3.94847e-11 0.011271 1.51297e-05 4.11155e-11 0.0112509 1.12959e-05 4.17067e-11 0.0112364 8.32832e-06 4.18319e-11 0.0112259 6.06484e-06 4.17483e-11 0.0112183 4.36311e-06 4.15856e-11 0.0112128 3.1016e-06 4.141e-11 0.0112089 2.17916e-06 4.12495e-11 0.0112061 1.51359e-06 4.11187e-11 0.0112042 1.03956e-06 4.10127e-11 0.0112029 7.0616e-07 4.09388e-11 0.0112019 4.74545e-07 4.08757e-11 0.0112013 3.1553e-07 4.08482e-11 0.0112009 2.07664e-07 4.07973e-11 0.0112006 1.35204e-07 4.08296e-11 0.0112004 8.72425e-08 4.07264e-11 5.44288e-08 4.09179e-11 0.016956 0.000112812 1.66676e-10 0.0173117 0.000354409 4.08215e-10 0.0188852 0.000957009 8.74398e-10 0.0227881 0.00295756 1.84214e-09 0.0283814 0.00807759 3.63706e-09 0.030748 0.0154973 1.26707e-09 0.0310684 0.018051 4.49783e-10 0.031716 0.0181641 2.18961e-10 0.0308733 0.018477 4.18903e-12 0.0298864 0.0173358 -4.61649e-11 0.0288711 0.0160755 -9.71225e-11 0.0279329 0.0147828 -3.70745e-11 0.0270934 0.0136069 -3.83236e-11 0.0263434 0.0125258 -3.3989e-11 0.025651 0.0115263 -7.28147e-12 0.0249989 0.0105946 3.40354e-11 0.0243876 0.00972631 7.86917e-11 0.0238254 0.00891776 1.15434e-10 0.0233321 0.00816677 1.4088e-10 0.0229248 0.00747292 1.6006e-10 0.0226027 0.00683397 1.74546e-10 0.0223561 0.0062444 1.84642e-10 0.0221748 0.00569727 1.90655e-10 0.0220509 0.0051885 1.91662e-10 0.0219732 0.00471492 1.89364e-10 0.0219295 0.00427239 1.81272e-10 0.0219109 0.0038584 1.74178e-10 0.0219133 0.00347152 1.69548e-10 0.0219339 0.00311218 1.6292e-10 0.0219625 0.00277903 1.57838e-10 0.0219948 0.00247055 1.54367e-10 0.0220243 0.00218523 1.50772e-10 0.0220358 0.00192101 1.48876e-10 0.0220252 0.0016756 1.47701e-10 0.0219957 0.00144808 1.46539e-10 0.0219482 0.0012379 1.44861e-10 0.0218882 0.00104424 1.42624e-10 0.021827 0.000866677 1.35653e-10 0.0217702 0.000704475 1.23796e-10 0.0217147 0.000556629 1.13485e-10 0.0216624 0.000421599 9.21477e-11 0.021618 0.000298587 6.15763e-11 0.0215829 0.000185806 5.3085e-11 0.0215514 8.27506e-05 2.38205e-11 0.0214997 -5.3541e-06 2.4951e-11 0.0214354 -9.65606e-05 -4.17558e-12 0.0213729 -0.000175632 -2.70992e-12 0.0213216 -0.000242039 2.21768e-11 0.0212909 -0.000294276 -1.11416e-11 0.0212863 -0.000336968 -1.42567e-11 0.0213437 -0.000372027 -2.0775e-11 0.0214623 -0.000397441 -1.53597e-11 0.0216047 -0.000408696 1.45491e-11 0.0217363 -0.000407908 2.26392e-11 0.0218538 -0.000396954 6.90981e-11 0.0219596 -0.000379426 5.30919e-11 0.0220496 -0.000354731 6.33933e-11 0.0221242 -0.000322457 1.04927e-10 0.0221856 -0.000284778 1.28881e-10 0.022235 -0.00024355 1.3772e-10 0.0222718 -0.000199245 1.22002e-10 0.0222999 -0.000150975 1.24421e-10 0.0223378 -9.83529e-05 1.17067e-10 0.0224098 -4.12558e-05 9.96818e-11 0.022497 2.15403e-05 7.72385e-11 0.0225536 9.04308e-05 4.60551e-11 0.0225267 0.000162018 -3.72354e-11 0.0223252 0.000229879 -1.94455e-10 0.0217782 0.000282284 -5.41309e-10 0.0202998 0.000303433 -1.30788e-09 0.0187164 0.000283451 -1.27435e-09 0.0171152 0.000254042 -1.08073e-09 0.0156449 0.000222039 -8.27393e-10 0.0144195 0.000189719 -5.77064e-10 0.0134724 0.000158832 -3.73854e-10 0.0127783 0.000130926 -2.26902e-10 0.0122873 0.000106518 -1.26814e-10 0.0119483 8.5695e-05 -5.81079e-11 0.011717 6.82765e-05 -1.80204e-11 0.0115595 5.3878e-05 7.31746e-12 0.0114517 4.20915e-05 2.29237e-11 0.0113774 3.25376e-05 3.20192e-11 0.0113256 2.48708e-05 3.74284e-11 0.0112892 1.87886e-05 3.90879e-11 0.0112633 1.40355e-05 4.07101e-11 0.0112449 1.03654e-05 4.13793e-11 0.0112317 7.56715e-06 4.15687e-11 0.0112223 5.46108e-06 4.15416e-11 0.0112156 3.89638e-06 4.14272e-11 0.0112109 2.74875e-06 4.12914e-11 0.0112075 1.91763e-06 4.11624e-11 0.0112052 1.32318e-06 4.10559e-11 0.0112035 9.03186e-07 4.09682e-11 0.0112024 6.09977e-07 4.09077e-11 0.0112016 4.07673e-07 4.08542e-11 0.0112011 2.69667e-07 4.08336e-11 0.0112007 1.76611e-07 4.07875e-11 0.0112005 1.14449e-07 4.08232e-11 0.0112003 7.35252e-08 4.07229e-11 4.5673e-08 4.09161e-11 0.0168444 5.41734e-05 9.60883e-11 0.0170006 0.000122979 1.80792e-10 0.0173626 0.000370212 3.9497e-10 0.019105 0.00102215 8.77092e-10 0.0233928 0.00303727 1.7721e-09 0.0287076 0.00813188 3.56174e-09 0.0308854 0.0151896 1.31509e-09 0.0312418 0.0176418 4.5004e-10 0.0318786 0.0178517 1.3805e-10 0.0311374 0.0181274 9.48525e-11 0.0302609 0.0171378 -7.849e-12 0.0293469 0.016022 -8.21854e-11 0.0284781 0.0148316 -1.19283e-11 0.0276717 0.0136927 -3.28794e-11 0.0269302 0.0126143 -2.44534e-11 0.0262418 0.0116096 1.72101e-11 0.0256027 0.010678 6.91897e-11 0.0250246 0.00981862 1.16535e-10 0.0245176 0.00902671 1.48252e-10 0.0240922 0.00829322 1.6554e-10 0.0237567 0.00761433 1.83186e-10 0.0234995 0.00698645 1.89193e-10 0.0233061 0.00640662 1.95108e-10 0.0231674 0.00586634 1.94481e-10 0.0230742 0.0053623 1.90757e-10 0.023014 0.00489128 1.83406e-10 0.0229758 0.00445028 1.76739e-10 0.0229568 0.00403849 1.6972e-10 0.022955 0.00365597 1.66915e-10 0.0229684 0.00330266 1.63727e-10 0.022984 0.0029768 1.61212e-10 0.0229956 0.00267529 1.5942e-10 0.0229963 0.0023964 1.58776e-10 0.0229698 0.00213743 1.58659e-10 0.0229197 0.0018963 1.5971e-10 0.0228535 0.00167267 1.60225e-10 0.0227727 0.00146614 1.60852e-10 0.0226868 0.00127589 1.59293e-10 0.0226072 0.00110149 1.53155e-10 0.0225328 0.000942087 1.50492e-10 0.0224594 0.000796098 1.37797e-10 0.0223894 0.000662093 1.22294e-10 0.0223276 0.000539229 1.19221e-10 0.0222757 0.000426529 9.71368e-11 0.0222127 0.000322506 7.52534e-11 0.0221275 0.000227154 7.42784e-11 0.022037 0.000139554 5.97996e-11 0.0219486 6.05679e-05 7.31326e-11 0.021879 -3.7437e-06 4.33506e-11 0.0218514 -6.27381e-05 3.83481e-11 0.0218701 -0.000112864 5.21671e-11 0.0219347 -0.000150583 7.25058e-11 0.022026 -0.000179164 3.99946e-11 0.02213 -0.000199536 2.1484e-11 0.0222169 -0.000209009 4.09388e-11 0.0222875 -0.000207187 6.05252e-11 0.0223437 -0.000198472 5.82418e-11 0.0223856 -0.000183609 6.333e-11 0.0224161 -0.000161703 1.14183e-10 0.0224368 -0.000134704 1.13312e-10 0.0224467 -0.000103773 1.09009e-10 0.0224498 -6.81852e-05 1.22735e-10 0.0224639 -2.62231e-05 8.78265e-11 0.022514 2.25711e-05 8.07731e-11 0.0225972 7.96101e-05 5.89693e-11 0.0226651 0.000145567 2.91586e-11 0.0226674 0.000218062 -5.68659e-11 0.0224746 0.000290193 -2.42372e-10 0.0218568 0.000346483 -6.30564e-10 0.0203095 0.000358421 -1.34141e-09 0.0187269 0.000331007 -1.2597e-09 0.0171179 0.000295312 -1.08405e-09 0.0156356 0.000255219 -8.3665e-10 0.0143998 0.000214056 -5.85462e-10 0.013446 0.00017525 -3.77657e-10 0.012749 0.000140897 -2.28772e-10 0.012258 0.000111772 -1.28074e-10 0.011921 8.77781e-05 -5.87451e-11 0.0116926 6.84022e-05 -1.86465e-11 0.0115383 5.2894e-05 6.76552e-12 0.0114338 4.05735e-05 2.21668e-11 0.0113626 3.08548e-05 3.13939e-11 0.0113136 2.32423e-05 3.70668e-11 0.0112796 1.73257e-05 3.85692e-11 0.0112559 1.27878e-05 4.02729e-11 0.0112392 9.34178e-06 4.10498e-11 0.0112274 6.75276e-06 4.13131e-11 0.0112191 4.82948e-06 4.13444e-11 0.0112132 3.41723e-06 4.12778e-11 0.0112091 2.39229e-06 4.11804e-11 0.0112063 1.65709e-06 4.10814e-11 0.0112043 1.13583e-06 4.09979e-11 0.0112029 7.70485e-07 4.09272e-11 0.0112019 5.17317e-07 4.08793e-11 0.0112013 3.4384e-07 4.08347e-11 0.0112009 2.26257e-07 4.08207e-11 0.0112006 1.47448e-07 4.07786e-11 0.0112004 9.51013e-08 4.0818e-11 0.0112003 6.08251e-08 4.07197e-11 3.76202e-08 4.0915e-11 0.0168308 1.81233e-05 5.7987e-11 0.0168535 5.39926e-05 9.70521e-11 0.0170152 0.000124407 1.84305e-10 0.0174338 0.000374925 3.93015e-10 0.0192308 0.00103249 8.64343e-10 0.023572 0.00301645 1.69492e-09 0.028765 0.00785357 3.39197e-09 0.030927 0.0146953 1.37144e-09 0.0314062 0.0172127 4.69594e-10 0.0320075 0.0175857 1.48311e-10 0.0314577 0.0177931 1.11327e-10 0.0307238 0.0169634 5.79933e-11 0.0298681 0.0160009 6.87025e-11 0.029021 0.0148991 1.48059e-11 0.0282313 0.0137836 -3.57607e-11 0.027509 0.0127082 -1.32812e-11 0.0268526 0.0117059 5.4013e-11 0.0262658 0.0107893 1.15563e-10 0.0257521 0.00994779 1.59948e-10 0.0253091 0.00916964 1.7995e-10 0.0249429 0.00844638 1.90367e-10 0.0246673 0.00777679 2.03647e-10 0.0244637 0.0071581 1.8597e-10 0.0243132 0.0065863 1.95317e-10 0.0242037 0.00605158 1.87724e-10 0.0241246 0.00555015 1.82798e-10 0.0240675 0.00508104 1.76276e-10 0.0240267 0.00464373 1.71409e-10 0.0240048 0.00423784 1.67887e-10 0.0239979 0.00386405 1.67471e-10 0.0239998 0.0035196 1.67135e-10 0.0239947 0.00320242 1.66273e-10 0.0239755 0.00290761 1.66105e-10 0.023937 0.00263421 1.66879e-10 0.0238655 0.00237916 1.68e-10 0.0237741 0.00214113 1.71322e-10 0.0236728 0.00192054 1.74091e-10 0.0235626 0.00171688 1.77631e-10 0.0234562 0.00152915 1.78223e-10 0.0233599 0.00135687 1.81063e-10 0.023267 0.00119868 1.76894e-10 0.0231738 0.00105271 1.68124e-10 0.0230832 0.000917692 1.68781e-10 0.0230034 0.000793053 1.52853e-10 0.0229211 0.000677648 1.37916e-10 0.0228175 0.000570438 1.31923e-10 0.0227068 0.000471499 1.08674e-10 0.0225983 0.000380109 1.05562e-10 0.0225026 0.000299146 8.6429e-11 0.0224424 0.000228274 5.37499e-11 0.0224306 0.000167645 4.81012e-11 0.0224623 0.000116894 8.7669e-11 0.0225214 7.53897e-05 5.66985e-11 0.022583 4.36239e-05 5.42984e-11 0.0226356 1.93583e-05 5.13845e-11 0.0226764 3.03519e-06 5.42141e-11 0.0227038 -4.8443e-06 6.34324e-11 0.0227156 -5.31712e-06 6.61652e-11 0.0227167 4.58328e-07 8.30609e-11 0.0227101 1.23359e-05 1.07936e-10 0.0226971 2.95989e-05 9.407e-11 0.0226788 5.23642e-05 6.55704e-11 0.0226677 8.22921e-05 6.37693e-11 0.0226962 0.000121728 6.67258e-11 0.022769 0.000171576 5.23387e-11 0.0228288 0.000231894 2.12014e-11 0.0228105 0.00029826 -6.39183e-11 0.022538 0.000361563 -3.2483e-10 0.0216977 0.00040593 -7.96776e-10 0.0202739 0.0004059 -1.34944e-09 0.0187263 0.000378899 -1.24565e-09 0.0171108 0.00033817 -1.09063e-09 0.0156142 0.000288828 -8.45659e-10 0.0143673 0.00023752 -5.90604e-10 0.0134081 0.00018975 -3.81351e-10 0.0127106 0.000148638 -2.29987e-10 0.012222 0.000114935 -1.27413e-10 0.0118891 8.81065e-05 -5.8935e-11 0.0116653 6.71507e-05 -1.92403e-11 0.0115156 5.08937e-05 6.11334e-12 0.0114152 3.83385e-05 2.15254e-11 0.0113476 2.86825e-05 3.07545e-11 0.0113018 2.12914e-05 3.62462e-11 0.0112704 1.56646e-05 3.84575e-11 0.0112487 1.14238e-05 3.99506e-11 0.0112338 8.25522e-06 4.0751e-11 0.0112233 5.90874e-06 4.10728e-11 0.0112161 4.1879e-06 4.11591e-11 0.011211 2.93877e-06 4.11384e-11 0.0112076 2.0416e-06 4.10777e-11 0.0112051 1.40413e-06 4.1007e-11 0.0112035 9.56055e-07 4.0945e-11 0.0112023 6.44506e-07 4.089e-11 0.0112016 4.30203e-07 4.08539e-11 0.011201 2.84362e-07 4.0817e-11 0.0112007 1.86143e-07 4.08093e-11 0.0112005 1.20706e-07 4.07706e-11 0.0112003 7.74865e-08 4.08136e-11 0.0112002 4.93408e-08 4.07166e-11 3.03857e-08 4.09143e-11 0.0168095 7.1242e-06 4.53265e-11 0.0168319 1.77896e-05 5.96345e-11 0.0168592 4.8967e-05 9.91867e-11 0.0170203 0.0001244 1.88232e-10 0.0174653 0.00035359 3.97385e-10 0.0192521 0.00100599 8.65728e-10 0.023323 0.00296053 1.67655e-09 0.0287046 0.00712162 3.41298e-09 0.0309349 0.0141734 1.39872e-09 0.031596 0.016816 4.29689e-10 0.0321526 0.0173251 1.56477e-10 0.0317704 0.0174791 1.51323e-10 0.0311985 0.0167888 1.77697e-10 0.0303942 0.0159849 2.36329e-10 0.0295939 0.0149696 5.37063e-11 0.0288366 0.0138874 -2.5583e-11 0.0281556 0.0128301 1.17471e-11 0.0275494 0.0118484 8.5078e-11 0.0270155 0.0109436 1.45845e-10 0.0265573 0.0101105 1.68257e-10 0.0261697 0.00933921 1.83636e-10 0.0258664 0.00862268 1.95196e-10 0.0256495 0.00796234 2.03359e-10 0.0254879 0.00735271 1.78592e-10 0.0253608 0.00678443 1.99298e-10 0.0252594 0.00625077 1.8724e-10 0.0251807 0.00575202 1.77047e-10 0.0251212 0.0052884 1.71699e-10 0.0250788 0.00485969 1.68873e-10 0.0250536 0.00446465 1.67982e-10 0.0250364 0.0041018 1.66587e-10 0.0250161 0.00376688 1.663e-10 0.0249767 0.00345682 1.65174e-10 0.0249151 0.00316693 1.66552e-10 0.0248288 0.00289703 1.69135e-10 0.0247113 0.0026443 1.73776e-10 0.0245831 0.00240828 1.82004e-10 0.0244527 0.00218994 1.88942e-10 0.0243195 0.00198811 1.96201e-10 0.024196 0.0018015 2.06e-10 0.0240823 0.00162959 2.0844e-10 0.0239679 0.00147053 2.05206e-10 0.0238505 0.00132214 2.08943e-10 0.0237408 0.00118405 1.94432e-10 0.0236349 0.00105568 1.79928e-10 0.0235114 0.000935459 1.69773e-10 0.0233785 0.000823329 1.41992e-10 0.023251 0.000718985 1.25754e-10 0.0231313 0.000623958 1.08124e-10 0.0230418 0.000539688 7.41935e-11 0.0229967 0.000465195 6.72147e-11 0.0229945 0.000400781 6.23432e-11 0.0230215 0.000345861 5.15454e-11 0.0230589 0.000299747 4.37883e-11 0.0230901 0.000261871 4.11792e-11 0.0231052 0.000231564 4.29208e-11 0.0231003 0.0002089 4.79017e-11 0.0230849 0.000193519 5.53879e-11 0.0230604 0.000185708 6.20796e-11 0.0230296 0.000184938 8.2647e-11 0.0229964 0.000190202 9.0197e-11 0.0229628 0.000201868 7.60789e-11 0.0229385 0.000221523 6.70672e-11 0.0229407 0.000251244 6.16987e-11 0.0229717 0.000291882 5.87684e-11 0.0229777 0.000341874 -1.65623e-11 0.0228854 0.000396772 -1.26185e-10 0.0225545 0.000446831 -4.18858e-10 0.021566 0.000477155 -1.06023e-09 0.0202837 0.000469628 -1.22373e-09 0.018736 0.000437851 -1.23725e-09 0.0170968 0.000385871 -1.10006e-09 0.015579 0.000322931 -8.54175e-10 0.01432 0.000258964 -5.9533e-10 0.0133576 0.000201345 -3.82528e-10 0.0126625 0.000153473 -2.30648e-10 0.0121794 0.000115599 -1.27885e-10 0.0118531 8.64789e-05 -5.9141e-11 0.0116357 6.44639e-05 -1.94276e-11 0.0114917 4.78853e-05 5.83332e-12 0.0113963 3.54266e-05 2.11601e-11 0.0113328 2.60799e-05 3.00842e-11 0.0112902 1.90833e-05 3.57472e-11 0.0112616 1.38588e-05 3.82256e-11 0.0112421 9.98566e-06 3.96464e-11 0.0112288 7.1389e-06 4.04718e-11 0.0112197 5.06002e-06 4.08483e-11 0.0112134 3.55444e-06 4.0987e-11 0.0112091 2.47384e-06 4.101e-11 0.0112062 1.7056e-06 4.09837e-11 0.0112042 1.16478e-06 4.09395e-11 0.0112028 7.8788e-07 4.08973e-11 0.0112019 5.27865e-07 4.08567e-11 0.0112012 3.50306e-07 4.08313e-11 0.0112008 2.30286e-07 4.08013e-11 0.0112005 1.49966e-07 4.07993e-11 0.0112004 9.6771e-08 4.07636e-11 0.0112002 6.18318e-08 4.08101e-11 0.0112002 3.92017e-08 4.07137e-11 2.40395e-08 4.09141e-11 0.0168055 2.33446e-06 3.79798e-11 0.0168144 5.38839e-06 4.12201e-11 0.0168267 1.77328e-05 5.82879e-11 0.016885 3.94506e-05 8.59357e-11 0.0169974 0.000124676 1.82773e-10 0.0175687 0.000296375 3.5132e-10 0.0191373 0.000968603 7.65343e-10 0.0227486 0.0026097 1.69129e-09 0.0283013 0.00643211 3.41544e-09 0.0309125 0.0134936 1.34844e-09 0.0318511 0.0163828 3.8216e-10 0.0323829 0.0170661 2.52242e-10 0.0320978 0.0172036 2.87703e-10 0.0315972 0.0166284 3.27392e-10 0.0309136 0.0159157 2.78942e-10 0.030207 0.0150221 3.08785e-11 0.0295162 0.0140068 -8.48641e-12 0.0288851 0.0129935 5.76836e-11 0.0283226 0.012032 1.26641e-10 0.0278446 0.0111381 1.58878e-10 0.02744 0.0103103 1.70404e-10 0.0271117 0.00954026 1.79627e-10 0.0268698 0.00882831 2.07014e-10 0.0266878 0.00817179 1.84576e-10 0.0265394 0.00756343 1.85409e-10 0.0264157 0.00699594 1.85809e-10 0.0263142 0.00646674 1.77363e-10 0.0262362 0.00597626 1.70022e-10 0.0261776 0.00552426 1.65131e-10 0.0261329 0.00510824 1.6232e-10 0.0260959 0.00472545 1.61534e-10 0.0260546 0.00437232 1.5935e-10 0.0259957 0.00404463 1.59854e-10 0.0259097 0.00373862 1.60069e-10 0.0257987 0.00345145 1.64892e-10 0.0256636 0.00318285 1.69402e-10 0.025506 0.00293094 1.79813e-10 0.0253494 0.00269587 1.90971e-10 0.0251956 0.00247851 2.01575e-10 0.0250427 0.00227658 2.13446e-10 0.0249027 0.00208904 2.19736e-10 0.0247669 0.00191523 2.1609e-10 0.0246254 0.00175239 2.15634e-10 0.0244859 0.00159938 2.02788e-10 0.0243526 0.00145635 1.7954e-10 0.0242083 0.00132184 1.70164e-10 0.0240529 0.00119535 1.39921e-10 0.0239049 0.00107696 1.14548e-10 0.0237656 0.000967372 1.11346e-10 0.0236505 0.000868876 6.94294e-11 0.0235749 0.000779929 6.58015e-11 0.0235389 0.000701257 5.72079e-11 0.023533 0.000632253 4.90098e-11 0.0235401 0.000572075 4.19053e-11 0.0235447 0.000519971 3.77676e-11 0.0235373 0.000475514 3.60798e-11 0.0235139 0.000438646 4.03311e-11 0.0234768 0.000409418 4.62698e-11 0.0234303 0.000388039 5.64516e-11 0.023379 0.000374697 6.78007e-11 0.0233287 0.000369207 7.93031e-11 0.0232805 0.000371289 7.7307e-11 0.0232373 0.000381678 7.3394e-11 0.0232034 0.000401672 4.72958e-11 0.0231897 0.000432073 3.91103e-11 0.0231633 0.000471814 -6.30819e-11 0.0230237 0.000516607 -1.92341e-10 0.0226259 0.000556112 -5.21299e-10 0.0216325 0.000570767 -1.09255e-09 0.0203328 0.00055223 -1.22655e-09 0.0187459 0.000504945 -1.25507e-09 0.017068 0.000434962 -1.11773e-09 0.0155244 0.000354344 -8.64483e-10 0.0142549 0.000276095 -5.98257e-10 0.0132931 0.000208529 -3.82967e-10 0.0126047 0.000154551 -2.30535e-10 0.0121308 0.000113351 -1.26648e-10 0.0118136 8.27606e-05 -5.94104e-11 0.0116044 6.03346e-05 -1.96827e-11 0.0114673 4.39298e-05 5.3704e-12 0.0113774 3.19254e-05 2.06003e-11 0.0113183 2.31324e-05 2.97375e-11 0.0112793 1.66892e-05 3.51296e-11 0.0112534 1.19674e-05 3.80634e-11 0.011236 8.52145e-06 3.9132e-11 0.0112243 6.02777e-06 4.01844e-11 0.0112164 4.23171e-06 4.06375e-11 0.011211 2.94672e-06 4.08292e-11 0.0112074 2.03446e-06 4.08935e-11 0.011205 1.39228e-06 4.08993e-11 0.0112033 9.44274e-07 4.08793e-11 0.0112022 6.34621e-07 4.08551e-11 0.0112015 4.22626e-07 4.08273e-11 0.011201 2.7888e-07 4.08117e-11 0.0112006 1.82353e-07 4.07875e-11 0.0112004 1.18152e-07 4.07909e-11 0.0112003 7.58771e-08 4.07574e-11 0.0112002 4.82607e-08 4.08071e-11 0.0112001 3.04686e-08 4.07112e-11 1.86074e-08 4.09143e-11 0.016805 4.25979e-07 3.68513e-11 0.0168066 1.63525e-06 3.87686e-11 0.0168177 4.46492e-06 4.34812e-11 0.0168255 1.43729e-05 5.86119e-11 0.0168931 3.47608e-05 8.08592e-11 0.0169684 0.000106418 1.81498e-10 0.0175503 0.000262264 3.17097e-10 0.0188931 0.00083587 8.04835e-10 0.0221795 0.00226359 1.59925e-09 0.027971 0.00557271 3.54025e-09 0.0310632 0.0127138 1.19403e-09 0.0322011 0.015845 5.31095e-10 0.0325732 0.0168447 4.39795e-10 0.0323239 0.0169008 4.30976e-10 0.0318875 0.016396 4.51098e-10 0.0314276 0.0157883 2.1029e-10 0.0308541 0.0150578 6.67436e-11 0.0302427 0.0141384 4.74541e-11 0.0296781 0.0131736 1.14583e-10 0.0291855 0.0122432 1.53269e-10 0.0287646 0.0113627 1.69367e-10 0.028408 0.0105357 1.67785e-10 0.0281272 0.0097637 1.88765e-10 0.0279142 0.0090533 1.77808e-10 0.0277401 0.00839994 1.71851e-10 0.0275955 0.0077949 1.83467e-10 0.0274744 0.00723416 1.74678e-10 0.0273767 0.00671564 1.65031e-10 0.0273005 0.00623846 1.60029e-10 0.0272369 0.00580022 1.54237e-10 0.0271767 0.00539611 1.51803e-10 0.0271114 0.00502249 1.47241e-10 0.0270298 0.00467561 1.45727e-10 0.0269208 0.00435139 1.44244e-10 0.0267826 0.00404632 1.49441e-10 0.0266215 0.00375921 1.56325e-10 0.0264435 0.00348963 1.67783e-10 0.0262544 0.00323708 1.82951e-10 0.0260749 0.00300116 1.94766e-10 0.0258996 0.00278253 2.0868e-10 0.0257279 0.00257784 2.17071e-10 0.0255691 0.00238692 2.15289e-10 0.0254055 0.00220821 2.13471e-10 0.0252368 0.00203893 2.07327e-10 0.0250744 0.00187941 1.85737e-10 0.0249075 0.00172908 1.79761e-10 0.024729 0.0015869 1.64258e-10 0.0245581 0.00145314 1.26862e-10 0.0243997 0.00132826 1.44048e-10 0.0242609 0.00121422 1.08902e-10 0.0241579 0.00111053 8.37186e-11 0.024091 0.00101693 8.57688e-11 0.0240523 0.000933216 7.34636e-11 0.0240286 0.000858471 6.08286e-11 0.0240059 0.000791916 4.92135e-11 0.0239753 0.000733153 4.1245e-11 0.0239327 0.000682191 3.86714e-11 0.0238777 0.00063927 3.80306e-11 0.0238134 0.000604694 4.37426e-11 0.0237455 0.000578844 5.23969e-11 0.02368 0.000561934 6.72834e-11 0.0236204 0.00055387 7.3256e-11 0.0235654 0.000555254 6.22706e-11 0.0235135 0.000566446 4.02268e-11 0.0234691 0.000588296 8.60281e-12 0.0234141 0.000619087 -7.84014e-11 0.0232304 0.000653938 -2.62404e-10 0.0227265 0.000680751 -6.08469e-10 0.02173 0.000677705 -1.09263e-09 0.0203833 0.000640742 -1.23993e-09 0.0187369 0.000572133 -1.2821e-09 0.017012 0.000478883 -1.13763e-09 0.0154435 0.0003787 -8.73024e-10 0.0141688 0.000286187 -6.00079e-10 0.0132139 0.00020978 -3.815e-10 0.0125377 0.000151134 -2.29716e-10 0.012077 0.000107945 -1.25935e-10 0.0117717 7.69267e-05 -5.88169e-11 0.0115724 5.48648e-05 -1.97843e-11 0.011443 3.9164e-05 4.96887e-12 0.0113592 2.79637e-05 2.01218e-11 0.0113047 1.99486e-05 2.92145e-11 0.0112692 1.41979e-05 3.45139e-11 0.0112459 1.00601e-05 3.77417e-11 0.0112305 7.08176e-06 3.88674e-11 0.0112203 4.95767e-06 3.99296e-11 0.0112135 3.44814e-06 4.04483e-11 0.011209 2.38091e-06 4.06878e-11 0.011206 1.63115e-06 4.07896e-11 0.011204 1.10833e-06 4.08243e-11 0.0112026 7.4672e-07 4.08262e-11 0.0112017 4.98751e-07 4.08181e-11 0.0112011 3.30221e-07 4.08018e-11 0.0112008 2.16718e-07 4.07947e-11 0.0112005 1.40979e-07 4.07756e-11 0.0112003 9.09005e-08 4.07838e-11 0.0112002 5.81078e-08 4.07522e-11 0.0112002 3.67966e-08 4.08048e-11 0.0112001 2.31372e-08 4.07093e-11 1.40747e-08 4.09149e-11 0.0168034 4.7927e-08 3.49018e-11 0.016807 2.56226e-07 3.62444e-11 0.01681 8.89673e-07 3.84305e-11 0.0168209 3.07243e-06 4.31101e-11 0.016832 1.07248e-05 5.5296e-11 0.0168876 2.77913e-05 7.78153e-11 0.0169696 8.56659e-05 1.66033e-10 0.0174327 0.000218177 2.99242e-10 0.0186267 0.00067921 7.42704e-10 0.0214775 0.00186247 1.47286e-09 0.0276884 0.00462959 3.13026e-09 0.0311521 0.0115193 1.36561e-09 0.0323214 0.0150564 1.2145e-09 0.0324978 0.0164633 8.17937e-10 0.032432 0.0164459 6.27255e-10 0.0322595 0.0160839 2.69593e-10 0.0319544 0.0155984 2.59502e-10 0.0315117 0.0150389 1.98671e-10 0.0310158 0.014254 1.57684e-10 0.0305444 0.0133623 1.77425e-10 0.0301227 0.0124672 1.58374e-10 0.029744 0.0116027 1.59883e-10 0.029426 0.0107777 1.77463e-10 0.0291801 0.0100133 1.83774e-10 0.0289795 0.00931168 1.63114e-10 0.0288122 0.00866512 1.76987e-10 0.0286714 0.00806921 1.6853e-10 0.0285524 0.00751975 1.5718e-10 0.0284544 0.00701437 1.47708e-10 0.0283688 0.00655017 1.4008e-10 0.0282826 0.00612199 1.34408e-10 0.0281889 0.00572511 1.30329e-10 0.0280803 0.00535606 1.27899e-10 0.0279472 0.00501099 1.30197e-10 0.0277832 0.00468587 1.35807e-10 0.0275933 0.0043782 1.47914e-10 0.0273874 0.00408805 1.59288e-10 0.027175 0.00381522 1.80397e-10 0.0269606 0.00355979 1.98887e-10 0.0267595 0.00332034 2.20405e-10 0.026562 0.00309751 2.42037e-10 0.0263706 0.00288707 2.53406e-10 0.0261874 0.0026899 2.65e-10 0.0259925 0.00250318 2.72151e-10 0.0257984 0.00232528 2.6385e-10 0.0256072 0.00215712 2.61814e-10 0.0254065 0.00199771 2.52198e-10 0.0252108 0.00184715 2.17758e-10 0.0250316 0.00170572 2.15337e-10 0.0248702 0.00157509 1.95375e-10 0.0247412 0.00145555 1.31174e-10 0.0246457 0.00134625 1.36093e-10 0.0245764 0.0012471 1.09739e-10 0.024522 0.0011572 8.52473e-11 0.0244716 0.0010758 6.41808e-11 0.0244177 0.00100254 4.82897e-11 0.0243563 0.000937526 3.79697e-11 0.0242858 0.000881031 3.39179e-11 0.0242073 0.000833525 3.45148e-11 0.0241249 0.000795366 4.06594e-11 0.0240463 0.000767117 5.52132e-11 0.0239765 0.000748622 6.36361e-11 0.0239137 0.000740039 5.49999e-11 0.0238518 0.000742554 3.41246e-11 0.0237862 0.000755378 -4.76842e-12 0.0236948 0.000776839 -9.10911e-11 0.0234696 0.000800063 -3.03812e-10 0.0228337 0.000809984 -7.4914e-10 0.0218283 0.000785355 -1.04634e-09 0.0204103 0.000725312 -1.26622e-09 0.0186921 0.000629887 -1.31341e-09 0.0169188 0.000511262 -1.15561e-09 0.0153317 0.000391707 -8.78406e-10 0.0140606 0.000286842 -5.98568e-10 0.0131208 0.000204016 -3.7883e-10 0.0124629 0.000142865 -2.27271e-10 0.0120194 9.94074e-05 -1.24544e-10 0.0117286 6.91776e-05 -5.85647e-11 0.0115404 4.82924e-05 -1.98509e-11 0.0114196 3.38149e-05 4.63824e-12 0.011342 2.37308e-05 1.96208e-11 0.0112922 1.66709e-05 2.87561e-11 0.01126 1.17066e-05 3.38112e-11 0.0112392 8.20407e-06 3.73369e-11 0.0112257 5.7196e-06 3.89622e-11 0.0112169 3.96194e-06 3.95521e-11 0.0112111 2.7315e-06 4.026e-11 0.0112073 1.87086e-06 4.05594e-11 0.0112048 1.27233e-06 4.06979e-11 0.0112031 8.58698e-07 4.07589e-11 0.0112021 5.74921e-07 4.07803e-11 0.0112013 3.81768e-07 4.07864e-11 0.0112009 2.51386e-07 4.07802e-11 0.0112006 1.64132e-07 4.07805e-11 0.0112004 1.06253e-07 4.07656e-11 0.0112003 6.8195e-08 4.07781e-11 0.0112002 4.34037e-08 4.07478e-11 0.0112001 2.7371e-08 4.0803e-11 0.0112001 1.71453e-08 4.07081e-11 1.03913e-08 4.09158e-11 0.0168033 4.16354e-08 3.44695e-11 0.0168051 2.86762e-08 3.90283e-11 0.0168089 1.35922e-07 3.54842e-11 0.0168142 4.66323e-07 3.7914e-11 0.0168265 1.87862e-06 4.57009e-11 0.0168356 6.61973e-06 5.04977e-11 0.0168894 2.02307e-05 1.11127e-10 0.0169707 6.23352e-05 5.63429e-11 0.0172994 0.000172391 3.95675e-10 0.0183088 0.000515388 4.12029e-10 0.0207238 0.00144131 1.49467e-09 0.0269976 0.00377434 2.65841e-09 0.0306974 0.00879382 3.46522e-09 0.0319898 0.0139992 2.05911e-09 0.0324683 0.0157519 7.49819e-10 0.0325286 0.0160533 4.34995e-10 0.0324893 0.0158096 4.36489e-10 0.0324585 0.015368 3.94272e-10 0.0322084 0.014931 3.11354e-10 0.0318471 0.0143157 2.34605e-10 0.0314722 0.0135339 2.07021e-10 0.03111 0.0126985 1.53293e-10 0.0307778 0.0118617 1.72656e-10 0.0305038 0.0110603 1.81412e-10 0.0302757 0.0103139 1.46389e-10 0.0300835 0.00962422 1.67821e-10 0.0299196 0.00898963 1.55842e-10 0.0297774 0.00840538 1.41997e-10 0.029651 0.00786768 1.32862e-10 0.0295351 0.00737152 1.25458e-10 0.0294197 0.00691444 1.21334e-10 0.0292946 0.00649049 1.20664e-10 0.0291554 0.00609568 1.1911e-10 0.0289944 0.00572599 1.21326e-10 0.0288034 0.00537723 1.25866e-10 0.0285838 0.00504609 1.38217e-10 0.0283462 0.00473202 1.52373e-10 0.0281026 0.00443553 1.74139e-10 0.0278613 0.00415694 1.96524e-10 0.0276248 0.00389545 2.2075e-10 0.0274019 0.00364943 2.46369e-10 0.0271806 0.00341893 2.63656e-10 0.0269668 0.00319951 2.77721e-10 0.0267532 0.00299304 2.87398e-10 0.0265263 0.0027954 2.81057e-10 0.0263058 0.00260681 2.77226e-10 0.0260842 0.0024282 2.60711e-10 0.025864 0.00225904 2.30225e-10 0.0256625 0.00209962 2.13446e-10 0.0254782 0.00195093 1.87374e-10 0.0253229 0.00181417 1.35625e-10 0.0252002 0.00168802 1.29731e-10 0.0251026 0.00157254 1.03142e-10 0.0250201 0.00146682 7.93112e-11 0.0249434 0.00137009 5.9486e-11 0.0248661 0.00128203 4.41724e-11 0.0247854 0.00120276 3.31853e-11 0.0246998 0.00113268 2.81832e-11 0.024609 0.00107222 2.8286e-11 0.024515 0.00102186 3.59533e-11 0.0244245 0.000982005 4.76413e-11 0.0243451 0.000953065 6.5518e-11 0.0242755 0.00093459 5.96148e-11 0.0242048 0.000926203 3.27108e-11 0.0241191 0.000928363 -1.31402e-11 0.0239867 0.000937869 -1.25507e-10 0.0236952 0.000945735 -3.43911e-10 0.0229879 0.000932159 -7.77516e-10 0.0219031 0.000883348 -1.07552e-09 0.0203928 0.000795372 -1.30729e-09 0.0185972 0.000668496 -1.34778e-09 0.0167817 0.000526116 -1.17057e-09 0.0151877 0.000390037 -8.79578e-10 0.013932 0.000276623 -5.94527e-10 0.0130164 0.000190919 -3.75044e-10 0.0123829 0.000129997 -2.24626e-10 0.0119603 8.81502e-05 -1.22877e-10 0.0116857 5.99416e-05 -5.79516e-11 0.0115097 4.09819e-05 -1.98942e-11 0.0113976 2.81729e-05 4.38693e-12 0.0113264 1.94528e-05 1.91073e-11 0.011281 1.34677e-05 2.87698e-11 0.011252 9.33203e-06 3.21857e-11 0.0112335 6.46408e-06 3.68294e-11 0.0112216 4.46991e-06 3.89767e-11 0.011214 3.07376e-06 3.97744e-11 0.0112091 2.09882e-06 4.01588e-11 0.0112059 1.42684e-06 4.04502e-11 0.0112038 9.63768e-07 4.06188e-11 0.0112025 6.46302e-07 4.07031e-11 0.0112016 4.30202e-07 4.07414e-11 0.011201 2.84133e-07 4.07596e-11 0.0112007 1.86151e-07 4.07622e-11 0.0112004 1.20961e-07 4.07685e-11 0.0112003 7.79533e-08 4.07574e-11 0.0112002 4.98191e-08 4.07736e-11 0.0112001 3.15803e-08 4.0744e-11 0.0112001 1.98382e-08 4.08018e-11 0.0112001 1.23833e-08 4.07079e-11 7.47981e-09 4.0917e-11 0.0168034 1.09158e-08 3.47332e-11 0.0168051 8.65322e-09 3.68046e-11 0.016808 1.52227e-08 3.56026e-11 0.0168122 9.05638e-08 3.85015e-11 0.0168199 1.56029e-07 3.97636e-11 0.0168317 1.05607e-06 3.89806e-11 0.0168548 3.06321e-06 6.0928e-11 0.0168815 1.39513e-05 5.23943e-11 0.01699 3.7822e-05 1.60699e-10 0.0172207 0.000130301 1.69686e-10 0.0180746 0.000347233 5.87881e-10 0.0200516 0.00107255 1.07011e-09 0.0245846 0.002729 2.73412e-09 0.0291895 0.00619476 4.8378e-09 0.0315445 0.0124659 1.63711e-09 0.0324944 0.0148146 7.52353e-10 0.0327335 0.0156426 6.20977e-10 0.0327984 0.0155615 5.47564e-10 0.0329332 0.0151522 5.04519e-10 0.0329184 0.0147271 4.11311e-10 0.0326915 0.0142459 3.9286e-10 0.0324306 0.0136269 2.65596e-10 0.0321407 0.0129004 1.92855e-10 0.0318714 0.0121272 1.96811e-10 0.0316301 0.0113745 1.30451e-10 0.0314179 0.0106605 1.55744e-10 0.0312315 0.00999436 1.43711e-10 0.0310617 0.00937655 1.31157e-10 0.0309005 0.00880276 1.22235e-10 0.0307463 0.00827179 1.19062e-10 0.0305955 0.00778135 1.17162e-10 0.0304384 0.00732743 1.18754e-10 0.0302659 0.0069039 1.18687e-10 0.0300721 0.00650551 1.22833e-10 0.0298502 0.00612875 1.29272e-10 0.0295987 0.00577012 1.39738e-10 0.0293267 0.00542829 1.52541e-10 0.0290481 0.00510405 1.70811e-10 0.0287738 0.00479816 1.92477e-10 0.028507 0.00451053 2.14172e-10 0.0282491 0.00423928 2.35868e-10 0.0280018 0.0039832 2.48675e-10 0.0277546 0.00374091 2.56271e-10 0.0275139 0.00350954 2.57372e-10 0.0272659 0.00329031 2.4944e-10 0.0270101 0.00307918 2.35922e-10 0.0267645 0.00287833 2.20343e-10 0.0265219 0.00268823 1.89154e-10 0.0262963 0.00250891 1.78401e-10 0.0260905 0.00234033 1.43975e-10 0.0259084 0.00218454 1.25231e-10 0.0257584 0.00204004 1.1193e-10 0.0256342 0.00190701 9.26823e-11 0.0255261 0.00178457 7.55785e-11 0.0254251 0.00167188 6.08314e-11 0.0253257 0.00156853 4.83424e-11 0.0252256 0.0014746 3.78776e-11 0.0251239 0.00139058 3.17862e-11 0.0250204 0.0013169 3.21906e-11 0.0249159 0.00125393 4.09323e-11 0.0248149 0.00120197 5.56577e-11 0.0247243 0.00116135 7.46313e-11 0.0246452 0.00113177 7.13188e-11 0.0245638 0.00111243 5.29124e-11 0.0244539 0.00110098 -1.30211e-11 0.0242724 0.00109333 -1.44137e-10 0.0238527 0.00107817 -4.19154e-10 0.0231072 0.00103735 -7.62627e-10 0.0219262 0.00096 -1.11031e-09 0.0203128 0.000837805 -1.35358e-09 0.0184427 0.000682264 -1.37734e-09 0.0165988 0.000519014 -1.17917e-09 0.0150142 0.000371999 -8.75068e-10 0.0137874 0.000255508 -5.87491e-10 0.012905 0.000171151 -3.68925e-10 0.0123012 0.000113401 -2.22123e-10 0.0119023 7.49908e-05 -1.19651e-10 0.0116451 4.98644e-05 -5.82214e-11 0.0114814 3.34182e-05 -1.99442e-11 0.0113779 2.25721e-05 4.03327e-12 0.0113125 1.53472e-05 1.88016e-11 0.0112713 1.04849e-05 2.78971e-11 0.0112453 7.18207e-06 3.30858e-11 0.0112288 4.92135e-06 3.64468e-11 0.0112183 3.36695e-06 3.82675e-11 0.0112117 2.29845e-06 3.94202e-11 0.0112075 1.56337e-06 4.01035e-11 0.0112048 1.05553e-06 4.02867e-11 0.011203 7.07626e-07 4.05383e-11 0.011202 4.71707e-07 4.06513e-11 0.0112013 3.12404e-07 4.07075e-11 0.0112008 2.05324e-07 4.07375e-11 0.0112005 1.33887e-07 4.07481e-11 0.0112003 8.66173e-08 4.0759e-11 0.0112002 5.55931e-08 4.07511e-11 0.0112002 3.53928e-08 4.07701e-11 0.0112001 2.23538e-08 4.0741e-11 0.0112001 1.3993e-08 4.08012e-11 0.0112001 8.70709e-09 4.07087e-11 5.24334e-09 4.09182e-11 0.0168034 2.05694e-09 3.51393e-11 0.016805 8.07226e-10 3.60333e-11 0.016808 1.77581e-09 3.61866e-11 0.0168118 1.53469e-08 3.78154e-11 0.0168182 1.01479e-08 3.84998e-11 0.0168267 1.34193e-07 4.08562e-11 0.0168413 3.59585e-07 4.58246e-11 0.0168691 1.76286e-06 4.73418e-11 0.0169038 6.27374e-06 6.79866e-11 0.0170114 2.33263e-05 1.03402e-10 0.017162 7.96753e-05 2.18845e-10 0.0178207 0.000228774 4.20973e-10 0.0192869 0.000716607 9.00585e-10 0.0225877 0.00189095 1.81692e-09 0.0280425 0.00452449 3.63423e-09 0.0312208 0.0105439 1.52296e-09 0.0324722 0.0137689 1.53145e-09 0.0330177 0.0150373 8.08047e-10 0.0332036 0.0151723 6.05216e-10 0.0332895 0.0148821 6.08927e-10 0.0334443 0.0144407 5.61208e-10 0.0334849 0.0140377 4.51697e-10 0.0333466 0.0135854 3.5795e-10 0.0331631 0.0130061 2.44859e-10 0.0329674 0.0123439 1.72138e-10 0.0327679 0.011669 1.62661e-10 0.0325732 0.01101 1.51878e-10 0.0323779 0.0103808 1.30445e-10 0.0321844 0.00978571 1.19445e-10 0.0319955 0.00923036 1.17946e-10 0.0318108 0.00871186 1.19472e-10 0.0316231 0.00822991 1.22743e-10 0.0314178 0.00777719 1.25697e-10 0.0311877 0.00734846 1.31599e-10 0.0309304 0.0069402 1.40397e-10 0.0306443 0.00655048 1.51211e-10 0.0303357 0.00617717 1.64997e-10 0.0300186 0.00582095 1.81108e-10 0.0297072 0.00548333 1.96316e-10 0.0294074 0.00516505 2.08361e-10 0.0291172 0.00486444 2.17249e-10 0.0288366 0.0045795 2.17883e-10 0.0285629 0.00430905 2.11511e-10 0.0282882 0.00405127 1.98687e-10 0.0280166 0.00380446 1.85439e-10 0.0277362 0.00356918 1.65165e-10 0.0274578 0.00334284 1.48951e-10 0.0271943 0.00312857 1.2961e-10 0.0269443 0.00292636 1.10052e-10 0.0267172 0.00273612 9.8094e-11 0.0265101 0.00255829 7.96169e-11 0.0263329 0.0023941 8.11472e-11 0.0261836 0.00224166 6.70062e-11 0.0260523 0.0021013 5.63923e-11 0.0259291 0.00197184 4.76336e-11 0.0258077 0.0018526 4.01695e-11 0.0256873 0.00174352 3.28755e-11 0.0255676 0.00164502 2.75258e-11 0.0254485 0.00155757 2.94212e-11 0.0253308 0.00148138 4.23687e-11 0.0252175 0.0014165 6.48968e-11 0.0251128 0.00136277 8.82653e-11 0.025017 0.00131975 9.50866e-11 0.024916 0.00128585 7.16549e-11 0.0247717 0.00125765 2.75393e-12 0.0245124 0.0012282 -1.49792e-10 0.0240242 0.00118476 -4.37272e-10 0.0231767 0.00111356 -7.95135e-10 0.0218764 0.00100182 -1.16079e-09 0.0201568 0.000844045 -1.40214e-09 0.0182264 0.000664757 -1.40179e-09 0.0163749 0.000488065 -1.18067e-09 0.0148187 0.000338086 -8.66571e-10 0.013634 0.000224981 -5.78289e-10 0.0127926 0.000146382 -3.62897e-10 0.0122221 9.44467e-05 -2.18313e-10 0.011848 6.09815e-05 -1.17923e-10 0.0116083 3.96885e-05 -5.76587e-11 0.0114564 2.60999e-05 -1.99724e-11 0.0113609 1.73407e-05 3.73829e-12 0.0113009 1.16236e-05 1.84487e-11 0.0112633 7.844e-06 2.74608e-11 0.0112397 5.31599e-06 3.28612e-11 0.011225 3.60942e-06 3.61502e-11 0.0112157 2.45029e-06 3.81031e-11 0.0112099 1.66002e-06 3.9237e-11 0.0112062 1.12015e-06 3.9865e-11 0.0112039 7.52406e-07 4.02639e-11 0.0112025 5.03013e-07 4.05333e-11 0.0112016 3.33876e-07 4.06026e-11 0.011201 2.20012e-07 4.0679e-11 0.0112006 1.43856e-07 4.07212e-11 0.0112004 9.33671e-08 4.07372e-11 0.0112003 6.01827e-08 4.07511e-11 0.0112002 3.84908e-08 4.07463e-11 0.0112001 2.44223e-08 4.07672e-11 0.0112001 1.53744e-08 4.07387e-11 0.0112001 9.5932e-09 4.08012e-11 0.0112001 5.95233e-09 4.07102e-11 3.57496e-09 4.09192e-11 0.0168033 4.01814e-10 3.51122e-11 0.0168051 2.11646e-10 3.59857e-11 0.0168078 -5.11285e-10 3.61851e-11 0.016812 6.08523e-09 3.79159e-11 0.0168177 -9.38538e-09 3.79962e-11 0.0168265 3.96812e-08 4.22248e-11 0.0168386 1.12597e-08 4.19236e-11 0.016857 2.46504e-07 4.99126e-11 0.0168856 6.84288e-07 5.29626e-11 0.016932 2.92352e-06 6.78214e-11 0.0170252 1.20358e-05 9.05642e-11 0.0171625 4.11689e-05 1.76945e-10 0.0176427 0.000136579 3.17699e-10 0.0186597 0.000435574 7.37856e-10 0.0210485 0.00123092 1.43939e-09 0.026501 0.00310894 2.70167e-09 0.030334 0.00665094 4.61857e-09 0.0322222 0.0121802 1.89056e-09 0.0331406 0.0138566 1.13241e-09 0.0335262 0.0145554 7.85091e-10 0.0337116 0.0145119 6.26125e-10 0.0338883 0.0141548 5.49758e-10 0.0340959 0.0137471 5.15661e-10 0.034137 0.0133802 4.6407e-10 0.03407 0.0129447 3.68108e-10 0.0339589 0.0124186 2.33715e-10 0.0338054 0.0118529 2.03387e-10 0.0336278 0.011276 1.7332e-10 0.0334351 0.0107064 1.56299e-10 0.0332365 0.0101568 1.51009e-10 0.0330338 0.00963378 1.48955e-10 0.0328218 0.00913842 1.47109e-10 0.0325884 0.0086659 1.4797e-10 0.0323259 0.0082128 1.54048e-10 0.0320336 0.00777579 1.63113e-10 0.0317136 0.00735555 1.73857e-10 0.0313694 0.00694992 1.85435e-10 0.0310151 0.00655992 2.01981e-10 0.0306667 0.00618795 2.17142e-10 0.0303326 0.00583533 2.30586e-10 0.0300118 0.00550131 2.40095e-10 0.0297009 0.00518378 2.44812e-10 0.0293983 0.00488124 2.42885e-10 0.0290985 0.0045922 2.37862e-10 0.0287968 0.00431537 2.31375e-10 0.0284977 0.00404978 2.19672e-10 0.0281952 0.00379637 2.0164e-10 0.0279046 0.00355376 1.91048e-10 0.0276348 0.00332526 1.63761e-10 0.027384 0.00311016 1.49328e-10 0.0271567 0.00290857 1.28245e-10 0.0269541 0.00272169 1.15947e-10 0.0267794 0.0025491 9.41264e-11 0.0266248 0.00238932 7.84478e-11 0.0264802 0.00224252 6.74663e-11 0.0263377 0.0021074 5.81563e-11 0.0261948 0.00198339 5.06814e-11 0.0260519 0.00187063 4.24212e-11 0.02591 0.00176943 4.18405e-11 0.0257703 0.00167989 5.68113e-11 0.0256348 0.00160163 8.71614e-11 0.0255065 0.00153396 1.21733e-10 0.0253827 0.00147572 1.36152e-10 0.0252455 0.00142451 1.15626e-10 0.0250507 0.00137561 3.44518e-11 0.0247177 0.00132048 -1.37386e-10 0.0241306 0.00124708 -4.39432e-10 0.0231616 0.00114206 -8.28847e-10 0.0217353 0.000990285 -1.2126e-09 0.0199218 0.000807821 -1.44018e-09 0.0179555 0.000613253 -1.41489e-09 0.0161218 0.000434386 -1.17279e-09 0.0146129 0.000290987 -8.52484e-10 0.0134812 0.000187784 -5.6626e-10 0.0126854 0.00011886 -3.56296e-10 0.0121496 7.47839e-05 -2.1415e-10 0.0117999 4.72067e-05 -1.16158e-10 0.0115765 3.01123e-05 -5.71993e-11 0.0114354 1.94574e-05 -2.00054e-11 0.0113469 1.27331e-05 3.47981e-12 0.0112915 8.42552e-06 1.81159e-11 0.011257 5.62364e-06 2.71148e-11 0.0112354 3.7757e-06 3.26041e-11 0.011222 2.54316e-06 3.59288e-11 0.0112137 1.71442e-06 3.79138e-11 0.0112085 1.15428e-06 3.91006e-11 0.0112053 7.74811e-07 3.9803e-11 0.0112033 5.17888e-07 4.02207e-11 0.011202 3.44449e-07 4.04608e-11 0.0112013 2.27682e-07 4.06033e-11 0.0112008 1.49412e-07 4.06389e-11 0.0112005 9.74696e-08 4.07019e-11 0.0112003 6.31295e-08 4.07374e-11 0.0112002 4.05365e-08 4.07456e-11 0.0112001 2.58411e-08 4.07438e-11 0.0112001 1.63446e-08 4.07635e-11 0.0112001 1.02553e-08 4.07386e-11 0.0112001 6.37874e-09 4.08011e-11 0.0112001 3.94878e-09 4.0712e-11 2.36647e-09 4.09199e-11 0.0168033 1.02307e-10 3.52404e-11 0.0168051 -3.98907e-11 3.58474e-11 0.0168078 -1.45891e-10 3.65383e-11 0.0168119 1.30559e-09 3.74047e-11 0.0168178 -2.84482e-09 3.88262e-11 0.0168262 8.5801e-09 4.1107e-11 0.0168384 -6.89795e-09 4.31668e-11 0.0168558 3.80394e-08 4.83723e-11 0.0168802 7.09128e-08 5.2492e-11 0.0169149 3.53899e-07 6.2754e-11 0.0169686 1.30617e-06 7.31997e-11 0.017051 5.33828e-06 9.71176e-11 0.0172283 1.89997e-05 1.45773e-10 0.0175601 7.07633e-05 2.43689e-10 0.0182909 0.000233246 5.741e-10 0.0201819 0.00071608 9.94329e-10 0.0235455 0.00186889 2.45473e-09 0.0285596 0.00420589 4.22407e-09 0.0316059 0.00892942 2.37663e-09 0.0329699 0.0123921 1.53997e-09 0.0337396 0.0134626 9.94214e-10 0.0341017 0.0139012 6.76756e-10 0.0343028 0.013799 5.40661e-10 0.0345326 0.0134317 4.65964e-10 0.0346974 0.0130685 5.09869e-10 0.0347434 0.0126995 3.78608e-10 0.0347121 0.0122869 6.12675e-10 0.0346219 0.0118276 3.15818e-10 0.0344879 0.0113463 2.35272e-10 0.0343228 0.010856 2.12073e-10 0.034138 0.0103688 2.02657e-10 0.0339299 0.00989211 1.90437e-10 0.0336914 0.00942374 1.76265e-10 0.0334162 0.00896513 1.74004e-10 0.0331068 0.00851353 1.76907e-10 0.0327665 0.0080724 1.84898e-10 0.0324011 0.00764101 1.91191e-10 0.0320243 0.00722162 2.00749e-10 0.0316518 0.00681699 2.11665e-10 0.031294 0.00642976 2.18984e-10 0.0309519 0.00606051 2.2513e-10 0.0306223 0.00570839 2.29934e-10 0.0302998 0.00537107 2.26574e-10 0.029982 0.00504754 2.21529e-10 0.0296641 0.00473686 2.21502e-10 0.0293454 0.00443893 2.1826e-10 0.0290323 0.00415352 2.07429e-10 0.028722 0.003882 2.03992e-10 0.0284299 0.00362395 1.85084e-10 0.0281619 0.00338255 1.67089e-10 0.0279129 0.00315648 1.54025e-10 0.0276892 0.0029474 1.42941e-10 0.027488 0.00275457 1.04253e-10 0.0273049 0.00257825 9.90734e-11 0.0271328 0.00241646 9.08849e-11 0.0269631 0.00226813 8.23307e-11 0.0267913 0.00213291 7.95451e-11 0.0266159 0.00200982 7.55866e-11 0.026437 0.00189861 7.33725e-11 0.0262566 0.00179906 9.27132e-11 0.0260784 0.00171055 1.32828e-10 0.0259056 0.00163189 1.82858e-10 0.0257336 0.00156084 2.07902e-10 0.0255401 0.00149391 1.8188e-10 0.0252743 0.00142481 8.69691e-11 0.0248493 0.0013439 -9.99893e-11 0.0241455 0.00123906 -4.38179e-10 0.0230436 0.00109629 -8.62513e-10 0.0214994 0.00091962 -1.25493e-09 0.0196186 0.000723171 -1.46836e-09 0.0176479 0.000529124 -1.41662e-09 0.0158579 0.000362002 -1.15865e-09 0.0144114 0.000234947 -8.35642e-10 0.0133389 0.000147371 -5.546e-10 0.0125897 9.09349e-05 -3.49543e-10 0.012087 5.59173e-05 -2.1052e-10 0.0117596 3.45729e-05 -1.1453e-10 0.0115506 2.1654e-05 -5.67202e-11 0.0114187 1.37723e-05 -2.00546e-11 0.0113359 8.89209e-06 3.2285e-12 0.0112843 5.8175e-06 1.78095e-11 0.0112522 3.84614e-06 2.68322e-11 0.0112322 2.56177e-06 3.2372e-11 0.0112198 1.7139e-06 3.57446e-11 0.0112122 1.14869e-06 3.77809e-11 0.0112075 7.69476e-07 3.90052e-11 0.0112046 5.14224e-07 3.97343e-11 0.0112028 3.42355e-07 4.01706e-11 0.0112017 2.26842e-07 4.04198e-11 0.0112011 1.49429e-07 4.05617e-11 0.0112007 9.77908e-08 4.06482e-11 0.0112004 6.35726e-08 4.06978e-11 0.0112003 4.10456e-08 4.07227e-11 0.0112002 2.63056e-08 4.07381e-11 0.0112001 1.67209e-08 4.07475e-11 0.0112001 1.05484e-08 4.07571e-11 0.0112001 6.60864e-09 4.07454e-11 0.0112001 4.10744e-09 4.07969e-11 0.0112 2.53238e-09 4.07126e-11 1.51688e-09 4.09201e-11 0.0168033 2.49273e-11 3.52873e-11 0.0168051 -2.40401e-11 3.5856e-11 0.0168078 -7.83892e-12 3.66166e-11 0.0168119 2.53447e-10 3.73549e-11 0.0168178 -6.6863e-10 3.89379e-11 0.0168262 1.83335e-09 4.08668e-11 0.0168384 -2.13638e-09 4.34843e-11 0.0168556 5.84963e-09 4.77514e-11 0.0168797 8.51266e-09 5.29536e-11 0.0169127 3.31766e-08 6.07795e-11 0.0169587 1.73378e-07 7.26168e-11 0.0170225 5.73334e-07 8.58446e-11 0.0171157 2.3471e-06 1.1401e-10 0.0172656 8.63831e-06 1.41507e-10 0.0175494 3.24914e-05 2.29858e-10 0.018117 0.000112339 4.07035e-10 0.0193388 0.000365516 8.02331e-10 0.0218088 0.0010347 1.48054e-09 0.0258386 0.00243741 3.02248e-09 0.0298654 0.00485785 4.21079e-09 0.0323532 0.00921898 2.02647e-09 0.0335441 0.0118943 1.29561e-09 0.0342327 0.0126994 8.1596e-10 0.0346053 0.0130077 6.33132e-10 0.034878 0.012964 5.78837e-10 0.0350633 0.0127019 6.03888e-10 0.035185 0.0123553 5.86487e-10 0.0351939 0.0119758 3.8538e-10 0.0351517 0.0115646 3.10541e-10 0.0350631 0.0111377 2.72264e-10 0.0349441 0.0106971 2.46434e-10 0.0347884 0.0102556 2.29087e-10 0.0345922 0.00980961 2.17516e-10 0.034352 0.00936243 2.15082e-10 0.0340694 0.00890996 2.12553e-10 0.0337535 0.00845692 2.16218e-10 0.0334094 0.0080073 2.19367e-10 0.0330505 0.00756346 2.35917e-10 0.0326921 0.00712981 2.63574e-10 0.032345 0.00671002 2.90619e-10 0.0320152 0.00630634 3.22042e-10 0.0316969 0.00591984 3.52935e-10 0.0313829 0.00554881 3.8389e-10 0.0310676 0.00519142 4.06231e-10 0.0307527 0.00484811 4.27018e-10 0.0304354 0.00451949 4.40348e-10 0.0301172 0.00420562 4.37742e-10 0.0298045 0.00390746 4.30986e-10 0.0294974 0.00362661 3.96051e-10 0.0292053 0.003365 3.4674e-10 0.0289352 0.00312337 3.0654e-10 0.0286808 0.00290227 2.78229e-10 0.0284435 0.00270202 2.19266e-10 0.0282181 0.0025213 2.11096e-10 0.0279954 0.00235831 1.85837e-10 0.027773 0.0022122 1.75122e-10 0.0275474 0.00208111 1.56993e-10 0.0273161 0.00196354 1.64724e-10 0.0270767 0.00185742 1.69254e-10 0.0268299 0.00176216 1.84104e-10 0.026581 0.00167743 2.21464e-10 0.0263348 0.00160018 2.7124e-10 0.026086 0.00152636 3.05972e-10 0.0258077 0.00144998 2.91194e-10 0.0254416 0.00136319 1.80071e-10 0.0248949 0.00125729 -5.23781e-11 0.0240533 0.00112459 -4.30567e-10 0.0228215 0.000960716 -8.79338e-10 0.0211865 0.00077874 -1.27573e-09 0.0192742 0.000590721 -1.47469e-09 0.0173321 0.000417666 -1.40303e-09 0.0156059 0.000276941 -1.13621e-09 0.0142295 0.000174785 -8.16072e-10 0.013216 0.000106954 -5.42317e-10 0.0125101 6.45464e-05 -3.4181e-10 0.0120366 3.89173e-05 -2.08862e-10 0.011728 2.36293e-05 -1.12366e-10 0.0115308 1.45684e-05 -5.62607e-11 0.0114061 9.14121e-06 -2.00872e-11 0.0113279 5.83509e-06 3.02645e-12 0.011279 3.78149e-06 1.75677e-11 0.0112487 2.48057e-06 2.66124e-11 0.0112299 1.64156e-06 3.219e-11 0.0112183 1.09234e-06 3.5605e-11 0.0112112 7.28762e-07 3.76796e-11 0.0112068 4.86256e-07 3.89322e-11 0.0112041 3.23836e-07 3.96835e-11 0.0112025 2.14931e-07 4.01312e-11 0.0112015 1.41998e-07 4.03941e-11 0.0112009 9.32971e-08 4.0547e-11 0.0112006 6.09162e-08 4.06362e-11 0.0112004 3.95105e-08 4.06886e-11 0.0112002 2.54499e-08 4.07175e-11 0.0112001 1.62746e-08 4.0736e-11 0.0112001 1.03281e-08 4.0741e-11 0.0112001 6.50381e-09 4.07585e-11 0.0112001 4.06503e-09 4.07389e-11 0.0112001 2.52259e-09 4.08012e-11 0.0112 1.54864e-09 4.07135e-11 9.30017e-10 4.09225e-11 0.0168033 6.93136e-12 3.52715e-11 0.0168051 -7.33714e-12 3.57922e-11 0.0168078 5.3109e-12 3.66593e-11 0.0168119 4.93192e-11 3.72102e-11 0.0168178 -1.41712e-10 3.91245e-11 0.0168262 3.99214e-10 4.06297e-11 0.0168384 -5.63656e-10 4.3693e-11 0.0168556 1.12734e-09 4.75346e-11 0.0168796 7.32985e-10 5.29688e-11 0.0169125 3.15283e-09 6.09909e-11 0.0169576 2.29226e-08 7.14461e-11 0.0170187 5.83617e-08 8.63473e-11 0.0171006 2.96044e-07 1.06985e-10 0.0172117 9.99161e-07 1.32152e-10 0.0173686 4.06899e-06 1.757e-10 0.0176119 1.43577e-05 2.30791e-10 0.0180555 5.14764e-05 3.49411e-10 0.0188862 0.00017307 5.93175e-10 0.0204375 0.000501439 1.14106e-09 0.0230156 0.00125327 1.55803e-09 0.0267074 0.00260627 3.39514e-09 0.0302531 0.00462001 3.36539e-09 0.0325621 0.00772376 2.0057e-09 0.0337783 0.0105201 1.17678e-09 0.0345002 0.0115323 9.44312e-10 0.0349608 0.0117718 7.91932e-10 0.0352979 0.0117504 6.13796e-10 0.0355395 0.0114669 5.74621e-10 0.0356974 0.0111463 4.65338e-10 0.0357146 0.0108253 3.58251e-10 0.0356569 0.0104523 2.77957e-10 0.0355847 0.0100305 2.78427e-10 0.0354815 0.00956431 2.62735e-10 0.0353422 0.00907222 2.61369e-10 0.0351631 0.00857276 2.52594e-10 0.0349459 0.008082 2.62907e-10 0.0346965 0.00759422 2.59623e-10 0.0344258 0.0071166 2.63811e-10 0.034146 0.00665125 2.74371e-10 0.0338655 0.00620297 2.89455e-10 0.0335915 0.00577118 3.09261e-10 0.0333246 0.00536183 3.36053e-10 0.0330505 0.00496851 3.58847e-10 0.0327669 0.00458449 3.96159e-10 0.0324722 0.0042203 3.91852e-10 0.0321678 0.00387733 3.92298e-10 0.0318515 0.00355857 3.60615e-10 0.0315206 0.00326274 3.29743e-10 0.0311881 0.00299254 3.07133e-10 0.0308552 0.00274847 2.9825e-10 0.0305227 0.00253116 3.03915e-10 0.0302027 0.00233939 3.07362e-10 0.0298945 0.00217287 2.97168e-10 0.0295834 0.0020297 2.92348e-10 0.0292649 0.00190642 2.95716e-10 0.0289435 0.00180025 2.92598e-10 0.0286207 0.00170869 3.10364e-10 0.0282917 0.00162914 2.95211e-10 0.0279532 0.00155911 2.72127e-10 0.0276047 0.00149451 2.89856e-10 0.0272457 0.00143238 3.48118e-10 0.0268788 0.00136992 4.15906e-10 0.0264974 0.00130055 4.58312e-10 0.0260733 0.00121927 4.35268e-10 0.0255506 0.00112161 3.012e-10 0.0248468 0.00100562 2.39084e-11 0.0238654 0.000870733 -3.88309e-10 0.0225297 0.000722556 -8.67489e-10 0.0208417 0.00056734 -1.27804e-09 0.0189351 0.000417422 -1.4677e-09 0.0170451 0.000286948 -1.38394e-09 0.0153904 0.000185548 -1.11372e-09 0.0140811 0.000114537 -7.98069e-10 0.0131196 6.87355e-05 -5.31309e-10 0.0124496 4.07709e-05 -3.37005e-10 0.0119993 2.42034e-05 -2.06231e-10 0.0117051 1.44875e-05 -1.11409e-10 0.0115167 8.82179e-06 -5.60551e-11 0.0113973 5.47727e-06 -2.01767e-11 0.0113223 3.46562e-06 2.84115e-12 0.0112755 2.22973e-06 1.73721e-11 0.0112464 1.45405e-06 2.64418e-11 0.0112284 9.57626e-07 3.2054e-11 0.0112173 6.34714e-07 3.55017e-11 0.0112105 4.22052e-07 3.76048e-11 0.0112063 2.80813e-07 3.88791e-11 0.0112038 1.86555e-07 3.9646e-11 0.0112023 1.23545e-07 4.01042e-11 0.0112014 8.14576e-08 4.03759e-11 0.0112008 5.34209e-08 4.05356e-11 0.0112005 3.48213e-08 4.06289e-11 0.0112003 2.25485e-08 4.06834e-11 0.0112002 1.45005e-08 4.0714e-11 0.0112001 9.2584e-09 4.07337e-11 0.0112001 5.86772e-09 4.07398e-11 0.0112001 3.69069e-09 4.07571e-11 0.0112001 2.30351e-09 4.07393e-11 0.0112 1.42769e-09 4.08006e-11 0.0112 8.74699e-10 4.07159e-11 5.24705e-10 4.09245e-11 0.0168033 2.79612e-12 3.52738e-11 0.0168051 -7.53807e-13 3.57503e-11 0.0168078 4.76678e-12 3.66928e-11 0.0168119 1.01539e-11 3.713e-11 0.0168178 -2.12418e-11 3.9167e-11 0.0168262 7.95009e-11 4.05519e-11 0.0168384 -1.0374e-10 4.37065e-11 0.0168556 2.10921e-10 4.74561e-11 0.0168796 8.45758e-11 5.29559e-11 0.0169125 2.07368e-10 6.0796e-11 0.0169574 3.27656e-09 7.14116e-11 0.0170182 5.30488e-09 8.59517e-11 0.0170989 3.68256e-08 1.05897e-10 0.0172049 1.12673e-07 1.30701e-10 0.0173438 4.94323e-07 1.67051e-10 0.017527 1.7311e-06 2.06395e-10 0.0177764 6.52229e-06 2.66153e-10 0.018141 2.27976e-05 3.51108e-10 0.0187395 7.33017e-05 5.03658e-10 0.0197256 0.000217148 7.3808e-10 0.0212664 0.000544152 1.22602e-09 0.0234321 0.00117051 1.62248e-09 0.0263219 0.00213662 2.54468e-09 0.0293711 0.00347534 2.75088e-09 0.0318791 0.00489514 2.32692e-09 0.0336435 0.00676619 1.51987e-09 0.0347549 0.00837437 1.09169e-09 0.0354894 0.00904945 8.36001e-10 0.0360639 0.00900294 7.718e-10 0.0365248 0.00876385 6.51849e-10 0.0368789 0.00848986 5.86825e-10 0.0371525 0.00808328 4.56911e-10 0.0373706 0.00758747 4.30134e-10 0.0375184 0.00708894 4.1443e-10 0.0375465 0.00659738 3.84982e-10 0.0375096 0.00608794 3.41063e-10 0.0374288 0.00559874 3.32849e-10 0.037302 0.00514194 2.9922e-10 0.0371362 0.00470024 2.77136e-10 0.0369455 0.00428071 2.91541e-10 0.0367308 0.00388568 2.64008e-10 0.0364989 0.00352519 2.25979e-10 0.0362378 0.00319102 2.00458e-10 0.0359308 0.00288244 1.76545e-10 0.0355872 0.00258886 1.67692e-10 0.0352253 0.0023108 1.56935e-10 0.0348357 0.00206394 1.44829e-10 0.0344153 0.00184975 1.13421e-10 0.033971 0.00166627 1.14627e-10 0.0335132 0.00151124 1.47399e-10 0.0330531 0.00138323 2.07868e-10 0.0325849 0.0012793 2.65092e-10 0.0321209 0.00119614 2.9902e-10 0.0316631 0.00113156 3.29557e-10 0.0311931 0.00108164 3.56807e-10 0.0307029 0.00104125 3.84724e-10 0.0302034 0.00100758 4.24973e-10 0.0297035 0.000978944 4.40481e-10 0.0291933 0.000950033 4.46624e-10 0.0286593 0.000918347 4.53062e-10 0.0280979 0.000882721 5.30518e-10 0.0275138 0.000838636 6.31646e-10 0.0269119 0.000785305 6.76502e-10 0.0262797 0.000722146 6.35954e-10 0.0255751 0.000649651 4.65421e-10 0.0247254 0.000568847 1.37901e-10 0.0236386 0.000481782 -3.26374e-10 0.0222407 0.000390607 -8.42402e-10 0.0205372 0.000299878 -1.26503e-09 0.0186591 0.000216062 -1.45193e-09 0.0168254 0.000145738 -1.36231e-09 0.0152329 9.26827e-05 -1.0928e-09 0.0139766 5.63877e-05 -7.84099e-10 0.0130537 3.34112e-05 -5.23941e-10 0.0124092 1.95956e-05 -3.32673e-10 0.0119749 1.15154e-05 -2.03764e-10 0.0116905 6.82828e-06 -1.10716e-10 0.0115078 4.12448e-06 -5.58741e-11 0.0113918 2.54346e-06 -2.02009e-11 0.0113189 1.60029e-06 2.73764e-12 0.0112733 1.02488e-06 1.72527e-11 0.0112449 6.65875e-07 2.63346e-11 0.0112274 4.37233e-07 3.19679e-11 0.0112167 2.89095e-07 3.54363e-11 0.0112101 1.91847e-07 3.75572e-11 0.0112061 1.27428e-07 3.88452e-11 0.0112036 8.45309e-08 3.96223e-11 0.0112022 5.59067e-08 4.00879e-11 0.0112013 3.68169e-08 4.03648e-11 0.0112008 2.41182e-08 4.05284e-11 0.0112005 1.5705e-08 4.06242e-11 0.0112003 1.01599e-08 4.06803e-11 0.0112002 6.52754e-09 4.0712e-11 0.0112001 4.16392e-09 4.07322e-11 0.0112001 2.63671e-09 4.07395e-11 0.0112001 1.65718e-09 4.07557e-11 0.0112001 1.03347e-09 4.07403e-11 0.0112 6.40051e-10 4.07996e-11 0.0112 3.91737e-10 4.0718e-11 2.34871e-10 4.0926e-11 0.0168033 3.52915e-11 0.0168051 3.57266e-11 0.0168078 3.67215e-11 0.0168119 3.70823e-11 0.0168178 3.91836e-11 0.0168262 4.05092e-11 0.0168384 4.36696e-11 0.0168556 4.74666e-11 0.0168796 5.28408e-11 0.0169125 6.08096e-11 0.0169574 7.13062e-11 0.0170181 8.59551e-11 0.0170987 1.05552e-10 0.0172041 1.30818e-10 0.0173409 1.65578e-10 0.0175161 2.04156e-10 0.017737 2.54371e-10 0.0180149 3.14291e-10 0.0183745 3.8515e-10 0.0188652 4.8064e-10 0.0195733 6.2829e-10 0.0206002 8.60027e-10 0.0220447 1.14742e-09 0.0239227 1.51099e-09 0.0262008 1.78016e-09 0.0288332 2.16532e-09 0.0316036 2.31034e-09 0.0342039 2.13482e-09 0.036486 1.85116e-09 0.0384574 1.61561e-09 0.0401285 1.34918e-09 0.0414978 1.08035e-09 0.042586 9.1637e-10 0.0434193 7.72057e-10 0.0440074 6.58722e-10 0.0443609 5.3841e-10 0.0445694 3.31762e-10 0.044563 2.6229e-10 0.0444354 1.43162e-10 0.0441696 1.84225e-10 0.0438063 1.8744e-10 0.0433696 4.50181e-11 0.0428672 1.83141e-10 0.0422874 9.62969e-11 0.0416235 1.17197e-10 0.0408907 1.09986e-10 0.040113 1.13516e-10 0.0393002 1.04484e-10 0.0384701 1.20714e-10 0.03764 1.53658e-10 0.0368215 2.01883e-10 0.0360146 2.51959e-10 0.035221 2.65491e-10 0.0344418 3.01629e-10 0.0336638 3.57244e-10 0.0328782 3.88007e-10 0.0320834 4.82641e-10 0.0312844 5.79992e-10 0.0304873 5.90804e-10 0.0296851 6.4282e-10 0.0288666 7.78094e-10 0.0280433 8.54335e-10 0.0272321 8.81884e-10 0.0264281 8.10692e-10 0.0255916 5.98123e-10 0.0246466 2.23865e-10 0.0234975 -2.77604e-10 0.0220683 -8.21998e-10 0.020363 -1.25214e-09 0.0185067 -1.4421e-09 0.0167077 -1.34909e-09 0.0151507 -1.0824e-09 0.0139232 -7.76933e-10 0.0130206 -5.19949e-10 0.0123892 -3.30655e-10 0.011963 -2.02695e-10 0.0116834 -1.10433e-10 0.0115035 -5.58134e-11 0.0113892 -2.02321e-11 0.0113173 2.67495e-12 0.0112723 1.71875e-11 0.0112443 2.62784e-11 0.011227 3.19238e-11 0.0112164 3.54036e-11 0.0112099 3.75336e-11 0.0112059 3.88286e-11 0.0112036 3.96108e-11 0.0112021 4.008e-11 0.0112013 4.03595e-11 0.0112008 4.05249e-11 0.0112005 4.0622e-11 0.0112003 4.06788e-11 0.0112002 4.07112e-11 0.0112001 4.07314e-11 0.0112001 4.07394e-11 0.0112001 4.07548e-11 0.0112001 4.07411e-11 0.0112 4.07987e-11 0.0112 4.07193e-11 4.0927e-11 0.00965473 0.00861941 0.00623246 0.0034366 0.00472739 0.00149959 0.0041125 0.000617664 0.0039955 0.000112884 0.00424344 -0.000253301 0.00466742 -0.000409699 0.00494054 -0.000254878 0.0050375 -8.76306e-05 0.00502718 1.5686e-05 0.00496806 6.23318e-05 0.00493185 3.42666e-05 0.00492549 7.73688e-06 0.00495986 -2.53054e-05 0.00503064 -4.65679e-05 0.00512046 -5.68149e-05 0.00521641 -6.0194e-05 0.00532189 -6.1979e-05 0.00544256 -6.76614e-05 0.00557893 -7.53985e-05 0.00572806 -8.35424e-05 0.00588364 -9.03589e-05 0.00603666 -9.53349e-05 0.00617911 -9.82326e-05 0.00630594 -9.92165e-05 0.00641781 -9.8597e-05 0.00652218 -9.60113e-05 0.00662043 -9.2473e-05 0.006703 -8.92544e-05 0.0067677 -8.4777e-05 0.00682073 -7.82615e-05 0.00686493 -7.20728e-05 0.00690108 -6.59167e-05 0.00693088 -5.99403e-05 0.00695817 -5.43855e-05 0.00698732 -4.96068e-05 0.0070209 -4.59252e-05 0.00705979 -4.35374e-05 0.00710537 -4.25739e-05 0.00716071 -4.30903e-05 0.00722944 -4.50768e-05 0.00731629 -4.8518e-05 0.00742384 -5.35201e-05 0.00754652 -5.99463e-05 0.00768516 -6.73863e-05 0.00788987 -7.68759e-05 0.00825849 -7.99047e-05 0.00879648 -8.37008e-05 0.0094718 -9.37917e-05 0.0102536 -0.000108796 0.0111051 -0.000118762 0.011998 -0.000125136 0.0129042 -0.000131937 0.0137971 -0.000139012 0.0146556 -0.000146188 0.0154641 -0.000153296 0.0162092 -0.000160271 0.0168756 -0.000167089 0.0174487 -0.000173341 0.0179193 -0.000178109 0.0182941 -0.000180681 0.0185984 -0.000180902 0.0188496 -0.000179009 0.019054 -0.0001752 0.0192096 -0.000169678 0.0192915 -0.000162594 0.019213 -0.00015379 0.0186806 -0.000141338 0.0179522 -0.000121891 0.0169546 -0.000104486 0.0158242 -8.56024e-05 0.0147312 -6.64196e-05 0.0137935 -4.93133e-05 0.0130561 -3.54951e-05 0.0125109 -2.5063e-05 0.0121254 -1.74915e-05 0.0118614 -1.20765e-05 0.011685 -8.18572e-06 0.0115696 -5.37536e-06 0.0114949 -3.33234e-06 0.0114459 -2.01775e-06 0.0114117 -1.16759e-06 0.0113854 -4.43243e-07 0.0113627 9.54604e-08 0.0113415 4.14836e-07 0.0113211 5.68467e-07 0.0113016 6.08383e-07 0.0112833 5.77464e-07 0.0112669 5.08397e-07 0.0112525 4.24219e-07 0.0112404 3.39722e-07 0.0112305 2.63243e-07 0.0112226 1.98522e-07 0.0112165 1.46327e-07 0.0112118 1.05857e-07 0.0112084 7.52337e-08 0.0112059 5.28226e-08 0.011204 3.64567e-08 0.0112028 2.47513e-08 1.64373e-08 0.0130292 0.0127326 0.00991361 0.00657384 0.00828179 0.00314161 0.00759425 0.0013157 0.00732383 0.00039263 0.00717245 -9.34313e-05 0.00703833 -0.000253838 0.00707745 -0.000268361 0.00722647 -0.000207526 0.0073874 -0.000111289 0.00750246 -3.55951e-05 0.0075411 7.01798e-06 0.00754292 1.71471e-05 0.00752938 4.00054e-07 0.00753169 -3.26466e-05 0.00755632 -6.10635e-05 0.00760883 -8.46772e-05 0.00768934 -0.000101855 0.0077836 -0.000111111 0.00788772 -0.000120571 0.00800338 -0.000132805 0.00813103 -0.000144527 0.00826776 -0.000155263 0.00840763 -0.000163767 0.00854292 -0.000169924 0.0086666 -0.000173508 0.00877642 -0.00017449 0.00887799 -0.00017277 0.00897633 -0.000169199 0.00906461 -0.0001653 0.00913676 -0.000159892 0.0092006 -0.000151489 0.00926285 -0.000142917 0.00932423 -0.000134518 0.00938254 -0.000126188 0.00943762 -0.000118459 0.00949216 -0.000111996 0.00954834 -0.000107157 0.00960399 -0.000104084 0.00965201 -0.000102866 0.00968586 -0.000103668 0.00970956 -0.000106579 0.0097392 -0.000111548 0.00978578 -0.000118811 0.00985362 -0.000128724 0.00995833 -0.000138261 0.0100918 -0.000147976 0.0102362 -0.000159776 0.0104494 -0.000169595 0.0108246 -0.000178082 0.0113622 -0.000195607 0.012019 -0.000211519 0.0127635 -0.000226527 0.0135671 -0.000240564 0.0144049 -0.000253979 0.0152511 -0.000266923 0.0160779 -0.000279265 0.0168553 -0.000290642 0.0175532 -0.000300342 0.0181484 -0.00030741 0.0186342 -0.000311167 0.0190254 -0.000311409 0.0193335 -0.000308136 0.0195626 -0.000301492 0.0197159 -0.000291805 0.019771 -0.000279423 0.0196138 -0.000264139 0.0191081 -0.000243339 0.0183321 -0.000216202 0.0172681 -0.000184679 0.0160723 -0.000150354 0.0149203 -0.000116331 0.0139331 -8.62166e-05 0.0131567 -6.19082e-05 0.0125828 -4.34939e-05 0.0121772 -3.00743e-05 0.0118992 -2.05171e-05 0.0117127 -1.38167e-05 0.0115892 -9.04916e-06 0.0115079 -5.60866e-06 0.0114542 -3.14021e-06 0.0114175 -1.40987e-06 0.0113896 -2.00104e-07 0.0113657 6.35013e-07 0.0113436 1.12169e-06 0.0113225 1.3315e-06 0.0113024 1.34669e-06 0.0112838 1.24126e-06 0.0112671 1.07363e-06 0.0112526 8.85475e-07 0.0112404 7.03354e-07 0.0112305 5.4184e-07 0.0112226 4.06879e-07 0.0112164 2.9899e-07 0.0112118 2.15606e-07 0.0112084 1.52936e-07 0.0112058 1.06778e-07 0.011204 7.35607e-08 0.0112027 5.01387e-08 3.29228e-08 0.0165193 0.0143392 0.0141111 0.00905308 0.0120973 0.00519995 0.0105782 0.00285975 0.00951436 0.00148327 0.00878016 0.000667227 0.00835107 0.000205244 0.00814799 -2.58265e-05 0.00817933 -0.000197521 0.00836097 -0.000253023 0.00858915 -0.000221662 0.00875325 -0.000126941 0.00885969 -6.68651e-05 0.00890656 -3.52701e-05 0.00892272 -3.41808e-05 0.0089266 -5.11356e-05 0.00893263 -7.69661e-05 0.00895781 -0.000105777 0.00901469 -0.000132669 0.00909992 -0.000151507 0.00919611 -0.000166003 0.00929888 -0.000183325 0.00940888 -0.000199259 0.00952619 -0.000213161 0.00964833 -0.000224779 0.0097693 -0.00023358 0.00988338 -0.00023916 0.00998891 -0.000241546 0.0100888 -0.00024128 0.0101888 -0.000238534 0.0102878 -0.000233824 0.010379 -0.000227705 0.0104647 -0.000219684 0.0105513 -0.000210657 0.0106421 -0.000201573 0.010738 -0.000192717 0.0108391 -0.000184784 0.0109442 -0.000178686 0.0110477 -0.000174313 0.0111382 -0.000171404 0.0112016 -0.000170579 0.0112323 -0.000172546 0.0112396 -0.000176217 0.011239 -0.000183054 0.0112508 -0.000193294 0.0113027 -0.000203815 0.0114064 -0.000215638 0.0115428 -0.000233199 0.0117182 -0.000248756 0.0119983 -0.000257828 0.0124358 -0.00027015 0.0130037 -0.000294806 0.0136652 -0.000314398 0.0143914 -0.000332548 0.0151571 -0.000349471 0.0159376 -0.000365131 0.0167079 -0.000379328 0.0174413 -0.000391948 0.0181061 -0.000402484 0.0186742 -0.000410115 0.019134 -0.000413921 0.0194973 -0.000413418 0.0197737 -0.000408654 0.0199676 -0.000399877 0.0200806 -0.000387475 0.0200856 -0.000371709 0.0198624 -0.000352691 0.0193518 -0.000329718 0.0185392 -0.000294807 0.017438 -0.000252594 0.0162067 -0.000205722 0.015022 -0.000159148 0.0140065 -0.00011789 0.0132078 -8.45366e-05 0.0126174 -5.92017e-05 0.0122002 -4.07275e-05 0.0119145 -2.76292e-05 0.0117229 -1.85628e-05 0.0115961 -1.2093e-05 0.0115127 -7.37191e-06 0.0114576 -3.89841e-06 0.0114198 -1.45766e-06 0.0113909 1.68732e-07 0.0113664 1.26641e-06 0.0113438 1.88021e-06 0.0113223 2.115e-06 0.0113021 2.08598e-06 0.0112834 1.89564e-06 0.0112667 1.62517e-06 0.0112522 1.33243e-06 0.0112401 1.05402e-06 0.0112302 8.09517e-07 0.0112223 6.06497e-07 0.0112163 4.44832e-07 0.0112117 3.20296e-07 0.0112082 2.26877e-07 0.0112058 1.58459e-07 0.011204 1.09074e-07 0.0112027 7.41885e-08 4.88943e-08 0.0179746 0.0144781 0.0165564 0.0105754 0.0147016 0.00712364 0.0130224 0.00458459 0.0117104 0.00283325 0.0107545 0.0016649 0.0101209 0.000884882 0.00973587 0.000391203 0.00952338 7.98128e-05 0.00941698 -9.6387e-05 0.00940645 -0.000164261 0.00952319 -0.000199836 0.00966204 -0.000173336 0.00977898 -0.000125292 0.00985903 -9.17629e-05 0.00990503 -7.55139e-05 0.00993689 -7.69363e-05 0.00995726 -9.49157e-05 0.00998289 -0.000121861 0.0100306 -0.000151799 0.0101032 -0.000180396 0.0101979 -0.000205491 0.010288 -0.000228462 0.0103793 -0.000248987 0.0104781 -0.000266262 0.0105856 -0.000281024 0.0106988 -0.000292374 0.0108142 -0.000300272 0.0109313 -0.000304882 0.0110516 -0.000305779 0.0111768 -0.000303536 0.0113082 -0.00029878 0.0114459 -0.000292473 0.0115889 -0.00028502 0.0117351 -0.000276955 0.0118811 -0.00026906 0.0120257 -0.000261475 0.0121706 -0.000253906 0.0123108 -0.000247869 0.0124303 -0.000246339 0.012515 -0.000246999 0.0125638 -0.000246998 0.0125817 -0.000248787 0.0125793 -0.000255275 0.0125748 -0.000264808 0.0125915 -0.000276302 0.0126517 -0.000289296 0.0127642 -0.000305613 0.0129135 -0.000325116 0.0131018 -0.000340924 0.0133886 -0.000351996 0.013823 -0.00036707 0.0143743 -0.000391802 0.0150039 -0.000411945 0.0156794 -0.000430799 0.0163755 -0.000447605 0.0170729 -0.000462519 0.0177477 -0.000475409 0.0183713 -0.000485749 0.0189151 -0.000492937 0.0193627 -0.000496219 0.0197188 -0.000495015 0.0199888 -0.000489119 0.0201751 -0.000478528 0.0202744 -0.000463558 0.0202513 -0.000444622 0.0200536 -0.000421632 0.0196293 -0.000393165 0.0187445 -0.000353925 0.017619 -0.000303855 0.0163651 -0.000247669 0.0151537 -0.000191632 0.0141105 -0.00014181 0.0132865 -0.000101383 0.0126754 -7.06633e-05 0.012242 -4.83393e-05 0.0119442 -3.25961e-05 0.0117445 -2.15883e-05 0.0116121 -1.37229e-05 0.0115247 -8.0357e-06 0.0114663 -3.90907e-06 0.0114258 -9.70777e-07 0.0113951 1.0112e-06 0.011369 2.23744e-06 0.0113453 2.86917e-06 0.011323 3.04856e-06 0.0113022 2.9185e-06 0.0112832 2.60495e-06 0.0112664 2.20711e-06 0.0112518 1.79487e-06 0.0112397 1.41159e-06 0.0112299 1.07957e-06 0.0112221 8.06284e-07 0.011216 5.89985e-07 0.0112115 4.24011e-07 0.0112081 2.99917e-07 0.0112057 2.09035e-07 0.0112039 1.43732e-07 0.0112027 9.78371e-08 6.42259e-08 0.0181939 0.0146238 0.0175262 0.0113753 0.0163542 0.00846748 0.0150078 0.00605945 0.0137216 0.00421243 0.0126498 0.00281456 0.011774 0.00182728 0.0111199 0.00110795 0.0106405 0.00061741 0.0103292 0.000273399 0.0101657 5.84812e-05 0.0100931 -7.6002e-05 0.0101115 -0.000144695 0.0102085 -0.000180907 0.0103228 -0.000173597 0.01042 -0.000139081 0.0105008 -0.000120165 0.0105657 -0.000118038 0.0106238 -0.00012979 0.0106827 -0.000152612 0.0107445 -0.000182549 0.0108126 -0.000214369 0.0108918 -0.000245052 0.0109794 -0.000274313 0.0110716 -0.000300996 0.0111701 -0.000323203 0.0112748 -0.000341459 0.0113837 -0.000355356 0.0114947 -0.000365002 0.0116082 -0.000370074 0.0117291 -0.000371524 0.011865 -0.000369881 0.0120212 -0.000365819 0.0121967 -0.000360082 0.012385 -0.000353353 0.012579 -0.000346092 0.0127725 -0.00033875 0.0129584 -0.000332206 0.0131348 -0.00032686 0.0133076 -0.000322668 0.0134725 -0.000321602 0.0136073 -0.000324778 0.0136977 -0.000329642 0.013753 -0.000334196 0.0137893 -0.000342625 0.0138244 -0.000354257 0.0138784 -0.000368073 0.0139724 -0.000383318 0.0141109 -0.000401399 0.0142787 -0.000421496 0.0144858 -0.000436134 0.0147851 -0.000447135 0.0152086 -0.000462875 0.0157304 -0.000485993 0.0163181 -0.000504167 0.0169424 -0.000520468 0.0175744 -0.0005347 0.0181859 -0.000546344 0.0187505 -0.000555264 0.0192447 -0.000561023 0.0196548 -0.000562725 0.0199838 -0.000559601 0.0202338 -0.000551519 0.0203999 -0.000538721 0.0204689 -0.000521603 0.0204184 -0.00050065 0.0202494 -0.000475351 0.0198323 -0.000443414 0.0189116 -0.000399929 0.0177675 -0.000344155 0.0164946 -0.000281 0.0152603 -0.000217597 0.0141931 -0.000160965 0.0133473 -0.000114899 0.0127184 -7.98919e-05 0.0122717 -5.4423e-05 0.0119647 -3.64265e-05 0.0117589 -2.37735e-05 0.0116225 -1.47556e-05 0.0115323 -8.24379e-06 0.0114718 -3.5083e-06 0.0114296 -1.70136e-07 0.0113974 2.01399e-06 0.0113701 3.31034e-06 0.0113455 3.9151e-06 0.0113226 4.00174e-06 0.0113015 3.74564e-06 0.0112824 3.2951e-06 0.0112655 2.76437e-06 0.011251 2.23239e-06 0.011239 1.74685e-06 0.0112293 1.33103e-06 0.0112216 9.91341e-07 0.0112157 7.23852e-07 0.0112112 5.19389e-07 0.0112079 3.66896e-07 0.0112055 2.55606e-07 0.0112038 1.7562e-07 0.0112026 1.19342e-07 7.84598e-08 0.0187301 0.015016 0.0179926 0.0121146 0.0170555 0.00945633 0.0160551 0.00717188 0.0150127 0.00536805 0.0140606 0.00389868 0.0132259 0.00279982 0.0125244 0.00193642 0.0119679 0.00130042 0.0115195 0.000812005 0.011212 0.000455291 0.0110169 0.000199017 0.0108953 2.91381e-05 0.0108355 -7.03386e-05 0.0108422 -0.000127911 0.0109189 -0.000166886 0.011027 -0.000173445 0.011131 -0.000163115 0.0112227 -0.000161023 0.0113114 -0.000172633 0.0113945 -0.000192568 0.0114657 -0.000220675 0.0115278 -0.000254062 0.011592 -0.000287787 0.0116641 -0.000321057 0.0117439 -0.000352392 0.0118341 -0.00037831 0.0119362 -0.000399614 0.0120494 -0.000415931 0.0121717 -0.000427467 0.0123031 -0.000435435 0.0124459 -0.000439028 0.012605 -0.000438904 0.0127837 -0.000435645 0.0129811 -0.000430353 0.013192 -0.000424232 0.0134085 -0.000417861 0.0136235 -0.000411812 0.0138315 -0.000406774 0.01403 -0.000403172 0.014222 -0.000401016 0.0144095 -0.000401375 0.0145804 -0.000406171 0.014718 -0.000414565 0.0148221 -0.000422852 0.014904 -0.00043233 0.0149771 -0.000445521 0.0150595 -0.000460181 0.0151722 -0.000475672 0.0153217 -0.000493194 0.0154959 -0.000510797 0.0157047 -0.000523585 0.0159955 -0.000533397 0.0163957 -0.000547905 0.0168778 -0.000566322 0.0174116 -0.000580921 0.0179671 -0.00059323 0.0185142 -0.000603043 0.0190246 -0.000609785 0.0194733 -0.000613411 0.0198426 -0.000612906 0.0201376 -0.000607882 0.0203634 -0.000598491 0.0205114 -0.000584049 0.0205831 -0.000564627 0.0205608 -0.000541071 0.0203943 -0.000513085 0.0199846 -0.000478319 0.019059 -0.000431748 0.0179145 -0.000371872 0.0166333 -0.000303805 0.0153813 -0.000235279 0.0142913 -0.000173932 0.0134229 -0.00012396 0.0127746 -8.59171e-05 0.0123127 -5.82104e-05 0.0119947 -3.85359e-05 0.0117812 -2.46459e-05 0.0116394 -1.47369e-05 0.0115452 -7.60547e-06 0.0114814 -2.48315e-06 0.0114363 1.07841e-06 0.0114017 3.36016e-06 0.0113726 4.62255e-06 0.0113466 5.11018e-06 0.0113228 5.04151e-06 0.0113011 4.61705e-06 0.0112817 4.00277e-06 0.0112647 3.32381e-06 0.0112502 2.66442e-06 0.0112383 2.07367e-06 0.0112287 1.57378e-06 0.0112211 1.16866e-06 0.0112153 8.5144e-07 0.011211 6.09882e-07 0.0112077 4.30247e-07 0.0112054 2.99287e-07 0.0112037 2.05399e-07 0.0112025 1.39561e-07 9.15145e-08 0.0193153 0.0153586 0.0185338 0.0128025 0.0176018 0.0103443 0.016656 0.00815599 0.0157472 0.00636652 0.0148947 0.00489162 0.0141448 0.0037228 0.0134767 0.00278406 0.0129312 0.00204056 0.0124487 0.001455 0.0120654 0.000985326 0.0117478 0.000630438 0.0115285 0.00035519 0.0113933 0.000154796 0.0113222 2.60047e-05 0.0113104 -6.70939e-05 0.011342 -0.000123263 0.0114298 -0.000168653 0.011548 -0.00019023 0.011661 -0.000195731 0.0117615 -0.000210909 0.0118493 -0.000237292 0.0119169 -0.000265571 0.0119664 -0.000298952 0.0120172 -0.00033483 0.0120845 -0.000369781 0.0121711 -0.000402849 0.0122783 -0.000431167 0.0124039 -0.000454909 0.0125432 -0.00047414 0.0126925 -0.000489199 0.0128502 -0.000499447 0.0130173 -0.000505169 0.0131982 -0.000506951 0.0133978 -0.000505634 0.0136168 -0.000502288 0.0138505 -0.000497829 0.0140908 -0.000492996 0.0143306 -0.000488281 0.0145652 -0.000484277 0.014791 -0.000481895 0.0150071 -0.000481608 0.0152174 -0.000483336 0.0154212 -0.000488174 0.0156042 -0.000497371 0.0157537 -0.000509024 0.0158741 -0.000519966 0.0159773 -0.000532556 0.0160829 -0.000546382 0.0162136 -0.000560314 0.0163727 -0.000576212 0.0165523 -0.000590132 0.0167719 -0.000599161 0.0170711 -0.000606777 0.0174581 -0.00061908 0.0179086 -0.00063164 0.0183931 -0.000641559 0.0188783 -0.000648736 0.0193338 -0.000653083 0.0197332 -0.000654602 0.0200611 -0.000652972 0.0203264 -0.000645657 0.0205366 -0.000631633 0.0206673 -0.000612927 0.0207202 -0.000590405 0.0206919 -0.000564952 0.0205282 -0.000536002 0.0201166 -0.00050146 0.0191946 -0.000453448 0.0180507 -0.00039032 0.0167611 -0.000318799 0.0154916 -0.000246874 0.0143799 -0.000182417 0.0134902 -0.000129831 0.0128239 -8.97261e-05 0.0123482 -6.0418e-05 0.0120202 -3.94979e-05 0.0117998 -2.46807e-05 0.0116531 -1.41078e-05 0.0115552 -6.51576e-06 0.0114885 -1.08499e-06 0.011441 2.56517e-06 0.0114044 4.83214e-06 0.0113738 5.98828e-06 0.0113466 6.31372e-06 0.0113221 6.05981e-06 0.0112999 5.45071e-06 0.0112803 4.6669e-06 0.0112633 3.84071e-06 0.011249 3.05866e-06 0.0112373 2.36901e-06 0.0112278 1.79143e-06 0.0112205 1.32666e-06 0.0112148 9.64515e-07 0.0112106 6.89738e-07 0.0112075 4.85911e-07 0.0112052 3.37685e-07 0.0112036 2.31545e-07 0.0112024 1.57098e-07 1.03039e-07 0.0200726 0.015707 0.0192538 0.0134478 0.0182945 0.0111847 0.0173042 0.00910553 0.0163877 0.00731696 0.0155495 0.00582942 0.0148183 0.00460766 0.0141697 0.00361245 0.0136066 0.00278868 0.013102 0.00212101 0.0126684 0.00156763 0.0123132 0.00112703 0.0120267 0.000772108 0.0118427 0.000495657 0.0117269 0.000281559 0.0116766 0.000126582 0.0116796 1.03404e-05 0.0117038 -7.11844e-05 0.0117586 -0.000133186 0.0118558 -0.000188507 0.0119621 -0.000224634 0.0120475 -0.000249738 0.0121161 -0.000279376 0.0121758 -0.000313612 0.0122337 -0.000350543 0.0123058 -0.000385399 0.0124064 -0.000419887 0.0125329 -0.000453792 0.0126772 -0.000483821 0.0128342 -0.000509206 0.0129991 -0.000530848 0.0131697 -0.000548105 0.013346 -0.000560864 0.0135303 -0.000569079 0.0137278 -0.000573578 0.0139432 -0.000575107 0.0141784 -0.000574101 0.0144305 -0.000571439 0.0146922 -0.000567999 0.0149556 -0.000564446 0.015215 -0.000561414 0.0154669 -0.000559755 0.0157081 -0.000560198 0.0159382 -0.000562806 0.0161606 -0.000567438 0.0163708 -0.000575306 0.0165541 -0.00058711 0.0167028 -0.000599934 0.0168264 -0.000610927 0.0169478 -0.000621482 0.0170891 -0.000632684 0.0172511 -0.000644968 0.0174338 -0.000654002 0.0176639 -0.000657956 0.0179688 -0.000662182 0.018341 -0.000671363 0.0187539 -0.000678238 0.0191773 -0.000682564 0.0195807 -0.000684796 0.0199362 -0.000684479 0.0202332 -0.000678879 0.0204784 -0.000666325 0.0206614 -0.000649899 0.0207743 -0.000629311 0.0208187 -0.00060542 0.0207837 -0.000578457 0.0206207 -0.000548157 0.0202296 -0.000512364 0.0193221 -0.000463125 0.0181858 -0.000398195 0.0168929 -0.000325017 0.0156091 -0.00025154 0.014477 -0.000185649 0.013566 -0.0001318 0.0128811 -9.06338e-05 0.0123906 -6.04557e-05 0.0120515 -3.88334e-05 0.0118231 -2.34761e-05 0.0116706 -1.25214e-05 0.0115682 -4.69871e-06 0.0114979 7.74309e-07 0.0114472 4.39988e-06 0.0114081 6.53173e-06 0.0113755 7.48666e-06 0.0113469 7.57978e-06 0.0113215 7.09627e-06 0.0112988 6.27686e-06 0.011279 5.31071e-06 0.011262 4.33281e-06 0.0112478 3.42848e-06 0.0112362 2.64272e-06 0.011227 1.99119e-06 0.0112198 1.47051e-06 0.0112143 1.0668e-06 0.0112102 7.61549e-07 0.0112072 5.35729e-07 0.011205 3.71748e-07 0.0112034 2.54591e-07 0.0112023 1.72599e-07 1.12966e-07 0.0206563 0.0160618 0.0198762 0.0140566 0.0190053 0.0119562 0.0180764 0.0100007 0.0171534 0.00826107 0.0162971 0.00675627 0.0155187 0.00547904 0.0148105 0.00441143 0.0141758 0.00351988 0.0136163 0.00278143 0.0131335 0.00216619 0.0127392 0.00166138 0.012415 0.00124685 0.0121777 0.000907689 0.0119953 0.000633031 0.0118809 0.000409711 0.0118165 0.000231314 0.0117969 9.50576e-05 0.0118168 -1.65191e-05 0.0118508 -0.000100338 0.0119089 -0.000171348 0.011988 -0.000234137 0.0120722 -0.000282906 0.0121615 -0.000322576 0.01226 -0.000360864 0.0123755 -0.000401194 0.0125127 -0.000440737 0.0126735 -0.000476147 0.0128493 -0.000509757 0.0130297 -0.000541427 0.0132111 -0.000567876 0.0133936 -0.000590263 0.0135778 -0.000608865 0.0137658 -0.000623275 0.0139624 -0.000633573 0.0141735 -0.000640261 0.0144041 -0.000643864 0.014655 -0.000644991 0.0149235 -0.000644264 0.0152038 -0.000642392 0.0154881 -0.000640115 0.0157697 -0.000637983 0.0160445 -0.000636622 0.0163095 -0.000636949 0.016561 -0.000639356 0.0167998 -0.000643405 0.0170291 -0.000649194 0.0172398 -0.000658485 0.0174136 -0.000670168 0.0175531 -0.000678592 0.0176862 -0.00068389 0.0178334 -0.000691282 0.0179955 -0.000698474 0.0181826 -0.000700305 0.0184235 -0.000699499 0.0187323 -0.00070141 0.0190862 -0.000705732 0.0194549 -0.000707904 0.0198114 -0.000707674 0.0201336 -0.000703402 0.0204085 -0.000692539 0.0206297 -0.000677511 0.0207882 -0.000658931 0.0208844 -0.000636753 0.0209181 -0.00061135 0.0208781 -0.000582701 0.0207192 -0.000550643 0.0203456 -0.000513092 0.0194496 -0.00046316 0.0183174 -0.000397982 0.0170197 -0.000324641 0.0157214 -0.000250976 0.0145691 -0.000184839 0.0136375 -0.000130708 0.0129346 -8.92579e-05 0.0124298 -5.87914e-05 0.01208 -3.68988e-05 0.0118439 -2.13257e-05 0.0116857 -1.02391e-05 0.0115791 -2.39385e-06 0.0115052 2.98634e-06 0.0114517 6.42972e-06 0.0114103 8.31789e-06 0.011376 8.99893e-06 0.0113462 8.81742e-06 0.01132 8.0813e-06 0.011297 7.04309e-06 0.0112771 5.89545e-06 0.0112602 4.77182e-06 0.0112463 3.7534e-06 0.0112349 2.88011e-06 0.0112259 2.1625e-06 0.011219 1.59267e-06 0.0112137 1.15286e-06 0.0112097 8.21479e-07 0.0112068 5.76951e-07 0.0112047 3.99833e-07 0.0112033 2.73446e-07 0.0112022 1.85103e-07 1.21067e-07 0.0214687 0.0164604 0.0207063 0.014679 0.019799 0.0127464 0.0188911 0.0108698 0.0179877 0.00917218 0.0170868 0.00766209 0.0162301 0.00634153 0.0154558 0.00520862 0.0147664 0.00425139 0.014163 0.00344714 0.0136435 0.00277843 0.0132102 0.00222068 0.0128553 0.00175609 0.0125711 0.0013653 0.0123387 0.00103725 0.0121609 0.000759403 0.0120335 0.000527289 0.0119553 0.000331808 0.0119312 0.000172699 0.0119399 4.19861e-05 0.011978 -6.99774e-05 0.0120241 -0.000159682 0.0120976 -0.000237102 0.0121983 -0.000304241 0.0123239 -0.000363667 0.0124681 -0.000414079 0.0126268 -0.00045816 0.0128031 -0.000498916 0.0129945 -0.000539616 0.0131951 -0.00057761 0.0133972 -0.000607736 0.0136021 -0.000634387 0.0138112 -0.00065706 0.0140238 -0.000675203 0.0142401 -0.000689813 0.0144631 -0.000700867 0.0146966 -0.000708442 0.0149449 -0.000713074 0.0152094 -0.000715292 0.0154875 -0.000715618 0.0157746 -0.000714519 0.0160658 -0.000712594 0.0163566 -0.000710565 0.016643 -0.000709104 0.0169202 -0.000708736 0.017183 -0.000709782 0.0174304 -0.000711763 0.0176653 -0.000714415 0.0178807 -0.000720432 0.0180576 -0.000727588 0.0181963 -0.000731342 0.0183281 -0.000731492 0.0184718 -0.00073357 0.0186299 -0.000733849 0.018824 -0.000729288 0.0190791 -0.000724225 0.019385 -0.0007238 0.0197085 -0.000723242 0.0200239 -0.000719581 0.0203133 -0.000710363 0.0205611 -0.000695994 0.0207596 -0.000678233 0.0209007 -0.000657406 0.0209822 -0.000633746 0.0210044 -0.000607383 0.0209583 -0.00057818 0.0208039 -0.000545428 0.020446 -0.00050696 0.019567 -0.000456622 0.0184445 -0.000391466 0.0171461 -0.000318376 0.0158358 -0.000245308 0.0146648 -0.000179879 0.013713 -0.000126364 0.012992 -8.53585e-05 0.0124725 -5.51869e-05 0.0121116 -3.34682e-05 0.0118671 -1.8023e-05 0.0117027 -7.08879e-06 0.0115911 5.30311e-07 0.0115133 5.61871e-06 0.0114566 8.71643e-06 0.0114127 1.02462e-05 0.0113764 1.05712e-05 0.0113454 1.00614e-05 0.0113184 9.04251e-06 0.0112951 7.77129e-06 0.0112751 6.43815e-06 0.0112584 5.17074e-06 0.0112446 4.04314e-06 0.0112336 3.08823e-06 0.0112249 2.31045e-06 0.0112181 1.69673e-06 0.011213 1.22527e-06 0.0112093 8.71294e-07 0.0112065 6.10832e-07 0.0112045 4.22569e-07 0.0112031 2.88538e-07 0.0112021 1.95044e-07 1.27304e-07 0.0220902 0.0169262 0.0214591 0.0152388 0.0206618 0.0135039 0.019783 0.0117324 0.0188731 0.0100557 0.0179546 0.00854183 0.0170502 0.00719527 0.0161967 0.00601612 0.0154253 0.00500187 0.0147595 0.00414083 0.0142015 0.00341744 0.0137392 0.00280799 0.0133511 0.00229418 0.013025 0.0018558 0.0127515 0.00148058 0.0125264 0.00115554 0.0123552 0.000876002 0.0122251 0.000634657 0.0121499 0.00042693 0.012113 0.000248393 0.0121084 9.68397e-05 0.0121341 -3.46131e-05 0.0121922 -0.000148071 0.0122786 -0.000244106 0.0123977 -0.000324904 0.0125469 -0.000396785 0.0127208 -0.000461461 0.0129124 -0.00052016 0.0131167 -0.000568899 0.0133273 -0.000610238 0.0135445 -0.000648732 0.0137713 -0.00068587 0.0140032 -0.000712706 0.0142409 -0.000734119 0.0144844 -0.000752232 0.0147302 -0.000764839 0.0149788 -0.000773658 0.0152342 -0.000779369 0.0154986 -0.000782264 0.0157708 -0.000782875 0.0160496 -0.000781646 0.0163342 -0.000779242 0.0166224 -0.000776135 0.0169111 -0.000772872 0.0171977 -0.000769822 0.017478 -0.000767262 0.0177451 -0.00076615 0.0179953 -0.00076548 0.0182314 -0.000765478 0.0184453 -0.000767974 0.018619 -0.000770252 0.0187575 -0.00076791 0.0188899 -0.000762437 0.0190294 -0.000759159 0.0191878 -0.000753217 0.0193954 -0.000742283 0.0196641 -0.000734118 0.019959 -0.000729429 0.0202468 -0.000721123 0.0205041 -0.000708304 0.0207171 -0.000691331 0.0208883 -0.000670485 0.0210141 -0.000646501 0.021085 -0.000620337 0.0210955 -0.000592465 0.0210379 -0.000562966 0.0208798 -0.00053092 0.0205338 -0.000493602 0.0196779 -0.000444695 0.018567 -0.000379195 0.0172681 -0.000306748 0.015946 -0.000235137 0.0147564 -0.000171326 0.0137848 -0.000119223 0.0130462 -7.93153e-05 0.0125124 -4.99421e-05 0.0121406 -2.87901e-05 0.0118881 -1.37858e-05 0.0117176 -3.26108e-06 0.0116013 3.92227e-06 0.0115198 8.542e-06 0.01146 1.11624e-05 0.0114137 1.22314e-05 0.0113757 1.21348e-05 0.0113436 1.12603e-05 0.0113161 9.94156e-06 0.0112926 8.43318e-06 0.0112727 6.9181e-06 0.0112562 5.5144e-06 0.0112428 4.2866e-06 0.011232 3.25905e-06 0.0112236 2.42916e-06 0.0112172 1.77844e-06 0.0112123 1.28093e-06 0.0112087 9.0878e-07 0.0112061 6.35784e-07 0.0112042 4.39001e-07 0.0112029 2.99202e-07 0.011202 2.01879e-07 1.31568e-07 0.0229563 0.0176383 0.0222982 0.0158529 0.0215402 0.0142076 0.0206358 0.0125431 0.0196983 0.0109133 0.0187733 0.00938374 0.0178707 0.00801374 0.0170082 0.00681319 0.0162112 0.00576547 0.0155027 0.0048643 0.0148884 0.00409204 0.0143642 0.00343221 0.0139245 0.00286684 0.0135529 0.00237954 0.0132357 0.00195607 0.0129721 0.00158757 0.0127597 0.00126569 0.0125968 0.000982771 0.0124794 0.000734155 0.0123976 0.0005142 0.0123578 0.000320537 0.0123448 0.000149283 0.0123705 1.45111e-06 0.0124411 -0.00013231 0.0125504 -0.000247055 0.0126941 -0.000345817 0.0128617 -0.000432069 0.0130477 -0.000507625 0.0132504 -0.00057475 0.0134755 -0.000638618 0.0137067 -0.000692473 0.0139402 -0.000732939 0.0141797 -0.000766677 0.0144352 -0.000801385 0.0146992 -0.000826371 0.0149652 -0.000839932 0.0152367 -0.00085044 0.0155111 -0.000854746 0.015785 -0.000855296 0.0160579 -0.000852514 0.0163315 -0.000847581 0.0166067 -0.000841735 0.0168841 -0.000835292 0.0171634 -0.000828512 0.0174446 -0.000822086 0.0177273 -0.000816278 0.0180066 -0.000811448 0.0182741 -0.00080798 0.0185255 -0.00080465 0.0187593 -0.000800965 0.0189632 -0.000798831 0.0191238 -0.000795556 0.0192545 -0.000787084 0.0193812 -0.000777633 0.0195166 -0.000768228 0.0196812 -0.000754105 0.019908 -0.000737568 0.0201818 -0.000726464 0.0204545 -0.000715633 0.0206874 -0.000700603 0.0208675 -0.000681359 0.0210098 -0.000657512 0.0211181 -0.0006299 0.0211809 -0.000600079 0.0211878 -0.000569071 0.0211244 -0.000537549 0.0209641 -0.000505162 0.0206302 -0.000469155 0.0197971 -0.000422006 0.018692 -0.000357926 0.0173908 -0.000288137 0.0160564 -0.000219719 0.0148484 -0.000158852 0.0138573 -0.000109117 0.0131012 -7.09897e-05 0.0125533 -4.29167e-05 0.0121706 -2.2732e-05 0.0119098 -8.49872e-06 0.0117329 1.32203e-06 0.0116116 7.83211e-06 0.011526 1.17961e-05 0.0114631 1.37939e-05 0.0114143 1.42953e-05 0.0113747 1.37086e-05 0.0113415 1.243e-05 0.0113135 1.0792e-05 0.0112898 9.03998e-06 0.0112701 7.34426e-06 0.0112539 5.80979e-06 0.0112408 4.48904e-06 0.0112304 3.3964e-06 0.0112224 2.52142e-06 0.0112162 1.83979e-06 0.0112116 1.32128e-06 0.0112082 9.3496e-07 0.0112057 6.52584e-07 0.0112039 4.49585e-07 0.0112027 3.05759e-07 0.0112018 2.05888e-07 1.33867e-07 0.0238476 0.0185336 0.0230823 0.0166202 0.0223751 0.0148841 0.0215888 0.0132978 0.0206588 0.0117495 0.0196616 0.0102505 0.0187024 0.00885548 0.0178231 0.00761056 0.0170295 0.0065296 0.0163102 0.00559775 0.0156649 0.00478737 0.0150977 0.00408388 0.0146 0.00347006 0.0141679 0.0029344 0.0138011 0.00246518 0.0134965 0.00205327 0.0132496 0.00168999 0.0130546 0.00136877 0.0129034 0.00108283 0.0127891 0.000825939 0.0127119 0.000595337 0.0126725 0.000387624 0.0126699 0.000202303 0.0127068 3.64262e-05 0.0127923 -0.000115197 0.012917 -0.000246648 0.0130768 -0.000362359 0.0132595 -0.000464078 0.013456 -0.0005545 0.0136649 -0.000632023 0.0138806 -0.000702105 0.0141148 -0.000769379 0.0143645 -0.000823984 0.0146196 -0.000861923 0.0148743 -0.000890341 0.0151425 -0.000918997 0.015428 -0.000939377 0.0157181 -0.00094306 0.0160089 -0.000943904 0.0162951 -0.000936688 0.0165778 -0.000926366 0.016856 -0.000913296 0.0171287 -0.000899214 0.0173973 -0.000884924 0.0176676 -0.000871285 0.0179421 -0.000859226 0.01822 -0.000849106 0.0184958 -0.000841288 0.0187583 -0.000833518 0.0190021 -0.000824577 0.0192248 -0.000817891 0.0194115 -0.000810763 0.019554 -0.000800791 0.0196758 -0.000786644 0.0197993 -0.000773652 0.0199359 -0.000758205 0.0201168 -0.00073743 0.02036 -0.000718021 0.0206243 -0.000704171 0.0208514 -0.000687929 0.0210163 -0.000667204 0.0211322 -0.000641533 0.0212173 -0.000611376 0.0212713 -0.000577964 0.0212807 -0.000542723 0.0212251 -0.000506491 0.0210769 -0.000470307 0.0207561 -0.00043148 0.0199299 -0.0003872 0.0188203 -0.000327189 0.0175118 -0.000262988 0.0161633 -0.000199789 0.0149366 -0.000143104 0.0139262 -9.65197e-05 0.0131532 -6.07061e-05 0.0125917 -3.4374e-05 0.0121984 -1.5512e-05 0.0119295 -2.34585e-06 0.0117464 6.50992e-06 0.0116201 1.21307e-05 0.0115307 1.52702e-05 0.0114647 1.65202e-05 0.0114137 1.63703e-05 0.0113726 1.52411e-05 0.0113386 1.3533e-05 0.0113102 1.15667e-05 0.0112866 9.57224e-06 0.0112672 7.70286e-06 0.0112513 6.04717e-06 0.0112387 4.64364e-06 0.0112287 3.4955e-06 0.011221 2.58393e-06 0.0112152 1.8785e-06 0.0112108 1.34473e-06 0.0112076 9.48834e-07 0.0112053 6.60452e-07 0.0112037 4.53881e-07 0.0112025 3.07938e-07 0.0112017 2.06861e-07 1.34206e-07 0.0251606 0.0197422 0.0240985 0.0176291 0.0231983 0.0157292 0.0223705 0.0140683 0.021527 0.0125243 0.0206298 0.011087 0.0196763 0.00972446 0.0187437 0.00846634 0.017897 0.00734166 0.0171502 0.00635966 0.0164841 0.00550463 0.0158813 0.0047574 0.0153409 0.00409881 0.0148646 0.00351803 0.0144521 0.00300447 0.0141024 0.00255098 0.0138143 0.00214806 0.0135854 0.00178945 0.0134046 0.0014673 0.0132652 0.00117631 0.0131643 0.000912244 0.0131013 0.000671967 0.0130784 0.000452714 0.0131009 0.000255018 0.0131576 7.39455e-05 0.0132554 -9.33718e-05 0.0133888 -0.000241665 0.0135528 -0.000373448 0.013734 -0.000491119 0.013929 -0.00059504 0.0141424 -0.000687155 0.0143543 -0.000765955 0.0145665 -0.00083683 0.0148034 -0.000902674 0.015062 -0.000954525 0.0153233 -0.000988192 0.0155884 -0.00100735 0.0158673 -0.00102748 0.0161663 -0.00103974 0.0164675 -0.00103465 0.0167628 -0.00102216 0.0170495 -0.00100424 0.0173289 -0.000981707 0.0176037 -0.000956694 0.0178742 -0.000932105 0.0181447 -0.000909236 0.0184197 -0.000889225 0.0186944 -0.000872159 0.0189614 -0.000857209 0.0192148 -0.000844363 0.0194465 -0.000830697 0.019647 -0.000816325 0.0198059 -0.000802475 0.0199298 -0.000786375 0.0200441 -0.000768855 0.0201618 -0.000751956 0.0203053 -0.00072975 0.0205095 -0.000704486 0.0207602 -0.000684621 0.0209923 -0.000667541 0.0211592 -0.000646618 0.0212596 -0.000620956 0.0213218 -0.000590287 0.0213592 -0.000555168 0.0213694 -0.000516512 0.0213314 -0.000475697 0.0212051 -0.000433367 0.0209003 -0.00039055 0.0200678 -0.000345054 0.0189474 -0.000291205 0.0176294 -0.000234366 0.0162668 -0.00017711 0.0150222 -0.000124952 0.0139936 -8.18169e-05 0.0132044 -4.86436e-05 0.0126297 -2.43735e-05 0.0122259 -7.15914e-06 0.0119488 4.61624e-06 0.0117592 1.22589e-05 0.0116279 1.67749e-05 0.0115344 1.8925e-05 0.0114655 1.93108e-05 0.0114123 1.84323e-05 0.0113699 1.67171e-05 0.0113352 1.456e-05 0.0113066 1.22606e-05 0.0112831 1.00277e-05 0.011264 7.99338e-06 0.0112486 6.22697e-06 0.0112364 4.75126e-06 0.0112269 3.55739e-06 0.0112196 2.61766e-06 0.0112141 1.89545e-06 0.01121 1.35208e-06 0.0112071 9.50946e-07 0.0112049 6.59996e-07 0.0112034 4.52267e-07 0.0112023 3.0602e-07 0.0112015 2.05037e-07 1.32659e-07 0.0263488 0.0209681 0.0252822 0.0188039 0.0242749 0.0167786 0.0233395 0.0149748 0.0224255 0.0133747 0.0215151 0.0119252 0.0206063 0.0105819 0.0197073 0.00933621 0.0188489 0.00819392 0.0180583 0.00716328 0.0173471 0.00625403 0.0167088 0.00545623 0.0161328 0.00475209 0.0156184 0.00412802 0.0151685 0.00357301 0.0147827 0.00307933 0.0144609 0.00263853 0.0141945 0.00224375 0.0139813 0.00188643 0.0138151 0.00156284 0.013692 0.00126614 0.0136137 0.000995471 0.013577 0.000746829 0.0135819 0.000518543 0.0136279 0.000309356 0.0137022 0.000115923 0.0138089 -6.41696e-05 0.0139489 -0.000228753 0.0141088 -0.000375954 0.0142809 -0.000507784 0.0144666 -0.000625325 0.014666 -0.000729 0.0148656 -0.000820118 0.0150609 -0.00089553 0.0152747 -0.000965229 0.0155075 -0.00102701 0.0157656 -0.00107172 0.016034 -0.00109832 0.0163025 -0.00110665 0.0165891 -0.00111495 0.0168785 -0.00111498 0.0171705 -0.00110266 0.0174559 -0.00107868 0.017736 -0.00104856 0.0180166 -0.00101463 0.0182969 -0.000980593 0.0185757 -0.000947167 0.0188556 -0.000916001 0.0191311 -0.000889008 0.0193907 -0.000864427 0.0196297 -0.000841785 0.0198437 -0.000820897 0.020018 -0.000800649 0.0201515 -0.000778312 0.0202654 -0.000755961 0.0203752 -0.00073489 0.0204909 -0.000712377 0.0206501 -0.00068385 0.0208733 -0.000657008 0.0211079 -0.000637255 0.0212902 -0.000616052 0.0213966 -0.000591365 0.0214435 -0.000562185 0.0214576 -0.000528104 0.0214555 -0.000489087 0.0214234 -0.000445789 0.0213158 -0.000399707 0.0210235 -0.000352545 0.0201794 -0.000305146 0.0190589 -0.00025772 0.0177372 -0.000206552 0.0163635 -0.000153753 0.0151029 -0.000105364 0.0140572 -6.5483e-05 0.0132525 -3.50896e-05 0.012665 -1.31196e-05 0.012251 2.13913e-06 0.0119658 1.22443e-05 0.0117699 1.84169e-05 0.0116336 2.1635e-05 0.0115364 2.26534e-05 0.0114647 2.20767e-05 0.0114097 2.04149e-05 0.0113661 1.80887e-05 0.011331 1.54757e-05 0.0113025 1.28488e-05 0.0112793 1.03896e-05 0.0112606 8.20462e-06 0.0112458 6.34196e-06 0.0112341 4.80737e-06 0.0112251 3.57928e-06 0.0112182 2.62099e-06 0.0112131 1.88975e-06 0.0112092 1.34284e-06 0.0112065 9.41143e-07 0.0112045 6.51042e-07 0.0112031 4.44777e-07 0.0112021 3.00069e-07 0.0112014 2.00458e-07 1.29332e-07 0.0277499 0.0216766 0.0265592 0.0201101 0.0253674 0.0179892 0.0243283 0.0160226 0.023418 0.0143116 0.0225411 0.0128188 0.0216529 0.0114576 0.0207585 0.0102124 0.019858 0.00906087 0.018999 0.00799693 0.0182286 0.00703564 0.01755 0.00617792 0.0169479 0.00542631 0.016411 0.00475997 0.0159365 0.00416782 0.0155252 0.00363678 0.0151733 0.00316085 0.0148784 0.00273002 0.014636 0.00233989 0.0144417 0.00198282 0.0142972 0.00165619 0.0142002 0.00135565 0.0141509 0.00107895 0.0141441 0.000823345 0.0141772 0.000586821 0.0142436 0.000367676 0.0143316 0.000163457 0.0144424 -2.59782e-05 0.0145808 -0.000205106 0.0147325 -0.000365535 0.0148901 -0.00050987 0.0150608 -0.000638638 0.0152356 -0.000753063 0.015409 -0.000852708 0.0155939 -0.000937151 0.0157843 -0.00100784 0.0159855 -0.00107498 0.0162135 -0.00112777 0.016468 -0.00116287 0.0167392 -0.00117875 0.0170101 -0.0011819 0.0172748 -0.00117183 0.0175445 -0.00116133 0.0178175 -0.00113927 0.0180919 -0.00110438 0.0183723 -0.00106572 0.0186613 -0.00102349 0.0189533 -0.00098134 0.0192425 -0.000939847 0.0195213 -0.000900692 0.0197787 -0.000864329 0.0200043 -0.000831319 0.0201962 -0.000800926 0.0203508 -0.000772323 0.0204754 -0.000740592 0.0205887 -0.000711209 0.0206936 -0.000685275 0.0208111 -0.000655736 0.0209866 -0.000622543 0.0212098 -0.000595285 0.0214075 -0.000573472 0.0215323 -0.000548849 0.0215844 -0.000521609 0.0215843 -0.000490436 0.0215556 -0.000454483 0.0214967 -0.000413293 0.0213803 -0.000367852 0.0210862 -0.000321241 0.0202515 -0.000274767 0.0191529 -0.00023013 0.017837 -0.000180491 0.0164559 -0.000129755 0.0151808 -8.41727e-05 0.0141186 -4.73798e-05 0.0132987 -1.99608e-05 0.0126986 -6.29968e-07 0.0122744 1.23308e-05 0.0119811 2.0453e-05 0.0117789 2.48982e-05 0.0116377 2.66231e-05 0.0115369 2.63761e-05 0.0114627 2.47581e-05 0.0114061 2.22687e-05 0.0113617 1.93205e-05 0.0113263 1.6257e-05 0.0112979 1.33167e-05 0.0112752 1.06489e-05 0.0112571 8.33171e-06 0.0112428 6.38985e-06 0.0112317 4.81125e-06 0.0112232 3.56136e-06 0.0112168 2.59454e-06 0.011212 1.86215e-06 0.0112084 1.31777e-06 0.0112059 9.20081e-07 0.0112041 6.3424e-07 0.0112028 4.31854e-07 0.0112019 2.90427e-07 0.0112013 1.93401e-07 1.2438e-07 0.0291093 0.0207364 0.0280517 0.021176 0.026786 0.0193022 0.0255593 0.0172487 0.0244813 0.015404 0.0235268 0.0137997 0.0226372 0.0123785 0.0217747 0.0110947 0.0209223 0.00992009 0.0200724 0.00884654 0.0192348 0.00785722 0.0184697 0.00695379 0.0178061 0.0061433 0.0172357 0.00542389 0.0167403 0.00478889 0.01631 0.00422248 0.0159384 0.0037125 0.0156215 0.00324928 0.0153556 0.00282628 0.015141 0.00243776 0.0149756 0.00208075 0.0148619 0.00175082 0.0147991 0.00144683 0.0147824 0.00116492 0.0148047 0.000903355 0.0148603 0.000659571 0.0149423 0.000431789 0.015039 0.000219472 0.0151469 2.31594e-05 0.0152784 -0.000170531 0.0154159 -0.000341261 0.0155562 -0.00049532 0.0157036 -0.000632993 0.0158473 -0.000755375 0.0159935 -0.000861197 0.0161576 -0.000952297 0.016326 -0.00102698 0.0164988 -0.00109216 0.0166954 -0.00115077 0.0169182 -0.0011939 0.017171 -0.0012179 0.0174228 -0.00122533 0.0176713 -0.00121613 0.0179129 -0.00119648 0.0181585 -0.00116836 0.0184194 -0.00113793 0.0186976 -0.00109917 0.0189896 -0.00105259 0.0192888 -0.00100337 0.0195842 -0.000953206 0.019864 -0.000904177 0.0201156 -0.000856904 0.0203297 -0.000812218 0.0205073 -0.00077009 0.0206548 -0.000729791 0.0207812 -0.000689496 0.0208924 -0.00065332 0.0209913 -0.000620508 0.0211155 -0.000583473 0.0213035 -0.000546948 0.0215102 -0.000518775 0.0216632 -0.00049233 0.0217301 -0.000465617 0.0217222 -0.000437747 0.0216683 -0.000407579 0.0215674 -0.000373332 0.0213947 -0.000334338 0.0210876 -0.000293059 0.0203029 -0.000250123 0.0192402 -0.000203883 0.0179336 -0.000153062 0.0165457 -0.000103354 0.0152558 -6.04914e-05 0.014177 -2.71337e-05 0.013342 -3.14965e-06 0.0127292 1.30528e-05 0.0122949 2.32995e-05 0.0119936 2.90923e-05 0.0117853 3.15502e-05 0.0116396 3.16022e-05 0.0115355 2.99759e-05 0.0114591 2.72618e-05 0.0114012 2.39298e-05 0.0113562 2.0366e-05 0.0113209 1.68716e-05 0.0112929 1.36431e-05 0.0112707 1.07925e-05 0.0112533 8.36684e-06 0.0112397 6.36641e-06 0.0112292 4.7609e-06 0.0112213 3.50296e-06 0.0112153 2.53837e-06 0.0112109 1.81306e-06 0.0112076 1.27739e-06 0.0112053 8.88284e-07 0.0112037 6.10014e-07 0.0112025 4.13896e-07 0.0112017 2.77408e-07 0.0112011 1.84102e-07 1.17999e-07 0.0289649 0.0203657 0.0292894 0.020698 0.0281258 0.0204335 0.0269558 0.0185923 0.02583 0.0166606 0.0247752 0.014922 0.0237844 0.013403 0.0228467 0.0120442 0.0219573 0.0108191 0.0211094 0.00970455 0.0202984 0.00868785 0.0195203 0.00776134 0.0187925 0.00691315 0.0181488 0.00614602 0.0176021 0.00545697 0.0171392 0.00484471 0.0167472 0.00429586 0.0164145 0.00379966 0.016134 0.00334477 0.0159032 0.00292643 0.0157224 0.0025392 0.015593 0.00218102 0.0155154 0.00184894 0.0154871 0.00154125 0.0154999 0.00125491 0.0155484 0.000987799 0.0156198 0.000738276 0.0157111 0.000503399 0.0158189 0.000285221 0.0159217 7.90435e-05 0.0160343 -0.000118299 0.0161517 -0.000297866 0.0162701 -0.000459141 0.0163882 -0.000603129 0.0165012 -0.000730334 0.0166193 -0.000841338 0.0167555 -0.000935765 0.0169001 -0.00101615 0.0170504 -0.00107959 0.0172231 -0.00113977 0.0174145 -0.00118886 0.0176279 -0.00122081 0.0178388 -0.00123211 0.0180557 -0.00122731 0.0182777 -0.00121263 0.0185071 -0.00118184 0.0187512 -0.00114316 0.0190174 -0.00109977 0.0193051 -0.00105581 0.0196045 -0.00100591 0.0198995 -0.000950783 0.0201754 -0.000892451 0.0204212 -0.000835184 0.020628 -0.000779267 0.0207969 -0.000725544 0.0209421 -0.000674335 0.0210716 -0.000626247 0.0211791 -0.00058291 0.0212752 -0.000541349 0.0214104 -0.00049745 0.0216037 -0.000458095 0.0217844 -0.000426296 0.0218798 -0.000396466 0.0218731 -0.000369941 0.0217928 -0.00034533 0.0216512 -0.000320194 0.0214313 -0.000292125 0.0210898 -0.000258968 0.0203718 -0.000219308 0.0193374 -0.000171433 0.0180345 -0.000120155 0.0166363 -7.24834e-05 0.0153296 -3.33782e-05 0.0142331 -4.39433e-06 0.0133824 1.53609e-05 0.0127568 2.78192e-05 0.0123124 3.48642e-05 0.0120033 3.79667e-05 0.0117891 3.81927e-05 0.0116392 3.64222e-05 0.0115322 3.33393e-05 0.0114539 2.95026e-05 0.0113951 2.53362e-05 0.01135 2.11842e-05 0.0113149 1.72938e-05 0.0112875 1.38127e-05 0.0112661 1.08121e-05 0.0112494 8.30631e-06 0.0112366 6.27063e-06 0.0112268 4.65682e-06 0.0112194 3.40528e-06 0.0112138 2.45393e-06 0.0112098 1.74392e-06 0.0112069 1.22299e-06 0.0112047 8.46798e-07 0.0112033 5.7918e-07 0.0112022 3.91489e-07 0.0112015 2.61466e-07 0.011201 1.72916e-07 1.10435e-07 0.0290951 0.0180856 0.0296791 0.0200412 0.0294078 0.0206926 0.0283047 0.0197777 0.0271387 0.017998 0.0260352 0.0161566 0.0250036 0.014513 0.0240229 0.0130673 0.0230962 0.0117771 0.0222147 0.0106086 0.0213802 0.00954657 0.0205859 0.00858124 0.0198415 0.00770109 0.0191564 0.00690378 0.0185509 0.00617989 0.0180361 0.00552332 0.017607 0.0049289 0.0172511 0.00439001 0.0169568 0.0038984 0.0167164 0.00344758 0.0165259 0.00303043 0.0163855 0.002644 0.0162958 0.00228501 0.0162541 0.00195135 0.0162574 0.00164041 0.0162955 0.00135054 0.0163609 0.00107887 0.016446 0.000824633 0.0165401 0.000585921 0.016644 0.00036258 0.0167427 0.000152745 0.0168352 -4.3501e-05 0.0169278 -0.000230803 0.0170158 -0.000396923 0.0171006 -0.000545055 0.0171821 -0.000675328 0.0172736 -0.000789368 0.0173816 -0.000886619 0.0174996 -0.00096991 0.0176389 -0.00103596 0.0177892 -0.00109395 0.0179439 -0.00114671 0.0181104 -0.00118368 0.0182777 -0.00120173 0.0184509 -0.00120111 0.01864 -0.00118988 0.0188543 -0.00116489 0.0190957 -0.0011298 0.0193596 -0.0010844 0.01964 -0.00103344 0.0199283 -0.000978315 0.0202125 -0.000921316 0.0204783 -0.000860569 0.0207123 -0.000795797 0.0209087 -0.00072991 0.021073 -0.000666685 0.0212192 -0.000606688 0.0213487 -0.000551709 0.0214504 -0.000500072 0.0215468 -0.000449663 0.0216957 -0.000400645 0.0218876 -0.000358336 0.0220191 -0.000321295 0.022034 -0.000290965 0.0219463 -0.000267946 0.0217711 -0.000250212 0.0215284 -0.000233008 0.0211502 -0.000210102 0.0204736 -0.000175422 0.019449 -0.000128899 0.0181408 -7.96606e-05 0.0167271 -3.60692e-05 0.0154008 -2.40918e-06 0.0142853 2.08682e-05 0.0134184 3.54202e-05 0.0127801 4.34114e-05 0.0123258 4.67497e-05 0.0120093 4.68263e-05 0.0117897 4.46164e-05 0.0116361 4.09082e-05 0.0115267 3.63405e-05 0.0114471 3.13918e-05 0.0113879 2.64289e-05 0.0113429 2.17374e-05 0.0113084 1.75007e-05 0.0112818 1.38129e-05 0.0112612 1.07017e-05 0.0112454 8.14808e-06 0.0112334 6.10274e-06 0.0112243 4.50037e-06 0.0112175 3.27016e-06 0.0112124 2.34308e-06 0.0112087 1.65643e-06 0.0112061 1.156e-06 0.0112042 7.96797e-07 0.0112029 5.42662e-07 0.0112019 3.65354e-07 0.0112013 2.43083e-07 0.0112009 1.60162e-07 1.01931e-07 0.0284467 0.0114551 0.0295853 0.0187241 0.0303996 0.0198599 0.0296336 0.0205603 0.0285562 0.0192107 0.0273701 0.0174802 0.0262574 0.0157394 0.0252221 0.0141669 0.0242384 0.0127853 0.0233119 0.0115532 0.0224489 0.0104474 0.0216525 0.00944609 0.0209211 0.0085383 0.0202521 0.0077104 0.0196417 0.0069551 0.019094 0.00626327 0.0186128 0.00562919 0.0182006 0.00504638 0.01786 0.00450952 0.0175886 0.00401564 0.0173811 0.00356124 0.0172312 0.00314242 0.0171325 0.0027551 0.0170809 0.00239539 0.0170719 0.00206006 0.0170997 0.00174674 0.0171573 0.00145367 0.0172351 0.0011793 0.0173251 0.000921919 0.0174209 0.000681349 0.0175156 0.000455776 0.0175994 0.000245735 0.0176666 5.04808e-05 0.01773 -0.000138266 0.0177823 -0.000306376 0.0178323 -0.000456954 0.017886 -0.000589824 0.0179527 -0.000705434 0.0180346 -0.000805222 0.0181316 -0.000889104 0.0182607 -0.000959254 0.0183858 -0.00101546 0.018499 -0.00106893 0.0186159 -0.00110971 0.0187361 -0.00113433 0.0188721 -0.00113933 0.0190282 -0.00113055 0.0192219 -0.00111069 0.0194537 -0.00107989 0.0197148 -0.00103964 0.0199927 -0.000991063 0.0202734 -0.00093402 0.0205405 -0.000870917 0.0207846 -0.000803744 0.0209997 -0.000734829 0.0211846 -0.0006655 0.021344 -0.000595042 0.0214867 -0.000528692 0.0216082 -0.000467916 0.0217025 -0.000409796 0.0218061 -0.000352291 0.0219668 -0.00029849 0.02213 -0.000251296 0.0221903 -0.000211113 0.0221208 -0.000182784 0.0219355 -0.000165847 0.0216843 -0.000154109 0.0212884 -0.000141735 0.0206088 -0.000116718 0.0195761 -7.5024e-05 0.0182525 -3.07215e-05 0.0168174 6.19163e-06 0.0154683 3.23114e-05 0.0143325 4.83541e-05 0.0134491 5.66346e-05 0.0127982 5.94564e-05 0.0123346 5.86384e-05 0.0120113 5.54127e-05 0.011787 5.06052e-05 0.0116302 4.4918e-05 0.0115191 3.88717e-05 0.0114388 3.28606e-05 0.0113796 2.71654e-05 0.0113351 2.20007e-05 0.0113015 1.74797e-05 0.0112758 1.36387e-05 0.0112563 1.04609e-05 0.0112414 7.89416e-06 0.0112302 5.86588e-06 0.0112218 4.29501e-06 0.0112156 3.10085e-06 0.011211 2.2087e-06 0.0112077 1.55295e-06 0.0112054 1.07831e-06 0.0112037 7.39745e-07 0.0112025 5.01556e-07 0.0112017 3.36257e-07 0.0112011 2.22833e-07 0.0112008 1.46245e-07 9.27488e-08 0.0257641 0.00496149 0.0294333 0.0140318 0.0300173 0.0190401 0.0308984 0.0196382 0.0299579 0.0201881 0.0288379 0.018714 0.0276153 0.0170512 0.0264624 0.0153905 0.0254208 0.0138896 0.024473 0.0125731 0.0236078 0.0114094 0.0228131 0.0103656 0.0220794 0.00942201 0.0214022 0.00856092 0.0207801 0.00777057 0.0202153 0.00704249 0.0197106 0.00636886 0.0192656 0.00574519 0.0188822 0.00516737 0.018565 0.00463244 0.0183175 0.00413879 0.0181405 0.0036839 0.0180267 0.00326419 0.017965 0.00287569 0.0179457 0.0025148 0.0179621 0.0021778 0.0180088 0.00186263 0.0180787 0.00156767 0.0181625 0.00129174 0.0182509 0.00103355 0.0183366 0.000792417 0.0184141 0.000567542 0.0184774 0.000358414 0.018517 0.000164359 0.0185402 -1.04238e-05 0.0185615 -0.000188458 0.0185821 -0.000338279 0.0186122 -0.000471605 0.0186541 -0.000588475 0.0187128 -0.000689898 0.0187948 -0.000775418 0.0189018 -0.000848865 0.0189958 -0.000906642 0.0190639 -0.000956944 0.0191348 -0.00100085 0.0192143 -0.00103069 0.0193136 -0.00104316 0.0194463 -0.00103838 0.0196285 -0.00102423 0.0198499 -0.000998998 0.0200971 -0.000963339 0.0203589 -0.000917627 0.0206207 -0.000863006 0.0208677 -0.000800908 0.0210894 -0.000732407 0.0212811 -0.000659896 0.0214488 -0.000586434 0.0215993 -0.000514534 0.0217314 -0.00044569 0.0218366 -0.000380211 0.0219237 -0.000317076 0.0220377 -0.000256114 0.022198 -0.000198917 0.0223042 -0.000146398 0.0222847 -0.000104311 0.0221361 -7.72271e-05 0.0218715 -6.44822e-05 0.0214912 -5.58173e-05 0.0207812 -4.25257e-05 0.0197187 -9.79321e-06 0.0183672 2.62356e-05 0.0169041 5.37273e-05 0.0155294 7.00969e-05 0.0143724 7.74041e-05 0.0134729 7.84608e-05 0.01281 7.55252e-05 0.0123379 7.01941e-05 0.0120087 6.34598e-05 0.0117805 5.59804e-05 0.0116215 4.83198e-05 0.0115093 4.08519e-05 0.0114289 3.38559e-05 0.0113702 2.75158e-05 0.0113267 2.19598e-05 0.0112941 1.72261e-05 0.0112696 1.32909e-05 0.0112512 1.00934e-05 0.0112374 7.5496e-06 0.0112271 5.5653e-06 0.0112194 4.04559e-06 0.0112138 2.90157e-06 0.0112097 2.05424e-06 0.0112068 1.43625e-06 0.0112047 9.92062e-07 0.0112032 6.77237e-07 0.0112022 4.57043e-07 0.0112015 3.05071e-07 0.011201 2.0131e-07 0.0112007 1.31579e-07 8.31412e-08 0.0203126 0.00201603 0.0266052 0.00617544 0.0299772 0.0150398 0.0303974 0.0191052 0.0312697 0.0192792 0.0302823 0.019737 0.0291539 0.0182825 0.0279234 0.016701 0.0267502 0.0151159 0.0257063 0.0136875 0.0247835 0.0124361 0.0239657 0.0113324 0.0232329 0.0103471 0.0225617 0.00945311 0.0219411 0.00863042 0.0213665 0.00786579 0.0208403 0.00715106 0.0203692 0.00648402 0.0199564 0.0058626 0.0196093 0.00528599 0.0193338 0.00475394 0.0191289 0.00426429 0.0189903 0.00381312 0.0189101 0.00339551 0.0188778 0.00300708 0.018883 0.0026451 0.0189169 0.00230687 0.0189739 0.00199058 0.0190468 0.00169508 0.0191258 0.00141913 0.019202 0.00116194 0.0192673 0.000922201 0.0193174 0.000699874 0.0193522 0.000493212 0.0193718 0.000304003 0.0193651 0.000127804 0.0193505 -3.10374e-05 0.0193475 -0.000187245 0.0193559 -0.000321315 0.0193751 -0.000438331 0.019415 -0.000540537 0.0194795 -0.00062923 0.0195508 -0.000704795 0.0196047 -0.000767094 0.0196329 -0.000815203 0.0196648 -0.000861322 0.0197111 -0.000896309 0.0197832 -0.000915239 0.0199022 -0.000916688 0.0200771 -0.000906394 0.020288 -0.000887991 0.0205151 -0.000857362 0.0207498 -0.000816498 0.0209794 -0.000766674 0.0211917 -0.000708278 0.0213814 -0.000642629 0.0215481 -0.000572888 0.0216959 -0.000501103 0.0218277 -0.000430067 0.0219377 -0.000361716 0.0220226 -0.000295285 0.0221086 -0.000230197 0.0222312 -0.000167206 0.0223588 -0.000106699 0.0223989 -5.13044e-05 0.0223083 -7.22161e-06 0.0220776 2.08006e-05 0.0217134 3.39701e-05 0.02099 4.25643e-05 0.0198735 6.3207e-05 0.0184799 8.95109e-05 0.0169829 0.000104972 0.015581 0.000109642 0.0144031 0.000107033 0.0134883 0.000100193 0.0128147 9.11336e-05 0.0123352 8.10728e-05 0.0120012 7.07149e-05 0.0117702 6.05859e-05 0.0116099 5.10033e-05 0.0114975 4.22098e-05 0.0114176 3.43418e-05 0.01136 2.74653e-05 0.0113177 2.16099e-05 0.0112865 1.67425e-05 0.0112634 1.2776e-05 0.0112462 9.60707e-06 0.0112334 7.12233e-06 0.011224 5.20826e-06 0.0112171 3.75836e-06 0.0112121 2.67746e-06 0.0112084 1.8838e-06 0.0112058 1.30947e-06 0.011204 8.99603e-07 0.0112027 6.10998e-07 0.0112018 4.1036e-07 0.0112012 2.72666e-07 0.0112008 1.79142e-07 0.0112006 1.16593e-07 7.33727e-08 0.0181595 0.000767705 0.0212064 0.00251037 0.027484 0.00684681 0.0303932 0.0155573 0.030688 0.0188138 0.031431 0.0188698 0.0304443 0.0192751 0.0293558 0.0178914 0.0281646 0.0164014 0.0270315 0.0148983 0.0260334 0.0135588 0.0251754 0.0123846 0.0244319 0.0113463 0.0237684 0.0104078 0.0231505 0.00954313 0.022563 0.00873473 0.0220106 0.00797421 0.0215049 0.00725976 0.0210597 0.00659355 0.0206848 0.00597656 0.0203859 0.00540749 0.020164 0.00488351 0.0200111 0.00440064 0.0199151 0.00395367 0.0198658 0.00353776 0.0198556 0.00314966 0.0198756 0.00278721 0.0199166 0.00244863 0.019973 0.00213264 0.0200387 0.00183821 0.0201033 0.00156442 0.020157 0.00130985 0.0201944 0.00107353 0.0202142 0.000854489 0.0202162 0.000652675 0.020204 0.000466426 0.0201843 0.000296798 0.0201542 0.000139574 0.0201268 2.84295e-06 0.0201101 -0.000136066 0.0201089 -0.000256198 0.0201302 -0.00036023 0.0201661 -0.000451266 0.0201901 -0.000529749 0.0201994 -0.000596263 0.0202003 -0.000648718 0.0202007 -0.000692882 0.0202106 -0.000732576 0.0202721 -0.00075838 0.0203854 -0.000768218 0.020558 -0.000763183 0.0207544 -0.000751264 0.020954 -0.000726346 0.0211533 -0.000691327 0.0213429 -0.000648048 0.0215132 -0.000596243 0.0216632 -0.00053734 0.021796 -0.000474555 0.0219145 -0.00040977 0.0220161 -0.000344852 0.022096 -0.000280248 0.0221645 -0.000215421 0.0222524 -0.000151483 0.0223712 -8.79754e-05 0.0224484 -2.46044e-05 0.0224237 3.46065e-05 0.0222616 8.18052e-05 0.0219183 0.000113567 0.0213099 0.00013109 0.0200462 0.000143442 0.0185851 0.000156901 0.0170486 0.000157696 0.0156195 0.000149258 0.0144224 0.000136146 0.0134941 0.000121172 0.0128115 0.000105833 0.0123262 9.09106e-05 0.0119888 7.69802e-05 0.0117562 6.4255e-05 0.0115956 5.28786e-05 0.0114839 4.28927e-05 0.0114051 3.42903e-05 0.011349 2.7003e-05 0.0113084 2.09559e-05 0.0112788 1.60379e-05 0.0112571 1.2105e-05 0.0112412 9.01328e-06 0.0112296 6.62277e-06 0.0112211 4.80375e-06 0.0112149 3.44072e-06 0.0112104 2.43437e-06 0.0112072 1.70189e-06 0.011205 1.176e-06 0.0112034 8.03416e-07 0.0112023 5.42812e-07 0.0112016 3.6276e-07 0.011201 2.39905e-07 0.0112007 1.56914e-07 0.0112005 1.01691e-07 6.37187e-08 0.0173273 0.000281129 0.018553 0.000939829 0.022021 0.00266765 0.0278421 0.00770838 0.0304972 0.0155689 0.0308438 0.0184313 0.0315421 0.0185035 0.0305984 0.0188521 0.0295614 0.0175752 0.0284491 0.0161883 0.0274187 0.0147892 0.0265164 0.0135442 0.0257353 0.0124352 0.0250384 0.011432 0.024395 0.0105069 0.0237827 0.00964268 0.0231976 0.00883085 0.0226581 0.00806923 0.0221855 0.00735962 0.021792 0.00670397 0.0214789 0.00610042 0.0212417 0.00554358 0.0210746 0.00502874 0.0209652 0.00455147 0.0209017 0.00410694 0.0208738 0.00369212 0.0208751 0.00330414 0.0208999 0.00294222 0.020938 0.00260494 0.020985 0.00229131 0.0210353 0.0020003 0.0210768 0.00173065 0.021101 0.0014804 0.0211067 0.00124836 0.0210935 0.00103388 0.021064 0.000836192 0.0210246 0.000654647 0.0209846 0.000488726 0.0209456 0.000337384 0.020906 0.000199127 0.0208698 7.33996e-05 0.0208464 -3.68718e-05 0.0208437 -0.000148255 0.0208399 -0.000244185 0.0208162 -0.000327593 0.0207884 -0.000397938 0.0207641 -0.00045747 0.0207366 -0.000502704 0.0207393 -0.000544046 0.0207832 -0.000576797 0.0209075 -0.000594516 0.0210729 -0.000596915 0.0212427 -0.000590141 0.0214059 -0.000572122 0.0215614 -0.000544854 0.0217029 -0.000510109 0.0218254 -0.000467387 0.0219312 -0.000418378 0.0220236 -0.00036564 0.0221025 -0.00031077 0.0221653 -0.000254387 0.0222171 -0.000195723 0.0222786 -0.000135259 0.0223727 -7.30658e-05 0.0224596 -7.5576e-06 0.0224876 5.95655e-05 0.0224008 0.000122561 0.0221349 0.000174732 0.0215727 0.000211454 0.0202055 0.000227007 0.0186712 0.000224329 0.0170957 0.00020858 0.0156423 0.000187054 0.0144288 0.000163829 0.0134895 0.000140851 0.0127998 0.000119143 0.0123105 9.94787e-05 0.0119713 8.20337e-05 0.0117385 6.68594e-05 0.0115788 5.38532e-05 0.0114685 4.28585e-05 0.0113917 3.36877e-05 0.0113375 2.61331e-05 0.0112988 2.00068e-05 0.011271 1.51271e-05 0.0112509 1.12938e-05 0.0112364 8.32675e-06 0.0112259 6.06366e-06 0.0112183 4.36224e-06 0.0112128 3.10097e-06 0.0112089 2.17871e-06 0.0112062 1.51328e-06 0.0112042 1.03934e-06 0.0112029 7.06012e-07 0.0112019 4.74445e-07 0.0112013 3.15463e-07 0.0112009 2.07621e-07 0.0112006 1.35176e-07 0.0112004 8.72254e-08 5.44189e-08 0.0169559 0.000112759 0.0173115 0.000354232 0.0188839 0.000956449 0.0227852 0.00295611 0.0283797 0.00807412 0.030748 0.0154952 0.0310687 0.0180506 0.031717 0.0181643 0.030874 0.0184774 0.0298872 0.0173363 0.028872 0.0160761 0.0279337 0.0147836 0.0270943 0.0136076 0.0263442 0.0125265 0.0256517 0.0115268 0.0249996 0.010595 0.0243882 0.00972666 0.0238259 0.00891809 0.0233325 0.00816708 0.0229252 0.00747322 0.022603 0.00683425 0.0223563 0.00624467 0.0221749 0.00569754 0.022051 0.00518877 0.0219733 0.00471519 0.0219296 0.00427267 0.021911 0.00385867 0.0219132 0.00347176 0.0219337 0.00311238 0.0219622 0.00277921 0.0219946 0.00247071 0.0220242 0.00218537 0.0220358 0.00192116 0.0220254 0.00167576 0.021996 0.00144824 0.0219486 0.00123806 0.0218886 0.00104439 0.0218271 0.000866788 0.0217699 0.000704546 0.0217139 0.000556654 0.0216611 0.000421577 0.0216162 0.000298526 0.0215805 0.000185713 0.0215488 8.26386e-05 0.0214971 -5.41e-06 0.0214329 -9.66932e-05 0.0213706 -0.00017577 0.0213196 -0.000242172 0.0212891 -0.000294409 0.0212848 -0.000337091 0.0213428 -0.000372139 0.0214615 -0.000397547 0.0216042 -0.000408845 0.0217361 -0.000408091 0.0218537 -0.00039715 0.0219596 -0.000379629 0.0220498 -0.000354961 0.0221245 -0.000322723 0.0221859 -0.000285053 0.0222353 -0.000243847 0.0222721 -0.000199562 0.0223001 -0.000151302 0.0223379 -9.86997e-05 0.0224098 -4.16217e-05 0.022497 2.11559e-05 0.0225537 9.00344e-05 0.0225272 0.000161628 0.0223264 0.000229526 0.0217806 0.000281991 0.0203033 0.000303294 0.0187201 0.000283381 0.0171187 0.000254003 0.0156478 0.000222018 0.0144218 0.00018971 0.013474 0.000158828 0.0127794 0.000130922 0.012288 0.000106513 0.0119487 8.56902e-05 0.0117173 6.82712e-05 0.0115597 5.38728e-05 0.0114518 4.20867e-05 0.0113774 3.25333e-05 0.0113256 2.48672e-05 0.0112892 1.87856e-05 0.0112633 1.40331e-05 0.0112449 1.03635e-05 0.0112317 7.5657e-06 0.0112223 5.46e-06 0.0112156 3.89559e-06 0.0112109 2.74818e-06 0.0112075 1.91722e-06 0.0112052 1.3229e-06 0.0112035 9.02994e-07 0.0112024 6.09846e-07 0.0112016 4.07585e-07 0.0112011 2.69609e-07 0.0112007 1.76573e-07 0.0112005 1.14425e-07 0.0112003 7.35103e-08 4.56651e-08 0.0168444 5.41488e-05 0.0170005 0.000122913 0.0173621 0.000370023 0.019104 0.00102153 0.0233896 0.00303582 0.0287055 0.0081284 0.0308852 0.0151874 0.0312423 0.0176414 0.0318792 0.017852 0.0311381 0.0181277 0.0302619 0.0171383 0.029348 0.0160228 0.0284792 0.0148324 0.0276726 0.0136934 0.026931 0.0126149 0.0262425 0.01161 0.0256033 0.0106784 0.0250251 0.00981899 0.024518 0.00902708 0.0240926 0.00829358 0.023757 0.00761466 0.0234997 0.00698676 0.0233063 0.00640692 0.0231675 0.00586663 0.0230743 0.00536259 0.0230141 0.00489157 0.0229759 0.00445057 0.0229568 0.00403875 0.0229548 0.00365619 0.0229681 0.00330284 0.0229837 0.00297695 0.0229954 0.00267543 0.0229963 0.00239655 0.02297 0.00213759 0.0229201 0.00189647 0.022854 0.00167284 0.0227731 0.0014663 0.022687 0.00127602 0.0226071 0.00110159 0.0225323 0.000942141 0.0224585 0.00079611 0.0223881 0.000662069 0.0223259 0.000539177 0.0222739 0.000426462 0.0222109 0.000322434 0.0221257 0.000227083 0.0220354 0.000139483 0.0219472 6.04986e-05 0.0218778 -3.79524e-06 0.0218504 -6.28188e-05 0.0218694 -0.000112965 0.0219341 -0.000150711 0.0220254 -0.000179287 0.0221296 -0.000199669 0.0222169 -0.000209177 0.0222876 -0.000207382 0.0223439 -0.000198673 0.0223859 -0.000183835 0.0224163 -0.000161958 0.0224371 -0.000134969 0.0224469 -0.000104035 0.0224501 -6.84544e-05 0.0224641 -2.6538e-05 0.022514 2.22465e-05 0.0225972 7.92663e-05 0.0226652 0.000145204 0.0226678 0.000217692 0.0224757 0.000289842 0.0218597 0.000346203 0.0203131 0.000358306 0.0187307 0.00033095 0.0171214 0.000295286 0.0156385 0.000255213 0.014402 0.000214057 0.0134476 0.000175253 0.0127501 0.000140899 0.0122587 0.000111772 0.0119214 8.77755e-05 0.0116929 6.83981e-05 0.0115385 5.28895e-05 0.0114339 4.05691e-05 0.0113626 3.08507e-05 0.0113137 2.32389e-05 0.0112797 1.7323e-05 0.0112559 1.27856e-05 0.0112392 9.34005e-06 0.0112274 6.75144e-06 0.0112191 4.82851e-06 0.0112132 3.41652e-06 0.0112091 2.39178e-06 0.0112063 1.65673e-06 0.0112043 1.13558e-06 0.0112029 7.70316e-07 0.0112019 5.17203e-07 0.0112013 3.43764e-07 0.0112009 2.26207e-07 0.0112006 1.47415e-07 0.0112004 9.50806e-08 0.0112003 6.08125e-08 3.7614e-08 0.0168308 1.81134e-05 0.0168535 5.39663e-05 0.017015 0.000124336 0.0174332 0.000374723 0.0192297 0.00103186 0.0235687 0.00301503 0.0287627 0.00785018 0.0309267 0.0146929 0.0314068 0.0172123 0.0320083 0.0175859 0.0314586 0.0177935 0.0307248 0.0169638 0.029869 0.0160015 0.0290219 0.0148998 0.0282322 0.0137842 0.0275098 0.0127088 0.0268533 0.0117064 0.0262664 0.0107898 0.0257526 0.00994822 0.0253096 0.00917006 0.0249432 0.00844678 0.0246675 0.00777715 0.0244639 0.00715843 0.0243134 0.00658662 0.0242038 0.0060519 0.0241247 0.00555047 0.0240677 0.00508135 0.0240268 0.00464401 0.0240047 0.00423808 0.0239976 0.00386424 0.0239996 0.00351976 0.0239945 0.00320256 0.0239755 0.00290775 0.0239372 0.00263436 0.0238659 0.00237933 0.0237746 0.00214131 0.0236732 0.00192072 0.0235629 0.00171704 0.0234562 0.00152928 0.0233594 0.00135695 0.0232662 0.00119873 0.0231725 0.00105273 0.0230815 0.000917687 0.0230015 0.000793034 0.0229192 0.000677624 0.0228157 0.000570412 0.0227051 0.000471475 0.0225969 0.000380084 0.0225014 0.000299122 0.0224414 0.000228243 0.0224299 0.000167595 0.0224618 0.000116812 0.0225211 7.52934e-05 0.0225829 4.35094e-05 0.0226355 1.92256e-05 0.0226765 2.88653e-06 0.022704 -5.00497e-06 0.0227159 -5.49465e-06 0.022717 2.55786e-07 0.0227105 1.21135e-05 0.0226975 2.93691e-05 0.0226792 5.21201e-05 0.022668 8.20252e-05 0.0226964 0.000121433 0.0227691 0.000171259 0.022829 0.000231554 0.022811 0.00029792 0.0225391 0.000361255 0.021702 0.000405709 0.0202775 0.000405809 0.01873 0.000378852 0.0171143 0.000338157 0.0156172 0.000288833 0.0143695 0.000237534 0.0134097 0.000189762 0.0127116 0.000148646 0.0122227 0.000114938 0.0118895 8.8106e-05 0.0116656 6.71479e-05 0.0115157 5.08899e-05 0.0114153 3.83344e-05 0.0113477 2.86788e-05 0.0113018 2.12883e-05 0.0112704 1.56621e-05 0.0112488 1.14217e-05 0.0112338 8.25366e-06 0.0112233 5.90757e-06 0.0112161 4.18703e-06 0.0112111 2.93814e-06 0.0112076 2.04116e-06 0.0112051 1.40382e-06 0.0112035 9.55841e-07 0.0112023 6.44361e-07 0.0112016 4.30106e-07 0.011201 2.84297e-07 0.0112007 1.861e-07 0.0112005 1.20678e-07 0.0112003 7.74692e-08 0.0112002 4.93303e-08 3.03812e-08 0.0168095 7.11986e-06 0.0168319 1.77782e-05 0.0168592 4.8938e-05 0.0170202 0.000124325 0.0174647 0.000353378 0.019251 0.00100536 0.0233197 0.00295898 0.0287022 0.00711824 0.0309347 0.014171 0.0315967 0.0168155 0.0321535 0.0173251 0.0317711 0.0174794 0.0311991 0.0167891 0.0303949 0.0159853 0.0295947 0.0149701 0.0288375 0.013888 0.0281564 0.0128306 0.0275501 0.0118489 0.027016 0.0109441 0.0265578 0.0101109 0.0261701 0.00933966 0.0258667 0.0086231 0.0256497 0.0079627 0.0254881 0.00735306 0.025361 0.00678477 0.0252596 0.00625112 0.0251809 0.00575235 0.0251214 0.0052887 0.0250788 0.00485995 0.0250534 0.00446485 0.0250361 0.00410196 0.0250159 0.00376701 0.0249767 0.00345696 0.0249153 0.00316708 0.0248292 0.0028972 0.0247118 0.00264448 0.0245838 0.00240847 0.0244532 0.00219011 0.0243198 0.00198825 0.024196 0.00180161 0.024082 0.00162967 0.0239673 0.00147057 0.0238497 0.00132215 0.0237399 0.00118404 0.023634 0.00105566 0.0235106 0.000935431 0.0233778 0.000823298 0.0232504 0.000718953 0.0231309 0.000623931 0.0230415 0.000539658 0.0229965 0.000465157 0.0229943 0.00040073 0.0230214 0.000345797 0.0230589 0.000299669 0.0230902 0.000261777 0.0231054 0.000231452 0.0231006 0.00020877 0.0230854 0.000193372 0.0230609 0.000185545 0.0230301 0.000184757 0.0229969 0.000190007 0.0229633 0.000201655 0.022939 0.000221288 0.022941 0.000250981 0.022972 0.000291599 0.0229781 0.000341576 0.0228862 0.00039648 0.0225563 0.000446574 0.0215689 0.000477009 0.0202873 0.000469544 0.0187398 0.000437818 0.0171004 0.000385875 0.015582 0.000322953 0.0143223 0.000258991 0.0133592 0.000201367 0.0126636 0.000153486 0.0121801 0.000115606 0.0118535 8.648e-05 0.011636 6.4462e-05 0.0114919 4.7882e-05 0.0113964 3.54231e-05 0.0113328 2.60766e-05 0.0112903 1.90804e-05 0.0112616 1.38565e-05 0.0112421 9.9838e-06 0.0112288 7.13749e-06 0.0112197 5.05897e-06 0.0112134 3.55368e-06 0.0112091 2.4733e-06 0.0112062 1.70522e-06 0.0112042 1.16452e-06 0.0112028 7.87698e-07 0.0112019 5.27742e-07 0.0112012 3.50224e-07 0.0112008 2.30232e-07 0.0112006 1.49931e-07 0.0112004 9.6748e-08 0.0112003 6.18176e-08 0.0112002 3.91934e-08 2.40366e-08 0.0168056 2.33321e-06 0.0168144 5.38535e-06 0.0168267 1.77227e-05 0.016885 3.94264e-05 0.0169973 0.000124602 0.0175683 0.000296188 0.0191357 0.000967996 0.0227457 0.00260821 0.0282994 0.0064289 0.0309125 0.0134915 0.0318518 0.016382 0.0323834 0.0170661 0.0320982 0.0172038 0.0315975 0.0166287 0.0309142 0.0159159 0.0302078 0.0150226 0.029517 0.0140073 0.0288858 0.012994 0.0283232 0.0120325 0.0278451 0.0111387 0.0274404 0.0103108 0.027112 0.00954075 0.02687 0.00882872 0.026688 0.00817216 0.0265395 0.0075638 0.0264159 0.00699631 0.0263144 0.0064671 0.0262363 0.00597659 0.0261775 0.00552453 0.0261327 0.00510847 0.0260957 0.00472562 0.0260544 0.00437247 0.0259958 0.00404477 0.0259099 0.00373878 0.0257992 0.00345161 0.0256642 0.00318304 0.0255066 0.00293111 0.0253501 0.00269603 0.0251959 0.00247863 0.0250426 0.00227663 0.0249022 0.00208904 0.024766 0.00191516 0.024624 0.00175226 0.0244842 0.00159921 0.0243506 0.00145615 0.024206 0.00132164 0.0240506 0.00119515 0.0239027 0.00107679 0.0237637 0.000967238 0.0236488 0.000868768 0.0235735 0.000779846 0.0235378 0.000701196 0.0235322 0.000632203 0.0235395 0.000572028 0.0235445 0.00051992 0.0235373 0.000475454 0.0235142 0.000438571 0.0234771 0.000409326 0.0234308 0.000387928 0.0233796 0.000374565 0.0233292 0.000369056 0.0232811 0.000371117 0.0232378 0.000381478 0.0232039 0.000401452 0.0231902 0.000431827 0.0231638 0.000471562 0.0230249 0.000516357 0.0226282 0.000555901 0.0216355 0.00057065 0.0203364 0.000552167 0.0187498 0.000504931 0.0170716 0.000434987 0.0155274 0.000354385 0.0142572 0.000276135 0.0132947 0.000208559 0.0126058 0.000154569 0.0121315 0.00011336 0.0118141 8.27631e-05 0.0116047 6.03336e-05 0.0114675 4.39271e-05 0.0113775 3.19222e-05 0.0113184 2.31294e-05 0.0112793 1.66867e-05 0.0112534 1.19653e-05 0.011236 8.51983e-06 0.0112243 6.02654e-06 0.0112164 4.2308e-06 0.011211 2.94606e-06 0.0112074 2.03399e-06 0.011205 1.39196e-06 0.0112033 9.44051e-07 0.0112022 6.3447e-07 0.0112015 4.22524e-07 0.011201 2.78812e-07 0.0112007 1.82308e-07 0.0112004 1.18123e-07 0.0112003 7.58586e-08 0.0112002 4.82495e-08 0.0112001 3.04626e-08 1.86061e-08 0.016805 4.25178e-07 0.0168066 1.63403e-06 0.0168177 4.46193e-06 0.0168255 1.43639e-05 0.0168931 3.4739e-05 0.0169683 0.00010635 0.0175497 0.000262097 0.018892 0.000835302 0.0221764 0.00226221 0.0279695 0.00556962 0.0310635 0.0127112 0.0322015 0.0158438 0.0325732 0.0168449 0.0323239 0.0169009 0.0318878 0.016396 0.0314282 0.0157886 0.0308549 0.0150582 0.0302435 0.014139 0.0296788 0.0131742 0.029186 0.0122438 0.0287651 0.0113632 0.0284084 0.0105362 0.0281275 0.0097642 0.0279143 0.00905373 0.0277403 0.00840035 0.0275957 0.00779532 0.0274745 0.00723455 0.0273769 0.00671601 0.0273006 0.00623877 0.0272369 0.00580046 0.0271767 0.0053963 0.0271114 0.00502264 0.0270299 0.00467575 0.0269211 0.00435153 0.0267831 0.00404648 0.0266221 0.00375939 0.026444 0.00348982 0.0262547 0.00323722 0.0260746 0.00300127 0.0258984 0.00278253 0.0257257 0.00257775 0.0255658 0.00238674 0.0254011 0.00220795 0.0252315 0.00203861 0.0250684 0.00187907 0.0249011 0.00172874 0.0247226 0.00158659 0.0245522 0.00145289 0.0243945 0.00132807 0.0242564 0.0012141 0.0241544 0.00111046 0.0240883 0.0010169 0.0240504 0.000933211 0.0240272 0.000858477 0.0240051 0.000791921 0.0239749 0.000733149 0.0239326 0.000682173 0.0238778 0.000639235 0.0238137 0.000604638 0.0237458 0.000578766 0.0236804 0.00056183 0.0236208 0.000553741 0.0235658 0.000555096 0.0235139 0.000566259 0.0234696 0.000588081 0.0234147 0.000618858 0.0232314 0.000653713 0.0227294 0.000680569 0.021733 0.000677602 0.0203869 0.000640692 0.0187408 0.00057214 0.0170156 0.00047893 0.0154465 0.000378759 0.0141711 0.000286239 0.0132155 0.000209817 0.0125388 0.000151156 0.0120776 0.000107955 0.0117721 7.693e-05 0.0115726 5.48644e-05 0.0114432 3.91618e-05 0.0113593 2.79609e-05 0.0113048 1.99459e-05 0.0112692 1.41956e-05 0.0112459 1.00583e-05 0.0112305 7.08044e-06 0.0112203 4.95664e-06 0.0112135 3.44739e-06 0.011209 2.38036e-06 0.011206 1.63077e-06 0.011204 1.10807e-06 0.0112026 7.46538e-07 0.0112017 4.98628e-07 0.0112011 3.30139e-07 0.0112008 2.16664e-07 0.0112005 1.40943e-07 0.0112003 9.08778e-08 0.0112002 5.80932e-08 0.0112002 3.6788e-08 0.0112001 2.31332e-08 1.40748e-08 0.0168035 4.74213e-08 0.016807 2.56103e-07 0.01681 8.88196e-07 0.0168209 3.06957e-06 0.016832 1.07175e-05 0.0168876 2.77708e-05 0.0169695 8.56171e-05 0.0174322 0.000218007 0.0186253 0.000678744 0.0214748 0.00186117 0.027687 0.0046269 0.0311516 0.0115151 0.0323211 0.015055 0.0324975 0.0164626 0.0324332 0.0164457 0.03226 0.0160842 0.031955 0.0155987 0.0315124 0.0150393 0.0310165 0.0142546 0.030545 0.0133629 0.0301232 0.0124677 0.0297445 0.0116032 0.0294263 0.0107783 0.0291803 0.0100138 0.0289797 0.00931213 0.0288125 0.00866557 0.0286717 0.00806965 0.0285527 0.00752015 0.0284546 0.00701471 0.0283688 0.00655044 0.0282825 0.00612219 0.0281888 0.00572526 0.0280804 0.0053562 0.0279474 0.00501114 0.0277837 0.00468605 0.0275939 0.0043784 0.0273881 0.00408827 0.0271753 0.00381542 0.0269604 0.00355994 0.0267585 0.00332042 0.02656 0.00309751 0.0263678 0.00288699 0.0261837 0.00268977 0.0259881 0.00250301 0.0257936 0.00232511 0.0256023 0.00215696 0.0254019 0.00199759 0.0252067 0.00184708 0.0250282 0.0017057 0.0248674 0.00157512 0.0247391 0.0014556 0.0246442 0.00134631 0.0245753 0.00124717 0.0245212 0.00115727 0.0244711 0.00107586 0.0244175 0.00100258 0.0243562 0.000937547 0.0242859 0.000881032 0.0242075 0.000833506 0.0241252 0.000795324 0.0240466 0.000767049 0.0239768 0.000748528 0.023914 0.000739913 0.0238521 0.000742393 0.0237865 0.000755182 0.0236955 0.000776623 0.0234708 0.000799847 0.0228359 0.000809825 0.0218312 0.000785251 0.020414 0.000725273 0.0186961 0.000629916 0.0169225 0.000511328 0.0153347 0.00039178 0.0140629 0.000286902 0.0131224 0.000204056 0.0124639 0.000142887 0.0120201 9.94183e-05 0.011729 6.91812e-05 0.0115407 4.82923e-05 0.0114197 3.38131e-05 0.0113421 2.37284e-05 0.0112922 1.66687e-05 0.0112601 1.17041e-05 0.0112392 8.20268e-06 0.0112257 5.71864e-06 0.0112169 3.96118e-06 0.0112111 2.7309e-06 0.0112073 1.87042e-06 0.0112048 1.27202e-06 0.0112031 8.58482e-07 0.0112021 5.74775e-07 0.0112014 3.81669e-07 0.0112009 2.51321e-07 0.0112006 1.6409e-07 0.0112004 1.06225e-07 0.0112003 6.81775e-08 0.0112002 4.33925e-08 0.0112001 2.73647e-08 0.0112001 1.71432e-08 1.03927e-08 0.0168034 4.153e-08 0.0168051 2.81455e-08 0.0168089 1.35659e-07 0.0168142 4.65935e-07 0.0168265 1.8765e-06 0.0168356 6.61405e-06 0.0168895 2.02087e-05 0.0169707 6.23082e-05 0.0172991 0.000172234 0.0183079 0.000515029 0.0207219 0.00144017 0.0269943 0.00377185 0.0306941 0.00878493 0.0319884 0.013996 0.0324682 0.0157505 0.032529 0.0160531 0.0324897 0.0158099 0.0324591 0.0153682 0.0322091 0.0149313 0.0318476 0.0143161 0.0314728 0.0135344 0.0311105 0.0126991 0.0307782 0.0118623 0.030504 0.0110609 0.0302759 0.0103144 0.0300837 0.0096247 0.0299199 0.0089901 0.0297776 0.00840581 0.0296511 0.00786805 0.0295351 0.00737181 0.0294196 0.00691466 0.0292945 0.00649066 0.0291554 0.00609585 0.0289946 0.00572617 0.0288039 0.00537744 0.0285845 0.00504632 0.028347 0.00473227 0.0281033 0.00443578 0.0278618 0.00415716 0.0276248 0.00389563 0.0274016 0.00364957 0.0271799 0.00341903 0.0269657 0.00319959 0.0267521 0.00299311 0.0265251 0.00279547 0.0263047 0.00260689 0.0260833 0.0024283 0.0258633 0.00225915 0.025662 0.00209974 0.0254779 0.00195106 0.0253226 0.0018143 0.0251999 0.00168813 0.0251022 0.00157264 0.0250198 0.00146691 0.0249431 0.00137016 0.0248659 0.00128209 0.0247852 0.0012028 0.0246998 0.00113271 0.024609 0.00107223 0.0245151 0.00102185 0.0244247 0.000981973 0.0243453 0.000953004 0.0242757 0.000934496 0.0242051 0.000926074 0.0241196 0.000928193 0.0239874 0.000937669 0.0236966 0.000945536 0.0229901 0.000932011 0.0219061 0.000883253 0.0203967 0.000795349 0.0186013 0.000668546 0.0167854 0.0005262 0.0151908 0.000390121 0.0139343 0.000276687 0.0130179 0.00019096 0.0123839 0.00013002 0.011961 8.81611e-05 0.0116862 5.99451e-05 0.01151 4.0982e-05 0.0113978 2.81714e-05 0.0113265 1.94509e-05 0.0112811 1.34657e-05 0.0112521 9.33101e-06 0.0112335 6.4626e-06 0.0112217 4.46879e-06 0.011214 3.07304e-06 0.0112091 2.09833e-06 0.0112059 1.42647e-06 0.0112038 9.63522e-07 0.0112025 6.46134e-07 0.0112016 4.30088e-07 0.011201 2.84057e-07 0.0112007 1.86101e-07 0.0112004 1.20928e-07 0.0112003 7.79325e-08 0.0112002 4.98059e-08 0.0112001 3.15722e-08 0.0112001 1.98338e-08 0.0112001 1.23828e-08 7.48235e-09 0.0168034 1.10397e-08 0.0168051 8.43361e-09 0.016808 1.53662e-08 0.0168122 9.04254e-08 0.0168199 1.5572e-07 0.0168317 1.05561e-06 0.0168548 3.05663e-06 0.0168814 1.3944e-05 0.01699 3.77714e-05 0.0172205 0.000130222 0.0180734 0.000346904 0.0200503 0.0010717 0.0245789 0.00272676 0.0291864 0.00619074 0.0315438 0.0124628 0.0324944 0.0148129 0.0327339 0.0156425 0.0327987 0.0155617 0.0329336 0.0151524 0.0329187 0.0147273 0.0326919 0.0142462 0.0324311 0.0136273 0.0321411 0.0129009 0.0318717 0.0121278 0.0316304 0.0113751 0.0314182 0.0106611 0.0312318 0.00999486 0.0310619 0.00937701 0.0309006 0.00880315 0.0307463 0.00827213 0.0305954 0.00778162 0.0304383 0.00732766 0.0302659 0.00690411 0.0300723 0.00650572 0.0298507 0.00612899 0.0295993 0.00577038 0.0293274 0.00542857 0.0290488 0.00510433 0.0287745 0.00479841 0.0285075 0.00451076 0.0282494 0.00423946 0.028002 0.00398335 0.0277547 0.00374103 0.0275141 0.00350964 0.027266 0.00329039 0.0270103 0.00307925 0.0267647 0.00287838 0.0265221 0.00268829 0.0262965 0.00250898 0.0260906 0.0023404 0.0259084 0.00218461 0.0257583 0.00204011 0.025634 0.00190708 0.0255259 0.00178464 0.0254249 0.00167196 0.0253257 0.00156861 0.0252256 0.00147468 0.025124 0.00139065 0.0250205 0.00131695 0.0249161 0.00125397 0.0248151 0.00120199 0.0247245 0.00116134 0.0246455 0.00113172 0.0245642 0.00111234 0.0244544 0.00110085 0.0242732 0.00109316 0.0238541 0.001078 0.0231095 0.00103721 0.0219295 0.000959918 0.0203167 0.000837811 0.0184468 0.000682332 0.0166026 0.000519111 0.0150173 0.000372089 0.0137896 0.000255573 0.0129066 0.000171191 0.0123023 0.000113422 0.0119029 7.50005e-05 0.0116455 4.98676e-05 0.0114817 3.34182e-05 0.011378 2.25708e-05 0.0113126 1.53455e-05 0.0112714 1.04833e-05 0.0112453 7.18077e-06 0.0112288 4.92038e-06 0.0112184 3.36617e-06 0.0112117 2.29785e-06 0.0112075 1.56295e-06 0.0112048 1.05528e-06 0.0112031 7.07452e-07 0.011202 4.71576e-07 0.0112013 3.12317e-07 0.0112008 2.05268e-07 0.0112005 1.33851e-07 0.0112003 8.65933e-08 0.0112002 5.5578e-08 0.0112002 3.5383e-08 0.0112001 2.23481e-08 0.0112001 1.39902e-08 0.0112001 8.70791e-09 5.2468e-09 0.0168034 2.08892e-09 0.016805 7.81004e-10 0.016808 1.80499e-09 0.0168118 1.52947e-08 0.0168182 1.00822e-08 0.0168267 1.34273e-07 0.0168413 3.58465e-07 0.0168691 1.76173e-06 0.0169038 6.26379e-06 0.0170113 2.33084e-05 0.0171618 7.95935e-05 0.0178199 0.000228569 0.019285 0.00071597 0.0225839 0.00188946 0.0280403 0.00452158 0.0312196 0.0105385 0.0324716 0.0137676 0.0330178 0.0150365 0.0332037 0.0151722 0.0332895 0.0148822 0.0334445 0.0144409 0.0334853 0.0140378 0.033347 0.0135857 0.0331634 0.0130065 0.0329676 0.0123444 0.0327681 0.0116695 0.0325734 0.0110105 0.0323781 0.0103813 0.0321845 0.00978616 0.0319956 0.00923076 0.0318108 0.0087122 0.0316231 0.0082302 0.0314178 0.00777747 0.0311878 0.00734873 0.0309307 0.00694048 0.0306448 0.00655079 0.0303362 0.00617749 0.0300192 0.00582126 0.0297077 0.00548361 0.0294076 0.00516528 0.0291171 0.00486459 0.0288363 0.00457958 0.0285624 0.00430908 0.0282874 0.00405125 0.0280156 0.00380439 0.0277351 0.00356909 0.0274567 0.00334274 0.0271933 0.00312847 0.0269434 0.0029263 0.0267163 0.00273608 0.0265094 0.00255828 0.0263323 0.00239413 0.0261831 0.00224172 0.026052 0.00210138 0.0259288 0.00197194 0.0258077 0.00185272 0.0256873 0.00174365 0.0255677 0.00164515 0.0254487 0.00155769 0.0253311 0.00148149 0.0252178 0.00141659 0.0251131 0.00136283 0.0250174 0.00131976 0.0249164 0.00128581 0.0247722 0.00125756 0.0245133 0.00122807 0.0240257 0.00118461 0.0231791 0.00111344 0.0218797 0.00100176 0.0201609 0.000844071 0.0182307 0.000664843 0.0163787 0.00048817 0.0148217 0.000338176 0.0136362 0.000225043 0.0127941 0.000146419 0.0122231 9.44659e-05 0.0118487 6.09897e-05 0.0116087 3.96911e-05 0.0114567 2.60998e-05 0.011361 1.73396e-05 0.011301 1.16223e-05 0.0112634 7.84273e-06 0.0112398 5.31496e-06 0.011225 3.60862e-06 0.0112157 2.44969e-06 0.0112099 1.65959e-06 0.0112062 1.11986e-06 0.0112039 7.52196e-07 0.0112025 5.02861e-07 0.0112016 3.3378e-07 0.011201 2.19946e-07 0.0112006 1.43817e-07 0.0112004 9.33425e-08 0.0112003 6.01655e-08 0.0112002 3.84804e-08 0.0112001 2.4415e-08 0.0112001 1.53712e-08 0.0112001 9.59177e-09 0.0112001 5.95402e-09 3.57906e-09 0.0168033 4.33697e-10 0.0168051 2.07295e-10 0.0168078 -4.32684e-10 0.016812 5.97595e-09 0.0168177 -9.16616e-09 0.0168265 3.93734e-08 0.0168386 1.14238e-08 0.016857 2.46018e-07 0.0168856 6.83355e-07 0.016932 2.9199e-06 0.0170251 1.20217e-05 0.0171623 4.11231e-05 0.0176423 0.000136444 0.0186584 0.000435145 0.0210454 0.00122987 0.0264954 0.00310662 0.0303304 0.00664354 0.0322211 0.0121766 0.0331401 0.013855 0.0335261 0.0145548 0.0337117 0.0145119 0.0338882 0.014155 0.0340959 0.0137471 0.0341371 0.0133803 0.0340702 0.012945 0.033959 0.012419 0.0338056 0.0118533 0.0336281 0.0112765 0.0334353 0.0107068 0.0332366 0.0101572 0.0330338 0.00963413 0.0328219 0.00913873 0.0325886 0.00866622 0.0323261 0.00821311 0.032034 0.00777612 0.0317142 0.00735591 0.0313701 0.00695029 0.0310157 0.00656024 0.0306672 0.00618819 0.0303328 0.00583547 0.0300116 0.00550132 0.0297003 0.00518364 0.0293974 0.00488098 0.0290972 0.00459184 0.0287952 0.00431494 0.028496 0.00404931 0.0281935 0.00379591 0.027903 0.00355333 0.0276334 0.00332493 0.0273828 0.00310992 0.0271558 0.00290842 0.0269535 0.00272164 0.026779 0.00254913 0.0266247 0.00238941 0.0264802 0.00224267 0.0263379 0.00210758 0.0261951 0.00198359 0.0260523 0.00187084 0.0259105 0.00176963 0.0257707 0.00168008 0.0256352 0.00160178 0.0255068 0.00153408 0.025383 0.00147579 0.0252458 0.00142452 0.0250512 0.00137555 0.0247185 0.00132038 0.0241321 0.00124696 0.0231641 0.00114196 0.0217388 0.000990259 0.019926 0.000807867 0.0179598 0.000613348 0.0161256 0.000434489 0.0146159 0.00029107 0.0134833 0.000187838 0.0126869 0.000118891 0.0121506 7.47994e-05 0.0118005 4.72133e-05 0.0115769 3.01142e-05 0.0114357 1.94572e-05 0.011347 1.27322e-05 0.0112916 8.42442e-06 0.011257 5.62266e-06 0.0112355 3.7749e-06 0.011222 2.54256e-06 0.0112137 1.71398e-06 0.0112085 1.15396e-06 0.0112053 7.74591e-07 0.0112033 5.17731e-07 0.011202 3.44342e-07 0.0112013 2.27614e-07 0.0112008 1.4937e-07 0.0112005 9.74371e-08 0.0112003 6.31084e-08 0.0112002 4.05233e-08 0.0112001 2.58355e-08 0.0112001 1.63379e-08 0.0112001 1.0257e-08 0.0112001 6.37587e-09 0.0112001 3.95053e-09 2.37076e-09 0.0168033 1.14609e-10 0.0168051 -3.18416e-11 0.0168078 -9.88152e-11 0.0168119 1.29051e-09 0.0168178 -2.77886e-09 0.0168263 8.51639e-09 0.0168384 -6.76498e-09 0.0168558 3.78651e-08 0.0168802 7.09675e-08 0.0169149 3.53148e-07 0.0169685 1.30485e-06 0.0170509 5.33084e-06 0.0172282 1.89773e-05 0.0175596 7.06836e-05 0.01829 0.000232988 0.0201791 0.000715376 0.0235408 0.00186719 0.0285561 0.00420279 0.0316039 0.00892286 0.0329688 0.0123901 0.0337392 0.0134615 0.0341015 0.0139009 0.0343022 0.0137992 0.0345325 0.013432 0.0346971 0.0130685 0.0347423 0.0126997 0.0347119 0.0122871 0.0346221 0.0118279 0.0344881 0.0113467 0.0343228 0.0108565 0.0341379 0.0103691 0.0339299 0.0098924 0.0336915 0.00942406 0.0334164 0.00896547 0.0331072 0.00851391 0.0327671 0.0080728 0.0324016 0.00764144 0.0320245 0.007222 0.0316515 0.00681727 0.0312928 0.00642992 0.0309497 0.00606052 0.030619 0.00570821 0.0302954 0.00537073 0.0299769 0.00504709 0.0296582 0.00473635 0.0293392 0.00443839 0.0290263 0.00415303 0.0287163 0.0038816 0.028425 0.00362366 0.0281578 0.00338241 0.0279096 0.00315644 0.0276869 0.00294747 0.0274865 0.00275474 0.0273039 0.00257849 0.0271323 0.00241674 0.0269629 0.00226843 0.0267914 0.00213323 0.0266162 0.00201014 0.0264374 0.00189892 0.026257 0.00179934 0.0260787 0.0017108 0.0259057 0.00163209 0.0257337 0.00156098 0.0255402 0.00149398 0.0252745 0.0014248 0.02485 0.00134383 0.024147 0.00123897 0.0230461 0.00109624 0.021503 0.000919615 0.0196229 0.00072323 0.0176522 0.000529218 0.0158616 0.000362095 0.0144143 0.000235017 0.013341 0.000147415 0.0125912 9.09593e-05 0.012088 5.59289e-05 0.0117602 3.45777e-05 0.011551 2.16553e-05 0.0114189 1.37721e-05 0.0113361 8.89131e-06 0.0112844 5.81665e-06 0.0112522 3.8454e-06 0.0112322 2.56118e-06 0.0112199 1.71346e-06 0.0112122 1.14837e-06 0.0112075 7.69251e-07 0.0112046 5.14067e-07 0.0112028 3.42245e-07 0.0112017 2.26769e-07 0.0112011 1.49383e-07 0.0112007 9.776e-08 0.0112004 6.35514e-08 0.0112003 4.10316e-08 0.0112002 2.62971e-08 0.0112001 1.67144e-08 0.0112001 1.05459e-08 0.0112001 6.60479e-09 0.0112001 4.10726e-09 0.0112001 2.53469e-09 1.52312e-09 0.0168033 3.51804e-11 0.0168051 -2.05468e-11 0.0168078 1.67835e-11 0.0168119 2.43041e-10 0.0168178 -6.18068e-10 0.0168262 1.79532e-09 0.0168384 -2.07435e-09 0.0168556 5.78485e-09 0.0168797 8.51565e-09 0.0169127 3.30508e-08 0.0169587 1.72948e-07 0.0170224 5.72399e-07 0.0171156 2.34343e-06 0.0172654 8.62755e-06 0.0175491 3.24499e-05 0.0181162 0.000112205 0.019337 0.000365106 0.0218055 0.00103372 0.0258328 0.00243541 0.0298618 0.00485474 0.0323516 0.00921417 0.0335432 0.0118926 0.0342323 0.0126989 0.034605 0.0130073 0.0348777 0.0129637 0.0350628 0.012702 0.0351846 0.0123555 0.035194 0.0119761 0.0351519 0.011565 0.0350631 0.0111381 0.034944 0.0106974 0.0347883 0.0102559 0.0345923 0.00980993 0.0343523 0.00936277 0.0340699 0.00891038 0.0337541 0.00845736 0.03341 0.00800778 0.0330509 0.00756391 0.0326921 0.00713016 0.0323445 0.00671028 0.032014 0.00630649 0.0316948 0.00591985 0.0313801 0.00554869 0.0310644 0.00519127 0.0307492 0.00484792 0.0304318 0.00451932 0.0301137 0.0042055 0.0298014 0.0039074 0.0294948 0.00362664 0.0292033 0.00336511 0.0289336 0.00312357 0.0286797 0.00290253 0.0284427 0.00270235 0.0282175 0.00252166 0.0279949 0.0023587 0.0277726 0.00221261 0.0275472 0.00208153 0.027316 0.00196395 0.0270767 0.00185782 0.0268299 0.00176253 0.0265808 0.00167776 0.0263345 0.00160045 0.0260856 0.00152654 0.0258073 0.00145007 0.0254415 0.0013632 0.0248953 0.00125725 0.0240546 0.00112451 0.022824 0.000960661 0.02119 0.000778736 0.0192785 0.000590769 0.0173363 0.00041774 0.0156096 0.00027701 0.0142323 0.000174837 0.0132181 0.000106985 0.0125115 6.45626e-05 0.0120376 3.89249e-05 0.0117286 2.3632e-05 0.0115312 1.45689e-05 0.0114063 9.14081e-06 0.011328 5.83442e-06 0.0112791 3.78083e-06 0.0112488 2.48003e-06 0.0112299 1.64114e-06 0.0112183 1.09203e-06 0.0112112 7.28541e-07 0.0112068 4.86102e-07 0.0112041 3.2373e-07 0.0112025 2.14859e-07 0.0112015 1.4195e-07 0.0112009 9.32656e-08 0.0112006 6.08958e-08 0.0112004 3.9497e-08 0.0112002 2.54412e-08 0.0112002 1.62691e-08 0.0112001 1.03247e-08 0.0112001 6.50139e-09 0.0112001 4.06431e-09 0.0112001 2.52152e-09 0.0112001 1.55183e-09 9.34606e-10 0.0168033 4.0315e-11 0.0168051 2.20467e-11 0.0168078 4.79452e-11 0.0168119 5.80714e-11 0.0168178 -1.05684e-10 0.0168262 3.91462e-10 0.0168384 -5.42181e-10 0.0168556 1.1047e-09 0.0168796 7.17056e-10 0.0169125 3.07349e-09 0.0169575 2.27657e-08 0.0170186 5.80323e-08 0.0171005 2.95138e-07 0.0172116 9.97404e-07 0.0173684 4.06239e-06 0.0176116 1.43383e-05 0.0180549 5.14113e-05 0.018885 0.000172866 0.0204357 0.000500911 0.0230119 0.00125225 0.0267031 0.0026043 0.03025 0.00461758 0.0325604 0.00771936 0.0337773 0.0105182 0.0344994 0.0115315 0.0349602 0.0117716 0.0352973 0.0117505 0.0355393 0.0114671 0.0356977 0.0111465 0.0357148 0.0108256 0.0356568 0.0104527 0.0355846 0.0100308 0.0354814 0.0095647 0.0353423 0.00907263 0.0351634 0.00857323 0.0349464 0.00808248 0.034697 0.00759472 0.0344263 0.00711706 0.0341462 0.00665165 0.0338654 0.00620327 0.0335911 0.00577142 0.0333237 0.00536192 0.0330493 0.00496849 0.0327655 0.00458433 0.0324707 0.00422006 0.0321666 0.00387705 0.0318506 0.00355826 0.0315198 0.00326242 0.0311876 0.00299227 0.0308547 0.00274833 0.0305221 0.00253116 0.0302022 0.00233954 0.0298939 0.00217314 0.0295827 0.00203008 0.0292643 0.00190686 0.0289429 0.00180073 0.0286201 0.00170919 0.0282913 0.00162964 0.027953 0.00155959 0.0276046 0.00149496 0.0272455 0.00143278 0.0268784 0.00137023 0.0264968 0.00130077 0.0260726 0.00121939 0.0255502 0.00112163 0.024847 0.00100559 0.0238666 0.000870677 0.0225322 0.000722517 0.0208453 0.000567339 0.0189394 0.000417457 0.0170493 0.000286999 0.015394 0.000185595 0.0140839 0.00011457 0.0131216 6.87553e-05 0.012451 4.07811e-05 0.0120002 2.42078e-05 0.0117057 1.44888e-05 0.0115171 8.82188e-06 0.0113976 5.47689e-06 0.0113225 3.46515e-06 0.0112756 2.22929e-06 0.0112464 1.4537e-06 0.0112284 9.5736e-07 0.0112173 6.34522e-07 0.0112105 4.21916e-07 0.0112063 2.80719e-07 0.0112038 1.86491e-07 0.0112023 1.23502e-07 0.0112014 8.14287e-08 0.0112008 5.3402e-08 0.0112005 3.48091e-08 0.0112003 2.25406e-08 0.0112002 1.44955e-08 0.0112001 9.25514e-09 0.0112001 5.86589e-09 0.0112001 3.68907e-09 0.0112001 2.30357e-09 0.0112001 1.42643e-09 0.0112 8.77327e-10 5.28232e-10 0.0168033 4.48849e-11 0.0168051 3.71333e-11 0.0168078 5.53031e-11 0.0168119 3.26331e-11 0.0168178 2.29752e-11 0.0168262 8.88505e-11 0.0168384 -9.31158e-11 0.0168556 2.16224e-10 0.0168796 6.09783e-11 0.0169125 1.84822e-10 0.0169574 3.2056e-09 0.0170182 5.17043e-09 0.0170988 3.65278e-08 0.0172048 1.1223e-07 0.0173437 4.93013e-07 0.0175268 1.7282e-06 0.0177761 6.51282e-06 0.0181405 2.27681e-05 0.0187387 7.32145e-05 0.0197242 0.000216926 0.0212644 0.000543642 0.0234292 0.00116966 0.0263185 0.00213531 0.029368 0.00347379 0.0318767 0.00489364 0.0336421 0.00676416 0.034754 0.00837323 0.0354888 0.00904919 0.0360635 0.00900325 0.0365245 0.008764 0.0368787 0.00849014 0.0371522 0.00808365 0.0373704 0.00758785 0.0375185 0.00708936 0.037547 0.00659787 0.0375104 0.00608851 0.0374296 0.0055993 0.0373026 0.0051424 0.0371366 0.00470058 0.0369453 0.00428093 0.0367301 0.00388574 0.0364976 0.00352504 0.0362359 0.0031908 0.0359283 0.0028821 0.0355842 0.00258836 0.035222 0.00231028 0.0348323 0.00206342 0.034412 0.00184926 0.0339679 0.00166587 0.0335106 0.001511 0.033051 0.00138317 0.0325833 0.00127941 0.0321198 0.00119639 0.0316623 0.00113193 0.0311925 0.00108208 0.0307024 0.00104172 0.0302029 0.00100807 0.0297031 0.000979413 0.0291931 0.000950451 0.0286592 0.000918728 0.0280976 0.000883038 0.0275132 0.000838874 0.0269111 0.000785462 0.0262788 0.000722224 0.0255745 0.000649668 0.0247254 0.00056883 0.0236397 0.000481751 0.0222431 0.000390585 0.0205409 0.000299879 0.0186634 0.00021608 0.0168296 0.000145765 0.0152365 9.27063e-05 0.0139794 5.6404e-05 0.0130557 3.34207e-05 0.0124106 1.96002e-05 0.0119758 1.15173e-05 0.0116911 6.82874e-06 0.0115082 4.12439e-06 0.0113921 2.54321e-06 0.011319 1.60003e-06 0.0112734 1.02466e-06 0.011245 6.65702e-07 0.0112275 4.37105e-07 0.0112167 2.89003e-07 0.0112101 1.91782e-07 0.0112061 1.27384e-07 0.0112036 8.45008e-08 0.0112022 5.58864e-08 0.0112013 3.68035e-08 0.0112008 2.41094e-08 0.0112005 1.56993e-08 0.0112003 1.01563e-08 0.0112002 6.52523e-09 0.0112001 4.1624e-09 0.0112001 2.63591e-09 0.0112001 1.65636e-09 0.0112001 1.03369e-09 0.0112001 6.39236e-10 0.0112 3.93219e-10 2.36728e-10 0.0168033 0.0168051 0.0168078 0.0168119 0.0168178 0.0168262 0.0168384 0.0168556 0.0168796 0.0169125 0.0169574 0.0170181 0.0170986 0.017204 0.0173407 0.0175159 0.0177368 0.0180146 0.0183741 0.0188645 0.0195723 0.0205988 0.0220428 0.0239204 0.0261981 0.0288303 0.031601 0.0342017 0.0364843 0.0384561 0.0401274 0.0414971 0.0425857 0.0434193 0.044008 0.0443622 0.0445709 0.0445641 0.044436 0.0441694 0.0438053 0.0433677 0.042864 0.0422834 0.0416191 0.0408863 0.0401087 0.0392962 0.0384666 0.0376372 0.0368194 0.0360133 0.0352202 0.0344413 0.0336635 0.032878 0.032083 0.0312839 0.0304868 0.0296845 0.0288659 0.0280423 0.0272308 0.0264269 0.0255907 0.0246465 0.0234986 0.0220707 0.0203666 0.018511 0.0167119 0.0151543 0.0139259 0.0130226 0.0123906 0.0119639 0.011684 0.0115039 0.0113895 0.0113174 0.0112724 0.0112443 0.011227 0.0112164 0.0112099 0.0112059 0.0112036 0.0112021 0.0112013 0.0112008 0.0112005 0.0112003 0.0112002 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112 ) ; boundaryField { inlet { type calculated; value nonuniform List<scalar> 500 ( -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 -0.0168001 ) ; } outlet { type calculated; value nonuniform List<scalar> 400 ( 0.0112019 0.0112019 0.0112019 0.0112019 0.0112018 0.0112018 0.0112017 0.0112016 0.0112015 0.0112015 0.0112014 0.0112013 0.0112012 0.0112011 0.011201 0.0112009 0.0112008 0.0112007 0.0112006 0.0112005 0.0112005 0.0112004 0.0112003 0.0112003 0.0112002 0.0112002 0.0112002 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112 0.0112 0.0112 0.0112 0.0112 0.0112019 0.0112019 0.0112019 0.0112019 0.0112018 0.0112018 0.0112017 0.0112016 0.0112015 0.0112015 0.0112014 0.0112013 0.0112012 0.0112011 0.011201 0.0112009 0.0112008 0.0112007 0.0112006 0.0112005 0.0112004 0.0112004 0.0112003 0.0112003 0.0112002 0.0112002 0.0112002 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112 0.0112 0.0112 0.0112 0.0112 0.0112 0.0112019 0.0112019 0.0112019 0.0112019 0.0112018 0.0112018 0.0112017 0.0112016 0.0112015 0.0112015 0.0112014 0.0112013 0.0112012 0.0112011 0.011201 0.0112009 0.0112008 0.0112007 0.0112006 0.0112005 0.0112005 0.0112004 0.0112003 0.0112003 0.0112002 0.0112002 0.0112002 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112 0.0112 0.0112 0.0112 0.0112 0.0112 0.0112019 0.0112019 0.0112019 0.0112019 0.0112018 0.0112018 0.0112017 0.0112016 0.0112015 0.0112015 0.0112014 0.0112013 0.0112012 0.0112011 0.011201 0.0112009 0.0112008 0.0112007 0.0112006 0.0112005 0.0112005 0.0112004 0.0112003 0.0112003 0.0112002 0.0112002 0.0112002 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112 0.0112 0.0112 0.0112 0.0112 0.0112 0.0112019 0.0112019 0.0112019 0.0112019 0.0112018 0.0112018 0.0112017 0.0112016 0.0112015 0.0112015 0.0112014 0.0112013 0.0112012 0.0112011 0.011201 0.0112009 0.0112008 0.0112007 0.0112006 0.0112005 0.0112005 0.0112004 0.0112003 0.0112003 0.0112002 0.0112002 0.0112002 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112 0.0112 0.0112 0.0112 0.0112 0.0112 0.0112019 0.0112019 0.0112019 0.0112019 0.0112018 0.0112018 0.0112017 0.0112016 0.0112015 0.0112015 0.0112014 0.0112013 0.0112012 0.0112011 0.011201 0.0112009 0.0112008 0.0112007 0.0112006 0.0112005 0.0112005 0.0112004 0.0112003 0.0112003 0.0112002 0.0112002 0.0112002 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112 0.0112 0.0112 0.0112 0.0112 0.0112 0.0112019 0.0112019 0.0112019 0.0112019 0.0112018 0.0112018 0.0112017 0.0112016 0.0112015 0.0112015 0.0112014 0.0112013 0.0112012 0.0112011 0.011201 0.0112009 0.0112008 0.0112007 0.0112006 0.0112005 0.0112005 0.0112004 0.0112003 0.0112003 0.0112002 0.0112002 0.0112002 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112 0.0112 0.0112 0.0112 0.0112 0.0112 0.0112019 0.0112019 0.0112019 0.0112019 0.0112018 0.0112018 0.0112017 0.0112016 0.0112015 0.0112015 0.0112014 0.0112013 0.0112012 0.0112011 0.011201 0.0112009 0.0112008 0.0112007 0.0112006 0.0112005 0.0112005 0.0112004 0.0112003 0.0112003 0.0112002 0.0112002 0.0112002 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112 0.0112 0.0112 0.0112 0.0112 0.0112 0.0112019 0.0112019 0.0112019 0.0112019 0.0112018 0.0112018 0.0112017 0.0112016 0.0112015 0.0112015 0.0112014 0.0112013 0.0112012 0.0112011 0.011201 0.0112009 0.0112008 0.0112007 0.0112006 0.0112005 0.0112004 0.0112004 0.0112003 0.0112003 0.0112002 0.0112002 0.0112002 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112 0.0112 0.0112 0.0112 0.0112 0.0112 0.0112019 0.0112019 0.0112019 0.0112019 0.0112018 0.0112018 0.0112017 0.0112016 0.0112015 0.0112015 0.0112014 0.0112013 0.0112012 0.0112011 0.011201 0.0112009 0.0112008 0.0112007 0.0112006 0.0112005 0.0112005 0.0112004 0.0112003 0.0112003 0.0112002 0.0112002 0.0112002 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112001 0.0112 0.0112 0.0112 0.0112 0.0112 ) ; } bottom { type symmetryPlane; value uniform 0; } top { type symmetryPlane; value uniform 0; } obstacle { type calculated; value uniform 0; } defaultFaces { type empty; value nonuniform 0(); } } // ************************************************************************* //
[ "benroque94@gmail.com" ]
benroque94@gmail.com
d1644c9515785d8fa796e1d95797ee351a7d918e
e92a0968316e012ef84908aec1936f1e4aad69e2
/source/chapter4/example23.cpp
84b600f955b160a8158a03a30f93a47d481fa2fb
[]
no_license
motadou/cppmetaprogramming
1bd063f598dce521048e6b9f6626f953a1f9eaaa
3c8b8a304e6a4f43e5edfd17427fb689adf2621d
refs/heads/master
2020-06-26T23:49:14.031662
2019-07-31T08:07:41
2019-07-31T08:07:41
199,791,283
1
0
null
null
null
null
UTF-8
C++
false
false
1,297
cpp
/* Copyright David Abrahams 2003-2004 Copyright Aleksey Gurtovoy 2003-2004 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) This file was automatically extracted from the source of "C++ Template Metaprogramming", by David Abrahams and Aleksey Gurtovoy. It was built successfully with GCC 3.4.2 on Windows using the following command: g++ -I..\..\boost_1_32_0 -c -o%TEMP%\metaprogram-chapter4-example23.o example23.cpp */ #include <boost/mpl/if.hpp> #include <boost/mpl/apply.hpp> #include <boost/mpl/next.hpp> #include <boost/mpl/int.hpp> #include <boost/mpl/equal_to.hpp> #include <boost/mpl/modulus.hpp> #include <boost/mpl/placeholders.hpp> #include <boost/mpl/assert.hpp> #include <boost/static_assert.hpp> namespace mpl = boost::mpl; using namespace mpl::placeholders; #include<boost/mpl/lambda.hpp> template< typename N, typename Predicate > struct next_if : mpl::if_< typename mpl::apply<Predicate,N>::type , typename mpl::next<N>::type , N > {}; typedef next_if< mpl::int_<3> , mpl::equal_to< mpl::modulus<_1,mpl::int_<2> > , mpl::int_<0> > >::type x;
[ "motadou@126.com" ]
motadou@126.com
ed8f56939d062134f28370b7c3d70590bfd83ce0
35f375f8fa95fff9dd0dff0b850283491564a941
/vectorLooping.cpp
ca601e32df81e4be7c83dc1ec25d449e8dd9d0e7
[]
no_license
ssredhead/a-bit-of-cpp
235ab33bf948c469ca93f3cb520b6268196f6741
ce398e72b8c912fe44585f8f14092254edc9742c
refs/heads/main
2023-08-22T15:57:26.720770
2021-09-22T03:33:54
2021-09-22T03:33:54
397,769,804
0
0
null
null
null
null
UTF-8
C++
false
false
445
cpp
#include <iostream> #include <vector> int main() { std::vector<double> delivery_order; delivery_order.push_back(8.99); delivery_order.push_back(3.75); delivery_order.push_back(0.99); delivery_order.push_back(5.99); // Calculate the total using a for loop: double total = 0.0; for (int i = 0; i < delivery_order.size(); i++) { total += delivery_order[i]; } std::cout << total; }
[ "soommers.sophia@gmail.com" ]
soommers.sophia@gmail.com
603d5bd4ecb19f3ad63b4c50ce70971148a119d3
0a688a8b2c973962f45b07d3f3b50acab40c4e8f
/HackerRank/Data Structures/Linked List/Reverse a doubly linked list.cpp
75b354509835143983a3f342f614a510ea977313
[]
no_license
Rajanpandey/Coding-Practice
2184c1b0ff8b10847abfe2f36091a7239aca2671
75d81fdf581fe870dac45c59ba3d20a406e2f4b8
refs/heads/master
2021-11-28T08:07:12.859609
2021-11-24T15:45:01
2021-11-24T15:45:01
191,540,122
3
1
null
null
null
null
UTF-8
C++
false
false
348
cpp
DoublyLinkedListNode* reverse(DoublyLinkedListNode* head) { DoublyLinkedListNode* temp = head; DoublyLinkedListNode* newHead = head; while(temp) { DoublyLinkedListNode* prev = temp->prev; temp->prev = temp->next; temp->next = prev; newHead = temp; temp = temp->prev; } return newHead; }
[ "rajanpandey2508@gmail.com" ]
rajanpandey2508@gmail.com
3556d215843320320506fa9986cd71d9e59f82ed
287087eddeb170d915408a1ee301a7684575c3f0
/compiler/models/exceptions_test.cpp
290a4c9a070223eb5268a941af77241620173e22
[]
no_license
dgp1130/sanity-lang
82b07120005edf5470c996afe84c3c1523ec8d0c
e068a927f3320157972304b151a71ab3f6d21201
refs/heads/master
2021-06-12T15:23:40.283772
2019-01-18T05:34:25
2019-01-18T05:34:25
128,713,509
3
1
null
null
null
null
UTF-8
C++
false
false
1,565
cpp
#include <gtest/gtest.h> #include "exceptions.h" typedef Exceptions::FileNotFoundException FileNotFoundException; typedef Exceptions::IllegalStateException IllegalStateException; typedef Exceptions::ParseException ParseException; typedef Exceptions::RedeclaredException RedeclaredException; typedef Exceptions::SyntaxException SyntaxException; typedef Exceptions::TypeException TypeException; typedef Exceptions::UndeclaredException UndeclaredException; TEST(Exceptions, FileNotFoundExceptionExists) { FileNotFoundException ex("file.txt"); SUCCEED(); // If this compiles and executes, then we're good. } TEST(Exceptions, IllegalStateExceptionExists) { IllegalStateException("Bad state"); SUCCEED(); // If this compiles and executes, then we're good. } TEST(Exceptions, ParseExceptionExists) { ParseException("Parsing error"); SUCCEED(); // If this compiles and executes, then we're good. } TEST(Exceptions, RedeclaredExceptionExists) { RedeclaredException("Symbol redeclared"); SUCCEED(); // If this compiles and executes, then we're good. } TEST(Exceptions, SyntaxExceptionExists) { SyntaxException("Syntax error", 1 /* line */, 2 /* startCol */, 3 /* endCol */); SUCCEED(); // If this compiles and executes, then we're good. } TEST(Exceptions, TypeException) { TypeException("Type error"); SUCCEED(); // If this compiles and executes, then we're good. } TEST(Exceptions, UndeclaredException) { UndeclaredException("Undeclared symbol"); SUCCEED(); // If this compiles and executes, then we're good. }
[ "dgp1130422@gmail.com" ]
dgp1130422@gmail.com
13c0123dc08c5c27d660f94ee664b6a978b1fbce
a943ecc0f1ea5367a315a9b7760f12b67c4fb21b
/rollerOpt_COBYLA_NEW/runLogs/Optimization29/2500/O2
9126d67512b672909f1da3b8fdf2015d025b7245
[]
no_license
Owbr3335/3M_Roller
d86e59fc8a8e174c793bffb63abdf118e57ad153
5136a1b84a674199acab2d11b111b61bef83e3bf
refs/heads/master
2020-04-24T06:09:31.546146
2019-04-26T21:43:50
2019-04-26T21:43:50
171,755,246
0
0
null
null
null
null
UTF-8
C++
false
false
86,137
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: dev \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "2500"; object O2; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 0 0 0 0 0 0]; internalField nonuniform List<scalar> 9836 ( 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.233008 0.233009 0.233007 0.233008 0.233005 0.233009 0.233006 0.233009 0.233008 0.233009 0.23301 0.233009 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233007 0.233006 0.233003 0.232996 0.232999 0.232984 0.232998 0.232978 0.233001 0.232982 0.233006 0.232994 0.233004 0.233009 0.233003 0.233003 0.23301 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233004 0.233003 0.232988 0.232978 0.23296 0.232925 0.232937 0.232864 0.232936 0.232836 0.232956 0.232861 0.232985 0.232921 0.232976 0.233004 0.232971 0.232972 0.23301 0.233006 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233003 0.233003 0.23297 0.232963 0.232885 0.232842 0.232761 0.232636 0.232661 0.232425 0.232656 0.232317 0.232752 0.232394 0.232882 0.232623 0.232849 0.232979 0.232834 0.232844 0.233008 0.23299 0.23301 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233004 0.233007 0.232962 0.232964 0.232808 0.232779 0.232505 0.23238 0.232148 0.23186 0.231888 0.231419 0.231843 0.231206 0.232074 0.23131 0.232496 0.231757 0.232407 0.232878 0.23238 0.23243 0.233 0.232925 0.23301 0.233006 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233 0.232968 0.232971 0.232771 0.232774 0.232284 0.232207 0.231592 0.231364 0.230952 0.230523 0.230545 0.229914 0.230477 0.229654 0.2308 0.229798 0.2315 0.230381 0.231356 0.232555 0.231352 0.231511 0.232966 0.232715 0.233009 0.232994 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233005 0.232854 0.23289 0.232788 0.232817 0.232181 0.232187 0.231198 0.231076 0.230155 0.229868 0.22933 0.228826 0.228851 0.22814 0.228802 0.227873 0.229226 0.228078 0.230092 0.228797 0.229956 0.231833 0.229981 0.230193 0.23286 0.232216 0.233007 0.232955 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233008 0.232925 0.232952 0.232387 0.232498 0.232219 0.232288 0.231045 0.23106 0.229665 0.229535 0.22842 0.228113 0.227485 0.226992 0.226993 0.226338 0.226966 0.226071 0.227508 0.226262 0.228532 0.227113 0.22844 0.230634 0.228526 0.228822 0.232587 0.231296 0.233001 0.23286 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.232971 0.232992 0.232614 0.232719 0.231407 0.231607 0.231117 0.231238 0.229527 0.229559 0.227905 0.227817 0.226664 0.226499 0.22602 0.225889 0.225669 0.225555 0.22551 0.225274 0.225758 0.225126 0.226897 0.225438 0.226871 0.229331 0.227031 0.227385 0.232062 0.230091 0.232988 0.232643 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.232972 0.232811 0.232871 0.23183 0.232061 0.230063 0.230337 0.229653 0.229831 0.227833 0.227896 0.226437 0.226451 0.225894 0.225928 0.225596 0.225696 0.225325 0.225489 0.225049 0.225182 0.224836 0.224845 0.225281 0.2246 0.225307 0.227966 0.22553 0.225936 0.231148 0.228802 0.232961 0.232255 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.232996 0.23263 0.23274 0.232284 0.23247 0.230642 0.230961 0.22856 0.228889 0.228045 0.228276 0.226489 0.226567 0.225988 0.226054 0.225863 0.226054 0.225819 0.226269 0.225583 0.226276 0.225117 0.225832 0.224643 0.225071 0.224398 0.224424 0.224256 0.226551 0.224273 0.224616 0.229985 0.227431 0.232899 0.231589 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.232999 0.232818 0.232913 0.231914 0.23219 0.231286 0.2316 0.229259 0.229654 0.227165 0.227484 0.226698 0.226903 0.226116 0.226171 0.22623 0.226364 0.226707 0.22704 0.227003 0.227557 0.226805 0.227655 0.226063 0.227205 0.224962 0.226147 0.22417 0.224747 0.223909 0.225149 0.223714 0.223653 0.22424 0.228631 0.225951 0.232757 0.230421 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.233008 0.232999 0.232837 0.232411 0.232554 0.230857 0.231214 0.230061 0.230464 0.227859 0.228277 0.226383 0.226549 0.226223 0.22628 0.226437 0.226453 0.227233 0.227324 0.227831 0.227907 0.228113 0.228228 0.228066 0.228421 0.227394 0.228292 0.226034 0.227397 0.224413 0.225853 0.225127 0.223821 0.224159 0.223779 0.224732 0.223855 0.223543 0.22375 0.223972 0.223459 0.2269 0.22411 0.224283 0.225369 0.231982 0.227176 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.233008 0.233007 0.233006 0.232997 0.232868 0.232088 0.232348 0.231557 0.231817 0.229651 0.230084 0.228728 0.22919 0.22679 0.227106 0.226353 0.22635 0.226437 0.226397 0.227308 0.227251 0.227885 0.227832 0.22819 0.228116 0.228436 0.22832 0.22861 0.228557 0.227914 0.228367 0.228606 0.228718 0.226504 0.227265 0.228398 0.22841 0.227853 0.225641 0.224659 0.22541 0.226369 0.224453 0.223429 0.223473 0.223548 0.223935 0.224197 0.223398 0.224559 0.225646 0.22457 0.223554 0.223673 0.228884 0.224407 0.224131 0.225235 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233008 0.233005 0.233 0.232996 0.232995 0.232984 0.232862 0.232038 0.231183 0.231319 0.230497 0.230831 0.228403 0.228871 0.227494 0.227933 0.226378 0.226467 0.22681 0.22663 0.227139 0.226989 0.227739 0.227627 0.22801 0.227904 0.22814 0.227946 0.228285 0.227911 0.228689 0.228564 0.228362 0.228094 0.228679 0.228763 0.228729 0.227094 0.227786 0.228714 0.228716 0.228341 0.226143 0.225106 0.225868 0.226906 0.224823 0.223287 0.22322 0.223688 0.224526 0.224227 0.223462 0.223744 0.223668 0.223194 0.223179 0.224929 0.23299 0.230398 0.223419 0.223486 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.233008 0.233003 0.232982 0.232953 0.232944 0.232949 0.232942 0.232819 0.232067 0.230555 0.230937 0.230084 0.230366 0.229322 0.229719 0.227341 0.227752 0.226675 0.226971 0.226494 0.226431 0.22717 0.226971 0.227495 0.227343 0.227799 0.227684 0.22779 0.227696 0.227577 0.227355 0.227838 0.227552 0.22732 0.227079 0.22856 0.228297 0.227984 0.22765 0.2288 0.228752 0.228544 0.22764 0.228261 0.22882 0.228823 0.228688 0.226663 0.225564 0.226375 0.227447 0.225248 0.22327 0.223116 0.223928 0.224919 0.224582 0.22364 0.223129 0.223013 0.22299 0.222882 0.226447 0.232863 0.231102 0.222936 0.223718 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.233009 0.233008 0.233008 0.233008 0.233008 0.233008 0.233005 0.23298 0.232885 0.232761 0.232728 0.232782 0.232814 0.232694 0.231987 0.23023 0.229521 0.229501 0.228945 0.229239 0.228175 0.228575 0.226661 0.226929 0.226436 0.226498 0.226752 0.226568 0.227248 0.227064 0.227556 0.227411 0.227639 0.227566 0.227269 0.227316 0.226917 0.226773 0.226713 0.226672 0.227321 0.227006 0.226724 0.226482 0.228228 0.227856 0.22746 0.227064 0.228769 0.228525 0.228156 0.228131 0.228625 0.228776 0.228774 0.228806 0.227199 0.226055 0.226899 0.227948 0.225712 0.223371 0.223126 0.224239 0.225352 0.224979 0.223897 0.222757 0.222657 0.222908 0.222718 0.227098 0.232711 0.230497 0.222811 0.224058 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.233007 0.233005 0.233004 0.233003 0.233004 0.233005 0.233005 0.232996 0.232912 0.232613 0.232257 0.232146 0.232303 0.232489 0.232395 0.231732 0.230102 0.228579 0.22874 0.228411 0.228531 0.227904 0.228173 0.227247 0.22758 0.226407 0.226477 0.226445 0.226391 0.226861 0.226661 0.227184 0.226998 0.22748 0.227351 0.227427 0.227502 0.226575 0.2269 0.226298 0.226183 0.226153 0.22619 0.226683 0.226332 0.226025 0.225773 0.227723 0.227263 0.226796 0.226345 0.228505 0.22809 0.227593 0.228518 0.228764 0.228494 0.228489 0.228756 0.227703 0.226563 0.227403 0.228357 0.226196 0.223559 0.223234 0.224595 0.225806 0.225395 0.224202 0.222561 0.222501 0.222932 0.222655 0.22707 0.23257 0.230193 0.22281 0.224185 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.233008 0.233005 0.232999 0.232991 0.232985 0.232984 0.232988 0.232992 0.232995 0.232977 0.232795 0.232279 0.231658 0.231403 0.231529 0.231792 0.231813 0.231197 0.229716 0.227949 0.227621 0.227545 0.227461 0.227586 0.227084 0.22729 0.22664 0.226855 0.226287 0.226284 0.226481 0.226356 0.226805 0.226614 0.227166 0.226953 0.227468 0.22735 0.227309 0.227571 0.225747 0.226025 0.22674 0.226342 0.225592 0.225501 0.22549 0.225568 0.225925 0.225552 0.22524 0.224995 0.227063 0.226523 0.225999 0.225511 0.228035 0.227477 0.22687 0.228687 0.228718 0.228004 0.227998 0.228499 0.228131 0.227056 0.227837 0.228577 0.226672 0.223797 0.223396 0.224968 0.226253 0.225803 0.224519 0.222458 0.222427 0.223005 0.222652 0.227035 0.232583 0.230159 0.222795 0.224204 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233008 0.233004 0.232993 0.23297 0.232937 0.232915 0.232913 0.232929 0.23295 0.232966 0.23294 0.23268 0.231944 0.231111 0.230635 0.230619 0.230817 0.230816 0.230218 0.229009 0.227866 0.227053 0.22722 0.226944 0.226983 0.226776 0.226873 0.226531 0.22666 0.226316 0.226404 0.22619 0.226136 0.22644 0.226293 0.226737 0.226538 0.227352 0.227089 0.227648 0.227563 0.227076 0.22744 0.227835 0.225241 0.225612 0.226544 0.226061 0.224836 0.224788 0.224815 0.224967 0.225074 0.224701 0.22441 0.224194 0.226253 0.225652 0.225094 0.224596 0.227382 0.226699 0.225996 0.228668 0.228506 0.227326 0.227321 0.228033 0.228417 0.227498 0.228173 0.228583 0.227102 0.224048 0.223566 0.225327 0.226656 0.226167 0.224817 0.222402 0.22237 0.223091 0.222661 0.22694 0.232708 0.230372 0.222735 0.224094 0.233008 0.23301 0.23301 0.23301 0.23301 0.233009 0.233005 0.232991 0.232955 0.232878 0.232776 0.232709 0.232707 0.232756 0.232828 0.232889 0.232869 0.232541 0.231684 0.230596 0.229954 0.229783 0.2298 0.229695 0.229228 0.228507 0.2279 0.22751 0.227009 0.227322 0.226661 0.226822 0.226403 0.226524 0.226208 0.226297 0.226132 0.226151 0.226125 0.226068 0.226366 0.226226 0.226831 0.226605 0.227844 0.227532 0.228071 0.228066 0.227025 0.227466 0.227931 0.228293 0.224759 0.225238 0.226409 0.225804 0.224082 0.224074 0.224151 0.224392 0.224172 0.22382 0.223544 0.223363 0.225316 0.224684 0.224125 0.223647 0.226564 0.225775 0.225006 0.228519 0.228099 0.226484 0.226478 0.227375 0.228476 0.227849 0.228315 0.228485 0.227442 0.224273 0.223709 0.22564 0.226976 0.226453 0.225062 0.22236 0.222306 0.223157 0.222664 0.22679 0.232897 0.230994 0.222629 0.223872 0.233008 0.23301 0.23301 0.23301 0.233008 0.233 0.232969 0.232879 0.232713 0.232528 0.232424 0.232424 0.232504 0.232622 0.23273 0.232738 0.232401 0.231471 0.230267 0.229583 0.229336 0.229231 0.229073 0.228792 0.228442 0.228031 0.228053 0.228262 0.228643 0.227446 0.227834 0.226831 0.227115 0.226408 0.226597 0.226138 0.226254 0.22606 0.226078 0.226195 0.226158 0.226421 0.226284 0.227221 0.226956 0.228592 0.228276 0.228462 0.228582 0.22876 0.226998 0.227515 0.228162 0.22854 0.224312 0.224899 0.226308 0.22558 0.223306 0.223337 0.223518 0.22384 0.223241 0.222912 0.222678 0.222566 0.224298 0.223671 0.223143 0.222696 0.225603 0.224744 0.223951 0.228179 0.227502 0.225505 0.225507 0.226562 0.22841 0.228054 0.228288 0.228248 0.227665 0.22444 0.223801 0.225871 0.227181 0.226627 0.225221 0.222314 0.222233 0.223187 0.222647 0.226553 0.23288 0.230903 0.222491 0.223525 0.233008 0.23301 0.23301 0.233008 0.232995 0.23294 0.232791 0.232529 0.232278 0.232142 0.232139 0.232238 0.232391 0.232535 0.23256 0.23224 0.23129 0.230069 0.229455 0.22924 0.229131 0.229009 0.228803 0.228542 0.228365 0.228793 0.22988 0.22923 0.229835 0.228283 0.228745 0.227445 0.227849 0.226771 0.227082 0.22634 0.226523 0.226169 0.226222 0.226547 0.226555 0.226753 0.226615 0.227936 0.227641 0.229266 0.229211 0.229213 0.228765 0.228842 0.229318 0.229316 0.227019 0.227651 0.228366 0.228806 0.223921 0.224612 0.226219 0.225393 0.222564 0.222653 0.22294 0.223355 0.222324 0.222047 0.221879 0.221843 0.223257 0.222671 0.2222 0.221795 0.224544 0.223665 0.222898 0.227677 0.226775 0.224438 0.224472 0.225655 0.228275 0.228087 0.228188 0.227879 0.227738 0.224527 0.223828 0.225984 0.227253 0.226659 0.22527 0.22226 0.222153 0.223174 0.222605 0.226031 0.231299 0.228951 0.222326 0.223105 0.233008 0.23301 0.233007 0.23299 0.232916 0.232697 0.232354 0.232038 0.231873 0.231859 0.231965 0.232139 0.232305 0.23235 0.232037 0.231132 0.229996 0.22947 0.229271 0.229198 0.22914 0.229032 0.228937 0.22909 0.22984 0.230976 0.231521 0.231866 0.230431 0.231 0.229409 0.229912 0.228467 0.228925 0.22765 0.228042 0.227001 0.227298 0.226625 0.226774 0.227329 0.227418 0.227441 0.227344 0.228902 0.228587 0.229663 0.229566 0.229983 0.229872 0.229098 0.229259 0.229702 0.229687 0.227027 0.227762 0.228514 0.229032 0.223593 0.224372 0.226148 0.22524 0.221888 0.222084 0.222442 0.222945 0.221487 0.221278 0.221199 0.221207 0.222263 0.221754 0.221339 0.221008 0.22345 0.222605 0.221911 0.227108 0.226024 0.223354 0.223482 0.224754 0.22802 0.227989 0.227986 0.227456 0.227673 0.224522 0.223789 0.225972 0.227199 0.226571 0.225214 0.222195 0.222059 0.223116 0.222535 0.224533 0.230478 0.225908 0.222162 0.222641 0.233008 0.233007 0.232989 0.232893 0.232624 0.232193 0.231823 0.231623 0.231592 0.23169 0.231865 0.232037 0.232081 0.23181 0.230971 0.230015 0.229552 0.229396 0.229469 0.229636 0.229762 0.229946 0.230383 0.231068 0.231922 0.232634 0.232412 0.232659 0.231638 0.232076 0.230659 0.231159 0.229689 0.230162 0.228848 0.22925 0.228134 0.228476 0.22759 0.227834 0.228336 0.228488 0.22839 0.228314 0.22975 0.22967 0.229663 0.230095 0.230058 0.230426 0.230341 0.22939 0.229601 0.230094 0.230033 0.227034 0.227838 0.228573 0.229143 0.223306 0.224151 0.226062 0.225088 0.221338 0.221606 0.222023 0.222595 0.220774 0.220653 0.220635 0.220683 0.22137 0.220956 0.220617 0.220372 0.222394 0.221635 0.221053 0.226513 0.225279 0.222361 0.22263 0.223916 0.227638 0.22779 0.227648 0.226896 0.227453 0.224424 0.223665 0.225817 0.226935 0.226187 0.224977 0.222116 0.221965 0.222987 0.222414 0.223235 0.226562 0.223335 0.222016 0.222229 0.233007 0.232988 0.232885 0.232564 0.232072 0.231633 0.231397 0.231348 0.231426 0.231578 0.231728 0.231762 0.231497 0.230795 0.230069 0.22971 0.229659 0.230023 0.230534 0.23096 0.231296 0.23165 0.232072 0.232552 0.232871 0.232906 0.232621 0.232773 0.232143 0.232414 0.231476 0.231828 0.230729 0.231102 0.230012 0.230364 0.229339 0.229671 0.228725 0.229018 0.229254 0.229365 0.2294 0.22928 0.230225 0.230076 0.230471 0.230536 0.230461 0.230473 0.230829 0.230797 0.229568 0.229864 0.230381 0.230208 0.22701 0.227862 0.228563 0.229157 0.223016 0.223899 0.225909 0.224883 0.220886 0.221206 0.221662 0.222266 0.220214 0.220168 0.220178 0.220286 0.220634 0.220315 0.220074 0.21993 0.221474 0.220832 0.220378 0.225799 0.224468 0.221569 0.221866 0.223091 0.227156 0.227462 0.227212 0.226301 0.227041 0.224118 0.223385 0.225262 0.226295 0.225334 0.224337 0.222002 0.221865 0.222738 0.222231 0.22235 0.228871 0.222875 0.221862 0.221916 0.23299 0.232884 0.232542 0.231982 0.231487 0.231218 0.231155 0.2312 0.231305 0.231407 0.231408 0.231166 0.230625 0.230158 0.229891 0.229943 0.230511 0.231274 0.231885 0.232206 0.232439 0.232659 0.232859 0.232965 0.232977 0.232914 0.232775 0.232966 0.2326 0.232019 0.23235 0.231296 0.231643 0.230826 0.231027 0.230464 0.230648 0.230045 0.230265 0.229563 0.229805 0.230052 0.230004 0.230483 0.230196 0.230731 0.230639 0.230863 0.231005 0.230664 0.23079 0.231093 0.231164 0.229611 0.22995 0.230469 0.230231 0.226911 0.227813 0.228404 0.229044 0.222667 0.223557 0.225619 0.22456 0.220508 0.220851 0.22131 0.221914 0.219873 0.219863 0.219885 0.219996 0.220083 0.219875 0.219749 0.219694 0.220788 0.220261 0.219921 0.225122 0.223733 0.220909 0.221044 0.222307 0.226609 0.226945 0.226504 0.225584 0.226211 0.223609 0.22293 0.22439 0.22529 0.22433 0.223673 0.221886 0.221753 0.222442 0.222037 0.221976 0.229997 0.223004 0.221735 0.221729 0.232894 0.232538 0.231943 0.231384 0.231106 0.231026 0.231039 0.231094 0.231136 0.23109 0.230873 0.230564 0.230272 0.230082 0.230235 0.230888 0.231735 0.232354 0.232652 0.232806 0.232903 0.232968 0.232997 0.233 0.233001 0.232829 0.232977 0.232996 0.232667 0.232039 0.232407 0.231165 0.231601 0.230556 0.230806 0.230312 0.230403 0.23017 0.230243 0.230013 0.230088 0.231073 0.230875 0.231391 0.231351 0.231397 0.231163 0.231097 0.231459 0.231503 0.230693 0.230914 0.231174 0.231379 0.229538 0.229928 0.23042 0.230085 0.226662 0.227609 0.228008 0.22869 0.22221 0.223072 0.225121 0.224056 0.220191 0.2205 0.22093 0.221494 0.219678 0.219682 0.219716 0.219789 0.219732 0.219624 0.219571 0.219553 0.22024 0.219802 0.219577 0.22417 0.222468 0.220155 0.220077 0.220991 0.225569 0.225812 0.224959 0.224069 0.224968 0.222976 0.22254 0.223634 0.224174 0.223462 0.222925 0.22175 0.221662 0.22217 0.22188 0.221878 0.226738 0.222345 0.221628 0.221623 0.232566 0.231936 0.231339 0.231049 0.230965 0.230965 0.230986 0.230977 0.23091 0.230774 0.230585 0.230391 0.230288 0.230524 0.231192 0.232002 0.232572 0.232831 0.232939 0.232981 0.233 0.233006 0.233007 0.233007 0.233009 0.232939 0.233001 0.233006 0.232856 0.232436 0.232699 0.231651 0.232069 0.230974 0.231269 0.230685 0.230781 0.230661 0.230658 0.230748 0.230686 0.232318 0.232131 0.231796 0.231689 0.232231 0.23222 0.231491 0.23152 0.231846 0.231842 0.230544 0.230904 0.231123 0.231438 0.229231 0.229691 0.230117 0.229645 0.226185 0.227169 0.227298 0.22803 0.221605 0.222401 0.224355 0.223322 0.219912 0.220129 0.220481 0.220971 0.21955 0.219562 0.219596 0.219656 0.219461 0.219398 0.21936 0.219342 0.219692 0.219451 0.219328 0.222268 0.220893 0.2197 0.219887 0.220301 0.223657 0.224313 0.223295 0.222215 0.223713 0.222577 0.222254 0.22294 0.223165 0.222798 0.222584 0.221667 0.221582 0.221974 0.221723 0.221717 0.230923 0.222676 0.22152 0.221525 0.231968 0.23133 0.231038 0.230953 0.230941 0.230963 0.230963 0.230912 0.230801 0.230657 0.230535 0.230542 0.230845 0.231465 0.232191 0.232688 0.232907 0.23298 0.233002 0.233007 0.233008 0.233008 0.233009 0.23301 0.23301 0.233009 0.232991 0.233008 0.23297 0.232845 0.232926 0.232522 0.232711 0.232068 0.232292 0.231783 0.231891 0.231787 0.23176 0.231994 0.231858 0.232429 0.232704 0.232735 0.232781 0.232203 0.232216 0.232446 0.231656 0.23179 0.232162 0.232065 0.230125 0.230677 0.230879 0.231374 0.228621 0.229149 0.229509 0.228872 0.22541 0.226418 0.226222 0.227014 0.220829 0.221523 0.223296 0.22234 0.219742 0.219834 0.220023 0.220332 0.21934 0.219355 0.219388 0.219447 0.219244 0.219183 0.219129 0.219129 0.219474 0.219284 0.219033 0.221138 0.220786 0.219698 0.220029 0.220354 0.222273 0.222945 0.222374 0.221627 0.222857 0.222267 0.222022 0.222563 0.2227 0.222494 0.222397 0.221596 0.221429 0.221791 0.221635 0.2217 0.232555 0.223857 0.22144 0.221481 0.231362 0.231048 0.230962 0.230955 0.230991 0.231007 0.230972 0.230899 0.230814 0.23078 0.230883 0.231213 0.23176 0.232386 0.23277 0.232944 0.232997 0.233006 0.233009 0.233009 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233006 0.23301 0.233002 0.232976 0.232993 0.232902 0.232947 0.23278 0.232843 0.232687 0.232724 0.232697 0.232682 0.232769 0.232729 0.232686 0.232798 0.232802 0.232932 0.232398 0.232436 0.23265 0.231703 0.231916 0.232301 0.232151 0.229451 0.230226 0.230467 0.231156 0.227667 0.228268 0.228625 0.227817 0.224309 0.225311 0.22479 0.225657 0.220119 0.220519 0.221955 0.221138 0.21956 0.219677 0.219764 0.219904 0.219134 0.219168 0.219214 0.219281 0.218999 0.218977 0.218957 0.218964 0.219492 0.219364 0.218795 0.221314 0.219564 0.219067 0.219227 0.219416 0.222106 0.222582 0.222344 0.221698 0.222621 0.222142 0.221881 0.222359 0.222463 0.222456 0.222128 0.22142 0.221362 0.221645 0.221437 0.221836 0.232586 0.224087 0.221389 0.221462 0.231109 0.230991 0.231024 0.2311 0.231162 0.231172 0.231152 0.231148 0.231188 0.231322 0.231622 0.232096 0.232567 0.232847 0.232968 0.233002 0.233008 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.233009 0.233005 0.233007 0.232993 0.233 0.232975 0.232985 0.23296 0.232966 0.232961 0.232959 0.232952 0.23296 0.232777 0.232864 0.232894 0.232913 0.232949 0.232967 0.232495 0.232588 0.232726 0.231644 0.231956 0.232357 0.232178 0.228614 0.22961 0.229969 0.230824 0.226397 0.227096 0.227586 0.226602 0.222911 0.22386 0.223066 0.224023 0.2198 0.219992 0.220702 0.220261 0.219364 0.219439 0.219547 0.219723 0.218997 0.219039 0.219088 0.219148 0.21878 0.218785 0.218792 0.218831 0.21894 0.218878 0.218688 0.2199 0.219073 0.218796 0.218869 0.21896 0.220517 0.222445 0.220711 0.220215 0.222464 0.221884 0.221603 0.222179 0.22102 0.221974 0.221019 0.221894 0.221328 0.221267 0.221482 0.221295 0.221803 0.208766 0.223264 0.221332 0.221436 0.231092 0.231127 0.231357 0.231522 0.231609 0.231649 0.231668 0.231708 0.231822 0.232078 0.232432 0.232731 0.232914 0.232985 0.233005 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.23301 0.233008 0.233009 0.233006 0.233007 0.233003 0.233005 0.232999 0.233001 0.232978 0.232993 0.232819 0.232879 0.23292 0.232951 0.232968 0.23253 0.232647 0.232757 0.231469 0.23191 0.232372 0.232137 0.227771 0.228952 0.229492 0.230445 0.224885 0.225736 0.22656 0.225376 0.221339 0.222165 0.221564 0.222344 0.21956 0.219766 0.220155 0.219906 0.219213 0.219277 0.219378 0.219501 0.218867 0.218925 0.218974 0.219043 0.218684 0.218701 0.218713 0.218764 0.218739 0.218713 0.218622 0.21925 0.218807 0.218665 0.218701 0.218746 0.219607 0.220873 0.219777 0.219432 0.221047 0.221618 0.221467 0.221819 0.220134 0.221036 0.220201 0.22167 0.221182 0.221161 0.221246 0.22115 0.221667 0.120855 0.218196 0.221273 0.221404 0.231366 0.23161 0.23192 0.232101 0.232172 0.2322 0.232236 0.232323 0.232491 0.232691 0.232861 0.232958 0.232999 0.233007 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.23301 0.233007 0.233009 0.233002 0.233005 0.232985 0.232996 0.232834 0.232883 0.232924 0.232951 0.232969 0.232539 0.232667 0.232767 0.231216 0.231774 0.232337 0.232028 0.22708 0.228398 0.229221 0.230123 0.223264 0.224316 0.225688 0.224357 0.220501 0.220975 0.220919 0.221562 0.219521 0.219586 0.219923 0.219696 0.219106 0.219222 0.219344 0.219375 0.218782 0.218861 0.218879 0.218972 0.218625 0.218649 0.218661 0.218715 0.21864 0.21863 0.218596 0.218907 0.218702 0.218618 0.218645 0.218666 0.219117 0.219924 0.21925 0.219019 0.220064 0.22155 0.22128 0.221014 0.219593 0.220268 0.219685 0.221027 0.221055 0.221041 0.221144 0.221008 0.221411 0.0855872 0.203655 0.221198 0.221337 0.231978 0.232297 0.232478 0.232564 0.232604 0.232635 0.232685 0.232766 0.232861 0.23294 0.232986 0.233003 0.233008 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233008 0.233009 0.233003 0.233005 0.23297 0.232981 0.23299 0.232996 0.23284 0.232888 0.232922 0.232948 0.232512 0.232673 0.232769 0.230934 0.231578 0.232244 0.23187 0.226751 0.228139 0.229143 0.229962 0.222262 0.223253 0.225277 0.223936 0.220164 0.220516 0.220642 0.221264 0.219523 0.219569 0.219807 0.219694 0.219017 0.219213 0.219249 0.219335 0.218747 0.218804 0.218822 0.218902 0.218603 0.218628 0.218641 0.218698 0.218604 0.218598 0.218768 0.218949 0.219378 0.219046 0.218849 0.219493 0.221272 0.220875 0.221221 0.220321 0.219409 0.219774 0.219505 0.22037 0.220933 0.220956 0.220997 0.220901 0.220246 0.0514531 0.146202 0.221132 0.221255 0.232522 0.232683 0.232767 0.232815 0.232846 0.232875 0.23291 0.232948 0.232981 0.233 0.233006 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233008 0.233009 0.233003 0.233006 0.232961 0.232971 0.232987 0.232993 0.23284 0.232884 0.232909 0.232926 0.232431 0.232648 0.232741 0.230712 0.231363 0.232102 0.231693 0.226659 0.228087 0.229159 0.229906 0.221885 0.22283 0.225132 0.2238 0.219959 0.220313 0.220447 0.220998 0.219632 0.219373 0.219795 0.219752 0.218934 0.219124 0.219146 0.219221 0.218728 0.218777 0.218815 0.218869 0.219166 0.219295 0.220882 0.220364 0.220996 0.220738 0.219855 0.219585 0.219925 0.220843 0.220871 0.220959 0.220812 0.2147 0.0436416 0.103135 0.22107 0.220819 0.232746 0.232841 0.232896 0.23293 0.232954 0.232972 0.232988 0.232999 0.233004 0.233008 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.233009 0.233 0.233006 0.232938 0.23295 0.232977 0.232964 0.232973 0.232993 0.232804 0.232844 0.232857 0.232875 0.232299 0.232573 0.232662 0.230603 0.231213 0.231944 0.231583 0.226668 0.228151 0.229307 0.229914 0.221709 0.222647 0.225092 0.223733 0.22001 0.220197 0.220442 0.220911 0.219411 0.219183 0.22006 0.219505 0.218906 0.219017 0.219031 0.219085 0.220403 0.219964 0.220729 0.220337 0.219681 0.219752 0.22076 0.220824 0.220777 0.220589 0.220712 0.203572 0.0391443 0.075253 0.221048 0.219642 0.232816 0.232898 0.232944 0.232973 0.23299 0.232998 0.233003 0.233007 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.233009 0.232995 0.232984 0.233006 0.232891 0.232911 0.232927 0.232948 0.232716 0.232752 0.232763 0.232782 0.232165 0.232449 0.232547 0.230566 0.231137 0.231853 0.231533 0.226831 0.228409 0.229588 0.230041 0.221561 0.222438 0.225133 0.223702 0.220183 0.22026 0.220636 0.22088 0.219198 0.219091 0.219715 0.21927 0.218964 0.218977 0.219059 0.220011 0.21982 0.220359 0.220027 0.220718 0.220777 0.220582 0.220275 0.220681 0.220446 0.181209 0.0365713 0.0606944 0.220968 0.216689 0.232826 0.232921 0.232965 0.23299 0.233002 0.233006 0.233008 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.233009 0.232964 0.232972 0.232931 0.233005 0.232801 0.232826 0.23286 0.232894 0.232599 0.232623 0.232608 0.232617 0.232084 0.232334 0.232442 0.230577 0.231109 0.231799 0.231511 0.22692 0.228807 0.22996 0.230325 0.221553 0.222394 0.225136 0.223637 0.219727 0.220446 0.220892 0.219966 0.219118 0.219353 0.219176 0.219867 0.220056 0.2199 0.220622 0.220761 0.220294 0.220026 0.220558 0.220419 0.220197 0.157844 0.0350074 0.0515459 0.220726 0.210967 0.232783 0.232924 0.232976 0.232999 0.233006 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233008 0.233009 0.232874 0.232773 0.232974 0.232866 0.232799 0.233002 0.232633 0.232674 0.232729 0.232459 0.232412 0.232317 0.232301 0.232009 0.232235 0.232291 0.230685 0.231111 0.23175 0.231505 0.226856 0.228935 0.230154 0.230631 0.221514 0.222385 0.22493 0.223485 0.219343 0.219967 0.221185 0.220255 0.2194 0.219209 0.219924 0.220594 0.220729 0.22005 0.219922 0.220544 0.220311 0.22019 0.219995 0.134108 0.0340425 0.0457612 0.220232 0.202838 0.23274 0.232923 0.232984 0.233004 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233008 0.233009 0.232651 0.232821 0.232441 0.232947 0.232644 0.232516 0.232994 0.232333 0.232405 0.232196 0.232 0.231807 0.231794 0.231875 0.232083 0.231997 0.230893 0.23116 0.231679 0.231467 0.226392 0.228682 0.229941 0.230664 0.222328 0.224627 0.223178 0.219201 0.219441 0.22024 0.221479 0.219458 0.219184 0.220508 0.220703 0.219937 0.220399 0.220269 0.220107 0.219997 0.21992 0.112736 0.0334105 0.0416663 0.21922 0.193153 0.232724 0.232928 0.232994 0.233007 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233007 0.233009 0.232522 0.232205 0.23276 0.231865 0.232926 0.232215 0.232019 0.232991 0.232906 0.231871 0.231696 0.231306 0.231066 0.231107 0.231615 0.231774 0.231432 0.230973 0.231158 0.231396 0.231154 0.225425 0.227639 0.228756 0.230146 0.223992 0.22171 0.219219 0.219369 0.220391 0.219136 0.220455 0.220648 0.220263 0.220065 0.21994 0.219913 0.0914233 0.0329803 0.0387696 0.217393 0.181014 0.232724 0.232952 0.233001 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233007 0.233009 0.231981 0.232401 0.231504 0.232715 0.231045 0.231542 0.231282 0.232993 0.2329 0.232901 0.230864 0.230341 0.230164 0.230332 0.230946 0.231166 0.230467 0.230698 0.230962 0.230628 0.23034 0.224166 0.22552 0.225881 0.228513 0.221805 0.220353 0.219046 0.219286 0.220388 0.220166 0.220548 0.220068 0.219906 0.219872 0.0752431 0.0327068 0.0369323 0.214171 0.166858 0.232771 0.232973 0.233006 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233008 0.233009 0.231187 0.231788 0.232319 0.230584 0.232702 0.230039 0.230642 0.233001 0.232913 0.232933 0.232709 0.229709 0.229229 0.229252 0.22958 0.229699 0.230048 0.229113 0.22964 0.230063 0.229191 0.228797 0.2216 0.223663 0.222595 0.225021 0.220267 0.219145 0.218877 0.220364 0.220129 0.219981 0.220235 0.219909 0.21984 0.0641559 0.0324875 0.0354825 0.209516 0.149852 0.232836 0.232994 0.233008 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.23301 0.230208 0.230941 0.231678 0.232302 0.229523 0.228921 0.233007 0.232956 0.232978 0.232745 0.2328 0.232322 0.228425 0.228164 0.22843 0.227967 0.228529 0.22765 0.227509 0.22839 0.227235 0.226722 0.22007 0.221046 0.222799 0.221598 0.2213 0.218959 0.218669 0.22034 0.220093 0.219942 0.219836 0.219535 0.219837 0.0573038 0.0324176 0.0350831 0.202527 0.134549 0.232914 0.233003 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.229131 0.22995 0.230833 0.231661 0.228392 0.227752 0.233009 0.232994 0.233004 0.232862 0.232921 0.232403 0.232524 0.231718 0.227215 0.227274 0.22605 0.226867 0.226283 0.224269 0.226 0.225136 0.224476 0.218694 0.219491 0.220411 0.219411 0.220393 0.218409 0.220256 0.220088 0.219905 0.219798 0.219774 0.217946 0.0526447 0.0324291 0.0352003 0.194185 0.120976 0.232972 0.233007 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.228014 0.228906 0.229876 0.230834 0.227237 0.226579 0.23301 0.233007 0.233009 0.232965 0.232993 0.232661 0.232793 0.231862 0.232079 0.230946 0.226224 0.224353 0.225337 0.225171 0.221074 0.223222 0.223358 0.222511 0.218092 0.218348 0.218866 0.218791 0.218389 0.219795 0.220089 0.22002 0.219902 0.219762 0.219736 0.215148 0.0527679 0.0328596 0.0373616 0.185099 0.113377 0.232997 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.226889 0.227841 0.22888 0.229912 0.22607 0.225442 0.23301 0.233009 0.233009 0.233004 0.233008 0.232895 0.232965 0.232325 0.232567 0.231183 0.231515 0.230113 0.223005 0.224095 0.224287 0.21968 0.220848 0.221956 0.220928 0.217855 0.217988 0.217942 0.218391 0.217734 0.219345 0.21969 0.219982 0.219833 0.219755 0.2197 0.211328 0.0554989 0.0369762 0.0499755 0.177609 0.113955 0.233006 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.225716 0.226737 0.227842 0.22897 0.224855 0.23301 0.23301 0.233009 0.233009 0.232993 0.233004 0.232765 0.232905 0.231888 0.232259 0.230471 0.230926 0.229304 0.22196 0.223121 0.223613 0.219183 0.219626 0.2209 0.219832 0.217628 0.217484 0.217708 0.218043 0.217484 0.21983 0.218803 0.219918 0.219808 0.219691 0.219689 0.207475 0.0668755 0.157328 0.15769 0.173588 0.119443 0.233008 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.224455 0.225536 0.226749 0.228045 0.23301 0.23301 0.23301 0.23301 0.233008 0.233009 0.232972 0.232997 0.232574 0.232808 0.231435 0.23193 0.229785 0.230387 0.228478 0.221168 0.222371 0.223148 0.218924 0.218967 0.220135 0.219187 0.217299 0.217315 0.2175 0.217797 0.21964 0.21767 0.219809 0.219862 0.219665 0.21963 0.204168 0.0876732 0.233002 0.220405 0.170057 0.127943 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.224247 0.225541 0.226994 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.233006 0.233008 0.232936 0.232984 0.232363 0.232687 0.231033 0.231647 0.229119 0.229892 0.227521 0.220602 0.221843 0.222904 0.218672 0.218738 0.219625 0.218932 0.217166 0.21717 0.217322 0.217622 0.219457 0.216302 0.219668 0.219739 0.219807 0.219605 0.200317 0.140286 0.233002 0.231968 0.168467 0.134487 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.224238 0.225781 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.23301 0.233001 0.233007 0.232888 0.232965 0.23218 0.232578 0.230696 0.231432 0.228338 0.229335 0.226334 0.220269 0.221538 0.222883 0.218526 0.218556 0.219403 0.218842 0.217043 0.217036 0.217126 0.217538 0.219127 0.214506 0.219598 0.219613 0.219716 0.219745 0.19594 0.204744 0.233008 0.232846 0.161829 0.157129 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.224444 0.233008 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.23301 0.232995 0.233005 0.23284 0.232945 0.232051 0.232505 0.230361 0.231266 0.227238 0.228448 0.224966 0.220187 0.221484 0.222985 0.218389 0.219342 0.218825 0.21692 0.216912 0.217053 0.217418 0.21888 0.211382 0.219569 0.219597 0.219693 0.219688 0.191009 0.227577 0.23301 0.232997 0.161706 0.203595 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233007 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.23301 0.232988 0.233002 0.232803 0.232929 0.231981 0.232481 0.229807 0.231004 0.225853 0.227116 0.223473 0.220203 0.221538 0.218319 0.219349 0.218843 0.216823 0.216796 0.216987 0.217402 0.218121 0.207319 0.219542 0.219583 0.219671 0.219551 0.178874 0.232456 0.23301 0.233008 0.172177 0.225721 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233006 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.233008 0.23301 0.232981 0.233 0.232792 0.232921 0.23189 0.232474 0.228674 0.230278 0.224262 0.225449 0.221882 0.220407 0.218315 0.219466 0.218952 0.216737 0.216721 0.216949 0.217406 0.218722 0.216044 0.201215 0.219531 0.219571 0.219632 0.219494 0.175689 0.232938 0.23301 0.23301 0.200117 0.231566 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233005 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.233009 0.233007 0.23301 0.232978 0.232997 0.232787 0.232921 0.231579 0.232408 0.227022 0.228863 0.222549 0.223538 0.220852 0.218387 0.219702 0.219116 0.216628 0.21668 0.216931 0.217436 0.218457 0.212909 0.188394 0.219521 0.219561 0.219607 0.219325 0.181252 0.233 0.23301 0.23301 0.222557 0.232762 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233002 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.23301 0.233009 0.233008 0.233007 0.233003 0.232976 0.232996 0.232757 0.232912 0.230659 0.232041 0.224939 0.226717 0.221568 0.218576 0.220062 0.219305 0.216583 0.216648 0.21692 0.217497 0.217599 0.207392 0.184271 0.219517 0.219551 0.219556 0.218196 0.219267 0.197982 0.233008 0.23301 0.23301 0.2303 0.23297 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.232989 0.233008 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.233009 0.233008 0.233002 0.233003 0.232987 0.232971 0.232988 0.232616 0.232875 0.228747 0.230696 0.22258 0.223982 0.218779 0.220564 0.219544 0.216545 0.216619 0.216919 0.217576 0.215493 0.19531 0.187469 0.21951 0.21954 0.219526 0.217994 0.219044 0.220468 0.23301 0.23301 0.23301 0.232428 0.233004 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.232945 0.233003 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.233009 0.233006 0.233007 0.233004 0.232981 0.232984 0.232926 0.232939 0.232952 0.232153 0.232619 0.225737 0.227764 0.221281 0.218914 0.219808 0.216512 0.216593 0.216932 0.217642 0.21078 0.190304 0.197865 0.219508 0.219531 0.219454 0.216863 0.217261 0.218923 0.229147 0.23301 0.23301 0.23301 0.232907 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.232775 0.232982 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.233008 0.233009 0.232994 0.233 0.232987 0.23291 0.232915 0.232734 0.232788 0.232796 0.229801 0.231409 0.222235 0.223528 0.219241 0.22011 0.216481 0.216569 0.216935 0.217742 0.200407 0.192147 0.21888 0.219505 0.219513 0.219412 0.213333 0.217292 0.218806 0.232053 0.23301 0.23301 0.23301 0.232994 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.232202 0.23291 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.233008 0.233005 0.233008 0.232947 0.232971 0.232925 0.232699 0.232709 0.23219 0.231974 0.232174 0.225199 0.227217 0.220531 0.219323 0.216447 0.216542 0.216953 0.217807 0.194879 0.199429 0.228252 0.219503 0.219503 0.219337 0.204703 0.214436 0.217418 0.218604 0.232822 0.23301 0.23301 0.23301 0.233008 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.230653 0.2327 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.233008 0.233005 0.23299 0.233001 0.232798 0.232866 0.232737 0.232159 0.232161 0.230817 0.229214 0.23018 0.221102 0.221967 0.219499 0.216411 0.216513 0.216959 0.217842 0.196062 0.216213 0.231718 0.219501 0.21948 0.219248 0.198604 0.206348 0.214457 0.216824 0.218132 0.232978 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.226934 0.232186 0.233009 0.23301 0.23301 0.23301 0.23301 0.233009 0.233003 0.232994 0.232938 0.232978 0.232405 0.232569 0.232262 0.231014 0.230912 0.227919 0.223431 0.225415 0.219668 0.219805 0.216372 0.21648 0.21694 0.217884 0.201355 0.227345 0.232728 0.219497 0.219452 0.219104 0.199411 0.201309 0.206935 0.21441 0.215531 0.218126 0.233005 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.221316 0.231128 0.233007 0.23301 0.23301 0.233009 0.23301 0.233008 0.23299 0.23296 0.232753 0.232905 0.231559 0.231895 0.231278 0.228802 0.228378 0.222552 0.220032 0.220684 0.217848 0.216328 0.216437 0.216916 0.214801 0.231386 0.232959 0.219491 0.219413 0.219075 0.203524 0.201986 0.203325 0.208138 0.214769 0.217965 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.219192 0.229244 0.233002 0.23301 0.23301 0.233009 0.233009 0.233006 0.23295 0.232863 0.232252 0.232672 0.23003 0.230658 0.22954 0.224773 0.22387 0.219011 0.219255 0.219351 0.216861 0.217852 0.216279 0.216388 0.22668 0.232634 0.233002 0.219481 0.219403 0.219029 0.214641 0.205397 0.203995 0.205045 0.211218 0.212524 0.217763 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.217125 0.226123 0.232988 0.23301 0.23301 0.233008 0.233009 0.233 0.232845 0.232604 0.231238 0.23203 0.227587 0.228673 0.22684 0.219722 0.219412 0.218252 0.217381 0.21632 0.216755 0.216225 0.231142 0.23294 0.233009 0.21948 0.219393 0.21891 0.226622 0.215052 0.207142 0.205771 0.207187 0.20878 0.215519 0.217699 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.216271 0.216782 0.220972 0.232952 0.233009 0.23301 0.233004 0.233008 0.232986 0.232592 0.231967 0.229559 0.230747 0.224061 0.225727 0.222898 0.21784 0.218097 0.21645 0.216163 0.216246 0.232569 0.232999 0.23301 0.219481 0.219352 0.218841 0.231115 0.226827 0.215874 0.208868 0.207864 0.21189 0.208153 0.215431 0.217565 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.216025 0.216017 0.216253 0.217566 0.232863 0.233009 0.233009 0.232993 0.233005 0.232953 0.232024 0.230625 0.22715 0.228701 0.219445 0.221569 0.218397 0.215836 0.216098 0.216103 0.232925 0.233008 0.23301 0.219469 0.219322 0.218739 0.232557 0.231196 0.227115 0.217621 0.211281 0.209099 0.209143 0.212062 0.214666 0.217663 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.21602 0.215932 0.215832 0.21684 0.232661 0.233009 0.233009 0.232964 0.232997 0.232884 0.230778 0.228473 0.223871 0.225867 0.216743 0.217506 0.216563 0.215598 0.215611 0.216047 0.232996 0.23301 0.23301 0.219458 0.219274 0.218809 0.232922 0.232574 0.231296 0.227878 0.220176 0.209213 0.213493 0.209917 0.212654 0.213341 0.217534 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.23301 0.216005 0.215897 0.23223 0.233007 0.233009 0.232907 0.232978 0.232736 0.228678 0.225356 0.219364 0.222184 0.215935 0.21575 0.216118 0.215845 0.215492 0.215333 0.233008 0.23301 0.23301 0.219439 0.219305 0.218762 0.232995 0.232925 0.232617 0.231561 0.228829 0.210585 0.223198 0.210446 0.211114 0.215191 0.211863 0.217328 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.233009 0.23301 0.216017 0.231357 0.233002 0.233008 0.232802 0.232936 0.232424 0.225479 0.221257 0.216446 0.217951 0.214965 0.215324 0.216044 0.215857 0.215425 0.23301 0.23301 0.23301 0.219452 0.219293 0.218655 0.233008 0.232996 0.232938 0.232695 0.231895 0.216037 0.229868 0.212464 0.212008 0.213331 0.212135 0.214601 0.217567 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.233008 0.23301 0.229573 0.23299 0.233005 0.232595 0.232859 0.23181 0.221021 0.21738 0.215205 0.215834 0.214827 0.215309 0.216076 0.215895 0.23301 0.23301 0.23301 0.219454 0.219261 0.218762 0.23301 0.233008 0.232999 0.232955 0.232776 0.225997 0.232246 0.219716 0.215561 0.2126 0.2138 0.213599 0.214119 0.21746 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.23301 0.23301 0.233009 0.233007 0.23301 0.226404 0.232964 0.232999 0.23217 0.232719 0.230607 0.217246 0.215505 0.21492 0.214856 0.214741 0.21533 0.215947 0.216152 0.23301 0.23301 0.23301 0.219451 0.219297 0.218754 0.23301 0.23301 0.233008 0.233002 0.232971 0.230944 0.232866 0.228087 0.223908 0.213327 0.219436 0.213534 0.214134 0.21396 0.217185 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.23301 0.23301 0.233008 0.233004 0.23301 0.221546 0.232912 0.232985 0.231318 0.232447 0.228087 0.215356 0.214646 0.214654 0.215333 0.214513 0.215998 0.216242 0.23301 0.23301 0.219458 0.219337 0.218645 0.23301 0.23301 0.23301 0.233009 0.233005 0.232554 0.232988 0.231768 0.229964 0.216673 0.227388 0.215229 0.214722 0.214112 0.215011 0.217242 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.23301 0.23301 0.233007 0.232997 0.23301 0.217488 0.232817 0.232953 0.22959 0.231889 0.223127 0.214511 0.21448 0.21609 0.215326 0.214526 0.216316 0.23301 0.219514 0.219307 0.21863 0.23301 0.23301 0.23301 0.23301 0.233009 0.232932 0.233007 0.232769 0.23235 0.224227 0.231459 0.22113 0.214376 0.214813 0.218807 0.214466 0.217138 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233008 0.233009 0.23301 0.233004 0.232982 0.23301 0.215348 0.232646 0.232893 0.225821 0.230761 0.218203 0.214357 0.216438 0.216186 0.215373 0.214406 0.219512 0.219309 0.218589 0.23301 0.23301 0.23301 0.23301 0.23301 0.232999 0.23301 0.232972 0.232898 0.229949 0.232719 0.228031 0.21481 0.217472 0.226134 0.214451 0.214744 0.216854 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233007 0.233009 0.23301 0.232998 0.232947 0.23301 0.214427 0.232311 0.232787 0.220157 0.228504 0.215604 0.216579 0.2163 0.215418 0.214408 0.219528 0.219306 0.218439 0.23301 0.23301 0.23301 0.23301 0.233009 0.23301 0.233005 0.232994 0.232325 0.232968 0.231644 0.216663 0.224248 0.230689 0.214661 0.214646 0.216173 0.216852 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233005 0.233009 0.23301 0.232984 0.232884 0.23301 0.214256 0.231643 0.232593 0.216596 0.223779 0.21435 0.216718 0.216429 0.215484 0.214335 0.219539 0.219243 0.21838 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233008 0.232899 0.233005 0.232773 0.222433 0.229692 0.232504 0.214599 0.215749 0.221079 0.214523 0.216689 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.232999 0.233007 0.233009 0.232955 0.232768 0.23301 0.230362 0.232222 0.214854 0.219173 0.214108 0.216876 0.216569 0.215552 0.214376 0.219508 0.219211 0.218276 0.23301 0.23301 0.23301 0.23301 0.23301 0.232995 0.23301 0.232978 0.228555 0.232173 0.232937 0.21548 0.21991 0.227564 0.214415 0.215212 0.216572 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.232989 0.233005 0.233009 0.232893 0.232562 0.23301 0.227999 0.231524 0.214092 0.216216 0.213994 0.217044 0.216718 0.215637 0.214396 0.219496 0.219164 0.218173 0.23301 0.23301 0.23301 0.23301 0.233008 0.23301 0.233006 0.231732 0.232869 0.233002 0.218937 0.226634 0.231276 0.214297 0.21503 0.218267 0.216398 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.232967 0.233001 0.233008 0.232779 0.232198 0.23301 0.223449 0.23028 0.213896 0.214665 0.217223 0.216839 0.215773 0.214435 0.219472 0.219105 0.218044 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.232772 0.232993 0.233009 0.225844 0.230823 0.232649 0.214168 0.214866 0.217889 0.225185 0.216221 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.23301 0.23301 0.23301 0.232924 0.232993 0.233006 0.232577 0.231564 0.23301 0.219212 0.228159 0.213819 0.213918 0.217355 0.21702 0.215871 0.214526 0.219435 0.219029 0.217905 0.23301 0.23301 0.23301 0.23301 0.23301 0.232978 0.233008 0.23301 0.230389 0.232525 0.232959 0.214031 0.21473 0.217754 0.224729 0.230072 0.216022 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.23301 0.23301 0.232842 0.232978 0.233001 0.232241 0.230511 0.23301 0.216212 0.22438 0.213727 0.217548 0.217148 0.216051 0.214577 0.219385 0.218941 0.217749 0.23301 0.23301 0.23301 0.23301 0.233007 0.23301 0.23301 0.232387 0.232937 0.233005 0.213914 0.214621 0.217828 0.224645 0.229816 0.232298 0.215849 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233008 0.23301 0.232696 0.232949 0.232994 0.231712 0.228898 0.23301 0.214617 0.220221 0.213658 0.217687 0.217349 0.216167 0.214715 0.219321 0.218839 0.217594 0.23301 0.23301 0.23301 0.23301 0.23301 0.232915 0.233002 0.23301 0.213808 0.21453 0.218013 0.224755 0.229762 0.232209 0.232897 0.215664 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.233007 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.232456 0.232897 0.232979 0.230919 0.226398 0.23301 0.213756 0.217039 0.217889 0.217485 0.216378 0.213566 0.214789 0.219245 0.218728 0.217425 0.23301 0.23301 0.23301 0.23301 0.233 0.233009 0.23301 0.213701 0.214572 0.218344 0.224998 0.229822 0.232209 0.232887 0.232997 0.215507 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.233004 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.232094 0.232809 0.232956 0.229807 0.222708 0.23301 0.215371 0.21803 0.2177 0.216524 0.213451 0.214904 0.219156 0.218604 0.217262 0.23301 0.23301 0.23301 0.233009 0.23301 0.23301 0.213517 0.214679 0.218803 0.225461 0.229966 0.232237 0.232891 0.232997 0.233009 0.215345 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.233 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.231585 0.232672 0.232919 0.228345 0.220292 0.21451 0.218236 0.217847 0.216679 0.213462 0.215095 0.219056 0.218475 0.217085 0.23301 0.23301 0.23301 0.23301 0.23301 0.213514 0.214903 0.219551 0.226073 0.230258 0.232295 0.2329 0.232998 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233008 0.232994 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.230908 0.232473 0.232866 0.226418 0.21796 0.213989 0.218379 0.21799 0.216879 0.213609 0.218947 0.218338 0.23301 0.23301 0.23301 0.23301 0.213609 0.215434 0.220459 0.226944 0.23062 0.232389 0.232914 0.233 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233007 0.232986 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.233006 0.230048 0.232201 0.232794 0.22395 0.216596 0.218517 0.218149 0.218829 0.222109 0.22797 0.231036 0.232493 0.23293 0.233001 0.233009 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.232975 0.233009 0.233004 0.233003 0.232962 0.229053 0.231856 0.232704 0.21865 0.231457 0.232602 0.232946 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 ) ; boundaryField { lowerOutlet { type inletOutlet; inletValue uniform 0.23301; value nonuniform List<scalar> 144 ( 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.228884 0.23301 0.23301 0.226562 0.23301 0.157328 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.226738 0.208766 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.231299 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 ) ; } top { type inletOutlet; inletValue uniform 0.23301; value nonuniform List<scalar> 100 ( 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.233009 0.233009 0.233008 0.233008 0.233008 0.233008 0.233008 0.233007 0.23299 0.232894 0.232566 0.231968 0.231362 0.231109 0.231092 0.231366 0.231978 0.232522 0.232746 0.232816 0.232826 0.232783 0.23274 0.232724 0.232724 0.232771 0.232836 0.232914 0.232972 0.232997 0.233006 0.233008 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 0.23301 ) ; } sides { type inletOutlet; inletValue uniform 0.23301; value uniform 0.23301; } front { type empty; } back { type empty; } roller { type zeroGradient; } burner { type fixedValue; value uniform 0.032; } } // ************************************************************************* //
[ "owbr3335@colorado.edu" ]
owbr3335@colorado.edu
426c4ddf170e8d4d258727a93ca8683e4943a73f
463839e26ec118a18741502cfde55351019aa0a3
/HW12/problem1.cpp
7dd2b69793b643afc85218faf905104fe9191f76
[]
no_license
dereklh4/Homework-upstream
124f1cad3c7c1271ff400531792e2cbba048f9cb
61403385640c2cb82e6704438cf2d10bb6554d6b
refs/heads/master
2020-03-28T08:24:56.818969
2017-12-05T03:42:52
2017-12-05T03:42:52
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,180
cpp
#include <iostream> #include <omp.h> #define OMPI_SKIP_MPICXX /* Don't use OpenMPI's C++ bindings (they are deprecated) */ #include <mpi.h> namespace mpi { class context { int m_rank, m_size; public: context(int *argc, char **argv[]) : m_rank { -1 } { if (MPI_Init(argc, argv) == MPI_SUCCESS) { MPI_Comm_rank(MPI_COMM_WORLD, &m_rank); MPI_Comm_size(MPI_COMM_WORLD, &m_size); } } ~context() { if(m_rank >= 0) { MPI_Finalize(); } } explicit operator bool() const { return m_rank >= 0; } int rank() const noexcept { return m_rank; } int size() const noexcept { return m_size; } }; } int main(int argc, char *argv[]) { mpi::context ctx(&argc, &argv); if(!ctx) { std::cerr << "MPI Initialization failed\n"; return -1; } if(ctx.rank() == 0) { int x=0; constexpr int source_rank = 1; // We expect a message from Task 1 MPI_Status status; MPI_Recv(&x, 1, MPI_INT, source_rank, 0, MPI_COMM_WORLD, &status); std::cout << "Received x = " << x << " on root task.\n"; } else { const int i=4; constexpr int dest_rank = 0; // We send a message to Task 0 MPI_Send(&i, 1, MPI_INT, dest_rank, 0, MPI_COMM_WORLD); } }
[ "thaines.astro@gmail.com" ]
thaines.astro@gmail.com
9a5589e2131d90f94f60ae0a8f35ce54d1b83b74
f878c7a63f668b9bd811f9c79a01814d7d63becd
/data_dir/train/63269
41f9580419d10e73569647d627bccfed47f0dc6f
[ "MIT" ]
permissive
AliOsm/AI-SOCO
f8d7428f4570577e7e8d4dddecb4fed5cfbed11c
c7b285cd8a094f09a294e17af77d3cb254537801
refs/heads/master
2023-05-24T09:15:43.769045
2020-11-06T12:58:16
2020-11-06T12:58:16
265,671,705
18
8
null
null
null
null
UTF-8
C++
false
false
1,288
#ifndef Local #pragma GCC optimize ("O3") #pragma GCC optimize ("unroll-loops") #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native") #pragma comment(linker, "/STACK:1024000000,1024000000") #endif #include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> using namespace __gnu_pbds; using namespace std; #define popCnt(x) (__builtin_popcountll(x)) typedef long long Long; string solve(vector<pair<char, int>> vec) { int iter = 5000; while (iter--) { random_shuffle(vec.begin(), vec.end()); bool valid = true; for (int i = 0; i + 1 < vec.size(); ++i) { valid &= (abs(vec[i].first - vec[i + 1].first) != 1); } if (valid) { string res; for (auto& p : vec) { res += string(p.second, p.first); } return res; } } return "No answer"; } int main() { srand(time(0)); ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0); #ifdef Local freopen("test.in", "r", stdin); #else #define endl '\n' #endif int t; cin >> t; while (t--) { string s; cin >> s; map<int, int> mp; for (char c : s) { ++mp[c]; } vector<pair<char, int>> vec(mp.begin(), mp.end()); cout << solve(vec) << endl; } }
[ "aliosm1997@gmail.com" ]
aliosm1997@gmail.com
61d60edf69d6440a528c0b0fbac29e6b71e1cab6
abff24635d98f480ca0a04c0d257aa22c4fc4b8c
/src/core/api/VulkanSwapChain.cpp
9d7d15874b7e541652e254040c3417f9d8db743a
[]
no_license
Aitorsan/vulkanLearning
51a8c1ae1c62ac26e780256f96923561b5e98299
0fd4399d1813849663571e809691391d59729135
refs/heads/master
2023-03-18T17:09:37.279309
2021-03-12T17:39:33
2021-03-12T17:39:33
345,642,702
0
0
null
null
null
null
UTF-8
C++
false
false
19,148
cpp
#include "VulkanSwapChain.h" #include <cassert> #include "core/debugger/public/Logger.h" #include "VulkanLib.h" VulkanSwapChain::VulkanSwapChain(VulkanLib& vulkan,VkExtent2D windowExtent) : Vulkan{vulkan} , WindowExtent{ windowExtent } , SwapChainExtent{} , SwapChain{} , SwapChainImageFormat {} , DepthImages{} , SwapChainImages{} , DepthImageViews{} , SwapChainImageViews{} , RenderPass{} , DepthImageMemorys{} , FrameBuffers{} , CurrentFrame{0} , ImageAvailableSemaphores{} , RenderFinishedSemaphores{} , InFlightFences {} , ImagesInFlight{} { _CreateSwapChain(); _CreateImageViews(); _CreateDepthImageViews(); _CreateRenderPass(); _CreateFrameBuffers(); _CreateSyncronizationObjects(); } VulkanSwapChain::~VulkanSwapChain() { VkDevice logicalDevice = Vulkan.GetLogicalDevice(); for (auto imageView : SwapChainImageViews) { vkDestroyImageView(logicalDevice, imageView, nullptr); } SwapChainImageViews.clear(); vkDestroySwapchainKHR(logicalDevice, SwapChain, nullptr); for (int i = 0; i < DepthImages.size(); ++i) { vkDestroyImageView(logicalDevice, DepthImageViews[i],nullptr); vkDestroyImage(logicalDevice, DepthImages[i], nullptr); vkFreeMemory(logicalDevice, DepthImageMemorys[i], nullptr); } for (auto framebuffer : FrameBuffers) { vkDestroyFramebuffer(logicalDevice, framebuffer, nullptr); } vkDestroyRenderPass(logicalDevice, RenderPass, nullptr); for (int i = 0; i < MAX_FRAMES_TO_BE_PROCESSED; ++i) { vkDestroySemaphore(logicalDevice, RenderFinishedSemaphores[i], nullptr); vkDestroySemaphore(logicalDevice, ImageAvailableSemaphores[i], nullptr); vkDestroyFence(logicalDevice, InFlightFences[i], nullptr); } } void VulkanSwapChain::_CreateSwapChain() { //Check if currentExtent has been set if not we need to set it manually VkSurfaceCapabilitiesKHR capabilities = {}; vkGetPhysicalDeviceSurfaceCapabilitiesKHR(Vulkan.GetGpu(), Vulkan.GetSurface(), &capabilities); //resolution of images in the swap chain SwapChainExtent = (capabilities.currentExtent.width == -1 || capabilities.currentExtent.height == -1) ? SwapChainExtent = WindowExtent : SwapChainExtent = capabilities.currentExtent; // Querry which formats are available in this gpu and choose the appropiate one uint32_t formatCount = {}; vkGetPhysicalDeviceSurfaceFormatsKHR(Vulkan.GetGpu(), Vulkan.GetSurface(), &formatCount, nullptr); std::vector<VkSurfaceFormatKHR> availableSurfaceFormats(formatCount); vkGetPhysicalDeviceSurfaceFormatsKHR(Vulkan.GetGpu(), Vulkan.GetSurface(), &formatCount, availableSurfaceFormats.data()); VkSurfaceFormatKHR surfaceFormat = {}; for (const VkSurfaceFormatKHR& surfaceformat : availableSurfaceFormats) { if (surfaceformat.format == VK_FORMAT_B8G8R8A8_SRGB && surfaceformat.colorSpace == VK_COLOR_SPACE_SRGB_NONLINEAR_KHR) surfaceFormat = surfaceformat; } SwapChainImageFormat = surfaceFormat.format; // Choose the best avaliable presenting mode uint32_t presentModeCount = {}; vkGetPhysicalDeviceSurfacePresentModesKHR(Vulkan.GetGpu(), Vulkan.GetSurface(), &presentModeCount,nullptr); std::vector<VkPresentModeKHR> availablePresentModes(presentModeCount); vkGetPhysicalDeviceSurfacePresentModesKHR(Vulkan.GetGpu(), Vulkan.GetSurface(), &presentModeCount, availablePresentModes.data()); VkPresentModeKHR presentMode = VK_PRESENT_MODE_FIFO_KHR; for (VkPresentModeKHR mode : availablePresentModes) { if (mode == VK_PRESENT_MODE_MAILBOX_KHR) presentMode = mode; } // Image count, triple buffering, double buffering we need to check the minimum supported and maximum uint32_t minImageCount = capabilities.maxImageCount > 0 ? capabilities.maxImageCount : 3; VkSwapchainCreateInfoKHR swapChainCreateInfo = {}; swapChainCreateInfo.sType = VK_STRUCTURE_TYPE_SWAPCHAIN_CREATE_INFO_KHR; swapChainCreateInfo.minImageCount = 4; swapChainCreateInfo.surface = Vulkan.GetSurface(); swapChainCreateInfo.imageFormat = surfaceFormat.format; swapChainCreateInfo.imageColorSpace = surfaceFormat.colorSpace; swapChainCreateInfo.imageArrayLayers = 1; // always 1 unless develop stereoscopic 3D app swapChainCreateInfo.imageExtent = SwapChainExtent; swapChainCreateInfo.imageUsage = VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT; swapChainCreateInfo.preTransform = capabilities.currentTransform;// we don't need to apply any transform before rendering // parameter use indicate if we want to use the alpha channel to blend the window with other windows // in the window system. We don't want to 99% of the time swapChainCreateInfo.compositeAlpha = VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR; swapChainCreateInfo.presentMode = presentMode; swapChainCreateInfo.clipped = VK_TRUE; // clipp pixels that we don't see e.g: other window in front of our window /* If the presentation queue and the graphics queue are not the same then we need to explicitly transfer the image from one queue to another before using it in another queue faimily. We set default value to EXCLUSIVE if the queues are different then we modify them */ swapChainCreateInfo.imageSharingMode = VK_SHARING_MODE_EXCLUSIVE; uint32_t queueFamilyIndices[] = { Vulkan.GetGraphicsQueueIndex(), Vulkan.GetPresentationQueueIndex() }; if (Vulkan.GetGraphicsQueueIndex() != Vulkan.GetPresentationQueueIndex()) { swapChainCreateInfo.imageSharingMode = VK_SHARING_MODE_CONCURRENT; swapChainCreateInfo.queueFamilyIndexCount = 2; swapChainCreateInfo.pQueueFamilyIndices = queueFamilyIndices; } // SwapChain can become invalid or unoptimize when the app is running e.g: window resize // in that case we will need to recreate from scratch the swap chain and give a reference // to the old swapChain swapChainCreateInfo.oldSwapchain = VK_NULL_HANDLE; VK_CHECK(vkCreateSwapchainKHR(Vulkan.GetLogicalDevice(), &swapChainCreateInfo, nullptr, &SwapChain)); //get handles to the Images the are allocated with the swap chain and destroy when the swap chain is destroyed uint32_t imageCount {0}; vkGetSwapchainImagesKHR(Vulkan.GetLogicalDevice(),SwapChain,&imageCount,nullptr); SwapChainImages.resize(imageCount); vkGetSwapchainImagesKHR(Vulkan.GetLogicalDevice(), SwapChain, &imageCount, SwapChainImages.data()); } void VulkanSwapChain::_CreateImageViews() { SwapChainImageViews.resize(SwapChainImages.size()); for (int i = 0; i < SwapChainImages.size(); ++i) { VkImageViewCreateInfo createInfo = {}; createInfo.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO; createInfo.image = SwapChainImages[i]; createInfo.viewType = VK_IMAGE_VIEW_TYPE_2D; createInfo.format = SwapChainImageFormat; createInfo.components.r = VK_COMPONENT_SWIZZLE_IDENTITY; createInfo.components.g = VK_COMPONENT_SWIZZLE_IDENTITY; createInfo.components.b = VK_COMPONENT_SWIZZLE_IDENTITY; createInfo.components.a = VK_COMPONENT_SWIZZLE_IDENTITY; createInfo.subresourceRange.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT ; createInfo.subresourceRange.baseMipLevel = 0; createInfo.subresourceRange.levelCount = 1; createInfo.subresourceRange.layerCount = 1; createInfo.subresourceRange.baseArrayLayer = 0; VK_CHECK(vkCreateImageView(Vulkan.GetLogicalDevice(), &createInfo, nullptr, &SwapChainImageViews[i])); } } void VulkanSwapChain::CleanupSwapChain() { VkDevice device = Vulkan.GetLogicalDevice(); for (size_t i = 0; i <FrameBuffers.size(); i++) { vkDestroyFramebuffer(device, FrameBuffers[i], nullptr); } vkDestroyRenderPass(device, RenderPass, nullptr); for (size_t i = 0; i < SwapChainImageViews.size(); i++) { vkDestroyImageView(device, SwapChainImageViews[i], nullptr); } for (auto imageView : DepthImageViews) { vkDestroyImageView(device, imageView, nullptr); } vkDestroySwapchainKHR(device, SwapChain, nullptr); } void VulkanSwapChain::RecreateSwapChain() { _CreateSwapChain(); _CreateImageViews(); _CreateDepthImageViews(); _CreateRenderPass(); // recreate graphics pipeline _CreateFrameBuffers(); } void VulkanSwapChain::_CreateDepthImageViews() { VkFormat depthFormat = Vulkan.FindSupportedFormat( { VK_FORMAT_D32_SFLOAT, VK_FORMAT_D32_SFLOAT_S8_UINT, VK_FORMAT_D24_UNORM_S8_UINT }, VK_IMAGE_TILING_OPTIMAL, VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT); VkExtent2D swapChainExtent = SwapChainExtent; DepthImages.resize(SwapChainImages.size()); DepthImageMemorys.resize(SwapChainImages.size()); DepthImageViews.resize(SwapChainImages.size()); for (int i = 0; i < DepthImages.size(); i++) { VkImageCreateInfo imageInfo{}; imageInfo.sType = VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO; imageInfo.imageType = VK_IMAGE_TYPE_2D; imageInfo.extent.width = swapChainExtent.width; imageInfo.extent.height = swapChainExtent.height; imageInfo.extent.depth = 1; imageInfo.mipLevels = 1; imageInfo.arrayLayers = 1; imageInfo.format = depthFormat; imageInfo.tiling = VK_IMAGE_TILING_OPTIMAL; imageInfo.initialLayout = VK_IMAGE_LAYOUT_UNDEFINED; imageInfo.usage = VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT; imageInfo.samples = VK_SAMPLE_COUNT_1_BIT; imageInfo.sharingMode = VK_SHARING_MODE_EXCLUSIVE; imageInfo.flags = 0; VK_CHECK(vkCreateImage(Vulkan.GetLogicalDevice(), &imageInfo, nullptr, &DepthImages[i])," failed to create image!\n"); VkMemoryRequirements memRequirements; vkGetImageMemoryRequirements(Vulkan.GetLogicalDevice(), DepthImages[i], &memRequirements); VkMemoryAllocateInfo allocInfo{}; allocInfo.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO; allocInfo.allocationSize = memRequirements.size; VkPhysicalDeviceMemoryProperties memProperties; vkGetPhysicalDeviceMemoryProperties(Vulkan.GetGpu(), &memProperties); for (uint32_t i = 0; i < memProperties.memoryTypeCount; i++) { if ((memRequirements.memoryTypeBits & (1 << i)) && (memProperties.memoryTypes[i].propertyFlags & VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT) == VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT) { allocInfo.memoryTypeIndex = i; break; } } VK_CHECK(vkAllocateMemory(Vulkan.GetLogicalDevice(), &allocInfo, nullptr, &DepthImageMemorys[i])," failed to allocate image memory!\n"); VK_CHECK(vkBindImageMemory(Vulkan.GetLogicalDevice(), DepthImages[i], DepthImageMemorys[i], 0), " bind image memory!\n"); VkImageViewCreateInfo viewInfo{}; viewInfo.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO; viewInfo.image = DepthImages[i]; viewInfo.viewType = VK_IMAGE_VIEW_TYPE_2D; viewInfo.format = depthFormat; viewInfo.subresourceRange.aspectMask = VK_IMAGE_ASPECT_DEPTH_BIT; viewInfo.subresourceRange.baseMipLevel = 0; viewInfo.subresourceRange.levelCount = 1; viewInfo.subresourceRange.baseArrayLayer = 0; viewInfo.subresourceRange.layerCount = 1; VK_CHECK(vkCreateImageView(Vulkan.GetLogicalDevice(), &viewInfo, nullptr, &DepthImageViews[i]),"failed to create texture image view!\n"); } } void VulkanSwapChain::_CreateRenderPass() { /* RENDER_PASS :- specify array of attachments and how they will be used eg: color attach, depth,stencil... - specify layout location in which framebuffer attachment to use SUBPASS 0 : - references the bind point amost always graphics - attachment counts and types . . END */ // describe how the attachment will be use in the framebuffer //We will use one color attachment VkAttachmentDescription colorAttachment = {}; colorAttachment.format = SwapChainImageFormat; colorAttachment.samples = VK_SAMPLE_COUNT_1_BIT; // match multisampling colorAttachment.loadOp = VK_ATTACHMENT_LOAD_OP_CLEAR;// what to do before rendering colorAttachment.storeOp = VK_ATTACHMENT_STORE_OP_STORE;// what to do after rendering colorAttachment.stencilLoadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE; colorAttachment.stencilStoreOp = VK_ATTACHMENT_STORE_OP_DONT_CARE; colorAttachment.initialLayout = VK_IMAGE_LAYOUT_UNDEFINED; colorAttachment.finalLayout = VK_IMAGE_LAYOUT_PRESENT_SRC_KHR; //We will use one depth/stencil attachment VkAttachmentDescription depthStencilAttachment = {}; depthStencilAttachment.format = Vulkan.FindSupportedFormat( { VK_FORMAT_D32_SFLOAT,VK_FORMAT_D32_SFLOAT_S8_UINT,VK_FORMAT_D24_UNORM_S8_UINT } , VK_IMAGE_TILING_OPTIMAL , VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT); depthStencilAttachment.samples = VK_SAMPLE_COUNT_1_BIT; // match multisampling depthStencilAttachment.loadOp = VK_ATTACHMENT_LOAD_OP_CLEAR;// what to do before rendering depthStencilAttachment.storeOp = VK_ATTACHMENT_STORE_OP_DONT_CARE;// what to do after rendering depthStencilAttachment.stencilLoadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE; depthStencilAttachment.stencilStoreOp = VK_ATTACHMENT_STORE_OP_DONT_CARE; depthStencilAttachment.initialLayout = VK_IMAGE_LAYOUT_UNDEFINED; depthStencilAttachment.finalLayout = VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL; /*A single render pass can consist of multiple subpasses. Subpasses are subsequent rendering operations that depend on the contents of framebuffers in previous passes, for example a sequence of post-processing effects that are applied one after another. If you group these rendering operations into one render pass, then Vulkan is able to reorder the operations and conserve memory bandwidth for possibly better performance. For our very first triangle, however, we'll stick to a single subpass. */ // It can be multiple color attachments // this specifies layout ( location = <attachment>) out vec4 outColor in the fragment shader VkAttachmentReference colorAttachmentRef = {}; colorAttachmentRef.attachment = 0; colorAttachmentRef.layout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL; // It can olny be one depth attachment VkAttachmentReference depthAttachmentRef = {}; depthAttachmentRef.attachment = 1; depthAttachmentRef.layout = VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL; // describe the subpass VkSubpassDescription subpass{}; subpass.pipelineBindPoint = VK_PIPELINE_BIND_POINT_GRAPHICS; subpass.colorAttachmentCount = 1; subpass.pColorAttachments = &colorAttachmentRef; subpass.pResolveAttachments = nullptr; // Attachments used for multisampling color attachments subpass.pDepthStencilAttachment = &depthAttachmentRef;// depth buffer attachment/stencil subpass.pPreserveAttachments = nullptr;// Attachments that are not used by this subpass, but for which the data must be preserved VkSubpassDependency dependency = {}; dependency.dstSubpass = 0; dependency.dstAccessMask = VK_ACCESS_COLOR_ATTACHMENT_WRITE_BIT; dependency.dstStageMask = VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT; dependency.srcSubpass = VK_SUBPASS_EXTERNAL; dependency.srcAccessMask = 0; dependency.srcStageMask = VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT; std::vector<VkAttachmentDescription>attachments{ colorAttachment,depthStencilAttachment }; VkRenderPassCreateInfo renderPassInfo = {}; renderPassInfo.sType = VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO; renderPassInfo.attachmentCount = (uint32_t)attachments.size(); renderPassInfo.pAttachments = attachments.data(); renderPassInfo.subpassCount = 1; renderPassInfo.pSubpasses = &subpass; renderPassInfo.dependencyCount = 1; renderPassInfo.pDependencies = &dependency; VK_CHECK(vkCreateRenderPass(Vulkan.GetLogicalDevice(), &renderPassInfo, nullptr, &RenderPass)); } void VulkanSwapChain::_CreateFrameBuffers() { FrameBuffers.resize(SwapChainImages.size()); for (int i = 0; i < FrameBuffers.size(); ++i) { VkImageView attachments[2]{SwapChainImageViews[i],DepthImageViews[i]}; VkFramebufferCreateInfo framebuffCreateInf = {}; framebuffCreateInf.sType = VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO; framebuffCreateInf.renderPass = RenderPass; framebuffCreateInf.attachmentCount = 2; framebuffCreateInf.pAttachments = attachments; framebuffCreateInf.width = SwapChainExtent.width; framebuffCreateInf.height = SwapChainExtent.height; framebuffCreateInf.layers = 1; VK_CHECK(vkCreateFramebuffer(Vulkan.GetLogicalDevice(), &framebuffCreateInf, nullptr, &FrameBuffers[i])); } } void VulkanSwapChain::_CreateSyncronizationObjects() { ImageAvailableSemaphores.resize(MAX_FRAMES_TO_BE_PROCESSED); RenderFinishedSemaphores.resize(MAX_FRAMES_TO_BE_PROCESSED); InFlightFences.resize(MAX_FRAMES_TO_BE_PROCESSED); ImagesInFlight.resize(SwapChainImages.size(),VK_NULL_HANDLE); VkSemaphoreCreateInfo semaphoreInfo = {}; semaphoreInfo.sType = VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO; //CPU-GPU VkFenceCreateInfo fenceInfo = {}; fenceInfo.sType = VK_STRUCTURE_TYPE_FENCE_CREATE_INFO; fenceInfo.flags = VK_FENCE_CREATE_SIGNALED_BIT;// avoid unsignal initial state for (int i = 0; i < MAX_FRAMES_TO_BE_PROCESSED; ++i) { VK_CHECK(vkCreateSemaphore(Vulkan.GetLogicalDevice(), &semaphoreInfo, nullptr, &ImageAvailableSemaphores[i])); VK_CHECK(vkCreateSemaphore(Vulkan.GetLogicalDevice(), &semaphoreInfo, nullptr, &RenderFinishedSemaphores[i])); VK_CHECK(vkCreateFence(Vulkan.GetLogicalDevice(), &fenceInfo, nullptr, &InFlightFences[i])); } } VkFramebuffer VulkanSwapChain::GetFrameBuffer(int index) const { assert(index < FrameBuffers.size() && index >= 0); return FrameBuffers.at(index); } VkResult VulkanSwapChain::AdquireNextImage(uint32_t* index) { vkWaitForFences(Vulkan.GetLogicalDevice(), 1, &InFlightFences[CurrentFrame], VK_TRUE, UINT64_MAX); return vkAcquireNextImageKHR(Vulkan.GetLogicalDevice(), SwapChain, UINT64_MAX, ImageAvailableSemaphores[CurrentFrame], VK_NULL_HANDLE, index); } VkResult VulkanSwapChain::SubmitCommandBuffers(const VkCommandBuffer* cmdBuffer, uint32_t* imageIndex) { //Check if a previouse frame is using this image(i.e there is its fence to wait on) if (ImagesInFlight[*imageIndex] != VK_NULL_HANDLE) { vkWaitForFences(Vulkan.GetLogicalDevice(), 1, &ImagesInFlight[*imageIndex], VK_TRUE, UINT64_MAX); } ImagesInFlight[*imageIndex] = InFlightFences[CurrentFrame]; VkSemaphore waitSemaphores[] = { ImageAvailableSemaphores[CurrentFrame] }; VkPipelineStageFlags waitStages[] = { VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT }; VkSemaphore signalSemaphores[] = { RenderFinishedSemaphores[CurrentFrame] }; VkSubmitInfo submitInfo = {}; submitInfo.sType = VK_STRUCTURE_TYPE_SUBMIT_INFO; submitInfo.waitSemaphoreCount = 1; submitInfo.pWaitSemaphores = waitSemaphores; submitInfo.pWaitDstStageMask = waitStages; submitInfo.commandBufferCount = 1; submitInfo.pCommandBuffers = cmdBuffer; submitInfo.signalSemaphoreCount = 1; submitInfo.pSignalSemaphores = signalSemaphores; vkResetFences(Vulkan.GetLogicalDevice(), 1, &InFlightFences[CurrentFrame]); VK_CHECK(vkQueueSubmit(Vulkan.GetGraphicsQueue(), 1, &submitInfo, InFlightFences[CurrentFrame])); VkSwapchainKHR swapChains[] = { SwapChain }; VkPresentInfoKHR presentInfo = {}; presentInfo.sType = VK_STRUCTURE_TYPE_PRESENT_INFO_KHR; presentInfo.waitSemaphoreCount = 1; presentInfo.pWaitSemaphores = signalSemaphores; presentInfo.swapchainCount = 1; presentInfo.pSwapchains = swapChains; // pretty much always 1 presentInfo.pResults = nullptr; presentInfo.pImageIndices = imageIndex; return vkQueuePresentKHR(Vulkan.GetPresentQueue(), &presentInfo); CurrentFrame = (CurrentFrame + 1) % MAX_FRAMES_TO_BE_PROCESSED; }
[ "aitor.sanmartin11@gmail.com" ]
aitor.sanmartin11@gmail.com
c80a4c5f5bc0114603d0f001c89331f64c862ca0
5838cf8f133a62df151ed12a5f928a43c11772ed
/NT/sdktools/apimon/apimon/apimon.cpp
2685f6e22c701025403e992e01f2bce05276de03
[]
no_license
proaholic/Win2K3
e5e17b2262f8a2e9590d3fd7a201da19771eb132
572f0250d5825e7b80920b6610c22c5b9baaa3aa
refs/heads/master
2023-07-09T06:15:54.474432
2021-08-11T09:09:14
2021-08-11T09:09:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
28,526
cpp
/*++ Copyright (c) 1995 Microsoft Corporation Module Name: apimon.cpp Abstract: Main entrypoint code for APIMON. Author: Wesley Witt (wesw) July-11-1993 Environment: User Mode --*/ #include "apimonp.h" #include "alias.h" #pragma hdrstop extern HWND hwndDlg; extern DWORD BaseTime; extern DWORD StartingTick; extern DWORD EndingTick; extern SYSTEMTIME StartingLocalTime; extern API_MASTER_TABLE ApiTables[]; HANDLE ReleaseDebugeeEvent; HANDLE hMap; HANDLE ApiTraceMutex; HANDLE ApiMemMutex; PVOID MemPtr; PTRACE_BUFFER TraceBuffer; ULONG TraceBufSize = MAX_MEM_ALLOC; LPSTR CmdParamBuffer; PDLL_INFO DllList; HANDLE ApiMonMutex; DWORDLONG PerfFreq; OPTIONS ApiMonOptions; DWORD UiRefreshRate = 1000; BOOL BreakInNow; BOOL StopOnFirstChance; BOOL CallTreeTrace; BOOL PatchWndProcs; HMODULE hModulePsApi; INITIALIZEPROCESSFORWSWATCH pInitializeProcessForWsWatch; RECORDPROCESSINFO pRecordProcessInfo; GETWSCHANGES pGetWsChanges; CHAR KnownApis[2048]; FILE *fThunkLog; double MSecConv; #define MAX_SYMNAME_SIZE 1024 CHAR symBuffer[sizeof(IMAGEHLP_SYMBOL)+MAX_SYMNAME_SIZE]; PIMAGEHLP_SYMBOL sym = (PIMAGEHLP_SYMBOL) symBuffer; extern "C" { LPDWORD ApiCounter; LPDWORD ApiTraceEnabled; LPDWORD ApiTimingEnabled; LPDWORD FastCounterAvail; LPDWORD ApiOffset; LPDWORD ApiStrings; LPDWORD ApiCount; LPDWORD WndProcEnabled; LPDWORD WndProcCount; LPDWORD WndProcOffset; BOOL RunningOnNT; } INT_PTR CALLBACK HelpDialogProc( HWND hdlg, UINT uMessage, WPARAM wParam, LPARAM lParam ) { if (uMessage == WM_INITDIALOG) { CenterWindow( hdlg, NULL ); } if (uMessage == WM_COMMAND) { EndDialog( hdlg, 0 ); } return FALSE; } int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd ) { CHAR ProgName[MAX_PATH]; CHAR Arguments[MAX_PATH*2]; DWORD i; LPSTR pchApi; OSVERSIONINFO OsVersionInfo; // // see if we are running on NT // this is necessary because APIMON implements some // features that are NOT available on WIN95 // OsVersionInfo.dwOSVersionInfoSize = sizeof(OsVersionInfo); GetVersionEx( &OsVersionInfo ); RunningOnNT = OsVersionInfo.dwPlatformId == VER_PLATFORM_WIN32_NT; sym->SizeOfStruct = sizeof(IMAGEHLP_SYMBOL); sym->MaxNameLength = MAX_SYMNAME_SIZE; // // jack up our priority class // SetPriorityClass( GetCurrentProcess(), HIGH_PRIORITY_CLASS ); // // process the command line // LPSTR p = NULL; DWORD GoImmediate = 0; ProgName[0] = 0; Arguments[0] = 0; // skip any white space // while( *lpCmdLine && *lpCmdLine == ' ' ) { lpCmdLine += 1; } // // get the command line options // while( *lpCmdLine && (*lpCmdLine == '-' || *lpCmdLine == '/') ) { lpCmdLine += 1; CHAR ch = (CHAR)tolower(*lpCmdLine); lpCmdLine += 1; switch( ch ) { case 'a': // Find the end of KnownApis multistring // (2nd zero of terminating double zero) pchApi = KnownApis; if (*pchApi) { while (*pchApi++ || *pchApi); } do { ch = *lpCmdLine++; } while (ch == ' ' || ch == '\t'); while (ch != ' ' && ch != '\t' && ch != 0) { *pchApi++ = ch; ch = *lpCmdLine++; } *pchApi++ = 0; *pchApi = 0; break; case 'b': BreakInNow = TRUE; break; case 'c': CallTreeTrace = TRUE; break; case 'g': GoImmediate = TRUE; break; case 'f': StopOnFirstChance = TRUE; break; case 'm': do { ch = *lpCmdLine++; } while (ch == ' ' || ch == '\t'); i=0; while (ch >= '0' && ch <= '9') { i = i * 10 + ch - '0'; ch = *lpCmdLine++; } TraceBufSize = i * 1024 * 1024; break; case 't': do { ch = *lpCmdLine++; } while (ch == ' ' || ch == '\t'); i=0; while (ch >= '0' && ch <= '9') { i = i * 10 + ch - '0'; ch = *lpCmdLine++; } UiRefreshRate = i; break; case 'w': PatchWndProcs = TRUE; break; case '?': DialogBox( hInstance, MAKEINTRESOURCE( IDD_HELP ), NULL, HelpDialogProc ); ExitProcess(0); break; default: printf( "unknown option\n" ); return 1; } while( *lpCmdLine == ' ' ) { lpCmdLine += 1; } } if (*lpCmdLine) { // // skip any white space // while( *lpCmdLine && *lpCmdLine == ' ' ) { lpCmdLine += 1; } // // get the program name // p = ProgName; while( *lpCmdLine && *lpCmdLine != ' ' ) { *p++ = *lpCmdLine; lpCmdLine += 1; } *p = 0; if (*lpCmdLine) { // // skip any white space // while( *lpCmdLine && *lpCmdLine == ' ' ) { lpCmdLine += 1; } if (*lpCmdLine) { // // get the program arguments // p = Arguments; while( *lpCmdLine ) { *p++ = *lpCmdLine; lpCmdLine += 1; } *p = 0; } } } ReleaseDebugeeEvent = CreateEvent(NULL,TRUE,FALSE,NULL); if (!ReleaseDebugeeEvent) { Fail(ERR_RESOURCE); return FALSE; } ApiMonMutex = CreateMutex( NULL, FALSE, "ApiMonMutex" ); if (!ApiMonMutex) { Fail(ERR_RESOURCE); return FALSE; } if (GetLastError() == ERROR_ALREADY_EXISTS) { Fail(ERR_RESOURCE); return FALSE; } ApiMemMutex = CreateMutex( NULL, FALSE, "ApiMemMutex" ); if (!ApiMemMutex) { Fail(ERR_RESOURCE); return FALSE; } if (GetLastError() == ERROR_ALREADY_EXISTS) { Fail(ERR_RESOURCE); return FALSE; } // // create the shared memory region for the api counters // hMap = CreateFileMapping( INVALID_HANDLE_VALUE, NULL, PAGE_READWRITE | SEC_COMMIT, 0, MAX_MEM_ALLOC, "ApiWatch" ); if (!hMap) { Fail(ERR_PAGEFILE); return FALSE; } MemPtr = (PUCHAR)MapViewOfFile( hMap, FILE_MAP_WRITE, 0, 0, 0 ); if (!MemPtr) { Fail(ERR_PAGEFILE); return FALSE; } ApiCounter = (LPDWORD) MemPtr + 0; ApiTraceEnabled = (LPDWORD) MemPtr + 1; ApiTimingEnabled = (LPDWORD) MemPtr + 2; FastCounterAvail = (LPDWORD) MemPtr + 3; ApiOffset = (LPDWORD) MemPtr + 4; ApiStrings = (LPDWORD) MemPtr + 5; ApiCount = (LPDWORD) MemPtr + 6; WndProcEnabled = (LPDWORD) MemPtr + 7; WndProcCount = (LPDWORD) MemPtr + 8; WndProcOffset = (LPDWORD) MemPtr + 9; DllList = (PDLL_INFO) ((LPDWORD)MemPtr + 10); *ApiOffset = (MAX_DLLS * sizeof(DLL_INFO)); *WndProcOffset = (MAX_APIS * sizeof(API_INFO)) + *ApiOffset; *ApiStrings = (DWORD)(*WndProcOffset + ((ULONG_PTR)DllList - (ULONG_PTR)MemPtr)); *WndProcEnabled = PatchWndProcs; // // create the shared memory region for the api trace buffer // hMap = CreateFileMapping( INVALID_HANDLE_VALUE, NULL, PAGE_READWRITE | SEC_COMMIT, 0, TraceBufSize, "ApiTrace" ); if (!hMap) { Fail(ERR_PAGEFILE); return FALSE; } TraceBuffer = (PTRACE_BUFFER)MapViewOfFile( hMap, FILE_MAP_WRITE, 0, 0, 0 ); if (!TraceBuffer) { Fail(ERR_PAGEFILE); return FALSE; } TraceBuffer->Size = TraceBufSize - sizeof(TRACE_BUFFER); TraceBuffer->Offset = 0; TraceBuffer->Count = 0; ApiTraceMutex = CreateMutex( NULL, FALSE, "ApiTraceMutex" ); if (!ApiTraceMutex) { Fail(ERR_RESOURCE); return FALSE; } if (GetLastError() == ERROR_ALREADY_EXISTS) { Fail(ERR_RESOURCE); return FALSE; } // // create the shared memory region for remote commands // hMap = CreateFileMapping( INVALID_HANDLE_VALUE, NULL, PAGE_READWRITE | SEC_COMMIT, 0, CMD_PARAM_BUFFER_SIZE, CMD_PARAM_BUFFER_NAME ); if (!hMap) { Fail(ERR_PAGEFILE); return FALSE; } CmdParamBuffer = (LPSTR)MapViewOfFile( hMap, FILE_MAP_WRITE, 0, 0, 0 ); if (!CmdParamBuffer) { Fail(ERR_RESOURCE); return FALSE; } InitCommonControls(); QueryPerformanceFrequency( (LARGE_INTEGER*)&PerfFreq ); MSecConv = 1000.0 / (double)(LONGLONG)PerfFreq; hModulePsApi = LoadLibrary( "psapi.dll" ); if (hModulePsApi) { pInitializeProcessForWsWatch = (INITIALIZEPROCESSFORWSWATCH) GetProcAddress( hModulePsApi, "InitializeProcessForWsWatch" ); pRecordProcessInfo = (RECORDPROCESSINFO) GetProcAddress( hModulePsApi, "RecordProcessInfo" ); pGetWsChanges = (GETWSCHANGES) GetProcAddress( hModulePsApi, "GetWsChanges" ); } else { PopUpMsg( "Page fault profiling is not available.\nPSAPI.DLL is missing." ); } #if CREATE_THUNK_LOG fThunkLog = fopen( "thunk.log", "w" ); if (!fThunkLog) { PopUpMsg( "Could not open thunk log file" ); return FALSE; } #endif //CREATE_THUNK_LOG WinApp( hInstance, nShowCmd, ProgName, Arguments, GoImmediate ); if (ProgName[0]) { SaveOptions(); } #if CREATE_THUNK_LOG fclose(fThunkLog); #endif //CREATE_THUNK_LOG return 0; } VOID PrintLogTimes( FILE *fout ) { DWORD EndTime = EndingTick ? EndingTick : GetTickCount(); SYSTEMTIME EndingLocalTime; GetLocalTime( &EndingLocalTime ); fprintf( fout, "Starting Time: %02d:%02d:%02d.%03d\n", StartingLocalTime.wHour, StartingLocalTime.wMinute, StartingLocalTime.wSecond, StartingLocalTime.wMilliseconds ); fprintf( fout, "Ending Time: %02d:%02d:%02d.%03d\n", EndingLocalTime.wHour, EndingLocalTime.wMinute, EndingLocalTime.wSecond, EndingLocalTime.wMilliseconds ); DWORD ElapsedTime = EndTime - StartingTick; DWORD ElapsedHours = ElapsedTime / (1000 * 60 * 60); ElapsedTime = ElapsedTime % (1000 * 60 * 60); DWORD ElapsedMinutes = ElapsedTime / (1000 * 60); ElapsedTime = ElapsedTime % (1000 * 60); DWORD ElapsedSeconds = ElapsedTime / 1000; DWORD ElapsedMilliseconds = ElapsedTime % 1000; fprintf( fout, "Elapsed Time: %02d:%02d:%02d.%03d\n", ElapsedHours, ElapsedMinutes, ElapsedSeconds, ElapsedMilliseconds ); fprintf( fout, "\n" ); } void PrintLogType(FILE *fout, CAliasTable *pals, ULONG ulType, ULONG_PTR ulHandle, PUCHAR *pp) { char szAlias[kcchAliasNameMax]; ULONG len; switch(ulType) { case T_LPSTR: __try { len = strlen((LPSTR) *pp); if (len != 0) { fprintf( fout, "%10.10s ", *pp ); } else { fprintf( fout, "%10.10s ", "NULL"); } *pp += Align (sizeof(WCHAR), (len + 1)); } __except(EXCEPTION_EXECUTE_HANDLER) { fprintf( fout, "%10.10s ", "***GPF***"); return; } break; case T_LPWSTR: __try { len = wcslen((LPWSTR) *pp ); if (len != 0) { fprintf( fout, "%10.10ws ", (LPWSTR)*pp ); } else { fprintf( fout, "%10.10s ", "NULL"); } *pp += (len + 1) * sizeof(WCHAR); } __except(EXCEPTION_EXECUTE_HANDLER) { fprintf( fout, "%10.10s ", "***GPF***"); return; } break; case T_HACCEL: case T_HANDLE: case T_HBITMAP: case T_HBRUSH: case T_HCURSOR: case T_HDC: case T_HDCLPPOINT: case T_HDESK: case T_HDWP: case T_HENHMETAFILE: case T_HFONT: case T_HGDIOBJ: case T_HGLOBAL: case T_HGLRC: case T_HHOOK: case T_HICON: case T_HINSTANCE: case T_HKL: case T_HMENU: case T_HMETAFILE: case T_HPALETTE: case T_HPEN: case T_HRGN: case T_HWINSTA: case T_HWND: pals->Alias(ulType, ulHandle, szAlias); fprintf( fout, "%10.10s ", szAlias); break; case T_DWORD: case T_DWORDPTR: case T_DLONGPTR: fprintf( fout, "0x%08x ", ulHandle); break; } } BOOL LogApiCounts( PCHAR FileName ) { FILE *fout; ULONG i,j,k,len; LPSTR Name; DWORDLONG Time; double NewTime; double NewCalleeTime; CHAR LogFileName[MAX_PATH]; PTRACE_ENTRY TraceEntry; PAPI_INFO ApiInfo; PDLL_INFO DllInfo; PAPI_MASTER_TABLE ApiMaster; PAPI_TABLE ApiTable; PUCHAR p; ExpandEnvironmentStrings( FileName, LogFileName, MAX_PATH ); fout = fopen( LogFileName, "w" ); if (!fout) { PopUpMsg( "Could not open log file" ); return FALSE; } fprintf( fout, "-------------------------------------------\n" ); fprintf( fout, "-API Monitor Report\n" ); fprintf( fout, "-\n" ); if (*FastCounterAvail) { fprintf( fout, "-Times are in raw processor clock cycles\n" ); } else { fprintf( fout, "-Times are in milliseconds\n" ); } fprintf( fout, "-\n" ); fprintf( fout, "-------------------------------------------\n" ); fprintf( fout, "\n" ); PrintLogTimes( fout ); for (i=0; i<MAX_DLLS; i++) { DllInfo = &DllList[i]; if (!DllInfo->BaseAddress) { break; } ApiInfo = (PAPI_INFO)(DllInfo->ApiOffset + (ULONG_PTR)DllList); if (!DllList[i].ApiCount) { continue; } #if DEBUG_DUMP k = DllList[i].ApiCount; fprintf( fout, "---------------------------------------------------------------\n" ); fprintf( fout, "%s\n", DllInfo->Name ); fprintf( fout, "---------------------------------------------------------------\n" ); fprintf( fout, " Address ThunkAddr Count Time Name\n" ); fprintf( fout, "---------------------------------------------------------------\n" ); #else ULONG_PTR *ApiAry = NULL; ApiInfo = (PAPI_INFO)(DllList[i].ApiOffset + (PUCHAR)DllList); for (j=0,k=0; j<DllList[i].ApiCount; j++) { if (ApiInfo[j].Count) { k += 1; } } if (!k) { continue; } ApiAry = (ULONG_PTR *) MemAlloc( (k+64) * sizeof(ULONG_PTR) ); if (!ApiAry) { continue; } for (j=0,k=0; j<DllList[i].ApiCount; j++) { if (ApiInfo[j].Count) { ApiAry[k++] = (ULONG_PTR)&ApiInfo[j]; } } fprintf( fout, "-----------------------------------------------------------\n" ); if (DllInfo->LoadCount > 1) fprintf( fout, "%s (Loaded %d times)\n", DllInfo->Name, DllInfo->LoadCount); else fprintf( fout, "%s\n", DllInfo->Name ); fprintf( fout, "-----------------------------------------------------------\n" ); fprintf( fout, " Count Time Time - Callees Name\n" ); fprintf( fout, "-----------------------------------------------------------\n" ); #endif for (j=0; j<k; j++) { #if DEBUG_DUMP PAPI_INFO ApiData = &ApiInfo[j]; #else PAPI_INFO ApiData = (PAPI_INFO)ApiAry[j]; #endif Name = (LPSTR)(ApiData->Name + (LPSTR)MemPtr); NewTime = (double)(LONGLONG)ApiData->Time; NewCalleeTime = (double)(LONGLONG)ApiData->CalleeTime; if (!*FastCounterAvail) { NewTime = NewTime * MSecConv; NewCalleeTime = NewCalleeTime * MSecConv; } #if DEBUG_DUMP fprintf( fout, " %08x %08x %8d %16.4f %s\n", ApiData->Address, ApiData->ThunkAddress, ApiData->Count, NewTime, Name ); #else fprintf( fout, " %8d %16.4f %16.4f %s", ApiData->Count, NewTime, NewTime - NewCalleeTime, Name ); if (ApiData->NestCount != 0) fprintf(fout,"*\n"); else fprintf(fout,"\n"); #endif } #ifndef DEBUG_DUMP MemFree( ApiAry ); #endif } if (*WndProcCount) { fprintf( fout, "---------------------------------------------------------------\n" ); fprintf( fout, "Window Procedures\n"); fprintf( fout, "---------------------------------------------------------------\n" ); fprintf( fout, " Count Time Time - Callees Class Name\n" ); fprintf( fout, "---------------------------------------------------------------\n" ); ApiInfo = (PAPI_INFO)(*WndProcOffset + (ULONG_PTR)DllList); for (i=0; i<*WndProcCount; i++,ApiInfo++) { if (ApiInfo->Count != 0) { Name = (LPSTR)(ApiInfo->Name + (LPSTR)MemPtr); NewTime = (double)(LONGLONG) ApiInfo->Time; NewCalleeTime = (double)(LONGLONG) ApiInfo->CalleeTime; if (!*FastCounterAvail) { NewTime = NewTime * MSecConv; NewCalleeTime = NewCalleeTime * MSecConv; } fprintf( fout, " %8d %16.4f %16.4f %s", ApiInfo->Count, NewTime, NewTime - NewCalleeTime, Name ); if (ApiInfo->NestCount != 0) fprintf(fout,"*\n"); else fprintf(fout,"\n"); } } } fclose( fout ); return TRUE; } BOOL LogApiTrace( PCHAR FileName ) { FILE *fout; ULONG i,j,k,len, ArgCount; LPSTR Name; DWORDLONG Time; DWORDLONG _BaseTime; double EnterTime; double Duration; CHAR LogFileName[MAX_PATH]; PTRACE_ENTRY TraceEntry; PAPI_INFO ApiInfo; PDLL_INFO DllInfo; PDLL_INFO CallerDllInfo; LPSTR DllName; PAPI_MASTER_TABLE ApiMaster; PAPI_TABLE ApiTable; PUCHAR p; ExpandEnvironmentStrings( FileName, LogFileName, MAX_PATH ); fout = fopen( LogFileName, "w" ); if (!fout) { PopUpMsg( "Could not open trace file" ); return FALSE; } WaitForSingleObject( ApiTraceMutex, INFINITE ); if (ApiMonOptions.Aliasing) { fprintf( fout, "LastError ReturnVal Name\n" ); } else { fprintf( fout, "Thd Lev Start Time Duration ReturnVal LastError Caller Name Arguments\n" ); } CAliasTable als; TraceEntry = TraceBuffer->Entry; _BaseTime = TraceEntry->EnterTime; for (i=0; i<TraceBuffer->Count; i++) { ApiInfo = GetApiInfoByAddress( TraceEntry->Address, &DllInfo ); if (ApiInfo) { EnterTime = (double)(LONGLONG)(TraceEntry->EnterTime - _BaseTime); Duration = (double)(LONGLONG)TraceEntry->Duration; if (!*FastCounterAvail) { EnterTime = EnterTime * MSecConv; Duration = Duration * MSecConv; } CallerDllInfo = GetModuleForAddr(TraceEntry->Caller); if (CallerDllInfo) DllName = CallerDllInfo->Name; else DllName = "???"; ApiTable = NULL; if (TraceEntry->ApiTableIndex) { p = (PUCHAR) ((PUCHAR)TraceEntry + sizeof(TRACE_ENTRY)); j = 0; while( ApiTables[j].Name ) { if (_stricmp( ApiTables[j].Name, DllInfo->Name ) == 0) { ApiTable = &ApiTables[j].ApiTable[TraceEntry->ApiTableIndex-1]; break; } j += 1; } } if (ApiMonOptions.Aliasing) { if (ApiTable) { p = (PUCHAR) ((PUCHAR)TraceEntry + sizeof(TRACE_ENTRY)); fprintf( fout, "0x%08x ", TraceEntry->LastError); PrintLogType(fout, &als, ApiTable->RetType, TraceEntry->ReturnValue, &p); fprintf( fout, "%-25.25s ", (LPSTR)(ApiInfo->Name + (LPSTR)MemPtr)); for (k=0; k<ApiTable->ArgCount; k++) { PrintLogType(fout, &als, LOWORD(ApiTable->ArgType[k]), TraceEntry->Args[k], &p); } fprintf( fout, "\n"); } } else { fprintf( fout, "%3d %3d %16.4f %16.4f 0x%08x 0x%08x %-12s 0x%08x %-24s", TraceEntry->ThreadNum, TraceEntry->Level, EnterTime, Duration, TraceEntry->ReturnValue, TraceEntry->LastError, DllName, TraceEntry->Caller, (LPSTR)(ApiInfo->Name + (LPSTR)MemPtr)); ArgCount = (ApiTable && ApiTable->ArgCount) ? ApiTable->ArgCount : DFLT_TRACE_ARGS; for (k=0; k<ArgCount; k++) fprintf(fout, " 0x%08x",TraceEntry->Args[k]); fprintf(fout, "\n"); if (ApiTable) { for (k=0; k<ApiTable->ArgCount; k++) { switch( LOWORD(ApiTable->ArgType[k]) ) { case T_LPSTR: case T_LPSTRC: fprintf( fout, "%s\n", p ); len = strlen( (LPSTR) p ) + 1; len = Align( sizeof(WCHAR), len ); p += len; break; case T_LPWSTR: case T_LPWSTRC: case T_UNISTR: case T_OBJNAME: fwprintf( fout, L"%s\n", (LPWSTR)p ); len = (wcslen( (LPWSTR) p ) + 1) * sizeof(WCHAR); p += len; break; } } } } TraceEntry = (PTRACE_ENTRY) ((PUCHAR)TraceEntry + TraceEntry->SizeOfStruct); } } ReleaseMutex( ApiTraceMutex ); fclose( fout ); return TRUE; } PDLL_INFO GetDllInfoByName( LPSTR DllName ) { ULONG i; if (!DllName) { return NULL; } for (i=0; i<MAX_DLLS; i++) { PDLL_INFO DllInfo = &DllList[i]; if (!DllInfo->BaseAddress) { break; } if (_stricmp(DllName, DllInfo->Name) == 0) { return DllInfo; } } return NULL; } PAPI_INFO GetApiInfoByAddress( ULONG_PTR Address, PDLL_INFO *DllInfo ) { ULONG i; PAPI_INFO ApiInfo; LONG High; LONG Low; LONG Middle; for (i=0; i<MAX_DLLS; i++) { if (DllList[i].BaseAddress && Address >= DllList[i].BaseAddress && Address < DllList[i].BaseAddress + DllList[i].Size) { // // find the api in the dll // ApiInfo = (PAPI_INFO)(DllList[i].ApiOffset + (PUCHAR)DllList); Low = 0; High = DllList[i].ApiCount - 1; while (High >= Low) { Middle = (Low + High) >> 1; if (Address < ApiInfo[Middle].Address) { High = Middle - 1; } else if (Address > ApiInfo[Middle].Address) { Low = Middle + 1; } else { *DllInfo = &DllList[i]; return &ApiInfo[Middle]; } } } } return NULL; } VOID SetApiCounterEnabledFlag( BOOL Flag, LPSTR DllName ) { ULONG i; if (DllName) { PDLL_INFO DllInfo = GetDllInfoByName( DllName ); if (DllInfo) { DllInfo->Enabled = Flag; } return; } for (i=0; i<MAX_DLLS; i++) { PDLL_INFO DllInfo = &DllList[i]; if (!DllInfo->BaseAddress) { break; } DllInfo->Enabled = Flag; } } VOID ClearApiCounters( VOID ) { ULONG i,j; *ApiCounter = 0; PAPI_INFO ApiInfo; for (i=0; i<MAX_DLLS; i++) { if (DllList[i].BaseAddress) { ApiInfo = (PAPI_INFO)(DllList[i].ApiOffset + (PUCHAR)DllList); for (j=0; j<DllList[i].ApiCount; j++) { ApiInfo[j].Count = 0; ApiInfo[j].Time = 0; ApiInfo[j].CalleeTime = 0; ApiInfo[j].HardFault = 0; ApiInfo[j].SoftFault = 0; ApiInfo[j].CodeFault = 0; ApiInfo[j].DataFault = 0; } } } ApiInfo = (PAPI_INFO)(*WndProcOffset + (PUCHAR)DllList); for (i=0; i<*WndProcCount; i++) { ApiInfo[i].Count = 0; ApiInfo[i].Time = 0; ApiInfo[i].CalleeTime = 0; ApiInfo[i].HardFault = 0; ApiInfo[i].SoftFault = 0; ApiInfo[i].CodeFault = 0; ApiInfo[i].DataFault = 0; } StartingTick = GetTickCount(); GetLocalTime(&StartingLocalTime); } VOID ClearApiTrace( VOID ) { WaitForSingleObject( ApiTraceMutex, INFINITE ); TraceBuffer->Offset = 0; TraceBuffer->Count = 0; ReleaseMutex(ApiTraceMutex); } void __cdecl dprintf(char *format, ...) { char buf[1024]; va_list arg_ptr; va_start(arg_ptr, format); _vsnprintf(buf, sizeof(buf), format, arg_ptr); OutputDebugString( buf ); return; } LPVOID MemAlloc( ULONG Size ) { PVOID _MemPtr = malloc( Size ); if (_MemPtr) { ZeroMemory( _MemPtr, Size ); } return _MemPtr; } VOID MemFree( LPVOID _MemPtr ) { free( _MemPtr ); }
[ "blindtiger@foxmail.com" ]
blindtiger@foxmail.com
621e159b99056d7dcb3092218b61831880046571
49d3699c04b8dd4bbb19002dad627613a0bfb738
/LSCNS/src/app/main.cpp
3564f3d47a4f168ef253f5661ea4bc92705bbbb6
[]
no_license
karthigeyanr/LSCNS
0b19945f19f4faa68f1f9c5009416f5504f34dd8
e177dc4a42c20adf5e1d14bed86b5cb8bd384ff4
refs/heads/master
2021-01-01T20:17:29.679289
2015-09-19T12:39:38
2015-09-19T12:39:38
42,768,494
0
1
null
null
null
null
UTF-8
C++
false
false
638
cpp
#include <iostream> #include "wch.hpp" #include "keymap.hpp" #include "valuemap.hpp" using namespace std; int main(int argc, char *argv[]) { //Watcher w; //cout<<w.init((char *)"../../shared/", NULL)<<endl; //w.watch(); STR_ID id; printf("%d\n", KeyMap::getKeyId("sample", id)); printf("%p\t%s\n", (void *)id, (char *)id); printf("%d\n", KeyMap::getKeyId("sample", id)); printf("%p\t%s\n", (void *)id, (char *)id); printf("%d\n", KeyMap::getKeyId("sample test", id)); printf("%p\t%s\n", (void *)id, (char *)id); printf("%d\n", KeyMap::getKeyId("sample test", id)); printf("%p\t%s\n", (void *)id, (char *)id); return 0; }
[ "elcot@boss" ]
elcot@boss
4be5afd9be86a0aa571adae4acc75ba6c7887c62
31859a8484050ac73b9e7f156820815d8e7f59c5
/gripper-final/gripper-final.ino
0fc71e57a10dd20cd5c8d9de59f4aa778b4c5308
[]
no_license
nikh1508/wro_arc-2018
b1b975b1a9aedd0a0a61e7e42347725759b4cb2b
6f659a98018168f13dd6c3f8bc4dc177bc2b7779
refs/heads/master
2020-03-22T00:26:33.546975
2018-09-19T10:18:12
2018-09-19T10:18:12
139,244,538
1
0
null
null
null
null
UTF-8
C++
false
false
727
ino
#define ARM_INIT 1700 #define GRIPPER_INIT 1500 #include <Servo.h> Servo gripper; Servo arm; int gripper_cur = GRIPPER_INIT , arm_cur = ARM_INIT; //Current values of Servos in micro-seconds int arm_last = ARM_INIT; //Initial values of servos in micro-seconds int gripper_last = GRIPPER_INIT; int GRIPPER_DLY = 1200; int ARM_DLY = 2500; void setup() { Serial.begin(115200); gripper.attach(40, 750, 2250); arm.attach(42, 750, 2250); gripper.writeMicroseconds(GRIPPER_INIT); arm.writeMicroseconds(ARM_INIT); Serial.println("Started Servo Test."); } void loop() { if (Serial.available()) { char ch = Serial.read(); if (ch == 's') startSequence(); else reset(); } }
[ "nikh150897@gmail.com" ]
nikh150897@gmail.com
c9da5355d5d1c9e68d22a92d0b4db22001dd9e83
7eb9e805a45c68603c5ec160d6101df3814352ac
/extern/json/include/tao/json/internal/single.hpp
2a46f8ebbc958451a15a8d4b006913445919342f
[ "Apache-2.0", "BSD-3-Clause", "MIT", "BSL-1.0" ]
permissive
Kashio/xenium
b3ca6688151ccb19be13ad4446a16eee8faada5b
ddc13eba4e4be3656e7c521c538df1b631a50d13
refs/heads/master
2022-12-18T06:19:17.739829
2020-09-28T14:27:54
2020-09-28T14:27:54
299,101,676
0
0
MIT
2020-09-27T19:13:52
2020-09-27T19:13:51
null
UTF-8
C++
false
false
927
hpp
// Copyright (c) 2016-2020 Dr. Colin Hirsch and Daniel Frey // Please see LICENSE for license or visit https://github.com/taocpp/json/ #ifndef TAO_JSON_INTERNAL_SINGLE_HPP #define TAO_JSON_INTERNAL_SINGLE_HPP #include <utility> #include "../forward.hpp" #include "pair.hpp" namespace tao::json::internal { template< template< typename... > class Traits > struct single { mutable basic_value< Traits > value; template< typename U > single( U&& v ) // NOLINT(bugprone-forwarding-reference-overload) : value( std::forward< U >( v ) ) {} single( std::initializer_list< pair< Traits > >&& l ) : value( std::move( l ) ) {} single( const std::initializer_list< pair< Traits > >& l ) : value( l ) {} single( std::initializer_list< pair< Traits > >& l ) : value( l ) {} }; } // namespace tao::json::internal #endif
[ "roy.mor173@gmail.com" ]
roy.mor173@gmail.com
00e2fd003f9bab1e261dafae8b8ed95bafeaeed4
5f975169aeb67c7cd0a08683e6b9eee253f84183
/algorithms/easy/0762. Prime Number of Set Bits in Binary Representation.h
6237f9ea45f50ec452fabb52dad7bebe8d1ed508
[ "MIT" ]
permissive
MultivacX/leetcode2020
6b743ffb0d731eea436d203ccb221be14f2346d3
83bfd675052de169ae9612d88378a704c80a50f1
refs/heads/master
2023-03-17T23:19:45.996836
2023-03-16T07:54:45
2023-03-16T07:54:45
231,091,990
0
0
null
null
null
null
UTF-8
C++
false
false
718
h
// 762. Prime Number of Set Bits in Binary Representation // https://leetcode.com/problems/prime-number-of-set-bits-in-binary-representation/ // Runtime: 32 ms, faster than 46.75% of C++ online submissions for Prime Number of Set Bits in Binary Representation. // Memory Usage: 6.4 MB, less than 34.66% of C++ online submissions for Prime Number of Set Bits in Binary Representation. class Solution { public: int countPrimeSetBits(int L, int R) { static const unordered_set<int> primes{ 2, 3, 5, 7, 11, 13, 17, 19 }; int cnt = 0; for (int i = L; i <= R; ++i) if (primes.count(__builtin_popcount(i))) ++cnt; return cnt; } };
[ "" ]
7d3ac08e2eb56e4ca4bedc5cd693935dfeb3049c
ceac59f034f560602da63f8f93eff80476ce4d37
/third_party/asio/include/asio/detail/call_stack.hpp
046ebccfdbfa2b01eba11dfe3596330cd49d5773
[ "BSL-1.0" ]
permissive
ludocosmo/wrtc-client
ade5e183db3ed0d5f86e79f06fe54cb7dad9ff4d
0efa2c6c79b865c9128b0eecf85ec133862b8cf6
refs/heads/master
2021-05-05T14:11:03.523903
2018-01-22T02:30:11
2018-01-22T02:30:11
118,438,078
0
0
null
null
null
null
UTF-8
C++
false
false
3,041
hpp
// // detail/call_stack.hpp // ~~~~~~~~~~~~~~~~~~~~~ // // Copyright (c) 2003-2016 Christopher M. Kohlhoff (chris at kohlhoff dot 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) // #ifndef ASIO_DETAIL_CALL_STACK_HPP #define ASIO_DETAIL_CALL_STACK_HPP #if defined(_MSC_VER) && (_MSC_VER >= 1200) # pragma once #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) #include "asio/detail/config.hpp" #include "asio/detail/noncopyable.hpp" #include "asio/detail/tss_ptr.hpp" #include "asio/detail/push_options.hpp" namespace asio { namespace detail { // Helper class to determine whether or not the current thread is inside an // invocation of io_context::run() for a specified io_context object. template <typename Key, typename Value = unsigned char> class call_stack { public: // Context class automatically pushes the key/value pair on to the stack. class context : private noncopyable { public: // Push the key on to the stack. explicit context(Key* k) : key_(k), next_(call_stack<Key, Value>::top_) { value_ = reinterpret_cast<unsigned char*>(this); call_stack<Key, Value>::top_ = this; } // Push the key/value pair on to the stack. context(Key* k, Value& v) : key_(k), value_(&v), next_(call_stack<Key, Value>::top_) { call_stack<Key, Value>::top_ = this; } // Pop the key/value pair from the stack. ~context() { call_stack<Key, Value>::top_ = next_; } // Find the next context with the same key. Value* next_by_key() const { context* elem = next_; while (elem) { if (elem->key_ == key_) return elem->value_; elem = elem->next_; } return 0; } private: friend class call_stack<Key, Value>; // The key associated with the context. Key* key_; // The value associated with the context. Value* value_; // The next element in the stack. context* next_; }; friend class context; // Determine whether the specified owner is on the stack. Returns address of // key if present, 0 otherwise. static Value* contains(Key* k) { context* elem = top_; while (elem) { if (elem->key_ == k) return elem->value_; elem = elem->next_; } return 0; } // Obtain the value at the top of the stack. static Value* top() { context* elem = top_; return elem ? elem->value_ : 0; } private: // The top of the stack of calls for the current thread. static tss_ptr<context> top_; }; template <typename Key, typename Value> tss_ptr<typename call_stack<Key, Value>::context> call_stack<Key, Value>::top_; } // namespace detail } // namespace asio #include "asio/detail/pop_options.hpp" #endif // ASIO_DETAIL_CALL_STACK_HPP
[ "ludovic.roux@cosmosoftware.io" ]
ludovic.roux@cosmosoftware.io
bd8c64db72f94ca8b5e1d9c82465b543120a913e
a9dc893b92189ece0f8e513d3722650d97db6f2d
/dat.h
a0a54eee5f3546f652f2aa448f980e984ad080d2
[]
no_license
zhouxianggen/dat
21eefcea60ad1f5e9947f317cca7709029a7b18d
66feeb948a6123fdc1ba7d0520155ab3ced85d4c
refs/heads/master
2021-01-13T01:37:04.478962
2014-01-16T08:10:50
2014-01-16T08:10:50
15,897,853
1
0
null
null
null
null
UTF-8
C++
false
false
1,646
h
/* Double Array Trie change from "http://chasen.org/~taku/software/darts/#download" Copyright(C) 2013-2014 <zhouxg@ucweb.org> */ #ifndef UCLTP_DAT_H_ #define UCLTP_DAT_H_ #include <vector> using std::vector; #include "def.h" namespace ucltp { class Dat { public: match_result_t match(const char* str); match_result_t match(const vector<char_t>& chars, int start); int build(const char* fdict); int load(const char *file); int save(const char *file); size_t nonzero_size() const { size_t result = 0; for (size_t i = 0; i < _size; ++i) if (_array[i].check) ++result; return result; } size_t size() { return _size; } explicit Dat(): _size(0), _array(0), _used(0), _error(0), _mmaped(false) {} virtual ~Dat() { clear(); } private: struct entry_t { string key; int value; bool operator <(const entry_t &e2) const { return key < e2.key; } entry_t(const string& k="", int v=0) : key(k), value(v) {} }; struct node_t { uchar code; size_t depth; size_t left; size_t right; }; struct unit_t { int base; size_t check; }; unit_t* _array; size_t _size; uchar* _used; size_t _next_check_pos; size_t _progress; int _error; bool _mmaped; void clear(); int build(const vector<entry_t>& entries); size_t resize(const size_t new_size); size_t fetch(const vector<entry_t>& entries, const node_t& parent, vector<node_t>& siblings); size_t insert(const vector<entry_t>& entries, const vector<node_t>& siblings); }; } #endif
[ "zhouxianggen@gmail.com" ]
zhouxianggen@gmail.com
fb989b163e925883bf9c28ac2c3ba85d5b2d124e
00a3dceb1a500e2974d04319a3ce9001a45e4500
/smtk/session/polygon/pybind11/PybindCreateEdgeFromVertices.h
50b4826016073af88efc75344a935e800b9b0f59
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
WarfareCode/SMTK
87eeabdfc99489b05e1a8f726da0ea03564158bd
2c5c74cb76e7202b57dd5c74955ef7e620baa298
refs/heads/master
2021-05-26T04:00:54.538167
2020-04-06T19:02:28
2020-04-06T19:02:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,278
h
//========================================================================= // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. // // This software is distributed WITHOUT ANY WARRANTY; without even // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR // PURPOSE. See the above copyright notice for more information. //========================================================================= #ifndef pybind_smtk_session_polygon_operators_CreateEdgeFromVertices_h #define pybind_smtk_session_polygon_operators_CreateEdgeFromVertices_h #include <pybind11/pybind11.h> #include "smtk/session/polygon/operators/CreateEdgeFromVertices.h" namespace py = pybind11; PySharedPtrClass< smtk::session::polygon::CreateEdgeFromVertices > pybind11_init_smtk_session_polygon_CreateEdgeFromVertices(py::module &m, PySharedPtrClass< smtk::session::polygon::Operation, smtk::operation::XMLOperation >& parent) { PySharedPtrClass< smtk::session::polygon::CreateEdgeFromVertices > instance(m, "CreateEdgeFromVertices", parent); instance .def(py::init<::smtk::session::polygon::CreateEdgeFromVertices const &>()) .def("deepcopy", (smtk::session::polygon::CreateEdgeFromVertices & (smtk::session::polygon::CreateEdgeFromVertices::*)(::smtk::session::polygon::CreateEdgeFromVertices const &)) &smtk::session::polygon::CreateEdgeFromVertices::operator=) .def_static("create", (std::shared_ptr<smtk::session::polygon::CreateEdgeFromVertices> (*)()) &smtk::session::polygon::CreateEdgeFromVertices::create) .def_static("create", (std::shared_ptr<smtk::session::polygon::CreateEdgeFromVertices> (*)(::std::shared_ptr<smtk::session::polygon::CreateEdgeFromVertices> &)) &smtk::session::polygon::CreateEdgeFromVertices::create, py::arg("ref")) .def("shared_from_this", (std::shared_ptr<const smtk::session::polygon::CreateEdgeFromVertices> (smtk::session::polygon::CreateEdgeFromVertices::*)() const) &smtk::session::polygon::CreateEdgeFromVertices::shared_from_this) .def("shared_from_this", (std::shared_ptr<smtk::session::polygon::CreateEdgeFromVertices> (smtk::session::polygon::CreateEdgeFromVertices::*)()) &smtk::session::polygon::CreateEdgeFromVertices::shared_from_this) ; return instance; } #endif
[ "bob.obara@kitware.com" ]
bob.obara@kitware.com
62590bbc1b3937f9772da52474bf4865f8c1b106
5da2abc29b6ca647fa75957614e7f5cf04f90213
/app/src/main/cpp/global.h
cb0c1a4a5fbcf3a6ec0b9e9649923549ecdc525e
[]
no_license
ThisIsSimple/GameGraphicProgrammingHW1
91b0ce2e97149a6cb9e2d9936a0e2118b2b3d883
73a170f2ec828da9cf0bb99080dd194ab308fa1a
refs/heads/master
2022-04-23T18:39:53.268558
2020-04-23T07:46:59
2020-04-23T07:46:59
258,130,770
2
0
null
null
null
null
UTF-8
C++
false
false
856
h
#ifndef OPENGLES_GLOBAL_H #define OPENGLES_GLOBAL_H #include <jni.h> #include <android/log.h> #include <android/asset_manager.h> #include <android/asset_manager_jni.h> #include <GLES2/gl2.h> #include <glm/glm.hpp> #include <glm/gtc/matrix_transform.hpp> #include <glm/gtc/type_ptr.hpp> #include <glm/gtx/transform.hpp> #include <vector> #define ANDROID_LOG_TAG "OpenGL ES" #define LOG_PRINT_DEBUG(...) __android_log_print(ANDROID_LOG_DEBUG, ANDROID_LOG_TAG, __VA_ARGS__) #define LOG_PRINT_WARN(...) __android_log_print(ANDROID_LOG_WARN, ANDROID_LOG_TAG, __VA_ARGS__) #define LOG_PRINT_ERROR(...) __android_log_print(ANDROID_LOG_ERROR, ANDROID_LOG_TAG, __VA_ARGS__) using namespace std; using namespace glm; class Vertex { vec3 pos; vec3 nor; vec2 tex; }; typedef GLushort Index; #endif // OPENGLES_GLOBAL_H
[ "cordelia273@naver.com" ]
cordelia273@naver.com
4e3fdcd36fc2b46d8ed7e26dda881de8fd28dfe8
7fa68323fac414021d7b8bb9bb197f46978da14a
/linecomponent.cpp
7309b93e6889ced7ec0d2e8fabce7f06eae8a1bc
[]
no_license
RahulXTmCoding/-Digital-Education-Tool
9ba771d9fd8a0d9bd42209cb4382238f008a379d
5dd1d1b6f8a25a0a17b78b05dc8d38c8d309be91
refs/heads/master
2022-12-25T22:17:55.856882
2020-09-20T11:09:06
2020-09-20T11:09:06
270,752,880
0
2
null
null
null
null
UTF-8
C++
false
false
3,204
cpp
#include "linecomponent.h" int LineComponent::getX() const { return x; } void LineComponent::setX(int value) { x = value; } int LineComponent::getY() const { return y; } void LineComponent::setY(int value) { y = value; } int LineComponent::getX2() const { return x2; } void LineComponent::setParent(AModel *model) { parent=model; } AModel *LineComponent::getParent() { return parent; } void LineComponent::setX2(int value) { x2 = value; } int LineComponent::getY2() const { return y2; } void LineComponent::setY2(int value) { y2 = value; } QPen *LineComponent::getPen() const { return pen; } void LineComponent::setPen(QPen *value) { pen = value; } QBrush *LineComponent::getBrush() const { return brush; } void LineComponent::setBrush(QBrush *value) { brush = value; } int LineComponent::getRectNo() { return rectNo; } void LineComponent::setRectNo(int value) { rectNo = value; } LineComponent::LineComponent() { pen=NULL; brush=NULL; } void LineComponent::draw(QPainter *painter) { if(pen==NULL) { pen=new QPen(); pen->setWidth(painter->pen().width()); pen->setColor(painter->pen().color()); } painter->setPen(*pen); painter->drawLine(this->getX(),this->getY(),this->getX2(),this->getY2()); } bool LineComponent::isClicked(QPoint *point) { QPainterPath *path=new QPainterPath(); if(getRectNo()!=-1) { path=new QPainterPath(); path->addRect(x-5,y-5,10,10); if(path->contains(*point)) { setRectNo(1); return true; } path=new QPainterPath(); path->addRect(x2-5,y2-5,10,10); if(path->contains(*point)) { setRectNo(2); return true; } } double d1; double d2; double td; d1=sqrt(pow(point->x()-this->getX(),2)+pow(point->y()-this->getY(),2)); d2=sqrt(pow(point->x()-this->getX2(),2)+pow(point->y()-this->getY2(),2)); td=sqrt(pow(this->getX()-this->getX2(),2)+pow(this->getY()-this->getY2(),2)); if(abs(td-(d1+d2))<.2) { setRectNo(0); return true; } setRectNo(-1); return false; } QString LineComponent::componentName() { return name; } void LineComponent::changeCompoentName(QString name) { this->name=name; } QJsonObject *LineComponent::toJsonObject() { QJsonObject *obj=new QJsonObject(); obj->insert("code",2); obj->insert("x",this->getX()); obj->insert("y",this->getY()); obj->insert("x2",this->getX2()); obj->insert("y2",this->getY2()); obj->insert("color",this->getPen()->color().name()); obj->insert("pwidth",this->getPen()->width()); return obj; } void LineComponent::select(QPainter *p) { p->drawRect(x-5,y-5,10,10); p->drawRect(x2-5,y2-5,10,10); } void LineComponent::update(int x, int y) { int rect=getRectNo(); if(rect==0) { this->setX(this->getX()+x); this->setX2(this->getX2()+x); this->setY(this->getY()+y); this->setY2(this->getY2()+y); } else if(rect==1) { this->setX(this->getX()+x); this->setY(this->getY()+y); } else if(rect==2) { this->setX2(this->getX2()+x); this->setY2(this->getY2()+y); } }
[ "rahul@rahul-HP-Notebook" ]
rahul@rahul-HP-Notebook
fe20562b84d4e26470c76db90290ea06775be1bd
e457c3e9379bb32feb20dc410c2f98b5c9ad03d2
/modules/30-variables/30-variables-naming/main.cpp
b04b2ece28aec1372377a0c7dba8a81a1a00bbd0
[]
no_license
hexlet-basics/exercises-cpp
70ecdd0631fcc20bdd90afcc9fba746557eb7858
f52a72d43cbbd01c39f7db359c84943da104c73a
refs/heads/main
2023-08-22T23:57:26.386168
2023-08-22T09:07:28
2023-08-22T09:07:28
196,867,448
3
22
null
2023-08-23T06:24:35
2019-07-14T17:56:11
C++
UTF-8
C++
false
false
122
cpp
#include <iostream> int main() { // BEGIN int likes_count { 2 }; std::cout << likes_count << std::endl; // END }
[ "anshlyapnikov@yandex.ru" ]
anshlyapnikov@yandex.ru
f57b248cc2a58cb3deffea503236d915b23d97a7
a09400aa22a27c7859030ec470b5ddee93e0fdf0
/stalkersoc/source_script/ui_export_script.cpp
fb16c88fce35ca64f3ceebbcfefd2ba55da99e13
[]
no_license
BearIvan/Stalker
4f1af7a9d6fc5ed1597ff13bd4a34382e7fdaab1
c0008c5103049ce356793b37a9d5890a996eed23
refs/heads/master
2022-04-04T02:07:11.747666
2020-02-16T10:51:57
2020-02-16T10:51:57
160,668,112
1
1
null
null
null
null
UTF-8
C++
false
false
1,296
cpp
#include "pch_script.h" #include "script_ui_registrator.h" #include "UI\UIMultiTextStatic.h" #include "MainMenu.h" using namespace luabind; CMainMenu* MainMenu(); bool FTrue(CMainMenu*) { return true; } #pragma optimize("s",on) void UIRegistrator::script_register(lua_State *L) { module(L) [ class_<CGameFont>("CGameFont") .enum_("EAligment") [ value("alLeft", int(CGameFont::alLeft)), value("alRight", int(CGameFont::alRight)), value("alCenter", int(CGameFont::alCenter)) ], class_<CUICaption>("CUICaption") .def("addCustomMessage", &CUICaption::addCustomMessage) .def("setCaption", &CUICaption::setCaption), class_<Patch_Dawnload_Progress>("Patch_Dawnload_Progress") .def("GetInProgress", &Patch_Dawnload_Progress::GetInProgress) .def("GetStatus", &Patch_Dawnload_Progress::GetStatus) .def("GetFlieName", &Patch_Dawnload_Progress::GetFlieName) .def("GetProgress", &Patch_Dawnload_Progress::GetProgress), class_<CMainMenu, CDialogHolder>("CMainMenu") .def("GetPatchProgress", &CMainMenu::GetPatchProgress) .def("CancelDownload", &CMainMenu::CancelDownload) .def("ValidateCDKey", &FTrue) .def("GetGSVer", &CMainMenu::GetGSVer) ], module(L,"main_menu") [ def("get_main_menu", &MainMenu) ]; }
[ "i-sobolevskiy@mail.ru" ]
i-sobolevskiy@mail.ru
a69cdd2b8410c67bbfc11f03f64af8c3c7b9ab95
b66f98b564a0b0ab5a87f5c5447dbf5490635afa
/Code/Common/src/sitkTransform.cxx
97b74de11b7cbfbbb71b7872c52a6be53aea6169
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
jhlegarreta/SimpleITK
c3f978b9e146dec00dd16da0eabb5ecc5c7cbe38
6434f18f883967943d7f291a4b137c3ed205e7c0
refs/heads/master
2021-05-05T15:38:54.786321
2018-01-11T16:59:12
2018-01-11T16:59:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
24,539
cxx
/*========================================================================= * * Copyright Insight Software Consortium * * 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.txt * * 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 "sitkPimpleTransform.hxx" #include "sitkTransform.h" #include "sitkTemplateFunctions.h" #include "sitkMemberFunctionFactory.h" #include "sitkImageConvert.h" #include "itkTransformBase.h" #include "itkTransformFactory.h" #include "itkIdentityTransform.h" #include "itkTranslationTransform.h" #include "itkScaleTransform.h" #include "itkScaleLogarithmicTransform.h" #include "itkSimilarity2DTransform.h" #include "itkSimilarity3DTransform.h" #include "itkEuler2DTransform.h" #include "itkEuler3DTransform.h" #include "itkQuaternionRigidTransform.h" #include "itkVersorTransform.h" #include "itkVersorRigid3DTransform.h" #include "itkScaleSkewVersor3DTransform.h" #include "itkScaleVersor3DTransform.h" #include "itkAffineTransform.h" #include "itkCompositeTransform.h" #include "itkDisplacementFieldTransform.h" #include "itkBSplineTransform.h" #include "itkTransformFileReader.h" #include "itkTransformFileWriter.h" #include "itkVectorImage.h" #include "itkCommand.h" #include <memory> #include "nsstd/type_traits.h" namespace itk { namespace simple { namespace { // // Transform trait class to map to correct special transform type. template<class T, unsigned int ImageDimension> class TransformTraits { public: // undefined types for non-2D/3D }; template<class T> class TransformTraits<T,2> { public: typedef itk::Euler2DTransform<T> EulerTransformType; typedef itk::Similarity2DTransform<T> SimilarityTransformType; }; template<class T> class TransformTraits<T,3> { public: typedef itk::Euler3DTransform<T> EulerTransformType; typedef itk::Similarity3DTransform<T> SimilarityTransformType; }; template<unsigned int Dimension> bool RegisterMoreTransforms(void) { typedef itk::MatrixOffsetTransformBase<double, Dimension, Dimension> MatrixOffsetTransformType; itk::TransformFactory<MatrixOffsetTransformType>::RegisterTransform(); // Only BSpline transforms of order 3 are registered in ITK typedef itk::BSplineTransform<double, Dimension, 0> BSplineTransformO0Type; itk::TransformFactory<BSplineTransformO0Type>::RegisterTransform(); typedef itk::BSplineTransform<double, Dimension, 1> BSplineTransformO1Type; itk::TransformFactory<BSplineTransformO1Type>::RegisterTransform(); typedef itk::BSplineTransform<double, Dimension, 2> BSplineTransformO2Type; itk::TransformFactory<BSplineTransformO2Type>::RegisterTransform(); return true; } bool initialized = RegisterMoreTransforms<2>() && RegisterMoreTransforms<3>(); /** \class HolderCommand * \brief An ITK Command class to hold a object until destruction * * This command is to add resource management, by utilizing * the lifetime of a Command added to an object is about the same as * that managed object. So this command holds onto a resource or object for * lifetime of itself. By adding as a command to an ITK object it will * be released on destruction of the ITK object ( subject to the * reference counting on the Command ). */ template< class T > class HolderCommand : public itk::Command { public: typedef T ObjectType; typedef HolderCommand Self; typedef itk::Command Superclass; typedef itk::SmartPointer<Self> Pointer; typedef itk::SmartPointer<const Self> ConstPointer; itkNewMacro( HolderCommand ); void Set(const ObjectType object) { this->m_Object = object; } ObjectType &Get() {return this->m_Object;} const ObjectType &Get() const {return this->m_Object;} void Execute(itk::Object*, const itk::EventObject&) {} void Execute(const itk::Object*, const itk::EventObject&) {} protected: HolderCommand() {}; ~HolderCommand() {}; private: void operator=(const HolderCommand&); // not implemented HolderCommand(const HolderCommand&); // not implemented ObjectType m_Object; }; template< class T > class HolderCommand<T*> : public itk::Command { public: typedef T ObjectType; typedef HolderCommand Self; typedef itk::Command Superclass; typedef itk::SmartPointer<Self> Pointer; typedef itk::SmartPointer<const Self> ConstPointer; itkNewMacro( HolderCommand ); void Set(ObjectType *object) { this->m_Object = object; } ObjectType *Get() {return this->m_Object;} const ObjectType *Get() const {return this->m_Object;} void Execute(itk::Object*, const itk::EventObject&) SITK_OVERRIDE {} void Execute(const itk::Object*, const itk::EventObject&) SITK_OVERRIDE {} protected: HolderCommand() : m_Object(NULL) {}; ~HolderCommand() { delete m_Object;} private: void operator=(const HolderCommand&); // not implemented HolderCommand(const HolderCommand&); // not implemented ObjectType* m_Object; }; } // // class Transform // Transform::Transform( ) : m_PimpleTransform( NULL ) { m_PimpleTransform = new PimpleTransform<itk::IdentityTransform< double, 3 > >(); } Transform::Transform( itk::TransformBase *transformBase ) : m_PimpleTransform( NULL ) { this->InternalInitialization( transformBase ); } Transform::Transform( unsigned int dimensions, TransformEnum type) : m_PimpleTransform( NULL ) { if ( dimensions == 2 ) { this->InternalInitialization<2>(type); } else if ( dimensions == 3 ) { this->InternalInitialization<3>(type); } else { sitkExceptionMacro("Invalid dimension for transform"); } } Transform::~Transform() { delete m_PimpleTransform; this->m_PimpleTransform = NULL; } Transform::Transform( const Transform &txf ) : m_PimpleTransform( NULL ) { Self::SetPimpleTransform( txf.m_PimpleTransform->ShallowCopy() ); } Transform& Transform::operator=( const Transform & txf ) { assert( m_PimpleTransform ); PimpleTransformBase *temp = txf.m_PimpleTransform->ShallowCopy(); this->SetPimpleTransform( temp ); return *this; } Transform::Transform( Image &image, TransformEnum txType ) : m_PimpleTransform( NULL ) { if (txType == sitkDisplacementField) { const PixelIDValueEnum type = image.GetPixelID(); const unsigned int dimension = image.GetDimension(); // The pixel IDs supported typedef typelist::MakeTypeList<VectorPixelID<double> >::Type PixelIDTypeList; typedef void (Self::*MemberFunctionType)( Image & ); typedef DisplacementInitializationMemberFunctionAddressor<MemberFunctionType> Addressor; detail::MemberFunctionFactory<MemberFunctionType> initializationMemberFactory(this); initializationMemberFactory.RegisterMemberFunctions< PixelIDTypeList, 3, Addressor > (); initializationMemberFactory.RegisterMemberFunctions< PixelIDTypeList, 2, Addressor > (); initializationMemberFactory.GetMemberFunction( type, dimension )( image ); } else if ( txType == sitkBSplineTransform ) { const unsigned int dimension = image.GetDimension(); switch (dimension) { case 2: this->InternalBSplineInitialization<2>(image); break; case 3: this->InternalBSplineInitialization<3>(image); break; default: sitkExceptionMacro("LogicError: Unexplected case!"); } } else { sitkExceptionMacro("Expected sitkDisplacementField or sitkBSplineTransform for the Transformation type!") } } template< unsigned int ImageDimension> void Transform::InternalBSplineInitialization( Image & inImage ) { typedef itk::ImageBase<ImageDimension> ImageType; typename ImageType::Pointer image = dynamic_cast<ImageType *>( inImage.GetITKBase() ); if ( !image ) { sitkExceptionMacro( "Unexpected template dispatch error!" ); } typedef itk::BSplineTransform<double,ImageDimension,3> BSplineTransformType; typename BSplineTransformType::Pointer itkBSpline = BSplineTransformType::New(); itkBSpline->SetTransformDomainOrigin( image->GetOrigin() ); itkBSpline->SetTransformDomainDirection( image->GetDirection() ); const typename BSplineTransformType::MeshSizeType meshSize( image->GetLargestPossibleRegion().GetSize() ); typename BSplineTransformType::PhysicalDimensionsType fixedPhysicalDimensions; for( unsigned int i=0; i< ImageDimension; i++ ) { fixedPhysicalDimensions[i] = image->GetSpacing()[i] * static_cast<double>( meshSize[i] - 1 ); } itkBSpline->SetTransformDomainMeshSize( meshSize ); itkBSpline->SetTransformDomainPhysicalDimensions( fixedPhysicalDimensions ); typedef typename BSplineTransformType::ParametersType ParametersType; typename HolderCommand<ParametersType *>::Pointer holder = HolderCommand<ParametersType *>::New(); itkBSpline->AddObserver( itk::DeleteEvent(), holder); holder->Set( new ParametersType( itkBSpline->GetNumberOfParameters() ) ); itkBSpline->SetParameters( *holder->Get() ); itkBSpline->SetIdentity(); Self::SetPimpleTransform( new PimpleTransform< BSplineTransformType >( itkBSpline.GetPointer() ) ); } template< typename TDisplacementType > void Transform::InternalDisplacementInitialization( Image & inImage ) { typedef TDisplacementType VectorImageType; typedef typename VectorImageType::InternalPixelType ComponentType; const unsigned int ImageDimension = VectorImageType::ImageDimension; typedef itk::Image< itk::Vector<ComponentType, ImageDimension>, ImageDimension > ITKDisplacementType; typedef itk::DisplacementFieldTransform< ComponentType, ImageDimension > DisplacementTransformType; typename VectorImageType::Pointer image = dynamic_cast < VectorImageType* > ( inImage.GetITKBase() ); if ( image.IsNull() ) { sitkExceptionMacro( "Unexpected template dispatch error!" ); } typename ITKDisplacementType::Pointer itkDisplacement = GetImageFromVectorImage(image.GetPointer(), true ); inImage = Image(); Self::SetPimpleTransform( new PimpleTransform< DisplacementTransformType >(itkDisplacement.GetPointer()) ); } void Transform::MakeUnique( void ) { if ( this->m_PimpleTransform->GetReferenceCount() > 1 ) { PimpleTransformBase *temp = this->m_PimpleTransform->DeepCopy(); this->SetPimpleTransform( temp ); } } Transform::Transform( PimpleTransformBase *pimpleTransform ) : m_PimpleTransform( pimpleTransform ) { if ( pimpleTransform == NULL ) { sitkExceptionMacro("Invalid NULL PimpleTransform!"); } } void Transform::SetPimpleTransform( PimpleTransformBase *pimpleTransform ) { delete this->m_PimpleTransform; this->m_PimpleTransform = pimpleTransform; } template< unsigned int VDimension> void Transform::InternalInitialization( TransformEnum type, itk::TransformBase *base ) { PimpleTransformBase* temp; switch( type ) { case sitkTranslation: temp = new PimpleTransform<itk::TranslationTransform< double, VDimension > >(); break; case sitkScale: temp = new PimpleTransform<itk::ScaleTransform< double, VDimension > >(); break; case sitkScaleLogarithmic: temp = new PimpleTransform<itk::ScaleLogarithmicTransform< double, VDimension > >(); break; case sitkEuler: temp = new PimpleTransform<typename TransformTraits<double,VDimension>::EulerTransformType>(); break; case sitkSimilarity: temp = new PimpleTransform<typename TransformTraits<double,VDimension>::SimilarityTransformType>(); break; case sitkQuaternionRigid: if( VDimension != 3) { sitkExceptionMacro( "A sitkQuaternionRigid Transform only works for 3D!"); } temp = new PimpleTransform<itk::QuaternionRigidTransform< double > >(); break; case sitkVersor: if( VDimension != 3) { sitkExceptionMacro( "A sitkVersor Transform only works for 3D!"); } temp = new PimpleTransform<itk::VersorTransform< double > >(); break; case sitkVersorRigid: if( VDimension != 3) { sitkExceptionMacro( "A sitkVersorRigid Transform only works for 3D!"); } temp = new PimpleTransform<itk::VersorRigid3DTransform< double > >(); break; case sitkScaleSkewVersor: if( VDimension != 3) { sitkExceptionMacro( "A sitkScaleSkewVersor Transform only works for 3D!"); } temp = new PimpleTransform<itk::ScaleSkewVersor3DTransform< double > >(); break; case sitkAffine: temp = new PimpleTransform<itk::AffineTransform< double, VDimension > >(); break; case sitkComposite: { typename itk::CompositeTransform<double, VDimension>::Pointer compositeTransform; // if null it'll be converted, no null check needed compositeTransform = dynamic_cast<itk::CompositeTransform<double, VDimension>*>( base ); if ( !compositeTransform ) { compositeTransform = itk::CompositeTransform<double, VDimension>::New(); // base argument was non-composite place into composite if ( base ) { typedef itk::Transform<double, VDimension, VDimension> TransformType; TransformType* itktx = dynamic_cast<TransformType*>(base); compositeTransform->ClearTransformQueue(); compositeTransform->AddTransform( itktx ); } } if ( compositeTransform->IsTransformQueueEmpty() ) { // Load an identity transform in case no transforms are loaded. typedef itk::IdentityTransform<double, VDimension> IdentityTransformType; typename IdentityTransformType::Pointer identityTransform = IdentityTransformType::New(); compositeTransform->AddTransform( identityTransform ); } compositeTransform->SetAllTransformsToOptimizeOff(); compositeTransform->SetOnlyMostRecentTransformToOptimizeOn(); temp = new PimpleTransform<itk::CompositeTransform<double, VDimension> >( compositeTransform ); } break; case sitkDisplacementField: case sitkBSplineTransform: // todo print transform type.. sitkExceptionMacro("Incorrect constructor for transform type."); case sitkIdentity: default: temp = new PimpleTransform<itk::IdentityTransform< double, VDimension > >(); } Self::SetPimpleTransform(temp); } template void SITKCommon_EXPORT Transform::InternalInitialization<2>( TransformEnum, itk::TransformBase * ); template void SITKCommon_EXPORT Transform::InternalInitialization<3>( TransformEnum, itk::TransformBase * ); itk::TransformBase* Transform::GetITKBase ( void ) { assert( m_PimpleTransform ); return this->m_PimpleTransform->GetTransformBase(); } const itk::TransformBase* Transform::GetITKBase ( void ) const { assert( m_PimpleTransform ); return this->m_PimpleTransform->GetTransformBase(); } unsigned int Transform::GetDimension( void ) const { assert( m_PimpleTransform ); return this->m_PimpleTransform->GetInputDimension(); } void Transform::SetParameters ( const std::vector<double>& parameters ) { assert( m_PimpleTransform ); this->MakeUnique(); this->m_PimpleTransform->SetParameters( parameters ); } std::vector<double> Transform::GetParameters( void ) const { assert( m_PimpleTransform ); return this->m_PimpleTransform->GetParameters(); } void Transform::SetFixedParameters ( const std::vector<double>& parameters ) { assert( m_PimpleTransform ); this->MakeUnique(); this->m_PimpleTransform->SetFixedParameters( parameters ); } std::vector<double> Transform::GetFixedParameters( void ) const { assert( m_PimpleTransform ); return this->m_PimpleTransform->GetFixedParameters(); } Transform &Transform::AddTransform( Transform t ) { assert( m_PimpleTransform ); this->MakeUnique(); // this returns a pointer which may be the same or a new object PimpleTransformBase *temp = this->m_PimpleTransform->AddTransform( t ); if ( temp != this->m_PimpleTransform ) { this->SetPimpleTransform(temp); } return *this; } std::vector< double > Transform::TransformPoint( const std::vector< double > &point ) const { assert( m_PimpleTransform ); return this->m_PimpleTransform->TransformPoint( point ); } bool Transform::IsLinear() const { assert( m_PimpleTransform ); return this->m_PimpleTransform->IsLinear(); } void Transform::SetIdentity() { assert( m_PimpleTransform ); this->MakeUnique(); return this->m_PimpleTransform->SetIdentity(); } bool Transform::SetInverse() { assert( m_PimpleTransform ); nsstd::auto_ptr<PimpleTransformBase> temp; { // See if a new pimple transform can be created PimpleTransformBase *p = NULL; if (!this->m_PimpleTransform->GetInverse(p)) { return false; } temp.reset(p); } // take ownership of the new pimple transform this->SetPimpleTransform( temp.release() ); return true; } Transform Transform::GetInverse() const { // create a shallow copy Transform tx(*this); if (!tx.SetInverse()) { sitkExceptionMacro("Unable to create inverse!"); } return tx; } std::string Transform::ToString( void ) const { assert( m_PimpleTransform ); // mark as used static_cast<void>( itk::simple::initialized ); return std::string("itk::simple::")+this->GetName() + '\n'+this->m_PimpleTransform->ToString(); } std::string Transform::GetName( void ) const { return "Transform"; } void Transform::InternalInitialization(itk::TransformBase *transform) { TransformTryCastVisitor visitor; visitor.transform = transform; visitor.that = this; // The following list must have the children before their parents to // cast to the most derived classes typedef typelist::MakeTypeList<itk::IdentityTransform<double, 2>, itk::IdentityTransform<double, 3>, itk::TranslationTransform<double, 2>, itk::TranslationTransform<double, 3>, itk::ScaleLogarithmicTransform< double, 2 >, itk::ScaleLogarithmicTransform< double, 3 >, itk::ScaleTransform< double, 2>, itk::ScaleTransform< double, 3>, TransformTraits< double, 2>::EulerTransformType, TransformTraits< double, 3>::EulerTransformType, TransformTraits< double, 2>::SimilarityTransformType, TransformTraits< double, 3>::SimilarityTransformType, itk::ScaleSkewVersor3DTransform< double >, itk::ScaleVersor3DTransform< double >, itk::VersorRigid3DTransform< double >, itk::VersorTransform< double >, itk::QuaternionRigidTransform< double >, itk::AffineTransform<double,3>, itk::AffineTransform<double,2>, itk::DisplacementFieldTransform<double, 3>, itk::DisplacementFieldTransform<double, 2>, itk::BSplineTransform<double, 3, 0>, itk::BSplineTransform<double, 2, 0>, itk::BSplineTransform<double, 3, 1>, itk::BSplineTransform<double, 2, 1>, itk::BSplineTransform<double, 3, 2>, itk::BSplineTransform<double, 2, 2>, itk::BSplineTransform<double, 3, 3>, itk::BSplineTransform<double, 2, 3> >::Type TransformTypeList; typelist::Visit<TransformTypeList> callInternalInitialization; callInternalInitialization(visitor); // The transform didn't match a known type, place it into a Composite. if ( !m_PimpleTransform ) { if ( transform->GetInputSpaceDimension() == 2 && transform->GetInputSpaceDimension() == 2 ) { this->InternalInitialization<2>( sitkComposite, transform ); } else if ( transform->GetInputSpaceDimension() == 3 && transform->GetInputSpaceDimension() == 3 ) { this->InternalInitialization<3>( sitkComposite, transform ); } else { sitkExceptionMacro( "Unable to create transform with InputSpaceDimension: " << transform->GetInputSpaceDimension() << " and OutputSpaceDimension: " << transform->GetOutputSpaceDimension() << ". " << "Transform of type " << transform->GetNameOfClass() << "is not supported." ); } } } template<class TransformType> void Transform::InternalInitialization(TransformType *t) { PimpleTransformBase* temp = new PimpleTransform<TransformType>(t); Self::SetPimpleTransform(temp); } Transform ReadTransform( const std::string &filename ) { TransformFileReader::Pointer reader = TransformFileReader::New(); reader->SetFileName(filename.c_str() ); reader->Update(); const itk::TransformFileReader::TransformListType *list = reader->GetTransformList(); if ( list->empty() ) { sitkExceptionMacro( "Read transform file: \"" << filename << "\", but there appears to be not transform in the file!" ); } if( list->size() != 1 ) { // sitkWarningMacro if ( ::itk::Object::GetGlobalWarningDisplay() ) { std::ostringstream msg; msg << "WARNING: In " __FILE__ ", line " << __LINE__ << "\n" << "There is more than one transform in the file! Only using the first transform.\n"; ::itk::OutputWindowDisplayWarningText( msg.str().c_str() ); } } if( list->front()->GetInputSpaceDimension() == 3 && list->front()->GetOutputSpaceDimension() == 3 ) { typedef itk::Transform<double, 3, 3> TransformType3D; TransformType3D* itktx3d = dynamic_cast<TransformType3D*>(list->front().GetPointer()); if (!itktx3d) { sitkExceptionMacro( "Unexpected type conversion error for 3D Transform!"); } return Transform(itktx3d); } if( list->front()->GetInputSpaceDimension() == 2 && list->front()->GetOutputSpaceDimension() == 2) { typedef itk::Transform<double, 2, 2> TransformType2D; TransformType2D* itktx2d = dynamic_cast<TransformType2D*>(list->front().GetPointer()); if (!itktx2d) { sitkExceptionMacro( "Unexpected type conversion error for 2D Transform!"); } return Transform(itktx2d); } sitkExceptionMacro( "Unable to transform with InputSpaceDimension: " << list->front()->GetInputSpaceDimension() << " and OutputSpaceDimension: " << list->front()->GetOutputSpaceDimension() << ". " << "Transform of type " << list->front()->GetNameOfClass() << "is not supported." ); } void Transform::WriteTransform( const std::string &filename ) const { itk::simple::WriteTransform( *this, filename ); } // write void WriteTransform( const Transform &transform, const std::string &filename) { itk::TransformFileWriter::Pointer writer = itk::TransformFileWriter::New(); writer->SetFileName(filename.c_str()); writer->SetInput( transform.GetITKBase() ); writer->Update(); } } }
[ "blowekamp@mail.nih.gov" ]
blowekamp@mail.nih.gov
09f4dcc12e1b2a249cbe390a40fb47fd67cd35cc
b214fa32315b6a555d83a86895e5b845ac79dd73
/src/cube.cpp
740b5f2e22224d4d0ddd85af395d27c82dcb3c7e
[]
no_license
aljazerzen/opengl-demo
992dcd299d4bb0293b172858708fbdc9216d6f13
1ada6f7eabb3b7397cc42d428b3a8eacd4ee86e9
refs/heads/master
2020-04-27T18:02:04.602648
2019-03-08T14:24:56
2019-03-08T14:24:56
174,550,897
0
0
null
null
null
null
UTF-8
C++
false
false
3,312
cpp
#include "cube.hpp" Cube::Cube() { viewMatrix.translate(0, 0, -2); const Vertex VERTICES[8] = { {{-.5f, -.5f, .5f, 1}, {0.5, 0, 0, 1}}, {{-.5f, .5f, .5f, 1}, {0, 0, 0, 1}}, {{.5f, .5f, .5f, 1}, {0, 0, 0, 1}}, {{.5f, -.5f, .5f, 1}, {0.5, 0, 0, 1}}, {{-.5f, -.5f, -.5f, 1}, {1, 0, 0, 1}}, {{-.5f, .5f, -.5f, 1}, {0, 0, 0, 1}}, {{.5f, .5f, -.5f, 1}, {0, 0, 0, 1}}, {{.5f, -.5f, -.5f, 1}, {0, 0, 0, 1}}}; const GLuint INDICES[36] = {0, 2, 1, 0, 3, 2, 4, 3, 0, 4, 7, 3, 4, 1, 5, 4, 0, 1, 3, 6, 2, 3, 7, 6, 1, 6, 5, 1, 2, 6, 7, 5, 6, 7, 4, 5}; shaderProgram = new ShaderProgram("simple-shader.vertex.glsl", "simple-shader.fragment.glsl"); glLinkProgram(shaderProgram->programId); exitOnGLError("ERROR: Could not link the shader program"); modelMatrixUniformLocation = glGetUniformLocation(shaderProgram->programId, "ModelMatrix"); viewMatrixUniformLocation = glGetUniformLocation(shaderProgram->programId, "ViewMatrix"); projectionMatrixUniformLocation = glGetUniformLocation(shaderProgram->programId, "ProjectionMatrix"); exitOnGLError("ERROR: Could not get the shader uniform locations"); projectionMatrix = createProjectionMatrix(60, (float)640 / 480, 1.0f, 100.0f); glUniformMatrix4fv(projectionMatrixUniformLocation, 1, GL_FALSE, projectionMatrix.m); glGenBuffers(2, bufferIds); exitOnGLError("ERROR: Could not generate the buffer objects"); glGenVertexArrays(1, &vaoId); exitOnGLError("ERROR: Could not generate the VAO"); glBindVertexArray(vaoId); exitOnGLError("ERROR: Could not bind the VAO"); glEnableVertexAttribArray(0); glEnableVertexAttribArray(1); exitOnGLError("ERROR: Could not enable vertex attributes"); glBindBuffer(GL_ARRAY_BUFFER, bufferIds[0]); glBufferData(GL_ARRAY_BUFFER, sizeof(VERTICES), VERTICES, GL_STATIC_DRAW); exitOnGLError("ERROR: Could not bind the VBO to the VAO"); glVertexAttribPointer(0, 4, GL_FLOAT, GL_FALSE, sizeof(VERTICES[0]), (GLvoid*)0); glVertexAttribPointer(1, 4, GL_FLOAT, GL_FALSE, sizeof(VERTICES[0]), (GLvoid*)sizeof(VERTICES[0].position)); exitOnGLError("ERROR: Could not set VAO attributes"); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, bufferIds[1]); glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(INDICES), INDICES, GL_STATIC_DRAW); exitOnGLError("ERROR: Could not bind the IBO to the VAO"); glBindVertexArray(0); } Cube::~Cube() { delete shaderProgram; glDeleteBuffers(2, &bufferIds[0]); glDeleteVertexArrays(1, &vaoId); exitOnGLError("ERROR: Could not destroy the buffer objects"); } void Cube::draw(float rotation) { Matrix modelMatrix; modelMatrix.rotateAboutZ(PI * 0.25); modelMatrix.rotateAboutX(atan(1 / sqrt(2))); modelMatrix.rotateAboutY(rotation); glUseProgram(shaderProgram->programId); exitOnGLError("ERROR: Could not use the shader program"); glUniformMatrix4fv(modelMatrixUniformLocation, 1, GL_FALSE, modelMatrix.m); glUniformMatrix4fv(viewMatrixUniformLocation, 1, GL_FALSE, viewMatrix.m); exitOnGLError("ERROR: Could not set the shader uniforms"); glBindVertexArray(vaoId); exitOnGLError("ERROR: Could not bind the VAO for drawing purposes"); glDrawElements(GL_TRIANGLES, 36, GL_UNSIGNED_INT, (GLvoid*)0); exitOnGLError("ERROR: Could not draw the cube"); glBindVertexArray(0); glUseProgram(0); }
[ "aljaz.erzen@gmail.com" ]
aljaz.erzen@gmail.com
17c2edae449081817cb02c51e6cbb9730bdadde7
39254e54c37405f83e3d98e23278107bb5635cf9
/src/worker.cpp
62e01363bf4260e355b4f55ecd349202a3ffd2bc
[ "MIT" ]
permissive
mugiseyebrows/mugi-grep
0948654d684bb066d7e34539fbaa6b5a78774634
5bb4ea83fadd803152201b64dbd4842e3795ab23
refs/heads/master
2021-11-09T18:25:20.740324
2021-11-04T12:12:17
2021-11-04T12:12:17
159,567,345
8
3
null
null
null
null
UTF-8
C++
false
false
3,459
cpp
#include "worker.h" #include "searchhits.h" #include "countfilesparams.h" #include <QTimer> Worker::Worker(QObject *parent) : QObject(parent) { } void Worker::onSearch(SearchParams params) { mCache.add(params); SearchHits hits(params.pattern()); SearchNameHits nameHits(params.pattern()); emit found(params.id(), hits, nameHits); } void Worker::onCountMatchedFiles(QString path, RegExpPath filter) { QPair<int,int> fileCount = mCache.countMatchedFiles(path,filter); emit count(fileCount.first, fileCount.second); } void Worker::onCountFiles(CountFilesParams params) { QPair<int,int> count = mCache.countMatchedFiles(params.path(), params.filter()); params.setFiltered(count.first); params.setTotal(count.second); emit filesCounted(params); } void Worker::onGetAllFiles(QString path) { //qDebug() << "Worker::onGetAllFiles" << path; QStringList files = mCache.getListing(path,true); emit allFiles(path,files); } void Worker::onGetListing(GetListingParams params) { QStringList files = mCache.getListing(params.path(),params.cacheFileList()); emit listing(params.path(),files); } void Worker::onSearchMore(int id) { static int count = 0; qDebug() << "search more" << id << count++; if (mCache.isFinished(id)) { return; } QPair<SearchHits,SearchNameHits> hits = mCache.search(id); emit found(id,hits.first, hits.second); if (mCache.isFinished(id)) { mCache.finish(id); } } #include "fileio.h" #include "replacedparams.h" void Worker::onReplace(ReplaceParams params) { QList<ReplaceFile> files = params.files(); int countLines = 0; int countFiles = 0; int countErrors = 0; foreach(const ReplaceFile& file, files) { QString path = file.path(); QList<ReplaceItem> items = file.items(); QStringList lines = FileIO::readLines(path); bool ok = true; foreach(const ReplaceItem& item, items) { if (lines.size() <= item.line()) { qDebug() << "lines.size() <= item.line()"; ok = false; break; } if (lines[item.line()] != item.before()) { ok = false; qDebug() << "lines[item.line()] != item.before()"; qDebug() << lines[item.line()] << item.before(); break; } lines[item.line()] = item.after(); } if (ok) { ok = FileIO::writeLines(file.path(), lines); //ok = true; if (ok) { countFiles++; countLines += items.size(); } else { countErrors++; } } else { countErrors++; } } emit replaced(ReplacedParams(countFiles, countLines, params.renames())); } void Worker::onRename(RenameParams params) { int successful = 0; int failed = 0; auto renames = params.renames(); for(auto item : renames) { if (!QFile::rename(item.first, item.second)) { qDebug() << "failed to rename" << item.first << item.second; failed++; } else { successful++; } } emit renamed(successful, failed); } void Worker::onFinishSearch(int id) { //emit canReplace(id, mCache.isPreview(id)); //mCache.finish(id); } void Worker::onCanReplace(int id) { //emit canReplace(id, mCache.isPreview(id)); }
[ "mugisbrows@gmail.com" ]
mugisbrows@gmail.com
b16a886759e57c74d6f5cc69dd531fab3873efbe
25051a5329fa2ff9b14a6075e43d638cbf9e5aa4
/Source/Anti-Cheat/Console/Windows_Structs.h
03b425c156cdee038da47dc7cc55ac13cad37680
[]
no_license
gmh5225/Anti-Cheat_Bachelor
3b1bb4d37f096eebe1e43fba2caee05b0fad29d7
bbbe118de39c7643399d71cdb5b251ed9cb75a88
refs/heads/master
2023-03-23T07:20:55.848699
2019-11-27T11:47:23
2019-11-27T11:47:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
24,177
h
#pragma once #include <Windows.h> namespace { typedef LONG KPRIORITY; typedef LONG NTSTATUS; typedef struct _UNICODE_STRING { USHORT Length; USHORT MaximumLength; PWSTR Buffer; } UNICODE_STRING, *PUNICODE_STRING; typedef enum _THREADINFOCLASS { ThreadBasicInformation, // q: THREAD_BASIC_INFORMATION ThreadTimes, // q: KERNEL_USER_TIMES ThreadPriority, // s: KPRIORITY ThreadBasePriority, // s: LONG ThreadAffinityMask, // s: KAFFINITY ThreadImpersonationToken, // s: HANDLE ThreadDescriptorTableEntry, ThreadEnableAlignmentFaultFixup, // s: BOOLEAN ThreadEventPair, ThreadQuerySetWin32StartAddress, // q: PVOID ThreadZeroTlsCell, // 10 ThreadPerformanceCount, // q: LARGE_INTEGER ThreadAmILastThread, // q: ULONG ThreadIdealProcessor, // s: ULONG ThreadPriorityBoost, // qs: ULONG ThreadSetTlsArrayAddress, ThreadIsIoPending, // q: ULONG ThreadHideFromDebugger, // s: void, BOOLEAN ThreadBreakOnTermination, // qs: ULONG ThreadSwitchLegacyState, ThreadIsTerminated, // 20, q: ULONG ThreadLastSystemCall, // q: THREAD_LAST_SYSCALL_INFORMATION ThreadIoPriority, // qs: ULONG ThreadCycleTime, // q: THREAD_CYCLE_TIME_INFORMATION ThreadPagePriority, // q: ULONG ThreadActualBasePriority, ThreadTebInformation, // q: THREAD_TEB_INFORMATION (requires THREAD_GET_CONTEXT + THREAD_SET_CONTEXT) ThreadCSwitchMon, ThreadCSwitchPmu, ThreadWow64Context, // q: WOW64_CONTEXT ThreadGroupInformation, // 30, q: GROUP_AFFINITY ThreadUmsInformation, ThreadCounterProfiling, ThreadIdealProcessorEx, // q: PROCESSOR_NUMBER ThreadCpuAccountingInformation, // since WIN8 ThreadSuspendCount, // since WINBLUE MaxThreadInfoClass } THREADINFOCLASS; typedef enum _PROCESSINFOCLASS { ProcessBasicInformation, // 0, q: PROCESS_BASIC_INFORMATION, PROCESS_EXTENDED_BASIC_INFORMATION ProcessQuotaLimits, // qs: QUOTA_LIMITS, QUOTA_LIMITS_EX ProcessIoCounters, // q: IO_COUNTERS ProcessVmCounters, // q: VM_COUNTERS, VM_COUNTERS_EX ProcessTimes, // q: KERNEL_USER_TIMES ProcessBasePriority, // s: KPRIORITY ProcessRaisePriority, // s: ULONG ProcessDebugPort, // q: HANDLE ProcessExceptionPort, // s: HANDLE ProcessAccessToken, // s: PROCESS_ACCESS_TOKEN ProcessLdtInformation, // 10 ProcessLdtSize, ProcessDefaultHardErrorMode, // qs: ULONG ProcessIoPortHandlers, // (kernel-mode only) ProcessPooledUsageAndLimits, // q: POOLED_USAGE_AND_LIMITS ProcessWorkingSetWatch, // q: PROCESS_WS_WATCH_INFORMATION[]; s: void ProcessUserModeIOPL, ProcessEnableAlignmentFaultFixup, // s: BOOLEAN ProcessPriorityClass, // qs: PROCESS_PRIORITY_CLASS ProcessWx86Information, ProcessHandleCount, // 20, q: ULONG, PROCESS_HANDLE_INFORMATION ProcessAffinityMask, // s: KAFFINITY ProcessPriorityBoost, // qs: ULONG ProcessDeviceMap, // qs: PROCESS_DEVICEMAP_INFORMATION, PROCESS_DEVICEMAP_INFORMATION_EX ProcessSessionInformation, // q: PROCESS_SESSION_INFORMATION ProcessForegroundInformation, // s: PROCESS_FOREGROUND_BACKGROUND ProcessWow64Information, // q: ULONG_PTR ProcessImageFileName, // q: UNICODE_STRING ProcessLUIDDeviceMapsEnabled, // q: ULONG ProcessBreakOnTermination, // qs: ULONG ProcessDebugObjectHandle, // 30, q: HANDLE ProcessDebugFlags, // qs: ULONG ProcessHandleTracing, // q: PROCESS_HANDLE_TRACING_QUERY; s: size 0 disables, otherwise enables ProcessIoPriority, // qs: ULONG ProcessExecuteFlags, // qs: ULONG ProcessResourceManagement, ProcessCookie, // q: ULONG ProcessImageInformation, // q: SECTION_IMAGE_INFORMATION ProcessCycleTime, // q: PROCESS_CYCLE_TIME_INFORMATION // since VISTA ProcessPagePriority, // q: ULONG ProcessInstrumentationCallback, // 40 ProcessThreadStackAllocation, // s: PROCESS_STACK_ALLOCATION_INFORMATION, PROCESS_STACK_ALLOCATION_INFORMATION_EX ProcessWorkingSetWatchEx, // q: PROCESS_WS_WATCH_INFORMATION_EX[] ProcessImageFileNameWin32, // q: UNICODE_STRING ProcessImageFileMapping, // q: HANDLE (input) ProcessAffinityUpdateMode, // qs: PROCESS_AFFINITY_UPDATE_MODE ProcessMemoryAllocationMode, // qs: PROCESS_MEMORY_ALLOCATION_MODE ProcessGroupInformation, // q: USHORT[] ProcessTokenVirtualizationEnabled, // s: ULONG ProcessConsoleHostProcess, // q: ULONG_PTR ProcessWindowInformation, // 50, q: PROCESS_WINDOW_INFORMATION ProcessHandleInformation, // q: PROCESS_HANDLE_SNAPSHOT_INFORMATION // since WIN8 ProcessMitigationPolicy, // s: PROCESS_MITIGATION_POLICY_INFORMATION ProcessDynamicFunctionTableInformation, ProcessHandleCheckingMode, ProcessKeepAliveCount, // q: PROCESS_KEEPALIVE_COUNT_INFORMATION ProcessRevokeFileHandles, // s: PROCESS_REVOKE_FILE_HANDLES_INFORMATION ProcessWorkingSetControl, // s: PROCESS_WORKING_SET_CONTROL ProcessHandleTable, // since WINBLUE ProcessCheckStackExtentsMode, ProcessCommandLineInformation, // 60, q: UNICODE_STRING ProcessProtectionInformation, // q: PS_PROTECTION MaxProcessInfoClass } PROCESSINFOCLASS; typedef enum _SYSTEM_INFORMATION_CLASS { SystemBasicInformation, // q: SYSTEM_BASIC_INFORMATION SystemProcessorInformation, // q: SYSTEM_PROCESSOR_INFORMATION SystemPerformanceInformation, // q: SYSTEM_PERFORMANCE_INFORMATION SystemTimeOfDayInformation, // q: SYSTEM_TIMEOFDAY_INFORMATION SystemPathInformation, // not implemented SystemProcessInformation, // q: SYSTEM_PROCESS_INFORMATION SystemCallCountInformation, // q: SYSTEM_CALL_COUNT_INFORMATION SystemDeviceInformation, // q: SYSTEM_DEVICE_INFORMATION SystemProcessorPerformanceInformation, // q: SYSTEM_PROCESSOR_PERFORMANCE_INFORMATION SystemFlagsInformation, // q: SYSTEM_FLAGS_INFORMATION SystemCallTimeInformation, // 10, not implemented SystemModuleInformation, // q: RTL_PROCESS_MODULES SystemLocksInformation, SystemStackTraceInformation, SystemPagedPoolInformation, // not implemented SystemNonPagedPoolInformation, // not implemented SystemHandleInformation, // q: SYSTEM_HANDLE_INFORMATION SystemObjectInformation, // q: SYSTEM_OBJECTTYPE_INFORMATION mixed with SYSTEM_OBJECT_INFORMATION SystemPageFileInformation, // q: SYSTEM_PAGEFILE_INFORMATION SystemVdmInstemulInformation, // q SystemVdmBopInformation, // 20, not implemented SystemFileCacheInformation, // q: SYSTEM_FILECACHE_INFORMATION; s (requires SeIncreaseQuotaPrivilege) (info for WorkingSetTypeSystemCache) SystemPoolTagInformation, // q: SYSTEM_POOLTAG_INFORMATION SystemInterruptInformation, // q: SYSTEM_INTERRUPT_INFORMATION SystemDpcBehaviorInformation, // q: SYSTEM_DPC_BEHAVIOR_INFORMATION; s: SYSTEM_DPC_BEHAVIOR_INFORMATION (requires SeLoadDriverPrivilege) SystemFullMemoryInformation, // not implemented SystemLoadGdiDriverInformation, // s (kernel-mode only) SystemUnloadGdiDriverInformation, // s (kernel-mode only) SystemTimeAdjustmentInformation, // q: SYSTEM_QUERY_TIME_ADJUST_INFORMATION; s: SYSTEM_SET_TIME_ADJUST_INFORMATION (requires SeSystemtimePrivilege) SystemSummaryMemoryInformation, // not implemented SystemMirrorMemoryInformation, // 30, s (requires license value "Kernel-MemoryMirroringSupported") (requires SeShutdownPrivilege) SystemPerformanceTraceInformation, // s SystemObsolete0, // not implemented SystemExceptionInformation, // q: SYSTEM_EXCEPTION_INFORMATION SystemCrashDumpStateInformation, // s (requires SeDebugPrivilege) SystemKernelDebuggerInformation, // q: SYSTEM_KERNEL_DEBUGGER_INFORMATION SystemContextSwitchInformation, // q: SYSTEM_CONTEXT_SWITCH_INFORMATION SystemRegistryQuotaInformation, // q: SYSTEM_REGISTRY_QUOTA_INFORMATION; s (requires SeIncreaseQuotaPrivilege) SystemExtendServiceTableInformation, // s (requires SeLoadDriverPrivilege) // loads win32k only SystemPrioritySeperation, // s (requires SeTcbPrivilege) SystemVerifierAddDriverInformation, // 40, s (requires SeDebugPrivilege) SystemVerifierRemoveDriverInformation, // s (requires SeDebugPrivilege) SystemProcessorIdleInformation, // q: SYSTEM_PROCESSOR_IDLE_INFORMATION SystemLegacyDriverInformation, // q: SYSTEM_LEGACY_DRIVER_INFORMATION SystemCurrentTimeZoneInformation, // q SystemLookasideInformation, // q: SYSTEM_LOOKASIDE_INFORMATION SystemTimeSlipNotification, // s (requires SeSystemtimePrivilege) SystemSessionCreate, // not implemented SystemSessionDetach, // not implemented SystemSessionInformation, // not implemented SystemRangeStartInformation, // 50, q SystemVerifierInformation, // q: SYSTEM_VERIFIER_INFORMATION; s (requires SeDebugPrivilege) SystemVerifierThunkExtend, // s (kernel-mode only) SystemSessionProcessInformation, // q: SYSTEM_SESSION_PROCESS_INFORMATION SystemLoadGdiDriverInSystemSpace, // s (kernel-mode only) (same as SystemLoadGdiDriverInformation) SystemNumaProcessorMap, // q SystemPrefetcherInformation, // q: PREFETCHER_INFORMATION; s: PREFETCHER_INFORMATION // PfSnQueryPrefetcherInformation SystemExtendedProcessInformation, // q: SYSTEM_PROCESS_INFORMATION SystemRecommendedSharedDataAlignment, // q SystemComPlusPackage, // q; s SystemNumaAvailableMemory, // 60 SystemProcessorPowerInformation, // q: SYSTEM_PROCESSOR_POWER_INFORMATION SystemEmulationBasicInformation, // q SystemEmulationProcessorInformation, SystemExtendedHandleInformation, // q: SYSTEM_HANDLE_INFORMATION_EX SystemLostDelayedWriteInformation, // q: ULONG SystemBigPoolInformation, // q: SYSTEM_BIGPOOL_INFORMATION SystemSessionPoolTagInformation, // q: SYSTEM_SESSION_POOLTAG_INFORMATION SystemSessionMappedViewInformation, // q: SYSTEM_SESSION_MAPPED_VIEW_INFORMATION SystemHotpatchInformation, // q; s SystemObjectSecurityMode, // 70, q SystemWatchdogTimerHandler, // s (kernel-mode only) SystemWatchdogTimerInformation, // q (kernel-mode only); s (kernel-mode only) SystemLogicalProcessorInformation, // q: SYSTEM_LOGICAL_PROCESSOR_INFORMATION SystemWow64SharedInformationObsolete, // not implemented SystemRegisterFirmwareTableInformationHandler, // s (kernel-mode only) SystemFirmwareTableInformation, // not implemented SystemModuleInformationEx, // q: RTL_PROCESS_MODULE_INFORMATION_EX SystemVerifierTriageInformation, // not implemented SystemSuperfetchInformation, // q: SUPERFETCH_INFORMATION; s: SUPERFETCH_INFORMATION // PfQuerySuperfetchInformation SystemMemoryListInformation, // 80, q: SYSTEM_MEMORY_LIST_INFORMATION; s: SYSTEM_MEMORY_LIST_COMMAND (requires SeProfileSingleProcessPrivilege) SystemFileCacheInformationEx, // q: SYSTEM_FILECACHE_INFORMATION; s (requires SeIncreaseQuotaPrivilege) (same as SystemFileCacheInformation) SystemThreadPriorityClientIdInformation, // s: SYSTEM_THREAD_CID_PRIORITY_INFORMATION (requires SeIncreaseBasePriorityPrivilege) SystemProcessorIdleCycleTimeInformation, // q: SYSTEM_PROCESSOR_IDLE_CYCLE_TIME_INFORMATION[] SystemVerifierCancellationInformation, // not implemented // name:wow64:whNT32QuerySystemVerifierCancellationInformation SystemProcessorPowerInformationEx, // not implemented SystemRefTraceInformation, // q; s // ObQueryRefTraceInformation SystemSpecialPoolInformation, // q; s (requires SeDebugPrivilege) // MmSpecialPoolTag, then MmSpecialPoolCatchOverruns != 0 SystemProcessIdInformation, // q: SYSTEM_PROCESS_ID_INFORMATION SystemErrorPortInformation, // s (requires SeTcbPrivilege) SystemBootEnvironmentInformation, // 90, q: SYSTEM_BOOT_ENVIRONMENT_INFORMATION SystemHypervisorInformation, // q; s (kernel-mode only) SystemVerifierInformationEx, // q; s SystemTimeZoneInformation, // s (requires SeTimeZonePrivilege) SystemImageFileExecutionOptionsInformation, // s: SYSTEM_IMAGE_FILE_EXECUTION_OPTIONS_INFORMATION (requires SeTcbPrivilege) SystemCoverageInformation, // q; s // name:wow64:whNT32QuerySystemCoverageInformation; ExpCovQueryInformation SystemPrefetchPatchInformation, // not implemented SystemVerifierFaultsInformation, // s (requires SeDebugPrivilege) SystemSystemPartitionInformation, // q: SYSTEM_SYSTEM_PARTITION_INFORMATION SystemSystemDiskInformation, // q: SYSTEM_SYSTEM_DISK_INFORMATION SystemProcessorPerformanceDistribution, // 100, q: SYSTEM_PROCESSOR_PERFORMANCE_DISTRIBUTION SystemNumaProximityNodeInformation, // q SystemDynamicTimeZoneInformation, // q; s (requires SeTimeZonePrivilege) SystemCodeIntegrityInformation, // q // SeCodeIntegrityQueryInformation SystemProcessorMicrocodeUpdateInformation, // s SystemProcessorBrandString, // q // HaliQuerySystemInformation -> HalpGetProcessorBrandString, info class 23 SystemVirtualAddressInformation, // q: SYSTEM_VA_LIST_INFORMATION[]; s: SYSTEM_VA_LIST_INFORMATION[] (requires SeIncreaseQuotaPrivilege) // MmQuerySystemVaInformation SystemLogicalProcessorAndGroupInformation, // q: SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX // since WIN7 // KeQueryLogicalProcessorRelationship SystemProcessorCycleTimeInformation, // q: SYSTEM_PROCESSOR_CYCLE_TIME_INFORMATION[] SystemStoreInformation, // q; s // SmQueryStoreInformation SystemRegistryAppendString, // 110, s: SYSTEM_REGISTRY_APPEND_STRING_PARAMETERS SystemAitSamplingValue, // s: ULONG (requires SeProfileSingleProcessPrivilege) SystemVhdBootInformation, // q: SYSTEM_VHD_BOOT_INFORMATION SystemCpuQuotaInformation, // q; s // PsQueryCpuQuotaInformation SystemNativeBasicInformation, // not implemented SystemSpare1, // not implemented SystemLowPriorityIoInformation, // q: SYSTEM_LOW_PRIORITY_IO_INFORMATION SystemTpmBootEntropyInformation, // q: TPM_BOOT_ENTROPY_NT_RESULT // ExQueryTpmBootEntropyInformation SystemVerifierCountersInformation, // q: SYSTEM_VERIFIER_COUNTERS_INFORMATION SystemPagedPoolInformationEx, // q: SYSTEM_FILECACHE_INFORMATION; s (requires SeIncreaseQuotaPrivilege) (info for WorkingSetTypePagedPool) SystemSystemPtesInformationEx, // 120, q: SYSTEM_FILECACHE_INFORMATION; s (requires SeIncreaseQuotaPrivilege) (info for WorkingSetTypeSystemPtes) SystemNodeDistanceInformation, // q SystemAcpiAuditInformation, // q: SYSTEM_ACPI_AUDIT_INFORMATION // HaliQuerySystemInformation -> HalpAuditQueryResults, info class 26 SystemBasicPerformanceInformation, // q: SYSTEM_BASIC_PERFORMANCE_INFORMATION // name:wow64:whNtQuerySystemInformation_SystemBasicPerformanceInformation SystemQueryPerformanceCounterInformation, // q: SYSTEM_QUERY_PERFORMANCE_COUNTER_INFORMATION // since WIN7 SP1 SystemSessionBigPoolInformation, // since WIN8 SystemBootGraphicsInformation, SystemScrubPhysicalMemoryInformation, SystemBadPageInformation, SystemProcessorProfileControlArea, SystemCombinePhysicalMemoryInformation, // 130 SystemEntropyInterruptTimingCallback, SystemConsoleInformation, SystemPlatformBinaryInformation, SystemThrottleNotificationInformation, SystemHypervisorProcessorCountInformation, SystemDeviceDataInformation, SystemDeviceDataEnumerationInformation, SystemMemoryTopologyInformation, SystemMemoryChannelInformation, SystemBootLogoInformation, // 140 SystemProcessorPerformanceInformationEx, // since WINBLUE SystemSpare0, SystemSecureBootPolicyInformation, SystemPageFileInformationEx, SystemSecureBootInformation, SystemEntropyInterruptTimingRawInformation, SystemPortableWorkspaceEfiLauncherInformation, SystemFullProcessInformation, // q: SYSTEM_PROCESS_INFORMATION with SYSTEM_PROCESS_INFORMATION_EXTENSION (requires admin) SystemKernelDebuggerInformationEx, SystemBootMetadataInformation, // 150 SystemSoftRebootInformation, SystemElamCertificateInformation, SystemOfflineDumpConfigInformation, SystemProcessorFeaturesInformation, SystemRegistryReconciliationInformation, SystemEdidInformation, MaxSystemInfoClass } SYSTEM_INFORMATION_CLASS; typedef struct _SYSTEM_HANDLE { ULONG ProcessId; BYTE ObjectTypeNumber; BYTE Flags; USHORT Handle; PVOID Object; ACCESS_MASK GrantedAccess; } SYSTEM_HANDLE, *PSYSTEM_HANDLE; typedef struct _SYSTEM_HANDLE_INFORMATION { ULONG HandleCount; SYSTEM_HANDLE Handles[1]; } SYSTEM_HANDLE_INFORMATION, *PSYSTEM_HANDLE_INFORMATION; typedef struct _PEB_LDR_DATA { ULONG Length; BOOLEAN Initialized; PVOID SsHandle; LIST_ENTRY InLoadOrderModuleList; LIST_ENTRY InMemoryOrderModuleList; LIST_ENTRY InInitializationOrderModuleList; } PEB_LDR_DATA, *PPEB_LDR_DATA; typedef struct _RTL_USER_PROCESS_PARAMETERS { BYTE Reserved1[16]; PVOID Reserved2[10]; } RTL_USER_PROCESS_PARAMETERS, *PRTL_USER_PROCESS_PARAMETERS; typedef struct _PEB_FREE_BLOCK { _PEB_FREE_BLOCK *Next; ULONG Size; } PEB_FREE_BLOCK, *PPEB_FREE_BLOCK; typedef void(*PPEBLOCKROUTINE)( PVOID PebLock ); typedef struct _PEB { BOOLEAN InheritedAddressSpace; BOOLEAN ReadImageFileExecOptions; BOOLEAN BeingDebugged; BOOLEAN Spare; HANDLE Mutant; PVOID ImageBaseAddress; PPEB_LDR_DATA LoaderData; PRTL_USER_PROCESS_PARAMETERS ProcessParameters; PVOID SubSystemData; PVOID ProcessHeap; PVOID FastPebLock; PPEBLOCKROUTINE FastPebLockRoutine; PPEBLOCKROUTINE FastPebUnlockRoutine; ULONG EnvironmentUpdateCount; PVOID* KernelCallbackTable; PVOID EventLogSection; PVOID EventLog; PPEB_FREE_BLOCK FreeList; ULONG TlsExpansionCounter; PVOID TlsBitmap; ULONG TlsBitmapBits[0x2]; PVOID ReadOnlySharedMemoryBase; PVOID ReadOnlySharedMemoryHeap; PVOID* ReadOnlyStaticServerData; PVOID AnsiCodePageData; PVOID OemCodePageData; PVOID UnicodeCaseTableData; ULONG NumberOfProcessors; ULONG NtGlobalFlag; BYTE Spare2[0x4]; LARGE_INTEGER CriticalSectionTimeout; ULONG HeapSegmentReserve; ULONG HeapSegmentCommit; ULONG HeapDeCommitTotalFreeThreshold; ULONG HeapDeCommitFreeBlockThreshold; ULONG NumberOfHeaps; ULONG MaximumNumberOfHeaps; PVOID* *ProcessHeaps; PVOID GdiSharedHandleTable; PVOID ProcessStarterHelper; PVOID GdiDCAttributeList; PVOID LoaderLock; ULONG OSMajorVersion; ULONG OSMinorVersion; ULONG OSBuildNumber; ULONG OSPlatformId; ULONG ImageSubSystem; ULONG ImageSubSystemMajorVersion; ULONG ImageSubSystemMinorVersion; ULONG GdiHandleBuffer[0x22]; ULONG PostProcessInitRoutine; ULONG TlsExpansionBitmap; BYTE TlsExpansionBitmapBits[0x80]; ULONG SessionId; } PEB, *PPEB; typedef struct _PROCESS_BASIC_INFORMATION { NTSTATUS ExitStatus; PPEB PebBaseAddress; ULONG_PTR AffinityMask; KPRIORITY BasePriority; HANDLE UniqueProcessId; HANDLE InheritedFromUniqueProcessId; } PROCESS_BASIC_INFORMATION, *PPROCESS_BASIC_INFORMATION; typedef struct BASE_RELOCATION_BLOCK { DWORD PageAddress; DWORD BlockSize; } BASE_RELOCATION_BLOCK, *PBASE_RELOCATION_BLOCK; typedef struct BASE_RELOCATION_ENTRY { USHORT Offset : 12; USHORT Type : 4; } BASE_RELOCATION_ENTRY, *PBASE_RELOCATION_ENTRY; typedef struct _OBJECT_ATTRIBUTES { ULONG Length; HANDLE RootDirectory; PUNICODE_STRING ObjectName; ULONG Attributes; PVOID SecurityDescriptor; PVOID SecurityQualityOfService; } OBJECT_ATTRIBUTES, *POBJECT_ATTRIBUTES; typedef enum _MEMORY_INFORMATION_CLASS { MemoryBasicInformation, MemoryWorkingSetInformation, MemoryMappedFilenameInformation, MemoryRegionInformation, MemoryWorkingSetExInformation, MemorySharedCommitInformation } MEMORY_INFORMATION_CLASS; typedef struct _LDR_DATA_TABLE_ENTRY { LIST_ENTRY InLoadOrderLinks; LIST_ENTRY InMemoryOrderLinks; LIST_ENTRY InInitializationOrderLinks; PVOID DllBase; PVOID EntryPoint; ULONG SizeOfImage; UNICODE_STRING FullDllName; UNICODE_STRING BaseDllName; ULONG Flags; USHORT LoadCount; USHORT TlsIndex; union { LIST_ENTRY HashLinks; struct { PVOID SectionPointer; ULONG CheckSum; }; }; union { struct { ULONG TimeDateStamp; }; struct { PVOID LoadedImports; }; }; struct _ACTIVATION_CONTEXT * EntryPointActivationContext; PVOID PatchInformation; } LDR_DATA_TABLE_ENTRY, *PLDR_DATA_TABLE_ENTRY; typedef enum _DEBUGOBJECTINFOCLASS { DebugObjectFlags = 1, MaxDebugObjectInfoClass } DEBUGOBJECTINFOCLASS, *PDEBUGOBJECTINFOCLASS; }; namespace MitigationStructs { typedef struct _PROCESS_MITIGATION_ASLR_POLICY { union { DWORD Flags; struct { DWORD EnableBottomUpRandomization : 1; DWORD EnableForceRelocateImages : 1; DWORD EnableHighEntropy : 1; DWORD DisallowStrippedImages : 1; DWORD ReservedFlags : 28; }; }; } PROCESS_MITIGATION_ASLR_POLICY, *PPROCESS_MITIGATION_ASLR_POLICY; typedef struct _PROCESS_MITIGATION_DEP_POLICY { union { DWORD Flags; struct { DWORD Enable : 1; DWORD DisableAtlThunkEmulation : 1; DWORD ReservedFlags : 30; }; }; BOOLEAN Permanent; } PROCESS_MITIGATION_DEP_POLICY, *PPROCESS_MITIGATION_DEP_POLICY; typedef struct _PROCESS_MITIGATION_STRICT_HANDLE_CHECK_POLICY { union { DWORD Flags; struct { DWORD RaiseExceptionOnInvalidHandleReference : 1; DWORD HandleExceptionsPermanentlyEnabled : 1; DWORD ReservedFlags : 30; }; }; } PROCESS_MITIGATION_STRICT_HANDLE_CHECK_POLICY, *PPROCESS_MITIGATION_STRICT_HANDLE_CHECK_POLICY; typedef struct _PROCESS_MITIGATION_SYSTEM_CALL_DISABLE_POLICY { union { DWORD Flags; struct { DWORD DisallowWin32kSystemCalls : 1; DWORD ReservedFlags : 31; }; }; } PROCESS_MITIGATION_SYSTEM_CALL_DISABLE_POLICY, *PPROCESS_MITIGATION_SYSTEM_CALL_DISABLE_POLICY; typedef struct _PROCESS_MITIGATION_DYNAMIC_CODE_POLICY { union { DWORD Flags; struct { DWORD ProhibitDynamicCode : 1; DWORD ReservedFlags : 31; }; }; } PROCESS_MITIGATION_DYNAMIC_CODE_POLICY, *PPROCESS_MITIGATION_DYNAMIC_CODE_POLICY; typedef struct _PROCESS_MITIGATION_BINARY_SIGNATURE_POLICY { union { DWORD Flags; struct { DWORD MicrosoftSignedOnly : 1; DWORD ReservedFlags : 31; }; }; } PROCESS_MITIGATION_BINARY_SIGNATURE_POLICY, *PPROCESS_MITIGATION_BINARY_SIGNATURE_POLICY; typedef struct _PROCESS_MITIGATION_CONTROL_FLOW_GUARD_POLICY { union { DWORD Flags; struct { DWORD EnableControlFlowGuard : 1; DWORD ReservedFlags : 31; }; }; } PROCESS_MITIGATION_CONTROL_FLOW_GUARD_POLICY, *PPROCESS_MITIGATION_CONTROL_FLOW_GUARD_POLICY; typedef struct _PROCESS_MITIGATION_IMAGE_LOAD_POLICY { union { DWORD Flags; struct { DWORD NoRemoteImages : 1; DWORD NoLowMandatoryLabelImages : 1; DWORD PreferSystem32Images : 1; DWORD ReservedFlags : 29; }; }; } PROCESS_MITIGATION_IMAGE_LOAD_POLICY, *PPROCESS_MITIGATION_IMAGE_LOAD_POLICY; typedef struct _PROCESS_MITIGATION_EXTENSION_POINT_DISABLE_POLICY { union { DWORD Flags; struct { DWORD DisableExtensionPoints : 1; DWORD ReservedFlags : 31; }; }; } PROCESS_MITIGATION_EXTENSION_POINT_DISABLE_POLICY, *PPROCESS_MITIGATION_EXTENSION_POINT_DISABLE_POLICY; typedef enum _PROCESS_MITIGATION_POLICY { ProcessDEPPolicy, ProcessASLRPolicy, ProcessDynamicCodePolicy, ProcessStrictHandleCheckPolicy, ProcessSystemCallDisablePolicy, ProcessMitigationOptionsMask, ProcessExtensionPointDisablePolicy, ProcessControlFlowGuardPolicy, ProcessSignaturePolicy, ProcessFontDisablePolicy, ProcessImageLoadPolicy, MaxProcessMitigationPolicy } PROCESS_MITIGATION_POLICY, *PPROCESS_MITIGATION_POLICY; };
[ "zwick.fabi@googlemail.com" ]
zwick.fabi@googlemail.com
bc3eecec8c6b110ce1cb45e5e426db16f7d1187b
078050d18fcde1d1b25857605d78426ae91eb462
/IFTTT/ESP8266/GoogleIoTTest2/GoogleIoTTest2.ino
fd10ec3bf7b5427078b5910df6cf28864629a433
[]
no_license
Bart3009/ESPGoogleHome
218ba62645b6bfc045aa2ad1999bda5d4e3e7fd3
efc088ba9ba6aeb43193d26c36e1694dbf6d54be
refs/heads/master
2021-02-18T12:32:18.502556
2020-03-06T13:31:35
2020-03-06T13:31:35
245,195,702
0
1
null
2020-03-06T13:31:36
2020-03-05T15:13:27
C++
UTF-8
C++
false
false
4,233
ino
/* Netmedias Created on: 24.05.2015 From: https://www.youtube.com/watch?v=c4CC1dMFg78 */ #include <ArduinoJson.h> #include <ESP8266WiFi.h> #include <ESP8266WiFiMulti.h> #include <WebSocketsClient.h> #include <Hash.h> #include "GoogleIOT.h" // @@@@@@@@@@@@@@@ You only need to midify modify wi-fi and domain info @@@@@@@@@@@@@@@@@@@@ const char* ssid = IOT_SSID; //enter your ssid/ wi-fi(case sensitive) router name - 2.4 Ghz only const char* password = IOT_PASSWORD; // enter ssid password (case sensitive) char host[] = "https://turnledon.herokuapp.com/"; //192.168.0.100 -enter your Heroku domain name like "alexagoogleifttt.herokuapp.com" // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ int port = 80; char path[] = "/ws"; ESP8266WiFiMulti WiFiMulti; WebSocketsClient webSocket; const int relayPin = 4; DynamicJsonBuffer jsonBuffer; String currState; int pingCount = 0; void webSocketEvent(WStype_t type, uint8_t * payload, size_t length) { //uint8_t * switch (type) { case WStype_DISCONNECTED: Serial.println("Disconnected! "); Serial.println("Connecting..."); webSocket.begin(host, port, path); webSocket.onEvent(webSocketEvent); break; case WStype_CONNECTED: { Serial.println("Connected! "); // send message to server when Connected webSocket.sendTXT("Connected"); } break; case WStype_TEXT: Serial.println("Got data"); //data = (char*)payload; processWebScoketRequest((char*)payload); break; case WStype_BIN: hexdump(payload, length); Serial.print("Got bin"); // send data to server webSocket.sendBIN(payload, length); break; } } void setup() { Serial.begin(115200); Serial.setDebugOutput(true); pinMode(relayPin, OUTPUT); for (uint8_t t = 4; t > 0; t--) { delay(1000); } Serial.println(); Serial.println(); Serial.print("Connecting to "); //Serial.println(ssid); WiFiMulti.addAP(ssid, password); //WiFi.disconnect(); while (WiFiMulti.run() != WL_CONNECTED) { Serial.print("."); delay(100); } Serial.println("Connected to wi-fi"); webSocket.begin(host, port, path); webSocket.onEvent(webSocketEvent); } void loop() { webSocket.loop(); //If you make change to delay make sure adjust the ping delay(2000); // make sure after every 40 seconds send a ping to Heroku //so it does not terminate the websocket connection //This is to keep the conncetion alive between ESP and Heroku if (pingCount > 20) { pingCount = 0; webSocket.sendTXT("\"heartbeat\":\"keepalive\""); } else { pingCount += 1; } } void processWebScoketRequest(String data) { JsonObject& root = jsonBuffer.parseObject(data); String device = (const char*)root["device"]; String led = (const char*)root["led"]; // String state = (const char*)root["state"]; // String query = (const char*)root["query"]; String message = ""; Serial.println(data); // Serial.println(state); if (led == "on") { digitalWrite(relayPin, HIGH); Serial.println("Turned led on"); } else if (led == "off") { digitalWrite(relayPin, LOW); Serial.println("Turned led off"); } else { Serial.println("Command not recognized"); } // if (query == "cmd") { //if query check state // Serial.println("Recieved command!"); // if (state == "on") { // digitalWrite(relayPin, HIGH); // message = "{\"state\":\"ON\"}"; // currState = "ON"; // } else { // digitalWrite(relayPin, LOW); // message = "{\"state\":\"OFF\"}"; // currState = "OFF"; // } // } else if (query == "?") { //if command then execute // Serial.println("Recieved query!"); // int state = digitalRead(relayPin); // if (currState == "ON") { // message = "{\"state\":\"ON\"}"; // } else { // message = "{\"state\":\"OFF\"}"; // } // } else { //can not recognized the command // Serial.println("Command is not recognized!"); // } // Serial.print("Sending response back"); // Serial.println(message); // send message to server // webSocket.sendTXT(message); // if (query == "cmd" || query == "?") { // webSocket.sendTXT(message); // } }
[ "bartvanveggel@gmail.com" ]
bartvanveggel@gmail.com
7e51b65d015d67823436c36d2d23cc007fd0cae6
f0749232d54f17e3c321b0b90daaeb23b9faec82
/Online Judge Code/[Other] Online-Judge-Solutions-master_from github/Timus Online Judge/1457 - Heating Main.cpp
1babc912683e92d57a0b3a8e3a6775579afccdde
[]
no_license
tmuttaqueen/MyCodes
c9024a5b901e68e7c7466885eddbfcd31a5c9780
80ec40b26649029ad546ce8ce5bfec0b314b1f61
refs/heads/master
2020-04-18T22:20:51.845309
2019-05-16T18:11:02
2019-05-16T18:11:02
167,791,029
1
0
null
null
null
null
UTF-8
C++
false
false
247
cpp
#include <cstdio> using namespace std; int main(){ int N,sum = 0; scanf("%d",&N); for(int i = 0,P;i < N;++i){ scanf("%d",&P); sum += P; } printf("%.10f\n",(double)sum / N); return 0; }
[ "1505002.tm@ugrad.cse.buet.ac.bd" ]
1505002.tm@ugrad.cse.buet.ac.bd
54c01347082ebb7860440037849d01fbc9d0267b
13bfcfd7492f3f4ee184aeafd0153a098e0e2fa5
/Kattis/veci.cpp
8707b21f6ce0be3512b1da1f147eed544932203a
[]
no_license
jqk6/CodeArchive
fc59eb3bdf60f6c7861b82d012d298f2854d7f8e
aca7db126e6e6f24d0bbe667ae9ea2c926ac4a5f
refs/heads/master
2023-05-05T09:09:54.032436
2021-05-20T07:10:02
2021-05-20T07:10:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
263
cpp
#include<iostream> #include<algorithm> using namespace std; #define OW0 ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0); int main(){OW0 string in; cin >> in; if(next_permutation(in.begin(), in.end())){ cout << in; } else { cout << 0; } return 0; }
[ "froghackervirus@gmail.com" ]
froghackervirus@gmail.com
9c693f03da833dfd177832a193b5634f6dca80b7
61850f480413dbfb81a77367a2761b2c0d82fc59
/tec_api/timed_tensor.cpp
d50dd8a83ae8baa0aea8bdc6fed479cbabb1e13f
[]
no_license
semicloud/QuakeAnalysis
49f430e486fda846a2d108183da8f8d0526ec835
ee1ea25921c593407944d41283862d8e02d2aaaa
refs/heads/master
2022-12-12T22:50:01.574724
2020-01-02T04:35:33
2020-01-02T04:35:33
187,571,122
0
0
null
2022-12-08T04:28:23
2019-05-20T05:06:58
C++
UTF-8
C++
false
false
1,274
cpp
#include "stdafx.h" #include "timed_tensor.h" #include "../gdal_lib/gdal_lib.h" boost::posix_time::ptime tec_api::parse_time(boost::filesystem::path const& file_path) { const std::string filename = file_path.filename().stem().string(); std::vector<std::string> strs; boost::split(strs, filename, boost::is_any_of("_")); const std::string year = strs.at(1); const std::string hour = strs.at(3); const long day_of_year = boost::lexical_cast<long>(strs.at(2)); const boost::gregorian::date d{ boost::lexical_cast<unsigned short>(year) ,1,1 }; const boost::gregorian::date d2 = d + boost::gregorian::days(day_of_year - 1); const std::string tstr = (boost::format("%1%-%2%-%3% %4%:00:00") % year % d2.month() % d2.day() % hour).str(); const boost::posix_time::ptime time(boost::posix_time::time_from_string(tstr)); return time; } xt::xtensor<float, 2> tec_api::load_tif(boost::filesystem::path const& p) { std::vector<float> data; size_t xs = 0, ys = 0, bn = 0; double ndv = 0; gdal_lib::read_tif(p.string(), data, xs, ys, bn, ndv); const std::vector<size_t> shape = boost::assign::list_of(ys)(xs); xt::xtensor<float, 2> ans{ xt::adapt(data.data(), ys * xs, xt::no_ownership(),shape) }; xt::filtration(ans, xt::equal(ans, ndv)) = std::nanf(0); return ans; }
[ "liqinyong@vip.qq.com" ]
liqinyong@vip.qq.com
a9a3e83b706a7f935aa6ba9abb845cd9f290be28
ccf6d9896ccf98e420a5d11d79598c5de8b64102
/src/utilities/ow_core/include/ow_core/trajectory/state_trajectories.h
51bbbaaaeb0d6bd37540101e9e9d9c09a12cfe94
[]
no_license
mrcoliva/ur10-controller
5a7843d1b525a6d12fe6cc87e2945c4c36fd48a8
364e70f0e5185cc6c12e850fcd7c0bba1490b98c
refs/heads/main
2023-05-30T19:28:50.062501
2021-06-05T19:33:47
2021-06-05T19:33:47
373,530,197
0
0
null
null
null
null
UTF-8
C++
false
false
2,495
h
/*! \file * * \author Emmanuel Dean-Leon * \author Florian Bergner * \author J. Rogelio Guadarrama-Olvera * \author Simon Armleder * \author Gordon Cheng * * \version 0.1 * \date 14.02.2020 * * \copyright Copyright 2020 Institute for Cognitive Systems (ICS), * Technical University of Munich (TUM) * * #### Licence * 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. * * #### Acknowledgment * This project has received funding from the European Union‘s Horizon 2020 * research and innovation programme under grant agreement No 732287. */ #ifndef OPEN_WALKER_CORE_STATE_TRAJECTORIES_H #define OPEN_WALKER_CORE_STATE_TRAJECTORIES_H #include <ow_core/types.h> #include <geometry_msgs/PoseStamped.h> #include <ow_core/trajectory/state_trajectory.h> namespace ow { /** * @brief Specialization of StateTrajectory for Cartesian space. * */ class CartesianStateTrajectory : public ow_core::StateTrajectory<ow::CartesianState> { public: typedef ow_core::StateTrajectory<ow::CartesianState> Base; typedef ow_core::PolynomialTrajectory<ow::CartesianPosition, ow::Scalar> Trajectory; public: /*! * \brief Constructor. * * Takes a constructed trajectory object as input. */ CartesianStateTrajectory(const Trajectory& trajectory) : Base(trajectory) { } /*! * \brief Deconstructor. */ ~CartesianStateTrajectory() { } /** * @brief Convert to nav_msgs::Path with n_steps evenly spaced in time. * * @param n_steps * @return nav_msgs::Path */ std::vector<geometry_msgs::PoseStamped> toNavPath(size_t n_steps) { std::vector<geometry_msgs::PoseStamped> path; geometry_msgs::PoseStamped pose; double dt_eval = (Base::endTime() - Base::startTime())/ow::Scalar(n_steps); for(size_t i = 0; i < n_steps; ++i) { ow::Scalar time = Base::startTime() + i*dt_eval; pose.pose = trajectory_.evaluate(time); path.push_back(pose); } return path; } }; } #endif
[ "marco.oliva@tum.de" ]
marco.oliva@tum.de
348c7c9ab7d34df0ead8521d686564d274f8b844
775d485029b2250947cbf0b314467e3c9c70ba86
/src/connectivity/bluetooth/core/bt-host/sco/sco_connection_manager.cc
33b491954c115ac976c9144f6108323547fd1044
[ "BSD-2-Clause" ]
permissive
yueyedeai/fuchsia
c8c2ad54dcf91842832ddd6bdfe19d6bfe587be2
cbb6c89423ba2f8ac76300834796d15b13a98f40
refs/heads/master
2023-06-19T18:39:46.045730
2021-07-15T22:45:50
2021-07-15T22:45:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
12,217
cc
// Copyright 2020 The Fuchsia 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 "sco_connection_manager.h" #include "lib/async/default.h" namespace bt::sco { namespace { hci::SynchronousConnectionParameters ConnectionParametersToLe( hci::SynchronousConnectionParameters params) { params.transmit_bandwidth = htole32(params.transmit_bandwidth); params.receive_bandwidth = htole32(params.receive_bandwidth); params.transmit_coding_format.company_id = htole16(params.transmit_coding_format.company_id); params.transmit_coding_format.vendor_codec_id = htole16(params.transmit_coding_format.vendor_codec_id); params.receive_coding_format.company_id = htole16(params.receive_coding_format.company_id); params.receive_coding_format.vendor_codec_id = htole16(params.receive_coding_format.vendor_codec_id); params.transmit_codec_frame_size_bytes = htole16(params.transmit_codec_frame_size_bytes); params.receive_codec_frame_size_bytes = htole16(params.receive_codec_frame_size_bytes); params.input_bandwidth = htole32(params.input_bandwidth); params.output_bandwidth = htole32(params.output_bandwidth); params.input_coding_format.company_id = htole16(params.input_coding_format.company_id); params.input_coding_format.vendor_codec_id = htole16(params.input_coding_format.vendor_codec_id); params.output_coding_format.company_id = htole16(params.output_coding_format.company_id); params.output_coding_format.vendor_codec_id = htole16(params.output_coding_format.vendor_codec_id); params.max_latency_ms = htole16(params.max_latency_ms); params.packet_types = htole16(params.packet_types); return params; } } // namespace ScoConnectionManager::ScoConnectionManager(PeerId peer_id, hci::ConnectionHandle acl_handle, DeviceAddress peer_address, DeviceAddress local_address, fxl::WeakPtr<hci::Transport> transport) : next_req_id_(0u), peer_id_(peer_id), local_address_(local_address), peer_address_(peer_address), acl_handle_(acl_handle), transport_(transport), weak_ptr_factory_(this) { ZX_ASSERT(transport_); // register event handlers AddEventHandler(hci::kSynchronousConnectionCompleteEventCode, fit::bind_member(this, &ScoConnectionManager::OnSynchronousConnectionComplete)); AddEventHandler(hci::kConnectionRequestEventCode, fit::bind_member(this, &ScoConnectionManager::OnConnectionRequest)); } ScoConnectionManager::~ScoConnectionManager() { // Remove all event handlers for (auto handler_id : event_handler_ids_) { transport_->command_channel()->RemoveEventHandler(handler_id); } // Close all connections for (auto [handle, conn] : connections_) { conn->Close(); } if (in_progress_request_) { bt_log(DEBUG, "gap-sco", "ScoConnectionManager destroyed while request in progress"); in_progress_request_.reset(); } } ScoConnectionManager::RequestHandle ScoConnectionManager::OpenConnection( hci::SynchronousConnectionParameters params, ConnectionCallback callback) { return QueueRequest(/*initiator=*/true, params, std::move(callback)); } ScoConnectionManager::RequestHandle ScoConnectionManager::AcceptConnection( hci::SynchronousConnectionParameters params, ConnectionCallback callback) { return QueueRequest(/*initiator=*/false, params, std::move(callback)); } hci::CommandChannel::EventHandlerId ScoConnectionManager::AddEventHandler( const hci::EventCode& code, hci::CommandChannel::EventCallback cb) { auto self = weak_ptr_factory_.GetWeakPtr(); auto event_id = transport_->command_channel()->AddEventHandler( code, [self, callback = std::move(cb)](const auto& event) { if (self) { return callback(event); } return hci::CommandChannel::EventCallbackResult::kRemove; }); ZX_ASSERT(event_id); event_handler_ids_.push_back(event_id); return event_id; } hci::CommandChannel::EventCallbackResult ScoConnectionManager::OnSynchronousConnectionComplete( const hci::EventPacket& event) { ZX_ASSERT(event.event_code() == hci::kSynchronousConnectionCompleteEventCode); const auto& params = event.params<hci::SynchronousConnectionCompleteEventParams>(); DeviceAddress addr(DeviceAddress::Type::kBREDR, params.bd_addr); // Ignore events from other peers. if (addr != peer_address_) { return hci::CommandChannel::EventCallbackResult::kContinue; } auto status = event.ToStatus(); if (bt_is_error(status, INFO, "gap-sco", "SCO connection failed to be established (peer: %s)", bt_str(peer_id_))) { if (in_progress_request_) { CompleteRequest(fpromise::error(HostError::kFailed)); } return hci::CommandChannel::EventCallbackResult::kContinue; } // The controller should only report SCO and eSCO link types (other values are reserved). auto link_type = params.link_type; if (link_type != hci::LinkType::kSCO && link_type != hci::LinkType::kExtendedSCO) { bt_log(ERROR, "gap-sco", "Received SynchronousConnectionComplete event with invalid link type"); return hci::CommandChannel::EventCallbackResult::kContinue; } auto connection_handle = letoh16(params.connection_handle); auto link = hci::Connection::CreateSCO(link_type, connection_handle, local_address_, peer_address_, transport_); if (!in_progress_request_) { bt_log(WARN, "gap-sco", "Unexpected SCO connection complete, disconnecting (peer: %s)", bt_str(peer_id_)); return hci::CommandChannel::EventCallbackResult::kContinue; } auto conn = ScoConnection::Create(std::move(link), /*deactivated_cb=*/[this, connection_handle] { ZX_ASSERT(connections_.erase(connection_handle)); }); auto [_, success] = connections_.try_emplace(connection_handle, conn); ZX_ASSERT_MSG(success, "SCO connection already exists with handle %#.4x (peer: %s)", connection_handle, bt_str(peer_id_)); CompleteRequest(fpromise::ok(std::move(conn))); return hci::CommandChannel::EventCallbackResult::kContinue; } hci::CommandChannel::EventCallbackResult ScoConnectionManager::OnConnectionRequest( const hci::EventPacket& event) { ZX_ASSERT(event.event_code() == hci::kConnectionRequestEventCode); const auto& params = event.params<hci::ConnectionRequestEventParams>(); // Ignore requests for other link types. if (params.link_type != hci::LinkType::kSCO && params.link_type != hci::LinkType::kExtendedSCO) { return hci::CommandChannel::EventCallbackResult::kContinue; } // Ignore requests from other peers. DeviceAddress addr(DeviceAddress::Type::kBREDR, params.bd_addr); if (addr != peer_address_) { return hci::CommandChannel::EventCallbackResult::kContinue; } if (!in_progress_request_ || in_progress_request_->initiator) { bt_log(INFO, "gap-sco", "reject unexpected SCO connection request (peer: %s)", bt_str(peer_id_)); auto reject = hci::CommandPacket::New(hci::kRejectSynchronousConnectionRequest, sizeof(hci::RejectSynchronousConnectionRequestCommandParams)); auto reject_params = reject->mutable_payload<hci::RejectSynchronousConnectionRequestCommandParams>(); reject_params->bd_addr = params.bd_addr; reject_params->reason = hci::StatusCode::kConnectionRejectedBadBdAddr; transport_->command_channel()->SendCommand(std::move(reject), nullptr, hci::kCommandStatusEventCode); return hci::CommandChannel::EventCallbackResult::kContinue; } bt_log(INFO, "gap-bredr", "accepting incoming (e)SCO connection from %s (peer: %s)", bt_str(params.bd_addr), bt_str(peer_id_)); auto accept = hci::CommandPacket::New(hci::kEnhancedAcceptSynchronousConnectionRequest, sizeof(hci::EnhancedAcceptSynchronousConnectionRequestCommandParams)); auto accept_params = accept->mutable_payload<hci::EnhancedAcceptSynchronousConnectionRequestCommandParams>(); accept_params->bd_addr = params.bd_addr; accept_params->connection_parameters = ConnectionParametersToLe(in_progress_request_->parameters); SendCommandWithStatusCallback( std::move(accept), [self = weak_ptr_factory_.GetWeakPtr()](hci::Status status) { if (!self || status.is_success()) { return; } bt_is_error(status, DEBUG, "sco", "SCO accept connection command failed"); self->CompleteRequest(fpromise::error(HostError::kFailed)); }); in_progress_request_->received_request = true; return hci::CommandChannel::EventCallbackResult::kContinue; } ScoConnectionManager::RequestHandle ScoConnectionManager::QueueRequest( bool initiator, hci::SynchronousConnectionParameters params, ConnectionCallback cb) { ZX_ASSERT(cb); // Cancel the current request. queued_request_.reset(); auto req_id = next_req_id_++; queued_request_ = { .id = req_id, .initiator = initiator, .parameters = params, .callback = std::move(cb)}; TryCreateNextConnection(); return RequestHandle([req_id, self = weak_ptr_factory_.GetWeakPtr()]() { if (self) { self->CancelRequestWithId(req_id); } }); } void ScoConnectionManager::TryCreateNextConnection() { // Cancel an in-progress responder request that hasn't received a connection request event yet. if (in_progress_request_) { CancelRequestWithId(in_progress_request_->id); } if (in_progress_request_ || !queued_request_) { return; } in_progress_request_ = std::move(queued_request_); queued_request_.reset(); if (in_progress_request_->initiator) { bt_log(DEBUG, "gap-sco", "Initiating SCO connection (peer: %s)", bt_str(peer_id_)); hci::EnhancedSetupSynchronousConnectionCommandParams command; command.connection_handle = htole16(acl_handle_); command.connection_parameters = ConnectionParametersToLe(in_progress_request_->parameters); auto packet = hci::CommandPacket::New(hci::kEnhancedSetupSynchronousConnection, sizeof(command)); *packet->mutable_payload<decltype(command)>() = command; auto status_cb = [self = weak_ptr_factory_.GetWeakPtr()](hci::Status status) { if (!self || status.is_success()) { return; } bt_is_error(status, DEBUG, "sco", "SCO setup connection command failed"); self->CompleteRequest(fpromise::error(HostError::kFailed)); }; SendCommandWithStatusCallback(std::move(packet), std::move(status_cb)); } } void ScoConnectionManager::CompleteRequest(ConnectionResult result) { ZX_ASSERT(in_progress_request_); bt_log(INFO, "gap-sco", "Completing SCO connection request (initiator: %d, success: %d, peer: %s)", in_progress_request_->initiator, result.is_ok(), bt_str(peer_id_)); in_progress_request_->callback(std::move(result)); in_progress_request_.reset(); TryCreateNextConnection(); } void ScoConnectionManager::SendCommandWithStatusCallback( std::unique_ptr<hci::CommandPacket> command_packet, hci::StatusCallback cb) { hci::CommandChannel::CommandCallback command_cb; if (cb) { command_cb = [cb = std::move(cb)](auto, const hci::EventPacket& event) { cb(event.ToStatus()); }; } transport_->command_channel()->SendCommand(std::move(command_packet), std::move(command_cb)); } void ScoConnectionManager::CancelRequestWithId(ScoRequestId id) { // Cancel queued request if id matches. if (queued_request_ && queued_request_->id == id) { bt_log(TRACE, "gap-sco", "Cancelling queued request (id: %zu)", id); queued_request_.reset(); return; } // Cancel in progress request if it is a responder request that hasn't received a connection // request yet. if (in_progress_request_ && in_progress_request_->id == id && !in_progress_request_->initiator && !in_progress_request_->received_request) { bt_log(TRACE, "gap-sco", "Cancelling in progress request (id: %zu)", id); CompleteRequest(fpromise::error(HostError::kCanceled)); } } } // namespace bt::sco
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
5dfacb4a9bd3952f476dd8f6e43a77500139ee45
5f941e7b0d4d43b49550eafcc2c24af0af8f754f
/softswitch/sems-1.6.0/apps/sbc/call_control/ts/ss_ts/KFPC_CallAlarmMgr.cpp
9afa1f81898616fcfbd01f790d57b10ccaa0c42e
[]
no_license
leegoex/yxcti
d072b04c10e0ccb4f646b8519d5702d259c0735e
051bbb28b060996cdf70ad2ef3e4d6a8653c888a
refs/heads/master
2021-01-19T04:48:03.737334
2017-04-28T01:54:18
2017-04-28T01:54:18
87,395,760
0
1
null
null
null
null
UTF-8
C++
false
false
4,140
cpp
#include "KFPC_CallAlarmMgr.h" #include "KFPC_ContactCenterPublicDef.h" #include "kfpc_api.h" #include "KFPC_DBTaskInsertCallAlarm.h" #include "kfpc_linuxwinapi.h" #include "KFPC_TServerConfigFile.h" #include "KFPC_DBThreadPool.h" KFPC_CallAlarmMgr::KFPC_CallAlarmMgr(void) { m_IVRAlarmSN = 0; m_IVRAlarmCount = 0; m_VOIPAlarmSN = 0; m_VOIPAlarmCount = 0; m_LicAlarmSN = 0; m_LicAlarmCount = 0; } KFPC_CallAlarmMgr::~KFPC_CallAlarmMgr(void) { } void KFPC_CallAlarmMgr::IVRAlarm( unsigned int ChID,const char* pStr ) { if(m_IVRAlarmSN == 0) { KFPC_CallID CallID; CallID.CallIDInfo.ChID = ChID; CallID.CallIDInfo.AppID = KFPC_GetLibParam()->AppInfo.AppID; unsigned long long T = (time(NULL) - KFPC_START_TIME); CallID.CallIDInfo.Time = (unsigned int)T; m_IVRAlarmSN = CallID.CallID; m_IVRAlarmCount ++; #ifndef TSERVER_NODB KFPC_DBTaskInsertCallAlarm* pDBTask = NULL; smart_new(KFPC_DBTaskInsertCallAlarm(m_IVRAlarmSN,0,0xff,"","",pStr,SSTServerCfgInstance->GetDBAccessInfoSet()->GetDBType()),pDBTask); KFPC_DBThreadPoolInstance->PutTask(pDBTask); #endif } else { m_IVRAlarmCount ++; } } void KFPC_CallAlarmMgr::IVRAlarmRecovery() { if(m_IVRAlarmSN > 0) { #ifndef TSERVER_NODB KFPC_DBTaskInsertCallAlarm* pDBTask = NULL; smart_new(KFPC_DBTaskInsertCallAlarm(m_IVRAlarmSN,m_IVRAlarmCount,SSTServerCfgInstance->GetDBAccessInfoSet()->GetDBType()),pDBTask); KFPC_DBThreadPoolInstance->PutTask(pDBTask); #endif } m_IVRAlarmSN = 0; m_IVRAlarmCount = 0; } void KFPC_CallAlarmMgr::VOIPAlarm( unsigned int ChID,const char* pStr ) { if(m_VOIPAlarmSN == 0) { KFPC_CallID CallID; CallID.CallIDInfo.ChID = ChID; CallID.CallIDInfo.AppID = KFPC_GetLibParam()->AppInfo.AppID; unsigned long long T = (time(NULL) - KFPC_START_TIME); CallID.CallIDInfo.Time = (unsigned int)T; m_VOIPAlarmSN = CallID.CallID; m_VOIPAlarmCount ++; #ifndef TSERVER_NODB KFPC_DBTaskInsertCallAlarm* pDBTask = NULL; smart_new(KFPC_DBTaskInsertCallAlarm(m_VOIPAlarmSN,0,0xff,"","",pStr,SSTServerCfgInstance->GetDBAccessInfoSet()->GetDBType()),pDBTask); KFPC_DBThreadPoolInstance->PutTask(pDBTask); #endif } else { m_VOIPAlarmCount ++; } } void KFPC_CallAlarmMgr::VOIPAlarmRecovery() { if(m_VOIPAlarmSN > 0) { #ifndef TSERVER_NODB KFPC_DBTaskInsertCallAlarm* pDBTask = NULL; smart_new(KFPC_DBTaskInsertCallAlarm(m_VOIPAlarmSN,m_VOIPAlarmCount,SSTServerCfgInstance->GetDBAccessInfoSet()->GetDBType()),pDBTask); KFPC_DBThreadPoolInstance->PutTask(pDBTask); #endif } m_VOIPAlarmSN = 0; m_VOIPAlarmCount = 0; } void KFPC_CallAlarmMgr::AppStartMsg( const char* pStr ) { KFPC_CallID CallID; CallID.CallIDInfo.ChID = 0xffff; CallID.CallIDInfo.AppID = KFPC_GetLibParam()->AppInfo.AppID; unsigned long long T = (time(NULL) - KFPC_START_TIME); CallID.CallIDInfo.Time = (unsigned int)T; #ifndef TSERVER_NODB KFPC_DBTaskInsertCallAlarm* pDBTask = NULL; smart_new(KFPC_DBTaskInsertCallAlarm(CallID.CallID,0,0xff,"","",pStr,SSTServerCfgInstance->GetDBAccessInfoSet()->GetDBType()),pDBTask); KFPC_DBThreadPoolInstance->PutTask(pDBTask); #endif } void KFPC_CallAlarmMgr::LicAlarm( const char* pStr ) { if(m_LicAlarmSN == 0) { KFPC_CallID CallID; CallID.CallIDInfo.ChID = 0xfffe; CallID.CallIDInfo.AppID = KFPC_GetLibParam()->AppInfo.AppID; unsigned long long T = (time(NULL) - KFPC_START_TIME); CallID.CallIDInfo.Time = (unsigned int)T; m_LicAlarmSN = CallID.CallID; m_LicAlarmCount ++; #ifndef TSERVER_NODB KFPC_DBTaskInsertCallAlarm* pDBTask = NULL; smart_new(KFPC_DBTaskInsertCallAlarm(m_LicAlarmSN,0,0xff,"","",pStr,SSTServerCfgInstance->GetDBAccessInfoSet()->GetDBType()),pDBTask); KFPC_DBThreadPoolInstance->PutTask(pDBTask); #endif } else { m_LicAlarmCount ++; } } void KFPC_CallAlarmMgr::LicAlarmRecovery() { if(m_LicAlarmSN > 0) { #ifndef TSERVER_NODB KFPC_DBTaskInsertCallAlarm* pDBTask = NULL; smart_new(KFPC_DBTaskInsertCallAlarm(m_VOIPAlarmSN,m_VOIPAlarmCount,SSTServerCfgInstance->GetDBAccessInfoSet()->GetDBType()),pDBTask); KFPC_DBThreadPoolInstance->PutTask(pDBTask); #endif } m_LicAlarmSN = 0; m_LicAlarmCount = 0; }
[ "leegoex@gmail.com" ]
leegoex@gmail.com
d34e5295cc36dd9a93b8fbc526c9259e5725bf72
711e5c8b643dd2a93fbcbada982d7ad489fb0169
/XPSP1/NT/admin/wmi/wbem/winmgmt/provsubsys/decoupledadaptor/include/wqlnode.h
e252381c07dfb2af96a39d0b60773c8f2ef9274e
[]
no_license
aurantst/windows-XP-SP1
629a7763c082fd04d3b881e0d32a1cfbd523b5ce
d521b6360fcff4294ae6c5651c539f1b9a6cbb49
refs/heads/master
2023-03-21T01:08:39.870106
2020-09-28T08:10:11
2020-09-28T08:10:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
28,282
h
/*++ Copyright (C) 1997-2001 Microsoft Corporation Module Name: WQLNODE.H Abstract: WMI SQL Parse Node Definitions History: raymcc 29-Sep-97 Created --*/ #ifndef _WQLNODE_H_ #define _WQLNODE_H_ #define WQL_FLAG_ALIAS 0x1 #define WQL_FLAG_TABLE 0x2 #define WQL_FLAG_ASTERISK 0x4 #define WQL_FLAG_DISTINCT 0x8 #define WQL_FLAG_ALL 0x10 #define WQL_FLAG_COUNT 0x20 #define WQL_FLAG_CONST 0x40 #define WQL_FLAG_COLUMN 0x80 #define WQL_FLAG_COMPLEX_NAME 0x100 #define WQL_FLAG_FUNCTIONIZED 0x200 #define WQL_FLAG_ARRAY_REF 0x400 #define WQL_FLAG_UPPER 0x800 #define WQL_FLAG_LOWER 0x1000 #define WQL_FLAG_FIRSTROW 0x2000 #define WQL_FLAG_CONST_RANGE 0x4000 #define WQL_FLAG_SORT_ASC 0x8000 #define WQL_FLAG_SORT_DESC 0x10000 #define WQL_FLAG_AGGREGATE 0x20000 #define WQL_FLAG_NULL 0x40000 #define WQL_FLAG_INNER_JOIN 1 #define WQL_FLAG_LEFT_OUTER_JOIN 2 #define WQL_FLAG_RIGHT_OUTER_JOIN 3 #define WQL_FLAG_FULL_OUTER_JOIN 4 #define WQL_TOK_BASE 100 #include <wmiutils.h> class CWbemAssocQueryInf : public SWbemAssocQueryInf { public: CWbemAssocQueryInf(); ~CWbemAssocQueryInf(); void Empty(); void Init(); HRESULT CopyFrom(SWbemAssocQueryInf *pSrc); }; //*************************************************************************** // // SWQLNode // // Base node type for all parser output. // //*************************************************************************** struct SWQLNode { DWORD m_dwNodeType; SWQLNode *m_pLeft; SWQLNode *m_pRight; SWQLNode() { m_pLeft = 0; m_pRight = 0; m_dwNodeType = 0; } virtual ~SWQLNode() { if (m_pLeft) delete m_pLeft; if (m_pRight) delete m_pRight; } virtual void DebugDump() = 0; }; //*************************************************************************** // // SWQLNode_QueryRoot // // This is the root of the parse tree. The child nodes are for one of // SELECT, INSERT, UPDATE, DELETE. // // SWQLQueryRoot // / \ // SWQLNode_Select NULL // or SWQLNode_Insert // or SWQLNode_Delete // or SWQLNode_Update // or SWQLNode_AssocQuery // //*************************************************************************** #define TYPE_SWQLNode_QueryRoot (WQL_TOK_BASE + 1) struct SWQLNode_QueryRoot : SWQLNode { enum { eInvalid = 0, eSelect, eInsert, eDelete, eUpdate, eAssoc }; DWORD m_dwQueryType; SWQLNode_QueryRoot() { m_dwNodeType = TYPE_SWQLNode_QueryRoot; m_dwQueryType = 0; } ~SWQLNode_QueryRoot() {} void DebugDump(); }; //*************************************************************************** // // SWQLTypedConst // // Typed constant container (similar to OA VARIANT). // //*************************************************************************** union UWQLTypedConst { LPWSTR m_pString; // VT_LPWSTR for WQL_TOK_QSTRING and WQL_TOK_PROMPT LONG m_lValue; // VT_LONG double m_dblValue; // VT_DOUBLE BOOL m_bValue; // VT_BOOL, use TRUE/FALSE (not VARIANT_TRUE, VARIANT_FALSE) }; struct SWQLTypedConst { DWORD m_dwType; // A VT_ type UWQLTypedConst m_Value; // One of the union fields bool m_bPrompt; // Only true if token was WQL_TOK_PROMPT SWQLTypedConst(); SWQLTypedConst(SWQLTypedConst &Src) { m_dwType = VT_NULL; *this = Src; } SWQLTypedConst & operator = (SWQLTypedConst &Src); ~SWQLTypedConst() { Empty(); } void Empty(); void DebugDump(); }; struct SWQLConstList { CFlexArray m_aValues; // ptrs to SWQLTypedConst SWQLConstList() {} SWQLConstList(SWQLConstList &Src) { *this = Src; } SWQLConstList & operator = (SWQLConstList & Src); ~SWQLConstList() { Empty(); } int Add(SWQLTypedConst *pTC) { return m_aValues.Add(pTC); } void Empty(); }; struct SWQLQualifiedNameField { LPWSTR m_pName; // Name BOOL m_bArrayRef; // TRUE if this is an array reference DWORD m_dwArrayIndex; // If <m_bArrayRef == TRUE> this is the array index SWQLQualifiedNameField() { m_pName = 0; m_bArrayRef = 0; m_dwArrayIndex = 0; } SWQLQualifiedNameField(SWQLQualifiedNameField &Src) { m_pName = 0; *this = Src; } SWQLQualifiedNameField & operator = (SWQLQualifiedNameField &Src); ~SWQLQualifiedNameField() { Empty(); } void Empty() { delete [] m_pName; } }; struct SWQLQualifiedName { CFlexArray m_aFields; // [0] = left most, last entry is column SWQLQualifiedName() {} SWQLQualifiedName(SWQLQualifiedName &Src) { *this = Src; } SWQLQualifiedName & operator = (SWQLQualifiedName &Src); ~SWQLQualifiedName() { Empty(); } int GetNumNames() { return m_aFields.Size(); } const LPWSTR GetName(int nIndex) { return (LPWSTR) ((SWQLQualifiedNameField*) m_aFields[nIndex])->m_pName; } int Add(SWQLQualifiedNameField *pQN) { return m_aFields.Add(pQN); } void Empty(); }; //*************************************************************************** // // SWQLNode_Select // // This is the root of the parse tree or the root of a subselect. // // SWQLNode_Select // / \ // SWQLNode_TableRefs SWQLNode_WhereClause // / \ / \ // x x x x // //*************************************************************************** #define TYPE_SWQLNode_Select (WQL_TOK_BASE + 2) struct SWQLNode_Select : SWQLNode { // Left Node is of type SWQLNode_TableRefs // Right Node is of type SWQLNode_WhereClause int m_nStPos; int m_nEndPos; SWQLNode_Select() : m_nStPos(-1), m_nEndPos(-1) { m_dwNodeType = TYPE_SWQLNode_Select; } void DebugDump(); }; //*************************************************************************** // // SWQLNode_TableRefs // // This contains everything prior to the WHERE clause: the target // column list and the FROM clause. // // Also contains the SELECT type, i.e., ALL vs. DISTINCT vs. COUNT. // // SWQLNode_TableRefs // / \ // SWQLNode_ColumnList SWQLNode_FromClause // // In all cases, SWQLNode_ColumnList is present. Note that if the // user did a "select *...", then the SWQLNode_ColumnList will only // have a single column in it clearly marked as an asterisk. If // a "select count(...) " was done, then m_nSelectType is set to // WQL_FLAG_COUNT and the SWQLNode_ColumnList will have a single // column in it, whether an * or a qualified name. // //*************************************************************************** #define TYPE_SWQLNode_TableRefs (WQL_TOK_BASE + 3) struct SWQLNode_TableRefs : SWQLNode { // Left Node is SWQLNode_ColumnList // Right Node is SWQLNode_FromClause int m_nSelectType; // WQL_FLAG_ALL means ALL was used. // WQL_FLAG_DISTINCT means DISTINCT was used. // WQL_FLAG_COUNT means COUNT was used. SWQLNode_TableRefs() { m_nSelectType = WQL_FLAG_ALL; m_dwNodeType = TYPE_SWQLNode_TableRefs; } ~SWQLNode_TableRefs() {} void DebugDump(); }; //*************************************************************************** // // SWQLNode_ColumnList // // This contains the selected list of columns. // // SWQLNode_ColumnList // / \ // NULL NULL // //*************************************************************************** #define TYPE_SWQLNode_ColumnList (WQL_TOK_BASE + 4) struct SWQLNode_ColumnList : SWQLNode { // Left Node is NULL // Right Node is NULL CFlexArray m_aColumnRefs ; // Pointers to SWQLColRef entries. SWQLNode_ColumnList() { m_dwNodeType = TYPE_SWQLNode_ColumnList; } ~SWQLNode_ColumnList() { Empty(); } void Empty(); void DebugDump(); }; struct SWQLColRef { LPWSTR m_pColName; // The column name or "*" or NULL LPWSTR m_pTableRef; // The table/alias name or NULL if there is none DWORD m_dwArrayIndex; DWORD m_dwFlags; // WQL_FLAG_TABLE bit set if m_pTableRef // is a table name // WQL_FLAG_ALIAS bit set if m_pTableRef // is a table alias // WQL_FLAG_ASTERISK bit set if m_pColName is // * (this is faster than to check than a // string compare on <m_pColName> for "*". // WQL_FLAG_NULL if the column name was "NULL" // WQL_FLAG_FUNCTIONIZED is set if the column // is wrapped in a function call. // The function bits WQL_FLAG_UPPER or // WQL_FLAG_LOWER will be set. // WQL_FLAG_ARRAY_REF is set if the column // is an array column, in which case // m_dwArrayIndex is set to the array offset. // WQL_FLAG_COMPLEX_NAME is set if the name // is qualified in a deeply nested way, // which requires examination of the <QName> // object. In this case <m_pColName> is // set to the last name, but m_pTableRef // is left blank. // WQL_FLAG_SORT_ASC to sort ascending (Order by only) // WQL_FLAG_SORT_DESC to sort descending (Order by only) SWQLQualifiedName *m_pQName; // The full qualified name SWQLColRef() { m_pColName = NULL; m_pTableRef = 0; m_dwFlags = 0; m_dwArrayIndex = 0; m_pQName = 0; } ~SWQLColRef() { delete [] m_pColName; delete [] m_pTableRef; delete m_pQName; } void DebugDump(); }; //*************************************************************************** // // SWQLNode_FromClause // // The subtree containing the tables selected from and any joins. // // SWQLNode_FromClause // / \ // SWQLNode_TableRef SWQLNode_WmiScopedSelect // or SWQLNode_Join // or SWQLNode_Sql89Join // // Note that left and right nodes are mutually exclusive. Either // the left side is used for traditional SQL or the right side is // used for the WMI scoped select. // //*************************************************************************** #define TYPE_SWQLNode_FromClause (WQL_TOK_BASE + 5) struct SWQLNode_FromClause : SWQLNode { // Left is SWQLNode_TableRef or SWQLNode_Join // Right is NULL SWQLNode_FromClause() { m_dwNodeType = TYPE_SWQLNode_FromClause; } ~SWQLNode_FromClause() {} void DebugDump(); }; //*************************************************************************** // // SWQLNode_WmiScopedSelect // // SWQLNode_WmiScopedSelect // / \ // NULL NULL // // // Contains a special-case selection for WMI v2. The syntax is // // FROM '['<object path>']' <class-list> // // ...where <class-list> is either a single class or a curly-bracket-delimited // list of classes, separated by commas: // // FROM [scope.p1=2] MyClass // FROM [scope.p1=2] {MyClass} // FROM [scope.p1=2] {MyClass, MyClass2} // // //*************************************************************************** #define TYPE_SWQLNode_WmiScopedSelect (WQL_TOK_BASE + 6) struct SWQLNode_WmiScopedSelect : SWQLNode { LPWSTR m_pszScope; CFlexArray m_aTables; SWQLNode_WmiScopedSelect() { m_dwNodeType = TYPE_SWQLNode_FromClause; m_pszScope = 0; } ~SWQLNode_WmiScopedSelect() { for (int i = 0; i < m_aTables.Size(); i++) delete LPWSTR(m_aTables[i]); delete m_pszScope; } void DebugDump(); }; //*************************************************************************** // // SWQLNode_Sql89Join // // A subtree which expresses a SQL-89 join. // // SWQLNode_Sql89Join // / \ // NULL NULL // //*************************************************************************** #define TYPE_SWQLNode_Sql89Join (WQL_TOK_BASE + 7) struct SWQLNode_Sql89Join : SWQLNode { CFlexArray m_aValues; // Array of pointers to SWQLNode_TableRef // objects SWQLNode_Sql89Join() { m_dwNodeType = TYPE_SWQLNode_Sql89Join; } ~SWQLNode_Sql89Join() {Empty();}; void DebugDump(); void Empty(); }; //*************************************************************************** // // SWQLNode_Join // // A subtree which expresses a join. // // SWQLNode_Join // / \ // SWQLNode_JoinPair SWQLNode_OnClause or NULL. // //*************************************************************************** #define TYPE_SWQLNode_Join (WQL_TOK_BASE + 8) struct SWQLNode_Join : SWQLNode { // Left ptr is SWQLNode_JoinPair // Right ptr is ON clause. If NULL, there is no ON clause // and the JOIN was a SQL-89 style join with the join condition // present in the WHERE clause. DWORD m_dwJoinType; // One of WQL_FLAG_INNER_JOIN, WQL_FLAG_LEFT_OUTER_JOIN, // WQL_FLAG_RIGHT_OUTER_JOIN or WQL_FLAG_FULL_OUTER_JOIN DWORD m_dwFlags; // Contains WQL_FLAG_FIRSTROW if used SWQLNode_Join() { m_dwNodeType = TYPE_SWQLNode_Join; m_dwJoinType = m_dwFlags = 0; } ~SWQLNode_Join() {} void DebugDump(); }; //*************************************************************************** // // SWQLNode_JoinPair // // SWQLNode_JoinPair // / \ // <SWQLNode_Join or SWQLNode_TableRef> // //*************************************************************************** #define TYPE_SWQLNode_JoinPair (WQL_TOK_BASE + 9) struct SWQLNode_JoinPair : SWQLNode { // Left ptr is SWQLNode_Join or SWQLNode_TableRef // Right ptr is SWQLNodeNode_Join or SWQL_NodeTableRef SWQLNode_JoinPair() { m_dwNodeType = TYPE_SWQLNode_JoinPair; } ~SWQLNode_JoinPair() {} void DebugDump(); }; //*************************************************************************** // // SWQLNode_TableRef // // A node representing a table name and its alias, if any. // // SWQLNode_TableRef // / \ // NULL NULL // //*************************************************************************** #define TYPE_SWQLNode_TableRef (WQL_TOK_BASE + 10) struct SWQLNode_TableRef : SWQLNode { LPWSTR m_pTableName; // The table LPWSTR m_pAlias; // Table alias. NULL if not used. SWQLNode_TableRef() { m_pTableName = 0; m_pAlias = 0; m_dwNodeType = TYPE_SWQLNode_TableRef; } ~SWQLNode_TableRef() { delete [] m_pTableName; delete [] m_pAlias; } void DebugDump(); }; //*************************************************************************** // // SWQLNode_OnClause // // SWQLNode_OnClause // / \ // <SWQLNode_RelExpr> NULL // //*************************************************************************** #define TYPE_SWQLNode_OnClause (WQL_TOK_BASE + 11) struct SWQLNode_OnClause : SWQLNode { // Left ptr is <SWQLNode_RelExpr> which contains the ON clause. // Right ptr is always NULL. SWQLNode_OnClause() { m_dwNodeType = TYPE_SWQLNode_OnClause; } ~SWQLNode_OnClause() {} void DebugDump(); }; //*************************************************************************** // // SWQLNode_WhereClause // // SWQLNode_WhereClause // / \ // SWQLNode_RelExpr SWQLNode_WhereOptions or NULL // or // NULL if no conditions // //*************************************************************************** #define TYPE_SWQLNode_WhereClause (WQL_TOK_BASE + 12) struct SWQLNode_WhereClause : SWQLNode { // Left ptr is SWQLNode_RelExpr. // Right ptr is SQLNode_QueryOptions or NULL if none SWQLNode_WhereClause() { m_dwNodeType = TYPE_SWQLNode_WhereClause; } ~SWQLNode_WhereClause() {} void DebugDump(); }; //*************************************************************************** // // struct SWQLTypedExpr // // This represents a typed subexpression in a where clause: // // mycol < 2 // 33 <= tbl1.col2 // tbl3.col4 = tbl4.col5 // ...etc. // //*************************************************************************** struct SWQLTypedExpr { LPWSTR m_pTableRef; // For qualified column names, // NULL if not used LPWSTR m_pColRef; // Column name DWORD m_dwRelOperator; // The operator used: WQL_TOK_LE, // WQL_TOK_GE, WQL_TOK_LIKE etc. // WQL_TOK_IN_CONST_LIST // WQL_TOK_NOT_IN_CONST_LIST // WQL_TOK_IN_SUBSELECT // WQL_TOK_NOT_IN_SUBSELECT SWQLTypedConst *m_pConstValue; // A const value SWQLTypedConst *m_pConstValue2; // The other const value used with BETWEEN LPWSTR m_pJoinTableRef; // The joined table name or its alias, // NULL if not used LPWSTR m_pJoinColRef; // The joined column name LPWSTR m_pIntrinsicFuncOnColRef; LPWSTR m_pIntrinsicFuncOnJoinColRef; LPWSTR m_pIntrinsicFuncOnConstValue; SWQLNode *m_pLeftFunction; // More detail for DATEPART, etc. SWQLNode *m_pRightFunction; // More detail for DATEPART, etc. DWORD m_dwLeftArrayIndex; DWORD m_dwRightArrayIndex; SWQLQualifiedName *m_pQNRight; SWQLQualifiedName *m_pQNLeft; DWORD m_dwLeftFlags; DWORD m_dwRightFlags; // Each of the above to Flags shows the expression layout on each side // of the operator. // WQL_FLAG_CONST = A typed constant was used // WQL_FLAG_COLUMN = Column field was used // WQL_FLAG_TABLE = Table/Alias was used // WQL_FLAG_COMPLEX = Complex qualified name and/or array was used // WQL_FLAG_FUNCTIONIZED = Function was applied over the const or col. // For IN and NOT IN clauses. // ========================== SWQLNode *m_pSubSelect; SWQLConstList *m_pConstList; // For IN clause with constant-list /* (1) If a const is tested against a column, then <m_pConstValue> will be used to represent it, and the table+col referenced will be in <m_pTableRef> and <m_pColRef>. (2) If a join occurs, then <m_pConstValue> will be NULL. (3) Intrinsic functions (primarily UPPER() and LOWER()) can be applied to the column references or the constant. The function names will be placed in the <m_pIntrinsic...> pointers when applied. (4) If <m_dwRelOperator> is WQL_TOK_IN_CONST_LIST or WQL_TOK_NOT_IN_CONST_LIST then <m_aConstSet> is an array of pointers to SWQLTypedConst structs representing the set of constants that the referenced column must intersect with. (5) If <m_dwRelOperator> is WQL_TOK_IN_SUBSELECT or WQL_TOK_NOT_IN_SUBSELECT then m_pSubSelect is a pointer to an embedded subselect tree in the form of a SWQLNode_Select struct, beginning the root of an entirely new select statement. */ SWQLTypedExpr(); ~SWQLTypedExpr() { Empty(); } void DebugDump(); void Empty(); }; //*************************************************************************** // // SWQLNode_RelExpr // // SWQLNode_RelExpr // / \ // SWQLNode_RelExpr SWQLNode_RelExpr // or NULL or NULL // //*************************************************************************** #define TYPE_SWQLNode_RelExpr (WQL_TOK_BASE + 13) struct SWQLNode_RelExpr : SWQLNode { DWORD m_dwExprType; // WQL_TOK_OR // WQL_TOK_AND // WQL_TOK_NOT // WQL_TOK_TYPED_EXPR SWQLTypedExpr *m_pTypedExpr; /* (1) If the <m_dwExprType> is WQL_TOK_AND or WQL_TOK_OR, then each of the two subnodes are themselves SWQLNode_RelExpr nodes and <m_pTypedExpr> points to NULL. (2) If <m_dwExprType> is WQL_TOK_NOT, then <m_pLeft> points to a SWQLNode_RelExpr containing the subclause to which to apply the NOT operation and <m_pRight> points to NULL. (3) If <m_dwExprType> is WQL_TOK_TYPED_EXPR, then <m_pLeft> and <m_pRight> both point to NULL, and <m_pTypedExpr> contains a typed relational subexpression. (4) Parentheses have been removed and are implied by the nesting. */ SWQLNode_RelExpr() { m_dwNodeType = TYPE_SWQLNode_RelExpr; m_pTypedExpr = 0; m_dwExprType = 0; } ~SWQLNode_RelExpr() { delete m_pTypedExpr; } void DebugDump(); }; //*************************************************************************** // // SWQLNode_WhereOptions // // SWQLNode_WhereOptions // / \ // SWQLNode_GroupBy SWQLNode_OrderBy // //*************************************************************************** #define TYPE_SWQLNode_WhereOptions (WQL_TOK_BASE + 14) struct SWQLNode_WhereOptions : SWQLNode { // left ptr is SWQLNode_GroupBy, or NULL if not used // right ptr is SWQLNode_OrderBy, or NULL if not used SWQLNode_WhereOptions() { m_dwNodeType = TYPE_SWQLNode_WhereOptions; } void DebugDump(); }; //*************************************************************************** // // SWQLNode_GroupBy // // SWQLNode_GroupBy // / \ // SWQLNode_ColumnList SWQLNode_Having // or NULL // //*************************************************************************** #define TYPE_SWQLNode_GroupBy (WQL_TOK_BASE + 15) struct SWQLNode_GroupBy : SWQLNode { // left ptr is SWQLNode_ColumnList of columns to group by // right ptr is Having clause, if any SWQLNode_GroupBy() { m_dwNodeType = TYPE_SWQLNode_GroupBy; } void DebugDump(); }; //*************************************************************************** // // SWQLNode_Having // // SWQLNode_Having // / \ // SWQLNode_RelExpr NULL // //*************************************************************************** #define TYPE_SWQLNode_Having (WQL_TOK_BASE + 16) struct SWQLNode_Having : SWQLNode { // left ptr is SQLNode_RelExpr pointing to HAVING expressions // right ptr is NULL SWQLNode_Having() { m_dwNodeType = TYPE_SWQLNode_Having; } void DebugDump(); }; //*************************************************************************** // // SWQLNode_OrderBy // // SWQLNode_OrderBy // / \ // SWQLNode_ColumnList NULL // //*************************************************************************** #define TYPE_SWQLNode_OrderBy (WQL_TOK_BASE + 17) struct SWQLNode_OrderBy : SWQLNode { // left ptr is SWQLNode_ColumnList // right ptr is NULL SWQLNode_OrderBy() { m_dwNodeType = TYPE_SWQLNode_OrderBy; } void DebugDump(); }; //*************************************************************************** // // SWQLNode_Datepart // // Contains a datepart call. // //*************************************************************************** #define TYPE_SWQLNode_Datepart (WQL_TOK_BASE + 18) struct SWQLNode_Datepart : SWQLNode { int m_nDatepart; // One of WQL_TOK_YEAR, WQL_TOK_MONTH, // WQL_TOK_DAY, WQL_TOK_HOUR, WQL_TOK_MINUTE // WQL_TOK_SECOND SWQLColRef *m_pColRef; // The column to which DATEPART applies SWQLNode_Datepart() { m_dwNodeType = TYPE_SWQLNode_Datepart; m_nDatepart = 0; } ~SWQLNode_Datepart() { delete m_pColRef; } void DebugDump(); }; //*************************************************************************** // // SWQLNode_Delete // // This is the root of a parse tree for delete. // // SWQLNode_Delete // / \ // SWQLNode_TableRef vSWQLNode_WhereClause // / \ // x x // //*************************************************************************** #define TYPE_SWQLNode_Delete (WQL_TOK_BASE + 19) struct SWQLNode_Delete : SWQLNode { // Left Node is of type SWQLNode_TableRef // Right Node is of type SWQLNode_WhereClause SWQLNode_Delete() { m_dwNodeType = TYPE_SWQLNode_Delete; } ~SWQLNode_Delete(); void DebugDump(); }; //*************************************************************************** // // SWQLNode_Insert // // This is the root of an INSERT // // SWQLNode_Delete // / \ // SWQLNode_TableRef SWQLNode_InsertValues // / \ // x x // //*************************************************************************** #define TYPE_SWQLNode_Insert (WQL_TOK_BASE + 20) struct SWQLNode_Insert : SWQLNode { SWQLNode_Insert() { m_dwNodeType = TYPE_SWQLNode_Insert; } ~SWQLNode_Insert(); void DebugDump(); }; //*************************************************************************** // // SWQLNode_Update // // This is the root of an INSERT // // SWQLNode_Update // / \ // SWQLNode_SetClause SWQLNode_WhereClause // //*************************************************************************** #define TYPE_SWQLNode_Update (WQL_TOK_BASE + 21) struct SWQLNode_Update : SWQLNode { SWQLNode_Update() { m_dwNodeType = TYPE_SWQLNode_Update; } ~SWQLNode_Update(); void DebugDump(); }; //*************************************************************************** // // SWQLNode_AssocQuery // // SWQLNode_AssocQuery // / \ // NULL NULL // //*************************************************************************** #define TYPE_SWQLNode_AssocQuery (WQL_TOK_BASE + 22) struct SWQLNode_AssocQuery : SWQLNode { CWbemAssocQueryInf *m_pAQInf; SWQLNode_AssocQuery() { m_pAQInf = 0; m_dwNodeType = TYPE_SWQLNode_AssocQuery; } ~SWQLNode_AssocQuery() { delete m_pAQInf; } void DebugDump(); }; #endif 
[ "112426112@qq.com" ]
112426112@qq.com
d194aace7c651320fa88062d4175e37ea5351af8
4a9a13e8a0d854c1cf54ec396966bf0fc087c6a7
/main.cpp
47ff535cac52d2d64ca9f06797d32c9ce4bdb73e
[]
no_license
JesseBusman/Filemass
592452ffbc418fa945651e4f417bcb57514f03d2
9cbde78b72cc359a2318049daa89777423c91835
refs/heads/master
2023-01-16T04:31:22.443925
2020-11-26T16:36:18
2020-11-26T16:36:18
270,271,920
0
0
null
null
null
null
UTF-8
C++
false
false
23,302
cpp
#include <string> #include <vector> #include <iostream> #include <map> #include <optional> #include <filesystem> #include <sstream> #include <fstream> #include <cctype> #include <locale> #include <array> #include <memory> #include <magic.h> #include "sqlite3.h" #include "util.h" #include "sha256.h" #include "repository.h" #include "tag.h" #include "tag_query.h" #include "tag_parser.h" #include "tag_query_parser.h" #include "path_pattern.h" #include "json.h" #include "uuid.h" bool DEBUGGING = false; bool arg_json = false; JsonValue_Map jsonOutput; int main(int argc, char* argv[]) { for (int i=0; i<32; i++) ZERO_HASH[i] = 0x00; try { if (argc == 1) { std::cout << "Repo:\r\n" << "--repo=[dir] Select repo located at directory [dir]\r\n" << "--init-repo Initialize the selected repository\r\n" << "\r\nTagbase:\r\n" << "--tagbase=[file] Select tagbase located in file [file]\r\n" << "--init-tagbase Initialize the selected tagbase\r\n" << "\r\nFiles:\r\n" << "--files=[hashlist] Select the files with hash in [hashlist]\r\n" << "--add-files=[file] Add files matching [file] to selected repo, and select them\r\n" << "--errcheck Run error checks on the selected files\r\n" << "\r\nTags:\r\n" << "--tag=[tagquery] Find files that match the given [tagquery]\r\n" << "--add-tags=[taglist] Add [tags] to the selected files\r\n" << "--add-fs-tags Add #original_path tags to the selected files\r\n" << "--remove-tags=[taglist] Remove [tags] from the selected files\r\n" << "\r\nOutput format:\r\n" << "--json Format output as JSON\r\n" << "\r\nExamples of [taglist] syntax:\r\n" << "--add-tag=football,match,sport,team[Los Angeles],team[Chicago]\r\n" << "--untag=team[name=Chicago]\r\n" << "\r\nExamples of [tagquery] syntax:\r\n" << "--tag=\"football & team[Los Angeles | Chicago]\"\r\n"; exit(0); return 0; } std::optional<std::string> arg_repo; std::optional<std::string> arg_tagbase; std::optional<std::string> arg_files; std::optional<std::string> arg_add_files; std::optional<std::string> arg_tags; std::optional<std::string> arg_add_tags; std::optional<std::string> arg_remove_tags; arg_json = false; DEBUGGING = false; bool arg_init_repo = false; bool arg_init_tagbase = false; bool arg_add_fs_tags = false; bool arg_errcheck = false; bool arg_errfix = false; for (int i = 1; i < argc; i++) { const char* arg = argv[i]; int start = 0; if (arg[0] == '-' && arg[1] != '-') start = 1; if (arg[0] == '-' && arg[1] == '-') start = 2; int equalsSignPosition = -1; for (int j = start; ; j++) { char c = arg[j]; if (c == 0x00) break; if (c == '=') { equalsSignPosition = j; } } std::string field = (equalsSignPosition == -1) ? &arg[start] : std::string(&arg[start], equalsSignPosition - start); std::string value = (equalsSignPosition == -1) ? "" : &arg[equalsSignPosition + 1]; if (field == "json") { arg_json = true; } else if (field == "errcheck") { arg_errcheck = true; } else if (field == "errfix") { arg_errfix = true; } else if (field == "debug") { DEBUGGING = true; } else if (field == "add-files") { arg_add_files = value; } else if (field == "repo") { arg_repo = value; } else if (field == "tagbase") { arg_tagbase = value; } else if (field == "files") { arg_files = value; } else if (field == "init-repo") { if (value.length() != 0) { exitWithError("--init-repo takes no arguments"); } arg_init_repo = true; } else if (field == "init-tagbase") { if (value.length() != 0) { exitWithError("--init-tagbase takes no arguments"); } arg_init_tagbase = true; } else if (field == "tags") { arg_tags = value; } else if (field == "add-tags") { arg_add_tags = value; } else if (field == "add-fs-tags") { arg_add_fs_tags = true; } else if (field == "remove-tags" || field == "untag") { arg_remove_tags = value; } else { exitWithError("Unknown command line argument " + field); } } ////////////////////////// //// --init-repo std::string selected_repository_path = arg_repo.has_value() ? *arg_repo : "."; if (arg_init_repo) { if (!std::filesystem::exists(selected_repository_path)) { std::filesystem::create_directories(selected_repository_path); } if (!std::filesystem::is_directory(selected_repository_path)) { exitWithError("Cannot init repository at " + selected_repository_path + " because it's not a directory"); } if (!std::filesystem::is_empty(selected_repository_path)) { exitWithError("Cannot init repository at " + selected_repository_path + " because that directory is not empty"); } std::string config_path = selected_repository_path + "/fmrepo.conf"; if (std::filesystem::exists(config_path)) { exitWithError("Cannot init repository at " + selected_repository_path + " because config file already exists at " + config_path); } std::ofstream outfile(config_path, std::ios::out); std::string initialConfigFile = "uuid="+generate_uuid_v4()+"\r\n"; outfile.write(initialConfigFile.c_str(), initialConfigFile.length()); outfile.flush(); outfile.close(); if (arg_json) { jsonOutput.set("initialized_repository", selected_repository_path); } else { std::cout << "[--init-repo] Initialized repository at " << selected_repository_path << "\r\n"; } } ////////////////////////////////////// //// --repo std::shared_ptr<Repository> selected_repository = nullptr; if (std::filesystem::exists(selected_repository_path)) { if (std::filesystem::is_directory(selected_repository_path)) { selected_repository = std::make_shared<Repository>(selected_repository_path); } else if (arg_repo.has_value()) { exitWithError("Specified repo path is not a directory: " + selected_repository_path); } } else if (arg_repo.has_value()) { exitWithError("Specified repo does not exist: " + selected_repository_path); } ///////////////////////////////////////////////// //// --init-tagbase std::string selected_tagbase_path = arg_tagbase.has_value() ? *arg_tagbase : "./default_tagbase.sqlite3"; sqlite3* tagbase_db = nullptr; if (arg_init_tagbase) { if (std::filesystem::exists(selected_tagbase_path)) { exitWithError("Cannot init tagbase at " + selected_tagbase_path + " because that file already exists"); } int sqlite_returncode = sqlite3_open(selected_tagbase_path.c_str(), &tagbase_db); if (sqlite_returncode != SQLITE_OK) { exitWithError("Cannot init tagbase at " + selected_tagbase_path + " because of sqlite error " + std::to_string(sqlite_returncode) + ": " + sqlite3_errmsg(tagbase_db)); } q( tagbase_db, "CREATE TABLE edges" "(" " parent_hash_sum BLOB NOT NULL," " hash_sum BLOB NOT NULL," " _this_hash BLOB NOT NULL," " _file_hash BLOB NOT NULL," " _grandparent_hash_sum BLOB NOT NULL," " UNIQUE(parent_hash_sum, hash_sum)" ")" ); q( tagbase_db, "CREATE INDEX edges__index_on__parent_hash_sum__hash_sum__this_hash ON edges (parent_hash_sum, hash_sum, _this_hash)" ); // todo figure out whether to make these indices UNIQUE q( tagbase_db, "CREATE INDEX edges__index_on__hash_sum__this_hash ON edges (hash_sum, _this_hash)" ); q( tagbase_db, "CREATE INDEX edges__index_on__this_hash__parent_hash_sum ON edges (_this_hash, parent_hash_sum)" ); q( tagbase_db, "CREATE INDEX edges__index_on__this_hash__file_hash ON edges (_this_hash, _file_hash)" ); q( tagbase_db, "CREATE TABLE hashed_data" "(" " hash BLOB NOT NULL PRIMARY KEY," " data BLOB NOT NULL" ")" ); q( tagbase_db, "CREATE TABLE parent_hash_sum_counts" "(" " parent_hash_sum BLOB NOT NULL," " count INTEGER NOT NULL" ")" ); q( tagbase_db, "CREATE INDEX parent_hash_sum_counts__index_on__parent_hash_sum ON parent_hash_sum_counts (parent_hash_sum)" ); q( tagbase_db, "CREATE TABLE child_hash_counts" "(" " child_hash BLOB NOT NULL," " count INTEGER NOT NULL" ")" ); q( tagbase_db, "CREATE INDEX child_hash_counts__index_on__child_hash ON child_hash_counts (child_hash)" ); } ////////////////////////////////////////////////// //// --tagbase if (tagbase_db == nullptr && arg_tagbase.has_value()) // && (arg_tags.has_value() || arg_remove_tags.has_value() || arg_add_tags.has_value())) { if (!std::filesystem::exists(selected_tagbase_path)) { exitWithError("Cannot open tagbase at " + selected_tagbase_path + " because that file does not exist"); } if (!std::filesystem::is_regular_file(selected_tagbase_path)) { exitWithError("Cannot open tagbase at " + selected_tagbase_path + " because that file is not a regular file"); } int sqlite_returncode = sqlite3_open(selected_tagbase_path.c_str(), &tagbase_db); if (sqlite_returncode != SQLITE_OK) { exitWithError("Cannot open tagbase at " + selected_tagbase_path + " because of sqlite error " + std::to_string(sqlite_returncode) + ": " + sqlite3_errmsg(tagbase_db)); } } ///////////////////////////////////////////////////// //// --add-files std::vector<std::array<char, 32>> selected_file_hashes; std::vector<std::string> selected_file_paths; if (arg_add_files.has_value()) { std::shared_ptr<PathPattern> pathPattern = parsePathPattern(*arg_add_files); if (DEBUGGING) { if (arg_json) jsonOutput.set("_debug_pathPattern", pathPattern->toString()); else std::cout << "[--add-files] pathPattern = " << pathPattern->toString() << "\r\n"; } long long amountOFilesAdded = 0; long long amountOfNewFilesAdded = 0; pathPattern->findFiles(".", [&selected_repository, &selected_file_hashes, &selected_file_paths, &amountOFilesAdded, &amountOfNewFilesAdded](const std::string& path){ if (!std::filesystem::is_regular_file(path)) { exitWithError("The file you're trying to add is not a regular file: " + path); } auto [hash, wasNewlyAdded] = selected_repository->add(path); selected_file_hashes.push_back(hash); selected_file_paths.push_back(path); amountOFilesAdded++; if (wasNewlyAdded) amountOfNewFilesAdded++; }); if (arg_json) { jsonOutput.set("filesAdded", amountOFilesAdded); jsonOutput.set("newFilesAdded", amountOfNewFilesAdded); } else { std::cout << "Added " << amountOFilesAdded << " files to the repository, " << amountOfNewFilesAdded << " of which were new.\r\n"; } } ///////////////////////////////////////////////////// //// --files if (arg_files.has_value()) { std::array<char, 32> hash; for (unsigned int i=0; i<arg_files->length(); i++) { char c = (*arg_files)[i]; if (c == ',' || c == ' ' || c == ';') { } else if ((c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F')) { int amountBytes = hex_to_bytes(&arg_files->c_str()[i], hash); if (amountBytes != 32) { exitWithError("Arguments to --files must be 32 bytes hex values."); } i += 64; selected_file_hashes.push_back(hash); selected_file_paths.push_back(""); } else exitWithError("Unexpected character in --files argument"); } auto filesArray = std::make_shared<JsonValue_Array>(); for (auto const& fileHash : selected_file_hashes) { auto file = std::make_shared<JsonValue_Map>(); file->set("hash", bytes_to_hex(fileHash)); if (tagbase_db != nullptr) { std::shared_ptr<Tag> tags = findTagsOfFile(fileHash, tagbase_db); auto tagsArray = std::make_shared<JsonValue_Array>(); for (auto tag : tags->subtags) { tagsArray->array.push_back(tag->toJSON()); } file->set("tags", tagsArray); } filesArray->array.push_back(file); } jsonOutput.set("files", filesArray); } ///////////////////////////////////////////////////// //// --errcheck if (arg_errcheck) { if (selected_repository == nullptr) { exitWithError("A repository must be selected to use --errcheck"); } std::shared_ptr<JsonValue_Array> filesNoError = std::make_shared<JsonValue_Array>(); std::shared_ptr<JsonValue_Array> filesNotFound = std::make_shared<JsonValue_Array>(); std::shared_ptr<JsonValue_Array> filesError = std::make_shared<JsonValue_Array>(); unsigned long amountNoError = 0; unsigned long amountNotFound = 0; unsigned long amountError = 0; for (auto hash : selected_file_hashes) { std::string hashStr = bytes_to_hex(hash); ErrorCheckResult ecr = selected_repository->errorCheck(hash); if (arg_json) { if (ecr == ECR_ALL_OK) filesNoError->array.push_back(std::shared_ptr<JsonValue>(new JsonValue_String(hashStr))); else if (ecr == ECR_FILE_NOT_FOUND) filesNotFound->array.push_back(std::shared_ptr<JsonValue>(new JsonValue_String(hashStr))); else if (ecr == ECR_ERROR) filesError->array.push_back(std::shared_ptr<JsonValue>(new JsonValue_String(hashStr))); else exitWithError("Unknown ECR code"); } else { if (ecr == ECR_ERROR) { printf("[--errcheck] File %s has an error!\r\n", hashStr.c_str()); amountError++; } else if (ecr == ECR_FILE_NOT_FOUND) { printf("[--errcheck] File %s was not found!\r\n", hashStr.c_str()); amountNotFound++; } else if (ecr == ECR_ALL_OK) { amountNoError++; } else exitWithError("Unknown ECR code"); } } if (arg_json) { jsonOutput.set("files_no_error", filesNoError); jsonOutput.set("files_not_found", filesNotFound); jsonOutput.set("files_error", filesError); } else { printf("[--errcheck] %lu files checked for errors: %lu ok, %lu with error, %lu not found\r\n", amountNoError + amountError + amountNotFound, amountNoError, amountError, amountNotFound); } } ///////////////////////////////////////////////////// //// --errfix if (arg_errfix) { if (selected_repository == nullptr) { exitWithError("A repository must be selected to use --errcheck"); } std::shared_ptr<JsonValue_Array> filesFailedToFix = std::make_shared<JsonValue_Array>(); std::shared_ptr<JsonValue_Array> filesFixed = std::make_shared<JsonValue_Array>(); std::shared_ptr<JsonValue_Array> filesWereNotBroken = std::make_shared<JsonValue_Array>(); std::shared_ptr<JsonValue_Array> filesNotFound = std::make_shared<JsonValue_Array>(); unsigned long amountFailedToFix = 0; unsigned long amountFixed = 0; unsigned long amountNotBroken = 0; unsigned long amountNotFound = 0; for (auto hash : selected_file_hashes) { std::string hashStr = bytes_to_hex(hash); ErrorFixResult efr = selected_repository->errorFix(hash); if (arg_json) { if (efr == EFR_FIXED) { filesFixed->array.push_back(std::shared_ptr<JsonValue>(new JsonValue_String(hashStr))); amountFixed++; } else if (efr == EFR_FAILED_TO_FIX) { filesFailedToFix->array.push_back(std::shared_ptr<JsonValue>(new JsonValue_String(hashStr))); amountFailedToFix++; } else if (efr == EFR_FILE_NOT_FOUND) { filesNotFound->array.push_back(std::shared_ptr<JsonValue>(new JsonValue_String(hashStr))); amountNotFound++; } else if (efr == EFR_WAS_NOT_BROKEN) { filesWereNotBroken->array.push_back(std::shared_ptr<JsonValue>(new JsonValue_String(hashStr))); amountNotBroken++; } else exitWithError("Unknown ECR code"); } else { if (efr == EFR_FIXED) { printf("[--errfix] :) File %s has been fixed!\r\n", hashStr.c_str()); amountFixed++; } else if (efr == EFR_FAILED_TO_FIX) { printf("[--errfix] :( File %s could not be fixed!\r\n", hashStr.c_str()); amountFailedToFix++; } else if (efr == EFR_WAS_NOT_BROKEN) { printf("[--errfix] :) File %s was not broken!\r\n", hashStr.c_str()); amountNotBroken++; } else if (efr == EFR_FILE_NOT_FOUND) { printf("[--errfix] :| File %s was not found!\r\n", hashStr.c_str()); amountNotFound++; } else exitWithError("Unknown ECR code"); } } if (arg_json) { jsonOutput.set("files_fixed", filesFixed); jsonOutput.set("files_failed_to_fix", filesFailedToFix); jsonOutput.set("files_not_found", filesNotFound); jsonOutput.set("files_were_not_broken", filesWereNotBroken); } else { printf("[--errfix] Tried to fix %lu files:\n", amountFixed+amountFailedToFix+amountNotFound+amountNotBroken); printf(" - %lu fixed\n", amountFixed); printf(" - %lu failed to fix\n", amountFailedToFix); printf(" - %lu not found\n", amountNotFound); printf(" - %lu were not broken\n", amountNotBroken); } } ////////////////////////////////////////////////////////// //// --add-tags if (arg_add_tags.has_value()) { if (selected_file_hashes.size() == 0) { exitWithError("To use --add-tags, at least one file must be selected (using --add-files or --files)"); } if (tagbase_db == nullptr) { exitWithError("To use --add-tags, a tagbase must be selected"); } std::vector<std::shared_ptr<Tag>> tags = parseTag(*arg_add_tags); q(tagbase_db, "BEGIN TRANSACTION"); for (const auto& file_hash : selected_file_hashes) for (const auto& tag : tags) { tag->addTo(file_hash, ZERO_HASH, file_hash, tagbase_db, true); } q(tagbase_db, "COMMIT"); } ////////////////////////////////////////////////////////// //// --add-fs-tags if (arg_add_fs_tags) { if (selected_file_hashes.size() == 0) { exitWithError("To use --add-fs-tags, at least one file must be selected (using --add-files)"); } if (tagbase_db == nullptr) { exitWithError("To use --add-fs-tags, a tagbase must be selected"); } if (selected_file_hashes.size() != selected_file_paths.size()) { // wtf printf("WTF"); exit(1); // wtf return 1; } const char *magic_full; magic_t magic_cookie; magic_cookie = magic_open(MAGIC_MIME); if (magic_cookie == NULL) { printf("Unable to initialize magic library\n"); exit(1); return 1; } if (magic_load(magic_cookie, NULL) != 0) { printf("Cannot load magic database: %s\n", magic_error(magic_cookie)); magic_close(magic_cookie); exit(1); return 1; } q(tagbase_db, "BEGIN TRANSACTION"); for (unsigned int i=0; i<selected_file_paths.size(); i++) { // #original_path const auto& file_path = selected_file_paths[i]; if (file_path.length() == 0) continue; const auto& file_hash = selected_file_hashes[i]; std::string abs_file_path = std::filesystem::canonical(file_path); std::vector<std::string> tag_chain{"#original_path"}; unsigned int prevStart = 0; for (unsigned int j=0; j<=abs_file_path.size(); j++) { char c = abs_file_path.c_str()[j]; if (c == '/' || c == 0x00) { if (prevStart != j) { tag_chain.push_back(abs_file_path.substr(prevStart, j-prevStart)); } prevStart = j + 1; } } Tag(tag_chain).addTo(file_hash, ZERO_HASH, file_hash, tagbase_db, true); // #mime_content_type magic_full = magic_file(magic_cookie, file_path.c_str()); if (magic_full != nullptr) { Tag({"#mime_content_type", std::string(magic_full)}).addTo(file_hash, ZERO_HASH, file_hash, tagbase_db, true); } } magic_close(magic_cookie); q(tagbase_db, "COMMIT"); } ////////////////////////////////////////////////////////// //// --remove-tags if (arg_remove_tags.has_value()) { if (selected_file_hashes.size() == 0) { exitWithError("To use --remove-tags, a file must be selected (using --files)"); } if (tagbase_db == nullptr) { exitWithError("To use --remove-tags, a tagbase must be selected"); } std::vector<std::shared_ptr<Tag>> tags = parseTag(*arg_add_tags); for (const auto& file_hash : selected_file_hashes) for (auto tag : tags) { tag->removeFrom(file_hash, tagbase_db); } } ////////////////////////////////////////////////////////// //// --tags if (arg_tags.has_value()) { if (tagbase_db == nullptr) { exitWithError("To use --tag, a tagbase must be selected"); } std::shared_ptr<TagQuery> tagQuery = parseTagQuery(*arg_tags); if (DEBUGGING) std::cout << "[--tags] Tag query: " << tagQuery->toString() << "\r\n"; std::map<std::array<char, 32>, bool> fileHashes; tagQuery->findIn(ZERO_HASH, fileHashes, tagbase_db); if (arg_json) { auto filesArray = std::make_shared<JsonValue_Array>(); for (auto const& [fileHash, _] : fileHashes) { auto file = std::make_shared<JsonValue_Map>(); file->set("hash", bytes_to_hex(fileHash)); std::shared_ptr<Tag> tags = findTagsOfFile(fileHash, tagbase_db); auto tagsArray = std::make_shared<JsonValue_Array>(); for (auto tag : tags->subtags) { tagsArray->array.push_back(tag->toJSON()); } file->set("tags", tagsArray); filesArray->array.push_back(file); } jsonOutput.set("files", filesArray); } else { std::cout << "Found " << fileHashes.size() << " files:\r\n"; for (auto const& [fileHash, _] : fileHashes) { std::shared_ptr<Tag> tags = findTagsOfFile(fileHash, tagbase_db); std::cout << tags->toString() << "\r\n"; } } } if (tagbase_db != nullptr) { sqlite3_close(tagbase_db); } if (arg_json) { jsonOutput.write(std::cout); } return 0; } catch (const char* errorMessage) { exitWithError("Fatal error: " + std::string(errorMessage)); } catch (std::string errorMessage) { exitWithError("Fatal error: " + errorMessage); } return 1; }
[ "jesse@jesbus.com" ]
jesse@jesbus.com
85158da4e6593230745ad64c3061b152aed50227
6463ff2b057ca5f7ed1efa6ca3d24f484c797425
/testTheta/PointXY.cpp
77da2f4463b001613e43180f42cff0deb6a4472d
[]
no_license
xdrond/practiseEdu1CartesianRobot
5a4dc9e34ff36303f31c632228beb65032b1946e
1bbaece4d006280039bb33de72af9209a3ab592a
refs/heads/master
2021-10-08T16:40:23.800226
2018-12-14T20:24:00
2018-12-14T20:24:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,105
cpp
// PointXY.cpp #pragma once #include "pch.h" #include "PointXY.h" #define _USE_MATH_DEFINES #include <math.h> #include <iostream> using std::cout; PointXYClass::PointXYClass(int x, int y) { _x = x; _y = y; } PointXYClass & PointXYClass::operator=(const PointXYClass & orig) { if (this == &orig) return *this; setX(orig._x); setY(orig._y); return *this; } void PointXYClass::setX(int x) { _x = x; } int PointXYClass::getX() { return _x; } void PointXYClass::setY(int y) { _y = y; } int PointXYClass::getY() { return _y; } void PointXYClass::set(int x, int y) { _x = x; _y = y; } void PointXYClass::print() const{ cout << "{" << _x << "; " << _y << "}"; } void PointXYClass::addXY(int x, int y) { _x += x; _y += y; } PointXYClass operator+(const PointXYClass & first, const PointXYClass & second) { return PointXYClass(first._x + second._x, first._y + second._y); } int getTheta(PointXYClass & from, PointXYClass & to) { int dX = to._x - from._x; int dY = to._y - from._y; if (dX >= 0 && dY >= 0) return asin(abs(dX) / sqrt(pow(dX, 2) + pow(dY, 2))) * 180 / M_PI; if (dX >= 0 && dY <= 0) return asin(abs(dY) / sqrt(pow(dX, 2) + pow(dY, 2))) * 180 / M_PI + 90; if (dX <= 0 && dY <= 0) return asin(abs(dX) / sqrt(pow(dX, 2) + pow(dY, 2))) * 180 / M_PI + 90 * 2; else return asin(abs(dY) / sqrt(pow(dX, 2) + pow(dY, 2))) * 180 / M_PI + 90 * 3; } /* int getTheta(PointXYClass & from, PointXYClass & to) { int dX = to._x - from._x; int dY = to._y - from._y; if (dX >= 0 && dY >= 0) return atan2((dY), (dX)) * 180 / M_PI; if (dX >= 0 && dY <= 0) return atan2((dY), (dX)) * 180 / M_PI + 90; if (dX <= 0 && dY <= 0) return atan2((dY), (dX)) * 180 / M_PI + 90 * 2; else return atan2((dY), (dX)) * 180 / M_PI + 90 * 3; } */ unsigned int getGap(PointXYClass & from, PointXYClass & to) { int dX = to._x - from._x; int dY = to._y - from._y; return (unsigned int)sqrt(pow(dX, 2) + pow(dY, 2)); }
[ "xdrond@gmail.com" ]
xdrond@gmail.com
a5feec3ad4548a04efa1814c26f8ac9566e82ea8
df1c03a7db6889f20226bbeebe7f29ea7ba92d8a
/final-exceed/final-exceed.ino
66505e7c937d48a19e25733b2e97ff741a31397d
[]
no_license
komkanit/eXceed13-final
9e6a113e923371d3f0b977163ae7859e3d5ef4f7
684e1bec8f32cd84bc69cb147790ee3bbff14282
refs/heads/master
2023-06-29T05:10:23.376942
2016-08-08T07:27:15
2016-08-08T07:27:15
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,926
ino
#include <pt.h> #include <LiquidCrystal.h> #define PT_DELAY(pt, ms, ts) \ ts = millis(); \ PT_WAIT_WHILE(pt, millis()-ts < (ms)); #define SMOKE A0 #define SOUND A1 #define TEMP A2 #define GAS A4 #define BUZZER 10 #define BTN 2 #define LIGHT 13 struct pt pt_taskSmoke; struct pt pt_taskSound; struct pt pt_taskGas; struct pt pt_taskSerialEvent; struct pt pt_taskSendSerial; struct pt pt_taskTemp; struct pt pt_taskBeep; struct pt pt_taskHumid; LiquidCrystal lcd(8, 9, 4, 5, 6, 7); String dataToServer = ""; String recieveData = ""; int smokeData = 0; int soundData = 0; int tempData = 0; String people = ""; String name = "Bangkok%20saimai%201111"; int humidData = 20; int gasData = 0; int temp; int sw; long iPPM_LPG = 0; long iPPM_Smoke = 0; int CALIBARAION_SAMPLE_TIMES=50; //define how many samples you are going to take in the calibration phase int CALIBRATION_SAMPLE_INTERVAL=500; //define the time interal(in milisecond) between each samples in the //cablibration phase int READ_SAMPLE_INTERVAL=50; //define how many samples you are going to take in normal operation int READ_SAMPLE_TIMES=5; //define the time interal(in milisecond) between each samples in const int calibrationLed = 13; //when the calibration start , LED pin 13 will light up , off when finish calibrating int RL_VALUE=5; //define the load resistance on the board, in kilo ohms float RO_CLEAN_AIR_FACTOR=9.83; //RO_CLEAR_AIR_FACTOR=(Sensor resistance in clean air)/RO, #define GAS_LPG 0 #define GAS_CO 1 #define GAS_SMOKE 2 /*****************************Globals***********************************************/ float LPGCurve[3] = {2.3,0.21,-0.47}; //two points are taken from the curve. //with these two points, a line is formed which is "approximately equivalent" //to the original curve. //data format:{ x, y, slope}; point1: (lg200, 0.21), point2: (lg10000, -0.59) float COCurve[3] = {2.3,0.72,-0.34}; //two points are taken from the curve. //with these two points, a line is formed which is "approximately equivalent" //to the original curve. //data format:{ x, y, slope}; point1: (lg200, 0.72), point2: (lg10000, 0.15) float SmokeCurve[3] ={2.3,0.53,-0.44}; //two points are taken from the curve. //with these two points, a line is formed which is "approximately equivalent" //to the original curve. //data format:{ x, y, slope}; point1: (lg200, 0.53), point2: (lg10000, -0.22) float Ro = 9; //Ro is initialized to 10 kilo ohms PT_THREAD(taskSound(struct pt* pt)) { static uint32_t ts; PT_BEGIN(pt); while (1) { //lcd.clear(); soundData = analogRead(SOUND); //lcd.print(soundData); if (soundData <= 200) { people = "Low"; } else if (201 <= soundData && soundData <= 500) { people = "Medium"; } else if (501 <= soundData) { people = "High"; } else { people = "soundData error"; } PT_DELAY(pt, 500, ts); PT_YIELD(pt); } PT_END(pt); } PT_THREAD(taskSmoke(struct pt* pt)) { static uint32_t ts; PT_BEGIN(pt); while (1) { //lcd.clear(); smokeData = analogRead(SMOKE); //lcd.print(smokeData); if (iPPM_Smoke > 50) { analogWrite(BUZZER, 100); analogWrite(LIGHT, 100); } else { analogWrite(BUZZER, 0); analogWrite(LIGHT, 0); } PT_DELAY(pt, 500, ts); PT_YIELD(pt); } PT_END(pt); } PT_THREAD(taskGas(struct pt* pt)) { static uint32_t ts; PT_BEGIN(pt); while (1) { //lcd.clear(); gasData = analogRead(GAS); //lcd.print(gasData); PT_DELAY(pt, 500, ts); PT_YIELD(pt); } PT_END(pt); } PT_THREAD(taskHumid(struct pt* pt)) { static uint32_t ts; PT_BEGIN(pt); while (1) { //lcd.clear(); sw = digitalRead(BTN); if (sw == 0) { if(humidData == 20) humidData = 70; else humidData = 20; } //lcd.print(humidData); PT_DELAY(pt, 700, ts); PT_YIELD(pt); } PT_END(pt); } PT_THREAD(taskTemp(struct pt* pt)) { static uint32_t ts; PT_BEGIN(pt); while (1) { //lcd.clear(); temp = analogRead(TEMP); tempData = (temp*25-2050)/100; //lcd.print(tempData); PT_DELAY(pt, 500, ts); PT_YIELD(pt); } PT_END(pt); } PT_THREAD(taskSerialEvent(struct pt* pt)){ static uint32_t ts; PT_BEGIN(pt); while (1){ if(Serial1.available()) { String str = Serial1.readStringUntil('\r'); str.replace("\r",""); str.replace("\n",""); Serial.println(str); if(str != "" && str.indexOf("/") < 0) { recieveData = str; analogWrite(LIGHT, 100); taskBeep(&pt_taskBeep); analogWrite(LIGHT, 0); } } if(Serial.available()) { recieveData = Serial.readStringUntil('\r'); } PT_YIELD(pt); } PT_END(pt); } PT_THREAD(taskSendSerial(struct pt* pt)){ static uint32_t ts; PT_BEGIN(pt); while (1){ Serial1.println(name+","+tempData+","+people+","+humidData+","+String(smokeData)+","+gasData); PT_DELAY(pt, 500, ts); } PT_END(pt); } PT_THREAD(taskBeep(struct pt* pt)) { static uint32_t ts; PT_BEGIN(pt); tone(BUZZER, 800,2000); delay(1000); noTone(BUZZER); tone(BUZZER, 800,2000); delay(1000); noTone(BUZZER); tone(BUZZER, 800,2000); delay(1000); noTone(BUZZER); PT_END(pt); } void setup() { // put your setup code here, to run once: Serial.begin(9600); Serial1.begin(115200); lcd.begin(16, 2); pinMode(BTN, INPUT); pinMode(LIGHT, OUTPUT); PT_INIT(&pt_taskSerialEvent); PT_INIT(&pt_taskSendSerial); PT_INIT(&pt_taskSound); PT_INIT(&pt_taskSmoke); PT_INIT(&pt_taskGas); PT_INIT(&pt_taskTemp); PT_INIT(&pt_taskBeep); PT_INIT(&pt_taskHumid); } void loop() { lcd.setCursor(0, 0);; iPPM_LPG = MQGetGasPercentage(MQRead(SMOKE)/Ro,GAS_LPG); iPPM_Smoke = MQGetGasPercentage(MQRead(SMOKE)/Ro,GAS_SMOKE); lcd.setCursor( 0 , 0 ); lcd.print("LPG: "); lcd.print(iPPM_LPG); lcd.print(" ppm"); // lcd.setCursor( 0, 2 ); // lcd.print("CO: "); // lcd.print(iPPM_CO); // lcd.print(" ppm"); // lcd.setCursor( 0,1 ); lcd.print("Smoke: "); lcd.print(iPPM_Smoke); lcd.print(" ppm"); taskSerialEvent(&pt_taskSerialEvent); taskSendSerial(&pt_taskSendSerial); taskSound(&pt_taskSound); taskSmoke(&pt_taskSmoke); //taskGas(&pt_taskGas); taskTemp(&pt_taskTemp); taskHumid(&pt_taskHumid); } float MQResistanceCalculation(int raw_adc) { return ( ((float)RL_VALUE*(1023-raw_adc)/raw_adc)); } float MQRead(int mq_pin) { int i; float rs=0; for (i=0;i<READ_SAMPLE_TIMES;i++) { rs += MQResistanceCalculation(analogRead(mq_pin)); delay(READ_SAMPLE_INTERVAL); } rs = rs/READ_SAMPLE_TIMES; return rs; } long MQGetGasPercentage(float rs_ro_ratio, int gas_id) { if ( gas_id == GAS_LPG ) { return MQGetPercentage(rs_ro_ratio,LPGCurve); } else if ( gas_id == GAS_CO ) { return MQGetPercentage(rs_ro_ratio,COCurve); } else if ( gas_id == GAS_SMOKE ) { return MQGetPercentage(rs_ro_ratio,SmokeCurve); } return 0; } long MQGetPercentage(float rs_ro_ratio, float *pcurve) { return (pow(10,( ((log(rs_ro_ratio)-pcurve[1])/pcurve[2]) + pcurve[0]))); }
[ "kom.sujautra@gmail.com" ]
kom.sujautra@gmail.com
5e65c2cdb4ccead7c70f4cf2d4fc793019a26155
33fd5786ddde55a705d74ce2ce909017e2535065
/build/iOS/Debug/include/Fuse.WebSocket.Native-505d0c55.h
019312ccaf78df01ced33dcf8008b0a70ae77372
[]
no_license
frpaulas/iphodfuse
04cee30add8b50ea134eb5a83e355dce886a5d5a
e8886638c4466b3b0c6299da24156d4ee81c9112
refs/heads/master
2021-01-23T00:48:31.195577
2017-06-01T12:33:13
2017-06-01T12:33:13
92,842,106
3
3
null
2017-05-30T17:43:28
2017-05-30T14:33:26
C++
UTF-8
C++
false
false
1,602
h
// This file was generated based on '../../../../Library/Application Support/Fusetools/Packages/Fuse.WebSockets/1.0.2/$.uno'. // WARNING: Changes might be lost if you edit this file directly. #pragma once #include <Fuse.Scripting.IModuleProvider.h> #include <Fuse.Scripting.NativeModule.h> #include <Uno.IDisposable.h> namespace g{namespace Fuse{namespace Scripting{struct Context;}}} namespace g{namespace Fuse{namespace Scripting{struct ModuleResult;}}} namespace g{namespace Fuse{namespace WebSocket{struct NativeFunctionModule;}}} namespace g{ namespace Fuse{ namespace WebSocket{ // public abstract class NativeFunctionModule :111 // { struct NativeFunctionModule_type : ::g::Fuse::Scripting::NativeModule_type { void(*fp_Create)(::g::Fuse::WebSocket::NativeFunctionModule*, ::g::Fuse::Scripting::Context*, uArray*, uObject**); }; NativeFunctionModule_type* NativeFunctionModule_typeof(); void NativeFunctionModule__ctor_2_fn(NativeFunctionModule* __this, uString* name); void NativeFunctionModule__Evaluate_fn(NativeFunctionModule* __this, ::g::Fuse::Scripting::Context* c, ::g::Fuse::Scripting::ModuleResult* result); struct NativeFunctionModule : ::g::Fuse::Scripting::NativeModule { static uSStrong<NativeFunctionModule*> _instance_; static uSStrong<NativeFunctionModule*>& _instance() { return _instance_; } void ctor_2(uString* name); uObject* Create(::g::Fuse::Scripting::Context* context, uArray* args) { uObject* __retval; return (((NativeFunctionModule_type*)__type)->fp_Create)(this, context, args, &__retval), __retval; } }; // } }}} // ::g::Fuse::WebSocket
[ "frpaulas@gmail.com" ]
frpaulas@gmail.com