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
133c57d69ddff383dfe23a06207a1e687adf3182
3d4c045f3af896bb69349fb1113a35f12db3174d
/src/impl/AbsCodeBreakerImpl.h
45d57f8069e82f285f0a715a62a839187aa41c58
[]
no_license
Steven0917/MasterMind
81b87c8059e0a63a8efd19ca5e4aa3fda8e4dff4
5249eafb83ec7c954802863aff86cb9ba4a25872
refs/heads/master
2021-01-17T18:56:11.963592
2016-07-15T02:43:03
2016-07-15T02:43:03
63,296,372
0
0
null
null
null
null
UTF-8
C++
false
false
393
h
/* * CodeBreakerImpl.h * * Created on: 14 Jul, 2016 * Author: tengx */ #ifndef CODEBREAKERIMPL_H_ #define CODEBREAKERIMPL_H_ #include "Code.h" class AbsCodeBreakerImpl { public: AbsCodeBreakerImpl(); virtual ~AbsCodeBreakerImpl(); virtual void Guess(Code& guess, bool isFirst) = 0; virtual void ProcFeedback(Code& guess, Keys& keys) = 0; }; #endif /* CODEBREAKERIMPL_H_ */
[ "tengxin1981@yahoo.com" ]
tengxin1981@yahoo.com
22d177ac2aea2f4d8bd124e5a901592bc37492f9
55ee1b9114019831652f33bfa836eb09518cc179
/ch01/1.20.cpp
bd2f78c149d4dbd3332f7bf1115313d05d20ec9b
[]
no_license
mrmanago/cpp_primer_5th_exercises
61e41ca923b47f5dae4068be9ed31db6790138e9
7dcf1b1bdb7656d761aeaf0cb55f06ca3f65460b
refs/heads/master
2022-07-22T06:00:13.708797
2020-05-20T20:03:18
2020-05-20T20:03:18
252,034,498
0
0
null
null
null
null
UTF-8
C++
false
false
202
cpp
#include <iostream> #include "Sales_item.h" #include "Version_test.h" int main() { Sales_item item; while (std::cin >> item) std::cout << item << std::endl; return 0; }
[ "mrmanago@outlook.com" ]
mrmanago@outlook.com
402d2b46a9c1188d18e0faa73a9e8fc5b386a08e
5e31d1560ae2fe94322b050f8c789aadeaf92d96
/SimpleEngineDX11/SimpleEngineDX11/rs_state_blend_dx11.cpp
0070fc81f5fa802768f18b91cc044128f753319a
[]
no_license
liaozc/SimpleEngineDX11
f42b7473030ba0287abaa60484fbe6f8919bf123
b1e9c7930093b5ef941ccba30d69eb30fb0166dd
refs/heads/master
2021-01-01T19:07:48.588772
2017-09-05T13:02:09
2017-09-05T13:02:09
98,510,172
0
0
null
null
null
null
UTF-8
C++
false
false
3,130
cpp
#include "rs_state_blend_dx11.h" #include "rs_renderer_dx11.h" RS_BlendStateDX11::RS_BlendStateDX11() { m_sBlendConfig.src = eRS_One; m_sBlendConfig.dst = eRS_Zero; m_pBlendState = nullptr; m_bDirty = true; } RS_BlendStateDX11::~RS_BlendStateDX11() { if (m_pBlendState) m_pBlendState->Release(); m_pBlendState = nullptr; } HRESULT RS_BlendStateDX11::DoState(iRS_Renderer * pRenderer) { RS_RendererDX11* pRendererDX11 = Cast2RendererDX11(pRenderer); if (!pRendererDX11) return E_FAIL; ID3D11DeviceContext* pContext = pRendererDX11->GetContext(); ID3D11Device* pDevice = pRendererDX11->GetDevice(); if (!pContext || !pDevice) return E_FAIL; if (!m_pBlendState || m_bDirty) { if (m_pBlendState) { m_pBlendState->Release(); m_pBlendState = nullptr; } m_bDirty = false; D3D11_BLEND_DESC descBlendState; descBlendState.AlphaToCoverageEnable = false; descBlendState.IndependentBlendEnable = false; descBlendState.RenderTarget->BlendEnable = true; descBlendState.RenderTarget->BlendOp = D3D11_BLEND_OP_ADD; descBlendState.RenderTarget->BlendOpAlpha = D3D11_BLEND_OP_ADD; descBlendState.RenderTarget->SrcBlend = cast2DX11BlendFormat(m_sBlendConfig.src); descBlendState.RenderTarget->DestBlend = cast2DX11BlendFormat(m_sBlendConfig.dst); descBlendState.RenderTarget->SrcBlendAlpha = cast2DX11BlendFormat(m_sBlendConfig.src); descBlendState.RenderTarget->DestBlendAlpha = cast2DX11BlendFormat(m_sBlendConfig.dst); descBlendState.RenderTarget->RenderTargetWriteMask = (UINT8)0; if (FAILED(pDevice->CreateBlendState(&descBlendState, &m_pBlendState))) { printf("creating blendstat fails \n"); return E_FAIL; } } float blendcolor[4] = { 0,0,0,0 }; pContext->OMSetBlendState(m_pBlendState, blendcolor, UINT(0)); return S_OK; } void RS_BlendStateDX11::SetBlendConfig(const BlendCongfig& config) { if (m_sBlendConfig == config) return; m_sBlendConfig = config; m_bDirty = true; } void RS_BlendStateDX11::SetBlendState(eRS_BlendOption src, eRS_BlendOption dst) { if (src == m_sBlendConfig.src && dst == m_sBlendConfig.dst) return; m_sBlendConfig.src = src; m_sBlendConfig.dst = dst; m_bDirty = true; } D3D11_BLEND RS_BlendStateDX11::cast2DX11BlendFormat(eRS_BlendOption option) { D3D11_BLEND d3dblend; switch (option) { case eRS_Zero: d3dblend = D3D11_BLEND_ZERO; break; case eRS_One: d3dblend = D3D11_BLEND_ONE; break; case eRS_Src_Color: d3dblend = D3D11_BLEND_SRC_COLOR; break; case eRS_One_Minus_Src_Color: d3dblend = D3D11_BLEND_INV_SRC_COLOR; break; case eRS_Dst_Color: d3dblend = D3D11_BLEND_DEST_COLOR; break; case eRS_One_Minus_Dst_Color: d3dblend = D3D11_BLEND_INV_DEST_COLOR; break; case eRS_Src_Alpha: d3dblend = D3D11_BLEND_SRC_ALPHA; break; case eRS_One_Minus_Src_Alpha: d3dblend = D3D11_BLEND_INV_SRC_ALPHA; break; case eRS_Dst_Alpha: d3dblend = D3D11_BLEND_DEST_ALPHA; break; case eRS_One_Minus_Dst_Alpha: d3dblend = D3D11_BLEND_INV_DEST_ALPHA; break; case eRS_Src_Alpha_Saturate: d3dblend = D3D11_BLEND_SRC_ALPHA_SAT; break; default: d3dblend = D3D11_BLEND_ZERO; break; } return d3dblend; }
[ "LIAOZHENCHUAN@LIAOZHENCHUAN" ]
LIAOZHENCHUAN@LIAOZHENCHUAN
063b0e60d660c869450c4e6da15ca00f4293646b
50c6049cc4ead1b80027adb1f6202ba430c827af
/src/game_move.hpp
1d11a3c728fa7535900ff7d555e564574b54b54a
[]
no_license
AndyMakous/rbgParser
5e6d3ddab3e35c32b1644f25ae4daf3056aeb0df
eca4ccf73cdd2ea31ac654e9bbc908812fafa8ef
refs/heads/master
2020-06-08T07:14:05.605971
2019-06-05T15:53:59
2019-06-05T15:53:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,590
hpp
#ifndef GAME_MOVE #define GAME_MOVE #include<memory> #include<vector> #include<set> #include"straightness_helpers.hpp" #include"token.hpp" namespace rbg_parser{ class abstract_dispatcher; // interface class game_move{ protected: int index = 0; public: virtual ~game_move(void)=default; int index_in_expression(void)const{return index;}; virtual int give_indices_in_expression(int next_free)=0; virtual bool modifies(void)const{return true;} virtual std::unique_ptr<game_move> flatten(void)=0; virtual std::unique_ptr<game_move> simplify(void)=0; virtual void accept(abstract_dispatcher& dispatcher)const=0; virtual uint priority(void)const=0; // being of higher priority containing lower ones requires surrounding them with brackets virtual std::string to_rbg(uint indent)const=0; virtual std::string to_rbg()const=0; virtual void gather_concatenation_elements(std::vector<std::unique_ptr<game_move>>& elements){elements.push_back(flatten());} virtual void gather_sum_elements(std::vector<std::unique_ptr<game_move>>& elements){elements.push_back(flatten());}; virtual straightness_result compute_k_straightness(void)const{return standard_non_switch();}; virtual bool check_if_redundant(std::set<token>&, bool&)const{return false;}; virtual bool has_finisher(void)const{return false;}; virtual bool has_piece_as_variable(const std::set<token>&)const{return false;}; virtual std::unique_ptr<game_move> copy(void)const=0; }; } #endif
[ "jakubsutowicz@gmail.com" ]
jakubsutowicz@gmail.com
e721e9b3a175264bae723e9a9dd9baa46b4d546e
04b1803adb6653ecb7cb827c4f4aa616afacf629
/chrome/browser/chromeos/cryptauth/client_app_metadata_provider_service_unittest.cc
55edc4ad625d1bcf5765c00cd4a5614abc542533
[ "BSD-3-Clause" ]
permissive
Samsung/Castanets
240d9338e097b75b3f669604315b06f7cf129d64
4896f732fc747dfdcfcbac3d442f2d2d42df264a
refs/heads/castanets_76_dev
2023-08-31T09:01:04.744346
2021-07-30T04:56:25
2021-08-11T05:45:21
125,484,161
58
49
BSD-3-Clause
2022-10-16T19:31:26
2018-03-16T08:07:37
null
UTF-8
C++
false
false
1,010
cc
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/chromeos/cryptauth/client_app_metadata_provider_service.h" #include "testing/gtest/include/gtest/gtest.h" namespace chromeos { // Note: Actual service code does not currently have a test, since it would be a // "change detector test" (i.e., it would simply verify that the values provided // are present in the ClientAppMetadata). TEST(ClientAppMetadataProviderServiceTest, VersionCodeToInt64) { EXPECT_EQ(7403690001L, ClientAppMetadataProviderService::ConvertVersionCodeToInt64( "74.0.3690.1")); EXPECT_EQ(10001234567L, ClientAppMetadataProviderService::ConvertVersionCodeToInt64( "100.0.1234.567")); EXPECT_EQ(0L, ClientAppMetadataProviderService::ConvertVersionCodeToInt64( "NotAVersionStringAtAll")); } } // namespace chromeos
[ "sunny.nam@samsung.com" ]
sunny.nam@samsung.com
017af3481be9c8f4bd2c8b601f882cbd4504ac3b
8ce61fb8610b48c8dce2110acbbb74ea22ff458e
/boardtest/boardtest.ino
3e95cea2ad29c9c19549513871736cd99e7b1ae9
[ "MIT" ]
permissive
densanki/ard-mkr-trans-tracker
d0ff7f0a80c14fae2c2a6cfac35fd7bb9d9ffd6c
94e4c6f8e6ff2f58ba43b2489749a73635ef9987
refs/heads/main
2023-03-07T19:48:16.085828
2021-02-24T21:03:41
2021-02-24T21:03:41
325,485,261
1
0
null
null
null
null
UTF-8
C++
false
false
1,635
ino
/* Blink Turns an LED on for one second, then off for one second, repeatedly. Most Arduinos have an on-board LED you can control. On the UNO, MEGA and ZERO it is attached to digital pin 13, on MKR1000 on pin 6. LED_BUILTIN is set to the correct LED pin independent of which board is used. If you want to know what pin the on-board LED is connected to on your Arduino model, check the Technical Specs of your board at: https://www.arduino.cc/en/Main/Products modified 8 May 2014 by Scott Fitzgerald modified 2 Sep 2016 by Arturo Guadalupi modified 8 Sep 2016 by Colby Newman This example code is in the public domain. http://www.arduino.cc/en/Tutorial/Blink */ // the setup function runs once when you press reset or power the board void setup() { // initialize digital pin LED_BUILTIN as an output. pinMode(LED_BUILTIN, OUTPUT); } // the loop function runs over and over again forever void loop() { // Blink twice and then 5 sec pause digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW delay(1000); // wait for a second digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW delay(5000); // wait for a second digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level) }
[ "densanki@gmail.com" ]
densanki@gmail.com
b0d6f6ed24a0d119c8eb12783210ebf40ea024f5
b3ebc5354c0b2a468480360c889c23432867f887
/ProtoRPC_UE4/Source/ProtoRPC_UE4/google/protobuf/util/internal/utility.cc
2480bc750b1ca253ad4fe061f961f0b5604f42dd
[ "BSD-2-Clause" ]
permissive
fire/Proto3RPC_UE4
1cdb2f54fb305b7d3a3ff4f4b49559503ce9565c
3022fbdf34c627072574e7b0f2dcb2ea4b9c5945
refs/heads/master
2021-01-13T08:26:04.030438
2016-10-23T00:29:10
2016-10-23T00:29:10
71,671,947
0
0
null
2016-10-22T23:47:10
2016-10-22T23:47:10
null
UTF-8
C++
false
false
11,401
cc
// Protocol Buffers - Google's data interchange format // Copyright 2008 Google Inc. All rights reserved. // https://developers.google.com/protocol-buffers/ // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include <google/protobuf/util/internal/utility.h> #include <google/protobuf/stubs/callback.h> #include <google/protobuf/stubs/common.h> #include <google/protobuf/stubs/logging.h> #include <google/protobuf/wrappers.pb.h> #include <google/protobuf/descriptor.pb.h> #include <google/protobuf/descriptor.h> #include <google/protobuf/util/internal/constants.h> #include <google/protobuf/stubs/strutil.h> #include <google/protobuf/stubs/map_util.h> #include <google/protobuf/stubs/mathlimits.h> #pragma warning(push) #pragma warning(disable:4018) // C4018 - 'expression' : signed/unsigned mismatch namespace google { namespace protobuf { namespace util { namespace converter { namespace { const StringPiece SkipWhiteSpace(StringPiece str) { StringPiece::size_type i; for (i = 0; i < str.size() && isspace(str[i]); ++i) {} GOOGLE_DCHECK(i == str.size() || !isspace(str[i])); return StringPiece(str, i); } } // namespace bool GetBoolOptionOrDefault( const google::protobuf::RepeatedPtrField<google::protobuf::Option>& options, const string& option_name, bool default_value) { const google::protobuf::Option* opt = FindOptionOrNull(options, option_name); if (opt == NULL) { return default_value; } return GetBoolFromAny(opt->value()); } int64 GetInt64OptionOrDefault( const google::protobuf::RepeatedPtrField<google::protobuf::Option>& options, const string& option_name, int64 default_value) { const google::protobuf::Option* opt = FindOptionOrNull(options, option_name); if (opt == NULL) { return default_value; } return GetInt64FromAny(opt->value()); } double GetDoubleOptionOrDefault( const google::protobuf::RepeatedPtrField<google::protobuf::Option>& options, const string& option_name, double default_value) { const google::protobuf::Option* opt = FindOptionOrNull(options, option_name); if (opt == NULL) { return default_value; } return GetDoubleFromAny(opt->value()); } string GetStringOptionOrDefault( const google::protobuf::RepeatedPtrField<google::protobuf::Option>& options, const string& option_name, const string& default_value) { const google::protobuf::Option* opt = FindOptionOrNull(options, option_name); if (opt == NULL) { return default_value; } return GetStringFromAny(opt->value()); } template <typename T> void ParseFromAny(const string& data, T* result) { result->ParseFromString(data); } // Returns a boolean value contained in Any type. // TODO(skarvaje): Add type checking & error messages here. bool GetBoolFromAny(const google::protobuf::Any& any) { google::protobuf::BoolValue b; ParseFromAny(any.value(), &b); return b.value(); } int64 GetInt64FromAny(const google::protobuf::Any& any) { google::protobuf::Int64Value i; ParseFromAny(any.value(), &i); return i.value(); } double GetDoubleFromAny(const google::protobuf::Any& any) { google::protobuf::DoubleValue i; ParseFromAny(any.value(), &i); return i.value(); } string GetStringFromAny(const google::protobuf::Any& any) { google::protobuf::StringValue s; ParseFromAny(any.value(), &s); return s.value(); } const StringPiece GetTypeWithoutUrl(StringPiece type_url) { size_t idx = type_url.rfind('/'); return type_url.substr(idx + 1); } const string GetFullTypeWithUrl(StringPiece simple_type) { return StrCat(kTypeServiceBaseUrl, "/", simple_type); } const google::protobuf::Option* FindOptionOrNull( const google::protobuf::RepeatedPtrField<google::protobuf::Option>& options, const string& option_name) { for (int i = 0; i < options.size(); ++i) { const google::protobuf::Option& opt = options.Get(i); if (opt.name() == option_name) { return &opt; } } return NULL; } const google::protobuf::Field* FindFieldInTypeOrNull( const google::protobuf::Type* type, StringPiece field_name) { if (type != NULL) { for (int i = 0; i < type->fields_size(); ++i) { const google::protobuf::Field& field = type->fields(i); if (field.name() == field_name) { return &field; } } } return NULL; } const google::protobuf::EnumValue* FindEnumValueByNameOrNull( const google::protobuf::Enum* enum_type, StringPiece enum_name) { if (enum_type != NULL) { for (int i = 0; i < enum_type->enumvalue_size(); ++i) { const google::protobuf::EnumValue& enum_value = enum_type->enumvalue(i); if (enum_value.name() == enum_name) { return &enum_value; } } } return NULL; } const google::protobuf::EnumValue* FindEnumValueByNumberOrNull( const google::protobuf::Enum* enum_type, int32 value) { if (enum_type != NULL) { for (int i = 0; i < enum_type->enumvalue_size(); ++i) { const google::protobuf::EnumValue& enum_value = enum_type->enumvalue(i); if (enum_value.number() == value) { return &enum_value; } } } return NULL; } string ToCamelCase(const StringPiece input) { bool capitalize_next = false; bool was_cap = true; bool is_cap = false; bool first_word = true; string result; result.reserve(input.size()); for (size_t i = 0; i < input.size(); ++i, was_cap = is_cap) { is_cap = ascii_isupper(input[i]); if (input[i] == '_') { capitalize_next = true; if (!result.empty()) first_word = false; continue; } else if (first_word) { // Consider when the current character B is capitalized, // first word ends when: // 1) following a lowercase: "...aB..." // 2) followed by a lowercase: "...ABc..." if (!result.empty() && is_cap && (!was_cap || (i + 1 < input.size() && ascii_islower(input[i + 1])))) { first_word = false; } else { result.push_back(ascii_tolower(input[i])); continue; } } else if (capitalize_next) { capitalize_next = false; if (ascii_islower(input[i])) { result.push_back(ascii_toupper(input[i])); continue; } } result.push_back(input[i]); } return result; } string ToSnakeCase(StringPiece input) { bool was_not_underscore = false; // Initialize to false for case 1 (below) bool was_not_cap = false; string result; result.reserve(input.size() << 1); for (size_t i = 0; i < input.size(); ++i) { if (ascii_isupper(input[i])) { // Consider when the current character B is capitalized: // 1) At beginning of input: "B..." => "b..." // (e.g. "Biscuit" => "biscuit") // 2) Following a lowercase: "...aB..." => "...a_b..." // (e.g. "gBike" => "g_bike") // 3) At the end of input: "...AB" => "...ab" // (e.g. "GoogleLAB" => "google_lab") // 4) Followed by a lowercase: "...ABc..." => "...a_bc..." // (e.g. "GBike" => "g_bike") if (was_not_underscore && // case 1 out (was_not_cap || // case 2 in, case 3 out (i + 1 < input.size() && // case 3 out ascii_islower(input[i + 1])))) { // case 4 in // We add an underscore for case 2 and case 4. result.push_back('_'); } result.push_back(ascii_tolower(input[i])); was_not_underscore = true; was_not_cap = false; } else { result.push_back(input[i]); was_not_underscore = input[i] != '_'; was_not_cap = true; } } return result; } set<string>* well_known_types_ = NULL; GOOGLE_PROTOBUF_DECLARE_ONCE(well_known_types_init_); const char* well_known_types_name_array_[] = { "google.protobuf.Timestamp", "google.protobuf.Duration", "google.protobuf.DoubleValue", "google.protobuf.FloatValue", "google.protobuf.Int64Value", "google.protobuf.UInt64Value", "google.protobuf.Int32Value", "google.protobuf.UInt32Value", "google.protobuf.BoolValue", "google.protobuf.StringValue", "google.protobuf.BytesValue", "google.protobuf.FieldMask"}; void DeleteWellKnownTypes() { delete well_known_types_; } void InitWellKnownTypes() { well_known_types_ = new set<string>; for (int i = 0; i < GOOGLE_ARRAYSIZE(well_known_types_name_array_); ++i) { well_known_types_->insert(well_known_types_name_array_[i]); } google::protobuf::internal::OnShutdown(&DeleteWellKnownTypes); } bool IsWellKnownType(const string& type_name) { InitWellKnownTypes(); return ContainsKey(*well_known_types_, type_name); } bool IsValidBoolString(const string& bool_string) { return bool_string == "true" || bool_string == "false" || bool_string == "1" || bool_string == "0"; } bool IsMap(const google::protobuf::Field& field, const google::protobuf::Type& type) { return (field.cardinality() == google::protobuf::Field_Cardinality_CARDINALITY_REPEATED && GetBoolOptionOrDefault(type.options(), "google.protobuf.MessageOptions.map_entry", false)); } string DoubleAsString(double value) { if (google::protobuf::MathLimits<double>::IsPosInf(value)) return "Infinity"; if (google::protobuf::MathLimits<double>::IsNegInf(value)) return "-Infinity"; if (google::protobuf::MathLimits<double>::IsNaN(value)) return "NaN"; return SimpleDtoa(value); } string FloatAsString(float value) { if (google::protobuf::MathLimits<float>::IsFinite(value)) return SimpleFtoa(value); return DoubleAsString(value); } bool SafeStrToFloat(StringPiece str, float *value) { double double_value; if (!safe_strtod(str, &double_value)) { return false; } *value = static_cast<float>(double_value); if (google::protobuf::MathLimits<float>::IsInf(*value)) { return false; } return true; } } // namespace converter } // namespace util } // namespace protobuf } // namespace google #pragma warning(pop)
[ "san@paddlecreekgames.com" ]
san@paddlecreekgames.com
7cee75575d6a4930fe9900d1d8d6b8bb79664573
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_2463486_0/C++/pushap/solution.cpp
e7b8abd7c1388ca50797d84100c2ebe7cc91283d
[]
no_license
alexandraback/datacollection
0bc67a9ace00abbc843f4912562f3a064992e0e9
076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf
refs/heads/master
2021-01-24T18:27:24.417992
2017-05-23T09:23:38
2017-05-23T09:23:38
84,313,442
2
4
null
null
null
null
UTF-8
C++
false
false
1,616
cpp
#include <iostream> #include <cstdio> #include <climits> #include <algorithm> #include <queue> #include <cstring> #include <cmath> #include <vector> #include <string> #include <map> #define ALL(i,n) for(i = 0; i < (n); i++) #define FOR(i,a,b) for(i = (a); i < (b); i++) #define SET(p) memset(p,-1,sizeof(p)) #define CLR(p) memset(p,0,sizeof(p)) #define MIn(a,b) a>b?b:a #define MAx(a,b) a>b?a:b //#define FOR(i,n) for(i=1;i<=n;i++) #define S(n) scanf("%lld",&n) #define P(n) printf("%lld",n) #define sl(n) scanf("%lld",&n) #define mod 1000000007 #define ull unsigned long long using namespace std; long long dp[10000000]; bool pal(long long i) { char str[100]; sprintf(str,"%lld",i); int l; l=strlen(str); int low=0; int high=l-1; while(low<=high) { if(str[low]==str[high]) { low++; high--; } else return 0; } return 1; } int main() { long long i,j,count=0,a,b,t,ans,ind=0; freopen("C-small-attempt0.in","r",stdin); freopen("output.txt","w",stdout); for(i=1;i<=10000000;i++) { if(pal(i)&&pal(i*i)) { dp[++count]=i*i; } } /* for(i=1;i<=count;i++) { printf("%lld\n",dp[i]); } printf("%lld\n",count);*/ S(t); while(t--) { S(a);S(b); ans=0; for(i=1;i<=count;i++) { if(dp[i]>=a&&dp[i]<=b) ans++; } printf("Case #%lld: %lld\n",++ind,ans); } return 0; }
[ "root@debian" ]
root@debian
4db1ed28775604ea34b285c0fbf03165d2c0cf4d
10377d9a5b1e2d451d07bb64d3981e936e1035d7
/include/NumCpp/Functions/nanargmin.hpp
9d30ffe91277a23753538f19ac785c13e2943311
[ "MIT" ]
permissive
faichele/NumCpp
03ac79cde618d6dfe08c3352fff7d235527a130f
7c8fc50fbe44b80eaa105f0f9258120abddfcec2
refs/heads/master
2020-12-29T16:25:21.426391
2020-01-20T05:23:34
2020-01-20T05:23:34
238,668,660
0
0
MIT
2020-02-06T11:02:13
2020-02-06T11:02:12
null
UTF-8
C++
false
false
2,475
hpp
/// @file /// @author David Pilger <dpilger26@gmail.com> /// [GitHub Repository](https://github.com/dpilger26/NumCpp) /// @version 1.2 /// /// @section License /// Copyright 2019 David Pilger /// /// 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. /// /// @section Description /// Functions for working with NdArrays /// #pragma once #include "NumCpp/Core/DtypeInfo.hpp" #include "NumCpp/Core/StlAlgorithms.hpp" #include "NumCpp/Core/Types.hpp" #include "NumCpp/Functions/argmin.hpp" #include "NumCpp/NdArray.hpp" #include <cmath> namespace nc { //============================================================================ // Method Description: /// Returns the indices of the minimum values along an axis ignoring NaNs. /// /// NumPy Reference: https://www.numpy.org/devdocs/reference/generated/numpy.nanargmin.html /// /// @param inArray /// @param inAxis (Optional, default NONE) /// @return /// NdArray /// template<typename dtype> NdArray<uint32> nanargmin(const NdArray<dtype>& inArray, Axis inAxis = Axis::NONE) noexcept { NdArray<dtype> arrayCopy(inArray); stl_algorithms::for_each(arrayCopy.begin(), arrayCopy.end(), [](dtype& value) noexcept -> void { if (std::isnan(value)) { value = DtypeInfo<dtype>::max(); }; }); return argmin(arrayCopy, inAxis); } }
[ "dpilger26@gmail.com" ]
dpilger26@gmail.com
0b7a68937c29a4ca677a83139582a87ce601c8ec
9923e30eb99716bfc179ba2bb789dcddc28f45e6
/openapi-generator/cpp-pistache-server/model/AddressGeofenceCircle.cpp
5dd2174a41699f07befae5c93149fdaf5b80b857
[]
no_license
silverspace/samsara-sdks
cefcd61458ed3c3753ac5e6bf767229dd8df9485
c054b91e488ab4266f3b3874e9b8e1c9e2d4d5fa
refs/heads/master
2020-04-25T13:16:59.137551
2019-03-01T05:49:05
2019-03-01T05:49:05
172,804,041
2
0
null
null
null
null
UTF-8
C++
false
false
8,195
cpp
/** * Samsara API * # Introduction Samsara provides API endpoints for interacting with Samsara Cloud, so that you can build powerful applications and custom solutions with sensor data. Samsara has endpoints available to track and analyze sensors, vehicles, and entire fleets. The Samsara Cloud API is a [RESTful API](https://en.wikipedia.org/wiki/Representational_state_transfer) accessed by an [HTTP](https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol) client such as wget or curl, or HTTP libraries of most modern programming languages including python, ruby, java. We use built-in HTTP features, like HTTP authentication and HTTP verbs, which are understood by off-the-shelf HTTP clients. We allow you to interact securely with our API from a client-side web application (though you should never expose your secret API key). [JSON](http://www.json.org/) is returned by all API responses, including errors. If you’re familiar with what you can build with a REST API, the following API reference guide will be your go-to resource. API access to the Samsara cloud is available to all Samsara administrators. To start developing with Samsara APIs you will need to [obtain your API keys](#section/Authentication) to authenticate your API requests. If you have any questions you can reach out to us on [support@samsara.com](mailto:support@samsara.com) # Endpoints All our APIs can be accessed through HTTP requests to URLs like: ```curl https://api.samsara.com/<version>/<endpoint> ``` All our APIs are [versioned](#section/Versioning). If we intend to make breaking changes to an API which either changes the response format or request parameter, we will increment the version. # Authentication To authenticate your API request you will need to include your secret token. You can manage your API tokens in the [Dashboard](https://cloud.samsara.com). They are visible under `Settings->Organization->API Tokens`. Your API tokens carry many privileges, so be sure to keep them secure. Do not share your secret API tokens in publicly accessible areas such as GitHub, client-side code, and so on. Authentication to the API is performed via [HTTP Basic Auth](https://en.wikipedia.org/wiki/Basic_access_authentication). Provide your API token as the basic access_token value in the URL. You do not need to provide a password. ```curl https://api.samsara.com/<version>/<endpoint>?access_token={access_token} ``` All API requests must be made over [HTTPS](https://en.wikipedia.org/wiki/HTTPS). Calls made over plain HTTP or without authentication will fail. # Request Methods Our API endpoints use [HTTP request methods](https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods) to specify the desired operation to be performed. The documentation below specified request method supported by each endpoint and the resulting action. ## GET GET requests are typically used for fetching data (like data for a particular driver). ## POST POST requests are typically used for creating or updating a record (like adding new tags to the system). With that being said, a few of our POST requests can be used for fetching data (like current location data of your fleet). ## PUT PUT requests are typically used for updating an existing record (like updating all devices associated with a particular tag). ## PATCH PATCH requests are typically used for modifying an existing record (like modifying a few devices associated with a particular tag). ## DELETE DELETE requests are used for deleting a record (like deleting a tag from the system). # Response Codes All API requests will respond with appropriate [HTTP status code](https://en.wikipedia.org/wiki/List_of_HTTP_status_codes). Your API client should handle each response class differently. ## 2XX These are successful responses and indicate that the API request returned the expected response. ## 4XX These indicate that there was a problem with the request like a missing parameter or invalid values. Check the response for specific [error details](#section/Error-Responses). Requests that respond with a 4XX status code, should be modified before retrying. ## 5XX These indicate server errors when the server is unreachable or is misconfigured. In this case, you should retry the API request after some delay. # Error Responses In case of a 4XX status code, the body of the response will contain information to briefly explain the error reported. To help debugging the error, you can refer to the following table for understanding the error message. | Status Code | Message | Description | |-------------|----------------|-------------------------------------------------------------------| | 401 | Invalid token | The API token is invalid and could not be authenticated. Please refer to the [authentication section](#section/Authentication). | | 404 | Page not found | The API endpoint being accessed is invalid. | | 400 | Bad request | Default response for an invalid request. Please check the request to make sure it follows the format specified in the documentation. | # Versioning All our APIs are versioned. Our current API version is `v1` and we are continuously working on improving it further and provide additional endpoints. If we intend to make breaking changes to an API which either changes the response format or request parameter, we will increment the version. Thus, you can use our current API version worry free. # FAQs Check out our [responses to FAQs here](https://kb.samsara.com/hc/en-us/sections/360000538054-APIs). Don’t see an answer to your question? Reach out to us on [support@samsara.com](mailto:support@samsara.com). * * OpenAPI spec version: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ #include "AddressGeofence_circle.h" namespace org { namespace openapitools { namespace server { namespace model { AddressGeofence_circle::AddressGeofence_circle() { m_Latitude = 0.0; m_LatitudeIsSet = false; m_RadiusMeters = 0L; m_RadiusMetersIsSet = false; m_Longitude = 0.0; m_LongitudeIsSet = false; } AddressGeofence_circle::~AddressGeofence_circle() { } void AddressGeofence_circle::validate() { // TODO: implement validation } nlohmann::json AddressGeofence_circle::toJson() const { nlohmann::json val = nlohmann::json::object(); if(m_LatitudeIsSet) { val["latitude"] = m_Latitude; } if(m_RadiusMetersIsSet) { val["radiusMeters"] = m_RadiusMeters; } if(m_LongitudeIsSet) { val["longitude"] = m_Longitude; } return val; } void AddressGeofence_circle::fromJson(const nlohmann::json& val) { if(val.find("latitude") != val.end()) { setLatitude(val.at("latitude")); } if(val.find("radiusMeters") != val.end()) { setRadiusMeters(val.at("radiusMeters")); } if(val.find("longitude") != val.end()) { setLongitude(val.at("longitude")); } } double AddressGeofence_circle::getLatitude() const { return m_Latitude; } void AddressGeofence_circle::setLatitude(double const value) { m_Latitude = value; m_LatitudeIsSet = true; } bool AddressGeofence_circle::latitudeIsSet() const { return m_LatitudeIsSet; } void AddressGeofence_circle::unsetLatitude() { m_LatitudeIsSet = false; } int64_t AddressGeofence_circle::getRadiusMeters() const { return m_RadiusMeters; } void AddressGeofence_circle::setRadiusMeters(int64_t const value) { m_RadiusMeters = value; m_RadiusMetersIsSet = true; } bool AddressGeofence_circle::radiusMetersIsSet() const { return m_RadiusMetersIsSet; } void AddressGeofence_circle::unsetRadiusMeters() { m_RadiusMetersIsSet = false; } double AddressGeofence_circle::getLongitude() const { return m_Longitude; } void AddressGeofence_circle::setLongitude(double const value) { m_Longitude = value; m_LongitudeIsSet = true; } bool AddressGeofence_circle::longitudeIsSet() const { return m_LongitudeIsSet; } void AddressGeofence_circle::unsetLongitude() { m_LongitudeIsSet = false; } } } } }
[ "greg@samsara.com" ]
greg@samsara.com
b0eb78c101b94631b167c6a63d66f80cf74779a9
cc7643ff887a76a5cacd344993f5812281db8b2d
/src/WebCoreDerived/JSSVGTextPathElement.h
bfdad5fef7a673dbc28a646b2c073cd892637168
[ "BSD-3-Clause" ]
permissive
ahixon/webkit.js
e1497345aee2ec81c9895bebf8d705e112c42005
7ed1480d73de11cb25f02e89f11ecf71dfa6e0c2
refs/heads/master
2020-06-18T13:13:54.933869
2016-12-01T10:06:08
2016-12-01T10:06:08
75,136,170
2
0
null
2016-11-30T00:51:10
2016-11-30T00:51:09
null
UTF-8
C++
false
false
6,610
h
/* This file is part of the WebKit open source project. This file has been generated by generate-bindings.pl. DO NOT MODIFY! This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library 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 Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef JSSVGTextPathElement_h #define JSSVGTextPathElement_h #if ENABLE(SVG) #include "JSDOMBinding.h" #include "JSSVGTextContentElement.h" #include "SVGElement.h" #include "SVGTextPathElement.h" #include <runtime/JSObject.h> namespace WebCore { class JSSVGTextPathElement : public JSSVGTextContentElement { public: typedef JSSVGTextContentElement Base; static JSSVGTextPathElement* create(JSC::Structure* structure, JSDOMGlobalObject* globalObject, PassRefPtr<SVGTextPathElement> impl) { JSSVGTextPathElement* ptr = new (NotNull, JSC::allocateCell<JSSVGTextPathElement>(globalObject->vm().heap)) JSSVGTextPathElement(structure, globalObject, impl); ptr->finishCreation(globalObject->vm()); return ptr; } static JSC::JSObject* createPrototype(JSC::VM&, JSC::JSGlobalObject*); static bool getOwnPropertySlot(JSC::JSObject*, JSC::ExecState*, JSC::PropertyName, JSC::PropertySlot&); DECLARE_INFO; static JSC::Structure* createStructure(JSC::VM& vm, JSC::JSGlobalObject* globalObject, JSC::JSValue prototype) { return JSC::Structure::create(vm, globalObject, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), info()); } static JSC::JSValue getConstructor(JSC::VM&, JSC::JSGlobalObject*); SVGTextPathElement& impl() const { return static_cast<SVGTextPathElement&>(Base::impl()); } protected: JSSVGTextPathElement(JSC::Structure*, JSDOMGlobalObject*, PassRefPtr<SVGTextPathElement>); void finishCreation(JSC::VM&); static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | JSC::InterceptsGetOwnPropertySlotByIndexEvenWhenLengthIsNotZero | Base::StructureFlags; }; class JSSVGTextPathElementPrototype : public JSC::JSNonFinalObject { public: typedef JSC::JSNonFinalObject Base; static JSC::JSObject* self(JSC::VM&, JSC::JSGlobalObject*); static JSSVGTextPathElementPrototype* create(JSC::VM& vm, JSC::JSGlobalObject* globalObject, JSC::Structure* structure) { JSSVGTextPathElementPrototype* ptr = new (NotNull, JSC::allocateCell<JSSVGTextPathElementPrototype>(vm.heap)) JSSVGTextPathElementPrototype(vm, globalObject, structure); ptr->finishCreation(vm); return ptr; } DECLARE_INFO; static bool getOwnPropertySlot(JSC::JSObject*, JSC::ExecState*, JSC::PropertyName, JSC::PropertySlot&); static JSC::Structure* createStructure(JSC::VM& vm, JSC::JSGlobalObject* globalObject, JSC::JSValue prototype) { return JSC::Structure::create(vm, globalObject, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), info()); } private: JSSVGTextPathElementPrototype(JSC::VM& vm, JSC::JSGlobalObject*, JSC::Structure* structure) : JSC::JSNonFinalObject(vm, structure) { } protected: static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | Base::StructureFlags; }; class JSSVGTextPathElementConstructor : public DOMConstructorObject { private: JSSVGTextPathElementConstructor(JSC::Structure*, JSDOMGlobalObject*); void finishCreation(JSC::VM&, JSDOMGlobalObject*); public: typedef DOMConstructorObject Base; static JSSVGTextPathElementConstructor* create(JSC::VM& vm, JSC::Structure* structure, JSDOMGlobalObject* globalObject) { JSSVGTextPathElementConstructor* ptr = new (NotNull, JSC::allocateCell<JSSVGTextPathElementConstructor>(vm.heap)) JSSVGTextPathElementConstructor(structure, globalObject); ptr->finishCreation(vm, globalObject); return ptr; } static bool getOwnPropertySlot(JSC::JSObject*, JSC::ExecState*, JSC::PropertyName, JSC::PropertySlot&); DECLARE_INFO; static JSC::Structure* createStructure(JSC::VM& vm, JSC::JSGlobalObject* globalObject, JSC::JSValue prototype) { return JSC::Structure::create(vm, globalObject, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), info()); } protected: static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | JSC::ImplementsHasInstance | DOMConstructorObject::StructureFlags; }; // Attributes JSC::EncodedJSValue jsSVGTextPathElementStartOffset(JSC::ExecState*, JSC::EncodedJSValue, JSC::EncodedJSValue, JSC::PropertyName); JSC::EncodedJSValue jsSVGTextPathElementMethod(JSC::ExecState*, JSC::EncodedJSValue, JSC::EncodedJSValue, JSC::PropertyName); JSC::EncodedJSValue jsSVGTextPathElementSpacing(JSC::ExecState*, JSC::EncodedJSValue, JSC::EncodedJSValue, JSC::PropertyName); #if ENABLE(SVG) JSC::EncodedJSValue jsSVGTextPathElementHref(JSC::ExecState*, JSC::EncodedJSValue, JSC::EncodedJSValue, JSC::PropertyName); #endif JSC::EncodedJSValue jsSVGTextPathElementConstructor(JSC::ExecState*, JSC::EncodedJSValue, JSC::EncodedJSValue, JSC::PropertyName); // Constants JSC::EncodedJSValue jsSVGTextPathElementTEXTPATH_METHODTYPE_UNKNOWN(JSC::ExecState*, JSC::EncodedJSValue, JSC::EncodedJSValue, JSC::PropertyName); JSC::EncodedJSValue jsSVGTextPathElementTEXTPATH_METHODTYPE_ALIGN(JSC::ExecState*, JSC::EncodedJSValue, JSC::EncodedJSValue, JSC::PropertyName); JSC::EncodedJSValue jsSVGTextPathElementTEXTPATH_METHODTYPE_STRETCH(JSC::ExecState*, JSC::EncodedJSValue, JSC::EncodedJSValue, JSC::PropertyName); JSC::EncodedJSValue jsSVGTextPathElementTEXTPATH_SPACINGTYPE_UNKNOWN(JSC::ExecState*, JSC::EncodedJSValue, JSC::EncodedJSValue, JSC::PropertyName); JSC::EncodedJSValue jsSVGTextPathElementTEXTPATH_SPACINGTYPE_AUTO(JSC::ExecState*, JSC::EncodedJSValue, JSC::EncodedJSValue, JSC::PropertyName); JSC::EncodedJSValue jsSVGTextPathElementTEXTPATH_SPACINGTYPE_EXACT(JSC::ExecState*, JSC::EncodedJSValue, JSC::EncodedJSValue, JSC::PropertyName); } // namespace WebCore #endif // ENABLE(SVG) #endif
[ "trevor.linton@gmail.com" ]
trevor.linton@gmail.com
591d0e7f237672313200952fa061fe55ef865e6b
877fff5bb313ccd23d1d01bf23b1e1f2b13bb85a
/app/src/main/cpp/dir7941/dir22441/dir22442/dir22443/dir22444/dir22869/dir23467/file23593.cpp
1bc26db43dadc27affb44fbe7be77ce67549b4c7
[]
no_license
tgeng/HugeProject
829c3bdfb7cbaf57727c41263212d4a67e3eb93d
4488d3b765e8827636ce5e878baacdf388710ef2
refs/heads/master
2022-08-21T16:58:54.161627
2020-05-28T01:54:03
2020-05-28T01:54:03
267,468,475
0
0
null
null
null
null
UTF-8
C++
false
false
115
cpp
#ifndef file23593 #error "macro file23593 must be defined" #endif static const char* file23593String = "file23593";
[ "tgeng@google.com" ]
tgeng@google.com
8fcee4dbdd1b7bb4c5e9870d12b23eef4cea2534
ad08a820522224c3ba0441c9b48a60b3c4fe8436
/UserSpace_win32/src/UserMutex.h
2202f87f2eba637e1d4265d3f250601e5277a547
[]
no_license
loy1991/GMIS_BASE
91a172d98991d8f14dca2da9bfd389d3627eb167
5f9825b9c082f9ab6792102ab7a9676b51df2d6c
refs/heads/master
2020-12-07T15:19:27.170678
2014-05-16T10:49:01
2014-05-16T10:49:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
957
h
/* * * author: ZhangHongBing(hongbing75@gmail.com) */ #ifndef _USERMUTEX_H__ #define _USERMUTEX_H__ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include "ABMutex.h" #ifdef WIN32 #include <windows.h> #else #include <sys/time.h> #include <pthread.h> #endif using namespace ABSTRACT; class CUserMutex : public CABMutex { private: #ifdef WIN32 uint32 m_ThreadID; CRITICAL_SECTION m_Mutex; #else pthread_mutex_t m_Mutex; #endif public: CUserMutex(); virtual ~CUserMutex(); virtual void Acquire(){ #ifdef WIN32 ::EnterCriticalSection(&m_Mutex); m_ThreadID = GetCurrentThreadId(); #else (void)pthread_mutex_lock(&m_Mutex); #endif }; virtual void Release(){ #ifdef WIN32 ::LeaveCriticalSection(&m_Mutex); m_ThreadID = 0; #else pthread_mutex_unlock(&m_Mutex); #endif }; }; #endif // !defined(AFX_USERMUTEX_H__76B5425A_CBB1_4E98_B229_FF4E86EA61CF__INCLUDED_)
[ "hongbing75@gmail.com" ]
hongbing75@gmail.com
37f2fa197ea1869984424a632aa5086224c2ba4e
9c22a7f4e39ec744d68eac3d5ea9db5c7b2013d7
/src/appleseed/foundation/math/bvh/bvh_intersector.h
2024cb070e383ab65377538a6ed5d7dd9657c37a
[ "MIT" ]
permissive
jotpandher/appleseed
4b6b7f30ce816280c3502d710920e39c740f5d51
c74bd03e314d3a9fd7dd0cbaeb2f1374ae4b546f
refs/heads/master
2021-01-15T12:54:13.278636
2014-11-23T14:14:01
2014-11-23T14:14:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
34,581
h
// // This source file is part of appleseed. // Visit http://appleseedhq.net/ for additional information and resources. // // This software is released under the MIT license. // // Copyright (c) 2010-2013 Francois Beaune, Jupiter Jazz Limited // Copyright (c) 2014 Francois Beaune, The appleseedhq Organization // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. // #ifndef APPLESEED_FOUNDATION_MATH_BVH_BVH_INTERSECTOR_H #define APPLESEED_FOUNDATION_MATH_BVH_BVH_INTERSECTOR_H // appleseed.foundation headers. #include "foundation/core/concepts/noncopyable.h" #include "foundation/math/bvh/bvh_statistics.h" #include "foundation/math/intersection.h" #include "foundation/math/ray.h" #include "foundation/math/scalar.h" #ifdef APPLESEED_USE_SSE #include "foundation/platform/compiler.h" #include "foundation/platform/sse.h" #endif // Standard headers. #include <cassert> #include <cstddef> // Enable or disable BVH traversal statistics. #undef FOUNDATION_BVH_ENABLE_TRAVERSAL_STATS #ifdef FOUNDATION_BVH_ENABLE_TRAVERSAL_STATS #define FOUNDATION_BVH_TRAVERSAL_STATS(x) x #else #define FOUNDATION_BVH_TRAVERSAL_STATS(x) #endif namespace foundation { namespace bvh { // // BVH intersector. // // The Visitor class must conform to the following prototype: // // class Visitor // : public foundation::NonCopyable // { // public: // // Return whether BVH traversal should continue or not. // // 'distance' should be set to the distance to the closest hit so far. // bool visit( // const NodeType& node, // const RayType& ray, // const RayInfoType& ray_info, // ValueType& distance // #ifdef FOUNDATION_BVH_ENABLE_TRAVERSAL_STATS // , TraversalStatistics& stats // #endif // ); // }; // template < typename Tree, typename Visitor, typename Ray, size_t StackSize = 64, size_t N = Tree::NodeType::AABBType::Dimension > class Intersector : public NonCopyable { public: typedef typename Tree::NodeType NodeType; typedef typename NodeType::ValueType ValueType; typedef Ray RayType; typedef RayInfo<ValueType, NodeType::Dimension> RayInfoType; // Intersect a ray with a given BVH without motion. void intersect_no_motion( const Tree& tree, const RayType& ray, const RayInfoType& ray_info, Visitor& visitor #ifdef FOUNDATION_BVH_ENABLE_TRAVERSAL_STATS , TraversalStatistics& stats #endif ) const; // Intersect a ray with a given BVH with motion. void intersect_motion( const Tree& tree, const RayType& ray, const RayInfoType& ray_info, const ValueType ray_time, Visitor& visitor #ifdef FOUNDATION_BVH_ENABLE_TRAVERSAL_STATS , TraversalStatistics& stats #endif ) const; }; // // Intersector class implementation. // template < typename Tree, typename Visitor, typename Ray, size_t StackSize, size_t N > void Intersector<Tree, Visitor, Ray, StackSize, N>::intersect_no_motion( const Tree& tree, const RayType& ray, const RayInfoType& ray_info, Visitor& visitor #ifdef FOUNDATION_BVH_ENABLE_TRAVERSAL_STATS , TraversalStatistics& stats #endif ) const { // Make sure the tree was built. assert(!tree.m_nodes.empty()); // Node stack. const NodeType* stack[StackSize]; const NodeType** stack_ptr = stack; // Current node. const NodeType* node_ptr = &tree.m_nodes[0]; // Initialize traversal statistics. FOUNDATION_BVH_TRAVERSAL_STATS(++stats.m_traversal_count); FOUNDATION_BVH_TRAVERSAL_STATS(size_t visited_nodes = 0); FOUNDATION_BVH_TRAVERSAL_STATS(size_t visited_leaves = 0); FOUNDATION_BVH_TRAVERSAL_STATS(size_t intersected_bboxes = 0); FOUNDATION_BVH_TRAVERSAL_STATS(size_t discarded_nodes = 0); // Traverse the tree and intersect leaf nodes. ValueType ray_tmax = ray.m_tmax; while (true) { // Fetch the node. FOUNDATION_BVH_TRAVERSAL_STATS(++visited_nodes); if (node_ptr->is_interior()) { FOUNDATION_BVH_TRAVERSAL_STATS(intersected_bboxes += 2); ValueType tmin[2]; // Intersect the left bounding box. const size_t hit_left = (foundation::intersect(ray, ray_info, node_ptr->get_left_bbox(), tmin[0]) && tmin[0] < ray_tmax) ? 1 : 0; // Intersect the right bounding box. const size_t hit_right = (foundation::intersect(ray, ray_info, node_ptr->get_right_bbox(), tmin[1]) && tmin[1] < ray_tmax) ? 1 : 0; node_ptr = &tree.m_nodes[node_ptr->get_child_node_index()]; node_ptr += hit_right; if (hit_left ^ hit_right) { // Continue with the left or right child node. FOUNDATION_BVH_TRAVERSAL_STATS(++discarded_nodes); continue; } if (hit_left | hit_right) { // Push the far child node to the stack, continue with the near child node. const int far_index = tmin[0] < tmin[1] ? 1 : 0; *stack_ptr++ = node_ptr + far_index - 1; node_ptr -= far_index; continue; } FOUNDATION_BVH_TRAVERSAL_STATS(discarded_nodes += 2); // Terminate traversal if the node stack is empty. if (stack_ptr == stack) break; // Pop the top node from the stack. node_ptr = *--stack_ptr; continue; } else { // Visit the leaf. FOUNDATION_BVH_TRAVERSAL_STATS(++visited_leaves); ValueType distance; #ifndef NDEBUG distance = ValueType(-1.0); #endif const bool proceed = visitor.visit( *node_ptr, ray, ray_info, distance #ifdef FOUNDATION_BVH_ENABLE_TRAVERSAL_STATS , stats #endif ); assert(!proceed || distance >= ValueType(0.0)); // Terminate traversal if the visitor decided so. if (!proceed) break; // Keep track of the distance to the closest intersection. if (ray_tmax > distance) ray_tmax = distance; // Terminate traversal if the node stack is empty. if (stack_ptr == stack) break; // Pop the top node from the stack. node_ptr = *--stack_ptr; } } // Store traversal statistics. FOUNDATION_BVH_TRAVERSAL_STATS(stats.m_visited_nodes.insert(visited_nodes)); FOUNDATION_BVH_TRAVERSAL_STATS(stats.m_visited_leaves.insert(visited_leaves)); FOUNDATION_BVH_TRAVERSAL_STATS(stats.m_intersected_bboxes.insert(intersected_bboxes)); FOUNDATION_BVH_TRAVERSAL_STATS(stats.m_discarded_nodes.insert(discarded_nodes)); } template < typename Tree, typename Visitor, typename Ray, size_t StackSize, size_t N > void Intersector<Tree, Visitor, Ray, StackSize, N>::intersect_motion( const Tree& tree, const RayType& ray, const RayInfoType& ray_info, const ValueType ray_time, Visitor& visitor #ifdef FOUNDATION_BVH_ENABLE_TRAVERSAL_STATS , TraversalStatistics& stats #endif ) const { // Make sure the tree was built. assert(!tree.m_nodes.empty()); // Node stack. const NodeType* stack[StackSize]; const NodeType** stack_ptr = stack; // Current node. const NodeType* node_ptr = &tree.m_nodes[0]; // Initialize traversal statistics. FOUNDATION_BVH_TRAVERSAL_STATS(++stats.m_traversal_count); FOUNDATION_BVH_TRAVERSAL_STATS(size_t visited_nodes = 0); FOUNDATION_BVH_TRAVERSAL_STATS(size_t visited_leaves = 0); FOUNDATION_BVH_TRAVERSAL_STATS(size_t intersected_bboxes = 0); FOUNDATION_BVH_TRAVERSAL_STATS(size_t discarded_nodes = 0); // Traverse the tree and intersect leaf nodes. ValueType ray_tmax = ray.m_tmax; while (true) { // Fetch the node. FOUNDATION_BVH_TRAVERSAL_STATS(++visited_nodes); if (node_ptr->is_interior()) { FOUNDATION_BVH_TRAVERSAL_STATS(intersected_bboxes += 2); ValueType tmin[2]; // Intersect the left bounding box. size_t hit_left; const size_t left_motion_segment_count = node_ptr->get_left_bbox_count() - 1; if (left_motion_segment_count > 0) { const size_t prev_index = truncate<size_t>(ray_time * left_motion_segment_count); const size_t base_index = node_ptr->get_left_bbox_index() + prev_index; const typename NodeType::AABBType left_bbox = lerp( tree.m_node_bboxes[base_index], tree.m_node_bboxes[base_index + 1], static_cast<ValueType>(ray_time * left_motion_segment_count - prev_index)); hit_left = (foundation::intersect(ray, ray_info, left_bbox, tmin[0]) && tmin[0] < ray_tmax) ? 1 : 0; } else { hit_left = (foundation::intersect(ray, ray_info, node_ptr->get_left_bbox(), tmin[0]) && tmin[0] < ray_tmax) ? 1 : 0; } // Intersect the right bounding box. size_t hit_right; const size_t right_motion_segment_count = node_ptr->get_right_bbox_count() - 1; if (right_motion_segment_count > 0) { const size_t prev_index = truncate<size_t>(ray_time * right_motion_segment_count); const size_t base_index = node_ptr->get_right_bbox_index() + prev_index; const typename NodeType::AABBType right_bbox = lerp( tree.m_node_bboxes[base_index], tree.m_node_bboxes[base_index + 1], static_cast<ValueType>(ray_time * right_motion_segment_count - prev_index)); hit_right = (foundation::intersect(ray, ray_info, right_bbox, tmin[1]) && tmin[1] < ray_tmax) ? 1 : 0; } else { hit_right = (foundation::intersect(ray, ray_info, node_ptr->get_right_bbox(), tmin[1]) && tmin[1] < ray_tmax) ? 1 : 0; } node_ptr = &tree.m_nodes[node_ptr->get_child_node_index()]; node_ptr += hit_right; if (hit_left ^ hit_right) { // Continue with the left or right child node. FOUNDATION_BVH_TRAVERSAL_STATS(++discarded_nodes); continue; } if (hit_left | hit_right) { // Push the far child node to the stack, continue with the near child node. const int far_index = tmin[0] < tmin[1] ? 1 : 0; *stack_ptr++ = node_ptr + far_index - 1; node_ptr -= far_index; continue; } FOUNDATION_BVH_TRAVERSAL_STATS(discarded_nodes += 2); // Terminate traversal if the node stack is empty. if (stack_ptr == stack) break; // Pop the top node from the stack. node_ptr = *--stack_ptr; continue; } else { // Visit the leaf. FOUNDATION_BVH_TRAVERSAL_STATS(++visited_leaves); ValueType distance; #ifndef NDEBUG distance = ValueType(-1.0); #endif const bool proceed = visitor.visit( *node_ptr, ray, ray_info, distance #ifdef FOUNDATION_BVH_ENABLE_TRAVERSAL_STATS , stats #endif ); assert(!proceed || distance >= ValueType(0.0)); // Terminate traversal if the visitor decided so. if (!proceed) break; // Keep track of the distance to the closest intersection. if (ray_tmax > distance) ray_tmax = distance; // Terminate traversal if the node stack is empty. if (stack_ptr == stack) break; // Pop the top node from the stack. node_ptr = *--stack_ptr; } } // Store traversal statistics. FOUNDATION_BVH_TRAVERSAL_STATS(stats.m_visited_nodes.insert(visited_nodes)); FOUNDATION_BVH_TRAVERSAL_STATS(stats.m_visited_leaves.insert(visited_leaves)); FOUNDATION_BVH_TRAVERSAL_STATS(stats.m_intersected_bboxes.insert(intersected_bboxes)); FOUNDATION_BVH_TRAVERSAL_STATS(stats.m_discarded_nodes.insert(discarded_nodes)); } #ifdef APPLESEED_USE_SSE template < typename Tree, typename Visitor, size_t StackSize > class Intersector<Tree, Visitor, Ray3d, StackSize, 3> : public NonCopyable { public: typedef typename Tree::NodeType NodeType; typedef double ValueType; typedef Ray3d RayType; typedef RayInfo3d RayInfoType; // Intersect a ray with a given BVH without motion. void intersect_no_motion( const Tree& tree, const RayType& ray, const RayInfoType& ray_info, Visitor& visitor #ifdef FOUNDATION_BVH_ENABLE_TRAVERSAL_STATS , TraversalStatistics& stats #endif ) const; // Intersect a ray with a given BVH with motion. void intersect_motion( const Tree& tree, const RayType& ray, const RayInfoType& ray_info, const ValueType ray_time, Visitor& visitor #ifdef FOUNDATION_BVH_ENABLE_TRAVERSAL_STATS , TraversalStatistics& stats #endif ) const; }; template < typename Tree, typename Visitor, size_t StackSize > void Intersector<Tree, Visitor, Ray3d, StackSize, 3>::intersect_no_motion( const Tree& tree, const RayType& ray, const RayInfoType& ray_info, Visitor& visitor #ifdef FOUNDATION_BVH_ENABLE_TRAVERSAL_STATS , TraversalStatistics& stats #endif ) const { // Make sure the tree was built. assert(!tree.m_nodes.empty()); // Load the ray into SSE registers. const __m128d org_x = _mm_set1_pd(ray.m_org.x); const __m128d org_y = _mm_set1_pd(ray.m_org.y); const __m128d org_z = _mm_set1_pd(ray.m_org.z); const __m128d rcp_dir_x = _mm_set1_pd(ray_info.m_rcp_dir.x); const __m128d rcp_dir_y = _mm_set1_pd(ray_info.m_rcp_dir.y); const __m128d rcp_dir_z = _mm_set1_pd(ray_info.m_rcp_dir.z); const __m128d ray_tmin = _mm_set1_pd(ray.m_tmin); // Node stack. const NodeType* stack[StackSize]; const NodeType** stack_ptr = stack; // Current node. const NodeType* node_ptr = &tree.m_nodes[0]; // Initialize traversal statistics. FOUNDATION_BVH_TRAVERSAL_STATS(++stats.m_traversal_count); FOUNDATION_BVH_TRAVERSAL_STATS(size_t visited_nodes = 0); FOUNDATION_BVH_TRAVERSAL_STATS(size_t visited_leaves = 0); FOUNDATION_BVH_TRAVERSAL_STATS(size_t intersected_bboxes = 0); FOUNDATION_BVH_TRAVERSAL_STATS(size_t discarded_nodes = 0); // Traverse the tree and intersect leaf nodes. ValueType rtmax = ray.m_tmax; while (true) { // Fetch the node. FOUNDATION_BVH_TRAVERSAL_STATS(++visited_nodes); if (node_ptr->is_interior()) { FOUNDATION_BVH_TRAVERSAL_STATS(intersected_bboxes += 2); const __m128d xl1 = _mm_mul_pd(rcp_dir_x, _mm_sub_pd(_mm_load_pd(node_ptr->m_bbox_data + 0 + 2 * (1 - ray_info.m_sgn_dir.x)), org_x)); const __m128d xl2 = _mm_mul_pd(rcp_dir_x, _mm_sub_pd(_mm_load_pd(node_ptr->m_bbox_data + 0 + 2 * ( ray_info.m_sgn_dir.x)), org_x)); const __m128d yl1 = _mm_mul_pd(rcp_dir_y, _mm_sub_pd(_mm_load_pd(node_ptr->m_bbox_data + 4 + 2 * (1 - ray_info.m_sgn_dir.y)), org_y)); const __m128d yl2 = _mm_mul_pd(rcp_dir_y, _mm_sub_pd(_mm_load_pd(node_ptr->m_bbox_data + 4 + 2 * ( ray_info.m_sgn_dir.y)), org_y)); const __m128d zl1 = _mm_mul_pd(rcp_dir_z, _mm_sub_pd(_mm_load_pd(node_ptr->m_bbox_data + 8 + 2 * (1 - ray_info.m_sgn_dir.z)), org_z)); const __m128d zl2 = _mm_mul_pd(rcp_dir_z, _mm_sub_pd(_mm_load_pd(node_ptr->m_bbox_data + 8 + 2 * ( ray_info.m_sgn_dir.z)), org_z)); const __m128d ray_tmax = _mm_set1_pd(rtmax); const __m128d tmin = _mm_max_pd(zl1, _mm_max_pd(yl1, _mm_max_pd(xl1, ray_tmin))); const __m128d tmax = _mm_min_pd(zl2, _mm_min_pd(yl2, _mm_min_pd(xl2, ray_tmax))); const int hits = _mm_movemask_pd( _mm_or_pd( _mm_cmpgt_pd(tmin, tmax), _mm_or_pd( _mm_cmplt_pd(tmax, ray_tmin), _mm_cmpge_pd(tmin, ray_tmax)))) ^ 3; const size_t hit_left = hits & 1; const size_t hit_right = hits >> 1; node_ptr = &tree.m_nodes[node_ptr->get_child_node_index()]; node_ptr += hit_right; if (hit_left ^ hit_right) { // Continue with the left or right child node. FOUNDATION_BVH_TRAVERSAL_STATS(++discarded_nodes); continue; } if (hits) { // Push the far child node to the stack, continue with the near child node. const int far_index = _mm_movemask_pd( _mm_cmplt_pd( tmin, _mm_shuffle_pd(tmin, tmin, _MM_SHUFFLE2(1, 1)))); *stack_ptr++ = node_ptr + far_index - 1; node_ptr -= far_index; continue; } FOUNDATION_BVH_TRAVERSAL_STATS(discarded_nodes += 2); // Terminate traversal if the node stack is empty. if (stack_ptr == stack) break; // Pop the top node from the stack. node_ptr = *--stack_ptr; continue; } else { // Visit the leaf. FOUNDATION_BVH_TRAVERSAL_STATS(++visited_leaves); ValueType distance; #ifndef NDEBUG distance = ValueType(-1.0); #endif const bool proceed = visitor.visit( *node_ptr, ray, ray_info, distance #ifdef FOUNDATION_BVH_ENABLE_TRAVERSAL_STATS , stats #endif ); assert(!proceed || distance >= ValueType(0.0)); // Terminate traversal if the visitor decided so. if (!proceed) break; // Keep track of the distance to the closest intersection. if (rtmax > distance) rtmax = distance; // Terminate traversal if the node stack is empty. if (stack_ptr == stack) break; // Pop the top node from the stack. node_ptr = *--stack_ptr; } } // Store traversal statistics. FOUNDATION_BVH_TRAVERSAL_STATS(stats.m_visited_nodes.insert(visited_nodes)); FOUNDATION_BVH_TRAVERSAL_STATS(stats.m_visited_leaves.insert(visited_leaves)); FOUNDATION_BVH_TRAVERSAL_STATS(stats.m_intersected_bboxes.insert(intersected_bboxes)); FOUNDATION_BVH_TRAVERSAL_STATS(stats.m_discarded_nodes.insert(discarded_nodes)); } template < typename Tree, typename Visitor, size_t StackSize > void Intersector<Tree, Visitor, Ray3d, StackSize, 3>::intersect_motion( const Tree& tree, const RayType& ray, const RayInfoType& ray_info, const ValueType ray_time, Visitor& visitor #ifdef FOUNDATION_BVH_ENABLE_TRAVERSAL_STATS , TraversalStatistics& stats #endif ) const { // Make sure the tree was built. assert(!tree.m_nodes.empty()); // Load the ray into SSE registers. const __m128d org_x = _mm_set1_pd(ray.m_org.x); const __m128d org_y = _mm_set1_pd(ray.m_org.y); const __m128d org_z = _mm_set1_pd(ray.m_org.z); const __m128d rcp_dir_x = _mm_set1_pd(ray_info.m_rcp_dir.x); const __m128d rcp_dir_y = _mm_set1_pd(ray_info.m_rcp_dir.y); const __m128d rcp_dir_z = _mm_set1_pd(ray_info.m_rcp_dir.z); const __m128d ray_tmin = _mm_set1_pd(ray.m_tmin); const __m128d mray_time = _mm_set1_pd(ray_time); // Load constants. const __m128d one = _mm_set1_pd(1.0); // Node stack. const NodeType* stack[StackSize]; const NodeType** stack_ptr = stack; // Current node. const NodeType* node_ptr = &tree.m_nodes[0]; // Initialize traversal statistics. FOUNDATION_BVH_TRAVERSAL_STATS(++stats.m_traversal_count); FOUNDATION_BVH_TRAVERSAL_STATS(size_t visited_nodes = 0); FOUNDATION_BVH_TRAVERSAL_STATS(size_t visited_leaves = 0); FOUNDATION_BVH_TRAVERSAL_STATS(size_t intersected_bboxes = 0); FOUNDATION_BVH_TRAVERSAL_STATS(size_t discarded_nodes = 0); // Traverse the tree and intersect leaf nodes. ValueType rtmax = ray.m_tmax; while (true) { // Fetch the node. FOUNDATION_BVH_TRAVERSAL_STATS(++visited_nodes); if (node_ptr->is_interior()) { FOUNDATION_BVH_TRAVERSAL_STATS(intersected_bboxes += 2); __m128d tmin, tmax; const __m128d ray_tmax = _mm_set1_pd(rtmax); const NodeType* base_child_node_ptr = &tree.m_nodes[node_ptr->get_child_node_index()]; const size_t left_motion_segment_count = node_ptr->get_left_bbox_count() - 1; const size_t right_motion_segment_count = node_ptr->get_right_bbox_count() - 1; if (left_motion_segment_count > 0 && right_motion_segment_count > 0) { const __m128d left_t = _mm_mul_pd(mray_time, _mm_set1_pd(static_cast<double>(left_motion_segment_count))); const int left_prev_index = _mm_cvttsd_si32(left_t); const size_t left_base_index = node_ptr->get_left_bbox_index() + left_prev_index; const __m128d left_w2 = _mm_sub_pd(left_t, _mm_set1_pd(left_prev_index)); const __m128d left_w1 = _mm_sub_pd(one, left_w2); const __m128d right_t = _mm_mul_pd(mray_time, _mm_set1_pd(static_cast<double>(right_motion_segment_count))); const int right_prev_index = _mm_cvttsd_si32(right_t); const size_t right_base_index = node_ptr->get_right_bbox_index() + right_prev_index; const __m128d right_w2 = _mm_sub_pd(right_t, _mm_set1_pd(right_prev_index)); const __m128d right_w1 = _mm_sub_pd(one, right_w2); const double* base_bbox = &tree.m_node_bboxes[0][0][0]; const double* left_bbox = base_bbox + left_base_index * 6; const double* right_bbox = base_bbox + right_base_index * 6; const __m128d mleftbbx = _mm_add_pd(_mm_mul_pd(_mm_load_pd(left_bbox + 0), left_w1), _mm_mul_pd(_mm_load_pd(left_bbox + 6), left_w2)); const __m128d mrightbbx = _mm_add_pd(_mm_mul_pd(_mm_load_pd(right_bbox + 0), right_w1), _mm_mul_pd(_mm_load_pd(right_bbox + 6), right_w2)); const __m128d bbox_x[2] = { _mm_shuffle_pd(mleftbbx, mrightbbx, _MM_SHUFFLE2(0, 0)), _mm_shuffle_pd(mleftbbx, mrightbbx, _MM_SHUFFLE2(1, 1)) }; const __m128d mleftbby = _mm_add_pd(_mm_mul_pd(_mm_load_pd(left_bbox + 2), left_w1), _mm_mul_pd(_mm_load_pd(left_bbox + 8), left_w2)); const __m128d mrightbby = _mm_add_pd(_mm_mul_pd(_mm_load_pd(right_bbox + 2), right_w1), _mm_mul_pd(_mm_load_pd(right_bbox + 8), right_w2)); const __m128d bbox_y[2] = { _mm_shuffle_pd(mleftbby, mrightbby, _MM_SHUFFLE2(0, 0)), _mm_shuffle_pd(mleftbby, mrightbby, _MM_SHUFFLE2(1, 1)) }; const __m128d mleftbbz = _mm_add_pd(_mm_mul_pd(_mm_load_pd(left_bbox + 4), left_w1), _mm_mul_pd(_mm_load_pd(left_bbox + 10), left_w2)); const __m128d mrightbbz = _mm_add_pd(_mm_mul_pd(_mm_load_pd(right_bbox + 4), right_w1), _mm_mul_pd(_mm_load_pd(right_bbox + 10), right_w2)); const __m128d bbox_z[2] = { _mm_shuffle_pd(mleftbbz, mrightbbz, _MM_SHUFFLE2(0, 0)), _mm_shuffle_pd(mleftbbz, mrightbbz, _MM_SHUFFLE2(1, 1)) }; const __m128d xl1 = _mm_mul_pd(rcp_dir_x, _mm_sub_pd(bbox_x[1 - ray_info.m_sgn_dir.x], org_x)); const __m128d yl1 = _mm_mul_pd(rcp_dir_y, _mm_sub_pd(bbox_y[1 - ray_info.m_sgn_dir.y], org_y)); const __m128d zl1 = _mm_mul_pd(rcp_dir_z, _mm_sub_pd(bbox_z[1 - ray_info.m_sgn_dir.z], org_z)); const __m128d xl2 = _mm_mul_pd(rcp_dir_x, _mm_sub_pd(bbox_x[ ray_info.m_sgn_dir.x], org_x)); const __m128d yl2 = _mm_mul_pd(rcp_dir_y, _mm_sub_pd(bbox_y[ ray_info.m_sgn_dir.y], org_y)); const __m128d zl2 = _mm_mul_pd(rcp_dir_z, _mm_sub_pd(bbox_z[ ray_info.m_sgn_dir.z], org_z)); tmin = _mm_max_pd(zl1, _mm_max_pd(yl1, _mm_max_pd(xl1, ray_tmin))); tmax = _mm_min_pd(zl2, _mm_min_pd(yl2, _mm_min_pd(xl2, ray_tmax))); } else { SSE_ALIGN double bbox_data[12]; // Fetch the left bounding box. if (left_motion_segment_count > 0) { const __m128d t = _mm_mul_pd(mray_time, _mm_set1_pd(static_cast<double>(left_motion_segment_count))); const int prev_index = _mm_cvttsd_si32(t); const __m128d w2 = _mm_sub_pd(t, _mm_set1_pd(prev_index)); const __m128d w1 = _mm_sub_pd(one, w2); const size_t base_index = node_ptr->get_left_bbox_index() + prev_index; const double* bbox = &tree.m_node_bboxes[0][0][0] + base_index * 6; const __m128d x = _mm_add_pd(_mm_mul_pd(_mm_load_pd(bbox + 0), w1), _mm_mul_pd(_mm_load_pd(bbox + 6), w2)); _mm_storel_pd(bbox_data + 0, x); _mm_storeh_pd(bbox_data + 2, x); const __m128d y = _mm_add_pd(_mm_mul_pd(_mm_load_pd(bbox + 2), w1), _mm_mul_pd(_mm_load_pd(bbox + 8), w2)); _mm_storel_pd(bbox_data + 4, y); _mm_storeh_pd(bbox_data + 6, y); const __m128d z = _mm_add_pd(_mm_mul_pd(_mm_load_pd(bbox + 4), w1), _mm_mul_pd(_mm_load_pd(bbox + 10), w2)); _mm_storel_pd(bbox_data + 8, z); _mm_storeh_pd(bbox_data + 10, z); } else { bbox_data[ 0] = node_ptr->m_bbox_data[ 0]; bbox_data[ 2] = node_ptr->m_bbox_data[ 2]; bbox_data[ 4] = node_ptr->m_bbox_data[ 4]; bbox_data[ 6] = node_ptr->m_bbox_data[ 6]; bbox_data[ 8] = node_ptr->m_bbox_data[ 8]; bbox_data[10] = node_ptr->m_bbox_data[10]; } // Fetch the right bounding box. if (right_motion_segment_count > 0) { const __m128d t = _mm_mul_pd(mray_time, _mm_set1_pd(static_cast<double>(right_motion_segment_count))); const int prev_index = _mm_cvttsd_si32(t); const __m128d w2 = _mm_sub_pd(t, _mm_set1_pd(prev_index)); const __m128d w1 = _mm_sub_pd(one, w2); const size_t base_index = node_ptr->get_right_bbox_index() + prev_index; const double* bbox = &tree.m_node_bboxes[0][0][0] + base_index * 6; const __m128d x = _mm_add_pd(_mm_mul_pd(_mm_load_pd(bbox + 0), w1), _mm_mul_pd(_mm_load_pd(bbox + 6), w2)); _mm_storel_pd(bbox_data + 1, x); _mm_storeh_pd(bbox_data + 3, x); const __m128d y = _mm_add_pd(_mm_mul_pd(_mm_load_pd(bbox + 2), w1), _mm_mul_pd(_mm_load_pd(bbox + 8), w2)); _mm_storel_pd(bbox_data + 5, y); _mm_storeh_pd(bbox_data + 7, y); const __m128d z = _mm_add_pd(_mm_mul_pd(_mm_load_pd(bbox + 4), w1), _mm_mul_pd(_mm_load_pd(bbox + 10), w2)); _mm_storel_pd(bbox_data + 9, z); _mm_storeh_pd(bbox_data + 11, z); } else { bbox_data[ 1] = node_ptr->m_bbox_data[ 1]; bbox_data[ 3] = node_ptr->m_bbox_data[ 3]; bbox_data[ 5] = node_ptr->m_bbox_data[ 5]; bbox_data[ 7] = node_ptr->m_bbox_data[ 7]; bbox_data[ 9] = node_ptr->m_bbox_data[ 9]; bbox_data[11] = node_ptr->m_bbox_data[11]; } const __m128d xl1 = _mm_mul_pd(rcp_dir_x, _mm_sub_pd(_mm_load_pd(bbox_data + 0 + 2 * (1 - ray_info.m_sgn_dir.x)), org_x)); const __m128d xl2 = _mm_mul_pd(rcp_dir_x, _mm_sub_pd(_mm_load_pd(bbox_data + 0 + 2 * ( ray_info.m_sgn_dir.x)), org_x)); const __m128d yl1 = _mm_mul_pd(rcp_dir_y, _mm_sub_pd(_mm_load_pd(bbox_data + 4 + 2 * (1 - ray_info.m_sgn_dir.y)), org_y)); const __m128d yl2 = _mm_mul_pd(rcp_dir_y, _mm_sub_pd(_mm_load_pd(bbox_data + 4 + 2 * ( ray_info.m_sgn_dir.y)), org_y)); const __m128d zl1 = _mm_mul_pd(rcp_dir_z, _mm_sub_pd(_mm_load_pd(bbox_data + 8 + 2 * (1 - ray_info.m_sgn_dir.z)), org_z)); const __m128d zl2 = _mm_mul_pd(rcp_dir_z, _mm_sub_pd(_mm_load_pd(bbox_data + 8 + 2 * ( ray_info.m_sgn_dir.z)), org_z)); tmin = _mm_max_pd(zl1, _mm_max_pd(yl1, _mm_max_pd(xl1, ray_tmin))); tmax = _mm_min_pd(zl2, _mm_min_pd(yl2, _mm_min_pd(xl2, ray_tmax))); } const int hits = _mm_movemask_pd( _mm_or_pd( _mm_cmpgt_pd(tmin, tmax), _mm_or_pd( _mm_cmplt_pd(tmax, ray_tmin), _mm_cmpge_pd(tmin, ray_tmax)))) ^ 3; const size_t hit_left = hits & 1; const size_t hit_right = hits >> 1; node_ptr = base_child_node_ptr + hit_right; if (hit_left ^ hit_right) { // Continue with the left or right child node. FOUNDATION_BVH_TRAVERSAL_STATS(++discarded_nodes); continue; } if (hits) { // Push the far child node to the stack, continue with the near child node. const int far_index = _mm_movemask_pd( _mm_cmplt_pd( tmin, _mm_shuffle_pd(tmin, tmin, _MM_SHUFFLE2(1, 1)))); *stack_ptr++ = node_ptr + far_index - 1; node_ptr -= far_index; continue; } FOUNDATION_BVH_TRAVERSAL_STATS(discarded_nodes += 2); // Terminate traversal if the node stack is empty. if (stack_ptr == stack) break; // Pop the top node from the stack. node_ptr = *--stack_ptr; continue; } else { // Visit the leaf. FOUNDATION_BVH_TRAVERSAL_STATS(++visited_leaves); ValueType distance; #ifndef NDEBUG distance = ValueType(-1.0); #endif const bool proceed = visitor.visit( *node_ptr, ray, ray_info, distance #ifdef FOUNDATION_BVH_ENABLE_TRAVERSAL_STATS , stats #endif ); assert(!proceed || distance >= ValueType(0.0)); // Terminate traversal if the visitor decided so. if (!proceed) break; // Keep track of the distance to the closest intersection. if (rtmax > distance) rtmax = distance; // Terminate traversal if the node stack is empty. if (stack_ptr == stack) break; // Pop the top node from the stack. node_ptr = *--stack_ptr; } } // Store traversal statistics. FOUNDATION_BVH_TRAVERSAL_STATS(stats.m_visited_nodes.insert(visited_nodes)); FOUNDATION_BVH_TRAVERSAL_STATS(stats.m_visited_leaves.insert(visited_leaves)); FOUNDATION_BVH_TRAVERSAL_STATS(stats.m_intersected_bboxes.insert(intersected_bboxes)); FOUNDATION_BVH_TRAVERSAL_STATS(stats.m_discarded_nodes.insert(discarded_nodes)); } #endif // APPLESEED_USE_SSE } // namespace bvh } // namespace foundation #endif // !APPLESEED_FOUNDATION_MATH_BVH_BVH_INTERSECTOR_H
[ "beaune@aist.enst.fr" ]
beaune@aist.enst.fr
ffcfcca831aaca8ad7a11846f30a65820e61f45f
0a39c3b5534c38bd2ed3a4789fa6557e44d91b31
/Schematics NPC 2018/Warm up/C - Yoyo The Crypter Man.cpp
fff96bec22f0365f37e992d2512c5c7d2ab6ff96
[]
no_license
ilhamfp/competitive-programming
18e2201e59999319b2e80261c2844d122b185e2b
d753529cd5310a4fe0fb9718be41c9cdecb2285f
refs/heads/master
2023-03-27T04:29:01.620916
2021-03-28T11:52:21
2021-03-28T11:52:21
121,941,014
0
0
null
null
null
null
UTF-8
C++
false
false
1,155
cpp
#include <bits/stdc++.h> using namespace std; #define mp make_pair #define pb push_back #define pii pair<int, int> typedef long long ll; typedef unsigned long long ull; pair<int,int> arah[8] = { {0,1} , {1,1} , {1,0} , {1,-1} , {0,-1} , {-1,-1} , {-1,0} , {-1,1} }; bool cmp (int i,int j) { return (i>j); } int binaryKeDecimal(int n) { int num = n; int dec_value = 0; int base = 1; int temp = num; while (temp) { int last_digit = temp % 10; temp = temp/10; dec_value += last_digit*base; base = base*2; } return dec_value; } int main() { int n; cin>>n; for (int i = 0; i < n; ++i) { string s; cin>>s; vector<int> v; for (int j = 0; j < s.size(); j+=6) { string temp = s.substr(j,5); int cur = stoi(temp); // cout<<cur<<" "<<j<<endl; v.pb(binaryKeDecimal(cur)); } for (int j = 0; j < v.size(); ++j) { // cout<<v[j]; cout<<((char)(v[j]-1+'a')); } cout<<endl; } return 0; }
[ "ilhamfputra31@gmail.com" ]
ilhamfputra31@gmail.com
1391423a56fd528cff39059cf3044903c06f86e2
38c10c01007624cd2056884f25e0d6ab85442194
/chrome/browser/ui/webui/options/content_settings_handler.h
3cd3e566cb307296a768af528de76907d710cd3d
[ "BSD-3-Clause" ]
permissive
zenoalbisser/chromium
6ecf37b6c030c84f1b26282bc4ef95769c62a9b2
e71f21b9b4b9b839f5093301974a45545dad2691
refs/heads/master
2022-12-25T14:23:18.568575
2016-07-14T21:49:52
2016-07-23T08:02:51
63,980,627
0
2
BSD-3-Clause
2022-12-12T12:43:41
2016-07-22T20:14:04
null
UTF-8
C++
false
false
10,209
h
// Copyright (c) 2012 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_UI_WEBUI_OPTIONS_CONTENT_SETTINGS_HANDLER_H_ #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CONTENT_SETTINGS_HANDLER_H_ #include <string> #include "base/memory/scoped_ptr.h" #include "base/prefs/pref_change_registrar.h" #include "base/scoped_observer.h" #include "base/values.h" #include "chrome/browser/pepper_flash_settings_manager.h" #include "chrome/browser/ui/webui/options/options_ui.h" #include "chrome/browser/ui/webui/options/pepper_flash_content_settings_utils.h" #include "components/content_settings/core/browser/content_settings_observer.h" #include "components/content_settings/core/common/content_settings.h" #include "components/content_settings/core/common/content_settings_types.h" #include "content/public/browser/host_zoom_map.h" #include "content/public/browser/notification_observer.h" #include "content/public/browser/notification_registrar.h" class HostContentSettingsMap; class ProtocolHandlerRegistry; namespace options { class ContentSettingsHandler : public OptionsPageUIHandler, public content_settings::Observer, public content::NotificationObserver, public PepperFlashSettingsManager::Client { public: ContentSettingsHandler(); ~ContentSettingsHandler() override; // OptionsPageUIHandler implementation. void GetLocalizedValues(base::DictionaryValue* localized_strings) override; void InitializeHandler() override; void InitializePage() override; void RegisterMessages() override; // content_settings::Observer implementation. void OnContentSettingChanged(const ContentSettingsPattern& primary_pattern, const ContentSettingsPattern& secondary_pattern, ContentSettingsType content_type, std::string resource_identifier) override; // content::NotificationObserver implementation. void Observe(int type, const content::NotificationSource& source, const content::NotificationDetails& details) override; // PepperFlashSettingsManager::Client implementation. void OnGetPermissionSettingsCompleted( uint32 request_id, bool success, PP_Flash_BrowserOperations_Permission default_permission, const ppapi::FlashSiteSettings& sites) override; // Gets a string identifier for the group name, for use in HTML. static std::string ContentSettingsTypeToGroupName(ContentSettingsType type); private: // Used to determine whether we should show links to Flash camera and // microphone settings. class MediaSettingsInfo { public: MediaSettingsInfo(); ~MediaSettingsInfo(); // Cached Pepper Flash settings. struct ForFlash { ForFlash(); ~ForFlash(); ContentSetting default_setting; MediaExceptions exceptions; bool initialized; uint32_t last_refresh_request_id; }; struct ForOneType { ForOneType(); ~ForOneType(); // Whether the links to Flash settings pages are showed. bool show_flash_default_link; bool show_flash_exceptions_link; // Cached Chrome media settings. ContentSetting default_setting; bool policy_disable; bool default_setting_initialized; MediaExceptions exceptions; bool exceptions_initialized; }; ForOneType& forType(ContentSettingsType type); ForFlash& forFlash(); private: ForOneType mic_settings_; ForOneType camera_settings_; ForFlash flash_settings_; DISALLOW_COPY_AND_ASSIGN(MediaSettingsInfo); }; // Used by ShowFlashMediaLink() to specify which link to show/hide. enum LinkType { DEFAULT_SETTING = 0, EXCEPTIONS, }; // Functions that call into the page ----------------------------------------- // Updates the page with the default settings (allow, ask, block, etc.) void UpdateSettingDefaultFromModel(ContentSettingsType type); // Compares the microphone or camera |type| default settings with Flash // and updates the Flash links' visibility accordingly. void UpdateMediaSettingsFromPrefs(ContentSettingsType type); // Clobbers and rebuilds the specific content setting type exceptions table. void UpdateExceptionsViewFromModel(ContentSettingsType type); // Clobbers and rebuilds the specific content setting type exceptions // OTR table. void UpdateOTRExceptionsViewFromModel(ContentSettingsType type); // Clobbers and rebuilds all the exceptions tables in the page (both normal // and OTR tables). void UpdateAllExceptionsViewsFromModel(); // As above, but only OTR tables. void UpdateAllOTRExceptionsViewsFromModel(); // Clobbers and rebuilds just the geolocation exception table. void UpdateGeolocationExceptionsView(); // Clobbers and rebuilds just the desktop notification exception table. void UpdateNotificationExceptionsView(); // Compares the exceptions of the camera or microphone |type| with its Flash // counterparts and updates the Flash links' visibility accordingly. void CompareMediaExceptionsWithFlash(ContentSettingsType type); // Clobbers and rebuilds just the MIDI SysEx exception table. void UpdateMIDISysExExceptionsView(); // Modifies the zoom level exceptions list to display correct chrome // signin page entry. When the legacy (non-WebView-based) signin page // goes away, this function can be removed. void AdjustZoomLevelsListForSigninPageIfNecessary( content::HostZoomMap::ZoomLevelVector* zoom_levels); // Clobbers and rebuilds just the zoom levels exception table. void UpdateZoomLevelsExceptionsView(); // Clobbers and rebuilds an exception table that's managed by the host content // settings map. void UpdateExceptionsViewFromHostContentSettingsMap(ContentSettingsType type); // As above, but acts on the OTR table for the content setting type. void UpdateExceptionsViewFromOTRHostContentSettingsMap( ContentSettingsType type); // Updates the radio buttons for enabling / disabling handlers. void UpdateHandlersEnabledRadios(); // Removes one geolocation exception. |args| contains the parameters passed to // RemoveException(). void RemoveGeolocationException(const base::ListValue* args); // Removes one notification exception. |args| contains the parameters passed // to RemoveException(). void RemoveNotificationException(const base::ListValue* args); // Removes one exception of |type| from the host content settings map. |args| // contains the parameters passed to RemoveException(). void RemoveExceptionFromHostContentSettingsMap( const base::ListValue* args, ContentSettingsType type); // Removes one zoom level exception. |args| contains the parameters passed to // RemoveException(). void RemoveZoomLevelException(const base::ListValue* args); // Callbacks used by the page ------------------------------------------------ // Sets the default value for a specific content type. |args| includes the // content type and a string describing the new default the user has // chosen. void SetContentFilter(const base::ListValue* args); // Removes the given row from the table. The first entry in |args| is the // content type, and the rest of the arguments depend on the content type // to be removed. void RemoveException(const base::ListValue* args); // Changes the value of an exception. Called after the user is done editing an // exception. void SetException(const base::ListValue* args); // Called to decide whether a given pattern is valid, or if it should be // rejected. Called while the user is editing an exception pattern. void CheckExceptionPatternValidity(const base::ListValue* args); // Utility functions --------------------------------------------------------- // Applies content settings whitelists to reduce breakage / user confusion. void ApplyWhitelist(ContentSettingsType content_type, ContentSetting default_setting); // Gets the HostContentSettingsMap for the normal profile. HostContentSettingsMap* GetContentSettingsMap(); // Gets the HostContentSettingsMap for the incognito profile, or NULL if there // is no active incognito session. HostContentSettingsMap* GetOTRContentSettingsMap(); // Gets the ProtocolHandlerRegistry for the normal profile. ProtocolHandlerRegistry* GetProtocolHandlerRegistry(); void RefreshFlashMediaSettings(); // Returns exceptions constructed from the policy-set allowed URLs // for the content settings |type| mic or camera. scoped_ptr<base::ListValue> GetPolicyAllowedUrls(ContentSettingsType type); // Fills in |exceptions| with Values for the given |type| from |map|. void GetExceptionsFromHostContentSettingsMap( const HostContentSettingsMap* map, ContentSettingsType type, base::ListValue* exceptions); void OnPepperFlashPrefChanged(); // content::HostZoomMap subscription. void OnZoomLevelChanged(const content::HostZoomMap::ZoomLevelChange& change); void ShowFlashMediaLink( LinkType link_type, ContentSettingsType content_type, bool show); void UpdateFlashMediaLinksVisibility(ContentSettingsType type); void UpdateMediaDeviceDropdownVisibility(ContentSettingsType type); void UpdateProtectedContentExceptionsButton(); // Member variables --------------------------------------------------------- content::NotificationRegistrar notification_registrar_; PrefChangeRegistrar pref_change_registrar_; scoped_ptr<PepperFlashSettingsManager> flash_settings_manager_; scoped_ptr<MediaSettingsInfo> media_settings_; scoped_ptr<content::HostZoomMap::Subscription> host_zoom_map_subscription_; scoped_ptr<content::HostZoomMap::Subscription> signin_host_zoom_map_subscription_; ScopedObserver<HostContentSettingsMap, content_settings::Observer> observer_; DISALLOW_COPY_AND_ASSIGN(ContentSettingsHandler); }; } // namespace options #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CONTENT_SETTINGS_HANDLER_H_
[ "zeno.albisser@hemispherian.com" ]
zeno.albisser@hemispherian.com
8cf1482145cee18e4415d0f26d1eaa1879b2941d
d1895a5024d1a319838fa66c8072379bfb3fb811
/xlFunction/bond/xlInstrumentAccruedAmount/xlInstrumentAccruedAmount.hpp
e7b637d08f882d03d226ec635619ed2ac10d1eb9
[]
no_license
vermosen/xlObjectTools
9b5b47e4a0176bf34d92567142d26656a5ef7985
e43210c73076b7fb226d70716e9946eba72b1edd
refs/heads/master
2021-07-03T17:43:32.741980
2020-10-28T16:33:15
2020-10-28T16:33:15
18,273,901
4
2
null
null
null
null
UTF-8
C++
false
false
699
hpp
/* * xlObjectTools * * Created by Jean-Matthieu VERMOSEN on 31/05/09 * Copyright 2009. All rights reserved. * */ #ifndef xl_instrument_accrued_amount #define xl_instrument_accrued_amount #include <ohxl/repositoryxl.hpp> #include <ohxl/conversions/validations.hpp> #include <ohxl/convert_oper.hpp> #include <ohxl/conversions/scalartooper.hpp> #include <qlo/bonds.hpp> #include <ql/instruments/bond.hpp> /* Fonction de calcul de l'accrued des instruments */ DLLEXPORT xloper * xlInstrumentAccruedAmount (const char * instrumentId_, xloper * settlementDate_, xloper * trigger_) ; #endif
[ "vermosen.jm@free.fr" ]
vermosen.jm@free.fr
f06b0249a04d989e76697f7314760653e748d722
757a4d7a08cbe01ab89e0fdccc7e2e7c51f7c9ad
/assignment2/10.cpp
215df6526ed5200a279cc1a4f541962fc396f615
[]
no_license
jimmy3663/object_oriented_programming
5de353af1ca5f80301b72cb643afbcd353d66f2f
7639e4e5df74a1237832aab0571815c565679ac4
refs/heads/master
2020-04-28T01:03:43.368972
2019-05-26T17:13:06
2019-05-26T17:13:06
174,840,222
0
1
null
null
null
null
UTF-8
C++
false
false
841
cpp
#include <iostream> #include <string> #include <fstream> #include <vector> using namespace std; int main(int argc, char* argv[]){ ifstream in1(argv[1]); ifstream in2(argv[2]); vector <string> v1; vector <string> v2; string temp1; while(!in1.eof()){ getline(in1, temp1); v1.push_back(temp1); } string temp2; while(!in2.eof()){ getline(in2,temp2); v2.push_back(temp2); } /*for(int i=0; i<v1.size(); i++) cout<<v1[i]<<endl; for(int i=0; i<v2.size() ; i++) cout<<v2[i]<<endl;*/ int dif=0; if(v1.size() != v2.size()) cout<<"The two files are different."<<endl; else{ for(int i=0; i<v1.size(); i++){ for(int j=0; j<v1[i].length(); j++){ if(v1[i][j]!=v2[i][j]){ dif=1; } } } } if(dif==0) cout<<"The two files are same."<<endl; else cout<<"The two files are different."<<endl; }
[ "jimmy3663@naver.com" ]
jimmy3663@naver.com
3960a774cb84582f7e10ac1cbff72fc08897b6d0
30e1dc84fe8c54d26ef4a1aff000a83af6f612be
/src/external/boost/boost_1_68_0/boost/spirit/home/qi/what.hpp
f23e4bf3cb2ce9c736adad57563bcb3c3f68dc01
[ "BSL-1.0", "BSD-3-Clause" ]
permissive
Sitispeaks/turicreate
0bda7c21ee97f5ae7dc09502f6a72abcb729536d
d42280b16cb466a608e7e723d8edfbe5977253b6
refs/heads/main
2023-05-19T17:55:21.938724
2021-06-14T17:53:17
2021-06-14T17:53:17
385,034,849
1
0
BSD-3-Clause
2021-07-11T19:23:21
2021-07-11T19:23:20
null
UTF-8
C++
false
false
1,122
hpp
/*============================================================================= Copyright (c) 2001-2011 Joel de Guzman Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) =============================================================================*/ #if !defined(BOOST_SPIRIT_WHAT_APRIL_21_2007_0732AM) #define BOOST_SPIRIT_WHAT_APRIL_21_2007_0732AM #if defined(_MSC_VER) #pragma once #endif #include <boost/mpl/assert.hpp> #include <boost/spirit/home/support/info.hpp> #include <boost/spirit/home/qi/meta_compiler.hpp> namespace boost { namespace spirit { namespace qi { template <typename Expr> inline info what(Expr const& expr) { // Report invalid expression error as early as possible. // If you got an error_expr_is_not_convertible_to_a_parser // error message here, then the expression (expr) is not a // valid spirit qi expression. BOOST_SPIRIT_ASSERT_MATCH(qi::domain, Expr); return compile<qi::domain>(expr).what(unused); } }}} #endif
[ "znation@apple.com" ]
znation@apple.com
69d02950990ba5581bc3ed1febb70e2510d1f797
13996b41b2ca70b47054256945907b1f869156aa
/55.cpp
5fd01adb6831bbc75cf1ee14f4c280d8bf9a2fc3
[]
no_license
huangtao800/LeetCode
da88d065c11e566513e0e72f81061ddc0288f4db
5fe0a00ae083068bf639830ca45c9752cdc7eb67
refs/heads/master
2021-01-17T14:32:01.689598
2015-09-28T05:49:58
2015-09-28T05:49:58
33,874,233
0
0
null
null
null
null
UTF-8
C++
false
false
785
cpp
#include <vector> #include <algorithm> #include <iostream> #include <algorithm> #include <climits> using namespace std; class Solution { public: bool canJump(vector<int>& nums) { // if(nums.size()==1) return true; int length = nums[0]; int begin = 0; int end = begin + length; int maxi = INT_MIN; while(true){ for(int i=end;i>=begin;i--){ if(nums[i] + i >= nums.size() - 1) return true; maxi = max(maxi, nums[i] + i); } if(maxi<=end) break; begin = end+1; end = maxi; } return false; } }; int main(){ Solution s; std::vector<int> v; v.push_back(0); v.push_back(1); cout << s.canJump(v)<< endl; }
[ "huangtao800@gmail.com" ]
huangtao800@gmail.com
94af164e406fb009d6c9ab3547ab7fe5547f018d
ee60b09a4e6675cbf4c95bdfaf651024dc96fc8c
/JProject/JSampleMaps/Sample.h
47b621ae6a6a521f84139d0f344a39267b318057
[]
no_license
JeongBongSeong/JProject
bda15e31e8e27f1efb703949c65d4d440e5f365b
2f44b0c444a893f0effd3760683a89151f7a11c7
refs/heads/master
2023-08-27T09:52:42.585052
2021-11-02T10:08:24
2021-11-02T10:08:24
421,306,343
0
0
null
null
null
null
UTF-8
C++
false
false
470
h
#pragma once #include"JCore.h" #include "JShape.h" #include "JCamera.h" #include "JMap.h" class Sample : public JCore { JBoxShape m_BoxObj[2]; JMap m_Map; JDebugCamera m_Camera; float m_fYaw = 0.0f; float m_fPitch = 0.0f; public: bool Init() override; bool Frame() override; bool Render() override; bool Release() override; LRESULT MsgProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)override; public: Sample(); virtual ~Sample(); };
[ "kgca38-2@KGCA385" ]
kgca38-2@KGCA385
d3ec3d25a12f7029d4983697e9997df5519368b3
cad1d3beae8de5f6cdb7cc12b8f85604b0c4babf
/mpc_ros/include/cppad/core/bool_valued.hpp
75de15ae07c9be99479558a4bc4a4c1e9882c6fc
[ "Apache-2.0" ]
permissive
Geonhee-LEE/mpc_ros
8bd9c0aacec4617e2bb21fdb983a9f8e582d330e
1b5d8d5773fdc39a69566f096426466f9ed40854
refs/heads/melodic
2023-06-01T06:31:49.644981
2023-02-14T23:02:36
2023-02-14T23:02:36
162,116,668
582
150
Apache-2.0
2023-05-18T07:26:57
2018-12-17T10:55:37
C++
UTF-8
C++
false
false
1,189
hpp
// $Id$ # ifndef CPPAD_CORE_BOOL_VALUED_HPP # define CPPAD_CORE_BOOL_VALUED_HPP /* -------------------------------------------------------------------------- CppAD: C++ Algorithmic Differentiation: Copyright (C) 2003-16 Bradley M. Bell CppAD is distributed under multiple licenses. This distribution is under the terms of the GNU General Public License Version 3. A copy of this license is included in the COPYING file of this distribution. Please visit http://www.coin-or.org/CppAD/ for information on other licenses. -------------------------------------------------------------------------- */ /* $begin BoolValued$$ $spell Bool $$ $section Bool Valued Operations and Functions with AD Arguments$$ $children% cppad/core/compare.hpp% cppad/core/near_equal_ext.hpp% cppad/core/bool_fun.hpp% cppad/core/par_var.hpp% cppad/core/equal_op_seq.hpp %$$ $table $rref Compare$$ $rref NearEqualExt$$ $rref BoolFun$$ $rref ParVar$$ $rref EqualOpSeq$$ $tend $end */ # include <cppad/core/compare.hpp> # include <cppad/core/near_equal_ext.hpp> # include <cppad/core/bool_fun.hpp> # include <cppad/core/par_var.hpp> # include <cppad/core/equal_op_seq.hpp> # endif
[ "gunhee6392@gmail.com" ]
gunhee6392@gmail.com
da252e780bf82dcba08fdf26cc222a8223ade2eb
cc6b2350d261e01624ed60bda9e9172df2c09eef
/src/identifier.h
827549d867edc74ad01b50adb890c130e938b228
[ "Apache-2.0" ]
permissive
samp-incognito/samp-streamer-plugin
d46ffbe1871f22a145f8e9c2b21c8efe0f46c590
ce28f825ccd13a5d4da4610200f9d4c9f3ab31d5
refs/heads/master
2023-02-07T08:11:37.289300
2023-02-06T07:44:28
2023-02-06T07:44:28
16,149,293
243
193
Apache-2.0
2023-02-06T07:44:30
2014-01-22T19:09:03
C++
UTF-8
C++
false
false
869
h
/* * Copyright (C) 2017 Incognito * * 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 IDENTIFIER_H #define IDENTIFIER_H class Identifier { public: Identifier(); int get(); void remove(int id, std::size_t remaining); void reset(); private: int highestId; std::priority_queue<int, std::vector<int>, std::greater<int> > removedIds; }; #endif
[ "someone.extraordinary@gmail.com" ]
someone.extraordinary@gmail.com
27ac6deb69260bcadc44f0444fba3753d5382c73
ca7767ddf74f59e4d1ca2bf747442115cae8a1c9
/source/LookAndFeel/MLLabel.h
8c133f6e1275f8a8d8ad1a8914533aaf74d86552
[ "MIT" ]
permissive
AventureNumerique/madronalib
7bbefb65a7e59fd277159b9ec6198362bf7e971c
1cf3b390ae2979124d9caaaa13c82191b4b5d1d2
refs/heads/master
2021-01-21T18:57:40.149277
2017-03-14T21:30:21
2017-03-14T21:30:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,564
h
// MadronaLib: a C++ framework for DSP applications. // Copyright (c) 2013 Madrona Labs LLC. http://www.madronalabs.com // Distributed under the MIT license: http://madrona-labs.mit-license.org/ #ifndef __ML_LABEL_HEADER__ #define __ML_LABEL_HEADER__ #include "MLUI.h" #include "MLDSPDeprecated.h" #include "MLWidget.h" #include <string> typedef enum { imageModeOpaque = 0, imageModeAlphaBrush, imageModeMultiply } eMLImageMode; class MLLabel : public Component, public MLWidget { friend class MLLookAndFeel; public: enum ColourIds { backgroundColourId = 0x1000980, textColourId = 0x1000981, }; static const int kInfWidth = 100000; MLLabel (MLWidget* pContainer, const char* labelText = 0); ~MLLabel(); void setFont (const Font& newFont); void setSizeMultiplier(float f) { mSizeMultiplier = f; } void resizeWidget(const MLRect& b, const int u); void setInverse(bool i); void setImage(const Image& m); void setImageData(const void* m) {mImageData = (char *)m;} void setDrawable (const Drawable* pImg); void setImageMode(eMLImageMode mode); void setJustification(const Justification& j); void setResizeToText(bool r) { mResizeToText = r; } protected: Font mFont; AttributedString mRichStr; bool mInverse; bool mDrawImage; eMLImageMode mImageMode; Justification mJustification; bool mResizeToText; float mSizeMultiplier; void paint (Graphics& g); Image mImage; char* mImageData; ScopedPointer<Drawable> mpDrawable; MLRect mTextRect; private: }; #endif
[ "randy@madronalabs.com" ]
randy@madronalabs.com
211d0b17149561fe347dbcf22c77028a3a6cf357
6133b7da381ec8eead8055956b1bbe10de8e713e
/src/list_task.h
e465895416ac5efec1ff44ae2c65bd2d3b10c32e
[]
no_license
Chehai/backup
b232b540565038e1a3253c0524894598dadd1978
538ba9d112393c6aa2e5c8ed47d4309290e204bb
refs/heads/master
2021-01-10T21:31:33.396533
2011-08-21T23:23:29
2011-08-21T23:23:29
2,027,466
0
0
null
null
null
null
UTF-8
C++
false
false
719
h
#ifndef LIST_TASK_H #define LIST_TASK_H #include "common.h" #include "task.h" #include "parent_task.h" #include "remote_store.h" #include "remote_object.h" class ListTask : public Task { public: ListTask(RemoteStore * rs, boost::filesystem::path& dir, std::string& prefix, std::time_t&, ParentTask& m); int run(); private: int open_database(); int close_database(); std::string convert_to_string(std::time_t t); RemoteStore * remote_store; ParentTask& parent_task; boost::filesystem::path list_dir; std::string list_prefix; std::time_t timestamp; std::list<RemoteObject> remote_objects_to_list; sqlite3 * objects_db_conn; boost::filesystem::path objects_db_path; static boost::mutex list_mutex; }; #endif
[ "chehai.wu@appfolio.com" ]
chehai.wu@appfolio.com
4bcdb1dd637b68c8e1f31294b656a18d93c85e4d
fb58f481494a232c8c5f89efcf938fa4af014d25
/src/gui/colors.cpp
5833a49f7820a52fa762590c201907012c8ed03e
[]
no_license
alexha98/MotionExplorer
d491cd582ea62d9cd31929d2264e424725ec320c
4e8b5c81f7dbc257c8a4562a5e7c0ff27e7dad83
refs/heads/master
2023-03-08T20:29:00.646507
2020-06-06T18:38:18
2020-06-06T18:38:18
270,878,691
0
0
null
2020-07-13T21:53:09
2020-06-09T01:55:56
null
UTF-8
C++
false
false
936
cpp
#include "colors.h" using namespace GLDraw; void GLDraw::setColor(const GLColor &c){ c.setCurrentGL(); } int colorType = 1; const GLColor GLDraw::getColorRobotStartConfiguration() { // const GLColor colorStartConfiguration(0.7, 0.7, 0.7, 1); // return colorStartConfiguration; return GLColor(0.3, 1.0, 0.3, 1.0); } const GLColor GLDraw::getColorRobotStartConfigurationTransparent() { // const GLColor colorStartConfiguration(0.7, 0.7, 0.7, 0.1); // return colorStartConfiguration; return GLColor(0.3, 1.0, 0.3, 0.3); } const GLColor GLDraw::getColorRobotGoalConfiguration() { // const GLColor colorGoalConfiguration(1.0, 1.0, 0.0, 0.5); // return colorGoalConfiguration; return GLColor(0.7, 0.3, 0.3, 1.0); } const GLColor GLDraw::getColorRobotGoalConfigurationTransparent() { // const GLColor colorGoalConfiguration(1.0, 1.0, 0.0, 0.1); // return colorGoalConfiguration; return GLColor(0.7, 0.3, 0.3, 0.3); }
[ "andreas.orthey@gmx.de" ]
andreas.orthey@gmx.de
f395edb5e5671a5988b76a5062527fb0f9950d52
752572bd6010ef068c4851b55a261a2122f29094
/aws-cpp-sdk-securityhub/source/SecurityHubEndpoint.cpp
b77165412f4ebd592fec666bf362b1b60369e554
[ "Apache-2.0", "MIT", "JSON" ]
permissive
cnxtech/aws-sdk-cpp
9b208792b2e81b3a22a850c3d0fbf4724dc65a99
af8089f6277b8fec93c55a815c724444bd159a13
refs/heads/master
2023-08-15T02:01:42.569685
2019-05-08T20:39:01
2019-05-08T20:39:01
185,732,288
0
0
Apache-2.0
2023-07-22T05:12:44
2019-05-09T05:30:49
C++
UTF-8
C++
false
false
1,568
cpp
/* * Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ #include <aws/securityhub/SecurityHubEndpoint.h> #include <aws/core/utils/memory/stl/AWSStringStream.h> #include <aws/core/utils/HashingUtils.h> using namespace Aws; using namespace Aws::SecurityHub; namespace Aws { namespace SecurityHub { namespace SecurityHubEndpoint { static const int CN_NORTH_HASH = Aws::Utils::HashingUtils::HashString("cn-north-1"); static const int CN_NORTHWEST_1_HASH = Aws::Utils::HashingUtils::HashString("cn-northwest-1"); Aws::String ForRegion(const Aws::String& regionName, bool useDualStack) { auto hash = Aws::Utils::HashingUtils::HashString(regionName.c_str()); Aws::StringStream ss; ss << "securityhub" << "."; if(useDualStack) { ss << "dualstack."; } ss << regionName << ".amazonaws.com"; if (hash == CN_NORTH_HASH || hash == CN_NORTHWEST_1_HASH) { ss << ".cn"; } return ss.str(); } } // namespace SecurityHubEndpoint } // namespace SecurityHub } // namespace Aws
[ "aws-sdk-cpp-automation@github.com" ]
aws-sdk-cpp-automation@github.com
68cd28b1dfb8bd1004890234ca970ecd420956c5
0014fb5ce4aa3a6f460128bb646a3c3cfe81eb9e
/testdata/15/12/src/node3.cpp
d6a2891a0233eccde9a826240b6da86f2629f23d
[]
no_license
yps158/randomGraph
c1fa9c531b11bb935d112d1c9e510b5c02921df2
68f9e2e5b0bed1f04095642ee6924a68c0768f0c
refs/heads/master
2021-09-05T05:32:45.210171
2018-01-24T11:23:06
2018-01-24T11:23:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,114
cpp
#include "ros/ros.h" #include "std_msgs/String.h" #include "unistd.h" #include <sstream> #include <random> std::random_device rd; std::mt19937 gen(rd()); std::normal_distribution<> d(0.029622, 0.005); class Node3{ public: Node3(){ sub_1_3_flag = 0; sub_1_3 = n.subscribe("topic_1_3", 1, &Node3::middlemanCallback1,this); pub_3_9 = n.advertise<std_msgs::String>("topic_3_9", 1); pub_3_4 = n.advertise<std_msgs::String>("topic_3_4", 1); } void middlemanCallback1(const std_msgs::String::ConstPtr& msg){ if( true){ usleep(d(gen)*1000000); ROS_INFO("I'm node3 last from node1, intercepted: [%s]", msg->data.c_str()); pub_3_9.publish(msg); pub_3_4.publish(msg); } else{ ROS_INFO("I'm node3, from node1 intercepted: [%s]", msg->data.c_str()); sub_1_3_flag = 1; } } private: ros::NodeHandle n; ros::Publisher pub_3_9; ros::Publisher pub_3_4; int sub_1_3_flag; ros::Subscriber sub_1_3; }; int main(int argc, char **argv){ ros::init(argc, argv, "node3"); Node3 node3; ros::spin(); return 0; }
[ "sasaki@thinkingreed.co.jp" ]
sasaki@thinkingreed.co.jp
400f6b490565bf4900c42b193f3ce512226b8099
11436677310873ec661906e8bca64d0ec788e62b
/Simulation/bitmap.cpp
59c9592f5709017e9fd2e4c0aa704057fe49e7cf
[]
no_license
Echo-M/Simulation
164b0644b29f84747d16bef81618c4f8746cb432
a468af5008cb117cfe8c68f0904d02c396188662
refs/heads/master
2021-01-16T21:41:29.269940
2016-08-17T12:51:58
2016-08-17T12:51:58
64,626,157
1
0
null
null
null
null
UTF-8
C++
false
false
8,552
cpp
#include "stdafx.h" #include "bitmap.h" #ifdef _DEBUG #define new DEBUG_NEW #endif Bitmap::Bitmap() : buffer_(NULL) { } Bitmap::Bitmap(const Bitmap &other) : buffer_(NULL) { Assign(other); } Bitmap::~Bitmap() { Destroy(); } bool Bitmap::Create(int width, int height, int bpp, const RGBQUAD *palette) { char biBuffer[sizeof(BITMAPINFO) + 256 * sizeof(RGBQUAD)]; BITMAPINFO *bi = (BITMAPINFO *)biBuffer; ZeroMemory(bi, sizeof(BITMAPINFO)); bi->bmiHeader.biSize = sizeof(BITMAPINFOHEADER); bi->bmiHeader.biWidth = width; bi->bmiHeader.biHeight = height; bi->bmiHeader.biBitCount = bpp; bi->bmiHeader.biPlanes = 1; bi->bmiHeader.biCompression = BI_RGB; if (bpp <= 8) { ASSERT(palette != NULL); CopyMemory(bi->bmiColors, palette, (1 << bpp) * sizeof(RGBQUAD)); } void *bits = NULL; HBITMAP hBitmap = CreateDIBSection(NULL, bi, DIB_RGB_COLORS, &bits, NULL, 0); if (hBitmap == NULL) { return false; } Destroy(); buffer_ = (PixelBuffer *)malloc(sizeof(PixelBuffer)); buffer_->width = width; buffer_->height = height; buffer_->bpp = bpp; buffer_->bits = bits; buffer_->refCount = 1; buffer_->handle = hBitmap; buffer_->withAlpha = false; return true; } bool Bitmap::CreateGrayBitmap(int width, int height) { RGBQUAD palette[256]; for (int i = 0; i < 256; i++) { palette[i].rgbRed = i; palette[i].rgbGreen = i; palette[i].rgbBlue = i; palette[i].rgbReserved = 0; } return Create(width, height, 8, palette); } void Bitmap::Destroy() { if (buffer_ != NULL) { buffer_->refCount--; if (buffer_->refCount == 0) { DeleteObject(buffer_->handle); free(buffer_); } buffer_ = NULL; } } bool Bitmap::IsValid() const { return buffer_ != NULL; } void Bitmap::Assign(const Bitmap &other) { if (&other == this) { return; } Destroy(); buffer_ = other.buffer_; if (buffer_ != NULL) { buffer_->refCount++; } } Bitmap &Bitmap::operator=(const Bitmap &other) { Assign(other); return *this; } bool Bitmap::Draw(HDC hdc, int x, int y) { if (buffer_ == NULL) { SetLastError(ERROR_INVALID_STATE); return false; } HDC hBitmapDC = CreateCompatibleDC(hdc); if (hBitmapDC == NULL) { return false; } bool ret = false; HBITMAP oldBitmap = (HBITMAP)SelectObject(hBitmapDC, buffer_->handle); if (oldBitmap != NULL) { if (buffer_->withAlpha) { BLENDFUNCTION bf; bf.BlendOp = AC_SRC_OVER; bf.BlendFlags = 0; bf.SourceConstantAlpha = 255; bf.AlphaFormat = AC_SRC_ALPHA; ret = !!AlphaBlend(hdc, x, y, buffer_->width, buffer_->height, hBitmapDC, 0, 0, buffer_->width, buffer_->height, bf); } else { ret = !!BitBlt(hdc, x, y, buffer_->width, buffer_->height, hBitmapDC, 0, 0, SRCCOPY); } SelectObject(hBitmapDC, oldBitmap); } DeleteDC(hBitmapDC); return ret; } bool Bitmap::Draw(HDC hdc, const CRect &rect) { if (buffer_ == NULL) { SetLastError(ERROR_INVALID_STATE); return false; } HDC hBitmapDC = CreateCompatibleDC(hdc); if (hBitmapDC == NULL) { return false; } bool ret = false; HBITMAP oldBitmap = (HBITMAP)SelectObject(hBitmapDC, buffer_->handle); if (oldBitmap != NULL) { /*double scaleX = (double)rect.Width() / buffer_->width; double scaleY = (double)rect.Height() / buffer_->height; double scale = __min(scaleX, scaleY); int width = (int)(buffer_->width * scale); int height = (int)(buffer_->height * scale); int left = rect.left + (rect.Width() - width) / 2; int top = rect.top + (rect.Height() - height) / 2;*/ int width = rect.Width(); int height = rect.Height(); int left = rect.left; int top = rect.top; if (buffer_->withAlpha) { BLENDFUNCTION bf; bf.BlendOp = AC_SRC_OVER; bf.BlendFlags = 0; bf.SourceConstantAlpha = 255; bf.AlphaFormat = AC_SRC_ALPHA; ret = !!AlphaBlend(hdc, left, top, width, height, hBitmapDC, 0, 0, buffer_->width, buffer_->height, bf); } else { ret = !!StretchBlt(hdc, left, top, width, height, hBitmapDC, 0, 0, buffer_->width, buffer_->height, SRCCOPY); } SelectObject(hBitmapDC, oldBitmap); } DeleteDC(hBitmapDC); return ret; } bool Bitmap::Draw(HDC hdc, int srcX, int srcY, int cx, int cy, int dstX, int dstY) { if (buffer_ == NULL) { SetLastError(ERROR_INVALID_STATE); return false; } HDC hBitmapDC = CreateCompatibleDC(hdc); if (hBitmapDC == NULL) { return false; } bool ret = false; HBITMAP oldBitmap = (HBITMAP)SelectObject(hBitmapDC, buffer_->handle); if (oldBitmap != NULL) { if (buffer_->withAlpha) { BLENDFUNCTION bf; bf.BlendOp = AC_SRC_OVER; bf.BlendFlags = 0; bf.SourceConstantAlpha = 255; bf.AlphaFormat = AC_SRC_ALPHA; ret = !!AlphaBlend(hdc, dstX, dstY, cx, cy, hBitmapDC, srcX, srcY, cx, cy, bf); } else { ret = !!BitBlt(hdc, dstX, dstY, cx, cy, hBitmapDC, srcX, srcY, SRCCOPY); } SelectObject(hBitmapDC, oldBitmap); } DeleteDC(hBitmapDC); return ret; } bool Bitmap::PreMultiplyAlpha() { if (buffer_ == NULL || buffer_->bpp != 32) { SetLastError(ERROR_INVALID_STATE); return false; } unsigned char *p = (unsigned char *)buffer_->bits; for (int y = 0; y < buffer_->height; y++) { for (int x = 0; x < buffer_->width; x++) { unsigned char a = p[3]; p[1] = p[1] * a / 255; p[2] = p[2] * a / 255; p[0] = p[0] * a / 255; p += 4; } } return true; } bool Bitmap::SetWithAlpha() { if (buffer_ == NULL || buffer_->bpp != 32) { SetLastError(ERROR_INVALID_STATE); return false; } buffer_->withAlpha = true; return true; } bool Bitmap::LoadFromResource(int resId) { HRSRC hResInfo = FindResource(AfxGetResourceHandle(), MAKEINTRESOURCE(resId), RT_BITMAP); if (hResInfo == NULL) { return false; } int size = SizeofResource(AfxGetResourceHandle(), hResInfo); if (size < sizeof(BITMAPINFOHEADER)) { SetLastError(ERROR_INVALID_DATA); return false; } HGLOBAL hResData = LoadResource(AfxGetResourceHandle(), hResInfo); if (hResData == NULL) { return false; } BITMAPINFOHEADER *bih = (BITMAPINFOHEADER *)LockResource(hResData); if (bih == NULL) { return false; } if (!Create(bih->biWidth, bih->biHeight, bih->biBitCount, NULL)) { UnlockResource(hResData); return false; } char *pixels = (char *)(bih + 1); if (bih->biBitCount <= 8) { pixels += (1 << bih->biBitCount) * sizeof(RGBQUAD); } memcpy(buffer_->bits, pixels, (bih->biBitCount * bih->biWidth + 31) / 32 * 4 * bih->biHeight); UnlockResource(hResData); if (bih->biBitCount == 32) { SetWithAlpha(); PreMultiplyAlpha(); } return true; } int Bitmap::GetWidth() const { return buffer_ != NULL ? buffer_->width : 0; } int Bitmap::GetHeight() const { return buffer_ != NULL ? buffer_->height : 0; } int Bitmap::GetBitsPerPixel() const { return buffer_ != NULL ? buffer_->bpp : 0; } void *Bitmap::GetBits() const { return buffer_ != NULL ? buffer_->bits : NULL; } bool Bitmap::SaveToFile(LPCTSTR fileName) { try { CFile file(fileName, CFile::typeBinary | CFile::modeCreate | CFile::modeWrite); int paletteSize = 0; if (GetBitsPerPixel() <= 8) { paletteSize = (1 << GetBitsPerPixel()); } BITMAPFILEHEADER bfh; ZeroMemory(&bfh, sizeof(bfh)); bfh.bfType = 0x4D42; bfh.bfOffBits = sizeof(BITMAPFILEHEADER) + sizeof(BITMAPINFOHEADER) + paletteSize * sizeof(RGBQUAD); int imageSize = GetBytesPerLine() * GetHeight(); bfh.bfSize = bfh.bfOffBits + imageSize; file.Write(&bfh, sizeof(bfh)); BITMAPINFOHEADER bih; ZeroMemory(&bih, sizeof(bih)); bih.biSize = sizeof(bih); bih.biBitCount = GetBitsPerPixel(); bih.biCompression = BI_RGB; bih.biPlanes = 1; bih.biWidth = GetWidth(); bih.biHeight = GetHeight(); file.Write(&bih, sizeof(bih)); if (paletteSize > 0) { RGBQUAD *palette = new RGBQUAD[paletteSize]; for (int i = 0; i < paletteSize; i++) { palette[i].rgbBlue = i; palette[i].rgbGreen = i; palette[i].rgbRed = i; palette[i].rgbReserved = 0;; } file.Write(palette, paletteSize * sizeof(RGBQUAD)); delete[] palette; } file.Write(GetBits(), imageSize); } catch (CFileException *e) { e->Delete(); return false; } return true; } int Bitmap::GetBytesPerLine() const { return (GetWidth() * GetBitsPerPixel() + 31) / 32 * 4; }
[ "337074370@qq.com" ]
337074370@qq.com
c802c04e1cb84b7053ef1ef6ea771f69495523c0
2e62eded4a05a565aa67c2557fed94d2dd2965cf
/Work/可穿戴设备监控中心/可穿戴设备监控中心/EditableButtonUI.cpp
0a1ad75daa1437be468a39b0bd8fb7b9fd75e21a
[]
no_license
jielmn/MyProjects
f34b308a1495f02e1cdbd887ee0faf3f103a8df8
0f0519991d0fdbb98ad0ef86e8bd472c2176a2aa
refs/heads/master
2021-06-03T11:56:40.884186
2020-05-29T09:47:55
2020-05-29T09:47:55
110,639,886
0
0
null
null
null
null
GB18030
C++
false
false
3,109
cpp
#include "EditableButtonUI.h" #define EDITABLE_BUTTON_XML \ "<?xml version=\"1.0\" encoding=\"utf-8\"?>" \ "<Window>" \ "<HorizontalLayout>" \ "<Edit name=\"edt\" textcolor=\"#FF000000\" visible=\"false\" />" \ "<Button name=\"btn\" textcolor=\"#FFFFFFFF\" textpadding=\"4,0,4,0\" text=\"\" align=\"left\" />" \ "</HorizontalLayout>" \ "</Window>" CEditableButtonUI::CEditableButtonUI() { m_dwBtnColor = 0xFF000000; m_dwEditColor = 0xFF000000; m_nBtnFont = -1; m_nEdtFont = -1; m_bInited = FALSE; } CEditableButtonUI::~CEditableButtonUI() { m_pManager->RemoveNotifier(this); } void CEditableButtonUI::DoInit() { if (m_bInited) { return; } CDialogBuilder builder; CContainerUI* pChildWindow = static_cast<CHorizontalLayoutUI*>( builder.Create( _T(EDITABLE_BUTTON_XML), (UINT)0, NULL, m_pManager)); if (pChildWindow) { this->Add(pChildWindow); m_pManager->AddNotifier(this); m_btn = static_cast<CButtonUI*>(m_pManager->FindControl(_T("btn"))); m_edit = static_cast<CEditUI*>(m_pManager->FindControl(_T("edt"))); m_btn->SetText(m_strMyText); m_edit->SetText(m_strMyText); m_btn->SetTextColor(m_dwBtnColor); m_edit->SetTextColor(m_dwEditColor); m_btn->SetFont(m_nBtnFont); m_edit->SetFont(m_nEdtFont); m_btn->SetHotImage(m_strHotImg); } else { this->RemoveAll(); } m_bInited = TRUE; } void CEditableButtonUI::SetAttribute(LPCTSTR pstrName, LPCTSTR pstrValue) { if (0 == StrICmp(pstrName, "text")) { m_strMyText = pstrValue; } else if (0 == StrICmp(pstrName, "editcolor")) { sscanf(pstrValue, "#%x", &m_dwEditColor); } else if (0 == StrICmp(pstrName, "btncolor")) { sscanf(pstrValue, "#%x", &m_dwBtnColor); if ( m_bInited ) { m_btn->SetTextColor(m_dwBtnColor); } } else if (0 == StrICmp(pstrName, "editfont")) { sscanf(pstrValue, "%d", &m_nEdtFont); if (m_edit) m_edit->SetFont(m_nEdtFont); } else if (0 == StrICmp(pstrName, "btnfont")) { sscanf(pstrValue, "%d", &m_nBtnFont); if ( m_btn) m_btn->SetFont(m_nBtnFont); } else if (0 == StrICmp(pstrName, "hotimage")) { m_strHotImg = pstrValue; } else { CContainerUI::SetAttribute(pstrName, pstrValue); } } void CEditableButtonUI::Notify(TNotifyUI& msg) { if (msg.sType == "click") { if (msg.pSender == m_btn) { m_btn->SetVisible(false); m_edit->SetText(m_btn->GetText()); m_edit->SetVisible(true); m_edit->SetFocus(); } } else if (msg.sType == "killfocus") { if (msg.pSender == m_edit) { m_btn->SetText(m_edit->GetText()); if (m_edit->IsVisible()) { m_pManager->SendNotify(this, "textchanged"); } // 又会触发一个edit的kill focus m_edit->SetVisible(false); m_btn->SetVisible(true); } } } CDuiString CEditableButtonUI::GetText() const { return m_btn->GetText(); } void CEditableButtonUI::SetText(LPCTSTR pstrText) { m_btn->SetText(pstrText); m_edit->SetText(pstrText); } void CEditableButtonUI::SetEnabled(bool bEnable /*= true*/) { if (m_btn) m_btn->SetEnabled(bEnable); if (m_edit) m_edit->SetEnabled(bEnable); }
[ "jielmn@aliyun.com" ]
jielmn@aliyun.com
5b5e86d0de8ab3d5c9aefcd0d1139eaee58cab8c
08fae5bd7f16809b84cf6463693732f2308ab4da
/ETS/FixGateway/Storage.h
9fd0c8ee01d09656a22ad7a21b7b0974a2d86bc2
[]
no_license
psallandre/IVRM
a7738c31534e1bbff32ded5cfc7330c52b378f19
5a674d10caba23b126e9bcea982dee30eee72ee1
refs/heads/master
2021-01-21T03:22:33.658311
2014-09-24T11:47:10
2014-09-24T11:47:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,073
h
// Storage.h: interface for the COrderStorage class. // ////////////////////////////////////////////////////////////////////// #ifndef __STORAGE_H__ #define __STORAGE_H__ #include "FIXGGeneral.h" #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 namespace FXG { ////////////////////////////////////////////////////////////////////// class CFgOrder { public: CFgOrder() : m_nId(0L) , m_enConfirmedStatus(enMsOsRejected){} _bstr_t m_strClOrdID; long m_nId; MsOrderStatusEnum m_enConfirmedStatus; }; // object pointer typedef boost::shared_ptr<CFgOrder> CFgOrderPtr; typedef std::map<_bstr_t, CFgOrderPtr> CFgOrderColl; typedef boost::shared_ptr<CFgOrderColl> CFgOrderCollPtr; class CFgOrderStorage { public: CFgOrderStorage(); virtual ~CFgOrderStorage(); void Init(FXGSM::CSmSettingsMgrPtr pSettingsMgr); void Clear(); void Load(); void Insert(IOrder* pOrder, bool bNewOrder = false); CFgOrderPtr Find(_bstr_t& ClOrdID); void UpdateStatus(IOrder* pOrder, bool bFromFix = false); void Update(_bstr_t& bsOldKey, IOrder* pOrder); private: CLock m_Lock; CFgOrderCollPtr m_collOrders; EgLib::CDBConnection m_DB; }; typedef std::map<_bstr_t, long> CFgExecutionsColl; typedef boost::shared_ptr<CFgExecutionsColl> CFgExecutionsCollPtr; ////////////////////////////////////////////////////////////////////// class CFgExecutionStorage { public: CFgExecutionStorage(); virtual ~CFgExecutionStorage(); void Init(FXGSM::CSmSettingsMgrPtr pSettingsMgr); void Load(); void Clear(); long Find(_bstr_t& ExecID); void Insert(IExecutionReport* pReport); DWORD InsertTrade(FX::FoExecutionReport* Report, ITradeUpdate* pTrade); DWORD ReProcessTrade(FX::FoExecutionReport* Report, long lSeqNum, ITradeUpdate* pTrade); HRESULT FillTradeUpdate(CClientRecordset& rs, FX::FoExecutionReport* Report, ITradeUpdate* pTrade); void Update(IExecutionReport* pReport); private: CLock m_Lock; CFgExecutionsCollPtr m_collExecutions; EgLib::CDBConnection m_DB; }; }; #endif // __STORAGE_H__
[ "alex2172@gmail.com" ]
alex2172@gmail.com
f23dccdea06da6e15174ef70b49b629ffda87282
d432a8c18999a4f4a9949aca5441fcef292d92d8
/Contests/PNW2013/b.cc
47ac9b9b1843964281e325d5589c09afe3d3b017
[]
no_license
lernerc/UVA
05bad2a4ed054f6ba216f19221e05cf9f810b228
68cc70896866f73064791b46ea4f7c89dda73339
refs/heads/master
2021-01-23T06:39:14.000825
2014-08-23T15:55:07
2014-08-23T15:55:07
10,039,496
0
0
null
null
null
null
UTF-8
C++
false
false
2,019
cc
#include <iostream> #include <algorithm> #include <cstdlib> #include <cmath> #include <cassert> using namespace std; long long road[100][100]; long long reach[100][100]; long long inf = 1000000000002LL; bool test(long long k, int N, int charges) { for(int i = 0; i < N; i++) { fill(reach[i], reach[i] + N, inf); reach[i][i] = 0; } for(int i = 0; i < N; i++) { for(int j = 0; j < N; j++) { if(road[i][j] <= k) { reach[i][j] = 1; } } reach[i][i] = 0; } //floyd for(int k = 0; k < N; k++) { for(int i = 0; i < N; i++) { for(int j = 0; j < N; j++) { reach[i][j] = min(reach[i][j], reach[i][k] + reach[k][j]); } } } for(int i = 0; i < N; i++) { for(int j = 0; j < N; j++) { if(reach[i][j] > charges && i != j) { return false; } } } return true; } int main() { int cases; cin >> cases; for(int w = 0; w < cases; w++) { long long hi = 0, lo = 0; //data int N, K, M; cin >> N >> K >> M; for(int q = 0; q < N; q++) { fill(road[q], road[q] + N, inf); road[q][q] = 0; } for(int q = 0; q < M; q++) { long long u, v, d; cin >> u >> v >> d; road[u][v] = road[v][u] = min(d, road[u][v]); hi += d; } //floyd for(int k = 0; k < N; k++) { for(int i = 0; i < N; i++) { for(int j = 0; j < N; j++) { if(road[i][k] < inf && road[k][j] < inf) { road[i][j] = min(road[i][j], road[i][k] + road[k][j]); } } } } /*for(int i = 0; i < N; i++) { for(int j = 0; j < N; j++) { cout << road[i][j] << " "; } cout << endl; } */ //binary search while(hi - lo > 1) { long long mid = (hi - lo)/2 + lo; if(test(mid, N, K)) { hi = mid; } else { lo = mid; } } if(test(hi, N, K)) { cout << hi << endl; } else if(test(lo, N, K)) { cout << lo << endl; } // cout << "hi: " << hi << " lo: " << lo << endl; } return 0; }
[ "camara.lerner@gmail.com" ]
camara.lerner@gmail.com
3610fe144ed5c927c0c656c80eb068ac133865fa
f3d90d46e3fab71163343e09ec0de37c296cbc01
/prob_49.cpp
536ed50fe83c86ddaf9a730ae10845836e404b4d
[]
no_license
SebastianSemper/Project-Euler
84d442972edd8f8c06a41df5c3d482f074cfd068
e037a7c5e22becfd961a3cada3cfb076e5a664de
refs/heads/master
2016-09-16T14:00:29.388940
2011-10-05T09:13:18
2011-10-05T09:13:18
2,517,909
0
0
null
null
null
null
UTF-8
C++
false
false
650
cpp
#include "iostream" #include "math.h" using namespace std; long int is_prime(long int); long int next_prime(long int); int main() { cout.precision(15); int n = 1; int p = 1; while (n < 100001){ p = next_prime(p); n++; //cout << n << ". " << p << endl; } cout << p; return 0; } long int is_prime(long int n){ if (n%6 == 1 || n%6 == 5){ for (int i = 5;i<=ceil(sqrt(n));i = i+2) if (n%i == 0) return 0; return 1; } else{ if (n == 2) return 1; if (n == 3) return 1; return 0; } } long int next_prime(long int n){ if (n%2 == 0) n += 1; while (1){ n += 2; if (is_prime(n) == 1) break; } return n; }
[ "seb.semper@googlemail.com" ]
seb.semper@googlemail.com
b0a0dea86234356e3061e029bc67e74c57405e5d
9f65d7afce12c22306a0d3f62e30fddcd3155d50
/OpenGLESText/text_info.h
bf34ee40d76a7f75791c65984397f6c1b057f33c
[]
no_license
SKYMIGHT/OpenGLES
fc60d397fcc3a29cd8e98e04de7e30aea20e2da9
6fa2a1b8a71560dbfb58ba0661c69127e8b7495a
refs/heads/master
2020-02-26T14:37:36.974756
2016-06-02T08:07:36
2016-06-02T08:07:36
60,244,071
0
0
null
null
null
null
UTF-8
C++
false
false
275
h
#ifndef __TEXT_INFO_H #define __TEXT_INFO_H #define MAX_STRING_LEN 1024 class TextInfo { public: TextInfo(); void set_info(int argc, char *argv[]); char text_font[MAX_STRING_LEN]; int text_size; int text_color; int rate; int direction; int align; }; #endif
[ "remix1018@gmail.com" ]
remix1018@gmail.com
9177e81f1404ab17a44df425fde5e04b244e69e2
216739fb228a8c790c2a91171e413aa56577c059
/thirdparty/ck/base/common/strong_typedef.h
0c2e9ca7e8e3edba469f7f74720cd091abbd5e96
[ "MIT" ]
permissive
ktprime/emhash
4f704f349d0357c4c1a87d3423b0d9f0873df427
0bdfac7b0c5bc04088d686e2eae6aeded217cf82
refs/heads/master
2023-09-01T08:29:17.418313
2023-08-25T02:53:44
2023-08-25T02:53:44
207,728,871
315
23
MIT
2023-04-29T12:30:40
2019-09-11T05:16:39
C++
UTF-8
C++
false
false
1,810
h
#pragma once #include <functional> #include <type_traits> #include <utility> template <typename T, typename Tag> struct StrongTypedef { private: using Self = StrongTypedef; T t; public: using UnderlyingType = T; template <class Enable = typename std::is_copy_constructible<T>::type> constexpr explicit StrongTypedef(const T & t_) : t(t_) {} template <class Enable = typename std::is_move_constructible<T>::type> constexpr explicit StrongTypedef(T && t_) : t(std::move(t_)) {} template <class Enable = typename std::is_default_constructible<T>::type> constexpr StrongTypedef(): t() {} constexpr StrongTypedef(const Self &) = default; constexpr StrongTypedef(Self &&) = default; Self & operator=(const Self &) = default; Self & operator=(Self &&) = default; template <class Enable = typename std::is_copy_assignable<T>::type> Self & operator=(const T & rhs) { t = rhs; return *this;} template <class Enable = typename std::is_move_assignable<T>::type> Self & operator=(T && rhs) { t = std::move(rhs); return *this;} operator const T & () const { return t; } operator T & () { return t; } bool operator==(const Self & rhs) const { return t == rhs.t; } bool operator<(const Self & rhs) const { return t < rhs.t; } bool operator>(const Self & rhs) const { return t > rhs.t; } T & toUnderType() { return t; } const T & toUnderType() const { return t; } }; namespace std { template <typename T, typename Tag> struct hash<StrongTypedef<T, Tag>> { size_t operator()(const StrongTypedef<T, Tag> & x) const { return std::hash<T>()(x.toUnderType()); } }; } #define STRONG_TYPEDEF(T, D) \ struct D ## Tag {}; \ using D = StrongTypedef<T, D ## Tag>; \
[ "huangyuanbing1@yy.com" ]
huangyuanbing1@yy.com
f5ba34c915d6ef90de71ea6deb8307ea7501beaa
d90bb820a517727f4d3f1972f235d7bbbec2a187
/cpp/vision/features/hog_visualizer.cpp
9e2ad0e6e4e851b06d364ce8533bf1fd95b5bc15
[]
no_license
umariqb/Multi-Person-Pose-Estimation-using-LJPA-ECCVW-2016
bf83edce518d0d59ac54ee57d4014062655c9d68
9fde830e974b5c5453b77c3a07bbc8a8df3ae9d7
refs/heads/master
2021-09-23T09:49:01.864657
2018-09-21T08:52:15
2018-09-21T08:52:15
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,506
cpp
/* * hogvisualizer.cpp * * Created on: Aug 22, 2013 * Author: juergenwiki.de */ #include "hog_visualizer.hpp" using namespace std; using namespace cv; namespace vision { namespace features { void visualize_hog_features(const cv::Mat& origImg, std::vector<float>& descriptorValues, int blockSize, int cellSize, int gradientBinSize, float zoomFac) { Mat color_origImg; if(origImg.channels() == 3 ) { color_origImg = origImg.clone(); }else{ cvtColor(origImg, color_origImg, CV_GRAY2RGB); } Mat visu; resize(color_origImg, visu, Size(color_origImg.cols * zoomFac, color_origImg.rows * zoomFac)); const double PI =3.141592653589793238462; float radRangeForOneBin = PI / (float) gradientBinSize; // dividing 180° into 9 bins, how large (in rad) is one bin? // prepare data structure: 9 orientation / gradient strenghts for each cell int cells_in_x_dir = origImg.cols / cellSize; int cells_in_y_dir = origImg.rows / cellSize; int totalnrofcells = cells_in_x_dir * cells_in_y_dir; float*** gradientStrengths = new float**[cells_in_y_dir]; int** cellUpdateCounter = new int*[cells_in_y_dir]; for (int y = 0; y < cells_in_y_dir; y++) { gradientStrengths[y] = new float*[cells_in_x_dir]; cellUpdateCounter[y] = new int[cells_in_x_dir]; for (int x = 0; x < cells_in_x_dir; x++) { gradientStrengths[y][x] = new float[gradientBinSize]; cellUpdateCounter[y][x] = 0; for (int bin = 0; bin < gradientBinSize; bin++) gradientStrengths[y][x][bin] = 0.0; } } // nr of blocks = nr of cells - 1 // since there is a new block on each cell (overlapping blocks!) but the last one int blocks_in_x_dir = cells_in_x_dir - 1; int blocks_in_y_dir = cells_in_y_dir - 1; // compute gradient strengths per cell int descriptorDataIdx = 0; int cellx = 0; int celly = 0; for (int blockx = 0; blockx < blocks_in_x_dir; blockx++) { for (int blocky = 0; blocky < blocks_in_y_dir; blocky++) { // 4 cells per block ... for (int cellNr = 0; cellNr < 4; cellNr++) { // compute corresponding cell nr int cellx = blockx; int celly = blocky; if (cellNr == 1) celly++; if (cellNr == 2) cellx++; if (cellNr == 3) { cellx++; celly++; } for (int bin = 0; bin < gradientBinSize; bin++) { float gradientStrength = descriptorValues[descriptorDataIdx]; descriptorDataIdx++; gradientStrengths[celly][cellx][bin] += gradientStrength; } // for (all bins) // note: overlapping blocks lead to multiple updates of this sum! // we therefore keep track how often a cell was updated, // to compute average gradient strengths cellUpdateCounter[celly][cellx]++; } // for (all cells) } // for (all block x pos) } // for (all block y pos) // compute average gradient strengths for (int celly = 0; celly < cells_in_y_dir; celly++) { for (int cellx = 0; cellx < cells_in_x_dir; cellx++) { float NrUpdatesForThisCell = (float) cellUpdateCounter[celly][cellx]; // compute average gradient strenghts for each gradient bin direction for (int bin = 0; bin < gradientBinSize; bin++) { gradientStrengths[celly][cellx][bin] /= NrUpdatesForThisCell; } } } // draw cells for (int celly = 0; celly < cells_in_y_dir; celly++) { for (int cellx = 0; cellx < cells_in_x_dir; cellx++) { int drawX = cellx * cellSize; int drawY = celly * cellSize; int mx = drawX + cellSize / 2; int my = drawY + cellSize / 2; rectangle(visu, Point(drawX * zoomFac, drawY * zoomFac), Point((drawX + cellSize) * zoomFac, (drawY + cellSize) * zoomFac), CV_RGB(100, 100, 100), 1); // draw in each cell all 9 gradient strengths for (int bin = 0; bin < gradientBinSize; bin++) { float currentGradStrength = gradientStrengths[celly][cellx][bin]; // no line to draw? if (currentGradStrength == 0) continue; float currRad = bin * radRangeForOneBin + radRangeForOneBin / 2; float dirVecX = cos(currRad); float dirVecY = sin(currRad); float maxVecLen = cellSize / 2; float scale = 2.5; // just a visualization scale, to see the lines better // compute line coordinates float x1 = mx - dirVecX * currentGradStrength * maxVecLen * scale; float y1 = my - dirVecY * currentGradStrength * maxVecLen * scale; float x2 = mx + dirVecX * currentGradStrength * maxVecLen * scale; float y2 = my + dirVecY * currentGradStrength * maxVecLen * scale; // draw gradient visualization int gray_value = std::min(255, static_cast<int>(255*currentGradStrength*1.5)); line(visu, Point(x1 * zoomFac, y1 * zoomFac), Point(x2 * zoomFac, y2 * zoomFac), CV_RGB(gray_value, gray_value, gray_value), 1); } // for (all bins) } // for (cellx) } // for (celly) // don't forget to free memory allocated by helper data structures! for (int y = 0; y < cells_in_y_dir; y++) { for (int x = 0; x < cells_in_x_dir; x++) { delete[] gradientStrengths[y][x]; } delete[] gradientStrengths[y]; delete[] cellUpdateCounter[y]; } delete[] gradientStrengths; delete[] cellUpdateCounter; imshow("hog-features", visu); waitKey(0); } } /* namespace features */ } /* namespace vision */
[ "uiqbal@iai.uni-bonn.de" ]
uiqbal@iai.uni-bonn.de
479dd95253a523a431779e32db50db96d896b16d
a745501500fff81bf6858af68ff06a5880297501
/洛谷/2948.cpp
7ef54c9ae2bc04196731da6c26d660586944b58a
[]
no_license
AljcC/MyCodes
30654a11cb8c0306d2f7a8b4be796673e93f46c9
319f21fc2ad0b6c49a7d5a463648961b57cdccf0
refs/heads/master
2020-07-08T20:17:33.945923
2019-10-13T05:05:36
2019-10-13T05:05:36
203,765,111
0
0
null
null
null
null
UTF-8
C++
false
false
838
cpp
#include <iostream> #include <cstdio> #include <cstring> using namespace std; const int MAXN = 10010; const int MAXS = 1010; int s, t, n; int last[MAXN][MAXS], mi[MAXN], dp[MAXN][MAXS], f[MAXN]; int main() { cin >> t >> s >> n; for(int i=1; i<=s; i++) { int m, l, a; cin >> m >> l >> a; last[m+l-1][a] = max(last[m+l-1][a], m); } memset(mi, 63, sizeof(mi)); for(int i=1; i<=n; i++) { int c, d; cin >> c >> d; mi[c] = min(mi[c], d); } for(int i=1; i<=100; i++) mi[i] = min(mi[i], mi[i-1]); memset(dp, 128, sizeof(dp)); f[0] = dp[0][1] = 0; for(int i=1; i<=t; i++) { for(int j=1; j<=100; j++) { dp[i][j] = dp[i-1][j]; if(i-mi[j]>=0) dp[i][j] = max(dp[i][j], dp[i-mi[j]][j]+1); if(last[i-1][j]) dp[i][j] = max(dp[i][j], f[last[i-1][j]]); f[i] = max(f[i], dp[i][j]); } } cout << f[t]; return 0; }
[ "邮箱" ]
邮箱
6cafccf2121ee1ac847a058d4710c229b0c0c682
742a3b80182ae6e0f92972cae2a2d0cf229a476c
/testOpenCP/plotTest/guiPlotTest.cpp
840f7905808ccf2539abcc546bb4c73ba58ac7f6
[ "BSD-3-Clause" ]
permissive
Xuhoming/OpenCP
073817a724f46ccb72c7f06a2120bf19b1f4ac79
6785215b1e889f53d9c344adff5760dccf744382
refs/heads/master
2020-07-21T01:51:17.852779
2018-12-20T22:08:50
2018-12-20T22:08:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
275
cpp
#include <opencp.hpp> using namespace std; using namespace cv; using namespace cp; void guiPlotTest() { Plot test; for (int i = 0; i < 10; i++) { test.push_back(i, 2 * i); test.push_back(i, 3 * i, 1); } test.erase(3, 0); test.insert(3, 10, 3, 0); test.plot(); }
[ "fukushima@nitech.ac.jp" ]
fukushima@nitech.ac.jp
bce44e1b53bbb82c30c0d356311553bf76fb68e1
ede874b59555fd65ab2aa44f17a71a5a748eafa6
/include/etl/impl/egblas/imag.hpp
fae95db9750f79da4607a71b0c7adc339540c874
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
bechirzf/etl-2
aad392dc07f42dd772914931ed192829d2d64a74
32e8153b38e0029176ca4fe2395b7fa6babe3189
refs/heads/master
2020-06-11T10:52:16.362349
2018-05-07T08:41:17
2018-05-07T08:41:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,905
hpp
//======================================================================= // Copyright (c) 2014-2018 Baptiste Wicht // Distributed under the terms of the MIT License. // (See accompanying file LICENSE or copy at // http://opensource.org/licenses/MIT) //======================================================================= /*! * \file * \brief EGBLAS wrappers for the imag operation. */ #pragma once #ifdef ETL_EGBLAS_MODE #include "etl/impl/cublas/cuda.hpp" #include <egblas.hpp> #endif namespace etl::impl::egblas { /*! * \brief Indicates if EGBLAS has complex single-precision imag. */ #ifdef EGBLAS_HAS_Cimag static constexpr bool has_cimag = true; #else static constexpr bool has_cimag = false; #endif /*! * \brief Wrappers for complex single-precision egblas imag operation * \param n The size of the vector * \param alpha The scaling factor alpha * \param A The memory of the vector a * \param lda The leading dimension of a * \param B The memory of the vector b * \param ldb The leading dimension of b */ inline void imag(size_t n, float alpha, std::complex<float>* A, size_t lda, float* B, size_t ldb) { #ifdef EGBLAS_HAS_Cimag inc_counter("egblas"); egblas_cimag(n, alpha, reinterpret_cast<cuComplex*>(A), lda, (B), ldb); #else cpp_unused(n); cpp_unused(alpha); cpp_unused(A); cpp_unused(lda); cpp_unused(B); cpp_unused(ldb); cpp_unreachable("Invalid call to egblas::imag"); #endif } /*! * \brief Wrappers for complex single-precision egblas imag operation * \param n The size of the vector * \param alpha The scaling factor alpha * \param A The memory of the vector a * \param lda The leading dimension of a * \param B The memory of the vector b * \param ldb The leading dimension of b */ inline void imag(size_t n, float alpha, etl::complex<float>* A, size_t lda, float* B, size_t ldb) { #ifdef EGBLAS_HAS_Cimag inc_counter("egblas"); egblas_cimag(n, alpha, reinterpret_cast<cuComplex*>(A), lda, (B), ldb); #else cpp_unused(n); cpp_unused(alpha); cpp_unused(A); cpp_unused(lda); cpp_unused(B); cpp_unused(ldb); cpp_unreachable("Invalid call to egblas::imag"); #endif } /*! * \brief Indicates if EGBLAS has complex double-precision imag. */ #ifdef EGBLAS_HAS_Zimag static constexpr bool has_zimag = true; #else static constexpr bool has_zimag = false; #endif /*! * \brief Wrappers for complex double-precision egblas imag operation * \param n The size of the vector * \param alpha The scaling factor alpha * \param A The memory of the vector a * \param lda The leading dimension of a * \param B The memory of the vector b * \param ldb The leading dimension of b */ inline void imag(size_t n, double alpha, std::complex<double>* A, size_t lda, double* B, size_t ldb) { #ifdef EGBLAS_HAS_Zimag inc_counter("egblas"); egblas_zimag(n, alpha, reinterpret_cast<cuDoubleComplex*>(A), lda, (B), ldb); #else cpp_unused(n); cpp_unused(alpha); cpp_unused(A); cpp_unused(lda); cpp_unused(B); cpp_unused(ldb); cpp_unreachable("Invalid call to egblas::imag"); #endif } /*! * \brief Wrappers for complex double-precision egblas imag operation * \param n The size of the vector * \param alpha The scaling factor alpha * \param A The memory of the vector a * \param lda The leading dimension of a * \param B The memory of the vector b * \param ldb The leading dimension of b */ inline void imag(size_t n, double alpha, etl::complex<double>* A, size_t lda, double* B, size_t ldb) { #ifdef EGBLAS_HAS_Zimag inc_counter("egblas"); egblas_zimag(n, alpha, reinterpret_cast<cuDoubleComplex*>(A), lda, (B), ldb); #else cpp_unused(n); cpp_unused(alpha); cpp_unused(A); cpp_unused(lda); cpp_unused(B); cpp_unused(ldb); cpp_unreachable("Invalid call to egblas::imag"); #endif } } //end of namespace etl::impl::egblas
[ "baptiste.wicht@gmail.com" ]
baptiste.wicht@gmail.com
a6cfea7c59baba2ca4e973ea1577cac5fe49508d
d257d63a1c4f7d3ed682315dedaf3df48b3d7c39
/hw1/hw1_opencv.cpp
d526c40ed817a2ec47798807420477ce205fa239
[]
no_license
Po-Jen/AdvancedCVHW
e0a1f1cb31c2545e4080b5a97a696fcbeb8ae867
330eb2ff7f82b96718ebe754a2b3e66b17afce11
refs/heads/master
2021-01-16T01:01:34.873854
2015-06-01T08:14:51
2015-06-01T08:14:51
30,141,142
0
0
null
null
null
null
UTF-8
C++
false
false
4,367
cpp
#include "opencv2/highgui/highgui.hpp" #include "opencv2/imgproc/imgproc.hpp" #include <iostream> #include <vector> #include <string> #include <stdlib.h> //#define VISUALIZE struct block { cv::Mat subImg; /* int origin_x; int origin_y; int motion_x; int motion_y; */ cv::Point2f original_pos; cv::Point2f motion_pos; }; double calculateDistance(const cv::Mat subImg, const cv::Mat testImg, const int blockSize) { double distance=0; for(int i=0; i<blockSize; i++) for(int j=0; j<blockSize; j++) distance += std::abs((int)subImg.at<uchar>(i,j)-(int)testImg.at<uchar>(i,j)); return distance/blockSize; } int main(int argc, char *argv[]) { /*Load two images*/ cv::Mat trucka = cv::imread("trucka.bmp", CV_LOAD_IMAGE_GRAYSCALE); cv::Mat truckb = cv::imread("truckb.bmp", CV_LOAD_IMAGE_GRAYSCALE); #ifdef VISUALIZE cv::imshow("truck a", trucka); cv::imshow("truck b", truckb); cv::waitKey(); #endif /* Add black srroundings to truckb */ cv::Mat fatTruckb; int searchRange = 51; //Now can only support odd serach range int top, bottom, left, right; top = bottom = left = right = searchRange-1; copyMakeBorder( truckb, fatTruckb, top, bottom, left, right, cv::BORDER_CONSTANT, 0); #ifdef VISUALIZE cv::imshow("fat truck b", fatTruckb); std::cout << top << " " << left << " " << bottom << " " << right << std::endl; cv::waitKey(); #endif /* Compute the motion vector by NxN Blocks*/ //Extract all blocks from trucka and save the position of its center int row = trucka.rows; int col = trucka.cols; int blockSize = 31; int rowBlockNum = row/blockSize; int colBlockNum = col/blockSize; std::vector<block> blocks; block b; cv::Mat tmpImg = cv::Mat::zeros(blockSize, blockSize, CV_8U); for(int i=0; i<rowBlockNum; i++) { for(int j=0; j<colBlockNum; j++) { for(int blocki=i*blockSize; blocki<(i*blockSize)+blockSize; blocki++) { for(int blockj=j*blockSize; blockj<(j*blockSize)+blockSize; blockj++) { tmpImg.at<uchar>(blocki-(i*blockSize),blockj-(j*blockSize)) = trucka.at<uchar>(blocki, blockj); } } b.subImg = tmpImg.clone(); b.original_pos.x = i*blockSize + blockSize/2; b.original_pos.y = j*blockSize + blockSize/2; blocks.push_back(b); } } #ifdef VISUALIZE std::string s="block"; std::stringstream num; for(int i=0; i<blocks.size(); i++) { std::cout << blocks[i].original_pos.x << " " << blocks[i].original_pos.y << std::endl; num << i; cv::imshow(s+num.str(), blocks[i].subImg); } cv::waitKey(); #endif //Match the location for all blocks in fatTruckb int fatb_x, fatb_y; for(int index=0; index < blocks.size(); index++) { //get the center position of subImg in truckb fatb_x = blocks[index].original_pos.x+searchRange-1; fatb_y = blocks[index].original_pos.y+searchRange-1; double distance = 1000000; int halfRange = (searchRange-1)/2; for(int searchX =fatb_x-halfRange; searchX < fatb_x+halfRange; searchX++) { for(int searchY =fatb_y-halfRange; searchY < fatb_y+halfRange; searchY++) { //Extract small area on fatTruckb for comparison cv::Mat testImg = cv::Mat::zeros(blockSize, blockSize, CV_8U); cv::Rect rect(searchX-(blockSize/2), searchY-(blockSize/2), blockSize, blockSize); testImg = fatTruckb(rect); //TO DEBUG #ifdef VISUALIZE //#if 1 if(index == 6) { std::string s="block"; std::stringstream num; num << index; cv::imshow(s+num.str(), blocks[index].subImg); cv::imshow("testImg", testImg); cv::waitKey(); } #endif //Calculate the position that subImg mostly matches fatTruckb if(calculateDistance(blocks[index].subImg, testImg, blockSize) < distance) { blocks[index].motion_pos.x = searchX-searchRange+1; blocks[index].motion_pos.y = searchY-searchRange+1; } } } } //Calculate motion vector for all blocks for(int i=0; i<blocks.size(); i++) { //Draw original position(black) cv::circle( truckb, blocks[i].original_pos, 3, cv::Scalar(0), -1, 8); //Draw Motion position(white) cv::circle( truckb, blocks[i].motion_pos, 3, cv::Scalar(255), -1, 8); } //Draw motion vector field for(int i=0; i<blocks.size(); i++) cv::line( truckb, blocks[i].original_pos, blocks[i].motion_pos, cv::Scalar(255), 1, CV_AA, 0); cv::imshow("truckb with dot", truckb); cv::waitKey(); return 0; }
[ "berln579@gmail.com" ]
berln579@gmail.com
de4229fc41be0b1f79a136809086fafe1d6043d7
b79a45362d16bbfb9a65964fec39c8f0085c9940
/vidit_123/codeforces/466-C/466-C-36681037.cpp
69f1074fd2c4cc30a1f8da48d1f70d02b5d0c848
[]
no_license
vidit-virmani/CP
bfbc9c4d05aea317d06597f73c101f857d587548
12376b9fa52ce5309b9b9ea54c41ec3bd6d894dd
refs/heads/master
2020-04-22T00:04:42.096297
2020-01-04T21:20:02
2020-01-04T21:20:02
169,966,850
0
0
null
null
null
null
UTF-8
C++
false
false
1,257
cpp
#include<bits/stdc++.h> using namespace std; #define int long long main(){ int n; int sum=0; cin>>n; int arr[n]; for(int i=0;i<n;i++){ cin>>arr[i]; sum+=arr[i]; } if(n<3 || (sum%3)!=0){ //cout<<"hi"; cout<<0<<endl; return 0; } int prefix[n],suffix[n]; prefix[0]=arr[0]; suffix[n-1]=arr[n-1]; map<int,vector<int>> cnt; for(int i=1;i<n;i++){ prefix[i]=prefix[i-1]+arr[i]; cnt[prefix[i]].push_back(i); } for(int j=n-2;j>=0;j--){ suffix[j]=suffix[j+1]+arr[j]; } // vector<int> v; int ans=0; // cout<<cnt[4000000000][0]<<" "; for(int i=0;i<=n-3;i++){ int f=prefix[i]; if(f==sum/3){ int s=2*prefix[i]; int x=0; if(cnt[s].size()==1 && cnt[s][cnt[s].size()-1]!=i && cnt[s][cnt[s].size()-1]!=n-1){ x=1; } else if(cnt[s].size()>1){ x=lower_bound(cnt[s].begin(),cnt[s].end(),i+1)-cnt[s].begin(); if(cnt[s][cnt[s].size()-1]==n-1){ x=cnt[s].size()-1-x; } else{ x=cnt[s].size()-x; } } ans+=x; } } cout<<ans<<endl; return 0; }
[ "vidit_virmani@outlook.com" ]
vidit_virmani@outlook.com
59b5d2ededda00b207edc6bb1d6400cdeed5d720
e8abb68c3482674ad22bc4422c5962e5c0f15ad2
/bionic/libc/bionic/jemalloc_wrapper.cpp
ef0d3843850460bce0840c6701c692dc609b82bb
[ "SunPro", "LicenseRef-scancode-red-hat-attribution", "BSD-4-Clause", "Martin-Birgmeier", "LicenseRef-scancode-ibm-dhcp", "SMLNJ", "MIT", "LicenseRef-scancode-bsd-unmodified", "HPND", "LicenseRef-scancode-bsd-unchanged", "BSD-3-Clause", "BSD-4-Clause-UC", "LicenseRef-scancode-warranty-disclai...
permissive
pengzhangdev/android_coderead
55fb4162e5ac5d310ef56e4eb2da5c26002e12bd
cdf3bdbedb998733f24e95d05f32d4e371dd79d5
refs/heads/master
2020-05-01T02:58:44.392936
2019-03-23T05:12:27
2019-03-23T05:12:27
177,234,287
0
0
null
null
null
null
UTF-8
C++
false
false
3,175
cpp
/* * Copyright (C) 2014 The Android Open Source Project * * 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 <malloc.h> #include <sys/param.h> #include <unistd.h> #include "jemalloc.h" #include "private/bionic_macros.h" void* je_pvalloc(size_t bytes) { size_t pagesize = getpagesize(); size_t size = __BIONIC_ALIGN(bytes, pagesize); if (size < bytes) { return nullptr; } return je_memalign(pagesize, size); } #ifdef je_memalign #undef je_memalign #endif // The man page for memalign says it fails if boundary is not a power of 2, // but this is not true. Both glibc and dlmalloc round up to the next power // of 2, so we'll do the same. void* je_memalign_round_up_boundary(size_t boundary, size_t size) { if (boundary != 0) { if (!powerof2(boundary)) { boundary = BIONIC_ROUND_UP_POWER_OF_2(boundary); } } else { boundary = 1; } return je_memalign(boundary, size); } int je_mallopt(int param, int value) { // The only parameter we currently understand is M_DECAY_TIME. if (param == M_DECAY_TIME) { // Only support setting the value to 1 or 0. ssize_t decay_time_ms; if (value) { decay_time_ms = 1000; } else { decay_time_ms = 0; } // First get the total number of arenas. unsigned narenas; size_t sz = sizeof(unsigned); if (je_mallctl("arenas.narenas", &narenas, &sz, nullptr, 0) != 0) { return 0; } // Set the decay time for any arenas that will be created in the future. if (je_mallctl("arenas.dirty_decay_ms", nullptr, nullptr, &decay_time_ms, sizeof(decay_time_ms)) != 0) { return 0; } if (je_mallctl("arenas.muzzy_decay_ms", nullptr, nullptr, &decay_time_ms, sizeof(decay_time_ms)) != 0) { return 0; } // Change the decay on the already existing arenas. char buffer[100]; for (unsigned i = 0; i < narenas; i++) { snprintf(buffer, sizeof(buffer), "arena.%d.dirty_decay_ms", i); if (je_mallctl(buffer, nullptr, nullptr, &decay_time_ms, sizeof(decay_time_ms)) != 0) { break; } snprintf(buffer, sizeof(buffer), "arena.%d.muzzy_decay_ms", i); if (je_mallctl(buffer, nullptr, nullptr, &decay_time_ms, sizeof(decay_time_ms)) != 0) { break; } } return 1; } else if (param == M_PURGE) { unsigned narenas; size_t sz = sizeof(unsigned); if (je_mallctl("arenas.narenas", &narenas, &sz, nullptr, 0) != 0) { return 0; } char buffer[100]; snprintf(buffer, sizeof(buffer), "arena.%u.purge", narenas); if (je_mallctl(buffer, nullptr, nullptr, nullptr, 0) != 0) { return 0; } return 1; } return 0; }
[ "pengzhangdev@gmail.com" ]
pengzhangdev@gmail.com
2b4c562753a1baacb5904d73e3bd5f7d63b9413a
865bfdce73e6c142ede4a7c9163c2ac9aac5ceb6
/Source/XScript/Parser/Nodes/Statements/CIfStatementASTNode.h
3e8df4b6f6b8dabbf5a3d1f6bfdfb68d4a82ac88
[]
no_license
TLeonardUK/ZombieGrinder
d1b77aa0fcdf4a5b765e394711147d5621c8d4e8
8fc3c3b7f24f9980b75a143cbf37fab32cf66bbf
refs/heads/master
2021-03-19T14:20:54.990622
2019-08-26T16:35:58
2019-08-26T16:35:58
78,782,741
6
3
null
null
null
null
UTF-8
C++
false
false
1,027
h
/* ***************************************************************** CIfStatementASTNode.h Copyright (C) 2012 Tim Leonard - All Rights Reserved ***************************************************************** */ #pragma once #ifndef _CIFSTATEMENTASTNODE_H_ #define _CIFSTATEMENTASTNODE_H_ #include "Generic/Types/String.h" #include <vector> #include "XScript/Lexer/CToken.h" #include "XScript/Parser/Nodes/CASTNode.h" class CExpressionBaseASTNode; // ================================================================= // Stores information on an if statement. // ================================================================= class CIfStatementASTNode : public CASTNode { protected: public: CExpressionBaseASTNode* ExpressionStatement; CASTNode* BodyStatement; CASTNode* ElseStatement; CIfStatementASTNode(CASTNode* parent, CToken token); virtual CASTNode* Clone (CSemanter* semanter); virtual CASTNode* Semant(CSemanter* semanter); virtual void Translate(CTranslator* translator); }; #endif
[ "tim@programmingbytim.com" ]
tim@programmingbytim.com
1908934291392ab7a7db9bd8fb92c28c39cb5359
396396465f8623a655d92f3b5061c04e482c35aa
/Devices/SevenSegment.h
0896d2a451c803ba1402e18f2001a28db9819ca1
[ "Apache-2.0", "MIT" ]
permissive
Jaminima/MBed-Experiments
c34a003078f8527aa827ca169702c7da483ef801
2633fe86e1d658c06db69473fb293abcc6644728
refs/heads/main
2023-03-03T14:50:10.188138
2021-02-13T18:08:15
2021-02-13T18:08:15
331,298,332
0
0
null
null
null
null
UTF-8
C++
false
false
1,288
h
#pragma once #include "lib/uopmsb/uop_msb_2_0_0.h" using namespace uop_msb_200; #ifndef _segDefined #define _segDefined DigitalOut _LED_DIGIT_OE(LED_DIGIT_OE_PIN,0); BusOut _ledData(LED_D0_PIN, LED_D1_PIN, LED_D2_PIN, LED_D3_PIN, LED_D4_PIN, LED_D5_PIN, LED_D6_PIN, LED_D7_PIN); DigitalOut _LED_D1_LE(LED_D1_LE_PIN,0); DigitalOut _LED_D2_LE(LED_D2_LE_PIN,0); #endif class SevenSegment{ private: //DP C B A D G E F char _numLayouts[10] { 0b01111011, 0b01100000, 0b00111110, 0b01111100, 0b01100101, 0b01011101, 0b01011111, 0b01110000, 0b01111111, 0b01110101 }; public: void SetNumber(unsigned int i){ SetSegmentNum((i/10)%10, false); SetSegmentNum(i%10, true); } void SetTarget(bool target){ if (!target){ _LED_D1_LE = 1; wait_us(1); _LED_D1_LE = 0; wait_us(1); } else{ _LED_D2_LE = 1; wait_us(1); _LED_D2_LE = 0; wait_us(1); } } void SetSegmentNum(unsigned int i, bool targetPin){ _ledData = _numLayouts[i]; SetTarget(targetPin); } void SetSegment(char pinState, bool targetPin){ SetTarget(targetPin); _ledData = pinState; } };
[ "oscar.william.davies@outlook.com" ]
oscar.william.davies@outlook.com
e592e9eac96d4ec85f64440e4f2b3405e0e816ee
2949634ea909390ffcff891cd0864276d4c97263
/game/fbEngine/fbEngine/_Object/_Component/_Physics/CharacterExtrude.cpp
74c986473a53e237cd4978f5a800dd39cf13aeae
[]
no_license
kbc15gc/game
ebe8a13454178fe6b8d673c6da001d173325aa1b
d2fc9d1bfa720899239ca5bc9b81891e126941b8
refs/heads/master
2021-01-23T05:29:57.106396
2018-02-09T07:21:00
2018-02-09T07:21:00
86,294,968
0
1
null
null
null
null
SHIFT_JIS
C++
false
false
6,172
cpp
#include "fbstdafx.h" #include "_Object\_Component\_Physics\CharacterExtrude.h" #include "CharacterController.h" void CharacterExtrude::Init(const vector<RigidBody*>& collisions, int attribute) { _collisions.clear(); _halfSize.clear(); // 押し出したい属性を設定。 _attribute = attribute; SubAttribute(static_cast<int>(fbCollisionAttributeE::CHARACTER_GHOST)); _collisions = collisions; for (auto coll : _collisions) { btVector3 localScaling(1.0f, 1.0f, 1.0f); // Transformのスケール値。 localScaling = coll->GetShape()->GetBody()->getLocalScaling(); Vector3 halfSize = coll->GetShape()->GetHalfSize(); halfSize.x *= localScaling.getX(); halfSize.y *= localScaling.getY(); halfSize.z *= localScaling.getZ(); _halfSize.push_back(halfSize); } } void CharacterExtrude::Extrude(const Vector3& speed) { // スウィープテスト。 { //Vector3 startPos; //Vector3 endPos; //startPos = endPos = _collision->GetOffsetPos(); // 移動前のコリジョンの座標(原点)を設定。 //startPos -= speed; // スタート位置を移動前の位置に設定。 ////XZ平面での衝突検出と衝突解決を行う。 //{ // Vector3 NowToNext(endPos - startPos); // NowToNext.y = 0.0f; // if (NowToNext.Length() <= FLT_EPSILON) { // //XZ平面で動きがないので調べる必要なし。 // //FLT_EPSILONは1より大きい、最小の値との差分を表す定数。 // //とても小さい値のことです。 // } // else { // //レイを作成。 // btTransform start, end; // start.setIdentity(); // end.setIdentity(); // //始点はカプセルコライダーの中心。 // // ※平らな地面に引っかからないよう少し上げる。 // start.setOrigin(btVector3(startPos.x, startPos.y, startPos.z)); // start.setRotation(btQuaternion(transform->GetRotation().x, transform->GetRotation().y, transform->GetRotation().z, transform->GetRotation().w)); // // ※平らな地面に引っかからないよう少し上げる。 // end.setOrigin(btVector3(endPos.x, endPos.y, endPos.z)); // end.setRotation(btQuaternion(transform->GetRotation().x, transform->GetRotation().y, transform->GetRotation().z, transform->GetRotation().w)); // fbPhysicsCallback::SweepResultExtrude callback(Vector3(start.getOrigin().x(), start.getOrigin().y(), start.getOrigin().z()), _collision->GetCollisionObj(), _attributeXZ); // //衝突検出。 // PhysicsWorld::Instance()->ConvexSweepTest(static_cast<const btConvexShape*>(_collision->GetShape()->GetBody()), start, end, callback); // if (callback.isHit) { // //当たった。 // vector<fbPhysicsCallback::SweepResultExtrude::hitInfo*> infoArray = callback.GetInfoArray(); // for (int idx = 0; idx < infoArray.size(); idx++) { // Vector3 vT0, vT1; // // 衝突したポイントを求める。 // Vector3 hitPos = startPos + ((endPos - startPos) * infoArray[idx]->hitFraction); // //めり込みが発生している移動ベクトルを求める。 // Vector3 vMerikomi; // vMerikomi = endPos - hitPos; // vMerikomi.y = 0.0f; // //押し出す方向を求める。 // Vector3 hitNormalXZ = infoArray[idx]->hitPos - hitPos; // hitNormalXZ.y = 0.0f; // hitNormalXZ.Normalize(); // Vector3 dir = endPos - startPos; // dir.y = 0.0f; // dir.Normalize(); // float dot = hitNormalXZ.Dot(dir); // if (hitNormalXZ.Dot(dir) < 0.0f) { // // 当たったコリジョンが進行方向の反対側にいる。 // // 進む方向に押し出すので無視。 // return; // } // //めり込みベクトルを法線に射影する。 // float fT0 = hitNormalXZ.Dot(vMerikomi); // //押し返すベクトルを求める。 // //押し返すベクトルは法線に射影されためり込みベクトル。 // Vector3 vOffset; // vOffset = hitNormalXZ * fT0; // vOffset = vOffset / Time::DeltaTime(); // // 衝突したコリジョンに力を加える。 // CCharacterController* CC = infoArray[idx]->collision->gameObject->GetComponent<CCharacterController>(); // if (CC) { // CC->AddOutsideSpeed(vOffset); // } // } // } // } //} } // コンタクトテスト。 { for (auto coll : _collisions) { fbPhysicsCallback::AllHitsContactResultCallback callback; vector<unique_ptr<fbPhysicsCallback::AllHitsContactResultCallback::hitInfo>> infoArray; //衝突検出。 INSTANCE(PhysicsWorld)->AllHitsContactTest(coll, &infoArray, &callback, _attribute); for (int idx = 0; idx < static_cast<int>(infoArray.size()); idx++) { Vector3 vT0, vT1; //めり込みが発生している移動ベクトルを求める。 Vector3 vMerikomi; vMerikomi = infoArray[idx]->hitPosB - infoArray[idx]->hitPosA; vMerikomi.y = 0.0f; //押し出す方向を求める。 Vector3 hitNormalXZ = infoArray[idx]->hitPosA - coll->GetOffsetPos(); hitNormalXZ.y = 0.0f; hitNormalXZ.Normalize(); //めり込みベクトルを法線に射影する。 float fT0 = hitNormalXZ.Dot(vMerikomi); if (fabsf(fT0) <= 0.0f) { // Y成分のみのめり込みだった。 // 例外処理。 // とりあえず前方向に押し出す。 hitNormalXZ = transform->GetForward(); // 押し出す量を算出。 Vector3 pos1 = coll->GetOffsetPos(); Vector3 pos2 = infoArray[idx]->collision->GetOffsetPos(); pos1.y = 0.0f; pos2.y = 0.0f; Vector3 work = pos2 - pos1; float fMerikomi = hitNormalXZ.Dot(work); fT0 = -(coll->GetShape()->GetHalfSize().z - fMerikomi); } //押し返すベクトルを求める。 //押し返すベクトルは法線に射影されためり込みベクトル。 Vector3 vOffset; vOffset = hitNormalXZ * -fT0; vOffset = vOffset / Time::DeltaTime(); // 衝突したコリジョンに力を加える。 CCharacterController* CC = infoArray[idx]->collision->gameObject->GetComponent<CCharacterController>(); if (CC) { CC->AddOutsideSpeed(vOffset); } } } } }
[ "a" ]
a
7ae460afaf89a4b6ac9b37aa9959ed0d85157d23
cc7661edca4d5fb2fc226bd6605a533f50a2fb63
/mscorlib/CallConvFastcall.h
dfbf933bae05d631cc5fe7bbfda50c78b0421a6b
[ "MIT" ]
permissive
g91/Rust-C-SDK
698e5b573285d5793250099b59f5453c3c4599eb
d1cce1133191263cba5583c43a8d42d8d65c21b0
refs/heads/master
2020-03-27T05:49:01.747456
2017-08-23T09:07:35
2017-08-23T09:07:35
146,053,940
1
0
null
2018-08-25T01:13:44
2018-08-25T01:13:44
null
UTF-8
C++
false
false
166
h
#pragma once namespace System { namespace Runtime { { namespace CompilerServices { class CallConvFastcall : public Object // 0x0 { public: }; // size = 0x0 }
[ "info@cvm-solutions.co.uk" ]
info@cvm-solutions.co.uk
33d929b6a2c84d2584faad9545e48be62923e6ec
37bf77c75be5e4a1e43ae67c195697b5a9c018c0
/src/dom/domattr.h
fc41c67c3e7dc194c6b29e727b4d12020e820979
[ "LicenseRef-scancode-other-permissive", "LicenseRef-scancode-unknown-license-reference" ]
permissive
mecctro/wasabi
dbaa656ad71f719fa7b227346dc892058212f96d
49d293042ce17b0d137b2e4c6fc82a52bdb05091
refs/heads/master
2020-12-29T01:11:56.251711
2013-09-01T20:08:51
2013-09-01T20:08:51
null
0
0
null
null
null
null
UTF-8
C++
false
false
918
h
#ifndef __DOMATTR_H #define __DOMATTR_H #include "domnode.h" class DOMAttr: public DOMNode { public: DOMAttr(const char *tagName, DOMElement * owner=NULL); DOMAttr(const char *namespaceURI, const char *qualifiedName, DOMElement * owner=NULL); virtual ~DOMAttr(); public: //Returns the name of this attribute. const char *getName(); // The Element node this attribute is attached to or null if this attribute is not in use. DOMElement *getOwnerElement(); void setOwnerElement(DOMElement *owner); // If this attribute was explicitly given a value in the original document, this is true; otherwise, it is false. bool getSpecified(); // On retrieval, the value of the attribute is returned as a string. const char *getValue(); // On retrieval, the value of the attribute is returned as a string. void setValue(const char *value); private: DOMElement * m_ownerElement; }; #endif
[ "killallthehumans@gmail.com" ]
killallthehumans@gmail.com
cce0f14aa980ed175f75fd8ec8b4eebde496f525
d156c0479aad4fec06719e8c3639b3489eb1515c
/LegendOfWorldProject/Classes/ChooseHeroScene.h
a4e123f8e36cbaf8d8a86cb96999029f5bac2e07
[]
no_license
aismann/cocos2dx-legend-of-world
4c698b0990b9207f4c9a4e61cba44b5fb463d581
9433d92f306b156f10ed57d6e585333db1c3848e
refs/heads/master
2022-12-01T12:39:31.357893
2020-08-18T12:54:59
2020-08-18T12:54:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
86
h
//CHOOSE 1 IN 2 HERO //LOAD TO PLAYGAME SCENE #pragma once class ChooseHeroScene{ };
[ "quynh.fullstackdev@gmail.com" ]
quynh.fullstackdev@gmail.com
5c9cdc4105af29d604146792e2e2e65fea043285
7ad9ad02067b6f8e75b8ec64092e41fd9fc73ec3
/Source/TelegramAntiRevoke/Logger.cpp
d5e8e5560ff85db9f71c775cc7923f691526e955
[ "MIT", "BSD-3-Clause" ]
permissive
DonQuichotte123/Telegram-Anti-Revoke
9e27d939f144c33163a40d743ee9936e08b75d6b
e333158e0b18dd51c52dd41f67b2a70af48afc30
refs/heads/master
2022-03-06T11:21:37.723914
2019-10-20T09:32:18
2019-10-20T09:32:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,169
cpp
// An easy log manager #include "Header.h" LoggerManager::LoggerManager() { this->hMutex = CreateMutex(NULL, FALSE, NULL); this->File.open("ArLog.txt", ios::app); TraceInfo(""); TraceInfo("Running. Version: [" + string(AR_VERSION) + "]"); } LoggerManager::~LoggerManager() { Close(); } void LoggerManager::TraceText(string Content) { if (!this->File.is_open()) { return; } SYSTEMTIME LocalTime; CHAR TimeBuffer[64] = { 0 }; GetLocalTime(&LocalTime); sprintf_s(TimeBuffer, "[%d.%02d.%02d-%02d:%02d:%02d] ", LocalTime.wYear, LocalTime.wMonth, LocalTime.wDay, LocalTime.wHour, LocalTime.wMinute, LocalTime.wSecond); Content = Text::SubReplaceA(Content, "\n", "[\\n]"); SafeMutex(this->hMutex, [&]() { this->File << string(TimeBuffer) + Content << endl; }); } void LoggerManager::TraceInfo(string Content) { TraceText("[Info] " + Content); } void LoggerManager::TraceWarn(string Content) { TraceText("[Warn] " + Content); #ifdef _DEBUG MessageBoxA(NULL, Content.c_str(), "Anti-Revoke Plugin", MB_ICONWARNING); #endif } void LoggerManager::TraceError(string Content, BOOLEAN NeedReport) { TraceText("[Error] " + Content); Close(); /* An error has occurred! [error content] Please help us fix this problem. Click "OK" to go to GitHub to submit a question. Thank you very much. */ string Msg; if (NeedReport) { Msg = "An error has occurred!\n" "Please help us fix this problem.\n" "\n" + Content + "\n" "\n" "Click \"OK\" to go to GitHub to submit a question.\n" "Thank you very much."; } else { Msg = Content; } MessageBoxA(NULL, Msg.c_str(), "Anti-Revoke Plugin", MB_ICONERROR); if (NeedReport) { // Pop up Github issues tracker // 这里用 ShellExecute 会导致阻塞卡死,猜测可能和跨模块 malloc/free 一样,不同的 Runtime 库导致的。 // 所以用 system 代替了,反正效果一样。 // ShellExecute(NULL, L"open", L"https://github.com/SpriteOvO/Telegram-Anti-Revoke/issues", NULL, NULL, SW_SHOWNORMAL); system("start " AR_URL_ISSUES); } FORCE_EXIT(); } void LoggerManager::Close() { if (this->File.is_open()) { this->File.close(); } }
[ "666xuebi@users.noreply.github.com" ]
666xuebi@users.noreply.github.com
1d6e780acb7e88bee4bdfce7b27a1a590896baa9
ea1a899e58ad79f14207bd4d5e0490a482bebdfa
/src/Capture.cpp
82ed2e216d21b33a0749fb995c80987ec5b65ce6
[]
no_license
kevinskyba/CppND-Capstone
81fff1eb8ab1106f6deeb410db895b618cbdd152
badb59e273419f98005de7edb7bfa99436fac4c4
refs/heads/master
2020-12-03T15:53:55.526101
2020-01-07T20:50:19
2020-01-07T20:50:19
231,379,512
0
0
null
null
null
null
UTF-8
C++
false
false
2,892
cpp
#include <iostream> #include <boost/move/move.hpp> #include <pcl/point_cloud.h> #include <pcl/point_types.h> #include <pcl/segmentation/sac_segmentation.h> #include <pcl/visualization/pcl_visualizer.h> #include "cxxopts.h" #include "KinectDepthCapture.h" #include "FrameUtils.h" /** * This function is returning a lambda function. This has to be like this because PCL is not able to take more than one * parameter in the keyboardEvent function. Using this technique of a "function generator" we can artifically add more * parameters to this function. * @param outFolder The folder to save images to */ std::function<void(const pcl::visualization::KeyboardEvent&)> keyboardEventOccurred(const std::string& outFolder, KinectDepthCapture& kinectDepthCapture) { return [=, &kinectDepthCapture, &outFolder](const pcl::visualization::KeyboardEvent &event){ if (event.getKeySym() == "t" && event.keyDown()) kinectDepthCapture.save(outFolder); }; } int main(int argc, char* argv[]) { cxxopts::Options options(argv[0], ""); std::string outFolder; try { options.add_options() ("o,out", "Output folder", cxxopts::value<std::string>()->default_value("./")); cxxopts::ParseResult argResult = options.parse(argc, argv); outFolder = argResult["out"].as<std::string>(); } catch (const cxxopts::OptionException& e) { std::cout << "error parsing options: " << e.what() << std::endl; exit(1); } KinectDepthCapture capture; boost::shared_ptr<pcl::PointCloud<pcl::PointXYZRGB>> cloud = boost::make_shared<pcl::PointCloud<pcl::PointXYZRGB>>(); // Fix wrong sensor orientation of kinect Eigen::Affine3f transform = Eigen::Affine3f::Identity(); transform.rotate(Eigen::AngleAxisf(M_PI /*180°*/, Eigen::Vector3f::UnitY())); cloud->sensor_orientation_ = transform.rotation(); boost::shared_ptr<pcl::visualization::PCLVisualizer> viewer = boost::make_shared<pcl::visualization::PCLVisualizer>("CppND-Capstone"); // Register keyboard callback typedef void callback (const pcl::visualization::KeyboardEvent&); viewer->registerKeyboardCallback(keyboardEventOccurred(outFolder, capture)); try { capture.start(); } catch(const std::exception &e) { std::cout << "Error while starting: " << e.what() << std::endl; return -1; } std::shared_ptr<DepthFrame> frame; while(true) { if (!capture.available()) { return 0; } frame = capture.getFrame(); cloud->clear(); cloud->is_dense = true; FrameUtils::AddFrameToPLC(frame.get(), cloud); if(!viewer->updatePointCloud(cloud, "cloud")) { viewer->addPointCloud(cloud, "cloud"); viewer->addText("Press 't' to capture a frame", 25, 25); } viewer->spinOnce(); } }
[ "kevinskyba@live.de" ]
kevinskyba@live.de
0e571877b925fba7304841df766ea47b533c0c24
4489d58d17c20a960f8c628e1a3fb4f2ebcc60d5
/src/trap.cpp
7f0584e495df95a9711b5b8ddebdbd93fac24f55
[ "Apache-2.0" ]
permissive
chenmudu/async-profiler
be6d82e20f5a74a43d53907671f36750dc0cfc5d
5b616e74aced5363b7a8c20dbfd62981bde8aee6
refs/heads/develop
2023-06-30T23:42:56.343357
2021-08-03T16:11:53
2021-08-03T16:36:51
392,386,564
1
0
Apache-2.0
2021-08-03T16:45:05
2021-08-03T16:45:04
null
UTF-8
C++
false
false
2,679
cpp
/* * Copyright 2020 Andrei Pangin * * 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 <sys/mman.h> #include "trap.h" #include "os.h" #include "stackFrame.h" uintptr_t Trap::_page_start[TRAP_COUNT] = {0}; struct sigaction Trap::_jvm_handler = {NULL}; void Trap::signalHandler(int signo, siginfo_t* siginfo, void* ucontext) { // Ignore access violations on our traps uintptr_t pc = StackFrame(ucontext).pc(); for (int i = 0; i < TRAP_COUNT; i++) { if (pc - _page_start[i] < OS::page_size) { return; } } // Otherwise, delegate to the JVM signal handler _jvm_handler.sa_sigaction(signo, siginfo, ucontext); } void Trap::assign(const void* address) { _entry = (uintptr_t)address; if (_entry == 0) { return; } #if defined(__arm__) || defined(__thumb__) _breakpoint_insn = (_entry & 1) ? BREAKPOINT_THUMB : BREAKPOINT; _entry ^= 1; #endif _saved_insn = *(instruction_t*)_entry; _page_start[_id] = _entry & -OS::page_size; if (WX_MEMORY && _jvm_handler.sa_sigaction == NULL) { // While we are patching the code in RW mode, another thread may attempt to execute it sigaction(SIGBUS, NULL, &_jvm_handler); struct sigaction sa = _jvm_handler; sa.sa_sigaction = signalHandler; sigaction(SIGBUS, &sa, NULL); } } // Two allocation traps are always enabled/disabled together. // If both traps belong to the same page, protect/unprotect it just once. void Trap::pair(Trap& second) { if (_page_start[_id] == _page_start[second._id]) { _protect = false; second._unprotect = false; } } // Patch instruction at the entry point bool Trap::patch(instruction_t insn) { if (_unprotect) { int prot = WX_MEMORY ? (PROT_READ | PROT_WRITE) : (PROT_READ | PROT_WRITE | PROT_EXEC); if (mprotect((void*)(_entry & -OS::page_size), OS::page_size, prot) != 0) { return false; } } *(instruction_t*)_entry = insn; flushCache(_entry); if (_protect) { mprotect((void*)(_entry & -OS::page_size), OS::page_size, PROT_READ | PROT_EXEC); } return true; }
[ "andrey.pangin@corp.mail.ru" ]
andrey.pangin@corp.mail.ru
a3f70f6284b824e813fd828fa2b3a4958fa6c55e
55d560fe6678a3edc9232ef14de8fafd7b7ece12
/libs/local_function/test/same_line.cpp
690461a561adbfbd52cb031c9c3d8b5843a28fd1
[ "BSL-1.0" ]
permissive
stardog-union/boost
ec3abeeef1b45389228df031bf25b470d3d123c5
caa4a540db892caa92e5346e0094c63dea51cbfb
refs/heads/stardog/develop
2021-06-25T02:15:10.697006
2020-11-17T19:50:35
2020-11-17T19:50:35
148,681,713
0
0
BSL-1.0
2020-11-17T19:50:36
2018-09-13T18:38:54
C++
UTF-8
C++
false
false
1,774
cpp
// Copyright (C) 2009-2012 Lorenzo Caminiti // Distributed under the Boost Software License, Version 1.0 // (see accompanying file LICENSE_1_0.txt or a copy at // http://www.boost.org/LICENSE_1_0.txt) // Home at http://www.boost.org/libs/local_function #include <boost/config.hpp> #ifdef BOOST_NO_CXX11_VARIADIC_MACROS # error "variadic macros required" #else #include <boost/local_function.hpp> #include <boost/preprocessor/cat.hpp> #include <boost/detail/lightweight_test.hpp> #include <iostream> //[same_line #define LOCAL_INC_DEC(offset) \ int BOOST_LOCAL_FUNCTION_ID(BOOST_PP_CAT(inc, __LINE__), /* unique ID */ \ const bind offset, const int x) { \ return x + offset; \ } BOOST_LOCAL_FUNCTION_NAME(inc) \ \ int BOOST_LOCAL_FUNCTION_ID(BOOST_PP_CAT(dec, __LINE__), \ const bind offset, const int x) { \ return x - offset; \ } BOOST_LOCAL_FUNCTION_NAME(dec) #define LOCAL_INC_DEC_TPL(offset) \ T BOOST_LOCAL_FUNCTION_ID_TPL(BOOST_PP_CAT(inc, __LINE__), \ const bind offset, const T x) { \ return x + offset; \ } BOOST_LOCAL_FUNCTION_NAME_TPL(inc) \ \ T BOOST_LOCAL_FUNCTION_ID_TPL(BOOST_PP_CAT(dec, __LINE__), \ const bind offset, const T x) { \ return x - offset; \ } BOOST_LOCAL_FUNCTION_NAME_TPL(dec) template<typename T> void f(T& delta) { LOCAL_INC_DEC_TPL(delta) // Multiple local functions on same line. BOOST_TEST(dec(inc(123)) == 123); } int main(void) { int delta = 10; LOCAL_INC_DEC(delta) // Multiple local functions on same line. BOOST_TEST(dec(inc(123)) == 123); f(delta); return boost::report_errors(); } //] #endif // VARIADIC_MACROS
[ "james.pack@stardog.com" ]
james.pack@stardog.com
3b4e6ca924a73e5c7ffbef26bcc2f3bdcf6341d5
c8aec63db6c1611939213616b314fb296168e50b
/Marlin_E3DV6_mod/Marlin/Marlin.ino
4ce39af302e423c4dc3558637152b54c186c95e7
[]
no_license
melvinchng/Flsun_All_Metal
849f49fa2c97613373897fbcd9634871fff6e0f6
874dda1bce4b7e2a3c793bb449bbaeeba7ac3f62
refs/heads/master
2020-12-03T01:41:04.358437
2017-07-15T14:05:47
2017-07-15T14:05:47
95,827,636
0
0
null
null
null
null
UTF-8
C++
false
false
1,821
ino
/* -*- c /* Reprap firmware based on Sprinter and grbl. Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ /* This firmware is a mashup between Sprinter and grbl. (https://github.com/kliment/Sprinter) (https://github.com/simen/grbl/tree) It has preliminary support for Matthew Roberts advance algorithm http://reprap.org/pipermail/reprap-dev/2011-May/003323.html */ /* All the implementation is done in *.cpp files to get better compatibility with avr-gcc without the Arduino IDE */ /* Use this file to help the Arduino IDE find which Arduino libraries are needed and to keep documentation on GCode */ #include "Configuration.h" #include "pins.h" #ifdef ULTRA_LCD #if defined(LCD_I2C_TYPE_PCF8575) #include <Wire.h> #include <LiquidCrystal_I2C.h> #elif defined(LCD_I2C_TYPE_MCP23017) || defined(LCD_I2C_TYPE_MCP23008) #include <Wire.h> #include <LiquidTWI2.h> #elif defined(DOGLCD) #include <U8glib.h> // library for graphics LCD by Oli Kraus (https://code.google.com/p/u8glib/) #else #include <LiquidCrystal.h> // library for character LCD #endif #endif #if defined(DIGIPOTSS_PIN) && DIGIPOTSS_PIN > -1 #include <SPI.h> #endif
[ "melvinnnnnnnnnnnnnnnnnnnnnnnnn@gmail.com" ]
melvinnnnnnnnnnnnnnnnnnnnnnnnn@gmail.com
4bae7b404cfd2f95910fcd02a232a7e63156f0bb
e9afd1ae6cfdfadc103b36350248b4d11ac4de80
/ConsoleApplication4/stdafx.h
38fb9f1d7c02482a0ad530a0704a01165f2c6cb6
[]
no_license
Tronf92/ConsoleApplication4
330d2d40b6d0725d60aa911eb839a1c30c413003
a84351a648028b445f52dfd162b4c32945d19502
refs/heads/master
2021-01-17T22:14:24.082657
2017-03-07T11:30:18
2017-03-07T11:30:18
84,191,620
0
0
null
null
null
null
UTF-8
C++
false
false
345
h
// stdafx.h : include file for standard system include files, // or project specific include files that are used frequently, but // are changed infrequently // #pragma once #include "targetver.h" #include <iostream> #include <stdio.h> #include <tchar.h> using namespace std; // TODO: reference additional headers your program requires here
[ "ady.niko51@gmail.com" ]
ady.niko51@gmail.com
6147b2ac86772ffac32db3575f66bc65c50f38be
189f52bf5454e724d5acc97a2fa000ea54d0e102
/ras/floatingObject/4.7/meshPhiCN_0
8af89f983f3aae3fda20f949d79ccb16fe582d13
[]
no_license
pyotr777/openfoam_samples
5399721dd2ef57545ffce68215d09c49ebfe749d
79c70ac5795decff086dd16637d2d063fde6ed0d
refs/heads/master
2021-01-12T16:52:18.126648
2016-11-05T08:30:29
2016-11-05T08:30:29
71,456,654
0
0
null
null
null
null
UTF-8
C++
false
false
481,030
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v1606+ | | \\ / A nd | Web: www.OpenFOAM.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class surfaceScalarField; location "4.7"; object meshPhiCN_0; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 3 -1 0 0 0 0]; internalField nonuniform List<scalar> 33146 ( 0 0 0 0 0 0 0 0 0 7.37670526887e-09 -1.22453409367e-08 -4.52329467001e-08 8.15015743076e-08 -1.48778669109e-07 -4.62257040705e-07 1.67218050493e-07 -4.20295721141e-07 -1.10098586509e-06 2.03093337685e-07 -6.28874534211e-07 -1.30589572651e-06 2.03176396056e-07 -6.88604529231e-07 -1.03479199539e-06 2.0325939975e-07 -6.85428734342e-07 -6.16707534817e-07 2.03342348881e-07 -6.82252939457e-07 -1.98623074248e-07 2.03425243228e-07 -6.79077144577e-07 2.19461386323e-07 2.03508083079e-07 -6.75901349693e-07 6.37545846891e-07 2.03590868188e-07 -6.72725554807e-07 1.05563030746e-06 1.67666500895e-07 -6.11368002906e-07 1.32496948936e-06 8.16336414916e-08 -4.10817214407e-07 1.11392916247e-06 7.37799369694e-09 -1.47233098743e-07 4.6695338814e-07 0 -1.22315609682e-08 4.56331481608e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.99715870208e-08 -1.00356843906e-07 -4.30127109119e-07 2.92730104519e-07 -5.95154685519e-07 -2.23941984576e-06 6.39142074675e-07 -1.50664310436e-06 -5.10663342367e-06 9.34613999229e-07 -2.43046620883e-06 -7.16034239794e-06 1.04924045586e-06 -2.97274280578e-06 -7.10806569367e-06 1.0508495033e-06 -3.07715292148e-06 -5.40231491209e-06 1.05245354255e-06 -3.01827763455e-06 -3.2229488489e-06 1.05405257355e-06 -2.95940234764e-06 -1.04358278571e-06 1.05564659636e-06 -2.90052706072e-06 1.13578327747e-06 1.05723561106e-06 -2.8416517738e-06 3.31514934066e-06 1.05881961746e-06 -2.78277648688e-06 5.49451540384e-06 9.44989966494e-07 -2.60883700038e-06 7.19582925244e-06 6.45725708533e-07 -2.12933923636e-06 7.231469237e-06 2.94715621403e-07 -1.3637574739e-06 5.15045686888e-06 6.00715227422e-08 -5.6668113703e-07 2.25690687127e-06 0 -9.9258100929e-08 4.33310675345e-07 0 0 0 0 0 0 0 0 5.99644384211e-08 -1.00447882454e-07 -4.91801683143e-07 4.42566771887e-07 -7.77365717336e-07 -3.69482819054e-06 1.12893680446e-06 -2.30039121955e-06 -1.02532517853e-05 1.8449182189e-06 -4.24100090788e-06 -1.67303998411e-05 2.36674609289e-06 -5.92076748441e-06 -1.96525622594e-05 2.56130997086e-06 -6.76281249509e-06 -1.80552768842e-05 2.56962929002e-06 -6.79040082207e-06 -1.34545957291e-05 2.57789090596e-06 -6.53151617977e-06 -8.0373502748e-06 2.58609481861e-06 -6.27263153745e-06 -2.62010482047e-06 2.59424102802e-06 -6.01374689514e-06 2.79714063388e-06 2.60232953419e-06 -5.75486225282e-06 8.21438608822e-06 2.61036033702e-06 -5.49597761051e-06 1.36316315426e-05 2.42287034515e-06 -5.10416226273e-06 1.82280705218e-05 1.88787788306e-06 -4.36100233363e-06 1.9807468484e-05 1.14901762542e-06 -3.24725463372e-06 1.68491096079e-05 4.46846023111e-07 -1.92799640989e-06 1.0321944735e-05 6.0078650656e-08 -7.20339100158e-07 3.71893064234e-06 0 -9.91670826027e-08 4.9498430817e-07 0 0 7.37638309867e-09 -1.22494469011e-08 -6.79494908839e-08 3.45171054621e-07 -5.08723638258e-07 -2.91904379681e-06 1.22779253112e-06 -2.13232408094e-06 -1.18326017966e-05 2.3357930027e-06 -4.84034872496e-06 -2.3860590216e-05 3.34268708138e-06 -7.87849032661e-06 -3.28748752493e-05 4.03001743247e-06 -1.02405678159e-05 -3.54696087346e-05 4.28685717413e-06 -1.12201730464e-05 -3.1387731755e-05 4.31035635088e-06 -1.10041001569e-05 -2.31711832795e-05 4.33359540779e-06 -1.03894306813e-05 -1.38628559933e-05 4.35657434494e-06 -9.77476120573e-06 -4.55452870722e-06 4.3792931623e-06 -9.16009173012e-06 4.75379857891e-06 4.40175185983e-06 -8.54542225451e-06 1.4062125865e-05 4.42395043753e-06 -7.93075277891e-06 2.33704531512e-05 4.19180421505e-06 -7.20546150811e-06 3.15867727474e-05 3.47945597555e-06 -6.21029967231e-06 3.56645029632e-05 2.41390819173e-06 -4.9345961211e-06 3.30516885633e-05 1.25303832155e-06 -3.41062245724e-06 2.39923821734e-05 3.47902226833e-07 -1.76039191909e-06 1.18999294019e-05 7.37831576744e-09 -4.7799849902e-07 2.93628918397e-06 -1.22274551289e-08 6.83496493476e-08 8.88283702599e-08 -1.37121431923e-07 -8.20493459241e-07 8.44506367719e-07 -1.16031331497e-06 -7.84918422841e-06 2.13922066246e-06 -3.74476770319e-06 -2.2929187281e-05 3.55088820317e-06 -7.56118490007e-06 -3.90807215186e-05 4.7368485699e-06 -1.15004881991e-05 -4.9430800929e-05 5.50676199373e-06 -1.42505380977e-05 -5.08785919941e-05 5.79720745371e-06 -1.51235203892e-05 -4.4008120694e-05 5.8420432858e-06 -1.4566314949e-05 -3.22938034418e-05 5.88622674907e-06 -1.35678793454e-05 -1.93474702933e-05 5.92975784357e-06 -1.25694437417e-05 -6.40113714487e-06 5.97263656928e-06 -1.15710081381e-05 6.54519600358e-06 6.01486292613e-06 -1.05725725345e-05 1.9491529152e-05 6.05643691414e-06 -9.57413693087e-06 3.24378623005e-05 5.81973406765e-06 -8.50444865227e-06 4.41574726822e-05 5.01941395027e-06 -7.2960340205e-06 5.10450200201e-05 3.73218413194e-06 -5.98220165951e-06 4.96145655322e-05 2.21178666195e-06 -4.49162762868e-06 3.92507521093e-05 8.57303272346e-07 -2.72243035087e-06 2.30419021792e-05 8.90666352621e-08 -1.01960033944e-06 7.89114674214e-06 -1.34414377272e-07 8.2517486912e-07 2.48725004824e-07 -2.85548428734e-07 -2.30330021362e-06 1.33228213188e-06 -1.75506356474e-06 -1.34859916315e-05 2.90483193197e-06 -5.04703424523e-06 -3.31327995856e-05 4.49622032304e-06 -9.6311893509e-06 -5.19621444328e-05 5.75673556879e-06 -1.4079111241e-05 -6.27284428111e-05 6.52473036525e-06 -1.68490541429e-05 -6.26348616828e-05 6.80788648578e-06 -1.74072363895e-05 -5.3221482308e-05 6.87183108456e-06 -1.653980392e-05 -3.88370656607e-05 6.93470320439e-06 -1.53016810695e-05 -2.3289463709e-05 6.99650284531e-06 -1.40635582189e-05 -7.74186175733e-06 7.05723000733e-06 -1.28254353683e-05 7.80574019436e-06 7.11688469044e-06 -1.15873125178e-05 2.3353342146e-05 7.17546689454e-06 -1.03491896672e-05 3.89009440977e-05 6.97851076515e-06 -9.07131195242e-06 5.32939026092e-05 6.18819827162e-06 -7.74583183624e-06 6.27397828913e-05 4.79398709621e-06 -6.44370807288e-06 6.2882534647e-05 3.03864239203e-06 -5.05685025714e-06 5.21396562266e-05 1.36226280924e-06 -3.33098369836e-06 3.32748114957e-05 2.49941628398e-07 -1.45664536242e-06 1.3552342842e-05 -2.74048389662e-07 2.31601831358e-06 3.70942214352e-07 -3.48857546952e-07 -3.44172310364e-06 1.62789762103e-06 -1.99327969028e-06 -1.71932357732e-05 3.34274631144e-06 -5.54576347199e-06 -3.93019312223e-05 5.01753798814e-06 -1.0398733676e-05 -5.95354291716e-05 6.29210375117e-06 -1.49888720132e-05 -7.03067076127e-05 7.01295793361e-06 -1.76724046223e-05 -6.89295459002e-05 7.25724153775e-06 -1.80100987505e-05 -5.77596827654e-05 7.33090848434e-06 -1.69990273297e-05 -4.19188016228e-05 7.4032718703e-06 -1.57026415301e-05 -2.51478921876e-05 7.47433169562e-06 -1.44062557307e-05 -8.3769827524e-06 7.54408796021e-06 -1.31098699312e-05 8.3939266828e-06 7.61254066422e-06 -1.18134841317e-05 2.5164836118e-05 7.67968980753e-06 -1.05170983322e-05 4.19357455532e-05 7.54497383768e-06 -9.19371535416e-06 5.77849844824e-05 6.8164492563e-06 -7.84852852598e-06 6.89913388738e-05 5.39370483469e-06 -6.55906981981e-06 7.04328960095e-05 3.52088309596e-06 -5.22029180144e-06 5.97082934411e-05 1.67202011859e-06 -3.53096670871e-06 3.94564350328e-05 3.73374150317e-07 -1.61806177415e-06 1.72738717963e-05 -3.31839878181e-07 3.4602514786e-06 4.07264286897e-07 -3.48857546966e-07 -3.78124913376e-06 1.70996617582e-06 -1.99327969028e-06 -1.82594376021e-05 3.46336923433e-06 -5.54576347199e-06 -4.10558173561e-05 5.1605858936e-06 -1.0398733676e-05 -6.17031755428e-05 6.43452134684e-06 -1.49888720133e-05 -7.24530606767e-05 7.12786860265e-06 -1.76724046223e-05 -7.05939630136e-05 7.34643136241e-06 -1.80100987505e-05 -5.87982815823e-05 7.42209686373e-06 -1.69990273297e-05 -4.25531715302e-05 7.49641042769e-06 -1.57026415302e-05 -2.55305320486e-05 7.56937205435e-06 -1.44062557307e-05 -8.50789256711e-06 7.64098174362e-06 -1.31098699312e-05 8.51474691443e-06 7.71123949557e-06 -1.18134841317e-05 2.5537386396e-05 7.7801453102e-06 -1.05170983322e-05 4.25600258775e-05 7.67898839783e-06 -9.19371535416e-06 5.8812677501e-05 6.98486195274e-06 -7.84852852596e-06 7.06441693559e-05 5.55988393325e-06 -6.55906981981e-06 7.25705908623e-05 3.6550115532e-06 -5.22029180146e-06 6.18737041417e-05 1.75863054722e-06 -3.53096670871e-06 4.12131142596e-05 4.10168860581e-07 -1.61806177415e-06 1.83438744846e-05 -3.31839878196e-07 3.80142970034e-06 4.07264286897e-07 -3.4885754696e-07 -3.78124913375e-06 1.70996617582e-06 -1.99327969029e-06 -1.82594376021e-05 3.46336923433e-06 -5.54576347199e-06 -4.10558173561e-05 5.16058589361e-06 -1.0398733676e-05 -6.17031755428e-05 6.43452134684e-06 -1.49888720132e-05 -7.24530606767e-05 7.12786860266e-06 -1.76724046223e-05 -7.05939630136e-05 7.3464313624e-06 -1.80100987505e-05 -5.87982815823e-05 7.42209686373e-06 -1.69990273297e-05 -4.25531715302e-05 7.4964104277e-06 -1.57026415302e-05 -2.55305320487e-05 7.56937205436e-06 -1.44062557307e-05 -8.50789256711e-06 7.6409817436e-06 -1.31098699312e-05 8.51474691443e-06 7.71123949559e-06 -1.18134841317e-05 2.5537386396e-05 7.78014531018e-06 -1.05170983322e-05 4.25600258775e-05 7.67898839781e-06 -9.19371535416e-06 5.8812677501e-05 6.98486195273e-06 -7.84852852597e-06 7.06441693559e-05 5.55988393327e-06 -6.55906981981e-06 7.25705908623e-05 3.65501155318e-06 -5.22029180144e-06 6.18737041417e-05 1.75863054717e-06 -3.53096670872e-06 4.12131142596e-05 4.10168860558e-07 -1.61806177417e-06 1.83438744846e-05 -3.31839878201e-07 3.80142970034e-06 4.07264286896e-07 -3.48857546964e-07 -3.78124913376e-06 1.70996617582e-06 -1.9932796903e-06 -1.82594376021e-05 3.46336923432e-06 -5.545763472e-06 -4.10558173561e-05 5.16058589361e-06 -1.0398733676e-05 -6.17031755428e-05 6.43452134685e-06 -1.49888720132e-05 -7.24530606767e-05 7.12786860264e-06 -1.76724046223e-05 -7.05939630136e-05 7.34643136242e-06 -1.80100987505e-05 -5.87982815823e-05 7.42209686373e-06 -1.69990273297e-05 -4.25531715302e-05 7.49641042769e-06 -1.57026415302e-05 -2.55305320487e-05 7.56937205435e-06 -1.44062557307e-05 -8.50789256711e-06 7.6409817436e-06 -1.31098699312e-05 8.51474691443e-06 7.71123949556e-06 -1.18134841317e-05 2.5537386396e-05 7.7801453102e-06 -1.05170983322e-05 4.25600258775e-05 7.67898839783e-06 -9.19371535417e-06 5.8812677501e-05 6.98486195274e-06 -7.84852852593e-06 7.06441693559e-05 5.55988393326e-06 -6.55906981978e-06 7.25705908623e-05 3.65501155316e-06 -5.22029180144e-06 6.18737041417e-05 1.7586305472e-06 -3.53096670871e-06 4.12131142596e-05 4.10168860562e-07 -1.61806177418e-06 1.83438744846e-05 -3.31839878221e-07 3.80142970034e-06 4.07264286894e-07 -3.4885754696e-07 -3.78124913375e-06 1.70996617582e-06 -1.99327969032e-06 -1.82594376021e-05 3.46336923433e-06 -5.54576347198e-06 -4.10558173561e-05 5.16058589361e-06 -1.0398733676e-05 -6.17031755428e-05 6.43452134685e-06 -1.49888720133e-05 -7.24530606767e-05 7.12786860265e-06 -1.76724046223e-05 -7.05939630136e-05 7.34643136242e-06 -1.80100987506e-05 -5.87982815823e-05 7.42209686374e-06 -1.69990273297e-05 -4.25531715302e-05 7.49641042769e-06 -1.57026415302e-05 -2.55305320487e-05 7.56937205433e-06 -1.44062557308e-05 -8.50789256711e-06 7.64098174364e-06 -1.31098699312e-05 8.51474691443e-06 7.71123949558e-06 -1.18134841318e-05 2.5537386396e-05 7.78014531019e-06 -1.05170983323e-05 4.25600258775e-05 7.67898839784e-06 -9.19371535417e-06 5.8812677501e-05 6.98486195275e-06 -7.84852852596e-06 7.06441693559e-05 5.55988393325e-06 -6.55906981981e-06 7.25705908623e-05 3.65501155317e-06 -5.22029180144e-06 6.18737041417e-05 1.75863054716e-06 -3.53096670871e-06 4.12131142596e-05 4.10168860598e-07 -1.61806177416e-06 1.83438744846e-05 -3.31839878213e-07 3.80142970034e-06 3.71600115023e-07 -2.85548428728e-07 -3.44788514995e-06 1.63453668761e-06 -1.75506356471e-06 -1.72756999498e-05 3.36328119539e-06 -5.04703424523e-06 -3.96138545812e-05 5.05493262263e-06 -9.63118935088e-06 -6.01554330268e-05 6.33925745345e-06 -1.4079111241e-05 -7.11092808339e-05 7.05502324837e-06 -1.68490541429e-05 -6.96421029786e-05 7.29037096288e-06 -1.74072363895e-05 -5.82287902629e-05 7.36441178079e-06 -1.653980392e-05 -4.22103983032e-05 7.43714285424e-06 -1.53016810695e-05 -2.53229567863e-05 7.50856418324e-06 -1.40635582189e-05 -8.4355152695e-06 7.57867576774e-06 -1.28254353683e-05 8.45192624735e-06 7.64747760779e-06 -1.15873125178e-05 2.53393677642e-05 7.71496970331e-06 -1.03491896672e-05 4.2226809281e-05 7.59060178532e-06 -9.07131195242e-06 5.82535915869e-05 6.86799397632e-06 -7.74583183622e-06 6.97038507726e-05 5.43423347676e-06 -6.44370807285e-06 7.12363925372e-05 3.54264111841e-06 -5.05685025714e-06 6.03298108586e-05 1.67886018428e-06 -3.33098369835e-06 3.97694632529e-05 3.74036858069e-07 -1.45664536242e-06 1.7356689668e-05 -2.74048389642e-07 3.46644349599e-06 2.49775852734e-07 -1.37121431877e-07 -2.31312149575e-06 1.34684790831e-06 -1.16031331491e-06 -1.36565088024e-05 2.95471985385e-06 -3.74476770317e-06 -3.38598917885e-05 4.59333947709e-06 -7.5611849001e-06 -5.35113721918e-05 5.88978405073e-06 -1.15004881991e-05 -6.48776426768e-05 6.66623520708e-06 -1.42505380977e-05 -6.47866213284e-05 6.94529469082e-06 -1.51235203891e-05 -5.49304036624e-05 7.01067334449e-06 -1.4566314949e-05 -4.00359127797e-05 7.07495719393e-06 -1.35678793454e-05 -2.40089140089e-05 7.13814623905e-06 -1.25694437417e-05 -7.98191523807e-06 7.20024047996e-06 -1.15710081381e-05 8.04508353273e-06 7.26123991657e-06 -1.05725725345e-05 2.40720823035e-05 7.32114454895e-06 -9.57413693087e-06 4.00990810743e-05 7.1309937207e-06 -8.50444865229e-06 5.50025370099e-05 6.33237301172e-06 -7.29603402047e-06 6.48929771262e-05 4.89827908102e-06 -5.98220165951e-06 6.50355572697e-05 3.09108926211e-06 -4.49162762868e-06 5.36934159625e-05 1.37719210529e-06 -2.72243035084e-06 3.40047168061e-05 2.50998048461e-07 -1.01960033942e-06 1.37236260343e-05 -1.34414377264e-07 2.32588855613e-06 8.91502334568e-08 -1.22494468768e-08 -8.23493061541e-07 8.5627878033e-07 -5.08723638236e-07 -7.97011686574e-06 2.19073578773e-06 -2.13232408098e-06 -2.36169898671e-05 3.66528758989e-06 -4.84034872498e-06 -4.07793217811e-05 4.91230562445e-06 -7.87849032669e-06 -5.20608010768e-05 5.71928127511e-06 -1.0240567816e-05 -5.38335747561e-05 6.02134388747e-06 -1.12201730464e-05 -4.66187397332e-05 6.06809680022e-06 -1.1004100157e-05 -3.42105273937e-05 6.11417215864e-06 -1.03894306813e-05 -2.04966368037e-05 6.1595699627e-06 -9.77476120574e-06 -6.78274621376e-06 6.20429021247e-06 -9.16009173014e-06 6.93114437621e-06 6.24833290778e-06 -8.54542225453e-06 2.06450349662e-05 6.29169804884e-06 -7.93075277891e-06 3.43589255561e-05 6.04566394733e-06 -7.20546150813e-06 4.67730193041e-05 5.20648251736e-06 -6.21029967237e-06 5.40066411487e-05 3.85304910296e-06 -4.93459612115e-06 5.22524736399e-05 2.26522664438e-06 -3.41062245727e-06 4.09558367904e-05 8.69269294884e-07 -1.76039191907e-06 2.37327667004e-05 8.93893565232e-08 -4.77998498993e-07 8.01266767203e-06 -1.22274550999e-08 8.28189912811e-07 7.37902644332e-09 0 -6.79740612435e-08 3.49046854089e-07 -1.00447882493e-07 -2.95227901611e-06 1.25747629654e-06 -7.77365717385e-07 -1.21718371509e-05 2.41887324774e-06 -2.30039121954e-06 -2.49674934805e-05 3.4891418855e-06 -4.24100090786e-06 -3.48824345115e-05 4.22501658929e-06 -5.9207674844e-06 -3.79813022983e-05 4.50026529671e-06 -6.76281249503e-06 -3.37547326095e-05 4.52504329428e-06 -6.79040082206e-06 -2.49443701952e-05 4.54954928277e-06 -6.53151617979e-06 -1.49244613532e-05 4.57378326219e-06 -6.27263153746e-06 -4.9045525112e-06 4.59774523249e-06 -6.01374689513e-06 5.1153563308e-06 4.62143519369e-06 -5.75486225283e-06 1.51352651728e-05 4.64485314575e-06 -5.49597761049e-06 2.51551740148e-05 4.39539676701e-06 -5.10416226272e-06 3.39653711597e-05 3.63247259167e-06 -4.36100233359e-06 3.81874623342e-05 2.5000132381e-06 -3.24725463376e-06 3.5068571658e-05 1.28337713067e-06 -1.92799640988e-06 2.51047569103e-05 3.51809416611e-07 -7.20339100209e-07 1.2240917218e-05 7.38095977342e-09 -9.91670826246e-08 2.96970226463e-06 0 6.83743499251e-08 0 0 0 6.01399316924e-08 0 -4.93253901415e-07 4.49744347261e-07 -1.00356843945e-07 -3.75755364746e-06 1.16194679969e-06 -5.95154685546e-07 -1.06212794885e-05 1.91789956001e-06 -1.50664310441e-06 -1.76174340112e-05 2.4756311753e-06 -2.43046620886e-06 -2.09416206588e-05 2.68470865003e-06 -2.97274280584e-06 -1.93584433286e-05 2.69345615153e-06 -3.07715292146e-06 -1.44490781014e-05 2.7021438813e-06 -3.01827763458e-06 -8.6318118678e-06 2.71077183924e-06 -2.95940234763e-06 -2.81454563416e-06 2.71934002547e-06 -2.90052706072e-06 3.00272059948e-06 2.7278484399e-06 -2.84165177381e-06 8.81998683312e-06 2.73629708251e-06 -2.78277648689e-06 1.46372530668e-05 2.53452390733e-06 -2.60883700042e-06 1.95419422657e-05 1.96266935928e-06 -2.12933923638e-06 2.11054233154e-05 1.18264313365e-06 -1.36375747389e-06 1.77417699131e-05 4.54093514649e-07 -5.66681136995e-07 1.06922049053e-05 6.02544676689e-08 -9.9258100983e-08 3.7820269204e-06 0 0 4.96444999823e-07 0 0 0 0 0 0 0 0 6.01471005151e-08 0 -4.31397270528e-07 2.96778855949e-07 -1.22453409928e-08 -2.27164767505e-06 6.54653833043e-07 -1.4877866911e-07 -5.25863901197e-06 9.63708561604e-07 -4.2029572116e-07 -7.46385603633e-06 1.08440167114e-06 -6.28874534134e-07 -7.45838541799e-06 1.08606561713e-06 -6.88604529228e-07 -5.67870915192e-06 1.0877244911e-06 -6.85428734345e-07 -3.38794404086e-06 1.0893782931e-06 -6.82252939451e-07 -1.0971789298e-06 1.09102702304e-06 -6.79077144588e-07 1.19358618126e-06 1.09267068106e-06 -6.75901349677e-07 3.48435129231e-06 1.09430926704e-06 -6.72725554803e-07 5.77511640337e-06 9.74413418768e-07 -6.11368002892e-07 7.55002255305e-06 6.61397487794e-07 -4.10817214363e-07 7.53770356199e-06 2.98791055602e-07 -1.47233098712e-07 5.30364598242e-06 6.0247319439e-08 -1.22315609747e-08 2.28936310828e-06 0 0 4.34589310132e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.37934872508e-09 0 -4.52493052411e-08 8.18262235477e-08 0 -4.64116346382e-07 1.68593954953e-07 0 -1.1114619683e-06 2.05128029299e-07 0 -1.32394325526e-06 2.05211889969e-07 0 -1.05052825945e-06 2.05295696014e-07 0 -6.26092209117e-07 2.05379447403e-07 0 -2.01656158778e-07 2.05463144122e-07 0 2.22779891563e-07 2.05546786231e-07 0 6.47215941899e-07 2.05630373739e-07 0 1.07165199224e-06 1.69045971441e-07 0 1.3432556509e-06 8.1958800024e-08 0 1.12451735295e-06 7.38063759436e-09 0 4.68829807862e-07 0 0 4.56496369124e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.77723970753e-08 -4.40265281479e-08 -1.17314577477e-07 1.44140492636e-07 -3.73340819563e-07 -7.0933895817e-07 2.83641670055e-07 -9.73133714336e-07 -1.47518547077e-06 3.41258646478e-07 -1.41829813827e-06 -1.66974948106e-06 3.41335938494e-07 -1.54802975662e-06 -1.30860730865e-06 3.41413230043e-07 -1.54610705249e-06 -7.79946560468e-07 3.41490521101e-07 -1.54418434835e-06 -2.51285812295e-07 3.41567811608e-07 -1.54226164421e-06 2.77374935882e-07 3.41645101551e-07 -1.54033894007e-06 8.06035684065e-07 3.41722391108e-07 -1.53841623593e-06 1.33469643223e-06 2.84073537489e-07 -1.40850462025e-06 1.6938684122e-06 1.44289642188e-07 -9.67911672861e-07 1.49232467331e-06 1.77777726017e-08 -3.7210197709e-07 7.1644035551e-07 0 -4.39499408402e-08 1.18348720111e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.08472836197e-07 -2.49365579412e-07 -6.41955116584e-07 4.90634384294e-07 -1.3242895886e-06 -2.91743714256e-06 1.04607194014e-06 -3.15235334843e-06 -6.211302633e-06 1.51141786232e-06 -4.93796542249e-06 -8.43701885703e-06 1.68929119476e-06 -6.01484173902e-06 -8.25616180593e-06 1.68997835573e-06 -6.29984148802e-06 -6.25162251157e-06 1.69066530042e-06 -6.28287286103e-06 -3.72994985874e-06 1.69135202883e-06 -6.26590423403e-06 -1.20827720593e-06 1.69203854084e-06 -6.24893560704e-06 1.3133954469e-06 1.69272483672e-06 -6.23196698004e-06 3.83506809973e-06 1.69341091621e-06 -6.21499835305e-06 6.35674075254e-06 1.51621364869e-06 -5.92210861103e-06 8.35663374901e-06 1.04986027237e-06 -4.8723929225e-06 8.51992436409e-06 4.92260055595e-07 -3.1208300143e-06 6.26431582345e-06 1.08596514511e-07 -1.31581942946e-06 2.94014247218e-06 0 -2.48385871521e-07 6.46676738263e-07 0 0 0 0 0 0 0 0 1.08464001114e-07 -2.49477623016e-07 -7.34001252324e-07 7.36321362388e-07 -1.68104797385e-06 -4.68632147491e-06 1.8257328138e-06 -4.58240138145e-06 -1.20960243775e-05 2.94376944454e-06 -8.00653948306e-06 -1.9021644556e-05 3.74565092768e-06 -1.09310093586e-05 -2.19439476547e-05 4.0342750577e-06 -1.25899255182e-05 -2.00041866187e-05 4.03555710035e-06 -1.30036914429e-05 -1.48776626692e-05 4.03683845461e-06 -1.29522286038e-05 -8.88914656959e-06 4.03811912052e-06 -1.29007657646e-05 -2.90063046994e-06 4.03939909792e-06 -1.28493029255e-05 3.08788562972e-06 4.04067838704e-06 -1.27978400864e-05 9.07640172938e-06 4.04195698769e-06 -1.27463772473e-05 1.5064917829e-05 3.75509412034e-06 -1.23003592021e-05 2.01876451511e-05 2.95278050754e-06 -1.07039593481e-05 2.21112119456e-05 1.83197770647e-06 -7.87064369552e-06 1.91541550802e-05 7.38795102396e-07 -4.52666070619e-06 1.21767646506e-05 1.08605347722e-07 -1.66830328791e-06 4.71692670565e-06 0 -2.48273869434e-07 7.38720789634e-07 0 0 1.77710529929e-08 -4.40500567019e-08 -1.76230542203e-07 5.82073236457e-07 -1.11918428437e-06 -3.79933946937e-06 1.98979072367e-06 -4.22476778228e-06 -1.3968150381e-05 3.73060157099e-06 -8.79884701748e-06 -2.68906214745e-05 5.29091186695e-06 -1.35602221519e-05 -3.62133454391e-05 6.33041864018e-06 -1.73408729512e-05 -3.86032374964e-05 6.69090401121e-06 -1.93852783491e-05 -3.39702269363e-05 6.69209808945e-06 -1.98645922118e-05 -2.50417618818e-05 6.69329147443e-06 -1.97715716684e-05 -1.4986243884e-05 6.69448416621e-06 -1.96785511251e-05 -4.93072588626e-06 6.69567616472e-06 -1.95855305817e-05 5.12479211152e-06 6.69686746996e-06 -1.94925100383e-05 1.51803101093e-05 6.69805808198e-06 -1.9399489495e-05 2.52358281071e-05 6.3395875058e-06 -1.88492539316e-05 3.41653017704e-05 5.30074760384e-06 -1.68882212472e-05 3.87993262715e-05 3.73892802371e-06 -1.32521926589e-05 3.63991155013e-05 1.99471168357e-06 -8.64449579166e-06 2.70364967424e-05 5.83481188192e-07 -4.17515399635e-06 1.40477518632e-05 1.77791162562e-08 -1.11117289908e-06 3.8217919509e-06 -4.39264136903e-08 1.77264396277e-07 1.61903927211e-07 -3.29763863787e-07 -1.24503630311e-06 1.38651415772e-06 -2.40567081664e-06 -9.56524538513e-06 3.44111421978e-06 -6.928275206e-06 -2.61026638103e-05 5.66243542961e-06 -1.27605488725e-05 -4.30748624949e-05 7.49932284605e-06 -1.8389229977e-05 -5.35352835744e-05 8.64722602352e-06 -2.25445870136e-05 -5.45153179163e-05 9.02755022195e-06 -2.46282979934e-05 -4.68800659341e-05 9.02801156828e-06 -2.50733899895e-05 -3.43425771355e-05 9.02847281674e-06 -2.49621350802e-05 -2.05814810687e-05 9.02893396728e-06 -2.48508801709e-05 -6.82038500184e-06 9.02939502003e-06 -2.47396252616e-05 6.94071106497e-06 9.02985597474e-06 -2.46283703523e-05 2.07018071318e-05 9.03031683163e-06 -2.4517115443e-05 3.44629031986e-05 8.65115597419e-06 -2.39619506051e-05 4.70070655588e-05 7.50453503301e-06 -2.19237825662e-05 5.46661582262e-05 5.66796353371e-06 -1.79108387406e-05 5.37161395852e-05 3.44535065294e-06 -1.24860472557e-05 4.32547872724e-05 1.38846488195e-06 -6.82257333385e-06 2.62301943075e-05 1.62115683624e-07 -2.38273619466e-06 9.61664846096e-06 -3.27704891021e-07 1.25210660198e-06 4.28973222044e-07 -6.44142205277e-07 -3.07468039334e-06 2.16972212383e-06 -3.50123108884e-06 -1.59354261103e-05 4.67316428501e-06 -8.92573888825e-06 -3.70668302779e-05 7.19255041776e-06 -1.54922313588e-05 -5.66140408901e-05 9.14676472532e-06 -2.14847910738e-05 -6.72319754037e-05 1.02671672439e-05 -2.55014464479e-05 -6.62779152652e-05 1.06007618222e-05 -2.71799876585e-05 -5.57858721937e-05 1.06005785132e-05 -2.74390503632e-05 -4.05516993852e-05 1.06003954066e-05 -2.73681968214e-05 -2.43238510828e-05 1.06002125026e-05 -2.72973432796e-05 -8.09600278035e-06 1.0600029801e-05 -2.72264897378e-05 8.13184552209e-06 1.0599847302e-05 -2.7155636196e-05 2.43596938245e-05 1.05996650053e-05 -2.70847826542e-05 4.0587542127e-05 1.02658454267e-05 -2.6672199654e-05 5.58295745934e-05 9.14602997133e-06 -2.48838022797e-05 6.63564056568e-05 7.19292485882e-06 -2.09127750215e-05 6.73714666378e-05 4.67427585511e-06 -1.51258680547e-05 5.67946992565e-05 2.17068355613e-06 -8.76950248008e-06 3.72232145957e-05 4.29244667789e-07 -3.46209653794e-06 1.60143542451e-05 -6.39453974115e-07 3.0915539872e-06 6.2929058047e-07 -7.74503236953e-07 -4.40172881503e-06 2.6486593596e-06 -3.923531393e-06 -2.00464977108e-05 5.39306613093e-06 -9.65464224429e-06 -4.36585659559e-05 8.06134276527e-06 -1.64532270335e-05 -6.45317674317e-05 1.00353958645e-05 -2.25092227965e-05 -7.49127457695e-05 1.10454278775e-05 -2.62981972413e-05 -7.21860366841e-05 1.12769274926e-05 -2.75783135909e-05 -5.94748435004e-05 1.12767157841e-05 -2.76629063858e-05 -4.28035292342e-05 1.12765049269e-05 -2.76429841409e-05 -2.56818566354e-05 1.12762949212e-05 -2.7623061896e-05 -8.56018403657e-06 1.12760857668e-05 -2.76031396511e-05 8.56148856222e-06 1.1275877464e-05 -2.75832174061e-05 2.5683161161e-05 1.12756700125e-05 -2.75632951612e-05 4.28048337598e-05 1.10426151357e-05 -2.72966856157e-05 5.94799750946e-05 1.00314693621e-05 -2.57589168313e-05 7.22207704916e-05 8.05814901111e-06 -2.19181384535e-05 7.50181355695e-05 5.39152147896e-06 -1.60542328176e-05 6.4703070668e-05 2.64840719924e-06 -9.47833268185e-06 4.38263720049e-05 6.29377006389e-07 -3.87737351776e-06 2.01410792841e-05 -7.68744024961e-07 4.42527702902e-06 6.88732030167e-07 -7.74503236934e-07 -4.79111351246e-06 2.78363189212e-06 -3.92353139299e-06 -2.12235347434e-05 5.5970285554e-06 -9.65464224428e-06 -4.55343753049e-05 8.30860567544e-06 -1.64532270335e-05 -6.67977832936e-05 1.02792245297e-05 -2.25092227966e-05 -7.7056713916e-05 1.12196644056e-05 -2.62981972413e-05 -7.35708688344e-05 1.13832434208e-05 -2.75783135909e-05 -5.99390743546e-05 1.13831395312e-05 -2.76629063858e-05 -4.28823374422e-05 1.13830361265e-05 -2.76429841409e-05 -2.57294024653e-05 1.13829332065e-05 -2.7623061896e-05 -8.57646748844e-06 1.13828307712e-05 -2.76031396511e-05 8.57646748843e-06 1.13827288207e-05 -2.75832174062e-05 2.57294024653e-05 1.1382627355e-05 -2.75632951612e-05 4.28823374422e-05 1.12170643651e-05 -2.72966856157e-05 5.99400626129e-05 1.02749141928e-05 -2.57589168314e-05 7.35959104644e-05 8.30485829596e-06 -2.19181384535e-05 7.71520999044e-05 5.59503713271e-06 -1.60542328177e-05 6.69654684227e-05 2.78316089484e-06 -9.47833268182e-06 4.57046412023e-05 6.88778036836e-07 -3.87737351777e-06 2.13222497591e-05 -7.68744024949e-07 4.81653072939e-06 6.88732030169e-07 -7.74503236948e-07 -4.79111351247e-06 2.78363189212e-06 -3.92353139299e-06 -2.12235347434e-05 5.5970285554e-06 -9.65464224427e-06 -4.55343753049e-05 8.30860567545e-06 -1.64532270335e-05 -6.67977832936e-05 1.02792245297e-05 -2.25092227965e-05 -7.7056713916e-05 1.12196644056e-05 -2.62981972412e-05 -7.35708688344e-05 1.13832434207e-05 -2.75783135909e-05 -5.99390743546e-05 1.13831395312e-05 -2.76629063858e-05 -4.28823374422e-05 1.13830361265e-05 -2.76429841409e-05 -2.57294024653e-05 1.13829332065e-05 -2.7623061896e-05 -8.57646748843e-06 1.13828307712e-05 -2.76031396511e-05 8.57646748843e-06 1.13827288207e-05 -2.75832174061e-05 2.57294024653e-05 1.1382627355e-05 -2.75632951612e-05 4.28823374422e-05 1.12170643651e-05 -2.72966856157e-05 5.99400626129e-05 1.02749141928e-05 -2.57589168313e-05 7.35959104644e-05 8.30485829591e-06 -2.19181384535e-05 7.71520999044e-05 5.59503713274e-06 -1.60542328176e-05 6.69654684227e-05 2.78316089484e-06 -9.47833268184e-06 4.57046412023e-05 6.88778036856e-07 -3.87737351778e-06 2.1322249759e-05 -7.68744024954e-07 4.81653072939e-06 6.88732030169e-07 -7.74503236936e-07 -4.79111351247e-06 2.78363189212e-06 -3.92353139303e-06 -2.12235347434e-05 5.59702855541e-06 -9.65464224432e-06 -4.55343753049e-05 8.30860567545e-06 -1.64532270335e-05 -6.67977832936e-05 1.02792245297e-05 -2.25092227965e-05 -7.7056713916e-05 1.12196644056e-05 -2.62981972413e-05 -7.35708688344e-05 1.13832434208e-05 -2.75783135909e-05 -5.99390743546e-05 1.13831395312e-05 -2.76629063858e-05 -4.28823374422e-05 1.13830361265e-05 -2.76429841409e-05 -2.57294024653e-05 1.13829332065e-05 -2.7623061896e-05 -8.57646748843e-06 1.13828307712e-05 -2.76031396511e-05 8.57646748843e-06 1.13827288207e-05 -2.75832174062e-05 2.57294024653e-05 1.1382627355e-05 -2.75632951612e-05 4.28823374422e-05 1.12170643651e-05 -2.72966856157e-05 5.99400626129e-05 1.02749141928e-05 -2.57589168314e-05 7.35959104644e-05 8.30485829595e-06 -2.19181384534e-05 7.71520999044e-05 5.59503713274e-06 -1.60542328177e-05 6.69654684227e-05 2.78316089489e-06 -9.47833268187e-06 4.57046412023e-05 6.88778036862e-07 -3.87737351779e-06 2.13222497591e-05 -7.68744024946e-07 4.81653072939e-06 6.88732030168e-07 -7.74503236998e-07 -4.79111351246e-06 2.78363189213e-06 -3.92353139306e-06 -2.12235347434e-05 5.5970285554e-06 -9.65464224433e-06 -4.55343753049e-05 8.30860567545e-06 -1.64532270335e-05 -6.67977832936e-05 1.02792245297e-05 -2.25092227966e-05 -7.7056713916e-05 1.12196644056e-05 -2.62981972413e-05 -7.35708688344e-05 1.13832434208e-05 -2.75783135909e-05 -5.99390743546e-05 1.13831395312e-05 -2.76629063859e-05 -4.28823374422e-05 1.13830361265e-05 -2.7642984141e-05 -2.57294024653e-05 1.13829332065e-05 -2.7623061896e-05 -8.57646748843e-06 1.13828307712e-05 -2.76031396511e-05 8.57646748844e-06 1.13827288207e-05 -2.75832174062e-05 2.57294024653e-05 1.1382627355e-05 -2.75632951613e-05 4.28823374422e-05 1.12170643651e-05 -2.72966856157e-05 5.99400626129e-05 1.02749141928e-05 -2.57589168313e-05 7.35959104644e-05 8.30485829593e-06 -2.19181384535e-05 7.71520999044e-05 5.59503713275e-06 -1.60542328177e-05 6.69654684227e-05 2.78316089485e-06 -9.47833268189e-06 4.57046412023e-05 6.88778036833e-07 -3.87737351785e-06 2.13222497591e-05 -7.68744024971e-07 4.8165307294e-06 6.31077888699e-07 -6.44142205276e-07 -4.41074491427e-06 2.66542873921e-06 -3.50123108883e-06 -2.01508746145e-05 5.44395090289e-06 -8.92573888826e-06 -4.40245199221e-05 8.15258531473e-06 -1.54922313588e-05 -6.52247120658e-05 1.01462422372e-05 -2.14847910739e-05 -7.57541434114e-05 1.11296796329e-05 -2.55014464479e-05 -7.27937628315e-05 1.13256340207e-05 -2.71799876585e-05 -5.96821304835e-05 1.13254179964e-05 -2.74390503632e-05 -4.28402429834e-05 1.13252028247e-05 -2.73681968215e-05 -2.57039008979e-05 1.13249885056e-05 -2.72973432796e-05 -8.56755881249e-06 1.13247750391e-05 -2.72264897378e-05 8.56878327295e-06 1.13245624253e-05 -2.7155636196e-05 2.57051253584e-05 1.13243506641e-05 -2.70847826542e-05 4.28414674438e-05 1.11268434581e-05 -2.6672199654e-05 5.96869813442e-05 1.01423450595e-05 -2.48838022797e-05 7.28282221619e-05 8.14943634324e-06 -2.09127750215e-05 7.58601739832e-05 5.44243381657e-06 -1.51258680547e-05 6.53975426885e-05 2.66518482787e-06 -8.76950248008e-06 4.41935980262e-05 6.31165034335e-07 -3.46209653796e-06 2.02459086018e-05 -6.39453974116e-07 4.43433686145e-06 4.31917954509e-07 -3.29763863788e-07 -3.09007068607e-06 2.2067387767e-06 -2.40567081662e-06 -1.61560173934e-05 4.79707469092e-06 -6.92827520602e-06 -3.79309553714e-05 7.4303451625e-06 -1.27605488726e-05 -5.83688128188e-05 9.46492610428e-06 -1.83892299771e-05 -6.95554598655e-05 1.05886518039e-05 -2.25445870136e-05 -6.84303684919e-05 1.08957039595e-05 -2.46282979934e-05 -5.73100989027e-05 1.08955231274e-05 -2.50733899895e-05 -4.15488541981e-05 1.08953424477e-05 -2.49621350802e-05 -2.49224117617e-05 1.08951619208e-05 -2.4850880171e-05 -8.29596932523e-06 1.08949815462e-05 -2.47396252616e-05 8.33047311122e-06 1.08948013243e-05 -2.46283703523e-05 2.49569155477e-05 1.0894621255e-05 -2.4517115443e-05 4.15833579841e-05 1.0587406913e-05 -2.39619506051e-05 5.73526713125e-05 9.46437076158e-06 -2.19237825662e-05 6.85092310691e-05 7.43090526449e-06 -1.79108387407e-05 6.9698197108e-05 4.79829206657e-06 -1.24860472557e-05 5.85542309676e-05 2.20773032215e-06 -6.82257333386e-06 3.80906416423e-05 4.32191496177e-07 -2.38273619464e-06 1.62359470114e-05 -3.27704891033e-07 3.1070207153e-06 1.62914940722e-07 -4.40500566596e-08 -1.25097973352e-06 1.41696577074e-06 -1.11918428437e-06 -9.7303933013e-06 3.56990256759e-06 -4.22476778234e-06 -2.69444713284e-05 5.94408503791e-06 -8.7988470175e-06 -4.50461052568e-05 7.92494273244e-06 -1.35602221519e-05 -5.64797090737e-05 9.15323334302e-06 -1.73408729513e-05 -5.77193974207e-05 9.55322846642e-06 -1.93852783492e-05 -4.96414500784e-05 9.55374020297e-06 -1.98645922118e-05 -3.63513407796e-05 9.55425185427e-06 -1.97715716684e-05 -2.1786218552e-05 9.55476342034e-06 -1.96785511251e-05 -7.22109632433e-06 9.55527490103e-06 -1.95855305818e-05 7.34402590327e-06 9.5557862965e-06 -1.94925100384e-05 2.19091481309e-05 9.55629760666e-06 -1.9399489495e-05 3.64742703585e-05 9.15757649333e-06 -1.88492539317e-05 4.97717455807e-05 7.9306277858e-06 -1.68882212473e-05 5.78757968258e-05 5.94999082769e-06 -1.3252192659e-05 5.66684204566e-05 3.57432379838e-06 -8.64449579163e-06 4.52332328554e-05 1.41895872074e-06 -4.17515399638e-06 2.70757361539e-05 1.63127845631e-07 -1.11117289905e-06 9.78260667729e-06 -4.39264136616e-08 1.25808051417e-06 1.7788572825e-08 0 -1.76395908084e-07 5.92624960917e-07 -2.49477623029e-07 -3.84990620492e-06 2.06526596808e-06 -1.68104797386e-06 -1.44089361051e-05 3.93715272456e-06 -4.58240138144e-06 -2.82268475569e-05 5.65019436534e-06 -8.00653948308e-06 -3.85455507892e-05 6.80347295461e-06 -1.09310093586e-05 -4.14543273483e-05 7.20433995492e-06 -1.25899255182e-05 -3.66241863275e-05 7.20562757325e-06 -1.30036914429e-05 -2.70229376064e-05 7.20691470586e-06 -1.29522286038e-05 -1.61727228517e-05 7.20820135261e-06 -1.29007657647e-05 -5.32250809702e-06 7.20948751357e-06 -1.28493029255e-05 5.52770665767e-06 7.21077318871e-06 -1.27978400865e-05 1.63779214124e-05 7.21205837807e-06 -1.27463772473e-05 2.72281361671e-05 6.81333715804e-06 -1.23003592021e-05 3.68306108187e-05 5.66068383056e-06 -1.07039593481e-05 4.16619791403e-05 3.94590691271e-06 -7.87064369554e-06 3.87415626496e-05 2.07034938842e-06 -4.5266607062e-06 2.83792018689e-05 5.9405381064e-07 -1.66830328795e-06 1.44908224134e-05 1.77966446599e-08 -2.48273869445e-07 3.87262995492e-06 0 1.77430635616e-07 0 0 0 1.09052281508e-07 0 -7.37240672811e-07 7.55502860663e-07 -2.49365579414e-07 -4.77937723468e-06 1.90976743687e-06 -1.32428958862e-06 -1.25759911994e-05 3.12594137578e-06 -3.15235334841e-06 -2.0110903858e-05 4.01451114389e-06 -4.93796542252e-06 -2.34807878234e-05 4.33721646168e-06 -6.01484173902e-06 -2.15377055509e-05 4.33857834637e-06 -6.299841488e-06 -1.60440206373e-05 4.33993972429e-06 -6.28287286102e-06 -9.58649551572e-06 4.34130059547e-06 -6.26590423403e-06 -3.12897039416e-06 4.34266095984e-06 -6.24893560703e-06 3.32855472739e-06 4.34402081754e-06 -6.23196698005e-06 9.78607984895e-06 4.34538016837e-06 -6.21499835308e-06 1.62436049705e-05 4.02451738545e-06 -5.92210861105e-06 2.17330882223e-05 3.1354086478e-06 -4.87239292248e-06 2.36582211715e-05 1.91624230968e-06 -3.1208300143e-06 2.02501698189e-05 7.580270917e-07 -1.31581942951e-06 1.26596310824e-05 1.09194292435e-07 -2.48385871513e-07 4.81053440614e-06 0 0 7.41979011188e-07 0 0 0 0 0 0 0 0 1.09061158029e-07 0 -6.44788434431e-07 5.01754848326e-07 -4.40265281154e-08 -2.96858696127e-06 1.08655213167e-06 -3.73340819543e-07 -6.42283618511e-06 1.58585516282e-06 -9.73133714293e-07 -8.83458033231e-06 1.77867401778e-06 -1.41829813831e-06 -8.70392059253e-06 1.77938892606e-06 -1.54802975666e-06 -6.60273370826e-06 1.78010365968e-06 -1.54610705252e-06 -3.93957020346e-06 1.78081821864e-06 -1.54418434837e-06 -1.27640669866e-06 1.78153260284e-06 -1.54226164427e-06 1.38675680615e-06 1.78224681244e-06 -1.54033894015e-06 4.04992031094e-06 1.78296084725e-06 -1.53841623594e-06 6.71308381575e-06 1.59083172071e-06 -1.40850462026e-06 8.80924351211e-06 1.09045231655e-06 -9.67911672719e-07 8.92099617667e-06 5.03408838256e-07 -3.72101976996e-07 6.47748499118e-06 1.09185417559e-07 -4.39499408564e-08 2.99165401438e-06 0 0 6.495288572e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.77899183447e-08 0 -1.17424675813e-07 1.45173585797e-07 0 -7.13449099873e-07 2.87626300551e-07 0 -1.49381324534e-06 3.47032566217e-07 0 -1.69931816237e-06 3.47110878913e-07 0 -1.33387320118e-06 3.47189191711e-07 0 -7.95015455607e-07 3.47267504725e-07 0 -2.56157710038e-07 3.47345817805e-07 0 2.82700035537e-07 3.47424131071e-07 0 8.21557781113e-07 3.47502444468e-07 0 1.36041552668e-06 2.88062973159e-07 0 1.7238232523e-06 1.45323633782e-07 0 1.51114926487e-06 1.77952996219e-08 0 7.20587886078e-07 0 0 1.18459691915e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.25154754565e-08 -7.2135102889e-08 -1.49111954446e-07 7.35757046386e-08 -4.79756257965e-07 -8.06683750114e-07 1.35904609488e-07 -1.16236624769e-06 -1.61316801578e-06 1.61084870834e-07 -1.65140193311e-06 -1.80163243471e-06 1.61185638548e-07 -1.79292139774e-06 -1.40746089229e-06 1.61286406398e-07 -1.79211306877e-06 -8.38852689271e-07 1.61387174499e-07 -1.79130473979e-06 -2.70244486267e-07 1.61487942723e-07 -1.79049641082e-06 2.98363716734e-07 1.6158871121e-07 -1.78968808185e-06 8.66971919727e-07 1.61689479863e-07 -1.78887975288e-06 1.43558012274e-06 1.36476755009e-07 -1.64739748232e-06 1.82769616411e-06 7.37853278592e-08 -1.16032779191e-06 1.63193320392e-06 1.25236343173e-08 -4.79260332001e-07 8.14762922273e-07 0 -7.20858980252e-08 1.50426427944e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.71060707185e-08 -3.17087094221e-07 -7.22547433306e-07 2.29801542069e-07 -1.53734559075e-06 -3.17050398299e-06 4.68538020843e-07 -3.50187695378e-06 -6.61192657224e-06 6.60962313695e-07 -5.38188204869e-06 -8.89044606592e-06 7.33487729741e-07 -6.50564331553e-06 -8.66087745419e-06 7.3425696712e-07 -6.80744951984e-06 -6.55034747503e-06 7.3502612321e-07 -6.80102200589e-06 -3.90808003852e-06 7.35795197935e-07 -6.79459449196e-06 -1.26581260202e-06 7.36564191262e-07 -6.78816697801e-06 1.37645483449e-06 7.37333103305e-07 -6.78173946407e-06 4.01872227098e-06 7.38101933919e-07 -6.77531195014e-06 6.66098970749e-06 6.66357541767e-07 -6.4714207506e-06 8.76677605898e-06 4.72876511857e-07 -5.35905254926e-06 8.97844167065e-06 2.31777898804e-07 -3.49161091187e-06 6.6689663014e-06 5.72839821398e-08 -1.53469118874e-06 3.19544959004e-06 0 -3.1671226996e-07 7.27882450511e-07 0 0 0 0 0 0 0 0 5.70933628893e-08 -3.17141460217e-07 -8.26150859045e-07 3.39681142817e-07 -1.91751004986e-06 -5.04936184132e-06 7.91782086154e-07 -5.00278358417e-06 -1.27509656522e-05 1.22930071592e-06 -8.5649560729e-06 -1.98213673796e-05 1.52919224781e-06 -1.15726201681e-05 -2.27370829912e-05 1.6349465922e-06 -1.32675790277e-05 -2.0676198508e-05 1.63635703251e-06 -1.37056508652e-05 -1.53676443633e-05 1.63776723746e-06 -1.36869137881e-05 -9.18211205504e-06 1.63917720701e-06 -1.36681767109e-05 -2.99657974685e-06 1.64058694101e-06 -1.36494396337e-05 3.18895256134e-06 1.64199643978e-06 -1.36307025566e-05 9.37448486954e-06 1.64340570308e-06 -1.36119654794e-05 1.55600171777e-05 1.53959620985e-06 -1.31638027454e-05 2.08649435001e-05 1.23925163934e-06 -1.14943599804e-05 2.2910494163e-05 7.98738644279e-07 -8.52086181404e-06 1.99606829298e-05 3.42541816311e-07 -4.98621351104e-06 1.28375010353e-05 5.7296690233e-08 -1.91387734313e-06 5.08290373958e-06 0 -3.16657968909e-07 8.31483241398e-07 0 0 1.25134357319e-08 -7.2152125526e-08 -2.23996781657e-07 2.75016548031e-07 -1.29240315612e-06 -4.12864113846e-06 8.61908461412e-07 -4.62167111194e-06 -1.47274780128e-05 1.53134769813e-06 -9.37739181821e-06 -2.79439693641e-05 2.08510829234e-06 -1.425091663e-05 -3.73610672856e-05 2.42956099806e-06 -1.80773312747e-05 -3.96727215743e-05 2.54490337681e-06 -2.01294791189e-05 -3.48477322775e-05 2.54625940751e-06 -2.06380426073e-05 -2.56762684865e-05 2.54761522397e-06 -2.06052972693e-05 -1.53670511977e-05 2.54897082615e-06 -2.05725519313e-05 -5.05783390881e-06 2.55032621392e-06 -2.05398065933e-05 5.25138338005e-06 2.55168138749e-06 -2.05070612554e-05 1.55606006689e-05 2.55303634681e-06 -2.04743159174e-05 2.58698179578e-05 2.43996502783e-06 -1.99414764543e-05 3.50428022181e-05 2.09619635381e-06 -1.79207545284e-05 3.9871311059e-05 1.54063891892e-06 -1.41483927614e-05 3.7552933436e-05 8.67366511794e-07 -9.33007928644e-06 2.80978666213e-05 2.76632778428e-07 -4.60807143674e-06 1.48133989389e-05 1.25256739886e-08 -1.2900755072e-06 4.15345747212e-06 -7.20688778665e-08 2.25310789445e-07 8.60926400614e-08 -4.0779761864e-07 -1.41139395056e-06 6.19291051265e-07 -2.68808469588e-06 -1.01885843298e-05 1.4304792747e-06 -7.43984118161e-06 -2.72111638132e-05 2.22227839751e-06 -1.3432627638e-05 -4.4448272329e-05 2.80816660668e-06 -1.91248190871e-05 -5.49297899157e-05 3.14065551119e-06 -2.32554613467e-05 -5.57340413453e-05 3.24527509791e-06 -2.52859346559e-05 -4.7829613983e-05 3.24591811333e-06 -2.574624951e-05 -3.50156882582e-05 3.24656105738e-06 -2.57100673026e-05 -2.09868426749e-05 3.24720393009e-06 -2.56738850952e-05 -6.95799709149e-06 3.24784673137e-06 -2.56377028878e-05 7.07084849187e-06 3.24848946123e-06 -2.56015206804e-05 2.10996940753e-05 3.24913211975e-06 -2.5565338473e-05 3.51285396586e-05 3.14603499351e-06 -2.50656223793e-05 4.79496819187e-05 2.81495283299e-06 -2.30446107473e-05 5.58811576589e-05 2.22902532321e-06 -1.89628679959e-05 5.51129421086e-05 1.43532591818e-06 -1.33453229801e-05 4.46360233512e-05 6.2141921283e-07 -7.41009570198e-06 2.73474732915e-05 8.63466369629e-08 -2.68206772226e-06 1.02448082728e-05 -4.06999910775e-07 1.41944928385e-06 2.10382285451e-07 -7.54709419527e-07 -3.35913771935e-06 9.4098651211e-07 -3.85191816161e-06 -1.68070814406e-05 1.88801609901e-06 -9.50192636532e-06 -3.84299806292e-05 2.72808875335e-06 -1.62033819279e-05 -5.82017016953e-05 3.29367207296e-06 -2.22014789705e-05 -6.87394736833e-05 3.58036206586e-06 -2.60693589825e-05 -6.74414335898e-05 3.66043655938e-06 -2.751861486e-05 -5.65268199365e-05 3.66045706224e-06 -2.76980142259e-05 -4.10053783615e-05 3.66047725001e-06 -2.76906794826e-05 -2.45974080907e-05 3.6604971226e-06 -2.76833447393e-05 -8.18943781997e-06 3.6605166801e-06 -2.76760099959e-05 8.21853245078e-06 3.66053592255e-06 -2.76686752526e-05 2.46265027215e-05 3.66055484976e-06 -2.76613405093e-05 4.10344729923e-05 3.58075496679e-06 -2.74177003547e-05 5.65629104186e-05 3.29492976978e-06 -2.5883029799e-05 6.75124572179e-05 2.73000120808e-06 -2.20090871546e-05 6.88770717793e-05 1.88982296707e-06 -1.6084236001e-05 5.83885649884e-05 9.42045095713e-07 -9.45673544694e-06 3.8596287922e-05 2.10636308929e-07 -3.84186424669e-06 1.68929439615e-05 -7.53201575765e-07 3.37775672514e-06 2.99777793165e-07 -8.96326540491e-07 -4.75035561117e-06 1.13304356345e-06 -4.29718122437e-06 -2.1054996335e-05 2.14605503511e-06 -1.02510839353e-05 -4.51630353108e-05 3.00068569184e-06 -1.71729296652e-05 -6.62287839399e-05 3.53701413676e-06 -2.32040945248e-05 -7.64285453523e-05 3.76914501512e-06 -2.67291180359e-05 -7.31056866272e-05 3.80636078055e-06 -2.77115366326e-05 -5.97759424493e-05 3.80634113735e-06 -2.77183233603e-05 -4.28823374422e-05 3.80632158019e-06 -2.77183233603e-05 -2.57294024653e-05 3.80630210899e-06 -2.77183233603e-05 -8.57646748843e-06 3.80628272365e-06 -2.77183233603e-05 8.57646748844e-06 3.80626342445e-06 -2.77183233603e-05 2.57294024653e-05 3.80624421113e-06 -2.77183233603e-05 4.28823374422e-05 3.7685109031e-06 -2.76864643939e-05 5.97780816737e-05 3.53550219741e-06 -2.66063552188e-05 7.31340371552e-05 2.99929957934e-06 -2.3007901636e-05 7.65297654607e-05 2.14528194312e-06 -1.70423368969e-05 6.64049495762e-05 1.13283472895e-06 -1.01995567794e-05 4.53411155275e-05 2.99783599932e-07 -4.28534085849e-06 2.1157641136e-05 -8.94592706555e-07 4.77612775009e-06 3.25908925103e-07 -8.9632654048e-07 -5.15672548961e-06 1.18653292609e-06 -4.29718122436e-06 -2.22697478256e-05 2.21805765689e-06 -1.02510839353e-05 -4.70797459702e-05 3.07687162723e-06 -1.71729296652e-05 -6.85253560224e-05 3.60170377944e-06 -2.32040945247e-05 -7.85585104721e-05 3.80332903478e-06 -2.67291180359e-05 -7.43055307131e-05 3.8117633282e-06 -2.77115366327e-05 -6.0035272419e-05 3.81176332816e-06 -2.77183233603e-05 3.81176332817e-06 -2.77183233603e-05 3.8117633282e-06 -2.77183233603e-05 3.81176332809e-06 -2.77183233603e-05 3.81176332822e-06 -2.77183233603e-05 3.8117633282e-06 -2.77183233603e-05 3.80301867892e-06 -2.76864643939e-05 6.0035272419e-05 3.59992726077e-06 -2.66063552187e-05 7.43258253526e-05 3.07502338156e-06 -2.3007901636e-05 7.86492762645e-05 2.21688082605e-06 -1.70423368969e-05 6.86975684948e-05 1.18610725104e-06 -1.01995567794e-05 4.72603956805e-05 3.25862364612e-07 -4.28534085849e-06 2.23768380152e-05 -8.94592706533e-07 5.18450889785e-06 3.25908925104e-07 -8.96326540497e-07 -5.15672548961e-06 1.18653292609e-06 -4.29718122435e-06 -2.22697478256e-05 2.21805765689e-06 -1.02510839354e-05 -4.70797459702e-05 3.07687162723e-06 -1.71729296652e-05 -6.85253560224e-05 3.60170377944e-06 -2.32040945248e-05 -7.85585104721e-05 3.80332903479e-06 -2.67291180359e-05 -7.43055307131e-05 3.81176332819e-06 -2.77115366326e-05 -6.0035272419e-05 3.81176332815e-06 -2.77183233603e-05 3.81176332817e-06 -2.77183233603e-05 3.81176332819e-06 -2.77183233603e-05 3.81176332808e-06 -2.77183233603e-05 3.81176332821e-06 -2.77183233603e-05 3.81176332819e-06 -2.77183233603e-05 3.80301867894e-06 -2.76864643939e-05 6.0035272419e-05 3.59992726081e-06 -2.66063552188e-05 7.43258253526e-05 3.07502338159e-06 -2.3007901636e-05 7.86492762645e-05 2.21688082609e-06 -1.70423368969e-05 6.86975684948e-05 1.18610725102e-06 -1.01995567794e-05 4.72603956805e-05 3.25862364597e-07 -4.28534085846e-06 2.23768380152e-05 -8.9459270655e-07 5.18450889785e-06 3.25908925105e-07 -8.96326540485e-07 -5.15672548961e-06 1.18653292609e-06 -4.29718122438e-06 -2.22697478256e-05 2.2180576569e-06 -1.02510839354e-05 -4.70797459702e-05 3.07687162723e-06 -1.71729296652e-05 -6.85253560224e-05 3.60170377944e-06 -2.32040945248e-05 -7.85585104721e-05 3.80332903479e-06 -2.67291180359e-05 -7.43055307131e-05 3.81176332818e-06 -2.77115366326e-05 -6.0035272419e-05 3.81176332815e-06 -2.77183233603e-05 3.81176332816e-06 -2.77183233603e-05 3.8117633282e-06 -2.77183233603e-05 3.8117633281e-06 -2.77183233603e-05 3.81176332823e-06 -2.77183233603e-05 3.81176332821e-06 -2.77183233603e-05 3.80301867895e-06 -2.76864643939e-05 6.0035272419e-05 3.59992726081e-06 -2.66063552188e-05 7.43258253526e-05 3.07502338157e-06 -2.3007901636e-05 7.86492762645e-05 2.21688082605e-06 -1.70423368969e-05 6.86975684948e-05 1.18610725106e-06 -1.01995567795e-05 4.72603956805e-05 3.25862364614e-07 -4.2853408585e-06 2.23768380152e-05 -8.94592706536e-07 5.18450889785e-06 3.25908925104e-07 -8.96326540528e-07 -5.15672548962e-06 1.18653292609e-06 -4.29718122444e-06 -2.22697478256e-05 2.21805765689e-06 -1.02510839354e-05 -4.70797459702e-05 3.07687162723e-06 -1.71729296652e-05 -6.85253560224e-05 3.60170377944e-06 -2.32040945248e-05 -7.85585104721e-05 3.80332903478e-06 -2.67291180359e-05 -7.43055307131e-05 3.81176332821e-06 -2.77115366326e-05 -6.0035272419e-05 3.81176332817e-06 -2.77183233603e-05 3.81176332818e-06 -2.77183233603e-05 3.81176332818e-06 -2.77183233603e-05 3.8117633281e-06 -2.77183233603e-05 3.81176332824e-06 -2.77183233603e-05 3.81176332823e-06 -2.77183233603e-05 3.80301867892e-06 -2.76864643939e-05 6.0035272419e-05 3.59992726079e-06 -2.66063552188e-05 7.43258253526e-05 3.07502338158e-06 -2.3007901636e-05 7.86492762645e-05 2.21688082606e-06 -1.7042336897e-05 6.86975684948e-05 1.18610725103e-06 -1.01995567795e-05 4.72603956805e-05 3.25862364611e-07 -4.28534085853e-06 2.23768380152e-05 -8.94592706554e-07 5.18450889785e-06 3.00688452592e-07 -7.54709419502e-07 -4.76050212445e-06 1.14042129757e-06 -3.8519181616e-06 -2.11675470388e-05 2.16649155787e-06 -9.50192636537e-06 -4.55482446847e-05 3.03423964392e-06 -1.62033819279e-05 -6.69462237959e-05 3.57363699244e-06 -2.22014789705e-05 -7.72768823683e-05 3.78808417239e-06 -2.60693589825e-05 -7.36322217196e-05 3.80869207118e-06 -2.75186148601e-05 -5.98907102117e-05 3.80867250794e-06 -2.76980142259e-05 -4.28823374422e-05 3.8086530307e-06 -2.76906794826e-05 -2.57294024653e-05 3.80863363944e-06 -2.76833447393e-05 -8.57646748844e-06 3.80861433401e-06 -2.7676009996e-05 8.57646748844e-06 3.80859511478e-06 -2.76686752527e-05 2.57294024653e-05 3.80857598139e-06 -2.76613405093e-05 4.28823374422e-05 3.78745683373e-06 -2.74177003547e-05 5.98926876502e-05 3.5721556211e-06 -2.5883029799e-05 7.36602600929e-05 3.03288336106e-06 -2.20090871546e-05 7.73786512244e-05 2.1657333628e-06 -1.60842360011e-05 6.71239700771e-05 1.14021607258e-06 -9.45673544696e-06 4.57277045882e-05 3.00694512901e-07 -3.84186424666e-06 2.12706977935e-05 -7.53201575731e-07 4.78632432309e-06 2.11950680713e-07 -4.07797618652e-07 -3.37679974645e-06 9.57581726062e-07 -2.68808469589e-06 -1.70465734813e-05 1.93877389722e-06 -7.43984118163e-06 -3.93433876296e-05 2.81791243737e-06 -1.3432627638e-05 -6.00271683035e-05 3.40438930677e-06 -1.91248190871e-05 -7.11143762672e-05 3.68094215072e-06 -2.32554613467e-05 -6.95594056175e-05 3.74338933747e-06 -2.5285934656e-05 -5.79140685866e-05 3.74341750923e-06 -2.57462495101e-05 -4.18582670627e-05 3.74344533986e-06 -2.57100673028e-05 -2.510939756e-05 3.74347282926e-06 -2.56738850953e-05 -8.36052805729e-06 3.74349997748e-06 -2.56377028879e-05 8.38834144545e-06 3.74352678463e-06 -2.56015206805e-05 2.51372109482e-05 3.74355325051e-06 -2.55653384731e-05 4.18860804509e-05 3.68142835195e-06 -2.50656223793e-05 5.79489289904e-05 3.40580222379e-06 -2.30446107473e-05 6.96304614752e-05 2.81997064761e-06 -1.89628679959e-05 7.12550741997e-05 1.94066026447e-06 -1.33453229802e-05 6.02190131521e-05 9.58662618303e-07 -7.410095702e-06 3.95132891565e-05 2.12206402276e-07 -2.68206772223e-06 1.71335609898e-05 -4.0699991079e-07 3.39550752426e-06 8.67120540288e-08 -7.21521255506e-08 -1.41867020791e-06 6.33522623773e-07 -1.29240315613e-06 -1.03709236553e-05 1.48523763192e-06 -4.62167111192e-06 -2.81093503412e-05 2.33365504218e-06 -9.37739181818e-06 -4.65158703453e-05 2.96626347355e-06 -1.425091663e-05 -5.79803552905e-05 3.31967475869e-06 -1.80773312748e-05 -5.901347847e-05 3.42743558541e-06 -2.0129479119e-05 -5.06266581583e-05 3.42812474106e-06 -2.06380426072e-05 -3.7041912556e-05 3.4288138161e-06 -2.06052972692e-05 -2.22021670637e-05 3.4295028105e-06 -2.05725519313e-05 -7.36242157141e-06 3.4301917242e-06 -2.05398065933e-05 7.47732392088e-06 3.4308805572e-06 -2.05070612553e-05 2.23170694132e-05 3.43156930965e-06 -2.04743159174e-05 3.71568149055e-05 3.32543022696e-06 -1.99414764543e-05 5.07494931002e-05 2.97347776161e-06 -1.79207545285e-05 5.91658245208e-05 2.34074464447e-06 -1.41483927615e-05 5.81714813174e-05 1.4902542212e-06 -9.33007928646e-06 4.67112694438e-05 6.3569137486e-07 -4.60807143673e-06 2.82497571659e-05 8.69674537364e-08 -1.29007550721e-06 1.04280684327e-05 -7.20688778886e-08 1.42676307111e-06 1.25323089093e-08 0 -2.24264006815e-07 2.80393959705e-07 -3.17141460219e-07 -4.18639882036e-06 8.9583393157e-07 -1.91751004985e-06 -1.52066604711e-05 1.61794532602e-06 -5.00278358416e-06 -2.9363486522e-05 2.22818097193e-06 -8.56495607294e-06 -3.980816766e-05 2.61157897476e-06 -1.15726201681e-05 -4.2641132378e-05 2.74006078492e-06 -1.32675790278e-05 -3.75990672883e-05 2.74150798642e-06 -1.37056508653e-05 -2.77275350191e-05 2.74295504699e-06 -1.36869137882e-05 -1.6595604525e-05 2.74440196669e-06 -1.3668176711e-05 -5.46367403098e-06 2.74584874538e-06 -1.36494396338e-05 5.66825646305e-06 2.74729538319e-06 -1.36307025567e-05 1.68001869571e-05 2.74874188011e-06 -1.36119654795e-05 2.79321174511e-05 2.62266090137e-06 -1.31638027454e-05 3.78054471408e-05 2.23991296862e-06 -1.14943599805e-05 4.28514901312e-05 1.62766525646e-06 -8.52086181407e-06 4.00107650447e-05 9.01460371921e-07 -4.98621351101e-06 2.95243760321e-05 2.82034069921e-07 -1.91387734315e-06 1.52951288449e-05 1.25445622533e-08 -3.16657968901e-07 4.21153094381e-06 0 2.25579426303e-07 0 0 0 5.74786890745e-08 0 -8.30257050649e-07 3.49167060591e-07 -3.17087094212e-07 -5.15477264939e-06 8.29731547595e-07 -1.53734559079e-06 -1.32733167236e-05 1.30754737724e-06 -3.50187695379e-06 -2.09847943654e-05 1.64136820816e-06 -5.38188204863e-06 -2.43632720567e-05 1.76013878171e-06 -6.50564331551e-06 -2.22920829263e-05 1.76163269706e-06 -6.80744951977e-06 -1.65953024554e-05 1.76312644796e-06 -6.80102200582e-06 -9.91614206979e-06 1.76462003434e-06 -6.79459449188e-06 -3.23698168417e-06 1.76611345618e-06 -6.78816697793e-06 3.44217870142e-06 1.76760671369e-06 -6.78173946396e-06 1.0121339087e-05 1.76909980666e-06 -6.7753119501e-06 1.68004994726e-05 1.65236120181e-06 -6.47142075061e-06 2.24932601209e-05 1.31798203304e-06 -5.35905254924e-06 2.45474048419e-05 8.36939092541e-07 -3.49161091186e-06 2.11313761032e-05 3.52087040526e-07 -1.53469118878e-06 1.33630608212e-05 5.7683055258e-08 -3.16712269934e-07 5.18895176903e-06 0 0 8.35613365565e-07 0 0 0 0 0 0 0 0 5.74914617672e-08 0 -7.26138855186e-07 2.35528604957e-07 -7.21351029428e-08 -3.22961613314e-06 4.87774498207e-07 -4.79756257884e-07 -6.84676619466e-06 6.95086992599e-07 -1.16236624765e-06 -9.32367247046e-06 7.74034980138e-07 -1.65140193315e-06 -9.14512455798e-06 7.74835538565e-07 -1.79292139779e-06 -6.92934613209e-06 7.7563603338e-07 -1.79211306882e-06 -4.13434949135e-06 7.76436464462e-07 -1.79130473984e-06 -1.33935285062e-06 7.77236831823e-07 -1.79049641083e-06 1.45564379012e-06 7.78037135657e-07 -1.78968808187e-06 4.25064043086e-06 7.78837375692e-07 -1.78887975292e-06 7.0456370716e-06 7.00687451273e-07 -1.64739748234e-06 9.256272856e-06 4.92243868306e-07 -1.16032779184e-06 9.41550930315e-06 2.37541148022e-07 -4.79260331942e-07 6.90563901361e-06 5.76702822002e-08 -7.20858979881e-08 3.25498487859e-06 0 0 7.3149780494e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.25343511447e-08 0 -1.49289869258e-07 7.42157908494e-08 0 -8.1191012324e-07 1.38109712535e-07 0 -1.63539515186e-06 1.64196688896e-07 0 -1.83608986908e-06 1.64298891279e-07 0 -1.43673239397e-06 1.64401094187e-07 0 -8.56310535986e-07 1.64503297691e-07 0 -2.75888678013e-07 1.64605501753e-07 0 3.04533179949e-07 1.64707706383e-07 0 8.84955037922e-07 1.64809911585e-07 0 1.4653768959e-06 1.38688728492e-07 0 1.86260358773e-06 7.44267843015e-08 0 1.65439534249e-06 1.25425200804e-08 0 8.20036906066e-07 0 0 1.50605754473e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -6.85145750626e-09 -8.07278989967e-08 -1.49110698433e-07 -3.69099960885e-08 -5.09767989774e-07 -8.06655957854e-07 -6.83379025477e-08 -1.21323273227e-06 -1.61310073863e-06 -8.12594293616e-08 -1.71256919448e-06 -1.80153592362e-06 -8.11503548062e-08 -1.85677789465e-06 -1.40735181772e-06 -8.10412803046e-08 -1.85677789464e-06 -8.38743614722e-07 -8.09322057799e-08 -1.85677789465e-06 -2.70135411724e-07 -8.08231312771e-08 -1.85677789464e-06 2.98472791282e-07 -8.07140567305e-08 -1.85677789465e-06 8.67080994297e-07 -8.06049821809e-08 -1.85677789464e-06 1.43568919728e-06 -6.77150397042e-08 -1.71205892302e-06 1.82779185034e-06 -3.66763272851e-08 -1.21235226022e-06 1.63199905258e-06 -6.84149683643e-09 -5.09409730521e-07 8.1479013059e-07 0 -8.07148939936e-08 1.5042766233e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.8810051959e-08 -3.35777913144e-07 -7.22525754178e-07 -1.18730483669e-07 -1.59535643277e-06 -3.17028902623e-06 -2.51714862527e-07 -3.59525086497e-06 -6.61139674223e-06 -3.66410711158e-07 -5.49642588078e-06 -8.88971836019e-06 -4.10748697676e-07 -6.62554697776e-06 -8.66009825395e-06 -4.09944940493e-07 -6.92958893996e-06 -6.54954371779e-06 -4.09141183277e-07 -6.92958893995e-06 -3.90727628129e-06 -4.08337426084e-07 -6.92958893996e-06 -1.2650088448e-06 -4.07533668879e-07 -6.92958893995e-06 1.37725859169e-06 -4.06729911623e-07 -6.92958893995e-06 4.01952602822e-06 -4.05926154463e-07 -6.92958893996e-06 6.66179346469e-06 -3.60767821341e-07 -6.62093852172e-06 8.767545381e-06 -2.4716217818e-07 -5.48633053733e-06 8.97914837866e-06 -1.16629263591e-07 -3.58694126225e-06 6.66948012922e-06 -2.86095088754e-08 -1.59230501247e-06 3.19565943749e-06 0 -3.35550849819e-07 7.27903760874e-07 0 0 0 0 0 0 0 0 -2.88243764532e-08 -3.3577795054e-07 -8.26129179905e-07 -1.77009189793e-07 -1.98257296555e-06 -5.04895585568e-06 -4.43455136722e-07 -5.1193560943e-06 -1.27497993838e-05 -7.44924732719e-07 -8.71697205174e-06 -1.98197288072e-05 -9.80600371987e-07 -1.17353847302e-05 -2.27354256436e-05 -1.06845728568e-06 -1.34204783305e-05 -2.06746973318e-05 -1.06696979675e-06 -1.38591746399e-05 -1.53661568743e-05 -1.06548230776e-06 -1.38591746399e-05 -9.18062456608e-06 -1.06399481875e-06 -1.385917464e-05 -2.99509225788e-06 -1.06250732988e-06 -1.38591746399e-05 3.19044005032e-06 -1.06101984088e-06 -1.38591746399e-05 9.37597235851e-06 -1.05953235192e-06 -1.38591746399e-05 1.55615046667e-05 -9.69629206537e-07 -1.3405155074e-05 2.08664066855e-05 -7.34445582273e-07 -1.1698913456e-05 2.29120617582e-05 -4.36136795844e-07 -8.68048391299e-06 1.99622338346e-05 -1.73984898848e-07 -5.09862835644e-06 1.28386207818e-05 -2.85951843591e-08 -1.97712511775e-06 5.08329937404e-06 0 -3.35550887216e-07 8.31504551753e-07 0 0 -6.85394766125e-09 -8.07279005379e-08 -2.23995525646e-07 -1.40628716404e-07 -1.34053690288e-06 -4.12834368709e-06 -4.80874775866e-07 -4.7346141578e-06 -1.47259994255e-05 -9.65930840763e-07 -9.54619166781e-06 -2.79414358608e-05 -1.47121893085e-06 -1.4445480771e-05 -3.73583892522e-05 -1.84691705788e-06 -1.826157067e-05 -3.96705926816e-05 -1.98339781776e-06 -2.02820273764e-05 -3.48461517935e-05 -1.98191356876e-06 -2.078875386e-05 -2.56747842375e-05 -1.98042931977e-06 -2.078875386e-05 -1.53655669487e-05 -1.97894507073e-06 -2.078875386e-05 -5.05634965983e-06 -1.97746082189e-06 -2.078875386e-05 5.25286762903e-06 -1.97597657291e-06 -2.078875386e-05 1.55620849179e-05 -1.97449232389e-06 -2.078875386e-05 2.58713022067e-05 -1.83554425119e-06 -2.02518847151e-05 3.50443011726e-05 -1.45916271967e-06 -1.81848168354e-05 3.98732331976e-05 -9.55913513372e-07 -1.43589497485e-05 3.7555379285e-05 -4.75045916203e-07 -9.48668504209e-06 2.8100242731e-05 -1.38905641817e-07 -4.71142626783e-06 1.48148200676e-05 -6.83900668163e-09 -1.3372555763e-06 4.1537482427e-06 -8.07148955507e-08 2.25312023837e-07 -4.37918958271e-08 -4.29053949165e-07 -1.41135725805e-06 -3.27606432511e-07 -2.76750364737e-06 -1.01875718089e-05 -8.70779928884e-07 -7.59276253266e-06 -2.72083508094e-05 -1.58512656346e-06 -1.36394880594e-05 -4.44445364944e-05 -2.28594685938e-06 -1.93391923579e-05 -5.49266345103e-05 -2.77208836528e-06 -2.34303069807e-05 -5.5732178936e-05 -2.93822162522e-06 -2.54070103032e-05 -4.78286504336e-05 -2.93742434798e-06 -2.58615519454e-05 -3.5014890981e-05 -2.93662707074e-06 -2.58615519454e-05 -2.09860453976e-05 -2.93582979349e-06 -2.58615519454e-05 -6.95719981422e-06 -2.93503251626e-06 -2.58615519454e-05 7.07164576913e-06 -2.93423523905e-06 -2.58615519454e-05 2.11004913525e-05 -2.93343796179e-06 -2.58615519454e-05 3.51293369359e-05 -2.76545910413e-06 -2.53701762745e-05 4.79505321678e-05 -2.27775267202e-06 -2.33229066459e-05 5.58827025188e-05 -1.57721289528e-06 -1.91996838909e-05 5.51156922999e-05 -8.65279991681e-07 -1.35298138558e-05 4.46394391103e-05 -3.25271187085e-07 -7.54121239376e-06 2.73501367315e-05 -4.35145535176e-08 -2.75619128937e-06 1.02457905394e-05 -4.28681977615e-07 1.419485242e-06 -1.05341465345e-07 -7.84558996187e-07 -3.3589836237e-06 -5.19032164175e-07 -3.95279178871e-06 -1.68052518502e-05 -1.23941686114e-06 -9.68094823702e-06 -3.84260443478e-05 -2.14338610913e-06 -1.64309886666e-05 -5.81972305843e-05 -2.97319019987e-06 -2.24154871205e-05 -6.87364036935e-05 -3.47207002623e-06 -2.62048928935e-05 -6.74402694817e-05 -3.59966986968e-06 -2.75630536548e-05 -5.65265851179e-05 -3.59956403517e-06 -2.77183233601e-05 -4.10052725269e-05 -3.59945820061e-06 -2.771832336e-05 -2.45973022562e-05 -3.59935236606e-06 -2.771832336e-05 -8.18933198541e-06 -3.59924653152e-06 -2.771832336e-05 8.21863828534e-06 -3.59914069685e-06 -2.77183233601e-05 2.46266085561e-05 -3.59903486233e-06 -2.771832336e-05 4.10345788268e-05 -3.47055254257e-06 -2.75489212352e-05 5.65630619773e-05 -2.97024781124e-06 -2.61043794287e-05 6.75132768258e-05 -2.13991409866e-06 -2.22453277067e-05 6.88796088836e-05 -1.23667011934e-06 -1.62808925991e-05 5.83925617697e-05 -5.17653082826e-07 -9.6028073663e-06 3.85999701604e-05 -1.05053054201e-07 -3.93214771104e-06 1.68947066604e-05 -7.83299546665e-07 3.37790717615e-06 -1.50249685319e-07 -9.29283786163e-07 -4.75007011137e-06 -6.41986688716e-07 -4.40569947434e-06 -2.10526412598e-05 -1.47099608785e-06 -1.04390800709e-05 -4.51584664618e-05 -2.48434352251e-06 -1.7406584806e-05 -6.62240026194e-05 -3.36058137653e-06 -2.34135778181e-05 -7.64257189334e-05 -3.77389207028e-06 -2.68288339363e-05 -7.31050617076e-05 -3.8117633281e-06 -2.771832336e-05 -5.97759257964e-05 -3.81176332814e-06 -4.28823374422e-05 -3.81176332811e-06 -2.57294024653e-05 -3.81176332814e-06 -8.57646748843e-06 -3.81176332818e-06 8.57646748844e-06 -3.81176332805e-06 2.57294024653e-05 -3.8117633281e-06 4.28823374422e-05 -3.77387003103e-06 -2.77183233601e-05 5.97780756234e-05 -3.36031212271e-06 -2.67510417471e-05 7.31343720709e-05 -2.483941246e-06 -2.32367451431e-05 7.65320074468e-05 -1.47064723945e-06 -1.72416180613e-05 6.64091672161e-05 -6.41796786019e-07 -1.03501305757e-05 4.53453619954e-05 -1.50201891614e-07 -4.38090034577e-06 2.11599014705e-05 -9.27507894085e-07 4.77640624595e-06 -1.63645695032e-07 -9.2928378613e-07 -5.15639180002e-06 -6.77858398656e-07 -4.40569947431e-06 -2.22672361702e-05 -1.53910451761e-06 -1.04390800709e-05 -4.7074984602e-05 -2.583739251e-06 -1.7406584806e-05 -6.85204720064e-05 -3.46472909698e-06 -2.34135778181e-05 -7.85557541794e-05 -3.81176332811e-06 -2.68288339363e-05 -7.4305075034e-05 -2.771832336e-05 -6.0035272419e-05 -3.81176332818e-06 -2.771832336e-05 6.0035272419e-05 -3.46472909698e-06 -2.67510417471e-05 7.4326028867e-05 -2.58373925109e-06 -2.3236745143e-05 7.86514402547e-05 -1.53910451778e-06 -1.72416180614e-05 6.87018658444e-05 -6.77858398634e-07 -1.03501305757e-05 4.72648156779e-05 -1.63645695041e-07 -4.38090034575e-06 2.23792466426e-05 -9.27507894045e-07 5.18483440171e-06 -1.63645695034e-07 -9.29283786128e-07 -5.15639180002e-06 -6.77858398661e-07 -4.40569947434e-06 -2.22672361702e-05 -1.53910451761e-06 -1.04390800709e-05 -4.7074984602e-05 -2.58373925099e-06 -1.7406584806e-05 -6.85204720064e-05 -3.46472909699e-06 -2.34135778181e-05 -7.85557541794e-05 -3.81176332811e-06 -2.68288339363e-05 -7.4305075034e-05 -2.77183233601e-05 -6.00352724191e-05 -3.8117633282e-06 -2.771832336e-05 6.0035272419e-05 -3.46472909699e-06 -2.67510417471e-05 7.4326028867e-05 -2.58373925108e-06 -2.32367451431e-05 7.86514402547e-05 -1.53910451774e-06 -1.72416180613e-05 6.87018658444e-05 -6.77858398635e-07 -1.03501305757e-05 4.72648156779e-05 -1.63645695083e-07 -4.38090034577e-06 2.23792466426e-05 -9.2750789405e-07 5.18483440174e-06 -1.63645695034e-07 -9.29283786136e-07 -5.15639180002e-06 -6.77858398659e-07 -4.40569947433e-06 -2.22672361702e-05 -1.53910451762e-06 -1.04390800709e-05 -4.7074984602e-05 -2.58373925099e-06 -1.7406584806e-05 -6.85204720064e-05 -3.46472909699e-06 -2.34135778181e-05 -7.85557541794e-05 -3.81176332811e-06 -2.68288339363e-05 -7.4305075034e-05 -2.771832336e-05 -6.00352724191e-05 -3.8117633282e-06 -2.77183233601e-05 6.0035272419e-05 -3.46472909702e-06 -2.67510417471e-05 7.4326028867e-05 -2.58373925106e-06 -2.32367451431e-05 7.86514402547e-05 -1.53910451775e-06 -1.72416180614e-05 6.87018658444e-05 -6.77858398646e-07 -1.03501305757e-05 4.72648156779e-05 -1.63645695076e-07 -4.38090034575e-06 2.23792466426e-05 -9.27507894059e-07 5.18483440172e-06 -1.63645695034e-07 -9.29283786165e-07 -5.15639180002e-06 -6.77858398656e-07 -4.40569947436e-06 -2.22672361702e-05 -1.53910451761e-06 -1.04390800709e-05 -4.7074984602e-05 -2.58373925099e-06 -1.7406584806e-05 -6.85204720064e-05 -3.46472909698e-06 -2.34135778182e-05 -7.85557541794e-05 -3.81176332811e-06 -2.68288339363e-05 -7.4305075034e-05 -2.771832336e-05 -6.0035272419e-05 -3.8117633282e-06 -2.771832336e-05 6.0035272419e-05 -3.464729097e-06 -2.67510417471e-05 7.4326028867e-05 -2.58373925105e-06 -2.32367451431e-05 7.86514402547e-05 -1.53910451776e-06 -1.72416180614e-05 6.87018658444e-05 -6.77858398611e-07 -1.03501305757e-05 4.72648156779e-05 -1.63645695069e-07 -4.38090034584e-06 2.23792466426e-05 -9.27507894117e-07 5.18483440173e-06 -1.50760047275e-07 -7.84558996143e-07 -4.76021602164e-06 -6.46596644051e-07 -3.95279178866e-06 -2.11651798348e-05 -1.48632604231e-06 -9.68094823705e-06 -4.55436385209e-05 -2.51450038219e-06 -1.64309886666e-05 -6.69413985002e-05 -3.39743128801e-06 -2.24154871205e-05 -7.72740454994e-05 -3.7880293246e-06 -2.62048928935e-05 -7.36316203936e-05 -3.81176332809e-06 -2.75630536548e-05 -5.98906940836e-05 -3.81176332814e-06 -2.77183233601e-05 -4.28823374422e-05 -3.81176332813e-06 -2.771832336e-05 -2.57294024653e-05 -3.81176332814e-06 -2.771832336e-05 -8.57646748843e-06 -3.81176332817e-06 -2.771832336e-05 8.57646748843e-06 -3.81176332804e-06 -2.77183233601e-05 2.57294024653e-05 -3.81176332809e-06 -2.771832336e-05 4.28823374422e-05 -3.78799761599e-06 -2.75489212352e-05 5.9892681075e-05 -3.39713026867e-06 -2.61043794287e-05 7.366057137e-05 -2.51406970878e-06 -2.22453277067e-05 7.73809036471e-05 -1.48596379808e-06 -1.62808925991e-05 6.7128231837e-05 -6.464037427e-07 -9.60280736632e-06 4.57319885168e-05 -1.50712072526e-07 -3.93214771099e-06 2.12729702942e-05 -7.83299546642e-07 4.7866034227e-06 -1.06222775717e-07 -4.29053949159e-07 -3.37664486092e-06 -5.2913830123e-07 -2.76750364731e-06 -1.70447189654e-05 -1.27592667928e-06 -7.59276253268e-06 -3.93393617095e-05 -2.22021108648e-06 -1.36394880594e-05 -6.00225729621e-05 -3.08066733823e-06 -1.93391923579e-05 -7.11112382979e-05 -3.57263147011e-06 -2.34303069807e-05 -6.95582462906e-05 -3.67748624503e-06 -2.54070103033e-05 -5.79138312997e-05 -3.67737234848e-06 -2.58615519454e-05 -4.18581531662e-05 -3.67725845187e-06 -2.58615519454e-05 -2.51092836634e-05 -3.67714455531e-06 -2.58615519455e-05 -8.36041416069e-06 -3.67703065873e-06 -2.58615519454e-05 8.38845534203e-06 -3.6769167621e-06 -2.58615519455e-05 2.51373248448e-05 -3.6768028655e-06 -2.58615519454e-05 4.18861943475e-05 -3.57101802819e-06 -2.53701762746e-05 5.79490830624e-05 -3.07757134239e-06 -2.33229066459e-05 6.96312763018e-05 -2.21659679043e-06 -1.91996838909e-05 7.12576793446e-05 -1.27310284955e-06 -1.35298138558e-05 6.02231344964e-05 -5.27737632668e-07 -7.54121239378e-06 3.95170613215e-05 -1.05932687952e-07 -2.7561912893e-06 1.71353486759e-05 -4.2868197756e-07 3.39565876579e-06 -4.41509101742e-08 -8.0727900499e-08 -1.41863333981e-06 -3.35936654936e-07 -1.34053690286e-06 -1.03698940015e-05 -9.07353446636e-07 -4.73461415777e-06 -2.81064489049e-05 -1.67182889152e-06 -9.54619166778e-06 -4.6511975876e-05 -2.42566837662e-06 -1.4445480771e-05 -5.7977056836e-05 -2.94243396153e-06 -1.826157067e-05 -5.90115391396e-05 -3.11519091965e-06 -2.02820273763e-05 -5.06256470812e-05 -3.11434810262e-06 -2.078875386e-05 -3.7041069739e-05 -3.11350528559e-06 -2.07887538599e-05 -2.22013242467e-05 -3.11266246856e-06 -2.07887538599e-05 -7.36157875436e-06 -3.11181965153e-06 -2.07887538599e-05 7.47816673793e-06 -3.11097683454e-06 -2.07887538599e-05 2.23179122302e-05 -3.11013401752e-06 -2.07887538599e-05 3.71576577225e-05 -2.93543233549e-06 -2.02518847151e-05 5.07503908906e-05 -2.41704808868e-06 -1.81848168354e-05 5.91674462407e-05 -1.66357261237e-06 -1.43589497485e-05 5.81743745579e-05 -9.01682751415e-07 -9.48668504208e-06 4.67148440613e-05 -3.33560170125e-07 -4.71142626783e-06 2.82525092157e-05 -4.38720577148e-08 -1.33725557625e-06 1.04290678575e-05 -8.07148955509e-08 1.42679920489e-06 -6.86696203046e-09 0 -2.24262749451e-07 -1.43692675298e-07 -3.35777950527e-07 -4.18609736916e-06 -5.01688862325e-07 -1.98257296559e-06 -1.5205136685e-05 -1.02565547819e-06 -5.11935609435e-06 -2.93608356208e-05 -1.58121895174e-06 -8.71697205173e-06 -3.98053399544e-05 -1.99735484894e-06 -1.17353847302e-05 -4.26388786761e-05 -2.14864043403e-06 -1.34204783306e-05 -3.75973920453e-05 -2.14706422785e-06 -1.38591746401e-05 -2.77259588129e-05 -2.14548802162e-06 -1.38591746401e-05 -1.65940283188e-05 -2.14391181542e-06 -1.38591746401e-05 -5.46209782479e-06 -2.14233560932e-06 -1.38591746401e-05 5.66983266924e-06 -2.14075940314e-06 -1.38591746401e-05 1.68017631633e-05 -2.13918319695e-06 -1.38591746401e-05 2.79336936573e-05 -1.98529859521e-06 -1.34051550741e-05 3.78070407095e-05 -1.56851110599e-06 -1.16989134561e-05 4.28535367465e-05 -1.01520212739e-06 -8.68048391297e-06 4.00133603421e-05 -4.95687305475e-07 -5.09862835648e-06 2.95268695396e-05 -1.41944523525e-07 -1.97712511777e-06 1.52965952059e-05 -6.85200230919e-09 -3.35550887182e-07 4.21182571613e-06 0 2.25580662034e-07 0 0 0 -2.90520379775e-08 0 -8.3023527533e-07 -1.82488241703e-07 -3.35777913155e-07 -5.15435847652e-06 -4.66772735697e-07 -1.59535643283e-06 -1.32721073813e-05 -7.96723119024e-07 -3.59525086496e-06 -2.09830746524e-05 -1.0590425097e-06 -5.49642588077e-06 -2.43615231608e-05 -1.15766321268e-06 -6.62554697774e-06 -2.22904971798e-05 -1.15609024649e-06 -6.92958893994e-06 -1.65937294892e-05 -1.15451728023e-06 -6.92958893991e-06 -9.91456910357e-06 -1.15294431398e-06 -6.92958893995e-06 -3.23540871797e-06 -1.1513713479e-06 -6.9295889399e-06 3.44375166763e-06 -1.14979838161e-06 -6.92958893992e-06 1.01229120532e-05 -1.14822541541e-06 -6.92958893993e-06 1.68020724388e-05 -1.04746881029e-06 -6.62093852172e-06 2.24948077305e-05 -7.85747473764e-07 -5.48633053735e-06 2.45490636975e-05 -4.59194976743e-07 -3.58694126226e-06 2.11330079714e-05 -1.79401542546e-07 -1.59230501253e-06 1.33642236079e-05 -2.88216495141e-08 -3.35550849855e-07 5.18935559073e-06 0 0 8.35634772092e-07 0 0 0 0 0 0 0 0 -2.90376387083e-08 0 -7.26117079856e-07 -1.22031202699e-07 -8.07278990415e-08 -3.22939730331e-06 -2.63095833292e-07 -5.09767989804e-07 -6.84622038877e-06 -3.87161587707e-07 -1.21323273223e-06 -9.32291771035e-06 -4.35645565885e-07 -1.71256919456e-06 -9.14431457496e-06 -4.34809228807e-07 -1.85677789466e-06 -6.92850979502e-06 -4.33972891732e-07 -1.85677789466e-06 -4.13351315427e-06 -4.33136554654e-07 -1.85677789464e-06 -1.33851651354e-06 -4.32300217604e-07 -1.85677789468e-06 1.4564801272e-06 -4.31463880482e-07 -1.85677789466e-06 4.25147676795e-06 -4.30627543431e-07 -1.85677789468e-06 7.04647340867e-06 -3.81305100141e-07 -1.71205892304e-06 9.25707292344e-06 -2.58405923402e-07 -1.2123522602e-06 9.4162430039e-06 -1.19891197702e-07 -5.09409730518e-07 6.90616879202e-06 -2.88360488718e-08 -8.07148940744e-08 3.25519859723e-06 0 0 7.31519211487e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -6.86446875027e-09 0 -1.49288611909e-07 -3.72827474301e-08 0 -8.1188215642e-07 -6.96011620311e-08 0 -1.63532708245e-06 -8.3040067635e-08 0 -1.83599203478e-06 -8.29294110178e-08 0 -1.43662173734e-06 -8.28187544533e-08 0 -8.56199879381e-07 -8.27080978164e-08 0 -2.75778021417e-07 -8.25974412527e-08 0 3.04643836568e-07 -8.24867846078e-08 0 8.85065694538e-07 -8.23761280772e-08 0 1.46548755252e-06 -6.89706792486e-08 0 1.86270059643e-06 -3.70475190616e-08 0 1.6544619828e-06 -6.85449561934e-09 0 8.20064288911e-07 0 0 1.50606990202e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.9032870532e-08 -8.07477457434e-08 -1.49109442381e-07 -1.54303560278e-07 -5.10308361907e-07 -8.06628162348e-07 -2.82073421416e-07 -1.2145443204e-06 -1.6130334583e-06 -3.3397418628e-07 -1.71332264453e-06 -1.80143941252e-06 -3.33865111715e-07 -1.8567778947e-06 -1.40724274322e-06 -3.33756037216e-07 -1.8567778947e-06 -8.38634540209e-07 -3.336469627e-07 -1.8567778947e-06 -2.700263372e-07 -3.33537888168e-07 -1.8567778947e-06 2.98581865809e-07 -3.33428813599e-07 -1.8567778947e-06 8.67190068805e-07 -3.3331973907e-07 -1.8567778947e-06 1.4357982718e-06 -2.81450558528e-07 -1.71130547307e-06 1.82788753655e-06 -1.54069891525e-07 -1.21104067217e-06 1.63206489812e-06 -2.90229098913e-08 -5.08869358415e-07 8.14817335684e-07 0 -8.06950472527e-08 1.50428896677e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.20786468199e-07 -3.36121092985e-07 -7.2250407212e-07 -4.82169521298e-07 -1.59983478842e-06 -3.17007400396e-06 -9.95289925461e-07 -3.60700668083e-06 -6.61086671545e-06 -1.42218988343e-06 -5.51023354546e-06 -8.8889904485e-06 -1.58508978061e-06 -6.6317270698e-06 -8.65931897435e-06 -1.58428602342e-06 -6.92958894017e-06 -6.5487399606e-06 -1.58348226622e-06 -6.92958894016e-06 -3.90647252411e-06 -1.58267850899e-06 -6.92958894016e-06 -1.26420508763e-06 -1.58187475182e-06 -6.92958894017e-06 1.37806234888e-06 -1.58107099461e-06 -6.92958894016e-06 4.02032978538e-06 -1.58026723741e-06 -6.92958894016e-06 6.66259722189e-06 -1.41654699364e-06 -6.61475843008e-06 8.7683146236e-06 -9.90737241079e-07 -5.47252287298e-06 8.97985488075e-06 -4.80068301174e-07 -3.5751854466e-06 6.66999376027e-06 -1.20585925144e-07 -1.58782665692e-06 3.1958692194e-06 0 -3.35207669999e-07 7.27925068289e-07 0 0 0 0 0 0 0 0 -1.20800792704e-07 -3.36121130379e-07 -8.26107497873e-07 -7.13643504392e-07 -1.99046368756e-06 -5.04854965518e-06 -1.71069218542e-06 -5.14768728872e-06 -1.27486322043e-05 -2.75921485552e-06 -8.763845395e-06 -1.98180890332e-05 -3.53476150649e-06 -1.17799712798e-05 -2.27337675056e-05 -3.81758275609e-06 -1.34387137243e-05 -2.06731959179e-05 -3.81609526714e-06 -1.38591746404e-05 -1.53646693853e-05 -3.81460777815e-06 -1.38591746404e-05 -9.17913707711e-06 -3.81312028921e-06 -1.38591746404e-05 -2.99360476894e-06 -3.81163280023e-06 -1.38591746404e-05 3.19192753928e-06 -3.81014531125e-06 -1.38591746404e-05 9.37745984747e-06 -3.80865782231e-06 -1.38591746404e-05 1.55629921557e-05 -3.52379034106e-06 -1.3386919681e-05 2.08678696333e-05 -2.74873570505e-06 -1.1654326907e-05 2.29136285628e-05 -1.70337384455e-06 -8.63361057025e-06 1.99637835378e-05 -7.1061921341e-07 -5.07029716232e-06 1.28397396174e-05 -1.20571600657e-07 -1.96923439584e-06 5.08369479368e-06 0 -3.35207707391e-07 8.31525859193e-07 0 0 -2.90353606874e-08 -8.07477472836e-08 -2.23994269599e-07 -5.7450944372e-07 -1.34533859121e-06 -4.12804608291e-06 -1.85769044885e-06 -4.76635771124e-06 -1.4724519309e-05 -3.50828968272e-06 -9.62117118308e-06 -2.79388993743e-05 -5.07848793674e-06 -1.45463336421e-05 -3.7355708703e-05 -6.17649051326e-06 -1.83460479555e-05 -3.96684626985e-05 -6.56527216854e-06 -2.03142383177e-05 -3.48445710822e-05 -6.56378791954e-06 -2.07887538606e-05 -2.56732999886e-05 -6.56230367055e-06 -2.07887538606e-05 -1.53640826997e-05 -6.56081942155e-06 -2.07887538606e-05 -5.05486541086e-06 -6.55933517265e-06 -2.07887538606e-05 5.25435187801e-06 -6.55785092364e-06 -2.07887538606e-05 1.55635691669e-05 -6.55636667463e-06 -2.07887538606e-05 2.58727864557e-05 -6.1651177066e-06 -2.02196737751e-05 3.50457998998e-05 -5.06643172558e-06 -1.81003395511e-05 3.98751542458e-05 -3.49827235535e-06 -1.42580968783e-05 3.7557822618e-05 -1.85186158922e-06 -9.41170552738e-06 2.81026158576e-05 -5.72786369148e-07 -4.67968271466e-06 1.48162396671e-05 -2.90204197422e-08 -1.33245388804e-06 4.15403886045e-06 -8.06950488012e-08 2.25313258171e-07 -1.83406567207e-07 -4.29614168023e-07 -1.41132055874e-06 -1.30352878342e-06 -2.78352077396e-06 -1.01865583408e-05 -3.21636231378e-06 -7.65962357397e-06 -2.72055337768e-05 -5.44538787021e-06 -1.37684470501e-05 -4.44407954031e-05 -7.43498683671e-06 -1.94899245891e-05 -5.49234762208e-05 -8.73790049606e-06 -2.35398886649e-05 -5.5730315951e-05 -9.17326410696e-06 -2.54435846098e-05 -4.78276868216e-05 -9.17246682973e-06 -2.58615519462e-05 -3.50140937038e-05 -9.17166955249e-06 -2.58615519462e-05 -2.09852481204e-05 -9.17087227524e-06 -2.58615519462e-05 -6.95640253703e-06 -9.17007499803e-06 -2.58615519462e-05 7.07244304636e-06 -9.16927772079e-06 -2.58615519462e-05 2.11012886297e-05 -9.16848044352e-06 -2.58615519462e-05 3.51301342131e-05 -8.73127123491e-06 -2.53336019695e-05 4.79513823543e-05 -7.42679264935e-06 -2.32133249631e-05 5.5884246803e-05 -5.43747420199e-06 -1.90489516609e-05 5.51184396071e-05 -3.21086237652e-06 -1.34008548659e-05 4.46428496126e-05 -1.30119353799e-06 -7.47435135292e-06 2.73527961427e-05 -1.83129225015e-07 -2.74017416296e-06 1.02467718589e-05 -4.28121758762e-07 1.41952119338e-06 -4.37591001667e-07 -7.86430803017e-07 -3.35882946932e-06 -2.01554901752e-06 -3.98130497833e-06 -1.6803419963e-05 -4.41746365817e-06 -9.77858809771e-06 -3.84221014321e-05 -7.07093655714e-06 -1.65998383125e-05 -5.81927529303e-05 -9.29300861492e-06 -2.25913237336e-05 -6.87333318279e-05 -1.05668222872e-05 -2.63035972065e-05 -6.74391057876e-05 -1.08921011014e-05 -2.75766790228e-05 -5.65263501305e-05 -1.08919952669e-05 -2.77183233609e-05 -4.10051666924e-05 -1.08918894323e-05 -2.77183233609e-05 -2.45971964216e-05 -1.08917835978e-05 -2.77183233609e-05 -8.18922615086e-06 -1.08916777633e-05 -2.77183233609e-05 8.21874411987e-06 -1.08915719287e-05 -2.77183233609e-05 2.46267143906e-05 -1.08914660941e-05 -2.77183233609e-05 4.10346846614e-05 -1.05653048035e-05 -2.75352958688e-05 5.65632133672e-05 -9.29006622628e-06 -2.60056751172e-05 6.75140968476e-05 -7.06746454668e-06 -2.2069491095e-05 6.88821441123e-05 -4.41471691641e-06 -1.61120429543e-05 5.8396552008e-05 -2.01416993609e-06 -9.50516750618e-06 3.86036457647e-05 -4.37302590572e-07 -3.90363452165e-06 1.68964670627e-05 -7.8142773987e-07 3.37805756849e-06 -6.20443622506e-07 -9.31909042842e-07 -4.74978446508e-06 -2.45743439568e-06 -4.43963929766e-06 -2.10502828353e-05 -5.14176326772e-06 -1.05487751995e-05 -4.51538893828e-05 -8.02626753833e-06 -1.75894099632e-05 -6.62192144657e-05 -1.03067744082e-05 -2.35937777986e-05 -7.64228920322e-05 -1.13391447432e-05 -2.6904589322e-05 -7.31044382852e-05 -1.14352899848e-05 -2.77183233609e-05 -5.97759092807e-05 -1.14352899848e-05 -4.28823374422e-05 -1.14352899848e-05 -2.57294024653e-05 -1.14352899848e-05 -8.57646748845e-06 -1.14352899849e-05 8.57646748843e-06 -1.14352899847e-05 2.57294024653e-05 -1.14352899848e-05 4.28823374422e-05 -1.13391227038e-05 -2.77183233609e-05 5.97780697102e-05 -1.03065051544e-05 -2.6675286363e-05 7.31347084838e-05 -8.02586526177e-06 -2.3056545164e-05 7.65342489506e-05 -5.14141441933e-06 -1.70587929051e-05 6.64133780227e-05 -2.45724449295e-06 -1.02404354477e-05 4.53496002332e-05 -6.20395828843e-07 -4.34696052271e-06 2.11621584555e-05 -9.24882637464e-07 4.77668459531e-06 -6.74325783742e-07 -9.31909042789e-07 -5.15605792567e-06 -2.58374229783e-06 -4.43963929764e-06 -2.22647208341e-05 -5.35087142172e-06 -1.05487751995e-05 -4.70702145222e-05 -8.30138737156e-06 -1.75894099632e-05 -6.85155810674e-05 -1.05775774511e-05 -2.35937777986e-05 -7.85529977831e-05 -1.14352899848e-05 -2.6904589322e-05 -7.43046209587e-05 -2.77183233609e-05 -6.00352724191e-05 -1.14352899849e-05 -2.77183233609e-05 6.0035272419e-05 -1.05775774511e-05 -2.6675286363e-05 7.4326233985e-05 -8.3013873716e-06 -2.3056545164e-05 7.86536041411e-05 -5.35087142185e-06 -1.70587929052e-05 6.87061562709e-05 -2.58374229777e-06 -1.02404354477e-05 4.72692269636e-05 -6.74325783723e-07 -4.34696052269e-06 2.23816515893e-05 -9.24882637435e-07 5.18515972076e-06 -6.74325783742e-07 -9.31909042829e-07 -5.15605792566e-06 -2.58374229783e-06 -4.43963929767e-06 -2.22647208341e-05 -5.35087142171e-06 -1.05487751995e-05 -4.70702145222e-05 -8.30138737155e-06 -1.75894099632e-05 -6.85155810674e-05 -1.05775774511e-05 -2.35937777986e-05 -7.85529977831e-05 -1.14352899848e-05 -2.6904589322e-05 -7.43046209587e-05 -2.77183233609e-05 -6.00352724191e-05 -1.14352899849e-05 -2.77183233609e-05 6.0035272419e-05 -1.05775774511e-05 -2.6675286363e-05 7.4326233985e-05 -8.30138737161e-06 -2.3056545164e-05 7.86536041411e-05 -5.35087142184e-06 -1.70587929051e-05 6.87061562709e-05 -2.5837422978e-06 -1.02404354477e-05 4.72692269637e-05 -6.74325783767e-07 -4.34696052274e-06 2.23816515893e-05 -9.24882637448e-07 5.18515972075e-06 -6.74325783744e-07 -9.31909042802e-07 -5.15605792566e-06 -2.58374229783e-06 -4.43963929765e-06 -2.22647208341e-05 -5.35087142172e-06 -1.05487751995e-05 -4.70702145222e-05 -8.30138737155e-06 -1.75894099632e-05 -6.85155810674e-05 -1.05775774511e-05 -2.35937777986e-05 -7.85529977831e-05 -1.14352899848e-05 -2.6904589322e-05 -7.43046209587e-05 -2.77183233609e-05 -6.00352724191e-05 -1.14352899848e-05 -2.77183233609e-05 6.0035272419e-05 -1.05775774511e-05 -2.6675286363e-05 7.4326233985e-05 -8.30138737163e-06 -2.3056545164e-05 7.86536041411e-05 -5.3508714218e-06 -1.70587929052e-05 6.87061562709e-05 -2.58374229781e-06 -1.02404354477e-05 4.72692269637e-05 -6.74325783769e-07 -4.3469605227e-06 2.23816515893e-05 -9.24882637455e-07 5.18515972076e-06 -6.74325783745e-07 -9.31909042867e-07 -5.15605792567e-06 -2.58374229783e-06 -4.43963929767e-06 -2.22647208341e-05 -5.35087142171e-06 -1.05487751995e-05 -4.70702145222e-05 -8.30138737157e-06 -1.75894099632e-05 -6.85155810674e-05 -1.05775774511e-05 -2.35937777986e-05 -7.85529977831e-05 -1.14352899848e-05 -2.6904589322e-05 -7.43046209587e-05 -2.77183233609e-05 -6.00352724191e-05 -1.14352899849e-05 -2.77183233609e-05 6.0035272419e-05 -1.05775774511e-05 -2.6675286363e-05 7.4326233985e-05 -8.30138737156e-06 -2.3056545164e-05 7.86536041411e-05 -5.35087142189e-06 -1.70587929052e-05 6.87061562709e-05 -2.58374229778e-06 -1.02404354478e-05 4.72692269637e-05 -6.74325783803e-07 -4.34696052276e-06 2.23816515893e-05 -9.24882637506e-07 5.18515972075e-06 -6.22460884466e-07 -7.86430802966e-07 -4.75992977205e-06 -2.47440453472e-06 -3.98130497832e-06 -2.11628092651e-05 -5.19356400899e-06 -9.77858809776e-06 -4.55390240599e-05 -8.12084627934e-06 -1.65998383124e-05 -6.69365662996e-05 -1.04167729313e-05 -2.25913237335e-05 -7.72712081525e-05 -1.13805327318e-05 -2.63035972065e-05 -7.36310205873e-05 -1.14352899848e-05 -2.75766790228e-05 -5.98906780927e-05 -1.14352899848e-05 -2.77183233609e-05 -4.28823374422e-05 -1.14352899848e-05 -2.77183233609e-05 -2.57294024653e-05 -1.14352899848e-05 -2.77183233609e-05 -8.57646748844e-06 -1.14352899849e-05 -2.77183233609e-05 8.57646748842e-06 -1.14352899848e-05 -2.77183233609e-05 2.57294024653e-05 -1.14352899847e-05 -2.77183233608e-05 4.28823374422e-05 -1.13805010232e-05 -2.75352958688e-05 5.98926746371e-05 -1.0416471912e-05 -2.60056751173e-05 7.36608841666e-05 -8.12041560597e-06 -2.20694910949e-05 7.73831555919e-05 -5.19320176469e-06 -1.61120429542e-05 6.71324866919e-05 -2.47421163338e-06 -9.5051675062e-06 4.5736264148e-05 -6.22412909795e-07 -3.90363452162e-06 2.1275239429e-05 -7.81427739798e-07 4.7868823755e-06 -4.41095488214e-07 -4.29614168006e-07 -3.37648991639e-06 -2.05327048359e-06 -2.78352077391e-06 -1.70428621259e-05 -4.54314657502e-06 -7.65962357397e-06 -3.93353290242e-05 -7.31671610432e-06 -1.37684470501e-05 -6.00179709167e-05 -9.61964912038e-06 -1.9489924589e-05 -7.11080984193e-05 -1.08647923557e-05 -2.35398886649e-05 -6.95570873777e-05 -1.11214282465e-05 -2.54435846099e-05 -5.79135938216e-05 -1.112131435e-05 -2.58615519462e-05 -4.18580392696e-05 -1.11212004534e-05 -2.58615519462e-05 -2.51091697669e-05 -1.11210865568e-05 -2.58615519462e-05 -8.36030026412e-06 -1.11209726603e-05 -2.58615519462e-05 8.38856923861e-06 -1.11208587636e-05 -2.58615519463e-05 2.51374387413e-05 -1.1120744867e-05 -2.58615519462e-05 4.18863082441e-05 -1.08631789137e-05 -2.53336019695e-05 5.79492369432e-05 -9.61655312449e-06 -2.32133249631e-05 6.96320915424e-05 -7.31310180826e-06 -1.90489516609e-05 7.12602825802e-05 -4.54032274528e-06 -1.34008548659e-05 6.02272491366e-05 -2.05186981495e-06 -7.47435135292e-06 3.95208267212e-05 -4.40805400452e-07 -2.74017416288e-06 1.71371340385e-05 -4.2812175873e-07 3.39580994833e-06 -1.8484632579e-07 -8.07477473023e-08 -1.41859646487e-06 -1.33537063736e-06 -1.34533859119e-06 -1.03688633897e-05 -3.34668251753e-06 -4.76635771122e-06 -2.81035433608e-05 -5.73379593949e-06 -9.62117118304e-06 -4.65080760454e-05 -7.87617281512e-06 -1.45463336421e-05 -5.79737554973e-05 -9.25991931712e-06 -1.83460479555e-05 -5.9009599267e-05 -9.71063336091e-06 -2.03142383176e-05 -5.0624635937e-05 -9.70979054389e-06 -2.07887538605e-05 -3.7040226922e-05 -9.70894772687e-06 -2.07887538605e-05 -2.22004814297e-05 -9.70810490985e-06 -2.07887538605e-05 -7.36073593736e-06 -9.70726209284e-06 -2.07887538605e-05 7.47900955494e-06 -9.70641927582e-06 -2.07887538605e-05 2.23187550472e-05 -9.70557645877e-06 -2.07887538605e-05 3.71585005395e-05 -9.25291769112e-06 -2.0219673775e-05 5.07512886138e-05 -7.86755252718e-06 -1.81003395511e-05 5.91690674185e-05 -5.72553966034e-06 -1.42580968783e-05 5.81772649141e-05 -3.34101182233e-06 -9.41170552739e-06 4.67184133176e-05 -1.33299415249e-06 -4.67968271465e-06 2.82552571577e-05 -1.84567473385e-07 -1.332453888e-06 1.04300663242e-05 -8.06950488091e-08 1.42683533189e-06 -2.90880685362e-08 0 -2.24261492075e-07 -5.86530113814e-07 -3.36121130343e-07 -4.18579576432e-06 -1.93516692386e-06 -1.99046368756e-06 -1.52036113552e-05 -3.71797335013e-06 -5.14768728877e-06 -2.93581817365e-05 -5.44640593817e-06 -8.76384539503e-06 -3.98025098376e-05 -6.66462759497e-06 -1.17799712799e-05 -4.26366240448e-05 -7.09616509825e-06 -1.34387137244e-05 -3.75957166467e-05 -7.09458889208e-06 -1.38591746405e-05 -2.77243826067e-05 -7.09301268586e-06 -1.38591746405e-05 -1.65924521126e-05 -7.09143647966e-06 -1.38591746405e-05 -5.46052161863e-06 -7.08986027353e-06 -1.38591746405e-05 5.67140887543e-06 -7.08828406732e-06 -1.38591746405e-05 1.68033393695e-05 -7.08670786112e-06 -1.38591746405e-05 2.79352698635e-05 -6.65257134127e-06 -1.3386919681e-05 3.78086341226e-05 -5.43369809245e-06 -1.1654326907e-05 4.28555824324e-05 -3.70751999925e-06 -8.63361057026e-06 4.00159532282e-05 -1.92916536701e-06 -5.07029716239e-06 2.9529360064e-05 -5.84781962047e-07 -1.96923439587e-06 1.52980600231e-05 -2.90731088689e-08 -3.35207707377e-07 4.21212033481e-06 0 2.25581897687e-07 0 0 0 -1.21714813887e-07 0 -8.30213497107e-07 -7.34904000206e-07 -3.36121093009e-07 -5.15394408878e-06 -1.79749689101e-06 -1.59983478847e-06 -1.32708971427e-05 -2.94473532398e-06 -3.60700668081e-06 -2.09813538167e-05 -3.80848336504e-06 -5.51023354549e-06 -2.43597736054e-05 -4.12617893974e-06 -6.63172706974e-06 -2.2288911263e-05 -4.12460597352e-06 -6.92958894015e-06 -1.6592156523e-05 -4.12303300728e-06 -6.92958894014e-06 -9.91299613733e-06 -4.12146004104e-06 -6.92958894015e-06 -3.23383575175e-06 -4.11988707486e-06 -6.9295889401e-06 3.44532463385e-06 -4.11831410863e-06 -6.92958894014e-06 1.01244850195e-05 -4.11674114243e-06 -6.92958894012e-06 1.68036454051e-05 -3.79690966562e-06 -6.61475843012e-06 2.24963551699e-05 -2.93375967871e-06 -5.47252287296e-06 2.45507218936e-05 -1.78991913214e-06 -3.57518544658e-06 2.11346387169e-05 -7.31817301099e-07 -1.58782665697e-06 1.33653854983e-05 -1.21484425425e-07 -3.35207670016e-07 5.1897591976e-06 0 0 8.35656175731e-07 0 0 0 0 0 0 0 0 -1.21700414609e-07 0 -7.26095301612e-07 -4.95073616904e-07 -8.07477457879e-08 -3.22917840878e-06 -1.03870514923e-06 -5.10308361896e-07 -6.84567439698e-06 -1.49996713898e-06 -1.21454432039e-06 -9.32216277112e-06 -1.67786629513e-06 -1.71332264459e-06 -9.14350452892e-06 -1.67702995806e-06 -1.85677789471e-06 -6.92767345793e-06 -1.67619362098e-06 -1.8567778947e-06 -4.13267681723e-06 -1.67535728391e-06 -1.85677789473e-06 -1.33768017648e-06 -1.67452094689e-06 -1.85677789473e-06 1.45731646426e-06 -1.67368460979e-06 -1.8567778947e-06 4.252313105e-06 -1.6728482727e-06 -1.85677789472e-06 7.04730974574e-06 -1.49411065143e-06 -1.71130547312e-06 9.25787292785e-06 -1.03401523937e-06 -1.21104067214e-06 9.41697652554e-06 -4.92933611927e-07 -5.0886935843e-07 6.90669838457e-06 -1.21498824744e-07 -8.06950473074e-08 3.25541225113e-06 0 0 7.31540615093e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.90855752471e-08 0 -1.49287354507e-07 -1.55796749323e-07 0 -8.11854186381e-07 -2.87080294519e-07 0 -1.63525901014e-06 -3.41005337868e-07 0 -1.83589420077e-06 -3.40894681255e-07 0 -1.43651108075e-06 -3.40784024666e-07 0 -8.56089222806e-07 -3.4067336802e-07 0 -2.75667364823e-07 -3.40562711473e-07 0 3.04754493159e-07 -3.40452054868e-07 0 8.85176351129e-07 -3.40341398239e-07 0 1.46559820909e-06 -2.86449811726e-07 0 1.86279760544e-06 -1.5556152098e-07 0 1.65452862024e-06 -2.90756021593e-08 0 8.20091668537e-07 0 0 1.50608225863e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5.12142835562e-08 -8.07675924816e-08 -1.49108186279e-07 -2.71697124484e-07 -5.1084873401e-07 -8.06600363646e-07 -4.9580894024e-07 -1.21585590845e-06 -1.61296617484e-06 -5.86688943167e-07 -1.71407609448e-06 -1.80134290144e-06 -5.86579868622e-07 -1.85677789465e-06 -1.40713366866e-06 -5.86470794072e-07 -1.85677789465e-06 -8.3852546567e-07 -5.8636171956e-07 -1.85677789465e-06 -2.69917262654e-07 -5.86252645059e-07 -1.85677789464e-06 2.98690940345e-07 -5.86143570459e-07 -1.85677789464e-06 8.67299143353e-07 -5.86034495964e-07 -1.85677789464e-06 1.43590734634e-06 -4.95186077393e-07 -1.71055202302e-06 1.82798322273e-06 -2.71463455716e-07 -1.20972908404e-06 1.63213074049e-06 -5.12043228914e-08 -5.08328986283e-07 8.14844537588e-07 0 -8.06752005099e-08 1.50430130967e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.12762884431e-07 -3.36464272812e-07 -7.22482387167e-07 -8.45608558919e-07 -1.60431314397e-06 -3.16985891617e-06 -1.73886498837e-06 -3.61876249649e-06 -6.61033649189e-06 -2.47796905563e-06 -5.5240412098e-06 -8.8882623309e-06 -2.75943086346e-06 -6.63790716145e-06 -8.65853961535e-06 -2.75862710626e-06 -6.92958893996e-06 -6.54793620341e-06 -2.75782334905e-06 -6.92958893995e-06 -3.90566876691e-06 -2.75701959184e-06 -6.92958893995e-06 -1.26340133042e-06 -2.75621583464e-06 -6.92958893996e-06 1.37886610609e-06 -2.75541207744e-06 -6.92958893996e-06 4.0211335426e-06 -2.75460832029e-06 -6.92958893996e-06 6.6634009791e-06 -2.47232616586e-06 -6.60857833802e-06 8.76908378682e-06 -1.73431230396e-06 -5.45871520831e-06 8.98056117691e-06 -8.43507338819e-07 -3.56342963073e-06 6.67050719455e-06 -2.1256234141e-07 -1.58334830127e-06 3.19607893581e-06 0 -3.34864490153e-07 7.27946372826e-07 0 0 0 0 0 0 0 0 -2.12777208933e-07 -3.36464310204e-07 -8.26085812907e-07 -1.25027781893e-06 -1.99835440946e-06 -5.04814323983e-06 -2.97792923401e-06 -5.17601848284e-06 -1.27474641138e-05 -4.77350497814e-06 -8.81071873772e-06 -1.98164480576e-05 -6.08892264078e-06 -1.18245578289e-05 -2.2732108577e-05 -6.56670822626e-06 -1.34569491173e-05 -2.06716942664e-05 -6.56522073731e-06 -1.38591746399e-05 -1.53631818964e-05 -6.56373324835e-06 -1.38591746399e-05 -9.17764958814e-06 -6.56224575937e-06 -1.38591746399e-05 -2.99211727995e-06 -6.56075827041e-06 -1.38591746399e-05 3.19341502825e-06 -6.55927078143e-06 -1.38591746399e-05 9.37894733645e-06 -6.55778329248e-06 -1.38591746399e-05 1.55644796447e-05 -6.07795147535e-06 -1.33686842872e-05 2.08693323434e-05 -4.76302582772e-06 -1.16097403573e-05 2.29151945769e-05 -2.97061089308e-06 -8.586737227e-06 1.99653320393e-05 -1.24725352802e-06 -5.04196596789e-06 1.28408575418e-05 -2.12548016911e-07 -1.96134367382e-06 5.08408999847e-06 0 -3.34864527548e-07 8.31547163721e-07 0 0 -5.12167737101e-08 -8.07675940237e-08 -2.23993013521e-07 -1.00839017098e-06 -1.35014027947e-06 -4.12774832585e-06 -3.23450612174e-06 -4.79810126442e-06 -1.47230376633e-05 -6.05064852448e-06 -9.69615069777e-06 -2.79363599047e-05 -8.68575694234e-06 -1.46471865122e-05 -3.73530256378e-05 -1.05060639683e-05 -1.84305252398e-05 -3.9666331625e-05 -1.11471465189e-05 -2.03464492577e-05 -3.48429901436e-05 -1.11456622699e-05 -2.078875386e-05 -2.56718157396e-05 -1.11441780209e-05 -2.078875386e-05 -1.53625984507e-05 -1.11426937719e-05 -2.078875386e-05 -5.05338116185e-06 -1.1141209523e-05 -2.078875386e-05 5.25583612701e-06 -1.1139725274e-05 -2.078875386e-05 1.55650534159e-05 -1.11382410251e-05 -2.078875386e-05 2.58742707047e-05 -1.04946911616e-05 -2.01874628338e-05 3.50472983996e-05 -8.6737007312e-06 -1.80158622656e-05 3.98770742036e-05 -6.0406311971e-06 -1.41572440072e-05 3.75602634351e-05 -3.22867726211e-06 -9.33672601212e-06 2.81049860011e-05 -1.00666709644e-06 -4.6479391612e-06 1.48176577374e-05 -5.1201832727e-08 -1.3276521997e-06 4.15432932535e-06 -8.06752020555e-08 2.25314492444e-07 -3.23021238577e-07 -4.30174386872e-07 -1.41128385264e-06 -2.27945113425e-06 -2.79953790036e-06 -1.01855439254e-05 -5.56194469848e-06 -7.72648461481e-06 -2.72027127154e-05 -9.30564917662e-06 -1.38974060399e-05 -4.44370490552e-05 -1.25840268136e-05 -1.96406568191e-05 -5.4920315047e-05 -1.47037126263e-05 -2.36494703477e-05 -5.57284523902e-05 -1.54083065882e-05 -2.54801589149e-05 -4.78267231469e-05 -1.54075093109e-05 -2.58615519454e-05 -3.50132964265e-05 -1.54067120337e-05 -2.58615519454e-05 -2.09844508431e-05 -1.54059147565e-05 -2.58615519454e-05 -6.95560525977e-06 -1.54051174792e-05 -2.58615519454e-05 7.07324032359e-06 -1.5404320202e-05 -2.58615519454e-05 2.1102085907e-05 -1.54035229247e-05 -2.58615519454e-05 3.51309314903e-05 -1.46970833652e-05 -2.52970276628e-05 4.79522324781e-05 -1.25758326262e-05 -2.31037432789e-05 5.58857905114e-05 -9.29773550845e-06 -1.88982194298e-05 5.51211840301e-05 -5.55644476128e-06 -1.32718958753e-05 4.46462548583e-05 -2.27711588884e-06 -7.40749031161e-06 2.73554515252e-05 -3.22743896388e-07 -2.72415703639e-06 1.02477522312e-05 -4.27561539913e-07 1.41955713796e-06 -7.69840537965e-07 -7.88302609829e-07 -3.35867525625e-06 -3.51206587075e-06 -4.00981816769e-06 -1.68015857792e-05 -7.59551045495e-06 -9.87622795783e-06 -3.84181518822e-05 -1.19984870047e-05 -1.67686879573e-05 -5.81882687334e-05 -1.56128270294e-05 -2.27671603453e-05 -6.87302580866e-05 -1.76615745476e-05 -2.6402301518e-05 -6.74379425075e-05 -1.81845323325e-05 -2.75903043892e-05 -5.65261149745e-05 -1.8184426498e-05 -2.771832336e-05 -4.10050608578e-05 -1.81843206634e-05 -2.771832336e-05 -2.45970905871e-05 -1.81842148289e-05 -2.77183233601e-05 -8.1891203163e-06 -1.81841089943e-05 -2.771832336e-05 8.21884995446e-06 -1.81840031597e-05 -2.771832336e-05 2.46268202252e-05 -1.81838973252e-05 -2.771832336e-05 4.10347904959e-05 -1.76600570639e-05 -2.75216705008e-05 5.65633645885e-05 -1.56098846408e-05 -2.59069708042e-05 6.75149172835e-05 -1.19950149942e-05 -2.18936544819e-05 6.88846774652e-05 -7.59276371316e-06 -1.59431933085e-05 5.84005357034e-05 -3.51068678934e-06 -9.40752764548e-06 3.86073147347e-05 -7.69552126896e-07 -3.87512133204e-06 1.68982251681e-05 -7.79555933057e-07 3.37820790206e-06 -1.09063755966e-06 -9.34534299469e-07 -4.74949867234e-06 -4.27288210249e-06 -4.47357912067e-06 -2.10479210612e-05 -8.81253044729e-06 -1.06584703275e-05 -4.51493040737e-05 -1.35681915537e-05 -1.77722351194e-05 -6.62144194787e-05 -1.72529674393e-05 -2.37739777776e-05 -7.64200646487e-05 -1.89043974153e-05 -2.69803447061e-05 -7.31038163598e-05 -1.90588166408e-05 -2.771832336e-05 -5.97758929022e-05 -1.90588166408e-05 -4.28823374421e-05 -1.90588166408e-05 -2.57294024653e-05 -1.90588166408e-05 -8.5764674884e-06 -1.90588166409e-05 8.57646748846e-06 -1.90588166407e-05 2.57294024653e-05 -1.90588166408e-05 4.28823374422e-05 -1.8904375376e-05 -2.77183233601e-05 5.97780639342e-05 -1.72526981855e-05 -2.65995309773e-05 7.31350463938e-05 -1.35677892772e-05 -2.28763451835e-05 7.65364899721e-05 -8.81218159882e-06 -1.68759677479e-05 6.64175819961e-05 -4.27269219979e-06 -1.0130740319e-05 4.5353830241e-05 -1.09058976595e-06 -4.31302069945e-06 2.1164412091e-05 -9.22257380762e-07 4.77696279815e-06 -1.18500587242e-06 -9.34534299444e-07 -5.15572386647e-06 -4.48962619684e-06 -4.47357912066e-06 -2.22622018173e-05 -9.1626383255e-06 -1.06584703275e-05 -4.70654357309e-05 -1.40190354917e-05 -1.77722351194e-05 -6.85106832052e-05 -1.76904258045e-05 -2.37739777776e-05 -7.8550241283e-05 -1.90588166408e-05 -2.69803447061e-05 -7.4304168487e-05 -2.77183233601e-05 -6.0035272419e-05 -1.90588166409e-05 -2.77183233601e-05 6.00352724191e-05 -1.76904258045e-05 -2.65995309773e-05 7.43264407068e-05 -1.40190354917e-05 -2.28763451835e-05 7.86557679238e-05 -9.16263832562e-06 -1.68759677479e-05 6.87104397742e-05 -4.48962619682e-06 -1.01307403191e-05 4.72736295378e-05 -1.18500587243e-06 -4.31302069944e-06 2.23840528553e-05 -9.22257380745e-07 5.18548485502e-06 -1.18500587242e-06 -9.34534299439e-07 -5.15572386648e-06 -4.48962619684e-06 -4.47357912063e-06 -2.22622018173e-05 -9.16263832549e-06 -1.06584703276e-05 -4.70654357308e-05 -1.40190354916e-05 -1.77722351194e-05 -6.85106832052e-05 -1.76904258045e-05 -2.37739777776e-05 -7.8550241283e-05 -1.90588166408e-05 -2.69803447061e-05 -7.4304168487e-05 -2.771832336e-05 -6.0035272419e-05 -1.90588166409e-05 -2.771832336e-05 6.00352724191e-05 -1.76904258045e-05 -2.65995309773e-05 7.43264407068e-05 -1.40190354917e-05 -2.28763451835e-05 7.86557679238e-05 -9.1626383256e-06 -1.68759677479e-05 6.87104397743e-05 -4.48962619682e-06 -1.01307403191e-05 4.72736295378e-05 -1.18500587243e-06 -4.31302069943e-06 2.23840528553e-05 -9.22257380744e-07 5.18548485502e-06 -1.18500587242e-06 -9.34534299432e-07 -5.15572386648e-06 -4.48962619685e-06 -4.47357912066e-06 -2.22622018173e-05 -9.16263832549e-06 -1.06584703275e-05 -4.70654357308e-05 -1.40190354917e-05 -1.77722351194e-05 -6.85106832052e-05 -1.76904258045e-05 -2.37739777776e-05 -7.8550241283e-05 -1.90588166408e-05 -2.69803447061e-05 -7.4304168487e-05 -2.771832336e-05 -6.0035272419e-05 -1.90588166409e-05 -2.771832336e-05 6.00352724191e-05 -1.76904258045e-05 -2.65995309773e-05 7.43264407068e-05 -1.40190354917e-05 -2.28763451836e-05 7.86557679238e-05 -9.16263832564e-06 -1.6875967748e-05 6.87104397743e-05 -4.48962619681e-06 -1.01307403191e-05 4.72736295378e-05 -1.18500587242e-06 -4.31302069944e-06 2.23840528553e-05 -9.22257380736e-07 5.18548485502e-06 -1.18500587242e-06 -9.34534299482e-07 -5.15572386648e-06 -4.48962619684e-06 -4.47357912067e-06 -2.22622018173e-05 -9.16263832549e-06 -1.06584703275e-05 -4.70654357309e-05 -1.40190354916e-05 -1.77722351194e-05 -6.85106832052e-05 -1.76904258045e-05 -2.37739777776e-05 -7.8550241283e-05 -1.90588166408e-05 -2.69803447061e-05 -7.4304168487e-05 -2.771832336e-05 -6.0035272419e-05 -1.90588166409e-05 -2.77183233601e-05 6.00352724191e-05 -1.76904258045e-05 -2.65995309773e-05 7.43264407068e-05 -1.40190354918e-05 -2.28763451836e-05 7.86557679238e-05 -9.16263832563e-06 -1.6875967748e-05 6.87104397742e-05 -4.48962619679e-06 -1.01307403192e-05 4.72736295378e-05 -1.18500587247e-06 -4.31302069949e-06 2.23840528553e-05 -9.2225738078e-07 5.18548485503e-06 -1.09416172162e-06 -7.88302609762e-07 -4.75964337563e-06 -4.30221242522e-06 -4.00981816766e-06 -2.11604353294e-05 -8.90080197536e-06 -9.87622795787e-06 -4.55344013015e-05 -1.3727192176e-05 -1.67686879572e-05 -6.69317271939e-05 -1.74361145741e-05 -2.27671603453e-05 -7.72683703278e-05 -1.89730361383e-05 -2.64023015181e-05 -7.36304223005e-05 -1.90588166408e-05 -2.75903043892e-05 -5.98906622389e-05 -1.90588166408e-05 -2.77183233601e-05 -4.28823374421e-05 -1.90588166408e-05 -2.77183233601e-05 -2.57294024653e-05 -1.90588166408e-05 -2.77183233601e-05 -8.5764674884e-06 -1.90588166409e-05 -2.771832336e-05 8.57646748845e-06 -1.90588166407e-05 -2.771832336e-05 2.57294024653e-05 -1.90588166408e-05 -2.771832336e-05 4.28823374422e-05 -1.89730044297e-05 -2.75216705009e-05 5.98926683363e-05 -1.74358135548e-05 -2.59069708042e-05 7.36611984829e-05 -1.37267615026e-05 -2.18936544819e-05 7.73854070588e-05 -8.90043973109e-06 -1.59431933084e-05 6.71367346418e-05 -4.30201952391e-06 -9.4075276455e-06 4.5740531482e-05 -1.09411374691e-06 -3.87512133202e-06 2.12775051979e-05 -7.79555933017e-07 4.78716118149e-06 -7.75968200696e-07 -4.30174386843e-07 -3.37633491292e-06 -3.57740266584e-06 -2.79953790035e-06 -1.70410029628e-05 -7.8103664705e-06 -7.7264846148e-06 -3.93312895737e-05 -1.24132211217e-05 -1.38974060399e-05 -6.00133621673e-05 -1.61586309019e-05 -1.96406568191e-05 -7.11049566313e-05 -1.81569532407e-05 -2.36494703478e-05 -6.95559288789e-05 -1.85653702474e-05 -2.54801589149e-05 -5.79133561523e-05 -1.85652563508e-05 -2.58615519454e-05 -4.1857925373e-05 -1.85651424542e-05 -2.58615519454e-05 -2.51090558702e-05 -1.85650285577e-05 -2.58615519455e-05 -8.3601863675e-06 -1.85649146611e-05 -2.58615519454e-05 8.38868313521e-06 -1.85648007645e-05 -2.58615519455e-05 2.51375526379e-05 -1.85646868679e-05 -2.58615519454e-05 4.18864221407e-05 -1.81553397986e-05 -2.52970276628e-05 5.79493906329e-05 -1.6155534906e-05 -2.31037432789e-05 6.9632907197e-05 -1.24096068256e-05 -1.88982194298e-05 7.12628839064e-05 -7.80754264074e-06 -1.32718958753e-05 6.02313570729e-05 -3.57600199727e-06 -7.40749031161e-06 3.95245853556e-05 -7.75678112988e-07 -2.72415703633e-06 1.71389170774e-05 -4.27561539908e-07 3.3959610719e-06 -3.25541741398e-07 -8.07675940119e-08 -1.41855958316e-06 -2.33480461969e-06 -1.35014027944e-06 -1.03678318198e-05 -5.7860115882e-06 -4.79810126439e-06 -2.8100633709e-05 -9.7957629871e-06 -9.69615069775e-06 -4.65041708535e-05 -1.33266772531e-05 -1.46471865123e-05 -5.79704512745e-05 -1.55774046722e-05 -1.84305252399e-05 -5.90076588523e-05 -1.63060758016e-05 -2.03464492577e-05 -5.06236247258e-05 -1.63052329846e-05 -2.07887538599e-05 -3.70393841049e-05 -1.63043901676e-05 -2.07887538599e-05 -2.21996386126e-05 -1.63035473505e-05 -2.07887538599e-05 -7.35989312031e-06 -1.63027045335e-05 -2.07887538599e-05 7.47985237197e-06 -1.63018617165e-05 -2.07887538599e-05 2.23195978643e-05 -1.63010188995e-05 -2.07887538599e-05 3.71593433566e-05 -1.55704030462e-05 -2.01874628338e-05 5.075218627e-05 -1.33180569652e-05 -1.80158622657e-05 5.91706880541e-05 -9.7875067079e-06 -1.41572440072e-05 5.81801523862e-05 -5.78034089303e-06 -9.33672601208e-06 4.67219772124e-05 -2.33242813493e-06 -4.64793916118e-06 2.82580009921e-05 -3.25262889004e-07 -1.32765219967e-06 1.04310638329e-05 -8.06752020623e-08 1.42687145207e-06 -5.13091750448e-08 0 -2.24260234642e-07 -1.02936755228e-06 -3.3646431018e-07 -4.18549400581e-06 -3.36864498529e-06 -1.99835440951e-06 -1.52020844815e-05 -6.41029122186e-06 -5.1760184829e-06 -2.93555248691e-05 -9.31159292429e-06 -8.81071873772e-06 -3.97996773095e-05 -1.13319003406e-05 -1.18245578289e-05 -4.26343684841e-05 -1.2043689762e-05 -1.34569491174e-05 -3.75940410926e-05 -1.20421135558e-05 -1.38591746401e-05 -2.77228064005e-05 -1.20405373496e-05 -1.38591746401e-05 -1.65908759064e-05 -1.20389611434e-05 -1.38591746401e-05 -5.4589454124e-06 -1.20373849373e-05 -1.38591746401e-05 5.67298508163e-06 -1.2035808731e-05 -1.38591746401e-05 1.68049155757e-05 -1.20342325249e-05 -1.38591746401e-05 2.79368460697e-05 -1.13198440869e-05 -1.33686842873e-05 3.78102273801e-05 -9.29888507855e-06 -1.16097403574e-05 4.28576271889e-05 -6.39983787105e-06 -8.58673722697e-06 4.0018543703e-05 -3.36264342843e-06 -5.04196596798e-06 2.95318476053e-05 -1.02761940058e-06 -1.96134367386e-06 1.52995232965e-05 -5.12942153218e-08 -3.34864527513e-07 4.21241479981e-06 0 2.25583133323e-07 0 0 0 -2.14377589784e-07 0 -8.30191715946e-07 -1.28731975867e-06 -3.36464272817e-07 -5.1535294862e-06 -3.12822104624e-06 -1.60431314404e-06 -1.32696860076e-05 -5.09274752876e-06 -3.61876249652e-06 -2.09796318584e-05 -6.55792422014e-06 -5.52404120976e-06 -2.43580233906e-05 -7.09469466651e-06 -6.63790716147e-06 -2.22873251758e-05 -7.09312170034e-06 -6.92958893992e-06 -1.65905835568e-05 -7.09154873408e-06 -6.92958893991e-06 -9.91142317113e-06 -7.08997576788e-06 -6.92958893991e-06 -3.23226278552e-06 -7.08840280166e-06 -6.92958893995e-06 3.44689760006e-06 -7.0868298354e-06 -6.9295889399e-06 1.01260579857e-05 -7.08525686925e-06 -6.92958893993e-06 1.68052183713e-05 -6.54635052073e-06 -6.60857833804e-06 2.24979024389e-05 -5.08177188349e-06 -5.45871520831e-06 2.45523794303e-05 -3.12064328731e-06 -3.56342963073e-06 2.11362683397e-05 -1.2842330596e-06 -1.58334830135e-06 1.33665464922e-05 -2.14147201364e-07 -3.34864490197e-07 5.19016258961e-06 0 0 8.35677576471e-07 0 0 0 0 0 0 0 0 -2.14363190517e-07 0 -7.26073520475e-07 -8.68116031105e-07 -8.07675925425e-08 -3.22895944953e-06 -1.8143144651e-06 -5.10848734006e-07 -6.84512821932e-06 -2.61277269017e-06 -1.21585590842e-06 -9.32140765279e-06 -2.92008702428e-06 -1.71407609455e-06 -9.14269441988e-06 -2.91925068723e-06 -1.85677789469e-06 -6.92683712088e-06 -2.91841435016e-06 -1.85677789468e-06 -4.13184048012e-06 -2.91757801309e-06 -1.85677789466e-06 -1.33684383939e-06 -2.916741676e-06 -1.85677789468e-06 1.45815280134e-06 -2.91590533891e-06 -1.85677789467e-06 4.25314944207e-06 -2.91506900189e-06 -1.8567778947e-06 7.04814608283e-06 -2.60691620265e-06 -1.71055202301e-06 9.25867286923e-06 -1.80962455522e-06 -1.20972908401e-06 9.41770986808e-06 -8.65976026137e-07 -5.08328986259e-07 6.9072277912e-06 -2.14161600676e-07 -8.06752005468e-08 3.25562584031e-06 0 0 7.31562015835e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5.13066817585e-08 0 -1.49286097096e-07 -2.74310751232e-07 0 -8.11826213156e-07 -5.04559427e-07 0 -1.63519093496e-06 -5.98970608074e-07 0 -1.83579636711e-06 -5.98859951445e-07 0 -1.43640042413e-06 -5.98749294866e-07 0 -8.55978566167e-07 -5.98638638235e-07 0 -2.75556708201e-07 -5.98527981697e-07 0 3.04865149789e-07 -5.98417325044e-07 0 8.85287007745e-07 -5.98306668495e-07 0 1.46570886573e-06 -5.03928944196e-07 0 1.86289461473e-06 -2.74075522867e-07 0 1.65459525476e-06 -5.1296708667e-08 0 8.20119044984e-07 0 0 1.50609461503e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -7.33956965715e-08 -8.07874392225e-08 -1.49106930148e-07 -3.89090688672e-07 -5.11389106127e-07 -8.06572561724e-07 -7.09544459071e-07 -1.21716749654e-06 -1.61289888824e-06 -8.39403700031e-07 -1.71482954448e-06 -1.80124639031e-06 -8.39294625476e-07 -1.85677789464e-06 -1.40702459412e-06 -8.39185550925e-07 -1.85677789465e-06 -8.38416391115e-07 -8.3907647641e-07 -1.85677789464e-06 -2.69808188127e-07 -8.38967401915e-07 -1.85677789465e-06 2.98800014878e-07 -8.38858327343e-07 -1.85677789465e-06 8.67408217876e-07 -8.38749252877e-07 -1.85677789464e-06 1.43601642089e-06 -7.08921596159e-07 -1.70979857302e-06 1.82807890893e-06 -3.88857019898e-07 -1.20841749595e-06 1.63219657972e-06 -7.33857359443e-08 -5.07788614167e-07 8.14871736271e-07 0 -8.06553537696e-08 1.50431365232e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3.04739300667e-07 -3.36807452639e-07 -7.22460699309e-07 -1.20904759651e-06 -1.60879149958e-06 -3.16964376287e-06 -2.48244005128e-06 -3.63051831224e-06 -6.60980607158e-06 -3.53374822787e-06 -5.53784887431e-06 -8.88753400739e-06 -3.9337719463e-06 -6.6440872533e-06 -8.65776017697e-06 -3.93296818912e-06 -6.92958893996e-06 -6.54713244621e-06 -3.9321644319e-06 -6.92958893995e-06 -3.90486500971e-06 -3.9313606747e-06 -6.92958893995e-06 -1.26259757319e-06 -3.93055691755e-06 -6.92958893996e-06 1.3796698633e-06 -3.92975316025e-06 -6.92958893995e-06 4.02193729979e-06 -3.9289494031e-06 -6.92958893995e-06 6.6642047363e-06 -3.52810533801e-06 -6.60239824617e-06 8.76985287067e-06 -2.47788736689e-06 -5.4449075438e-06 8.98126726712e-06 -1.20694637647e-06 -3.55167381498e-06 6.67102043206e-06 -3.04538757635e-07 -1.57886994567e-06 3.19628858669e-06 0 -3.34521310321e-07 7.27967674441e-07 0 0 0 0 0 0 0 0 -3.04753625174e-07 -3.36807490038e-07 -8.26064125037e-07 -1.7869121335e-06 -2.00624513143e-06 -5.04773660964e-06 -4.24516628261e-06 -5.20434967711e-06 -1.27462951122e-05 -6.78779510082e-06 -8.85759208071e-06 -1.98148058803e-05 -8.64308377511e-06 -1.18691443782e-05 -2.27304488579e-05 -9.31583369651e-06 -1.34751845107e-05 -2.06701923774e-05 -9.31434620759e-06 -1.38591746399e-05 -1.53616944074e-05 -9.31285871863e-06 -1.38591746399e-05 -9.1761620992e-06 -9.31137122965e-06 -1.38591746399e-05 -2.99062979097e-06 -9.30988374071e-06 -1.385917464e-05 3.19490251721e-06 -9.30839625166e-06 -1.38591746399e-05 9.3804348254e-06 -9.30690876272e-06 -1.38591746399e-05 1.55659671336e-05 -8.63211260968e-06 -1.33504488938e-05 2.08707948159e-05 -6.77731595036e-06 -1.15651538079e-05 2.29167598005e-05 -4.2378479417e-06 -8.53986388401e-06 1.99668793392e-05 -1.78388784259e-06 -5.01363477362e-06 1.28419745553e-05 -3.045244331e-07 -1.95345295186e-06 5.08448498837e-06 0 -3.34521347713e-07 8.31568465342e-07 0 0 -7.33981867376e-08 -8.07874407724e-08 -2.23991757372e-07 -1.44227089827e-06 -1.35494196776e-06 -4.12745041597e-06 -4.61132179466e-06 -4.82984481773e-06 -1.47215544884e-05 -8.59300736633e-06 -9.77113021274e-06 -2.7933817452e-05 -1.2293025948e-05 -1.47480393828e-05 -3.73503400567e-05 -1.48356374234e-05 -1.85150025247e-05 -3.96641994611e-05 -1.57290208694e-05 -2.03786601984e-05 -3.48414089777e-05 -1.57275366205e-05 -2.078875386e-05 -2.56703314906e-05 -1.57260523715e-05 -2.078875386e-05 -1.53611142017e-05 -1.57245681225e-05 -2.078875386e-05 -5.05189691289e-06 -1.57230838735e-05 -2.07887538599e-05 5.25732037596e-06 -1.57215996245e-05 -2.078875386e-05 1.55665376648e-05 -1.57201153756e-05 -2.078875386e-05 2.58757549537e-05 -1.48242646167e-05 -2.01552518931e-05 3.50487966723e-05 -1.22809697368e-05 -1.79313849807e-05 3.9878993071e-05 -8.58299003891e-06 -1.40563911366e-05 3.75627017363e-05 -4.60549293503e-06 -9.26174649714e-06 2.81073531615e-05 -1.44054782374e-06 -4.61619560789e-06 1.48190742786e-05 -7.33832458091e-08 -1.3228505114e-06 4.15461963739e-06 -8.06553553193e-08 2.25315726724e-07 -4.62635909952e-07 -4.30734605721e-07 -1.41124713976e-06 -3.2553734851e-06 -2.81555502686e-06 -1.0184528563e-05 -7.90752708325e-06 -7.79334565589e-06 -2.71998876253e-05 -1.31659104831e-05 -1.40263650302e-05 -4.44332974505e-05 -1.77330667905e-05 -1.97913890496e-05 -5.49171509891e-05 -2.06695247568e-05 -2.37590520313e-05 -5.57265882537e-05 -2.16433490695e-05 -2.55167332208e-05 -4.78257594096e-05 -2.16425517923e-05 -2.58615519454e-05 -3.50124991493e-05 -2.1641754515e-05 -2.58615519454e-05 -2.09836535659e-05 -2.16409572378e-05 -2.58615519454e-05 -6.95480798254e-06 -2.16401599606e-05 -2.58615519454e-05 7.07403760082e-06 -2.16393626833e-05 -2.58615519454e-05 2.11028831842e-05 -2.16385654061e-05 -2.58615519454e-05 3.51317287676e-05 -2.06628954956e-05 -2.5260453357e-05 4.79530825392e-05 -1.77248726032e-05 -2.29941615953e-05 5.58873336441e-05 -1.31579968149e-05 -1.87474871992e-05 5.51239255689e-05 -7.90202714604e-06 -1.3142936885e-05 4.46496548473e-05 -3.25303823964e-06 -7.34062927053e-06 2.73581028788e-05 -4.6235856772e-07 -2.7081399099e-06 1.02487316563e-05 -4.27001321033e-07 1.41959307578e-06 -1.10209007428e-06 -7.9017441663e-07 -3.35852098443e-06 -5.00858272401e-06 -4.03833135721e-06 -1.67997492986e-05 -1.07735572518e-05 -9.97386781825e-06 -3.84141956981e-05 -1.69260374524e-05 -1.69375376026e-05 -5.81837779935e-05 -2.1932645444e-05 -2.29429969577e-05 -6.87271824695e-05 -2.47563268082e-05 -2.65010058303e-05 -6.74367796413e-05 -2.54769635638e-05 -2.76039297563e-05 -5.65258796497e-05 -2.54768577293e-05 -2.771832336e-05 -4.10049550233e-05 -2.54767518947e-05 -2.771832336e-05 -2.45969847525e-05 -2.54766460601e-05 -2.77183233601e-05 -8.18901448175e-06 -2.54765402257e-05 -2.771832336e-05 8.21895578899e-06 -2.54764343911e-05 -2.771832336e-05 2.46269260597e-05 -2.54763285565e-05 -2.77183233601e-05 4.10348963305e-05 -2.47548093245e-05 -2.75080451337e-05 5.6563515641e-05 -2.19297030554e-05 -2.58082664919e-05 6.75157381334e-05 -1.69225654419e-05 -2.17178178695e-05 6.88872089424e-05 -1.077081051e-05 -1.57743436632e-05 5.84045128558e-05 -5.00720364264e-06 -9.30988778506e-06 3.86109770705e-05 -1.10180166312e-06 -3.84660814255e-06 1.68999809769e-05 -7.77684126222e-07 3.37835817694e-06 -1.56083149683e-06 -9.37159556125e-07 -4.74921273307e-06 -6.08832980936e-06 -4.50751894383e-06 -2.10455559377e-05 -1.24832976269e-05 -1.07681654558e-05 -4.51447105346e-05 -1.91101155691e-05 -1.79550602761e-05 -6.62096176583e-05 -2.41991604705e-05 -2.39541777574e-05 -7.6417236783e-05 -2.64696500878e-05 -2.7056100091e-05 -7.31031959316e-05 -2.6682343297e-05 -2.77183233601e-05 -5.97758766608e-05 -2.66823432971e-05 -4.28823374422e-05 -2.66823432971e-05 -2.57294024653e-05 -2.66823432971e-05 -8.57646748845e-06 -2.66823432972e-05 8.57646748843e-06 -2.6682343297e-05 2.57294024653e-05 -2.66823432971e-05 4.28823374422e-05 -2.64696280485e-05 -2.77183233601e-05 5.97780582953e-05 -2.41988912167e-05 -2.65237755924e-05 7.31353858009e-05 -1.91097132926e-05 -2.26961452038e-05 7.65387305114e-05 -1.24829487785e-05 -1.66931425912e-05 6.64217791362e-05 -6.08813990664e-06 -1.00210451907e-05 4.53580520189e-05 -1.56078370302e-06 -4.2790808763e-06 2.1166662377e-05 -9.19632124118e-07 4.77724085455e-06 -1.69568596111e-06 -9.37159556097e-07 -5.15538962253e-06 -6.3955100959e-06 -4.5075189438e-06 -2.22596791198e-05 -1.29744052294e-05 -1.07681654558e-05 -4.70606482279e-05 -1.97366836119e-05 -1.79550602761e-05 -6.85057784199e-05 -2.48032741581e-05 -2.39541777574e-05 -7.85474846791e-05 -2.6682343297e-05 -2.7056100091e-05 -7.43037176191e-05 -2.771832336e-05 -6.0035272419e-05 -2.66823432972e-05 -2.771832336e-05 6.0035272419e-05 -2.48032741582e-05 -2.65237755924e-05 7.43266490323e-05 -1.97366836119e-05 -2.26961452038e-05 7.86579316028e-05 -1.29744052295e-05 -1.66931425912e-05 6.87147163546e-05 -6.3955100959e-06 -1.00210451908e-05 4.72780234005e-05 -1.69568596107e-06 -4.27908087627e-06 2.23864504406e-05 -9.19632124108e-07 5.18580980447e-06 -1.69568596111e-06 -9.37159556095e-07 -5.15538962253e-06 -6.3955100959e-06 -4.50751894382e-06 -2.22596791198e-05 -1.29744052294e-05 -1.07681654558e-05 -4.70606482279e-05 -1.97366836119e-05 -1.79550602761e-05 -6.85057784199e-05 -2.48032741581e-05 -2.39541777574e-05 -7.85474846791e-05 -2.6682343297e-05 -2.7056100091e-05 -7.43037176191e-05 -2.77183233601e-05 -6.0035272419e-05 -2.66823432972e-05 -2.771832336e-05 6.0035272419e-05 -2.48032741581e-05 -2.65237755924e-05 7.43266490322e-05 -1.97366836119e-05 -2.26961452038e-05 7.86579316028e-05 -1.29744052295e-05 -1.66931425912e-05 6.87147163546e-05 -6.39551009587e-06 -1.00210451908e-05 4.72780234005e-05 -1.69568596106e-06 -4.2790808763e-06 2.23864504406e-05 -9.19632124078e-07 5.18580980449e-06 -1.69568596112e-06 -9.37159556099e-07 -5.15538962253e-06 -6.3955100959e-06 -4.50751894383e-06 -2.22596791198e-05 -1.29744052294e-05 -1.07681654558e-05 -4.70606482279e-05 -1.97366836119e-05 -1.79550602761e-05 -6.85057784199e-05 -2.48032741581e-05 -2.39541777574e-05 -7.85474846791e-05 -2.6682343297e-05 -2.7056100091e-05 -7.43037176191e-05 -2.77183233601e-05 -6.0035272419e-05 -2.66823432972e-05 -2.77183233601e-05 6.0035272419e-05 -2.48032741581e-05 -2.65237755924e-05 7.43266490323e-05 -1.97366836119e-05 -2.26961452038e-05 7.86579316028e-05 -1.29744052296e-05 -1.66931425912e-05 6.87147163546e-05 -6.39551009587e-06 -1.00210451908e-05 4.72780234005e-05 -1.69568596108e-06 -4.27908087627e-06 2.23864504406e-05 -9.19632124095e-07 5.18580980449e-06 -1.69568596112e-06 -9.37159556158e-07 -5.15538962254e-06 -6.3955100959e-06 -4.50751894387e-06 -2.22596791198e-05 -1.29744052294e-05 -1.07681654559e-05 -4.70606482279e-05 -1.97366836119e-05 -1.79550602761e-05 -6.85057784199e-05 -2.48032741581e-05 -2.39541777574e-05 -7.85474846791e-05 -2.6682343297e-05 -2.7056100091e-05 -7.43037176191e-05 -2.77183233601e-05 -6.0035272419e-05 -2.66823432972e-05 -2.771832336e-05 6.0035272419e-05 -2.48032741582e-05 -2.65237755925e-05 7.43266490322e-05 -1.9736683612e-05 -2.26961452039e-05 7.86579316028e-05 -1.29744052296e-05 -1.66931425913e-05 6.87147163546e-05 -6.39551009586e-06 -1.00210451908e-05 4.72780234005e-05 -1.6956859611e-06 -4.27908087629e-06 2.23864504406e-05 -9.19632124152e-07 5.18580980449e-06 -1.56586255879e-06 -7.90174416576e-07 -4.75935683242e-06 -6.13002031579e-06 -4.03833135715e-06 -2.1158058028e-05 -1.26080399418e-05 -9.97386781825e-06 -4.55297702459e-05 -1.93335380728e-05 -1.69375376025e-05 -6.69268811832e-05 -2.4455456217e-05 -2.29429969576e-05 -7.72655320253e-05 -2.65655395451e-05 -2.65010058304e-05 -7.36298255335e-05 -2.66823432971e-05 -2.76039297563e-05 -5.98906465224e-05 -2.66823432971e-05 -2.77183233601e-05 -4.28823374422e-05 -2.66823432971e-05 -2.771832336e-05 -2.57294024653e-05 -2.66823432971e-05 -2.77183233601e-05 -8.57646748844e-06 -2.66823432972e-05 -2.771832336e-05 8.57646748842e-06 -2.66823432971e-05 -2.771832336e-05 2.57294024653e-05 -2.66823432971e-05 -2.771832336e-05 4.28823374422e-05 -2.65655078365e-05 -2.75080451337e-05 5.98926621727e-05 -2.44551551977e-05 -2.58082664919e-05 7.36615143188e-05 -1.93331073994e-05 -2.17178178695e-05 7.73876580479e-05 -1.26076776975e-05 -1.57743436631e-05 6.71409756866e-05 -6.12982741449e-06 -9.30988778509e-06 4.57447905186e-05 -1.56581458399e-06 -3.84660814249e-06 2.1279767601e-05 -7.77684126168e-07 4.78743984068e-06 -1.11084091318e-06 -4.30734605678e-07 -3.37617985044e-06 -5.10153484812e-06 -2.8155550268e-06 -1.70391414762e-05 -1.10775863661e-05 -7.7933456559e-06 -3.93272433579e-05 -1.75097261392e-05 -1.40263650302e-05 -6.0008746714e-05 -2.26976126836e-05 -1.97913890496e-05 -7.1101812934e-05 -2.54491141258e-05 -2.37590520313e-05 -6.9554770794e-05 -2.60093122485e-05 -2.55167332208e-05 -5.79131182917e-05 -2.60091983519e-05 -2.58615519455e-05 -4.18578114764e-05 -2.60090844553e-05 -2.58615519455e-05 -2.51089419737e-05 -2.60089705587e-05 -2.58615519455e-05 -8.36007247094e-06 -2.60088566622e-05 -2.58615519454e-05 8.38879703177e-06 -2.60087427655e-05 -2.58615519454e-05 2.51376665345e-05 -2.60086288689e-05 -2.58615519455e-05 4.18865360373e-05 -2.54475006838e-05 -2.5260453357e-05 5.79495441313e-05 -2.26945166878e-05 -2.29941615953e-05 6.96337232656e-05 -1.75061118431e-05 -1.87474871992e-05 7.12654833233e-05 -1.10747625363e-05 -1.3142936885e-05 6.02354583053e-05 -5.10013417958e-06 -7.34062927051e-06 3.95283372249e-05 -1.11055082543e-06 -2.70813990984e-06 1.71406977929e-05 -4.27001321e-07 3.3961121365e-06 -4.66237157007e-07 -8.07874407791e-08 -1.41852269466e-06 -3.33423860206e-06 -1.35494196778e-06 -1.03667992918e-05 -8.22534065895e-06 -4.82984481767e-06 -2.80977199494e-05 -1.38577300348e-05 -9.77113021268e-06 -4.65002603002e-05 -1.87771816913e-05 -1.47480393828e-05 -5.79671441675e-05 -2.18948900274e-05 -1.85150025247e-05 -5.90057178955e-05 -2.29015182425e-05 -2.03786601984e-05 -5.06226134475e-05 -2.29006754255e-05 -2.07887538599e-05 -3.70385412879e-05 -2.28998326084e-05 -2.07887538599e-05 -2.21987957956e-05 -2.28989897914e-05 -2.07887538599e-05 -7.3590503033e-06 -2.28981469744e-05 -2.07887538599e-05 7.48069518897e-06 -2.28973041573e-05 -2.07887538599e-05 2.23204406813e-05 -2.28964613403e-05 -2.07887538599e-05 3.71601861736e-05 -2.18878884014e-05 -2.01552518931e-05 5.07530838591e-05 -1.87685614034e-05 -1.79313849808e-05 5.91723081478e-05 -1.38494737556e-05 -1.40563911366e-05 5.81830369741e-05 -8.21966996377e-06 -9.2617464971e-06 4.67255357459e-05 -3.33186211729e-06 -4.61619560782e-06 2.82607407186e-05 -4.65958304666e-07 -1.32285051132e-06 1.04320603835e-05 -8.06553553018e-08 1.42690756545e-06 -7.35302815498e-08 0 -2.24258977171e-07 -1.47220499077e-06 -3.36807490039e-07 -4.18519209367e-06 -4.80212304676e-06 -2.00624513147e-06 -1.52005560641e-05 -9.10260909363e-06 -5.20434967714e-06 -2.93528650187e-05 -1.31767799105e-05 -8.85759208067e-06 -3.97968423702e-05 -1.59991730864e-05 -1.18691443782e-05 -4.26321119939e-05 -1.69912144259e-05 -1.34751845108e-05 -3.75923653829e-05 -1.69896382198e-05 -1.38591746401e-05 -2.77212301943e-05 -1.69880620135e-05 -1.38591746401e-05 -1.65892997003e-05 -1.69864858074e-05 -1.38591746401e-05 -5.45736920622e-06 -1.69849096012e-05 -1.38591746401e-05 5.67456128784e-06 -1.6983333395e-05 -1.38591746401e-05 1.68064917819e-05 -1.69817571888e-05 -1.38591746401e-05 2.79384222759e-05 -1.59871168326e-05 -1.33504488939e-05 3.78118204822e-05 -1.31640720648e-05 -1.1565153808e-05 4.28596710159e-05 -9.0921557428e-06 -8.53986388399e-06 4.00211317666e-05 -4.79612148991e-06 -5.01363477368e-06 2.95343321635e-05 -1.4704568391e-06 -1.95345295191e-06 1.53009850261e-05 -7.35153218566e-08 -3.34521347715e-07 4.21270911118e-06 0 2.25584368928e-07 0 0 0 -3.07040365685e-07 0 -8.30169931896e-07 -1.83973551716e-06 -3.36807452643e-07 -5.15311466877e-06 -4.45894520148e-06 -1.60879149964e-06 -1.32684739761e-05 -7.24075973358e-06 -3.63051831228e-06 -2.09779087773e-05 -9.30736507529e-06 -5.53784887428e-06 -2.43562725162e-05 -1.00632103934e-05 -6.64408725333e-06 -2.22857389184e-05 -1.00616374272e-05 -6.92958893991e-06 -1.65890105905e-05 -1.0060064461e-05 -6.92958893992e-06 -9.90985020492e-06 -1.00584914947e-05 -6.92958893995e-06 -3.23068981931e-06 -1.00569185285e-05 -6.9295889399e-06 3.44847056629e-06 -1.00553455623e-05 -6.92958893994e-06 1.01276309519e-05 -1.00537725961e-05 -6.92958893988e-06 1.68067913375e-05 -9.29579137587e-06 -6.60239824618e-06 2.24994495375e-05 -7.2297840883e-06 -5.4449075438e-06 2.45540363074e-05 -4.45136744248e-06 -3.551673815e-06 2.11378968399e-05 -1.83664881806e-06 -1.57886994574e-06 1.33677065897e-05 -3.06809977243e-07 -3.34521310358e-07 5.19056576677e-06 0 0 8.35698974243e-07 0 0 0 0 0 0 0 0 -3.07025966416e-07 0 -7.26051736436e-07 -1.24115844528e-06 -8.07874392432e-08 -3.22874042555e-06 -2.58992378099e-06 -5.11389106141e-07 -6.84458185577e-06 -3.72557824143e-06 -1.21716749651e-06 -9.3206523554e-06 -4.16230775348e-06 -1.71482954452e-06 -9.14188424781e-06 -4.16147141644e-06 -1.85677789467e-06 -6.92600078378e-06 -4.16063507932e-06 -1.85677789465e-06 -4.13100414305e-06 -4.15979874226e-06 -1.85677789461e-06 -1.33600750232e-06 -4.15896240524e-06 -1.85677789468e-06 1.45898913842e-06 -4.15812606811e-06 -1.85677789467e-06 4.25398577915e-06 -4.15728973106e-06 -1.85677789466e-06 7.0489824199e-06 -3.71972175383e-06 -1.70979857308e-06 9.2594727476e-06 -2.5852338711e-06 -1.2084174959e-06 9.41844303148e-06 -1.23901844029e-06 -5.07788614166e-07 6.90775701194e-06 -3.06824376599e-07 -8.06553538171e-08 3.25583936483e-06 0 0 7.31583413634e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -7.35277882587e-08 0 -1.49284839599e-07 -3.9282475315e-07 0 -8.11798236756e-07 -7.2203855946e-07 0 -1.6351228569e-06 -8.5693587825e-07 0 -1.8356985337e-06 -8.56825221631e-07 0 -1.43628976751e-06 -8.56714565039e-07 0 -8.55867909541e-07 -8.56603908458e-07 0 -2.75446051582e-07 -8.56493251854e-07 0 3.04975806394e-07 -8.56382595247e-07 0 8.85397664355e-07 -8.56271938641e-07 0 1.46581952234e-06 -7.21408076652e-07 0 1.86299162433e-06 -3.92589524789e-07 0 1.65466188642e-06 -7.35178151575e-08 0 8.20146418235e-07 0 0 1.50610697106e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -9.55771096138e-08 -8.08072859653e-08 -1.49105674001e-07 -5.06484252863e-07 -5.11929478259e-07 -8.06544756586e-07 -9.2327997796e-07 -1.21847908466e-06 -1.61283159852e-06 -1.09211845697e-06 -1.71558299453e-06 -1.80114987919e-06 -1.09200938241e-06 -1.8567778947e-06 -1.40691551961e-06 -1.0919003079e-06 -1.8567778947e-06 -8.38307316599e-07 -1.09179123332e-06 -1.8567778947e-06 -2.69699113607e-07 -1.09168215885e-06 -1.8567778947e-06 2.98909089451e-07 -1.09157308425e-06 -1.8567778947e-06 8.67517292426e-07 -1.09146400978e-06 -1.8567778947e-06 1.43612549541e-06 -9.22657115076e-07 -1.70904512307e-06 1.82817459511e-06 -5.06250584107e-07 -1.2071059079e-06 1.63226241581e-06 -9.55671490004e-08 -5.07248242061e-07 8.14898931733e-07 0 -8.06355070308e-08 1.50432599423e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3.96715716926e-07 -3.37150632491e-07 -7.22439008519e-07 -1.57248663419e-06 -1.61326985522e-06 -3.16942854404e-06 -3.22601511427e-06 -3.64227412811e-06 -6.60927545449e-06 -4.58952740025e-06 -5.55165653899e-06 -8.88680547793e-06 -5.10811302935e-06 -6.65026734535e-06 -8.65698065931e-06 -5.10730927215e-06 -6.92958894016e-06 -6.54632868904e-06 -5.10650551494e-06 -6.92958894017e-06 -3.90406125253e-06 -5.10570175771e-06 -6.92958894016e-06 -1.26179381602e-06 -5.10489800056e-06 -6.92958894016e-06 1.3804736205e-06 -5.1040942433e-06 -6.92958894016e-06 4.02274105701e-06 -5.1032904862e-06 -6.92958894016e-06 6.66500849353e-06 -4.58388451041e-06 -6.59621815452e-06 8.77062187513e-06 -3.22146242991e-06 -5.43109987945e-06 8.98197315143e-06 -1.5703854141e-06 -3.53991799933e-06 6.67153347278e-06 -3.96515173888e-07 -1.57439159011e-06 3.19649817199e-06 0 -3.34178130494e-07 7.27988973149e-07 0 0 0 0 0 0 0 0 -3.96730041428e-07 -3.37150669878e-07 -8.26042434283e-07 -2.32354644814e-06 -2.01413585345e-06 -5.04732976461e-06 -5.51240333142e-06 -5.23268087153e-06 -1.27451251997e-05 -8.80208522379e-06 -8.90446542398e-06 -1.98131625014e-05 -1.11972449099e-05 -1.19137309279e-05 -2.27287883484e-05 -1.20649591672e-05 -1.34934199045e-05 -2.06686902506e-05 -1.20634716782e-05 -1.38591746404e-05 -1.53602069185e-05 -1.20619841893e-05 -1.38591746404e-05 -9.17467461029e-06 -1.20604967003e-05 -1.38591746404e-05 -2.98914230209e-06 -1.20590092114e-05 -1.38591746404e-05 3.19639000615e-06 -1.20575217223e-05 -1.38591746404e-05 9.38192231433e-06 -1.20560342335e-05 -1.38591746404e-05 1.55674546225e-05 -1.11862737444e-05 -1.33322135007e-05 2.08722570508e-05 -8.79160607337e-06 -1.15205672589e-05 2.29183242337e-05 -5.50508499054e-06 -8.49299054127e-06 1.99684254375e-05 -2.32052215723e-06 -4.9853035795e-06 1.28430906576e-05 -3.96500849383e-07 -1.94556222995e-06 5.08487976346e-06 0 -3.34178167895e-07 8.31589764012e-07 0 0 -9.55795997667e-08 -8.0807287508e-08 -2.23990501233e-07 -1.87615162562e-06 -1.35974365609e-06 -4.12715235326e-06 -5.98813746778e-06 -4.86158837119e-06 -1.47200697844e-05 -1.11353662085e-05 -9.84610972803e-06 -2.79312720162e-05 -1.59002949543e-05 -1.48488922539e-05 -3.73476519597e-05 -1.91652108792e-05 -1.85994798102e-05 -3.96620662067e-05 -2.03108952206e-05 -2.04108711397e-05 -3.48398275845e-05 -2.03094109716e-05 -2.07887538606e-05 -2.56688472417e-05 -2.03079267226e-05 -2.07887538606e-05 -1.53596299528e-05 -2.03064424737e-05 -2.07887538606e-05 -5.05041266393e-06 -2.03049582247e-05 -2.07887538606e-05 5.25880462493e-06 -2.03034739757e-05 -2.07887538606e-05 1.55680219138e-05 -2.03019897267e-05 -2.07887538606e-05 2.58772392027e-05 -1.91538380726e-05 -2.0123040953e-05 3.50502947176e-05 -1.58882387431e-05 -1.78469076964e-05 3.98809108479e-05 -1.11253488812e-05 -1.39555382664e-05 3.75651375216e-05 -5.98230860817e-06 -9.18676698243e-06 2.81097173387e-05 -1.87442855106e-06 -4.58445205471e-06 1.48204892905e-05 -9.55646587887e-08 -1.31804882315e-06 4.1549097966e-06 -8.06355085731e-08 2.25316960919e-07 -6.02250581348e-07 -4.31294824599e-07 -1.4112104201e-06 -4.2312958361e-06 -2.83157215344e-06 -1.01835122533e-05 -1.02531094683e-05 -7.86020669721e-06 -2.71970585064e-05 -1.70261717902e-05 -1.41553240209e-05 -4.44295405891e-05 -2.28821067683e-05 -1.99421212808e-05 -5.4913984047e-05 -2.66353368881e-05 -2.38686337155e-05 -5.57247235413e-05 -2.78783915518e-05 -2.55533075274e-05 -4.78247956095e-05 -2.78775942746e-05 -2.58615519462e-05 -3.50117018721e-05 -2.78767969973e-05 -2.58615519462e-05 -2.09828562887e-05 -2.78759997201e-05 -2.58615519462e-05 -6.95401070535e-06 -2.78752024429e-05 -2.58615519462e-05 7.07483487802e-06 -2.78744051656e-05 -2.58615519462e-05 2.11036804614e-05 -2.78736078884e-05 -2.58615519462e-05 3.51325260448e-05 -2.6628707627e-05 -2.52238790519e-05 4.79539325377e-05 -2.2873912581e-05 -2.28845799125e-05 5.58888762011e-05 -1.7018258122e-05 -1.85967549692e-05 5.51266642235e-05 -1.02476095312e-05 -1.30139778951e-05 4.46530495797e-05 -4.22896059067e-06 -7.27376822966e-06 2.73607502036e-05 -6.0197323919e-07 -2.69212278349e-06 1.02497101342e-05 -4.26441102205e-07 1.41962900679e-06 -1.43433961063e-06 -7.92046223476e-07 -3.35836665391e-06 -6.5050995775e-06 -4.06684454682e-06 -1.67979105213e-05 -1.39516040491e-05 -1.0071507679e-05 -3.84102328798e-05 -2.18535879009e-05 -1.71063872484e-05 -5.81792807107e-05 -2.82524638596e-05 -2.31188335708e-05 -6.87241049767e-05 -3.18510790698e-05 -2.65997101434e-05 -6.74356171892e-05 -3.27693947962e-05 -2.76175551243e-05 -5.65256441562e-05 -3.27692889617e-05 -2.77183233609e-05 -4.10048491887e-05 -3.27691831271e-05 -2.77183233609e-05 -2.4596878918e-05 -3.27690772925e-05 -2.77183233609e-05 -8.18890864725e-06 -3.27689714581e-05 -2.77183233609e-05 8.21906162354e-06 -3.27688656234e-05 -2.77183233609e-05 2.46270318943e-05 -3.27687597889e-05 -2.77183233609e-05 4.10350021651e-05 -3.18495615862e-05 -2.74944197674e-05 5.65636665249e-05 -2.8249521471e-05 -2.57095621804e-05 6.75165593973e-05 -2.18501158904e-05 -2.15419812578e-05 6.88897385439e-05 -1.39488573074e-05 -1.56054940183e-05 5.84084834652e-05 -6.50372049614e-06 -9.21224792494e-06 3.86146327721e-05 -1.43405119951e-06 -3.81809495317e-06 1.69017344889e-05 -7.75812319424e-07 3.37850839308e-06 -2.03102543407e-06 -9.39784812821e-07 -4.74892664732e-06 -7.90377751649e-06 -4.54145876713e-06 -2.10431874647e-05 -1.61540648072e-05 -1.08778605845e-05 -4.51401087655e-05 -2.46520395854e-05 -1.81378854333e-05 -6.62048090047e-05 -3.11453535028e-05 -2.41343777379e-05 -7.6414408435e-05 -3.40349027614e-05 -2.71318554767e-05 -7.31025770004e-05 -3.43058699544e-05 -2.77183233609e-05 -5.97758605567e-05 -3.43058699544e-05 -4.28823374422e-05 -3.43058699544e-05 -2.57294024653e-05 -3.43058699545e-05 -8.57646748846e-06 -3.43058699545e-05 8.57646748845e-06 -3.43058699544e-05 2.57294024653e-05 -3.43058699544e-05 4.28823374422e-05 -3.40348807221e-05 -2.77183233609e-05 5.97780527937e-05 -3.1145084249e-05 -2.64480202083e-05 7.31357267052e-05 -2.46516373089e-05 -2.25159452247e-05 7.65409705683e-05 -1.61537159588e-05 -1.6510317435e-05 6.6425969443e-05 -7.90358761385e-06 -9.91135006272e-06 4.53622655667e-05 -2.03097764027e-06 -4.24514105325e-06 2.11689093135e-05 -9.17006867474e-07 4.77751876442e-06 -2.20636604988e-06 -9.39784812796e-07 -5.15505519373e-06 -8.30139399524e-06 -4.5414587671e-06 -2.22571527415e-05 -1.67861721338e-05 -1.08778605845e-05 -4.70558520134e-05 -2.54543317329e-05 -1.81378854334e-05 -6.85008667116e-05 -3.19161225128e-05 -2.41343777379e-05 -7.85447279715e-05 -3.43058699544e-05 -2.71318554767e-05 -7.43032683548e-05 -2.77183233609e-05 -6.0035272419e-05 -3.43058699545e-05 -2.77183233609e-05 6.0035272419e-05 -3.19161225128e-05 -2.64480202083e-05 7.43268589614e-05 -2.5454331733e-05 -2.25159452247e-05 7.8660095178e-05 -1.6786172134e-05 -1.6510317435e-05 6.87189860117e-05 -8.30139399524e-06 -9.91135006276e-06 4.72824085515e-05 -2.20636604985e-06 -4.24514105323e-06 2.23888443452e-05 -9.1700686745e-07 5.18613456913e-06 -2.20636604988e-06 -9.39784812797e-07 -5.15505519373e-06 -8.30139399524e-06 -4.54145876712e-06 -2.22571527415e-05 -1.67861721338e-05 -1.08778605845e-05 -4.70558520134e-05 -2.5454331733e-05 -1.81378854333e-05 -6.85008667116e-05 -3.19161225128e-05 -2.41343777379e-05 -7.85447279715e-05 -3.43058699544e-05 -2.71318554767e-05 -7.43032683548e-05 -2.77183233609e-05 -6.0035272419e-05 -3.43058699545e-05 -2.77183233609e-05 6.00352724191e-05 -3.19161225128e-05 -2.64480202084e-05 7.43268589614e-05 -2.54543317329e-05 -2.25159452247e-05 7.8660095178e-05 -1.6786172134e-05 -1.6510317435e-05 6.87189860117e-05 -8.30139399521e-06 -9.91135006275e-06 4.72824085515e-05 -2.20636604983e-06 -4.24514105322e-06 2.23888443452e-05 -9.1700686746e-07 5.18613456911e-06 -2.20636604988e-06 -9.39784812812e-07 -5.15505519372e-06 -8.30139399524e-06 -4.54145876712e-06 -2.22571527416e-05 -1.67861721338e-05 -1.08778605845e-05 -4.70558520134e-05 -2.54543317329e-05 -1.81378854333e-05 -6.85008667116e-05 -3.19161225128e-05 -2.41343777379e-05 -7.85447279715e-05 -3.43058699544e-05 -2.71318554767e-05 -7.43032683548e-05 -2.77183233609e-05 -6.0035272419e-05 -3.43058699545e-05 -2.77183233609e-05 6.0035272419e-05 -3.19161225129e-05 -2.64480202084e-05 7.43268589614e-05 -2.54543317329e-05 -2.25159452247e-05 7.8660095178e-05 -1.67861721339e-05 -1.6510317435e-05 6.87189860118e-05 -8.30139399519e-06 -9.91135006274e-06 4.72824085515e-05 -2.20636604988e-06 -4.24514105321e-06 2.23888443452e-05 -9.17006867461e-07 5.1861345691e-06 -2.20636604988e-06 -9.39784812843e-07 -5.15505519373e-06 -8.30139399524e-06 -4.54145876716e-06 -2.22571527415e-05 -1.67861721338e-05 -1.08778605845e-05 -4.70558520134e-05 -2.54543317329e-05 -1.81378854334e-05 -6.85008667115e-05 -3.19161225128e-05 -2.41343777379e-05 -7.85447279715e-05 -3.43058699544e-05 -2.71318554767e-05 -7.43032683548e-05 -2.77183233609e-05 -6.0035272419e-05 -3.43058699545e-05 -2.77183233609e-05 6.0035272419e-05 -3.19161225128e-05 -2.64480202084e-05 7.43268589613e-05 -2.54543317329e-05 -2.25159452248e-05 7.8660095178e-05 -1.6786172134e-05 -1.65103174351e-05 6.87189860118e-05 -8.30139399524e-06 -9.91135006279e-06 4.72824085515e-05 -2.20636604987e-06 -4.24514105327e-06 2.23888443452e-05 -9.17006867502e-07 5.18613456914e-06 -2.03756339603e-06 -7.92046223409e-07 -4.75907014237e-06 -7.95782820662e-06 -4.06684454676e-06 -2.11556773608e-05 -1.63152779088e-05 -1.0071507679e-05 -4.55251308929e-05 -2.49398839705e-05 -1.71063872484e-05 -6.69220282674e-05 -3.1474797861e-05 -2.31188335707e-05 -7.72626932448e-05 -3.4158042953e-05 -2.65997101434e-05 -7.3629230286e-05 -3.43058699544e-05 -2.76175551243e-05 -5.98906309429e-05 -3.43058699544e-05 -2.77183233609e-05 -4.28823374422e-05 -3.43058699544e-05 -2.77183233609e-05 -2.57294024653e-05 -3.43058699544e-05 -2.77183233609e-05 -8.57646748844e-06 -3.43058699545e-05 -2.77183233609e-05 8.57646748845e-06 -3.43058699544e-05 -2.77183233609e-05 2.57294024653e-05 -3.43058699544e-05 -2.77183233609e-05 4.28823374422e-05 -3.41580112444e-05 -2.74944197674e-05 5.98926561463e-05 -3.14744968417e-05 -2.57095621804e-05 7.36618316743e-05 -2.49394532971e-05 -2.15419812577e-05 7.7389908559e-05 -1.63149156646e-05 -1.56054940183e-05 6.71452098264e-05 -7.95763530534e-06 -9.21224792496e-06 4.57490412579e-05 -2.03751542129e-06 -3.81809495311e-06 2.12820266382e-05 -7.75812319364e-07 4.78771835303e-06 -1.44571362572e-06 -4.31294824572e-07 -3.37602472899e-06 -6.62566703063e-06 -2.8315721534e-06 -1.70372776661e-05 -1.43448062621e-05 -7.86020669722e-06 -3.9323190377e-05 -2.26062311575e-05 -1.41553240209e-05 -6.00041245567e-05 -2.92365944663e-05 -1.99421212808e-05 -7.10986673272e-05 -3.27412750121e-05 -2.38686337155e-05 -6.95536131231e-05 -3.34532542506e-05 -2.55533075274e-05 -5.791288024e-05 -3.34531403541e-05 -2.58615519462e-05 -4.18576975799e-05 -3.34530264575e-05 -2.58615519462e-05 -2.51088280772e-05 -3.34529125609e-05 -2.58615519463e-05 -8.35995857438e-06 -3.34527986644e-05 -2.58615519463e-05 8.38891092838e-06 -3.34526847677e-05 -2.58615519462e-05 2.51377804311e-05 -3.34525708711e-05 -2.58615519463e-05 4.18866499339e-05 -3.27396615701e-05 -2.52238790519e-05 5.79496974385e-05 -2.92334984704e-05 -2.28845799125e-05 6.96345397483e-05 -2.26026168614e-05 -1.85967549691e-05 7.12680808309e-05 -1.43419824324e-05 -1.30139778951e-05 6.02395528337e-05 -6.62426636198e-06 -7.27376822969e-06 3.95320823289e-05 -1.44542353797e-06 -2.69212278342e-06 1.71424761848e-05 -4.26441102167e-07 3.39626314212e-06 -6.06932572636e-07 -8.08072875265e-08 -1.41848579933e-06 -4.33367258458e-06 -1.35974365606e-06 -1.03657658058e-05 -1.06646697301e-05 -4.86158837116e-06 -2.80948020822e-05 -1.79196970831e-05 -9.84610972799e-06 -4.64963443856e-05 -2.42276861303e-05 -1.48488922539e-05 -5.79638341762e-05 -2.82123753836e-05 -1.85994798102e-05 -5.90037763966e-05 -2.94969606844e-05 -2.04108711396e-05 -5.06216021021e-05 -2.94961178674e-05 -2.07887538605e-05 -3.70376984709e-05 -2.94952750503e-05 -2.07887538605e-05 -2.21979529786e-05 -2.94944322333e-05 -2.07887538605e-05 -7.3582074863e-06 -2.94935894163e-05 -2.07887538605e-05 7.48153800597e-06 -2.94927465992e-05 -2.07887538605e-05 2.23212834983e-05 -2.94919037822e-05 -2.07887538605e-05 3.71610289906e-05 -2.82053737576e-05 -2.0123040953e-05 5.07539813812e-05 -2.42190658424e-05 -1.78469076964e-05 5.91739276993e-05 -1.7911440804e-05 -1.39555382664e-05 5.81859186779e-05 -1.06589990349e-05 -9.18676698241e-06 4.67290889181e-05 -4.33129609973e-06 -4.5844520547e-06 2.82634763375e-05 -6.06653720264e-07 -1.31804882311e-06 1.0433055976e-05 -8.06355085622e-08 1.42694367206e-06 -9.57513880575e-08 0 -2.24257719683e-07 -1.91504242933e-06 -3.37150669826e-07 -4.18489002791e-06 -6.23560110841e-06 -2.01413585349e-06 -1.51990261028e-05 -1.17949269658e-05 -5.2326808716e-06 -2.93502021851e-05 -1.70419668973e-05 -8.90446542399e-06 -3.97940050196e-05 -2.06664458328e-05 -1.1913730928e-05 -4.26298545743e-05 -2.19387390906e-05 -1.34934199046e-05 -3.75906895177e-05 -2.19371628844e-05 -1.38591746405e-05 -2.77196539881e-05 -2.19355866782e-05 -1.38591746405e-05 -1.65877234941e-05 -2.19340104721e-05 -1.38591746405e-05 -5.45579300004e-06 -2.19324342659e-05 -1.38591746405e-05 5.67613749402e-06 -2.19308580596e-05 -1.38591746405e-05 1.68080679881e-05 -2.19292818535e-05 -1.38591746405e-05 2.79399984821e-05 -2.06543895791e-05 -1.33322135008e-05 3.78134134287e-05 -1.70292590516e-05 -1.15205672589e-05 4.28617139136e-05 -1.1784473615e-05 -8.49299054124e-06 4.00237174189e-05 -6.22959955154e-06 -4.98530357957e-06 2.95368137385e-05 -1.91329427757e-06 -1.94556222996e-06 1.53024452119e-05 -9.57364284219e-08 -3.34178167885e-07 4.21300326888e-06 0 2.25585604477e-07 0 0 0 -3.9970314161e-07 0 -8.30148144939e-07 -2.39215127572e-06 -3.37150632496e-07 -5.15269963652e-06 -5.78966935691e-06 -1.61326985526e-06 -1.32672610482e-05 -9.38877193874e-06 -3.64227412812e-06 -2.09761845736e-05 -1.20568059309e-05 -5.55165653898e-06 -2.43545209824e-05 -1.30317261207e-05 -6.65026734534e-06 -2.22841524906e-05 -1.30301531545e-05 -6.92958894013e-06 -1.65874376243e-05 -1.30285801883e-05 -6.92958894011e-06 -9.90827723872e-06 -1.30270072221e-05 -6.9295889401e-06 -3.22911685309e-06 -1.30254342559e-05 -6.92958894016e-06 3.45004353253e-06 -1.30238612896e-05 -6.92958894015e-06 1.01292039181e-05 -1.30222883235e-05 -6.92958894013e-06 1.68083643038e-05 -1.20452322314e-05 -6.59621815456e-06 2.2500996466e-05 -9.37779629343e-06 -5.43109987944e-06 2.45556925251e-05 -5.78209159799e-06 -3.53991799935e-06 2.11395242173e-05 -2.38906457658e-06 -1.57439159015e-06 1.33688657907e-05 -3.99472753217e-07 -3.341781305e-07 5.19096872905e-06 0 0 8.3572036912e-07 0 0 0 0 0 0 0 0 -3.99688742325e-07 0 -7.26029949476e-07 -1.61420085955e-06 -8.08072859895e-08 -3.22852133689e-06 -3.36553309697e-06 -5.11929478267e-07 -6.84403530631e-06 -4.83838379279e-06 -1.2184790846e-06 -9.31989687887e-06 -5.40452848285e-06 -1.7155829946e-06 -9.14107401277e-06 -5.40369214578e-06 -1.85677789473e-06 -6.92516444671e-06 -5.40285580869e-06 -1.85677789469e-06 -4.13016780601e-06 -5.40201947162e-06 -1.8567778947e-06 -1.33517116526e-06 -5.4011831346e-06 -1.85677789469e-06 1.45982547552e-06 -5.40034679746e-06 -1.85677789469e-06 4.25482211626e-06 -5.39951046047e-06 -1.85677789471e-06 7.04981875702e-06 -4.83252730517e-06 -1.70904512309e-06 9.26027256295e-06 -3.3608431871e-06 -1.20710590788e-06 9.41917601583e-06 -1.61206085463e-06 -5.07248242087e-07 6.90828604677e-06 -3.99487152497e-07 -8.06355070683e-08 3.25605282452e-06 0 0 7.31604808519e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -9.57488947796e-08 0 -1.49283582111e-07 -5.1133875504e-07 0 -8.11770257113e-07 -9.39517691969e-07 0 -1.6350547759e-06 -1.11490114852e-06 0 -1.83560070065e-06 -1.11479049191e-06 0 -1.43617911094e-06 -1.11467983528e-06 0 -8.55757252957e-07 -1.11456917866e-06 0 -2.75335394991e-07 -1.1144585221e-06 0 3.05086462999e-07 -1.11434786546e-06 0 8.85508321019e-07 -1.11423720887e-06 0 1.46593017895e-06 -9.38887209132e-07 0 1.86308863425e-06 -5.11103526725e-07 0 1.65472851512e-06 -9.57389216354e-08 0 8.20173788281e-07 0 0 1.50611932655e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.17758522629e-07 -8.08271327028e-08 -1.491044178e-07 -6.23877817058e-07 -5.12469850363e-07 -8.06516948287e-07 -1.13701549677e-06 -1.21979067271e-06 -1.61276430567e-06 -1.34483321381e-06 -1.71633644448e-06 -1.80105336809e-06 -1.34472413928e-06 -1.85677789464e-06 -1.40680644509e-06 -1.34461506476e-06 -1.85677789464e-06 -8.38198242075e-07 -1.34450599021e-06 -1.85677789464e-06 -2.69590039057e-07 -1.34439691569e-06 -1.85677789464e-06 2.99018163933e-07 -1.34428784112e-06 -1.85677789465e-06 8.67626366971e-07 -1.34417876659e-06 -1.85677789464e-06 1.43623456996e-06 -1.13639263387e-06 -1.70829167302e-06 1.82827028124e-06 -6.23644148282e-07 -1.20579431977e-06 1.63232824876e-06 -1.17748561978e-07 -5.06707869929e-07 8.14926124038e-07 0 -8.06156602893e-08 1.50433833601e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4.88692133156e-07 -3.37493812312e-07 -7.22417314855e-07 -1.93592567177e-06 -1.61774821078e-06 -3.16921325968e-06 -3.96959017709e-06 -3.65402994376e-06 -6.60874464063e-06 -5.64530657235e-06 -5.56546420333e-06 -8.88607674258e-06 -6.28245411209e-06 -6.656447437e-06 -8.65620106215e-06 -6.28165035487e-06 -6.92958893996e-06 -6.54552493184e-06 -6.28084659767e-06 -6.92958893996e-06 -3.90325749533e-06 -6.28004284042e-06 -6.92958893996e-06 -1.26099005883e-06 -6.27923908331e-06 -6.92958893995e-06 1.38127737767e-06 -6.27843532607e-06 -6.92958893996e-06 4.02354481418e-06 -6.27763156893e-06 -6.92958893995e-06 6.6658122507e-06 -5.63966368254e-06 -6.59003806248e-06 8.77139080017e-06 -3.96503749277e-06 -5.41729221478e-06 8.98267882986e-06 -1.93382445168e-06 -3.52816218346e-06 6.67204631675e-06 -4.88491590113e-07 -1.56991323446e-06 3.19670769187e-06 0 -3.33834950657e-07 7.28010268955e-07 0 0 0 0 0 0 0 0 -4.8870645765e-07 -3.3749384971e-07 -8.26020740589e-07 -2.86018076264e-06 -2.02202657534e-06 -5.04692270471e-06 -6.77964037988e-06 -5.26101206565e-06 -1.2743954376e-05 -1.08163753462e-05 -8.9513387667e-06 -1.98115179209e-05 -1.37514060439e-05 -1.19583174769e-05 -2.27271270483e-05 -1.48140846371e-05 -1.35116552975e-05 -2.06671878863e-05 -1.48125971482e-05 -1.385917464e-05 -1.53587194295e-05 -1.48111096592e-05 -1.38591746399e-05 -9.17318712129e-06 -1.48096221702e-05 -1.38591746399e-05 -2.98765481309e-06 -1.48081346813e-05 -1.38591746399e-05 3.19787749508e-06 -1.48066471923e-05 -1.385917464e-05 9.3834098033e-06 -1.48051597035e-05 -1.38591746399e-05 1.55689421115e-05 -1.37404348785e-05 -1.33139781069e-05 2.0873719048e-05 -1.08058961957e-05 -1.14759807092e-05 2.29198878763e-05 -6.77232203902e-06 -8.44611719803e-06 1.99699703341e-05 -2.85715647164e-06 -4.95697238508e-06 1.2844205849e-05 -4.88477265566e-07 -1.93767150794e-06 5.08527432369e-06 0 -3.33834988043e-07 8.31611059803e-07 0 0 -1.17761012788e-07 -8.08271342443e-08 -2.23989245002e-07 -2.31003235285e-06 -1.36454534435e-06 -4.12685413768e-06 -7.36495314053e-06 -4.89333192436e-06 -1.47185835512e-05 -1.367772505e-05 -9.92108924269e-06 -2.79287235972e-05 -1.95075639596e-05 -1.4949745124e-05 -3.73449613467e-05 -2.34947843339e-05 -1.86839570945e-05 -3.96599318619e-05 -2.48927695706e-05 -2.04430820797e-05 -3.48382459641e-05 -2.48912853216e-05 -2.078875386e-05 -2.56673629926e-05 -2.48898010726e-05 -2.078875386e-05 -1.53581457038e-05 -2.48883168237e-05 -2.078875386e-05 -5.04892841497e-06 -2.48868325748e-05 -2.078875386e-05 5.2602888739e-06 -2.48853483257e-05 -2.078875386e-05 1.55695061627e-05 -2.48838640767e-05 -2.078875386e-05 2.58787234516e-05 -2.34834115272e-05 -2.00908300118e-05 3.50517925355e-05 -1.94955077483e-05 -1.77624304109e-05 3.98828275344e-05 -1.36677077227e-05 -1.38546853954e-05 3.7567570791e-05 -7.35912428086e-06 -9.11178746717e-06 2.81120785328e-05 -2.30830927829e-06 -4.55270850127e-06 1.48219027734e-05 -1.17746071862e-07 -1.31324713482e-06 4.15519980296e-06 -8.06156618286e-08 2.25318195124e-07 -7.41865252706e-07 -4.31855043435e-07 -1.41117369365e-06 -5.20721818684e-06 -2.84758927984e-06 -1.01824949964e-05 -1.25986918528e-05 -7.92706773806e-06 -2.71942253586e-05 -2.08864330963e-05 -1.42842830107e-05 -4.44257784712e-05 -2.80311467447e-05 -2.00928535108e-05 -5.49108142207e-05 -3.26011490179e-05 -2.39782153983e-05 -5.57228582534e-05 -3.41134340325e-05 -2.55898818324e-05 -4.78238317468e-05 -3.41126367552e-05 -2.58615519454e-05 -3.50109045948e-05 -3.4111839478e-05 -2.58615519454e-05 -2.09820590114e-05 -3.41110422008e-05 -2.58615519454e-05 -6.95321342806e-06 -3.41102449235e-05 -2.58615519454e-05 7.0756321553e-06 -3.41094476463e-05 -2.58615519454e-05 2.11044777387e-05 -3.4108650369e-05 -2.58615519454e-05 3.5133323322e-05 -3.25945197567e-05 -2.51873047453e-05 4.79547824734e-05 -2.80229525573e-05 -2.27749982283e-05 5.58904181823e-05 -2.08785194281e-05 -1.8446022738e-05 5.5129399994e-05 -1.25931919157e-05 -1.28850189045e-05 4.46564390552e-05 -5.20488294144e-06 -7.20690718837e-06 2.73633934996e-05 -7.41587910468e-07 -2.67610565692e-06 1.02506876648e-05 -4.25880883343e-07 1.419664931e-06 -1.7665891469e-06 -7.93918030274e-07 -3.35821226466e-06 -8.00161643059e-06 -4.09535773618e-06 -1.67960694472e-05 -1.71296508456e-05 -1.01691475391e-05 -3.84062634273e-05 -2.6781138348e-05 -1.72752368932e-05 -5.81747768849e-05 -3.45722822736e-05 -2.32946701825e-05 -6.87210256083e-05 -3.89458313296e-05 -2.66984144549e-05 -6.74344551512e-05 -4.00618260266e-05 -2.76311804906e-05 -5.6525408494e-05 -4.00617201921e-05 -2.77183233601e-05 -4.10047433541e-05 -4.00616143575e-05 -2.77183233601e-05 -2.45967730834e-05 -4.0061508523e-05 -2.771832336e-05 -8.18880281265e-06 -4.00614026884e-05 -2.771832336e-05 8.21916745809e-06 -4.00612968539e-05 -2.77183233601e-05 2.46271377288e-05 -4.00611910193e-05 -2.771832336e-05 4.10351079996e-05 -3.89443138459e-05 -2.74807943994e-05 5.65638172401e-05 -3.45693398849e-05 -2.56108578673e-05 6.75173810752e-05 -2.67776663375e-05 -2.13661446447e-05 6.88922662697e-05 -1.71269041038e-05 -1.54366443725e-05 5.84124475317e-05 -8.00023734919e-06 -9.11460806424e-06 3.86182818395e-05 -1.76630073585e-06 -3.78958176355e-06 1.69034857042e-05 -7.73940512582e-07 3.37865855047e-06 -2.50121937118e-06 -9.42410069449e-07 -4.7486404151e-06 -9.71922522314e-06 -4.57539859017e-06 -2.10408156422e-05 -1.98248319864e-05 -1.09875557125e-05 -4.51354987665e-05 -3.01939636003e-05 -1.83207105895e-05 -6.61999935178e-05 -3.80915465332e-05 -2.43145777169e-05 -7.64115796048e-05 -4.16001554329e-05 -2.72076108607e-05 -7.31019595664e-05 -4.19293966097e-05 -2.77183233601e-05 -5.97758445897e-05 -4.19293966098e-05 -4.28823374421e-05 -4.19293966098e-05 -2.57294024653e-05 -4.19293966097e-05 -8.57646748842e-06 -4.19293966099e-05 8.57646748844e-06 -4.19293966097e-05 2.57294024653e-05 -4.19293966097e-05 4.28823374422e-05 -4.16001333936e-05 -2.771832336e-05 5.97780474293e-05 -3.80912772795e-05 -2.63722648226e-05 7.31360691065e-05 -3.01935613237e-05 -2.23357452442e-05 7.65432101431e-05 -1.9824483138e-05 -1.63274922778e-05 6.64301529165e-05 -9.71903532043e-06 -9.80165493411e-06 4.53664708845e-05 -2.50117157743e-06 -4.21120122997e-06 2.11711529006e-05 -9.1438161078e-07 4.77779652778e-06 -2.71704613851e-06 -9.42410069426e-07 -5.15472058022e-06 -1.02072778941e-05 -4.57539859012e-06 -2.22546226827e-05 -2.05979390372e-05 -1.09875557125e-05 -4.70510470874e-05 -3.11719798525e-05 -1.83207105895e-05 -6.84959480801e-05 -3.90289708656e-05 -2.43145777169e-05 -7.85419711601e-05 -4.19293966097e-05 -2.72076108607e-05 -7.43028206942e-05 -2.77183233601e-05 -6.0035272419e-05 -4.19293966098e-05 -2.771832336e-05 6.00352724191e-05 -3.90289708656e-05 -2.63722648226e-05 7.43270704942e-05 -3.11719798525e-05 -2.23357452442e-05 7.86622586494e-05 -2.05979390374e-05 -1.63274922778e-05 6.87232487459e-05 -1.02072778941e-05 -9.80165493415e-06 4.7286784991e-05 -2.71704613846e-06 -4.21120122994e-06 2.23912345691e-05 -9.14381610763e-07 5.18645914896e-06 -2.71704613851e-06 -9.42410069427e-07 -5.15472058024e-06 -1.02072778941e-05 -4.57539859014e-06 -2.22546226827e-05 -2.05979390372e-05 -1.09875557125e-05 -4.70510470874e-05 -3.11719798525e-05 -1.83207105895e-05 -6.84959480801e-05 -3.90289708656e-05 -2.43145777169e-05 -7.85419711601e-05 -4.19293966097e-05 -2.72076108608e-05 -7.43028206942e-05 -2.771832336e-05 -6.0035272419e-05 -4.19293966099e-05 -2.771832336e-05 6.0035272419e-05 -3.90289708657e-05 -2.63722648226e-05 7.43270704942e-05 -3.11719798525e-05 -2.23357452443e-05 7.86622586495e-05 -2.05979390374e-05 -1.63274922778e-05 6.87232487459e-05 -1.02072778941e-05 -9.80165493413e-06 4.7286784991e-05 -2.71704613842e-06 -4.21120122996e-06 2.23912345691e-05 -9.14381610746e-07 5.18645914896e-06 -2.71704613851e-06 -9.42410069439e-07 -5.15472058025e-06 -1.02072778941e-05 -4.57539859015e-06 -2.22546226827e-05 -2.05979390372e-05 -1.09875557125e-05 -4.70510470874e-05 -3.11719798525e-05 -1.83207105895e-05 -6.84959480801e-05 -3.90289708656e-05 -2.43145777169e-05 -7.85419711601e-05 -4.19293966097e-05 -2.72076108608e-05 -7.43028206942e-05 -2.771832336e-05 -6.0035272419e-05 -4.19293966099e-05 -2.771832336e-05 6.00352724191e-05 -3.90289708656e-05 -2.63722648226e-05 7.43270704942e-05 -3.11719798525e-05 -2.23357452443e-05 7.86622586494e-05 -2.05979390374e-05 -1.63274922778e-05 6.87232487459e-05 -1.02072778941e-05 -9.80165493415e-06 4.7286784991e-05 -2.71704613846e-06 -4.21120122994e-06 2.23912345691e-05 -9.14381610747e-07 5.18645914897e-06 -2.71704613851e-06 -9.42410069489e-07 -5.15472058026e-06 -1.02072778941e-05 -4.57539859017e-06 -2.22546226827e-05 -2.05979390372e-05 -1.09875557125e-05 -4.70510470874e-05 -3.11719798525e-05 -1.83207105895e-05 -6.84959480801e-05 -3.90289708656e-05 -2.43145777169e-05 -7.85419711601e-05 -4.19293966097e-05 -2.72076108608e-05 -7.43028206941e-05 -2.77183233601e-05 -6.0035272419e-05 -4.19293966099e-05 -2.771832336e-05 6.0035272419e-05 -3.90289708656e-05 -2.63722648227e-05 7.43270704942e-05 -3.11719798525e-05 -2.23357452443e-05 7.86622586494e-05 -2.05979390375e-05 -1.63274922779e-05 6.87232487459e-05 -1.02072778941e-05 -9.80165493415e-06 4.7286784991e-05 -2.71704613849e-06 -4.21120123e-06 2.23912345691e-05 -9.14381610784e-07 5.18645914897e-06 -2.50926423314e-06 -7.93918030238e-07 -4.75878330558e-06 -9.78563609696e-06 -4.09535773616e-06 -2.11532933276e-05 -2.00225158749e-05 -1.01691475391e-05 -4.55204832426e-05 -3.05462298667e-05 -1.72752368932e-05 -6.69171684467e-05 -3.84941395031e-05 -2.32946701824e-05 -7.72598539865e-05 -4.17505463589e-05 -2.66984144549e-05 -7.36286365581e-05 -4.19293966097e-05 -2.76311804907e-05 -5.98906155008e-05 -4.19293966098e-05 -2.77183233601e-05 -4.28823374422e-05 -4.19293966098e-05 -2.77183233601e-05 -2.57294024653e-05 -4.19293966098e-05 -2.771832336e-05 -8.57646748843e-06 -4.19293966099e-05 -2.77183233601e-05 8.57646748844e-06 -4.19293966097e-05 -2.77183233601e-05 2.57294024653e-05 -4.19293966097e-05 -2.77183233601e-05 4.28823374422e-05 -4.17505146503e-05 -2.74807943994e-05 5.98926502571e-05 -3.84938384838e-05 -2.56108578673e-05 7.36621505494e-05 -3.05457991932e-05 -2.13661446447e-05 7.73921585924e-05 -2.00221536306e-05 -1.54366443725e-05 6.71494370612e-05 -9.78544319569e-06 -9.11460806429e-06 4.57532836998e-05 -2.50921625838e-06 -3.7895817635e-06 2.12842823096e-05 -7.73940512537e-07 4.78799671858e-06 -1.78058633816e-06 -4.3185504341e-07 -3.37586954859e-06 -8.14979921274e-06 -2.84758927977e-06 -1.70354115323e-05 -1.76120261573e-05 -7.92706773806e-06 -3.93191306307e-05 -2.77027361744e-05 -1.42842830108e-05 -5.99994956955e-05 -3.57755762472e-05 -2.00928535108e-05 -7.10955198112e-05 -4.00334358963e-05 -2.39782153984e-05 -6.95524558663e-05 -4.08971962508e-05 -2.55898818325e-05 -5.7912641997e-05 -4.08970823542e-05 -2.58615519455e-05 -4.18575836832e-05 -4.08969684577e-05 -2.58615519455e-05 -2.51087141805e-05 -4.08968545611e-05 -2.58615519455e-05 -8.35984467778e-06 -4.08967406646e-05 -2.58615519454e-05 8.38902482493e-06 -4.08966267679e-05 -2.58615519455e-05 2.51378943277e-05 -4.08965128713e-05 -2.58615519455e-05 4.18867638304e-05 -4.00318224544e-05 -2.51873047454e-05 5.79498505545e-05 -3.57724802513e-05 -2.27749982283e-05 6.9635356645e-05 -2.76991218783e-05 -1.8446022738e-05 7.1270676429e-05 -1.76092023276e-05 -1.28850189045e-05 6.0243640658e-05 -8.14839854418e-06 -7.2069071884e-06 3.95358206676e-05 -1.78029625037e-06 -2.67610565686e-06 1.71442522532e-05 -4.25880883285e-07 3.39641408877e-06 -7.47627988233e-07 -8.08271342536e-08 -1.41844889724e-06 -5.33310656683e-06 -1.36454534435e-06 -1.03647313616e-05 -1.31039988005e-05 -4.8933319243e-06 -2.80918801071e-05 -2.19816641304e-05 -9.92108924266e-06 -4.64924231097e-05 -2.96781905678e-05 -1.4949745124e-05 -5.79605213009e-05 -3.45298607381e-05 -1.86839570946e-05 -5.90018343556e-05 -3.60924031245e-05 -2.04430820797e-05 -5.06205906897e-05 -3.60915603075e-05 -2.07887538599e-05 -3.70368556539e-05 -3.60907174904e-05 -2.07887538599e-05 -2.21971101615e-05 -3.60898746735e-05 -2.07887538599e-05 -7.35736466925e-06 -3.60890318564e-05 -2.07887538599e-05 7.48238082302e-06 -3.60881890393e-05 -2.07887538599e-05 2.23221263153e-05 -3.60873462223e-05 -2.07887538599e-05 3.71618718076e-05 -3.4522859112e-05 -2.00908300118e-05 5.07548788361e-05 -2.96695702799e-05 -1.7762430411e-05 5.91755467087e-05 -2.19734078512e-05 -1.38546853954e-05 5.81887974974e-05 -1.30983281053e-05 -9.11178746716e-06 4.67326367289e-05 -5.33073008203e-06 -4.55270850123e-06 2.82662078486e-05 -7.47349135805e-07 -1.31324713478e-06 1.04340506104e-05 -8.06156617995e-08 1.42697977185e-06 -1.17972494562e-07 0 -2.24256462119e-07 -2.35787986776e-06 -3.37493849685e-07 -4.18458780844e-06 -7.66907916971e-06 -2.02202657536e-06 -1.51974945978e-05 -1.44872448373e-05 -5.2610120657e-06 -2.93475363683e-05 -2.09071538831e-05 -8.95133876669e-06 -3.97911652577e-05 -2.5333718578e-05 -1.1958317477e-05 -4.26275962253e-05 -2.68862637539e-05 -1.35116552976e-05 -3.75890134969e-05 -2.68846875477e-05 -1.38591746401e-05 -2.77180777819e-05 -2.68831113415e-05 -1.38591746401e-05 -1.65861472878e-05 -2.68815351354e-05 -1.38591746401e-05 -5.45421679382e-06 -2.68799589292e-05 -1.38591746401e-05 5.67771370023e-06 -2.68783827229e-05 -1.38591746401e-05 1.68096441943e-05 -2.68768065168e-05 -1.38591746401e-05 2.79415746883e-05 -2.53216623243e-05 -1.33139781071e-05 3.78150062195e-05 -2.08944460373e-05 -1.14759807093e-05 4.28637558818e-05 -1.44767914865e-05 -8.44611719799e-06 4.00263006599e-05 -7.66307761287e-06 -4.9569723851e-06 2.95392923304e-05 -2.35613171596e-06 -1.93767150797e-06 1.53039038539e-05 -1.17957534886e-07 -3.33834988036e-07 4.21329727295e-06 0 2.25586840012e-07 0 0 0 -4.92365917501e-07 0 -8.30126355039e-07 -2.94456703413e-06 -3.37493812348e-07 -5.15228438938e-06 -7.12039351199e-06 -1.61774821084e-06 -1.32660472239e-05 -1.15367841433e-05 -3.6540299438e-06 -2.09744592471e-05 -1.48062467857e-05 -5.56546420335e-06 -2.4352768789e-05 -1.60002418472e-05 -6.65644743698e-06 -2.22825658925e-05 -1.5998668881e-05 -6.92958893998e-06 -1.65858646581e-05 -1.59970959148e-05 -6.92958893992e-06 -9.90670427249e-06 -1.59955229486e-05 -6.92958893995e-06 -3.22754388686e-06 -1.59939499824e-05 -6.92958893994e-06 3.45161649874e-06 -1.59923770161e-05 -6.92958893995e-06 1.01307768843e-05 -1.599080405e-05 -6.92958893992e-06 1.680993727e-05 -1.47946730864e-05 -6.59003806253e-06 2.2502543224e-05 -1.1525808498e-05 -5.41729221473e-06 2.45573480833e-05 -7.11281575308e-06 -3.52816218349e-06 2.11411504721e-05 -2.94148033491e-06 -1.56991323453e-06 1.33700240954e-05 -4.92135529032e-07 -3.3383495071e-07 5.19137147656e-06 0 0 8.3574176111e-07 0 0 0 0 0 0 0 0 -4.92351518226e-07 0 -7.26008159585e-07 -1.98724327371e-06 -8.08271327451e-08 -3.22830218343e-06 -4.14114241276e-06 -5.12469850349e-07 -6.843488571e-06 -5.95118934388e-06 -1.21979067266e-06 -9.31914122326e-06 -6.64674921192e-06 -1.71633644455e-06 -9.1402637147e-06 -6.64591287479e-06 -1.85677789464e-06 -6.92432810967e-06 -6.64507653776e-06 -1.85677789463e-06 -4.12933146893e-06 -6.64424020066e-06 -1.85677789467e-06 -1.33433482818e-06 -6.64340386363e-06 -1.85677789462e-06 1.46066181256e-06 -6.64256752654e-06 -1.85677789461e-06 4.25565845331e-06 -6.64173118954e-06 -1.85677789461e-06 7.05065509407e-06 -5.94533285631e-06 -1.70829167306e-06 9.26107231529e-06 -4.13645250289e-06 -1.20579431978e-06 9.41990882104e-06 -1.98510326869e-06 -5.06707869915e-07 6.90881489572e-06 -4.92149928332e-07 -8.0615660334e-08 3.25626621961e-06 0 0 7.31626200517e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.17970001293e-07 0 -1.49282324559e-07 -6.29852756921e-07 0 -8.11742274299e-07 -1.15699682442e-06 0 -1.6349866921e-06 -1.37286641867e-06 0 -1.8355028679e-06 -1.37275576208e-06 0 -1.43606845434e-06 -1.37264510544e-06 0 -8.55646596376e-07 -1.37253444886e-06 0 -2.75224738383e-07 -1.37242379228e-06 0 3.05197119584e-07 -1.37231313566e-06 0 8.85618977606e-07 -1.37220247906e-06 0 1.46604083556e-06 -1.15636634161e-06 0 1.86318564441e-06 -6.29617528615e-07 0 1.65479514099e-06 -1.17960028151e-07 0 8.20201155126e-07 0 0 1.50613168164e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.3993993565e-07 -8.08469794454e-08 -1.49103161517e-07 -7.41271381243e-07 -5.1301022248e-07 -8.06489136726e-07 -1.35075101561e-06 -1.22110226081e-06 -1.61269700958e-06 -1.59754797069e-06 -1.71708989448e-06 -1.80095685691e-06 -1.59743889612e-06 -1.85677789464e-06 -1.40669737053e-06 -1.59732982162e-06 -1.85677789465e-06 -8.3808916754e-07 -1.59722074706e-06 -1.85677789464e-06 -2.69480964523e-07 -1.59711167262e-06 -1.85677789464e-06 2.99127238467e-07 -1.59700259804e-06 -1.85677789464e-06 8.67735441492e-07 -1.5968935235e-06 -1.85677789464e-06 1.43634364452e-06 -1.35012815275e-06 -1.70753822301e-06 1.8283659674e-06 -7.41037712485e-07 -1.20448273168e-06 1.63239407857e-06 -1.39929974969e-07 -5.06167497809e-07 8.14953313063e-07 0 -8.05958135477e-08 1.50435067757e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5.8066854939e-07 -3.37836992139e-07 -7.22395618231e-07 -2.29936470938e-06 -1.62222656638e-06 -3.1689979098e-06 -4.71316523998e-06 -3.66578575951e-06 -6.60821362998e-06 -6.7010857446e-06 -5.57927186784e-06 -8.88534780126e-06 -7.45679519494e-06 -6.66262752885e-06 -8.65542138561e-06 -7.45599143773e-06 -6.92958893995e-06 -6.54472117465e-06 -7.45518768053e-06 -6.92958893996e-06 -3.90245373814e-06 -7.45438392333e-06 -6.92958893995e-06 -1.26018630165e-06 -7.45358016615e-06 -6.92958893995e-06 1.38208113491e-06 -7.45277640895e-06 -6.92958893996e-06 4.02434857139e-06 -7.45197265177e-06 -6.92958893996e-06 6.66661600791e-06 -6.69544285479e-06 -6.58385797063e-06 8.77215964589e-06 -4.70861255566e-06 -5.40348455028e-06 8.98338430228e-06 -2.29726348922e-06 -3.51640636771e-06 6.67255896396e-06 -5.8046800636e-07 -1.56543487886e-06 3.19691714614e-06 0 -3.33491770822e-07 7.2803156185e-07 0 0 0 0 0 0 0 0 -5.80682873892e-07 -3.3783702954e-07 -8.25999043957e-07 -3.3968150772e-06 -2.0299172973e-06 -5.04651542998e-06 -8.04687742849e-06 -5.28934325992e-06 -1.27427826413e-05 -1.28306654689e-05 -8.99821210969e-06 -1.98098721388e-05 -1.63055671783e-05 -1.20029040263e-05 -2.27254649576e-05 -1.75632101074e-05 -1.35298906909e-05 -2.06656852843e-05 -1.75617226184e-05 -1.38591746399e-05 -1.53572319405e-05 -1.75602351295e-05 -1.38591746399e-05 -9.17169963233e-06 -1.75587476405e-05 -1.38591746399e-05 -2.98616732411e-06 -1.75572601515e-05 -1.38591746399e-05 3.19936498411e-06 -1.75557726626e-05 -1.38591746399e-05 9.38489729227e-06 -1.75542851737e-05 -1.38591746399e-05 1.55704296005e-05 -1.62945960128e-05 -1.32957427135e-05 2.08751808077e-05 -1.28201863184e-05 -1.14313941599e-05 2.29214507284e-05 -8.03955908763e-06 -8.39924385503e-06 1.99715140292e-05 -3.39379078621e-06 -4.92864119081e-06 1.28453201293e-05 -5.8045368189e-07 -1.92978078598e-06 5.08566866907e-06 0 -3.33491808227e-07 8.31632352681e-07 0 0 -1.39942425815e-07 -8.08469809882e-08 -2.23987988753e-07 -2.74391308013e-06 -1.36934703262e-06 -4.12655576932e-06 -8.74176881345e-06 -4.92507547767e-06 -1.47170957888e-05 -1.62200838918e-05 -9.99606875768e-06 -2.79261721951e-05 -2.31148329652e-05 -1.50505979947e-05 -3.73422682179e-05 -2.7824357789e-05 -1.87684343794e-05 -3.96577964266e-05 -2.94746439211e-05 -2.04752930204e-05 -3.48366641163e-05 -2.94731596721e-05 -2.078875386e-05 -2.56658787437e-05 -2.94716754231e-05 -2.078875386e-05 -1.53566614548e-05 -2.94701911741e-05 -2.078875386e-05 -5.04744416595e-06 -2.94687069252e-05 -2.07887538599e-05 5.26177312293e-06 -2.94672226762e-05 -2.078875386e-05 1.55709904118e-05 -2.94657384272e-05 -2.078875386e-05 2.58802077006e-05 -2.78129849823e-05 -2.00586190711e-05 3.50532901263e-05 -2.3102776754e-05 -1.7677953126e-05 3.98847431305e-05 -1.62100665645e-05 -1.37538325248e-05 3.75700015444e-05 -8.73593995378e-06 -9.0368079522e-06 2.81144367438e-05 -2.74219000555e-06 -4.52096494794e-06 1.4823314727e-05 -1.39927484838e-07 -1.30844544655e-06 4.1554896565e-06 -8.05958150921e-08 2.25319429243e-07 -8.81479924081e-07 -4.32415262276e-07 -1.41113696038e-06 -6.1831405377e-06 -2.86360640633e-06 -1.01814767924e-05 -1.49442742376e-05 -7.99392877913e-06 -2.7191388182e-05 -2.47466944028e-05 -1.4413242001e-05 -4.44220110965e-05 -3.31801867217e-05 -2.02435857414e-05 -5.49076415103e-05 -3.85669611483e-05 -2.40877970819e-05 -5.57209923897e-05 -4.03484765139e-05 -2.56264561383e-05 -4.78228678214e-05 -4.03476792366e-05 -2.58615519454e-05 -3.50101073176e-05 -4.03468819593e-05 -2.58615519454e-05 -2.09812617342e-05 -4.03460846821e-05 -2.58615519454e-05 -6.95241615088e-06 -4.03452874049e-05 -2.58615519454e-05 7.07642943252e-06 -4.03444901276e-05 -2.58615519454e-05 2.11052750159e-05 -4.03436928505e-05 -2.58615519454e-05 3.51341205993e-05 -3.85603318871e-05 -2.51507304395e-05 4.79556323465e-05 -3.31719925344e-05 -2.26654165448e-05 5.58919595878e-05 -2.47387807347e-05 -1.82952905074e-05 5.51321328802e-05 -1.49387743005e-05 -1.27560599142e-05 4.46598232742e-05 -6.18080529225e-06 -7.1400461473e-06 2.73660327669e-05 -8.81202581838e-07 -2.66008853044e-06 1.02516642484e-05 -4.25320664495e-07 1.41970084844e-06 -2.0988386832e-06 -7.9578983709e-07 -3.35805781666e-06 -9.49813328385e-06 -4.12387092568e-06 -1.67942260765e-05 -2.03076976425e-05 -1.02667873995e-05 -3.84022873407e-05 -3.17086887958e-05 -1.74440865385e-05 -5.81702665161e-05 -4.08921006882e-05 -2.34705067949e-05 -6.87179443641e-05 -4.60405835902e-05 -2.67971187672e-05 -6.74332935271e-05 -4.73542572579e-05 -2.76448058578e-05 -5.65251726632e-05 -4.73541514234e-05 -2.77183233601e-05 -4.10046375196e-05 -4.73540455888e-05 -2.77183233601e-05 -2.45966672488e-05 -4.73539397543e-05 -2.77183233601e-05 -8.18869697809e-06 -4.73538339198e-05 -2.77183233601e-05 8.21927329264e-06 -4.73537280852e-05 -2.771832336e-05 2.46272435635e-05 -4.73536222506e-05 -2.77183233601e-05 4.10352138342e-05 -4.60390661064e-05 -2.74671690322e-05 5.65639677865e-05 -4.08891582996e-05 -2.5512153555e-05 6.7518203167e-05 -3.17052167852e-05 -2.11903080323e-05 6.88947921197e-05 -2.03049509007e-05 -1.52677947272e-05 5.84164050553e-05 -9.49675420246e-06 -9.01696820382e-06 3.86219242728e-05 -2.09855027212e-06 -3.76106857403e-06 1.69052346229e-05 -7.7206870577e-07 3.37880864915e-06 -2.97141330834e-06 -9.45035326117e-07 -4.74835403635e-06 -1.153467293e-05 -4.60933841334e-06 -2.10384404703e-05 -2.34955991661e-05 -1.10972508407e-05 -4.51308805375e-05 -3.57358876158e-05 -1.85035357462e-05 -6.61951711976e-05 -4.50377395645e-05 -2.44947776967e-05 -7.64087502923e-05 -4.91654081053e-05 -2.72833662456e-05 -7.31013436295e-05 -4.9552923266e-05 -2.77183233601e-05 -5.97758287599e-05 -4.9552923266e-05 -4.28823374421e-05 -4.9552923266e-05 -2.57294024653e-05 -4.9552923266e-05 -8.57646748839e-06 -4.95529232661e-05 8.57646748849e-06 -4.9552923266e-05 2.57294024654e-05 -4.9552923266e-05 4.28823374422e-05 -4.91653860661e-05 -2.77183233601e-05 5.9778042202e-05 -4.50374703107e-05 -2.62965094378e-05 7.3136413005e-05 -3.57354853392e-05 -2.21555452645e-05 7.65454492355e-05 -2.34952503177e-05 -1.61446671211e-05 6.64343295567e-05 -1.15344830273e-05 -9.6919598058e-06 4.53706679723e-05 -2.97136551455e-06 -4.17726140679e-06 2.11733931382e-05 -9.11756354128e-07 4.7780741447e-06 -3.22772622719e-06 -9.45035326075e-07 -5.15438578186e-06 -1.21131617931e-05 -4.6093384133e-06 -2.2252088943e-05 -2.44097059411e-05 -1.10972508408e-05 -4.70462334498e-05 -3.68896279727e-05 -1.85035357462e-05 -6.84910225256e-05 -4.61418192193e-05 -2.44947776967e-05 -7.8539214245e-05 -4.9552923266e-05 -2.72833662456e-05 -7.43023746372e-05 -2.77183233601e-05 -6.0035272419e-05 -4.95529232661e-05 -2.77183233601e-05 6.00352724191e-05 -4.61418192193e-05 -2.62965094377e-05 7.43272836306e-05 -3.68896279727e-05 -2.21555452645e-05 7.86644220171e-05 -2.44097059412e-05 -1.61446671211e-05 6.87275045569e-05 -1.21131617932e-05 -9.69195980583e-06 4.72911527189e-05 -3.22772622715e-06 -4.1772614068e-06 2.23936211123e-05 -9.11756354125e-07 5.18678354404e-06 -3.22772622719e-06 -9.45035326082e-07 -5.15438578184e-06 -1.21131617931e-05 -4.60933841332e-06 -2.2252088943e-05 -2.44097059411e-05 -1.10972508408e-05 -4.70462334498e-05 -3.68896279727e-05 -1.85035357462e-05 -6.84910225256e-05 -4.61418192193e-05 -2.44947776967e-05 -7.8539214245e-05 -4.9552923266e-05 -2.72833662456e-05 -7.43023746372e-05 -2.771832336e-05 -6.0035272419e-05 -4.9552923266e-05 -2.77183233601e-05 6.00352724191e-05 -4.61418192193e-05 -2.62965094378e-05 7.43272836306e-05 -3.68896279728e-05 -2.21555452645e-05 7.86644220171e-05 -2.44097059412e-05 -1.61446671211e-05 6.87275045569e-05 -1.21131617932e-05 -9.69195980583e-06 4.72911527189e-05 -3.22772622716e-06 -4.17726140679e-06 2.23936211123e-05 -9.11756354128e-07 5.18678354407e-06 -3.22772622719e-06 -9.45035326117e-07 -5.15438578183e-06 -1.21131617931e-05 -4.60933841329e-06 -2.2252088943e-05 -2.44097059411e-05 -1.10972508408e-05 -4.70462334498e-05 -3.68896279727e-05 -1.85035357462e-05 -6.84910225256e-05 -4.61418192193e-05 -2.44947776967e-05 -7.8539214245e-05 -4.9552923266e-05 -2.72833662456e-05 -7.43023746373e-05 -2.77183233601e-05 -6.0035272419e-05 -4.95529232661e-05 -2.77183233601e-05 6.00352724191e-05 -4.61418192193e-05 -2.62965094378e-05 7.43272836306e-05 -3.68896279727e-05 -2.21555452645e-05 7.86644220171e-05 -2.44097059412e-05 -1.61446671211e-05 6.87275045569e-05 -1.21131617932e-05 -9.69195980582e-06 4.72911527189e-05 -3.22772622712e-06 -4.17726140677e-06 2.23936211123e-05 -9.11756354107e-07 5.18678354407e-06 -3.22772622719e-06 -9.45035326132e-07 -5.15438578183e-06 -1.21131617931e-05 -4.60933841338e-06 -2.2252088943e-05 -2.44097059411e-05 -1.10972508408e-05 -4.70462334498e-05 -3.68896279727e-05 -1.85035357463e-05 -6.84910225256e-05 -4.61418192193e-05 -2.44947776967e-05 -7.8539214245e-05 -4.9552923266e-05 -2.72833662457e-05 -7.43023746372e-05 -2.77183233601e-05 -6.0035272419e-05 -4.95529232661e-05 -2.77183233601e-05 6.00352724191e-05 -4.61418192193e-05 -2.62965094378e-05 7.43272836307e-05 -3.68896279728e-05 -2.21555452645e-05 7.86644220171e-05 -2.44097059412e-05 -1.61446671212e-05 6.87275045569e-05 -1.21131617932e-05 -9.69195980588e-06 4.72911527189e-05 -3.22772622718e-06 -4.17726140683e-06 2.23936211123e-05 -9.11756354151e-07 5.18678354405e-06 -2.98096507031e-06 -7.95789837018e-07 -4.7584963219e-06 -1.16134439875e-05 -4.12387092564e-06 -2.11509059287e-05 -2.37297538413e-05 -1.02667873995e-05 -4.5515827295e-05 -3.61525757635e-05 -1.74440865384e-05 -6.69123017209e-05 -4.5513481146e-05 -2.34705067948e-05 -7.72570142504e-05 -4.93430497656e-05 -2.67971187672e-05 -7.36280443498e-05 -4.9552923266e-05 -2.76448058578e-05 -5.98906001957e-05 -4.9552923266e-05 -2.77183233601e-05 -4.28823374421e-05 -4.9552923266e-05 -2.77183233601e-05 -2.57294024653e-05 -4.9552923266e-05 -2.771832336e-05 -8.57646748838e-06 -4.95529232661e-05 -2.771832336e-05 8.57646748847e-06 -4.9552923266e-05 -2.771832336e-05 2.57294024653e-05 -4.9552923266e-05 -2.771832336e-05 4.28823374422e-05 -4.9343018057e-05 -2.74671690322e-05 5.98926445051e-05 -4.55131801267e-05 -2.55121535551e-05 7.36624709441e-05 -3.61521450901e-05 -2.11903080323e-05 7.73944081478e-05 -2.37293915971e-05 -1.52677947272e-05 6.7153657391e-05 -1.16132510863e-05 -9.01696820385e-06 4.57575178446e-05 -2.98091709557e-06 -3.761068574e-06 2.12865346152e-05 -7.72068705695e-07 4.78827493737e-06 -2.11545905065e-06 -4.32415262252e-07 -3.37571430915e-06 -9.67393139502e-06 -2.8636064063e-06 -1.70335430751e-05 -2.08792460529e-05 -7.99392877913e-06 -3.93150641193e-05 -3.27992411919e-05 -1.4413242001e-05 -5.99948601302e-05 -4.23145580289e-05 -2.02435857414e-05 -7.10923703858e-05 -4.73255967815e-05 -2.40877970819e-05 -6.95512990235e-05 -4.83411382519e-05 -2.56264561383e-05 -5.79124035629e-05 -4.83410243553e-05 -2.58615519454e-05 -4.18574697867e-05 -4.83409104587e-05 -2.58615519455e-05 -2.5108600284e-05 -4.83407965621e-05 -2.58615519454e-05 -8.35973078118e-06 -4.83406826656e-05 -2.58615519455e-05 8.38913872153e-06 -4.8340568769e-05 -2.58615519454e-05 2.51380082243e-05 -4.83404548724e-05 -2.58615519454e-05 4.1886877727e-05 -4.73239833395e-05 -2.51507304395e-05 5.79500034793e-05 -4.23114620331e-05 -2.26654165448e-05 6.96361739556e-05 -3.27956268958e-05 -1.82952905074e-05 7.12732701178e-05 -2.08764222231e-05 -1.27560599142e-05 6.02477217785e-05 -9.67253072645e-06 -7.14004614727e-06 3.95395522412e-05 -2.11516896287e-06 -2.66008853037e-06 1.7146025998e-05 -4.25320664446e-07 3.39656497644e-06 -8.88323403844e-07 -8.0846980983e-08 -1.41841198835e-06 -6.33254054919e-06 -1.36934703264e-06 -1.03636959594e-05 -1.55433278713e-05 -4.9250754776e-06 -2.80889540244e-05 -2.60436311782e-05 -9.99606875763e-06 -4.64884964723e-05 -3.5128695006e-05 -1.50505979946e-05 -5.79572055414e-05 -4.08473460933e-05 -1.87684343795e-05 -5.89998917726e-05 -4.26878455654e-05 -2.04752930204e-05 -5.06195792102e-05 -4.26870027484e-05 -2.07887538599e-05 -3.70360128369e-05 -4.26861599313e-05 -2.07887538599e-05 -2.21962673446e-05 -4.26853171143e-05 -2.07887538599e-05 -7.35652185225e-06 -4.26844742973e-05 -2.07887538598e-05 7.48322364004e-06 -4.26836314802e-05 -2.07887538599e-05 2.23229691324e-05 -4.26827886632e-05 -2.07887538599e-05 3.71627146247e-05 -4.08403444672e-05 -2.00586190711e-05 5.07557762239e-05 -3.51200747181e-05 -1.7677953126e-05 5.91771651759e-05 -2.6035374899e-05 -1.37538325248e-05 5.81916734328e-05 -1.55376571761e-05 -9.03680795218e-06 4.67361791784e-05 -6.33016406437e-06 -4.52096494789e-06 2.8268935252e-05 -8.88044551401e-07 -1.3084454465e-06 1.04350442868e-05 -8.05958150586e-08 1.42701586485e-06 -1.40193601071e-07 0 -2.24255204544e-07 -2.80071730625e-06 -3.37837029547e-07 -4.18428543538e-06 -9.10255723117e-06 -2.02991729734e-06 -1.51959615489e-05 -1.7179562709e-05 -5.28934325998e-06 -2.93448675684e-05 -2.47723408693e-05 -8.99821210967e-06 -3.97883230845e-05 -3.00009913238e-05 -1.20029040263e-05 -4.2625336947e-05 -3.18337884179e-05 -1.3529890691e-05 -3.75873373206e-05 -3.18322122117e-05 -1.38591746401e-05 -2.77165015757e-05 -3.18306360055e-05 -1.38591746401e-05 -1.65845710817e-05 -3.18290597992e-05 -1.38591746401e-05 -5.4526405876e-06 -3.18274835931e-05 -1.38591746401e-05 5.67928990643e-06 -3.18259073869e-05 -1.38591746401e-05 1.68112204005e-05 -3.18243311807e-05 -1.38591746401e-05 2.79431508945e-05 -2.998893507e-05 -1.32957427137e-05 3.78165988549e-05 -2.47596330235e-05 -1.14313941599e-05 4.28657969206e-05 -1.71691093583e-05 -8.399243855e-06 4.00288814896e-05 -9.09655567432e-06 -4.92864119089e-06 2.95417679392e-05 -2.79896915448e-06 -1.92978078601e-06 1.53053609521e-05 -1.40178641349e-07 -3.33491808232e-07 4.21359112339e-06 0 2.25588075491e-07 0 0 0 -5.85028693404e-07 0 -8.30104562251e-07 -3.49698279261e-06 -3.37836992135e-07 -5.15186892743e-06 -8.45111766725e-06 -1.62222656643e-06 -1.32648325032e-05 -1.36847963482e-05 -3.66578575953e-06 -2.0972732798e-05 -1.75556876409e-05 -5.57927186783e-06 -2.43510159362e-05 -1.89687575741e-05 -6.66262752891e-06 -2.22809791241e-05 -1.89671846079e-05 -6.92958893994e-06 -1.65842916919e-05 -1.89656116417e-05 -6.92958893995e-06 -9.90513130626e-06 -1.89640386755e-05 -6.92958893993e-06 -3.22597092063e-06 -1.89624657093e-05 -6.92958893995e-06 3.45318946495e-06 -1.89608927431e-05 -6.92958893994e-06 1.01323498505e-05 -1.89593197769e-05 -6.92958893994e-06 1.68115102362e-05 -1.75441139415e-05 -6.58385797063e-06 2.25040898117e-05 -1.36738207029e-05 -5.40348455029e-06 2.4559002982e-05 -8.44353990834e-06 -3.51640636774e-06 2.11427756041e-05 -3.49389609346e-06 -1.56543487894e-06 1.33711815037e-05 -5.84798305024e-07 -3.33491770845e-07 5.19177400915e-06 0 0 8.35763150187e-07 0 0 0 0 0 0 0 0 -5.85014294135e-07 0 -7.25986366809e-07 -2.36028568789e-06 -8.08469794609e-08 -3.22808296531e-06 -4.91675172866e-06 -5.13010222452e-07 -6.84294164972e-06 -7.06399489512e-06 -1.22110226078e-06 -9.31838538851e-06 -7.88896994111e-06 -1.71708989453e-06 -9.13945335356e-06 -7.88813360401e-06 -1.85677789462e-06 -6.92349177257e-06 -7.88729726695e-06 -1.85677789467e-06 -4.12849513184e-06 -7.88646092986e-06 -1.85677789466e-06 -1.3334984911e-06 -7.88562459287e-06 -1.85677789468e-06 1.46149814968e-06 -7.88478825571e-06 -1.85677789466e-06 4.25649479037e-06 -7.88395191874e-06 -1.85677789463e-06 7.05149143113e-06 -7.05813840754e-06 -1.70753822303e-06 9.26187200465e-06 -4.91206181876e-06 -1.20448273165e-06 9.42064144721e-06 -2.35814568291e-06 -5.06167497826e-07 6.90934355879e-06 -5.84812704261e-07 -8.05958136025e-08 3.2564795499e-06 0 0 7.31647589597e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.40191107786e-07 0 -1.49281066981e-07 -7.4836675882e-07 0 -8.11714288307e-07 -1.37447595689e-06 0 -1.63491860528e-06 -1.63083168887e-06 0 -1.83540503541e-06 -1.63072103228e-06 0 -1.4359577977e-06 -1.63061037568e-06 0 -8.55535939764e-07 -1.63049971907e-06 0 -2.75114081755e-07 -1.63038906247e-06 0 3.05307776217e-07 -1.63027840591e-06 0 8.85729634201e-07 -1.6301677493e-06 0 1.46615149216e-06 -1.3738454741e-06 0 1.86328265495e-06 -7.48131530468e-07 0 1.65486176399e-06 -1.40181134681e-07 0 8.20228518725e-07 0 0 1.50614403606e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.62121348675e-07 -8.0866826189e-08 -1.49101905227e-07 -8.58664945467e-07 -5.13550594616e-07 -8.06461321988e-07 -1.56448653449e-06 -1.22241384893e-06 -1.61262971039e-06 -1.85026272762e-06 -1.71784334453e-06 -1.80086034572e-06 -1.8501536531e-06 -1.8567778947e-06 -1.40658829603e-06 -1.85004457856e-06 -1.8567778947e-06 -8.3798009299e-07 -1.84993550403e-06 -1.8567778947e-06 -2.69371889988e-07 -1.84982642955e-06 -1.8567778947e-06 2.99236312998e-07 -1.84971735497e-06 -1.8567778947e-06 8.67844516017e-07 -1.84960828048e-06 -1.8567778947e-06 1.43645271902e-06 -1.56386367162e-06 -1.70678477306e-06 1.82846165355e-06 -8.58431276689e-07 -1.20317114363e-06 1.63245990525e-06 -1.62111388e-07 -5.05627125709e-07 8.1498049889e-07 0 -8.05759668104e-08 1.5043630186e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -6.72644965655e-07 -3.38180171986e-07 -7.22373918765e-07 -2.66280374708e-06 -1.62670492203e-06 -3.16878249434e-06 -5.45674030307e-06 -3.67754157538e-06 -6.60768242253e-06 -7.75686491707e-06 -5.59307953252e-06 -8.88461865402e-06 -8.63113627807e-06 -6.6688076209e-06 -8.65464162968e-06 -8.63033252089e-06 -6.92958894017e-06 -6.5439174174e-06 -8.62952876369e-06 -6.92958894016e-06 -3.90164998095e-06 -8.6287250065e-06 -6.92958894016e-06 -1.25938254445e-06 -8.62792124928e-06 -6.92958894016e-06 1.3828848921e-06 -8.62711749207e-06 -6.92958894016e-06 4.02515232861e-06 -8.6263137349e-06 -6.92958894016e-06 6.66741976515e-06 -7.75122202726e-06 -6.57767787898e-06 8.77292841222e-06 -5.45218761872e-06 -5.38967688593e-06 8.98408956884e-06 -2.66070252694e-06 -3.50465055206e-06 6.67307141439e-06 -6.72444422631e-07 -1.56095652331e-06 3.19712653492e-06 0 -3.33148590999e-07 7.28052851797e-07 0 0 0 0 0 0 0 0 -6.72659290155e-07 -3.38180209379e-07 -8.25977344452e-07 -3.9334493919e-06 -2.03780801933e-06 -5.04610794037e-06 -9.31411447741e-06 -5.31767445435e-06 -1.27416099955e-05 -1.48449555921e-05 -9.04508545296e-06 -1.98082251549e-05 -1.88597283132e-05 -1.2047490576e-05 -2.27238020765e-05 -2.03123355783e-05 -1.35481260847e-05 -2.06641824446e-05 -2.03108480893e-05 -1.38591746404e-05 -1.53557444515e-05 -2.03093606003e-05 -1.38591746404e-05 -9.17021214338e-06 -2.03078731114e-05 -1.38591746404e-05 -2.98467983516e-06 -2.03063856225e-05 -1.38591746404e-05 3.20085247303e-06 -2.03048981335e-05 -1.38591746404e-05 9.38638478126e-06 -2.03034106445e-05 -1.38591746404e-05 1.55719170895e-05 -1.88487571478e-05 -1.32775073205e-05 2.08766423297e-05 -1.48344764416e-05 -1.13868076109e-05 2.292301279e-05 -9.30679613652e-06 -8.35237051229e-06 1.99730565226e-05 -3.93042510091e-06 -4.90030999668e-06 1.28464334985e-05 -6.72430098112e-07 -1.92189006408e-06 5.08606279962e-06 0 -3.33148628393e-07 8.31653642659e-07 0 0 -1.62123838845e-07 -8.08668277233e-08 -2.23986732501e-07 -3.17779380752e-06 -1.37414872097e-06 -4.12625724809e-06 -1.01185844867e-05 -4.95681903115e-06 -1.47156064974e-05 -1.87624427343e-05 -1.0071048273e-05 -2.79236178099e-05 -2.67221019718e-05 -1.51514508657e-05 -3.73395725731e-05 -3.21539312452e-05 -1.88529116649e-05 -3.9655659901e-05 -3.40565182727e-05 -2.05075039617e-05 -3.48350820412e-05 -3.40550340237e-05 -2.07887538606e-05 -2.56643944947e-05 -3.40535497747e-05 -2.07887538606e-05 -1.53551772059e-05 -3.40520655257e-05 -2.07887538606e-05 -5.04595991701e-06 -3.40505812768e-05 -2.07887538606e-05 5.26325737184e-06 -3.40490970278e-05 -2.07887538606e-05 1.55724746607e-05 -3.40476127788e-05 -2.07887538606e-05 2.58816919496e-05 -3.21425584385e-05 -2.0026408131e-05 3.50547874897e-05 -2.67100457606e-05 -1.75934758416e-05 3.98866576361e-05 -1.87524254069e-05 -1.36529796546e-05 3.75724297819e-05 -1.01127556271e-05 -8.96182843748e-06 2.81167919717e-05 -3.17607073298e-06 -4.48922139476e-06 1.48247251515e-05 -1.62108897875e-07 -1.30364375828e-06 4.15577935725e-06 -8.05759683554e-08 2.25320663354e-07 -1.02109459549e-06 -4.32975481151e-07 -1.41110022039e-06 -7.15906288877e-06 -2.87962353291e-06 -1.01804576411e-05 -1.72898566229e-05 -8.06078982046e-06 -2.71885469767e-05 -2.86069557103e-05 -1.45422009917e-05 -4.4418238465e-05 -3.83292267e-05 -2.03943179726e-05 -5.49044659157e-05 -4.45327732802e-05 -2.41973787661e-05 -5.57191259503e-05 -4.65835189967e-05 -2.56630304449e-05 -4.78219038334e-05 -4.65827217195e-05 -2.58615519462e-05 -3.50093100404e-05 -4.65819244422e-05 -2.58615519462e-05 -2.0980464457e-05 -4.6581127165e-05 -2.58615519462e-05 -6.95161887361e-06 -4.65803298877e-05 -2.58615519462e-05 7.07722670971e-06 -4.65795326105e-05 -2.58615519462e-05 2.11060722931e-05 -4.65787353333e-05 -2.58615519462e-05 3.51349178765e-05 -4.45261440191e-05 -2.51141561344e-05 4.7956482157e-05 -3.83210325126e-05 -2.25558348619e-05 5.58935004177e-05 -2.85990420421e-05 -1.81445582774e-05 5.51348628824e-05 -1.72843566857e-05 -1.26271009243e-05 4.46632022364e-05 -7.15672764333e-06 -7.07318510642e-06 2.73686680053e-05 -1.02081725327e-06 -2.64407140402e-06 1.02526398847e-05 -4.24760445656e-07 1.41973675911e-06 -2.43108821959e-06 -7.9766164392e-07 -3.35790330992e-06 -1.09946501375e-05 -4.15238411532e-06 -1.6792380409e-05 -2.34857444401e-05 -1.03644272602e-05 -3.83983046197e-05 -3.66362392446e-05 -1.76129361843e-05 -5.81657496045e-05 -4.72119191044e-05 -2.3646343408e-05 -6.87148612442e-05 -5.31353358524e-05 -2.68958230803e-05 -6.7432132317e-05 -5.4646688491e-05 -2.76584312258e-05 -5.65249366636e-05 -5.46465826564e-05 -2.77183233609e-05 -4.10045316851e-05 -5.46464768219e-05 -2.77183233609e-05 -2.45965614143e-05 -5.46463709874e-05 -2.77183233609e-05 -8.18859114357e-06 -5.46462651528e-05 -2.77183233609e-05 8.21937912719e-06 -5.46461593182e-05 -2.77183233609e-05 2.4627349398e-05 -5.46460534837e-05 -2.77183233609e-05 4.10353196687e-05 -5.31338183687e-05 -2.74535436658e-05 5.65641181643e-05 -4.72089767157e-05 -2.54134492435e-05 6.7519025673e-05 -3.66327672342e-05 -2.10144714205e-05 6.8897316094e-05 -2.34829976984e-05 -1.50989450824e-05 5.84203560359e-05 -1.09932710561e-05 -8.91932834367e-06 3.86255600718e-05 -2.43079980849e-06 -3.73255538465e-06 1.69069812447e-05 -7.70196898967e-07 3.37895868915e-06 -3.44160724562e-06 -9.47660582806e-07 -4.74806751114e-06 -1.33501206373e-05 -4.64327823664e-06 -2.10360619488e-05 -2.71663663466e-05 -1.12069459694e-05 -4.51262540784e-05 -4.12778116326e-05 -1.86863609035e-05 -6.61903420442e-05 -5.19839325974e-05 -2.46749776772e-05 -7.64059204975e-05 -5.67306607795e-05 -2.73591216313e-05 -7.31007291897e-05 -5.7176449924e-05 -2.77183233609e-05 -5.97758130673e-05 -5.7176449924e-05 -4.28823374421e-05 -5.7176449924e-05 -2.57294024653e-05 -5.7176449924e-05 -8.57646748848e-06 -5.71764499242e-05 8.5764674884e-06 -5.7176449924e-05 2.57294024653e-05 -5.7176449924e-05 4.28823374421e-05 -5.67306387403e-05 -2.77183233609e-05 5.97780371119e-05 -5.19836633436e-05 -2.62207540536e-05 7.31367584006e-05 -4.12774093561e-05 -2.19753452854e-05 7.65476878457e-05 -2.71660174982e-05 -1.59618419649e-05 6.64384993636e-05 -1.33499307346e-05 -9.58226467778e-06 4.53748568301e-05 -3.44155945194e-06 -4.14332158376e-06 2.11756300263e-05 -9.09131097491e-07 4.77835161513e-06 -3.738406316e-06 -9.47660582758e-07 -5.15405079873e-06 -1.40190456927e-05 -4.64327823661e-06 -2.22495515227e-05 -2.82214728459e-05 -1.12069459694e-05 -4.70414111005e-05 -4.26072760943e-05 -1.86863609035e-05 -6.8486090048e-05 -5.32546675746e-05 -2.46749776772e-05 -7.85364572261e-05 -5.7176449924e-05 -2.73591216313e-05 -7.4301930184e-05 -2.77183233609e-05 -6.0035272419e-05 -5.71764499241e-05 -2.77183233609e-05 6.0035272419e-05 -5.32546675746e-05 -2.62207540536e-05 7.43274983708e-05 -4.26072760944e-05 -2.19753452854e-05 7.8666585281e-05 -2.82214728461e-05 -1.59618419649e-05 6.87317534447e-05 -1.40190456927e-05 -9.5822646778e-06 4.72955117353e-05 -3.73840631598e-06 -4.14332158373e-06 2.23960039748e-05 -9.0913109745e-07 5.18710775435e-06 -3.73840631599e-06 -9.47660582787e-07 -5.15405079874e-06 -1.40190456927e-05 -4.64327823663e-06 -2.22495515227e-05 -2.82214728459e-05 -1.12069459694e-05 -4.70414111005e-05 -4.26072760943e-05 -1.86863609035e-05 -6.8486090048e-05 -5.32546675746e-05 -2.46749776772e-05 -7.85364572261e-05 -5.7176449924e-05 -2.73591216313e-05 -7.4301930184e-05 -2.77183233609e-05 -6.00352724191e-05 -5.71764499241e-05 -2.77183233609e-05 6.0035272419e-05 -5.32546675746e-05 -2.62207540536e-05 7.43274983708e-05 -4.26072760943e-05 -2.19753452854e-05 7.8666585281e-05 -2.82214728461e-05 -1.59618419649e-05 6.87317534447e-05 -1.40190456927e-05 -9.5822646778e-06 4.72955117353e-05 -3.73840631602e-06 -4.14332158375e-06 2.23960039748e-05 -9.09131097486e-07 5.18710775434e-06 -3.738406316e-06 -9.47660582776e-07 -5.15405079875e-06 -1.40190456927e-05 -4.64327823663e-06 -2.22495515227e-05 -2.82214728459e-05 -1.12069459694e-05 -4.70414111005e-05 -4.26072760943e-05 -1.86863609035e-05 -6.8486090048e-05 -5.32546675746e-05 -2.46749776772e-05 -7.85364572262e-05 -5.7176449924e-05 -2.73591216313e-05 -7.4301930184e-05 -2.77183233609e-05 -6.00352724191e-05 -5.71764499241e-05 -2.77183233609e-05 6.0035272419e-05 -5.32546675746e-05 -2.62207540537e-05 7.43274983707e-05 -4.26072760943e-05 -2.19753452854e-05 7.8666585281e-05 -2.82214728461e-05 -1.59618419649e-05 6.87317534447e-05 -1.40190456926e-05 -9.5822646778e-06 4.72955117353e-05 -3.73840631602e-06 -4.14332158371e-06 2.23960039748e-05 -9.09131097463e-07 5.18710775432e-06 -3.738406316e-06 -9.4766058279e-07 -5.15405079874e-06 -1.40190456927e-05 -4.64327823667e-06 -2.22495515227e-05 -2.82214728459e-05 -1.12069459694e-05 -4.70414111005e-05 -4.26072760943e-05 -1.86863609035e-05 -6.8486090048e-05 -5.32546675746e-05 -2.46749776772e-05 -7.85364572261e-05 -5.7176449924e-05 -2.73591216314e-05 -7.4301930184e-05 -2.77183233608e-05 -6.0035272419e-05 -5.71764499241e-05 -2.77183233609e-05 6.0035272419e-05 -5.32546675747e-05 -2.62207540537e-05 7.43274983708e-05 -4.26072760943e-05 -2.19753452854e-05 7.8666585281e-05 -2.82214728461e-05 -1.59618419649e-05 6.87317534447e-05 -1.40190456926e-05 -9.58226467785e-06 4.72955117353e-05 -3.73840631599e-06 -4.14332158383e-06 2.23960039748e-05 -9.0913109751e-07 5.18710775433e-06 -3.45266590759e-06 -7.97661643858e-07 -4.7582091915e-06 -1.34412518785e-05 -4.15238411528e-06 -2.11485151639e-05 -2.74369918087e-05 -1.03644272602e-05 -4.55111630501e-05 -4.17589216617e-05 -1.76129361843e-05 -6.69074280901e-05 -5.25328227907e-05 -2.3646343408e-05 -7.72541740363e-05 -5.69355531742e-05 -2.68958230803e-05 -7.36274536612e-05 -5.7176449924e-05 -2.76584312258e-05 -5.98905850279e-05 -5.7176449924e-05 -2.77183233609e-05 -4.28823374422e-05 -5.7176449924e-05 -2.77183233609e-05 -2.57294024653e-05 -5.7176449924e-05 -2.77183233609e-05 -8.5764674885e-06 -5.71764499241e-05 -2.77183233609e-05 8.57646748842e-06 -5.7176449924e-05 -2.77183233608e-05 2.57294024653e-05 -5.7176449924e-05 -2.77183233609e-05 4.28823374422e-05 -5.69355214655e-05 -2.74535436659e-05 5.98926388902e-05 -5.25325217713e-05 -2.54134492435e-05 7.36627928585e-05 -4.17584909883e-05 -2.10144714205e-05 7.73966572254e-05 -2.74366295645e-05 -1.50989450824e-05 6.71578708156e-05 -1.34410589773e-05 -8.91932834368e-06 4.57617436919e-05 -3.45261793284e-06 -3.7325553846e-06 2.1288783555e-05 -7.70196898921e-07 4.78855300934e-06 -2.45033176321e-06 -4.32975481108e-07 -3.37555901081e-06 -1.11980635777e-05 -2.87962353284e-06 -1.70316722943e-05 -2.41464659492e-05 -8.06078982049e-06 -3.93109908427e-05 -3.78957462107e-05 -1.45422009917e-05 -5.99902178611e-05 -4.88535398122e-05 -2.03943179726e-05 -7.10892190511e-05 -5.46177576684e-05 -2.41973787661e-05 -6.95501425946e-05 -5.57850802547e-05 -2.56630304449e-05 -5.79121649375e-05 -5.57849663582e-05 -2.58615519462e-05 -4.18573558901e-05 -5.57848524616e-05 -2.58615519463e-05 -2.51084863874e-05 -5.5784738565e-05 -2.58615519462e-05 -8.35961688466e-06 -5.57846246684e-05 -2.58615519462e-05 8.3892526181e-06 -5.57845107718e-05 -2.58615519462e-05 2.51381221208e-05 -5.57843968753e-05 -2.58615519462e-05 4.18869916236e-05 -5.46161442264e-05 -2.51141561344e-05 5.79501562129e-05 -4.88504438163e-05 -2.25558348619e-05 6.96369916803e-05 -3.78921319147e-05 -1.81445582774e-05 7.12758618974e-05 -2.41436421195e-05 -1.26271009243e-05 6.0251796195e-05 -1.1196662909e-05 -7.07318510645e-06 3.95432770496e-05 -2.45004167546e-06 -2.64407140394e-06 1.71477974193e-05 -4.24760445623e-07 3.39671580512e-06 -1.02901881948e-06 -8.08668277327e-08 -1.41837507265e-06 -7.33197453181e-06 -1.37414872096e-06 -1.03626595991e-05 -1.79826569426e-05 -4.95681903109e-06 -2.80860238339e-05 -3.01055982268e-05 -1.00710482729e-05 -4.64845644737e-05 -4.05791994455e-05 -1.51514508657e-05 -5.79538868976e-05 -4.71648314501e-05 -1.88529116649e-05 -5.89979486474e-05 -4.92832880079e-05 -2.05075039616e-05 -5.06185676637e-05 -4.92824451908e-05 -2.07887538605e-05 -3.70351700199e-05 -4.92816023738e-05 -2.07887538605e-05 -2.21954245276e-05 -4.92807595568e-05 -2.07887538605e-05 -7.35567903525e-06 -4.92799167397e-05 -2.07887538605e-05 7.48406645704e-06 -4.92790739227e-05 -2.07887538605e-05 2.23238119493e-05 -4.92782311057e-05 -2.07887538605e-05 3.71635574416e-05 -4.71578298241e-05 -2.0026408131e-05 5.07566735448e-05 -4.05705791575e-05 -1.75934758417e-05 5.91787831012e-05 -3.00973419477e-05 -1.36529796546e-05 5.81945464841e-05 -1.79769862474e-05 -8.96182843747e-06 4.67397162665e-05 -7.32959804697e-06 -4.48922139472e-06 2.82716585477e-05 -1.02873996711e-06 -1.30364375824e-06 1.04360370051e-05 -8.05759683559e-08 1.42705195106e-06 -1.62414707585e-07 0 -2.24253946907e-07 -3.24355474484e-06 -3.38180209373e-07 -4.18398290869e-06 -1.0536035293e-05 -2.0378080194e-06 -1.51944269563e-05 -1.98718805815e-05 -5.31767445441e-06 -2.93421957855e-05 -2.86375278564e-05 -9.04508545297e-06 -3.97854785001e-05 -3.46682640706e-05 -1.2047490576e-05 -4.26230767392e-05 -3.6781313083e-05 -1.35481260848e-05 -3.75856609888e-05 -3.67797368768e-05 -1.38591746405e-05 -2.77149253695e-05 -3.67781606706e-05 -1.38591746405e-05 -1.65829948755e-05 -3.67765844643e-05 -1.38591746405e-05 -5.45106438144e-06 -3.67750082582e-05 -1.38591746405e-05 5.68086611261e-06 -3.6773432052e-05 -1.38591746405e-05 1.68127966067e-05 -3.67718558458e-05 -1.38591746405e-05 2.79447271007e-05 -3.46562078169e-05 -1.32775073206e-05 3.78181913347e-05 -2.86248200107e-05 -1.13868076109e-05 4.286783703e-05 -1.98614272307e-05 -8.35237051226e-06 4.00314599081e-05 -1.05300337362e-05 -4.90030999671e-06 2.95442405648e-05 -3.24180659314e-06 -1.92189006415e-06 1.53068165066e-05 -1.62399747872e-07 -3.33148628372e-07 4.21388482023e-06 0 2.25589310912e-07 0 0 0 -6.77691469334e-07 0 -8.30082766574e-07 -4.04939855124e-06 -3.38180171996e-07 -5.15145325059e-06 -9.7818418228e-06 -1.62670492207e-06 -1.3263616886e-05 -1.58328085535e-05 -3.67754157539e-06 -2.09710052261e-05 -2.03051284968e-05 -5.59307953249e-06 -2.43492624239e-05 -2.19372733017e-05 -6.66880762094e-06 -2.22793921854e-05 -2.19357003355e-05 -6.92958894017e-06 -1.65827187257e-05 -2.19341273693e-05 -6.92958894013e-06 -9.90355834006e-06 -2.1932554403e-05 -6.92958894014e-06 -3.22439795442e-06 -2.19309814368e-05 -6.92958894011e-06 3.45476243119e-06 -2.19294084706e-05 -6.92958894009e-06 1.01339228168e-05 -2.19278355044e-05 -6.9295889401e-06 1.68130832024e-05 -2.02935547973e-05 -6.57767787902e-06 2.25056362292e-05 -1.58218329082e-05 -5.38967688591e-06 2.45606572213e-05 -9.77426406392e-06 -3.50465055207e-06 2.11443996135e-05 -4.04631185208e-06 -1.56095652333e-06 1.33723380155e-05 -6.77461080901e-07 -3.33148591029e-07 5.1921763269e-06 0 0 8.35784536324e-07 0 0 0 0 0 0 0 0 -6.7767707006e-07 0 -7.25964571083e-07 -2.73332810219e-06 -8.08668262548e-08 -3.22786368248e-06 -5.69236104472e-06 -5.13550594609e-07 -6.84239454255e-06 -8.17680044659e-06 -1.22241384892e-06 -9.31762937468e-06 -9.13119067058e-06 -1.71784334459e-06 -9.1386429294e-06 -9.13035433353e-06 -1.8567778948e-06 -6.92265543553e-06 -9.12951799645e-06 -1.85677789471e-06 -4.12765879481e-06 -9.12868165934e-06 -1.85677789471e-06 -1.33266215402e-06 -9.12784532232e-06 -1.85677789472e-06 1.46233448671e-06 -9.1270089852e-06 -1.85677789472e-06 4.25733112748e-06 -9.12617264818e-06 -1.8567778947e-06 7.05232776825e-06 -8.17094395899e-06 -1.70678477311e-06 9.26267163098e-06 -5.68767113484e-06 -1.20317114359e-06 9.42137389427e-06 -2.73118809722e-06 -5.05627125699e-07 6.90987203597e-06 -6.7747548015e-07 -8.05759668151e-08 3.2566928155e-06 0 0 7.31668975754e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.62412214287e-07 0 -1.49279809346e-07 -8.66880760736e-07 0 -8.11686299085e-07 -1.59195508942e-06 0 -1.63485051563e-06 -1.88879695915e-06 0 -1.83530720325e-06 -1.88868630256e-06 0 -1.43584714113e-06 -1.88857564593e-06 0 -8.55425283129e-07 -1.88846498934e-06 0 -2.75003425147e-07 -1.88835433274e-06 0 3.05418432804e-07 -1.88824367612e-06 0 8.85840290784e-07 -1.88813301954e-06 0 1.46626214878e-06 -1.59132460654e-06 0 1.86337966578e-06 -8.66645532421e-07 0 1.6549283841e-06 -1.62402241199e-07 0 8.20255879175e-07 0 0 1.50615639101e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.84302761702e-07 -8.08866729266e-08 -1.49100648905e-07 -9.76058509645e-07 -5.14090966716e-07 -8.06433504017e-07 -1.77822205329e-06 -1.22372543698e-06 -1.61256240812e-06 -2.10297748447e-06 -1.71859679448e-06 -1.80076383458e-06 -2.10286840993e-06 -1.85677789464e-06 -1.4064792215e-06 -2.10275933541e-06 -1.85677789465e-06 -8.37871018461e-07 -2.10265026085e-06 -1.85677789464e-06 -2.69262815464e-07 -2.10254118639e-06 -1.85677789465e-06 2.99345387548e-07 -2.1024321118e-06 -1.85677789465e-06 8.67953590549e-07 -2.10232303724e-06 -1.85677789464e-06 1.43656179353e-06 -1.7775991904e-06 -1.70603132301e-06 1.82855733964e-06 -9.75824840893e-07 -1.20185955551e-06 1.63252572878e-06 -1.84292801043e-07 -5.05086753576e-07 8.15007681539e-07 0 -8.05561200679e-08 1.50437535891e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -7.64621381874e-07 -3.38523351813e-07 -7.22352216221e-07 -3.02624278461e-06 -1.63118327759e-06 -3.16856701344e-06 -6.20031536585e-06 -3.68929739103e-06 -6.60715101834e-06 -8.81264408907e-06 -5.60688719685e-06 -8.88388930087e-06 -9.80547736069e-06 -6.67498771254e-06 -8.65386179441e-06 -9.80467360354e-06 -6.92958893995e-06 -6.54311366024e-06 -9.8038698463e-06 -6.92958893996e-06 -3.90084622373e-06 -9.8030660891e-06 -6.92958893996e-06 -1.25857878722e-06 -9.80226233191e-06 -6.92958893995e-06 1.38368864929e-06 -9.80145857467e-06 -6.92958893996e-06 4.02595608576e-06 -9.80065481749e-06 -6.92958893996e-06 6.6682235223e-06 -8.80700119923e-06 -6.57149778693e-06 8.77369709911e-06 -6.19576268151e-06 -5.37586922125e-06 8.98479462942e-06 -3.02414156448e-06 -3.4928947362e-06 6.67358366801e-06 -7.6442083883e-07 -1.55647816765e-06 3.19733585817e-06 0 -3.32805411154e-07 7.28074138877e-07 0 0 0 0 0 0 0 0 -7.64635706375e-07 -3.38523389196e-07 -8.25955642039e-07 -4.47008370634e-06 -2.04569874123e-06 -5.04570023594e-06 -1.05813515258e-05 -5.34600564846e-06 -1.27404364388e-05 -1.68592457143e-05 -9.09195879568e-06 -1.98065769695e-05 -2.14138894471e-05 -1.2092077125e-05 -2.27221384049e-05 -2.3061461048e-05 -1.35663614777e-05 -2.06626793675e-05 -2.3059973559e-05 -1.385917464e-05 -1.53542569626e-05 -2.305848607e-05 -1.38591746399e-05 -9.16872465441e-06 -2.30569985811e-05 -1.38591746399e-05 -2.98319234622e-06 -2.30555110921e-05 -1.38591746399e-05 3.202339962e-06 -2.30540236031e-05 -1.38591746399e-05 9.3878722702e-06 -2.30525361142e-05 -1.38591746399e-05 1.55734045784e-05 -2.14029182816e-05 -1.32592719267e-05 2.08781036141e-05 -1.68487665638e-05 -1.13422210612e-05 2.2924574061e-05 -1.05740331849e-05 -8.30549716906e-06 1.99745978143e-05 -4.4670594154e-06 -4.87197880226e-06 1.28475459567e-05 -7.64406514307e-07 -1.91399934206e-06 5.08645671531e-06 0 -3.32805448554e-07 8.31674929746e-07 0 0 -1.84305251867e-07 -8.08866744627e-08 -2.23985476137e-07 -3.61167453471e-06 -1.37895040921e-06 -4.12595857397e-06 -1.14954001593e-05 -4.98856258431e-06 -1.47141156766e-05 -2.13048015756e-05 -1.01460277876e-05 -2.79210604416e-05 -3.03293709768e-05 -1.52523037359e-05 -3.73368744124e-05 -3.64835046995e-05 -1.89373889492e-05 -3.96535222849e-05 -3.86383926223e-05 -2.05397149018e-05 -3.48334997388e-05 -3.86369083733e-05 -2.078875386e-05 -2.56629102457e-05 -3.86354241243e-05 -2.078875386e-05 -1.53536929569e-05 -3.86339398753e-05 -2.078875386e-05 -5.04447566799e-06 -3.86324556263e-05 -2.078875386e-05 5.26474162084e-06 -3.86309713773e-05 -2.078875386e-05 1.55739589097e-05 -3.86294871284e-05 -2.078875386e-05 2.58831761985e-05 -3.64721318928e-05 -1.99941971898e-05 3.50562846258e-05 -3.03173147655e-05 -1.75089985562e-05 3.98885710513e-05 -2.12947842482e-05 -1.35521267836e-05 3.75748555034e-05 -1.14895712997e-05 -8.88684892224e-06 2.81191442165e-05 -3.60995146017e-06 -4.45747784132e-06 1.48261340467e-05 -1.8429031088e-07 -1.29884206995e-06 4.15606890506e-06 -8.05561216025e-08 2.25321897373e-07 -1.16070926684e-06 -4.33535699988e-07 -1.41106347357e-06 -8.13498523943e-06 -2.89564065931e-06 -1.01794375426e-05 -1.96354390072e-05 -8.12765086129e-06 -2.71857017425e-05 -3.2467217016e-05 -1.46711599815e-05 -4.4414460577e-05 -4.34782666759e-05 -2.05450502026e-05 -5.49012874369e-05 -5.04985854094e-05 -2.43069604489e-05 -5.57172589351e-05 -5.28185614768e-05 -2.569960475e-05 -4.78209397827e-05 -5.28177641996e-05 -2.58615519454e-05 -3.50085127631e-05 -5.28169669223e-05 -2.58615519454e-05 -2.09796671797e-05 -5.2816169645e-05 -2.58615519454e-05 -6.95082159635e-06 -5.28153723678e-05 -2.58615519454e-05 7.07802398701e-06 -5.28145750906e-05 -2.58615519454e-05 2.11068695704e-05 -5.28137778133e-05 -2.58615519454e-05 3.51357151537e-05 -5.04919561482e-05 -2.50775818278e-05 4.79573319047e-05 -4.34700724885e-05 -2.24462531777e-05 5.58950406717e-05 -3.24593033478e-05 -1.79938260463e-05 5.51375900003e-05 -1.96299390701e-05 -1.24981419337e-05 4.4666575942e-05 -8.13264999406e-06 -7.00632406513e-06 2.73712992149e-05 -1.16043192461e-06 -2.62805427745e-06 1.02536145738e-05 -4.24200226781e-07 1.41977266295e-06 -2.76333775583e-06 -7.99533450711e-07 -3.35774874446e-06 -1.24911669904e-05 -4.18089730469e-06 -1.67905324448e-05 -2.66637912363e-05 -1.04620671203e-05 -3.83943152647e-05 -4.15637896913e-05 -1.77817858291e-05 -5.81612261498e-05 -5.35317375177e-05 -2.38221800197e-05 -6.87117762485e-05 -6.02300881115e-05 -2.69945273918e-05 -6.74309715209e-05 -6.19391197208e-05 -2.76720565921e-05 -5.65247004953e-05 -6.19390138862e-05 -2.77183233601e-05 -4.10044258505e-05 -6.19389080517e-05 -2.77183233601e-05 -2.45964555797e-05 -6.19388022171e-05 -2.771832336e-05 -8.188485309e-06 -6.19386963825e-05 -2.77183233601e-05 8.21948496176e-06 -6.1938590548e-05 -2.771832336e-05 2.46274552325e-05 -6.19384847134e-05 -2.771832336e-05 4.10354255033e-05 -6.02285706279e-05 -2.74399182979e-05 5.65642683734e-05 -5.3528795129e-05 -2.53147449304e-05 6.75198485929e-05 -4.15603176809e-05 -2.08386348075e-05 6.88998381927e-05 -2.66610444945e-05 -1.49300954366e-05 5.84243004735e-05 -1.24897879091e-05 -8.82168848299e-06 3.86291892366e-05 -2.76304934473e-06 -3.70404219505e-06 1.69087255698e-05 -7.68325092118e-07 3.37910867038e-06 -3.91180118269e-06 -9.50285839438e-07 -4.7477808394e-06 -1.51655683438e-05 -4.67721805966e-06 -2.10336800779e-05 -3.08371335255e-05 -1.13166410974e-05 -4.51216193893e-05 -4.68197356469e-05 -1.88691860596e-05 -6.61855060574e-05 -5.89301256272e-05 -2.48551776562e-05 -7.64030902204e-05 -6.42959134504e-05 -2.74348770154e-05 -7.3100116247e-05 -6.47999765786e-05 -2.771832336e-05 -5.97757975119e-05 -6.47999765787e-05 -4.28823374421e-05 -6.47999765787e-05 -2.57294024653e-05 -6.47999765787e-05 -8.57646748842e-06 -6.47999765788e-05 8.57646748845e-06 -6.47999765787e-05 2.57294024653e-05 -6.47999765787e-05 4.28823374422e-05 -6.42958914111e-05 -2.77183233601e-05 5.9778032159e-05 -5.89298563735e-05 -2.6144998668e-05 7.31371052932e-05 -4.68193333703e-05 -2.1795145305e-05 7.65499259736e-05 -3.08367846772e-05 -1.57790168077e-05 6.64426623372e-05 -1.51653784411e-05 -9.47256954917e-06 4.53790374579e-05 -3.91175338895e-06 -4.10938176046e-06 2.11778635649e-05 -9.06505840806e-07 4.778628939e-06 -4.24908640459e-06 -9.50285839394e-07 -5.15371563079e-06 -1.59249295913e-05 -4.67721805963e-06 -2.22470104217e-05 -3.2033239749e-05 -1.13166410974e-05 -4.70365800398e-05 -4.83249242134e-05 -1.88691860596e-05 -6.84811506472e-05 -6.03675159268e-05 -2.48551776562e-05 -7.85337001035e-05 -6.47999765786e-05 -2.74348770154e-05 -7.43014873344e-05 -2.77183233601e-05 -6.0035272419e-05 -6.47999765788e-05 -2.77183233601e-05 6.00352724191e-05 -6.03675159268e-05 -2.6144998668e-05 7.43277147146e-05 -4.83249242134e-05 -2.1795145305e-05 7.86687484412e-05 -3.20332397492e-05 -1.57790168077e-05 6.87359954096e-05 -1.59249295913e-05 -9.4725695492e-06 4.72998620401e-05 -4.24908640457e-06 -4.10938176043e-06 2.23983831566e-05 -9.06505840768e-07 5.18743177982e-06 -4.24908640459e-06 -9.50285839415e-07 -5.15371563076e-06 -1.59249295913e-05 -4.67721805965e-06 -2.22470104217e-05 -3.2033239749e-05 -1.13166410974e-05 -4.70365800397e-05 -4.83249242133e-05 -1.88691860596e-05 -6.84811506472e-05 -6.03675159268e-05 -2.48551776562e-05 -7.85337001035e-05 -6.47999765787e-05 -2.74348770154e-05 -7.43014873344e-05 -2.77183233601e-05 -6.0035272419e-05 -6.47999765788e-05 -2.77183233601e-05 6.0035272419e-05 -6.03675159268e-05 -2.6144998668e-05 7.43277147146e-05 -4.83249242134e-05 -2.1795145305e-05 7.86687484412e-05 -3.20332397492e-05 -1.57790168077e-05 6.87359954096e-05 -1.59249295913e-05 -9.47256954919e-06 4.72998620401e-05 -4.24908640463e-06 -4.10938176046e-06 2.23983831566e-05 -9.06505840783e-07 5.18743177979e-06 -4.24908640459e-06 -9.50285839418e-07 -5.15371563081e-06 -1.59249295913e-05 -4.67721805965e-06 -2.22470104217e-05 -3.2033239749e-05 -1.13166410974e-05 -4.70365800397e-05 -4.83249242134e-05 -1.88691860596e-05 -6.84811506472e-05 -6.03675159268e-05 -2.48551776562e-05 -7.85337001035e-05 -6.47999765787e-05 -2.74348770154e-05 -7.43014873344e-05 -2.771832336e-05 -6.0035272419e-05 -6.47999765788e-05 -2.77183233601e-05 6.0035272419e-05 -6.03675159268e-05 -2.6144998668e-05 7.43277147146e-05 -4.83249242134e-05 -2.1795145305e-05 7.86687484413e-05 -3.20332397492e-05 -1.57790168077e-05 6.87359954096e-05 -1.59249295913e-05 -9.47256954919e-06 4.72998620401e-05 -4.24908640463e-06 -4.10938176042e-06 2.23983831566e-05 -9.06505840769e-07 5.18743177978e-06 -4.24908640459e-06 -9.50285839479e-07 -5.15371563079e-06 -1.59249295913e-05 -4.67721805968e-06 -2.22470104217e-05 -3.2033239749e-05 -1.13166410974e-05 -4.70365800397e-05 -4.83249242133e-05 -1.88691860597e-05 -6.84811506472e-05 -6.03675159268e-05 -2.48551776562e-05 -7.85337001035e-05 -6.47999765787e-05 -2.74348770154e-05 -7.43014873344e-05 -2.771832336e-05 -6.0035272419e-05 -6.47999765787e-05 -2.77183233601e-05 6.0035272419e-05 -6.03675159268e-05 -2.6144998668e-05 7.43277147146e-05 -4.83249242134e-05 -2.1795145305e-05 7.86687484412e-05 -3.20332397492e-05 -1.57790168077e-05 6.87359954096e-05 -1.59249295913e-05 -9.47256954924e-06 4.729986204e-05 -4.24908640463e-06 -4.10938176049e-06 2.23983831566e-05 -9.0650584083e-07 5.18743177982e-06 -3.92436674466e-06 -7.99533450671e-07 -4.75792191426e-06 -1.52690597687e-05 -4.18089730467e-06 -2.11461210332e-05 -3.11442297744e-05 -1.04620671204e-05 -4.55064905079e-05 -4.73652675573e-05 -1.7781785829e-05 -6.69025475542e-05 -5.95521644321e-05 -2.38221800197e-05 -7.72513333444e-05 -6.45280565793e-05 -2.69945273918e-05 -7.36268644922e-05 -6.47999765787e-05 -2.76720565921e-05 -5.98905699972e-05 -6.47999765787e-05 -2.771832336e-05 -4.28823374422e-05 -6.47999765787e-05 -2.77183233601e-05 -2.57294024653e-05 -6.47999765786e-05 -2.77183233601e-05 -8.57646748842e-06 -6.47999765788e-05 -2.771832336e-05 8.57646748845e-06 -6.47999765787e-05 -2.771832336e-05 2.57294024653e-05 -6.47999765787e-05 -2.77183233601e-05 4.28823374422e-05 -6.45280248707e-05 -2.74399182979e-05 5.98926334125e-05 -5.95518634128e-05 -2.53147449304e-05 7.36631162925e-05 -4.73648368839e-05 -2.08386348075e-05 7.7398905825e-05 -3.11438675302e-05 -1.49300954366e-05 6.71620773353e-05 -1.52688668675e-05 -8.82168848301e-06 4.57659612419e-05 -3.92431876996e-06 -3.70404219501e-06 2.12910291288e-05 -7.68325092079e-07 4.78883093443e-06 -2.78520447563e-06 -4.33535699948e-07 -3.3754036534e-06 -1.27221957596e-05 -2.89564065927e-06 -1.70297991899e-05 -2.74136858441e-05 -8.1276508613e-06 -3.93069108007e-05 -4.29922512271e-05 -1.46711599815e-05 -5.9985568888e-05 -5.53925215925e-05 -2.05450502026e-05 -7.10860658069e-05 -6.1909918552e-05 -2.43069604489e-05 -6.95489865798e-05 -6.32290222542e-05 -2.569960475e-05 -5.79119261209e-05 -6.32289083577e-05 -2.58615519455e-05 -4.18572419935e-05 -6.32287944611e-05 -2.58615519454e-05 -2.51083724908e-05 -6.32286805645e-05 -2.58615519455e-05 -8.35950298801e-06 -6.32285666679e-05 -2.58615519455e-05 8.38936651468e-06 -6.32284527713e-05 -2.58615519454e-05 2.51382360174e-05 -6.32283388748e-05 -2.58615519454e-05 4.18871055202e-05 -6.190830511e-05 -2.50775818279e-05 5.79503087553e-05 -5.53894255967e-05 -2.24462531777e-05 6.96378098189e-05 -4.29886369311e-05 -1.79938260462e-05 7.12784517675e-05 -2.74108620144e-05 -1.24981419337e-05 6.02558639075e-05 -1.2720795091e-05 -7.00632406514e-06 3.95469950926e-05 -2.78491438784e-06 -2.62805427739e-06 1.7149566517e-05 -4.24200226732e-07 3.39686657481e-06 -1.16971423507e-06 -8.08866744598e-08 -1.41833815015e-06 -8.33140851396e-06 -1.37895040917e-06 -1.03616222807e-05 -2.04219860128e-05 -4.98856258426e-06 -2.80830895357e-05 -3.41675652737e-05 -1.01460277876e-05 -4.64806271137e-05 -4.60297038825e-05 -1.52523037358e-05 -5.79505653698e-05 -5.3482316804e-05 -1.89373889493e-05 -5.89960049801e-05 -5.58787304474e-05 -2.05397149017e-05 -5.061755605e-05 -5.58778876303e-05 -2.07887538599e-05 -3.70343272028e-05 -5.58770448133e-05 -2.07887538599e-05 -2.21945817105e-05 -5.58762019963e-05 -2.07887538599e-05 -7.35483621818e-06 -5.58753591792e-05 -2.07887538599e-05 7.4849092741e-06 -5.58745163622e-05 -2.07887538599e-05 2.23246547664e-05 -5.58736735452e-05 -2.07887538599e-05 3.71644002587e-05 -5.34753151779e-05 -1.99941971897e-05 5.07575707985e-05 -4.60210835946e-05 -1.75089985563e-05 5.91804004843e-05 -3.41593089946e-05 -1.35521267836e-05 5.81974166511e-05 -2.04163153177e-05 -8.8868489222e-06 4.67432479934e-05 -8.32903202916e-06 -4.45747784129e-06 2.82743777356e-05 -1.16943538265e-06 -1.29884206991e-06 1.04370287653e-05 -8.05561216151e-08 1.42708803046e-06 -1.84635814084e-07 0 -2.24252689239e-07 -3.68639218324e-06 -3.38523389175e-07 -4.18368022829e-06 -1.19695133541e-05 -2.04569874125e-06 -1.51928908199e-05 -2.25641984527e-05 -5.34600564852e-06 -2.93395210194e-05 -3.25027148419e-05 -9.09195879566e-06 -3.97826315044e-05 -3.93355368154e-05 -1.2092077125e-05 -4.26208156019e-05 -4.17288377458e-05 -1.35663614778e-05 -3.75839845014e-05 -4.17272615396e-05 -1.38591746401e-05 -2.77133491633e-05 -4.17256853334e-05 -1.38591746401e-05 -1.65814186692e-05 -4.17241091273e-05 -1.38591746401e-05 -5.44948817523e-06 -4.17225329211e-05 -1.38591746401e-05 5.68244231882e-06 -4.17209567149e-05 -1.38591746401e-05 1.68143728129e-05 -4.17193805087e-05 -1.38591746401e-05 2.79463033069e-05 -3.93234805617e-05 -1.32592719268e-05 3.78197836589e-05 -3.24900069961e-05 -1.13422210612e-05 4.28698762099e-05 -2.25537451019e-05 -8.30549716908e-06 4.00340359153e-05 -1.19635117973e-05 -4.87197880231e-06 2.95467102074e-05 -3.68464403151e-06 -1.9139993421e-06 1.53082705172e-05 -1.84620854431e-07 -3.32805448546e-07 4.21417836334e-06 0 2.25590546272e-07 0 0 0 -7.70354245219e-07 0 -8.30060967976e-07 -4.60181430958e-06 -3.38523351856e-07 -5.15103735894e-06 -1.11125659778e-05 -1.63118327766e-06 -1.32624003724e-05 -1.79808207579e-05 -3.68929739103e-06 -2.09692765315e-05 -2.30545693514e-05 -5.60688719684e-06 -2.43475082521e-05 -2.49057890279e-05 -6.67498771257e-06 -2.22778050763e-05 -2.49042160617e-05 -6.92958893995e-06 -1.65811457595e-05 -2.49026430955e-05 -6.92958893991e-06 -9.90198537383e-06 -2.49010701294e-05 -6.92958893994e-06 -3.22282498821e-06 -2.48994971631e-05 -6.92958893993e-06 3.45633539744e-06 -2.48979241969e-05 -6.92958893995e-06 1.0135495783e-05 -2.48963512307e-05 -6.92958893995e-06 1.68146561686e-05 -2.3042995652e-05 -6.57149778694e-06 2.25071824762e-05 -1.79698451126e-05 -5.37586922129e-06 2.45623108009e-05 -1.11049882189e-05 -3.49289473622e-06 2.11460225001e-05 -4.59872761044e-06 -1.55647816771e-06 1.33734936309e-05 -7.70123856762e-07 -3.32805411177e-07 5.19257842986e-06 0 0 8.35805919586e-07 0 0 0 0 0 0 0 0 -7.70339845953e-07 0 -7.25942772472e-07 -3.1063705163e-06 -8.08866729915e-08 -3.22764433491e-06 -6.46797036049e-06 -5.14090966714e-07 -6.84184724951e-06 -9.28960599758e-06 -1.22372543694e-06 -9.31687318176e-06 -1.03734113995e-05 -1.71859679455e-06 -9.13783244225e-06 -1.03725750625e-05 -1.85677789463e-06 -6.92181909843e-06 -1.03717387254e-05 -1.85677789463e-06 -4.1268224577e-06 -1.03709023883e-05 -1.85677789469e-06 -1.33182581694e-06 -1.03700660512e-05 -1.85677789468e-06 1.4631708238e-06 -1.03692297141e-05 -1.85677789468e-06 4.25816746448e-06 -1.03683933771e-05 -1.85677789464e-06 7.0531641053e-06 -9.28374950997e-06 -1.70603132307e-06 9.26347119422e-06 -6.46328045062e-06 -1.20185955545e-06 9.42210616215e-06 -3.10423051131e-06 -5.05086753552e-07 6.91040032722e-06 -7.70138256073e-07 -8.05561201221e-08 3.25690601637e-06 0 0 7.3169035898e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.84633320797e-07 0 -1.49278551704e-07 -9.8539476265e-07 0 -8.11658306617e-07 -1.80943422184e-06 0 -1.63478242312e-06 -2.14676222931e-06 0 -1.83520937133e-06 -2.1466515727e-06 0 -1.43573648452e-06 -2.14654091611e-06 0 -8.55314626514e-07 -2.14643025945e-06 0 -2.74892768538e-07 -2.14631960294e-06 0 3.05529089416e-07 -2.14620894626e-06 0 8.85950947394e-07 -2.1460982897e-06 0 1.46637280539e-06 -1.80880373903e-06 0 1.86347667685e-06 -9.85159534319e-07 0 1.65499500125e-06 -1.84623347663e-07 0 8.202832364e-07 0 0 1.50616874475e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.06484174728e-07 -8.09065196671e-08 -1.49099392569e-07 -1.09345207384e-06 -5.14631338834e-07 -8.0640568284e-07 -1.99195757216e-06 -1.22503702507e-06 -1.61249510262e-06 -2.35569224138e-06 -1.71935024449e-06 -1.80066732336e-06 -2.35558316681e-06 -1.85677789464e-06 -1.40637014695e-06 -2.3554740923e-06 -1.85677789465e-06 -8.37761943952e-07 -2.35536501777e-06 -1.85677789465e-06 -2.69153740918e-07 -2.35525594324e-06 -1.85677789465e-06 2.99454462058e-07 -2.35514686869e-06 -1.85677789465e-06 8.680626651e-07 -2.35503779417e-06 -1.85677789465e-06 1.43667086811e-06 -1.99133470926e-06 -1.70527787301e-06 1.82865302575e-06 -1.09321840506e-06 -1.20054796742e-06 1.63259154914e-06 -2.06474214062e-07 -5.04546381458e-07 8.15034860988e-07 0 -8.05362733271e-08 1.50438769924e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -8.56597798103e-07 -3.38866531642e-07 -7.22330510956e-07 -3.38968182224e-06 -1.63566163319e-06 -3.16835146697e-06 -6.94389042877e-06 -3.70105320679e-06 -6.6066194174e-06 -9.86842326128e-06 -5.62069486136e-06 -8.88315974175e-06 -1.09798184436e-05 -6.6811678044e-06 -8.65308187976e-06 -1.09790146864e-05 -6.92958893996e-06 -6.54230990305e-06 -1.09782109292e-05 -6.92958893995e-06 -3.90004246652e-06 -1.0977407172e-05 -6.92958893995e-06 -1.25777503004e-06 -1.09766034148e-05 -6.92958893996e-06 1.38449240647e-06 -1.09757996576e-05 -6.92958893996e-06 4.02675984298e-06 -1.09749959003e-05 -6.92958893995e-06 6.66902727947e-06 -9.8627803715e-06 -6.56531769509e-06 8.7744657066e-06 -6.93933774442e-06 -5.36206155675e-06 8.98549948411e-06 -3.38758060215e-06 -3.48113892043e-06 6.67409572485e-06 -8.56397255102e-07 -1.55199981205e-06 3.19754511587e-06 0 -3.32462231323e-07 7.28095422964e-07 0 0 0 0 0 0 0 0 -8.5661212261e-07 -3.38866569033e-07 -8.25933936715e-07 -5.0067180209e-06 -2.05358946318e-06 -5.04529231668e-06 -1.18485885744e-05 -5.37433684274e-06 -1.27392619709e-05 -1.8873535837e-05 -9.13883213867e-06 -1.98049275824e-05 -2.39680505814e-05 -1.21366636743e-05 -2.27204739427e-05 -2.58105865182e-05 -1.35845968711e-05 -2.06611760525e-05 -2.58090990293e-05 -1.38591746399e-05 -1.53527694736e-05 -2.58076115403e-05 -1.38591746399e-05 -9.16723716543e-06 -2.58061240513e-05 -1.38591746399e-05 -2.98170485722e-06 -2.58046365624e-05 -1.385917464e-05 3.20382745096e-06 -2.58031490734e-05 -1.38591746399e-05 9.38935975913e-06 -2.58016615845e-05 -1.385917464e-05 1.55748920673e-05 -2.3957079416e-05 -1.32410365333e-05 2.08795646608e-05 -1.88630566866e-05 -1.12976345118e-05 2.29261345416e-05 -1.18412702335e-05 -8.25862382607e-06 1.99761379044e-05 -5.00369372994e-06 -4.84364760799e-06 1.28486575038e-05 -8.56382930567e-07 -1.90610862011e-06 5.08685041614e-06 0 -3.32462268718e-07 8.31696213858e-07 0 0 -2.06486664889e-07 -8.09065212189e-08 -2.23984219741e-07 -4.04555526199e-06 -1.38375209751e-06 -4.12565974709e-06 -1.28722158322e-05 -5.02030613761e-06 -1.47126233268e-05 -2.38471604174e-05 -1.02210073026e-05 -2.79185000902e-05 -3.39366399825e-05 -1.53531566065e-05 -3.73341737357e-05 -4.08130781546e-05 -1.90218662341e-05 -3.96513835783e-05 -4.32202669728e-05 -2.05719258424e-05 -3.48319172091e-05 -4.32187827238e-05 -2.078875386e-05 -2.56614259967e-05 -4.32172984748e-05 -2.078875386e-05 -1.53522087079e-05 -4.32158142258e-05 -2.078875386e-05 -5.04299141905e-06 -4.32143299769e-05 -2.078875386e-05 5.26622586984e-06 -4.32128457278e-05 -2.078875386e-05 1.55754431587e-05 -4.32113614789e-05 -2.078875386e-05 2.58846604475e-05 -4.08017053479e-05 -1.99619862491e-05 3.50577815346e-05 -3.39245837713e-05 -1.74245212713e-05 3.98904833761e-05 -2.383714309e-05 -1.3451273913e-05 3.75772787091e-05 -1.28663869726e-05 -8.81186940726e-06 2.81214934781e-05 -4.04383218736e-06 -4.425734288e-06 1.48275414129e-05 -2.06471723931e-07 -1.29404038165e-06 4.1563583001e-06 -8.05362748675e-08 2.25323131397e-07 -1.30032393821e-06 -4.34095918848e-07 -1.41102671998e-06 -9.11090759028e-06 -2.91165778581e-06 -1.0178416497e-05 -2.1981021392e-05 -8.19451190237e-06 -2.71828524796e-05 -3.63274783225e-05 -1.48001189718e-05 -4.44106774322e-05 -4.86273066529e-05 -2.06957824332e-05 -5.4898106074e-05 -5.64643975399e-05 -2.44165421325e-05 -5.57153913443e-05 -5.90536039582e-05 -2.57361790558e-05 -4.78199756693e-05 -5.90528066809e-05 -2.58615519454e-05 -3.50077154858e-05 -5.90520094037e-05 -2.58615519454e-05 -2.09788699025e-05 -5.90512121264e-05 -2.58615519454e-05 -6.95002431913e-06 -5.90504148492e-05 -2.58615519454e-05 7.07882126427e-06 -5.90496175719e-05 -2.58615519454e-05 2.11076668476e-05 -5.90488202947e-05 -2.58615519454e-05 3.5136512431e-05 -5.64577682787e-05 -2.5041007522e-05 4.79581815899e-05 -4.86191124655e-05 -2.23366714942e-05 5.589658035e-05 -3.63195646544e-05 -1.78430938157e-05 5.51403142341e-05 -2.19755214548e-05 -1.23691829434e-05 4.46699443908e-05 -9.1085723449e-06 -6.93946302405e-06 2.73739263958e-05 -1.30004659595e-06 -2.61203715096e-06 1.02545883157e-05 -4.2364000792e-07 1.41980856008e-06 -3.09558729213e-06 -8.01405257525e-07 -3.35759412035e-06 -1.39876838437e-05 -4.2094104942e-06 -1.67886821838e-05 -2.98418380332e-05 -1.05597069807e-05 -3.83903192753e-05 -4.6491340139e-05 -1.79506354744e-05 -5.81566961522e-05 -5.98515559324e-05 -2.39980166321e-05 -6.87086893772e-05 -6.73248403721e-05 -2.70932317041e-05 -6.74298111389e-05 -6.92315509521e-05 -2.76856819593e-05 -5.65244641584e-05 -6.92314451175e-05 -2.77183233601e-05 -4.1004320016e-05 -6.92313392829e-05 -2.771832336e-05 -2.45963497452e-05 -6.92312334484e-05 -2.771832336e-05 -8.18837947444e-06 -6.92311276139e-05 -2.77183233601e-05 8.21959079632e-06 -6.92310217793e-05 -2.771832336e-05 2.4627561067e-05 -6.92309159447e-05 -2.77183233601e-05 4.10355313378e-05 -6.73233228884e-05 -2.74262929307e-05 5.65644184138e-05 -5.98486135437e-05 -2.52160406181e-05 6.75206719268e-05 -4.64878681286e-05 -2.06627981951e-05 6.89023584155e-05 -2.98390912914e-05 -1.47612457913e-05 5.84282383681e-05 -1.39863047623e-05 -8.72404862258e-06 3.86328117672e-05 -3.09529888106e-06 -3.67552900554e-06 1.69104675982e-05 -7.6645328532e-07 3.37925859289e-06 -4.38199511985e-06 -9.5291109609e-07 -4.74749402116e-06 -1.69810160506e-05 -4.71115788281e-06 -2.10312948576e-05 -3.45079007052e-05 -1.14263362257e-05 -4.51169764702e-05 -5.23616596624e-05 -1.90520112163e-05 -6.61806632374e-05 -6.58763186585e-05 -2.50353776359e-05 -7.64002594611e-05 -7.18611661228e-05 -2.75106324003e-05 -7.30995048014e-05 -7.24235032349e-05 -2.77183233601e-05 -5.97757820937e-05 -7.24235032349e-05 -4.28823374422e-05 -7.24235032349e-05 -2.57294024653e-05 -7.24235032349e-05 -8.57646748845e-06 -7.2423503235e-05 8.57646748843e-06 -7.24235032349e-05 2.57294024653e-05 -7.24235032349e-05 4.28823374422e-05 -7.18611440835e-05 -2.771832336e-05 5.97780273433e-05 -6.58760494047e-05 -2.60692432831e-05 7.3137453683e-05 -5.23612573858e-05 -2.16149453252e-05 7.65521636193e-05 -3.45075518567e-05 -1.5596191651e-05 6.64468184776e-05 -1.6980826148e-05 -9.36287442087e-06 4.53832098557e-05 -4.38194732613e-06 -4.07544193732e-06 2.11800937541e-05 -9.03880584153e-07 4.77890611644e-06 -4.75976649328e-06 -9.52911096065e-07 -5.15338027805e-06 -1.78308134904e-05 -4.71115788278e-06 -2.224446564e-05 -3.58450066529e-05 -1.14263362257e-05 -4.70317402674e-05 -5.40425723336e-05 -1.90520112163e-05 -6.84762043234e-05 -6.74803642804e-05 -2.50353776359e-05 -7.85309428771e-05 -7.24235032349e-05 -2.75106324003e-05 -7.43010460885e-05 -2.77183233601e-05 -6.0035272419e-05 -7.2423503235e-05 -2.771832336e-05 6.0035272419e-05 -6.74803642804e-05 -2.60692432831e-05 7.43279326621e-05 -5.40425723336e-05 -2.16149453252e-05 7.86709114977e-05 -3.5845006653e-05 -1.5596191651e-05 6.87402304513e-05 -1.78308134904e-05 -9.3628744209e-06 4.73042036332e-05 -4.75976649326e-06 -4.07544193728e-06 2.24007586576e-05 -9.0388058412e-07 5.18775562046e-06 -4.75976649327e-06 -9.52911096088e-07 -5.15338027807e-06 -1.78308134904e-05 -4.71115788281e-06 -2.224446564e-05 -3.58450066529e-05 -1.14263362257e-05 -4.70317402674e-05 -5.40425723336e-05 -1.90520112163e-05 -6.84762043233e-05 -6.74803642804e-05 -2.50353776359e-05 -7.85309428772e-05 -7.24235032349e-05 -2.75106324003e-05 -7.43010460885e-05 -2.77183233601e-05 -6.0035272419e-05 -7.2423503235e-05 -2.77183233601e-05 6.0035272419e-05 -6.74803642804e-05 -2.60692432831e-05 7.43279326621e-05 -5.40425723336e-05 -2.16149453252e-05 7.86709114977e-05 -3.58450066531e-05 -1.5596191651e-05 6.87402304513e-05 -1.78308134904e-05 -9.3628744209e-06 4.73042036332e-05 -4.75976649325e-06 -4.07544193731e-06 2.24007586576e-05 -9.03880584135e-07 5.18775562047e-06 -4.75976649327e-06 -9.5291109605e-07 -5.15338027804e-06 -1.78308134904e-05 -4.71115788278e-06 -2.224446564e-05 -3.58450066529e-05 -1.14263362257e-05 -4.70317402674e-05 -5.40425723336e-05 -1.90520112163e-05 -6.84762043233e-05 -6.74803642804e-05 -2.50353776359e-05 -7.85309428771e-05 -7.24235032349e-05 -2.75106324002e-05 -7.43010460885e-05 -2.77183233601e-05 -6.00352724191e-05 -7.2423503235e-05 -2.771832336e-05 6.0035272419e-05 -6.74803642804e-05 -2.60692432831e-05 7.43279326621e-05 -5.40425723335e-05 -2.16149453252e-05 7.86709114977e-05 -3.5845006653e-05 -1.5596191651e-05 6.87402304513e-05 -1.78308134904e-05 -9.36287442088e-06 4.73042036333e-05 -4.75976649328e-06 -4.07544193729e-06 2.24007586576e-05 -9.03880584133e-07 5.1877556205e-06 -4.75976649328e-06 -9.5291109611e-07 -5.15338027806e-06 -1.78308134904e-05 -4.71115788282e-06 -2.22444656399e-05 -3.58450066529e-05 -1.14263362257e-05 -4.70317402674e-05 -5.40425723336e-05 -1.90520112164e-05 -6.84762043233e-05 -6.74803642804e-05 -2.5035377636e-05 -7.85309428771e-05 -7.24235032349e-05 -2.75106324003e-05 -7.43010460885e-05 -2.77183233601e-05 -6.0035272419e-05 -7.2423503235e-05 -2.771832336e-05 6.0035272419e-05 -6.74803642804e-05 -2.60692432831e-05 7.43279326621e-05 -5.40425723336e-05 -2.16149453253e-05 7.86709114977e-05 -3.58450066531e-05 -1.5596191651e-05 6.87402304513e-05 -1.78308134904e-05 -9.36287442094e-06 4.73042036332e-05 -4.75976649327e-06 -4.07544193734e-06 2.24007586576e-05 -9.03880584173e-07 5.18775562049e-06 -4.39606758183e-06 -8.01405257454e-07 -4.75763449014e-06 -1.70968676593e-05 -4.20941049415e-06 -2.11437235367e-05 -3.48514677409e-05 -1.05597069808e-05 -4.55018096683e-05 -5.29716134542e-05 -1.79506354744e-05 -6.68976601132e-05 -6.65715060751e-05 -2.3998016632e-05 -7.72484921745e-05 -7.21205599861e-05 -2.70932317041e-05 -7.36262768428e-05 -7.24235032349e-05 -2.76856819593e-05 -5.98905551038e-05 -7.24235032349e-05 -2.77183233601e-05 -4.28823374422e-05 -7.24235032349e-05 -2.771832336e-05 -2.57294024653e-05 -7.24235032349e-05 -2.771832336e-05 -8.57646748846e-06 -7.2423503235e-05 -2.77183233601e-05 8.57646748842e-06 -7.24235032349e-05 -2.77183233601e-05 2.57294024653e-05 -7.24235032349e-05 -2.77183233601e-05 4.28823374422e-05 -7.21205282775e-05 -2.74262929307e-05 5.98926280721e-05 -6.65712050557e-05 -2.52160406182e-05 7.36634412461e-05 -5.29711827807e-05 -2.06627981951e-05 7.74011539469e-05 -3.48511054966e-05 -1.47612457913e-05 6.716627695e-05 -1.7096674758e-05 -8.72404862263e-06 4.57701704946e-05 -4.39601960712e-06 -3.6755290055e-06 2.12932713369e-05 -7.66453285246e-07 4.78910871278e-06 -3.12007718812e-06 -4.34095918795e-07 -3.37524823704e-06 -1.42463279419e-05 -2.91165778575e-06 -1.70279237621e-05 -3.06809057397e-05 -8.19451190239e-06 -3.93028239936e-05 -4.80887562446e-05 -1.48001189718e-05 -5.99809132108e-05 -6.19315033743e-05 -2.06957824331e-05 -7.10829106536e-05 -6.92020794372e-05 -2.44165421325e-05 -6.9547830979e-05 -7.06729642553e-05 -2.57361790558e-05 -5.79116871132e-05 -7.06728503588e-05 -2.58615519455e-05 -4.18571280969e-05 -7.06727364622e-05 -2.58615519455e-05 -2.51082585942e-05 -7.06726225656e-05 -2.58615519454e-05 -8.35938909147e-06 -7.0672508669e-05 -2.58615519454e-05 8.38948041124e-06 -7.06723947724e-05 -2.58615519454e-05 2.5138349914e-05 -7.06722808758e-05 -2.58615519454e-05 4.18872194168e-05 -6.92004659952e-05 -2.5041007522e-05 5.79504611064e-05 -6.19284073784e-05 -2.23366714942e-05 6.96386283716e-05 -4.80851419486e-05 -1.78430938157e-05 7.12810397283e-05 -3.06780819099e-05 -1.23691829434e-05 6.0259924916e-05 -1.42449272733e-05 -6.93946302407e-06 3.95507063705e-05 -3.11978710037e-06 -2.61203715091e-06 1.71513332911e-05 -4.23640007882e-07 3.39701728553e-06 -1.31040965067e-06 -8.09065211996e-08 -1.41830122084e-06 -9.33084249633e-06 -1.38375209748e-06 -1.03605840044e-05 -2.28613150836e-05 -5.02030613758e-06 -2.80801511298e-05 -3.82295323215e-05 -1.02210073026e-05 -4.64766843924e-05 -5.14802083207e-05 -1.53531566064e-05 -5.79472409577e-05 -5.97998021592e-05 -1.90218662341e-05 -5.89940607707e-05 -6.24741728883e-05 -2.05719258424e-05 -5.06165443693e-05 -6.24733300712e-05 -2.07887538599e-05 -3.70334843857e-05 -6.24724872542e-05 -2.07887538599e-05 -2.21937388935e-05 -6.24716444371e-05 -2.07887538599e-05 -7.35399340114e-06 -6.24708016201e-05 -2.07887538599e-05 7.48575209113e-06 -6.24699588031e-05 -2.07887538599e-05 2.23254975834e-05 -6.2469115986e-05 -2.07887538599e-05 3.71652430757e-05 -5.97928005332e-05 -1.9961986249e-05 5.07584679852e-05 -5.14715880327e-05 -1.74245212714e-05 5.91820173253e-05 -3.82212760424e-05 -1.3451273913e-05 5.8200283934e-05 -2.28556443884e-05 -8.8118694072e-06 4.67467743588e-05 -9.32846601151e-06 -4.42573428797e-06 2.82770928158e-05 -1.31013079826e-06 -1.29404038161e-06 1.04380195675e-05 -8.05362748555e-08 1.42712410309e-06 -2.06856920587e-07 0 -2.242514315e-07 -4.12922962172e-06 -3.38866569e-07 -4.18337739428e-06 -1.34029914156e-05 -2.05358946322e-06 -1.51913531397e-05 -2.52565163245e-05 -5.37433684279e-06 -2.93368432701e-05 -3.63679018281e-05 -9.13883213868e-06 -3.97797820975e-05 -4.40028095612e-05 -1.21366636744e-05 -4.26185535352e-05 -4.66763624098e-05 -1.35845968712e-05 -3.75823078584e-05 -4.66747862036e-05 -1.38591746401e-05 -2.77117729571e-05 -4.66732099974e-05 -1.38591746401e-05 -1.65798424631e-05 -4.66716337911e-05 -1.38591746401e-05 -5.44791196905e-06 -4.6670057585e-05 -1.38591746401e-05 5.684018525e-06 -4.66684813788e-05 -1.38591746401e-05 1.68159490191e-05 -4.66669051726e-05 -1.38591746401e-05 2.79478795131e-05 -4.39907533075e-05 -1.32410365335e-05 3.78213758276e-05 -3.63551939824e-05 -1.12976345118e-05 4.28719144605e-05 -2.52460629736e-05 -8.25862382605e-06 4.00366095113e-05 -1.33969898587e-05 -4.84364760805e-06 2.95491768669e-05 -4.12748147001e-06 -1.90610862014e-06 1.5309722984e-05 -2.06841960917e-07 -3.32462268711e-07 4.21447175287e-06 0 2.25591781636e-07 0 0 0 -8.63017021124e-07 0 -8.30039166427e-07 -5.15423006807e-06 -3.38866531682e-07 -5.15062125241e-06 -1.2443290133e-05 -1.6356616333e-06 -1.32611829624e-05 -2.01288329628e-05 -3.70105320678e-06 -2.09675467143e-05 -2.58040102066e-05 -5.62069486135e-06 -2.43457534208e-05 -2.78743047548e-05 -6.68116780437e-06 -2.22762177969e-05 -2.78727317886e-05 -6.92958893998e-06 -1.65795727932e-05 -2.78711588224e-05 -6.92958893992e-06 -9.90041240763e-06 -2.78695858562e-05 -6.92958893995e-06 -3.22125202198e-06 -2.78680128899e-05 -6.92958893991e-06 3.45790836358e-06 -2.78664399237e-05 -6.92958893992e-06 1.01370687492e-05 -2.78648669575e-05 -6.92958893991e-06 1.68162291348e-05 -2.57924365072e-05 -6.5653176951e-06 2.2508728553e-05 -2.01178573175e-05 -5.36206155672e-06 2.45639637212e-05 -1.24357123741e-05 -3.48113892039e-06 2.11476442641e-05 -5.15114336893e-06 -1.55199981207e-06 1.33746483499e-05 -8.62786632696e-07 -3.32462231328e-07 5.19298031791e-06 0 0 8.35827299891e-07 0 0 0 0 0 0 0 0 -8.63002621843e-07 0 -7.25920970954e-07 -3.47941293051e-06 -8.09065197243e-08 -3.22742492261e-06 -7.24357967638e-06 -5.14631338851e-07 -6.84129977061e-06 -1.04024115488e-05 -1.22503702502e-06 -9.3161168097e-06 -1.16156321287e-05 -1.71935024458e-06 -9.13702189207e-06 -1.16147957916e-05 -1.85677789466e-06 -6.92098276137e-06 -1.16139594545e-05 -1.85677789465e-06 -4.12598612062e-06 -1.16131231175e-05 -1.85677789467e-06 -1.33098947984e-06 -1.16122867804e-05 -1.85677789464e-06 1.46400716087e-06 -1.16114504433e-05 -1.85677789466e-06 4.25900380159e-06 -1.16106141063e-05 -1.85677789467e-06 7.05400044233e-06 -1.03965550612e-05 -1.70527787304e-06 9.26427069448e-06 -7.23888976651e-06 -1.2005479674e-06 9.42283825097e-06 -3.47727292556e-06 -5.04546381435e-07 6.91092843261e-06 -8.62801031959e-07 -8.05362733893e-08 3.25711915252e-06 0 0 7.31711739318e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.06854427305e-07 0 -1.49277294014e-07 -1.10390876453e-06 0 -8.11630310989e-07 -2.02691335432e-06 0 -1.63471432769e-06 -2.40472749951e-06 0 -1.83511153976e-06 -2.4046168429e-06 0 -1.4356258279e-06 -2.40450618629e-06 0 -8.55203969897e-07 -2.40439552973e-06 0 -2.74782111924e-07 -2.40428487309e-06 0 3.05639746033e-07 -2.40417421645e-06 0 8.86061603978e-07 -2.40406355987e-06 0 1.46648346197e-06 -2.02628287152e-06 0 1.86357368828e-06 -1.1036735362e-06 0 1.65506161549e-06 -2.06844454231e-07 0 8.20310590456e-07 0 0 1.50618109834e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.28665587748e-07 -8.09263664136e-08 -1.49098136162e-07 -1.21084563806e-06 -5.15171710966e-07 -8.06377858475e-07 -2.20569309105e-06 -1.2263486132e-06 -1.61242779404e-06 -2.60840699833e-06 -1.72010369454e-06 -1.80057081219e-06 -2.60829792377e-06 -1.8567778947e-06 -1.40626107244e-06 -2.60818884924e-06 -1.8567778947e-06 -8.37652869411e-07 -2.60807977475e-06 -1.8567778947e-06 -2.69044666413e-07 -2.60797070022e-06 -1.8567778947e-06 2.99563536595e-07 -2.60786162567e-06 -1.8567778947e-06 8.68171739628e-07 -2.60775255114e-06 -1.8567778947e-06 1.43677994259e-06 -2.20507022821e-06 -1.70452442306e-06 1.82874871187e-06 -1.21061196932e-06 -1.19923637936e-06 1.63265736636e-06 -2.28655627127e-07 -5.04006009352e-07 8.15062037187e-07 0 -8.05164265851e-08 1.50440003869e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -9.48574214376e-07 -3.39209711486e-07 -7.22308802712e-07 -3.75312085996e-06 -1.64013998884e-06 -3.16813585497e-06 -7.68746549189e-06 -3.71280902265e-06 -6.60608761969e-06 -1.09242024338e-05 -5.63450252604e-06 -8.88242997677e-06 -1.21541595268e-05 -6.68734789644e-06 -8.65230188571e-06 -1.21533557696e-05 -6.92958894016e-06 -6.54150614589e-06 -1.21525520124e-05 -6.92958894016e-06 -3.89923870935e-06 -1.21517482552e-05 -6.92958894016e-06 -1.25697127287e-06 -1.2150944498e-05 -6.92958894016e-06 1.38529616365e-06 -1.21501407408e-05 -6.92958894016e-06 4.02756360014e-06 -1.21493369836e-05 -6.92958894017e-06 6.66983103665e-06 -1.0918559544e-05 -6.55913760343e-06 8.77523423477e-06 -7.68291280752e-06 -5.3482538924e-06 8.98620413282e-06 -3.75101963985e-06 -3.46938310478e-06 6.67460758499e-06 -9.48373671409e-07 -1.54752145649e-06 3.1977543081e-06 0 -3.321190515e-07 7.28116704249e-07 0 0 0 0 0 0 0 0 -9.48588538876e-07 -3.3920974887e-07 -8.25912228441e-07 -5.54335233565e-06 -2.0614801852e-06 -5.04488418248e-06 -1.31158256234e-05 -5.40266803718e-06 -1.2738086592e-05 -2.08878259603e-05 -9.18570548193e-06 -1.98032769938e-05 -2.65222117166e-05 -1.21812502241e-05 -2.27188086901e-05 -2.85597119894e-05 -1.36028322649e-05 -2.06596725e-05 -2.85582245004e-05 -1.38591746404e-05 -1.53512819847e-05 -2.85567370115e-05 -1.38591746404e-05 -9.16574967649e-06 -2.85552495225e-05 -1.38591746404e-05 -2.98021736828e-06 -2.85537620336e-05 -1.38591746404e-05 3.20531493992e-06 -2.85522745445e-05 -1.38591746404e-05 9.39084724808e-06 -2.85507870557e-05 -1.38591746404e-05 1.55763795563e-05 -2.65112405512e-05 -1.32228011403e-05 2.08810254699e-05 -2.08773468099e-05 -1.12530479628e-05 2.29276942316e-05 -1.31085072826e-05 -8.21175048332e-06 1.9977676793e-05 -5.54032804474e-06 -4.81531641388e-06 1.28497681399e-05 -9.48359346764e-07 -1.89821789821e-06 5.08724390214e-06 0 -3.32119088891e-07 8.31717495106e-07 0 0 -2.2866807792e-07 -8.09263679494e-08 -2.23982963349e-07 -4.47943598942e-06 -1.38855378584e-06 -4.12536076728e-06 -1.42490315056e-05 -5.05204969108e-06 -1.47111294477e-05 -2.638951926e-05 -1.02959868179e-05 -2.79159367557e-05 -3.75439089893e-05 -1.54540094775e-05 -3.73314705432e-05 -4.51426516112e-05 -1.91063435196e-05 -3.96492437814e-05 -4.78021413248e-05 -2.06041367837e-05 -3.48303344522e-05 -4.78006570758e-05 -2.07887538606e-05 -2.56599417477e-05 -4.77991728268e-05 -2.07887538606e-05 -1.53507244589e-05 -4.77976885778e-05 -2.07887538606e-05 -5.04150717008e-06 -4.77962043289e-05 -2.07887538606e-05 5.26771011879e-06 -4.77947200799e-05 -2.07887538606e-05 1.55769274076e-05 -4.77932358309e-05 -2.07887538606e-05 2.58861446965e-05 -4.51312788045e-05 -1.9929775309e-05 3.50592782162e-05 -3.75318527782e-05 -1.73400439869e-05 3.98923946105e-05 -2.63795019327e-05 -1.33504210428e-05 3.75796993989e-05 -1.42432026459e-05 -8.73688989254e-06 2.81238397566e-05 -4.47771291488e-06 -4.39399073483e-06 1.48289472499e-05 -2.28653136916e-07 -1.2892386934e-06 4.1566475423e-06 -8.05164281337e-08 2.2532436539e-07 -1.43993860962e-06 -4.34656137706e-07 -1.4109899596e-06 -1.00868299415e-05 -2.92767491238e-06 -1.01773945041e-05 -2.43266037775e-05 -8.26137294371e-06 -2.71799991878e-05 -4.01877396303e-05 -1.49290779625e-05 -4.44068890307e-05 -5.37763466316e-05 -2.08465146644e-05 -5.48949218269e-05 -6.24302096723e-05 -2.45261238167e-05 -5.57135231776e-05 -6.52886464416e-05 -2.57727533624e-05 -4.78190114933e-05 -6.52878491644e-05 -2.58615519462e-05 -3.50069182086e-05 -6.52870518871e-05 -2.58615519462e-05 -2.09780726253e-05 -6.52862546099e-05 -2.58615519462e-05 -6.94922704194e-06 -6.52854573326e-05 -2.58615519462e-05 7.07961854145e-06 -6.52846600554e-05 -2.58615519462e-05 2.11084641248e-05 -6.52838627781e-05 -2.58615519462e-05 3.51373097083e-05 -6.24235804112e-05 -2.50044332169e-05 4.79590312123e-05 -5.37681524442e-05 -2.22270898113e-05 5.58981194526e-05 -4.01798259622e-05 -1.76923615856e-05 5.51430355837e-05 -2.43211038403e-05 -1.22402239535e-05 4.46733075831e-05 -1.0084494696e-05 -6.87260198316e-06 2.73765495479e-05 -1.4396612674e-06 -2.59602002455e-06 1.02555611105e-05 -4.23079789087e-07 1.41984445035e-06 -3.42783682855e-06 -8.03277064398e-07 -3.35743943746e-06 -1.54842006975e-05 -4.23792368383e-06 -1.67868296262e-05 -3.30198848311e-05 -1.06573468415e-05 -3.83863166518e-05 -5.14188905884e-05 -1.81194851203e-05 -5.81521596116e-05 -6.61713743491e-05 -2.41738532452e-05 -6.87056006301e-05 -7.4419592635e-05 -2.71919360172e-05 -6.74286511709e-05 -7.65239821858e-05 -2.76993073273e-05 -5.65242276528e-05 -7.65238763513e-05 -2.77183233609e-05 -4.10042141814e-05 -7.65237705166e-05 -2.77183233609e-05 -2.45962439106e-05 -7.65236646821e-05 -2.77183233609e-05 -8.18827363991e-06 -7.65235588475e-05 -2.77183233609e-05 8.21969663087e-06 -7.6523453013e-05 -2.77183233609e-05 2.46276669016e-05 -7.65233471784e-05 -2.77183233609e-05 4.10356371724e-05 -7.44180751513e-05 -2.74126675644e-05 5.65645682854e-05 -6.61684319605e-05 -2.51173363066e-05 6.75214956748e-05 -5.14154185779e-05 -2.04869615833e-05 6.89048767627e-05 -3.30171380893e-05 -1.45923961464e-05 5.84321697199e-05 -1.54828216161e-05 -8.62640876242e-06 3.86364276636e-05 -3.42754841746e-06 -3.64701581618e-06 1.69122073299e-05 -7.64581478509e-07 3.3794084567e-06 -4.85218905718e-06 -9.55536352782e-07 -4.74720705646e-06 -1.87964637581e-05 -4.74509770613e-06 -2.10289062877e-05 -3.8178667886e-05 -1.15360313543e-05 -4.51123253211e-05 -5.79035836797e-05 -1.92348363736e-05 -6.61758135841e-05 -7.2822511692e-05 -2.52155776165e-05 -7.63974282195e-05 -7.94264187977e-05 -2.7586387786e-05 -7.3098894853e-05 -8.00470298936e-05 -2.77183233609e-05 -5.97757668126e-05 -8.00470298937e-05 -4.28823374422e-05 -8.00470298937e-05 -2.57294024653e-05 -8.00470298936e-05 -8.57646748844e-06 -8.00470298937e-05 8.57646748843e-06 -8.00470298936e-05 2.57294024653e-05 -8.00470298936e-05 4.28823374422e-05 -7.94263967585e-05 -2.77183233609e-05 5.97780226648e-05 -7.28222424382e-05 -2.5993487899e-05 7.31378035699e-05 -5.79031814031e-05 -2.14347453461e-05 7.65544007827e-05 -3.81783190377e-05 -1.54133664947e-05 6.64509677846e-05 -1.87962738554e-05 -9.25317929283e-06 4.53873740235e-05 -4.85214126351e-06 -4.04150211425e-06 2.11823205938e-05 -9.0125532753e-07 4.77918314734e-06 -5.27044658213e-06 -9.55536352753e-07 -5.15304474053e-06 -1.97366973901e-05 -4.74509770609e-06 -2.22419171775e-05 -3.9656773558e-05 -1.15360313544e-05 -4.70268917834e-05 -5.97602204557e-05 -1.92348363736e-05 -6.84712510764e-05 -7.45932126364e-05 -2.52155776165e-05 -7.8528185547e-05 -8.00470298937e-05 -2.7586387786e-05 -7.43006064463e-05 -2.77183233609e-05 -6.0035272419e-05 -8.00470298938e-05 -2.77183233609e-05 6.00352724191e-05 -7.45932126364e-05 -2.5993487899e-05 7.43281522134e-05 -5.97602204557e-05 -2.14347453461e-05 7.86730744503e-05 -3.96567735582e-05 -1.54133664947e-05 6.87444585699e-05 -1.973669739e-05 -9.25317929285e-06 4.73085365149e-05 -5.27044658215e-06 -4.04150211424e-06 2.2403130478e-05 -9.01255327488e-07 5.18807927641e-06 -5.27044658213e-06 -9.55536352779e-07 -5.15304474052e-06 -1.97366973901e-05 -4.74509770612e-06 -2.22419171775e-05 -3.9656773558e-05 -1.15360313544e-05 -4.70268917835e-05 -5.97602204557e-05 -1.92348363736e-05 -6.84712510764e-05 -7.45932126364e-05 -2.52155776165e-05 -7.8528185547e-05 -8.00470298937e-05 -2.7586387786e-05 -7.43006064463e-05 -2.77183233609e-05 -6.00352724191e-05 -8.00470298938e-05 -2.77183233609e-05 6.0035272419e-05 -7.45932126364e-05 -2.5993487899e-05 7.43281522134e-05 -5.97602204557e-05 -2.14347453461e-05 7.86730744504e-05 -3.96567735582e-05 -1.54133664948e-05 6.87444585699e-05 -1.97366973901e-05 -9.25317929285e-06 4.73085365149e-05 -5.27044658214e-06 -4.04150211427e-06 2.24031304781e-05 -9.012553275e-07 5.18807927637e-06 -5.27044658213e-06 -9.55536352754e-07 -5.15304474052e-06 -1.97366973901e-05 -4.74509770609e-06 -2.22419171775e-05 -3.9656773558e-05 -1.15360313544e-05 -4.70268917835e-05 -5.97602204557e-05 -1.92348363736e-05 -6.84712510764e-05 -7.45932126364e-05 -2.52155776165e-05 -7.8528185547e-05 -8.00470298937e-05 -2.7586387786e-05 -7.43006064463e-05 -2.77183233609e-05 -6.00352724191e-05 -8.00470298938e-05 -2.77183233609e-05 6.0035272419e-05 -7.45932126364e-05 -2.5993487899e-05 7.43281522134e-05 -5.97602204557e-05 -2.14347453461e-05 7.86730744504e-05 -3.96567735582e-05 -1.54133664948e-05 6.87444585699e-05 -1.97366973901e-05 -9.25317929284e-06 4.73085365149e-05 -5.27044658213e-06 -4.04150211424e-06 2.2403130478e-05 -9.01255327518e-07 5.18807927636e-06 -5.27044658213e-06 -9.55536352815e-07 -5.15304474049e-06 -1.97366973901e-05 -4.74509770614e-06 -2.22419171775e-05 -3.9656773558e-05 -1.15360313544e-05 -4.70268917834e-05 -5.97602204557e-05 -1.92348363736e-05 -6.84712510764e-05 -7.45932126364e-05 -2.52155776165e-05 -7.8528185547e-05 -8.00470298937e-05 -2.7586387786e-05 -7.43006064463e-05 -2.77183233609e-05 -6.0035272419e-05 -8.00470298938e-05 -2.77183233609e-05 6.0035272419e-05 -7.45932126364e-05 -2.5993487899e-05 7.43281522134e-05 -5.97602204557e-05 -2.14347453461e-05 7.86730744504e-05 -3.96567735582e-05 -1.54133664948e-05 6.87444585699e-05 -1.97366973901e-05 -9.2531792929e-06 4.73085365149e-05 -5.27044658215e-06 -4.04150211429e-06 2.24031304781e-05 -9.01255327563e-07 5.18807927635e-06 -4.86776841915e-06 -8.03277064343e-07 -4.7573469193e-06 -1.89246755504e-05 -4.23792368377e-06 -2.11413226744e-05 -3.85587057085e-05 -1.06573468415e-05 -4.54971205314e-05 -5.85779593528e-05 -1.81194851202e-05 -6.68927657673e-05 -7.35908477203e-05 -2.41738532451e-05 -7.72456505269e-05 -7.97130633954e-05 -2.71919360172e-05 -7.3625690713e-05 -8.00470298937e-05 -2.76993073273e-05 -5.98905403475e-05 -8.00470298937e-05 -2.77183233609e-05 -4.28823374422e-05 -8.00470298936e-05 -2.77183233609e-05 -2.57294024653e-05 -8.00470298936e-05 -2.77183233609e-05 -8.57646748846e-06 -8.00470298937e-05 -2.77183233609e-05 8.5764674884e-06 -8.00470298936e-05 -2.77183233609e-05 2.57294024653e-05 -8.00470298937e-05 -2.77183233609e-05 4.28823374422e-05 -7.97130316867e-05 -2.74126675644e-05 5.98926228688e-05 -7.3590546701e-05 -2.51173363066e-05 7.36637677193e-05 -5.85775286794e-05 -2.04869615833e-05 7.74034015908e-05 -3.85583434643e-05 -1.45923961464e-05 6.71704696596e-05 -1.89244826491e-05 -8.62640876244e-06 4.57743714501e-05 -4.86772044444e-06 -3.64701581616e-06 2.12955101791e-05 -7.64581478458e-07 4.78938634431e-06 -3.45494990071e-06 -4.34656137692e-07 -3.37509276177e-06 -1.57704601247e-05 -2.92767491232e-06 -1.70260460107e-05 -3.39481256363e-05 -8.26137294375e-06 -3.92987304212e-05 -5.31852612638e-05 -1.49290779625e-05 -5.99762508297e-05 -6.84704851581e-05 -2.08465146644e-05 -7.10797535907e-05 -7.64942403247e-05 -2.45261238167e-05 -6.95466757923e-05 -7.81169062588e-05 -2.57727533624e-05 -5.79114479142e-05 -7.81167923623e-05 -2.58615519462e-05 -4.18570142004e-05 -7.81166784656e-05 -2.58615519462e-05 -2.51081446976e-05 -7.81165645691e-05 -2.58615519462e-05 -8.35927519492e-06 -7.81164506725e-05 -2.58615519462e-05 8.38959430787e-06 -7.81163367759e-05 -2.58615519462e-05 2.51384638106e-05 -7.81162228793e-05 -2.58615519462e-05 4.18873333133e-05 -7.64926268828e-05 -2.50044332169e-05 5.79506132664e-05 -6.84673891623e-05 -2.22270898113e-05 6.96394473383e-05 -5.31816469678e-05 -1.76923615856e-05 7.12836257797e-05 -3.39453018067e-05 -1.22402239535e-05 6.02639792206e-05 -1.57690594561e-05 -6.87260198317e-06 3.95544108831e-05 -3.45465981299e-06 -2.59602002446e-06 1.71530977418e-05 -4.23079789052e-07 3.39716793728e-06 -1.45110506633e-06 -8.09263679625e-08 -1.41826428476e-06 -1.0330276479e-05 -1.38855378583e-06 -1.03595447699e-05 -2.53006441551e-05 -5.05204969106e-06 -2.80772086161e-05 -4.22914993705e-05 -1.02959868179e-05 -4.64727363097e-05 -5.69307127606e-05 -1.54540094775e-05 -5.79439136615e-05 -6.61172875165e-05 -1.91063435196e-05 -5.89921160193e-05 -6.90696153313e-05 -2.06041367837e-05 -5.06155326216e-05 -6.90687725143e-05 -2.07887538605e-05 -3.70326415687e-05 -6.90679296972e-05 -2.07887538605e-05 -2.21928960765e-05 -6.90670868802e-05 -2.07887538605e-05 -7.35315058415e-06 -6.90662440632e-05 -2.07887538605e-05 7.48659490812e-06 -6.90654012462e-05 -2.07887538605e-05 2.23263404005e-05 -6.90645584291e-05 -2.07887538605e-05 3.71660858928e-05 -6.61102858905e-05 -1.9929775309e-05 5.07593651048e-05 -5.69220924727e-05 -1.7340043987e-05 5.91836336242e-05 -4.22832430914e-05 -1.33504210428e-05 5.82031483327e-05 -2.529497346e-05 -8.73688989251e-06 4.67502953629e-05 -1.03278999942e-05 -4.3939907348e-06 2.82798037882e-05 -1.45082621389e-06 -1.28923869338e-06 1.04390094116e-05 -8.05164281307e-08 1.4271601689e-06 -2.29078027102e-07 0 -2.24250173779e-07 -4.57206706035e-06 -3.39209748872e-07 -4.18307440667e-06 -1.48364694775e-05 -2.06148018524e-06 -1.51898139156e-05 -2.79488341971e-05 -5.40266803725e-06 -2.93341625378e-05 -4.02330888156e-05 -9.18570548191e-06 -3.97769302793e-05 -4.86700823085e-05 -1.21812502241e-05 -4.26162905392e-05 -5.16238870753e-05 -1.3602832265e-05 -3.75806310599e-05 -5.16223108691e-05 -1.38591746405e-05 -2.77101967509e-05 -5.16207346629e-05 -1.38591746405e-05 -1.65782662569e-05 -5.16191584567e-05 -1.38591746405e-05 -5.44633576288e-06 -5.16175822506e-05 -1.38591746405e-05 5.68559473117e-06 -5.16160060443e-05 -1.38591746405e-05 1.68175252252e-05 -5.16144298382e-05 -1.38591746405e-05 2.79494557193e-05 -4.86580260548e-05 -1.32228011405e-05 3.78229678408e-05 -4.02203809699e-05 -1.12530479628e-05 4.28739517816e-05 -2.79383808463e-05 -8.2117504833e-06 4.0039180696e-05 -1.48304679206e-05 -4.81531641394e-06 2.95516405431e-05 -4.57031890861e-06 -1.89821789824e-06 1.5311173907e-05 -2.2906306743e-07 -3.32119088881e-07 4.21476498875e-06 0 2.25593016961e-07 0 0 0 -9.55679797057e-07 0 -8.30017361977e-07 -5.70664582673e-06 -3.39209711508e-07 -5.15020493103e-06 -1.37740142887e-05 -1.64013998891e-06 -1.32599646559e-05 -2.22768451683e-05 -3.71280902263e-06 -2.09658157744e-05 -2.85534510626e-05 -5.63450252603e-06 -2.43439979301e-05 -3.08428204827e-05 -6.68734789641e-06 -2.22746303472e-05 -3.08412475165e-05 -6.92958894016e-06 -1.6577999827e-05 -3.08396745502e-05 -6.92958894018e-06 -9.89883944135e-06 -3.0838101584e-05 -6.92958894018e-06 -3.21967905579e-06 -3.08365286178e-05 -6.92958894015e-06 3.4594813298e-06 -3.08349556516e-05 -6.92958894011e-06 1.01386417154e-05 -3.08333826854e-05 -6.92958894014e-06 1.68178021011e-05 -2.85418773632e-05 -6.55913760345e-06 2.25102744595e-05 -2.2265869523e-05 -5.34825389238e-06 2.4565615982e-05 -1.37664365298e-05 -3.46938310477e-06 2.11492649054e-05 -5.70355912761e-06 -1.54752145655e-06 1.33758021725e-05 -9.55449408581e-07 -3.32119051488e-07 5.19338199113e-06 0 0 8.35848677388e-07 0 0 0 0 0 0 0 0 -9.55665397782e-07 0 -7.25899166538e-07 -3.85245534482e-06 -8.09263664542e-08 -3.22720544562e-06 -8.01918899251e-06 -5.1517171096e-07 -6.84075210584e-06 -1.15152171004e-05 -1.22634861319e-06 -9.31536025862e-06 -1.28578528583e-05 -1.72010369458e-06 -9.13621127894e-06 -1.28570165212e-05 -1.85677789475e-06 -6.92014642431e-06 -1.28561801842e-05 -1.85677789468e-06 -4.12514978359e-06 -1.28553438471e-05 -1.8567778947e-06 -1.33015314285e-06 -1.285450751e-05 -1.85677789468e-06 1.46484349793e-06 -1.28536711729e-05 -1.85677789469e-06 4.25984013867e-06 -1.28528348359e-05 -1.85677789467e-06 7.0548367794e-06 -1.15093606128e-05 -1.7045244231e-06 9.26507013169e-06 -8.01449908259e-06 -1.19923637935e-06 9.42357016072e-06 -3.85031533984e-06 -5.04006009301e-07 6.91145635214e-06 -9.5546380786e-07 -8.05164266093e-08 3.257332224e-06 0 0 7.3173311675e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.2907553382e-07 0 -1.49276036219e-07 -1.22242276647e-06 0 -8.11602312194e-07 -2.24439248686e-06 0 -1.63464622939e-06 -2.66269276979e-06 0 -1.83501370852e-06 -2.66258211319e-06 0 -1.43551517132e-06 -2.66247145659e-06 0 -8.55093313318e-07 -2.6623608e-06 0 -2.74671455355e-07 -2.66225014339e-06 0 3.05750402604e-07 -2.66213948676e-06 0 8.8617226061e-07 -2.6620288302e-06 0 1.46659411859e-06 -2.24376200408e-06 0 1.86367069999e-06 -1.22218753816e-06 0 1.65512822697e-06 -2.29065560691e-07 0 8.20337941288e-07 0 0 1.50619345119e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.50847000783e-07 -8.09462131475e-08 -1.49096879671e-07 -1.32823920223e-06 -5.15712083068e-07 -8.06350030807e-07 -2.4194286098e-06 -1.22766020125e-06 -1.61236048224e-06 -2.86112175514e-06 -1.72085714448e-06 -1.80047430099e-06 -2.8610126806e-06 -1.85677789464e-06 -1.40615199786e-06 -2.86090360606e-06 -1.85677789465e-06 -8.37543794813e-07 -2.86079453153e-06 -1.85677789464e-06 -2.68935591795e-07 -2.86068545701e-06 -1.85677789464e-06 2.99672611193e-07 -2.86057638246e-06 -1.85677789464e-06 8.68280814172e-07 -2.86046730794e-06 -1.85677789464e-06 1.43688901713e-06 -2.41880574696e-06 -1.70377097301e-06 1.82884439791e-06 -1.32800553349e-06 -1.19792479124e-06 1.63272318044e-06 -2.50837040104e-07 -5.03465637222e-07 8.15089210177e-07 0 -8.04965798439e-08 1.50441237813e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.04055063058e-06 -3.39552891301e-07 -7.2228709156e-07 -4.11655989747e-06 -1.64461834439e-06 -3.16792017748e-06 -8.43104055458e-06 -3.7245648383e-06 -6.60555562521e-06 -1.19799816058e-05 -5.64831019038e-06 -8.8817000058e-06 -1.33285006093e-05 -6.69352798809e-06 -8.65152181228e-06 -1.33276968522e-05 -6.92958893995e-06 -6.54070238863e-06 -1.3326893095e-05 -6.92958893995e-06 -3.89843495214e-06 -1.33260893377e-05 -6.92958893996e-06 -1.25616751562e-06 -1.33252855805e-05 -6.92958893996e-06 1.38609992095e-06 -1.33244818233e-05 -6.92958893995e-06 4.02836735743e-06 -1.33236780662e-05 -6.92958893995e-06 6.67063479388e-06 -1.19743387159e-05 -6.55295751139e-06 8.77600268354e-06 -8.42648787022e-06 -5.33444622773e-06 8.98690857568e-06 -4.11445867736e-06 -3.45762728892e-06 6.67511924826e-06 -1.0403500875e-06 -1.54304310085e-06 3.19796343475e-06 0 -3.31775871657e-07 7.28137982582e-07 0 0 0 0 0 0 0 0 -1.04056495509e-06 -3.39552928706e-07 -8.25890517362e-07 -6.07998665004e-06 -2.06937090709e-06 -5.04447583355e-06 -1.43830626716e-05 -5.43099923128e-06 -1.27369103021e-05 -2.29021160824e-05 -9.23257882465e-06 -1.98016252034e-05 -2.90763728502e-05 -1.2225836773e-05 -2.27171426468e-05 -3.13088374588e-05 -1.36210676579e-05 -2.06581687099e-05 -3.13073499699e-05 -1.38591746399e-05 -1.53497944958e-05 -3.13058624809e-05 -1.38591746399e-05 -9.16426218755e-06 -3.13043749919e-05 -1.38591746399e-05 -2.97872987937e-06 -3.1302887503e-05 -1.385917464e-05 3.20680242892e-06 -3.1301400014e-05 -1.38591746399e-05 9.39233473706e-06 -3.12999125251e-05 -1.38591746399e-05 1.55778670452e-05 -2.90654016848e-05 -1.32045657465e-05 2.08824860414e-05 -2.2891636932e-05 -1.12084614131e-05 2.29292531312e-05 -1.43757443308e-05 -8.16487714008e-06 1.99792144798e-05 -6.07696235912e-06 -4.78698521945e-06 1.2850877865e-05 -1.04033576302e-06 -1.89032717618e-06 5.08763717329e-06 0 -3.31775909063e-07 8.31738773443e-07 0 0 -2.50849490941e-07 -8.0946214687e-08 -2.23981706909e-07 -4.91331671657e-06 -1.39335547409e-06 -4.12506163476e-06 -1.56258471781e-05 -5.08379324424e-06 -1.47096340395e-05 -2.89318781011e-05 -1.03709663326e-05 -2.7913370438e-05 -4.1151177994e-05 -1.55548623477e-05 -3.73287648346e-05 -4.9472225065e-05 -1.91908208039e-05 -3.9647102894e-05 -5.23840156739e-05 -2.06363477238e-05 -3.48287514679e-05 -5.2382531425e-05 -2.078875386e-05 -2.56584574988e-05 -5.2381047176e-05 -2.078875386e-05 -1.53492402099e-05 -5.2379562927e-05 -2.078875386e-05 -5.040022921e-06 -5.23780786781e-05 -2.078875386e-05 5.26919436782e-06 -5.2376594429e-05 -2.078875386e-05 1.55784116566e-05 -5.23751101801e-05 -2.078875386e-05 2.58876289455e-05 -4.94608522584e-05 -1.98975643677e-05 3.50607746703e-05 -4.11391217827e-05 -1.72555667015e-05 3.98943047544e-05 -2.89218607737e-05 -1.32495681718e-05 3.75821175727e-05 -1.56200183185e-05 -8.66191037729e-06 2.8126183052e-05 -4.91159364196e-06 -4.36224718137e-06 1.48303515577e-05 -2.50834550005e-07 -1.28443700508e-06 4.15693663173e-06 -8.04965813746e-08 2.25325599349e-07 -1.57955328096e-06 -4.35216356555e-07 -1.41095319238e-06 -1.1062752292e-05 -2.94369203879e-06 -1.01763715641e-05 -2.66721861616e-05 -8.32823398454e-06 -2.71771418673e-05 -4.40480009357e-05 -1.50580369523e-05 -4.44030953725e-05 -5.89253866071e-05 -2.09972468943e-05 -5.48917346957e-05 -6.83960218009e-05 -2.46357054995e-05 -5.57116544353e-05 -7.15236889211e-05 -2.58093276675e-05 -4.78180472546e-05 -7.15228916438e-05 -2.58615519454e-05 -3.50061209314e-05 -7.15220943666e-05 -2.58615519454e-05 -2.0977275348e-05 -7.15212970894e-05 -2.58615519454e-05 -6.94842976471e-06 -7.15204998121e-05 -2.58615519454e-05 7.08041581872e-06 -7.15197025349e-05 -2.58615519454e-05 2.11092614021e-05 -7.15189052576e-05 -2.58615519454e-05 3.51381069854e-05 -6.83893925398e-05 -2.49678589103e-05 4.79598807721e-05 -5.89171924197e-05 -2.21175081271e-05 5.58996579794e-05 -4.40400872675e-05 -1.75416293545e-05 5.51457540491e-05 -2.66666862244e-05 -1.21112649629e-05 4.46766655186e-05 -1.10604170466e-05 -6.8057409419e-06 2.73791686712e-05 -1.57927593877e-06 -2.58000289797e-06 1.0256532958e-05 -4.22519570231e-07 1.41988033383e-06 -3.76008636476e-06 -8.05148871174e-07 -3.35728469579e-06 -1.69807175503e-05 -4.26643687319e-06 -1.67849747718e-05 -3.6197931627e-05 -1.07549867015e-05 -3.83823073941e-05 -5.63464410346e-05 -1.8288334765e-05 -5.81476165281e-05 -7.24911927619e-05 -2.43496898569e-05 -6.87025100075e-05 -8.15143448935e-05 -2.72906403286e-05 -6.74274916169e-05 -8.38164134148e-05 -2.77129326936e-05 -5.65239909784e-05 -8.38163075804e-05 -2.77183233601e-05 -4.10041083468e-05 -8.38162017457e-05 -2.771832336e-05 -2.45961380761e-05 -8.38160959113e-05 -2.771832336e-05 -8.18816780534e-06 -8.38159900767e-05 -2.77183233601e-05 8.2198024654e-06 -8.38158842421e-05 -2.77183233601e-05 2.46277727362e-05 -8.38157784075e-05 -2.77183233601e-05 4.10357430069e-05 -8.15128274098e-05 -2.73990421964e-05 5.65647179884e-05 -7.24882503733e-05 -2.50186319936e-05 6.75223198367e-05 -5.63429690242e-05 -2.03111249703e-05 6.89073932341e-05 -3.61951848852e-05 -1.44235465007e-05 5.84360945287e-05 -1.69793384689e-05 -8.52876890177e-06 3.86400369258e-05 -3.75979795369e-06 -3.61850262655e-06 1.69139447648e-05 -7.62709671696e-07 3.37955826166e-06 -5.3223829942e-06 -9.58161609389e-07 -4.74691994527e-06 -2.06119114644e-05 -4.77903752914e-06 -2.10265143684e-05 -4.18494350646e-05 -1.16457264823e-05 -4.5107665942e-05 -6.34455076935e-05 -1.94176615297e-05 -6.61709570975e-05 -7.97687047212e-05 -2.53957775955e-05 -7.63945964958e-05 -8.69916714679e-05 -2.766214317e-05 -7.30982864017e-05 -8.76705565476e-05 -2.77183233601e-05 -5.97757516687e-05 -8.76705565476e-05 -4.28823374422e-05 -8.76705565476e-05 -2.57294024653e-05 -8.76705565476e-05 -8.57646748838e-06 -8.76705565477e-05 8.57646748847e-06 -8.76705565476e-05 2.57294024654e-05 -8.76705565476e-05 4.28823374422e-05 -8.69916494286e-05 -2.771832336e-05 5.97780181234e-05 -7.97684354674e-05 -2.59177325133e-05 7.31381549539e-05 -6.3445105417e-05 -2.12545453657e-05 7.65566374637e-05 -4.18490862163e-05 -1.52305413376e-05 6.64551102584e-05 -2.06117215618e-05 -9.14348416424e-06 4.53915299612e-05 -5.32233520044e-06 -4.00756229096e-06 2.1184544084e-05 -8.98630070814e-07 4.7794600318e-06 -5.78112667066e-06 -9.58161609373e-07 -5.15270901821e-06 -2.16425812886e-05 -4.77903752912e-06 -2.22393650344e-05 -4.34685404608e-05 -1.16457264824e-05 -4.7022034588e-05 -6.54778685742e-05 -1.94176615298e-05 -6.84662909065e-05 -8.17060609879e-05 -2.53957775955e-05 -7.85254281133e-05 -8.76705565476e-05 -2.766214317e-05 -7.43001684078e-05 -2.77183233601e-05 -6.0035272419e-05 -8.76705565477e-05 -2.77183233601e-05 6.0035272419e-05 -8.17060609879e-05 -2.59177325133e-05 7.43283733682e-05 -6.54778685742e-05 -2.12545453657e-05 7.86752372993e-05 -4.3468540461e-05 -1.52305413376e-05 6.87486797654e-05 -2.16425812885e-05 -9.14348416426e-06 4.73128606849e-05 -5.78112667072e-06 -4.00756229097e-06 2.24054986177e-05 -8.986300708e-07 5.18840274748e-06 -5.78112667067e-06 -9.5816160937e-07 -5.15270901822e-06 -2.16425812886e-05 -4.77903752915e-06 -2.22393650344e-05 -4.34685404608e-05 -1.16457264823e-05 -4.7022034588e-05 -6.54778685742e-05 -1.94176615297e-05 -6.84662909065e-05 -8.17060609879e-05 -2.53957775955e-05 -7.85254281133e-05 -8.76705565476e-05 -2.766214317e-05 -7.43001684078e-05 -2.77183233601e-05 -6.0035272419e-05 -8.76705565477e-05 -2.771832336e-05 6.0035272419e-05 -8.17060609879e-05 -2.59177325134e-05 7.43283733682e-05 -6.54778685743e-05 -2.12545453657e-05 7.86752372993e-05 -4.3468540461e-05 -1.52305413376e-05 6.87486797654e-05 -2.16425812885e-05 -9.14348416426e-06 4.73128606848e-05 -5.78112667069e-06 -4.00756229096e-06 2.24054986177e-05 -8.9863007079e-07 5.18840274747e-06 -5.78112667067e-06 -9.58161609363e-07 -5.15270901822e-06 -2.16425812886e-05 -4.77903752913e-06 -2.22393650344e-05 -4.34685404608e-05 -1.16457264823e-05 -4.7022034588e-05 -6.54778685742e-05 -1.94176615298e-05 -6.84662909065e-05 -8.17060609879e-05 -2.53957775955e-05 -7.85254281133e-05 -8.76705565476e-05 -2.766214317e-05 -7.43001684078e-05 -2.771832336e-05 -6.00352724191e-05 -8.76705565477e-05 -2.77183233601e-05 6.0035272419e-05 -8.17060609879e-05 -2.59177325133e-05 7.43283733683e-05 -6.54778685742e-05 -2.12545453657e-05 7.86752372993e-05 -4.34685404611e-05 -1.52305413376e-05 6.87486797654e-05 -2.16425812885e-05 -9.14348416426e-06 4.73128606848e-05 -5.78112667071e-06 -4.00756229094e-06 2.24054986177e-05 -8.98630070791e-07 5.1884027475e-06 -5.78112667067e-06 -9.58161609402e-07 -5.15270901821e-06 -2.16425812886e-05 -4.77903752916e-06 -2.22393650344e-05 -4.34685404608e-05 -1.16457264824e-05 -4.7022034588e-05 -6.54778685742e-05 -1.94176615298e-05 -6.84662909064e-05 -8.17060609879e-05 -2.53957775955e-05 -7.85254281133e-05 -8.76705565476e-05 -2.766214317e-05 -7.43001684079e-05 -2.771832336e-05 -6.00352724191e-05 -8.76705565477e-05 -2.771832336e-05 6.00352724191e-05 -8.1706060988e-05 -2.59177325134e-05 7.43283733683e-05 -6.54778685743e-05 -2.12545453657e-05 7.86752372993e-05 -4.3468540461e-05 -1.52305413376e-05 6.87486797654e-05 -2.16425812885e-05 -9.14348416433e-06 4.73128606849e-05 -5.78112667073e-06 -4.00756229098e-06 2.24054986177e-05 -8.98630070817e-07 5.18840274751e-06 -5.33946925618e-06 -8.05148871091e-07 -4.7570592016e-06 -2.07524834404e-05 -4.26643687313e-06 -2.11389184462e-05 -4.22659436739e-05 -1.07549867016e-05 -4.54924230973e-05 -6.4184305248e-05 -1.8288334765e-05 -6.68878645164e-05 -8.06101893611e-05 -2.43496898568e-05 -7.72428084015e-05 -8.73055667998e-05 -2.72906403287e-05 -7.3625106103e-05 -8.76705565476e-05 -2.77129326937e-05 -5.98905257284e-05 -8.76705565476e-05 -2.771832336e-05 -4.28823374422e-05 -8.76705565476e-05 -2.771832336e-05 -2.57294024653e-05 -8.76705565476e-05 -2.771832336e-05 -8.5764674884e-06 -8.76705565477e-05 -2.771832336e-05 8.57646748844e-06 -8.76705565476e-05 -2.77183233601e-05 2.57294024653e-05 -8.76705565476e-05 -2.771832336e-05 4.28823374422e-05 -8.73055350912e-05 -2.73990421964e-05 5.98926178027e-05 -8.06098883418e-05 -2.50186319936e-05 7.36640957121e-05 -6.41838745746e-05 -2.03111249703e-05 7.74056487569e-05 -4.22655814297e-05 -1.44235465006e-05 6.71746554641e-05 -2.07522905391e-05 -8.52876890181e-06 4.57785641081e-05 -5.3394212814e-06 -3.61850262651e-06 2.12977456554e-05 -7.62709671623e-07 4.78966382902e-06 -3.7898226131e-06 -4.35216356538e-07 -3.37493722741e-06 -1.72945923065e-05 -2.94369203874e-06 -1.70241659356e-05 -3.72153455309e-05 -8.32823398455e-06 -3.92946300837e-05 -5.82817662798e-05 -1.50580369523e-05 -5.99715817447e-05 -7.50094669379e-05 -2.09972468943e-05 -7.10765946187e-05 -8.37864012077e-05 -2.46357054995e-05 -6.95455210195e-05 -8.55608482577e-05 -2.58093276675e-05 -5.79112085241e-05 -8.55607343611e-05 -2.58615519455e-05 -4.18569003038e-05 -8.55606204645e-05 -2.58615519455e-05 -2.5108030801e-05 -8.5560506568e-05 -2.58615519454e-05 -8.35916129833e-06 -8.55603926714e-05 -2.58615519455e-05 8.38970820445e-06 -8.55602787748e-05 -2.58615519454e-05 2.51385777072e-05 -8.55601648781e-05 -2.58615519455e-05 4.18874472099e-05 -8.37847877657e-05 -2.49678589103e-05 5.79507652352e-05 -7.50063709421e-05 -2.21175081271e-05 6.9640266719e-05 -5.82781519838e-05 -1.75416293545e-05 7.12862099218e-05 -3.72125217012e-05 -1.21112649629e-05 6.02680268213e-05 -1.7293191638e-05 -6.80574094189e-06 3.95581086305e-05 -3.78953252538e-06 -2.58000289789e-06 1.71548598688e-05 -4.22519570194e-07 3.39731852998e-06 -1.5918004819e-06 -8.0946214674e-08 -1.41822734182e-06 -1.13297104611e-05 -1.39335547406e-06 -1.03585045773e-05 -2.77399732252e-05 -5.0837932442e-06 -2.80742619948e-05 -4.6353466417e-05 -1.03709663326e-05 -4.64687828657e-05 -6.23812171972e-05 -1.55548623477e-05 -5.79405834811e-05 -7.24347728699e-05 -1.91908208039e-05 -5.89901707258e-05 -7.56650577702e-05 -2.06363477238e-05 -5.06145208068e-05 -7.56642149532e-05 -2.07887538599e-05 -3.70317987517e-05 -7.56633721362e-05 -2.07887538599e-05 -2.21920532593e-05 -7.56625293191e-05 -2.07887538599e-05 -7.35230776713e-06 -7.56616865021e-05 -2.07887538599e-05 7.48743772515e-06 -7.56608436851e-05 -2.07887538599e-05 2.23271832175e-05 -7.5660000868e-05 -2.07887538599e-05 3.71669287097e-05 -7.24277712439e-05 -1.98975643678e-05 5.07602621574e-05 -6.23725969093e-05 -1.72555667015e-05 5.9185249381e-05 -4.63452101378e-05 -1.32495681718e-05 5.82060098472e-05 -2.77343025299e-05 -8.66191037728e-06 4.67538110057e-05 -1.13273339763e-05 -4.36224718134e-06 2.8282510653e-05 -1.5915216295e-06 -1.28443700503e-06 1.04399982976e-05 -8.04965813375e-08 1.42719622789e-06 -2.51299133608e-07 0 -2.24248915964e-07 -5.01490449871e-06 -3.39552928704e-07 -4.1827712654e-06 -1.62699475385e-05 -2.06937090716e-06 -1.51882731478e-05 -3.06411520681e-05 -5.43099923131e-06 -2.93314788224e-05 -4.40982758007e-05 -9.23257882465e-06 -3.97740760497e-05 -5.33373550529e-05 -1.22258367731e-05 -4.26140266137e-05 -5.65714117378e-05 -1.3621067658e-05 -3.75789541059e-05 -5.65698355316e-05 -1.38591746401e-05 -2.77086205447e-05 -5.65682593254e-05 -1.385917464e-05 -1.65766900507e-05 -5.65666831192e-05 -1.38591746401e-05 -5.44475955666e-06 -5.65651069131e-05 -1.38591746401e-05 5.68717093739e-06 -5.65635307068e-05 -1.38591746401e-05 1.68191014314e-05 -5.65619545006e-05 -1.38591746401e-05 2.79510319254e-05 -5.33252987992e-05 -1.32045657466e-05 3.78245596984e-05 -4.40855679549e-05 -1.12084614132e-05 4.28759881733e-05 -3.06306987173e-05 -8.16487714005e-06 4.00417494694e-05 -1.62639459817e-05 -4.7869852195e-06 2.95541012363e-05 -5.01315634698e-06 -1.89032717622e-06 1.53126232863e-05 -2.5128417387e-07 -3.31775909062e-07 4.21505807102e-06 0 2.25594252229e-07 0 0 0 -1.04834257293e-06 0 -8.29995554678e-07 -6.25906158505e-06 -3.39552891308e-07 -5.14978839485e-06 -1.51047384435e-05 -1.64461834444e-06 -1.32587454531e-05 -2.44248573725e-05 -3.72456483833e-06 -2.09640837117e-05 -3.1302891917e-05 -5.64831019039e-06 -2.43422417797e-05 -3.38113362087e-05 -6.69352798814e-06 -2.22730427272e-05 -3.38097632425e-05 -6.92958893991e-06 -1.65764268608e-05 -3.38081902762e-05 -6.92958893993e-06 -9.8972664752e-06 -3.380661731e-05 -6.92958893992e-06 -3.21810608961e-06 -3.38050443438e-05 -6.92958893994e-06 3.46105429609e-06 -3.38034713776e-05 -6.92958893994e-06 1.01402146817e-05 -3.38018984115e-05 -6.92958893991e-06 1.68193750672e-05 -3.12913182176e-05 -6.55295751141e-06 2.25118201956e-05 -2.44138817272e-05 -5.33444622771e-06 2.45672675833e-05 -1.50971606846e-05 -3.45762728892e-06 2.1150884424e-05 -6.2559748859e-06 -1.54304310091e-06 1.33769550986e-05 -1.0481121845e-06 -3.3177587164e-07 5.19378344955e-06 0 0 8.35870051866e-07 0 0 0 0 0 0 0 0 -1.04832817365e-06 0 -7.25877359191e-07 -4.22549775891e-06 -8.09462131971e-08 -3.22698590388e-06 -8.79479830816e-06 -5.15712083032e-07 -6.84020425513e-06 -1.26280226513e-05 -1.22766020123e-06 -9.31460352832e-06 -1.41000735871e-05 -1.7208571445e-06 -9.13540060268e-06 -1.40992372501e-05 -1.85677789466e-06 -6.91931008722e-06 -1.4098400913e-05 -1.85677789464e-06 -4.1243134465e-06 -1.40975645759e-05 -1.85677789469e-06 -1.32931680574e-06 -1.40967282389e-05 -1.85677789465e-06 1.4656798351e-06 -1.40958919017e-05 -1.85677789463e-06 4.2606764758e-06 -1.40950555648e-05 -1.85677789466e-06 7.0556731165e-06 -1.26221661637e-05 -1.70377097303e-06 9.26586950592e-06 -8.79010839829e-06 -1.1979247912e-06 9.42430189135e-06 -4.22335775395e-06 -5.03465637254e-07 6.91198408567e-06 -1.04812658377e-06 -8.04965799294e-08 3.25754523071e-06 0 0 7.31754491277e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.51296640322e-07 0 -1.4927477845e-07 -1.34093676835e-06 0 -8.11574310165e-07 -2.46187161926e-06 0 -1.63457812815e-06 -2.92065803994e-06 0 -1.83491587759e-06 -2.92054738332e-06 0 -1.43540451464e-06 -2.92043672672e-06 0 -8.5498265668e-07 -2.92032607007e-06 0 -2.74560798684e-07 -2.92021541354e-06 0 3.05861059289e-07 -2.92010475692e-06 0 8.8628291722e-07 -2.91999410031e-06 0 1.46670477519e-06 -2.46124113647e-06 0 1.86376771202e-06 -1.34070153999e-06 0 1.65519483549e-06 -2.5128666718e-07 0 8.20365288938e-07 0 0 1.5062058041e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.73028413804e-07 -8.0966059892e-08 -1.49095623153e-07 -1.4456327664e-06 -5.16252455186e-07 -8.0632220008e-07 -2.63316412867e-06 -1.22897178934e-06 -1.61229316738e-06 -3.11383651203e-06 -1.72161059449e-06 -1.80037778976e-06 -3.11372743749e-06 -1.85677789464e-06 -1.40604292338e-06 -3.11361836295e-06 -1.85677789465e-06 -8.37434720358e-07 -3.11350928845e-06 -1.85677789465e-06 -2.68826517311e-07 -3.11340021391e-06 -1.85677789465e-06 2.99781685642e-07 -3.11329113933e-06 -1.85677789465e-06 8.68389888612e-07 -3.11318206482e-06 -1.85677789464e-06 1.43699809166e-06 -2.63254126575e-06 -1.70301752301e-06 1.82894008394e-06 -1.44539909767e-06 -1.19661320315e-06 1.63278899136e-06 -2.73018453121e-07 -5.02925265105e-07 8.1511637996e-07 0 -8.0476733104e-08 1.50442471722e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.13252704682e-06 -3.39896071146e-07 -7.22265377487e-07 -4.47999893509e-06 -1.64909669999e-06 -3.16770443437e-06 -9.17461561749e-06 -3.73632065406e-06 -6.60502343386e-06 -1.3035760778e-05 -5.6621178549e-06 -8.88096982894e-06 -1.45028416922e-05 -6.69970807994e-06 -8.65074165946e-06 -1.4502037935e-05 -6.92958893995e-06 -6.53989863148e-06 -1.45012341778e-05 -6.92958893995e-06 -3.89763119495e-06 -1.45004304206e-05 -6.92958893995e-06 -1.2553637585e-06 -1.44996266634e-05 -6.92958893995e-06 1.38690367808e-06 -1.44988229062e-05 -6.92958893995e-06 4.02917111451e-06 -1.4498019149e-05 -6.92958893995e-06 6.67143855099e-06 -1.30301178882e-05 -6.54677741953e-06 8.77677105287e-06 -9.17006293315e-06 -5.32063856322e-06 8.98761281253e-06 -4.47789771492e-06 -3.44587147316e-06 6.67563071493e-06 -1.13232650381e-06 -1.53856474524e-06 3.19817249596e-06 0 -3.31432691829e-07 7.2815925796e-07 0 0 0 0 0 0 0 0 -1.13254137133e-06 -3.39896108532e-07 -8.2586880323e-07 -6.61662096459e-06 -2.07726162905e-06 -5.04406726972e-06 -1.56502997203e-05 -5.45933042555e-06 -1.27357331011e-05 -2.49164062051e-05 -9.27945216764e-06 -1.97999722114e-05 -3.16305339846e-05 -1.22704233224e-05 -2.27154758132e-05 -3.40579629291e-05 -1.36393030513e-05 -2.06566646822e-05 -3.40564754401e-05 -1.38591746399e-05 -1.53483070068e-05 -3.40549879512e-05 -1.38591746399e-05 -9.16277469861e-06 -3.40535004622e-05 -1.38591746399e-05 -2.9772423904e-06 -3.40520129732e-05 -1.385917464e-05 3.20828991788e-06 -3.40505254843e-05 -1.38591746399e-05 9.39382222604e-06 -3.40490379953e-05 -1.385917464e-05 1.55793545342e-05 -3.16195628191e-05 -1.31863303531e-05 2.08839463753e-05 -2.49059270546e-05 -1.11638748637e-05 2.29308112402e-05 -1.56429813793e-05 -8.11800379709e-06 1.99807509651e-05 -6.6135966737e-06 -4.75865402518e-06 1.28519866789e-05 -1.13231217928e-06 -1.88243645423e-06 5.08803022959e-06 0 -3.31432729217e-07 8.31760048848e-07 0 0 -2.73030903967e-07 -8.09660614238e-08 -2.23980450386e-07 -5.34719744386e-06 -1.39815716238e-06 -4.1247623493e-06 -1.7002662851e-05 -5.11553679756e-06 -1.47081371021e-05 -3.1474236943e-05 -1.04459458476e-05 -2.79108011373e-05 -4.47584469997e-05 -1.56557152183e-05 -3.73260566102e-05 -5.38017985202e-05 -1.92752980888e-05 -3.96449609162e-05 -5.69658900245e-05 -2.06685586645e-05 -3.48271682564e-05 -5.69644057754e-05 -2.078875386e-05 -2.56569732498e-05 -5.69629215265e-05 -2.078875386e-05 -1.5347755961e-05 -5.69614372775e-05 -2.078875386e-05 -5.03853867206e-06 -5.69599530286e-05 -2.07887538599e-05 5.27067861678e-06 -5.69584687795e-05 -2.078875386e-05 1.55798959056e-05 -5.69569845306e-05 -2.078875386e-05 2.58891131945e-05 -5.37904257135e-05 -1.98653534271e-05 3.50622708974e-05 -4.47463907884e-05 -1.71710894166e-05 3.98962138079e-05 -3.14642196156e-05 -1.31487153012e-05 3.75845332305e-05 -1.69968339914e-05 -8.58693086232e-06 2.81285233643e-05 -5.34547436925e-06 -4.33050362806e-06 1.48317543362e-05 -2.7301596299e-07 -1.27963531678e-06 4.15722556828e-06 -8.04767346531e-08 2.25326833215e-07 -1.71916795233e-06 -4.35776575393e-07 -1.41091641843e-06 -1.20386746429e-05 -2.95970916528e-06 -1.01753476768e-05 -2.90177685463e-05 -8.39509502562e-06 -2.7174280518e-05 -4.79082622422e-05 -1.51869959426e-05 -4.43992964577e-05 -6.4074426584e-05 -2.11479791249e-05 -5.48885446803e-05 -7.43618339314e-05 -2.4745287183e-05 -5.57097851173e-05 -7.77587314025e-05 -2.58459019733e-05 -4.78170829532e-05 -7.77579341252e-05 -2.58615519454e-05 -3.50053236542e-05 -7.7757136848e-05 -2.58615519454e-05 -2.09764780708e-05 -7.77563395707e-05 -2.58615519454e-05 -6.94763248741e-06 -7.77555422935e-05 -2.58615519454e-05 7.08121309597e-06 -7.77547450163e-05 -2.58615519454e-05 2.11100586793e-05 -7.7753947739e-05 -2.58615519454e-05 3.51389042626e-05 -7.43552046703e-05 -2.49312846045e-05 4.79607302692e-05 -6.40662323967e-05 -2.20079264436e-05 5.59011959306e-05 -4.7900348574e-05 -1.73908971239e-05 5.51484696304e-05 -2.90122686091e-05 -1.19823059726e-05 4.46800181974e-05 -1.20363393974e-05 -6.73887990082e-06 2.73817837655e-05 -1.71889061011e-06 -2.56398577148e-06 1.02575038583e-05 -4.21959351368e-07 1.41991621056e-06 -4.09233590107e-06 -8.07020677972e-07 -3.35712989546e-06 -1.84772344035e-05 -4.29495006269e-06 -1.67831176207e-05 -3.93759784238e-05 -1.0852626562e-05 -3.83782915021e-05 -6.12739914823e-05 -1.84571844103e-05 -5.81430669016e-05 -7.88110111765e-05 -2.45255264692e-05 -6.8699417509e-05 -8.86090971541e-05 -2.73893446409e-05 -6.74263324769e-05 -9.11088446462e-05 -2.77265580608e-05 -5.65237541354e-05 -9.11087388116e-05 -2.77183233601e-05 -4.10040025123e-05 -9.11086329771e-05 -2.77183233601e-05 -2.45960322415e-05 -9.11085271425e-05 -2.771832336e-05 -8.18806197076e-06 -9.1108421308e-05 -2.77183233601e-05 8.21990829996e-06 -9.11083154734e-05 -2.771832336e-05 2.46278785707e-05 -9.11082096388e-05 -2.77183233601e-05 4.10358488415e-05 -8.86075796704e-05 -2.73854168292e-05 5.65648675226e-05 -7.88080687879e-05 -2.49199276813e-05 6.75231444127e-05 -6.12705194719e-05 -2.0135288358e-05 6.89099078299e-05 -3.93732316821e-05 -1.42546968554e-05 5.84400127945e-05 -1.84758553222e-05 -8.43112904135e-06 3.86436395538e-05 -4.09204748996e-06 -3.58998943706e-06 1.6915679903e-05 -7.60837864858e-07 3.37970800803e-06 -5.79257693137e-06 -9.60786866059e-07 -4.74663268765e-06 -2.24273591713e-05 -4.81297735231e-06 -2.10241190996e-05 -4.55202022443e-05 -1.17554216106e-05 -4.51029983328e-05 -6.8987431709e-05 -1.96004866864e-05 -6.61660937776e-05 -8.67148977525e-05 -2.55759775753e-05 -7.63917642896e-05 -9.45569241403e-05 -2.77378985549e-05 -7.30976794474e-05 -9.52940832038e-05 -2.77183233601e-05 -5.9775736662e-05 -9.52940832038e-05 -4.28823374422e-05 -9.52940832039e-05 -2.57294024653e-05 -9.52940832038e-05 -8.5764674884e-06 -9.52940832039e-05 8.5764674885e-06 -9.52940832038e-05 2.57294024653e-05 -9.52940832038e-05 4.28823374422e-05 -9.4556902101e-05 -2.77183233601e-05 5.97780137193e-05 -8.67146284987e-05 -2.58419771285e-05 7.31385078351e-05 -6.89870294325e-05 -2.10743453859e-05 7.65588736626e-05 -4.55198533958e-05 -1.50477161809e-05 6.64592458989e-05 -2.24271692687e-05 -9.03378903594e-06 4.5395677669e-05 -5.79252913762e-06 -3.97362246779e-06 2.11867642247e-05 -8.96004814168e-07 4.77973676968e-06 -6.29180675936e-06 -9.60786866047e-07 -5.15237311111e-06 -2.35484651876e-05 -4.81297735228e-06 -2.22368092106e-05 -4.72803073647e-05 -1.17554216106e-05 -4.70171686809e-05 -7.11955166944e-05 -1.96004866864e-05 -6.84613238134e-05 -8.88189093416e-05 -2.55759775753e-05 -7.85226705756e-05 -9.52940832038e-05 -2.77378985549e-05 -7.42997319729e-05 -2.771832336e-05 -6.0035272419e-05 -9.52940832039e-05 -2.77183233601e-05 6.0035272419e-05 -8.88189093415e-05 -2.58419771285e-05 7.43285961268e-05 -7.11955166945e-05 -2.10743453859e-05 7.86774000444e-05 -4.72803073648e-05 -1.50477161809e-05 6.87528940378e-05 -2.35484651877e-05 -9.03378903596e-06 4.73171761433e-05 -6.29180675932e-06 -3.9736224678e-06 2.24078630766e-05 -8.96004814151e-07 5.18872603374e-06 -6.29180675936e-06 -9.6078686605e-07 -5.15237311114e-06 -2.35484651876e-05 -4.8129773523e-06 -2.22368092106e-05 -4.72803073647e-05 -1.17554216106e-05 -4.70171686809e-05 -7.11955166944e-05 -1.96004866864e-05 -6.84613238133e-05 -8.88189093416e-05 -2.55759775752e-05 -7.85226705757e-05 -9.52940832038e-05 -2.77378985549e-05 -7.42997319729e-05 -2.77183233601e-05 -6.0035272419e-05 -9.52940832039e-05 -2.77183233601e-05 6.00352724191e-05 -8.88189093416e-05 -2.58419771285e-05 7.43285961268e-05 -7.11955166945e-05 -2.10743453859e-05 7.86774000445e-05 -4.72803073649e-05 -1.50477161809e-05 6.87528940378e-05 -2.35484651876e-05 -9.03378903596e-06 4.73171761433e-05 -6.29180675933e-06 -3.9736224678e-06 2.24078630766e-05 -8.96004814147e-07 5.18872603373e-06 -6.29180675936e-06 -9.60786866052e-07 -5.15237311113e-06 -2.35484651876e-05 -4.81297735229e-06 -2.22368092106e-05 -4.72803073647e-05 -1.17554216106e-05 -4.70171686809e-05 -7.11955166944e-05 -1.96004866865e-05 -6.84613238134e-05 -8.88189093416e-05 -2.55759775753e-05 -7.85226705756e-05 -9.52940832038e-05 -2.77378985549e-05 -7.42997319729e-05 -2.77183233601e-05 -6.0035272419e-05 -9.52940832039e-05 -2.77183233601e-05 6.00352724191e-05 -8.88189093415e-05 -2.58419771285e-05 7.43285961268e-05 -7.11955166945e-05 -2.10743453859e-05 7.86774000445e-05 -4.72803073648e-05 -1.50477161809e-05 6.87528940378e-05 -2.35484651876e-05 -9.03378903593e-06 4.73171761433e-05 -6.29180675935e-06 -3.97362246777e-06 2.24078630766e-05 -8.96004814128e-07 5.18872603373e-06 -6.29180675935e-06 -9.60786866086e-07 -5.15237311111e-06 -2.35484651876e-05 -4.81297735234e-06 -2.22368092106e-05 -4.72803073647e-05 -1.17554216107e-05 -4.70171686809e-05 -7.11955166944e-05 -1.96004866865e-05 -6.84613238133e-05 -8.88189093416e-05 -2.55759775753e-05 -7.85226705756e-05 -9.52940832038e-05 -2.7737898555e-05 -7.42997319729e-05 -2.77183233601e-05 -6.0035272419e-05 -9.52940832039e-05 -2.77183233601e-05 6.0035272419e-05 -8.88189093416e-05 -2.58419771285e-05 7.43285961268e-05 -7.11955166945e-05 -2.1074345386e-05 7.86774000444e-05 -4.72803073648e-05 -1.50477161809e-05 6.87528940378e-05 -2.35484651876e-05 -9.033789036e-06 4.73171761433e-05 -6.29180675931e-06 -3.97362246786e-06 2.24078630765e-05 -8.96004814198e-07 5.18872603371e-06 -5.81117009335e-06 -8.07020677929e-07 -4.75677133717e-06 -2.2580291331e-05 -4.29495006266e-06 -2.11365108523e-05 -4.59731816404e-05 -1.0852626562e-05 -4.54877173657e-05 -6.97906511448e-05 -1.84571844103e-05 -6.68829563604e-05 -8.76295310041e-05 -2.45255264692e-05 -7.7239965798e-05 -9.48980702066e-05 -2.73893446409e-05 -7.36245230124e-05 -9.52940832038e-05 -2.77265580608e-05 -5.98905112465e-05 -9.52940832038e-05 -2.771832336e-05 -4.28823374421e-05 -9.52940832039e-05 -2.771832336e-05 -2.57294024653e-05 -9.52940832038e-05 -2.771832336e-05 -8.57646748838e-06 -9.52940832039e-05 -2.771832336e-05 8.57646748848e-06 -9.52940832038e-05 -2.771832336e-05 2.57294024653e-05 -9.52940832038e-05 -2.77183233601e-05 4.28823374422e-05 -9.4898038498e-05 -2.73854168292e-05 5.98926128737e-05 -8.76292299848e-05 -2.49199276813e-05 7.36644252246e-05 -6.97902204715e-05 -2.01352883579e-05 7.74078954452e-05 -4.59728193961e-05 -1.42546968553e-05 6.71788343636e-05 -2.25800984297e-05 -8.43112904138e-06 4.57827484689e-05 -5.81112211863e-06 -3.58998943703e-06 2.12999777659e-05 -7.6083786482e-07 4.78994116687e-06 -4.12469532559e-06 -4.35776575363e-07 -3.37478163422e-06 -1.88187244888e-05 -2.95970916523e-06 -1.70222835371e-05 -4.04825654265e-05 -8.39509502562e-06 -3.92905229809e-05 -6.33782712973e-05 -1.51869959426e-05 -5.99669059556e-05 -8.15484487196e-05 -2.11479791249e-05 -7.10734337372e-05 -9.10785620929e-05 -2.4745287183e-05 -6.95443666607e-05 -9.30047902587e-05 -2.58459019733e-05 -5.79109689428e-05 -9.30046763622e-05 -2.58615519455e-05 -4.18567864072e-05 -9.30045624656e-05 -2.58615519455e-05 -2.51079169044e-05 -9.3004448569e-05 -2.58615519455e-05 -8.35904740176e-06 -9.30043346724e-05 -2.58615519454e-05 8.38982210104e-06 -9.30042207758e-05 -2.58615519455e-05 2.51386916037e-05 -9.30041068792e-05 -2.58615519454e-05 4.18875611064e-05 -9.10769486509e-05 -2.49312846045e-05 5.79509170128e-05 -8.15453527237e-05 -2.20079264436e-05 6.96410865138e-05 -6.33746570014e-05 -1.73908971239e-05 7.12887921545e-05 -4.04797415967e-05 -1.19823059726e-05 6.02720677179e-05 -1.88173238202e-05 -6.73887990082e-06 3.95617996127e-05 -4.12440523785e-06 -2.5639857714e-06 1.71566196723e-05 -4.21959351348e-07 3.39746906384e-06 -1.73249589751e-06 -8.09660614479e-08 -1.41819039216e-06 -1.23291444435e-05 -1.39815716235e-06 -1.03574634266e-05 -3.01793022959e-05 -5.11553679751e-06 -2.80713112655e-05 -5.04154334648e-05 -1.04459458475e-05 -4.64648240602e-05 -6.78317216353e-05 -1.56557152183e-05 -5.79372504167e-05 -7.87522582251e-05 -1.92752980889e-05 -5.89882248901e-05 -8.22605002111e-05 -2.06685586644e-05 -5.06135089249e-05 -8.22596573941e-05 -2.07887538599e-05 -3.70309559347e-05 -8.2258814577e-05 -2.07887538599e-05 -2.21912104424e-05 -8.225797176e-05 -2.07887538598e-05 -7.3514649501e-06 -8.2257128943e-05 -2.07887538599e-05 7.48828054218e-06 -8.2256286126e-05 -2.07887538599e-05 2.23280260345e-05 -8.22554433089e-05 -2.07887538599e-05 3.71677715268e-05 -7.87452565991e-05 -1.9865353427e-05 5.0761159143e-05 -6.78231013474e-05 -1.71710894166e-05 5.91868645957e-05 -5.04071771855e-05 -1.31487153012e-05 5.82088684776e-05 -3.01736316007e-05 -8.5869308623e-06 4.67573212871e-05 -1.23267679586e-05 -4.33050362802e-06 2.82852134099e-05 -1.73221704511e-06 -1.27963531675e-06 1.04409862254e-05 -8.04767346431e-08 1.42723228007e-06 -2.73520240113e-07 0 -2.24247658171e-07 -5.4577419372e-06 -3.39896108516e-07 -4.18246797042e-06 -1.77034256e-05 -2.07726162909e-06 -1.51867308362e-05 -3.33334699399e-05 -5.45933042563e-06 -2.93287921238e-05 -4.79634627869e-05 -9.27945216762e-06 -3.9771219409e-05 -5.80046277986e-05 -1.22704233224e-05 -4.26117617587e-05 -6.15189364017e-05 -1.36393030515e-05 -3.75772769962e-05 -6.15173601955e-05 -1.38591746401e-05 -2.77070443386e-05 -6.15157839893e-05 -1.38591746401e-05 -1.65751138446e-05 -6.15142077831e-05 -1.38591746401e-05 -5.44318335048e-06 -6.15126315769e-05 -1.38591746401e-05 5.6887471436e-06 -6.15110553707e-05 -1.38591746401e-05 1.68206776376e-05 -6.15094791645e-05 -1.38591746401e-05 2.79526081317e-05 -5.7992571545e-05 -1.31863303532e-05 3.78261514005e-05 -4.79507549411e-05 -1.11638748638e-05 4.28780236356e-05 -3.33230165891e-05 -8.11800379707e-06 4.00443158316e-05 -1.76974240432e-05 -4.75865402519e-06 2.95565589464e-05 -5.45599378541e-06 -1.88243645428e-06 1.53140711217e-05 -2.73505280425e-07 -3.31432729193e-07 4.21535099961e-06 0 2.25595487404e-07 0 0 0 -1.14100534884e-06 0 -8.29973744366e-07 -6.81147734352e-06 -3.3989607121e-07 -5.14937164374e-06 -1.64354625988e-05 -1.64909670006e-06 -1.32575253538e-05 -2.65728695773e-05 -3.73632065405e-06 -2.09623505263e-05 -3.40523327722e-05 -5.66211785491e-06 -2.434048497e-05 -3.67798519356e-05 -6.69970807999e-06 -2.22714549369e-05 -3.67782789693e-05 -6.92958893993e-06 -1.65748538946e-05 -3.67767060031e-05 -6.92958893995e-06 -9.89569350902e-06 -3.67751330369e-05 -6.92958893992e-06 -3.2165331234e-06 -3.67735600707e-05 -6.92958893992e-06 3.46262726226e-06 -3.67719871044e-05 -6.92958893998e-06 1.01417876479e-05 -3.67704141383e-05 -6.92958893992e-06 1.68209480334e-05 -3.40407590728e-05 -6.54677741954e-06 2.25133657613e-05 -2.6561893932e-05 -5.32063856322e-06 2.45689185251e-05 -1.64278848398e-05 -3.44587147314e-06 2.11525028199e-05 -6.8083906444e-06 -1.53856474529e-06 1.33781071283e-05 -1.14077496036e-06 -3.31432691852e-07 5.19418469308e-06 0 0 8.35891423504e-07 0 0 0 0 0 0 0 0 -1.14099094954e-06 0 -7.25855548901e-07 -4.5985401731e-06 -8.09660599754e-08 -3.22676629742e-06 -9.57040762405e-06 -5.16252455194e-07 -6.83965621844e-06 -1.37408282025e-05 -1.2289717893e-06 -9.31384661899e-06 -1.53422943163e-05 -1.72161059459e-06 -9.13458986349e-06 -1.53414579793e-05 -1.85677789462e-06 -6.91847375015e-06 -1.53406216422e-05 -1.85677789469e-06 -4.12347710944e-06 -1.53397853051e-05 -1.85677789466e-06 -1.32848046875e-06 -1.5338948968e-05 -1.85677789469e-06 1.46651617215e-06 -1.53381126309e-05 -1.85677789462e-06 4.26151281285e-06 -1.53372762939e-05 -1.85677789463e-06 7.05650945351e-06 -1.37349717149e-05 -1.70301752309e-06 9.26666881708e-06 -9.56571771419e-06 -1.19661320308e-06 9.42503344285e-06 -4.59640016809e-06 -5.02925265122e-07 6.91251163342e-06 -1.14078935962e-06 -8.04767331512e-08 3.25775817269e-06 0 0 7.31775862889e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.73517746829e-07 0 -1.49273520581e-07 -1.45945077022e-06 0 -8.11546304984e-07 -2.67935075174e-06 0 -1.63451002409e-06 -3.17862331015e-06 0 -1.83481804694e-06 -3.17851265352e-06 0 -1.4352938581e-06 -3.17840199693e-06 0 -8.54872000074e-07 -3.1782913403e-06 0 -2.74450142086e-07 -3.17818068373e-06 0 3.05971715861e-07 -3.17807002712e-06 0 8.86393573729e-07 -3.1779593705e-06 0 1.46681543176e-06 -2.67872026891e-06 0 1.86386472428e-06 -1.45921554186e-06 0 1.65526144106e-06 -2.73507773674e-07 0 8.20392633404e-07 0 0 1.50621815623e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.9520982684e-07 -8.09859066336e-08 -1.49094366676e-07 -1.56302633065e-06 -5.16792827318e-07 -8.06294366065e-07 -2.84689964759e-06 -1.23028337747e-06 -1.61222584934e-06 -3.36655126903e-06 -1.72236404454e-06 -1.80028127846e-06 -3.36644219449e-06 -1.8567778947e-06 -1.40593384877e-06 -3.36633311996e-06 -1.8567778947e-06 -8.37325645774e-07 -3.36622404545e-06 -1.8567778947e-06 -2.68717442726e-07 -3.36611497094e-06 -1.8567778947e-06 2.9989076025e-07 -3.36600589637e-06 -1.8567778947e-06 8.68498963228e-07 -3.36589682182e-06 -1.8567778947e-06 1.43710716623e-06 -2.84627678468e-06 -1.70226407306e-06 1.82903577e-06 -1.56279266189e-06 -1.19530161509e-06 1.6328547991e-06 -2.95199866218e-07 -5.02384893003e-07 8.15143546615e-07 0 -8.04568863658e-08 1.50443705568e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.2245034631e-06 -3.40239250983e-07 -7.22243660557e-07 -4.84343797286e-06 -1.65357505565e-06 -3.1674886259e-06 -9.91819068072e-06 -3.74807646993e-06 -6.60449104585e-06 -1.40915399507e-05 -5.67592551957e-06 -8.88023944617e-06 -1.56771827756e-05 -6.70588817199e-06 -8.64996142725e-06 -1.56763790184e-05 -6.92958894017e-06 -6.53909487423e-06 -1.56755752611e-05 -6.92958894016e-06 -3.89682743775e-06 -1.5674771504e-05 -6.92958894016e-06 -1.25456000125e-06 -1.56739677468e-05 -6.92958894016e-06 1.38770743527e-06 -1.56731639895e-05 -6.92958894016e-06 4.02997487183e-06 -1.56723602324e-05 -6.92958894016e-06 6.67224230824e-06 -1.40858970608e-05 -6.54059732788e-06 8.77753934295e-06 -9.91363799637e-06 -5.30683089888e-06 8.98831684345e-06 -4.84133675272e-06 -3.43411565751e-06 6.67614198461e-06 -1.22430292001e-06 -1.53408638969e-06 3.19838149153e-06 0 -3.31089512003e-07 7.28180530485e-07 0 0 0 0 0 0 0 0 -1.2245177876e-06 -3.40239288379e-07 -8.25847086242e-07 -7.15325527939e-06 -2.08515235107e-06 -5.04365849108e-06 -1.69175367694e-05 -5.48766161999e-06 -1.27345549891e-05 -2.69306963286e-05 -9.32632551091e-06 -1.97983180179e-05 -3.418469512e-05 -1.23150098721e-05 -2.27138081891e-05 -3.68070884005e-05 -1.36575384451e-05 -2.06551604168e-05 -3.68056009115e-05 -1.38591746404e-05 -1.53468195179e-05 -3.68041134225e-05 -1.38591746404e-05 -9.16128720964e-06 -3.68026259336e-05 -1.38591746404e-05 -2.97575490144e-06 -3.68011384446e-05 -1.38591746404e-05 3.20977740672e-06 -3.67996509556e-05 -1.38591746404e-05 9.39530971499e-06 -3.67981634667e-05 -1.38591746404e-05 1.55808420232e-05 -3.41737239545e-05 -1.31680949601e-05 2.08854064716e-05 -2.69202171782e-05 -1.11192883147e-05 2.29323685587e-05 -1.69102184285e-05 -8.07113045435e-06 1.99822862486e-05 -7.15023098841e-06 -4.73032283105e-06 1.28530945819e-05 -1.22428859549e-06 -1.87454573233e-06 5.08842307099e-06 0 -3.31089549399e-07 8.31781321391e-07 0 0 -2.95212317004e-07 -8.09859081784e-08 -2.2397919388e-07 -5.78107817132e-06 -1.40295885071e-06 -4.12446291109e-06 -1.83794785245e-05 -5.14728035103e-06 -1.47066386356e-05 -3.40165957858e-05 -1.05209253629e-05 -2.79082288533e-05 -4.83657160069e-05 -1.57565680894e-05 -3.73233458698e-05 -5.81313719771e-05 -1.93597753743e-05 -3.96428178479e-05 -6.15477643768e-05 -2.07007696057e-05 -3.48255848176e-05 -6.15462801279e-05 -2.07887538606e-05 -2.56554890009e-05 -6.15447958789e-05 -2.07887538606e-05 -1.5346271712e-05 -6.15433116299e-05 -2.07887538606e-05 -5.03705442311e-06 -6.1541827381e-05 -2.07887538606e-05 5.27216286567e-06 -6.15403431319e-05 -2.07887538606e-05 1.55813801545e-05 -6.1538858883e-05 -2.07887538606e-05 2.58905974434e-05 -5.81199991705e-05 -1.9833142487e-05 3.5063766897e-05 -4.83536597957e-05 -1.70866121322e-05 3.98981217709e-05 -3.40065784585e-05 -1.3047862431e-05 3.75869463725e-05 -1.83736496649e-05 -8.51195134759e-06 2.81308606935e-05 -5.77935509677e-06 -4.29876007489e-06 1.48331555858e-05 -2.95197376054e-07 -1.27483362854e-06 4.15751435189e-06 -8.04568879195e-08 2.25328067095e-07 -1.85878262376e-06 -4.36336794261e-07 -1.41087963775e-06 -1.30145969941e-05 -2.97572629187e-06 -1.01743228425e-05 -3.13633509321e-05 -8.46195606695e-06 -2.71714151399e-05 -5.17685235503e-05 -1.53159549333e-05 -4.43954922862e-05 -6.92234665632e-05 -2.12987113561e-05 -5.48853517807e-05 -8.03276460643e-05 -2.48548688673e-05 -5.57079152234e-05 -8.39937738864e-05 -2.58824762799e-05 -4.78161185892e-05 -8.39929766092e-05 -2.58615519462e-05 -3.50045263769e-05 -8.39921793319e-05 -2.58615519462e-05 -2.09756807936e-05 -8.39913820547e-05 -2.58615519462e-05 -6.94683521021e-06 -8.39905847775e-05 -2.58615519462e-05 7.08201037309e-06 -8.39897875002e-05 -2.58615519462e-05 2.11108559565e-05 -8.3988990223e-05 -2.58615519462e-05 3.51397015399e-05 -8.03210168032e-05 -2.48947102994e-05 4.79615797035e-05 -6.92152723759e-05 -2.18983447607e-05 5.5902733306e-05 -5.17606098821e-05 -1.72401648939e-05 5.51511823275e-05 -3.13578509949e-05 -1.18533469827e-05 4.46833656195e-05 -1.30122617487e-05 -6.67201885992e-06 2.73843948313e-05 -1.85850528154e-06 -2.54796864506e-06 1.02584738115e-05 -4.21399132544e-07 1.41995208052e-06 -4.42458543751e-06 -8.08892484826e-07 -3.35697503643e-06 -1.99737512574e-05 -4.32346325231e-06 -1.67812581729e-05 -4.2554025222e-05 -1.09502664227e-05 -3.83742689761e-05 -6.62015419321e-05 -1.86260340562e-05 -5.81385107321e-05 -8.51308295939e-05 -2.47013630824e-05 -6.86963231348e-05 -9.57038494176e-05 -2.7488048954e-05 -6.74251737509e-05 -9.84012758805e-05 -2.77401834288e-05 -5.65235171236e-05 -9.8401170046e-05 -2.77183233609e-05 -4.10038966777e-05 -9.84010642114e-05 -2.77183233609e-05 -2.4595926407e-05 -9.84009583769e-05 -2.77183233609e-05 -8.18795613625e-06 -9.84008525423e-05 -2.77183233609e-05 8.22001413451e-06 -9.84007467077e-05 -2.77183233609e-05 2.46279844053e-05 -9.84006408732e-05 -2.77183233609e-05 4.1035954676e-05 -9.57023319339e-05 -2.73717914629e-05 5.65650168882e-05 -8.51278872052e-05 -2.48212233698e-05 6.75239694026e-05 -6.61980699217e-05 -1.99594517461e-05 6.891242055e-05 -4.25512784803e-05 -1.40858472105e-05 5.84439245173e-05 -1.99723721761e-05 -8.33348918117e-06 3.86472355476e-05 -4.42429702643e-06 -3.56147624766e-06 1.69174127446e-05 -7.58966058084e-07 3.37985769567e-06 -6.26277086873e-06 -9.63412122765e-07 -4.74634528333e-06 -2.42428068789e-05 -4.84691717561e-06 -2.10217204812e-05 -4.91909694254e-05 -1.18651167393e-05 -4.50983224938e-05 -7.45293557268e-05 -1.97833118437e-05 -6.61612236244e-05 -9.36610907867e-05 -2.57561775558e-05 -7.63889316012e-05 -0.000102122176816 -2.78136539406e-05 -7.30970739903e-05 -0.000102917609863 -2.77183233609e-05 -5.97757217926e-05 -0.000102917609863 -4.28823374422e-05 -0.000102917609863 -2.57294024652e-05 -0.000102917609863 -8.57646748838e-06 -0.000102917609863 8.57646748853e-06 -0.000102917609863 2.57294024653e-05 -0.000102917609863 4.28823374422e-05 -0.000102122154777 -2.77183233609e-05 5.97780094523e-05 -9.36608215328e-05 -2.57662217443e-05 7.31388622133e-05 -7.45289534502e-05 -2.08941454068e-05 7.65611093791e-05 -4.91906205771e-05 -1.48648910246e-05 6.64633747061e-05 -2.42426169763e-05 -8.92409390789e-06 4.53998171468e-05 -6.26272307503e-06 -3.93968264477e-06 2.11889810161e-05 -8.93379557546e-07 4.78001336116e-06 -6.80248684826e-06 -9.63412122734e-07 -5.15203701914e-06 -2.54543490875e-05 -4.84691717558e-06 -2.2234249706e-05 -5.10920742701e-05 -1.18651167393e-05 -4.70122940622e-05 -7.6913164817e-05 -1.97833118437e-05 -6.84563497971e-05 -9.59317576982e-05 -2.57561775558e-05 -7.85199129343e-05 -0.000102917609863 -2.78136539406e-05 -7.42992971418e-05 -2.77183233609e-05 -6.0035272419e-05 -0.000102917609863 -2.77183233609e-05 6.0035272419e-05 -9.59317576982e-05 -2.57662217443e-05 7.4328820489e-05 -7.69131648171e-05 -2.08941454068e-05 7.86795626858e-05 -5.10920742703e-05 -1.48648910246e-05 6.87571013871e-05 -2.54543490875e-05 -8.92409390791e-06 4.73214828902e-05 -6.80248684825e-06 -3.93968264474e-06 2.24102238549e-05 -8.93379557519e-07 5.18904913526e-06 -6.80248684826e-06 -9.63412122755e-07 -5.15203701916e-06 -2.54543490875e-05 -4.8469171756e-06 -2.2234249706e-05 -5.10920742701e-05 -1.18651167393e-05 -4.70122940623e-05 -7.6913164817e-05 -1.97833118437e-05 -6.84563497971e-05 -9.59317576982e-05 -2.57561775558e-05 -7.85199129342e-05 -0.000102917609863 -2.78136539407e-05 -7.42992971418e-05 -2.77183233609e-05 -6.0035272419e-05 -0.000102917609863 -2.77183233609e-05 6.0035272419e-05 -9.59317576982e-05 -2.57662217443e-05 7.43288204891e-05 -7.6913164817e-05 -2.08941454068e-05 7.86795626859e-05 -5.10920742703e-05 -1.48648910246e-05 6.87571013871e-05 -2.54543490875e-05 -8.92409390791e-06 4.73214828902e-05 -6.80248684822e-06 -3.93968264477e-06 2.24102238549e-05 -8.93379557526e-07 5.18904913523e-06 -6.80248684826e-06 -9.63412122745e-07 -5.15203701914e-06 -2.54543490875e-05 -4.8469171756e-06 -2.2234249706e-05 -5.10920742701e-05 -1.18651167393e-05 -4.70122940622e-05 -7.6913164817e-05 -1.97833118438e-05 -6.84563497971e-05 -9.59317576982e-05 -2.57561775558e-05 -7.85199129343e-05 -0.000102917609863 -2.78136539406e-05 -7.42992971418e-05 -2.77183233609e-05 -6.0035272419e-05 -0.000102917609863 -2.77183233609e-05 6.0035272419e-05 -9.59317576982e-05 -2.57662217443e-05 7.4328820489e-05 -7.6913164817e-05 -2.08941454068e-05 7.86795626858e-05 -5.10920742703e-05 -1.48648910246e-05 6.87571013871e-05 -2.54543490875e-05 -8.92409390791e-06 4.73214828902e-05 -6.80248684824e-06 -3.93968264474e-06 2.24102238549e-05 -8.93379557525e-07 5.18904913523e-06 -6.80248684826e-06 -9.63412122785e-07 -5.15203701913e-06 -2.54543490875e-05 -4.84691717564e-06 -2.2234249706e-05 -5.10920742701e-05 -1.18651167394e-05 -4.70122940623e-05 -7.69131648171e-05 -1.97833118438e-05 -6.84563497971e-05 -9.59317576982e-05 -2.57561775558e-05 -7.85199129343e-05 -0.000102917609863 -2.78136539407e-05 -7.42992971418e-05 -2.77183233608e-05 -6.00352724191e-05 -0.000102917609863 -2.77183233609e-05 6.0035272419e-05 -9.59317576982e-05 -2.57662217444e-05 7.4328820489e-05 -7.6913164817e-05 -2.08941454068e-05 7.86795626859e-05 -5.10920742703e-05 -1.48648910247e-05 6.87571013871e-05 -2.54543490875e-05 -8.92409390794e-06 4.73214828902e-05 -6.80248684822e-06 -3.93968264481e-06 2.24102238549e-05 -8.93379557561e-07 5.18904913528e-06 -6.28287093071e-06 -8.08892484771e-07 -4.75648332576e-06 -2.44080992223e-05 -4.32346325228e-06 -2.11340998923e-05 -4.96804196084e-05 -1.09502664227e-05 -4.54830033369e-05 -7.5396997044e-05 -1.86260340562e-05 -6.68780412993e-05 -9.464887265e-05 -2.47013630823e-05 -7.72371227168e-05 -0.000102490573617 -2.7488048954e-05 -7.36239414415e-05 -0.000102917609863 -2.77401834288e-05 -5.98904969017e-05 -0.000102917609863 -2.77183233609e-05 -4.28823374422e-05 -0.000102917609863 -2.77183233609e-05 -2.57294024653e-05 -0.000102917609863 -2.77183233609e-05 -8.57646748835e-06 -0.000102917609863 -2.77183233609e-05 8.57646748846e-06 -0.000102917609863 -2.77183233609e-05 2.57294024654e-05 -0.000102917609863 -2.77183233609e-05 4.28823374422e-05 -0.000102490541908 -2.73717914629e-05 5.9892608082e-05 -9.46485716307e-05 -2.48212233697e-05 7.36647562567e-05 -7.53965663706e-05 -1.99594517461e-05 7.74101416555e-05 -4.96800573641e-05 -1.40858472105e-05 6.71830063581e-05 -2.4407906321e-05 -8.3334891812e-06 4.57869245324e-05 -6.28282295598e-06 -3.56147624764e-06 2.13022065107e-05 -7.58966058044e-07 4.79021835804e-06 -4.45956803821e-06 -4.36336794227e-07 -3.37462598191e-06 -2.03428566717e-05 -2.9757262918e-06 -1.7020398815e-05 -4.37497853234e-05 -8.46195606697e-06 -3.92864091129e-05 -6.8474776317e-05 -1.53159549333e-05 -5.99622234627e-05 -8.80874305041e-05 -2.12987113561e-05 -7.10702709464e-05 -9.83707229811e-05 -2.48548688673e-05 -6.9543212716e-05 -0.000100448732263 -2.588247628e-05 -5.79107291701e-05 -0.000100448618366 -2.58615519462e-05 -4.18566725106e-05 -0.00010044850447 -2.58615519462e-05 -2.51078030078e-05 -0.000100448390573 -2.58615519462e-05 -8.35893350515e-06 -0.000100448276677 -2.58615519462e-05 8.38993599759e-06 -0.00010044816278 -2.58615519462e-05 2.51388055003e-05 -0.000100448048883 -2.58615519462e-05 4.1887675003e-05 -9.8369109539e-05 -2.48947102994e-05 5.79510685991e-05 -8.80843345082e-05 -2.18983447607e-05 6.96419067225e-05 -6.8471162021e-05 -1.72401648938e-05 7.1291372478e-05 -4.37469614937e-05 -1.18533469827e-05 6.02761019105e-05 -2.03414560031e-05 -6.67201885992e-06 3.95654838297e-05 -4.45927795046e-06 -2.547968645e-06 1.71583771523e-05 -4.21399132495e-07 3.39761953865e-06 -1.87319131317e-06 -8.09859081694e-08 -1.41815343571e-06 -1.33285784263e-05 -1.40295885066e-06 -1.0356421318e-05 -3.26186313677e-05 -5.14728035099e-06 -2.80683564288e-05 -5.44774005142e-05 -1.05209253628e-05 -4.64608598936e-05 -7.32822260758e-05 -1.57565680893e-05 -5.79339144679e-05 -8.5069743583e-05 -1.93597753743e-05 -5.89862785123e-05 -8.88559426548e-05 -2.07007696057e-05 -5.0612496976e-05 -8.88550998377e-05 -2.07887538606e-05 -3.70301131177e-05 -8.88542570207e-05 -2.07887538605e-05 -2.21903676254e-05 -8.88534142037e-05 -2.07887538605e-05 -7.35062213302e-06 -8.88525713867e-05 -2.07887538605e-05 7.48912335921e-06 -8.88517285696e-05 -2.07887538605e-05 2.23288688515e-05 -8.88508857526e-05 -2.07887538605e-05 3.71686143438e-05 -8.5062741957e-05 -1.9833142487e-05 5.07620560614e-05 -7.32736057879e-05 -1.70866121323e-05 5.91884792684e-05 -5.4469144235e-05 -1.3047862431e-05 5.82117242239e-05 -3.26129606725e-05 -8.51195134756e-06 4.67608262071e-05 -1.33262019413e-05 -4.29876007481e-06 2.82879120592e-05 -1.87291246078e-06 -1.27483362853e-06 1.04419731954e-05 -8.04568878937e-08 1.42726832551e-06 -2.9574134663e-07 0 -2.24246400311e-07 -5.90057937587e-06 -3.40239288373e-07 -4.18216452186e-06 -1.9136903662e-05 -2.08515235109e-06 -1.51851869808e-05 -3.60257878128e-05 -5.48766162002e-06 -2.93261024421e-05 -5.18286497747e-05 -9.32632551092e-06 -3.97683603569e-05 -6.26719005464e-05 -1.23150098722e-05 -4.26094959744e-05 -6.64664610677e-05 -1.36575384452e-05 -3.75755997311e-05 -6.64648848615e-05 -1.38591746405e-05 -2.77054681324e-05 -6.64633086553e-05 -1.38591746405e-05 -1.65735376383e-05 -6.64617324491e-05 -1.38591746405e-05 -5.44160714429e-06 -6.64601562429e-05 -1.38591746405e-05 5.6903233497e-06 -6.64585800367e-05 -1.38591746405e-05 1.68222538438e-05 -6.64570038305e-05 -1.38591746405e-05 2.79541843378e-05 -6.26598442926e-05 -1.31680949603e-05 3.7827742947e-05 -5.1815941929e-05 -1.11192883148e-05 4.28800581684e-05 -3.6015334462e-05 -8.07113045433e-06 4.00468797824e-05 -1.91309021052e-05 -4.73032283111e-06 2.95590136734e-05 -5.89883122409e-06 -1.87454573236e-06 1.53155174133e-05 -2.95726386911e-07 -3.31089549404e-07 4.21564377449e-06 0 2.25596722604e-07 0 0 0 -1.23366812478e-06 0 -8.29951931242e-07 -7.36389310223e-06 -3.40239251032e-07 -5.1489546779e-06 -1.77661867546e-05 -1.65357505578e-06 -1.32563043582e-05 -2.87208817831e-05 -3.74807646998e-06 -2.09606162183e-05 -3.68017736285e-05 -5.67592551956e-06 -2.43387275009e-05 -3.97483676637e-05 -6.70588817201e-06 -2.22698669763e-05 -3.97467946975e-05 -6.92958894017e-06 -1.65732809284e-05 -3.97452217312e-05 -6.92958894018e-06 -9.89412054281e-06 -3.9743648765e-05 -6.92958894013e-06 -3.21496015714e-06 -3.97420757988e-05 -6.92958894014e-06 3.46420022843e-06 -3.97405028325e-05 -6.92958894015e-06 1.01433606141e-05 -3.97389298664e-05 -6.92958894012e-06 1.68225209997e-05 -3.67901999291e-05 -6.54059732789e-06 2.25149111569e-05 -2.87099061378e-05 -5.30683089885e-06 2.45705688075e-05 -1.77586089957e-05 -3.43411565753e-06 2.1154120093e-05 -7.36080640309e-06 -1.53408638978e-06 1.33792582616e-05 -1.23343773631e-06 -3.31089512042e-07 5.19458572175e-06 0 0 8.3591279214e-07 0 0 0 0 0 0 0 0 -1.2336537255e-06 0 -7.25833735816e-07 -4.97158258747e-06 -8.09859067021e-08 -3.22654662635e-06 -1.03460169403e-05 -5.16792827292e-07 -6.83910799597e-06 -1.48536337542e-05 -1.23028337745e-06 -9.31308953059e-06 -1.6584515046e-05 -1.7223640446e-06 -9.13377906121e-06 -1.6583678709e-05 -1.85677789468e-06 -6.91763741305e-06 -1.65828423719e-05 -1.85677789466e-06 -4.12264077231e-06 -1.65820060348e-05 -1.8567778947e-06 -1.32764413156e-06 -1.65811696978e-05 -1.85677789474e-06 1.46735250915e-06 -1.65803333607e-05 -1.85677789468e-06 4.26234914992e-06 -1.65794970236e-05 -1.8567778947e-06 7.05734579065e-06 -1.48477772666e-05 -1.70226407311e-06 9.26746806535e-06 -1.03413270304e-05 -1.19530161503e-06 9.42576481522e-06 -4.96944258245e-06 -5.02384893055e-07 6.91303899515e-06 -1.23345213558e-06 -8.04568864256e-08 3.25797104995e-06 0 0 7.31797231564e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.95738853352e-07 0 -1.49272262764e-07 -1.57796477218e-06 0 -8.11518296521e-07 -2.89682988431e-06 0 -1.63444191711e-06 -3.43658858045e-06 0 -1.83472021646e-06 -3.43647792385e-06 0 -1.43518320145e-06 -3.43636726722e-06 0 -8.54761343509e-07 -3.43625661061e-06 0 -2.74339485465e-07 -3.43614595408e-06 0 3.06082372528e-07 -3.43603529744e-06 0 8.86504230412e-07 -3.43592464084e-06 0 1.46692608841e-06 -2.89619940146e-06 0 1.86396173693e-06 -1.57772954383e-06 0 1.65532804378e-06 -2.95728880299e-07 0 8.20419974612e-07 0 0 1.50623050843e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3.17391239852e-07 -8.10057533729e-08 -1.49093110086e-07 -1.68041989479e-06 -5.17333199422e-07 -8.062665289e-07 -3.06063516636e-06 -1.23159496552e-06 -1.61215852816e-06 -3.61926602582e-06 -1.72311749449e-06 -1.80018476715e-06 -3.61915695125e-06 -1.85677789465e-06 -1.40582477428e-06 -3.61904787668e-06 -1.85677789465e-06 -8.372165713e-07 -3.61893880221e-06 -1.85677789464e-06 -2.68608368231e-07 -3.61882972766e-06 -1.85677789464e-06 2.99999834754e-07 -3.61872065311e-06 -1.85677789464e-06 8.68608037742e-07 -3.61861157859e-06 -1.85677789464e-06 1.43721624075e-06 -3.06001230346e-06 -1.70151062301e-06 1.82913145606e-06 -1.68018622602e-06 -1.19399002697e-06 1.63292060372e-06 -3.17381279249e-07 -5.01844520869e-07 8.15170709923e-07 0 -8.0437039622e-08 1.50444939345e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.3164798793e-06 -3.40582430802e-07 -7.22221940589e-07 -5.20687701035e-06 -1.6580534112e-06 -3.16727275179e-06 -1.06617657433e-05 -3.75983228558e-06 -6.60395846113e-06 -1.51473191225e-05 -5.68973318391e-06 -8.87950885749e-06 -1.6851523858e-05 -6.71206826364e-06 -8.64918111563e-06 -1.68507201008e-05 -6.92958893996e-06 -6.53829111705e-06 -1.68499163436e-05 -6.92958893996e-06 -3.89602368053e-06 -1.68491125864e-05 -6.92958893996e-06 -1.25375624408e-06 -1.68483088292e-05 -6.92958893996e-06 1.38851119255e-06 -1.68475050719e-05 -6.92958893996e-06 4.03077862894e-06 -1.68467013148e-05 -6.92958893995e-06 6.67304606542e-06 -1.51416762326e-05 -6.53441723584e-06 8.77830755357e-06 -1.0657213059e-05 -5.2930232342e-06 8.98902066855e-06 -5.2047757902e-06 -3.42235984165e-06 6.67665305765e-06 -1.31627933624e-06 -1.52960803404e-06 3.19859042163e-06 0 -3.30746332159e-07 7.28201800041e-07 0 0 0 0 0 0 0 0 -1.31649420381e-06 -3.40582468208e-07 -8.25825366384e-07 -7.68988959375e-06 -2.09304307297e-06 -5.04324949747e-06 -1.81847738176e-05 -5.51599281409e-06 -1.2733375966e-05 -2.89449864505e-05 -9.37319885362e-06 -1.97966626227e-05 -3.67388562533e-05 -1.23595964211e-05 -2.27121397744e-05 -3.95562138696e-05 -1.36757738381e-05 -2.06536559137e-05 -3.95547263807e-05 -1.38591746399e-05 -1.53453320288e-05 -3.95532388917e-05 -1.38591746399e-05 -9.15979972063e-06 -3.95517514028e-05 -1.38591746399e-05 -2.97426741242e-06 -3.95502639139e-05 -1.38591746399e-05 3.21126489586e-06 -3.95487764248e-05 -1.38591746399e-05 9.39679720396e-06 -3.95472889359e-05 -1.38591746399e-05 1.55823295121e-05 -3.67278850879e-05 -1.31498595663e-05 2.08868663301e-05 -2.89345073001e-05 -1.1074701765e-05 2.29339250867e-05 -1.81774554767e-05 -8.0242571111e-06 1.99838203306e-05 -7.68686530281e-06 -4.70199163664e-06 1.28542015738e-05 -1.31626501178e-06 -1.86665501031e-06 5.08881569762e-06 0 -3.30746369554e-07 8.31802591009e-07 0 0 -3.17393730017e-07 -8.10057549099e-08 -2.23977937311e-07 -6.21495889844e-06 -1.40776053896e-06 -4.12416331998e-06 -1.97562941969e-05 -5.17902390418e-06 -1.47051386399e-05 -3.65589546267e-05 -1.05959048775e-05 -2.79056535862e-05 -5.19729850111e-05 -1.58574209595e-05 -3.73206326136e-05 -6.24609454306e-05 -1.94442526586e-05 -3.96406736892e-05 -6.61296387256e-05 -2.07329805458e-05 -3.48240011514e-05 -6.61281544766e-05 -2.07887538599e-05 -2.56540047518e-05 -6.61266702276e-05 -2.078875386e-05 -1.53447874629e-05 -6.61251859787e-05 -2.078875386e-05 -5.03557017404e-06 -6.61237017297e-05 -2.078875386e-05 5.27364711478e-06 -6.61222174806e-05 -2.078875386e-05 1.55828644036e-05 -6.61207332317e-05 -2.078875386e-05 2.58920816924e-05 -6.24495726239e-05 -1.98009315457e-05 3.50652626693e-05 -5.19609287999e-05 -1.70021348468e-05 3.99000286436e-05 -3.65489372993e-05 -1.294700956e-05 3.75893569986e-05 -1.97504653373e-05 -8.43697183236e-06 2.81331950395e-05 -6.21323582385e-06 -4.26701652144e-06 1.4834555306e-05 -3.17378789016e-07 -1.2700319402e-06 4.15780298273e-06 -8.04370411546e-08 2.25329300861e-07 -1.99839729508e-06 -4.36897013109e-07 -1.41084285026e-06 -1.39905193446e-05 -2.99174341826e-06 -1.01732970609e-05 -3.3708933316e-05 -8.52881710778e-06 -2.7168545733e-05 -5.56287848554e-05 -1.54449139231e-05 -4.4391682858e-05 -7.43725065383e-05 -2.14494435861e-05 -5.48821559969e-05 -8.62934581924e-05 -2.49644505501e-05 -5.57060447539e-05 -9.02288163654e-05 -2.5919050585e-05 -4.78151541625e-05 -9.02280190882e-05 -2.58615519454e-05 -3.50037290997e-05 -9.02272218109e-05 -2.58615519454e-05 -2.09748835163e-05 -9.02264245337e-05 -2.58615519454e-05 -6.94603793292e-06 -9.02256272564e-05 -2.58615519454e-05 7.0828076505e-06 -9.02248299792e-05 -2.58615519454e-05 2.11116532338e-05 -9.0224032702e-05 -2.58615519454e-05 3.51404988172e-05 -8.62868289314e-05 -2.48581359928e-05 4.79624290754e-05 -7.43643123508e-05 -2.17887630765e-05 5.59042701057e-05 -5.56208711871e-05 -1.70894326627e-05 5.51538921405e-05 -3.37034333788e-05 -1.17243879921e-05 4.4686707785e-05 -1.39881840992e-05 -6.60515781865e-06 2.73870018681e-05 -1.99811995286e-06 -2.5319515185e-06 1.02594428174e-05 -4.2083891366e-07 1.41998794362e-06 -4.75683497369e-06 -8.10764291621e-07 -3.35682011865e-06 -2.14702681101e-05 -4.35197644168e-06 -1.67793964284e-05 -4.57320720177e-05 -1.10479062828e-05 -3.83702398158e-05 -7.11290923779e-05 -1.87948837009e-05 -5.81339480197e-05 -9.14506480061e-05 -2.48771996941e-05 -6.86932268848e-05 -0.000102798601675 -2.75867532655e-05 -6.74240154389e-05 -0.000105693707109 -2.77538087951e-05 -5.65232799432e-05 -0.000105693601274 -2.771832336e-05 -4.10037908432e-05 -0.00010569349544 -2.771832336e-05 -2.45958205724e-05 -0.000105693389605 -2.77183233601e-05 -8.18785030163e-06 -0.000105693283771 -2.771832336e-05 8.2201199691e-06 -0.000105693177936 -2.77183233601e-05 2.46280902399e-05 -0.000105693072102 -2.77183233601e-05 4.10360605106e-05 -0.000102797084192 -2.73581660949e-05 5.65651660851e-05 -9.14477056174e-05 -2.47225190567e-05 6.75247948066e-05 -7.11256203675e-05 -1.97836151331e-05 6.89149313943e-05 -4.57293252759e-05 -1.39169975648e-05 5.84478296973e-05 -2.14688890287e-05 -8.23584932052e-06 3.86508249072e-05 -4.75654656258e-06 -3.53296305805e-06 1.69191432894e-05 -7.57094251237e-07 3.38000732454e-06 -6.73296480571e-06 -9.66037379389e-07 -4.74605773269e-06 -2.60582545851e-05 -4.88085699864e-06 -2.10193185135e-05 -5.28617366037e-05 -1.19748118672e-05 -4.50936384246e-05 -8.00712797401e-05 -1.99661369998e-05 -6.61563466379e-05 -0.000100607283815 -2.59363775347e-05 -7.63860984306e-05 -0.000109687429485 -2.78894093247e-05 -7.30964700303e-05 -0.000110541136517 -2.77183233601e-05 -5.97757070602e-05 -0.000110541136517 -4.28823374421e-05 -0.000110541136517 -2.57294024653e-05 -0.000110541136517 -8.57646748829e-06 -0.000110541136517 8.57646748851e-06 -0.000110541136516 2.57294024654e-05 -0.000110541136517 4.28823374422e-05 -0.000109687407446 -2.77183233601e-05 5.97780053226e-05 -0.000100607014561 -2.56904663587e-05 7.31392180886e-05 -8.00708774635e-05 -2.07139454264e-05 7.65633446135e-05 -5.28613877553e-05 -1.46820658674e-05 6.646749668e-05 -2.60580646823e-05 -8.81439877931e-06 4.54039483945e-05 -6.73291701194e-06 -3.90574282149e-06 2.11911944578e-05 -8.90754300852e-07 4.78028980611e-06 -7.31316693675e-06 -9.66037379353e-07 -5.15170074245e-06 -2.73602329858e-05 -4.88085699862e-06 -2.22316865207e-05 -5.49038411725e-05 -1.19748118673e-05 -4.70074107319e-05 -8.2630812935e-05 -1.99661369999e-05 -6.84513688577e-05 -0.000103044606049 -2.59363775348e-05 -7.85171551892e-05 -0.000110541136517 -2.78894093247e-05 -7.42988639143e-05 -2.77183233601e-05 -6.0035272419e-05 -0.000110541136517 -2.77183233601e-05 6.00352724191e-05 -0.000103044606049 -2.56904663587e-05 7.4329046455e-05 -8.26308129351e-05 -2.07139454264e-05 7.86817252236e-05 -5.49038411727e-05 -1.46820658675e-05 6.87613018133e-05 -2.73602329857e-05 -8.81439877934e-06 4.73257809255e-05 -7.31316693675e-06 -3.90574282147e-06 2.24125809525e-05 -8.90754300821e-07 5.18937205205e-06 -7.31316693675e-06 -9.66037379368e-07 -5.15170074236e-06 -2.73602329858e-05 -4.88085699865e-06 -2.22316865207e-05 -5.49038411725e-05 -1.19748118673e-05 -4.70074107319e-05 -8.2630812935e-05 -1.99661369998e-05 -6.84513688577e-05 -0.000103044606049 -2.59363775348e-05 -7.85171551891e-05 -0.000110541136517 -2.78894093247e-05 -7.42988639143e-05 -2.771832336e-05 -6.0035272419e-05 -0.000110541136517 -2.77183233601e-05 6.0035272419e-05 -0.000103044606049 -2.56904663587e-05 7.4329046455e-05 -8.26308129351e-05 -2.07139454264e-05 7.86817252236e-05 -5.49038411727e-05 -1.46820658674e-05 6.87613018133e-05 -2.73602329858e-05 -8.81439877934e-06 4.73257809256e-05 -7.31316693673e-06 -3.90574282149e-06 2.24125809525e-05 -8.90754300815e-07 5.18937205202e-06 -7.31316693675e-06 -9.66037379353e-07 -5.15170074243e-06 -2.73602329858e-05 -4.88085699862e-06 -2.22316865207e-05 -5.49038411725e-05 -1.19748118672e-05 -4.70074107319e-05 -8.2630812935e-05 -1.99661369999e-05 -6.84513688577e-05 -0.000103044606049 -2.59363775348e-05 -7.85171551891e-05 -0.000110541136517 -2.78894093247e-05 -7.42988639143e-05 -2.771832336e-05 -6.0035272419e-05 -0.000110541136517 -2.77183233601e-05 6.0035272419e-05 -0.000103044606049 -2.56904663587e-05 7.4329046455e-05 -8.26308129351e-05 -2.07139454264e-05 7.86817252236e-05 -5.49038411727e-05 -1.46820658675e-05 6.87613018134e-05 -2.73602329858e-05 -8.81439877931e-06 4.73257809256e-05 -7.31316693674e-06 -3.90574282147e-06 2.24125809525e-05 -8.90754300822e-07 5.189372052e-06 -7.31316693675e-06 -9.66037379409e-07 -5.15170074245e-06 -2.73602329858e-05 -4.88085699869e-06 -2.22316865207e-05 -5.49038411725e-05 -1.19748118673e-05 -4.70074107319e-05 -8.2630812935e-05 -1.99661369999e-05 -6.84513688577e-05 -0.000103044606049 -2.59363775348e-05 -7.85171551891e-05 -0.000110541136517 -2.78894093247e-05 -7.42988639142e-05 -2.77183233601e-05 -6.0035272419e-05 -0.000110541136517 -2.77183233601e-05 6.0035272419e-05 -0.000103044606049 -2.56904663587e-05 7.4329046455e-05 -8.2630812935e-05 -2.07139454265e-05 7.86817252236e-05 -5.49038411727e-05 -1.46820658675e-05 6.87613018133e-05 -2.73602329858e-05 -8.81439877937e-06 4.73257809255e-05 -7.31316693673e-06 -3.90574282152e-06 2.24125809525e-05 -8.90754300869e-07 5.18937205204e-06 -6.7545717677e-06 -8.10764291563e-07 -4.75619516774e-06 -2.62359071122e-05 -4.35197644164e-06 -2.11316855666e-05 -5.33876575734e-05 -1.10479062828e-05 -4.54782810107e-05 -8.10033429386e-05 -1.87948837009e-05 -6.68731193332e-05 -0.00010166821429 -2.4877199694e-05 -7.72342791576e-05 -0.00011008307702 -2.75867532655e-05 -7.36233613902e-05 -0.000110541136516 -2.77538087952e-05 -5.98904826942e-05 -0.000110541136517 -2.771832336e-05 -4.28823374421e-05 -0.000110541136517 -2.771832336e-05 -2.57294024653e-05 -0.000110541136517 -2.77183233601e-05 -8.57646748837e-06 -0.000110541136517 -2.77183233601e-05 8.57646748849e-06 -0.000110541136517 -2.771832336e-05 2.57294024653e-05 -0.000110541136517 -2.771832336e-05 4.28823374422e-05 -0.000110083045312 -2.73581660949e-05 5.98926034274e-05 -0.000101667913271 -2.47225190567e-05 7.36650888083e-05 -8.10029122652e-05 -1.97836151331e-05 7.7412387388e-05 -5.33872953291e-05 -1.39169975647e-05 6.71871714476e-05 -2.62357142109e-05 -8.23584932057e-06 4.57910922985e-05 -6.75452379295e-06 -3.53296305802e-06 2.13044318895e-05 -7.57094251186e-07 4.79049540229e-06 -4.79444075056e-06 -4.36897013091e-07 -3.37447027071e-06 -2.18669888534e-05 -2.99174341819e-06 -1.70185117694e-05 -4.70170052177e-05 -8.5288171078e-06 -3.92822884795e-05 -7.35712813326e-05 -1.54449139231e-05 -5.99575342657e-05 -9.46264122832e-05 -2.14494435861e-05 -7.10671062462e-05 -0.000105662883863 -2.49644505501e-05 -6.95420591853e-05 -0.000107892674261 -2.5919050585e-05 -5.79104892063e-05 -0.000107892560365 -2.58615519454e-05 -4.1856558614e-05 -0.000107892446468 -2.58615519455e-05 -2.51076891113e-05 -0.000107892332571 -2.58615519455e-05 -8.35881960852e-06 -0.000107892218675 -2.58615519455e-05 8.3900498943e-06 -0.000107892104778 -2.58615519454e-05 2.5138919397e-05 -0.000107891990882 -2.58615519454e-05 4.18877888996e-05 -0.000105661270421 -2.48581359928e-05 5.79512199942e-05 -9.46233162874e-05 -2.17887630765e-05 6.96427273452e-05 -7.35676670365e-05 -1.70894326627e-05 7.1293950892e-05 -4.7014181388e-05 -1.17243879921e-05 6.02801293993e-05 -2.18655881848e-05 -6.60515781866e-06 3.95691612813e-05 -4.79415066281e-06 -2.53195151843e-06 1.71601323087e-05 -4.20838913603e-07 3.3977699545e-06 -2.01388672873e-06 -8.10057549301e-08 -1.41811647247e-06 -1.43280124082e-05 -1.40776053893e-06 -1.03553782512e-05 -3.50579604375e-05 -5.17902390418e-06 -2.80653974842e-05 -5.85393675603e-05 -1.05959048775e-05 -4.64568903655e-05 -7.87327305119e-05 -1.58574209595e-05 -5.7930575635e-05 -9.13872289358e-05 -1.94442526586e-05 -5.89843315926e-05 -9.54513850931e-05 -2.07329805457e-05 -5.061148496e-05 -9.5450542276e-05 -2.07887538599e-05 -3.70292703006e-05 -9.5449699459e-05 -2.07887538599e-05 -2.21895248083e-05 -9.5448856642e-05 -2.07887538599e-05 -7.349779316e-06 -9.5448013825e-05 -2.07887538599e-05 7.48996617634e-06 -9.5447171008e-05 -2.07887538599e-05 2.23297116686e-05 -9.54463281909e-05 -2.07887538599e-05 3.71694571609e-05 -9.13802273098e-05 -1.98009315457e-05 5.07629529128e-05 -7.87241102239e-05 -1.70021348468e-05 5.91900933989e-05 -5.85311112812e-05 -1.294700956e-05 5.8214577086e-05 -3.50522897423e-05 -8.43697183236e-06 4.67643257659e-05 -1.43256359234e-05 -4.26701652137e-06 2.82906066008e-05 -2.01360787635e-06 -1.27003194019e-06 1.04429592071e-05 -8.04370411864e-08 1.42730436414e-06 -3.17962453129e-07 0 -2.24245142381e-07 -6.34341681418e-06 -3.40582468221e-07 -4.18186091967e-06 -2.0570381723e-05 -2.09304307301e-06 -1.51836415815e-05 -3.87181056835e-05 -5.51599281414e-06 -2.93234097773e-05 -5.56938367594e-05 -9.37319885362e-06 -3.97654988936e-05 -6.73391732903e-05 -1.23595964211e-05 -4.26072292606e-05 -7.14139857297e-05 -1.36757738382e-05 -3.75739223103e-05 -7.14124095235e-05 -1.38591746401e-05 -2.77038919261e-05 -7.14108333173e-05 -1.38591746401e-05 -1.6571961432e-05 -7.14092571111e-05 -1.38591746401e-05 -5.44003093803e-06 -7.14076809049e-05 -1.38591746401e-05 5.69189955601e-06 -7.14061046987e-05 -1.38591746401e-05 1.682383005e-05 -7.14045284925e-05 -1.38591746401e-05 2.79557605441e-05 -6.73271170366e-05 -1.31498595664e-05 3.7829334338e-05 -5.56811289137e-05 -1.10747017651e-05 4.28820917719e-05 -3.87076523327e-05 -8.02425711106e-06 4.00494413221e-05 -2.05643801661e-05 -4.70199163666e-06 2.95614654172e-05 -6.34166866243e-06 -1.86665501036e-06 1.53169621612e-05 -3.17947493423e-07 -3.30746369509e-07 4.21593639576e-06 0 2.25597957827e-07 0 0 0 -1.32633090064e-06 0 -8.29930115112e-07 -7.91630886051e-06 -3.40582430813e-07 -5.14853749708e-06 -1.90969109093e-05 -1.65805341128e-06 -1.3255082466e-05 -3.08688939871e-05 -3.75983228565e-06 -2.09588807876e-05 -3.95512144826e-05 -5.68973318391e-06 -2.43369693722e-05 -4.27168833894e-05 -6.71206826366e-06 -2.22682788452e-05 -4.27153104232e-05 -6.92958893991e-06 -1.65717079621e-05 -4.27137374569e-05 -6.92958893989e-06 -9.89254757649e-06 -4.27121644907e-05 -6.92958893994e-06 -3.21338719092e-06 -4.27105915246e-05 -6.92958893992e-06 3.46577319477e-06 -4.27090185583e-05 -6.92958893992e-06 1.01449335803e-05 -4.27074455921e-05 -6.92958893992e-06 1.68240939658e-05 -3.95396407832e-05 -6.53441723587e-06 2.2516456382e-05 -3.08579183418e-05 -5.2930232342e-06 2.45722184303e-05 -1.90893331504e-05 -3.42235984162e-06 2.11557362435e-05 -7.91322216138e-06 -1.5296080341e-06 1.33804084984e-05 -1.32610051224e-06 -3.307463322e-07 5.19498653557e-06 0 0 8.35934157977e-07 0 0 0 0 0 0 0 0 -1.32631650137e-06 0 -7.25811919669e-07 -5.34462500153e-06 -8.10057533904e-08 -3.22632689044e-06 -1.11216262558e-05 -5.17333199427e-07 -6.83855958766e-06 -1.5966439305e-05 -1.23159496547e-06 -9.31233226308e-06 -1.78267357747e-05 -1.72311749454e-06 -9.13296819587e-06 -1.78258994377e-05 -1.85677789465e-06 -6.91680107598e-06 -1.78250631006e-05 -1.85677789465e-06 -4.12180443526e-06 -1.78242267635e-05 -1.85677789466e-06 -1.32680779448e-06 -1.78233904265e-05 -1.85677789465e-06 1.46818884629e-06 -1.78225540893e-05 -1.85677789466e-06 4.26318548699e-06 -1.78217177523e-05 -1.85677789466e-06 7.05818212766e-06 -1.59605828174e-05 -1.70151062305e-06 9.26826725048e-06 -1.1116936346e-05 -1.19399002691e-06 9.42649600855e-06 -5.34248499657e-06 -5.01844520859e-07 6.91356617112e-06 -1.32611491152e-06 -8.04370396316e-08 3.25818386258e-06 0 0 7.31818597366e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3.17959959841e-07 0 -1.49271004831e-07 -1.69647877403e-06 0 -8.11490284996e-07 -3.11430901669e-06 0 -1.63437380721e-06 -3.69455385056e-06 0 -1.83462238645e-06 -3.69444319394e-06 0 -1.43507254485e-06 -3.69433253732e-06 0 -8.54650686861e-07 -3.69422188074e-06 0 -2.74228828898e-07 -3.69411122415e-06 0 3.06193029094e-07 -3.69400056754e-06 0 8.86614887012e-07 -3.69388991091e-06 0 1.46703674496e-06 -3.11367853392e-06 0 1.86405874989e-06 -1.69624354571e-06 0 1.65539464363e-06 -3.17949986723e-07 0 8.20447312665e-07 0 0 1.5062428594e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3.02192354764e-07 -7.23193868946e-08 -1.17301360254e-07 -1.70525500931e-06 -4.86451599719e-07 -7.08944670963e-07 -3.14607108696e-06 -1.17833808327e-06 -1.47420297964e-06 -3.73141953203e-06 -1.65786547691e-06 -1.6683366638e-06 -3.73131593498e-06 -1.78891555857e-06 -1.30700596817e-06 -3.73121233816e-06 -1.78972388755e-06 -7.7834522001e-07 -3.73110874155e-06 -1.79053221652e-06 -2.49684471769e-07 -3.73100514504e-06 -1.79134054549e-06 2.78976276384e-07 -3.73090154879e-06 -1.79214887446e-06 8.07637024542e-07 -3.73079795269e-06 -1.79295720344e-06 1.33629777273e-06 -3.14548160363e-06 -1.64099751644e-06 1.69526876628e-06 -1.70503699957e-06 -1.14439441344e-06 1.49328535487e-06 -3.02183481725e-07 -4.72575503211e-07 7.16825923158e-07 0 -7.19021598075e-08 1.18361704927e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.32740482573e-06 -3.21204841169e-07 -6.4166405068e-07 -5.36730197738e-06 -1.59670843633e-06 -2.91415735829e-06 -1.10819337034e-05 -3.65752622392e-06 -6.20296648625e-06 -1.5803396396e-05 -5.55566902931e-06 -8.42539685465e-06 -1.76002120088e-05 -6.55988915856e-06 -8.243661467e-06 -1.7599410364e-05 -6.77553529173e-06 -6.23871827474e-06 -1.75986086379e-05 -6.78196280567e-06 -3.71704562192e-06 -1.75978068304e-05 -6.7883903196e-06 -1.19537296907e-06 -1.75970049416e-05 -6.79481783354e-06 1.32629968385e-06 -1.75962029713e-05 -6.80124534748e-06 3.84797233661e-06 -1.75954009198e-05 -6.80767286142e-06 6.36964498946e-06 -1.57977791326e-05 -6.41759917148e-06 8.3689609813e-06 -1.1077435166e-05 -5.18560801327e-06 8.53117288064e-06 -5.36526319757e-06 -3.33616070614e-06 6.27236386092e-06 -1.32721893242e-06 -1.47539127848e-06 2.94333275769e-06 0 -3.12599890094e-07 6.46962362473e-07 0 0 0 0 0 0 0 0 -1.32741810395e-06 -3.21150540156e-07 -7.33710186328e-07 -7.95348651336e-06 -2.02382378149e-06 -4.68005982262e-06 -1.89979720275e-05 -5.38909376798e-06 -1.20773062469e-05 -3.03688916081e-05 -9.19467331305e-06 -1.89949473619e-05 -3.86208937959e-05 -1.21396869834e-05 -2.19167895754e-05 -4.16064235416e-05 -1.34288783155e-05 -1.99795573943e-05 -4.16048897437e-05 -1.3612370892e-05 -1.48532598127e-05 -4.16033557105e-05 -1.36311079692e-05 -8.86474371311e-06 -4.16018214418e-05 -1.36498450463e-05 -2.87622761338e-06 -4.16002869378e-05 -1.36685821235e-05 3.11228848632e-06 -4.15987521982e-05 -1.36873192006e-05 9.1008045859e-06 -4.15972172234e-05 -1.37060562778e-05 1.50893206855e-05 -3.86096012978e-05 -1.30033092008e-05 2.02116070419e-05 -3.03581755882e-05 -1.09280667389e-05 2.21367484685e-05 -1.89905739358e-05 -7.89176816683e-06 1.91791877821e-05 -7.95049252078e-06 -4.60024650577e-06 1.2194556841e-05 -1.32720565447e-06 -1.80765544363e-06 4.72298860943e-06 0 -3.12654256121e-07 7.39006413787e-07 0 0 -3.02194573021e-07 -7.23023667478e-08 -1.76217324942e-07 -6.40115897573e-06 -1.35635865113e-06 -3.79484066992e-06 -2.0648983278e-05 -5.05892090048e-06 -1.39443965059e-05 -3.84198858958e-05 -1.04103080065e-05 -2.68490552995e-05 -5.47640244034e-05 -1.56161710144e-05 -3.61689971044e-05 -6.59049261716e-05 -1.9159758525e-05 -3.85678100887e-05 -6.98065302754e-05 -2.04162770373e-05 -3.39438658404e-05 -6.9804910098e-05 -2.04745933274e-05 -2.50169877631e-05 -6.98032897063e-05 -2.05073386654e-05 -1.49614697654e-05 -6.98016691003e-05 -2.05400840033e-05 -4.90595176758e-06 -6.98000482801e-05 -2.05728293413e-05 5.14956623022e-06 -6.97984272455e-05 -2.06055746793e-05 1.5205084228e-05 -6.97968059967e-05 -2.06383200173e-05 2.52606022257e-05 -6.58925575208e-05 -1.96552842275e-05 3.41902721816e-05 -5.47510523373e-05 -1.68391074657e-05 3.88311240597e-05 -3.84092759575e-05 -1.27840509813e-05 3.64391274305e-05 -2.06429413099e-05 -8.29789903158e-06 2.70748760809e-05 -6.39943454486e-06 -4.1711508932e-06 1.4070275584e-05 -3.02181263406e-07 -1.22617228319e-06 3.82616169724e-06 -7.19191824447e-08 1.77277381102e-07 -2.00795782914e-06 -4.14423704432e-07 -1.24453465704e-06 -1.45627200215e-05 -2.90711080687e-06 -9.54929974594e-06 -3.53931423309e-05 -8.36895106026e-06 -2.60566476653e-05 -5.8631515071e-05 -1.52196183557e-05 -4.30128216244e-05 -7.85607038177e-05 -2.11795825875e-05 -5.34823636533e-05 -9.1285340615e-05 -2.46770410452e-05 -5.44836832507e-05 -9.55047822748e-05 -2.56178504458e-05 -4.68634543725e-05 -9.55037771778e-05 -2.55652928643e-05 -3.43287344904e-05 -9.55027720094e-05 -2.56014750717e-05 -2.05676384235e-05 -9.55017667696e-05 -2.56376572791e-05 -6.80654235677e-06 -9.55007614584e-05 -2.56738394865e-05 6.95455371011e-06 -9.54997560759e-05 -2.57100216939e-05 2.07156497769e-05 -9.54987506219e-05 -2.57462039013e-05 3.44767458437e-05 -9.12771007962e-05 -2.47336770644e-05 4.70217582768e-05 -7.85508168523e-05 -2.16232942275e-05 5.46923775515e-05 -5.86222740555e-05 -1.69088857866e-05 5.37617385094e-05 -3.53869481299e-05 -1.15593115745e-05 4.33104455004e-05 -1.45602074417e-05 -6.48160147039e-06 2.62729343503e-05 -2.00768338433e-06 -2.46320212227e-06 9.63193034105e-06 -4.00381796239e-07 1.25259722555e-06 -4.86657514696e-06 -7.78629386103e-07 -3.0724664067e-06 -2.24465358192e-05 -4.24553019872e-06 -1.59060514715e-05 -4.81214397152e-05 -1.08643954019e-05 -3.70018440953e-05 -7.50901113658e-05 -1.85523597281e-05 -5.65392018688e-05 -9.67760881556e-05 -2.46193202386e-05 -6.71797727419e-05 -0.000109059775099 -2.74040084405e-05 -6.62570685497e-05 -0.000112341649502 -2.76836566793e-05 -5.57809642345e-05 -0.000112341401428 -2.76613029292e-05 -4.054918461e-05 -0.000112341153038 -2.76686376725e-05 -2.43213363075e-05 -0.000112340904334 -2.76759724159e-05 -8.09348800513e-06 -0.000112340655314 -2.76833071592e-05 8.13436029732e-06 -0.000112340405979 -2.76906419025e-05 2.43622085998e-05 -0.000112340156329 -2.76979766458e-05 4.05900569022e-05 -0.000109056715035 -2.72524795355e-05 5.58328312877e-05 -9.6771017707e-05 -2.4548165077e-05 6.63714035532e-05 -7.50846810764e-05 -1.95916802944e-05 6.74143585254e-05 -4.81174852585e-05 -1.37362695021e-05 5.68602833768e-05 -2.24447263361e-05 -8.09508113279e-06 3.72826282079e-05 -4.86624265805e-06 -3.44852477966e-06 1.60421878226e-05 -7.2930297014e-07 3.09370498464e-06 -6.93000433879e-06 -9.30465801418e-07 -4.39754593298e-06 -2.72884468135e-05 -4.76690510614e-06 -2.00084101508e-05 -5.56732634485e-05 -1.17837579332e-05 -4.35828256114e-05 -8.45975179039e-05 -1.97203254921e-05 -6.44513863878e-05 -0.000106604909277 -2.56957787362e-05 -7.48640813746e-05 -0.00011679761645 -2.78410660448e-05 -7.21735097436e-05 -0.000118052899022 -2.77109692778e-05 -5.94742545632e-05 -0.000118052878887 -2.771832336e-05 -4.28035284473e-05 -0.000118052858838 -2.771832336e-05 -2.56818558485e-05 -0.000118052838875 -2.771832336e-05 -8.56018324967e-06 -0.000118052818998 -2.771832336e-05 8.56148934913e-06 -0.000118052799207 -2.77183233601e-05 2.56831619479e-05 -0.000118052779502 -2.771832336e-05 4.28048345467e-05 -0.000116796840705 -2.7686993037e-05 5.94799106812e-05 -0.000106602493842 -2.54940880078e-05 7.22282417047e-05 -8.45948410646e-05 -2.05164807448e-05 7.50568354705e-05 -5.56713891418e-05 -1.44959286116e-05 6.47726157169e-05 -2.72876456473e-05 -8.66776300164e-06 4.38950522512e-05 -6.92986397223e-06 -3.81593596355e-06 2.0176946033e-05 -8.60481734231e-07 4.42932955772e-06 -7.53710751068e-06 -9.30465801412e-07 -4.78619922193e-06 -2.86623996546e-05 -4.76690510611e-06 -2.11828466971e-05 -5.78355273158e-05 -1.17837579332e-05 -4.54553630103e-05 -8.73204893148e-05 -1.97203254921e-05 -6.67155636194e-05 -0.000109243296891 -2.56957787362e-05 -7.70089811009e-05 -0.000117992556142 -2.78410660448e-05 -7.35607727381e-05 -0.000118164663173 -2.77109692778e-05 -5.99389817102e-05 -0.000118164663173 -2.771832336e-05 -4.28823374422e-05 -0.000118164663173 -2.771832336e-05 -2.57294024653e-05 -0.000118164663173 -2.771832336e-05 -8.57646748834e-06 -0.000118164663173 -2.771832336e-05 8.57646748847e-06 -0.000118164663173 -2.77183233601e-05 2.57294024654e-05 -0.000118164663173 -2.771832336e-05 4.28823374421e-05 -0.000117992236639 -2.7686993037e-05 5.99399894068e-05 -0.000109241196493 -2.54940880079e-05 7.36014182835e-05 -8.73181452152e-05 -2.05164807448e-05 7.71897790745e-05 -5.7833921485e-05 -1.44959286116e-05 6.70364376954e-05 -2.86617406123e-05 -8.66776300166e-06 4.57761700734e-05 -7.53700123831e-06 -3.81593596354e-06 2.1360509931e-05 -8.60481734211e-07 4.82128918529e-06 -7.53710751068e-06 -9.30465801408e-07 -4.78619922187e-06 -2.86623996546e-05 -4.76690510614e-06 -2.1182846697e-05 -5.78355273158e-05 -1.17837579332e-05 -4.54553630102e-05 -8.73204893148e-05 -1.97203254921e-05 -6.67155636194e-05 -0.000109243296891 -2.56957787362e-05 -7.70089811008e-05 -0.000117992556142 -2.78410660448e-05 -7.35607727381e-05 -0.000118164663173 -2.77109692779e-05 -5.99389817101e-05 -0.000118164663173 -2.771832336e-05 -4.28823374422e-05 -0.000118164663173 -2.77183233601e-05 -2.57294024653e-05 -0.000118164663173 -2.771832336e-05 -8.5764674884e-06 -0.000118164663173 -2.77183233601e-05 8.57646748849e-06 -0.000118164663173 -2.77183233601e-05 2.57294024653e-05 -0.000118164663173 -2.77183233601e-05 4.28823374421e-05 -0.000117992236639 -2.7686993037e-05 5.99399894068e-05 -0.000109241196493 -2.54940880078e-05 7.36014182835e-05 -8.73181452152e-05 -2.05164807448e-05 7.71897790745e-05 -5.7833921485e-05 -1.44959286116e-05 6.70364376954e-05 -2.86617406123e-05 -8.66776300166e-06 4.57761700734e-05 -7.53700123829e-06 -3.81593596353e-06 2.1360509931e-05 -8.60481734242e-07 4.82128918539e-06 -7.53710751068e-06 -9.3046580143e-07 -4.78619922189e-06 -2.86623996546e-05 -4.76690510615e-06 -2.1182846697e-05 -5.78355273158e-05 -1.17837579333e-05 -4.54553630103e-05 -8.73204893148e-05 -1.97203254921e-05 -6.67155636194e-05 -0.000109243296891 -2.56957787362e-05 -7.70089811009e-05 -0.000117992556142 -2.78410660448e-05 -7.35607727382e-05 -0.000118164663173 -2.77109692778e-05 -5.99389817102e-05 -0.000118164663173 -2.771832336e-05 -4.28823374421e-05 -0.000118164663173 -2.771832336e-05 -2.57294024653e-05 -0.000118164663173 -2.77183233601e-05 -8.57646748839e-06 -0.000118164663173 -2.771832336e-05 8.57646748849e-06 -0.000118164663173 -2.77183233601e-05 2.57294024653e-05 -0.000118164663173 -2.771832336e-05 4.28823374421e-05 -0.000117992236639 -2.7686993037e-05 5.99399894069e-05 -0.000109241196493 -2.54940880078e-05 7.36014182835e-05 -8.73181452152e-05 -2.05164807448e-05 7.71897790745e-05 -5.7833921485e-05 -1.44959286116e-05 6.70364376954e-05 -2.86617406123e-05 -8.66776300168e-06 4.57761700734e-05 -7.53700123831e-06 -3.81593596355e-06 2.1360509931e-05 -8.60481734227e-07 4.82128918535e-06 -7.53710751068e-06 -9.30465801447e-07 -4.7861992219e-06 -2.86623996546e-05 -4.76690510617e-06 -2.11828466971e-05 -5.78355273158e-05 -1.17837579333e-05 -4.54553630103e-05 -8.73204893148e-05 -1.97203254921e-05 -6.67155636194e-05 -0.000109243296891 -2.56957787362e-05 -7.70089811008e-05 -0.000117992556142 -2.78410660448e-05 -7.35607727382e-05 -0.000118164663173 -2.77109692778e-05 -5.99389817102e-05 -0.000118164663173 -2.77183233601e-05 -4.28823374422e-05 -0.000118164663173 -2.77183233601e-05 -2.57294024653e-05 -0.000118164663173 -2.771832336e-05 -8.57646748841e-06 -0.000118164663173 -2.77183233601e-05 8.5764674885e-06 -0.000118164663173 -2.77183233601e-05 2.57294024653e-05 -0.000118164663173 -2.771832336e-05 4.28823374421e-05 -0.000117992236639 -2.7686993037e-05 5.99399894068e-05 -0.000109241196493 -2.54940880079e-05 7.36014182835e-05 -8.73181452152e-05 -2.05164807448e-05 7.71897790745e-05 -5.7833921485e-05 -1.44959286117e-05 6.70364376954e-05 -2.86617406123e-05 -8.66776300169e-06 4.57761700734e-05 -7.53700123831e-06 -3.81593596356e-06 2.1360509931e-05 -8.60481734257e-07 4.82128918532e-06 -6.95178766316e-06 -7.78629386089e-07 -4.40655356031e-06 -2.74723407116e-05 -4.24553019869e-06 -2.01125962793e-05 -5.62230602745e-05 -1.0864395402e-05 -4.39481703496e-05 -8.55800971696e-05 -1.85523597281e-05 -6.51435861237e-05 -0.000107746048343 -2.46193202386e-05 -7.57052429793e-05 -0.000117348654006 -2.74040084404e-05 -7.27815255588e-05 -0.000118104279272 -2.76836566794e-05 -5.96815706778e-05 -0.000118104259057 -2.76613029292e-05 -4.28402372909e-05 -0.000118104238928 -2.76686376726e-05 -2.57038952054e-05 -0.000118104218885 -2.76759724159e-05 -8.56755311994e-06 -0.000118104198928 -2.76833071592e-05 8.56878896541e-06 -0.000118104179057 -2.76906419025e-05 2.57051310509e-05 -0.000118104159272 -2.76979766459e-05 4.28414731363e-05 -0.000117347871535 -2.72524795355e-05 5.96868877992e-05 -0.000107743602371 -2.4548165077e-05 7.28354076746e-05 -8.55773904814e-05 -1.95916802944e-05 7.58991093775e-05 -5.62211710522e-05 -1.37362695021e-05 6.54678182282e-05 -2.74715359309e-05 -8.09508113285e-06 4.42628748803e-05 -6.95164704276e-06 -3.44852477966e-06 2.02819632229e-05 -7.29302970099e-07 4.43839781452e-06 -4.90412736782e-06 -4.14423704426e-07 -3.08784591273e-06 -2.28560439111e-05 -2.90711080688e-06 -1.61262549098e-05 -4.94621576844e-05 -8.36895106027e-06 -3.78645180027e-05 -7.76573089701e-05 -1.52196183557e-05 -5.82919036912e-05 -0.000100151557976 -2.11795825875e-05 -6.95020324193e-05 -0.000112202620273 -2.46770410452e-05 -6.84094505281e-05 -0.000114894387976 -2.56178504458e-05 -5.73050938417e-05 -0.000114894132623 -2.55652928643e-05 -4.15461676685e-05 -0.000114893876929 -2.56014750717e-05 -2.4919725232e-05 -0.000114893620895 -2.56376572791e-05 -8.29328279555e-06 -0.000114893364518 -2.56738394866e-05 8.33315964091e-06 -0.000114893107801 -2.57100216939e-05 2.49596020774e-05 -0.000114892850743 -2.57462039014e-05 4.15860445138e-05 -0.000112199468425 -2.47336770644e-05 5.73560211411e-05 -0.000100146332409 -2.16232942276e-05 6.85243002139e-05 -7.76517322068e-05 -1.69088857867e-05 6.97423056722e-05 -4.94581232491e-05 -1.15593115746e-05 5.86218536755e-05 -2.28542120116e-05 -6.48160147041e-06 3.81514821389e-05 -4.90379317699e-06 -2.46320212227e-06 1.62641637407e-05 -4.00381796241e-07 3.10918246317e-06 -2.02295066952e-06 -7.2302366785e-08 -1.25047587637e-06 -1.49086238373e-05 -1.35635865114e-06 -9.71418799115e-06 -3.67950706437e-05 -5.05892090046e-06 -2.68970465463e-05 -6.16778796559e-05 -1.04103080065e-05 -4.49814774174e-05 -8.31518779426e-05 -1.56161710145e-05 -5.64244004282e-05 -9.6684767862e-05 -1.9159758525e-05 -5.76864275609e-05 -0.000101062710069 -2.04162770373e-05 -4.96240138344e-05 -0.00010106165897 -2.04745933274e-05 -3.6336712763e-05 -0.00010106060779 -2.05073386654e-05 -2.17715905354e-05 -0.00010105955653 -2.05400840033e-05 -7.20646830777e-06 -0.000101058505189 -2.05728293413e-05 7.35865391983e-06 -0.000101057453768 -2.06055746793e-05 2.19237761475e-05 -0.000101056402266 -2.06383200173e-05 3.64888983751e-05 -9.66761515504e-05 -1.96552842276e-05 4.97872635251e-05 -8.31415603072e-05 -1.68391074657e-05 5.79033594533e-05 -6.16682932399e-05 -1.27840509813e-05 5.67164081053e-05 -3.67887052876e-05 -8.29789903156e-06 4.52914581955e-05 -1.49060704797e-05 -4.17115089319e-06 2.71198705002e-05 -2.02267481963e-06 -1.22617228316e-06 9.7981463915e-06 -7.19191824684e-08 1.25857334761e-06 -3.02679893267e-07 0 -1.7638267976e-07 -6.53053186401e-06 -3.21150540122e-07 -3.84535017147e-06 -2.1488494968e-05 -2.02382378151e-06 -1.43844813361e-05 -4.06666354382e-05 -5.389093768e-06 -2.81834105182e-05 -5.86553552637e-05 -9.1946733131e-06 -3.84987865864e-05 -7.10228610454e-05 -1.21396869834e-05 -4.14168693666e-05 -7.53572276582e-05 -1.34288783155e-05 -3.65962737129e-05 -7.53555152096e-05 -1.36123708921e-05 -2.69966487427e-05 -7.53538026201e-05 -1.36311079693e-05 -1.61464339881e-05 -7.53520898896e-05 -1.36498450464e-05 -5.29621923337e-06 -7.53503770183e-05 -1.36685821236e-05 5.55399552134e-06 -7.5348664006e-05 -1.36873192008e-05 1.6404210276e-05 -7.53469508527e-05 -1.37060562779e-05 2.72544250308e-05 -7.10098088028e-05 -1.30033092008e-05 3.6857147156e-05 -5.86417336494e-05 -1.09280667389e-05 4.16958390212e-05 -4.06555933938e-05 -7.89176816686e-06 3.87840103038e-05 -2.14822836209e-05 -4.60024650579e-06 2.84194520711e-05 -6.52878347941e-06 -1.80765544365e-06 1.4514044469e-05 -3.02666568586e-07 -3.12654256114e-07 3.87705681238e-06 0 1.77443631454e-07 0 0 0 -1.33678424502e-06 0 -7.36948461079e-07 -8.18283288785e-06 -3.21204841172e-07 -4.77299557946e-06 -1.99375428815e-05 -1.5967084364e-06 -1.25566078509e-05 -3.23647188528e-05 -3.65752622394e-06 -2.00829307364e-05 -4.15481663954e-05 -5.5556690293e-06 -2.34521791836e-05 -4.48996418559e-05 -6.55988915854e-06 -2.15117251175e-05 -4.48980235206e-05 -6.77553529167e-06 -1.60182431053e-05 -4.48964050209e-05 -6.78196280564e-06 -9.56071798379e-06 -4.48947863567e-05 -6.78839031955e-06 -3.10319286219e-06 -4.48931675281e-05 -6.7948178335e-06 3.35433225945e-06 -4.4891548535e-05 -6.80124534745e-06 9.81185738091e-06 -4.48899293773e-05 -6.80767286142e-06 1.62693825024e-05 -4.15362800257e-05 -6.41759917143e-06 2.17584139423e-05 -3.23535155374e-05 -5.18560801327e-06 2.36852325565e-05 -1.99298923563e-05 -3.33616070612e-06 2.02764927818e-05 -8.17977937744e-06 -1.47539127852e-06 1.26780910497e-05 -1.33657075528e-06 -3.12599890118e-07 4.81671631286e-06 0 0 7.42265781165e-07 0 0 0 0 0 0 0 0 -1.33677090171e-06 0 -6.4449622271e-07 -5.50557929672e-06 -7.23193868952e-08 -2.96525166115e-06 -1.15512270025e-05 -4.86451599664e-07 -6.41425988918e-06 -1.66447861825e-05 -1.17833808321e-06 -8.82254366589e-06 -1.86037574874e-05 -1.65786547697e-06 -8.69094331831e-06 -1.86029242571e-05 -1.78891555859e-06 -6.58932187239e-06 -1.86020909631e-05 -1.78972388763e-06 -3.92615836766e-06 -1.86012576054e-05 -1.79053221662e-06 -1.26299486279e-06 -1.86004241841e-05 -1.79134054553e-06 1.40016864203e-06 -1.8599590699e-05 -1.79214887448e-06 4.06333214688e-06 -1.85987571504e-05 -1.79295720346e-06 6.72649565164e-06 -1.66389626026e-05 -1.64099751654e-06 8.82205058267e-06 -1.15465970172e-05 -1.14439441335e-06 8.93266405056e-06 -5.50350422407e-06 -4.72575503185e-07 6.48577501464e-06 -1.33658409814e-06 -7.19021597933e-08 2.99489993853e-06 0 0 6.49815627205e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3.02677672488e-07 0 -1.17411447496e-07 -1.72073608296e-06 0 -7.13052607925e-07 -3.19911732821e-06 0 -1.49282007609e-06 -3.80625787597e-06 0 -1.69788740261e-06 -3.80615283865e-06 0 -1.33225029284e-06 -3.80604780196e-06 0 -7.93392547204e-07 -3.80594276583e-06 0 -2.54534801657e-07 -3.80583773021e-06 0 2.84322943985e-07 -3.8057326952e-06 0 8.23180689514e-07 -3.80562766074e-06 0 1.36203843511e-06 -3.19852095838e-06 0 1.7252415966e-06 -1.72051670075e-06 0 1.51212066077e-06 -3.02668789395e-07 0 7.20975659678e-07 0 0 1.18472687782e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.9452299665e-07 -4.40423514847e-08 -4.52307513955e-08 -1.46169117057e-06 -3.76895197842e-07 -4.62017199341e-07 -2.84862911396e-06 -9.8158264594e-07 -1.10031141375e-06 -3.42132235433e-06 -1.41680417892e-06 -1.30491991814e-06 -3.42123834665e-06 -1.53850233424e-06 -1.03367560911e-06 -3.42115433852e-06 -1.54042503838e-06 -6.15591148543e-07 -3.42107032986e-06 -1.54234774252e-06 -1.97506687993e-07 -3.42098632071e-06 -1.54427044666e-06 2.20577772545e-07 -3.42090231108e-06 -1.5461931508e-06 6.3866223315e-07 -3.4208183009e-06 -1.54811585493e-06 1.05674669379e-06 -2.84815683171e-06 -1.41015007206e-06 1.32593577537e-06 -1.4615240159e-06 -9.59550748683e-07 1.11458806444e-06 -1.94516635073e-07 -3.68568972672e-07 4.6718834082e-07 0 -4.39348701031e-08 4.56353052338e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.10670224071e-06 -2.51193236899e-07 -4.29981210824e-07 -4.93251328069e-06 -1.36456563795e-06 -2.23683632265e-06 -1.05211526579e-05 -3.26092632927e-06 -5.09941570559e-06 -1.52332632747e-05 -5.04336251234e-06 -7.14974411494e-06 -1.70391190032e-05 -6.00016167173e-06 -7.09645040108e-06 -1.70383480727e-05 -6.21560549267e-06 -5.39026661901e-06 -1.70375769259e-05 -6.23257411967e-06 -3.2109005558e-06 -1.70368055629e-05 -6.24954274667e-06 -1.03153449268e-06 -1.70360339836e-05 -6.26651137365e-06 1.14783157048e-06 -1.7035262188e-05 -6.28348000065e-06 3.3271976337e-06 -1.70344901761e-05 -6.30044862765e-06 5.50656369692e-06 -1.52278971127e-05 -5.93793744365e-06 7.20729208973e-06 -1.05169625402e-05 -4.76790819899e-06 7.24174607222e-06 -4.9307391637e-06 -3.01276880789e-06 5.15744068941e-06 -1.10656212783e-06 -1.27569363011e-06 2.25942502873e-06 0 -2.46569207083e-07 4.33453913918e-07 0 0 0 0 0 0 0 0 -1.10671224786e-06 -2.51081234866e-07 -4.91655784818e-07 -7.39847760208e-06 -1.75679155706e-06 -3.68973490983e-06 -1.84112556151e-05 -4.87533186789e-06 -1.02360957082e-05 -2.99520575997e-05 -8.47224822755e-06 -1.67046869847e-05 -3.83959748476e-05 -1.12896783879e-05 -1.96257858759e-05 -4.14619905444e-05 -1.25432598552e-05 -1.80307367356e-05 -4.1460374753e-05 -1.27475684603e-05 -1.34302053998e-05 -4.14587582733e-05 -1.27990312994e-05 -8.01295994544e-06 -4.1457141105e-05 -1.28504941386e-05 -2.59571449107e-06 -4.14555232485e-05 -1.29019569777e-05 2.82153096323e-06 -4.14539047035e-05 -1.29534198168e-05 8.2387764176e-06 -4.14522854701e-05 -1.30048826559e-05 1.36560218719e-05 -3.83841359199e-05 -1.23493789844e-05 1.82519746393e-05 -2.99410109885e-05 -1.03475045814e-05 1.98327193747e-05 -1.84038677195e-05 -7.40666155034e-06 1.68733032989e-05 -7.39567935684e-06 -4.23463836658e-06 1.03383071055e-05 -1.10655211873e-06 -1.59278448954e-06 3.72387491332e-06 0 -2.46681250728e-07 4.95127546726e-07 0 0 -1.94524586818e-07 -4.401882434e-08 -6.79472956115e-08 -5.85057055759e-06 -1.16262593938e-06 -2.91563216734e-06 -2.00462082364e-05 -4.56356172761e-06 -1.18108869387e-05 -3.8146159118e-05 -9.6138205288e-06 -2.38200671353e-05 -5.49759436285e-05 -1.45999616771e-05 -3.28301765674e-05 -6.65331934955e-05 -1.80448871129e-05 -3.54330881437e-05 -7.05987849715e-05 -1.92975387849e-05 -3.13601923854e-05 -7.05968522222e-05 -1.94004428745e-05 -2.31451795396e-05 -7.05949187797e-05 -1.94934634179e-05 -1.38368522535e-05 -7.05929846439e-05 -1.95864839613e-05 -4.52852496735e-06 -7.0591049815e-05 -1.96795045046e-05 4.77980231874e-06 -7.05891142927e-05 -1.9772525048e-05 1.40881296049e-05 -7.05871780772e-05 -1.98655455913e-05 2.3396456891e-05 -6.65185564882e-05 -1.8939027853e-05 3.16129209849e-05 -5.49609348003e-05 -1.6186664357e-05 3.56974364747e-05 -3.81342857691e-05 -1.22151397624e-05 3.30922040433e-05 -2.00397721194e-05 -7.83157297706e-06 2.40299553107e-05 -5.84890612633e-06 -3.83722562793e-06 1.19205949141e-05 -1.94515044432e-07 -1.06785520218e-06 2.93961147589e-06 -4.39583986817e-08 6.83518063744e-08 -1.65645759935e-06 -3.32588217547e-07 -8.20221121531e-07 -1.38991906075e-05 -2.56945048505e-06 -7.83552264941e-06 -3.50103660573e-05 -7.67244947637e-06 -2.28849845028e-05 -5.89215547911e-05 -1.42015703147e-05 -3.9018266815e-05 -7.96707444498e-05 -1.99923645239e-05 -4.93755105565e-05 -9.31047010455e-05 -2.3505941589e-05 -5.08441164586e-05 -9.76226868579e-05 -2.45167557803e-05 -4.39893218488e-05 -9.76211532945e-05 -2.45171590737e-05 -3.22778751243e-05 -9.76196196331e-05 -2.4628413983e-05 -1.93315419759e-05 -9.76180858739e-05 -2.47396688923e-05 -6.38520882743e-06 -9.76165520166e-05 -2.48509238017e-05 6.56112432101e-06 -9.76150180616e-05 -2.4962178711e-05 1.95074574694e-05 -9.76134840086e-05 -2.50734336203e-05 3.24537906179e-05 -9.30924611985e-05 -2.40737886493e-05 4.41742365074e-05 -7.96567838521e-05 -2.09636052067e-05 5.10738901627e-05 -5.8909164045e-05 -1.63102250628e-05 4.96625193476e-05 -3.50025278185e-05 -1.10478707751e-05 3.93070545347e-05 -1.38962680396e-05 -6.08007747133e-06 2.30831294006e-05 -1.6562043981e-06 -2.21936152685e-06 7.90428208838e-06 -3.24897543137e-07 8.25441718987e-07 -4.32101399711e-06 -6.57984373285e-07 -2.30187828023e-06 -2.18137396777e-05 -3.80594543998e-06 -1.34593323614e-05 -4.8030428849e-05 -1.00339658722e-05 -3.30689024715e-05 -7.59673989648e-05 -1.74124567109e-05 -5.18851702594e-05 -9.88430875291e-05 -2.3420034049e-05 -6.2671690321e-05 -0.000112359415111 -2.64920767967e-05 -6.26093730529e-05 -0.000116354703633 -2.70852299491e-05 -5.32140759645e-05 -0.000116353920611 -2.70844763894e-05 -3.88326441347e-05 -0.00011635313779 -2.71553299312e-05 -2.3285042183e-05 -0.000116352355173 -2.7226183473e-05 -7.73744023133e-06 -0.000116351572757 -2.72970370148e-05 7.81016172029e-06 -0.000116350790544 -2.73678905566e-05 2.3357763672e-05 -0.000116350008534 -2.74387440984e-05 3.89053656236e-05 -0.000112351922268 -2.67662885666e-05 5.32991868938e-05 -9.88326902802e-05 -2.3892942349e-05 6.27587246109e-05 -7.59571847065e-05 -1.8979218917e-05 6.29296213287e-05 -4.80234863683e-05 -1.32086913346e-05 5.22074802217e-05 -2.18108267684e-05 -7.66354310187e-06 3.33334889006e-05 -4.32056462515e-06 -3.15808894492e-06 1.35776984027e-05 -6.25661125281e-07 2.31740171723e-06 -6.31066521923e-06 -7.95510640129e-07 -3.43886158342e-06 -2.6701476013e-05 -4.2905890888e-06 -1.71579635867e-05 -5.57740868063e-05 -1.09072271493e-05 -3.9226703075e-05 -8.58613406742e-05 -1.85464098185e-05 -5.94517123929e-05 -0.000109397062754 -2.45325617038e-05 -7.02519012738e-05 -0.000121635470021 -2.72256585465e-05 -6.89110806966e-05 -0.00012422130763 -2.75166304122e-05 -5.77575489043e-05 -0.000124221029297 -2.75631956264e-05 -4.19185868721e-05 -0.000124220751815 -2.75831178713e-05 -2.5147677437e-05 -0.000124220475184 -2.76030401162e-05 -8.37676800182e-06 -0.000124220199405 -2.76229623612e-05 8.39414143343e-06 -0.000124219924478 -2.76428846061e-05 2.51650508687e-05 -0.000124219650401 -2.7662806851e-05 4.19359603038e-05 -0.00012163111812 -2.73578917687e-05 5.77854114639e-05 -0.00010938911692 -2.48307764593e-05 6.90033889533e-05 -8.58530552017e-05 -1.98960488934e-05 7.04770554595e-05 -5.57683908683e-05 -1.39640787278e-05 5.97811462553e-05 -2.6699074234e-05 -8.22821534599e-06 3.95249599658e-05 -6.31026193133e-06 -3.51114959703e-06 1.73072174062e-05 -7.4780310192e-07 3.46302730465e-06 -6.90158544902e-06 -7.95510640124e-07 -3.77783010961e-06 -2.80885370814e-05 -4.2905890888e-06 -1.82215863317e-05 -5.79884767222e-05 -1.09072271493e-05 -4.09771447952e-05 -8.86998090593e-05 -1.85464098185e-05 -6.16172175283e-05 -0.000112298063216 -2.45325617038e-05 -7.23985298375e-05 -0.000123641574267 -2.72256585466e-05 -7.05771844414e-05 -0.000125290552189 -2.75166304122e-05 -5.87968330933e-05 -0.000125290439823 -2.75631956264e-05 -4.25531715301e-05 -0.000125290327942 -2.75831178713e-05 -2.55305320486e-05 -0.000125290216545 -2.76030401162e-05 -8.50789256717e-06 -0.000125290105633 -2.76229623612e-05 8.51474691438e-06 -0.000125289995207 -2.76428846061e-05 2.5537386396e-05 -0.000125289885264 -2.7662806851e-05 4.25600258775e-05 -0.000123638094253 -2.73578917687e-05 5.88126492662e-05 -0.000112290474455 -2.48307764594e-05 7.06547041467e-05 -8.86916748426e-05 -1.98960488934e-05 7.26142697527e-05 -5.79828432747e-05 -1.39640787278e-05 6.1948338525e-05 -2.80861503075e-05 -8.228215346e-06 4.12846579111e-05 -6.90117648855e-06 -3.51114959702e-06 1.83796071218e-05 -7.47803101908e-07 3.80474454439e-06 -6.90158544902e-06 -7.95510640141e-07 -3.77783010954e-06 -2.80885370814e-05 -4.2905890888e-06 -1.82215863317e-05 -5.79884767222e-05 -1.09072271494e-05 -4.09771447952e-05 -8.86998090593e-05 -1.85464098185e-05 -6.16172175283e-05 -0.000112298063216 -2.45325617039e-05 -7.23985298375e-05 -0.000123641574267 -2.72256585466e-05 -7.05771844414e-05 -0.000125290552189 -2.75166304121e-05 -5.87968330933e-05 -0.000125290439823 -2.75631956264e-05 -4.25531715301e-05 -0.000125290327942 -2.75831178713e-05 -2.55305320486e-05 -0.000125290216545 -2.76030401162e-05 -8.50789256713e-06 -0.000125290105634 -2.76229623612e-05 8.51474691438e-06 -0.000125289995207 -2.76428846061e-05 2.5537386396e-05 -0.000125289885264 -2.7662806851e-05 4.25600258776e-05 -0.000123638094253 -2.73578917687e-05 5.88126492662e-05 -0.000112290474455 -2.48307764594e-05 7.06547041466e-05 -8.86916748426e-05 -1.98960488934e-05 7.26142697527e-05 -5.79828432747e-05 -1.39640787278e-05 6.1948338525e-05 -2.80861503075e-05 -8.22821534603e-06 4.12846579111e-05 -6.9011764886e-06 -3.51114959704e-06 1.83796071218e-05 -7.47803101914e-07 3.80474454437e-06 -6.90158544902e-06 -7.95510640138e-07 -3.77783010957e-06 -2.80885370814e-05 -4.29058908882e-06 -1.82215863317e-05 -5.79884767222e-05 -1.09072271494e-05 -4.09771447952e-05 -8.86998090593e-05 -1.85464098185e-05 -6.16172175283e-05 -0.000112298063216 -2.45325617038e-05 -7.23985298375e-05 -0.000123641574267 -2.72256585466e-05 -7.05771844414e-05 -0.000125290552189 -2.75166304121e-05 -5.87968330934e-05 -0.000125290439823 -2.75631956264e-05 -4.25531715301e-05 -0.000125290327942 -2.75831178713e-05 -2.55305320486e-05 -0.000125290216545 -2.76030401162e-05 -8.50789256712e-06 -0.000125290105634 -2.76229623612e-05 8.51474691437e-06 -0.000125289995207 -2.76428846061e-05 2.5537386396e-05 -0.000125289885264 -2.7662806851e-05 4.25600258775e-05 -0.000123638094253 -2.73578917687e-05 5.88126492662e-05 -0.000112290474455 -2.48307764594e-05 7.06547041466e-05 -8.86916748426e-05 -1.98960488934e-05 7.26142697527e-05 -5.79828432747e-05 -1.39640787278e-05 6.1948338525e-05 -2.80861503075e-05 -8.22821534602e-06 4.12846579111e-05 -6.90117648861e-06 -3.51114959704e-06 1.83796071218e-05 -7.47803101915e-07 3.8047445444e-06 -6.90158544902e-06 -7.95510640154e-07 -3.77783010955e-06 -2.80885370814e-05 -4.29058908883e-06 -1.82215863317e-05 -5.79884767222e-05 -1.09072271494e-05 -4.09771447952e-05 -8.86998090593e-05 -1.85464098185e-05 -6.16172175282e-05 -0.000112298063216 -2.45325617038e-05 -7.23985298375e-05 -0.000123641574267 -2.72256585466e-05 -7.05771844415e-05 -0.000125290552189 -2.75166304122e-05 -5.87968330934e-05 -0.000125290439823 -2.75631956265e-05 -4.25531715301e-05 -0.000125290327942 -2.75831178714e-05 -2.55305320486e-05 -0.000125290216545 -2.76030401163e-05 -8.50789256717e-06 -0.000125290105633 -2.76229623612e-05 8.51474691433e-06 -0.000125289995207 -2.76428846061e-05 2.5537386396e-05 -0.000125289885264 -2.76628068511e-05 4.25600258775e-05 -0.000123638094253 -2.73578917687e-05 5.88126492662e-05 -0.000112290474455 -2.48307764593e-05 7.06547041467e-05 -8.86916748426e-05 -1.98960488933e-05 7.26142697527e-05 -5.79828432748e-05 -1.39640787278e-05 6.19483385249e-05 -2.80861503075e-05 -8.22821534604e-06 4.12846579112e-05 -6.90117648859e-06 -3.51114959706e-06 1.83796071217e-05 -7.47803101917e-07 3.80474454442e-06 -6.32890087182e-06 -6.57984373323e-07 -3.44501856581e-06 -2.68732109915e-05 -3.80594544004e-06 -1.72402655806e-05 -5.63084463064e-05 -1.00339658722e-05 -3.9538050551e-05 -8.6847163325e-05 -1.74124567109e-05 -6.00709372141e-05 -0.000110617252994 -2.34200340491e-05 -7.10540819228e-05 -0.000122546427817 -2.64920767967e-05 -6.962370703e-05 -0.000124710354938 -2.70852299492e-05 -5.82266582818e-05 -0.000124710080902 -2.70844763894e-05 -4.22101396357e-05 -0.000124709807718 -2.71553299312e-05 -2.53226981188e-05 -0.000124709535388 -2.7226183473e-05 -8.43525660208e-06 -0.000124709263909 -2.72970370148e-05 8.45218491475e-06 -0.000124708993284 -2.73678905566e-05 2.53396264317e-05 -0.000124708723511 -2.74387440984e-05 4.22270679486e-05 -0.000122542099175 -2.67662885666e-05 5.82540166883e-05 -0.000110609277788 -2.3892942349e-05 6.97158338772e-05 -8.68388331312e-05 -1.8979218917e-05 7.12809407988e-05 -5.63027228517e-05 -1.32086913347e-05 6.04034277845e-05 -2.68708009756e-05 -7.66354310188e-06 3.98385527736e-05 -6.32849686469e-06 -3.15808894496e-06 1.73901952068e-05 -6.25661125327e-07 3.4692243638e-06 -4.35121476746e-06 -3.32588217555e-07 -2.3116936872e-06 -2.21918133651e-05 -2.56945048509e-06 -1.36295292127e-05 -4.93236693983e-05 -7.67244947639e-06 -3.37946474699e-05 -7.8516254707e-05 -1.42015703148e-05 -5.34323074994e-05 -0.000102324569351 -1.9992364524e-05 -6.48194080836e-05 -0.000115897753996 -2.3505941589e-05 -6.47607102289e-05 -0.000119583820883 -2.45167557804e-05 -5.49227638907e-05 -0.000119583036132 -2.45171590737e-05 -4.00312298513e-05 -0.000119582251534 -2.4628413983e-05 -2.40042310806e-05 -0.000119581467088 -2.47396688923e-05 -7.97723230972e-06 -0.000119580682794 -2.48509238017e-05 8.04976646102e-06 -0.000119579898653 -2.49621787109e-05 2.40767652318e-05 -0.000119579114665 -2.50734336203e-05 4.01037640026e-05 -0.00011589018666 -2.40737886494e-05 5.50080524427e-05 -0.000102313992287 -2.09636052068e-05 6.49123413154e-05 -7.85058530346e-05 -1.63102250629e-05 6.50841147063e-05 -4.93166200703e-05 -1.10478707752e-05 5.37632994999e-05 -2.21888701265e-05 -6.08007747136e-06 3.40647202066e-05 -4.35076329311e-06 -2.21936152685e-06 1.37492984153e-05 -3.24897543153e-07 2.32727782094e-06 -1.66703483065e-06 -4.40188243148e-08 -8.23219818125e-07 -1.42093655079e-05 -1.16262593936e-06 -7.95625667962e-06 -3.63408231164e-05 -4.56356172771e-06 -2.35715276852e-05 -6.18964369891e-05 -9.61382052883e-06 -4.07143729434e-05 -8.42573717323e-05 -1.45999616771e-05 -5.2003028969e-05 -9.86239544727e-05 -1.8044887113e-05 -5.37975759899e-05 -0.00010337626517 -1.92975387849e-05 -4.65990069438e-05 -0.000103374681025 -1.94004428745e-05 -3.41937191345e-05 -0.000103373096796 -1.94934634179e-05 -2.04798285446e-05 -0.00010337151248 -1.95864839613e-05 -6.76593795463e-06 -0.00010336992808 -1.96795045046e-05 6.9479526353e-06 -0.000103368343594 -1.97725250479e-05 2.06618432253e-05 -0.000103366759023 -1.98655455914e-05 3.43757338152e-05 -9.86112979789e-05 -1.8939027853e-05 4.67907208342e-05 -8.42429306037e-05 -1.6186664357e-05 5.403704587e-05 -6.18836615645e-05 -1.22151397624e-05 5.23029091906e-05 -3.63327971821e-05 -7.83157297707e-06 4.10146150997e-05 -1.42064003021e-05 -3.83722562801e-06 2.37752414579e-05 -1.66678047753e-06 -1.06785520222e-06 8.02600039984e-06 -4.39583986388e-08 8.28457668199e-07 -1.94726183911e-07 0 -6.79718652968e-08 -5.95848542178e-06 -2.51081234868e-07 -2.94883081522e-06 -2.08182812786e-05 -1.75679155708e-06 -1.21495398462e-05 -4.0289741031e-05 -4.87533186786e-06 -2.49252625297e-05 -5.87640883812e-05 -8.47224822758e-06 -3.4835410852e-05 -7.15770796746e-05 -1.12896783879e-05 -3.79427598691e-05 -7.60941167945e-05 -1.25432598552e-05 -3.37256361766e-05 -7.60920873944e-05 -1.27475684603e-05 -2.49168431356e-05 -7.60900575086e-05 -1.27990312994e-05 -1.48969342936e-05 -7.60880271368e-05 -1.28504941386e-05 -4.87702545163e-06 -7.60859962793e-05 -1.29019569777e-05 5.1428833904e-06 -7.6083964936e-05 -1.29534198168e-05 1.51627922324e-05 -7.60819331069e-05 -1.30048826559e-05 2.51827010744e-05 -7.15617316367e-05 -1.23493789844e-05 3.39930913827e-05 -5.87484110855e-05 -1.03475045815e-05 3.82224486606e-05 -4.02774314538e-05 -7.40666155033e-06 3.51114303658e-05 -2.08116803796e-05 -4.23463836655e-06 2.51440379178e-05 -5.95679994306e-06 -1.59278448953e-06 1.22621632689e-05 -1.94716632977e-07 -2.46681250733e-07 2.97306107051e-06 0 6.83765076946e-08 0 0 0 -1.11290493112e-06 0 -4.93107618701e-07 -7.59446156817e-06 -2.51193236941e-07 -3.75237672209e-06 -1.92714718094e-05 -1.36456563793e-06 -1.06035695874e-05 -3.1832764024e-05 -3.26092632929e-06 -1.75905795388e-05 -4.11920634332e-05 -5.04336251241e-06 -2.0913501871e-05 -4.46207405268e-05 -6.00016167179e-06 -1.93326375735e-05 -4.46190421732e-05 -6.21560549268e-06 -1.442339636e-05 -4.46173433129e-05 -6.23257411969e-06 -8.60613012636e-06 -4.46156439458e-05 -6.24954274668e-06 -2.78886389273e-06 -4.4613944072e-05 -6.26651137365e-06 3.02840234086e-06 -4.46122436913e-05 -6.28348000067e-06 8.84566857454e-06 -4.46105428039e-05 -6.30044862765e-06 1.46629348081e-05 -4.11796491726e-05 -5.93793744371e-06 1.9567123285e-05 -3.18212523901e-05 -4.76790819905e-06 2.11320378195e-05 -1.92638505227e-05 -3.01276880791e-06 1.77671170879e-05 -7.59161238519e-06 -1.27569363009e-06 1.0709123008e-05 -1.1127441359e-06 -2.46569207085e-07 3.78705483614e-06 0 0 4.96588622802e-07 0 0 0 0 0 0 0 0 -1.11289488226e-06 0 -4.3125098786e-07 -5.04644429108e-06 -4.40423514219e-08 -2.26902816643e-06 -1.09347689151e-05 -3.76895197765e-07 -5.25123703991e-06 -1.59948736548e-05 -9.81582645883e-07 -7.45291602896e-06 -1.79542675444e-05 -1.41680417896e-06 -7.44636724169e-06 -1.79534682442e-05 -1.53850233426e-06 -5.66622947584e-06 -1.79526687693e-05 -1.54042503843e-06 -3.37546436472e-06 -1.79518691197e-05 -1.54234774256e-06 -1.08469925377e-06 -1.79510692955e-05 -1.54427044665e-06 1.20606585732e-06 -1.79502692966e-05 -1.54619315082e-06 3.49683096836e-06 -1.7949469123e-05 -1.54811585497e-06 5.78759607949e-06 -1.59893241971e-05 -1.41015007206e-06 7.56189052794e-06 -1.09304656789e-05 -9.59550748569e-07 7.54832562099e-06 -5.04464164507e-06 -3.68568972575e-07 5.31081528244e-06 -1.11275418644e-06 -4.39348700922e-08 2.29191730873e-06 0 0 4.34732933087e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.94724592299e-07 0 -4.52471092481e-08 -1.47247481089e-06 0 -4.63875594938e-07 -2.88963004218e-06 0 -1.11078181824e-06 -3.48056917726e-06 0 -1.32295770342e-06 -3.48048413924e-06 0 -1.0494000229e-06 -3.48039910139e-06 0 -6.24963972584e-07 -3.48031406368e-06 0 -2.00527922332e-07 -3.48022902613e-06 0 2.23908128062e-07 -3.4801439887e-06 0 6.48344178394e-07 -3.48005895148e-06 0 1.07278022881e-06 -2.88915292794e-06 0 1.34423170253e-06 -1.47230675475e-06 0 1.12518196769e-06 -1.94718224992e-07 0 4.69065670715e-07 0 0 4.56517946962e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5.65661702827e-08 -1.22405401272e-08 0 -9.37601757354e-07 -2.13105359692e-07 -1.95782867282e-07 -2.10572658297e-06 -6.52054245993e-07 -6.068860032e-07 -2.60864189768e-06 -1.00253589697e-06 -8.03664158445e-07 -2.60858947283e-06 -1.10485932744e-06 -6.53133514423e-07 -2.60853704568e-06 -1.10677463006e-06 -3.88997995065e-07 -2.60848461619e-06 -1.10868993269e-06 -1.24862475576e-07 -2.60843218438e-06 -1.11060523532e-06 1.39273043857e-07 -2.60837975021e-06 -1.11252053794e-06 4.03408563319e-07 -2.60832731372e-06 -1.11443584056e-06 6.67544082737e-07 -2.10544027387e-06 -1.00243240226e-06 8.16513927962e-07 -9.37511235039e-07 -6.42192716168e-07 6.14790218324e-07 -5.65647098811e-08 -2.1029644792e-07 1.97960061926e-07 0 -1.22364926911e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -6.58103390744e-07 -1.40721473348e-07 -1.74050949193e-07 -3.84779501016e-06 -9.71808705662e-07 -1.37290483824e-06 -8.75347373854e-06 -2.56217135577e-06 -3.5809086636e-06 -1.3098891818e-05 -4.13222034338e-06 -5.30324659397e-06 -1.47914239876e-05 -5.00272904994e-06 -5.40761129924e-06 -1.47907571829e-05 -5.21042231509e-06 -4.13656454887e-06 -1.4790090104e-05 -5.23199862768e-06 -2.46352065735e-06 -1.47894227511e-05 -5.25357494027e-06 -7.9047676575e-07 -1.4788755124e-05 -5.27515125287e-06 8.82567125851e-07 -1.47880872229e-05 -5.29672756546e-06 2.55561101745e-06 -1.47874190475e-05 -5.31830387804e-06 4.228654909e-06 -1.30943146381e-05 -5.00286759451e-06 5.49471155046e-06 -8.75008445477e-06 -3.96188499671e-06 5.3732656518e-06 -3.84657057558e-06 -2.40581460689e-06 3.62203265768e-06 -6.58031323671e-07 -9.23647367496e-07 1.38677224209e-06 0 -1.39622904112e-07 1.75410094424e-07 0 0 0 0 0 0 0 0 -6.58108536312e-07 -1.40645337249e-07 -1.99012558428e-07 -5.8747050411e-06 -1.30122284162e-06 -2.35942549855e-06 -1.60113292803e-05 -3.96559507614e-06 -7.57577388978e-06 -2.70708399558e-05 -7.18686009351e-06 -1.3257419311e-05 -3.5306634238e-05 -9.78124489848e-06 -1.61149709529e-05 -3.83198124455e-05 -1.09779845163e-05 -1.50209916569e-05 -3.83182092221e-05 -1.12031842577e-05 -1.12287146545e-05 -3.83166049371e-05 -1.12743337251e-05 -6.69656187844e-06 -3.83149995905e-05 -1.13454831926e-05 -2.1644091023e-06 -3.83133931823e-05 -1.141663266e-05 2.3677436738e-06 -3.83117857126e-05 -1.14877821275e-05 6.89989644993e-06 -3.83101771813e-05 -1.1558931595e-05 1.14320492261e-05 -3.52949794717e-05 -1.09787056904e-05 1.52190876055e-05 -2.70602529652e-05 -9.14169013096e-06 1.6295982327e-05 -1.60046264778e-05 -6.42494342992e-06 1.33978010634e-05 -5.87248430511e-06 -3.52571388596e-06 7.65352841343e-06 -6.58026173921e-07 -1.20590208546e-06 2.38124264866e-06 0 -1.39699054756e-07 2.00371548309e-07 0 0 -5.65665353241e-08 -1.22364342798e-08 0 -4.45151164541e-06 -8.44783266106e-07 -1.8006230055e-06 -1.7495968271e-05 -3.68983756837e-06 -8.73179654368e-06 -3.49771600968e-05 -8.19696811712e-06 -1.92231801405e-05 -5.16083398219e-05 -1.27949865188e-05 -2.76435243146e-05 -6.3194215659e-05 -1.60693631597e-05 -3.04922832494e-05 -6.73029743794e-05 -1.73234173865e-05 -2.72545194034e-05 -6.73007768761e-05 -1.74801894077e-05 -2.01642933211e-05 -6.72985780561e-05 -1.76169720686e-05 -1.20479380581e-05 -6.72963779194e-05 -1.77537547296e-05 -3.93158279513e-06 -6.7294176466e-05 -1.78905373906e-05 4.18477246782e-06 -6.7291973696e-05 -1.80273200516e-05 1.23011277308e-05 -6.72897696094e-05 -1.81641027125e-05 2.04174829938e-05 -6.31777405565e-05 -1.73245163582e-05 2.75071264891e-05 -5.15919168831e-05 -1.47352742893e-05 3.07481280253e-05 -3.49647209472e-05 -1.09855551735e-05 2.78837625299e-05 -1.74896962593e-05 -6.86937483935e-06 1.94021777482e-05 -4.45016511381e-06 -3.18991907934e-06 8.81496873859e-06 -5.65643447639e-08 -7.94803499927e-07 1.81494646079e-06 -1.2240598671e-08 0 -9.94222854417e-07 -2.00441871939e-07 -3.53281209306e-07 -1.16712178784e-05 -1.98632517103e-06 -5.48652472634e-06 -3.18434272586e-05 -6.4357597302e-06 -1.81221277209e-05 -5.54378772985e-05 -1.23887251854e-05 -3.28196414939e-05 -7.63731702896e-05 -1.78660157047e-05 -4.28545347604e-05 -9.023496745e-05 -2.13642767406e-05 -4.49330211276e-05 -9.4988812821e-05 -2.24686436573e-05 -3.92318637569e-05 -9.49866689982e-05 -2.25359079403e-05 -2.88578269311e-05 -9.49845248788e-05 -2.27173218445e-05 -1.72724869826e-05 -9.4982380463e-05 -2.28987357488e-05 -5.68714703413e-06 -9.49802357507e-05 -2.3080149653e-05 5.89819291436e-06 -9.4978090742e-05 -2.32615635573e-05 1.74835328628e-05 -9.49759454367e-05 -2.34429774615e-05 2.90688728114e-05 -9.02183182517e-05 -2.24728977688e-05 3.94493213778e-05 -7.6355146068e-05 -1.94257284968e-05 4.51842622116e-05 -5.5422695227e-05 -1.49511611502e-05 4.3140546219e-05 -3.18343922505e-05 -9.93831635205e-06 3.30837360299e-05 -1.16681961088e-05 -5.26502562811e-06 1.8286476476e-05 -9.94063433793e-07 -1.76556515818e-06 5.53430976221e-06 -1.98482391443e-07 3.5545686292e-07 -3.04769783509e-06 -4.542338704e-07 -1.28331305127e-06 -1.90786348385e-05 -3.03666798784e-06 -9.93483394917e-06 -4.45418762053e-05 -8.5569033043e-06 -2.70626345318e-05 -7.2469840448e-05 -1.53747617113e-05 -4.45616611969e-05 -9.60415613192e-05 -2.12124683975e-05 -5.53457253453e-05 -0.00011073382906 -2.45606820976e-05 -5.63434784956e-05 -0.000115468323688 -2.54330273947e-05 -4.84440793121e-05 -0.00011546667432 -2.5462563794e-05 -3.54853155541e-05 -0.000115465026314 -2.5637117311e-05 -2.12657241208e-05 -0.000115463379668 -2.5811670828e-05 -7.04613268764e-06 -0.000115461734383 -2.5986224345e-05 7.17345874556e-06 -0.00011546009046 -2.6160777862e-05 2.13930501788e-05 -0.000115458447897 -2.6335331379e-05 3.56126416122e-05 -0.000110720122463 -2.5453666881e-05 4.85828620027e-05 -9.6025028055e-05 -2.23792328079e-05 5.65398887835e-05 -7.24547287102e-05 -1.7566351409e-05 5.56259224644e-05 -4.45321385045e-05 -1.2028343861e-05 4.48715326337e-05 -1.90748434291e-05 -6.76119546753e-06 2.72928541523e-05 -3.04723817695e-06 -2.60018211905e-06 1.00238906033e-05 -4.41082935564e-07 1.29158714362e-06 -4.7357477441e-06 -5.65465150328e-07 -2.12048125707e-06 -2.37136823594e-05 -3.45452035305e-06 -1.29874725663e-05 -5.2133445517e-05 -9.34736263446e-06 -3.25288459761e-05 -8.24316553462e-05 -1.64420966334e-05 -5.15195675602e-05 -0.000107156526051 -2.23434426658e-05 -6.25862940428e-05 -0.000121598840495 -2.55353007208e-05 -6.2753268481e-05 -0.00012580324376 -2.62704259861e-05 -5.34512668216e-05 -0.000125802030718 -2.63081221229e-05 -3.90369353291e-05 -0.000125800820706 -2.64586495004e-05 -2.34080010085e-05 -0.000125799613724 -2.66091768778e-05 -7.77906668795e-06 -0.000125798409771 -2.67597042553e-05 7.84986763282e-06 -0.000125797208848 -2.69102316327e-05 2.34788019534e-05 -0.000125796010956 -2.70607590102e-05 3.91077362741e-05 -0.000121587734896 -2.63128466091e-05 5.35349419593e-05 -0.000107141615034 -2.33529126666e-05 6.2903961465e-05 -8.24173202842e-05 -1.84690704896e-05 6.28481755188e-05 -5.21239258806e-05 -1.27630105958e-05 5.18457134241e-05 -2.37098116832e-05 -7.29952374392e-06 3.27941466622e-05 -4.7351772929e-06 -2.91988148293e-06 1.31036406721e-05 -5.4417992099e-07 2.13459213595e-06 -5.25004835715e-06 -5.65465150354e-07 -2.38052985404e-06 -2.50305155304e-05 -3.45452035305e-06 -1.38752668187e-05 -5.42990103296e-05 -9.34736263449e-06 -3.40813435831e-05 -8.52927658588e-05 -1.64420966334e-05 -5.3507997625e-05 -0.000110291065789 -2.23434426658e-05 -6.46571290809e-05 -0.000124435289271 -2.55353007208e-05 -6.45493213298e-05 -0.000128273480307 -2.62704259861e-05 -5.48071130807e-05 -0.000128272407331 -2.63081221229e-05 -3.99813569836e-05 -0.000128271337606 -2.64586495003e-05 -2.39774481876e-05 -0.000128270271133 -2.66091768778e-05 -7.97353939163e-06 -0.000128269207909 -2.67597042553e-05 8.03036940461e-06 -0.000128268147937 -2.69102316327e-05 2.40342782005e-05 -0.000128267091216 -2.70607590102e-05 4.00381869965e-05 -0.00012442486677 -2.6312846609e-05 5.48768664371e-05 -0.000110276336707 -2.33529126666e-05 6.46876429545e-05 -8.52783164846e-05 -1.84690704896e-05 6.49136987851e-05 -5.42893081903e-05 -1.27630105959e-05 5.38384821793e-05 -2.50265171208e-05 -7.29952374395e-06 3.43563569582e-05 -5.2494314525e-06 -2.91988148292e-06 1.39992404435e-05 -5.44179921009e-07 2.39655688178e-06 -5.25004835715e-06 -5.65465150358e-07 -2.38052985408e-06 -2.50305155304e-05 -3.45452035309e-06 -1.38752668188e-05 -5.42990103296e-05 -9.34736263447e-06 -3.40813435831e-05 -8.52927658588e-05 -1.64420966334e-05 -5.35079976249e-05 -0.000110291065789 -2.23434426658e-05 -6.46571290809e-05 -0.000124435289271 -2.55353007208e-05 -6.45493213297e-05 -0.000128273480307 -2.62704259861e-05 -5.48071130807e-05 -0.000128272407331 -2.6308122123e-05 -3.99813569836e-05 -0.000128271337606 -2.64586495004e-05 -2.39774481876e-05 -0.000128270271133 -2.66091768779e-05 -7.97353939161e-06 -0.000128269207909 -2.67597042553e-05 8.03036940453e-06 -0.000128268147937 -2.69102316328e-05 2.40342782005e-05 -0.000128267091216 -2.70607590102e-05 4.00381869965e-05 -0.00012442486677 -2.6312846609e-05 5.48768664371e-05 -0.000110276336707 -2.33529126666e-05 6.46876429545e-05 -8.52783164846e-05 -1.84690704896e-05 6.49136987851e-05 -5.42893081903e-05 -1.27630105958e-05 5.38384821793e-05 -2.50265171208e-05 -7.29952374395e-06 3.43563569583e-05 -5.2494314525e-06 -2.91988148295e-06 1.39992404435e-05 -5.44179921005e-07 2.39655688183e-06 -5.25004835715e-06 -5.6546515036e-07 -2.38052985408e-06 -2.50305155304e-05 -3.45452035306e-06 -1.38752668187e-05 -5.42990103296e-05 -9.3473626345e-06 -3.40813435831e-05 -8.52927658588e-05 -1.64420966334e-05 -5.35079976249e-05 -0.000110291065789 -2.23434426658e-05 -6.46571290809e-05 -0.000124435289271 -2.55353007208e-05 -6.45493213298e-05 -0.000128273480307 -2.6270425986e-05 -5.48071130807e-05 -0.000128272407331 -2.63081221229e-05 -3.99813569836e-05 -0.000128271337606 -2.64586495004e-05 -2.39774481876e-05 -0.000128270271133 -2.66091768778e-05 -7.97353939161e-06 -0.000128269207909 -2.67597042552e-05 8.03036940458e-06 -0.000128268147937 -2.69102316327e-05 2.40342782005e-05 -0.000128267091216 -2.70607590102e-05 4.00381869965e-05 -0.00012442486677 -2.6312846609e-05 5.48768664371e-05 -0.000110276336707 -2.33529126666e-05 6.46876429544e-05 -8.52783164847e-05 -1.84690704896e-05 6.4913698785e-05 -5.42893081903e-05 -1.27630105958e-05 5.38384821792e-05 -2.50265171208e-05 -7.29952374391e-06 3.43563569582e-05 -5.24943145247e-06 -2.91988148295e-06 1.39992404435e-05 -5.44179921e-07 2.39655688185e-06 -5.25004835715e-06 -5.65465150366e-07 -2.38052985408e-06 -2.50305155304e-05 -3.45452035305e-06 -1.38752668187e-05 -5.42990103296e-05 -9.34736263452e-06 -3.40813435832e-05 -8.52927658588e-05 -1.64420966334e-05 -5.35079976249e-05 -0.000110291065789 -2.23434426658e-05 -6.46571290809e-05 -0.000124435289271 -2.55353007208e-05 -6.45493213298e-05 -0.000128273480307 -2.62704259861e-05 -5.48071130808e-05 -0.000128272407331 -2.6308122123e-05 -3.99813569836e-05 -0.000128271337606 -2.64586495004e-05 -2.39774481875e-05 -0.000128270271133 -2.66091768779e-05 -7.97353939161e-06 -0.000128269207909 -2.67597042553e-05 8.03036940457e-06 -0.000128268147937 -2.69102316328e-05 2.40342782005e-05 -0.000128267091216 -2.70607590102e-05 4.00381869965e-05 -0.00012442486677 -2.63128466091e-05 5.4876866437e-05 -0.000110276336707 -2.33529126666e-05 6.46876429544e-05 -8.52783164846e-05 -1.84690704896e-05 6.49136987851e-05 -5.42893081903e-05 -1.27630105959e-05 5.38384821792e-05 -2.50265171208e-05 -7.29952374397e-06 3.43563569582e-05 -5.24943145251e-06 -2.91988148294e-06 1.39992404435e-05 -5.44179921029e-07 2.39655688184e-06 -4.74712098823e-06 -4.54233870429e-07 -2.12340236036e-06 -2.38518936605e-05 -3.03666798785e-06 -1.30411709669e-05 -5.26014672813e-05 -8.55690330428e-06 -3.27626729111e-05 -8.33477618729e-05 -1.53747617113e-05 -5.20234053212e-05 -0.000108396443536 -2.12124683976e-05 -6.3292589693e-05 -0.00012283377781 -2.45606820976e-05 -6.34712871522e-05 -0.000126904269642 -2.54330273947e-05 -5.40322199264e-05 -0.000126903063951 -2.5462563794e-05 -3.94484242898e-05 -0.000126901861305 -2.5637117311e-05 -2.36549055929e-05 -0.000126900661705 -2.5811670828e-05 -7.86138689603e-06 -0.00012689946515 -2.5986224345e-05 7.93213180092e-06 -0.000126898271641 -2.6160777862e-05 2.3725650498e-05 -0.000126897081177 -2.6335331379e-05 3.95191691948e-05 -0.000122822686162 -2.5453666881e-05 5.41159753295e-05 -0.000108381478176 -2.23792328079e-05 6.3622802908e-05 -8.33333525531e-05 -1.7566351409e-05 6.35567860678e-05 -5.25919016401e-05 -1.20283438609e-05 5.23524582915e-05 -2.38480093061e-05 -6.76119546754e-06 3.30297829389e-05 -4.74654954425e-06 -2.60018211908e-06 1.3157789505e-05 -4.41082935586e-07 2.13753107801e-06 -3.06475687217e-06 -2.00441871923e-07 -1.28726725626e-06 -1.93753134606e-05 -1.98632517096e-06 -1.00413373767e-05 -4.56571950457e-05 -6.43575973019e-06 -2.75952035423e-05 -7.47953604118e-05 -1.23887251854e-05 -4.57949354377e-05 -9.94172764506e-05 -1.78660157047e-05 -5.71740198308e-05 -0.000114525515766 -2.13642767407e-05 -5.83205360081e-05 -0.000119255028612 -2.24686436573e-05 -5.01402186736e-05 -0.000119253370028 -2.25359079403e-05 -3.67171700903e-05 -0.000119251712787 -2.27173218446e-05 -2.20044610811e-05 -0.00011925005689 -2.28987357488e-05 -7.29175207207e-06 -0.000119248402335 -2.3080149653e-05 7.42095693705e-06 -0.000119246749124 -2.32615635573e-05 2.21336659463e-05 -0.000119245097256 -2.34429774615e-05 3.68463749555e-05 -0.000114511670678 -2.24728977688e-05 5.02813676239e-05 -9.94004833067e-05 -1.94257284969e-05 5.85214869293e-05 -7.4779991744e-05 -1.49511611503e-05 5.74618788155e-05 -4.56473151104e-05 -9.93831635208e-06 4.61126633444e-05 -1.93714842276e-05 -5.26502562807e-06 2.78297002202e-05 -3.06429530009e-06 -1.76556515815e-06 1.01312836095e-05 -1.98482391415e-07 1.29556453937e-06 -9.98525067963e-07 -1.22364342535e-08 -3.53946489212e-07 -1.18991594646e-05 -8.44783266135e-07 -5.55458870968e-06 -3.29522536691e-05 -3.6898375684e-06 -1.85993082508e-05 -5.80681059657e-05 -8.19696811712e-06 -3.41180967374e-05 -8.06033761055e-05 -1.27949865188e-05 -4.49878216699e-05 -9.55153817942e-05 -1.60693631597e-05 -4.74400777967e-05 -0.000100592999896 -1.73234173865e-05 -4.15134766304e-05 -0.000100590791808 -1.74801894077e-05 -3.05493355149e-05 -0.000100588583507 -1.76169720686e-05 -1.82857005287e-05 -0.000100586374992 -1.77537547295e-05 -6.02206554273e-06 -0.000100584166262 -1.78905373906e-05 6.2415694434e-06 -0.00010058195732 -1.80273200515e-05 1.85052044296e-05 -0.000100579748163 -1.81641027125e-05 3.07688394158e-05 -9.54982190135e-05 -1.73245163582e-05 4.17398880202e-05 -8.05847864218e-05 -1.47352742893e-05 4.77022914613e-05 -5.80524901633e-05 -1.09855551735e-05 4.52861564785e-05 -3.29430183807e-05 -6.86937483938e-06 3.43917820461e-05 -1.18960974288e-05 -3.18991907938e-06 1.87677034279e-05 -9.98365086058e-07 -7.94803499918e-07 5.60292434661e-06 -1.22405986613e-08 3.56125834504e-07 -5.65870067384e-08 0 0 -4.51852252764e-06 -1.40645337238e-07 -1.81590105644e-06 -1.80968318792e-05 -1.30122284165e-06 -8.94174529789e-06 -3.6784086462e-05 -3.96559507617e-06 -2.00112407695e-05 -5.49367862102e-05 -7.18686009353e-06 -2.91760878326e-05 -6.77329784689e-05 -9.78124489847e-06 -3.24869863279e-05 -7.22898016746e-05 -1.09779845163e-05 -2.91717699817e-05 -7.22875028566e-05 -1.12031842577e-05 -2.16079484106e-05 -7.22852030093e-05 -1.12743337251e-05 -1.29112776914e-05 -7.22829021328e-05 -1.13454831926e-05 -4.21460697232e-06 -7.22806002269e-05 -1.141663266e-05 4.48206374688e-06 -7.22782972918e-05 -1.14877821275e-05 1.31787344661e-05 -7.22759933273e-05 -1.1558931595e-05 2.18754051853e-05 -6.77157670911e-05 -1.09787056904e-05 2.9438572223e-05 -5.49196901861e-05 -9.14169013094e-06 3.27568451985e-05 -3.67712275095e-05 -6.42494342991e-06 2.9428082391e-05 -1.80904140086e-05 -3.52571388593e-06 2.01969487592e-05 -4.51716138684e-06 -1.20590208549e-06 9.02676868751e-06 -5.65848154296e-08 -1.39699054756e-07 1.83033502889e-06 0 0 0 0 0 -6.60273229332e-07 0 -1.99249989357e-07 -6.00380215629e-06 -1.40721473377e-07 -2.3894517037e-06 -1.66743323687e-05 -9.71808705659e-07 -7.80178076991e-06 -2.86148898949e-05 -2.56217135571e-06 -1.3869131795e-05 -3.76694976299e-05 -4.1322203434e-06 -1.70545585411e-05 -4.10125115643e-05 -5.00272905002e-06 -1.59937509467e-05 -4.10108328442e-05 -5.2104223151e-06 -1.19752750186e-05 -4.10091532778e-05 -5.23199862768e-06 -7.1422475577e-06 -4.10074728652e-05 -5.25357494025e-06 -2.30922009675e-06 -4.10057916062e-05 -5.27515125288e-06 2.52380736426e-06 -4.1004109501e-05 -5.29672756548e-06 7.35683482528e-06 -4.10024265495e-05 -5.31830387807e-06 1.21898622863e-05 -3.76573228262e-05 -5.00286759454e-06 1.62026117131e-05 -2.86038959298e-05 -3.96188499676e-06 1.72446624801e-05 -1.66674389741e-05 -2.40581460689e-06 1.40152754652e-05 -6.00154665112e-06 -9.23647367492e-07 7.88165316433e-06 -6.60190634067e-07 -1.39622904118e-07 2.41152460096e-06 0 0 2.00610439189e-07 0 0 0 0 0 0 0 0 -6.60268069175e-07 0 -1.74258610111e-07 -3.91697700499e-06 -1.22405401635e-08 -1.38629441562e-06 -9.04635295489e-06 -2.13105359658e-07 -3.66299446775e-06 -1.36714773382e-05 -6.52054245926e-07 -5.48791393906e-06 -1.54908754089e-05 -1.00253589692e-06 -5.63124032264e-06 -1.54901866491e-05 -1.10485932742e-06 -4.31505622608e-06 -1.54894976565e-05 -1.10677462999e-06 -2.56993526536e-06 -1.5488808431e-05 -1.10868993264e-06 -8.24814304597e-07 -1.54881189727e-05 -1.11060523525e-06 9.20306656247e-07 -1.54874292816e-05 -1.11252053788e-06 2.66542761709e-06 -1.54867393576e-05 -1.11443584051e-06 4.41054857782e-06 -1.36667611659e-05 -1.00243240221e-06 5.72144252244e-06 -9.04288390534e-06 -6.42192716095e-07 5.56007402175e-06 -3.91573638225e-06 -2.10296447912e-07 3.70497354913e-06 -6.60195798345e-07 -1.22364926961e-08 1.40028602299e-06 0 0 1.75619215195e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5.65866415896e-08 0 0 -9.419262443e-07 0 -1.96151646926e-07 -2.12712343722e-06 0 -6.10175158097e-07 -2.64142043222e-06 0 -8.10497286842e-07 -2.64136750571e-06 0 -6.59374919923e-07 -2.64131457718e-06 0 -3.92718415697e-07 -2.64126164665e-06 0 -1.26061911353e-07 -2.64120871413e-06 0 1.40594592899e-07 -2.64115577962e-06 0 4.07251097163e-07 -2.641102843e-06 0 6.73907601429e-07 -2.12683487845e-06 0 8.23444865939e-07 -9.41835374334e-07 0 6.18118525961e-07 -5.65851807052e-08 0 1.98332533075e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3.57210436683e-07 -7.26603228404e-08 -2.71189605552e-08 -1.13382630756e-06 -3.02413316696e-07 -1.76484082183e-07 -1.50631313637e-06 -5.31586221149e-07 -3.12973464964e-07 -1.50628964946e-06 -6.0451170233e-07 -2.72229060925e-07 -1.50626615995e-06 -6.05554503378e-07 -1.62154524416e-07 -1.50624266784e-06 -6.06597304426e-07 -5.20799878405e-08 -1.50621917316e-06 -6.07640105472e-07 5.79945487681e-08 -1.50619567589e-06 -6.08682906518e-07 1.68069085265e-07 -1.50617217598e-06 -6.09725707568e-07 2.78143621792e-07 -1.13370557636e-06 -5.32855858457e-07 3.17956043425e-07 -3.57182673565e-07 -2.99911317852e-07 1.78835755719e-07 0 -7.23410836998e-08 2.74099161919e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.0756581672e-07 -4.23131485346e-08 -8.33712755193e-09 -2.42930157059e-06 -5.40043934139e-07 -6.09209918767e-07 -6.18044264887e-06 -1.70506115877e-06 -2.01676486347e-06 -9.77435753699e-06 -2.975256679e-06 -3.28581805297e-06 -1.12204865902e-05 -3.71811612241e-06 -3.49834429577e-06 -1.12199919104e-05 -3.90632041925e-06 -2.70844937424e-06 -1.12194969985e-05 -3.92560687404e-06 -1.61269501178e-06 -1.12190018547e-05 -3.94489332883e-06 -5.16940649296e-07 -1.12185064789e-05 -3.96417978363e-06 5.78813713239e-07 -1.12180108712e-05 -3.98346623842e-06 1.67456807577e-06 -1.12175150314e-05 -4.00275269321e-06 2.77032243828e-06 -9.77104841043e-06 -3.74782331357e-06 3.55612362474e-06 -6.1782287495e-06 -2.89204276004e-06 3.32991532986e-06 -2.42868841808e-06 -1.62965459405e-06 2.0398739986e-06 -2.07548371927e-07 -5.23357891516e-07 6.15221526783e-07 0 -4.22730030986e-08 8.40060545884e-09 0 0 0 0 0 0 0 0 -2.07567062193e-07 -4.22982982291e-08 -9.5326801497e-09 -3.80461963846e-06 -7.86528963879e-07 -1.1392302186e-06 -1.21610865104e-05 -2.82468303432e-06 -4.67841052573e-06 -2.20202964055e-05 -5.52089236462e-06 -9.1917210779e-06 -2.95934127166e-05 -7.79536453811e-06 -1.18415266129e-05 -3.2399349509e-05 -8.90184257717e-06 -1.13094927749e-05 -3.23978999196e-05 -9.13837078603e-06 -8.50585011944e-06 -3.23964490909e-05 -9.21165889881e-06 -5.07014591211e-06 -3.23949970229e-05 -9.2849470116e-06 -1.63444170475e-06 -3.23935437155e-05 -9.35823512439e-06 1.80126250264e-06 -3.23920891688e-05 -9.43152323717e-06 5.23696670991e-06 -3.23906333827e-05 -9.50481134997e-06 8.6726709171e-06 -2.95829986882e-05 -9.01959994848e-06 1.14706864973e-05 -2.20112136733e-05 -7.42877524305e-06 1.19837681006e-05 -1.21558340061e-05 -5.0580497974e-06 9.29381063535e-06 -3.80327538528e-06 -2.58058354659e-06 4.72718002022e-06 -2.07547125278e-07 -7.48642155827e-07 1.14946190667e-06 0 -4.22878546811e-08 9.59615771676e-09 0 0 0 0 0 -2.6372000295e-06 -4.9727163755e-07 -8.11710859294e-07 -1.33605141885e-05 -2.60469490357e-06 -5.3843360865e-06 -2.91704565798e-05 -6.35774727174e-06 -1.37191720838e-05 -4.4798788082e-05 -1.0397867571e-05 -2.11874685767e-05 -5.59213504618e-05 -1.34033320766e-05 -2.42082956267e-05 -5.9909204193e-05 -1.46399122489e-05 -2.19748204462e-05 -5.99069096185e-05 -1.48474438128e-05 -1.63204390475e-05 -5.99046130145e-05 -1.50010131974e-05 -9.74433034857e-06 -5.99023143811e-05 -1.51545825819e-05 -3.16822164969e-06 -5.99000137183e-05 -1.53081519664e-05 3.40788704927e-06 -5.9897711026e-05 -1.5461721351e-05 9.98399574817e-06 -5.98954063043e-05 -1.56152907355e-05 1.65601044471e-05 -5.59043447209e-05 -1.489160327e-05 2.22116722388e-05 -4.47824083372e-05 -1.25720649892e-05 2.44389228526e-05 -2.91587538449e-05 -9.18745985517e-06 2.13891377822e-05 -1.33552364798e-05 -5.50711555849e-06 1.3854188575e-05 -2.63641131684e-06 -2.32886747832e-06 5.43605014997e-06 0 -4.81540962716e-07 8.17729514907e-07 0 0 -3.57221535584e-07 -7.25149208841e-08 -4.8930534003e-08 -8.27914649199e-06 -1.30184018633e-06 -3.08639265746e-06 -2.61832403332e-05 -4.85381212739e-06 -1.25240177889e-05 -4.83073844956e-05 -9.990649308e-06 -2.51165521863e-05 -6.85794788553e-05 -1.49669612121e-05 -3.44815606812e-05 -8.23585400942e-05 -1.83362348143e-05 -3.71431379733e-05 -8.71734401298e-05 -1.95160570129e-05 -3.28473877342e-05 -8.71707958703e-05 -1.9658632892e-05 -2.4240341424e-05 -8.71681503622e-05 -1.98829856566e-05 -1.44967067409e-05 -8.71655036054e-05 -2.01073384213e-05 -4.7530720578e-06 -8.71628555999e-05 -2.03316911859e-05 4.99056262539e-06 -8.71602063457e-05 -2.05560439505e-05 1.47341973085e-05 -8.71575558429e-05 -2.07803967152e-05 2.44778319916e-05 -8.23384479905e-05 -1.98918617186e-05 3.30877129991e-05 -6.85587678083e-05 -1.70409590317e-05 3.74019420849e-05 -4.8290922231e-05 -1.28975158558e-05 3.47480277792e-05 -2.61741935582e-05 -8.30977675554e-06 2.5337174515e-05 -8.27660256283e-06 -4.12687230421e-06 1.26424805962e-05 -3.57171561893e-07 -1.19908927805e-06 3.11211703741e-06 -7.24865047107e-08 4.9221459972e-08 -1.49178761304e-06 -2.29730175706e-07 -3.86343526699e-07 -1.46125027643e-05 -2.09958274742e-06 -6.1135362824e-06 -3.78814418067e-05 -6.64283219466e-06 -1.9789048126e-05 -6.45821923737e-05 -1.26406695177e-05 -3.52734480626e-05 -8.79698042645e-05 -1.80949881749e-05 -4.56935235666e-05 -0.000103239296256 -2.1527872044e-05 -4.77021345153e-05 -0.000108410836318 -2.25850003874e-05 -4.15613948117e-05 -0.000108408292012 -2.26806523607e-05 -3.05565713732e-05 -0.00010840574865 -2.29359100481e-05 -1.82965129422e-05 -0.000108403206231 -2.31911677356e-05 -6.03645451102e-06 -0.000108400664756 -2.3446425423e-05 6.22360392005e-06 -0.000108398124224 -2.37016831105e-05 1.84836623511e-05 -0.000108395584636 -2.39569407979e-05 3.07437207822e-05 -0.000103219395642 -2.3028131091e-05 4.17566174072e-05 -8.79479505033e-05 -1.99552444028e-05 4.79392926475e-05 -6.45635820762e-05 -1.53949633635e-05 4.59794484355e-05 -3.78702337138e-05 -1.02612321335e-05 3.55496182805e-05 -1.46086172136e-05 -5.46956088476e-06 1.99678848414e-05 -1.49150620121e-06 -1.86932728045e-06 6.16797003788e-06 -2.27589755986e-07 3.8871379729e-07 -2.64640495148e-06 -3.05788467146e-07 -8.32117041815e-07 -1.86831361714e-05 -2.42672841185e-06 -8.31806496235e-06 -4.49394961567e-05 -7.31781390528e-06 -2.43251298863e-05 -7.41848877229e-05 -1.36012300799e-05 -4.13549106703e-05 -9.91708407496e-05 -1.91860190322e-05 -5.22826898789e-05 -0.000114960144964 -2.25925360617e-05 -5.38068842759e-05 -0.000120130398711 -2.35870830786e-05 -4.65317503927e-05 -0.000120128054515 -2.36703982012e-05 -3.41419116819e-05 -0.00012012571342 -2.39281708339e-05 -2.04562128006e-05 -0.000120123375426 -2.41859434666e-05 -6.77051391935e-06 -0.000120121040533 -2.44437160992e-05 6.91518496192e-06 -0.000120118708742 -2.47014887319e-05 2.06008838431e-05 -0.000120116380052 -2.49592613646e-05 3.42865827245e-05 -0.000114941322299 -2.40465475016e-05 4.66871857116e-05 -9.91491589925e-05 -2.09461673207e-05 5.40170450073e-05 -7.41657008915e-05 -1.62664463913e-05 5.25672022272e-05 -4.49274945705e-05 -1.0953952264e-05 4.16558068536e-05 -1.86786692086e-05 -5.95970670052e-06 2.45380296702e-05 -2.64593960406e-06 -2.13518927171e-06 8.39325363797e-06 -3.0132586338e-07 8.37299955343e-07 -3.02346527258e-06 -3.05788467169e-07 -9.89522002158e-07 -1.98450620618e-05 -2.42672841188e-06 -8.97761031689e-06 -4.69465708154e-05 -7.31781390528e-06 -2.56150195079e-05 -7.69385452221e-05 -1.360123008e-05 -4.3087270707e-05 -0.000102375494738 -1.91860190322e-05 -5.41711271358e-05 -0.000118242799895 -2.25925360617e-05 -5.55535548792e-05 -0.00012335404076 -2.35870830785e-05 -4.7943846485e-05 -0.000123351746783 -2.36703982012e-05 -3.51566003546e-05 -0.00012334945639 -2.39281708339e-05 -2.10672800993e-05 -0.000123347169581 -2.41859434666e-05 -6.97795984404e-06 -0.000123344886355 -2.44437160992e-05 7.1113604112e-06 -0.000123342606714 -2.47014887319e-05 2.12006806665e-05 -0.000123340330657 -2.49592613646e-05 3.52900009218e-05 -0.000118224159921 -2.40465475016e-05 4.80886511544e-05 -0.000102353613811 -2.09461673207e-05 5.57562755642e-05 -7.69189222462e-05 -1.62664463913e-05 5.44551139692e-05 -4.69341548476e-05 -1.0953952264e-05 4.33949355445e-05 -1.98403540345e-05 -5.95970670052e-06 2.58374265423e-05 -3.0229350996e-06 -2.13518927174e-06 9.0589571691e-06 -3.01325863412e-07 9.95731420034e-07 -3.02346527258e-06 -3.05788467132e-07 -9.89522002199e-07 -1.98450620618e-05 -2.42672841185e-06 -8.97761031697e-06 -4.69465708154e-05 -7.31781390525e-06 -2.56150195079e-05 -7.69385452221e-05 -1.36012300799e-05 -4.3087270707e-05 -0.000102375494738 -1.91860190322e-05 -5.41711271359e-05 -0.000118242799895 -2.25925360617e-05 -5.55535548791e-05 -0.00012335404076 -2.35870830786e-05 -4.7943846485e-05 -0.000123351746783 -2.36703982012e-05 -3.51566003546e-05 -0.00012334945639 -2.39281708339e-05 -2.10672800993e-05 -0.000123347169581 -2.41859434666e-05 -6.97795984399e-06 -0.000123344886355 -2.44437160992e-05 7.11136041122e-06 -0.000123342606714 -2.47014887319e-05 2.12006806665e-05 -0.000123340330657 -2.49592613646e-05 3.52900009218e-05 -0.000118224159921 -2.40465475016e-05 4.80886511544e-05 -0.000102353613811 -2.09461673207e-05 5.57562755642e-05 -7.69189222462e-05 -1.62664463913e-05 5.44551139692e-05 -4.69341548476e-05 -1.0953952264e-05 4.33949355445e-05 -1.98403540345e-05 -5.95970670051e-06 2.58374265423e-05 -3.02293509956e-06 -2.13518927173e-06 9.05895716906e-06 -3.01325863375e-07 9.95731420139e-07 -3.02346527258e-06 -3.05788467145e-07 -9.89522002157e-07 -1.98450620618e-05 -2.42672841183e-06 -8.97761031692e-06 -4.69465708154e-05 -7.31781390529e-06 -2.56150195079e-05 -7.69385452221e-05 -1.36012300799e-05 -4.3087270707e-05 -0.000102375494738 -1.91860190322e-05 -5.41711271358e-05 -0.000118242799895 -2.25925360617e-05 -5.55535548792e-05 -0.00012335404076 -2.35870830786e-05 -4.7943846485e-05 -0.000123351746783 -2.36703982012e-05 -3.51566003547e-05 -0.00012334945639 -2.39281708339e-05 -2.10672800993e-05 -0.000123347169581 -2.41859434666e-05 -6.97795984403e-06 -0.000123344886355 -2.44437160993e-05 7.11136041125e-06 -0.000123342606714 -2.47014887319e-05 2.12006806665e-05 -0.000123340330657 -2.49592613646e-05 3.52900009218e-05 -0.000118224159921 -2.40465475016e-05 4.80886511544e-05 -0.000102353613811 -2.09461673207e-05 5.57562755641e-05 -7.69189222462e-05 -1.62664463913e-05 5.44551139692e-05 -4.69341548476e-05 -1.0953952264e-05 4.33949355444e-05 -1.98403540345e-05 -5.95970670052e-06 2.58374265423e-05 -3.02293509956e-06 -2.13518927171e-06 9.05895716913e-06 -3.01325863375e-07 9.95731420114e-07 -3.02346527258e-06 -3.05788467133e-07 -9.89522002151e-07 -1.98450620618e-05 -2.4267284118e-06 -8.97761031693e-06 -4.69465708154e-05 -7.3178139053e-06 -2.56150195079e-05 -7.69385452221e-05 -1.36012300799e-05 -4.30872707071e-05 -0.000102375494738 -1.91860190322e-05 -5.41711271359e-05 -0.000118242799895 -2.25925360617e-05 -5.55535548791e-05 -0.00012335404076 -2.35870830786e-05 -4.7943846485e-05 -0.000123351746783 -2.36703982013e-05 -3.51566003547e-05 -0.00012334945639 -2.39281708339e-05 -2.10672800993e-05 -0.000123347169581 -2.41859434666e-05 -6.97795984404e-06 -0.000123344886355 -2.44437160993e-05 7.11136041127e-06 -0.000123342606714 -2.4701488732e-05 2.12006806665e-05 -0.000123340330657 -2.49592613647e-05 3.52900009218e-05 -0.000118224159921 -2.40465475017e-05 4.80886511544e-05 -0.000102353613811 -2.09461673207e-05 5.57562755642e-05 -7.69189222462e-05 -1.62664463912e-05 5.44551139692e-05 -4.69341548476e-05 -1.0953952264e-05 4.33949355444e-05 -1.98403540346e-05 -5.95970670055e-06 2.58374265423e-05 -3.02293509956e-06 -2.13518927167e-06 9.05895716915e-06 -3.01325863346e-07 9.95731420031e-07 -2.65095482699e-06 -2.29730175703e-07 -8.32812777051e-07 -1.87756646351e-05 -2.09958274736e-06 -8.34516353238e-06 -4.53013688202e-05 -6.64283219465e-06 -2.44746986318e-05 -7.49557328956e-05 -1.26406695177e-05 -4.17178188537e-05 -0.000100311828852 -1.8094988175e-05 -5.28382389314e-05 -0.000116273552891 -2.15278720441e-05 -5.44257464714e-05 -0.000121464243432 -2.25850003874e-05 -4.70754359311e-05 -0.000121461895795 -2.26806523607e-05 -3.45403463189e-05 -0.000121459551268 -2.29359100481e-05 -2.06950929429e-05 -0.000121457209852 -2.31911677356e-05 -6.84983956696e-06 -0.000121454871545 -2.3446425423e-05 6.99541380906e-06 -0.000121452536349 -2.37016831105e-05 2.0840667185e-05 -0.000121450204263 -2.3956940798e-05 3.4685920561e-05 -0.000116254675274 -2.30281310911e-05 4.72319321308e-05 -0.000100290040206 -1.99552444028e-05 5.46376499612e-05 -7.49364392571e-05 -1.53949633635e-05 5.31253334383e-05 -4.52893082864e-05 -1.02612321335e-05 4.20211590089e-05 -1.87711824458e-05 -5.46956088473e-06 2.46888370066e-05 -2.65048883452e-06 -1.86932728041e-06 8.42057965868e-06 -2.27589755948e-07 8.37999622845e-07 -1.49726421676e-06 -7.2514920866e-08 -3.86937555525e-07 -1.48022314837e-05 -1.30184018637e-06 -6.16350363214e-06 -3.87226556534e-05 -4.85381212741e-06 -2.01171465965e-05 -6.64923324684e-05 -9.99064930804e-06 -3.61371225563e-05 -9.09477054788e-05 -1.49669612121e-05 -4.70846649917e-05 -0.000106858310397 -1.83362348143e-05 -4.93145497487e-05 -0.000112202251671 -1.9516057013e-05 -4.30166001673e-05 -0.000112199674904 -1.9658632892e-05 -3.16326768039e-05 -0.00011219709908 -1.98829856567e-05 -1.89413106439e-05 -0.000112194524198 -2.01073384213e-05 -6.24994448374e-06 -0.000112191950258 -2.03316911859e-05 6.44142167636e-06 -0.000112189377261 -2.05560439506e-05 1.91327878365e-05 -0.000112186805206 -2.07803967152e-05 3.18241539965e-05 -0.000106838118508 -1.98918617186e-05 4.32165172063e-05 -9.09254765181e-05 -1.70409590317e-05 4.95579297946e-05 -6.64734037727e-05 -1.28975158558e-05 4.73781610426e-05 -3.8711288735e-05 -8.30977675554e-06 3.64195476974e-05 -1.47983102451e-05 -4.12687230424e-06 2.02987725744e-05 -1.49698195393e-06 -1.19908927806e-06 6.21834911162e-06 -7.24865046991e-08 3.89311113981e-07 -3.57904346311e-07 0 -4.89432739808e-08 -8.40802480004e-06 -4.97271637568e-07 -3.11341077667e-06 -2.69729334369e-05 -2.60469490358e-06 -1.27923217965e-05 -5.03711015479e-05 -6.35774727174e-06 -2.59725970634e-05 -7.21036944355e-05 -1.0397867571e-05 -3.60143948082e-05 -8.69505311373e-05 -1.34033320766e-05 -3.90464600496e-05 -9.21355285768e-05 -1.4639912249e-05 -3.46341466275e-05 -9.21328022761e-05 -1.48474438128e-05 -2.55771931907e-05 -9.21300748442e-05 -1.50010131974e-05 -1.52968301128e-05 -9.21273462811e-05 -1.51545825819e-05 -5.01646703487e-06 -9.21246165867e-05 -1.53081519665e-05 5.26389604312e-06 -9.21218857611e-05 -1.5461721351e-05 1.55442591212e-05 -9.21191538042e-05 -1.56152907356e-05 2.5824622199e-05 -8.69298128482e-05 -1.48916032701e-05 3.48846039188e-05 -7.20823502617e-05 -1.25720649892e-05 3.93162260549e-05 -5.03541931976e-05 -9.18745985518e-06 3.62913358391e-05 -2.69637018837e-05 -5.50711555849e-06 2.62001491199e-05 -8.40545172633e-06 -2.3288674783e-06 1.29131477982e-05 -3.57854286901e-07 -4.81540962712e-07 3.13934299697e-06 0 4.92342680953e-08 0 0 0 -2.66435650132e-06 -4.22982982344e-08 -8.15583213336e-07 -1.37394555781e-05 -7.86528963912e-07 -5.48095510891e-06 -3.04827974526e-05 -2.82468303435e-06 -1.41817529924e-05 -4.73852403258e-05 -5.52089236472e-06 -2.21952943432e-05 -5.95768179811e-05 -7.79536453814e-06 -2.56001514451e-05 -6.39736169603e-05 -8.90184257715e-06 -2.33501686861e-05 -6.39712227265e-05 -9.13837078602e-06 -1.73635797678e-05 -6.39688267349e-05 -9.21165889884e-06 -1.03677178848e-05 -6.39664289853e-05 -9.28494701164e-06 -3.37185600165e-06 -6.39640294777e-05 -9.35823512442e-06 3.62400588143e-06 -6.39616282122e-05 -9.43152323718e-06 1.06198677645e-05 -6.39592251886e-05 -9.50481134999e-06 1.76157296475e-05 -5.9559100088e-05 -9.01959994847e-06 2.35992388686e-05 -4.7368239346e-05 -7.42877524307e-06 2.58421119409e-05 -3.04707365063e-05 -5.05804979739e-06 2.24055071561e-05 -1.37340710553e-05 -2.58058354663e-06 1.43209378759e-05 -2.66356133745e-06 -7.4864215588e-07 5.53352836621e-06 0 -4.22878546922e-08 8.21627790534e-07 0 0 0 0 0 -2.07815131287e-07 0 -9.53322417401e-09 -3.86404623015e-06 -4.23131484965e-08 -1.14798163022e-06 -1.25723283366e-05 -5.40043934195e-07 -4.78065219513e-06 -2.30924589565e-05 -1.70506115877e-06 -9.53131176233e-06 -3.13171792948e-05 -2.97525667902e-06 -1.24146044761e-05 -3.43924725845e-05 -3.71811612239e-06 -1.19265174793e-05 -3.43909614984e-05 -3.90632041919e-06 -8.98406975827e-06 -3.43894493433e-05 -3.92560687402e-06 -5.35549401176e-06 -3.4387936119e-05 -3.94489332877e-06 -1.72691826532e-06 -3.43864218257e-05 -3.96417978357e-06 1.90165748122e-06 -3.43849064634e-05 -3.98346623833e-06 5.53023322766e-06 -3.43833900319e-05 -4.00275269314e-06 9.1588089741e-06 -3.13063486124e-05 -3.74782331352e-06 1.2095187598e-05 -2.30830678188e-05 -2.89204275998e-06 1.25628314529e-05 -1.25669484537e-05 -1.62965459407e-06 9.63677368987e-06 -3.86268575517e-06 -5.23357891497e-07 4.83040057426e-06 -2.07795173632e-07 -4.22730031058e-08 1.15828443451e-06 0 0 9.59670501541e-09 0 0 0 0 0 0 0 0 -2.07813884506e-07 0 -8.33760343983e-09 -2.45672069701e-06 0 -6.12149107372e-07 -6.33609948146e-06 -7.26603228382e-08 -2.0459674474e-06 -1.01143156751e-05 -3.02413316712e-07 -3.36753546476e-06 -1.16484395388e-05 -5.31586221107e-07 -3.60633692866e-06 -1.1647931198e-05 -6.04511702267e-07 -2.79655556749e-06 -1.16474226493e-05 -6.05554503333e-07 -1.66521141918e-06 -1.16469138927e-05 -6.06597304384e-07 -5.33867270847e-07 -1.16464049282e-05 -6.07640105444e-07 5.97476877374e-07 -1.16458957557e-05 -6.08682906473e-07 1.72882102567e-06 -1.16453863754e-05 -6.09725707576e-07 2.86016517399e-06 -1.0110923132e-05 -5.32855858381e-07 3.66566453325e-06 -6.33384403245e-06 -2.99911317846e-07 3.41260513711e-06 -2.45610187006e-06 -7.23410837236e-08 2.0693836672e-06 -2.07796421589e-07 0 6.18186915562e-07 0 0 8.40108464178e-09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3.57893228335e-07 0 -2.71260231088e-08 -1.13999149484e-06 0 -1.76803737422e-07 -1.51703297379e-06 0 -3.14018431318e-07 -1.51700934366e-06 0 -2.73307054244e-07 -1.51698571095e-06 0 -1.62797134826e-07 -1.51696207573e-06 0 -5.22872155094e-08 -1.51693843798e-06 0 5.82227038637e-08 -1.51691479764e-06 0 1.68732623193e-07 -1.51689115479e-06 0 2.79242542564e-07 -1.13987018915e-06 0 3.19016051329e-07 -3.57865417571e-07 0 1.79159296441e-07 0 0 2.7417046972e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4.55811241514e-08 -8.81516279093e-09 0 -3.24887338234e-07 -7.16932456644e-08 -4.75046692927e-09 -5.08373597314e-07 -1.60543535768e-07 -2.09633843495e-08 -5.08367900399e-07 -1.95318732358e-07 -2.69731480789e-08 -5.08362202808e-07 -1.95534294745e-07 -1.6068078475e-08 -5.0835650448e-07 -1.9574985713e-07 -5.16300884409e-09 -5.08350805542e-07 -1.95965419515e-07 5.74206074616e-09 -5.08345105738e-07 -1.96180981897e-07 1.66471304119e-08 -5.08339405335e-07 -1.96396544284e-07 2.75522001022e-08 -3.2486425235e-07 -1.6082382788e-07 2.13172641829e-08 -4.55804930703e-08 -7.14416275979e-08 4.81395152444e-09 0 -8.81038317404e-09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -9.99356820271e-09 -1.9320581548e-09 0 -1.04858524826e-06 -2.04316396245e-07 -1.40770340184e-07 -3.51736577201e-06 -8.78057581318e-07 -7.81097399245e-07 -6.03260166691e-06 -1.77524637022e-06 -1.58148815397e-06 -7.09745026054e-06 -2.34809173109e-06 -1.78729493054e-06 -7.09716330651e-06 -2.50236742746e-06 -1.40732228854e-06 -7.09687623152e-06 -2.51468396211e-06 -8.37937337341e-07 -7.09658903551e-06 -2.52700049677e-06 -2.68552386097e-07 -7.09630171863e-06 -2.53931703141e-06 3.0083256505e-07 -7.09601428056e-06 -2.55163356606e-06 8.70217516183e-07 -7.09572672163e-06 -2.56395010072e-06 1.43960246751e-06 -6.03077670456e-06 -2.37664203187e-06 1.816880888e-06 -3.51634968963e-06 -1.74602401023e-06 1.60248908555e-06 -1.04839016308e-06 -8.53923348564e-07 7.89989545552e-07 -9.99352575448e-09 -2.0183536494e-07 1.42056358437e-07 0 -1.93196488679e-09 0 0 0 0 0 0 0 0 0 -9.99357123863e-09 -1.93202404693e-09 0 -1.83896180711e-06 -3.5590346985e-07 -3.83954673602e-07 -7.64227875362e-06 -1.6665949746e-06 -2.19441258526e-06 -1.55585394898e-05 -3.7156233668e-06 -5.21992966046e-06 -2.19841373607e-05 -5.57675294327e-06 -7.42448325622e-06 -2.44149707924e-05 -6.5462567979e-06 -7.38960018562e-06 -2.44138260022e-05 -6.77577228755e-06 -5.6157674177e-06 -2.44126801025e-05 -6.83508362682e-06 -3.34575877364e-06 -2.44115330932e-05 -6.89439496608e-06 -1.07575012959e-06 -2.44103849746e-05 -6.95370630535e-06 1.19425851439e-06 -2.44092357463e-05 -7.01301764462e-06 3.46426715847e-06 -2.44080854085e-05 -7.07232898389e-06 5.7342758023e-06 -2.19760622869e-05 -6.69215222447e-06 7.50273136256e-06 -1.55519377397e-05 -5.40911627262e-06 7.51923847931e-06 -7.63902494323e-06 -3.48911053622e-06 5.28010762695e-06 -1.83844206635e-06 -1.56699655445e-06 2.21712921184e-06 -9.99352271908e-09 -3.4831918692e-07 3.87072710848e-07 0 -1.93199898522e-09 0 0 0 0 0 0 -1.05861173873e-06 -2.01944331313e-07 -1.87908327532e-07 -8.43271533604e-06 -1.52280488396e-06 -2.52334969028e-06 -2.14781606899e-05 -4.35810059413e-06 -8.18715846503e-06 -3.52200602702e-05 -7.68409143201e-06 -1.42663545775e-05 -4.53072960851e-05 -1.03065845422e-05 -1.72578590968e-05 -4.89758998522e-05 -1.14812586848e-05 -1.60501874382e-05 -4.89737699055e-05 -1.17221147076e-05 -1.1992245596e-05 -4.89716374737e-05 -1.18618185679e-05 -7.15453103906e-06 -4.89695025567e-05 -1.20015224281e-05 -2.31681648206e-06 -4.89673651546e-05 -1.21412262884e-05 2.52089807498e-06 -4.89652252672e-05 -1.22809301486e-05 7.35861263195e-06 -4.89630828946e-05 -1.24206340088e-05 1.21963271889e-05 -4.52917240821e-05 -1.18330061466e-05 1.62496814681e-05 -3.52057003641e-05 -9.8787040858e-06 1.74432915658e-05 -2.14687279714e-05 -6.99444842823e-06 1.44141920892e-05 -8.42919398538e-06 -3.91134450835e-06 8.27150108303e-06 -1.0583519324e-06 -1.41273022597e-06 2.54698057874e-06 0 -2.00343435658e-07 1.89194068922e-07 0 0 -4.55813765726e-08 -8.81232415232e-09 0 -4.52580328974e-06 -6.882280262e-07 -1.21541351735e-06 -1.88128867635e-05 -3.18006619668e-06 -7.08065433049e-06 -3.82122366765e-05 -7.29871768742e-06 -1.68770699925e-05 -5.68060894299e-05 -1.15757787663e-05 -2.51085232855e-05 -6.98213145702e-05 -1.46627944694e-05 -2.81647569286e-05 -7.44482833626e-05 -1.58708585347e-05 -2.53637410124e-05 -7.44454591859e-05 -1.60806628584e-05 -1.88022840296e-05 -7.44426323031e-05 -1.63043064255e-05 -1.12336550616e-05 -7.44398027142e-05 -1.65279499926e-05 -3.66502609357e-06 -7.4436970419e-05 -1.67515935597e-05 3.90360287442e-06 -7.44341354177e-05 -1.69752371268e-05 1.14722318424e-05 -7.44312977102e-05 -1.7198880694e-05 1.90408608105e-05 -6.98002241787e-05 -1.64429517186e-05 2.56014156612e-05 -5.67853455104e-05 -1.39416331107e-05 2.84047544702e-05 -3.81968519985e-05 -1.02973662866e-05 2.53311043914e-05 -1.88053681272e-05 -6.31587379731e-06 1.70377299731e-05 -4.52427213009e-06 -2.82142022038e-06 7.14932934688e-06 -4.55802406076e-08 -6.59082444579e-07 1.22461295994e-06 -8.81322188398e-09 0 -3.70495116841e-07 -6.27430337898e-08 -1.07282299261e-08 -9.23275917847e-06 -1.2006090651e-06 -2.92820090909e-06 -2.88131161323e-05 -4.56858513621e-06 -1.23230500617e-05 -5.28981769613e-05 -9.51201947968e-06 -2.50435213357e-05 -7.4935000826e-05 -1.43340965921e-05 -3.45838961552e-05 -8.98904725201e-05 -1.7619755948e-05 -3.73739573743e-05 -9.51086936951e-05 -1.87830385062e-05 -3.31030229736e-05 -9.51055737753e-05 -1.89585096681e-05 -2.44405348662e-05 -9.51024525105e-05 -1.92370159746e-05 -1.46189859706e-05 -9.50993299005e-05 -1.95155222811e-05 -4.79743707504e-06 -9.50962059455e-05 -1.97940285876e-05 5.02411182048e-06 -9.50930806455e-05 -2.00725348941e-05 1.48456607162e-05 -9.50899540004e-05 -2.03510412006e-05 2.46672096117e-05 -8.98667883707e-05 -1.95057175565e-05 3.33330440496e-05 -7.49106408718e-05 -1.66888434746e-05 3.76250883664e-05 -5.28788745743e-05 -1.25843718649e-05 3.48462996819e-05 -2.88025385677e-05 -8.04690574783e-06 2.52624178966e-05 -9.22977160457e-06 -3.93812844261e-06 1.24400567279e-05 -3.70441729494e-07 -1.11652934998e-06 2.9523320963e-06 -6.27660940485e-08 1.07917127601e-08 -8.33893126259e-07 -9.79565730018e-08 -5.96593213177e-08 -1.24391341674e-05 -1.42119724627e-06 -4.19639256297e-06 -3.49494947076e-05 -5.10291490764e-06 -1.574161858e-05 -6.16532497674e-05 -1.03269905428e-05 -3.00157862536e-05 -8.55750244038e-05 -1.53190010838e-05 -4.0223936624e-05 -0.000101508778981 -1.86486432988e-05 -4.27923663884e-05 -0.000106989964928 -1.97838223336e-05 -3.76263554167e-05 -0.000106986783976 -1.99462250303e-05 -2.7729995513e-05 -0.000106983603279 -2.02416560365e-05 -1.65967405247e-05 -0.000106980422835 -2.05370870427e-05 -5.46348553629e-06 -0.000106977242645 -2.08325180489e-05 5.66976945209e-06 -0.000106974062708 -2.11279490551e-05 1.68030244406e-05 -0.000106970883026 -2.14233800613e-05 2.7936279429e-05 -0.000101484369648 -2.05558683169e-05 3.78386188693e-05 -8.55492388766e-05 -1.76467280549e-05 4.30375450694e-05 -6.16321486003e-05 -1.33940179465e-05 4.05000553176e-05 -3.49373867655e-05 -8.67046701886e-06 3.02642070315e-05 -1.24353179874e-05 -4.35529071018e-06 1.58880136826e-05 -8.33740385837e-07 -1.30791539251e-06 4.23271076767e-06 -9.78996699086e-08 6.0013837541e-08 -1.01816102321e-06 -9.79565730166e-08 -9.78737111102e-08 -1.33678149838e-05 -1.4211972463e-06 -4.59131911055e-06 -3.6691014732e-05 -5.10291490764e-06 -1.6721883397e-05 -6.41529444709e-05 -1.03269905428e-05 -3.14277451888e-05 -8.86278567716e-05 -1.53190010838e-05 -4.18343144037e-05 -0.000104833793523 -1.86486432987e-05 -4.43464633963e-05 -0.000110378850376 -1.97838223336e-05 -3.89249791468e-05 -0.000110375635026 -1.99462250304e-05 -2.86741293909e-05 -0.000110372420308 -2.02416560366e-05 -1.71643293495e-05 -0.000110369206222 -2.05370870428e-05 -5.65452930824e-06 -0.000110365992769 -2.0832518049e-05 5.85527073307e-06 -0.000110362779948 -2.11279490552e-05 1.73650707744e-05 -0.000110359567759 -2.14233800614e-05 2.88748708157e-05 -0.000104809019877 -2.05558683169e-05 3.91323998156e-05 -8.86014497474e-05 -1.76467280549e-05 4.45899670342e-05 -6.41311239261e-05 -1.33940179466e-05 4.21141605143e-05 -3.66783392665e-05 -8.67046701886e-06 3.16843280114e-05 -1.33637137906e-05 -4.35529071017e-06 1.68765960137e-05 -1.01796332397e-06 -1.30791539254e-06 4.6315105311e-06 -9.78996699221e-08 9.84558018953e-08 -1.01816102321e-06 -9.79565730066e-08 -9.78737111116e-08 -1.33678149838e-05 -1.42119724625e-06 -4.59131911052e-06 -3.66910147321e-05 -5.10291490763e-06 -1.6721883397e-05 -6.41529444709e-05 -1.03269905428e-05 -3.14277451888e-05 -8.86278567716e-05 -1.53190010838e-05 -4.18343144036e-05 -0.000104833793523 -1.86486432987e-05 -4.43464633962e-05 -0.000110378850376 -1.97838223336e-05 -3.89249791468e-05 -0.000110375635026 -1.99462250303e-05 -2.86741293909e-05 -0.000110372420308 -2.02416560366e-05 -1.71643293496e-05 -0.000110369206222 -2.05370870427e-05 -5.6545293082e-06 -0.000110365992769 -2.0832518049e-05 5.85527073304e-06 -0.000110362779948 -2.11279490552e-05 1.73650707744e-05 -0.000110359567759 -2.14233800614e-05 2.88748708158e-05 -0.000104809019877 -2.05558683169e-05 3.91323998156e-05 -8.86014497474e-05 -1.76467280549e-05 4.45899670342e-05 -6.41311239261e-05 -1.33940179466e-05 4.21141605143e-05 -3.66783392665e-05 -8.67046701883e-06 3.16843280114e-05 -1.33637137906e-05 -4.35529071016e-06 1.68765960136e-05 -1.01796332401e-06 -1.3079153925e-06 4.63151053117e-06 -9.78996698814e-08 9.84558018569e-08 -1.01816102321e-06 -9.79565730083e-08 -9.78737111175e-08 -1.33678149838e-05 -1.42119724629e-06 -4.59131911059e-06 -3.6691014732e-05 -5.10291490763e-06 -1.6721883397e-05 -6.41529444709e-05 -1.03269905428e-05 -3.14277451888e-05 -8.86278567716e-05 -1.53190010838e-05 -4.18343144036e-05 -0.000104833793523 -1.86486432987e-05 -4.43464633962e-05 -0.000110378850376 -1.97838223336e-05 -3.89249791468e-05 -0.000110375635026 -1.99462250304e-05 -2.86741293909e-05 -0.000110372420308 -2.02416560366e-05 -1.71643293495e-05 -0.000110369206222 -2.05370870428e-05 -5.65452930819e-06 -0.000110365992769 -2.0832518049e-05 5.85527073309e-06 -0.000110362779948 -2.11279490552e-05 1.73650707744e-05 -0.000110359567759 -2.14233800614e-05 2.88748708158e-05 -0.000104809019877 -2.05558683169e-05 3.91323998155e-05 -8.86014497474e-05 -1.76467280549e-05 4.45899670342e-05 -6.41311239261e-05 -1.33940179466e-05 4.21141605143e-05 -3.66783392665e-05 -8.67046701886e-06 3.16843280115e-05 -1.33637137906e-05 -4.35529071018e-06 1.68765960137e-05 -1.01796332396e-06 -1.30791539251e-06 4.63151053113e-06 -9.78996699003e-08 9.84558019208e-08 -1.01816102321e-06 -9.79565729857e-08 -9.78737110614e-08 -1.33678149838e-05 -1.42119724626e-06 -4.5913191106e-06 -3.66910147321e-05 -5.10291490761e-06 -1.67218833969e-05 -6.41529444709e-05 -1.03269905428e-05 -3.14277451888e-05 -8.86278567716e-05 -1.53190010838e-05 -4.18343144036e-05 -0.000104833793523 -1.86486432987e-05 -4.43464633963e-05 -0.000110378850376 -1.97838223336e-05 -3.89249791468e-05 -0.000110375635026 -1.99462250304e-05 -2.8674129391e-05 -0.000110372420308 -2.02416560365e-05 -1.71643293496e-05 -0.000110369206222 -2.05370870428e-05 -5.65452930823e-06 -0.000110365992769 -2.0832518049e-05 5.8552707331e-06 -0.000110362779948 -2.11279490552e-05 1.73650707743e-05 -0.000110359567759 -2.14233800613e-05 2.88748708157e-05 -0.000104809019877 -2.05558683169e-05 3.91323998156e-05 -8.86014497474e-05 -1.76467280549e-05 4.45899670342e-05 -6.41311239261e-05 -1.33940179465e-05 4.21141605143e-05 -3.66783392665e-05 -8.67046701882e-06 3.16843280115e-05 -1.33637137906e-05 -4.35529071012e-06 1.68765960137e-05 -1.01796332397e-06 -1.30791539245e-06 4.63151053114e-06 -9.78996698825e-08 9.84558019081e-08 -8.34657792965e-07 -6.27430337548e-08 -5.96714490282e-08 -1.24870187484e-05 -1.20060906506e-06 -4.20564428447e-06 -3.51878417074e-05 -4.56858513626e-06 -1.58181632392e-05 -6.22238581958e-05 -9.51201947972e-06 -3.02381983708e-05 -8.64978949062e-05 -1.43340965921e-05 -4.06026126624e-05 -0.000102665468288 -1.7619755948e-05 -4.32482038652e-05 -0.00010821974727 -1.87830385062e-05 -3.80472038539e-05 -0.000108216550768 -1.89585096681e-05 -2.80434062743e-05 -0.000108213354495 -1.92370159746e-05 -1.67844462155e-05 -0.000108210158451 -1.95155222811e-05 -5.52548615675e-06 -0.000108206962636 -1.97940285876e-05 5.73347390201e-06 -0.00010820376705 -2.00725348941e-05 1.69924339608e-05 -0.000108200571693 -2.03510412006e-05 2.82513940197e-05 -0.000102640928796 -1.95057175564e-05 3.82612558089e-05 -8.64719573687e-05 -1.66888434746e-05 4.34955264576e-05 -6.22026361551e-05 -1.2584371865e-05 4.08810471762e-05 -3.51756771734e-05 -8.04690574782e-06 3.04883348299e-05 -1.2483191368e-05 -3.93812844257e-06 1.59652272744e-05 -8.34504932744e-07 -1.11652934997e-06 4.24203644432e-06 -6.27660940438e-08 6.00260300874e-08 -3.71068004216e-07 -8.81232415614e-09 -1.07288422061e-08 -9.32309709888e-06 -6.88228026196e-07 -2.94347056804e-06 -2.93462570624e-05 -3.18006619669e-06 -1.24808335249e-05 -5.4269672591e-05 -7.29871768741e-06 -2.55521802103e-05 -7.72550032278e-05 -1.15757787663e-05 -3.54985495612e-05 -9.28940531763e-05 -1.46627944694e-05 -3.85124474551e-05 -9.83460597351e-05 -1.58708585347e-05 -3.41732428984e-05 -9.83428852827e-05 -1.60806628585e-05 -2.52416351343e-05 -9.83397094437e-05 -1.63043064256e-05 -1.50985040301e-05 -9.83365322178e-05 -1.65279499927e-05 -4.95537292611e-06 -9.83333536052e-05 -1.67515935598e-05 5.18775817801e-06 -9.8330173606e-05 -1.69752371269e-05 1.53308892821e-05 -9.83269922199e-05 -1.7198880694e-05 2.54740203863e-05 -9.28699429115e-05 -1.64429517186e-05 3.44091054088e-05 -7.72301977195e-05 -1.39416331107e-05 3.87699890933e-05 -5.42500468271e-05 -1.02973662865e-05 3.57671598746e-05 -2.93355418472e-05 -6.31587379727e-06 2.57752060516e-05 -9.32008689835e-06 -2.82142022033e-06 1.25992393421e-05 -3.71014544292e-07 -6.59082444612e-07 2.96771810389e-06 -8.8132218712e-09 1.0792328364e-08 -4.55932530097e-08 0 0 -4.57427551259e-06 -2.01944331297e-07 -1.22156342354e-06 -1.92686658578e-05 -1.52280488393e-06 -7.19091676104e-06 -3.96019417525e-05 -4.35810059414e-06 -1.73367891095e-05 -5.93824195114e-05 -7.68409143202e-06 -2.60451244008e-05 -7.33461580009e-05 -1.03065845423e-05 -2.94138279072e-05 -7.83253355012e-05 -1.14812586849e-05 -2.65782973858e-05 -7.83224214958e-05 -1.17221147077e-05 -1.97196915152e-05 -7.83195048588e-05 -1.18618185679e-05 -1.17822134916e-05 -7.83165855899e-05 -1.20015224281e-05 -3.84473546789e-06 -7.83136636895e-05 -1.21412262884e-05 4.09274255555e-06 -7.83107391573e-05 -1.22809301486e-05 1.20302205792e-05 -7.83078119934e-05 -1.24206340089e-05 1.99676986027e-05 -7.33244077141e-05 -1.18330061466e-05 2.68253178853e-05 -5.93610654297e-05 -9.87870408585e-06 2.96629457087e-05 -3.95861734331e-05 -6.99444842823e-06 2.6275153097e-05 -1.92610140404e-05 -3.91134450835e-06 1.7501486224e-05 -4.57273123889e-06 -1.41273022594e-06 7.2605813628e-06 -4.55921168441e-08 -2.00343435658e-07 1.23080513268e-06 0 0 0 0 0 -1.06388600886e-06 -1.93202404704e-09 -1.8811998954e-07 -8.60936852109e-06 -3.55903469915e-07 -2.55136912254e-06 -2.22612842172e-05 -1.66659497457e-06 -8.3916345162e-06 -3.69371636913e-05 -3.71562336681e-06 -1.48052650225e-05 -4.78628093336e-05 -5.57675294327e-06 -1.80735402886e-05 -5.18636430396e-05 -6.54625679791e-06 -1.68891478813e-05 -5.1861427763e-05 -6.77577228762e-06 -1.2635079574e-05 -5.18592101774e-05 -6.83508362684e-06 -7.53839669865e-06 -5.18569902829e-05 -6.89439496613e-06 -2.44171382328e-06 -5.18547680792e-05 -6.95370630539e-06 2.65496905206e-06 -5.18525435665e-05 -7.01301764466e-06 7.75165192732e-06 -5.18503167447e-05 -7.07232898391e-06 1.28483348027e-05 -4.78466400388e-05 -6.69215222446e-06 1.70974609551e-05 -3.69223159276e-05 -5.40911627264e-06 1.82665914492e-05 -2.22516027922e-05 -3.48911053623e-06 1.49581119164e-05 -8.60579073356e-06 -1.56699655446e-06 8.47790694453e-06 -1.06362503483e-06 -3.48319186948e-07 2.57524221563e-06 0 -1.93199900056e-09 1.89407034844e-07 0 0 0 0 0 -9.99414202745e-09 0 0 -1.85431864632e-06 -1.93205812722e-09 -3.84966863673e-07 -7.82903220533e-06 -2.04316396227e-07 -2.2227249605e-06 -1.61526547795e-05 -8.78057581307e-07 -5.35562004256e-06 -2.30211222529e-05 -1.7752463702e-06 -7.69469654526e-06 -2.56424211608e-05 -2.34809173111e-06 -7.70052383844e-06 -2.56412347506e-05 -2.50236742748e-06 -5.86076009021e-06 -2.56400473217e-05 -2.51468396206e-06 -3.49186942538e-06 -2.56388588741e-05 -2.52700049678e-06 -1.12297876063e-06 -2.56376694079e-05 -2.53931703136e-06 1.24591190416e-06 -2.56364789229e-05 -2.55163356604e-06 3.61480256903e-06 -2.56352874194e-05 -2.56395010068e-06 5.98369323376e-06 -2.30127722483e-05 -2.37664203188e-06 7.81775325888e-06 -1.61458675897e-05 -1.74602401023e-06 7.79247869398e-06 -7.8257174327e-06 -8.53923348543e-07 5.41720666127e-06 -1.85379507936e-06 -2.01835364937e-07 2.2457126096e-06 -9.99409348284e-09 -1.93196486638e-09 3.88092307196e-07 0 0 0 0 0 0 0 0 0 0 0 -9.99413900089e-09 0 0 -1.05386013322e-06 0 -1.40928923633e-07 -3.57114026276e-06 -8.81516280534e-09 -7.86020878795e-07 -6.17617134565e-06 -7.16932456846e-08 -1.60275116426e-06 -7.28814730878e-06 -1.60543535779e-07 -1.8204318524e-06 -7.2878543768e-06 -1.95318732331e-07 -1.43550986646e-06 -7.28756133142e-06 -1.95534294767e-07 -8.54737066433e-07 -7.28726817261e-06 -1.95749857137e-07 -2.73964266435e-07 -7.28697490036e-06 -1.95965419513e-07 3.06808533568e-07 -7.28668151459e-06 -1.96180981882e-07 8.87581333616e-07 -7.28638801545e-06 -1.96396544246e-07 1.46835413365e-06 -6.1743123172e-06 -1.60823827901e-07 1.85050017233e-06 -3.57011119285e-06 -7.14416276325e-08 1.6240071672e-06 -1.05366416244e-06 -8.81038317217e-09 7.94964459636e-07 -9.99409654421e-09 0 1.42216245926e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4.55930005387e-08 0 0 -3.25472128845e-07 0 -4.75073816965e-09 -5.09723915093e-07 0 -2.09689611725e-08 -5.09718204719e-07 0 -2.69836914723e-08 -5.09712493669e-07 0 -1.60743638411e-08 -5.09706781892e-07 0 -5.16503616623e-09 -5.09701069435e-07 0 5.74429141842e-09 -5.09695356225e-07 0 1.66536191989e-08 -5.09689642323e-07 0 2.75629468888e-08 -3.25449007077e-07 0 2.13229272481e-08 -4.55923693626e-08 0 4.81422605215e-09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.05249157198e-08 -1.93217563613e-09 0 -4.80045039432e-08 -1.07479312064e-08 0 -4.80044408225e-08 -1.7620240119e-08 0 -4.80043777355e-08 -1.7622369131e-08 0 -4.8004314614e-08 -1.7624498142e-08 0 -4.80042515209e-08 -1.76266271531e-08 0 -4.80041883463e-08 -1.76287561648e-08 0 -4.8004125268e-08 -1.76308851734e-08 0 -1.05248914757e-08 -1.07416451439e-08 0 0 -1.9318473941e-09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.07503503199e-07 -3.8145346664e-08 0 -1.3654341315e-06 -2.8926940486e-07 -1.24123960486e-07 -2.81697691966e-06 -7.64147831146e-07 -4.3616934285e-07 -3.46845387888e-06 -1.1288790622e-06 -6.19598537015e-07 -3.46834427583e-06 -1.23514311725e-06 -5.11713733675e-07 -3.4682346389e-06 -1.24006701645e-06 -3.04766797091e-07 -3.46812496809e-06 -1.24499091565e-06 -9.78198605649e-08 -3.46801526345e-06 -1.24991481485e-06 1.09127075956e-07 -3.46790552485e-06 -1.25483871405e-06 3.16074012509e-07 -3.4677957524e-06 -1.25976261326e-06 5.23020948972e-07 -2.81632774461e-06 -1.14190210527e-06 6.2954381612e-07 -1.36515473318e-06 -7.57835761972e-07 4.41918327943e-07 -2.07489351531e-07 -2.85598076103e-07 1.25490887401e-07 0 -3.80707114892e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4.98925144843e-07 -9.17137820122e-08 -1.05634562873e-08 -3.62849564976e-06 -7.27352665118e-07 -6.29036036907e-07 -8.91558830898e-06 -2.0456124694e-06 -2.15658340221e-06 -1.37200168377e-05 -3.41319444691e-06 -3.59766718106e-06 -1.56086298657e-05 -4.19059891901e-06 -3.85436554183e-06 -1.56078922543e-05 -4.38982946284e-06 -2.98529825201e-06 -1.56071539416e-05 -4.42644026271e-06 -1.77787104414e-06 -1.56064149276e-05 -4.46305106258e-06 -5.70443836447e-07 -1.56056752122e-05 -4.49966186244e-06 6.36983371351e-07 -1.56049347955e-05 -4.53627266232e-06 1.84441057914e-06 -1.56041936774e-05 -4.57288346219e-06 3.05183778692e-06 -1.37149749951e-05 -4.29846424571e-06 3.916640421e-06 -8.91191877476e-06 -3.35764779943e-06 3.64557511502e-06 -3.62718819566e-06 -1.96498836366e-06 2.18158064233e-06 -4.9883800323e-07 -7.03234351415e-07 6.35339298174e-07 0 -9.14128933077e-08 1.06439332286e-08 0 0 0 0 0 0 0 0 -2.0750586074e-07 -3.8118808551e-08 0 -3.92108607559e-06 -6.74383856729e-07 -7.32655844454e-07 -1.31653004019e-05 -2.493317182e-06 -3.64917200946e-06 -2.41356118963e-05 -4.98236656572e-06 -7.85536543015e-06 -3.25902811929e-05 -7.1094492987e-06 -1.04929491758e-05 -3.57279247256e-05 -8.15599898231e-06 -1.01630024809e-05 -3.57262325333e-05 -8.4008953263e-06 -7.67066875758e-06 -3.57245380579e-05 -8.50324513459e-06 -4.57283349349e-06 -3.57228412994e-05 -8.60559494289e-06 -1.47499822944e-06 -3.57211422577e-05 -8.70794475119e-06 1.62283703474e-06 -3.5719440933e-05 -8.8102945595e-06 4.72067229885e-06 -3.5717737325e-05 -8.91264436779e-06 7.81850756299e-06 -3.2578134507e-05 -8.46738428563e-06 1.03055451864e-05 -2.41250818375e-05 -6.94179314886e-06 1.06177935697e-05 -1.31592656658e-05 -4.6661440778e-06 7.94260309569e-06 -3.919543368e-06 -2.31805834025e-06 3.68748001553e-06 -2.07486991796e-07 -6.49288628641e-07 7.38973869567e-07 0 -3.80972518566e-08 0 0 0 0 0 0 -1.57325513919e-06 -2.50602521745e-07 -1.99008787949e-07 -1.1013119725e-05 -1.6929344779e-06 -2.91047947494e-06 -2.64463459174e-05 -4.65468125e-06 -9.26674119776e-06 -4.22920715144e-05 -8.06121498619e-06 -1.58269269097e-05 -5.37952788315e-05 -1.07095243616e-05 -1.89435097616e-05 -5.79587572987e-05 -1.18719288019e-05 -1.75389153488e-05 -5.79561878553e-05 -1.21211713632e-05 -1.30912215666e-05 -5.79536148137e-05 -1.23024806808e-05 -7.81366120085e-06 -5.79510381741e-05 -1.24837899984e-05 -2.53610083509e-06 -5.79484579363e-05 -1.2665099316e-05 2.74145953081e-06 -5.79458741006e-05 -1.28464086335e-05 8.01901989669e-06 -5.79432866667e-05 -1.30277179512e-05 1.32965802625e-05 -5.37764074974e-05 -1.24325250543e-05 1.77405008959e-05 -4.22744444657e-05 -1.03994058459e-05 1.91346493359e-05 -2.64344426883e-05 -7.40255034156e-06 1.59845214591e-05 -1.10083418858e-05 -4.19345337048e-06 9.36072723888e-06 -1.57279559317e-06 -1.56893235507e-06 2.93792977541e-06 0 -2.48046579494e-07 2.00375249166e-07 0 0 -1.05249308868e-08 -1.93200510614e-09 0 -4.18085696214e-06 -5.2123072411e-07 -8.25846240152e-07 -1.86627336785e-05 -2.64278212633e-06 -5.91380820927e-06 -3.87172724254e-05 -6.3596545475e-06 -1.51427665502e-05 -5.81332065834e-05 -1.03274095639e-05 -2.32016809047e-05 -7.18079854321e-05 -1.32522398747e-05 -2.63989342614e-05 -7.6684709038e-05 -1.44367605855e-05 -2.3923336001e-05 -7.66815631152e-05 -1.46739076633e-05 -1.77636188227e-05 -7.66784134395e-05 -1.49156883056e-05 -1.06130135297e-05 -7.66752600109e-05 -1.51574689479e-05 -3.4624082366e-06 -7.66721028292e-05 -1.53992495902e-05 3.68819705648e-06 -7.66689418947e-05 -1.56410302325e-05 1.08388023496e-05 -7.66657772071e-05 -1.58828108748e-05 1.79894076426e-05 -7.17845702268e-05 -1.51916771535e-05 2.41479621168e-05 -5.81104206897e-05 -1.28284184079e-05 2.66248076004e-05 -3.87006620687e-05 -9.37047382518e-06 2.3408526403e-05 -1.8654858864e-05 -5.61577106785e-06 1.5287765643e-05 -4.17939275882e-06 -2.38860043182e-06 5.9712200076e-06 -1.05248762881e-08 -5.05955799772e-07 8.3180540765e-07 -1.93201792747e-09 0 -5.85304196146e-08 -8.81263955288e-09 0 -6.26193671872e-06 -6.44528301898e-07 -1.45465875632e-06 -2.35227605923e-05 -3.02177111536e-06 -8.09632604386e-06 -4.61493447771e-05 -7.00020497343e-06 -1.8842256391e-05 -6.75579685896e-05 -1.11531156589e-05 -2.76700158822e-05 -8.24255663493e-05 -1.41598096205e-05 -3.08510368154e-05 -8.76850849516e-05 -1.5342018503e-05 -2.77138735022e-05 -8.76816727962e-05 -1.55725950072e-05 -2.05345558673e-05 -8.76782573388e-05 -1.58361985233e-05 -1.22753297129e-05 -8.76748385794e-05 -1.60998020393e-05 -4.01610355843e-06 -8.7671416518e-05 -1.63634055554e-05 4.24312259603e-06 -8.76679911545e-05 -1.66270090714e-05 1.25023487503e-05 -8.7664562489e-05 -1.68906125875e-05 2.07615749048e-05 -8.23999953594e-05 -1.6168098989e-05 2.79415924719e-05 -6.75325792951e-05 -1.369389531e-05 3.1088303832e-05 -4.61302150722e-05 -1.00797151792e-05 2.78999551613e-05 -2.35131041708e-05 -6.13932169515e-06 1.90159074246e-05 -6.25974166034e-06 -2.7075190215e-06 8.17455355531e-06 -5.85292143636e-08 -6.20551715581e-07 1.46548874401e-06 -8.812906479e-09 0 -9.60222953632e-08 -8.81263952956e-09 0 -6.89228685109e-06 -6.44528301865e-07 -1.6554999898e-06 -2.4907184159e-05 -3.02177111532e-06 -8.74143142649e-06 -4.82611030422e-05 -7.0002049734e-06 -1.98948512359e-05 -7.02504648459e-05 -1.11531156589e-05 -2.89392862946e-05 -8.54683063507e-05 -1.41598096205e-05 -3.21208902793e-05 -9.08392270175e-05 -1.5342018503e-05 -2.87979210697e-05 -9.08357205666e-05 -1.55725950073e-05 -2.13275169613e-05 -9.08322108922e-05 -1.58361985233e-05 -1.27510414274e-05 -9.08286979942e-05 -1.60998020394e-05 -4.17456589342e-06 -9.08251818725e-05 -1.63634055554e-05 4.40190964052e-06 -9.08216625271e-05 -1.66270090715e-05 1.29783851744e-05 -9.08181399582e-05 -1.68906125875e-05 2.15548607083e-05 -8.54419725017e-05 -1.6168098989e-05 2.90264715343e-05 -7.02241655621e-05 -1.369389531e-05 3.23612648805e-05 -4.8241112996e-05 -1.00797151792e-05 2.91755842332e-05 -2.48969374721e-05 -6.13932169515e-06 2.00765043903e-05 -6.88985116162e-06 -2.70751902149e-06 8.82575211098e-06 -9.60199563139e-08 -6.20551715567e-07 1.66797720653e-06 -8.81290649677e-09 0 -9.60222953592e-08 -8.81263953805e-09 0 -6.89228685109e-06 -6.44528301884e-07 -1.65549998975e-06 -2.4907184159e-05 -3.02177111533e-06 -8.74143142658e-06 -4.82611030422e-05 -7.00020497341e-06 -1.98948512359e-05 -7.02504648459e-05 -1.11531156589e-05 -2.89392862946e-05 -8.54683063507e-05 -1.41598096205e-05 -3.21208902793e-05 -9.08392270175e-05 -1.5342018503e-05 -2.87979210697e-05 -9.08357205666e-05 -1.55725950073e-05 -2.13275169613e-05 -9.08322108922e-05 -1.58361985233e-05 -1.27510414274e-05 -9.08286979942e-05 -1.60998020394e-05 -4.1745658934e-06 -9.08251818725e-05 -1.63634055554e-05 4.40190964052e-06 -9.08216625271e-05 -1.66270090715e-05 1.29783851745e-05 -9.08181399582e-05 -1.68906125875e-05 2.15548607083e-05 -8.54419725017e-05 -1.6168098989e-05 2.90264715342e-05 -7.02241655621e-05 -1.369389531e-05 3.23612648805e-05 -4.82411129959e-05 -1.00797151792e-05 2.91755842332e-05 -2.48969374721e-05 -6.13932169515e-06 2.00765043903e-05 -6.88985116163e-06 -2.70751902148e-06 8.82575211087e-06 -9.60199563223e-08 -6.20551715569e-07 1.66797720659e-06 -8.81290649426e-09 0 -9.60222953653e-08 -8.81263953277e-09 0 -6.89228685109e-06 -6.44528301862e-07 -1.65549998976e-06 -2.4907184159e-05 -3.02177111534e-06 -8.74143142652e-06 -4.82611030422e-05 -7.00020497341e-06 -1.98948512359e-05 -7.02504648459e-05 -1.11531156589e-05 -2.89392862946e-05 -8.54683063507e-05 -1.41598096205e-05 -3.21208902793e-05 -9.08392270175e-05 -1.5342018503e-05 -2.87979210698e-05 -9.08357205666e-05 -1.55725950073e-05 -2.13275169612e-05 -9.08322108922e-05 -1.58361985233e-05 -1.27510414274e-05 -9.08286979942e-05 -1.60998020394e-05 -4.17456589339e-06 -9.08251818725e-05 -1.63634055554e-05 4.40190964052e-06 -9.08216625271e-05 -1.66270090715e-05 1.29783851745e-05 -9.08181399581e-05 -1.68906125875e-05 2.15548607083e-05 -8.54419725017e-05 -1.6168098989e-05 2.90264715342e-05 -7.02241655621e-05 -1.369389531e-05 3.23612648804e-05 -4.82411129959e-05 -1.00797151792e-05 2.91755842332e-05 -2.48969374721e-05 -6.13932169515e-06 2.00765043903e-05 -6.88985116164e-06 -2.70751902149e-06 8.82575211091e-06 -9.60199562492e-08 -6.20551715561e-07 1.66797720661e-06 -8.81290647899e-09 0 -9.60222953627e-08 -8.81263951796e-09 0 -6.89228685109e-06 -6.44528301854e-07 -1.65549998985e-06 -2.49071841591e-05 -3.02177111538e-06 -8.74143142648e-06 -4.82611030422e-05 -7.00020497342e-06 -1.98948512359e-05 -7.02504648459e-05 -1.11531156589e-05 -2.89392862946e-05 -8.54683063507e-05 -1.41598096205e-05 -3.21208902793e-05 -9.08392270175e-05 -1.5342018503e-05 -2.87979210697e-05 -9.08357205666e-05 -1.55725950073e-05 -2.13275169613e-05 -9.08322108922e-05 -1.58361985233e-05 -1.27510414274e-05 -9.08286979942e-05 -1.60998020393e-05 -4.17456589342e-06 -9.08251818725e-05 -1.63634055554e-05 4.40190964053e-06 -9.0821662527e-05 -1.66270090715e-05 1.29783851744e-05 -9.08181399582e-05 -1.68906125875e-05 2.15548607083e-05 -8.54419725017e-05 -1.6168098989e-05 2.90264715343e-05 -7.02241655621e-05 -1.36938953101e-05 3.23612648805e-05 -4.82411129959e-05 -1.00797151792e-05 2.91755842332e-05 -2.48969374721e-05 -6.13932169515e-06 2.00765043903e-05 -6.88985116164e-06 -2.70751902149e-06 8.82575211091e-06 -9.60199563188e-08 -6.20551715555e-07 1.66797720655e-06 -8.81290647957e-09 0 -5.8542325733e-08 -1.93200515263e-09 0 -6.27818341962e-06 -5.21230724099e-07 -1.45640273152e-06 -2.36482102974e-05 -2.64278212635e-06 -8.12394728944e-06 -4.65062062685e-05 -6.35965454752e-06 -1.89506551905e-05 -6.81962143148e-05 -1.0327409564e-05 -2.78841337479e-05 -8.32810657175e-05 -1.32522398746e-05 -3.11318516008e-05 -8.86193141019e-05 -1.44367605855e-05 -2.79847874049e-05 -8.8615880746e-05 -1.46739076633e-05 -2.07387837808e-05 -8.86124440355e-05 -1.49156883056e-05 -1.23974983561e-05 -8.86090039705e-05 -1.51574689479e-05 -4.05621293137e-06 -8.86055605508e-05 -1.53992495902e-05 4.2850724934e-06 -8.86021137766e-05 -1.56410302325e-05 1.2626357918e-05 -8.85986636478e-05 -1.58828108748e-05 2.09676433427e-05 -8.32553344798e-05 -1.51916771534e-05 2.82143489858e-05 -6.81706698594e-05 -1.28284184079e-05 3.13709910972e-05 -4.64869732637e-05 -9.37047382522e-06 2.81156895052e-05 -2.36385149647e-05 -5.61577106789e-06 1.91252373569e-05 -6.27598367889e-06 -2.38860043181e-06 8.20242255955e-06 -5.85411202236e-08 -5.05955799746e-07 1.4672445987e-06 -1.93201792672e-09 0 -1.05255319914e-08 0 0 -4.20675039655e-06 -2.50602521704e-07 -8.27969371754e-07 -1.89261765014e-05 -1.69293447791e-06 -5.96469673542e-06 -3.9540204556e-05 -4.65468124999e-06 -1.53756540773e-05 -5.96766218465e-05 -8.06121498616e-06 -2.36952814542e-05 -7.39328074817e-05 -1.07095243616e-05 -2.70704459451e-05 -7.90267466056e-05 -1.1871928802e-05 -2.45823144591e-05 -7.90235406834e-05 -1.21211713632e-05 -1.82625925685e-05 -7.90203309213e-05 -1.23024806808e-05 -1.09113478034e-05 -7.90171173192e-05 -1.24837899984e-05 -3.56010303811e-06 -7.9013899877e-05 -1.2665099316e-05 3.79114172694e-06 -7.9010678595e-05 -1.28464086336e-05 1.11423864922e-05 -7.9007453473e-05 -1.30277179513e-05 1.84936312572e-05 -7.39089498955e-05 -1.24325250543e-05 2.48121268039e-05 -5.96534293521e-05 -1.03994058459e-05 2.7301325792e-05 -3.95233415588e-05 -7.40255034151e-06 2.39061190338e-05 -1.89182163958e-05 -4.19345337049e-06 1.5522721899e-05 -4.20527865437e-06 -1.56893235506e-06 6.02256467562e-06 -1.05254773725e-08 -2.48046579496e-07 8.33942435574e-07 0 0 0 0 0 -1.58171959875e-06 -3.81188085516e-08 -1.99246214933e-07 -1.12045253152e-05 -6.74383856743e-07 -2.9370947302e-06 -2.72044992643e-05 -2.49331718199e-06 -9.44692135737e-06 -4.38766993414e-05 -4.98236656567e-06 -1.62812805591e-05 -5.61003881088e-05 -7.10944929868e-06 -1.96162188089e-05 -6.05452002654e-05 -8.1559989823e-06 -1.82242191909e-05 -6.05425528238e-05 -8.40089532632e-06 -1.3615078544e-05 -6.05399017906e-05 -8.50324513461e-06 -8.12658813459e-06 -6.05372471658e-05 -8.60559494292e-06 -2.63809772541e-06 -6.05345889494e-05 -8.7079447512e-06 2.85039268391e-06 -6.05319271415e-05 -8.81029455952e-06 8.33888309332e-06 -6.05292617418e-05 -8.91264436779e-06 1.38273735026e-05 -5.60809617844e-05 -8.46738428562e-06 1.84325138697e-05 -4.38586037724e-05 -6.94179314884e-06 1.9813309246e-05 -2.71923425216e-05 -4.66614407781e-06 1.64429673711e-05 -1.11996820253e-05 -2.31805834021e-06 9.54258972795e-06 -1.58125784011e-06 -6.49288628657e-07 2.96477688217e-06 0 -3.80972518716e-08 2.00614144037e-07 0 0 0 0 0 -2.07739740421e-07 0 0 -3.9706249858e-06 -9.17137820175e-08 -7.36244501187e-07 -1.35152123952e-05 -7.27352665109e-07 -3.705158639e-06 -2.50522978013e-05 -2.04561246944e-06 -8.06466959556e-06 -3.4066482331e-05 -3.41319444686e-06 -1.08631953473e-05 -3.74355105172e-05 -4.19059891901e-06 -1.05690129745e-05 -3.74337594464e-05 -4.38982946294e-06 -7.98678407315e-06 -3.74320061653e-05 -4.42644026278e-06 -4.7614584348e-06 -3.74302506737e-05 -4.46305106267e-06 -1.53613279649e-06 -3.74284929718e-05 -4.49966186254e-06 1.68919284184e-06 -3.74267330595e-05 -4.53627266243e-06 4.91451848025e-06 -3.74249709368e-05 -4.57288346233e-06 8.13984411853e-06 -3.40539345518e-05 -4.29846424568e-06 1.07164676254e-05 -2.50414695403e-05 -3.3576477994e-06 1.09919190915e-05 -1.35090534673e-05 -1.96498836367e-06 8.15400371313e-06 -3.96906590982e-06 -7.03234351394e-07 3.74400683262e-06 -2.07720853438e-07 -9.14128933221e-08 7.42590455812e-07 0 0 0 0 0 0 0 0 0 0 0 -5.00241259173e-07 0 -1.05642202257e-08 -3.67913558372e-06 -3.8145346667e-08 -6.32160078229e-07 -9.14919149012e-06 -2.89269404845e-07 -2.18684612149e-06 -1.41911981024e-05 -7.64147831167e-07 -3.68061857445e-06 -1.61890139225e-05 -1.12887906223e-06 -3.96254489356e-06 -1.6188255276e-05 -1.23514311726e-06 -3.07321984644e-06 -1.61874959576e-05 -1.24006701645e-06 -1.8302843898e-06 -1.61867359672e-05 -1.24499091564e-06 -5.87348933303e-07 -1.61859753048e-05 -1.24991481485e-06 6.55586523341e-07 -1.61852139705e-05 -1.25483871404e-06 1.89852197992e-06 -1.61844519642e-05 -1.25976261326e-06 3.14145743652e-06 -1.41860232501e-05 -1.14190210531e-06 4.02634269474e-06 -9.14544608966e-06 -7.57835761947e-07 3.72950675597e-06 -3.67781239235e-06 -2.85598076088e-07 2.21216455527e-06 -5.00153919438e-07 -3.80707114419e-08 6.38491634733e-07 0 0 1.06447024731e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.07737380622e-07 0 0 -1.3741360727e-06 0 -1.24272077096e-07 -2.85159922322e-06 -1.93217562044e-09 -4.37914230736e-07 -3.51932424574e-06 -1.07479311982e-08 -6.23663984541e-07 -3.51921323675e-06 -1.76202401079e-08 -5.15537001911e-07 -3.51910219471e-06 -1.76223691011e-08 -3.07045756073e-07 -3.5189911196e-06 -1.76244981692e-08 -9.85545102708e-08 -3.51888001146e-06 -1.76266271617e-08 1.09936735448e-07 -3.51876887018e-06 -1.76287561823e-08 3.18427981228e-07 -3.51865769587e-06 -1.7630885179e-08 5.26919226993e-07 -2.85094298279e-06 -1.07416451706e-08 6.33667808885e-07 -1.37385506514e-06 -1.93184742539e-09 4.43684274328e-07 -2.07723215412e-07 0 1.25640471866e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.05255168242e-08 0 0 -4.80170111085e-08 0 0 -4.80169479901e-08 0 0 -4.80168848567e-08 0 0 -4.80168217496e-08 0 0 -4.80167586161e-08 0 0 -4.80166954903e-08 0 0 -4.80166323611e-08 0 0 -1.05254925958e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.30857970828e-07 -4.04244286995e-08 0 -7.49102812939e-07 -1.7170116016e-07 -9.01137286836e-09 -1.03157698029e-06 -3.1014546238e-07 -3.15245762195e-08 -1.0315561593e-06 -3.58239484304e-07 -3.7455027787e-08 -1.03153533315e-06 -3.59007533019e-07 -2.23120479349e-08 -1.03151450182e-06 -3.59775581728e-07 -7.16906813048e-09 -1.03149366523e-06 -3.60543630441e-07 7.97391174188e-09 -1.03147282348e-06 -3.61311679157e-07 2.31168916003e-08 -1.03145197649e-06 -3.62079727873e-07 3.82598714948e-08 -7.49001489635e-07 -3.11900959427e-07 3.20489392515e-08 -2.30844742687e-07 -1.7090704941e-07 9.13200239794e-09 0 -4.02977054776e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.40087757706e-08 -2.44807982346e-09 0 -1.03163941198e-06 -1.83538523078e-07 -4.52301736217e-08 -3.6790032419e-06 -7.88522599253e-07 -4.61954013806e-07 -6.49906786477e-06 -1.607871953e-06 -1.10915302324e-06 -7.69803516733e-06 -2.14028580083e-06 -1.3362570276e-06 -7.69770019208e-06 -2.28687600829e-06 -1.0709492491e-06 -7.69736496604e-06 -2.30222649455e-06 -6.37713595903e-07 -7.69702948934e-06 -2.31757698082e-06 -2.04477942575e-07 -7.69669376179e-06 -2.33292746709e-06 2.28757710645e-07 -7.69635778366e-06 -2.34827795336e-06 6.61993363937e-07 -7.69602155465e-06 -2.36362843962e-06 1.09522901717e-06 -6.49692284634e-06 -2.18888350395e-06 1.35820429817e-06 -3.6777784482e-06 -1.59612093365e-06 1.12388981981e-06 -1.03138940443e-06 -7.71704053859e-07 4.67250101147e-07 -1.40087076237e-08 -1.815130209e-07 4.56358728594e-08 0 -2.44783271517e-09 0 0 0 0 0 0 0 0 0 0 0 0 -1.04567001348e-06 -1.80859772711e-07 -5.28023550686e-08 -5.94438890874e-06 -1.05588523592e-06 -9.28487771686e-07 -1.33578230211e-05 -2.6359877208e-06 -3.00117238182e-06 -1.96284760066e-05 -4.1750862434e-06 -4.85710394768e-06 -2.20361212306e-05 -5.01635069565e-06 -5.08178303182e-06 -2.20350415081e-05 -5.23126355533e-06 -3.91012081363e-06 -2.20339603463e-05 -5.28857019378e-06 -2.32954442651e-06 -2.20328777452e-05 -5.34587683222e-06 -7.48968039401e-07 -2.20317937047e-05 -5.40318347067e-06 8.31608347841e-07 -2.2030708225e-05 -5.4604901091e-06 2.41218473504e-06 -2.20296213059e-05 -5.51779674754e-06 3.99276112224e-06 -1.96209514185e-05 -5.20826561167e-06 5.15980609481e-06 -1.33519490732e-05 -4.13201427035e-06 4.91943494632e-06 -5.9418229136e-06 -2.53069815416e-06 3.03592886714e-06 -1.04537820387e-06 -1.01394000094e-06 9.37976358675e-07 0 -1.79295798055e-07 5.32080398612e-08 0 0 0 0 0 0 0 0 -2.30861937497e-07 -4.03797755259e-08 0 -4.48486327143e-06 -6.51586055697e-07 -6.37295499342e-07 -1.4867484667e-05 -2.40587690166e-06 -3.52586412619e-06 -2.69752205285e-05 -4.82563642557e-06 -7.85498672782e-06 -3.62559211049e-05 -6.89967168476e-06 -1.05746465929e-05 -3.96937073754e-05 -7.92184422408e-06 -1.02678730394e-05 -3.96917775374e-05 -8.16990832686e-06 -7.75502482982e-06 -3.96898445569e-05 -8.28635974254e-06 -4.62441010888e-06 -3.96879084341e-05 -8.40281115822e-06 -1.49379538804e-06 -3.96859691688e-05 -8.51926257394e-06 1.63681933294e-06 -3.96840267611e-05 -8.63571398961e-06 4.76743405392e-06 -3.9682081211e-05 -8.75216540532e-06 7.8980487748e-06 -3.62420423988e-05 -8.32051619691e-06 1.04059193028e-05 -2.69631353443e-05 -6.81159499651e-06 1.06962625203e-05 -1.48604748296e-05 -4.56139877361e-06 7.94043219999e-06 -4.48299920718e-06 -2.25132068996e-06 3.56276962174e-06 -2.30840772498e-07 -6.29199455902e-07 6.42661797247e-07 0 -4.03423626479e-08 0 0 0 0 0 0 -9.80291732896e-07 -1.31170878622e-07 -1.80830650528e-08 -9.24606394048e-06 -1.16439866431e-06 -1.80627642305e-06 -2.4003902487e-05 -3.56976278726e-06 -6.95346795914e-06 -3.96103027095e-05 -6.52505811274e-06 -1.2906425145e-05 -5.11070054229e-05 -8.91172863642e-06 -1.60153045571e-05 -5.52961972505e-05 -1.00122923104e-05 -1.50500609192e-05 -5.52935920272e-05 -1.02702262731e-05 -1.12758587334e-05 -5.52909824058e-05 -1.04372675997e-05 -6.72933813659e-06 -5.52883683865e-05 -1.06043089263e-05 -2.18281753971e-06 -5.52857499692e-05 -1.07713502529e-05 2.36370305712e-06 -5.52831271538e-05 -1.09383915795e-05 6.91022365408e-06 -5.52804999405e-05 -1.11054329061e-05 1.14567442509e-05 -5.108798344e-05 -1.0590169878e-05 1.52268620441e-05 -3.95928951825e-05 -8.78462053579e-06 1.61800355106e-05 -2.39926184184e-05 -6.10709122137e-06 1.30367480529e-05 -9.24195498353e-06 -3.2847246278e-06 7.02446529605e-06 -9.80065158119e-07 -1.10146508527e-06 1.82262640905e-06 0 -1.30713411334e-07 1.82036893861e-08 0 0 0 0 0 -1.78365551225e-06 -1.80603802315e-07 -7.84595699663e-08 -1.25463204429e-05 -1.38495515604e-06 -2.74961434564e-06 -2.97179527525e-05 -4.0214888199e-06 -9.30329237931e-06 -4.72728301187e-05 -7.15879110557e-06 -1.60814189622e-05 -6.00071106715e-05 -9.64591607223e-06 -1.93409625003e-05 -6.46151099633e-05 -1.07659758812e-05 -1.79449972441e-05 -6.4612139972e-05 -1.10251745632e-05 -1.34030963531e-05 -6.4609165059e-05 -1.12117867127e-05 -8.00255991047e-06 -6.46061852243e-05 -1.13983988622e-05 -2.60202346773e-06 -6.46032004677e-05 -1.15850110118e-05 2.79851297492e-06 -6.46002107895e-05 -1.17716231613e-05 8.19904941755e-06 -6.45972161894e-05 -1.19582353108e-05 1.35995858602e-05 -5.99852811895e-05 -1.14136877499e-05 1.81382826365e-05 -4.72524276779e-05 -9.50361763896e-06 1.95262414516e-05 -2.97041423792e-05 -6.67777699422e-06 1.62362250641e-05 -1.25407273435e-05 -3.67895133071e-06 9.3960893008e-06 -1.78312043831e-06 -1.30056461551e-06 2.77550574637e-06 0 -1.79551860073e-07 7.89858422991e-08 0 0 0 0 0 -2.06850025848e-06 -1.80603802314e-07 -1.2077094011e-07 -1.35070823152e-05 -1.38495515606e-06 -3.05542854784e-06 -3.1341935902e-05 -4.0214888199e-06 -9.98547907378e-06 -4.9449713576e-05 -7.1587911056e-06 -1.69841261696e-05 -6.25425264314e-05 -9.64591607222e-06 -2.02845533742e-05 -6.72728530687e-05 -1.07659758812e-05 -1.87671775892e-05 -6.72697645015e-05 -1.10251745632e-05 -1.40074940042e-05 -6.72666708277e-05 -1.12117867127e-05 -8.3643448607e-06 -6.72635720474e-05 -1.13983988623e-05 -2.72119571719e-06 -6.72604681606e-05 -1.15850110118e-05 2.9219534264e-06 -6.72573591672e-05 -1.17716231613e-05 8.56510256996e-06 -6.72542450674e-05 -1.19582353109e-05 1.42082517135e-05 -6.25197853942e-05 -1.14136877499e-05 1.89649742886e-05 -4.94283443737e-05 -9.50361763897e-06 2.04754842106e-05 -3.13273182929e-05 -6.6777769942e-06 1.71457435178e-05 -1.35010163741e-05 -3.67895133071e-06 1.00845236535e-05 -2.06784454682e-06 -1.3005646155e-06 3.08443201889e-06 0 -1.7955186007e-07 1.21582298377e-07 0 0 0 0 0 -2.06850025847e-06 -1.8060380228e-07 -1.20770940129e-07 -1.35070823152e-05 -1.38495515604e-06 -3.05542854785e-06 -3.1341935902e-05 -4.02148881988e-06 -9.98547907375e-06 -4.9449713576e-05 -7.15879110559e-06 -1.69841261696e-05 -6.25425264314e-05 -9.64591607224e-06 -2.02845533742e-05 -6.72728530687e-05 -1.07659758812e-05 -1.87671775892e-05 -6.72697645014e-05 -1.10251745632e-05 -1.40074940042e-05 -6.72666708277e-05 -1.12117867127e-05 -8.36434486073e-06 -6.72635720474e-05 -1.13983988623e-05 -2.7211957172e-06 -6.72604681606e-05 -1.15850110118e-05 2.92195342643e-06 -6.72573591672e-05 -1.17716231613e-05 8.56510256998e-06 -6.72542450674e-05 -1.19582353109e-05 1.42082517135e-05 -6.25197853942e-05 -1.14136877499e-05 1.89649742887e-05 -4.94283443738e-05 -9.50361763895e-06 2.04754842106e-05 -3.13273182929e-05 -6.67777699423e-06 1.71457435179e-05 -1.35010163741e-05 -3.67895133075e-06 1.00845236534e-05 -2.06784454682e-06 -1.30056461546e-06 3.08443201889e-06 0 -1.7955186005e-07 1.21582298374e-07 0 0 0 0 0 -2.06850025847e-06 -1.80603802298e-07 -1.20770940084e-07 -1.35070823152e-05 -1.38495515607e-06 -3.05542854787e-06 -3.1341935902e-05 -4.02148881991e-06 -9.98547907379e-06 -4.9449713576e-05 -7.15879110561e-06 -1.69841261696e-05 -6.25425264314e-05 -9.64591607223e-06 -2.02845533742e-05 -6.72728530687e-05 -1.07659758812e-05 -1.87671775892e-05 -6.72697645015e-05 -1.10251745632e-05 -1.40074940042e-05 -6.72666708277e-05 -1.12117867127e-05 -8.36434486071e-06 -6.72635720474e-05 -1.13983988623e-05 -2.72119571723e-06 -6.72604681606e-05 -1.15850110118e-05 2.92195342639e-06 -6.72573591672e-05 -1.17716231613e-05 8.56510256995e-06 -6.72542450674e-05 -1.19582353109e-05 1.42082517135e-05 -6.25197853942e-05 -1.14136877499e-05 1.89649742886e-05 -4.94283443737e-05 -9.50361763898e-06 2.04754842107e-05 -3.13273182929e-05 -6.67777699426e-06 1.71457435178e-05 -1.35010163741e-05 -3.67895133076e-06 1.00845236534e-05 -2.06784454682e-06 -1.3005646155e-06 3.08443201883e-06 0 -1.79551860067e-07 1.21582298404e-07 0 0 0 0 0 -2.06850025847e-06 -1.80603802322e-07 -1.20770940094e-07 -1.35070823152e-05 -1.38495515607e-06 -3.05542854785e-06 -3.1341935902e-05 -4.02148881993e-06 -9.98547907373e-06 -4.94497135761e-05 -7.15879110565e-06 -1.69841261696e-05 -6.25425264314e-05 -9.64591607227e-06 -2.02845533742e-05 -6.72728530687e-05 -1.07659758812e-05 -1.87671775892e-05 -6.72697645015e-05 -1.10251745632e-05 -1.40074940042e-05 -6.72666708277e-05 -1.12117867127e-05 -8.36434486067e-06 -6.72635720474e-05 -1.13983988623e-05 -2.72119571719e-06 -6.72604681606e-05 -1.15850110118e-05 2.92195342637e-06 -6.72573591672e-05 -1.17716231614e-05 8.56510256998e-06 -6.72542450674e-05 -1.19582353109e-05 1.42082517135e-05 -6.25197853942e-05 -1.14136877499e-05 1.89649742886e-05 -4.94283443737e-05 -9.503617639e-06 2.04754842107e-05 -3.1327318293e-05 -6.67777699425e-06 1.71457435178e-05 -1.35010163741e-05 -3.67895133074e-06 1.00845236534e-05 -2.06784454679e-06 -1.30056461553e-06 3.08443201891e-06 0 -1.79551860088e-07 1.21582298353e-07 0 0 0 0 0 -1.78597787123e-06 -1.31170878614e-07 -7.84794442747e-08 -1.25926040321e-05 -1.16439866429e-06 -2.75483472717e-06 -2.98939230575e-05 -3.56976278722e-06 -9.33981127617e-06 -4.76339465989e-05 -6.52505811272e-06 -1.61738558312e-05 -6.05276825542e-05 -8.9117286364e-06 -1.94778737691e-05 -6.51975488654e-05 -1.00122923104e-05 -1.80844715828e-05 -6.51945604277e-05 -1.02702262731e-05 -1.3509720036e-05 -6.51915670184e-05 -1.04372675997e-05 -8.06626601873e-06 -6.51885686375e-05 -1.06043089263e-05 -2.62281200151e-06 -6.51855652851e-05 -1.07713502529e-05 2.8206420157e-06 -6.51825569609e-05 -1.09383915795e-05 8.26409603298e-06 -6.51795436653e-05 -1.11054329061e-05 1.37075500503e-05 -6.05057202335e-05 -1.0590169878e-05 1.8279057047e-05 -4.76134304778e-05 -8.78462053578e-06 1.96643199403e-05 -2.9880049853e-05 -6.10709122129e-06 1.63294765299e-05 -1.25869941213e-05 -3.28472462778e-06 9.43294569436e-06 -1.7854421994e-06 -1.10146508526e-06 2.78077114737e-06 0 -1.30713411307e-07 7.90058366067e-08 0 0 0 0 0 -9.82839740967e-07 -4.03797755323e-08 -1.80850229774e-08 -9.33248478984e-06 -6.51586055754e-07 -1.81404179669e-06 -2.43845336148e-05 -2.40587690167e-06 -7.02336383978e-06 -4.04414356427e-05 -4.82563642554e-06 -1.31043904505e-05 -5.23411756866e-05 -6.8996716848e-06 -1.63239350816e-05 -5.66897923173e-05 -7.92184422408e-06 -1.53713444516e-05 -5.66871403908e-05 -8.16990832689e-06 -1.15228020563e-05 -5.6684483983e-05 -8.28635974256e-06 -6.87682189246e-06 -5.66818230939e-05 -8.40281115824e-06 -2.23084172856e-06 -5.66791577235e-05 -8.51926257395e-06 2.41513843517e-06 -5.66764878718e-05 -8.63571398962e-06 7.06111859909e-06 -5.66738135388e-05 -8.75216540536e-06 1.17070987629e-05 -5.23218227938e-05 -8.32051619694e-06 1.55514215424e-05 -4.04237562056e-05 -6.81159499653e-06 1.64914903458e-05 -2.43731100964e-05 -4.56139877365e-06 1.32365374284e-05 -9.32834424396e-06 -2.25132069e-06 7.09501917056e-06 -9.82612640422e-07 -6.29199455941e-07 1.83045631376e-06 0 -4.03423626751e-08 1.82056591461e-08 0 0 0 0 0 -2.31137521966e-07 0 0 -4.53033816748e-06 -1.80859772663e-07 -6.39625663584e-07 -1.51666768161e-05 -1.05588523586e-06 -3.56562520222e-06 -2.7737585089e-05 -2.63598772077e-06 -8.00649049976e-06 -3.74687827776e-05 -4.17508624334e-06 -1.08435250558e-05 -4.10916798065e-05 -5.01635069563e-06 -1.05629240115e-05 -4.10896993197e-05 -5.23126355534e-06 -7.98479070387e-06 -4.10877156673e-05 -5.2885701938e-06 -4.76153551735e-06 -4.1085728849e-05 -5.34587683224e-06 -1.53828033075e-06 -4.10837388649e-05 -5.4031834707e-06 1.6849748558e-06 -4.10817457151e-05 -5.46049010906e-06 4.90823004235e-06 -4.10797493996e-05 -5.51779674755e-06 8.13148522888e-06 -3.74545559732e-05 -5.20826561164e-06 1.07044283555e-05 -2.77252373202e-05 -4.13201427031e-06 1.09678908193e-05 -1.51595543026e-05 -2.53069815411e-06 8.09343258659e-06 -4.52845810129e-06 -1.0139400009e-06 3.60291241406e-06 -2.311163355e-07 -1.79295797967e-07 6.45009690539e-07 0 0 0 0 0 0 0 0 0 0 0 -1.05081775292e-06 -2.44807985036e-09 -5.28214499913e-08 -6.03979798017e-06 -1.83538523032e-07 -9.34372295784e-07 -1.37069587342e-05 -7.88522599304e-07 -3.04608695859e-06 -2.02718309858e-05 -1.607871953e-06 -4.96582968037e-06 -2.28091472119e-05 -2.14028580082e-06 -5.21636239174e-06 -2.28080379789e-05 -2.28687600829e-06 -4.01807279765e-06 -2.28069273221e-05 -2.30222649454e-06 -2.39391832524e-06 -2.28058152415e-05 -2.31757698085e-06 -7.69763852772e-07 -2.28047017369e-05 -2.33292746711e-06 8.54390619824e-07 -2.28035868086e-05 -2.34827795337e-06 2.4785450924e-06 -2.28024704563e-05 -2.36362843964e-06 4.10269956493e-06 -2.02641137711e-05 -2.18888350395e-06 5.29619395541e-06 -1.37009622273e-05 -1.59612093368e-06 5.02940205231e-06 -6.03719751109e-06 -7.71704053871e-07 3.08131597898e-06 -1.05052467533e-06 -1.81513020893e-07 9.43915690587e-07 0 -2.44783271344e-09 5.32272667791e-08 0 0 0 0 0 0 0 0 0 0 0 -1.40097894683e-08 0 0 -1.03678816373e-06 0 -4.52465313131e-08 -3.72938072608e-06 -4.04244287489e-08 -4.63812169957e-07 -6.63333331706e-06 -1.71701160155e-07 -1.11961835635e-06 -7.87626222227e-06 -3.10145462384e-07 -1.3542691854e-06 -7.8759208271e-06 -3.58239484357e-07 -1.08665141641e-06 -7.87557918543e-06 -3.59007533073e-07 -6.47072385215e-07 -7.87523729735e-06 -3.5977558182e-07 -2.07493354016e-07 -7.87489516274e-06 -3.60543630469e-07 2.32085677304e-07 -7.87455278165e-06 -3.61311679206e-07 6.71664708446e-07 -7.87421015411e-06 -3.62079727928e-07 1.11124373978e-06 -6.6311511953e-06 -3.11900959391e-07 1.37647818729e-06 -3.72814105056e-06 -1.70907049372e-07 1.13448145742e-06 -1.03653705638e-06 -4.02977054072e-08 4.69127670697e-07 -1.4009721305e-08 0 4.56523624434e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.31133551305e-07 0 0 -7.51926722271e-07 0 -9.01234894958e-09 -1.03672545705e-06 0 -3.15365478788e-08 -1.03670454444e-06 0 -3.74753611702e-08 -1.03668362659e-06 0 -2.2324169502e-08 -1.03666270364e-06 0 -7.17297776117e-09 -1.03664177538e-06 0 7.97821382321e-09 -1.03662084202e-06 0 2.31294055965e-08 -1.03659990338e-06 0 3.82805972744e-08 -7.51825069478e-07 0 3.20610933108e-08 -2.31120309769e-07 0 9.13299017605e-09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.19814066424e-08 -3.66575522633e-09 0 -7.33928539933e-08 -1.59096364373e-08 0 -7.33927323158e-08 -2.44668000974e-08 0 -7.33926106187e-08 -2.44709060144e-08 0 -7.33924889611e-08 -2.44750119222e-08 0 -7.3392367205e-08 -2.4479117836e-08 0 -7.33922455235e-08 -2.44832237454e-08 0 -7.33921238026e-08 -2.44873296617e-08 0 -2.19813193609e-08 -1.5897526784e-08 0 0 -3.66435577886e-09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -7.33932190773e-08 -1.2243581638e-08 0 -8.17624183683e-07 -1.49463548332e-07 -2.31487066217e-09 -1.89239034481e-06 -4.49093009591e-07 -8.03330568706e-08 -2.43405232357e-06 -7.00033463058e-07 -1.74745669722e-07 -2.43397505906e-06 -7.78337555662e-07 -1.60935668531e-07 -2.43389776077e-06 -7.8143739612e-07 -9.58636354402e-08 -2.43382042876e-06 -7.84537236572e-07 -3.07916024249e-08 -2.43374306286e-06 -7.87637077032e-07 3.42804307006e-08 -2.43366566317e-06 -7.90736917497e-07 9.93524637905e-08 -2.43358822965e-06 -7.93836757947e-07 1.64424496788e-07 -1.89195044326e-06 -7.09230189285e-07 1.77547799401e-07 -8.17475825208e-07 -4.47142058475e-07 8.14279553753e-08 -7.33917586386e-08 -1.48070764277e-07 2.33956614251e-09 0 -1.22334513736e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -7.33933407584e-08 -1.22422130319e-08 0 -1.52429121483e-06 -2.56024489143e-07 -6.00122506545e-08 -5.09063422244e-06 -9.63108404737e-07 -5.1971445223e-07 -8.74624287194e-06 -1.85878981478e-06 -1.26845248699e-06 -1.02642104815e-05 -2.42445824304e-06 -1.56635040575e-06 -1.02637326675e-05 -2.57964759096e-06 -1.26014335132e-06 -1.02632543498e-05 -2.60102026167e-06 -7.50486277191e-07 -1.02627755284e-05 -2.62239293239e-06 -2.40829202978e-07 -1.02622962033e-05 -2.64376560311e-06 2.68827871098e-07 -1.02618163746e-05 -2.66513827382e-06 7.78484945327e-07 -1.02613360421e-05 -2.68651094454e-06 1.28814201954e-06 -8.74310977099e-06 -2.49821016571e-06 1.59167083566e-06 -5.08870337126e-06 -1.85250554052e-06 1.28533570716e-06 -1.52383753025e-06 -9.42351456577e-07 5.2570572745e-07 -7.33916369097e-08 -2.52210128304e-07 6.05527787899e-08 0 -1.22348200344e-08 0 0 0 0 0 0 0 0 0 0 0 0 -8.91074003323e-07 -1.36992891759e-07 -3.2457580817e-09 -5.73045789309e-06 -8.61621062692e-07 -6.12781094005e-07 -1.33234754752e-05 -2.24959367092e-06 -2.38392821282e-06 -1.98020006359e-05 -3.65341669445e-06 -4.16169589113e-06 -2.22977749769e-05 -4.43728522642e-06 -4.46415973925e-06 -2.22966635908e-05 -4.64285163985e-06 -3.45537003427e-06 -2.22955504993e-05 -4.69759897505e-06 -2.0589831535e-06 -2.22944357026e-05 -4.75234631025e-06 -6.62596272649e-07 -2.22933192006e-05 -4.80709364546e-06 7.33790608124e-07 -2.22922009934e-05 -4.86184098066e-06 2.130177489e-06 -2.22910810809e-05 -4.91658831587e-06 3.52656436982e-06 -1.97942818178e-05 -4.63412606194e-06 4.53108645965e-06 -1.33175361047e-05 -3.64294566538e-06 4.2141589744e-06 -5.72797235688e-06 -2.17678424686e-06 2.41132570612e-06 -8.90863537086e-07 -8.33138159534e-07 6.18877572441e-07 0 -1.36063855783e-07 3.27045346527e-09 0 0 0 0 0 0 0 0 -2.19814503276e-08 -3.66526426713e-09 0 -2.69150777328e-06 -3.18075293202e-07 -1.40180405512e-07 -1.12054932508e-05 -1.49062920927e-06 -1.79193727875e-06 -2.20531869301e-05 -3.35694598057e-06 -5.05141610308e-06 -3.06453856698e-05 -5.0759061545e-06 -7.48550813219e-06 -3.38699840327e-05 -5.97723219066e-06 -7.53722878712e-06 -3.38682832336e-05 -6.20828717877e-06 -5.74400405442e-06 -3.3866579389e-05 -6.29545395069e-06 -3.42472725046e-06 -3.38648724987e-05 -6.38262072258e-06 -1.10545044656e-06 -3.38631625628e-05 -6.46978749448e-06 1.21382635736e-06 -3.38614495812e-05 -6.55695426638e-06 3.53310316126e-06 -3.3859733554e-05 -6.64412103829e-06 5.85237996524e-06 -3.06332974309e-05 -6.29572207281e-06 7.6408849282e-06 -2.20430939274e-05 -5.06271447761e-06 7.57329668331e-06 -1.12002094435e-05 -3.22460321397e-06 5.1070698168e-06 -2.69053646014e-06 -1.42223013277e-06 1.81042658057e-06 -2.19812757177e-08 -3.12423886451e-07 1.41276123103e-07 0 -3.66484676715e-09 0 0 0 0 0 0 -9.5377304748e-08 -1.22408444118e-08 0 -4.2471273495e-06 -4.09892395819e-07 -3.63999848572e-07 -1.49295934911e-05 -1.75377054641e-06 -2.80332539611e-06 -2.75718524866e-05 -3.78583373833e-06 -6.91233199295e-06 -3.73370138048e-05 -5.61017087477e-06 -9.6360168105e-06 -4.09672593242e-05 -6.54709170501e-06 -9.47964371371e-06 -4.09652106085e-05 -6.7855180808e-06 -7.18337571198e-06 -4.09631580198e-05 -6.88600008047e-06 -4.28442717815e-06 -4.09611015583e-05 -6.98648208012e-06 -1.38547864439e-06 -4.09590412238e-05 -7.0869640798e-06 1.51346988926e-06 -4.09569770165e-05 -7.18744607947e-06 4.4124184231e-06 -4.09549089362e-05 -7.28792807915e-06 7.31136695679e-06 -3.73223203596e-05 -6.91590757733e-06 9.60295174714e-06 -2.75592009222e-05 -5.59608409135e-06 9.74389958092e-06 -1.49224419746e-05 -3.62736201935e-06 6.98618278836e-06 -4.24538958186e-06 -1.66554977031e-06 2.8323870004e-06 -9.53751484695e-08 -4.00666180733e-07 3.66878266326e-07 0 -1.22361886805e-08 0 0 0 0 0 0 -1.46813514125e-07 -1.22408444133e-08 0 -4.74608757526e-06 -4.09892395817e-07 -4.54226637703e-07 -1.60083885777e-05 -1.75377054641e-06 -3.12791185303e-06 -2.91430641232e-05 -3.78583373833e-06 -7.45490082286e-06 -3.92369400692e-05 -5.61017087477e-06 -1.02506026129e-05 -4.29821187524e-05 -6.54709170501e-06 -1.00320443013e-05 -4.29799615535e-05 -6.7855180808e-06 -7.59234994048e-06 -4.29778002192e-05 -6.88600008047e-06 -4.5287257785e-06 -4.29756347496e-05 -6.98648208014e-06 -1.46510161653e-06 -4.29734651444e-05 -7.08696407983e-06 1.59852254543e-06 -4.2971291404e-05 -7.1874460795e-06 4.66214670735e-06 -4.29691135281e-05 -7.28792807917e-06 7.72577086925e-06 -3.92214347918e-05 -6.91590757734e-06 1.0160800336e-05 -2.91296163053e-05 -5.59608409132e-06 1.03641068301e-05 -1.6000652917e-05 -3.62736201939e-06 7.53397770493e-06 -4.74409388696e-06 -1.66554977032e-06 3.16031626002e-06 -1.46809504422e-07 -4.00666180734e-07 4.57842484423e-07 0 -1.22361886974e-08 0 0 0 0 0 0 -1.46813514127e-07 -1.22408443763e-08 0 -4.74608757526e-06 -4.09892395838e-07 -4.54226637652e-07 -1.60083885777e-05 -1.7537705464e-06 -3.12791185306e-06 -2.91430641232e-05 -3.78583373836e-06 -7.45490082284e-06 -3.92369400692e-05 -5.61017087477e-06 -1.0250602613e-05 -4.29821187524e-05 -6.54709170503e-06 -1.00320443013e-05 -4.29799615535e-05 -6.78551808083e-06 -7.59234994042e-06 -4.29778002193e-05 -6.88600008048e-06 -4.52872577847e-06 -4.29756347496e-05 -6.98648208015e-06 -1.46510161653e-06 -4.29734651445e-05 -7.08696407982e-06 1.5985225454e-06 -4.2971291404e-05 -7.18744607952e-06 4.66214670736e-06 -4.29691135281e-05 -7.28792807917e-06 7.72577086926e-06 -3.92214347918e-05 -6.91590757735e-06 1.01608003361e-05 -2.91296163053e-05 -5.59608409135e-06 1.03641068301e-05 -1.6000652917e-05 -3.62736201937e-06 7.53397770493e-06 -4.7440938869e-06 -1.66554977032e-06 3.16031626005e-06 -1.46809504422e-07 -4.00666180723e-07 4.57842484466e-07 0 -1.22361886705e-08 0 0 0 0 0 0 -1.46813514129e-07 -1.22408444011e-08 0 -4.74608757525e-06 -4.098923958e-07 -4.54226637595e-07 -1.60083885777e-05 -1.75377054642e-06 -3.1279118531e-06 -2.91430641232e-05 -3.78583373834e-06 -7.45490082289e-06 -3.92369400692e-05 -5.61017087478e-06 -1.02506026129e-05 -4.29821187524e-05 -6.54709170504e-06 -1.00320443013e-05 -4.29799615535e-05 -6.78551808082e-06 -7.59234994042e-06 -4.29778002192e-05 -6.88600008048e-06 -4.52872577848e-06 -4.29756347496e-05 -6.98648208014e-06 -1.46510161655e-06 -4.29734651445e-05 -7.08696407982e-06 1.59852254536e-06 -4.2971291404e-05 -7.18744607949e-06 4.66214670734e-06 -4.29691135281e-05 -7.28792807915e-06 7.7257708692e-06 -3.92214347918e-05 -6.91590757734e-06 1.01608003361e-05 -2.91296163054e-05 -5.59608409135e-06 1.03641068301e-05 -1.6000652917e-05 -3.62736201939e-06 7.53397770494e-06 -4.74409388691e-06 -1.66554977034e-06 3.16031626006e-06 -1.46809504418e-07 -4.00666180733e-07 4.5784248442e-07 0 -1.22361887025e-08 0 0 0 0 0 0 -1.46813514127e-07 -1.22408443976e-08 0 -4.74608757525e-06 -4.09892395825e-07 -4.54226637693e-07 -1.60083885777e-05 -1.75377054643e-06 -3.12791185303e-06 -2.91430641232e-05 -3.78583373836e-06 -7.45490082287e-06 -3.92369400692e-05 -5.61017087477e-06 -1.02506026129e-05 -4.29821187524e-05 -6.54709170503e-06 -1.00320443013e-05 -4.29799615535e-05 -6.78551808081e-06 -7.59234994043e-06 -4.29778002192e-05 -6.88600008049e-06 -4.52872577849e-06 -4.29756347496e-05 -6.98648208015e-06 -1.46510161655e-06 -4.29734651445e-05 -7.08696407979e-06 1.59852254539e-06 -4.2971291404e-05 -7.18744607949e-06 4.66214670739e-06 -4.29691135281e-05 -7.28792807915e-06 7.72577086922e-06 -3.92214347918e-05 -6.91590757733e-06 1.0160800336e-05 -2.91296163054e-05 -5.59608409134e-06 1.03641068301e-05 -1.6000652917e-05 -3.62736201939e-06 7.53397770499e-06 -4.74409388692e-06 -1.66554977034e-06 3.16031626006e-06 -1.46809504406e-07 -4.00666180759e-07 4.57842484392e-07 0 -1.22361886815e-08 0 0 0 0 0 0 -9.54014774571e-08 -3.66526426029e-09 0 -4.25574524746e-06 -3.1807529319e-07 -3.6422454182e-07 -1.49888433284e-05 -1.49062920929e-06 -2.80918196798e-06 -2.77249103694e-05 -3.35694598055e-06 -6.93738771379e-06 -3.75818726672e-05 -5.0759061545e-06 -9.68238132749e-06 -4.12499355971e-05 -5.97723219071e-06 -9.53132307266e-06 -4.12478760244e-05 -6.20828717875e-06 -7.22377652899e-06 -4.12458125522e-05 -6.29545395067e-06 -4.30854090282e-06 -4.12437451805e-05 -6.38262072252e-06 -1.39330527653e-06 -4.12416739093e-05 -6.46978749444e-06 1.52193034961e-06 -4.12395987386e-05 -6.55695426635e-06 4.43716597584e-06 -4.12375196685e-05 -6.64412103825e-06 7.35240160201e-06 -3.75671044226e-05 -6.29572207285e-06 9.65522648941e-06 -2.77122028992e-05 -5.06271447764e-06 9.79073196379e-06 -1.49816684201e-05 -3.22460321391e-06 7.01148368487e-06 -4.2540044847e-06 -1.42223013275e-06 2.83829906379e-06 -9.5399320699e-08 -3.12423886453e-07 3.67104566403e-07 0 -3.66484675675e-09 0 0 0 0 0 0 -2.19838317183e-08 0 0 -2.7038949269e-06 -1.36992891748e-07 -1.40308838749e-07 -1.13194325033e-05 -8.61621062631e-07 -1.80050173193e-06 -2.23791116693e-05 -2.2495936709e-06 -5.09764339984e-06 -3.11894934964e-05 -3.65341669449e-06 -7.57961984761e-06 -3.45058760328e-05 -4.43728522642e-06 -7.64604847653e-06 -3.45041502958e-05 -4.64285163984e-06 -5.82984277259e-06 -3.45024214704e-05 -4.69759897504e-06 -3.4759453178e-06 -3.45006895566e-05 -4.75234631026e-06 -1.12204786302e-06 -3.44989545544e-05 -4.80709364545e-06 1.23184959172e-06 -3.44972164638e-05 -4.86184098069e-06 3.58574704651e-06 -3.44954752848e-05 -4.9165883159e-06 5.93964450128e-06 -3.11772362998e-05 -4.63412606196e-06 7.75102927605e-06 -2.23688985779e-05 -3.6429456654e-06 7.66840113128e-06 -1.13141040525e-05 -2.17678424684e-06 5.15376197659e-06 -2.7029197246e-06 -8.33138159516e-07 1.81907175158e-06 -2.19836570476e-08 -1.36063855771e-07 1.41405460248e-07 0 0 0 0 0 0 0 0 0 0 0 -8.943348809e-07 -1.2242213035e-08 -3.24583015617e-09 -5.7959387295e-06 -2.56024489139e-07 -6.15191271086e-07 -1.35697886189e-05 -9.631084047e-07 -2.40731425187e-06 -2.02602964402e-05 -1.85878981477e-06 -4.22383851943e-06 -2.28498624347e-05 -2.42445824308e-06 -4.54353312401e-06 -2.28487289695e-05 -2.57964759096e-06 -3.51951613969e-06 -2.28475937843e-05 -2.60102026169e-06 -2.097238137e-06 -2.2846456879e-05 -2.62239293241e-06 -6.74960134399e-07 -2.28453182536e-05 -2.64376560313e-06 7.47317868146e-07 -2.28441779081e-05 -2.66513827383e-06 2.16959587089e-06 -2.28430358425e-05 -2.6865109445e-06 3.59187387359e-06 -2.02524336286e-05 -2.49821016571e-06 4.61151241207e-06 -1.35637590098e-05 -1.85250554047e-06 4.27700444146e-06 -5.79342902632e-06 -9.42351456526e-07 2.43495641868e-06 -8.94123749856e-07 -2.52210128323e-07 6.21309441232e-07 0 -1.22348200522e-08 3.270526136e-09 0 0 0 0 0 0 0 0 0 0 0 -7.34198949296e-08 0 0 -1.53400602583e-06 -1.22435816369e-08 -6.00410514627e-08 -5.16258145518e-06 -1.49463548381e-07 -5.22005031071e-07 -8.91974520148e-06 -4.49093009602e-07 -1.28052694397e-06 -1.04883400918e-05 -7.00033463058e-07 -1.5865121708e-06 -1.04878536004e-05 -7.78337555648e-07 -1.27755399589e-06 -1.04873666062e-05 -7.81437396111e-07 -7.60864496192e-07 -1.0486879109e-05 -7.8453723658e-07 -2.4417499647e-07 -1.04863911088e-05 -7.87637077025e-07 2.7251450327e-07 -1.04859026056e-05 -7.90736917523e-07 7.8920400298e-07 -1.04854135995e-05 -7.93836757962e-07 1.3058935027e-06 -8.91656011654e-06 -7.0923018929e-07 1.61212141634e-06 -5.16062692526e-06 -4.47142058505e-07 1.29755539764e-06 -1.53354977947e-06 -1.48070764275e-07 5.28020423363e-07 -7.34181906046e-08 -1.22334513419e-08 6.05818130724e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -7.34197732121e-08 0 0 -8.20911591037e-07 0 -2.31492207982e-09 -1.90807233135e-06 -3.66575522194e-09 -8.04082997327e-08 -2.45833591416e-06 -1.59096364417e-08 -1.75075764641e-07 -2.45825795294e-06 -2.44668001014e-08 -1.61311791741e-07 -2.45817995804e-06 -2.4470906043e-08 -9.60878497399e-08 -2.45810192948e-06 -2.44750119232e-08 -3.08639077931e-08 -2.45802386718e-06 -2.44791178827e-08 3.43600343332e-08 -2.45794577116e-06 -2.44832237601e-08 9.95839763367e-08 -2.45786764143e-06 -2.4487329671e-08 1.64807918353e-07 -1.90762916821e-06 -1.58975267527e-08 1.77882700523e-07 -8.20762725018e-07 -3.66435575941e-09 8.15041238493e-08 -7.34183123775e-08 0 2.33961810993e-09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.198378803e-08 0 0 -7.34194080135e-08 0 0 -7.34192862686e-08 0 0 -7.3419164567e-08 0 0 -7.34190428832e-08 0 0 -7.34189210636e-08 0 0 -7.3418799344e-08 0 0 -7.34186775901e-08 0 0 -2.19837007401e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4.71806548196e-09 -7.52169842591e-10 0 -1.99081211504e-07 -3.25578591391e-08 0 -3.29963056065e-07 -8.43863245062e-08 0 -3.29960807167e-07 -1.05087972919e-07 0 -3.29958558069e-07 -1.0516392741e-07 0 -3.29956308742e-07 -1.05239881905e-07 0 -3.29954059241e-07 -1.05315836396e-07 0 -3.29951809527e-07 -1.05391790886e-07 0 -3.29949559623e-07 -1.05467745368e-07 0 -1.99074661619e-07 -8.43919903737e-08 0 -4.71806089172e-09 -3.24467638229e-08 0 0 -7.52116643637e-10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.01847509027e-07 -1.62495637518e-08 0 -9.38004554896e-07 -1.66198833205e-07 0 -2.21576586977e-06 -4.71699010938e-07 -5.5246944455e-08 -2.85306977009e-06 -7.18658333919e-07 -1.29437141936e-07 -2.85297570186e-06 -7.95926523626e-07 -1.23435160925e-07 -2.85288158224e-06 -7.99474035699e-07 -7.35269816771e-08 -2.85278741122e-06 -8.03021547788e-07 -2.36188022909e-08 -2.85269318877e-06 -8.06569059872e-07 2.62893769096e-08 -2.85259891491e-06 -8.10116571948e-07 7.61975562829e-08 -2.85250458962e-06 -8.13664084043e-07 1.26105735614e-07 -2.21523135743e-06 -7.2972077106e-07 1.31520867037e-07 -9.37824459185e-07 -4.70035954403e-07 5.60000983946e-08 -1.0184493791e-07 -1.64429884376e-07 0 0 -1.62295849207e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4.71806640884e-09 -7.52159491306e-10 0 -1.03520108316e-06 -1.50661798834e-07 0 -4.04148589794e-06 -6.49527101317e-07 -1.95764089845e-07 -7.34618018129e-06 -1.34324397714e-06 -6.62107585146e-07 -8.7558734826e-06 -1.81206951338e-06 -9.33309312338e-07 -8.75547543378e-06 -1.94445992067e-06 -7.76859041065e-07 -8.75507695281e-06 -1.95973715511e-06 -4.62726030442e-07 -8.75467803973e-06 -1.97501438952e-06 -1.48593019874e-07 -8.7542786944e-06 -1.99029162394e-06 1.65539990719e-07 -8.75387891689e-06 -2.00556885838e-06 4.79673001354e-07 -8.75347870714e-06 -2.02084609281e-06 7.93806011962e-07 -7.34363125878e-06 -1.86619630598e-06 9.48202715156e-07 -4.04007271575e-06 -1.34240970177e-06 6.70893859958e-07 -1.03498106082e-06 -6.38654909956e-07 1.97978478032e-07 -4.71805994114e-09 -1.48991262564e-07 0 0 -7.52126973796e-10 0 0 0 0 0 0 0 0 0 0 0 0 -2.03801842653e-07 -3.1779138355e-08 0 -2.95405358228e-06 -3.56927196707e-07 -8.30587945927e-08 -8.45639975402e-06 -1.18233673858e-06 -7.93935939481e-07 -1.36632326804e-05 -2.16536850426e-06 -1.9215372656e-06 -1.57361885462e-05 -2.76791797907e-06 -2.32262879118e-06 -1.57354172906e-05 -2.93289163897e-06 -1.84963720158e-06 -1.5734644909e-05 -2.96252812066e-06 -1.10207574477e-06 -1.57338714014e-05 -2.99216460233e-06 -3.54514288035e-07 -1.57330967678e-05 -3.02180108401e-06 3.93047168705e-07 -1.57323210083e-05 -3.0514375657e-06 1.14060862545e-06 -1.57315441227e-05 -3.08107404736e-06 1.88817008203e-06 -1.36580321262e-05 -2.87690383349e-06 2.35792789599e-06 -8.45283065317e-06 -2.1681237316e-06 1.94614357558e-06 -2.95304100352e-06 -1.15689244306e-06 8.03055120821e-07 -2.03790357804e-07 -3.5015128987e-07 8.38118520057e-08 0 -3.17211899691e-08 0 0 0 0 0 0 0 0 0 0 0 0 -5.29242920615e-07 -5.27183057819e-08 0 -4.55743990459e-06 -4.60071807872e-07 -2.32195881563e-07 -1.16309547455e-05 -1.41007917804e-06 -1.40693774644e-06 -1.78818004776e-05 -2.49248310774e-06 -2.9388199164e-06 -2.03197440092e-05 -3.13879259064e-06 -3.3378334207e-06 -2.03187284674e-05 -3.31431649557e-06 -2.61847153765e-06 -2.03177112614e-05 -3.35040125745e-06 -1.56053517894e-06 -2.03166923913e-05 -3.38648601935e-06 -5.02598820338e-07 -2.03156718572e-05 -3.42257078121e-06 5.55337538326e-07 -2.03146496589e-05 -3.4586555431e-06 1.61327389705e-06 -2.03136257965e-05 -3.494740305e-06 2.6712102556e-06 -1.78748311882e-05 -3.2727423105e-06 3.38685511893e-06 -1.16258368398e-05 -2.49724178778e-06 2.97533005501e-06 -4.55560130682e-06 -1.37743326098e-06 1.42301132559e-06 -5.29198838988e-07 -4.49999002052e-07 2.3432311786e-07 0 -5.25590164807e-08 0 0 0 0 0 0 0 0 0 0 0 0 -6.60458336025e-07 -5.2718305783e-08 0 -5.07305507495e-06 -4.60071807867e-07 -2.98341674228e-07 -1.25650300896e-05 -1.41007917809e-06 -1.61746688037e-06 -1.90981503697e-05 -2.49248310771e-06 -3.24735915057e-06 -2.16356717282e-05 -3.13879259062e-06 -3.63747870181e-06 -2.16345810936e-05 -3.31431649555e-06 -2.84415462218e-06 -2.16334886216e-05 -3.35040125742e-06 -1.6951244226e-06 -2.16323943119e-05 -3.38648601932e-06 -5.46094223027e-07 -2.16312981647e-05 -3.42257078118e-06 6.02935976513e-07 -2.16302001798e-05 -3.45865554309e-06 1.75196617614e-06 -2.16291003573e-05 -3.49474030496e-06 2.90099637565e-06 -1.90906359002e-05 -3.27274231044e-06 3.6904849321e-06 -1.25594286461e-05 -2.49724178777e-06 3.2874249616e-06 -5.07094116607e-06 -1.37743326101e-06 1.63587932109e-06 -6.60393465938e-07 -4.4999900205e-07 3.01090704313e-07 0 -5.25590164707e-08 0 0 0 0 0 0 0 0 0 0 0 0 -6.60458336023e-07 -5.27183057755e-08 0 -5.07305507496e-06 -4.60071807877e-07 -2.98341674178e-07 -1.25650300896e-05 -1.41007917807e-06 -1.61746688028e-06 -1.90981503697e-05 -2.49248310771e-06 -3.24735915058e-06 -2.16356717282e-05 -3.13879259065e-06 -3.63747870182e-06 -2.16345810937e-05 -3.31431649556e-06 -2.84415462219e-06 -2.16334886216e-05 -3.35040125743e-06 -1.69512442258e-06 -2.16323943119e-05 -3.38648601934e-06 -5.46094223072e-07 -2.16312981646e-05 -3.42257078121e-06 6.02935976565e-07 -2.16302001798e-05 -3.45865554313e-06 1.75196617611e-06 -2.16291003573e-05 -3.49474030497e-06 2.90099637564e-06 -1.90906359002e-05 -3.27274231048e-06 3.690484932e-06 -1.25594286461e-05 -2.49724178777e-06 3.28742496158e-06 -5.07094116611e-06 -1.377433261e-06 1.63587932113e-06 -6.60393465929e-07 -4.49999002047e-07 3.01090704357e-07 0 -5.2559016469e-08 0 0 0 0 0 0 0 0 0 0 0 0 -6.60458336025e-07 -5.2718305758e-08 0 -5.07305507496e-06 -4.60071807888e-07 -2.98341674222e-07 -1.25650300896e-05 -1.41007917807e-06 -1.6174668804e-06 -1.90981503697e-05 -2.49248310772e-06 -3.24735915063e-06 -2.16356717282e-05 -3.13879259063e-06 -3.63747870183e-06 -2.16345810937e-05 -3.31431649558e-06 -2.84415462218e-06 -2.16334886216e-05 -3.35040125744e-06 -1.69512442258e-06 -2.16323943119e-05 -3.38648601932e-06 -5.46094222978e-07 -2.16312981646e-05 -3.4225707812e-06 6.02935976529e-07 -2.16302001798e-05 -3.4586555431e-06 1.75196617607e-06 -2.16291003573e-05 -3.49474030496e-06 2.90099637562e-06 -1.90906359002e-05 -3.27274231047e-06 3.69048493206e-06 -1.25594286461e-05 -2.49724178778e-06 3.28742496156e-06 -5.07094116606e-06 -1.377433261e-06 1.63587932105e-06 -6.60393465965e-07 -4.49999002074e-07 3.01090704411e-07 0 -5.25590164654e-08 0 0 0 0 0 0 0 0 0 0 0 0 -6.60458336029e-07 -5.2718305789e-08 0 -5.07305507496e-06 -4.60071807882e-07 -2.98341674207e-07 -1.25650300896e-05 -1.41007917804e-06 -1.6174668803e-06 -1.90981503697e-05 -2.49248310771e-06 -3.24735915059e-06 -2.16356717282e-05 -3.13879259063e-06 -3.63747870176e-06 -2.16345810937e-05 -3.31431649559e-06 -2.84415462217e-06 -2.16334886216e-05 -3.35040125746e-06 -1.69512442261e-06 -2.16323943119e-05 -3.38648601937e-06 -5.4609422302e-07 -2.16312981646e-05 -3.42257078125e-06 6.02935976525e-07 -2.16302001798e-05 -3.45865554314e-06 1.7519661761e-06 -2.16291003573e-05 -3.494740305e-06 2.90099637563e-06 -1.90906359002e-05 -3.27274231048e-06 3.69048493207e-06 -1.25594286461e-05 -2.49724178777e-06 3.28742496163e-06 -5.07094116605e-06 -1.37743326098e-06 1.63587932113e-06 -6.60393465923e-07 -4.49999002034e-07 3.01090704341e-07 0 -5.25590164953e-08 0 0 0 0 0 0 0 0 0 0 0 0 -5.29569765114e-07 -3.17791383254e-08 0 -4.5668351761e-06 -3.56927196692e-07 -2.32318588479e-07 -1.16705048561e-05 -1.18233673858e-06 -1.40915737039e-06 -1.79584935404e-05 -2.16536850432e-06 -2.94623608641e-06 -2.04131701234e-05 -2.76791797907e-06 -3.34804606368e-06 -2.04121507252e-05 -2.93289163891e-06 -2.626872327e-06 -2.04111296558e-05 -2.9625281206e-06 -1.56554544328e-06 -2.04101069152e-05 -2.99216460228e-06 -5.04218559637e-07 -2.04090825035e-05 -3.02180108396e-06 5.57108324103e-07 -2.04080564206e-05 -3.05143756564e-06 1.61843520776e-06 -2.04070286665e-05 -3.08107404732e-06 2.6797620913e-06 -1.79514994204e-05 -2.87690383351e-06 3.39720222677e-06 -1.16653723005e-05 -2.16812373164e-06 2.98282971248e-06 -4.5649933444e-06 -1.15689244307e-06 1.42525399935e-06 -5.29525658709e-07 -3.50151289833e-07 2.34446839893e-07 0 -3.17211899245e-08 0 0 0 0 0 0 0 0 0 0 0 0 -2.03988648088e-07 -7.52159462108e-10 0 -2.96791081454e-06 -1.50661798793e-07 -8.31139756415e-08 -8.52867198926e-06 -6.4952710128e-07 -7.96552347785e-07 -1.38150226711e-05 -1.34324397716e-06 -1.93298630864e-06 -1.59251161608e-05 -1.81206951339e-06 -2.33999692114e-06 -1.59243371911e-05 -1.94445992065e-06 -1.86425688046e-06 -1.59235570855e-05 -1.9597371551e-06 -1.1107932773e-06 -1.5922775844e-05 -1.97501438951e-06 -3.57329674121e-07 -1.59219934666e-05 -1.99029162394e-06 3.96133929025e-07 -1.59212099532e-05 -2.00556885835e-06 1.14959753216e-06 -1.59204253039e-05 -2.02084609279e-06 1.90306113516e-06 -1.38097737758e-05 -1.86619630595e-06 2.37553222324e-06 -8.52507704656e-06 -1.34240970178e-06 1.95772521512e-06 -2.96689405234e-06 -6.38654909936e-07 8.05698888254e-07 -2.03977154255e-07 -1.48991262546e-07 8.38674832819e-08 0 -7.52126967072e-10 0 0 0 0 0 0 0 0 0 0 0 0 -4.71817129393e-09 0 0 -1.03927316023e-06 -1.62495637618e-08 0 -4.07783516058e-06 -1.6619883321e-07 -1.9613283789e-07 -7.44094427026e-06 -4.71699010873e-07 -6.65352047506e-07 -8.88078883563e-06 -7.18658333894e-07 -9.39949138752e-07 -8.88038596551e-06 -7.9592652363e-07 -7.82879848453e-07 -8.87998266068e-06 -7.99474035678e-07 -4.66315163314e-07 -8.87957892105e-06 -8.03021547744e-07 -1.49750478246e-07 -8.87917474661e-06 -8.06569059883e-07 1.66814206939e-07 -8.87877013739e-06 -8.10116571935e-07 4.83378892026e-07 -8.87836509337e-06 -8.13664084041e-07 7.99943577216e-07 -7.43836729412e-06 -7.29720771035e-07 9.54937261301e-07 -4.07641077463e-06 -4.70035954342e-07 6.74177497035e-07 -1.039052391e-06 -1.64429884359e-07 1.98350980729e-07 -4.71816485052e-09 -1.62295849583e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.01896405886e-07 0 0 -9.42125433741e-07 -7.52169895802e-10 0 -2.23356364194e-06 -3.25578591538e-08 -5.52836567635e-08 -2.87994146139e-06 -8.43863245353e-08 -1.29620080951e-07 -2.87984659539e-06 -1.05087972947e-07 -1.23656293735e-07 -2.87975167801e-06 -1.05163927433e-07 -7.36588041106e-08 -2.87965670918e-06 -1.0523988194e-07 -2.36613144813e-08 -2.87956168888e-06 -1.05315836454e-07 2.63361751387e-08 -2.87946661714e-06 -1.05391790945e-07 7.63336648392e-08 -2.87937149392e-06 -1.05467745432e-07 1.26331154531e-07 -2.23302530464e-06 -8.43919903841e-08 1.31706486e-07 -9.41944666653e-07 -3.24467638228e-08 5.60372609675e-08 -1.01893833738e-07 -7.52116663222e-10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4.71817035714e-09 0 0 -1.99268120075e-07 0 0 -3.30476808524e-07 0 0 -3.30474556668e-07 0 0 -3.30472304623e-07 0 0 -3.30470052314e-07 0 0 -3.30467799853e-07 0 0 -3.30465547181e-07 0 0 -3.30463294266e-07 0 0 -1.99261565006e-07 0 0 -4.71816576544e-09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.47145594438e-07 -2.25092723129e-08 0 -2.64137333665e-07 -6.28566983163e-08 0 -2.64136011077e-07 -8.06108269567e-08 0 -2.64134688389e-07 -8.06554821308e-08 0 -2.64133365615e-07 -8.07001372901e-08 0 -2.64132042815e-07 -8.07447924419e-08 0 -2.64130719895e-07 -8.0789447622e-08 0 -2.64129396776e-07 -8.08341027914e-08 0 -1.47142310613e-07 -6.28235031819e-08 0 0 -2.24484191459e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4.16672148213e-07 -6.38951763043e-08 0 -1.24376988806e-06 -2.32208376037e-07 0 -1.66966596582e-06 -3.81342128173e-07 -1.38398230103e-09 -1.66962723612e-06 -4.27251334327e-07 -2.30252236867e-09 -1.6695884914e-06 -4.28511811245e-07 -1.37164010098e-09 -1.66954973147e-06 -4.29772288157e-07 -4.40757966487e-10 -1.66951095646e-06 -4.31032765059e-07 4.90124272482e-10 -1.66947216636e-06 -4.3229324197e-07 1.42100647737e-09 -1.66943336103e-06 -4.33553718897e-07 2.3518887688e-09 -1.24358264386e-06 -3.84743449237e-07 1.40867976405e-09 -4.16639227383e-07 -2.30850120447e-07 0 0 -6.34807935034e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.47146415215e-07 -2.25000381689e-08 0 -1.5140070862e-06 -1.91491888666e-07 0 -3.33997242333e-06 -5.11185682217e-07 -3.99176332289e-08 -4.18258868225e-06 -7.59601411197e-07 -9.96769100379e-08 -4.18243936414e-06 -8.37068280808e-07 -9.94241304839e-08 -4.18228993581e-06 -8.41252212442e-07 -5.92252142233e-08 -4.18214039731e-06 -8.4543614406e-07 -1.90262978507e-08 -4.18199074853e-06 -8.496200757e-07 2.1172618438e-08 -4.1818409896e-06 -8.53804007307e-07 6.137153477e-08 -4.18169112048e-06 -8.57987938942e-07 1.01570451144e-07 -3.33913305495e-06 -7.73186180345e-07 1.01291027078e-07 -1.51374086567e-06 -5.09756159114e-07 4.04590185323e-08 -1.47141489587e-07 -1.8914605441e-07 0 0 -2.24576537423e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4.11385619578e-07 -4.04293930532e-08 0 -2.50729084588e-06 -2.57244510066e-07 -2.3148696431e-09 -5.02824708988e-06 -6.39578535237e-07 -1.20268540672e-07 -6.17797505328e-06 -9.30852941088e-07 -2.73166686844e-07 -6.17772140722e-06 -1.01923109975e-06 -2.58232883205e-07 -6.17746752134e-06 -1.02506197291e-06 -1.53837579326e-07 -6.17721339571e-06 -1.03089284604e-06 -4.94422755614e-08 -6.17695903033e-06 -1.0367237192e-06 5.49530282458e-08 -6.17670442517e-06 -1.04255459237e-06 1.59348332073e-07 -6.17644958027e-06 -1.04838546552e-06 2.63743635836e-07 -5.02672019687e-06 -9.50485833967e-07 2.77517381596e-07 -2.50667510051e-06 -6.38355384302e-07 1.21907541414e-07 -4.11364296366e-07 -2.53877316569e-07 2.33956707959e-09 0 -4.02927464637e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5.28598070383e-07 -4.042939304e-08 0 -2.81950963466e-06 -2.57244510069e-07 -4.62979084449e-09 -5.56947887811e-06 -6.39578535236e-07 -1.60738964169e-07 -6.80137191135e-06 -9.3085294107e-07 -3.49858918321e-07 -6.80108439482e-06 -1.01923109969e-06 -3.22311913273e-07 -6.80079659049e-06 -1.02506197284e-06 -1.92015937842e-07 -6.80050849833e-06 -1.03089284601e-06 -6.1719962392e-08 -6.80022011838e-06 -1.03672371917e-06 6.85760128972e-08 -6.79993145054e-06 -1.04255459234e-06 1.98871988203e-07 -6.79964249489e-06 -1.04838546549e-06 3.2916796341e-07 -5.56772323404e-06 -9.50485833954e-07 3.55392331957e-07 -2.81874711854e-06 -6.38355384303e-07 1.62934068314e-07 -5.28565375368e-07 -2.5387731658e-07 4.67918584844e-09 0 -4.02927464809e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5.28598070377e-07 -4.04293930691e-08 0 -2.81950963466e-06 -2.57244510077e-07 -4.62979090957e-09 -5.5694788781e-06 -6.39578535234e-07 -1.60738964137e-07 -6.80137191134e-06 -9.30852941049e-07 -3.49858918223e-07 -6.80108439482e-06 -1.0192310997e-06 -3.22311913313e-07 -6.8007965905e-06 -1.02506197286e-06 -1.92015937911e-07 -6.80050849834e-06 -1.03089284601e-06 -6.17199624309e-08 -6.80022011836e-06 -1.03672371915e-06 6.8576012935e-08 -6.79993145053e-06 -1.04255459233e-06 1.98871988168e-07 -6.79964249491e-06 -1.0483854655e-06 3.29167963467e-07 -5.56772323406e-06 -9.50485833953e-07 3.55392331898e-07 -2.81874711854e-06 -6.38355384316e-07 1.62934068333e-07 -5.28565375401e-07 -2.53877316589e-07 4.67918582563e-09 0 -4.02927464566e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5.28598070375e-07 -4.04293930549e-08 0 -2.81950963466e-06 -2.57244510079e-07 -4.62979086685e-09 -5.56947887811e-06 -6.39578535255e-07 -1.60738964247e-07 -6.80137191136e-06 -9.30852941057e-07 -3.49858918217e-07 -6.80108439482e-06 -1.01923109972e-06 -3.22311913286e-07 -6.8007965905e-06 -1.02506197284e-06 -1.92015937853e-07 -6.80050849832e-06 -1.03089284599e-06 -6.17199624164e-08 -6.80022011835e-06 -1.03672371916e-06 6.85760129147e-08 -6.79993145052e-06 -1.04255459233e-06 1.98871988207e-07 -6.79964249488e-06 -1.04838546548e-06 3.29167963414e-07 -5.56772323403e-06 -9.5048583395e-07 3.55392331966e-07 -2.81874711855e-06 -6.38355384307e-07 1.62934068284e-07 -5.28565375419e-07 -2.53877316577e-07 4.67918577583e-09 0 -4.0292746476e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5.28598070383e-07 -4.04293930571e-08 0 -2.81950963467e-06 -2.57244510023e-07 -4.62979089296e-09 -5.56947887809e-06 -6.39578535219e-07 -1.60738964126e-07 -6.80137191135e-06 -9.30852941091e-07 -3.49858918239e-07 -6.80108439482e-06 -1.01923109981e-06 -3.22311913289e-07 -6.80079659051e-06 -1.02506197294e-06 -1.92015937877e-07 -6.80050849834e-06 -1.03089284609e-06 -6.17199624014e-08 -6.80022011836e-06 -1.03672371926e-06 6.85760129458e-08 -6.79993145055e-06 -1.04255459241e-06 1.98871988223e-07 -6.7996424949e-06 -1.04838546559e-06 3.29167963449e-07 -5.56772323407e-06 -9.50485833974e-07 3.55392331924e-07 -2.81874711856e-06 -6.38355384261e-07 1.62934068273e-07 -5.28565375382e-07 -2.53877316531e-07 4.6791858255e-09 0 -4.02927464662e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4.1160309879e-07 -2.25000381617e-08 0 -2.51077122933e-06 -1.91491888631e-07 -2.31492114365e-09 -5.03892552386e-06 -5.11185682262e-07 -1.2032455746e-07 -6.19266175382e-06 -7.59601411158e-07 -2.73389230382e-07 -6.1924075929e-06 -8.37068280702e-07 -2.5847219381e-07 -6.19215319168e-06 -8.41252212327e-07 -1.53980248534e-07 -6.1918985502e-06 -8.45436143975e-07 -4.94883031967e-08 -6.19164366849e-06 -8.49620075609e-07 5.50036420045e-08 -6.19138854647e-06 -8.53804007228e-07 1.5949558725e-07 -6.19113318419e-06 -8.57987938862e-07 2.63987532452e-07 -5.03739585229e-06 -7.731861803e-07 2.77743125107e-07 -2.51015470783e-06 -5.09756159109e-07 1.21964247106e-07 -4.11581765356e-07 -1.89146054389e-07 2.33961901417e-09 0 -2.24576537538e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.47244207203e-07 0 0 -1.5186744387e-06 -6.38951762764e-08 0 -3.35623375113e-06 -2.32208376035e-07 -3.99367946751e-08 -4.20604772481e-06 -3.81342128106e-07 -9.97835522002e-08 -4.20589767552e-06 -4.27251334282e-07 -9.95608982777e-08 -4.20574751559e-06 -4.28511811199e-07 -5.93067454199e-08 -4.20559724498e-06 -4.29772288109e-07 -1.90525926048e-08 -4.20544686373e-06 -4.31032765015e-07 2.12015601713e-08 -4.20529637184e-06 -4.32293241934e-07 6.14557130693e-08 -4.20514576925e-06 -4.33553718833e-07 1.01709865931e-07 -3.3553907492e-06 -3.84743449211e-07 1.01399241816e-07 -1.51840748456e-06 -2.30850120419e-07 4.0478413704e-08 -1.47239278697e-07 -6.34807934753e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4.17457182685e-07 0 0 -1.2491245302e-06 -2.25092723147e-08 0 -1.67828364699e-06 -6.28566983151e-08 -1.38401304544e-09 -1.67824474228e-06 -8.06108269531e-08 -2.30259920465e-09 -1.6782058225e-06 -8.0655482147e-08 -1.37168586261e-09 -1.67816688755e-06 -8.07001373178e-08 -4.40772656018e-10 -1.67812793741e-06 -8.07447924317e-08 4.90140529825e-10 -1.67808897216e-06 -8.07894476533e-08 1.42105376202e-09 -1.67804999177e-06 -8.08341027847e-08 2.35196701735e-09 -1.24893658747e-06 -6.28235031974e-08 1.4087109951e-09 -4.1742420932e-07 -2.24484191533e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.47243385932e-07 0 0 -2.64452604964e-07 0 0 -2.64451281013e-07 0 0 -2.64449956999e-07 0 0 -2.64448632855e-07 0 0 -2.64447308696e-07 0 0 -2.64445984458e-07 0 0 -2.6444466002e-07 0 0 -1.47240100315e-07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5.13179230364e-09 -7.52184765859e-10 0 -5.13179181326e-09 -1.50424782453e-09 0 -5.13179135614e-09 -1.50426333523e-09 0 -5.13179089613e-09 -1.50427885198e-09 0 -5.13179045154e-09 -1.50429436024e-09 0 -5.13178999802e-09 -1.50430985832e-09 0 -5.13178954123e-09 -1.50432537489e-09 0 0 -7.52101701198e-10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.10777825944e-07 -1.62565253755e-08 0 -2.21668824132e-07 -4.80111327147e-08 0 -2.21668003883e-07 -6.3431449429e-08 0 -2.21667183629e-07 -6.34590832103e-08 0 -2.21666363289e-07 -6.34867169743e-08 0 -2.21665542946e-07 -6.35143507522e-08 0 -2.21664722476e-07 -6.35419845099e-08 0 -2.2166390207e-07 -6.35696182685e-08 0 -1.10776111882e-07 -4.79685584212e-08 0 0 -1.62226233012e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5.13179322403e-09 -7.52174418929e-10 0 -3.27368754834e-07 -3.25660429479e-08 0 -5.75635324581e-07 -8.44006436394e-08 0 -5.7563217673e-07 -1.05087975242e-07 0 -5.75629028582e-07 -1.05163929728e-07 0 -5.75625880074e-07 -1.05239884206e-07 0 -5.75622731233e-07 -1.0531583873e-07 0 -5.75619581929e-07 -1.05391793203e-07 0 -5.75616432431e-07 -1.05467747701e-07 0 -3.27360292616e-07 -8.43776750068e-08 0 -5.13178859469e-09 -3.24385812737e-08 0 0 -7.52112021732e-10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.02637005503e-08 -7.52174414061e-10 0 -4.3327877656e-07 -3.25660429637e-08 0 -7.18349013138e-07 -8.44006436367e-08 0 -7.18344381065e-07 -1.05087975213e-07 0 -7.18339748422e-07 -1.05163929714e-07 0 -7.18335115186e-07 -1.05239884194e-07 0 -7.18330481278e-07 -1.05315838704e-07 0 -7.18325846747e-07 -1.05391793202e-07 0 -7.18321211661e-07 -1.05467747683e-07 0 -4.33265286774e-07 -8.43776750111e-08 0 -1.02636911046e-08 -3.24385812711e-08 0 0 -7.5211201911e-10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.02637005499e-08 -7.52174422463e-10 0 -4.33278776549e-07 -3.25660429675e-08 0 -7.18349013136e-07 -8.44006436349e-08 0 -7.18344381081e-07 -1.05087975221e-07 0 -7.1833974841e-07 -1.05163929685e-07 0 -7.18335115156e-07 -1.05239884175e-07 0 -7.18330481275e-07 -1.05315838691e-07 0 -7.18325846747e-07 -1.05391793182e-07 0 -7.18321211651e-07 -1.05467747653e-07 0 -4.33265286761e-07 -8.43776750027e-08 0 -1.02636911043e-08 -3.24385813142e-08 0 0 -7.52112065354e-10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.02637005559e-08 -7.52174419948e-10 0 -4.33278776567e-07 -3.25660429689e-08 0 -7.18349013152e-07 -8.44006436071e-08 0 -7.18344381065e-07 -1.05087975225e-07 0 -7.18339748414e-07 -1.0516392969e-07 0 -7.18335115151e-07 -1.0523988421e-07 0 -7.18330481258e-07 -1.05315838695e-07 0 -7.1832584674e-07 -1.05391793185e-07 0 -7.18321211655e-07 -1.05467747658e-07 0 -4.33265286753e-07 -8.43776749966e-08 0 -1.02636910692e-08 -3.24385812785e-08 0 0 -7.52112032208e-10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.02637005387e-08 -7.52174431595e-10 0 -4.33278776561e-07 -3.25660429541e-08 0 -7.18349013145e-07 -8.44006436302e-08 0 -7.18344381061e-07 -1.05087975287e-07 0 -7.18339748418e-07 -1.05163929738e-07 0 -7.18335115153e-07 -1.05239884261e-07 0 -7.18330481269e-07 -1.05315838781e-07 0 -7.18325846761e-07 -1.05391793267e-07 0 -7.1832121164e-07 -1.05467747727e-07 0 -4.33265286765e-07 -8.43776750307e-08 0 -1.02636911069e-08 -3.24385812604e-08 0 0 -7.52112039342e-10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5.13190730265e-09 0 0 -3.27518856455e-07 -1.62565253581e-08 0 -5.75990796527e-07 -4.80111326983e-08 0 -5.7598764691e-07 -6.34314493567e-08 0 -5.75984497007e-07 -6.34590831158e-08 0 -5.75981346712e-07 -6.34867169269e-08 0 -5.75978196094e-07 -6.35143506873e-08 0 -5.75975045096e-07 -6.35419844496e-08 0 -5.75971893767e-07 -6.35696181914e-08 0 -3.2751039072e-07 -4.79685584023e-08 0 -5.13190265617e-09 -1.62226232966e-08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1.10831006705e-07 0 0 -2.21871993384e-07 -7.52184763938e-10 0 -2.21871172502e-07 -1.50424780168e-09 0 -2.21870351606e-07 -1.50426333573e-09 0 -2.21869530611e-07 -1.50427886069e-09 0 -2.21868709628e-07 -1.50429436881e-09 0 -2.21867888546e-07 -1.50430985363e-09 0 -2.21867067453e-07 -1.50432537999e-09 0 -1.10829291936e-07 -7.52101696954e-10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5.13190636793e-09 0 0 -5.13190590346e-09 0 0 -5.13190544907e-09 0 0 -5.13190499545e-09 0 0 -5.1319045209e-09 0 0 -5.13190409161e-09 0 0 -5.13190363258e-09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ) ; boundaryField { stationaryWalls { type calculated; value uniform 0; } atmosphere { type calculated; value uniform 0; } floatingObject { type calculated; value nonuniform List<scalar> 348 ( -4.28823374422e-05 -2.57294024653e-05 -8.57646748844e-06 8.57646748844e-06 2.57294024653e-05 4.28823374422e-05 -4.28823374422e-05 -2.57294024653e-05 -8.57646748843e-06 8.57646748844e-06 2.57294024653e-05 4.28823374422e-05 -4.28823374422e-05 -2.57294024653e-05 -8.57646748843e-06 8.57646748844e-06 2.57294024653e-05 4.28823374422e-05 -4.28823374422e-05 -2.57294024653e-05 -8.57646748843e-06 8.57646748844e-06 2.57294024653e-05 4.28823374422e-05 -2.77183233601e-05 -2.771832336e-05 -2.771832336e-05 -2.77183233601e-05 -2.77183233601e-05 -2.771832336e-05 -3.81176332809e-06 3.81176332809e-06 -3.81176332811e-06 3.8117633281e-06 -3.81176332811e-06 3.81176332809e-06 -3.81176332809e-06 2.77183233601e-05 2.77183233601e-05 2.77183233601e-05 2.77183233601e-05 2.77183233601e-05 3.81176332808e-06 2.771832336e-05 -2.77183233609e-05 -2.77183233609e-05 -2.77183233609e-05 -2.77183233609e-05 -2.77183233609e-05 -2.77183233609e-05 -1.14352899848e-05 1.14352899848e-05 -1.14352899848e-05 1.14352899848e-05 -1.14352899848e-05 1.14352899848e-05 -1.14352899848e-05 2.77183233609e-05 2.77183233609e-05 2.77183233609e-05 2.77183233609e-05 2.77183233609e-05 1.14352899847e-05 2.77183233609e-05 -2.771832336e-05 -2.77183233601e-05 -2.77183233601e-05 -2.77183233601e-05 -2.77183233601e-05 -2.771832336e-05 -1.90588166408e-05 1.90588166408e-05 -1.90588166408e-05 1.90588166408e-05 -1.90588166408e-05 1.90588166408e-05 -1.90588166408e-05 2.77183233601e-05 2.77183233601e-05 2.771832336e-05 2.771832336e-05 2.771832336e-05 1.90588166408e-05 2.771832336e-05 -2.771832336e-05 -2.77183233601e-05 -2.77183233601e-05 -2.771832336e-05 -2.771832336e-05 -2.771832336e-05 -2.66823432971e-05 2.66823432971e-05 -2.6682343297e-05 2.6682343297e-05 -2.6682343297e-05 2.6682343297e-05 -2.6682343297e-05 2.77183233601e-05 2.771832336e-05 2.771832336e-05 2.77183233601e-05 2.771832336e-05 2.6682343297e-05 2.771832336e-05 -2.77183233609e-05 -2.77183233609e-05 -2.77183233609e-05 -2.77183233609e-05 -2.77183233609e-05 -2.77183233609e-05 -3.43058699544e-05 3.43058699544e-05 -3.43058699544e-05 3.43058699544e-05 -3.43058699544e-05 3.43058699545e-05 -3.43058699544e-05 2.77183233609e-05 2.77183233609e-05 2.77183233609e-05 2.77183233609e-05 2.77183233609e-05 3.43058699544e-05 2.77183233609e-05 -2.77183233601e-05 -2.77183233601e-05 -2.77183233601e-05 -2.77183233601e-05 -2.771832336e-05 -2.771832336e-05 -4.19293966097e-05 4.19293966097e-05 -4.19293966097e-05 4.19293966097e-05 -4.19293966097e-05 4.19293966097e-05 -4.19293966098e-05 2.77183233601e-05 2.771832336e-05 2.771832336e-05 2.77183233601e-05 2.77183233601e-05 4.19293966097e-05 2.77183233601e-05 -2.77183233601e-05 -2.77183233601e-05 -2.77183233601e-05 -2.77183233601e-05 -2.771832336e-05 -2.77183233601e-05 -4.9552923266e-05 4.9552923266e-05 -4.9552923266e-05 4.9552923266e-05 -4.9552923266e-05 4.9552923266e-05 -4.9552923266e-05 2.77183233601e-05 2.771832336e-05 2.771832336e-05 2.771832336e-05 2.771832336e-05 4.9552923266e-05 2.771832336e-05 -2.77183233609e-05 -2.77183233609e-05 -2.77183233609e-05 -2.77183233609e-05 -2.77183233609e-05 -2.77183233609e-05 -5.7176449924e-05 5.7176449924e-05 -5.7176449924e-05 5.7176449924e-05 -5.7176449924e-05 5.7176449924e-05 -5.7176449924e-05 2.77183233609e-05 2.77183233609e-05 2.77183233609e-05 2.77183233609e-05 2.77183233609e-05 5.7176449924e-05 2.77183233609e-05 -2.77183233601e-05 -2.77183233601e-05 -2.77183233601e-05 -2.77183233601e-05 -2.771832336e-05 -2.77183233601e-05 -6.47999765787e-05 6.47999765787e-05 -6.47999765787e-05 6.47999765787e-05 -6.47999765787e-05 6.47999765787e-05 -6.47999765787e-05 2.77183233601e-05 2.77183233601e-05 2.771832336e-05 2.77183233601e-05 2.77183233601e-05 6.47999765787e-05 2.77183233601e-05 -2.77183233601e-05 -2.771832336e-05 -2.77183233601e-05 -2.77183233601e-05 -2.77183233601e-05 -2.77183233601e-05 -7.24235032349e-05 7.24235032349e-05 -7.24235032349e-05 7.24235032349e-05 -7.24235032349e-05 7.24235032349e-05 -7.24235032349e-05 2.771832336e-05 2.77183233601e-05 2.771832336e-05 2.77183233601e-05 2.77183233601e-05 7.24235032349e-05 2.77183233601e-05 -2.77183233609e-05 -2.77183233609e-05 -2.77183233609e-05 -2.77183233609e-05 -2.77183233609e-05 -2.77183233609e-05 -8.00470298936e-05 8.00470298936e-05 -8.00470298936e-05 8.00470298936e-05 -8.00470298936e-05 8.00470298936e-05 -8.00470298936e-05 2.77183233609e-05 2.77183233609e-05 2.77183233609e-05 2.77183233609e-05 2.77183233609e-05 8.00470298936e-05 2.77183233609e-05 -2.771832336e-05 -2.771832336e-05 -2.77183233601e-05 -2.77183233601e-05 -2.771832336e-05 -2.771832336e-05 -8.76705565476e-05 8.76705565476e-05 -8.76705565476e-05 8.76705565476e-05 -8.76705565476e-05 8.76705565476e-05 -8.76705565476e-05 2.771832336e-05 2.771832336e-05 2.77183233601e-05 2.77183233601e-05 2.771832336e-05 8.76705565476e-05 2.771832336e-05 -2.77183233601e-05 -2.77183233601e-05 -2.771832336e-05 -2.77183233601e-05 -2.77183233601e-05 -2.771832336e-05 -9.52940832038e-05 9.52940832038e-05 -9.52940832038e-05 9.52940832038e-05 -9.52940832038e-05 9.52940832038e-05 -9.52940832038e-05 2.77183233601e-05 2.77183233601e-05 2.77183233601e-05 2.77183233601e-05 2.77183233601e-05 9.52940832038e-05 2.771832336e-05 -2.77183233609e-05 -2.77183233609e-05 -2.77183233609e-05 -2.77183233609e-05 -2.77183233609e-05 -2.77183233609e-05 -0.000102917609863 0.000102917609863 -0.000102917609863 0.000102917609863 -0.000102917609863 0.000102917609863 -0.000102917609863 2.77183233609e-05 2.77183233609e-05 2.77183233609e-05 2.77183233609e-05 2.77183233609e-05 0.000102917609863 2.77183233609e-05 -2.771832336e-05 -2.771832336e-05 -2.77183233601e-05 -2.77183233601e-05 -2.77183233601e-05 -2.77183233601e-05 -0.000110541136516 4.28823374421e-05 2.57294024652e-05 8.57646748833e-06 -8.57646748849e-06 -2.57294024654e-05 0.000110541136517 -4.28823374422e-05 -0.000110541136517 4.28823374421e-05 2.57294024652e-05 8.57646748829e-06 -8.57646748848e-06 -2.57294024654e-05 0.000110541136517 -4.28823374422e-05 -0.000110541136517 4.28823374421e-05 2.57294024652e-05 8.57646748835e-06 -8.57646748848e-06 -2.57294024654e-05 0.000110541136516 -4.28823374422e-05 -0.000110541136516 2.771832336e-05 4.28823374421e-05 2.77183233601e-05 2.57294024652e-05 2.77183233601e-05 8.57646748832e-06 2.771832336e-05 -8.57646748852e-06 2.77183233601e-05 -2.57294024654e-05 0.000110541136517 2.77183233601e-05 -4.28823374422e-05 ) ; } } // ************************************************************************* //
[ "peterbryz@yahoo.com" ]
peterbryz@yahoo.com
150208f5f0b05440d5b7298d027cdc9d116714e4
fa2bd39e3b4283e41b623ffcf121ac6456d74796
/Homework/Assignment1/Gaddis_9th_Chapter3_Problem13_Currency/main.cpp
cb72026139d9f1c83e9eac4883869f5ce07dc3df
[]
no_license
xevanx/WenzelEvan_CIS-17A_45498
0bcd4a735ce9b7477b12ae3a8eb2a5e4c783e393
7323839f721a686b1bb1c64ca71cf410698974d2
refs/heads/main
2023-06-23T04:31:38.215026
2021-07-20T22:38:12
2021-07-20T22:38:12
379,476,471
0
0
null
null
null
null
UTF-8
C++
false
false
1,379
cpp
/* * File: main.cpp * Author: Evan Wenzel * Created on June 25, 2020, 4:59 PM * Purpose: Creating a program that converts US Dollars to both Japanese Yen * and Euros */ //System Libraries #include <iostream> //I/O Library #include <cmath> //CMath Library using namespace std; //User Libraries //Global Constants Only //Well known Science, Mathematical and Laboratory Constants //Function Prototypes //Execution of Code Begins Here int main(int argc, char** argv) { //Declare all variables for this function const float YEN_PER_DOLLAR = 98.93; const float EURO_PER_DOLLAR = 0.74; float dollars; //Dollars user wants converted float totEuro; //Total Euros converted from dollars float totYen; //Total Yen converted from dollars //Initialize all known variables cout << "Please input the amount of U.S. dollars you wish to convert." << endl; cin >> dollars; //Process Inputs to Outputs -> Mapping Process //Maps known values to the unknown objectives totEuro = dollars * EURO_PER_DOLLAR; //conversion from dollars to Euro totYen = dollars * YEN_PER_DOLLAR; //Conversion from dollars to Yen //Display the Inputs/Outputs cout << "With $" << dollars << " you would receive " << totEuro << " Euro and " << totYen << " yen" << endl; //Exit stage right return 0; }
[ "xevanx2002@gmail.com" ]
xevanx2002@gmail.com
a190ed038b36eca140a6d6082c15ef0418779469
e299ad494a144cc6cfebcd45b10ddcc8efab54a9
/llvm/lib/Target/ARM64/MCTargetDesc/ARM64BaseInfo.h
69ad1e1f7a9a524f04b0174d841bcea24727a511
[ "NCSA" ]
permissive
apple-oss-distributions/lldb
3dbd2fea5ce826b2bebec2fe88fadbca771efbdf
10de1840defe0dff10b42b9c56971dbc17c1f18c
refs/heads/main
2023-08-02T21:31:38.525968
2014-04-11T21:20:22
2021-10-06T05:26:12
413,590,587
4
1
null
null
null
null
UTF-8
C++
false
false
29,133
h
//===-- ARM64BaseInfo.h - Top level definitions for ARM64 -------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file contains small standalone helper functions and enum definitions for // the ARM64 target useful for the compiler back-end and the MC libraries. // As such, it deliberately does not include references to LLVM core // code gen types, passes, etc.. // //===----------------------------------------------------------------------===// #ifndef ARM64BASEINFO_H #define ARM64BASEINFO_H #include "ARM64MCTargetDesc.h" #include "llvm/Support/ErrorHandling.h" namespace llvm { namespace ARM64CC { // The CondCodes constants map directly to the 4-bit encoding of the condition // field for predicated instructions. enum CondCode { // Meaning (integer) Meaning (floating-point) EQ = 0x0, // Equal Equal NE = 0x1, // Not equal Not equal, or unordered CS = 0x2, // Carry set >, ==, or unordered CC = 0x3, // Carry clear Less than MI = 0x4, // Minus, negative Less than PL = 0x5, // Plus, positive or zero >, ==, or unordered VS = 0x6, // Overflow Unordered VC = 0x7, // No overflow Not unordered HI = 0x8, // Unsigned higher Greater than, or unordered LS = 0x9, // Unsigned lower or same Less than or equal GE = 0xa, // Greater than or equal Greater than or equal LT = 0xb, // Less than Less than, or unordered GT = 0xc, // Greater than Greater than LE = 0xd, // Less than or equal <, ==, or unordered AL = 0xe // Always (unconditional) Always (unconditional) }; inline static const char *getCondCodeName(CondCode Code) { // cond<0> is ignored when cond<3:1> = 111, where 1110 is 0xe (aka AL). if ((Code & AL) == AL) Code = AL; switch (Code) { case EQ: return "eq"; case NE: return "ne"; case CS: return "cs"; case CC: return "cc"; case MI: return "mi"; case PL: return "pl"; case VS: return "vs"; case VC: return "vc"; case HI: return "hi"; case LS: return "ls"; case GE: return "ge"; case LT: return "lt"; case GT: return "gt"; case LE: return "le"; case AL: return "al"; } llvm_unreachable("Unknown condition code"); } inline static CondCode getInvertedCondCode(CondCode Code) { switch (Code) { default: llvm_unreachable("Unknown condition code"); case EQ: return NE; case NE: return EQ; case CS: return CC; case CC: return CS; case MI: return PL; case PL: return MI; case VS: return VC; case VC: return VS; case HI: return LS; case LS: return HI; case GE: return LT; case LT: return GE; case GT: return LE; case LE: return GT; } } /// Given a condition code, return NZCV flags that would satisfy that condition. /// The flag bits are in the format expected by the ccmp instructions. /// Note that many different flag settings can satisfy a given condition code, /// this function just returns one of them. inline static unsigned getNZCVToSatisfyCondCode(CondCode Code) { // NZCV flags encoded as expected by ccmp instructions, ARMv8 ISA 5.5.7. enum { N = 8, Z = 4, C = 2, V = 1 }; switch (Code) { default: llvm_unreachable("Unknown condition code"); case EQ: return Z; // Z == 1 case NE: return 0; // Z == 0 case CS: return C; // C == 1 case CC: return 0; // C == 0 case MI: return N; // N == 1 case PL: return 0; // N == 0 case VS: return V; // V == 1 case VC: return 0; // V == 0 case HI: return C; // C == 1 && Z == 0 case LS: return 0; // C == 0 || Z == 1 case GE: return 0; // N == V case LT: return N; // N != V case GT: return 0; // Z == 0 && N == V case LE: return Z; // Z == 1 || N != V } } } // end namespace ARM64CC namespace ARM64SYS { enum BarrierOption { InvalidBarrier = 0xff, OSHLD = 0x1, OSHST = 0x2, OSH = 0x3, NSHLD = 0x5, NSHST = 0x6, NSH = 0x7, ISHLD = 0x9, ISHST = 0xa, ISH = 0xb, LD = 0xd, ST = 0xe, SY = 0xf }; inline static const char *getBarrierOptName(BarrierOption Opt) { switch (Opt) { default: return NULL; case 0x1: return "oshld"; case 0x2: return "oshst"; case 0x3: return "osh"; case 0x5: return "nshld"; case 0x6: return "nshst"; case 0x7: return "nsh"; case 0x9: return "ishld"; case 0xa: return "ishst"; case 0xb: return "ish"; case 0xd: return "ld"; case 0xe: return "st"; case 0xf: return "sy"; } } #define A64_SYSREG_ENC(op0,CRn,op2,CRm,op1) ((op0) << 14 | (op1) << 11 | \ (CRn) << 7 | (CRm) << 3 | (op2)) enum SystemRegister { InvalidSystemReg = 0, // Table in section 3.10.3 SPSR_EL1 = 0xc200, SPSR_svc = SPSR_EL1, ELR_EL1 = 0xc201, SP_EL0 = 0xc208, SPSel = 0xc210, CurrentEL = 0xc212, DAIF = 0xda11, NZCV = 0xda10, FPCR = 0xda20, FPSR = 0xda21, DSPSR = 0xda28, DLR = 0xda29, SPSR_EL2 = 0xe200, SPSR_hyp = SPSR_EL2, ELR_EL2 = 0xe201, SP_EL1 = 0xe208, SPSR_irq = 0xe218, SPSR_abt = 0xe219, SPSR_und = 0xe21a, SPSR_fiq = 0xe21b, SPSR_EL3 = 0xf200, ELR_EL3 = 0xf201, SP_EL2 = 0xf208, // Table in section 3.10.8 MIDR_EL1 = 0xc000, CTR_EL0 = 0xd801, MPIDR_EL1 = 0xc005, ECOIDR_EL1 = 0xc006, DCZID_EL0 = 0xd807, MVFR0_EL1 = 0xc018, MVFR1_EL1 = 0xc019, ID_AA64PFR0_EL1 = 0xc020, ID_AA64PFR1_EL1 = 0xc021, ID_AA64DFR0_EL1 = 0xc028, ID_AA64DFR1_EL1 = 0xc029, ID_AA64ISAR0_EL1 = 0xc030, ID_AA64ISAR1_EL1 = 0xc031, ID_AA64MMFR0_EL1 = 0xc038, ID_AA64MMFR1_EL1 = 0xc039, CCSIDR_EL1 = 0xc800, CLIDR_EL1 = 0xc801, AIDR_EL1 = 0xc807, CSSELR_EL1 = 0xd000, VPIDR_EL2 = 0xe000, VMPIDR_EL2 = 0xe005, SCTLR_EL1 = 0xc080, SCTLR_EL2 = 0xe080, SCTLR_EL3 = 0xf080, ACTLR_EL1 = 0xc081, ACTLR_EL2 = 0xe081, ACTLR_EL3 = 0xf081, CPACR_EL1 = 0xc082, CPTR_EL2 = 0xe08a, CPTR_EL3 = 0xf08a, SCR_EL3 = 0xf088, HCR_EL2 = 0xe088, MDCR_EL2 = 0xe089, MDCR_EL3 = 0xf099, HSTR_EL2 = 0xe08b, HACR_EL2 = 0xe08f, TTBR0_EL1 = 0xc100, TTBR1_EL1 = 0xc101, TTBR0_EL2 = 0xe100, TTBR0_EL3 = 0xf100, VTTBR_EL2 = 0xe108, TCR_EL1 = 0xc102, TCR_EL2 = 0xe102, TCR_EL3 = 0xf102, VTCR_EL2 = 0xe10a, ADFSR_EL1 = 0xc288, AIFSR_EL1 = 0xc289, ADFSR_EL2 = 0xe288, AIFSR_EL2 = 0xe289, ADFSR_EL3 = 0xf288, AIFSR_EL3 = 0xf289, ESR_EL1 = 0xc290, ESR_EL2 = 0xe290, ESR_EL3 = 0xf290, FAR_EL1 = 0xc300, FAR_EL2 = 0xe300, FAR_EL3 = 0xf300, HPFAR_EL2 = 0xe304, PAR_EL1 = 0xc3a0, MAIR_EL1 = 0xc510, MAIR_EL2 = 0xe510, MAIR_EL3 = 0xf510, AMAIR_EL1 = 0xc518, AMAIR_EL2 = 0xe518, AMAIR_EL3 = 0xf518, VBAR_EL1 = 0xc600, VBAR_EL2 = 0xe600, VBAR_EL3 = 0xf600, RVBAR_EL1 = 0xc601, RVBAR_EL2 = 0xe601, RVBAR_EL3 = 0xf601, ISR_EL1 = 0xc608, CONTEXTIDR_EL1 = 0xc681, TPIDR_EL0 = 0xde82, TPIDRRO_EL0 = 0xde83, TPIDR_EL1 = 0xc684, TPIDR_EL2 = 0xe682, TPIDR_EL3 = 0xf682, TEECR32_EL1 = 0x9000, CNTFRQ_EL0 = 0xdf00, CNTPCT_EL0 = 0xdf01, CNTVCT_EL0 = 0xdf02, CNTVOFF_EL2 = 0xe703, CNTKCTL_EL1 = 0xc708, CNTHCTL_EL2 = 0xe708, CNTP_TVAL_EL0 = 0xdf10, CNTP_CTL_EL0 = 0xdf11, CNTP_CVAL_EL0 = 0xdf12, CNTV_TVAL_EL0 = 0xdf18, CNTV_CTL_EL0 = 0xdf19, CNTV_CVAL_EL0 = 0xdf1a, CNTHP_TVAL_EL2 = 0xe710, CNTHP_CTL_EL2 = 0xe711, CNTHP_CVAL_EL2 = 0xe712, CNTPS_TVAL_EL1 = 0xff10, CNTPS_CTL_EL1 = 0xff11, CNTPS_CVAL_EL1= 0xff12, PMEVCNTR0_EL0 = 0xdf40, PMEVCNTR1_EL0 = 0xdf41, PMEVCNTR2_EL0 = 0xdf42, PMEVCNTR3_EL0 = 0xdf43, PMEVCNTR4_EL0 = 0xdf44, PMEVCNTR5_EL0 = 0xdf45, PMEVCNTR6_EL0 = 0xdf46, PMEVCNTR7_EL0 = 0xdf47, PMEVCNTR8_EL0 = 0xdf48, PMEVCNTR9_EL0 = 0xdf49, PMEVCNTR10_EL0 = 0xdf4a, PMEVCNTR11_EL0 = 0xdf4b, PMEVCNTR12_EL0 = 0xdf4c, PMEVCNTR13_EL0 = 0xdf4d, PMEVCNTR14_EL0 = 0xdf4e, PMEVCNTR15_EL0 = 0xdf4f, PMEVCNTR16_EL0 = 0xdf50, PMEVCNTR17_EL0 = 0xdf51, PMEVCNTR18_EL0 = 0xdf52, PMEVCNTR19_EL0 = 0xdf53, PMEVCNTR20_EL0 = 0xdf54, PMEVCNTR21_EL0 = 0xdf55, PMEVCNTR22_EL0 = 0xdf56, PMEVCNTR23_EL0 = 0xdf57, PMEVCNTR24_EL0 = 0xdf58, PMEVCNTR25_EL0 = 0xdf59, PMEVCNTR26_EL0 = 0xdf5a, PMEVCNTR27_EL0 = 0xdf5b, PMEVCNTR28_EL0 = 0xdf5c, PMEVCNTR29_EL0 = 0xdf5d, PMEVCNTR30_EL0 = 0xdf5e, PMEVTYPER0_EL0 = 0xdf60, PMEVTYPER1_EL0 = 0xdf61, PMEVTYPER2_EL0 = 0xdf62, PMEVTYPER3_EL0 = 0xdf63, PMEVTYPER4_EL0 = 0xdf64, PMEVTYPER5_EL0 = 0xdf65, PMEVTYPER6_EL0 = 0xdf66, PMEVTYPER7_EL0 = 0xdf67, PMEVTYPER8_EL0 = 0xdf68, PMEVTYPER9_EL0 = 0xdf69, PMEVTYPER10_EL0 = 0xdf6a, PMEVTYPER11_EL0 = 0xdf6b, PMEVTYPER12_EL0 = 0xdf6c, PMEVTYPER13_EL0 = 0xdf6d, PMEVTYPER14_EL0 = 0xdf6e, PMEVTYPER15_EL0 = 0xdf6f, PMEVTYPER16_EL0 = 0xdf70, PMEVTYPER17_EL0 = 0xdf71, PMEVTYPER18_EL0 = 0xdf72, PMEVTYPER19_EL0 = 0xdf73, PMEVTYPER20_EL0 = 0xdf74, PMEVTYPER21_EL0 = 0xdf75, PMEVTYPER22_EL0 = 0xdf76, PMEVTYPER23_EL0 = 0xdf77, PMEVTYPER24_EL0 = 0xdf78, PMEVTYPER25_EL0 = 0xdf79, PMEVTYPER26_EL0 = 0xdf7a, PMEVTYPER27_EL0 = 0xdf7b, PMEVTYPER28_EL0 = 0xdf7c, PMEVTYPER29_EL0 = 0xdf7d, PMEVTYPER30_EL0 = 0xdf7e, PMCCFILTR_EL0 = 0xdf7f, RMR_EL3 = 0xf602, RMR_EL2 = 0xd602, RMR_EL1 = 0xce02, // Debug Architecture 5.3, Table 17. MDCCSR_EL0 = A64_SYSREG_ENC(2, 0, 0, 1, 3), MDCCINT_EL1 = A64_SYSREG_ENC(2, 0, 0, 2, 0), DBGDTR_EL0 = A64_SYSREG_ENC(2, 0, 0, 4, 3), DBGDTRRX_EL0 = A64_SYSREG_ENC(2, 0, 0, 5, 3), DBGDTRTX_EL0 = DBGDTRRX_EL0, DBGVCR32_EL2 = A64_SYSREG_ENC(2, 0, 0, 7, 4), OSDTRRX_EL1 = A64_SYSREG_ENC(2, 0, 2, 0, 0), MDSCR_EL1 = A64_SYSREG_ENC(2, 0, 2, 2, 0), OSDTRTX_EL1 = A64_SYSREG_ENC(2, 0, 2, 3, 0), OSECCR_EL11 = A64_SYSREG_ENC(2, 0, 2, 6, 0), DBGBVR0_EL1 = A64_SYSREG_ENC(2, 0, 4, 0, 0), DBGBVR1_EL1 = A64_SYSREG_ENC(2, 0, 4, 1, 0), DBGBVR2_EL1 = A64_SYSREG_ENC(2, 0, 4, 2, 0), DBGBVR3_EL1 = A64_SYSREG_ENC(2, 0, 4, 3, 0), DBGBVR4_EL1 = A64_SYSREG_ENC(2, 0, 4, 4, 0), DBGBVR5_EL1 = A64_SYSREG_ENC(2, 0, 4, 5, 0), DBGBVR6_EL1 = A64_SYSREG_ENC(2, 0, 4, 6, 0), DBGBVR7_EL1 = A64_SYSREG_ENC(2, 0, 4, 7, 0), DBGBVR8_EL1 = A64_SYSREG_ENC(2, 0, 4, 8, 0), DBGBVR9_EL1 = A64_SYSREG_ENC(2, 0, 4, 9, 0), DBGBVR10_EL1 = A64_SYSREG_ENC(2, 0, 4, 10, 0), DBGBVR11_EL1 = A64_SYSREG_ENC(2, 0, 4, 11, 0), DBGBVR12_EL1 = A64_SYSREG_ENC(2, 0, 4, 12, 0), DBGBVR13_EL1 = A64_SYSREG_ENC(2, 0, 4, 13, 0), DBGBVR14_EL1 = A64_SYSREG_ENC(2, 0, 4, 14, 0), DBGBVR15_EL1 = A64_SYSREG_ENC(2, 0, 4, 15, 0), DBGBCR0_EL1 = A64_SYSREG_ENC(2, 0, 5, 0, 0), DBGBCR1_EL1 = A64_SYSREG_ENC(2, 0, 5, 1, 0), DBGBCR2_EL1 = A64_SYSREG_ENC(2, 0, 5, 2, 0), DBGBCR3_EL1 = A64_SYSREG_ENC(2, 0, 5, 3, 0), DBGBCR4_EL1 = A64_SYSREG_ENC(2, 0, 5, 4, 0), DBGBCR5_EL1 = A64_SYSREG_ENC(2, 0, 5, 5, 0), DBGBCR6_EL1 = A64_SYSREG_ENC(2, 0, 5, 6, 0), DBGBCR7_EL1 = A64_SYSREG_ENC(2, 0, 5, 7, 0), DBGBCR8_EL1 = A64_SYSREG_ENC(2, 0, 5, 8, 0), DBGBCR9_EL1 = A64_SYSREG_ENC(2, 0, 5, 9, 0), DBGBCR10_EL1 = A64_SYSREG_ENC(2, 0, 5, 10, 0), DBGBCR11_EL1 = A64_SYSREG_ENC(2, 0, 5, 11, 0), DBGBCR12_EL1 = A64_SYSREG_ENC(2, 0, 5, 12, 0), DBGBCR13_EL1 = A64_SYSREG_ENC(2, 0, 5, 13, 0), DBGBCR14_EL1 = A64_SYSREG_ENC(2, 0, 5, 14, 0), DBGBCR15_EL1 = A64_SYSREG_ENC(2, 0, 5, 15, 0), DBGWVR0_EL1 = A64_SYSREG_ENC(2, 0, 6, 0, 0), DBGWVR1_EL1 = A64_SYSREG_ENC(2, 0, 6, 1, 0), DBGWVR2_EL1 = A64_SYSREG_ENC(2, 0, 6, 2, 0), DBGWVR3_EL1 = A64_SYSREG_ENC(2, 0, 6, 3, 0), DBGWVR4_EL1 = A64_SYSREG_ENC(2, 0, 6, 4, 0), DBGWVR5_EL1 = A64_SYSREG_ENC(2, 0, 6, 5, 0), DBGWVR6_EL1 = A64_SYSREG_ENC(2, 0, 6, 6, 0), DBGWVR7_EL1 = A64_SYSREG_ENC(2, 0, 6, 7, 0), DBGWVR8_EL1 = A64_SYSREG_ENC(2, 0, 6, 8, 0), DBGWVR9_EL1 = A64_SYSREG_ENC(2, 0, 6, 9, 0), DBGWVR10_EL1 = A64_SYSREG_ENC(2, 0, 6, 10, 0), DBGWVR11_EL1 = A64_SYSREG_ENC(2, 0, 6, 11, 0), DBGWVR12_EL1 = A64_SYSREG_ENC(2, 0, 6, 12, 0), DBGWVR13_EL1 = A64_SYSREG_ENC(2, 0, 6, 13, 0), DBGWVR14_EL1 = A64_SYSREG_ENC(2, 0, 6, 14, 0), DBGWVR15_EL1 = A64_SYSREG_ENC(2, 0, 6, 15, 0), DBGWCR0_EL1 = A64_SYSREG_ENC(2, 0, 7, 0, 0), DBGWCR1_EL1 = A64_SYSREG_ENC(2, 0, 7, 1, 0), DBGWCR2_EL1 = A64_SYSREG_ENC(2, 0, 7, 2, 0), DBGWCR3_EL1 = A64_SYSREG_ENC(2, 0, 7, 3, 0), DBGWCR4_EL1 = A64_SYSREG_ENC(2, 0, 7, 4, 0), DBGWCR5_EL1 = A64_SYSREG_ENC(2, 0, 7, 5, 0), DBGWCR6_EL1 = A64_SYSREG_ENC(2, 0, 7, 6, 0), DBGWCR7_EL1 = A64_SYSREG_ENC(2, 0, 7, 7, 0), DBGWCR8_EL1 = A64_SYSREG_ENC(2, 0, 7, 8, 0), DBGWCR9_EL1 = A64_SYSREG_ENC(2, 0, 7, 9, 0), DBGWCR10_EL1 = A64_SYSREG_ENC(2, 0, 7, 10, 0), DBGWCR11_EL1 = A64_SYSREG_ENC(2, 0, 7, 11, 0), DBGWCR12_EL1 = A64_SYSREG_ENC(2, 0, 7, 12, 0), DBGWCR13_EL1 = A64_SYSREG_ENC(2, 0, 7, 13, 0), DBGWCR14_EL1 = A64_SYSREG_ENC(2, 0, 7, 14, 0), DBGWCR15_EL1 = A64_SYSREG_ENC(2, 0, 7, 15, 0), MDRAR_EL1 = A64_SYSREG_ENC(2, 1, 0, 0, 0), OSLAR_EL1 = A64_SYSREG_ENC(2, 1, 4, 0, 0), OSLSR_EL1 = A64_SYSREG_ENC(2, 1, 4, 1, 0), OSDLR_EL1 = A64_SYSREG_ENC(2, 1, 4, 3, 0), DBGPRCR_EL1 = A64_SYSREG_ENC(2, 1, 4, 4, 0), DBGCLAIMSET_EL1 = A64_SYSREG_ENC(2, 7, 6, 8, 0), DBGCLAIMCLR_EL1 = A64_SYSREG_ENC(2, 7, 6, 9, 0), DBGAUTHSTATUS_EL1 = A64_SYSREG_ENC(2, 7, 6, 14, 0), DBGDEVID2 = A64_SYSREG_ENC(2, 7, 7, 0, 0), DBGDEVID1 = A64_SYSREG_ENC(2, 7, 7, 1, 0), DBGDEVID0 = A64_SYSREG_ENC(2, 7, 7, 2, 0), // The following registers are defined to allow access from AArch64 to // registers which are only used in the AArch32 architecture. DACR32_EL2 = 0xe180, IFSR32_EL2 = 0xe281, TEEHBR32_EL1 = 0x9080, SDER32_EL3 = 0xf089, FPEXC32_EL2 = 0xe298, // Cyclone specific system registers CPM_IOACC_CTL_EL3 = 0xff90, // Architectural system registers ID_PFR0_EL1 = 0xc008, ID_PFR1_EL1 = 0xc009, ID_DFR0_EL1 = 0xc00a, ID_AFR0_EL1 = 0xc00b, ID_ISAR0_EL1 = 0xc010, ID_ISAR1_EL1 = 0xc011, ID_ISAR2_EL1 = 0xc012, ID_ISAR3_EL1 = 0xc013, ID_ISAR4_EL1 = 0xc014, ID_ISAR5_EL1 = 0xc015, AFSR1_EL1 = 0xc289, // note same as old AIFSR_EL1 AFSR0_EL1 = 0xc288, // note same as old ADFSR_EL1 REVIDR_EL1 = 0xc006 // note same as old ECOIDR_EL1 }; #undef A64_SYSREG_ENC static inline const char *getSystemRegisterName(SystemRegister Reg) { switch(Reg) { default: return NULL; // Caller is responsible for handling invalid value. case SPSR_EL1: return "SPSR_EL1"; case ELR_EL1: return "ELR_EL1"; case SP_EL0: return "SP_EL0"; case SPSel: return "SPSel"; case DAIF: return "DAIF"; case CurrentEL: return "CurrentEL"; case NZCV: return "NZCV"; case FPCR: return "FPCR"; case FPSR: return "FPSR"; case DSPSR: return "DSPSR"; case DLR: return "DLR"; case SPSR_EL2: return "SPSR_EL2"; case ELR_EL2: return "ELR_EL2"; case SP_EL1: return "SP_EL1"; case SPSR_irq: return "SPSR_irq"; case SPSR_abt: return "SPSR_abt"; case SPSR_und: return "SPSR_und"; case SPSR_fiq: return "SPSR_fiq"; case SPSR_EL3: return "SPSR_EL3"; case ELR_EL3: return "ELR_EL3"; case SP_EL2: return "SP_EL2"; case MIDR_EL1: return "MIDR_EL1"; case CTR_EL0: return "CTR_EL0"; case MPIDR_EL1: return "MPIDR_EL1"; case DCZID_EL0: return "DCZID_EL0"; case MVFR0_EL1: return "MVFR0_EL1"; case MVFR1_EL1: return "MVFR1_EL1"; case ID_AA64PFR0_EL1: return "ID_AA64PFR0_EL1"; case ID_AA64PFR1_EL1: return "ID_AA64PFR1_EL1"; case ID_AA64DFR0_EL1: return "ID_AA64DFR0_EL1"; case ID_AA64DFR1_EL1: return "ID_AA64DFR1_EL1"; case ID_AA64ISAR0_EL1: return "ID_AA64ISAR0_EL1"; case ID_AA64ISAR1_EL1: return "ID_AA64ISAR1_EL1"; case ID_AA64MMFR0_EL1: return "ID_AA64MMFR0_EL1"; case ID_AA64MMFR1_EL1: return "ID_AA64MMFR1_EL1"; case CCSIDR_EL1: return "CCSIDR_EL1"; case CLIDR_EL1: return "CLIDR_EL1"; case AIDR_EL1: return "AIDR_EL1"; case CSSELR_EL1: return "CSSELR_EL1"; case VPIDR_EL2: return "VPIDR_EL2"; case VMPIDR_EL2: return "VMPIDR_EL2"; case SCTLR_EL1: return "SCTLR_EL1"; case SCTLR_EL2: return "SCTLR_EL2"; case SCTLR_EL3: return "SCTLR_EL3"; case ACTLR_EL1: return "ACTLR_EL1"; case ACTLR_EL2: return "ACTLR_EL2"; case ACTLR_EL3: return "ACTLR_EL3"; case CPACR_EL1: return "CPACR_EL1"; case CPTR_EL2: return "CPTR_EL2"; case CPTR_EL3: return "CPTR_EL3"; case SCR_EL3: return "SCR_EL3"; case HCR_EL2: return "HCR_EL2"; case MDCR_EL2: return "MDCR_EL2"; case MDCR_EL3: return "MDCR_EL3"; case HSTR_EL2: return "HSTR_EL2"; case HACR_EL2: return "HACR_EL2"; case TTBR0_EL1: return "TTBR0_EL1"; case TTBR1_EL1: return "TTBR1_EL1"; case TTBR0_EL2: return "TTBR0_EL2"; case TTBR0_EL3: return "TTBR0_EL3"; case VTTBR_EL2: return "VTTBR_EL2"; case TCR_EL1: return "TCR_EL1"; case TCR_EL2: return "TCR_EL2"; case TCR_EL3: return "TCR_EL3"; case VTCR_EL2: return "VTCR_EL2"; case ADFSR_EL2: return "ADFSR_EL2"; case AIFSR_EL2: return "AIFSR_EL2"; case ADFSR_EL3: return "ADFSR_EL3"; case AIFSR_EL3: return "AIFSR_EL3"; case ESR_EL1: return "ESR_EL1"; case ESR_EL2: return "ESR_EL2"; case ESR_EL3: return "ESR_EL3"; case FAR_EL1: return "FAR_EL1"; case FAR_EL2: return "FAR_EL2"; case FAR_EL3: return "FAR_EL3"; case HPFAR_EL2: return "HPFAR_EL2"; case PAR_EL1: return "PAR_EL1"; case MAIR_EL1: return "MAIR_EL1"; case MAIR_EL2: return "MAIR_EL2"; case MAIR_EL3: return "MAIR_EL3"; case AMAIR_EL1: return "AMAIR_EL1"; case AMAIR_EL2: return "AMAIR_EL2"; case AMAIR_EL3: return "AMAIR_EL3"; case VBAR_EL1: return "VBAR_EL1"; case VBAR_EL2: return "VBAR_EL2"; case VBAR_EL3: return "VBAR_EL3"; case RVBAR_EL1: return "RVBAR_EL1"; case RVBAR_EL2: return "RVBAR_EL2"; case RVBAR_EL3: return "RVBAR_EL3"; case ISR_EL1: return "ISR_EL1"; case CONTEXTIDR_EL1: return "CONTEXTIDR_EL1"; case TPIDR_EL0: return "TPIDR_EL0"; case TPIDRRO_EL0: return "TPIDRRO_EL0"; case TPIDR_EL1: return "TPIDR_EL1"; case TPIDR_EL2: return "TPIDR_EL2"; case TPIDR_EL3: return "TPIDR_EL3"; case TEECR32_EL1: return "TEECR32_EL1"; case CNTFRQ_EL0: return "CNTFRQ_EL0"; case CNTPCT_EL0: return "CNTPCT_EL0"; case CNTVCT_EL0: return "CNTVCT_EL0"; case CNTVOFF_EL2: return "CNTVOFF_EL2"; case CNTKCTL_EL1: return "CNTKCTL_EL1"; case CNTHCTL_EL2: return "CNTHCTL_EL2"; case CNTP_TVAL_EL0: return "CNTP_TVAL_EL0"; case CNTP_CTL_EL0: return "CNTP_CTL_EL0"; case CNTP_CVAL_EL0: return "CNTP_CVAL_EL0"; case CNTV_TVAL_EL0: return "CNTV_TVAL_EL0"; case CNTV_CTL_EL0: return "CNTV_CTL_EL0"; case CNTV_CVAL_EL0: return "CNTV_CVAL_EL0"; case CNTHP_TVAL_EL2: return "CNTHP_TVAL_EL2"; case CNTHP_CTL_EL2: return "CNTHP_CTL_EL2"; case CNTHP_CVAL_EL2: return "CNTHP_CVAL_EL2"; case CNTPS_TVAL_EL1: return "CNTPS_TVAL_EL1"; case CNTPS_CTL_EL1: return "CNTPS_CTL_EL1"; case CNTPS_CVAL_EL1: return "CNTPS_CVAL_EL1"; case DACR32_EL2: return "DACR32_EL2"; case IFSR32_EL2: return "IFSR32_EL2"; case TEEHBR32_EL1: return "TEEHBR32_EL1"; case SDER32_EL3: return "SDER32_EL3"; case FPEXC32_EL2: return "FPEXC32_EL2"; case PMEVCNTR0_EL0: return "PMEVCNTR0_EL0"; case PMEVCNTR1_EL0: return "PMEVCNTR1_EL0"; case PMEVCNTR2_EL0: return "PMEVCNTR2_EL0"; case PMEVCNTR3_EL0: return "PMEVCNTR3_EL0"; case PMEVCNTR4_EL0: return "PMEVCNTR4_EL0"; case PMEVCNTR5_EL0: return "PMEVCNTR5_EL0"; case PMEVCNTR6_EL0: return "PMEVCNTR6_EL0"; case PMEVCNTR7_EL0: return "PMEVCNTR7_EL0"; case PMEVCNTR8_EL0: return "PMEVCNTR8_EL0"; case PMEVCNTR9_EL0: return "PMEVCNTR9_EL0"; case PMEVCNTR10_EL0: return "PMEVCNTR10_EL0"; case PMEVCNTR11_EL0: return "PMEVCNTR11_EL0"; case PMEVCNTR12_EL0: return "PMEVCNTR12_EL0"; case PMEVCNTR13_EL0: return "PMEVCNTR13_EL0"; case PMEVCNTR14_EL0: return "PMEVCNTR14_EL0"; case PMEVCNTR15_EL0: return "PMEVCNTR15_EL0"; case PMEVCNTR16_EL0: return "PMEVCNTR16_EL0"; case PMEVCNTR17_EL0: return "PMEVCNTR17_EL0"; case PMEVCNTR18_EL0: return "PMEVCNTR18_EL0"; case PMEVCNTR19_EL0: return "PMEVCNTR19_EL0"; case PMEVCNTR20_EL0: return "PMEVCNTR20_EL0"; case PMEVCNTR21_EL0: return "PMEVCNTR21_EL0"; case PMEVCNTR22_EL0: return "PMEVCNTR22_EL0"; case PMEVCNTR23_EL0: return "PMEVCNTR23_EL0"; case PMEVCNTR24_EL0: return "PMEVCNTR24_EL0"; case PMEVCNTR25_EL0: return "PMEVCNTR25_EL0"; case PMEVCNTR26_EL0: return "PMEVCNTR26_EL0"; case PMEVCNTR27_EL0: return "PMEVCNTR27_EL0"; case PMEVCNTR28_EL0: return "PMEVCNTR28_EL0"; case PMEVCNTR29_EL0: return "PMEVCNTR29_EL0"; case PMEVCNTR30_EL0: return "PMEVCNTR30_EL0"; case PMEVTYPER0_EL0: return "PMEVTYPER0_EL0"; case PMEVTYPER1_EL0: return "PMEVTYPER1_EL0"; case PMEVTYPER2_EL0: return "PMEVTYPER2_EL0"; case PMEVTYPER3_EL0: return "PMEVTYPER3_EL0"; case PMEVTYPER4_EL0: return "PMEVTYPER4_EL0"; case PMEVTYPER5_EL0: return "PMEVTYPER5_EL0"; case PMEVTYPER6_EL0: return "PMEVTYPER6_EL0"; case PMEVTYPER7_EL0: return "PMEVTYPER7_EL0"; case PMEVTYPER8_EL0: return "PMEVTYPER8_EL0"; case PMEVTYPER9_EL0: return "PMEVTYPER9_EL0"; case PMEVTYPER10_EL0: return "PMEVTYPER10_EL0"; case PMEVTYPER11_EL0: return "PMEVTYPER11_EL0"; case PMEVTYPER12_EL0: return "PMEVTYPER12_EL0"; case PMEVTYPER13_EL0: return "PMEVTYPER13_EL0"; case PMEVTYPER14_EL0: return "PMEVTYPER14_EL0"; case PMEVTYPER15_EL0: return "PMEVTYPER15_EL0"; case PMEVTYPER16_EL0: return "PMEVTYPER16_EL0"; case PMEVTYPER17_EL0: return "PMEVTYPER17_EL0"; case PMEVTYPER18_EL0: return "PMEVTYPER18_EL0"; case PMEVTYPER19_EL0: return "PMEVTYPER19_EL0"; case PMEVTYPER20_EL0: return "PMEVTYPER20_EL0"; case PMEVTYPER21_EL0: return "PMEVTYPER21_EL0"; case PMEVTYPER22_EL0: return "PMEVTYPER22_EL0"; case PMEVTYPER23_EL0: return "PMEVTYPER23_EL0"; case PMEVTYPER24_EL0: return "PMEVTYPER24_EL0"; case PMEVTYPER25_EL0: return "PMEVTYPER25_EL0"; case PMEVTYPER26_EL0: return "PMEVTYPER26_EL0"; case PMEVTYPER27_EL0: return "PMEVTYPER27_EL0"; case PMEVTYPER28_EL0: return "PMEVTYPER28_EL0"; case PMEVTYPER29_EL0: return "PMEVTYPER29_EL0"; case PMEVTYPER30_EL0: return "PMEVTYPER30_EL0"; case PMCCFILTR_EL0: return "PMCCFILTR_EL0"; case RMR_EL3: return "RMR_EL3"; case RMR_EL2: return "RMR_EL2"; case RMR_EL1: return "RMR_EL1"; case CPM_IOACC_CTL_EL3: return "CPM_IOACC_CTL_EL3"; case MDCCSR_EL0: return "MDCCSR_EL0"; case MDCCINT_EL1: return "MDCCINT_EL1"; case DBGDTR_EL0: return "DBGDTR_EL0"; case DBGDTRRX_EL0: return "DBGDTRRX_EL0"; case DBGVCR32_EL2: return "DBGVCR32_EL2"; case OSDTRRX_EL1: return "OSDTRRX_EL1"; case MDSCR_EL1: return "MDSCR_EL1"; case OSDTRTX_EL1: return "OSDTRTX_EL1"; case OSECCR_EL11: return "OSECCR_EL11"; case DBGBVR0_EL1: return "DBGBVR0_EL1"; case DBGBVR1_EL1: return "DBGBVR1_EL1"; case DBGBVR2_EL1: return "DBGBVR2_EL1"; case DBGBVR3_EL1: return "DBGBVR3_EL1"; case DBGBVR4_EL1: return "DBGBVR4_EL1"; case DBGBVR5_EL1: return "DBGBVR5_EL1"; case DBGBVR6_EL1: return "DBGBVR6_EL1"; case DBGBVR7_EL1: return "DBGBVR7_EL1"; case DBGBVR8_EL1: return "DBGBVR8_EL1"; case DBGBVR9_EL1: return "DBGBVR9_EL1"; case DBGBVR10_EL1: return "DBGBVR10_EL1"; case DBGBVR11_EL1: return "DBGBVR11_EL1"; case DBGBVR12_EL1: return "DBGBVR12_EL1"; case DBGBVR13_EL1: return "DBGBVR13_EL1"; case DBGBVR14_EL1: return "DBGBVR14_EL1"; case DBGBVR15_EL1: return "DBGBVR15_EL1"; case DBGBCR0_EL1: return "DBGBCR0_EL1"; case DBGBCR1_EL1: return "DBGBCR1_EL1"; case DBGBCR2_EL1: return "DBGBCR2_EL1"; case DBGBCR3_EL1: return "DBGBCR3_EL1"; case DBGBCR4_EL1: return "DBGBCR4_EL1"; case DBGBCR5_EL1: return "DBGBCR5_EL1"; case DBGBCR6_EL1: return "DBGBCR6_EL1"; case DBGBCR7_EL1: return "DBGBCR7_EL1"; case DBGBCR8_EL1: return "DBGBCR8_EL1"; case DBGBCR9_EL1: return "DBGBCR9_EL1"; case DBGBCR10_EL1: return "DBGBCR10_EL1"; case DBGBCR11_EL1: return "DBGBCR11_EL1"; case DBGBCR12_EL1: return "DBGBCR12_EL1"; case DBGBCR13_EL1: return "DBGBCR13_EL1"; case DBGBCR14_EL1: return "DBGBCR14_EL1"; case DBGBCR15_EL1: return "DBGBCR15_EL1"; case DBGWVR0_EL1: return "DBGWVR0_EL1"; case DBGWVR1_EL1: return "DBGWVR1_EL1"; case DBGWVR2_EL1: return "DBGWVR2_EL1"; case DBGWVR3_EL1: return "DBGWVR3_EL1"; case DBGWVR4_EL1: return "DBGWVR4_EL1"; case DBGWVR5_EL1: return "DBGWVR5_EL1"; case DBGWVR6_EL1: return "DBGWVR6_EL1"; case DBGWVR7_EL1: return "DBGWVR7_EL1"; case DBGWVR8_EL1: return "DBGWVR8_EL1"; case DBGWVR9_EL1: return "DBGWVR9_EL1"; case DBGWVR10_EL1: return "DBGWVR10_EL1"; case DBGWVR11_EL1: return "DBGWVR11_EL1"; case DBGWVR12_EL1: return "DBGWVR12_EL1"; case DBGWVR13_EL1: return "DBGWVR13_EL1"; case DBGWVR14_EL1: return "DBGWVR14_EL1"; case DBGWVR15_EL1: return "DBGWVR15_EL1"; case DBGWCR0_EL1: return "DBGWCR0_EL1"; case DBGWCR1_EL1: return "DBGWCR1_EL1"; case DBGWCR2_EL1: return "DBGWCR2_EL1"; case DBGWCR3_EL1: return "DBGWCR3_EL1"; case DBGWCR4_EL1: return "DBGWCR4_EL1"; case DBGWCR5_EL1: return "DBGWCR5_EL1"; case DBGWCR6_EL1: return "DBGWCR6_EL1"; case DBGWCR7_EL1: return "DBGWCR7_EL1"; case DBGWCR8_EL1: return "DBGWCR8_EL1"; case DBGWCR9_EL1: return "DBGWCR9_EL1"; case DBGWCR10_EL1: return "DBGWCR10_EL1"; case DBGWCR11_EL1: return "DBGWCR11_EL1"; case DBGWCR12_EL1: return "DBGWCR12_EL1"; case DBGWCR13_EL1: return "DBGWCR13_EL1"; case DBGWCR14_EL1: return "DBGWCR14_EL1"; case DBGWCR15_EL1: return "DBGWCR15_EL1"; case MDRAR_EL1: return "MDRAR_EL1"; case OSLAR_EL1: return "OSLAR_EL1"; case OSLSR_EL1: return "OSLSR_EL1"; case OSDLR_EL1: return "OSDLR_EL1"; case DBGPRCR_EL1: return "DBGPRCR_EL1"; case DBGCLAIMSET_EL1: return "DBGCLAIMSET_EL1"; case DBGCLAIMCLR_EL1: return "DBGCLAIMCLR_EL1"; case DBGAUTHSTATUS_EL1: return "DBGAUTHSTATUS_EL1"; case DBGDEVID2: return "DBGDEVID2"; case DBGDEVID1: return "DBGDEVID1"; case DBGDEVID0: return "DBGDEVID0"; case ID_PFR0_EL1: return "ID_PFR0_EL1"; case ID_PFR1_EL1: return "ID_PFR1_EL1"; case ID_DFR0_EL1: return "ID_DFR0_EL1"; case ID_AFR0_EL1: return "ID_AFR0_EL1"; case ID_ISAR0_EL1: return "ID_ISAR0_EL1"; case ID_ISAR1_EL1: return "ID_ISAR1_EL1"; case ID_ISAR2_EL1: return "ID_ISAR2_EL1"; case ID_ISAR3_EL1: return "ID_ISAR3_EL1"; case ID_ISAR4_EL1: return "ID_ISAR4_EL1"; case ID_ISAR5_EL1: return "ID_ISAR5_EL1"; case AFSR1_EL1: return "AFSR1_EL1"; case AFSR0_EL1: return "AFSR0_EL1"; case REVIDR_EL1: return "REVIDR_EL1"; } } enum CPSRField { InvalidCPSRField = 0xff, cpsr_SPSel = 0x5, cpsr_DAIFSet = 0x1e, cpsr_DAIFClr = 0x1f }; static inline const char *getCPSRFieldName(CPSRField Val) { switch(Val) { default: assert(0 && "Invalid system register value!"); case cpsr_SPSel: return "SPSel"; case cpsr_DAIFSet: return "DAIFSet"; case cpsr_DAIFClr: return "DAIFClr"; } } } // end namespace ARM64SYS namespace ARM64II { /// Target Operand Flag enum. enum TOF { //===------------------------------------------------------------------===// // ARM64 Specific MachineOperand flags. MO_NO_FLAG, MO_FRAGMENT = 0x7, /// MO_PAGE - A symbol operand with this flag represents the pc-relative /// offset of the 4K page containing the symbol. This is used with the /// ADRP instruction. MO_PAGE = 1, /// MO_PAGEOFF - A symbol operand with this flag represents the offset of /// that symbol within a 4K page. This offset is added to the page address /// to produce the complete address. MO_PAGEOFF = 2, /// MO_G3 - A symbol operand with this flag (granule 3) represents the high /// 16-bits of a 64-bit address, used in a MOVZ or MOVK instruction MO_G3 = 3, /// MO_G2 - A symbol operand with this flag (granule 2) represents the bits /// 32-47 of a 64-bit address, used in a MOVZ or MOVK instruction MO_G2 = 4, /// MO_G1 - A symbol operand with this flag (granule 1) represents the bits /// 16-31 of a 64-bit address, used in a MOVZ or MOVK instruction MO_G1 = 5, /// MO_G0 - A symbol operand with this flag (granule 0) represents the bits /// 0-15 of a 64-bit address, used in a MOVZ or MOVK instruction MO_G0 = 6, /// MO_GOT - This flag indicates that a symbol operand represents the /// address of the GOT entry for the symbol, rather than the address of /// the symbol itself. MO_GOT = 8, /// MO_NC - Indicates whether the linker is expected to check the symbol /// reference for overflow. For example in an ADRP/ADD pair of relocations /// the ADRP usually does check, but not the ADD. MO_NC = 0x10, /// MO_TLS - Indicates that the operand being accessed is some kind of /// thread-local symbol. On Darwin, only one type of thread-local access /// exists (pre linker-relaxation), but on ELF the TLSModel used for the /// referee will affect interpretation. MO_TLS = 0x20 }; } // end namespace ARM64II } // end namespace llvm #endif
[ "91980991+AppleOSSDistributions@users.noreply.github.com" ]
91980991+AppleOSSDistributions@users.noreply.github.com
0461c1b7dc326bde1e668139c7b48bbfb5e50d55
2dc51df4e4a035195f4b2b35f1f8937ce718898d
/src/terrain/TerrainColorGGSaturn.cpp
48ba2c987ec461cc4f69dee3da3c4d593277b29e
[]
no_license
walterar/pioneer-sp
614efe18e87c4925c01167d6f395c523ea01a2a5
e46c61fb906d2deea2c089f21b6f990664c4284f
refs/heads/master
2020-05-21T15:13:57.137721
2016-12-27T16:15:37
2016-12-27T16:15:37
16,237,623
8
1
null
null
null
null
UTF-8
C++
false
false
1,505
cpp
// Copyright © 2008-2016 Pioneer Developers. See AUTHORS.txt for details // Licensed under the terms of the GPL v3. See licenses/GPL-3.txt #include "Terrain.h" #include "TerrainNoise.h" #include "TerrainFeature.h" using namespace TerrainNoise; using namespace TerrainFeature; template <> const char *TerrainColorFractal<TerrainColorGGSaturn>::GetColorFractalName() const { return "GGSaturn"; } template <> TerrainColorFractal<TerrainColorGGSaturn>::TerrainColorFractal(const SystemBody *body) : Terrain(body) { const double height = m_maxHeightInMeters*0.1; //spot + clouds SetFracDef(0, height, 3e7, 10.0*m_fracmult); SetFracDef(1, height, 9e7, 1000.0*m_fracmult); SetFracDef(2, height, 8e7, 100.0*m_fracmult); //spot boundary SetFracDef(3, height, 3e7, 10000000.0*m_fracmult); } template <> vector3d TerrainColorFractal<TerrainColorGGSaturn>::GetColor(const vector3d &p, double height, const vector3d &norm) const { double n = 0.4*ridged_octavenoise(GetFracDef(0), 0.7, vector3d(3.142*p.y*p.y)); n += 0.4*octavenoise(GetFracDef(1), 0.6, vector3d(3.142*p.y*p.y)); n += 0.3*octavenoise(GetFracDef(2), 0.5, vector3d(3.142*p.y*p.y)); n += 0.8*octavenoise(GetFracDef(0), 0.7, vector3d(p*p.y*p.y)); n += 0.5*ridged_octavenoise(GetFracDef(1), 0.7, vector3d(p*p.y*p.y)); n /= 2.0; n *= n*n; n += billow_octavenoise(GetFracDef(0), 0.8, vector3d(noise(p*3.142)*p))* megavolcano_function(GetFracDef(3), p); return interpolate_color(n, vector3d(.69, .53, .43), vector3d(.99, .76, .62)); }
[ "walterar2@gmail.com" ]
walterar2@gmail.com
7f2dd85f13761ec52722146df82fff60abda4614
9fa50a7cf9301aaf9cc09c40aa91cddd7d0f09c9
/Game2/Player.cpp
b0a396c2b3515e0569c4a62ad0c2175f0b7ff23e
[]
no_license
adribasterra/Source
3dd37227c940e550ce3cf8ee2a0210d4cc5dd31d
04beaaabef27f1badcc2dfa8d94d8505c4063c3c
refs/heads/master
2023-02-19T21:18:04.825269
2021-01-21T13:30:33
2021-01-21T13:30:33
319,924,105
0
0
null
null
null
null
UTF-8
C++
false
false
3,985
cpp
#include "Player.h" #include "GraphicsManager.h" #include "TimeManager.h" #include "InputManager.h" #include "Bullet.h" // Constructors /*****************************************************************************/ #pragma region Constructors Player::Player() { velX = 0; velY = 0; lives = 3; timer = 0; timeBetweenShoots = 1; bulletHeight = 0; bulletWidth = 0; bulletTexture = NULL; bulletCollider = NULL; } Player::Player(float x, float y, float width, float height, float rotation, LTexture* texture, SDL_Rect* rectangle) : SpaceShip() { //Inherited from Object this->centeredX = x; this->centeredY = y; this->width = width; this->height = height; this->rotation = rotation; this->texture = texture; this->collider = rectangle; this->tag = "SpaceShip"; colliderType = colliderTypes::rect; //Own velX = 0; velY = 0; lives = 3; timer = 0; timeBetweenShoots = 1; bulletHeight = 0; bulletWidth = 0; bulletTexture = NULL; bulletCollider = NULL; } #pragma endregion // Main functions /*****************************************************************************/ #pragma region Main functions void Player::Update(float dt) { velX = 0; velY = 0; timer += dt; //Handle key inputs if (InputManager::GetInstance().GetKey(SDL_SCANCODE_S)) { velY += SPACESHIP_VEL; } if (InputManager::GetInstance().GetKey(SDL_SCANCODE_W)) { velY -= SPACESHIP_VEL; } if (InputManager::GetInstance().GetKey(SDL_SCANCODE_A)) { velX -= SPACESHIP_VEL; } if (InputManager::GetInstance().GetKey(SDL_SCANCODE_D)) { velX += SPACESHIP_VEL; } //Shoot if (InputManager::GetInstance().GetKey(SDL_SCANCODE_SPACE) && timer > timeBetweenShoots) { Shoot(1); timer = 0; } //Update movement in X axis centeredX += velX * dt; //Check screen borders if (centeredX + width / 2 < 0) { //Move back centeredX += SPACESHIP_VEL * dt; } else if (centeredX + width / 2 > GraphicsManager::SCREEN_WIDTH) { centeredX -= SPACESHIP_VEL * dt; } //Update movement in Y axis centeredY += velY * dt; //Check screen borders if (centeredY < 0) { //Move back centeredY += SPACESHIP_VEL * dt; } else if (centeredY + height > GraphicsManager::SCREEN_HEIGHT) { centeredY -= SPACESHIP_VEL * dt; } } void Player::HandleEvent(SDL_Event& e) { //On key pressed if (e.type == SDL_KEYDOWN && e.key.repeat == 0) { //Adjust velocity switch (e.key.keysym.sym) { case SDLK_UP: velY -= SPACESHIP_VEL; break; case SDLK_DOWN: velY += SPACESHIP_VEL; break; case SDLK_LEFT: velX -= SPACESHIP_VEL; break; case SDLK_RIGHT: velX += SPACESHIP_VEL; break; } } //On key released else if (e.type == SDL_KEYUP && e.key.repeat == 0) { //Adjust velocity switch (e.key.keysym.sym) { case SDLK_UP: velY += SPACESHIP_VEL; break; case SDLK_DOWN: velY -= SPACESHIP_VEL; break; case SDLK_LEFT: velX += SPACESHIP_VEL; break; case SDLK_RIGHT: velX -= SPACESHIP_VEL; break; } } } #pragma endregion // Setters /*****************************************************************************/ #pragma region Setters void Player::SetBulletAttributes(float width, float height, LTexture* texture, SDL_Rect* collider) { this->bulletWidth = width; this->bulletHeight = height; this->bulletTexture = texture; this->bulletCollider = collider; } #pragma endregion // Others /*****************************************************************************/ #pragma region Others void Player::OnCollisionEnter(Object* other) { if (other->GetTag() == "Enemy" || (other->GetTag() == "Bullet" && ((Bullet*)other)->GetVelY() < 0)) { //Delete enemy & harm player SceneManager::GetInstance().GetCurrentScene()->DeleteObject(other); lives--; if (lives <= 0) { //Delete player SceneManager::GetInstance().GetCurrentScene()->DeleteObject(this); //Stop time TimeManager::GetInstance().SetGameOver(true); } } } #pragma endregion /*****************************************************************************/
[ "36260994+Kendo777@users.noreply.github.com" ]
36260994+Kendo777@users.noreply.github.com
59b7a071f8b491579a3f8119155caaa0e6ff12d3
932575acb68a8308f62e651d8eb04378f3085b5d
/C++_Test1027/C++_Test1027/虚表.cpp
6a0434a8d6018cce6e1f04d1b01b7a167d379de7
[]
no_license
adong001/C-DS-CPP
308b54ab4e3061461074dc0b592591e743558942
2df3b1a61adb4bfc28cc421b2fd475af1ffd40d3
refs/heads/master
2023-01-21T05:09:07.463759
2020-11-15T01:38:47
2020-11-15T01:38:47
191,345,672
2
1
null
null
null
null
UTF-8
C++
false
false
463
cpp
#define _CRT_SECURE_NO_WARNINGS 1 #include<iostream> using namespace std; class Base { public: int m_a; virtual void func() { cout << "Base::func"<<endl; } }; class TestBase { public: int m_b; virtual void func() { cout << "TestBase::func" << endl; } }; class Test :public Base ,public TestBase { public: int m_c; virtual void func() { cout << "Test::func" << endl; } }; int main() { Test* T = new Test; system("pause"); return 0; }
[ "1792095378@qq.com" ]
1792095378@qq.com
53a3931d1bf219c71216f6173801ee02408fdd92
e8ab1813ea8d0cb6c108756db282bab6a862323c
/main.cpp
22b7c5db4ed17b4bcbc528d8d33acccca35994a2
[]
no_license
Daiver/cpp-cgi-snippet
1671b4467332fcb1b0044083d47b9fd69e69bbf2
21a6c9c1d84fcae22a62631dcc48b45f8cfd95aa
refs/heads/master
2021-01-20T07:02:13.932516
2014-12-03T10:47:08
2014-12-03T10:47:08
25,216,999
1
0
null
null
null
null
UTF-8
C++
false
false
2,024
cpp
#include <stdio.h> #include <iostream> #include "requesthandler.hpp" #include "responsehandler.hpp" #include "common.hpp" #include "functional/either.hpp" #include "templateengine.hpp" #include "sqlworker.hpp" #include "mysqlworker.hpp" std::string getPathToExe(std::string argv0) { std::string exeName = "main"; return argv0.substr(0, argv0.size() - exeName.size()); } int main(int argc, char **argv) { std::string pathToExe = getPathToExe(argv[0]); //printf("Status: 200\nContent-type: text/html\n\n"); cgi::RequestHandler request; cgi::ResponseHandler response; cgi::RequestArgs args = request.getArgs(); cgi::RequestArgs cont; cont["STATIC_PATH"] = "main?staticfile="; if(args.count("resource")){//process rest if(args["resource"] == "notes" && args.count("id")){ if(request.requestType() == cgi::REQUEST_GET){ std::string filePath = pathToExe + "../data/" + args["id"] + ".txt"; std::string data = replaceString(readFile(filePath), "\n", "\\n"); response << "{\"text\": \"" + data + "\"}"; }else if(request.requestType() == cgi::REQUEST_POST){ writeFile("../data/1.txt", args["data"]); response << "ok" + args["data"]; } } }if (args.count("staticfile")){ std::string reqFile = args["staticfile"]; std::string res = readFile(std::string("../static/") + reqFile); if(getExtensionOfFileByPath(reqFile) == "js") response.mimeType = "text/javascript"; response << res; }else{ response << //cgi::TemplateEngine::renderTemplate(readFile(pathToExe + "../templates/teststatic.html"), cont).getValue(); cgi::TemplateEngine::renderTemplate(readFile(pathToExe + "../templates/aindex.html"), cont).getValue(); //cgi::TemplateEngine::renderTemplate(readFile(pathToExe + "../templates/index.html"), cont).getValue(); } response.send(); return 1; }
[ "ra22341@ya.ru" ]
ra22341@ya.ru
9269090a5d4cfe6dad6a99596af135f97ae94313
017cc09c09a5d1575bacc2774f8c0bf8370b4b91
/graphics/CIRCLE.CPP
81aa1d5d48d421de6ed8ae69b0a0bd21c4051835
[]
no_license
saksham026/c-graphics
3f9f383f5720b5de3c4cdb5bf243297d6b1f4f0b
547ee9b0ea0baa3542ba1e0f2f61618f07274e99
refs/heads/master
2022-05-17T18:35:31.024699
2020-04-14T08:03:32
2020-04-14T08:03:32
255,543,927
0
0
null
null
null
null
UTF-8
C++
false
false
1,302
cpp
#include<stdio.h> #include<conio.h> #include<iostream.h> #include<graphics.h> #include<dos.h> void midPoint(int x_centre, int y_centre, int r,int W) { int x = r, y = 0; putpixel(x + x_centre, y + y_centre,W); putpixel(x + x_centre, -y + y_centre,W); putpixel(y + x_centre, x + y_centre,W); putpixel(-y + x_centre, x + y_centre,W); int P = 1 - r; //initial value as point is r,0 for center 0,0 while ( y<=x) { y++; delay(25); if (P <= 0) P = P + 2*y + 1; else { x--; P = P + 2*y - 2*x + 1; } if (x < y) break; putpixel(x + x_centre, y + y_centre,W); putpixel(-x + x_centre, y + y_centre,W); putpixel(x + x_centre, -y + y_centre,W); putpixel(-x + x_centre, -y + y_centre,W); if (x != y) //FOR symmetry between x and y axis { putpixel(y + x_centre, x + y_centre,W); putpixel(-y + x_centre, x + y_centre,W); putpixel(y + x_centre, -x + y_centre,W); putpixel(-y + x_centre, -x + y_centre,W); } } } void main() { int gd = DETECT, gm; initgraph(&gd, &gm, "c:\\turboc3\\bgi"); midPoint(80, 70, 30,1); midPoint(155, 70, 30,6); midPoint(245, 70, 30,4); midPoint(125, 100, 30,14); midPoint(205, 100, 30,2); getch(); closegraph(); }
[ "saksham@SAKSHAM" ]
saksham@SAKSHAM
9e3cec4366b9793d3462f2676e436eaa3579fb48
6e9d11203e0743deb25e1aa8b4e339204d3956c7
/backend/error_count.cpp
f944265d7e1959c59c1a54d4fdcb2a8283757c1b
[]
no_license
Lady-Emporio/FullLeo
bb5cb0dd13ad26553be779eaac974820cc7a5f7c
2834c902ecfff51f762204dd0b79da6691703dba
refs/heads/master
2021-04-09T14:29:59.591923
2018-04-22T18:16:38
2018-04-22T18:16:38
125,722,392
0
0
null
null
null
null
UTF-8
C++
false
false
4,781
cpp
#include "error_count.h" ErrorCount::ErrorCount(QWidget *parent) : QWidget(parent) { static int counter=0; ++counter; QString ThisName="ErrorCount"+QString("").setNum(counter); this->setObjectName(ThisName); this->setWindowTitle(ThisName); db = QSqlDatabase::addDatabase("QSQLITE",ThisName); startIf=true; static bool createDB=true; if(createDB){ db.setDatabaseName("Error.sqlite");//Имя базы. if (!db.open()){ QMessageBox msgBox; msgBox.setText(db.lastError().text()); msgBox.exec(); db.close(); db=QSqlDatabase(); QSqlDatabase::removeDatabase("ErrorTable"); return; } } model = new QSqlTableModel(this,db); QPushButton *Update=new QPushButton("Update",this); QPushButton *acceptError=new QPushButton("Accept changes",this); view=new QTableView(this); view->setContextMenuPolicy(Qt::CustomContextMenu); QGridLayout *mainLayout=new QGridLayout(this); mainLayout->addWidget(view,0,0); mainLayout->addWidget(Update,1,0); mainLayout->addWidget(acceptError,2,0); this->setLayout(mainLayout); connect(Update, SIGNAL(clicked()), this, SLOT(connectUpdate_trigger())); connect(acceptError, SIGNAL(clicked()), this, SLOT(connectAccept_changes_trigger())); connect(view, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(slotCustomMenuRequested(QPoint))); } void ErrorCount::slotCustomMenuRequested(QPoint point){ QMenu * menu = new QMenu(this); QAction * deleteDevice = new QAction(trUtf8("Удалить"), this); menu->addAction(deleteDevice); menu->popup(view->viewport()->mapToGlobal(point)); connect(deleteDevice, SIGNAL(triggered()), this, SLOT(slotRemoveRecord())); // Обработчик удаления записи } void ErrorCount::slotRemoveRecord(){ int row = view->selectionModel()->currentIndex().row(); if(!model->removeRow(row)){ QMessageBox msgBox; msgBox.setText("Не получается удалить"); msgBox.exec(); } model->submitAll(); model->select(); view->setCurrentIndex(model->index(-1, -1)); } void ErrorCount::connectAccept_changes_trigger(){ model->submitAll(); } void ErrorCount::connectUpdate_trigger(){ selectAll(); } void ErrorCount::addToDB(Word word){ QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE","AddWord"); db.setDatabaseName("Error.sqlite");//Имя базы. if (!db.open()){ QMessageBox msgBox; msgBox.setText(db.lastError().text()); msgBox.exec(); db.close(); db=QSqlDatabase(); QSqlDatabase::removeDatabase("AddWord"); return; } QMessageBox msgBox; QSqlQuery query(db); query.exec("CREATE TABLE IF NOT EXISTS MainTable(eng text,ru text,count INTEGER ); "); query.clear(); query.prepare("SELECT EXISTS(SELECT 1 FROM MainTable WHERE eng =:eng)"); query.bindValue(":eng", word.eng); if(!query.exec()){ msgBox.setText(db.lastError().text()+" | "+query.lastError().text()); msgBox.exec(); return; } query.first(); int RowExist=query.value(0).toInt(); query.clear(); if(RowExist==1){ query.prepare("Select count from MainTable where eng=?"); query.addBindValue(word.eng); if(!query.exec()){ msgBox.setText(db.lastError().text()+" | "+query.lastError().text()); msgBox.exec(); return; } query.first(); int PlusOne=query.value(0).toInt(); query.clear(); query.prepare("UPDATE MainTable SET count = :PlusOne Where eng=:eng"); query.bindValue(":PlusOne", PlusOne+1); query.bindValue(":eng", word.eng); if(!query.exec()){ msgBox.setText(db.lastError().text()+" | "+query.lastError().text()); msgBox.exec(); return; } }else{ query.prepare("INSERT INTO MainTable VALUES (:eng,:ru,:PlusOne);"); query.bindValue(":PlusOne", 1); query.bindValue(":eng", word.eng); query.bindValue(":ru", word.ru); if(!query.exec()){ msgBox.setText(db.lastError().text()+" | "+query.lastError().text()); msgBox.exec(); return; } } db.commit(); db.close(); db=QSqlDatabase(); QSqlDatabase::removeDatabase("AddWord"); } void ErrorCount::selectAll(){ QMessageBox msgBox; if(startIf){ model->setTable("MainTable"); model->setEditStrategy(QSqlTableModel::OnManualSubmit); model->select(); view->setModel(model); startIf=false; }else{ model->revertAll(); model->select(); } }
[ "godod4@gmail.com" ]
godod4@gmail.com
dffc60d8cc63eaa7acdfde2f8a6a15d859f10a67
d3179c3279d1298c3ffb763f0d6f2259b6c4b1c7
/cursostec/directx9c/codigo_fonte/Fase05/prj_Joystick/motor.cpp
a4b1c41ce5b23dd52fa0c8e2048b46c1d321ec1a
[]
no_license
jairxpereira/gameprog
99f146c2c048dd7019153ee0f00f5107979098ba
2ae183cc4cc8dc850709f29f14abf5962b21ad3b
refs/heads/master
2020-03-08T17:41:10.020529
2018-04-10T22:09:25
2018-04-10T22:09:25
128,275,315
0
0
null
null
null
null
UTF-8
C++
false
false
13,396
cpp
//------------------------------------------------------------------- // Projeto: prj_Joystick - arquivo: motor.cpp // Esta aplicação mostra como utilizar o Joystick // via DirectInput. Produzido por www.gameprog.com.br //------------------------------------------------------------------- #include <windows.h> #include <d3d9.h> #include <d3dx9.h> #include <stdio.h> #include "motor.h" #include <dinput.h> #include "joystick.h" // Inclui as bibliotecas do Direct3D #pragma comment ( lib, "d3d9.lib" ) #pragma comment ( lib, "d3dx9.lib") // Bibliotecas do DirectInput #pragma comment ( lib, "dinput8.lib") #pragma comment ( lib, "dxguid.lib" ) // [--- $Aspectos globais: arquivo: motor.cpp# // Ponteiro para o objeto DirectInput IDirectInput8 *g_DirectInput = NULL; // Ponteiro para o dispositivo de entrada joystick IDirectInputDevice8 *g_joystick = NULL; // Objeto para gravar informações em arquivo texto Relatorio g_relatorio; // Estrutura para coletar os estados do joystick extern DIJOYSTATE2 g_jsStatus; // ---] // Alça e dimensões da janela extern HWND hJanela; extern int g_xtela; extern int g_ytela; // Represeñtação simbólica do jogador char* smove_esquerda = "<(-:"; char* smove_direita = ":-)>"; char* sjogador; // Controle de movimento int xcol = 320; int ylin = 240; int nVelocidade = 2; // Variáveis globais // Representa o dispositivo D3D LPDIRECT3D9 g_Direct3d = NULL; // Representa o dispositivo Renderizador IDirect3DDevice9 *g_device = NULL; // Ponteiro para uma fonte do directx ID3DXFont *gdxFonte = NULL; // Essa variável recebe informação de erro do Directx HRESULT g_hr = 0; // [--- $Inicialização do motor gráfico# // initGfx() - Inicializa o Direct3D HRESULT initGfx( HWND hJanela ) { // Cria o objeto D3D que é necessário para criar o dispositivo gráfico g_Direct3d = Direct3DCreate9( D3D_SDK_VERSION ); // Verifica se objeto Direct3D foi criado if ( g_Direct3d == NULL) { MessageBox (NULL, "Falha na inialização do Direct3D", "InitGfx()", MB_OK); return E_FAIL; } // endif // Declara a variável para os parâmetros de apresentação D3DPRESENT_PARAMETERS pps; // Limpa a estrutura ZeroMemory( &pps, sizeof(pps) ); // Configura os parâmetros de apresentação // A aplicação vai ter janela pps.Windowed = TRUE; // Esse método vira rapidamente o backbuffer para a tela imediata pps.SwapEffect = D3DSWAPEFFECT_DISCARD; // Esse formato vai procurar se encaixar no modo de video corrente pps.BackBufferFormat = D3DFMT_UNKNOWN; // Configuração do renderizador a ser criado // Adaptador default (0) int nAdaptador = D3DADAPTER_DEFAULT; // Tipo de dispositivo Hardware ou emulador de referência (software) D3DDEVTYPE dispositivo_tipo = D3DDEVTYPE_HAL; // Flags de configuração do dispositivo DWORD create_flags = D3DCREATE_SOFTWARE_VERTEXPROCESSING; // Criamos aqui o dispositivo renderizador g_hr = g_Direct3d->CreateDevice( nAdaptador, dispositivo_tipo, hJanela, create_flags, &pps, &g_device ); // Verifica se houve falha no processo if( FAILED( g_hr ) ) { MessageBox (NULL, "Falha na criação: g_device", "initGfx()", MB_OK); return E_FAIL; } // endif // Faz inicialização da interface de texto inicializarTexto(); // Define forma do jogador sjogador = smove_esquerda; // Reset posição do jogador setJogadorPos(320, 240); // <b> // Inicia o objeto para salvar informações no disco g_relatorio = Relatorio(); g_relatorio.Inicializar(); // Inicializa DirectInput e o dispositivo de joystick depois inicializar_DirectInput(); inicializar_Joystick(); // </b> return S_OK; } // initGfx().fim // ---] // [--- $Inicialização do DirectInput# // inicializar_DirectInput() - Cria o objeto DirectInput bool inicializar_DirectInput() { // Criação do objeto DirectInput g_hr = DirectInput8Create( GetModuleHandle(NULL), DIRECTINPUT_VERSION, IID_IDirectInput8, (void**) &g_DirectInput, NULL); if FAILED(g_hr) { MessageBox (NULL, "DirectInput: falha na criação", "inicializar_DirectInput()", MB_OK); return false; } // endif return true; } // inicializar_DirectInput().fim // ---] // [--- $Tratamento do joystick via DirectInput# HRESULT tratar_Joystick( void ) { // Resultado das operações HRESULT hr; // Retorne se não houver um joystick ok if( NULL == g_joystick ) return S_OK; // Limpe a estrutura e colete o estado do joystick ZeroMemory( &g_jsStatus, sizeof(g_jsStatus) ); // Verifique o estado atual do dispositivo hr = g_joystick->Poll(); if( FAILED(hr) ) { // o directInput poderia estar informando de que o fluxo de // entrada foi interrompido. Não estamos rastreando qualquer // estado entre as pesquisas (polls), então nós não temos // nenhum procedimento especial de reconfiguração que precisa // ser feito. Simplesmente re-adquirimos e tentamos de novo. // Se o dispositivo de entrada foi perdido então // continue tentando a reaquisição. hr = g_joystick->Acquire(); while( hr == DIERR_INPUTLOST ) hr = g_joystick->Acquire(); // Retorne se houver algum erro // hr pode ser DIERR_OTHERAPPHASPRIO e outros erros que podem // ocorrer quando a aplicação está minimizada ou em processo de // transição. Então, tente mais tarde... if( hr == DIERR_OTHERAPPHASPRIO || hr == DIERR_NOTACQUIRED ) return S_OK; } // endif // Obtém os estados do joystick hr = g_joystick->GetDeviceState( sizeof(DIJOYSTATE2), &g_jsStatus ); // Retorne imediamente em caso de falha if ( FAILED (hr) ) return hr; // Testa botão 01 if (g_jsStatus.rgbButtons[0] & 0x80) setJogadorPos(10, 100); // Testa botão 02 if (g_jsStatus.rgbButtons[1] & 0x80) setJogadorPos(320, 240); // Declara variáveis de estados das setas int seta_direita, seta_esquerda, seta_cima, seta_baixo; seta_direita = 0; seta_esquerda = 0; seta_cima = 0; seta_baixo = 0; // Verifica a movimentação dos eixos e atualiza os flags de movimento if( g_jsStatus.lX == -1000) seta_esquerda = 1; if( g_jsStatus.lX == 1000) seta_direita = 1; if( g_jsStatus.lY == -1000) seta_cima = 1; if( g_jsStatus.lY == 1000) seta_baixo = 1; // Tratamento da seta esquerda if( seta_esquerda ) { xcol = xcol - nVelocidade; sjogador = smove_esquerda; } // endif seta_esquerda // Tratamento da seta direita if( seta_direita ) { xcol = xcol + nVelocidade; sjogador = smove_direita; } // endif seta_direita // Tratamento da seta cima \ seta baixo if( seta_cima ) ylin = ylin - nVelocidade; if( seta_baixo ) ylin = ylin + nVelocidade; return S_OK; } // tratar_Joystick().fim // ---] void inicializarTexto() { // Altura int nAltura = 24; // Largura UINT nLargura = 0; // Peso ( weight ) UINT nPeso = FW_BOLD; // Nível de mipmap - 0: mipmap automático UINT nMipmap = 0; // Efeito itálico bool bItalico = false; // Conjunto de caracteres (charset) DWORD nCharset = DEFAULT_CHARSET; // Precisão (OutputPrecision) DWORD nPrecisao = OUT_DEFAULT_PRECIS; // Qualidade DWORD nQualidade = DEFAULT_QUALITY; // Pitch e família DWORD nFamilia = DEFAULT_PITCH | FF_DONTCARE; // Nome da fonte char* sFonte = "Arial"; g_hr = D3DXCreateFont( g_device, nAltura, nLargura, nPeso, nMipmap, bItalico, nCharset, nPrecisao, nQualidade, nFamilia, sFonte, &gdxFonte ); if ( FAILED (g_hr) ) MessageBox ( NULL, "Texto: falha na inicialização", "inicializarTexto()", MB_OK); } // inicializarTexto() void mostrarTexto(int x, int y, char* texto) { // Retorne se não houver fonte inicializada if ( gdxFonte == NULL ) return; // Cor de fundo da janela D3DCOLOR azul = D3DCOLOR_XRGB(0, 0, 255); // Configura a área limite RECT area_limite; SetRect( &area_limite, x, y, g_xtela, g_ytela ); // Desenha o texto gdxFonte->DrawText( NULL, texto, -1, &area_limite, 0, azul ); } // mostrarTexto(); // Limpar() - Libera todos os objetos previamente inicializados // ----------------------------------------------------------------------------- VOID Limpar() { // Libera objeto de mostrar texto if( gdxFonte != NULL) gdxFonte->Release(); // Libera o dispositivo gráfico if( g_device != NULL) g_device->Release(); // Libera o motor do Direct3D if( g_Direct3d != NULL) g_Direct3d->Release(); // Limpe os objetos do DirectInput limpar_DirectInput(); // Feche o arquivo de relatório g_relatorio.Fechar(); } // Limpar().fim // ----------------------------------------------------------------------------- // Renderizar() - Desenha a cena // ----------------------------------------------------------------------------- // [--- $Renderização da cena# VOID Renderizar() { // Verifica e trata joystick tratar_Joystick(); // Retorne se o dispositivo estiver nulo if( g_device == NULL) return; // Cor de fundo da janela const D3DCOLOR branco = D3DCOLOR_XRGB( 255, 255, 255 ); // Limpa o backbuffer com uma cor branca g_device->Clear( NULL, NULL, D3DCLEAR_TARGET, branco, 1.0f, 0); // Começa a cena if( SUCCEEDED( g_device->BeginScene() ) ) { // <b> // Mostra o jogador mostrarTexto (xcol, ylin, sjogador); // Mostra as mensagens mostrarTexto (10, 10, "Joystick: movimentação"); mostrarTexto (10, 50, "Botão 1 ou 2: Resseta posição"); // Mostra informações sobre o joystick mostrar_joyinfo(); // </b> // Finalizando a cena g_device->EndScene(); } // endif g_device->Present( NULL, NULL, NULL, NULL ); } // Renderizar().fim // ---] // Esta função é chamada por DispatchMessage() LRESULT CALLBACK processaJanela (HWND hJanela, UINT mensagem, WPARAM wParam, LPARAM lParam) { switch (mensagem) { case WM_DESTROY: // Coloca uma mensagem WM_QUIT na fila de mensagem Limpar(); PostQuitMessage (0); break; case WM_KEYDOWN: if (wParam == VK_ESCAPE) { Limpar(); PostQuitMessage( 0 ); } // endif break; // Essa mensagem vai ocorrer a todo momento case WM_PAINT: // Renderiza a cena Renderizar(); // Invalida a tela para chamar WM_PAINT novamente InvalidateRect( hJanela, NULL, false ); break; // Processamento default de mensagens não tratada pela aplicação default: return DefWindowProc (hJanela, mensagem, wParam, lParam); } // endswitch return 0; } // processaJanela().fim void setJogadorPos( int xpos, int ypos) { // Variáveis de apoio: ( pt.x, pt.y ) POINT pt; // Posiciona o ponteiro do mouse convertendo coordenada // de janela para coordenada de tela pt.x = xpos; pt.y = ypos; ClientToScreen (hJanela, &pt); SetCursorPos(pt.x, pt.y ); // Recupera a posição do mouse GetCursorPos (&pt); // Converte coordenada de tela para coordenada de janela ScreenToClient (hJanela, &pt); // Configura posição do jogador xcol = pt.x + 20; ylin = pt.y + 20; } // setJogadorPos().fim // [--- $Limpeza do DirectInput# // limpar_DirectInput() - Libera os objetos do DirectInput void limpar_DirectInput() { if (g_DirectInput) { if (g_joystick) { // Liberação do joystick // Chame primeiro unacquire() antes de chamar Release(). g_joystick->Unacquire(); g_joystick->Release(); g_joystick = NULL; } // endif (g_joystick) // Liberação do objeto DirectInput g_DirectInput->Release(); g_DirectInput = NULL; } // endif (g_DirectInput) } // limpar_DirectInput().fim // ---] // [--- $Informações dos estados do joystick# void mostrar_joyinfo(void) { // Tamanho do buffer de texto #define tam_buffer 64 // Controle de texto // (coluna, linha) e espaço de separação entre linhas int linha, coluna, spc_linha; linha = 80; coluna = 10; spc_linha = 30; // Informação de eixos de posição char pos_eixo[tam_buffer] = "\0"; sprintf( pos_eixo, "xyz position: %ld %ld %d", g_jsStatus.lX, g_jsStatus.lY, g_jsStatus.lZ); mostrarTexto(coluna, linha, pos_eixo); linha += spc_linha; // Informação de eixos de rotação char rot_eixo[tam_buffer] = "\0"; sprintf( rot_eixo, "xyz rotation: %ld %ld %d", g_jsStatus.lRx, g_jsStatus.lRy, g_jsStatus.lRz); mostrarTexto(coluna, linha, rot_eixo); linha += spc_linha; // Informação sobre slider (alavanca que escorrega) char info_slider[tam_buffer] = "\0"; sprintf( info_slider, "rglSlider: %ld %d", g_jsStatus.rglSlider[0], g_jsStatus.rglSlider[1]); mostrarTexto(coluna, linha, info_slider); linha += spc_linha; // Informação sobre pov's ( point of view ou pontos de vista ) char info_pov[tam_buffer] = "\0"; sprintf( info_pov, "rgdwPOV: %ld %ld %ld %ld", g_jsStatus.rgdwPOV[0], g_jsStatus.rgdwPOV[1], g_jsStatus.rgdwPOV[2], g_jsStatus.rgdwPOV[3]); mostrarTexto(coluna, linha, info_pov); linha += spc_linha; // ****************************************************************** // Coleta e exibição de informação sobre os botões char btnText[128]; char* str; // Preencha o texto com os botões pressionados str = btnText; for( int nbtn = 0; nbtn < 128; nbtn++ ) { if ( g_jsStatus.rgbButtons[nbtn] & 0x80 ) str += sprintf( str, "%02d ", nbtn ); } // endfor // Termine a string *str = 0; // Mostre a string de botões mostrarTexto(coluna, linha, "Botões: "); mostrarTexto(coluna + 80, linha, btnText); linha += spc_linha; } // mostrar_joyinfo().fim // ---]
[ "37883761+jairxpereira@users.noreply.github.com" ]
37883761+jairxpereira@users.noreply.github.com
702bff28c1f0fdb2da37e50c23109c8aff3d6f88
10f5a3024649f27ba7809a5004c64a0c8164784a
/c_src/ssldh.cc
1613c7d8bf77f4ab38569286f0166c2b3c841910
[ "MIT" ]
permissive
bokner/erltls
bc52e7b5ee91a3b33462df2965103be15455bcf3
e9f841fb0b369daca970eefacd4c71098527404a
refs/heads/master
2020-06-16T22:22:40.181332
2019-07-10T17:45:16
2019-07-10T18:39:50
195,719,640
0
0
null
2019-07-08T02:04:24
2019-07-08T02:04:24
null
UTF-8
C++
false
false
3,773
cc
#include "ssldh.h" #include "macros.h" #include <memory> #if OPENSSL_VERSION_NUMBER < 0x10100000L || defined LIBRESSL_VERSION_NUMBER #define DH_set0_pqg(A, B, C, D) do { (A)->p = B; (A)->g = D; } while (0) #endif #ifndef OPENSSL_NO_DH /* 1024-bit MODP Group with 160-bit prime order subgroup (RFC5114) -----BEGIN DH PARAMETERS----- MIIBDAKBgQCxC4+WoIDgHd6S3l6uXVTsUsmfvPsGo8aaap3KUtI7YWBz4oZ1oj0Y mDjvHi7mUsAT7LSuqQYRIySXXDzUm4O/rMvdfZDEvXCYSI6cIZpzck7/1vrlZEc4 +qMaT/VbzMChUa9fDci0vUW/N982XBpl5oz9p21NpwjfH7K8LkpDcQKBgQCk0cvV w/00EmdlpELvuZkF+BBN0lisUH/WQGz/FCZtMSZv6h5cQVZLd35pD1UE8hMWAhe0 sBuIal6RVH+eJ0n01/vX07mpLuGQnQ0iY/gKdqaiTAh6CR9THb8KAWm2oorWYqTR jnOvoy13nVkY0IvIhY9Nzvl8KiSFXm7rIrOy5QICAKA= -----END DH PARAMETERS----- */ static unsigned char dh1024_p[] = { 0xB1, 0x0B, 0x8F, 0x96, 0xA0, 0x80, 0xE0, 0x1D, 0xDE, 0x92, 0xDE, 0x5E, 0xAE, 0x5D, 0x54, 0xEC, 0x52, 0xC9, 0x9F, 0xBC, 0xFB, 0x06, 0xA3, 0xC6, 0x9A, 0x6A, 0x9D, 0xCA, 0x52, 0xD2, 0x3B, 0x61, 0x60, 0x73, 0xE2, 0x86, 0x75, 0xA2, 0x3D, 0x18, 0x98, 0x38, 0xEF, 0x1E, 0x2E, 0xE6, 0x52, 0xC0, 0x13, 0xEC, 0xB4, 0xAE, 0xA9, 0x06, 0x11, 0x23, 0x24, 0x97, 0x5C, 0x3C, 0xD4, 0x9B, 0x83, 0xBF, 0xAC, 0xCB, 0xDD, 0x7D, 0x90, 0xC4, 0xBD, 0x70, 0x98, 0x48, 0x8E, 0x9C, 0x21, 0x9A, 0x73, 0x72, 0x4E, 0xFF, 0xD6, 0xFA, 0xE5, 0x64, 0x47, 0x38, 0xFA, 0xA3, 0x1A, 0x4F, 0xF5, 0x5B, 0xCC, 0xC0, 0xA1, 0x51, 0xAF, 0x5F, 0x0D, 0xC8, 0xB4, 0xBD, 0x45, 0xBF, 0x37, 0xDF, 0x36, 0x5C, 0x1A, 0x65, 0xE6, 0x8C, 0xFD, 0xA7, 0x6D, 0x4D, 0xA7, 0x08, 0xDF, 0x1F, 0xB2, 0xBC, 0x2E, 0x4A, 0x43, 0x71, }; static unsigned char dh1024_g[] = { 0xA4, 0xD1, 0xCB, 0xD5, 0xC3, 0xFD, 0x34, 0x12, 0x67, 0x65, 0xA4, 0x42, 0xEF, 0xB9, 0x99, 0x05, 0xF8, 0x10, 0x4D, 0xD2, 0x58, 0xAC, 0x50, 0x7F, 0xD6, 0x40, 0x6C, 0xFF, 0x14, 0x26, 0x6D, 0x31, 0x26, 0x6F, 0xEA, 0x1E, 0x5C, 0x41, 0x56, 0x4B, 0x77, 0x7E, 0x69, 0x0F, 0x55, 0x04, 0xF2, 0x13, 0x16, 0x02, 0x17, 0xB4, 0xB0, 0x1B, 0x88, 0x6A, 0x5E, 0x91, 0x54, 0x7F, 0x9E, 0x27, 0x49, 0xF4, 0xD7, 0xFB, 0xD7, 0xD3, 0xB9, 0xA9, 0x2E, 0xE1, 0x90, 0x9D, 0x0D, 0x22, 0x63, 0xF8, 0x0A, 0x76, 0xA6, 0xA2, 0x4C, 0x08, 0x7A, 0x09, 0x1F, 0x53, 0x1D, 0xBF, 0x0A, 0x01, 0x69, 0xB6, 0xA2, 0x8A, 0xD6, 0x62, 0xA4, 0xD1, 0x8E, 0x73, 0xAF, 0xA3, 0x2D, 0x77, 0x9D, 0x59, 0x18, 0xD0, 0x8B, 0xC8, 0x85, 0x8F, 0x4D, 0xCE, 0xF9, 0x7C, 0x2A, 0x24, 0x85, 0x5E, 0x6E, 0xEB, 0x22, 0xB3, 0xB2, 0xE5, }; int SetupDH(SSL_CTX* ctx, const std::string& dh_file) { scoped_ptr(dh, DH, NULL, DH_free); if (!dh_file.empty()) { scoped_ptr(bio, BIO, BIO_new_file(dh_file.c_str(), "r"), BIO_free); if (bio.get()) dh.reset(PEM_read_bio_DHparams(bio.get(), NULL, NULL, NULL)); } else { dh.reset(DH_new()); if (dh.get()) { BIGNUM *dh_p = BN_bin2bn(dh1024_p, sizeof(dh1024_p), NULL); BIGNUM *dh_g = BN_bin2bn(dh1024_g, sizeof(dh1024_g), NULL); if (dh_p == NULL || dh_g == NULL) { BN_free(dh_p); BN_free(dh_g); return 0; } DH_set0_pqg(dh.get(), dh_p, NULL, dh_g); } } if (dh.get() == NULL) return 0; SSL_CTX_set_options(ctx, SSL_OP_SINGLE_DH_USE); return static_cast<int>(SSL_CTX_set_tmp_dh(ctx, dh.get())); } #endif #ifndef OPENSSL_NO_ECDH void SetupECDH(SSL_CTX* ctx) { //ECDHE is enabled only on OpenSSL 1.0.0e and later if (SSLeay() < 0x1000005fL) return; EC_KEY *ecdh = EC_KEY_new_by_curve_name(NID_X9_62_prime256v1); SSL_CTX_set_options(ctx, SSL_OP_SINGLE_ECDH_USE); SSL_CTX_set_tmp_ecdh(ctx, ecdh); EC_KEY_free(ecdh); } #endif
[ "silviu.caragea@woowteam.com" ]
silviu.caragea@woowteam.com
83a6d47b686fbe7d79ec31572a25529c2e08012a
b0f8bc3c9791ee2279f07452b911c8edab0fc548
/pep-basics/arrays/2-findElement.cpp
9c703f2579b3c5a14a5ba68771ae31a63c78479e
[]
no_license
siddhantv10/algo
5354cee84f6d6b9ac2d994de00791aa0dedae315
1185de6c4d35d0ae1e1141a43e1b4181f361f70e
refs/heads/master
2023-01-12T19:11:04.488315
2020-11-13T14:55:36
2020-11-13T14:55:36
272,968,675
0
0
null
null
null
null
UTF-8
C++
false
false
425
cpp
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; int a[n]; for (int i = 0; i < n; i++) { cin >> a[i]; } int d; cin >> d; int f = 0; for (int i = 0; i < n; i++) { if (a[i] == d) { cout << i << endl; f = 1; break; } } if (f == 0) cout << "-1" << endl; return 0; }
[ "siddhantverma777@gmail.com" ]
siddhantverma777@gmail.com
fd55816129a2941a040b39cb76b26c506dd56b19
510d4d913ae32a2de3b18b35152f895eccf177c0
/src/html/html_escape.h
1be002cae1cee8bbd0e13aaa6de6c2b0bd359575
[ "BSD-2-Clause" ]
permissive
steffan711/2ls
8e5443440601b63e23bf6a2eb498863cd302606e
875ddfb4d12a8d5b9905aeb19e8a62aa77dcbb8f
refs/heads/master
2020-06-10T17:37:04.274561
2016-12-04T15:27:43
2016-12-04T15:27:43
75,919,795
0
0
null
2016-12-08T08:47:08
2016-12-08T08:47:08
null
UTF-8
C++
false
false
435
h
/*******************************************************************\ Module: Delta Check HTML Reporting Author: Daniel Kroening, kroening@kroening.com \*******************************************************************/ #ifndef DELTACHECK_HTML_ESCAPE_H #define DELTACHECK_HTML_ESCAPE_H #include <util/dstring.h> #include <string> std::string html_escape(const std::string &); std::string html_escape(const dstring &); #endif
[ "kroening@ae12b94c-7a1e-481b-bb16-7d291d499974" ]
kroening@ae12b94c-7a1e-481b-bb16-7d291d499974
81e91978907748106fb233f56e6a7fcb1391b71e
f146950d63ae1b18fc69ec6ba8f3081d68f38258
/PcCortr/MyTlntTrans.cpp
63522c4f250d75de81e92f6308c5a28f16b77a23
[]
no_license
ewin66/pcsharefix64
e46480f840f79562bc90e12f6f445b1212dca4c5
fdba6377bb05b49a25a7db028fbac1edc4d96760
refs/heads/master
2022-11-26T11:09:22.579515
2020-07-24T03:29:12
2020-07-24T03:29:12
null
0
0
null
null
null
null
GB18030
C++
false
false
5,543
cpp
// MyTlntTrans.cpp: implementation of the CMyTlntTrans class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "PcCortr.h" #include "MyTlntTrans.h" #ifdef _DEBUG #undef THIS_FILE static char THIS_FILE[]=__FILE__; #define new DEBUG_NEW #endif ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// CMyTlntTrans::CMyTlntTrans() { hExitEvent = CreateEvent(NULL,TRUE,FALSE,NULL); hChildStdinRd = 0; hChildStdinWr = 0; hChildStdinWrDup = 0; hChildStdoutRd = 0; hChildStdoutWr = 0; hChildStdoutRdDup = 0; hSaveStdin = 0; hSaveStdout = 0; hProcess = 0; } CMyTlntTrans::~CMyTlntTrans() { //清理资源 CloseHandle(hExitEvent); } //控制线程 BOOL CMyTlntTrans::StartWork(char* m_ServerAddr, int m_ServerPort, int nSend, int nRecv) { //连接目标服务器,创建发送接收管道 if(!CMyHttpPipeBase::StartWork( m_ServerAddr, m_ServerPort, nSend, nRecv)) return FALSE; //启动命令接收线程 _beginthread(TlntThread,0,this); //创建进程,重定向 if(!CreateShellRedirect()) { StopWork(); return FALSE; } //开始接收数据 DWORD dwBytesWritten = 0; while(WaitForSingleObject(hExitEvent,0) == WAIT_TIMEOUT) { char chBuf[256] = {0}; DWORD dwRead = 0; if( !ReadFile( hChildStdoutRdDup, chBuf, 128, &dwRead, NULL) || dwRead == 0) break; if(!SendData(chBuf, dwRead)) break; } CloseHandle( hChildStdinRd); CloseHandle( hChildStdoutWr); CloseHandle( hChildStdinWrDup); CloseHandle( hChildStdoutRdDup); StopWork(); return TRUE; } void CMyTlntTrans::ProcessCmd() { while(1) { //接收数据 char ch = 0; if(!RecvData(&ch,1)) break ; //发送命令到cmd DWORD dwWritten = 0; WriteFile(hChildStdinWrDup, &ch, 1, &dwWritten, NULL ); } TerminateProcess(hProcess,0); //终止程序 SetEvent(hExitEvent); } void CMyTlntTrans::TlntThread(LPVOID lPvoid) { CMyTlntTrans* pThis = (CMyTlntTrans*) lPvoid; pThis->ProcessCmd(); } //创建进程 BOOL CMyTlntTrans::CreateChildProcess() { PROCESS_INFORMATION piProcInfo; STARTUPINFO siStartInfo; ZeroMemory(&siStartInfo,sizeof(STARTUPINFO)); siStartInfo.cb = sizeof(STARTUPINFO); siStartInfo.lpReserved = NULL; siStartInfo.lpReserved2 = NULL; siStartInfo.cbReserved2 = 0; siStartInfo.lpDesktop = NULL; siStartInfo.wShowWindow = SW_HIDE; siStartInfo.dwFlags = 0; siStartInfo.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW; siStartInfo.hStdInput = hChildStdinRd; siStartInfo.hStdOutput = hChildStdoutWr; siStartInfo.hStdError = hChildStdoutWr; siStartInfo.wShowWindow = SW_HIDE; TCHAR shellCmd[_MAX_PATH]; if( !GetEnvironmentVariable(_T("ComSpec"), shellCmd, _MAX_PATH) ) return FALSE; _tcscat( shellCmd, _T(" /A") ); BOOL ret = CreateProcess( NULL, shellCmd, // applicatin name NULL, // process security attributes NULL, // primary thread security attributes TRUE, // handles are inherited CREATE_NO_WINDOW, // creation flags NULL, // use parent's environment NULL, // use parent's current directory &siStartInfo, // STARTUPINFO pointer &piProcInfo); // receives PROCESS_INFORMATION if( ret ) hProcess = piProcInfo.hProcess ; return ret; } BOOL CMyTlntTrans::CreateShellRedirect() { SECURITY_ATTRIBUTES saAttr; BOOL fSuccess; // Set the bInheritHandle flag so pipe handles are inherited. saAttr.nLength = sizeof(SECURITY_ATTRIBUTES); saAttr.bInheritHandle = TRUE; saAttr.lpSecurityDescriptor = NULL; hSaveStdout = GetStdHandle(STD_OUTPUT_HANDLE); if( !CreatePipe( &hChildStdoutRd, &hChildStdoutWr, &saAttr, 0) ) { TRACE0( _T("Stdout pipe creation failed\n") ); return FALSE; } if( !SetStdHandle(STD_OUTPUT_HANDLE, hChildStdoutWr) ) { TRACE0( _T("Redirecting STDOUT failed\n") ); return FALSE; } fSuccess = DuplicateHandle( GetCurrentProcess(), hChildStdoutRd, GetCurrentProcess(), &hChildStdoutRdDup , 0, FALSE, DUPLICATE_SAME_ACCESS ); if( !fSuccess ) { TRACE0( _T("DuplicateHandle failed\n") ); return FALSE; } CloseHandle( hChildStdoutRd ); // Save the handle to the current STDIN. hSaveStdin = GetStdHandle(STD_INPUT_HANDLE); // Create a pipe for the child process's STDIN. if( !CreatePipe(&hChildStdinRd, &hChildStdinWr, &saAttr, 0) ) { TRACE0( _T("Stdin pipe creation failed\n") ); return FALSE; } // Set a read handle to the pipe to be STDIN. if( !SetStdHandle(STD_INPUT_HANDLE, hChildStdinRd) ) { TRACE0( _T("Redirecting Stdin failed\n") ); return FALSE; } // Duplicate the write handle to the pipe so it is not inherited. fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdinWr, GetCurrentProcess(), &hChildStdinWrDup, 0, FALSE, // not inherited DUPLICATE_SAME_ACCESS ); if( !fSuccess ) { TRACE0( _T("DuplicateHandle failed\n") ); return FALSE; } CloseHandle(hChildStdinWr); // Now create the child process. if( !CreateChildProcess()) { TRACE0( _T("CreateChildProcess failed\n") ); return FALSE; } // After process creation, restore the saved STDIN and STDOUT. if( !SetStdHandle(STD_INPUT_HANDLE, hSaveStdin) ) { TRACE0( _T("Re-redirecting Stdin failed\n") ); return FALSE; } if( !SetStdHandle(STD_OUTPUT_HANDLE, hSaveStdout) ) { TRACE0( _T("Re-redirecting Stdout failed\n") ); return FALSE; } return TRUE; }
[ "yaoyuan.bao@magic-shield.com" ]
yaoyuan.bao@magic-shield.com
255089439f8807f697b794f0fe2bf83e0b84ede3
590070102493345c16e739f1fef96b1fa88ba51a
/Project/utils/tests.cpp
16b8eb9a7c2deabe0fcd61db4624f3f8f2355a03
[]
no_license
chizhang529/cme213
a8174adb817beaa9533d06dce8a20071ee4850e6
014dd5c2e1a8d46ef6d787a3a14ab2eb2c41460b
refs/heads/master
2020-03-08T00:57:11.495557
2018-10-07T23:42:34
2018-10-07T23:42:34
127,817,778
7
2
null
null
null
null
UTF-8
C++
false
false
8,642
cpp
#include "tests.h" #include "gpu_func.h" #include "cublas_v2.h" #include "mpi.h" #include<iomanip> #include<fstream> #include<chrono> using namespace std; #define SCALE 1 // Factor to SCALE the GEMM problem size by #define NUM_ITERS 10 // Number of GEMMs run for timing purposes #define GEMM_TOL 1e-12 // Tolerance for GEMM comparison // check whether the matrix from Seq is the same as from Par. // write out mismathces to a file. int checkErrors(const arma::mat& Seq, const arma::mat& Par, std::ofstream& ofs, std::vector<double>& errors) { //std::ofstream ofs(filename.c_str()); int error = 0; for(int i = 0; i < Seq.n_rows; ++i) { for(int j = 0; j < Seq.n_cols; ++j) { if(abs(Seq(i,j) - Par(i,j)) > 1e-4) { ofs << "Mismatch at pos (" << i << ", " << j << " )seq: " << Seq(i,j) << " par: " << Par(i,j) << endl; ++error; } } } if(error) ofs << "There were " << error << " total locations where there was a difference between the seq and par" << endl; double err_max = arma::norm(Seq-Par,"inf")/arma::norm(Seq,"inf"); double err_l2 = arma::norm(Seq-Par,2)/arma::norm(Seq,2); if(err_max > 1e-7) { cout << "Correctness test failed" << endl; } errors.push_back(err_max); errors.push_back(err_l2); //ofs.close(); return error; } int checkNNErrors(NeuralNetwork& seq_nn, NeuralNetwork& par_nn, std::string filename) { std::vector<double> errors_w, errors_b; int error = 0; std::ofstream ofs(filename.c_str()); cout << endl; for(int i = 0; i < seq_nn.num_layers; i++) { ofs << "Mismatches for W[" << i << "]" << endl; error += checkErrors(seq_nn.W[i], par_nn.W[i], ofs, errors_w); ofs << "Mismatches for b[" << i << "]" << endl; error += checkErrors(seq_nn.b[i], par_nn.b[i], ofs, errors_b); cout << endl; cout << "max norm of diff b/w seq and par: W[" << i << "]: " << setprecision( 6) << errors_w[2*i] << ", b[" << i << "]: " << errors_b[2*i] << endl; cout << "l2 norm of diff b/w seq and par: W[" << i << "]: " << setprecision( 6) << errors_w[2*i+1] << ", b[" << i << "]: " << errors_b[2*i+1] << endl; } ofs.close(); return error; } void createMATS(double* A, double* B, double* C1, double* C2, int NI, int NJ, int NK) { int i, j; for(j = 0; j < NK; j++) { for(i = 0; i < NI; i++) { A[i + j*NI] = ((double) i*j) / NI; } } for(j = 0; j < NJ; j++) { for(i = 0; i < NK; i++) { B[i + j*NK] = ((double) i*j + 1) / NJ; } } for(j = 0; j < NJ; j++) { for(i = 0; i < NI; i++) { C1[i + j*NI] = 0; C2[i + j*NI] = ((double) i*j + 2) / NJ; } } } int compareGEMMResults(double* myC, double* refC, int NI, int NJ) { int i, j; int fail = 0; arma::mat mysol = arma::mat(myC, NI, NJ, false); arma::mat refsol = arma::mat(refC, NI, NJ, false); double reldiff = arma::norm(mysol-refsol,"inf")/arma::norm(refsol,"inf"); if(reldiff > GEMM_TOL) { fail = 1; } // Print results if(fail) { std::cout << "My GEMM output not matching with reference. Rel diff = " << reldiff << std::endl; } else { std::cout << "GEMM matched with reference successfully! Rel diff = " << reldiff << std::endl; } return fail; } void TestGEMM(int M, int N, int K) { double* A; double* B; double* C1; double* C2; double* dA; double* dB; double* dC1; double* dC2; double* dummy; double alpha = 2.0; double beta = 5.0; int num_iters = 100; A = (double*)malloc(M*K*sizeof(double)); B = (double*)malloc(K*N*sizeof(double)); C1 = (double*)malloc(M*N*sizeof(double)); C2 = (double*)malloc(M*N*sizeof(double)); cudaMalloc((void**)&dA, sizeof(double) * M * K); cudaMalloc((void**)&dB, sizeof(double) * K * N); cudaMalloc((void**)&dC1, sizeof(double) * M * N); cudaMalloc((void**)&dC2, sizeof(double) * M * N); cudaMalloc((void**)&dummy, sizeof(double) * M * N); // C1 and C2 are same. We just have two copies to compare results createMATS(A, B, C1, C2, M, N, K); cudaMemcpy(dA, A, sizeof(double) * M * K, cudaMemcpyHostToDevice); cudaMemcpy(dB, B, sizeof(double) * K * N, cudaMemcpyHostToDevice); cudaMemcpy(dC1, C2, sizeof(double) * M * N, cudaMemcpyHostToDevice); cudaMemcpy(dC2, C2, sizeof(double) * M * N, cudaMemcpyHostToDevice); cudaMemcpy(dummy, C2, sizeof(double) * M * N, cudaMemcpyHostToDevice); /* Warm up GPU before we run. We run one extra CuBlas */ cudaError_t cudaStat; cublasStatus_t stat; cublasHandle_t handle; stat = cublasCreate(&handle); if(stat != CUBLAS_STATUS_SUCCESS) { std::cerr << "CUBLAS initialization failed!" << std::endl; return; } stat = cublasDgemm(handle, CUBLAS_OP_N, CUBLAS_OP_N, M, N, K, &alpha, dA, M, dB, K, &beta, dummy, M); /* Compute reference solution and time the CuBlas */ using namespace std::chrono; //double refstart = MPI_Wtime(); high_resolution_clock::time_point ref_t1 = high_resolution_clock::now(); for(int i = 0; i < NUM_ITERS; i++) { stat = cublasDgemm(handle, CUBLAS_OP_N, CUBLAS_OP_N, M, N, K, &alpha, dA, M, dB, K, &beta, dC2, M); } check_launch("Reference GEMM"); //double refend = MPI_Wtime(); high_resolution_clock::time_point ref_t2 = high_resolution_clock::now(); duration<double> ref_time_span = duration_cast<duration<double>>(ref_t2 - ref_t1); if(stat != CUBLAS_STATUS_SUCCESS) { std::cerr << "CUBLAS gemm error at " << __FILE__ << ":" << __LINE__ << std::endl; } cudaMemcpy(C2, dC2, sizeof(double) * M * N, cudaMemcpyDeviceToHost); /* We are calling your GEMM function here */ /* We will make one dummy call and check_launch here */ int err; err = myGEMM(dA, dB, dummy, &alpha, &beta, M, N, K); check_launch("myGEMM dummy"); //double mystart = MPI_Wtime(); high_resolution_clock::time_point t1 = high_resolution_clock::now(); for(int i = 0; i < NUM_ITERS; i++) { err = myGEMM(dA, dB, dC1, &alpha, &beta, M, N, K); } check_launch("myGEMM"); //double myend = MPI_Wtime(); high_resolution_clock::time_point t2 = high_resolution_clock::now(); duration<double> my_time_span = duration_cast<duration<double>>(t2 - t1); /* This error code is for your own debugging, it does not catch illegal memory accesses or bad kernel launches */ if(err!=0) { std::cout << "Error in my GEMM. Error code: " << err << std::endl; } cudaMemcpy(C1, dC1, sizeof(double) * M * N, cudaMemcpyDeviceToHost); int fail = compareGEMMResults(C1, C2, M, N); if(fail == 0) { std::cout << "Time for reference GEMM implementation: " //<< refend - refstart << std::endl; << ref_time_span.count() << " seconds" << std::endl; std::cout << "Time for my GEMM implementation: " //<< myend - mystart << std::endl; << my_time_span.count() << " seconds" << std::endl; } free(A); free(B); free(C1); free(C2); cudaFree(dA); cudaFree(dB); cudaFree(dC1); cudaFree(dC2); cudaFree(dummy); } void BenchmarkGEMM() { std::cout << std::endl << "Entering GEMM Benchmarking mode! Stand by." << std::endl; /* First GEMM Problem Size */ int M = 800*SCALE, N = 1000*SCALE, K = 784*SCALE; std::cout << std::endl << "Starting GEMM 1: " << "M = " << M << "; N = " << N << "; K = " << K << std::endl; TestGEMM(M, N, K); std::cout << "Completed GEMM 1" << std::endl; /* Secong GEMM Problem Size */ M = 800*SCALE, N = 10*SCALE, K = 1000*SCALE; std::cout << std::endl << "Starting GEMM 2: " << "M = " << M << "; N = " << N << "; K = " << K << std::endl; TestGEMM(M, N, K); std::cout << "Completed GEMM 2" << std::endl; }
[ "czhang94@stanford.edu" ]
czhang94@stanford.edu
0c6957b3139096f6e55aecc4f1656394bfbacf56
a98dd2cd96c5f544b44d70124a50bc4098c590e4
/auto_car/src/param_manager/src/param_manager_node.cpp
930feb00197dabab59db6261071c56d2c004b640
[]
no_license
iamhyc/robo-miscs
f3dcd1b1d7e61ada39ce21a1457969eafc896fa8
fd7a022d32555afedf0cda0aa44f72a74220205a
refs/heads/master
2021-01-01T05:52:22.138009
2017-08-03T17:58:40
2017-08-03T17:58:40
97,292,578
2
0
null
null
null
null
UTF-8
C++
false
false
125
cpp
#include "param_manager.h" int main() { //autocar::param_mul::param_manager param; //param.read_params(); return 0; }
[ "sudofree@163.com" ]
sudofree@163.com
49a4afa6fb1cdf842a586031daa65c4102581362
155d0f67ca91e35bba2926fa2a088e3c6bb75464
/torch_ops/ball_query/torch_ballquery.cpp
7a00a663f60e5986d64f514d8618da21edd72a47
[]
no_license
harishkool/pointnet2andpointnet
8d2e11542bffc99995c33b1cdd08ee547fcbb417
e0da677f3483fef78d86afe7b4b241c07e3c7d45
refs/heads/master
2020-07-31T18:08:24.116212
2020-04-06T00:44:41
2020-04-06T00:44:41
210,705,004
0
0
null
null
null
null
UTF-8
C++
false
false
1,742
cpp
#include <torch/serialize/tensor.h> #include <vector> #include <THC/THC.h> #include <cuda.h> #include <cuda_runtime_api.h> #include <torch/extension.h> extern THCState *state; #define CHECK_CUDA(x) AT_CHECK(x.type().is_cuda(), #x, " must be a CUDAtensor ") #define CHECK_CONTIGUOUS(x) AT_CHECK(x.is_contiguous(), #x, " must be contiguous ") #define CHECK_INPUT(x) CHECK_CUDA(x);CHECK_CONTIGUOUS(x) #define CHECK_IS_FLOAT(x) \ do { \ AT_CHECK(x.scalar_type() == at::ScalarType::Float, \ #x " must be a float tensor"); \ } while (0) void ball_query_cuda_forward(int b, int n, int m, float radius, int nsample, const float *new_xyz, const float *xyz, int *idx); at::Tensor ball_query_forward(at::Tensor new_xyz, at::Tensor xyz, const float radius, const int nsample) { CHECK_CONTIGUOUS(new_xyz); CHECK_CONTIGUOUS(xyz); CHECK_IS_FLOAT(new_xyz); CHECK_IS_FLOAT(xyz); if (new_xyz.type().is_cuda()) { CHECK_CUDA(xyz); } at::Tensor idx = torch::zeros({new_xyz.size(0), new_xyz.size(1), nsample}, at::device(new_xyz.device()).dtype(at::ScalarType::Int)); if (new_xyz.type().is_cuda()) { ball_query_cuda_forward(xyz.size(0), xyz.size(1), new_xyz.size(1), radius, nsample, new_xyz.data<float>(), xyz.data<float>(), idx.data<int>()); } else { AT_CHECK(false, "CPU not supported"); } return idx; } PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) { m.def("ball_query_forward", &ball_query_forward, "ball query"); }
[ "nk4464@g.rit.edu" ]
nk4464@g.rit.edu
153fb8f24239dc8a61356618b563db874e0bdf12
64577e3ebc7cca6d1642d04adb765c8ebdb394bb
/Client/app/src/main/cpp/SecretShare.h
609cf219e9a1929009ce8a4d3f84efd6b2fe382f
[]
no_license
DongYan1121/VeriFL
e48df13d7bd665aaca0f904853f2f6628d46d796
67a91c6ef5b7a51de6b034cc49dff248b405240c
refs/heads/main
2023-03-14T18:35:19.795618
2021-03-16T15:56:36
2021-03-16T15:56:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
820
h
#ifndef _SECRETSHARE_H #define _SECRETSHARE_H #include "Config.h" #include <openssl/rand.h> #include <openssl/bn.h> #include <vector> #include <set> using namespace std; #include <assert.h> class SharedVal { public: int pid; BIGNUM *val; public: SharedVal() { val = BN_new(); } ~SharedVal() { BN_free(val); } SharedVal& operator=(const SharedVal &share) { this->pid = share.pid; BN_copy(this->val, share.val); return *this; } }; class SecretShare { public: BIGNUM *p; BN_CTX *ctx; public: SecretShare(); ~SecretShare(); // Share a secret value void Share(vector<SharedVal> &shares, int t, const vector<int> &pids, const BIGNUM *secret); // Reconstruct secret from shares void Combine(BIGNUM *secret, int t, const vector<SharedVal> &shares); }; void _test_SecretShare(); #endif
[ "xiaojieg.veda@gmail.com" ]
xiaojieg.veda@gmail.com
c12f7b654056d6c2d9863c751c648dc2c57c059a
ab7d5ec2e40b26c33da957210b5d2da77f9b696d
/repos/launcher/contents/PolycodeTemplate/winmain.cpp
ea0037b5c8e81094a059663931b5555154246a9c
[]
no_license
mcclure/bitbucket-backup
e49d280363ff7ef687f03473e463865a7ad8a817
b6a02ca8decf843fa0a765c842c24e7eccf59307
refs/heads/archive
2023-01-24T21:15:14.875131
2020-02-02T20:56:23
2020-02-02T20:56:23
237,833,969
115
6
null
2023-01-07T14:24:14
2020-02-02T20:43:56
C
UTF-8
C++
false
false
571
cpp
#include "windows.h" #include <Polycode.h> #include "PolycodeTemplateApp.h" #include "PolycodeView.h" using namespace Polycode; #define NAME L"Nothings" int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { PolycodeView *view = new PolycodeView(hInstance, nCmdShow, NAME, false, WIN_CONSOLE); PolycodeTemplateApp *app = new PolycodeTemplateApp(view); MSG Msg; do { if(PeekMessage(&Msg, NULL, 0,0,PM_REMOVE)) { TranslateMessage(&Msg); DispatchMessage(&Msg); } } while(app->Update()); return Msg.wParam; }
[ "andi.m.mcclure@gmail.com" ]
andi.m.mcclure@gmail.com
14d4477589cfde972e5dde92fbbe34719e772a23
b06126d225c3fd72aacd5635e11df9047f71dc0b
/Engine/Source/FileIO/PictureLoader.h
16b2cd7ae405ae5b8bc17e89698cb20262eecc21
[ "MIT" ]
permissive
MarvinChung/Photon-v2
80deaa52c723f0a34bb1d84e829b251012b2626c
a42761797f5364525e5686cd7fe2eff6f5b04ddf
refs/heads/master
2020-04-03T20:43:08.028086
2019-01-25T20:31:11
2019-01-25T20:31:11
155,555,269
1
0
MIT
2018-10-31T12:39:52
2018-10-31T12:39:51
null
UTF-8
C++
false
false
518
h
#pragma once #include "Common/primitive_type.h" #include "FileIO/FileSystem/Path.h" #include "Common/Logger.h" #include "Frame/TFrame.h" #include <memory> namespace ph { class PictureLoader final { public: static LdrRgbFrame loadLdr(const Path& picturePath); static HdrRgbFrame loadHdr(const Path& picturePath); private: static LdrRgbFrame loadLdrViaStb(const std::string& fullFilename); static HdrRgbFrame loadHdrViaStb(const std::string& fullFilename); static const Logger logger; }; }// end namespace ph
[ "b01502051@ntu.edu.tw" ]
b01502051@ntu.edu.tw
0b8467f862ab8e1d8eb2a5fdf1e7fc26a12e6eac
84665522154ff18690cfc40eb74ab5588a07e595
/Chap03/VisualKB/VisualKB.cpp
41df928fc70b21c1e788d5b0e11871de6c8ddc91
[]
no_license
WenShuAn9/programming-windows-with-MFC
1bb1d957fcef91d8baea18c93bcfe74872afeec3
df815164348e7fc45fa845416f5b33e2e1cf28e7
refs/heads/master
2023-03-16T08:29:35.412086
2018-07-14T12:23:59
2018-07-14T12:23:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,346
cpp
#include <afxwin.h> #include "VisualKB.h" CMyApp myApp; ///////////////////////////////////////////////////////////////////////// // CMyApp member functions BOOL CMyApp::InitInstance() { m_pMainWnd = new CMainWindow; m_pMainWnd->ShowWindow(m_nCmdShow); m_pMainWnd->UpdateWindow(); return TRUE; } ///////////////////////////////////////////////////////////////////////// // CMainWindow message map and member functions BEGIN_MESSAGE_MAP(CMainWindow, CWnd) ON_WM_CREATE() ON_WM_PAINT() ON_WM_SETFOCUS() ON_WM_KILLFOCUS() ON_WM_SETCURSOR() ON_WM_LBUTTONDOWN() ON_WM_KEYDOWN() ON_WM_KEYUP() ON_WM_SYSKEYDOWN() ON_WM_SYSKEYUP() ON_WM_CHAR() ON_WM_SYSCHAR() END_MESSAGE_MAP() CMainWindow::CMainWindow() { m_nTextPos = 0; m_nMsgPos = 0; // Load the arrow cursor and the I-beam cursor and save their handles. m_hCursorArrow = AfxGetApp()->LoadStandardCursor(IDC_ARROW); m_hCursorIBeam = AfxGetApp()->LoadStandardCursor(IDC_IBEAM); // Register a WNDCLASS. CString strWndClass = AfxRegisterWndClass(0, NULL, (HBRUSH)(COLOR_3DFACE + 1), AfxGetApp()->LoadStandardIcon(IDI_WINLOGO)); // Create a window. CreateEx(0, strWndClass, _T("Visual Keyboard"), WS_OVERLAPPED | WS_SYSMENU | WS_CAPTION | WS_MINIMIZEBOX, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL); } int CMainWindow::OnCreate(LPCREATESTRUCT lpCreateStruct) { if (CWnd::OnCreate(lpCreateStruct) == -1) return -1; // Initialize member variables whose values are dependent upon screen metrics. CClientDC dc(this); TEXTMETRIC tm; dc.GetTextMetrics(&tm); m_cxChar = tm.tmAveCharWidth; m_cyChar = tm.tmHeight; m_cyLine = tm.tmHeight + tm.tmExternalLeading; m_rcTextBoxBorder.SetRect(16, 16, (m_cxChar * 64) + 16, ((m_cyChar * 3) / 2) + 16); m_rcTextBox = m_rcTextBoxBorder; m_rcTextBox.InflateRect(-2, -2); m_rcMsgBoxBorder.SetRect(16, (m_cyChar * 4) + 16, (m_cxChar * 64) + 16, (m_cyLine * MAX_STRINGS) + (m_cyChar * 6) + 16); m_rcScroll.SetRect(m_cxChar + 16, (m_cyChar * 6) + 16, (m_cxChar * 63) + 16, (m_cyLine * MAX_STRINGS) + (m_cyChar * 5) + 16); m_ptTextOrigin.x = m_cxChar + 16; m_ptTextOrigin.y = (m_cyChar / 4) + 16; m_ptCaretPos = m_ptTextOrigin; m_nTextLimit = (m_cxChar * 63) + 16; m_ptHeaderOrigin.x = m_cxChar + 16; m_ptHeaderOrigin.y = (m_cyChar * 3) + 16; m_ptUpperMsgOrigin.x = m_cxChar + 16; m_ptUpperMsgOrigin.y = (m_cyChar * 5) + 16; m_ptLowerMsgOrigin.x = m_cxChar + 16; m_ptLowerMsgOrigin.y = (m_cyChar * 5) + (m_cyLine * (MAX_STRINGS - 1)) + 16; m_nTabStops[0] = (m_cxChar * 24) + 16; m_nTabStops[1] = (m_cxChar * 30) + 16; m_nTabStops[2] = (m_cxChar * 36) + 16; m_nTabStops[3] = (m_cxChar * 42) + 16; m_nTabStops[4] = (m_cxChar * 46) + 16; m_nTabStops[5] = (m_cxChar * 50) + 16; m_nTabStops[6] = (m_cxChar * 54) + 16; // // Size the window. // CRect rect(0, 0, m_rcMsgBoxBorder.right + 16, m_rcMsgBoxBorder.bottom + 16); CalcWindowRect(&rect); SetWindowPos(NULL, 0, 0, rect.Width(), rect.Height(), SWP_NOZORDER | SWP_NOMOVE | SWP_NOREDRAW); return 0; } void CMainWindow::PostNcDestroy() { delete this; } void CMainWindow::OnPaint() { CPaintDC dc(this); // Draw the rectangles surrounding the text box and the message list. dc.DrawEdge(m_rcTextBoxBorder, EDGE_SUNKEN, BF_RECT); dc.DrawEdge(m_rcMsgBoxBorder, EDGE_SUNKEN, BF_RECT); // Draw all the text that appears in the window. DrawInputText(&dc); DrawMessageHeader(&dc); DrawMessages(&dc); } void CMainWindow::OnSetFocus(CWnd* pWnd) { // Show the caret when the VisualKB window receives the input focus. CreateSolidCaret(max(2, ::GetSystemMetrics(SM_CXBORDER)), m_cyChar); SetCaretPos(m_ptCaretPos); ShowCaret(); } void CMainWindow::OnKillFocus(CWnd* pWnd) { // Hide the caret when the VisualKB window loses the input focus. HideCaret(); m_ptCaretPos = GetCaretPos(); ::DestroyCaret(); } BOOL CMainWindow::OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message) { // Change the cursor to an I-beam if it's currently over the text box, // or to an arrow if it's positioned anywhere else. if (nHitTest == HTCLIENT) { DWORD dwPos = ::GetMessagePos(); CPoint point(LOWORD(dwPos), HIWORD(dwPos)); ScreenToClient(&point); ::SetCursor(m_rcTextBox.PtInRect(point) ? m_hCursorIBeam : m_hCursorArrow); return TRUE; } return CWnd::OnSetCursor(pWnd, nHitTest, message); } void CMainWindow::OnLButtonDown(UINT nFlags, CPoint point) { // Move the caret if the text box is clicked with the left mouse button. if (m_rcTextBox.PtInRect(point)) { m_nTextPos = GetNearestPos(point); PositionCaret(); } } void CMainWindow::OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags) { ShowMessage(_T("WM_KEYDOWN"), nChar, nRepCnt, nFlags); // Move the caret when the left, right, Home, or End key is pressed. switch (nChar) { case VK_LEFT: if (m_nTextPos != 0) { m_nTextPos--; PositionCaret(); } break; case VK_RIGHT: if (m_nTextPos != m_strInputText.GetLength()) { m_nTextPos++; PositionCaret(); } break; case VK_HOME: m_nTextPos = 0; PositionCaret(); break; case VK_END: m_nTextPos = m_strInputText.GetLength(); PositionCaret(); break; } } void CMainWindow::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags) { ShowMessage(_T("WM_CHAR"), nChar, nRepCnt, nFlags); CClientDC dc(this); // Determine which character was just input from the keyboard. switch (nChar) { case VK_ESCAPE: case VK_RETURN: m_strInputText.Empty(); m_nTextPos = 0; break; case VK_BACK: if (m_nTextPos != 0) { m_strInputText = m_strInputText.Left(m_nTextPos - 1) + m_strInputText.Right(m_strInputText.GetLength() - m_nTextPos); m_nTextPos--; } break; default: if ((nChar >= 0) && (nChar <= 31)) return; if (m_nTextPos == m_strInputText.GetLength()) { m_strInputText += (TCHAR)nChar; m_nTextPos++; } else m_strInputText.SetAt(m_nTextPos++, nChar); CSize size = dc.GetTextExtent(m_strInputText, m_strInputText.GetLength()); if ((m_ptTextOrigin.x + size.cx) > m_nTextLimit) { m_strInputText = (TCHAR)nChar; m_nTextPos = 1; } break; } // // Update the contents of the text box. // HideCaret(); DrawInputText(&dc); PositionCaret(&dc); ShowCaret(); } void CMainWindow::OnKeyUp(UINT nChar, UINT nRepCnt, UINT nFlags) { ShowMessage(_T("WM_KEYUP"), nChar, nRepCnt, nFlags); CWnd::OnKeyUp(nChar, nRepCnt, nFlags); } void CMainWindow::OnSysKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags) { ShowMessage(_T("WM_SYSKEYDOWN"), nChar, nRepCnt, nFlags); CWnd::OnSysKeyDown(nChar, nRepCnt, nFlags); } void CMainWindow::OnSysChar(UINT nChar, UINT nRepCnt, UINT nFlags) { ShowMessage(_T("WM_SYSCHAR"), nChar, nRepCnt, nFlags); CWnd::OnSysChar(nChar, nRepCnt, nFlags); } void CMainWindow::OnSysKeyUp(UINT nChar, UINT nRepCnt, UINT nFlags) { ShowMessage(_T("WM_SYSKEYUP"), nChar, nRepCnt, nFlags); CWnd::OnSysKeyUp(nChar, nRepCnt, nFlags); } void CMainWindow::PositionCaret(CDC* pDC) { BOOL bRelease = FALSE; // // Create a device context if pDC is NULL. // if (pDC == NULL) { pDC = GetDC(); bRelease = TRUE; } // // Position the caret just right of the character whose 0-based // index is stored in m_nTextPos. // CPoint point = m_ptTextOrigin; CString string = m_strInputText.Left(m_nTextPos); point.x += (pDC->GetTextExtent(string, string.GetLength())).cx; SetCaretPos(point); // // Release the device context if it was created inside this function. // if (bRelease) ReleaseDC(pDC); } int CMainWindow::GetNearestPos(CPoint point) { // // Return 0 if (point.x, point.y) lies to the left of the text in // the text box. // if (point.x <= m_ptTextOrigin.x) return 0; // // Return the string length if (point.x, point.y) lies to the right // of the text in the text box. // CClientDC dc(this); int nLen = m_strInputText.GetLength(); if (point.x >= (m_ptTextOrigin.x + (dc.GetTextExtent(m_strInputText, nLen)).cx)) return nLen; // // Knowing that (point.x, point.y) lies somewhere within the text // in the text box, convert the coordinates into a character index. // int i = 0; int nPrevChar = m_ptTextOrigin.x; int nNextChar = nPrevChar; while (nNextChar < point.x) { i++; nPrevChar = nNextChar; nNextChar = m_ptTextOrigin.x + (dc.GetTextExtent(m_strInputText, i)).cx; } return ((point.x - nPrevChar) < (nNextChar - point.x)) ? i - 1 : i; } void CMainWindow::DrawInputText(CDC* pDC) { pDC->ExtTextOut(m_ptTextOrigin.x, m_ptTextOrigin.y, ETO_OPAQUE, m_rcTextBox, m_strInputText, NULL); } void CMainWindow::ShowMessage(LPCTSTR pszMessage, UINT nChar, UINT nRepCnt, UINT nFlags) { // // Formulate a message string. // CString string; string.Format(_T("%s\t %u\t %u\t %u\t %u\t %u\t %u\t %u"), pszMessage, nChar, nRepCnt, nFlags & 0xFF, (nFlags >> 8) & 0x01, (nFlags >> 13) & 0x01, (nFlags >> 14) & 0x01, (nFlags >> 15) & 0x01); // // Scroll the other message strings up and validate the scroll // rectangle to prevent OnPaint from being called. // ScrollWindow(0, -m_cyLine, &m_rcScroll); ValidateRect(m_rcScroll); // // Record the new message string and display it in the window. // CClientDC dc(this); dc.SetBkColor((COLORREF) ::GetSysColor(COLOR_3DFACE)); m_strMessages[m_nMsgPos] = string; dc.TabbedTextOut(m_ptLowerMsgOrigin.x, m_ptLowerMsgOrigin.y, m_strMessages[m_nMsgPos], m_strMessages[m_nMsgPos].GetLength(), sizeof(m_nTabStops), m_nTabStops, m_ptLowerMsgOrigin.x); // // Update the array index that specifies where the next message // string will be stored. // if (++m_nMsgPos == MAX_STRINGS) m_nMsgPos = 0; } void CMainWindow::DrawMessageHeader(CDC* pDC) { static CString string =_T("Message\tChar\tRep\tScan\tExt\tCon\tPrv\tTran"); pDC->SetBkColor((COLORREF) ::GetSysColor(COLOR_3DFACE)); pDC->TabbedTextOut(m_ptHeaderOrigin.x, m_ptHeaderOrigin.y, string, string.GetLength(), sizeof(m_nTabStops), m_nTabStops, m_ptHeaderOrigin.x); } void CMainWindow::DrawMessages(CDC* pDC) { int nPos = m_nMsgPos; pDC->SetBkColor((COLORREF) ::GetSysColor(COLOR_3DFACE)); for (int i = 0; i < MAX_STRINGS; i++) { pDC->TabbedTextOut(m_ptUpperMsgOrigin.x, m_ptUpperMsgOrigin.y + (m_cyLine * i), m_strMessages[nPos], m_strMessages[nPos].GetLength(), sizeof(m_nTabStops), m_nTabStops, m_ptUpperMsgOrigin.x); if (++nPos == MAX_STRINGS) nPos = 0; } }
[ "shuyan2@126.com" ]
shuyan2@126.com
ce50ae8c7ba24a13fd00c40421b27cd97aca1a80
c71af56951d1c661a5819db72da1caccd9130df2
/cpp/problems/threading/parallel-repl/main.cpp
18fb9d220eaa4ba89062335a1df3fd73fd880fc9
[]
no_license
adrianpoplesanu/personal-work
2940a0dc4e4e27e0cc467875bae3fdea27dd0d31
adc289ecb72c1c6f98582f3ea9ad4bf2e8e08d29
refs/heads/master
2023-08-23T06:56:49.363519
2023-08-21T17:20:51
2023-08-21T17:20:51
109,451,981
0
1
null
2022-10-07T04:53:24
2017-11-03T23:36:21
Python
UTF-8
C++
false
false
3,039
cpp
#include <iostream> #include <thread> #include <vector> // trebuie facute clase de workeri cu status si alte chestii in ele, si facut spool-ing de threaduri si verificat totul cu valgrind void worker(int id, std::vector<std::string> *commands) { /*for (int i = 0; i < 100; i++) { std::cout << "id: " << id << " step: " << i << "\n"; }*/ while((*commands)[id] != "kill") { //... do nothing if (id == 5) { //... actually works } } //std::cout << "shutting down worker " << id << "\n"; // https://stackoverflow.com/questions/15033827/multiple-threads-writing-to-stdcout-or-stdcerr std::cout << "\rkilled\n>> "; (*commands)[id] = "killed"; } void reader(int id, std::vector<std::string> *commands) { while(1) { /*for (int i = 0; i < 3; i++) { if ((*commands)[i] == "killed") { (*commands)[i] = "terminated"; std::cout << "worker " << i << " shutdown\n"; } }*/ std::string command; std::cout << ">> "; std::getline(std::cin, command); if (command == "exit()") { (*commands)[3] = "exit"; break; } else { //if (command != "") std::cout << command << "\n"; } if (command == "kill 0") { (*commands)[0] = "kill"; } if (command == "kill 1") { (*commands)[1] = "kill"; } if (command == "kill 2") { (*commands)[2] = "kill"; } if (command == "start 1") { (*commands)[0] = "start 1"; } } (*commands)[0] = "kill"; (*commands)[1] = "kill"; (*commands)[2] = "kill"; } void batchd(int id, std::vector<std::string> *commands, std::thread *threads[10]) { while((*commands)[3] != "exit") { if ((*commands)[0] == "start 1") { //... std::thread th5(worker, 5, commands); threads[5] = &th5; th5.join(); } } // exit command was issued, deal with it now for (int i = 0; i < 6; i++) { // kill all the threads either via a threads[i].stop() like command or with (*commands)[i] = "kill" or "stop" } } int main(int argc, char *argv[]) { std::cout << "running some parrallel tests...\n"; std::vector<std::string> *commands = new std::vector<std::string>(); commands->push_back(""); commands->push_back(""); commands->push_back(""); commands->push_back(""); commands->push_back(""); std::thread *threads[10]; std::thread th0(worker, 0, commands); threads[0] = &th0; std::thread th1(worker, 1, commands); threads[1] = &th1; std::thread th2(worker, 2, commands); threads[2] = &th2; std::thread th3(reader, 3, commands); threads[3] = &th3; std::thread th4(batchd, 4, commands, threads); threads[4] = &th4; th0.join(); th1.join(); th2.join(); th3.join(); th4.join(); //std::cout << ".....\n"; return 0; }
[ "adrian.poplesanu@yahoo.com" ]
adrian.poplesanu@yahoo.com
33becf9f98c97b9ff465b4874e397121ae99bca1
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/httpd/gumtree/httpd_old_hunk_2052.cpp
6bf665de830de875e78d1c954516979a8d8679c4
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
858
cpp
/** * Create an AJP Message from pool * * @param pool memory pool to allocate AJP message from * @param rmsg Pointer to newly created AJP message * @return APR_SUCCESS or error */ apr_status_t ajp_msg_create(apr_pool_t *pool, ajp_msg_t **rmsg) { ajp_msg_t *msg = (ajp_msg_t *)apr_pcalloc(pool, sizeof(ajp_msg_t)); if (!msg) { ap_log_error(APLOG_MARK, APLOG_ERR, 0, NULL, "ajp_msg_create(): can't allocate AJP message memory"); return APR_ENOPOOL; } msg->server_side = 0; msg->buf = (apr_byte_t *)apr_palloc(pool, AJP_MSG_BUFFER_SZ); /* XXX: This should never happen * In case if the OS cannont allocate 8K of data * we are in serious trouble * No need to check the alloc return value, cause the * core dump is probably the best solution anyhow.
[ "993273596@qq.com" ]
993273596@qq.com
76f6fe973a8a2c23c7dd85bd69edcac796af5807
07e7958bb57d6caa25225c6bc6db2194daea671c
/spree-master/project2/XLauncher_Unicode/FlashCtrl/global.h
d3b34747542298dad6c36ff12da2f6a7fae047fb
[]
no_license
pedromela/9d
34eb86d1acc863586c8e7338fc5f5c6ccaaacaa9
c65024fba16eca04b4eec897d312eb295ce60cfa
refs/heads/master
2021-07-21T07:34:18.570081
2017-10-30T17:58:45
2017-10-30T17:58:45
108,886,922
0
1
null
null
null
null
WINDOWS-1252
C++
false
false
4,986
h
/**************************************************************************** CONFIDENTIAL AND PROPRIETARY INFORMATION. The entire contents of this file is Copyright © Macromedia, Inc. 1993-1998, All Rights Reserved. This document is an unpublished trade secret of Macromedia, Inc. and may not be viewed, copied or distributed by anyone, without the specific, written permission of Macromedia, Inc. ****************************************************************************/ /**************************************************************************** Porting Version of Flash 4 SDK Middlesoft, Inc. October 1999 Release 10/22/1999 Lee Thomason, lee@middlesoft.com ****************************************************************************/ #ifndef GLOBAL_INCLUDED #define GLOBAL_INCLUDED #define NATIVE_DISPLAY "./win32/display.h" #define NATIVE_PALETTE "./win32/palette.h" #define NATIVE_UTIL "./win32/util.h" #define NATIVE_PLAYERWND "./win32/FSControl.h" #define NATIVE_FIXED "./win32/fixed.h" #define NATIVE_SOUND "./win32/sound.h" #define NATIVE_DEBUG "./win32/debug.h" #define NATIVE_VERSION "./win32/version.h" // The following are the #defines past in by the compiler for a full build: // _DEBUG // WIN32,_WINDOWS (or whatever is appropriate) // USE_JPEG // FRAMESPERSEC // SOUND // EDITTEXT // FLASHMP3 #if defined(_DEBUG) && !defined(DEBUG) #define DEBUG #endif /*! Expects wide characters from the cut and paste strings - otherwise * uses ascii. */ #define EDITTEXT_CLIPBOARD_WIDE /*! Replaces fixed point math routines with floating point. */ // #define FIXEDUSEFLOAT /*! If ONE_SOUND_OBJECT this is defined, there will be only one NativeSoundMix * used by all the SPlayers. For a version with only one SPlayer, this is moot. * If not defined, every SPlayer will have its own NativeSoundMix. */ #define ONE_SOUND_OBJECT // // Global Types // #include NATIVE_DEBUG typedef unsigned long U32, *P_U32, **PP_U32; typedef signed long S32, *P_S32, **PP_S32; typedef unsigned short U16, *P_U16, **PP_U16; typedef signed short S16, *P_S16, **PP_S16; typedef unsigned char U8, *P_U8, **PP_U8; typedef signed char S8, *P_S8, **PP_S8; typedef int BOOL; #ifdef DEBUG #define Dbg( x ) x #else #define Dbg( x ) /* */ #endif #define Abs(v) ((v)<0?(-(v)):(v)) #define Max(a,b) ((a)>(b)?(a):(b)) #define Min(a,b) ((a)<(b)?(a):(b)) #define LowU16(dw) ((U16)(U32)(dw)) #define HighU16(dw) ((U16)((U32)(dw)>>16)) #define LowU8(w) ((U8)(w)) #define HighU8(w) ((U8)((U16)(w)>>8)) #define MakeU16(lb,hb) (((U16)(hb)<<8)|(U16)(lb)) #define MakeU32(lw,hw) (((U32)(hw)<<16)|(U32)(lw)) // Limits #define maxU8 ((U8)0xFF) #define minS8 ((S8)0x80) #define maxS8 ((S8)0x7F) #define maxU16 ((U16)0xFFFF) #define minS16 ((S16)0x8000) #define maxS16 ((S16)0x7FFF) #define maxU32 ((U32)0xFFFFFFFF) #define minS32 ((S32)0x80000000) #define maxS32 ((S32)0x7FFFFFFF) // // Global Utilities // #define Swap(a, b, type) { type swapTmp; swapTmp = a; a = b; b = swapTmp; } #define PinToRange(min, value, max) \ ((min) > (value) ? (min) : ((max) < (value) ? (max) : (value))) #define Sign(a) ((a) == 0 ? 0 : ((a) < 0 ? -1 : 1)) #define FlipU32(a) { U8 *pa = (U8 *)&(a); Swap(pa[0], pa[3], U8); Swap(pa[1], pa[2], U8); } #define FlipU16(a) { U8 *pa = (U8 *)&(a); Swap(pa[0], pa[1], U8); } // // A Fast Memory Allocator for uniform sized objects // struct ChunkBlock; class ChunkAlloc { private: int itemSize; int blockN; // the number of items to allocate in a block long tag; U16 blockId; // the priority of the next block created BOOL noGarbageCollection; ChunkBlock* firstBlock; // The list of chunk blocks ChunkBlock* lastBlock; ChunkBlock* firstFree; // The lowest priority block that has free items #ifdef DEBUG int maxUsed; int nBlocks; int nAlloc; #endif private: ChunkBlock* CreateChunk(); void FreeChunk(ChunkBlock* b); public: ChunkAlloc(int size, int n = 64, BOOL suppressGC = false, long tg = 0); ~ChunkAlloc(); void FreeEmpties(); // deallocate any empty chunks void* Alloc(); void Free(void*); }; inline void Spin() {} // With the Unix port of the Flash Generator the Flash codebase must // now port to a number of different platforms using number of different // compilers. The defines below try the determine whether the platform // uses big-endian integer values (Mac 68K, Mac PPC, and most RISC // systems) or whether it uses little-endian ingeteger values (Intel // x86 systems). Add additional defines for different compilers as // needed. #if defined(_MAC) || defined(_M_MPPC) || defined(__sparc) || defined(sparc) || defined(_AIX) #undef BIG_ENDIAN #undef LITTLE_ENDIAN #define BIG_ENDIAN #elif defined(_M_IX86) || defined(__i386) || defined(i386) || defined(__linux) #undef BIG_ENDIAN #undef LITTLE_ENDIAN #define LITTLE_ENDIAN #elif // Throw an error if our "endian-ness" not defined! @error@ #endif #endif // SGLOBAL_INCLUDED
[ "pedro.miguel.69@hotmail.com" ]
pedro.miguel.69@hotmail.com
4fff61e65b853b9bb81087857064cd7a9658f22b
a35b30a7c345a988e15d376a4ff5c389a6e8b23a
/boost/function_types/detail/pp_tags/preprocessed.hpp
131a270355172d43043357716d95fa86d092e5c7
[]
no_license
huahang/thirdparty
55d4cc1c8a34eff1805ba90fcbe6b99eb59a7f0b
07a5d64111a55dda631b7e8d34878ca5e5de05ab
refs/heads/master
2021-01-15T14:29:26.968553
2014-02-06T07:35:22
2014-02-06T07:35:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
88
hpp
#include "thirdparty/boost_1_55_0/boost/function_types/detail/pp_tags/preprocessed.hpp"
[ "liuhuahang@xiaomi.com" ]
liuhuahang@xiaomi.com
2e02ec70d46434552579e8bb33a87b5426957314
505b4525174f8d3ea73b4d3b2c7c011cd63d1216
/Algorithms/LeetCode_PascalsTriangle.cpp
06381c37ffdb39fb157ed81fc29245688aab0c0a
[]
no_license
JangHyeonJun/AlgorithmStudy
4c0532972e614f8498d941336e3e3ed6864bff27
5e5508d084d48b8074af39d98a1f4073c0ea0876
refs/heads/master
2023-08-28T21:24:31.715861
2023-08-06T11:17:27
2023-08-06T11:17:27
154,111,534
0
0
null
null
null
null
UTF-8
C++
false
false
688
cpp
//#include <vector> // //using namespace std; // //class Solution { //public: // vector<vector<int>> generate(int numRows) { // vector<vector<int>> rows; // // for (int i = 0; i < numRows; i++) // { // vector<int> cols(i + 1); // for (int j = 0; j <= i; j++) // { // if (i <= 0 || j <= 0 || j >= i) // cols[j] = 1; // else // cols[j] = rows[i - 1][j - 1] + rows[i - 1][j]; // } // rows.push_back(cols); // } // // return rows; // } //}; // //int main() //{ // Solution s; // auto a = s.generate(5); // return 0; //}
[ "totok682@naver.com" ]
totok682@naver.com
e5066a01a0c538d19976aee0f90cde8b6ff9135e
cb70845fa85431481d2e6bece9b8e4d586283933
/lang_io/repl.cc
ee7bece4912db2976b99d5e2fef2c7a6bf5e350a
[]
no_license
moshelooks/plap
f1aa8ca64907ce2d238020ea1610a629dc4bb4d0
89d52a0e22e628d4456d1a1a0f90fca759e4cada
refs/heads/master
2021-01-20T11:56:39.321181
2008-11-10T06:48:33
2008-11-10T06:48:33
32,747,399
0
0
null
null
null
null
UTF-8
C++
false
false
2,626
cc
// Copyright 2008 Google Inc. 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. // // Author: madscience@google.com (Moshe Looks) #include "repl.h" #include <stdexcept> #include <iostream> #include <sstream> #include <fstream> #include "parse.h" #include "analyze.h" #include "context.h" #include "pretty_print.h" #include "builtin.h" #include "tree_io.h" #include "io.h" namespace plap { namespace lang_io { void repl(std::istream& in,std::ostream& out,const std::string& prompt) { using std::endl; using boost::ref; using namespace plap::lang; context c; std::ifstream lib("combo/lib.co"); try { load_lib(lib,c); } catch (std::runtime_error e) { std::cerr << "\033[22;31mError loading combo/lib.co (standard library): " << e.what() << "\033[00;m" << endl; } lib.close(); std::ostream* tmp=lang_print::print_to; lang_print::print_to=&out; out << util::sexpr_format << "ctrl+D exits" << endl; while (true) { try { util::io_loop<sexpr>(in,out,boost::bind(&parse,_1,_2,true), boost::bind(&eval_print,_1,_2,ref(c)),ref(prompt)); break; } catch (std::runtime_error e) { std::cerr << "\033[22;31m" << e.what() << "\033[00;m" << endl; } } lang_print::print_to=tmp; } void eval_print(std::ostream& out,const_subsexpr s,lang::context& c) { using namespace lang; //out << "goes to sexpr '" << s << "'" << std::endl; vtree expr=vtree(vertex()); analyze(s,expr,c); //out << "analyzed" << std::endl; //pretty_print(out,expr); vtree res=vtree(vertex()); //out << "OK" << std::endl; c.eval(expr,res); //out << "evals to" << std::endl; pretty_print(out,res); } void eval_quiet(const_subsexpr s,lang::context& c) { using namespace lang; vtree expr=vtree(vertex()),res=vtree(vertex()); analyze(s,expr,c); c.eval(expr,res); } void load_lib(std::istream& in,lang::context& c) { std::stringstream tmp; util::io_loop<sexpr>(in,tmp,boost::bind(&parse,_1,_2,false), boost::bind(&eval_quiet,_2,boost::ref(c)),""); } }} //namespace plap::lang_io
[ "holism@f2663909-e444-0410-a591-ab7253412597" ]
holism@f2663909-e444-0410-a591-ab7253412597
9fcadb2cf4264e4acc5f81bbb47ec65c053c05b4
c279559076fc55f306a32a5f50230c8f1fe12593
/IMP/include/tfnode/op_node.hpp
691189e0a3de9f4681ee1572b7a829b1dc3cccc9
[]
no_license
ftxj/FUCBC
f10bc984d14a32d8d6eb46ccb5da853daf9e75ed
af9b4a2f19ff80ddbbe5c30b7da35d01093efada
refs/heads/master
2022-12-10T16:02:20.232921
2020-09-11T13:12:23
2020-09-11T13:12:23
290,922,152
0
0
null
null
null
null
UTF-8
C++
false
false
9,356
hpp
#pragma once #include<string> #include<vector> #include<map> #include<set> #include <functional> #include "error/assert.hpp" #include "tfnode/base_node.hpp" // class Abs; // class Add; // class ArgMin; // class Div; // class Exp; // class FloorDiv; // class Less; // class Mul; // class RealDiv; // class Sigmoid; // class Sqrt; // class Square; // class Sub; // class Sum; // class Conv2D; // class ExpandDims; // class MatMul; // class Reshape; // class Tensordot; int generate_counter(); class BasicOp { private: int op_code_; public: BasicOp(int op_code) : op_code_(op_code) {} static const std::map<std::string, int> op_code_map; }; template<typename T> class UnaryOp : public BasicOp { private: Tensor<T> *x_; public: UnaryOp(Tensor<T> *x, int op_code) : x_(x), BasicOp(op_code) {} }; template<typename T1, typename T2> class BinaryOp : public BasicOp { private: Tensor<T1> *x_; Tensor<T2> *y_; int op_code_; public: BinaryOp(Tensor<T1> *x, Tensor<T2> *y, int op_code) : BasicOp(op_code), x_(x), y_(y) {} }; template<typename T1, typename T2, typename T3> class TernaryOp : public BasicOp { private: Tensor<T1> *x_; Tensor<T2> *y_; Tensor<T3> *z_; public: TernaryOp(Tensor<T1> *x, Tensor<T2> *y, Tensor<T3> *z, int op_code) : BasicOp(op_code), x_(x), y_(y), z_(z) {} }; template<typename T1, typename T2> class ElementWiseOpNode : public BinaryOp<T1, T1>, public TensorNode<T2> { public: ElementWiseOpNode(TensorNode<T1> *x, TensorNode<T1> *y, int op_code, const std::string &name, const std::string &type) : BinaryOp<T1, T1>(x, y, op_code), TensorNode<T2>(name, element_wise_shape(x->get_shape(), y->get_shape()), type) { } }; template<typename T> class UnReduceUnaryOpNode : public UnaryOp<T>, public TensorNode<T> { public: UnReduceUnaryOpNode(TensorNode<T> *x, int op_code, const std::string &name, const std::string &type) : UnaryOp<T>(x, op_code), TensorNode<T>(name, x->get_shape(), type) { } }; template<typename T> class ReduceUnaryOpNode : public UnaryOp<T>, public TensorNode<T> { private: int axis_; public: ReduceUnaryOpNode(TensorNode<T> *x, int op_code, int axis, const std::string &name, const std::string &type) : UnaryOp<T>(x, op_code), TensorNode<T>(name, x->get_shape().shrink_on(axis), type), axis_(axis) { } }; template<typename T> class TransShapeUnaryOpNode : public UnaryOp<T>, public TensorNode<T> { public: TransShapeUnaryOpNode(TensorNode<T> *x, int op_code, Shape shape, const std::string &name, const std::string &type) : UnaryOp<T>(x, op_code), TensorNode<T>(name, shape, type) { } }; // class NNOpNode : public BasicOp { // }; template<typename T> class AbsNode : public UnReduceUnaryOpNode<T> { public: AbsNode(TensorNode<T> *x, const std::string &name = "Abs_"+std::to_string(generate_counter()), const std::string &type = "AbsNode") : UnReduceUnaryOpNode<T>(x, BasicOp::op_code_map.find("Abs")->second, name, type) { generate_counter(); } }; template<typename T> class ExpNode : public UnReduceUnaryOpNode<T> { public: ExpNode(TensorNode<T> *x, const std::string &name = "Exp_"+std::to_string(generate_counter()), const std::string &type = "ExpNode") : UnReduceUnaryOpNode<T>(x, BasicOp::op_code_map.find("Exp")->second, name, type) { generate_counter(); } }; template<typename T> class SigmoidNode : public UnReduceUnaryOpNode<T> { public: SigmoidNode(TensorNode<T> *x, const std::string &name = "Sigmod_"+std::to_string(generate_counter()), const std::string &type = "SigmoidNode") : UnReduceUnaryOpNode<T>(x, BasicOp::op_code_map.find("Sigmod")->second, name, type) { generate_counter(); } }; template<typename T> class SqrtNode : public UnReduceUnaryOpNode<T> { public: SqrtNode(TensorNode<T> *x, const std::string &name = "Sqrt_"+std::to_string(generate_counter()), const std::string &type = "SqrtNode") : UnReduceUnaryOpNode<T>(x, BasicOp::op_code_map.find(std::string("Sqrt"))->second, name, type) { generate_counter(); } }; template<typename T> class SquareNode : public UnReduceUnaryOpNode<T> { public: SquareNode(TensorNode<T> *x, const std::string &name = "Square_"+std::to_string(generate_counter()), const std::string &type = "SquareNode") : UnReduceUnaryOpNode<T>(x, BasicOp::op_code_map.find("Square")->second, name, type) { generate_counter(); } }; template<typename T> class ReShapeNode : public TransShapeUnaryOpNode<T> { public: ReShapeNode(TensorNode<T> *x, Shape shape, const std::string &name = "ReShape_"+std::to_string(generate_counter()), const std::string &type = "ReShapeNode") : TransShapeUnaryOpNode<T>(x, BasicOp::op_code_map.find("ReShape")->second, shape, name, type) { generate_counter(); } }; template<typename T> class TransposeNode : public TransShapeUnaryOpNode<T> { public: TransposeNode(TensorNode<T> *x, Shape shape, const std::string &name = "Transpose_"+std::to_string(generate_counter()), const std::string &type = "TransposeNode") : TransShapeUnaryOpNode<T>(x, BasicOp::op_code_map.find("Transpose")->second, shape, name, type) { generate_counter(); } }; template<typename T> class ArgMinNode : public ReduceUnaryOpNode<T> { public: ArgMinNode(TensorNode<T> *x, int axis, const std::string &name) : ReduceUnaryOpNode<T>(x, BasicOp::op_code_map.find("ArgMin")->second, axis, name,"ArgMinNode") {} }; template<typename T> class ExpandDimsNode : public TransShapeUnaryOpNode<T> { private: int axis_; public: ExpandDimsNode(TensorNode<T> *x, int axis, const std::string &name) : TransShapeUnaryOpNode<T>(x, BasicOp::op_code_map.find("ExpandDims")->second, x->get_shape().expand_on(axis), "ExpandDims"), axis_(axis) {} }; template<typename T> class AddNode : public ElementWiseOpNode<T, T> { public: AddNode(TensorNode<T> *x, TensorNode<T> *y, const std::string &name) : ElementWiseOpNode<T, T>(x, y, BasicOp::op_code_map.find("Add")->second, name, "AddNode") {} }; template<typename T> class SubNode : public ElementWiseOpNode<T, T> { public: SubNode(TensorNode<T> *x, TensorNode<T> *y, const std::string &name) : ElementWiseOpNode<T, T>(x, y, BasicOp::op_code_map.find("Sub")->second, name, "SubNode") {} }; template<typename T> class MulNode : public ElementWiseOpNode<T, T> { public: MulNode(TensorNode<T> *x, TensorNode<T> *y, const std::string &name) : ElementWiseOpNode<T, T>(x, y, BasicOp::op_code_map.find("Mul")->second, name, "MulNode") {} }; template<typename T> class DivNode : public ElementWiseOpNode<T, T> { public: DivNode(TensorNode<T> *x, TensorNode<T> *y, const std::string &name) : ElementWiseOpNode<T, T>(x, y, BasicOp::op_code_map.find("Div")->second, name, "DivNode") {} }; template<typename T> class FloorDivNode : public ElementWiseOpNode<T, T> { public: FloorDivNode(TensorNode<T> *x, TensorNode<T> *y, const std::string &name) : ElementWiseOpNode<T, T>(x, y, BasicOp::op_code_map.find("FloorDiv")->second, name, "FloorDivNode") {} }; template<typename T> class LessNode : public ElementWiseOpNode<T, bool> { public: LessNode(TensorNode<T> *x, TensorNode<T> *y, const std::string &name) : ElementWiseOpNode<T, bool>(x, y, BasicOp::op_code_map.find("Less")->second, name, "LessNode") {} }; template<typename T> class MatMulNode : public BinaryOp<T, T>, public TensorNode<T> { public: MatMulNode(TensorNode<T> *x, TensorNode<T> *y, const std::string &name, Shape shape) : BinaryOp<T, T>(x, y, BasicOp::op_code_map.find("MatMul")->second), TensorNode<T>(name, shape, "MatMulNode") {} }; template<typename T> class TensordotNode : public BinaryOp<T, T>, public TensorNode<T> { public: // TODO fix bug here TensordotNode(TensorNode<T> *x, TensorNode<T> *y, const std::string &name) : BinaryOp<T, T>(x, y, BasicOp::op_code_map.find("MatMul")->second), TensorNode<T>(name, Shape::get_matmul_shape(x->get_shape(), y->get_shape()), "TensordotNode") {} }; // class Conv2DNode : public NNOpNode { // }; // class Abs; // class Add; // class ArgMin; // class Div; // class Exp; // class FloorDiv; // class Less; // class Mul; // class RealDiv; // class Sigmoid; // class Sqrt; // class Square; // class Sub; // class Sum; // class Conv2D; // class ExpandDims; // class MatMul; // class Reshape; // class Tensordot; typedef AbsNode<int> IntAbsNode; typedef AddNode<int> IntAddNode; typedef ArgMinNode<int> IntArgMinNode; typedef DivNode<int> IntDivNode; typedef ExpNode<int> IntExpNode; typedef FloorDivNode<int> IntFloorDivNode; typedef LessNode<int> IntLessNode; typedef MulNode<int> IntMulNode; //typedef RealDivNode<int> IntRealDivNode; typedef SigmoidNode<int> IntSigmoidNode; typedef SqrtNode<int> IntSqrtNode; typedef SquareNode<int> IntSquareNode; typedef SubNode<int> IntSubNode; //typedef SumNode<int> IntSumNode; //typedef Conv2DNode<int> IntConv2DNode; typedef ExpandDimsNode<int> IntExpandDimsNode; typedef MatMulNode<int> IntMatMulNode; typedef ReShapeNode<int> IntReShapeNode; typedef TensordotNode<int> IntTensordotNode;
[ "cs.xinjie@gmail.com" ]
cs.xinjie@gmail.com
76c905d688918fec42e623b37b302d8c26c6ec3c
39440fdd720088526b0fce5610f4f2c430eb08c4
/wxWidget_codegen/wx_class_member/wxImageList.cpp
fad246a7cceb80085e215a4754cd126bcfc9cd31
[]
no_license
greshem/develop_wxwidgets
ab79d732efd18200e0593a0c2b02ebf9eb7ee648
f78a283959cc04d2893e96aa95bb79f4011e0f85
refs/heads/master
2021-01-10T10:56:39.516822
2015-10-28T00:08:10
2015-10-28T00:08:10
45,077,895
0
0
null
null
null
null
UTF-8
C++
false
false
565
cpp
#include <stdlib.h> #include <stdio.h> #include <string.h> #include <iostream> #include <string> #include <dirent.h> #include <fstream> #include <iterator> #include <vector> #include <algorithm> #include <iostream> #include <map> //#include <gtest/gtest.h> //2012_08_19 by greshem. #include <wx/wx.h> #include <wx/thread.h> #include <wx/confbase.h> #include <wx/encconv.h> #include <wx/datetime.h> //wxImageList::GetClassInfo() const //wxImageList::wxCreateObject() // using namespace std; int main(int argc, char *argv[]) { wxImageList a; return 0; }
[ "qianzhongjie@qq.com" ]
qianzhongjie@qq.com
8b8aafeaf427432a689878be0c585a90fcb9f873
e5645099723739972ac8965819a6eb15e3d6d6b0
/URI_Online_Judge/1977uri.cpp
8b3564a0576efeeea4c4a2231c196ed582deba8b
[]
no_license
arleyribeiro/Maratona
a3ab602bf025e4565a53af8c724f266fd7d0c989
f60ae7f07d74e33683ea1b48e72770e3707e1874
refs/heads/master
2016-08-12T03:43:59.984403
2016-04-23T18:09:42
2016-04-23T18:09:42
55,017,237
0
0
null
null
null
null
UTF-8
C++
false
false
2,987
cpp
#include <bits/stdc++.h> #define INF 0x3f3f3f3f #define TAM 20100 using namespace std; vector< pair<int,int> >g[TAM]; vector<int>heap; long long int d[TAM]={INF}; int vis[TAM]={0}; int n, m; bool comp(int u, int v){ return d[u] > d[v]; } void makeSet() { int i; for(i=1;i<=n*2;i++) { d[i]=INF; vis[i]=0; } } void djk(int u) { int x,i=0; for(i=0;i<=n;i++){ d[i]=INF; vis[i]=0; } heap.push_back(u); d[u]=0; make_heap(heap.begin(),heap.end(),comp); while(!heap.empty()) { x=heap[0]; pop_heap(heap.begin(), heap.end(), comp); heap.pop_back(); for(i=0; i < g[x].size();i++) { if(d[ g[x][i].first ] > g[x][i].second + d[x]) { d[ g[x][i].first ] = g[x][i].second + d[x]; heap.push_back( g[x][i].first ); //insere o vertice no heap novamente push_heap(heap.begin(), heap.end(), comp);//sobe o elemento inserido } } } } int main(){ int u,v,z,i,w,t; map<string, int>mp; string s, s1; while(scanf("%d %d %d", &t, &m, &n), m+t+n) { int hora=17, min=30; for(i=0;i<=n;i++){ g[i].clear(); } heap.clear(); int cont=1; for(i=0;i<m;i++) { cin>>s>>s1>>z; if(!mp.count(s)) mp[s]=cont++; if(!mp.count(s1)) mp[s1]=cont++; g[ mp[s] ].push_back (make_pair (mp[s1], z)); } djk(mp["varzea"]); int h=0, tp=0; if(t>30) min=50; if(d[mp["alto"]] != INF) tp=d[mp["alto"]]; int min2=0, t2=(min+tp),h2=0; min2=t2%60; h2=t2/60; hora+=h2; if(hora>=24) { hora=hora%24; h=1; } if(hora==17 && (min2>=0&&min2<=59) && !h) { if(min2<10) printf("%d:0%d\nNao ira se atrasar\n", hora,min2); else printf("%d:%d\nNao ira se atrasar\n", hora,min2); }else if(hora==18 && min2==0 && !h) { printf("%d:0%d\nNao ira se atrasar\n", hora,min2); }else { if(hora<10) printf("0%d:", hora); else printf("%d:", hora); if(min2<10) printf("0%d\nIra se atrasar\n", min2); else printf("%d\nIra se atrasar\n", min2); } mp.clear(); } return 0; }
[ "arley.sribeiro@gmail.com" ]
arley.sribeiro@gmail.com
c182c5a2da3dc44f388927b524db33a86f430449
7e25db5f6f37cdea5e94870522ef85d4040c563b
/Mon1/Mon1.cpp
95f13c7ad106be389e31a340939bc5173d1c2d6c
[]
no_license
andreyk2002/cpp_projects
5306785f2f6711d795541d7d2377db5a2fe8add0
79f0b23be9d393248b1ecc3b30839900ef56c5be
refs/heads/master
2020-08-06T07:29:04.878476
2019-12-23T07:07:49
2019-12-23T07:07:49
212,889,176
0
0
null
null
null
null
UTF-8
C++
false
false
3,848
cpp
//#define DEBUG #include <Windows.h> #include <iostream> #include"BrCash.h" #include<memory> using namespace std; int main() { SetConsoleCP(1251); SetConsoleOutputCP(1251); //BrCash* Money; //BrCash* Money2; int pounds1, pounds2, shillings1, shillings2; float pences1, pences2; cout << "Pounds(1)=" << endl; cin >> pounds1; cout << "Pounds(2)=" << endl; cin >> pounds2; cout << "Shillings(1)=" << endl; cin >> shillings1; cout << "Shillings(2)=" << endl; cin >> shillings2; cout << "Pences(1)=" << endl; cin >> pences1; cout << "Pences(2)=" << endl; cin >> pences2; try { cout << "Проверяем конструктор по умолчанию:" << endl; shared_ptr<BrCash>Money (new BrCash()); cout << *Money << endl; } catch (my_exception_constr & ex) { cout << ex.what() << endl; #ifdef DEBUG return 1; #endif // DEBUG } try { if (pounds1 < 0 || pounds2 < 0 || shillings1 < 0) throw my_exception_constr("First input can't be negtive!"); else if (shillings2 < 0 || pences1 < 0 || pences2 < 0) throw my_exception_constr("First input can't be negtive!"); } catch (my_exception_constr & ex) { cout << ex.what() << endl; return 1; } try { cout << "унарный минус(первого): "; shared_ptr<BrCash>Money(new BrCash(pounds1, shillings1, pences1)); // (*Money).GetPences(cout); cout << -(*Money) << endl; } catch (my_exception_constr & ex) { cout << ex.what() << endl; #ifdef DEBUG return 1; #endif // DEBUG } try { cout << "cумма: "; shared_ptr<BrCash>Money(new BrCash(pounds1, shillings1, pences1)); shared_ptr<BrCash>Money2(new BrCash(pounds2, shillings2, pences2)); cout << (*Money) + (*Money2) << endl; //cash2.GetPences(); } catch (my_exception_constr & ex) { cout << ex.what() << endl; #ifdef DEBUG return 1; #endif // DEBUG } catch (runtime_error & err) { cout << err.what() << endl; } try { cout << " разность:"; shared_ptr<BrCash>Money(new BrCash(pounds1, shillings1, pences1)); shared_ptr<BrCash>Money2(new BrCash(pounds2, shillings2, pences2)); //(*Money2).GetPounds(cout); //*Money= (*Money - *Money2) cout << *Money - *Money2 << endl; } catch (my_exception_constr & ex)//все ошибки выбрасываются в конструкторе { cout << ex.what() << endl; #ifdef DEBUG return 1; #endif // DEBUG } try { cout << "+=: "; int n; cout << "Введите число:"; cin >> n; shared_ptr<BrCash>Money(new BrCash(pounds1, shillings1, pences1)); ((*Money) += n) += n; cout << *Money; } catch (my_exception_constr & ex) { cout << ex.what() << endl; #ifdef DEBUG return 1; #endif // DEBUG } catch (runtime_error & err) { cout << err.what() << endl; } try { cout << "-=: "; int n; cout << "Введите число:"; cin >> n; shared_ptr<BrCash>Money(new BrCash(pounds1, shillings1, pences1)); ((*Money) -= n) -= n; cout << *Money << endl; } catch (my_exception_constr & ex) { cout << ex.what() << endl; #ifdef DEBUG return 1; #endif // DEBUG } catch (runtime_error & err) { cout << err.what() << endl; } try { cout << "== "; shared_ptr<BrCash>Money(new BrCash(pounds1, shillings1, pences1)); shared_ptr<BrCash>Money2(new BrCash(pounds2, shillings2, pences2)); cout << (*Money == *Money2) << endl; cout << "=! "; cout << (*Money != *Money2) << endl; cout << "> "; cout << (*Money > * Money2) << endl; cout << ">="; cout << (*Money >= *Money2) << endl; cout << "<"; cout << (*Money < *Money2) << endl; cout << "<="; cout << (*Money <= *Money2) << endl; } catch (my_exception_constr & ex)//все ошибки выбрасываются в конструкторе { cout << ex.what() << endl; } return 0; }
[ "56173069+andreyk2002@users.noreply.github.com" ]
56173069+andreyk2002@users.noreply.github.com
7b5c655ad181e6e3418725b22ccc5f01aae1a6e8
a41821e08582dd8bcf071580dcb9719da723e133
/classifier/classifier.cpp
e762ff1ff5c0adee062d70c7b5a20b23790f86a9
[]
no_license
TheoFaure/3DEmotionDescriptors
7b094260277122f9aa9ed17b6a431a1ae325e806
9427740df83e2fec540b240d7073719de566ab8e
refs/heads/master
2020-07-11T23:12:00.427490
2016-11-28T11:09:15
2016-11-28T11:09:15
73,992,734
0
0
null
null
null
null
UTF-8
C++
false
false
3,293
cpp
#include <iostream> #include <fstream> #include <string> #include <sstream> #include "opencv2/ml/ml.hpp" #include "opencv2/core/core.hpp" #include "opencv2/core/utility.hpp" #include "opencv2/core/cvstd.hpp" #include <vector> #define SSTR( x ) static_cast< std::ostringstream & >( ( std::ostringstream() << std::dec << x ) ).str() using namespace std; void split(const std::string &s, char delim, std::vector<std::string> &elems) { std::stringstream ss; ss.str(s); std::string item; while (std::getline(ss, item, delim)) { elems.push_back(item); } } std::vector<std::string> split(const std::string &s, char delim) { std::vector<std::string> elems; split(s, delim, elems); return elems; } cv::Mat read_histograms() { cv::Mat histograms = cv::Mat::zeros(0, 308, CV_32F); for (int i = 0 ; i < 54 ; i++) { std::string line; // std::string index = std::to_string(i); // std::string file_name = ; std::ifstream myfile (SSTR("../../data_cara/histograms/inputCloud" << i << "_filtered_histogram.txt").c_str()); if (myfile.is_open()) { if ( std::getline (myfile,line) ) { line = line.substr(1, line.size() - 2); std::vector<std::string> histo_line = split(line, ','); cv::Mat histo_line_int = cv::Mat::zeros(1, 308, CV_32F); for (int j = 0 ; j < 308 ; j++) { histo_line_int.at<float>(0, j) = std::stoi(histo_line[j]); } histograms.push_back(histo_line_int); } myfile.close(); } else std::cout << "Unable to open file"; } return histograms; } cv::Mat create_labels() { cv::Mat labels = cv::Mat::zeros(1, 54, CV_32F); //Tristeza = 0, Allegria = 1, Miedo = 2, Sorpresa = 3, Colera = 4 for (int i = 0 ; i < 54 ; i++) { if (i < 12) labels.at<float>(0, i) = 0; else if (i < 25) labels.at<float>(0, i) = 1; else if (i < 35) labels.at<float>(0, i) = 2; else if (i < 40) labels.at<float>(0, i) = 3; else labels.at<float>(0, i) = 4; } return labels; } void SVM_classifier() { cv::Ptr<cv::ml::SVM> svm = cv::ml::SVM::create(); svm->setType(cv::ml::SVM::C_SVC); svm->setKernel(cv::ml::SVM::POLY); svm->setGamma(3); cv::Mat trainData = read_histograms(); std::cout << trainData.size[0] << " / " << trainData.size[1] << std::endl; cv::Mat labels = create_labels(); std::cout << labels.size[0] << " / " << labels.size[1] << std::endl; svm->train( trainData , cv::ml::ROW_SAMPLE , labels ); cv::Mat query = trainData.row(0); // input, 1channel, 1 row (apply reshape(1,1) if nessecary) cv::Mat res; // output svm->predict(query, res); // std::cout << res << std::endl; } void RTree_classifier(int row) { cv::Ptr<cv::ml::RTrees> rtree = cv::ml::RTrees::create(); cv::Mat trainData = read_histograms(); std::cout << trainData.size[0] << " / " << trainData.size[1] << std::endl; cv::Mat labels = create_labels(); std::cout << labels.size[0] << " / " << labels.size[1] << std::endl; rtree->train( trainData , cv::ml::ROW_SAMPLE , labels ); cv::Mat query = trainData.row(row); // input, 1channel, 1 row (apply reshape(1,1) if nessecary) cv::Mat res; // output rtree->predict(query, res); std::cout << res << std::endl; } int main (int argc, char** argv) { RTree_classifier(std::stoi(argv[1])); return 0; }
[ "faure.theo@outlook.fr" ]
faure.theo@outlook.fr
202bc0f1e2403fb2fe4f5290dc6069ac5c3b33dd
82159ddaa83888044f7d1cfb4fbcd8bb7571ebd5
/firmware/lib/audio_input/I2SMicSampler.cpp
2ee23535d05881a17aa32247f8111c7a37aafbc7
[]
no_license
shaurya0406/ESP32_Speech_Recognition_TensorFlow
df4532e0c5b33a5ad3dca54a107700b44ddfa79a
6a9ff956ced53aa487130b8fd5dcf31ca09b0a0a
refs/heads/main
2023-06-24T00:20:04.449111
2021-07-19T12:13:02
2021-07-19T12:13:02
333,085,634
6
3
null
null
null
null
UTF-8
C++
false
false
710
cpp
#include "I2SMicSampler.h" #include "driver/i2s.h" #include "soc/i2s_reg.h" I2SMicSampler::I2SMicSampler(i2s_pin_config_t &i2sPins, bool fixSPH0645) : I2SSampler() { m_i2sPins = i2sPins; m_fixSPH0645 = fixSPH0645; } void I2SMicSampler::configureI2S() { if (m_fixSPH0645) { // FIXES for SPH0645 REG_SET_BIT(I2S_TIMING_REG(getI2SPort()), BIT(9)); REG_SET_BIT(I2S_CONF_REG(getI2SPort()), I2S_RX_MSB_SHIFT); } i2s_set_pin(getI2SPort(), &m_i2sPins); } void I2SMicSampler::processI2SData(uint8_t *i2sData, size_t bytesRead) { int32_t *samples = (int32_t *)i2sData; for (int i = 0; i < bytesRead / 4; i++) { addSample(samples[i] >> 11); } }
[ "33840274+shaurya0406@users.noreply.github.com" ]
33840274+shaurya0406@users.noreply.github.com
7c7b04a5d47815116b99efa69a53afdbc2eb002a
4dbb45758447dcfa13c0be21e4749d62588aab70
/iOS/Classes/Native/mscorlib_System_Runtime_CompilerServices_Compilati3111187931.h
cd974aadbc88023542049e5f1c084a3b6e85cdf7
[ "MIT" ]
permissive
mopsicus/unity-share-plugin-ios-android
6dd6ccd2fa05c73f0bf5e480a6f2baecb7e7a710
3ee99aef36034a1e4d7b156172953f9b4dfa696f
refs/heads/master
2020-12-25T14:38:03.861759
2016-07-19T10:06:04
2016-07-19T10:06:04
63,676,983
12
0
null
null
null
null
UTF-8
C++
false
false
1,028
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include "mscorlib_System_Attribute2523058482.h" #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.CompilerServices.CompilationRelaxationsAttribute struct CompilationRelaxationsAttribute_t3111187931 : public Attribute_t2523058482 { public: // System.Int32 System.Runtime.CompilerServices.CompilationRelaxationsAttribute::relax int32_t ___relax_0; public: inline static int32_t get_offset_of_relax_0() { return static_cast<int32_t>(offsetof(CompilationRelaxationsAttribute_t3111187931, ___relax_0)); } inline int32_t get_relax_0() const { return ___relax_0; } inline int32_t* get_address_of_relax_0() { return &___relax_0; } inline void set_relax_0(int32_t value) { ___relax_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif
[ "lii@rstgames.com" ]
lii@rstgames.com
d8e09c66bfef1e5c98b820b1877939b351435012
72d9009d19e92b721d5cc0e8f8045e1145921130
/frailtySurv/inst/testfiles/deriv_lt_dpvf_coef/libFuzzer_deriv_lt_dpvf_coef/deriv_lt_dpvf_coef_DeepState_TestHarness.cpp
1f4d584807f890650f72b28fdf3acad3c91e7240
[]
no_license
akhikolla/TestedPackages-NoIssues
be46c49c0836b3f0cf60e247087089868adf7a62
eb8d498cc132def615c090941bc172e17fdce267
refs/heads/master
2023-03-01T09:10:17.227119
2021-01-25T19:44:44
2021-01-25T19:44:44
332,027,727
1
0
null
null
null
null
UTF-8
C++
false
false
1,961
cpp
// AUTOMATICALLY GENERATED BY RCPPDEEPSTATE PLEASE DO NOT EDIT BY HAND, INSTEAD EDIT // deriv_lt_dpvf_coef_DeepState_TestHarness_generation.cpp and deriv_lt_dpvf_coef_DeepState_TestHarness_checks.cpp #include <fstream> #include <RInside.h> #include <iostream> #include <RcppDeepState.h> #include <qs.h> #include <DeepState.hpp> double deriv_lt_dpvf_coef(int p, int j, double alpha); TEST(frailtySurv_deepstate_test,deriv_lt_dpvf_coef_test){ static int rinside_flag = 0; if(rinside_flag == 0) { rinside_flag = 1; RInside R; } std::time_t current_timestamp = std::time(0); std::cout << "input starts" << std::endl; IntegerVector p(1); p[0] = RcppDeepState_int(); std::string p_t = "/home/akhila/fuzzer_packages/fuzzedpackages/frailtySurv/inst/testfiles/deriv_lt_dpvf_coef/libFuzzer_deriv_lt_dpvf_coef/libfuzzer_inputs/" + std::to_string(current_timestamp) + "_p.qs"; qs::c_qsave(p,p_t, "high", "zstd", 1, 15, true, 1); std::cout << "p values: "<< p << std::endl; IntegerVector j(1); j[0] = RcppDeepState_int(); std::string j_t = "/home/akhila/fuzzer_packages/fuzzedpackages/frailtySurv/inst/testfiles/deriv_lt_dpvf_coef/libFuzzer_deriv_lt_dpvf_coef/libfuzzer_inputs/" + std::to_string(current_timestamp) + "_j.qs"; qs::c_qsave(j,j_t, "high", "zstd", 1, 15, true, 1); std::cout << "j values: "<< j << std::endl; NumericVector alpha(1); alpha[0] = RcppDeepState_double(); std::string alpha_t = "/home/akhila/fuzzer_packages/fuzzedpackages/frailtySurv/inst/testfiles/deriv_lt_dpvf_coef/libFuzzer_deriv_lt_dpvf_coef/libfuzzer_inputs/" + std::to_string(current_timestamp) + "_alpha.qs"; qs::c_qsave(alpha,alpha_t, "high", "zstd", 1, 15, true, 1); std::cout << "alpha values: "<< alpha << std::endl; std::cout << "input ends" << std::endl; try{ deriv_lt_dpvf_coef(p[0],j[0],alpha[0]); } catch(Rcpp::exception& e){ std::cout<<"Exception Handled"<<std::endl; } }
[ "akhilakollasrinu424jf@gmail.com" ]
akhilakollasrinu424jf@gmail.com
a3cd76787027b437b73ac35484638af7703453bb
78fb1b6560f66436492ae91fdca99f79adae0989
/script/api/api_scenario.cc
d9f686d0b98618e56e0fd32fced40dfb407a6d58
[]
no_license
tobiasschulz/simutrans-experimental
18b28233c276c5d990cebfcb2552abda9a286240
016c16542e4da1fe1883ffdfcf2103a29fb8df20
refs/heads/master
2020-04-07T00:01:17.454659
2014-08-09T22:25:05
2014-08-09T22:25:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,986
cc
#include "api.h" /** @file api_scenario.cc exports scenario related functions. */ #include "../api_class.h" #include "../api_function.h" #include "../../dataobj/scenario.h" #include "../../dataobj/translator.h" #include "../../utils/simstring.h" using namespace script_api; #define STATIC static char buf[40]; static plainstring double_to_string(double f, sint32 decimals) { number_to_string(buf, f, decimals); return buf; } static plainstring integer_to_string(sint64 f) { number_to_string(buf, f, 0); return buf; } static plainstring money_to_string_intern(sint64 m) { money_to_string(buf, m); return buf; } void export_scenario(HSQUIRRELVM vm) { /** * Helper method to translate strings. * @param text string to translate * @returns translation of given string */ // need to identify the correct overloaded function register_method<const char* (*)(const char*)>(vm, &translator::translate, "translate"); /** * Helper method to load scenario-related translation files. * Tries to load files in the following order relative to pakxx/scenario: * -# scenario-name/iso/filename * -# scenario-name/en/filename * -# scenario-name/filename * * Here, iso refers to iso-abbreviation of currently active language. * * The content of the files is cached. The cache is cleared upon reloading of savegame. * @param file name of txt-file * @return content of loaded file */ register_method(vm, &scenario_t::load_language_file, "load_language_file"); /** * Pretty-print floating point numbers, use language specific separator for powers of thousands. * @param value number to print * @param decimals how many decimals should be printed * @returns a nice string */ register_method(vm, &double_to_string, "double_to_string"); /** * Pretty-print integers, use language specific separator for powers of thousands. * @param value number to print * @returns a nice string */ register_method(vm, &integer_to_string, "integer_to_string"); /** * Pretty-print money values, use language specific separator for powers of thousands. * @param value number to print * @returns a nice string with trailing dollar-sign */ register_method(vm, &money_to_string_intern, "money_to_string"); /** * Get name of given month. * @param month number between 0 (january) and 11 (december) * @returns month name in language of server */ register_method(vm, &translator::get_month_name, "get_month_name"); /** * Table with methods to forbid and allow tools. * * Tools that are set to forbidden using the forbid_* methods can be allowed * again by calls to the respective allow_* method with exact the same parameters. */ begin_class(vm, "rules", 0); /** * Forbid tool. * * @param player_nr number of player this rule applies to, * if this is set to player_all then this acts for all players except public player * @param tool_id id of tool * @see tool_ids way_types player_all */ STATIC register_method(vm, &scenario_t::forbid_tool, "forbid_tool"); /** * Allow tool. * * @param player_nr number of player this rule applies to, * if this is set to player_all then this acts for all players except public player * @param tool_id id of tool * @see tool_ids way_types player_all */ STATIC register_method(vm, &scenario_t::allow_tool, "allow_tool"); /** * Forbid tool with certain waytype. * * @param player_nr number of player this rule applies to, * if this is set to player_all then this acts for all players except public player * @param tool_id id of tool * @param wt waytype * @see tool_ids way_types player_all */ STATIC register_method(vm, &scenario_t::forbid_way_tool, "forbid_way_tool"); /** * Allow tool with certain waytype. * * @param player_nr number of player this rule applies to, * if this is set to player_all then this acts for all players except public player * @param tool_id id of tool * @param wt waytype * @see tool_ids way_types player_all */ STATIC register_method(vm, &scenario_t::allow_way_tool, "allow_way_tool"); /** * Forbid tool with certain waytype within rectangular region on the map. * * @param player_nr number of player this rule applies to, * if this is set to player_all then this acts for all players except public player * @param tool_id id of tool * @param wt waytype * @param pos_nw coordinate of north-western corner of rectangle * @param pos_se coordinate of south-eastern corner of rectangle * @param err error message presented to user when trying to apply this tool * @see tool_ids way_types player_all */ STATIC register_method(vm, &scenario_t::forbid_way_tool_rect, "forbid_way_tool_rect"); /** * Allow tool with certain waytype within rectangular region on the map. * * @param player_nr number of player this rule applies to, * if this is set to player_all then this acts for all players except public player * @param tool_id id of tool * @param wt waytype * @param pos_nw coordinate of north-western corner of rectangle * @param pos_se coordinate of south-eastern corner of rectangle * @see tool_ids way_types player_all */ STATIC register_method(vm, &scenario_t::allow_way_tool_rect, "allow_way_tool_rect"); /** * Forbid tool with certain waytype within cubic region on the map. * * @param player_nr number of player this rule applies to, * if this is set to player_all then this acts for all players except public player * @param tool_id id of tool * @param wt waytype * @param pos_nw 3d-coordinate of north-western corner of cube * @param pos_se 3d-coordinate of south-eastern corner of cube * @param err error message presented to user when trying to apply this tool * @see tool_ids way_types player_all */ STATIC register_method(vm, &scenario_t::forbid_way_tool_cube, "forbid_way_tool_cube"); /** * Allow tool with certain waytype within cubic region on the map. * * @param player_nr number of player this rule applies to, * if this is set to player_all then this acts for all players except public player * @param tool_id id of tool * @param wt waytype * @param pos_nw 3d-coordinate of north-western corner of cube * @param pos_se 3d-coordinate of south-eastern corner of cube * @see tool_ids way_types player_all */ STATIC register_method(vm, &scenario_t::allow_way_tool_cube, "allow_way_tool_cube"); /** * Clear all forbidding rules, effectively allowing all tools again that were forbidden using functions of the table @ref rules. * * Only effects tools forbidden by rules::forbid_tool, rules::forbid_way_tool, rules::forbid_way_tool_cube, rules::forbid_way_tool_rect. * The result of ::is_tool_allowed and ::is_work_allowed_here is not influenced. */ STATIC register_method(vm, &scenario_t::clear_rules, "clear"); end_class(vm); }
[ "dwachs@gmx.net" ]
dwachs@gmx.net
d46b5085313ea3cde2f96eb4cc0ad32f45b53d32
66cb5755f5807e44265ce1786bf68feac51e8355
/Classes/utils/physics/physics_shape_cache.h
9c3e63efb57a1cd39671f4268127d02ade98b16d
[ "Apache-2.0" ]
permissive
Sophie-Williams/lasers-and-bots
48cc1db54518425005aa085fc191a567f841aa6d
2ad9c654033c2b8212790033969df138c1051f97
refs/heads/master
2020-05-19T15:38:57.882861
2019-05-05T22:08:58
2019-05-05T22:08:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,876
h
/**************************************************************************** Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ****************************************************************************/ #ifndef __PHYSICS_SHAPE_CACHE_CLASS__ #define __PHYSICS_SHAPE_CACHE_CLASS__ #include "../utils.h" class physics_shape_cache { public: physics_shape_cache(); ~physics_shape_cache(); bool add_shapes_with_file(const std::string& plist); bool add_shapes_with_file(const std::string& plist, float scale_factor); void remove_shapes_with_file(const std::string& plist); void remove_all_shapes(); PhysicsBody* create_body_with_name(const std::string& name); private: typedef enum { fixture_polygon, fixture_circle } fixture_type; class polygon { public: Point* vertices; int num_vertices; }; class fixture_data { public: fixture_type fixture_type; float density; float restitution; float friction; int tag; int group; int category_mask; int collision_mask; int contact_test_mask; // for circles Point center; float radius; std::vector<polygon *> polygons; }; class body_def { public: Point anchor_point; std::vector<fixture_data *> fixtures; bool is_dynamic; bool affected_by_gravity; bool allows_rotation; float linear_damping; float angular_damping; float velocity_limit; float angular_velocity_limit; }; static void safe_delete_body_def(body_def* body_def); body_def* get_body_def(const std::string& name); static void set_body_properties(PhysicsBody* body, body_def* bd); static void set_shape_properties(PhysicsShape* shape, fixture_data* fd); std::map<std::string, body_def *> body_defs_; std::map<std::string, std::vector<body_def *>> bodies_in_file_; }; #endif // __PHYSICS_SHAPE_CACHE_CLASS__
[ "jamedina@gmail.com" ]
jamedina@gmail.com
538f26aeb64f97eb52544559b7c694c7a2eacf3d
40e5247582dfaaab03399f1088806628fb57e7ad
/Algorithms/FFT/ntt_aeren.cpp
2883643e2a9b62f01d71f130f2b222b0ea41613a
[]
no_license
arvindr9/competitive-programming
4e6eed7b3ef7d6056d7829b3054977579bed0cfb
081c089caa7df96ade43ab4307463d15b56aebb4
refs/heads/master
2021-12-20T00:41:32.769536
2021-12-06T19:45:03
2021-12-06T19:45:03
110,597,496
0
1
null
2020-06-20T02:33:07
2017-11-13T20:20:24
C++
UTF-8
C++
false
false
8,293
cpp
// Source: Aeren (https://codeforces.com/contest/1450/submission/100572134) template<typename T> struct Z_p{ using Type = typename decay<decltype(T::value)>::type; static vector<Type> mod_inv; constexpr Z_p(): value(){ } template<typename U> Z_p(const U &x){ value = normalize(x); } template<typename U> static Type normalize(const U &x){ Type v; if(-mod() <= x && x < mod()) v = static_cast<Type>(x); else v = static_cast<Type>(x % mod()); if(v < 0) v += mod(); return v; } const Type& operator()() const{ return value; } template<typename U> explicit operator U() const{ return static_cast<U>(value); } constexpr static Type mod(){ return T::value; } Z_p &operator+=(const Z_p &otr){ if((value += otr.value) >= mod()) value -= mod(); return *this; } Z_p &operator-=(const Z_p &otr){ if((value -= otr.value) < 0) value += mod(); return *this; } template<typename U> Z_p &operator+=(const U &otr){ return *this += Z_p(otr); } template<typename U> Z_p &operator-=(const U &otr){ return *this -= Z_p(otr); } Z_p &operator++(){ return *this += 1; } Z_p &operator--(){ return *this -= 1; } Z_p operator++(int){ Z_p result(*this); *this += 1; return result; } Z_p operator--(int){ Z_p result(*this); *this -= 1; return result; } Z_p operator-() const{ return Z_p(-value); } template<typename U = T> typename enable_if<is_same<typename Z_p<U>::Type, int>::value, Z_p>::type &operator*=(const Z_p& rhs){ #ifdef _WIN32 uint64_t x = static_cast<int64_t>(value) * static_cast<int64_t>(rhs.value); uint32_t xh = static_cast<uint32_t>(x >> 32), xl = static_cast<uint32_t>(x), d, m; asm( "divl %4; \n\t" : "=a" (d), "=d" (m) : "d" (xh), "a" (xl), "r" (mod()) ); value = m; #else value = normalize(static_cast<int64_t>(value) * static_cast<int64_t>(rhs.value)); #endif return *this; } template<typename U = T> typename enable_if<is_same<typename Z_p<U>::Type, int64_t>::value, Z_p>::type &operator*=(const Z_p &rhs){ int64_t q = static_cast<int64_t>(static_cast<long double>(value) * rhs.value / mod()); value = normalize(value * rhs.value - q * mod()); return *this; } template<typename U = T> typename enable_if<!is_integral<typename Z_p<U>::Type>::value, Z_p>::type &operator*=(const Z_p &rhs){ value = normalize(value * rhs.value); return *this; } Z_p operator^(long long e) const{ Z_p b = *this, res = 1; if(e < 0) b = 1 / b, e = -e; for(; e; b *= b, e >>= 1) if(e & 1) res *= b; return res; } Z_p &operator^=(const long long &e){ return *this = *this ^ e; } Z_p &operator/=(const Z_p &otr){ Type a = otr.value, m = mod(), u = 0, v = 1; if(a < int(mod_inv.size())) return *this *= mod_inv[a]; while(a){ Type t = m / a; m -= t * a; swap(a, m); u -= t * v; swap(u, v); } assert(m == 1); return *this *= u; } template<typename U> friend const Z_p<U> &abs(const Z_p<U> &v){ return v; } Type value; }; template<typename T> bool operator==(const Z_p<T> &lhs, const Z_p<T> &rhs){ return lhs.value == rhs.value; } template<typename T, typename U, typename enable_if<is_integral<U>::value>::type* = nullptr> bool operator==(const Z_p<T>& lhs, U rhs){ return lhs == Z_p<T>(rhs); } template<typename T, typename U, typename enable_if<is_integral<U>::value>::type* = nullptr> bool operator==(U lhs, const Z_p<T> &rhs){ return Z_p<T>(lhs) == rhs; } template<typename T> bool operator!=(const Z_p<T> &lhs, const Z_p<T> &rhs){ return !(lhs == rhs); } template<typename T, typename U, typename enable_if<is_integral<U>::value>::type* = nullptr> bool operator!=(const Z_p<T> &lhs, U rhs){ return !(lhs == rhs); } template<typename T, typename U, typename enable_if<is_integral<U>::value>::type* = nullptr> bool operator!=(U lhs, const Z_p<T> &rhs){ return !(lhs == rhs); } template<typename T> bool operator<(const Z_p<T> &lhs, const Z_p<T> &rhs){ return lhs.value < rhs.value; } template<typename T> bool operator>(const Z_p<T> &lhs, const Z_p<T> &rhs){ return lhs.value > rhs.value; } template<typename T> bool operator<=(const Z_p<T> &lhs, const Z_p<T> &rhs){ return lhs.value <= rhs.value; } template<typename T> bool operator>=(const Z_p<T> &lhs, const Z_p<T> &rhs){ return lhs.value >= rhs.value; } template<typename T> Z_p<T> operator+(const Z_p<T> &lhs, const Z_p<T> &rhs){ return Z_p<T>(lhs) += rhs; } template<typename T, typename U, typename enable_if<is_integral<U>::value>::type* = nullptr> Z_p<T> operator+(const Z_p<T> &lhs, U rhs){ return Z_p<T>(lhs) += rhs; } template<typename T, typename U, typename enable_if<is_integral<U>::value>::type* = nullptr> Z_p<T> operator+(U lhs, const Z_p<T> &rhs){ return Z_p<T>(lhs) += rhs; } template<typename T> Z_p<T> operator-(const Z_p<T> &lhs, const Z_p<T> &rhs){ return Z_p<T>(lhs) -= rhs; } template<typename T, typename U, typename enable_if<is_integral<U>::value>::type* = nullptr> Z_p<T> operator-(const Z_p<T>& lhs, U rhs){ return Z_p<T>(lhs) -= rhs; } template<typename T, typename U, typename enable_if<is_integral<U>::value>::type* = nullptr> Z_p<T> operator-(U lhs, const Z_p<T> &rhs){ return Z_p<T>(lhs) -= rhs; } template<typename T> Z_p<T> operator*(const Z_p<T> &lhs, const Z_p<T> &rhs){ return Z_p<T>(lhs) *= rhs; } template<typename T, typename U, typename enable_if<is_integral<U>::value>::type* = nullptr> Z_p<T> operator*(const Z_p<T>& lhs, U rhs){ return Z_p<T>(lhs) *= rhs; } template<typename T, typename U, typename enable_if<is_integral<U>::value>::type* = nullptr> Z_p<T> operator*(U lhs, const Z_p<T> &rhs){ return Z_p<T>(lhs) *= rhs; } template<typename T> Z_p<T> operator/(const Z_p<T> &lhs, const Z_p<T> &rhs) { return Z_p<T>(lhs) /= rhs; } template<typename T, typename U, typename enable_if<is_integral<U>::value>::type* = nullptr> Z_p<T> operator/(const Z_p<T>& lhs, U rhs) { return Z_p<T>(lhs) /= rhs; } template<typename T, typename U, typename enable_if<is_integral<U>::value>::type* = nullptr> Z_p<T> operator/(U lhs, const Z_p<T> &rhs) { return Z_p<T>(lhs) /= rhs; } template<typename T> istream &operator>>(istream &in, Z_p<T> &number){ typename common_type<typename Z_p<T>::Type, int64_t>::type x; in >> x; number.value = Z_p<T>::normalize(x); return in; } template<typename T> ostream &operator<<(ostream &out, const Z_p<T> &number){ return out << number(); } /* using ModType = int; struct VarMod{ static ModType value; }; ModType VarMod::value; ModType &mod = VarMod::value; using Zp = Z_p<VarMod>; */ constexpr int mod = (119 << 23) + 1; using Zp = Z_p<integral_constant<decay<decltype(mod)>::type, mod>>; template<typename T> vector<typename Z_p<T>::Type> Z_p<T>::mod_inv; template<typename T = integral_constant<decay<decltype(mod)>::type, mod>> void precalc_inverse(size_t SZ){ auto &inv = Z_p<T>::mod_inv; if(inv.empty()) inv.assign(2, 1); for(; inv.size() <= SZ; ) inv.push_back((mod - 1LL * mod / (int)inv.size() * inv[mod % (int)inv.size()] % mod) % mod); } // Requires modular template<class T, int root = 15311432, int root_pw = 1 << 23, int inv_root = 469870224> void number_theoric_transform(vector<T> &a, const bool invert = false){ int n = (int)a.size(); for(int i = 1, j = 0; i < n; ++ i){ int bit = n >> 1; for(; j & bit; bit >>= 1) j ^= bit; j ^= bit; if(i < j) swap(a[i], a[j]); } for(int len = 1; len < n; len <<= 1){ T wlen = invert ? inv_root : root; for(int i = len << 1; i < root_pw; i <<= 1) wlen *= wlen; for(int i = 0; i < n; i += len << 1){ T w = 1; for(int j = 0; j < len; ++ j, w *= wlen){ T u = a[i + j], v = a[i + j + len] * w; a[i + j] = u + v, a[i + j + len] = u - v; } } } if(invert){ T inv_n = T(1) / n; for(auto &x: a) x *= inv_n; } } // NTTmod: 998244353(2^23*7*17,3),754974721(2^24*3^2*5,11),469762049(2^26*7,3),167772161(2^25*5,3) template<class T> vector<T> convolute(vector<T> p, vector<T> q){ if(min(p.size(), q.size()) < 60){ vector<T> res((int)p.size() + (int)q.size() - 1); for(size_t i = 0; i < p.size(); ++ i) for(size_t j = 0; j < q.size(); ++ j) res[i + j] += p[i] * q[j]; return res; } int m = max((int)p.size() + (int)q.size() - 1, 1), n = m; if(__builtin_popcount(n) != 1) n = 1 << __lg(n) + 1; p.resize(n), q.resize(n); number_theoric_transform(p), number_theoric_transform(q); for(int i = 0; i < n; ++ i) p[i] *= q[i]; number_theoric_transform(p, true); p.resize(m); return p; }
[ "saramaswami@gmail.com" ]
saramaswami@gmail.com
febb9e817b31dc0f12de9074bb620535fa1fe161
fb97e32b6d326db9b5dadbaeafa4f20800f1d569
/system/dev/audio/intel-hda/controller/intel-hda-dsp.h
da18b2bf0f4a72ba8cb6c560d21cfa33e7751aca
[ "BSD-3-Clause", "MIT" ]
permissive
lvcargnini/zircon
52ed2ddfbe7ac942260c4b98ae2566567dea840d
575d00ab92bf4802fa3fd0073eedda0606a436eb
refs/heads/master
2020-04-02T19:12:15.966313
2018-12-04T19:39:41
2018-12-04T19:39:41
154,726,214
0
0
NOASSERTION
2018-12-04T19:39:42
2018-10-25T19:29:00
C++
UTF-8
C++
false
false
3,980
h
// Copyright 2018 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. #pragma once #include <ddk/device.h> #include <ddk/protocol/intel-hda-codec.h> #include <ddk/protocol/intel-hda-dsp.h> #include <fbl/mutex.h> #include <fbl/ref_counted.h> #include <fbl/ref_ptr.h> #include <zircon/thread_annotations.h> #include <stdint.h> #include <string.h> #include <dispatcher-pool/dispatcher-channel.h> #include <dispatcher-pool/dispatcher-execution-domain.h> #include <intel-hda/utils/intel-hda-proto.h> #include <intel-hda/utils/intel-hda-registers.h> #include <intel-hda/utils/utils.h> #include "debug-logging.h" #include "intel-hda-stream.h" namespace audio { namespace intel_hda { class IntelHDAController; class IntelHDADSP : public fbl::RefCounted<IntelHDADSP> { public: static fbl::RefPtr<IntelHDADSP> Create(IntelHDAController& controller, hda_pp_registers_t* pp_regs, const fbl::RefPtr<RefCountedBti>& pci_bti); const char* log_prefix() const { return log_prefix_; } void ProcessIRQ(); private: friend class fbl::RefPtr<IntelHDADSP>; static zx_protocol_device_t DSP_DEVICE_THUNKS; static ihda_codec_protocol_ops_t CODEC_PROTO_THUNKS; static ihda_dsp_protocol_ops_t DSP_PROTO_THUNKS; IntelHDADSP(IntelHDAController& controller, hda_pp_registers_t* pp_regs, const fbl::RefPtr<RefCountedBti>& pci_bti); ~IntelHDADSP() { }; hda_pp_registers_t* pp_regs() const { return pp_regs_; } zx_status_t PublishDevice(); // Device interface zx_status_t DeviceGetProtocol(uint32_t proto_id, void* protocol); zx_status_t DeviceIoctl(uint32_t op, void* out_buf, size_t out_len, size_t* out_actual); void DeviceUnbind(); // ZX_PROTOCOL_IHDA_DSP interface void GetDevInfo(zx_pcie_device_info_t* out_info); zx_status_t GetMmio(zx_handle_t* out_vmo, size_t* out_size); zx_status_t GetBti(zx_handle_t* out_handle); void Enable(); void Disable(); zx_status_t IrqEnable(const ihda_dsp_irq_t* callback); void IrqDisable(); // ZX_PROTOCOL_IHDA_CODEC Interface zx_status_t CodecGetDispatcherChannel(zx_handle_t* channel_out); // Thunks for interacting with clients and codec drivers. zx_status_t ProcessClientRequest(dispatcher::Channel* channel, bool is_driver_channel); void ProcessClientDeactivate(const dispatcher::Channel* channel); zx_status_t ProcessRequestStream(dispatcher::Channel* channel, const ihda_proto::RequestStreamReq& req); zx_status_t ProcessReleaseStream(dispatcher::Channel* channel, const ihda_proto::ReleaseStreamReq& req); zx_status_t ProcessSetStreamFmt(dispatcher::Channel* channel, const ihda_proto::SetStreamFmtReq& req); // Reference to our owner. IntelHDAController& controller_; fbl::Mutex dsp_lock_; ihda_dsp_irq_t irq_callback_ TA_GUARDED(dsp_lock_) = {nullptr, nullptr}; // Driver connection state fbl::Mutex codec_driver_channel_lock_; fbl::RefPtr<dispatcher::Channel> codec_driver_channel_ TA_GUARDED(codec_driver_channel_lock_); // Log prefix storage char log_prefix_[LOG_PREFIX_STORAGE] = { 0 }; // Published device node. zx_device_t* dev_node_ = nullptr; // Pipe processintg registers hda_pp_registers_t* pp_regs_ = nullptr; // A handle to the Bus Transaction Initiator for the controller. fbl::RefPtr<RefCountedBti> pci_bti_; // Dispatcher framework state. fbl::RefPtr<dispatcher::ExecutionDomain> default_domain_; // Active DMA streams fbl::Mutex active_streams_lock_; IntelHDAStream::Tree active_streams_ TA_GUARDED(active_streams_lock_); }; } // namespace intel_hda } // namespace audio
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
9ab98917fb1a6fc0af5fd94519631c7e9fee4047
3ee4bb559a62997ea8ed4beadd0b2ec31b65957f
/158/B.cpp
f71a54e578123b473053505071b36870c74a69b8
[]
no_license
Md-Kais/coding_problem
3d7c6c5a466bdbb42bb606f04d54d9d79040d85a
6ed4616e845d0faf123d3fe655761e535cac0b65
refs/heads/main
2023-06-25T14:57:13.554288
2021-08-03T06:14:47
2021-08-03T06:14:47
335,309,341
1
0
null
null
null
null
UTF-8
C++
false
false
3,992
cpp
///----> bismillahir rahmanir rahim <---- -- { ^ _ ^ } /// { ^_^ } { ^ _ ^ } #include<bits/stdc++.h> #include<bits/stdc++.h> using namespace std; //<--------------------------------------------typo section---------------------------------------------> typedef long long ll; typedef vector<int> vi; typedef vector<ll> vl; typedef vector<vi> vvi; typedef vector<vl> vvl; typedef pair<int,int> pii; typedef pair<double, double> pdd; typedef pair<ll, ll> pll; typedef vector<pii> vii; typedef vector<pll> vll; typedef double dl; typedef priority_queue<int>piwi; typedef queue<int>kiwi; typedef map<int,int>mi; typedef map<string,int>mis; typedef multimap<int,int>muli; typedef multimap<string,int>muls; typedef multiset<int>si; //<----------------------------------------------------Narcos-----------------------------------------------> #define endl "\n" #define Y cout<<"YES"<<endl; #define NO cout<<"NO"<<endl; #define yes cout<<"Yes"<<endl; #define no cout<<"No"<<endl; #define sp " " #define PB push_back #define F first #define S second #define as(a) (a).begin(),(a).end() #define ras(a) (a).rbegin(),(a).rend() #define sz(x) (int)x.size() #define ki 1LL #define MOD 1000000007 #define over return 0; #define mem(a,b) memset(a, b, sizeof(a) ) #define sqr(a) ((a) * (a)) #define test int t;cin>>t;while(t--) //<-----------------------------------------------------Const---------------------------------------------------> const double PI = acos(-1); const double eps = 1e-9; const int inf = 2000000000; const ll infLL = 9000000000000000000; //<---------------------------------------------------------------------------------------------------> #define optimize() ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0); #define fraction() cout.unsetf(ios::floatfield); cout.precision(10); cout.setf(ios::fixed,ios::floatfield); #define file() freopen("input.txt","r",stdin);freopen("output.txt","w",stdout); #define dbg(args...) do {cerr << #args << " : "; faltu(args); } while(0) void faltu () { cerr << endl;} template < typename T, typename ... hello>void faltu( T arg, const hello &... rest) {cerr << arg << ' ';faltu(rest...);} const long long MAX_SIZE = 1000001; vector<long long >isprime(MAX_SIZE , true); vector<long long >prime; vector<long long >SPF(MAX_SIZE); void manipulated_seive(int N) { isprime[0] = isprime[1] = false ; for (long long int i=2; i<N ; i++) { if (isprime[i]) { prime.push_back(i); SPF[i] = i; } for(int j=0;j < (int)prime.size() && i*prime[j] < N && prime[j] <= SPF[i]; j++) { isprime[i*prime[j]]=false; SPF[i*prime[j]] = prime[j] ; } } } int man_seive(int n){ manipulated_seive(n); for(int i=0;i<prime.size() && prime[i]<=n;i++) cout<<prime[i]<<endl; } ll gcd ( ll a, ll b ) { return __gcd ( a, b ); } ll lcm ( ll a, ll b ) { return a * ( b / gcd ( a, b ) ); } //continue; //-----------------------------> YOUR JOURNEY STARTS HERE ------------------------------------>> int main(){ optimize(); int a[6]={0};int n;cin>>n; for(int i=0;i<n;i++){ int an;cin>>an;a[an]++; } int ans=a[4];//4 gula ekai dhukbe re vai if(a[1]>a[3]){ ans+=min(a[1],a[3]);//3 + 1==4 tai 1 re 3 er ass a sthapon kore dilam int x=(a[1]-min(a[1],a[3]))+a[2]*2;// baki dustu 1 gulake 2 er sathe sex kralam(karon 2+1+1=4 ,2+1=3,2 ,1) if(x%4==0) ans+=(x/4);//valo baccha else{ ans+=floor(x/4)+1;//asshole baccha } } else{ ans+=max(a[1],a[3]);//3 er khayesh onek beshi, 1 mitate pare nai! int x=a[2]*2;// ekhane 2 homosexual..ora orai sex krtese if(x%4==0) ans+=(x/4);//homosexual er karone egula hbe na!! else{ ans+=floor(x/4)+1;// kemne egula hoilo? } } cout<<ans<<endl; over }
[ "mdkais3@gmail.com" ]
mdkais3@gmail.com
b38bfcd2bff20a82d7a42ef0af1e35d50a9ddd94
d44fe46073bcee3b42d84f43170614dc2249687d
/GameJam_v3.2/GameEngineBase/externals/Havok/includes/Source/Common/Serialize/Util/hkStaticClassNameRegistry.h
e5e00672fa0bb3e2f56a533277444d2da010773e
[ "MIT" ]
permissive
aditgoyal19/Tropical-Go-Kart-Bananas
1b162a3c994f90d3e5f432bd68251411a369812c
ed3c0489402f8a559c77b56545bd8ebc79c4c563
refs/heads/master
2021-01-11T15:21:24.709156
2017-07-06T21:07:36
2017-07-06T21:07:36
80,340,694
0
0
null
null
null
null
UTF-8
C++
false
false
2,274
h
/* * * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok. * Product and Trade Secret source code contains trade secrets of Havok. Havok Software (C) Copyright 1999-2013 Telekinesys Research Limited t/a Havok. All Rights Reserved. Use of this software is subject to the terms of an end user license agreement. * */ #ifndef HK_STATIC_CLASS_NAME_REGISTRY_H #define HK_STATIC_CLASS_NAME_REGISTRY_H #include <Common/Base/Reflection/hkClass.h> #include <Common/Base/Reflection/Registry/hkClassNameRegistry.h> /// The class can be used to create static class name registries. /// The hkClass size and member offsets are recomputed lazily if the /// the hkStaticClassNameRegistry object was created with the /// c-array of non-const hkClass pointers. class hkStaticClassNameRegistry : public hkClassNameRegistry { public: HK_DECLARE_CLASS_ALLOCATOR(HK_MEMORY_CLASS_BASE); hkStaticClassNameRegistry(hkClass*const* classes, int classVersion, const char* name); hkStaticClassNameRegistry(const hkClass*const* classes, int classVersion, const char* name); virtual const char* getName() const; virtual const hkClass* getClassByName(const char* className) const; virtual void getClasses(hkArray<const hkClass*>& classes) const; private: void checkIfReady() const; const char* m_name; const hkClass*const* m_classes; int m_classVersion; mutable hkBool32 m_ready; }; #endif // HK_STATIC_CLASS_NAME_REGISTRY_H /* * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20130718) * * Confidential Information of Havok. (C) Copyright 1999-2013 * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok * Logo, and the Havok buzzsaw logo are trademarks of Havok. Title, ownership * rights, and intellectual property rights in the Havok software remain in * Havok and/or its suppliers. * * Use of this software for evaluation purposes is subject to and indicates * acceptance of the End User licence Agreement for this product. A copy of * the license is included with this software and is also available at www.havok.com/tryhavok. * */
[ "a_goyal3@fanshaweonline.ca" ]
a_goyal3@fanshaweonline.ca
9fcb50d291c547c9f6ec70412f2d7aa9a58b3c82
6c9770dae649dd1139f50bb93a8edbc632c0d018
/ImWindow/ImwContainer.h
8c3fd23f99e48ac836a44bf99feeee69ac68a788
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
BobDeng1974/ImWindow
d42c85c12b8ac860677d30d5e7b0600550e5deed
0497eb1cfcd5aae97409fe43ed21212af120df62
refs/heads/master
2020-04-14T10:15:59.622752
2018-10-19T11:59:50
2018-10-19T11:59:50
163,782,176
1
0
MIT
2019-01-02T01:55:36
2019-01-02T01:55:35
null
UTF-8
C++
false
false
2,337
h
#ifndef __IMW_CONTAINER_H__ #define __IMW_CONTAINER_H__ #include "ImwConfig.h" #include "ImwWindow.h" #include "JsonValue.h" namespace ImWindow { class ImwPlatformWindow; //SFF_BEGIN class IMGUI_API ImwContainer { friend class ImwPlatformWindow; friend class ImwWindowManager; public: void Dock(ImwWindow* pWindow, EDockOrientation eOrientation = E_DOCK_ORIENTATION_CENTER, float fRatio = 0.5f, int iPosition = -1); bool UnDock(ImwWindow* pWindow); void DockToBest(ImwWindow* pWindow); bool IsEmpty() const; bool IsSplit() const; bool HasWindowTabbed() const; ImwWindow* GetWindowAtPos(const ImVec2& oPos) const; const ImwContainer* HasWindow(ImwWindow* pWindow) const; bool FocusWindow(ImwWindow* pWindow); ImwWindow* GetActiveWindow() const; ImwPlatformWindow* GetPlatformWindowParent() const; const ImwContainer* GetBestContainer(const ImVec2& oCursorPos) const; const ImwContainer* GetBestDocking(const ImVec2 oCursorPosInContainer, EDockOrientation& oOutOrientation, ImVec2& oOutAreaPos, ImVec2& oOutAreaSize, bool& bOutOnTabArea, int& iOutPosition, bool bLargeCheck) const; bool HasUnclosableWindow() const; protected: ImwContainer(ImwContainer* pParent); ImwContainer(ImwPlatformWindow* pParent); ~ImwContainer(); void CreateSplits(); void Paint(); bool Tab(const ImwWindow* pWindow, bool bFocused, float fStartLinePos, float fEndLinePos, float fMaxSize = -1.f); void DrawTab(const ImwChar* pText, bool bFocused, ImVec2 oPos, float fStartLinePos, float fEndLinePos, float fMaxSize = -1.f, ImVec2* pSizeOut = NULL); float GetTabWidth(const ImwChar* pText, float fMaxSize, ImVec2* pOutTextSize = NULL) const; float GetTabAreaWidth() const; bool Save(JsonValue& oJson); bool Load(const JsonValue& oJson, bool bJustCheck); ImwContainer* m_pParent; ImwPlatformWindow* m_pParentWindow; ImwWindowList m_lWindows; ImwContainer* m_pSplits[2]; float m_fSplitRatio; bool m_bVerticalSplit; int m_iActiveWindow; bool m_bIsDrag; ImVec2 m_oLastPosition; ImVec2 m_oLastSize; static const float c_fTabHeight; }; //SFF_END } #endif // __IMW_CONTAINER_H__
[ "cameleonth@gmail.com" ]
cameleonth@gmail.com
cd2613ede6d34b247e272e256b01169f167a4cb6
adbc979313cbc1f0d42c79ac4206d42a8adb3234
/Source Code/李沿橙 2017-10-7/data/color/datagen.cpp~
58892f40f06a346c7f4c59bfd66a1147bf190ff6
[]
no_license
UnnamedOrange/Contests
a7982c21e575d1342d28c57681a3c98f8afda6c0
d593d56921d2cde0c473b3abedb419bef4cf3ba4
refs/heads/master
2018-10-22T02:26:51.952067
2018-07-21T09:32:29
2018-07-21T09:32:29
112,301,400
1
0
null
null
null
null
UTF-8
C++
false
false
3,381
#include <bits/stdc++.h> using namespace std; typedef long long LL; #define rand() ((rand() << 13) ^ (rand() << 16) ^ rand()) LL f[61] = {0, 1}; char a[20]; string in, out; int aa[300005]; void make(int t) { srand(t); int n; switch (t) { case 1 ... 2 : n = 2; break; case 3 ... 6 : n = 1000; break; case 7 ... 13 : n = 50000; break; case 14 ... 20 : n = 300000; break; } int m1; switch (t) { case 1 : m1 = 6; break; case 2 : m1 = 1000; break; default : m1 = n; } int m2; switch (t) { case 1 : m2 = 0; break; case 3 : m2 = 0; break; case 8 : m2 = 0; break; case 14 : m2 = 0; break; default : m2 = m1; } int lim; switch (t) { case 1: lim = 2; break; case 2: lim = 1000; break; case 4: lim = 10; break; case 8: lim = 10; break; case 15: lim = 10; break; default: lim = n; break; } int c1 = 0; if (t < 3 || t == 10 || t == 17) c1 = 1; int c2 = 0; if (t < 3 || t == 5 || t == 9 || t == 16) c2 = 1; printf("%d %d\n", n, m1 + m2); if (t == 1) { puts("2 1"); for (int i = 1; i <= n; i++) for (int j = i; j <= n; j++) { for (int k = 1; k <= n; k++) { printf("1 %d %d %d\n", i, j, k); } } } else if (t == 2) { puts("123 233"); while (m1 + m2) { if ((rand() & 1) && m1 && m2) { int l = rand() % 2 + 1, r = rand() % 2 + 1, c = rand() % 307 + 1; if (l > r) swap(l, r); printf("1 %d %d %d\n", l, r, c); m1--; } else if (m2) { puts("2 1"); m2--; } else { int l = rand() % 2 + 1, r = rand() % 2 + 1, c = rand() % 307 + 1; if (l > r) swap(l, r); printf("1 %d %d %d\n", l, r, c); m1--; } } } else { if (c2) for (int i = 1; i <= n ;i++) aa[i] = i; else { cerr << lim << endl; for (int i = 1; i <= n; i++) aa[i] = i * 5 % (lim) + 1; } vector < pair<int, int> > bb; bb.clear(); if (c1) for (int i = 1, j; i <= m1; i++) {j = rand() % n + 1; j & 3 ? bb.push_back(make_pair(i % 20 + 1, n - (19 - i % 20))) : bb.push_back(make_pair((j > 20 ? j - 20 : j), (j > 20 ? j : j + 20)));} else { for (int i = 1; i <= m1 / 2; i++) { int x = i % (n / 2) + 1, y = n - rand() % (n - x); if (y < n - 16384) y += rand() & 16383; if (y < n - 6666) y += rand() % 6666; if (x > 2000) x -= rand() % 1000; bb.push_back(make_pair(x, y)); } for (int i = 1; i <= m1 / 2; i++) { int x = i % (n / 2) + 1; bb.push_back(make_pair(x, x + n / 2 - (rand() & 7))); } } random_shuffle(bb.begin(), bb.end()); random_shuffle(aa + 1, aa + n + 1); for (int i = 1; i <= n; i++) { printf("%d ", aa[i]); } puts(""); while (m1 + m2) { if ((rand() & 1) && m1 && m2) { m1--; printf("1 %d %d %d\n", bb[m1].first, bb[m1].second, rand() & 1 ? (rand() % lim + 1) : (rand() & 1 ? aa[bb[m1].first] : aa[bb[m1].second])); } else if (m2) { if (rand() & 7) printf("2 %d\n", rand() % (n - 1) + 1); else printf("2 %d\n", rand() & 1 ? min(n - 1, bb[max(0, m1 - 1)].first) : min(n - 1, bb[max(0, m1 - 1)].second)); m2--; } else { m1--; printf("1 %d %d %d\n", bb[m1].first, bb[m1].second, rand() % lim + 1); } } } } int main() { for (int i = 1; i <= 20; i++) { sprintf(a, "color%d", i); in = a + (string)".in"; out = a + (string)".out"; freopen(in.c_str(), "w", stdout); make(i); fclose(stdout); system(("color.exe < " + in + " > " + out).c_str()); } return 0; }
[ "lycheng1215@sina.com" ]
lycheng1215@sina.com
ee419b3215e6094eaa4bfc9c8ac81a7b5de4a21c
e217eaf05d0dab8dd339032b6c58636841aa8815
/IfcRoad/src/OpenInfraPlatform/IfcRoad/entity/include/IfcMolecularWeightMeasure.h
7ec1a5e598b7266eab67f395f6a9202b1e8b2c90
[]
no_license
bigdoods/OpenInfraPlatform
f7785ebe4cb46e24d7f636e1b4110679d78a4303
0266e86a9f25f2ea9ec837d8d340d31a58a83c8e
refs/heads/master
2021-01-21T03:41:20.124443
2016-01-26T23:20:21
2016-01-26T23:20:21
57,377,206
0
1
null
2016-04-29T10:38:19
2016-04-29T10:38:19
null
UTF-8
C++
false
false
1,141
h
/*! \verbatim * \copyright Copyright (c) 2015 Julian Amann. All rights reserved. * \author Julian Amann <julian.amann@tum.de> (https://www.cms.bgu.tum.de/en/team/amann) * \brief This file is part of the OpenInfraPlatform. * \endverbatim */ #pragma once #include <vector> #include <map> #include <sstream> #include <string> #include "OpenInfraPlatform/IfcRoad/model/shared_ptr.h" #include "OpenInfraPlatform/IfcRoad/model/IfcRoadObject.h" #include "IfcDerivedMeasureValue.h" namespace OpenInfraPlatform { namespace IfcRoad { // TYPE IfcMolecularWeightMeasure = REAL; class IfcMolecularWeightMeasure : public IfcDerivedMeasureValue, public IfcRoadType { public: IfcMolecularWeightMeasure(); IfcMolecularWeightMeasure( double value ); ~IfcMolecularWeightMeasure(); virtual const char* classname() const { return "IfcMolecularWeightMeasure"; } virtual void getStepParameter( std::stringstream& stream, bool is_select_type = false ) const; static shared_ptr<IfcMolecularWeightMeasure> readStepData( std::string& arg ); double m_value; }; } // end namespace IfcRoad } // end namespace OpenInfraPlatform
[ "planung.cms.bv@tum.de" ]
planung.cms.bv@tum.de
e8b5ca2d7069c6c0557c0c84331f77087358b6e3
861ce96b06a0409fd522059d1a0e7ad9dd4bcf13
/algo/solvers/sudoku.cc
8bbca1ecf2baa38be933033400ad4657655ae6fa
[]
no_license
ygorshenin/clib
7602daf1c0be46345868704028c8792ac027f095
b02a002b6e10bef4aab94be75f79022751af5950
refs/heads/master
2023-02-15T12:28:07.481930
2023-02-12T19:44:09
2023-02-12T19:47:30
31,734,677
3
1
null
2023-02-12T19:47:31
2015-03-05T20:28:28
C++
UTF-8
C++
false
false
28
cc
#include <solvers/sudoku.h>
[ "mipt.vi002@gmail.com" ]
mipt.vi002@gmail.com
37168f86188ab64be50b98930adc3e532816ac28
0f7ce2343c3f7e49746801775991389810fca0a2
/LED light with User input/LED light.ino
1ead9ee1d0db0e5ea75f56f225dfa8858f09b294
[]
no_license
NEHMIYASHIKUR/Arduino_Projects
3e3479c4dddc23ccc16f93341e988f76e7e82e68
831b567c84c78789e1c47e7c6a8cc8fb8c441038
refs/heads/master
2023-07-12T01:53:40.345730
2021-08-16T08:25:33
2021-08-16T08:25:33
396,694,897
1
0
null
null
null
null
UTF-8
C++
false
false
1,695
ino
int redpin=10; int yellowpin=8; int redblink; int yellowblink; int redon=500; int redoff=300; int yellowon=700; int yellowoff=100; int redx; int redvol; int yellowvol; int greenpin=6; int greenblink; int greenon=500; int greenoff=300; void setup() { Serial.begin(9600); pinMode(redpin,OUTPUT); pinMode(yellowpin,OUTPUT); pinMode(greenpin,OUTPUT); Serial.println("how many times should z green light blink ??"); while(Serial.available()==0){} greenblink=Serial.parseInt(); Serial.println("how many times should z red light blink ??"); while(Serial.available()==0){} redblink=Serial.parseInt(); Serial.println("how many times should z yellow light blink ??"); while(Serial.available()==0){} yellowblink=Serial.parseInt(); /**Serial.println("choose a voltage for z yellow light"); while(Serial.available()==0){} yellowvol=Serial.parseInt(); Serial.println("choose a voltage for z red light"); while(Serial.available()==0){} redvol=Serial.parseInt(); **/ } void loop() { // int redx; // int redvol=51 * redx; Serial.println("the green led is blinking"); for(int j=0;j<greenblink ;j++ ){ Serial.println(j); digitalWrite(greenpin,HIGH); delay(redon); digitalWrite(greenpin,LOW); delay(redoff); } Serial.println("the yellow led is blinking"); for(int j=0; j<yellowblink ;j++){ Serial.println(j); digitalWrite(yellowpin,HIGH); delay(yellowon); digitalWrite(yellowpin,LOW); delay(yellowoff); Serial.println("the red led is blinking"); for(int j=0;j<redblink ;j++ ){ Serial.println(j); digitalWrite(redpin,HIGH); delay(redon); digitalWrite(redpin,LOW); delay(redoff); } } }
[ "nehmyahabtamu1@gmail.com" ]
nehmyahabtamu1@gmail.com